sqlite3-devel-3.39.3-150000.3.20.1 >  A c5p9|%q'Rm;FL[Ik^ ԯsez] @'kepD?d % D,08<Uv      (P`P(u8|J9J: JBFGHIXYZ4[8\@]P^bcYdefluvw(x8yHzP`dptx~Csqlite3-devel3.39.3150000.3.20.1Embeddable SQL Database EngineSQLite is a C library that implements an embeddable SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. SQLite is not a client library used to connect to a big database server; SQLite is the server. The SQLite library reads and writes directly to and from the database files on disk. SQLite can be used via the sqlite command-line tool or via any application which supports the Qt database plug-ins.c5Ssheep09 SUSE Linux Enterprise 15SUSE LLC SUSE-Public-Domainhttps://www.suse.com/Development/Libraries/C and C++https://www.sqlite.org/linuxx86_64 \(c3c3c3c30ea8a7ae99be0b1072e2f15594fe9941694dc92231e4db4eba0987c1b47563327f9ae3bab94bbc62d909fbb0149861b4a0832299f12d7ccbfecc7f28a8d27aa29e90bc8a228be3f8950bff95f0cd17906bc4f448a6a8bdb67669b81ee252168dlibsqlite3.so.0.8.6rootrootrootrootrootrootrootrootsqlite3-3.39.3-150000.3.20.1.src.rpmpkgconfig(sqlite3)sqlite-develsqlite3-develsqlite3-devel(x86-64)@    /usr/bin/pkg-configglibc-devellibsqlite3-0rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.39.33.0.4-14.6.0-14.0-15.2-14.14.1ci@cb?bVbbwbjbBb1@b-b@aaѓa@`\]w@\@\ZZ@Zs@Y|YYYC@YC@Y:Y&@Y"XDXBX@Xp@Xk@Xk@XfL@X2XW;W]@Wt@W@W@W and ->> operators for easier processing of JSON * The JSON functions are now built-ins * Enhancements to date and time functions * Rename the printf() SQL function to format() for better compatibility, with alias for backwards compatibility. * Add the sqlite3_error_offset() interface for helping localize an SQL error to a specific character in the input SQL text * Enhance the interface to virtual tables * CLI columnar output modes are enhanced to correctly handle tabs and newlines embedded in text, and add options like "--wrap N", "--wordwrap on", and "--quote" to the columnar output modes. * Query planner enhancements using a Bloom filter to speed up large analytic queries, and a balanced merge tree to evaluate UNION or UNION ALL compound SELECT statements that have an ORDER BY clause. * The ALTER TABLE statement is changed to silently ignores entries in the sqlite_schema table that do not parse when PRAGMA writable_schema=ON- update to 3.37.2: * Fix a bug introduced in version 3.35.0 (2021-03-12) that can cause database corruption if a SAVEPOINT is rolled back while in PRAGMA temp_store=MEMORY mode, and other changes are made, and then the outer transaction commits * Fix a long-standing problem with ON DELETE CASCADE and ON UPDATE CASCADE in which a cache of the bytecode used to implement the cascading change was not being reset following a local DDL change- update to 3.37.1: * Fix a bug introduced by the UPSERT enhancements of version 3.35.0 that can cause incorrect byte-code to be generated for some obscure but valid SQL, possibly resulting in a NULL- pointer dereference. * Fix an OOB read that can occur in FTS5 when reading corrupt database files. * Improved robustness of the --safe option in the CLI. * Other minor fixes to assert() statements and test cases.- SQLite3 3.37.0: * STRICT tables provide a prescriptive style of data type management, for developers who prefer that kind of thing. * When adding columns that contain a CHECK constraint or a generated column containing a NOT NULL constraint, the ALTER TABLE ADD COLUMN now checks new constraints against preexisting rows in the database and will only proceed if no constraints are violated. * Added the PRAGMA table_list statement. * Add the .connection command, allowing the CLI to keep multiple database connections open at the same time. * Add the --safe command-line option that disables dot-commands and SQL statements that might cause side-effects that extend beyond the single database file named on the command-line. * CLI: Performance improvements when reading SQL statements that span many lines. * Added the sqlite3_autovacuum_pages() interface. * The sqlite3_deserialize() does not and has never worked for the TEMP database. That limitation is now noted in the documentation. * The query planner now omits ORDER BY clauses on subqueries and views if removing those clauses does not change the semantics of the query. * The generate_series table-valued function extension is modified so that the first parameter ("START") is now required. This is done as a way to demonstrate how to write table-valued functions with required parameters. The legacy behavior is available using the -DZERO_ARGUMENT_GENERATE_SERIES compile-time option. * Added new sqlite3_changes64() and sqlite3_total_changes64() interfaces. * Added the SQLITE_OPEN_EXRESCODE flag option to sqlite3_open_v2(). * Use less memory to hold the database schema. * bsc#1189802, CVE-2021-36690: Fix an issue with the SQLite Expert extension when a column has no collating sequence.- Sync version 3.36.0 from Factory to implement jsc#SLE-16032. - Obsoletes sqlite3-CVE-2019-16168.patch. - The following CVEs have been fixed in upstream releases up to this point, but were not mentioned in the change log so far: * bsc#1173641, CVE-2020-15358: heap-based buffer overflow in multiSelectOrderBy due to mishandling of query-flattener optimization * bsc#1164719, CVE-2020-9327: NULL pointer dereference and segmentation fault because of generated column optimizations in isAuxiliaryVtabOperator * bsc#1160439, CVE-2019-20218: selectExpander in select.c proceeds with WITH stack unwinding even after a parsing error * bsc#1160438, CVE-2019-19959: memory-management error via ext/misc/zipfile.c involving embedded '\0' input * bsc#1160309, CVE-2019-19923: improper handling of certain uses of SELECT DISTINCT in flattenSubquery may lead to null pointer dereference * bsc#1159850, CVE-2019-19924: improper error handling in sqlite3WindowRewrite() * bsc#1159847, CVE-2019-19925: improper handling of NULL pathname during an update of a ZIP archive * bsc#1159715, CVE-2019-19926: improper handling of certain errors during parsing multiSelect in select.c * bsc#1159491, CVE-2019-19880: exprListAppendList in window.c allows attackers to trigger an invalid pointer dereference * bsc#1158960, CVE-2019-19603: during handling of CREATE TABLE and CREATE VIEW statements, does not consider confusion with a shadow table name * bsc#1158959, CVE-2019-19646: pragma.c mishandles NOT NULL in an integrity_check PRAGMA command in certain cases of generated columns * bsc#1158958, CVE-2019-19645: alter.c allows attackers to trigger infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements * bsc#1158812, CVE-2019-19317: lookupName in resolve.c omits bits from the colUsed bitmask in the case of a generated column, which allows attackers to cause a denial of service * bsc#1157818, CVE-2019-19244: sqlite3,sqlite2,sqlite: The function sqlite3Select in select.c allows a crash if a sub-select uses both DISTINCT and window functions, and also has certain ORDER BY usage * bsc#928701, CVE-2015-3415: sqlite3VdbeExec comparison operator vulnerability * bsc#928700, CVE-2015-3414: sqlite3,sqlite2: dequoting of collation-sequence names * CVE-2020-13434 boo#1172115: integer overflow in sqlite3_str_vappendf * CVE-2020-13630 boo#1172234: use-after-free in fts3EvalNextRow * CVE-2020-13631 boo#1172236: virtual table allowed to be renamed to one of its shadow tables * CVE-2020-13632 boo#1172240: NULL pointer dereference via crafted matchinfo() query * CVE-2020-13435: Malicious SQL statements could have crashed the process that is running SQLite (boo#1172091)- bsc#1150137, CVE-2019-16168, sqlite3-CVE-2019-16168.patch: Improper validation of qlite_stat1 sz field leads to division by zero.- Upgrade to 3.28.0: * CVE-2019-9936, bsc#1130326: running fts5 prefix queries inside a transaction could trigger a heap-based buffer over-read. * CVE-2019-9937, bsc#1130325: interleaving reads and writes in a single transaction with an fts5 virtual table will lead to a NULL Pointer Dereference. * Enhanced window functions * Enhanced VACUUM INTO so that it works for read-only databases. * New query optimizations. * Added the sqlite3_value_frombind() API for determining if the argument to an SQL function is from a bound parameter. * Security and compatibilities enhancements to fts3_tokenizer(). * Improved robustness against corrupt database files.- CVE-2018-20346, bsc#1119687: Upgrade to the most recent version to fix a remote code execution vulnerability in FTS3 (Magellan). - Drop sqlite-fts5-link.patch and do it in the spec file instead. - Version 3.27.2: * Add the VACUUM INTO command * Issue an SQLITE_WARNING message on the error log if a double-quoted string literal is used * Add the remove_diacritics=2 option to FTS3 and FTS5. * Add the SQLITE_PREPARE_NO_VTAB option to sqlite3_prepare_v3(). Use that option to prevent circular references to shadow tables from causing resource leaks. * Enhancements to the sqlite3_deserialize() interface * Enhancements to the CLI, mostly to support testing and debugging of the SQLite library itself * Increased robustness against malicious SQL that is run against a maliciously corrupted database - Version 3.26.0: * Optimization: When doing an UPDATE on a table with indexes on expressions, do not update the expression indexes if they do not refer to any of the columns of the table being updated. * Allow the xBestIndex() method of virtual table implementations to return SQLITE_CONSTRAINT to indicate that the proposed query plan is unusable and should not be given further consideration. * Added the SQLITE_DBCONFIG_DEFENSIVE option which disables the ability to create corrupt database files using ordinary SQL. * Added support for read-only shadow tables when the SQLITE_DBCONFIG_DEFENSIVE option is enabled. * Added the PRAGMA legacy_alter_table command, which if enabled causes the ALTER TABLE command to behave like older version of SQLite (prior to version 3.25.0) for compatibility. * Added PRAGMA table_xinfo that works just like PRAGMA table_info except that it also shows hidden columns in virtual tables. * Added the explain virtual table as a run-time loadable extension. * Add a limit counter to the query planner to prevent excessive sqlite3_prepare() times for certain pathological SQL inputs. * Added support for the sqlite3_normalized_sql() interface, when compiling with SQLITE_ENABLE_NORMALIZE. * Enhanced triggers so that they can use table-valued functions that exist in schemas other than the schema where the trigger is defined. * Improvements to the ".help" command in the CLI. * The SQLITE_HISTORY environment variable, if it exists, specifies the name of the command-line editing history file. * The --deserialize option associated with opening a new database in the CLI cause the database file to be read into memory and accessed using the sqlite3_deserialize() API. This simplifies running tests on a database without modifying the file on disk. - Version 3.25.2: * Add the PRAGMA legacy_alter_table=ON command that causes the "ALTER TABLE RENAME" command to behave as in 3.24.0 and earlier * Fix issue with some expressions with windows functions in views - Version 3.25.1: * Avoid false-positive error checks on ALTER TABLE * Further ORDER BY LIMIT optimization fixes for window functions - Version 3.25.0: * Add support for window functions * Add support for renaming columns within a table * Query optimizer improvements * slightly better concurrency in multi-threaded environments * The ORDER BY LIMIT optimization might have caused an infinite loop in the byte code of the prepared statement under very obscure circumstances, due to a confluence of minor defects in the query optimizer - Version 3.24.0: * Add support for PostgreSQL-style UPSERT * Add support for auxiliary columns in r-tree tables * Add C-language APIs for discovering SQL keywords used by SQLite * Add C-language APIs for dynamic strings based on sqlite3_str * Enhance ALTER TABLE so that it recognizes "true" and "false" as valid arguments to DEFAULT * Add the sorter-reference optimization as a compile-time option * Improve the format of the EXPLAIN QUERY PLAN raw output, so that it gives better information about the query plan and about the relationships between the various components of the plan * Added the SQLITE_DBCONFIG_RESET_DATABASE option to the sqlite3_db_config() API. * Automatically intercept the raw EXPLAIN QUERY PLAN output an reformat it into an ASCII-art graph. * Lines that begin with "#" and that are not in the middle of an SQL statement are interpreted as comments * Add the --append option to the ".backup" command * Add the ".dbconfig" command * various performance improvements * various bug fixes- update to 3.23.1: * Fix two problems in the new LEFT JOIN strength reduction optimization * Fix misbehavior of the FTS5 xBestIndex method * Fix a harmless reference to an uninitialized virtual machine register * Fix the eval.c extension so that it works with PRAGMA empty_result_callbacks=ON * Fix the generate_series virtual table so that it correctly returns no rows if any of its constraints are NULL * Performance enhancements in the parser- update to 3.23.0: * Add the sqlite3_serialize() and sqlite3_deserialize() interfaces when the SQLITE_ENABLE_DESERIALIZE compile-time option is used. * Recognize TRUE and FALSE as constants. (For compatibility, if there exist columns named "true" or "false", then the identifiers refer to the columns rather than Boolean constants.) * Support operators IS TRUE, IS FALSE, IS NOT TRUE, and IS NOT FALSE. * Added the SQLITE_DBSTATUS_CACHE_SPILL option to sqlite3_db_status() for reporting the number of cache spills that have occurred. * The "alternate-form-2" flag ("!") on the built-in printf implementation now causes string substitutions to measure the width and precision in characters instead of bytes. * If the xColumn method in a virtual table implementation returns an error message using sqlite3_result_error() then give that error message preference over internally-generated messages. * Added the -A command-line option to the CLI to make it easier to manage SQLite Archive files. * Add support for INSERT OR REPLACE, INSERT OR IGNORE, and UPDATE OR REPLACE in the Zipfile virtual table. * Enhance the sqlite3changeset_apply() interface so that it is hardened against attacks from deliberately corrupted changeset objects. * Added the sqlite3_normalize() extension function. * Query optimizer enhancements * Various bug fixes * Fix various issues reported by fuzzers, including: + CVE-2018-8740: NULL pointer dereference on CREATE TABLE as (bsc#1085790)- update to 3.22.0: * Add Zipfile virtual table to read and write a ZIP Archive. * Improved handling of WAL mode databases * various improvements, optimizations and bug fixes- Update to version 3.21.0 * Take advantage of the atomic-write capabilities in the F2FS filesystem when available, for greatly reduced transaction overhead. This currently requires the SQLITE_ENABLE_BATCH_ATOMIC_WRITE compile-time option. * Allow ATTACH and DETACH commands to work inside of a transaction. * Allow WITHOUT ROWID virtual tables to be writable if the PRIMARY KEY contains exactly one column. * The "fsync()" that occurs after the header is written in a WAL reset now uses the sync settings for checkpoints. This means it will use a "fullfsync" on macs if PRAGMA checkpoint_fullfsync set on. * The sqlite3_sourceid() function tries to detect if the source code has been modified from what is checked into version control and if there are modifications, the last four characters of the version hash are shown as "alt1" or "alt2". The objective is to detect accidental and/or careless edits. A forger can subvert this feature. * Improved de-quoting of column names for CREATE TABLE AS statements with an aggregate query on the right-hand side. * Fewer "stat()" system calls issued by the unix VFS. * Enhanced the LIKE optimization so that it works with an ESCAPE clause. * Enhanced PRAGMA integrity_check and PRAGMA quick_check to detect obscure row corruption that they were formerly missing. Also update both pragmas so that they return error text rather than SQLITE_CORRUPT when encountering corruption in records. * The query planner now prefers to implement FROM-clause subqueries using co-routines rather using the query flattener optimization. Support for the use of co-routines for subqueries may no longer be disabled. * Pass information about !=, IS, IS NOT, NOT NULL, and IS NULL constraints into the xBestIndex method of virtual tables. * Enhanced the CSV virtual table so that it accepts the last row of input if the final new-line character is missing. * Remove the rarely-used "scratch" memory allocator. Replace it with the SQLITE_CONFIG_SMALL_MALLOC configuration setting that gives SQLite a hint that large memory allocations should be avoided when possible. * Added the swarm virtual table to the existing union virtual table extension. * Added the sqlite_dbpage virtual table for providing direct access to pages of the database file. The source code is built into the amalgamation and is activated using the - DSQLITE_ENABLE_DBPAGE_VTAB compile-time option. * Add a new type of fts5vocab virtual table - "instance" - that provides direct access to an FTS5 full-text index at the lowest possible level. * Miscellaneous microoptimizations reduce CPU usage by about 2.1%. Bug fixes * Fix a faulty assert() statement discovered by OSSFuzz. Ticket cb91bf4290c211d * Fix an obscure memory leak in sqlite3_result_pointer(). Ticket 7486aa54b968e9b * Avoid a possible use-after-free error by deferring schema resets until after the query planner has finished running. Ticket be436a7f4587ce5 * Only use indexes-on-expressions to optimize ORDER BY or GROUP BY if the COLLATE is correct. Ticket e20dd54ab0e4383 * Fix an assertion fault that was coming up when the expression in an index-on-expressions is really a constant. Ticket aa98619ad08ddca * Fix an assertion fault that could occur following PRAGMA reverse_unordered_selects. Ticket cb91bf4290c211d * Fix a segfault that can occur for queries that use table-valued functions in an IN or EXISTS subquery. Ticket b899b6042f97f5 * Fix a potential integer overflow problem when compiling a particular horrendous common table expression. This was another problem discovered by OSSFuzz. Check-in 6ee8cb6ae5. * Fix a potential out-of-bound read when querying a corrupt database file, a problem detected by Natalie Silvanovich of Google Project Zero. Check-in 04925dee41a21f.- update to 3.20.1: * Fix a potential memory leak in the new sqlite3_result_pointer() interface- Update to 3.20.0: * Potential incompatible change for clients incorrectly relying on unspecified behavior: column names returned by sqlite3_column_name() and sqlite3_column_name16() may return different names when views or subqueries are used in the FROM clause, and AS clauses are not used (as they should be) * Text of some error messages changed. Applications that depend on specific error message text may be impacted.- a little less packaging cleanup so as to not break SLE 11 SP4- Small packaging cleanup- Update to 3.19.3: * Fix a bug associated with auto_vacuum that can lead to database corruption. (introduced in 3.16.0)- Update to 3.19.2 * Fix a bug in the LEFT JOIN flattening optimization. Ticket cad1ab4cb7b0fc. * Fix more bugs in the LEFT JOIN flattening optimization. Ticket 7fde638e94287d2c.- Update to 3.19.0 * The SQLITE_READ authorizer callback is invoked once with a column name that is an empty string for every table referenced in a query from which no columns are extracted. * When using an index on an expression, try to use expression values already available in the index, rather than loading the original columns and recomputing the expression. * Enhance the flattening optimization so that it is able to flatten views on the right-hand side of a LEFT JOIN. * Use replace() instead of char() for escaping newline and carriage-return characters embedded in strings in the .dump output from the command-line shell. * Avoid unnecessary foreign key processing in UPDATE statements that do not touch the columns that are constrained by the foreign keys. * On a DISTINCT query that uses an index, try to skip ahead to the next distinct entry using the index rather than stepping through rows, when an appropriate index is available. * Avoid unnecessary invalidation of sqlite3_blob handles when making changes to unrelated tables. * Transfer any terms of the HAVING clause that use only columns mentioned in the GROUP BY clause over to the WHERE clause for faster processing. * Reuse the same materialization of a VIEW if that VIEW appears more than once in the same query. * Enhance PRAGMA integrity_check so that it identifies tables that have two or more rows with the same rowid. * Enhance the FTS5 query syntax so that column filters may be applied to arbitrary expressions. * Enhance the json_extract() function to cache and reuse parses of JSON input text. * Added the anycollseq.c loadable extension that allows a generic SQLite database connection to read a schema that contains unknown and/or application-specific collating sequences. * Fix a problem in REPLACE that can result in a corrupt database containing two ore more rows with the same rowid. Fix for ticket f68dc596c4e6018d. * Fix a problem in PRAGMA integrity_check that was causing a subsequent VACUUM to behave suboptimally. so that it works correctly with foreign keys on WITHOUT ROWID tables. * Disallow leading zeros in numeric constants in JSON. Fix for ticket b93be8729a895a528e2. * Disallow control characters inside of strings in JSON. Fix for ticket 6c9b5514077fed34551. * Limit the depth of recursion for JSON objects and arrays in orde to avoid excess stack usage in the recursive descent parser. Fix for ticket 981329adeef51011052.- Update to 3.18.0 * Added the PRAGMA optimize command * The SQLite version identifier returned by the sqlite_source_id() SQL function and the sqlite3_sourceid() C API and found in the SQLITE_SOURCE_ID macro is now a 64-digit SHA3-256 hash instead of a 40-digit SHA1 hash. * Added the json_patch() SQL function to the JSON1 extension. * Enhance the LIKE optimization so that it works for arbitrary expressions on the left-hand side as long as the LIKE pattern on the right-hand side does not begin with a digit or minus sign. * Added the sqlite3_set_last_insert_rowid() interface and use the new interface in the FTS3, FTS4, and FTS5 extensions to ensure that the sqlite3_last_insert_rowid() interface always returns reasonable values. * Enhance PRAGMA integrity_check and PRAGMA quick_check so that they verify CHECK constraints. * Enhance the query plans for joins to detect empty tables early and halt without doing unnecessary work. * Enhance the sqlite3_mprintf() family of interfaces and the printf SQL function to put comma separators at the thousands marks for integers, if the "," format modifier is used in between the "%" and the "d" (example: "%,d"). * Added the -DSQLITE_MAX_MEMORY=N compile-time option. * Added the .sha3sum dot-command and the .selftest dot-command to the command-line shell * Begin enforcing SQLITE_LIMIT_VDBE_OP. This can be used, for example, to prevent excessively large prepared statements in systems that accept SQL queries from untrusted users. * Various performance improvements. * Ensure that indexed expressions with collating sequences are handled correctly. Fix for ticket eb703ba7b50c1a5. * Fix a bug in the 'start of ...' modifiers for the date and time functions. Ticket 6097cb92745327a1 * Fix a potential segfault in complex recursive triggers, resulting from a bug in the OP_Once opcode introduced as part of a performance optimization in version 3.15.0. Ticket 06796225f59c057c * In the RBU extension, add extra sync operations to avoid the possibility of corruption following a power failure. * The sqlite3_trace_v2() output for nested SQL statements should always begin with a "--" comment marker.- Drop update-desktop-files BuildRequires: this package contains no desktop files, hence there is no need to handle any of them.- Update to 3.17.0 * Approximately 25% better performance from the R-Tree extension. * Add the SQLITE_DEFAULT_LOOKASIDE compile-time option. * Increase the default lookaside size from 512,125 to 1200,100 as this provides better performance while only adding 56KB of extra memory per connection. * Use compiler built-ins __builtin_sub_overflow(), __builtin_add_overflow(), and __builtin_mul_overflow() when available. * Added the SQLITE_ENABLE_NULL_TRIM compile-time option, which can result in significantly smaller database files for some applications, at the risk of being incompatible with older versions of SQLite. * Change SQLITE_DEFAULT_PCACHE_INITSZ from 100 to 20, for improved performance. * Added the SQLITE_UINT64_TYPE compile-time option as an analog to SQLITE_INT64_TYPE. * Perform some UPDATE operations in a single pass instead of in two passes. * Enhance the session extension to support WITHOUT ROWID tables. * Fixed performance problems and potential stack overflows when creating views from multi-row VALUES clauses with hundreds of thousands of rows. * Added the sha1.c extension. * In the command-line shell, enhance the ".mode" command so that it restores the default column and row separators for modes "line", "list", "column", and "tcl". * Enhance the SQLITE_DIRECT_OVERFLOW_READ option so that it works in WAL mode as long as the pages being read are not in the WAL file. * Enhance the LEMON parser generator so that it can store the parser object as a stack variable rather than allocating space from the heap and make use of that enhancement in the amalgamation. * Other performance improvements. Uses about 6.5% fewer CPU cycles. * Throw an error if the ON clause of a LEFT JOIN references tables to the right of the ON clause. This is the same behavior as PostgreSQL. Formerly, SQLite silently converted the LEFT JOIN into an INNER JOIN. Fix for ticket 25e335f802dd. * Use the correct affinity for columns of automatic indexes. Ticket 7ffd1ca1d2ad4ec. * Ensure that the sqlite3_blob_reopen() interface can correctly handle short rows. Fix for ticket e6e962d6b0f06f46e.- Update to version 3.16.2: * Fix the REPLACE statement for WITHOUT ROWID tables that lack secondary indexes so that it works correctly with triggers and foreign keys. * Fix the sqlite3_value_text() interface so that it correctly translates content generated by zeroblob() into a string of all 0x00 characters. * Fix the bytecode generator to deal with a subquery in the FROM clause that is itself a UNION ALL where one side of the UNION ALL is a view that contains an ORDER BY. * Adjust the sqlite3_column_count() API so it more often returns the same values for PRAGMA statements as it did in prior releases, to minimize disruption to applications that might be using that interface in unexpected ways.- Update to version 3.16.1 * Fix a bug concerning the use of row values within triggers (see ticket 8c9458e7) that was in version 3.15.0.- Update to version 3.16.0: * Uses 9% fewer CPU cycles. (See the CPU performance measurement report for details on how the this performance increase was computed.) * Added experimental support for PRAGMA functions. * Added the SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE option to sqlite3_db_config(). * Enhance the date and time functions so that the 'unixepoch' modifier works for the full span of supported dates. * Changed the default configuration of the lookaside memory allocator from 500 slots of 128 bytes each into 125 slots of 512 bytes each. * Enhanced "WHERE x NOT NULL" partial indexes so that they are usable if the "x" column appears in a LIKE or GLOB operator. * Enhanced sqlite3_interrupt() so that it interrupts checkpoint operations that are in process. * Enhanced the LIKE and GLOB matching algorithm to be faster for cases when the pattern contains multiple wildcards. * Added the SQLITE_FCNTL_WIN32_GET_HANDLE file control opcode. * Added ".mode quote" to the command-line shell. * Added ".lint fkey-indexes" to the command-line shell. * Added the .imposter dot-command to the command-line shell. * Added the remember(V,PTR) SQL function as a loadable extension. * Rename the SQLITE_OMIT_BUILTIN_TEST compile-time option to * SQLITE_UNTESTABLE to better reflect the implications of using it.- SQLite 3.15.2: * Multiple bug fixes to the row value logic that was introduced in version 3.15.0. * Fix a NULL pointer dereference in ATTACH/DETACH following a maliciously constructed syntax error * Fix a crash that can occur following an out-of-memory condition in the built-in instr() function. * In the JSON extension, fix the JSON validator so that it correctly rejects invalid backslash escapes within strings.- SQLite 3.15.1: * Fix the VACUUM command so that it spills excess content to disk rather than holding everything in memory, and possible causing an out-of-memory error for larger database files * Fix a case where OR-connected terms in the ON clause of a LEFT JOIN might cause incorrect results * Fix a case where the use of row values in the ON clause of a LEFT JOIN might cause incorrect results- SQLite 3.15.0 * Added support for row values. * Allow deterministic SQL functions in the WHERE clause of a partial index. * Added the "modeof=filename" URI parameter on the unix VFS * Added support for SQLITE_DBCONFIG_MAINDBNAME. * Added the ability to VACUUM an ATTACH-ed database. * Enhancements to the command-line shell: + Add the ".testcase" and ".check" dot-commands. + Added the --new option to the ".open" dot-command, causing any prior content in the database to be purged prior to opening. * Enhance the fts5vocab virtual table to handle "ORDER BY term" efficiently. * Miscellaneous micro-optimizations reduce CPU usage by more than 7% on common workloads. Most optimization in this release has been on the front-end (sqlite3_prepare_v2()). * The multiply operator now correctly detects 64-bit integer overflow and promotes to floating point in all corner-cases. Fix for ticket 1ec41379c9c1e400. * Correct handling of columns with redundant unique indexes when those columns are used on the LHS of an IN operator. Fix for ticket 0eab1ac759. * Skip NULL entries on range queries in indexes on expressions. Fix for ticket 4baa46491212947. * Ensure that the AUTOINCREMENT counters in the sqlite_sequence table are initialized doing "Xfer Optimization" on "INSERT ... SELECT" statements. Fix for ticket 7b3328086a5c116c. * Make sure the ORDER BY LIMIT optimization (from check-in 559733b09e) works with IN operators on INTEGER PRIMARY KEYs. Fix for ticket 96c1454c- SQLite 3.14.2: * Fix the sqlite3_trace_v2() interface so that it is disabled if either the callback or the mask arguments are zero, in accordance with the documentation. * Fix commenting errors and improve the comments generated on EXPLAIN listings when the -DSQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option is used. * Fix the ".read" command in the command-line shell so that it understands that its input is not interactive. * Correct affinity computations for a SELECT on the RHS of an IN operator. Fix for ticket 199df4168c. * The ORDER BY LIMIT optimization is not valid unless the inner-most IN operator loop is actually used by the query plan. Fix for ticket 0c4df46116e90f92. * Fix an internal code generator problem that was causing some DELETE operations to no-op. Ticket ef360601- SQLite 3.14.1: * A performance enhancement to the page-cache "truncate" operation reduces COMMIT time by dozens of milliseconds on systems with a large page cache * Fix to the --rbu option of sqldiff.- SQLite 3.14.0 * Added support for WITHOUT ROWID virtual tables. * Improved the query planner so that the OR optimization can be used on virtual tables even if one or more of the disjuncts use the LIKE, GLOB, REGEXP, MATCH operators. * Added the CSV virtual table for reading RFC 4180 formatted comma-separated value files. * Added the carray() table-valued function extension. * Enabled persistent loadable extensions using the new SQLITE_OK_LOAD_PERMANENTLY return code from the extension entry point. * Added the SQLITE_DBSTATUS_CACHE_USED_SHARED option to sqlite3_db_status(). * Add the vfsstat.c loadable extension - a VFS shim that measures I/O together with an eponymous virtual table that provides access to the measurements. * Improved algorithm for running queries with both an ORDER BY and a LIMIT where only the inner-most loop naturally generates rows in the correct order. * Enhancements to Lemon parser generator, so that it generates a faster parser. * The PRAGMA compile_options command now attempts to show the version number of the compiler that generated the library. * Enhance PRAGMA table_info so that it provides information about eponymous virtual tables. * The query planner uses a full scan of a partial index instead of a full scan of the main table, in cases where that makes sense. * Allow table-valued functions to appear on the right-hand side of an IN operator. * Added two new C-language interfaces: sqlite3_expanded_sql() and sqlite3_trace_v2(). These new interfaces subsume the functions of sqlite3_trace() and sqlite3_profile() which are now deprecated. * Added the json_quote() SQL function to the json1 extension. * Disable the authorizer callback while reparsing the schema. * Added the SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION compile-time option and turned that option on by default when building the command-line shell. * Fix the ALTER TABLE command so that it does not corrupt descending indexes when adding a column to a legacy file format database. Ticket f68bf68513a1c15f * Fix a NULL-pointer dereference/crash that could occurs when a transitive WHERE clause references a non-existent collating sequence. Ticket e8d439c77685eca6. * Improved the cost estimation for an index scan which includes a WHERE clause that can be partially or fully evaluated using columns in the index and without having to do a table lookup. This fixes a performance regression that occurred for some obscure queries following the ORDER BY LIMIT optimization introduced in version 3.12.0.- Fix SLE 11 for previous change: noarch subpackages not supported- Reduce the conditions a bit and sort with spec-cleaner - Remove condition for old sle10 ppc machines- SQLite 3.13.0: * Postpone I/O associated with TEMP files for as long as possible, with the hope that the I/O can ultimately be avoided completely. * Merged the session extension into trunk. * Added the ".auth ON|OFF" command to the command-line shell. * Added the "--indent" option to the ".schema" and ".fullschema" commands of the command-line shell, to turn on pretty-printing. * Added the ".eqp full" option to the command-line shell, that does both EXPLAIN and EXPLAIN QUERY PLAN on each statement that is evaluated. * Improved resistance against goofy query planner decisions caused by incomplete or incorrect modifications to the sqlite_stat1 table by the application. * Added the sqlite3_db_config(db,SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION) interface which allows the sqlite3_load_extension() C-API to be enabled while keeping the load_extension() SQL function disabled for security. * Change the temporary directory search algorithm on Unix to allow directories with write and execute permission, but without read permission, to serve as temporary directories. Apply this same standard to the "." fallback directory. * Fix a problem with the multi-row one-pass DELETE optimization that was causing it to compute incorrect answers with a self-referential subquery in the WHERE clause. Fix for ticket dc6ebeda9396087 * Fix a possible segfault with DELETE when table is a rowid table with an INTEGER PRIMARY KEY and the WHERE clause contains a OR and the table has one or more indexes that are able to trigger the OR optimization, but none of the indexes reference any table columns other than the INTEGER PRIMARY KEY. Ticket 16c9801ceba49. * When checking for the WHERE-clause push-down optimization, verify that all terms of the compound inner SELECT are non-aggregate, not just the last term. Fix for ticket f7f8c97e97597.- SQLite 3.12.2: * Fix compatibility with some legacy versions of sqlite database * Minor bugfixes- SQLite 3.12.1: * Fix a boundary condition error introduced by version 3.12.0 that can result in a crash during heavy SAVEPOINT usage. * Fix views so that they inherit column datatypes from the table that they are defined against, when possible. * Fix the query planner so that IS and IS NULL operators are able to drive an index on a LEFT OUTER JOIN.- SQLite 3.12.0: * The SQLITE_DEFAULT_PAGE_SIZE is increased from 1024 to 4096. The SQLITE_DEFAULT_CACHE_SIZE is changed from 2000 to -2000 so the same amount of cache memory is used by default. * Enhancements to the Lemon parser generator so that it creates a smaller and faster SQL parser. * Only create master journal files if two or more attached databases are all modified, do not have PRAGMA synchronous set to OFF, and do not have the journal_mode set to OFF, MEMORY, or WAL. * Added the SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER option to sqlite3_db_config() which allows the two-argument version of the fts3_tokenizer() SQL function to be enabled or disabled at run-time. * Added the sqlite3rbu_bp_progress() interface to the RBU extension. * The PRAGMA defer_foreign_keys=ON statement now also disables RESTRICT actions on foreign key. * Added the sqlite3_system_errno() interface. * Added the SQLITE_DEFAULT_SYNCHRONOUS and SQLITE_DEFAULT_WAL_SYNCHRONOUS compile-time options. The SQLITE_DEFAULT_SYNCHRONOUS compile-time option replaces the SQLITE_EXTRA_DURABLE option, which is no longer supported. * Enhanced the ".stats" command in the command-line shell to show more information about I/O performance obtained from /proc, when available. * Make sure the sqlite3_set_auxdata() values from multiple triggers within a single statement do not interfere with one another. Ticket dc9b1c91. * Fix the code generator for expressions of the form "x IN (SELECT...)" where the SELECT statement on the RHS is a correlated subquery. - Remove sqlite3-link-binary-with-libsqlite3.patch: replaced with configure option --disable-static-shell- Enable secure delete by default, this matches Fedora & Android. It can be disabled with `PRAGMA SECURE_DELETE = 0;` - Enable more extensions, syncing with Fedora & Gentoo.- Fix sqlite-fts5-link.patch: link libsqlite3.so with libm instead of the sqlite3 binary: the library is the actual user of log(). - Add sqlite3-link-binary-with-libsqlite3.patch: dyamically link /usr/bin/sqlite3 to libsqlite3 instead of statically using it. - Move autoreconf call to build section, where it belongs.- Enable FTS5 support. - Add sqlite-fts5-link.patch to link to math library because FTS5 code uses log().- SQLite 3.11.1: * Fix an FTS5 issue in which the 'optimize' command could cause index corruption. * Fix a buffer overread that might occur if FTS5 is used to query a corrupt database file. * Increase the maximum "scope" value for the spellfix1 extension from 6 to 30.- explicitly enable readline support - run spec-cleaner- Update to 3.11.0 * Enhanced WAL mode so that it works efficiently with transactions that are larger than the cache_size. * Added the FTS5 detail option. * Added the "EXTRA" option to PRAGMA synchronous that does a sync of the containing directory when a rollback journal is unlinked in DELETE mode, for better durability. The SQLITE_EXTRA_DURABLE compile-time option enables PRAGMA synchronous=EXTRA by default. * Enhanced the query planner so that it is able to use a covering index as part of the OR optimization. * Avoid recomputing NOT NULL and CHECK constraints on unchanged columns in UPDATE statement. * Many micro-optimizations, resulting in a library that is faster than the previous release. * By default, the shell is now in "auto-explain" mode. The output of EXPLAIN commands is automatically formatted. * Added the ".vfslist" dot-command. * The SQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option is now turned on by default in the standard builds.- SQlite 3.10.2: * Fix case-folding bug introduced in 3.10.0 in the LIKE operator * Fix a use-after-free that can occur when SQLite is compiled with -DSQLITE_HAS_CODEC. * Fix the build so that it works with -DSQLITE_OMIT_WAL.- SQLite 3.10.1: * Fix a 16-month-old bug in the query planner that could generate incorrect results when a scalar subquery attempts to use the block sorting optimization. * Add SQLITE_FCNTL_JOURNAL_POINTER file control- update to 3.10.0 - spec-cleaned * Added support for LIKE, GLOB, and REGEXP operators on virtual tables. * Added the colUsed field to sqlite3_index_info for use by the sqlite3_module.xBestIndex method. * Enhance the PRAGMA cache_spill statement to accept a 32-bit integer parameter which is the threshold below which cache spilling is prohibited. * On unix, if a symlink to a database file is opened, then the corresponding journal files are based on the actual filename, not the symlink name. * Added the "--transaction" option to sqldiff. * Added the sqlite3_db_cacheflush() interface. * Added the sqlite3_strlike() interface. * When using memory-mapped I/O map the database file read-only so that stray pointers and/or array overruns in the application cannot accidently modify the database file. * Added the experimental sqlite3_snapshot_get(), sqlite3_snapshot_open(), and sqlite3_snapshot_free() interfaces. These are subject to change or removal in a subsequent release. * Enhance the 'utc' modifier in the date and time functions so that it is a no-op if the date/time is known to already be in UTC. (This is not a compatibility break since the behavior has long been documented as "undefined" in that case.) * Added the json_group_array() and json_group_object() SQL functions in the json extension. * Added the SQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option. * Many small performance optimizations. + Enhancements to the command-line shell: * Added the ".changes ON|OFF" and ".vfsinfo" dot-commands. + Important fixes: * Fix inconsistent integer to floating-point comparison operations that could result in a corrupt index if the index is created on a table column that contains both large integers and floating point values of similar magnitude. * Fix an infinite-loop in the query planner that could occur on malformed common table expressions. * Various bug fixes in the sqldiff tool.- SQLite 3.9.2: * Fix the schema parser so that it interprets certain (obscure and ill-formed) CREATE TABLE statements the same as legacy. * Fix a query planner problem that could result in an incorrect answer due to the use of automatic indexing in subqueries in the FROM clause of a correlated scalar subqueries.- SQLite 3.9.1: * Fix the json1 extension so that it does not recognize ASCII form-feed as a whitespace character, in order to comply with RFC-7159. * Build and portability fixes.- SQLite 3.9.0 * Add json1 extension module * The CREATE VIEW statement now accepts an optional list of column names following the view name. * Added support for indexes on expressions. * Added support for table-valued functions in the FROM clause of a SELECT statement. * Added support for eponymous virtual tables. * A VIEW may now reference undefined tables and functions when initially created. Missing tables and functions are reported when the VIEW is used in a query. * Added the sqlite3_value_subtype() and sqlite3_result_subtype() interfaced (used by the json1 extension). * The query planner is now able to use partial indexes that contain AND-connected terms in the WHERE clause. * The sqlite3_analyzer utility is updated to report the depth of each btree and to show the average fanout for indexes and WITHOUT ROWID tables. * Enhanced the dbstat virtual table so that it can be used as a table-valued function where the argument is the schema to be analyzed. * sqlite3_memory_alarm() no-op.- Update to 3.8.11.1 * Restore an undocumented side-effect of PRAGMA cache_size: force the database schema to be parsed if the database has not been previously accessed. * Fix a long-standing problem in sqlite3_changes() for WITHOUT ROWID tables that was reported a few hours after the 3.8.11 release.- SQLite 3.8.11: * Significantly improved performance * new interfaces and enhancements * Important bug fixes for CREATE TABLE AS * Fix the skip-scan optimization so that it works correctly when the OR optimization is used on WITHOUT ROWID tables. * Fix the sqlite3_memory_used() and sqlite3_memory_highwater() interfaces so that they actually do provide a 64-bit answer. * experimental extensions, not enabled: + RBU (Resumable Bulk Update) extension + FTS5 (Full-text search) extension- SQLite 3.8.10.2: * Fix an index corruption issue introduced by version 3.8.7.- SQLite 3.8.10.1: * Make sqlite3_compileoption_used() responsive to the SQLITE_ENABLE_DBSTAT_VTAB compile-time option. * Fix minor issues with the dbstat virtual table.- Update to SQLite 3.8.10 * Added the y format string to the matchinfo() function of FTS3. * Performance improvements for ORDER BY, VACUUM, CREATE INDEX, PRAGMA integrity_check, and PRAGMA quick_check * Fix many obscure problems discovered while SQL fuzzing. * Add the ".binary" and ".limits" commands to the command-line shell * Make the "dbstat" virtual table part of standard builds when compiled with the SQLITE_ENABLE_DBSTAT_VTAB option.- Update to SQLite 3.8.9: * Added the sqlite3_status64() interface. * Fix memory size tracking so that it works even if SQLite uses more than 2GiB of memory. * Added the PRAGMA index_xinfo command. * Fix a potential 32-bit integer overflow problem in the sqlite3_blob_read() and sqlite3_blob_write() interfaces. * Ensure that prepared statements automatically reset on extended error codes of SQLITE_BUSY and SQLITE_LOCKED even when compiled using SQLITE_OMIT_AUTORESET. * Correct miscounts in the sqlite3_analyzer.exe utility related to WITHOUT ROWID tables. * Added the ".dbinfo" command to the command-line shell. * Improve the performance of fts3/4 queries that use the OR operator and at least one auxiliary fts function. * Fix a bug in the fts3 snippet() function causing it to omit leading separator characters from snippets that begin with the first token in a column.- Update to SQLite 3.8.8.3 * Fix a bug (ticket 2326c258d02ead33) that can lead to incorrect results if the qualifying constraint of a partial index appears in the ON clause of a LEFT JOIN. * Added the ability to link against the "linenoise" command-line editing library in unix builds of the command-line shell.- SQLite 3.8.8.2: * Enhance sqlite3_wal_checkpoint_v2(TRUNCATE) interface so that it truncates the WAL file even if there is no checkpoint work to be done.- SQLite 3.8.8.1: * Fix a bug in the sorting logic, present since version 3.8.4, that can cause output to appear in the wrong order on queries that contains an ORDER BY clause, a LIMIT clause, and that have approximately 60 or more columns in the result set.- SQLite 3.8.8 - New Features: * Added the PRAGMA data_version command * Added the SQLITE_CHECKPOINT_TRUNCATE option to the sqlite3_wal_checkpoint_v2() / PRAGMA wal_checkpoint. * Added the sqlite3_stmt_scanstatus() when compiled with SQLITE_ENABLE_STMT_SCANSTATUS. * The sqlite3_table_column_metadata() is enhanced to work correctly on WITHOUT ROWID tables and to check for the existence of a a table if the column name parameter is NULL. The interface is now also included in the build by default, without requiring the SQLITE_ENABLE_COLUMN_METADATA compile- time option. * Added the SQLITE_ENABLE_API_ARMOR compile-time option. * Added the SQLITE_REVERSE_UNORDERED_SELECTS compile-time option. * Added the SQLITE_SORTER_PMASZ compile-time option and SQLITE_CONFIG_PMASZ start-time option. * Added the SQLITE_CONFIG_PCACHE_HDRSZ option to sqlite3_config() * The number of rows in a VALUES clause is no longer limited by SQLITE_LIMIT_COMPOUND_SELECT. * Added the eval.c loadable extension that implements an eval() SQL function that will recursively evaluate SQL. - Performance Enhancements: * Reduce the number of memcpy() operations involved in balancing a b-tree, for 3.2% overall performance boost. * Improvements to cost estimates for the skip-scan optimization. * The automatic indexing optimization is now capable of generating a partial index if that is appropriate. - Bug fixes: * Ensure durability following a power loss with "PRAGMA journal_mode=TRUNCATE" by calling fsync() right after truncating the journal file. * The query planner now recognizes that any column in the right- hand table of a LEFT JOIN can be NULL, even if that column has a NOT NULL constraint. Avoid trying to optimize out NULL tests in those cases. * Make sure ORDER BY puts rows in ascending order even if the DISTINCT operator is implemented using a descending index. * Fix data races that might occur under stress when running with many threads in shared cache mode where some of the threads are opening and closing connections. * Fix obscure crash bugs found by american fuzzy lop. - Other changes: * Disable the use of the strchrnul() C-library routine unless it is specifically enabled using the -DHAVE_STRCHRNULL compile- time option. * Improvements to the effectiveness and accuracy of the likelihood(), likely(), and unlikely() SQL hint functions.- SQLite 3.8.7.4: * Bug fix: Add in a mutex that was omitted from the previous release.- SQLite 3.8.7.3: * Ensure the cached KeyInfo objects (an internal abstraction not visible to the application) do not go stale when operating in shared cache mode and frequently closing and reopening some database connections while leaving other database connections on the same shared cache open continuously. * Recognize that any column in the right-hand table of a LEFT JOIN can be NULL even if the column has a NOT NULL constraint. Do not apply optimizations that assume the column is never NULL.- SQLite 3.8.7.2: * Enhance the ROLLBACK command so that pending queries are allowed to continue as long as the schema is unchanged. * Bug fix: Make sure that NULL results from OP_Column are fully and completely NULL and do not have the MEM_Ephem bit set. * Bug fix: The %c format in sqlite3_mprintf() is able to handle precisions greater than 70. * Bug fix: Do not automatically remove the DISTINCT keyword from a SELECT that forms the right-hand side of an IN operator since it is necessary if the SELECT also contains a LIMIT.- SQLite 3.8.7.1: * In PRAGMA journal_mode=TRUNCATE mode, call fsync() immediately after truncating the journal file to ensure that the transaction is durable across a power loss. * Fix an assertion fault that can occur when updating the NULL value of a field at the end of a table that was added using ALTER TABLE ADD COLUMN. * Do not attempt to use the strchrnul() function from the standard C library unless the HAVE_STRCHRNULL compile-time option is set. * Fix a couple of problems associated with running an UPDATE or DELETE on a VIEW with a rowid in the WHERE clause.- SQLite 3.8.7 - Performance Enhancements: * Many micro-optimizations result in 20.3% more work for the same number of CPU cycles relative to the previous release. * The sorter can use auxiliary helper threads to increase real- time response. This feature is off by default and may be enabled using the PRAGMA threads command or the SQLITE_DEFAULT_WORKER_THREADS compile-time option. * Enhance the skip-scan optimization so that it is able to skip index terms that occur in the middle of the index, not just as the left-hand side of the index. * Improved optimization of CAST operators. * Various improvements in how the query planner uses sqlite_stat4 information to estimate plan costs. - New Features: * Added new interfaces with 64-bit length parameters: sqlite3_malloc64() sqlite3_realloc64() sqlite3_bind_blob64() sqlite3_result_blob64() sqlite3_bind_text64() sqlite3_result_text64() * Added the new interface sqlite3_msize() that returns the size of a memory allocation obtained from sqlite3_malloc64() and its variants. * Added the SQLITE_LIMIT_WORKER_THREADS option to sqlite3_limit() and PRAGMA threads command for configuring the number of available worker threads. * The spellfix1 extension allows the application to optionally specify the rowid for each INSERT. Added the User Authentication extension. - Bug Fixes: * Fix a bug in the partial index implementation that might result in an incorrect answer if a partial index is used in a subquery or in a view. * Fix a query planner bug that might cause a table to be scanned in the wrong direction (thus reversing the order of output) when a DESC index is used to implement the ORDER BY clause on a query that has an identical GROUP BY clause. * Fix a bug in sqlite3_trace() that was causing it to sometimes fail to print an SQL statement if that statement needed to be re-prepared. * Fix a faulty assert() statement. - Test, Debug, and Analysis Changes: * Show ASCII-art abstract syntax tree diagrams using the ".selecttrace" and ".wheretrace" commands in the command-line shell when compiled with SQLITE_DEBUG, SQLITE_ENABLE_SELECTTRACE, and SQLITE_ENABLE_WHERETRACE. Also provide the sqlite3TreeViewExpr() and sqlite3TreeViewSelect() entry points that can be invoked from with the debugger to show the parse tree when stopped at a breakpoint. * Drop support for SQLITE_ENABLE_TREE_EXPLAIN. The SELECTTRACE mechanism provides more useful diagnostics information. * New options to the command-line shell for configuring auxiliary memory usage: --pagecache, --lookaside, and --scratch.sqlite-develsheep09 16714437953.39.33.39.33.39.3-150000.3.20.13.39.3-150000.3.20.13.39.3sqlite3.hsqlite3ext.hlibsqlite3.sosqlite3.pc/usr/include//usr/lib64//usr/lib64/pkgconfig/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:27248/SUSE_SLE-15_Update/2bcdf891cfceaaf8e215090fdb167322-sqlite3.SUSE_SLE-15_Updatecpioxz5x86_64-suse-linuxC source, ASCII textpkgconfig filePR:a,pqsqlite3-docutf-83449c830fd6d1430a706233d3f4fac2c60beed022443a792a85c0f893d0ad395?7zXZ !t/'"] crv(vX0ʎ a7靽@?E]Bg!K5!>*0&Ax[vq;uM=瓯I΍sq3d%3u[6%"FKGgo"sY1OW5kS)5 1Y㘀`&yP__5 IU4|N15!xp.-G&wr+&Wi_5&Sr:׆V ɩϘ/4᥁:FS%j47vbY#W3e@[9rKxz]pp["c -N`%t0/WObhhVLVǯDZܺh(s [)V}n\+5`~0xAZ:h*1dҦ ĈNcTkr:h#Qy?i݈83}ʳ4ƭ0aib)z{]bn oҤ J_i5=iW &X' }X^kl: 6^D%ZHsCSd 4Gi-^zvXY n%qK{Ṅz V^ }hD|Ha(I3C8&|:ĹW 0Vʃ,*WHiq?.*)%4>./5i?p\=% /koL66knDy]" ›P$8NIw"#p~+rNʋfdzbc\eka) 7,.Cԫuク,?i.s vHDDIM+ZeoY9$׆|!т,cGbBmN M3X4KopA! 8x1z{1bCh V eDճuI )8>xLas xHhi/F.U{|AjHNŶ"XVZ} ^'&)zTg!tŶaFlm*bp" *'ڇOȇTlksUEM!缒Ez_vdqܫ0ӝΰn'Ʀ3lqQoX8 Doc:GtDן`ۮ䣢;H/P]fr[7#ՎS4:mdd{gXe"﹜yG:؀#|'tB,ؿ3xZK넄 0mgZV:PqµJW"fZFz.pFܟX[%xƤ0x!D$P,-` 93VAg!_6{h*N 5 NK ƞTpoq%>+<;>1~;4W_*G?}[@.KsFsGX~89hbLY0yfq 0&7VK"޹sMOr-LU_0 E ))t-JY$=΅ :Kf=˯LyJ&KboRyG+9"v0~]:@O {j9_\]Y%ZH% i\c !/k}#ØOsvI YEQ6P*5Q[ȶΘV-nY+x)KJ(aQ@Q&.4|j;Wgtun.?u(pM}lqSLj;r/C9w:o@q-&մ f"p~Ch ;8ivF3Q!:lsb%:j"_usfu?'c+|{1`b"~ŒNa$fPr Pyr&|xdx`}X{fEL)?fK=NM2)dL7'GOprW1Xg(s=d^ q-k`BH@<;3楚~'*u30GlTu6q ҦB;7# ˤCT3BAQM7V㭤`c9xOЋwĞOl 5A - K;;_J a|\Zr>g߄b<`Yey?Hnh(y@w>9ȉ@Gh!L '9-ωjTuhp0١}~C6p{}{6+*{Ò]ޘ`$NiӓPE`TK ۯD1mu#!FL "6dfM=<)8Cd3pQz_IP3Q'̇ yx _ʷ}|mPN m$#BMINw )dYJ6%p,(NLX4Xu73ܚj8Rw:qCcOˬPYY.yHkj1/Gő_)H!wv"gmi%C'*/ŕw1Ym)ѥI쵮vSĤPs se8q]gR>C~;~qL|M)FGaڪ[;PR3:5V(V{5 Eb/@ /Ip>i%~;!ي"1K>o{0VGe2 _\H+p`F yl)Q~ew_,!%fs>!}^'+oHwa|s2>r]wK9&%[ A%Yf*làlk#LQI!Gy8FC7@Y;ŭ4w-O-]Bi؏xj)xCjcrZ` fYWocvt HouJcĄ곺+[#> 46A{;`)m%o y/ pZ:)RtQ_dԓ@+Zom %is.j Wykzzǿ`'^ym eƛWߋ \܌{w$d fgѝ J#ƂpsϴAǽ]҆%'.DoMچHjv9f24᩹>7]`ZKD^@]Pg^Xމ<sΏb]^6w(k45Y]IwuKdo;QۖPLTRg<3c͏l~z qTq Le!mB57l,/۾Ȣㅫg٘uh}sıϐP~APOt~AM1n vPq%V;w;H|KD%CĽC.Xz3l;LӉ#ٟ{`i1![5wvx.Nw&KG3olig_ Ƕ->A;puk12J"Rz$U#No;-=%p/5;WN&zqMA>s2.3ODRâF]U|XzJ_eʌ^NM`JPk7 #=_1@6iFTqD Jdi<t4a)uC0ѐWv /{NjVP2)1UmzfXd)9"9`͗5:Piۮ. G|0{sXKe,1a:x3w^j..Le˧a3{\' P1NnHs|Lŷ!ggZ*:TY/cy-H`n&9b «Gh9a$) 6hzwV\ÐTQ E.y9NpHzgwu39Jtf%8"&A{]3ZV'Z&lkq xJtC׹@"u@P)TA5Χ識&+9J&TX@PҺ-$8st# k! OGlrh\%9E'xCkn ]]S߃TwߗB۶a~5tLH)`f?) 2MD>$T/mԟ=#Yc+%"3,XjhDC6,5T󗰞]20,Ջc 7GL!1*A2Ie.'&,O?^+-nF("kTlanjjyǚOPқbaH|u&C j׫+np]}VS+ cN\CTb$E1bG,F[)Y5[OQfa'dp8:M"g\8x$g!4b}RF!=aaZ(nL)o#=tχ  -aXtxER_0! G-:v$:ޕÏ߶g9A#>V!Z=| m|@$XC"R?MtUH^(VQ633qꐼbc uȯ[U8Cs;w; " d}^=+k,D0}F/+? -I_bLfy;.Ry%a( \ُ+[r`VɳAxQj.D|w ¸'r˓XArkgfDdٶz^B\ Wcce1'aN2Pw=!/t`B޺n5}vQbF\1t~Yk:ǻdy忼_ % 6Ov4W}me0 ^;xJB'Q?ZnO%u%ẨķHE ]`[Okjt. c@PxnuJE@hΈ카BS,?{v0v}P `<`5nZ,<L Jm ]CPȥ1IjVZd{:)@gu3#V+k^3<"F!y f}"6dTq!ͅ`VsXr}{Sq5l:ah&akKg v('xD8Ȩ ʟ*pgi'S^q ^j ՊP|-ӊc-y=u6/ KM~nHEa_U]G vJv2b}o;+FۣFʬf(،g#NfJX/8]+9jɔo]UEk9/ D vlR6??vZXО$e] 1##1UJY`@`ԍ3ES 'D:-dl$k 2 19okDѕybjw)“vJU:^O-򺷁h#4בt[qIZCH1nbȧ×n"4> JK1jt;UvHdOlXVƐzg gNxkx׫J~~c˸udH3 ' /&G /С D䐺|q6- gUKwnjn.Hw@N%a▊FXO0^z_)Ɠ!) N謂dD$Rm{ġ킏(]^ ,mX}b·j9R7]q52 ; w7`b<[Nʝ WpfX@PwیWf2cAm:adn~67$T}x4C5D ^WM^R톔4?E),!@U7UB&ym <>ֹR;’D6&[> Ԩs,"` L쉞̩2S>ieHZ=~7mlls3&fC#55֣t{(R߭.9|O(knsF,y0fDMЇ{74h4Eη[Zu4Z҉VF*xS1ɤ\wcŌpw{ =uk)\bNA$'J'g^\2dK#ņ@T\OF>R3EcI'Nks?wJp0UBv]:[˵0); Z\Te h 6__YUK* &R58pBH1W;3]% y{ Xz&Jvq@e\IxrF]n1yP6 ?|`G+o0nE-:ĺmߋPdƆ9d>N#/`[6^x?rFmrSM`1tqnĤ~/4&0s5Iɧ=71FL>F! <|ԑE)Y֦?Wߘ ۍ5vXXI'+2KYsrwMYG A&4G 1 HJOcXm)q/\BpHMλ!w $ d}HC$ H&(CF9䃤oxlqt>"xdl_5 ŻC7p[8m!u@/6x.lno8M0HB~'3̩F/|2蚒ai[9VZ](Ψ̾ cayfy{ X} AEx/iEZHܔN}l~ndjSwgȀ1?LZ̹߬s۷Ή#lt+]kZyʼ{F z㨖;i4> f7 9 nJuSy&b[xPT|}m,HGTv#s4[#[sZ'ju8_c3 q0c4ٜVLҖB,LF3Z '*߳V'Fʧ`.gc m4--J&y6Kޝ(|:Pz smU x#a >Zqvx7v?ˉB*?a+2>EL`Ư%_V$3 =t}46$ۜ=)1Nc?]7>, 䕧 ɒۊ|d\kaJDdm;+peV)8;z-XǛ;3)D`peAV'j%lU=4% bPB(HͬnRw.0 `!vl;h/#~ }s2q6Ԕ8Gе repٛh(tiyh4|ls ' Aa Qx%";sa z+Y޺TZ@pszt)HN(;%ŸvߠI 'wR6Q7Wdo2z3eLRׇfoX*g Rܐ"f9vqzer&-KkghV}Z9,KyELD1ns_|"<\dCT'U3'wg dXA2p{fBcYmFnD=FE@ICK#zWX#6Y e=̛hv{ )s&#s<\SXcvUzNyP&Ɛw! @eP۔J-CΟLiMNQyt7,NZ6_fTP86y9H,[bOL>7xPtg~XL4L ;]OK7F-W{/Qܟ> ލN6UmY 'R4.Wzq$A)t*o!<.d4^<@_ a,F~ !ׯ9cQ`jё:خ*bY,qV: Зߜ3&ɤBgokTyT +QNc4hզil&~j.ř=(XK9"{J j"ςhyYDtSn98˓mul:ӎ/aG},,i? T~zh,L&P# {[(=<ŝqfSX-)#JH2ȒfYɧ;Wb]DM3{\j6F̡Q,doNw.-y H{YNL2*H snV=-76'6s-籡*f7F/,n3)^'VHZl"%qN:۟,i:HƢMep'7 h-`<ڱ".4^mnvbQ0>n/w~Ԇߣ N! l51+P e 38PrjsE'r&{, Ԭq˒3rvKRiӧz|[ {c\sPm"7QzeH~(ɎS).`'qn7QͯH?CES0mknM+@TBíY8<6y-BULȍ\uII^iR6o~WX~Fr,̱b$vG W{=6O[exTش{#P;F%LZ Xr8B:jn7%4y#g% (Y~R( OʈbN"%þ3B٭[!9*^EE'0l4;X"эE@s'a?%]V3YZ%T'K窚YX%T ~ a.Su./Tiɜc;p'Etmor^|K =ycɲwϳ\>_K~ǽL1b&L2e;buF;BVȤ;,G_Yh br,*USr2M ; ِ:_& oa&V)uFL?D_*~93_hYMP&q("T l4ap_("hV!d? r5Xh>Eie[v/&TNdxMRV⛡TPO1:3=Β5}N\ENЉdWa=ye)fzdzŢs&TvRʟ3-8EdAqҒCE[5oe@jMWe,]7tv %h8$W$tGvK+98XO, QXo>NdM#QP` J9Q= ~!h`/FYuγ ٵNU \u)TD(6umxN-o \[z|K'oM51?R_{@%옢k@zH[B cj7rwZ,ÁwSR^C˦V-ZADFe9X4%>LWW$y%$ jqr[_u]QA4Ti+0Hu'TCK^(B?|5c=Z26WmNsa2 2c^DB0/Ud՘*Ɖ "bAAh0,,K []%{+XlJgҽ5ghֆʾ.o?)}a2+g6uf)Vp'*68y6jC؟BޯK% ҶN(+F^qH[ڔQ<.[wg4p3h|ז@{Y%FXLgvj-Na.i^@=mP`8}}md+ dm:T=&[.a|dF^z-:?Xpgs`NHQqtM9 |?~toZkjVjdmj1p|೘vқq/FO7x$i_X@krvwBdoT>8 HyD`ڂe@nۙJsd21㳑pѮnd|1ʂ_ؠ Y<ݕǷG"i?]/ mNP3f*jO>Cg0~6/> P*SQ'0 ;>O)EzD;Lԝ!hW.^Hew,lG?PR a>ՓOؓ=4ulG2/LʀX39ܭ2|{P)"T3gpro;x=g(U_ꈷzb#f,y˪e-pv{$|My$?O$rDa`K@cΒP.&=M1\FDY60O^x\9oM!5. K"|c#E4&5j_pE(Q/oMZۃ,٥,j<56e }L5C[v(ȔtCpXԊ"OBy߹/\iXm/iQ$3Y!_􈽴8*noo?Sꃳ-% s"SP'&ȁi`Ӭ[yD|f2 Xs h~p;78B,'퀂zҢstH E9r:lx?b< n$/lp8&mM} i6ͨ٪UU%[*tg[yBoaPryNnlO;u \Pi)wl2AWI7<$)J794:>0ujj5ɗ>_5[-A v̓,oXqؒo¨* S7&>ܹ۳g/@N>MOr"pe%rgpk~K{8ݺE Cx$m1"*X_/%]^b)kA97X&,$# \R˜TZRx%m9)62#,H==+qxS~r>U@8Qi|k{MMO+ *G~7,4I{d #7=%_{puchZ8b~~{' !\wp׋~A0;7>[->'Ȃ $nxS*?t XLFL`h!-O6_7B{cwxb1 +תRILYdiFQI$ԲchoE>lı|U4jn<>TV"K~/xڛPxL"_Z[ |c&{h ]` ;4(#sG׾dd ]27ԇcc)uy'&EG<( )'y?2UD^ͷq ppi EPcmsxK?:VN~cUFFJ]U{BC'\ly G|} 8ˮ9&0R$smu7酴VdkIDn7 ZX_#flHlicw[wsGOjVaDoҬ<~cq('[*>b;1WWMD{ ƞH'b/]VjF \hSHXs3He)Qv-<XQi'Ӳ=7[4{`d8?% ﻞx(Z]E/)!5aG_{=p} \ M& EWuH.K}S@o6(6FA$>Ə/5:xM+@[w{wnHt"u`:=Ɓ2K YׁZ2B;2,~ TǫGj6^}7}gDIP \Vs?]Ben[≪W%$~3SEO}2|d1?') &᩺>9paHjPo,/rPJvu]-sDf<#E73aBQlHЧvy8k`-q%C_eJ􉾎oYx4VVh%Ge )j@dNY<Za4wx+{d>C|dE67u ;]`+S\h/e:S'Ӆy~*}~6)mpzJhx.Ve#ӪY{N_Bgg6xY2J׌FBtلrqcǪ2 ]w42˛JBzdwSKЍG&ڮo!m']>{K[CN,d5S~$#^#C%6ʀϥai;H0ҍڴE~#;or؀o?Gaha `D3űbRl'- H5MWݥ59d-CpWf3Vs{Vޓφu}2h+-6Io2P%8Y泘i&mں+prgd֢WUo5*,̪rN0aQעu$Vg;Y 5~=tmaIv;5m0-H];"\* < gL(W;[THo#_=OqSp-!H1joi^M'?~ϷhA.,@ t6iߕ#).%R%CQ: ׄ<27E!?H[c Z6XZJ DXM]NV2oRxYhwKp5:FPthc2IX+3*<ȣ0'h}?_a?$wͅh nS$xwƾIP9PH 鮺=rl U  efAEq"E o v{oڶ'@ŋR@C>/MmrFБ仮 q? co\CE>pX]1]NxܧW*J4u-H2?4De8JW3+w1^cV|#w1P:mSGr֬bceb_| Z^MkۛJ(Yѷ..EʤZH@0ҀѩUQث9Q>ʱ֋A`CErvvma}*#T/I͸BɓD$lk~di6E>=alZG 5jh옛Z)iӀ1Լ ׼@K)i Րs'YL+/b3/سoD8EWvCҏ+>U(SFkѼ='d&qCbv4KpB5CEx7Ж7Jn;B\)Τr:f_?'9RuFoesd/@1K\,jvXËxS1d2;C%9%7k܎PT!̆QdŅ8?C}Y4ɰȌW6"wWV؅;_@ T:=*b J\f2_Y /QHߴuͻ˂W}*~+ w ]~,+7 ݢ--B[pVt|o r;隥xwr\ !!"~2e:~Uv[ SKk U)QkHa&$1Q|Aڑj{s* oYM.kY.zT E]KHqpWS1ђcϻL#9Eue0Cqiub%ǃ+Yjf%XbYj\fT sЮ- 9zMA[i RS rl^m{ϒ-©5H*rӬ~Gd Z?` s;)tc+Є$of cGhVe ޟ{ ȳfkb~>Uc O?8ԞF Hu3C$,ر>QPqy~~)M@>bjG3~xZ<4"fu\AUd4]zfcSObKt25 @&2 AOqXvLxX] JglZZ칟dw1Iiw1p ] 2ͩ{X?v,/?j4D@ x1u4 wpvTR?>N9ƞM7E[%Brm6``=E9, ntb՘ϋ\YܬRZ\᫁Z#K<\T .'9Ҕ_ {5 E@L<8"[~̚6OsmS.uwYjE9oܒ Fd+QI9k?\ͤhq.﯌KI7a&Eya|z<#GɊI0Qcb#ش;DPu̅#Bʹ|;§qsZOvLt|dG:1b- ?V4BBٛxxpϞϛtW|}(jXYx۠v'K+21yX#HWXT!Ё[iB_Xhkd٣~dGXFa^`ـc5`/Ă5jJ'lw8o6FXKN8yx%D[VFl6AXqt! 6}C//g^KG[ +_;+a熸| |n)Yv1IzO+τd ]J|w%DMf.8P3UH;$"]Z͏gE|CEʟY\HU__ zmו>@j+#{w?"tl;Ӫ|14|a=Hu w[;#*Uܑ7@j ͤ0hϜ{/19j,h3QE`T1XAhMGi^h(\::Րp,cJw FH1=0Ǘgm4%Z%u%lًk6Dh*Zr'Ըaub=gNsO(ɰ !0J&ϵӺ &m0'*ν2%`1 APB;&9Ӻeh pqmc7\!.޻{ԾqŦtcMe'5ծ:{^qꆣCƒ Ӱzt?U.?;-t UJa{sAoKX&U@08~ s$L]:ogf#Vu&)!șWυ]?xOj̆VB?\*2PVæwT /{ʘzh#Ƀ|_'IeJxI۸6W9ᛢru'Awu:Ԡ3Z[7V:sDhGٿM8m d38XtIdNgb,Mp7qEZA PwhPČ}K?4g5 qr)gpc081ݨeX|u7EyUOK-wVxȨġ>> U6^-$;YBk#d{GG%9 .@eMj H/Kǧv:SPJIte"{ׇLTb $BVŎNܟc.L h ~ġCOؤ~ ;SM:6uVxl8>AҮP!Yd,} 6?՚kjSAQcUC*bJ49Qb`rOQf)Zw g24AUQZbf3 q͟Cbu=w|&}!E-CQ _۬;V7@+汩q[g/:.a{ ~O$ѣM<8ՅŸZΠ܊"U|)1zX'dI21/WgQK@Z(}xdO KL8;擶G)m|)$o[FuQlzd%KQV|r7_ٓ#a\C|K5ՁoaBlzMxeCۜCSkh:%.W"d Da_ؾ$|bdE/b綾@Q ]=wIF~ )69oB+=dKXJ ;\rǚ9V"_Ap  w#]OsHՊ4#l]h5P=A LP"Uj^_js'z7Z]MS+!iK4X\wnmXwmߎ;1@T崃yk + @e;g}kj_*T-1)\<  | &Uƴfe(Q# eׄ1Zf`,H{_lv2Nsbo4+ڋ!jس]4hA&̬<":jxb? C }OR*t:fpKl’B 0uyj lX*ڊm#D==۴ڝ'`)gMABu~k?_eM86*IW1Mq\z7G6Y̑}S9@yj![ڈNB*y1b_N_*^_Ueh!ŬCœս#)+Wywb"P'NVghC/md^{YH,M@g2o>2JU>x~ݰː:#TYj5(Tfx;R,k(9\8DRK? ڈiNk܃H_ j"Eɸ2ۊ=KaVIDb8#C &Ohb3Q5{X9x4dܣ8"sV%.8L3ih$9 K{:8XkEŸ;USЕ%Ca`ap!&0YqQDADZZGQ&9t^!b<墠ah|qab0ގvңښ3KY(܂usVHғ7s(7G^8ijWLh`bcC[guǷzJ| xWcb Sw'{ng5Z}ۆ_kVkm&LehM9fJ 'aDBc1\SM/{HWi}̈207p`}JYHHuL!<Xە(rjվz=<];.qFL&|{ʠWg B6CŴ >z" $žf =#y?\'j-#~?a C\DYB}THvjj7!fqrMsSǬ_4v ?4 X],^ i*͂dr l HDmdSj^[?[Bsx0Fޥ6#p'n6$J4No՝sO|>kl:A-3/,OI)dY)MXlL`CcVm9 ?oB )0H9CmA%E{y3ZyÞ{Sd+V¶SbՐ':"W apc-5 H,XQ@lk>;aA1j 5MH F HkFJČviX(Lke+}&Р {4ݒ+v9VKh <j!N9 :|%r UMUPx;kBS"mYgK(~@[frA "Yy_`|..`b( @mהgx%/9&E %D׈ފ&o&[%H ήS71p;pZ:+xNY)%? YiC?FͿ)(F^ L*7A? U.[J(1ez(SSڳm9:߽I?oz p(^yq ؇!hՍ jKȞ{;fuG?u]?9}@D% :\ i(NڗQ1 FVbqDQl2XCA/ (620ump\7h륪y3QBh*(^ }!Y$t}^˂`RdWFb'ȞrdRgۋYXv~ ̍^<XF g;IBj;g ս'"ַi%t`{GG@%Y^m7z A5t^lZPd)dHkh78ʼ3F5O3ƮB$OOС w~Ɋ)DH(СfY*?.w096Lrϩmo Rgt]#ʲ&E?,!2ŃʺA6ڍS5%䅴8A0zf K)My6 8 B.2~ˌ"R;[n" #dGc y1L؁k?ru 9 `1%֌c]2 RKFθjQ0jU5%h!`Ϭ;+j}8h@ QOl&m!jJY/ cPw˕3z\ @5H/wxW.[{aJnCr]0 ")c؜5'<jZw6uJKfe 8DRNU/VjiQ&%wvHD!/Z-Ej"K.cH;pV[ H:pW^4! oJ<椺hF@ꅅ(hЋ0#FXlE)eunn|&xYY{ArkvH|Ct$NM^pmV0sr SrZ|?fT.NoHȇ} eߥl ˱[*Rygs'c*B_Ʋcsg!}bl_,`=ǃ!l IOL#mI麓:7۔p([3S { ݎb^z_nR<#Uȓh,_qSPH 5~JpyZc8 ; (ov:h4`"t FE_.5Gl2n2=~%>qI|h*G@^sZ&|YGF@-MhgbD6{@o %VH ]NO3ߜW썥h_'\mAѽL!eSϠ#Ұ[f]Q#RxagKkM AC6Ev/:;2䂯v*[.O/%?t=#̖Iԉ62?lG>E5FʧAT (;æ dB;G3'*N®Cѻڹg >~ _Hn BvC;) ,t< M__C_ɋpQS ܪ;wxR{M\Lb2f/!BGխ&M-Tt'Xxu_$0ƂtY& J=OՉqx~_a2n8ݖVrҮrb+vK*gN]3 Z>0*႞ 3K\!NfO ?_+s"?M}-w Q9w+Xykv׍cR&p0au%7e \'K*TC/oRPm /XAh $7;;ZRReN>Q zv!; غ{>G#|+`)d276^5~iO3U0l!\,:"l`G>0v_Nte^AHq}7Zwr]-f az~sۅ>g1'"GW:lhdw$[06V^| Uo4{pWzk>bDi#0!4!d3XA$ntL=sH 30~<_hn=?1%%kPy0өمfo'{I*,B  ?EFQD'y_% z}ן=8#/u ( " H2 V `S%o@8'acs} k&F\ MWcCDBEd15kgInt\C@j%:7 t?LH';Cz "Nœ_ 8"(YM9J9X`-8;J[\XB#DyZ1M0tce֌ϱs9^u=[T[9swD|{J|#C (}ڢHjAќ߁ΞAY$-ΖV0Ѥ7jrci(2@Y٬D qvMM (^i@m*rJB5m6T~?s T 3<|x~g,O}x1"K8\ϡ̜kEzg 7zlŅѾߖR £R; vu~~''[@cY}j=q +t,叫xN] I9XAt"c*{lmNN"Q, e O.AΙB7g N$)y9b4cڟ9S&l4 89u+'@v|@A/X9"b)-7RY2~JăϴT -Gٮvs6+WMC^l)n)wԬbisj6' %#tmh7 pOP8PvS@*ut|!wBQy6[l)nE8s:R(|kJTh>Ғe P:w}*Ɛ= 4g.Crdb :>(V(+to-u) ;`E[bΠ Ibw+l{!]?9jkЕhEnd=_ Kkm_4Xۃ6&|)|#N(;/̤IF HϘxmy*CChyȱvZT|\@%NpdAF͓Rv hD tAns4 Cϋ!%H é@ΐsV˂>.KN#{:3#,.->H2zEf_|{cBb霊hߝVb* BpI[4յkvϷ-S!+#$ߚ_H&r:s8ҵNw|2\IVMwǒV!k}[ 3}&ky*0hp}Yr3Y֎Pk:3]"2sibD1 SX!M94d~`QLS}1ppww({3mMEsɽ%Oҕ`pǘ2YY7"J{/F*jw @1l_6-^9/lgSOGI+DgV:An18#\9ܩ| ~ȨU/[]SI/7hVgT*zT=JU.֧qVfWK<4dZX}u1hOQQ}hf qCfK99"=lcˏt%iMO`VfL Ph|4i 39㿃lhLՓ[.({ؽ[F.WKDġyn6G"nz=3w+_i>Mr4٪Hۤ@4A)0/+C !rJlVN9Pf=c GryWajȠMK"[AM#rCF&'GoxE~ʺMnU鄨 -Z ˍ)r &#  +`9+#$++(ެÌv.]H~83< ϶:&g(筵{@Ws­Dga3`nB:_"3֘:"7)ul㜏Eubz9FRpvǏ,fhɂ)[=Q$x`w[7Y''n^%HaHpo\% EParla\PV-OzPjGZmR=H1+ȁ{Vq`3zuv^ زVX%T9(½ j07d `: lgkvЉr#G&HiRm&f9O~rl-0 @4 g^- 1 4) ^^ܗPd2z#42)ȵs~wQ1?XEoM~0s!nh>Xw177yp;Z,?gE峫ةY"Jc&uKjOjUӡt߅@~d]!w!ъ>ZQZ:=98"_l 2D06Գ'Qu"k9L-{،tſ߄]ImC15X%5ϏN>^oRɴ':XD˔'o :r2 E.T_L;t ZIKۚ+#tԹ{8'(O`lp"EɁ,8(%{/1etI97a@a=/eJ,n4O~YhTq7*MR3˭Q!t@U , )x-qW=Fsp=^ +vA&Tc5i~OpE2dc -PrƑ[.MFHҕ5 8%ҿ )/9&&9R*tq̞֚U2e5YᬭHyFQ@'ת#ٲ֡3楠 #K# k*"vG\>sv ͅvib@":Ob-KgX߭8Ӛc4[΋l(qw4s`״o'\me$+mj>IֵPZUa?'qxFZ~V0ҿTYyH^CKQ ց*FC5wA {'Gl|{ ^&mG9E_cA9;}uг Ά 4RF DaL}ɥ=& +Q1s=9ލIx)ٹEGںذ~m3%>jN"-jx9("A .Hv<|>.pz#m(+^9ġp2l|ıE%̷brP]Yō)@)hU//J3I=(bCT {uyvmQ7\^ lr P)runN@;^Qv[<%V+FwTcK zU!" ^iV:] E]DqtuV6Zdž`Hy[ît1L>jIG&˰_\eV1CQ3gt{<.LwFM ,aV.OIGkk+"} F\+Q'".0wC7 G' L!] R=vO(i]aXŸ)߿X] RmL~GmC^ h8ޞ(|cL/ aNb h~rj]0(&g 8'M\%p96t$l}2+H>p&NpmnWUHf{WL!)a2mU-JO_,kc5R'-uSAPpN08˰A6{2B9]1os KNkv#ܸ~?"Q|`ffgW]BL;ř,lP $YRh!mKPl O3.J3LzY>Oԣ^Dq JMMi/ÿMƝ|Jq/,i=n" hOAC dd7Ųnϥ: MSq`S G((FTс%e\P{;.m?zu$gCwWַ|ћhج]P9ocUTAmكW޿O2b/CUV@g1e,&_2M4H25wQn]ݰ#*ЗBMzdi0rvmҏ" A*->q}`^x,PߴуQDĜ]VUogEsásBM:E{vghJ^X!L K6.fz~y핀ir䧅G)*I=hy3d}Lj3K"ås~c}'&}Uㅥ=_X 1iгYU*˷D~?(|^ͭ(ǯFBU~/&}WRa Y+J,rQY˖E&v(\Xpo\ԱIp]1ύu2q,/2a˟%ĉ'Cy)ʅqEE MwZOm^wB}|ͳhSg1/hjz2V ^8c9Wk!> &R@UQ9RAP5/&CR0i@Jd&oSXh.zVtWs$+ -`l«aFLt#kؕ@ECpfOuDXl_*G5 ZkdOZ OYLjHlzj6R:SP7RF2+u+Mm(4K6Uz/z1qPeV/3k:P?D 65St #t|zUQ8W["$pl;(r9,Y闿:ta[L./;3/̥DzcaaDVR@zxbHJ Ôwi+8OŘ ܂o+4X7%VtEГ+nUE sX0'h ~MB6eBVF Ƃ HI _ly+ڥl2+ Jc҂- g3zFqDƛXltk[5Gk2L2 E_ocv~L%6?'3f wCM#KXCݜh{葻V P!2AMǞ[+ i{AȦd5f;\8g<Ƃ(Lq^Rď爳TP{y@7y-HQNdt!٦:{E; s#4A-x)CdIZz~1cKQ)qg^>fCqV(4>p¦l yNZes41"=qb5v#Ȩ1]וS=^6 HT?}Qx8$rʚDP8?NlGE㌭{}Fզ3ֹCeʫD1ݟrjNc|B\r2!i 'd[Cω `*ٕG."%Hzpѓ0鬰Gf-8ÚM #9S"GL/+a峙rÌ]( RzV&wG@HtF-V ہ`8afs ;R`Gw!=|p-9_`o5ER[D$^G we0U0!Cȃ8ljv %]P_>L(bfJTkd@]XilK'l\xA̩p/:쟀yyJ5d(OJYيGy8$dG$1G Sf$~hے'U'9b/vY@?nms;QQ#Nebp#³r{T'~ZIf9P]s]8ck,6b1npo@/g۽D`X.28wfn0:IM Q).nF7/$80B3ny]2zUKg11W;ZQt{(hAaۤ`MQ:}w %gDk~Nɮ$M/b.8%B I"G#.wo=)LņR;=+|aPۊxt ,]GdHeAj kZQ]#@Gw sՠ0y]-0 s\3PIvvFCKMl/q@ R@`G[`Y@c0FJMm {ml9"J+qDх8~Uo$!['ϗԼ`^ʥ|Xږ$ך\Tg0 ır Y yxX—;W_9 H_j {'UX HRy,r߇#46|8B&q5 V8żs(}Zq""Su1Ձ7HLBpنϛ?,QqsccN*o<b BCb(ۯcp{\Bžq?.;;",fEVڴƚ^bqp qo.` E@5vݰsa%鵅ީĸI(a7^yӢ&,%# zEIo=E_?`J$DzK{9C_&FwtEiwuf A|v<>Z}o^ fYZJ0!%s !>Pea ]4{^҃T-grSD.@YC4Jǩfr[3bvx)_8-)Own1;-Ē9viW h,*OHԈ넪C1 "Y[D (:Nv.b7*!t Ks4g-%3 .9u>)wiV:i f FpȪ]-6S$]8/fqT$ K/~krc=H/Z:bj6*WX7^p'z3{EMBbUVQpvg T0`'LJdt(kxG(F! zǮ}?_p~XXt-vzVHnKD j5Yioxa>JPW#v] ?02K/U4NGgzvƪe-袍`7 kv*&oܕ]]4sPB rh%zY>mJQ 6)NA l9jlHtO+~\d_Dy*evW&8nn$f?)a'vJ, 'ٲ38tN czcr8{kqQ L}q ;2trCW::ˈj*ӂX~};w 0eVMQ\rx'#n@4M}v? ba?Jtڸ#`cQ i$c[C&$J +Ʊ_soZ ;F$eYx7IIa%/LTttw+Ozz-UѧMԮCpI'ķU"zXBQ/i)b?IW'g @KWϔ.O?#u!cA(&u)yO)?T.f@O'?Q~7n,T$(J>wΛ#W ߤR^ SwҲ A;=F6eڅ8Q뾔 T$[#K[1<ڪ>VrV)؛O4ч\yis Aհ.`7>k[5('|o)rNmU.כ(d'NdtRIݔVR '?9fM}Л RVbNFĠ,gώv('[L5[!5s4C(TzIb(ʋ[g^ﶧO1L~Lu󺩼6Y/~#WDd)5"8S`៻&~Bj߰[jt]jAF{3VORzZ̜]QL zLvVz }7.aEMK6ҥɭKժe,h;|9>V}r{mg:,Ak{89DEک xWO/0y_1hE}+L7ɒ+~3X{SjT1X UAߧ]w3x ]u pO'roo^!ĵ{1¶.aoB* S-&EA]8rrfU©l,gBMFY.D=Wu|Ho   V"~s/}x46ն]G^iu\lюuJZq&zb;3kG7?dNɫj-o;Gw0E56HO'+8UõgmLy9M!V(<w!\]5O(`m?W [P-S`ޗЊ%0=gXH;Q6"P sݭj5Nu]``CZG9<7Ukpn[?($C(_xObSd$є I *16xlm)|L:~`|I3Pls -RܠJ唜/.O;:+N97¹T7v1vOkSϧ5(>v\1ehP1'6#ULˢ3S~|SA&VW˦Y`7 ] LƸBDK( u+b5U9a=h9k|Xw[=hw{,|-<{闖Z\U:`t]A[ :>!=7M1۫>/G şzD~V|OPHsIO:Ķw NαM bku%Df܊ #FgV3;R )NIe*dE ]sXpA"-`, )y~/}, dJ$ʒvn]YŤ0vHzNFT9:$= #ҝC-φ@JrvJ wai\qI;s`2r#8/e3T)IB ur@ F߭˫,[l L"7xBaf2+_zdY΢ r :ܬE =F V&2?a'@vEgpl(}BF$ Mru!q].C 44K]<LR0^A5ch~{͵!HfKQ(C)Y ( {S4%^ Kz?ь|.!,; zgisG:1ut b ˨^#*:c~*#3mnM@qi4,zs r0"ʂ0/|~m9_)S%KZsFRp`NMG"##T+(kdX*)3̀FO6#_J=S0>ea;nM~6t{JtFN)ʏiSŚW3M_I@z^XoW}\mCs*[IKhkq9dDUa 8~!Ez")4;ujwC|6ѿzS2b/U^O*J!%'pZΫ4X`idtUFͽN_`PKÐf{|< pd0hΖ`)ΡJ;ĝ# ŌfI'mO`=7QcWXQ6[^pf6t0:成6 ᄸ 2Y'X(L=aT=]BSȪ{cd^ \@^wN+SHD?HΣdA(K$Y=3QN/ppD`DNjou)ЭgB& dSblZ9LC_Nfo >ҋI_7co=72V_:o!4js) v'0QTGx4HFU!M X\74Md6Q$D78SDr=J `Uc1RkT/)}.8p%>f ;սR2߹{@c;ϣʣ)d݅jmFZ,R=lPjڕS't'!ޔt= #hY_zUN(BB&eqyĢMɵZ&Us:^ eW#M܀ d{&[e ^wv28!%q% Lv0ۖõ{F^]:9"%X2W$-R3|wsR0=&Qޏc nVqQ.@&oC&DZըwߟju}Ůn\ va8NRUc+JGLhBR) ̯w^cEsncw*W?9aRT {F\i^"@r۟mpRd\0ҫ3Ukf  Dd2lƲC`}nrM# eFy=_,=x_*F&>&|c8IMbgbQF*J-knHZRPB4n`Y]7M@0 @$p*pl$M3a|aķѴLȚx $H,[o&:yޢ4Cn\/%%ﮏ@.JfZv7{ii ~uY ȺrC$!\BTNlC// &TBlٿhZ'04#&!3~~;-l*];;ɠ܊9;g ["]c?ԙRӞ`l7Z JosXЂ3j:Xt0uWf{UΘ+S^Ԥ'A/NeVDwʓF?K% 5!?ڮ'%tѹ =rICVǗ'88yqGu1(R?Futׂ)3ld,7fޏ@LϮ[|5QHr Fl 5wNYY~NnV䢠urR}rZt?.\fXY!'m+Q C]m>ڿ?jy(p}% wG6}*9MyKlǺ kͫI/dހ&" R8L˭ NL=Q_45\XYTD-PƘVFo4E^bhZܝ8Yk?ZHEg1:ۮcVu1@]'uDCUK^e `j,|-m߻[,}E@v6imWO:$G'ectig`{9N,z s 5Ȏ| IV=NK=S4W8rov]cGb8fo9LP+ތDk XiynJ1x14a\qDsӬH{ɝ0aEFW/ƙ|ZqZ}0ISdeJ'f9X H~rlAͯ U9uj3_*GeIn:]OeZjш!P{Y?wGFyvG U%qu_4wg(pXm9s+:wbR1'3Yi,C)`Y "M*<@Zg<^)wpUӥ>Zl4@--ZIxC)Y;m/Ɛ29{%O5* D[{[Y:R`yc<%)Ba&u("v>Ns ~.uNlTl*'6Qw@V#C6$c{LD$,qA_iRf3P>sGWɶMLap:b&:Y#"pJad(t&tb(? ?hE嫥dbF\D h"_I[:,[ܷe^B3Qc#1^q7'Q^4zfdF8 O93 G$7*Ȩ:Ұd2݁ HXier,R!\Gxj֪ ]v NR 9EOoUٚ$Ta\w5me =I5hxa3 dk Y &24 jqF0ME\PTN=|!b/Lsg2[VƎ(,Ckr̭2K8h"I /}5& }a2Qf6ϡO+^X-g! ` l;jVsIh)*h 27]fR~!ɔֈ9ȟOh"`F;ͭ3ILglXvxݲ 7!H|L̉ySIb\u~n9cX<,6X{HjdG;>Q:]6C)>kRIȌ~;B/,ζvn|=yʽ?D5 \W2Ǟ,r,b Sr]mFfGÎc o>tOM[?)~b ?j%>XĩMfm9 [}((ͫU@.sDqU!C]w),zU%Ib5:Wrf,F\gr5S "/2o7_]iLlc iNH|N_ވ=Ic,Zvt `Ǎ/S.m \\`p0g%W(I6evsec#}ɭEԫWso;RÓ@𼇓v j)K8}ܞ珄XJNdeڝ"ttP5_EJEX^a(k )_%U_?A=?4=w~\gزdLr }Qlзt0߱vzz| BCƿS'WwN"w2"rX}7Pe2$)icswΊz[ B6'Bcmmb}[ɐlpF}EV`j'v 2O*e#W{D\5!觏Kjx*$\ 6$opb6vR*Zˑ6j/7\B!U sˉm'W/Iwfn*Zӹ{ <+e@r!>E^6([ˀKҳk!ݽ۸dgYtYVm+V\=9=M%wqPN#FoܦGTXnS>frB%kKo|H*Zr%(":AN):GiLQSA`~ی#xp=#_pf \6}FKPz"+-$;q5:>O\k0vx4tZ_vBi{{\;ם(kw!XFxrXQߛYX&.[p*)%tot6F^OQϭs7DL2Vrv$*N-T/$w5P`mpj갓 ɋ7 y%뷼 س#ʵtC_>Υꬴ5nmWjnH3FXr:D`1x`DiAaXp[H!8=E|ðLS"[uoJ*r(.) f)多߻LI=P#@c+״J.v΅0wr,kֶQL )TfQ nz"/R3Iwssy;_zme>G%>97FU 7ץOmS|(Yx1NI^Ǻ:D.]/",~2ՂK+ԑYN `[!Ζ93?#IAo"~̢BrrX!#;5+LkSQ# izrUuZbVnI/S$/6P Sbn0ڡ䀂ӻ){y0 &bPO 0WJ;BI>農j!b,J]w"8/i![onI`octf\o[MB>7a%eĔUז$n]ٵPxVHjlxrLc*=0\lՠ`K.;-fhS|/;^R 1ZX?BלVm}qskwKm^)H~U xZ0)aIIB!Ji? xPE|OX87ߨ4< 8 T8osRFW k<9<˜.FC]D9boD sd=KTى9Rƒuȳ 60\ʜ.&~"=W|X|S=Hc_8A_u;"0WQp=.ߧ9&[l =k( '/eY97K9Egd]3:) nxCԻ L :@&>`ma!e[V|-lQ~i#SjsQ A ߗHsҟ=B3 r{ɈvؿDfY4q}J0}N @UgѭcT981%sN({XcP!FZLZ8% V/nj_DŽ\ŎJm鶞y)(~c.pT"6cqG*$ozm-/8_A=#y[(NRj?2wSB^|&Nf; ׾P'|MCwd,mdjL-9};MRw^].O؍@t3ҠlpV]W?D?ahEun82EVd!tjr!73do? 2Kf.54$A/G8CL2֊4ŠHy1[;`e#HZ/` [1',eﻔ( lB ǚWٖQ{cgsT- ˪8X%¾qd|UKQm;{Gb:Fw'Ñō^vrFJ wCD,@ACIY .{`x{T=6fzBRKҎW1ahbXHqo}-ўRk~y];cz=Cx >ClqQQp_mR#sV}m>0=A4njYJh4WKQC6][J{&KO 2(JFra.YUyL be)bʋ; E }gwSݷ~~̝;}Bp!PqM13o6&+4&z=B53p1?oi[FB_!@!F `X ٤i~'TbZ^f# աs4zjZ];"NOtJwSMR+_.P0{z0ҡ^1n斩D#,ē4X9Ni2IwUsIƣQ @$I:(w˷5cnOVX4װ{O<SwF*]MXՒLqjT9qY+"o8l@X VTEJDxM{z'4ҸF[&7 i{_z׶-j%zG-etXn[ -_/5&-rafQ#|NȤ^A8L(5SXtFf x\N:K< {5x܅@!9d Z-)| +wCXctX%ϰ&wljf2j-a0⼩7\ n tdi2Vsi<ضc#_U~HS(IRv|Waoeel׉Z y!Ww K.`m=3#1[e>Eϯee5p*}Ӂ6PZx&3E񋾸Cit*Ou+jd)@h<}gK4VW>Em+ꏷgV: StswTKU@;T2>` a}gE47޵3+ŵN:M(d*>5Ri/d8+:k3WeoE0aе v<ԅ>ޛ3ڡurn iqN;oƊUgU3Ar r^H-GYkC'd@$[_,5b^eSY69pcѼ'vʬd|ߢ:c=)$UAEZRсg<wA. |^ntYOD f,J&)oKݗsϕUH]J%3f -;qRyxD̺$=K`^¾ೋN8zMM E/{Ȭ蜉܏ "&<ÿaC]i\)%ՍyNxX^E)Rz~ƗFb/FNO{&]J ӴLL"h46@nc\nj1ѹ'AD՟;;[ټ`rS<.!Q^GYP&!LQ 'ZxgVZc/_{im2}'C5 6֊Q\=z:dv>ϦHk0ZOlr|he⒅Ij0Vά'~{ Uh(idEu,$*xϔФ r)>)-VI3xĒ0*|@|pW^CջK1&hcbW}ֱ jNqra0.˧#^_ۯ4~E%i\Qn8{v.,h$>{D}ZycH^P2 x)k mO05w95恰 8666_0#5sTY$ _N rB8#y:nN';ZB mDiëś(8ND4a''8?Am+=ٶz9R;$XJ+)jȴ)>VڗsF .CշOXd;<{e{JX}s-#9KBq2/g7 C o* NjB2v9$2Crj"hۈ: f{\tm?pެu7|o6Ud1g9Hr rJU .h \Sv#_ ͜(*E?&٬lmS[&p馊HK@yY';as0DïU7=BBqM4sk\mxÈ%/] @XK?4R/%:enz/zcfca9-~a?5ci!wl\HI ? oL+%M꽅w[x<ɟ/؟vV9QS2JK(@1XC.\|wUkS_GkKavGPUhY9g.C nlS<[X_Ȫ{]&w*NT>'ݨt.}v*­=!6Iΰw&}*JKVْD1uJAǒNwyfHC2ɒ"ߑ&ݡUz'Ss-uT>LqxJIw)?)|0\)0F [ݜGy9>}kXƸI9CDw7?.һ'6X9VQpEE÷7 >=)WJLN~Q`ZQ{:qPX4_fnԢG|L Y'ݖҜ6ˡ69wF)_`ʫك')Be٥׌z*F7\sQvOBv":A=V\R^ 5mZyݔ|2ʔ=xR8>Y[4dfGIKa2-OzxO0a\RBDT&\2D$6CnC;7`KCu)(=e&¨MVB^״﹫_935')Uk#iɶWu]FTx7DRz\ 8M+<ppzݓ |3:tp_.i|"frR xԆwCuC>ڳΔD&-D $CݓkxHvYϻCz[EKk&6*/lcvA%8Eub-_ؘ"E|CEc3~c 8pd9aѶ LVdrX=_aNo$/Jm^Kn# W'>yKM@Q69t64/C6Ž0W8؁N-IɶHiZo@5"lpVwO9:'$_lYz=g:ʩ-8xu-F;fH6:?ѳDZIJĘK hLZpS=NIHʄ1F@~LH?TDM$i0ҭO az)cEXWV5ZEEkޚaBXe d9l%]}:=unȱjǙG1g|D'@B_{X YS"m_9lJ%tlvI&ۓw!%s4rT*qVZU-hS6(ZC:8&%Ɵ_e pKmTjơ_}h/Zs;Yt77 >" " ofUym-aMCG>C'fYCd P(4%KWkꍸ_賛7,8k9ԏ4. 2<6f5H<[_h,%'2> ~vn9}a9!ID!΢"ŽyRIϺ-S,ĭ\OI["C0OmgD;~S77^]=G4].1F ƻZ*BZJ)cqM 8}$JN<9|%D42Ƶz1Ln u(;bWxG@oP9bV$;;}{ti1 AH աz̜%!.tAbitfŭjN[`r)b=\:S,qRXKU1%Bvi0yŹfPλ1[dYD{I)Q/aOI/l ]аr`Bt+p2)?w-+H:ҳk+Y8A33% EQ02]h[2y !S%k[6:kPMqFr7YچIbhŘT8%faWhl,ͨd'hH``I)*$+ wSXr@ƨ-$ɉeTSp1YbOԊf񳇠G.\޷ N&5V+ה R߭^a.ɎeM.X܊S]"2C s "/e-̔'9?6{vόvڷs0RC>('t[kwAp Od+uf{n NV{J V=V 8 Tuy/'$>\$ %^k^ ϣ}m46%!pCWX$ۼ5N{ 45ddYuH2d|#\ A;YK-z۝"JD* Y!@*6m֊:DmټWA<1H \Eٮ,LSN2#}^xeT5*gq z[cf $Cյ7J6FIFoŽ ]O\Yj$RY8͒}d.B.=\} D,b /2n'ȶ"9VC|AxԸqhoJWw.2 b+trVWoUI\2/΁\^۰n(#” ycDKG)56@V68YcΔ!%m|NA0j?^](&X+T b\ 4=HO+5S(pC] -SX=: 6'j af a=Q}Mit*72MU *L,afL(F7= ݰ6;dnkѶ.dp00JSs1uL\[Ge )֩k|n׫z,ȴu(cf`#@<e#a Cˊ:zo sHD`/IG$.丩EuV3z{p܄|ͻL Vz1M%:_b&z"#[9mrb1 o֒MNYo-ib=Q]'P[D `P{ +a]h$ߵoJHMzqO}5~0~hZ,%'L~Xm/Pӏ \n,f”|:n 8gA"< κO,M_O={ Hs1$'i<:J"F)`j͂ArlaM֡f#XSX\!S7o=_ }b': W+ ?u~+ Es2#ѲNqhGp9?R3 r8D olm5Dy'PɰOh}ٿ>Ob94ᤑLFݙ__Ħ/"âQp7i ZrnK.[ ZWNŰkL ]Tp8Fx)O ^ͥj?o|7aU1[f;N/vQD8`"Tkol~:]ڐ(ֶaAxڶ'H(e;x (ޏW5E/[oEEIreUd7yj#/%$Jf$2N!/ ٔ栆^P)G!3ѦD3,#y).+`Xk e[zMir32\IBY֟Xނ:F Jn1~dT=w!G"gQz0Dƒ7ɖGo$1"{i4\`\jcg뽲o}/B* YT&A7 I%J( DպR !EO7(qp Ih5muƞu+q}1VL1O&Qxz5_HcҲ,y2ibsNUJ;6$Tu],$'yS+,zp'@ny™3jCܲ1 8R(A -TO 0n"] q텔11"%ӻ175cB6ُYc߆ySJr^ᖩH&iO"N}=`t/5_7L|M?}om꿵ND3<[g{@ۖ16 boמ7ܹQD cmSbJ||],st+6|̨IXd;|q1<~NYݟg a!`]k"g}~t!>)RT[}?]Kan ,"ON6DLDi")LT,op0C΃4"&/?n|)74{%p$ ~JRBcԐH;.8msn^Ko{RMw {?TPN5x }C_\~7g~t=nre#>U$ Y/@YW3iQ |[Ojf<^cB+ݶD+ڈ$"p_` + j |b6ȷ\Q%?m MF!t´$M8. AT,?g+D5;ab^X&*jUwF_g]o] i"|{2ۣ-`B;_̕NHw z'ʈ-/Si^KԗX6(Qײ}yrv񨯨>*j#S"x2Fc@ͥmTvE2 WbS a`038\Jd`#Vfrj*TWʦbxl>Z4M_h.׶La;BN˚DϷܶ@@cxN ϔƱ4F+l<ܺt#[G(Xbz?Ͻ%w0X" iliҟťm= TqTn=g>G/ #:nBǞę7KK Z PY[Sײ&z!0렯 3:m>~8>d\i*l_hik̓Dsū?:KƤ1m*/O%erqR4+[.ʓү#. ڲ z)~-`b|ѐ5Gt(ʻR;&3YQ*}_$Go>ۻ7ilvώk¶cH Ɛcˎ2~nREk$}Ra f1SOUe[81U-a; \ܩUPʉLbZAAF8O&wJj˝8j8(`6l:VʨoekqX;Y~i-*n;QJ4L&ֵ^lbQVI:Fx5>k9pؘj271YٞRQ"~進N!O<(Wfl':rV.O0钆K-5ұW(,e`ݧq(L[u<$ ٖĘ.v޵)F~=ϫB7ZƲ7J66 Ei;_{s$V;gge'LOD4k?r}?4ۑ)6oВam\ ?*Ԛv|8RKvl Kr,Š*i'.B_t`M({yF팕AI^tR\^OJP`RI̽by~wir1[ƿ=%׻ ǩu0§4B{{"Θ*$$S> D2>Pq>z!0ȧ"~ ɇ2 bi >z]i͔6uɸzˉi?ї)`BGݽ%+ߛFа뤍ߑ Ej /!CmZOnL'p?z N\ciqxEU6%!,!Uv4W$bt\h[8{8%ӎ2`R+bͬ4AS _f%-( rjg^)m+[Bѐq#eC۰D61͔1-?G-W*2~ʷ=iب-َGTQ %ū=XDT2Ef z *XC )sx~A}k:0hLIZ" FiA#v\645uɤ'㐝-QyOQt[2Ʒ١'J*5fc<%[%xtu+燯hQ՚6̙|A )~0Ӕpfݳ91jmF1X&MSXS 9}d$(\ ɚfERʰ)yJ8udBtzČa˰ B5d~r Dȉrej_851i}:YFaY5w⁶e ʛ,Khb!@X4`34DY.w%2|y.]~"-b:oʪ߻ݗ·;"xĤ<)H-l mᙐPPArRO='{ϕ7θ/Oqa$S[Jus4fiOe͐xN)0Bς31dw+i8֢k;L<^IKצCG&R7u)(fτ''%8DS0(MMD3^30)1@9v#4HW$턉 W {/bgm#|m! ;g:āOH[Ɂ~J5 N6\z7Jm3i ,9ꑺ:v޼SUR9&V"GP5g5\,0 \;>w=[=Wx2{NC|JQP8SEمo,mYï0G5_?・^´ͱg1/i[)eި7؜pѢB`:h > <$Ihbg<%LT͞H>f Dd5>) _;}\*+c7 _k ~E&Ӎg5H:cR@ [M"Mj\ l>f JH{y~vǻ.A&"E~{7(%?煮k[K\e&U,Y(!iܻ=d"prϚ#YX͏-jj@Q}0)DsH%ܨZ hCP6hh;ֶ=2pMʹiYG˘5Vm؂T86Zu6tOc[KRZ^H*[&؃n b]5W*<4SBԀS,.3!I %13b:ħuwD 7'=;n՛6tm;ՐAvrZ٦+M汳̲40MXxח>3X<}899n<đLhv&5tPI8S9o;@$(yQRf"hƬS Il~NBKny0!t: 3L|_'O>!C]z0ĉP,AY*GJih8XaӟpvY 4|F Q @6MIne7W+ ?& v'ě]%$m ^3&WvjKRڭVL2pO;ЗJ1XK,i*"G`$B@p:![ΒkV5!D XIpOF[pGl˭;i h^%)>̿m!8g(9סex6%: f9uxWLG|sn}v\162a-R{Co-T{i!M-ϕ-%??~nM2>5yz|Iձ.J4|&%@Mgˬ uC`<2zn+.7 ~M!=K{=uvcX^AA-AWk^X%nIfZܒM3CC߫bJP呈/-kӿ\?jl|xK< +!ixhrBH~=T^ʽ=XU$B $ ?yl.ށ'*tB)@ =l<#kDU6յsW)|nA\6lrSv?뮕s)Y6rI4Gґ-;2dLk[xN?|ȉ7ۜ/?$&)PS<.rP9r4Lou!%'ŗ # baK+DPXf!DN!!b}CJ ȍy+ .vr <RW &-Ѫac,#)h0Zr5xGS<]t_^3]Ci#G0K5e䖐?pŏgO4{ӠEzqM [|+^w0mAb Qt}XhFbTv93uJkM,^@ $C([~q`ř.ʙᐆTa\wK-1W9 ,ݍO0{=3z~‹bZAF>9(NCoVTrP 1z l~7Vd0%rq=DN,ߧx_sRU9*P!9˂Ya4&QʿjYAV%Ezi#ibٵ`h%m~;QTk < m|7G^|%mcaE@^LA [CTfdUv|!R6!4Ж " (qbQb{prV:]c脥) i{JECL.dw*Ɤdz^.J r@ߏsod8T4Ų懬&a J2=@>hU\?R[\Qѐ$Eg xP:y3 IQ6.XҴLz_$jbn VZ0;"س@/J  p sTy_#НULd)bl'^Fd 0=.Qig%բV'h7RCV]rMTA:]4&7.`3-iS%;A0M M^Iܑp/E<}(էhEy-n6^eLK9^~d|ɿ0i[Ė}g>ce!J"$=x`r_XА-ksp4a*X3z%r::>ZQg @dNI(7+!6]RS< ?<%C_n@FWG@RG-c(1_ @_ |k˨[銄y#,Ie}J}4:xisثlBY#5.8nlm^\ #M[˭qZhݞ ڌc>JɛjԠmS DdsJRSB#[s' $>t_jC=Bf}xe/\2ݸJC=wbr RW9c%[VԌR%'0:  QPFLgiGK:NsA[ë"OK`c1#0"׹3vS\zl!Í44YKC$`88nNGs8bK˙Bo=].|0Ä\kCCnذeI̹FSYOiE JF'*-QBk2~6D{ntCfZZy @|LLu8 s_zU]L0#3ec&P*)(ދʦ{?*ƈԷ$2ZcZq'j95Qn[]Uu[EcXoОٖ8[ƖFxIaZe.p iGiֱ qRݰ-VoU!dT
  • 5h5tږ"jQ;9[PKh;WB^7΁[s h -ۋTҟ!"<לRC܁ w"} Ei2M<kx>_C=3ɷcO'c](]Z{':!V\iYp|o9,rXY}Vۍ^Shݬws48:`(i7S~2IGBFZiea&wd#7 PTh0Ľk\Jga-CZeLl \k>I/]Mr\E+nE|ݾx 7_6Sw苿GsD"[kң`vQ}ln+ 3͠Y-Ŀ}{ vWO3a4͊ثLS)IJh+ꌖ8|?70}SeQs#M>!=;|?}SҙzoZSkQh?_D>eS4 4 4xc|-e(Ev|ŕHE86paEpgb-r,CoFgǾ1-)\r_ØB#X*$(mՒ« 0ZeO ޓ~-b9k*B4U 34>V1Xߋ;#m$I@d.F~ye#CUV%#<zHa֮SNLFq۴rEi,g+Eh yy6>sܛa$b0q^Ez@~ %w6Md2 DrXOT6ASJу_Y(1z>B?}k=P c:ZD=$}j:V<~/[rDve`xZ{(F:|=m=+ "Dcέ}Z wOD S-_JMh}nd:U2CN#z>o?0|9U,Hl=Xw\V$;@wfnw>WvuYdj*c* uHB.1CwcWm4zi Bs(3;Gx+8C:ñABZ'yA`le8pO_)xUz\T4UB6w֘t^PJ*6T'ĵQZNם>ڭ:r?_wXXf]p}ūZZ싼2ٵ%>`%*p#$;0zrE$QeHk EHb?l%dQVeqHrG*klzSċ@ M4:]ݮi:X蹝x G? j !y;5KΩ36Snd{ n#5TmQ!ww3;LU晶7Z 3wW^bY#lz+[oLx0"ûVr|0ʲ5`,VEA#eeqЁ@l1).ΒJٹ5 ެy\"]e7(n0, \F=M"Ϳ`*Жr9"D ~0S{m;*;mMݴ>%vH_,󲸺SNJW*֓9>7\T +O U? BEuD;@BˀWHVP6(o@ T7̌R-^b.M[ VEu5?}8_nm4~F W3GZO'/w`8?I%ms[Qqa}DU܌Y5VEы%?/xJ%UAf z*TXQ4AOc(Bb]k\HoOS{, "o]B'49X)y*_jHk'yFF@.6ZI7kԫ.X/ G>* ˎ69PAsΗOoc >ۑ׀Ae#=6] f(˃J ^ϣkUޡQ0-eةЦ !=N tRgާ.FJyh+>C5COm*E{rl)gpİZ`2k zLHui*bs{f5-x)ܡ]6[d0JPsKm1y~e_IwEH5G.5RW -8yv3̗M-L%vTOSjZy`,oQo#:l ݐ&@p{ ôҶyNǔ6peK*'5}[ݱ/+Z+]6fUm,uӛ2܅w(Hqx6N[o)>p=eb4P :? `l\ iےg9ȬuGP /I 9/CB9x6L}t;'p(_wӵhӉ.wxsq6q[CkK;݌ 9 #!}yn(O,6DDs-?z!a!R%vEG1-w !vSpfx^IpԢVZQ4  zBM:(Qde6w|R3F !^|0u{$yFgȀf}՛Rt`9A&onc=pFWV59meC5dSLWQ7*lGd Au QG򢉚Z-:Mstڋw".5'xäQcK90Q6ńֿ'>p΁jT(hhs6Y.׳0| k]Vzj~0A[J%&uZ9=_[jۧg syd$Aeh0jw'vju#Xip$hL0 .t1eo_f;,RrZsȳGU9-G H^>Bl{U~"vۃAի[,D#5:/ΫoS9{se //{O$㱲3K_{qyk tT}}6? Jb$ڷ32{g'7Llhg-oצj@A#lPsS;n;z<(\¼ADu^_y@Op DWD. ,sX?SaL!Jr`C+ CL!m.5G0vH &4⫶*.]<.xR* Հ\ 7h-Ƌ;4PqaGf5Ewc>՟;}Ofy/ɈK}+? FfQY䥜Z~CP| *URֱ؂ФxΙUcTS)o FsܽȔUyh `j eH fIˠ$iSO*$_IePvW2~:?4! SNoj"@@#[1RUܺW)dK0t2Dc G{~$ʓse>G~{ck$k6j,mn6{ >>D) 1wEE M!$Lgg5J@Nz$S)3h{(`[aBҋ*bL^71t/0=Է`!i 7;G Ɍ"Gu.ʯyLY ԖREDnY (\r(eSZfIؼvojȝb.{L_,2bbn}orĒ%Iph)B[ɜ̻E[p0p&yf _?we%DpVI]ܒv\“\cjӻڜ\g8pDldgmPQWlVaz9єhjϨ B׆{ i`FꪓD|7r7y!+S#D}%h7^CGMk3ӘV_\"o[gվ b^Cۛ.|FMNab4]c=X pҼ\q #M`(9=v/}rR5bU|'$ 9[.᠈X*b~0ZB{‘_w@ 7S:#!3m:>c9?NM뺆f|W x ]RSezW ֑Б]$EV3}& BgW ;O(Ȫ@ :WfaXAd #{ޡ5f:tH x#g4HS)G 4.;?W 3JT/=K)d O3U/ȩPăJAltmYb7c̜j[ }auSW WBU[:QRtjChs(!:)@IGf1CO+$pUUvg :s%2w^,Z߬J_DpLx&~\(~6|0n.34'e2!IWn#th"&=Fe93z9lj( ڈc͞**WV*x_Ìh3_?͢@U@yB=UX ɒ ] QOa_`a-dp74,D|NڐE8(v\ {*0Q+~YXH"4z )EaS]@b42}pLd#ALK^%cECdURUJ0PkL(ч^וݎ Xiҡ&45|߁G3LMTMX4͕IiMIb[Czz%V@TwG8RBr: ڧ evAgM*bɳ>cSҍw; ^Ca?T?+5m,{PFA('jp+Z gEfZ&J"4 $7tC"/z Y{YYm{4eOƒW}ByLT/87xC 'טЭγ]QVR[n2 (_`lAgNF)kz*Oe{*QceG1x?(Uv<% s"{Z@:<=Z~B9r8&T\ yaߠKV@v-4?g5CAjD]LTN(8¨]{weX p<+ Fm9ը>doQ6L vk7l_Hi0:nELd2%ؒ–_vmˍ[V'4=N1O@ _ޭljXKB1 uev!v>Hܦ xDL7oAE s{ ARiL}̛bx餒hq}8m~a`ʵO["@` {;`B!3l c8ᔟ{;}WkߧAÎv&8>ඨ'dt>'!Y)˥UAm"(D#[f1 ܟWη~goF{V#`JO_J'Y1sRk[q]PeaиhD  G-,},2?.!L^Q]".8`_gkѡ! $_P+$G`<`TîdjjhutDuF"avy$X UݎU:8RYS8&< oWpWPwV-HJ)}xd/!5˰zg"e@k|6ٯ)HVYq;IZGH9r!f$I KVLΧ\[L+sL4cz._JˍdѕN8exeZL+L$3luXYKwB>'ѢD'.Hݺ9LdE׋*VgM5)ڜǁ7a䱶ĐJ$CV(Hz ;4|0C4$ &QbF}ˣV,^qmg2+YL`b=fξC42Hgrr6X?`Uݡ]ju{1Hi.Cl&ԐQ-8!A^[^|G*ؠB^`"4=:$Npب ) (Vy4{\NjH sHwV? ʥ5wj m^}J$Bʇ&KgXR>կM* elɺ#q)|EQF_yt/%o2:Ugyb`78$cp:0L!^AAȐ=ը4εGIt˴ԈQӨ+sJ{յ. 686m+?KvC](ux( 2-=X%8" ځImxf6"Ld` T0̀J~:i}]kD;Ơ~qۡ ^H>ؙ9|H~Mu׶qUB'Hppb4O!)1p.ƚ@1ѭ5Xۧ+^ xR*h CjDۥ Zˍ{CKt`Ɩ/ŰT b}8UsX6UvyI]њt0u8*^DdA(VZ;b; TQ"F AM R*$d͖HM]#jK74Y7LGU}:6!>c~}Idm Ѿ;ୟVrIC6$yo(8.b W#N2~w3ޟ o,_&Fuf^=b؇'>Ky9&|aeeT +?ۢn 3߸a^6o)f YU(Wt><]#`bPR']Fλ#VqKxXZN(9{γ+Iwf`HTIS(V+J*E[ LwhzqP8~Z|o;bʘZz5yk<W?UJLejl޷AF׸#Xc!U Ŭ>šl!}$M8_Z|䧑(-+-R/z≎%ߚ\se&1O,bQ^ݞZX<~Y':C_ aJBgMU~1!? ۬_F:X0|rW4'!h}~drxI\gXR }y4FjIqdvO 0Kt w)iG'-lؘumB{"iEܲO:ȭ16z'ώYd`'R>l /E\6Cb_GCT\t-YYS/~}4"mFxB[r$ *)ABtlݝ]O\rYW[<=VnOv&^OWव)*L@'+ |2kMi㠻pL|peaqGzH>b#sF,c.A׾bNWԁ/nW#=-UUnVy4.̇|4bjZx 9ӋWᣃ/w8^5 2 ).R@d^<UH Ŋw|DE|Q~A9p*1on1_:9zǟ2!VW| S*. mԜ']D$th|YD'֊ ;a K80ÖBhX/GUyܕI1n5,u}yK<+| U)D2K i*2-NH#.r;E<zY8ZW  ,C@݌sNJ%5S4,2;cu 7sY({-"|]_rI]QfILfsS\F׍trVȅCͭUm뼉g1Kbn29Oޯ"[8އ1ӏRi0K11i(vYB0OS֢ +$t(l5>>2"'ѬM/ĘI{`9DR8`9k\W܄ܲZIRTwp^U{J>U;QC0>X#t9s"bվ}^,D`kZmg2 a$ 7DcƠFٶiS>uQ.Gwmjwd6u(S:FwPNr^w¤?=`'稡GG< J4;Wӄk 2}дe(w8S-[q>LO_v.N̓l *tÆ", ]m kbTn^2F0_%X͟ 'C/w|Ni|lT ĩ"<Ҿws)G2ŸZJ=œ>,\:GKJq)]ev<Xs]̓wH0yi*{W ?41߅Xw9ׯwT ]UQn~`phʦνB[_9wb:Kmq_FJS]K96FM1Rm2~a\nag#;,%mrM' ]Q"KTތ^]]gd%^w+ˉY!8, "ma}|= (+}O51qzIV3vP\-L޲T*sA/8R1K!i Z,`Zw:| g5L,t>zwL1nN7Įoꊊ{mzFb?"}]0ׁEZ^fyҝt%mY? &nGzawuUе)=,R^z&IfkN2"~SQxw bLP* RT (T&1?' hp E:̾cvˇkŠNd"[5)&`1_t¹NKٕ3,*N,C02|1u+d9%]苑XرPQZV,Z"Ei|v;h,q*-<0 /_ݎb0Kc*TW'__>Qg@gyrWyҟ%jW.[pXd9]}g)s Xkղzĩm4NUYfG3:Q].+0vaVy}b0֪oJ9WC@FӼa1tKg&hL6Ka׉p)i'@kS\5 w) ܝZ"tf6z&~J;3;#9ŔDVR,\^*wۀ$6_6pfNC0mғYtHL@I"q,<:o`Ј"_ĥߙWPyG]Y[VDíHYB]<"GQyRsOFvcp`(PW1U[á%; `]coXqlJ} $\\M@V ]]Zck^gD1P(-}[t;_9VC H+[T 9x'&$oFm`ˎV>9):1PԀ?Ta@( g.FEGK sxf_db ^ִ]`ET4ˬݞl]FmbLhˆqya|d;|= q0~Be#6&" 0?e"{9HMOojm3 Qw^L-HW]ٳaW 2~?It^ 3멼!#yp?Rhu1f)]巳Tpl_Sϩd8$F5s )7ĥ&ؗUm 3X2V"^IeAId_! e.] :͹[|)-U58-ˡk3EW]8E\8E@91B\<biYaV31?Ѣ,98Koʼn!ei^GO:ᦁ }^Ɔm* Ym~H)%)y1 Ħ&oX.6f\ez=].ӕhEX)Xk>tݙjZB8馐f{_Yh|*ҳL}ՋPi|Q_ynhܶ*tB{y@ 2lxƹ!کg8 .'e:^\FFwci*j17E Ar)-x䇽ʺKf#Y-3_vW8iB`ݱsSR`Ö CD'rw l3|7O x<ПD!_.'z6쳣ڷ-Lh{w1] hϢng.TlQ.JgڗdnkϿe"Nxc2"};d0\7tG{2ItZH0ZE3.\- J4-$N?ۅgl=8+?2 [[VE o,$|s(,# r&6:P,$BC?Ng>_ǬR2V8g$1忘@'y!i3m'vG^źou 7۶ )(~|R1MZV4%8e)GgaÇ]cX>hksù 5m&@,¿9z{ xnnk>Pq>bpx[QWR)\#>Ŏe|;Gx,]&Vҙ Л¶kUӤoM$6l?u0UXJm^W ^LVK&(w' >Zǁst. Bi5 )w(*it@8$|(.'bԂ^=FX>.!\=GGyKmkXfʥASZ( >א4iCw^m:~{.K(2dq1"BE똭#} LT{=2mZH{ʄljkePрNF9G7vkH U,n,ҿK\q~tB+ m%n/(s%&k ?eYNWl1- :n{ː@GG㑁6S`{#=E<zYHg?VF,kT ZAվe8J0LzP8bayĵDg(gߡbR>v8;iE$\SZbs6PH4׳ԙRoЈ_ ߪ' 8pV#]<=Ec0.= {ta͵Y-T3#Bsͽc I YX$J,wd ڐzҜ<7s;DbhP}&Nuc\3gcb"<+/¢x!(%k&Psd2mg263Iݽd O+8WKygH}`@pJeZO 6$=bH, ;k;\p+L87 d纊T8WΪ<Ԩ&-!o,󄾔,Dy(HrnL= Q8n*~]3AO>ņ ?D&Yݗ,fP ܋^gІLYg,YwEw9\~" 6%A͵jp>‘W C.5ta%Uٻnn՗=q#?TdSwxI)Xր068ܹ1Zy 2*md6h N*LŬFԽsEPzPImNX4l ݤgN|D="H8 +)H[Ϛ# )yD$.oɖ::\ӗEP]1ëv,"~@Ӻ0xi!czaK4 :k~^q򋴱FHr)f5=6gDP3bӌMe of=BjT[j+=+NKTlcZ$&/+(v%W tg6}Hx6 9oB3宋2/YҶ.?[OLπEQTK }f6dkbUѝ6}wJ]lSs{5wD9+lim*aԯ,Ŷש-\0{^0y"Yjg<Ԋ _>LqU1^Fr pͩʿ#ɴ<%Ax3oZ9dCw` D|1 v~P~6SNW7:ܿm]1i9k4ElLc*fTB`34lt ogM̖ B;uk'4?`#t(,> *tXBY1^bs{y'I(}ŶAtCd"Z 4b6^>z"WpF>ube$&QޟAL⯆?H!54W^7f Žİvɕ4ΚwH?|k^y;jTzʹy4“ m(/iLl[?5Yt7NCOƅey/L}|d nk>=3^dNT5AaP8cwi 8<roHeoTWd9W{w`%9:Lt:LUw~'{bc=лmntπTjfb ԏa"4wGwӃcwܕU?{W{][~ &:~2DTsSK%gr.l9]1I "*f@ѬFj' Ugv3rNF7c\+hLm^Pd*Q lJj}+rvhYER2Zkx爳8b:tdlufUS\IfyA6@r#ht!OB)xyhyד@Lۅvv`1!lO,i;L,(@& 9“w|J;:lx(!M޻m *(߳r6\)<#Qjܴxk 2_ ZocO<=2/Ga}k|)x|(fr6bC5.t4DJѣF$4OVP`F-JJ,( ~Vk#;P8x YpCs]\q4L~9Q|Ѳ-4A1ąs⼠A[}cHbOsLGv<+ g AEOmHbN 7tYӇIϏ\T5hؾ 쇴1DI@9+9X pB^ojh/ JS5C RJ[MOn]:}폜!ۙu;b\wT>UDZdjbFޜ! iP/,[]dGGJ2%}̔jtj1]N~o=d8ax.6o]}Liۡ@Kj44{O7N˔łX[Ϫ|W=vewQn*>\7$ i~~Nev.C: !hwJz_[Qױ|S[\AaLQ7윚s[9sBQ&7_ݵL4٘ ۟SV)"E;fVx,-d^HD8ЃK7rv~xىKD|[VOiCa72>z/GutF;>Oi,h -bf5*&FU;AǴ Œ-6ܳ=[~j~NU] #lDm'Gc4WP"j{5a6]gq0ɟ# `촱QP-fDӵ[ɎQ QIE*eTə=́!xg5fqh.l>٥">uWq>fĕTKzFl-,sqsCtPvT'{Af1X?rL D"}hi fQ AzD-W)hx4Gp9}~HۉZĠ84w;A=1'IwoṢuʓzp8>@CX~7te.<\`V LZ*z ! JZT.c>lymȱb,}|G@^:f*u4U':dNIG1NSfN ; dOZAkHTB&YexEFK"#KnW>d2 a+bPIn+RzzKJa=|i\d~/2#fߏQKJ=Qd0ubMan_sp݉e)/ۀaUy٧ v4v9Yl:LU6Ven c\_ҳao^ur4M3uFuXG;a,t!K.6n 'ey W5NtꍦM ,ghٔSp(D{v-ޮe$U@ >uCfS_uH7Ơ7ueخjD52j2.3#= ulBju]$Nu <(/'3twk@V N/<^Os;TR; ߕYx5\4^5,K1 MqFȷs֬ rAȓ:óFjГP`쮼eZ^=08NK&l nAv(a:6,&%{/[x}P4*͈(EӯEd|||1`h1rE]c5ѥ_= oY g7f{G kΈ\%.[.2K]ujp4CkqUHޞ<(Zj噄 r|=5vYiCoqwIVej05CfqۑIq)J:8:6c;O*pDmw kI&1Ƥ-8AU1O;l+ڀ73aNkͳPi, EUSꅡ`?(F.qW kz)7:4zncm [}w[GtN'I4t\@u a0 hč04NVCmh`M14,D&2K2} ,ۀk5 kk2DD1a% J }XuUqT%=[rI/c {.W53_{⭮Q4nֲueI]Тă"J̵#2%Kd1`p ~9]/-Ep8w[o^m'tMKR Tp1oV} ÇNFAZGצ.+kpT .F>m T $yOΠ^tb;"-5BhtT'cH_a/JQ:0S>|t:5hdE~ 'O21;| Xqj5re@?nz՛z1YhwpY NyיAWֳK-KmU!cC"KF*kMZˑb㐧,>Fk!s{|^Bnʶ' Pze^6e7> Ã.R MbDӫvrE?IfkXB ioπh«1BOD59 {2I7rYT=zzjS65MF:q?Xitkc.Z PSV^a>= 4NBUCţH!>Q>B;}So\d|2=3jo+< G+o|Q^8~qH?怿G:tA?HqK保ċG؁I"8|Xh|`9t}A7m8q]L`L(Z`)+ Mҏ-ChFFQk QԤpԵԊ'֩ꄯ:4[40ͯEwrE-!BNv+ض5sVƫPVJ/1aWNp.xýgz33Q%[?j02hTb?7(wplkItnsyFRxOzA%#}NJ&r>R}v;9 9^4# :liC\|5l΍+".bkQSaPszGޜ@aǯ`+ż@f9XC-G`%J=:p_$8#oH>8H{ި@puڕ+'$}nIbrlіH2>Zfx²b>rօ|tQUqH*mKg.ZQRP}t>/yq?o.2mnIO`N|vF1a O < DN̕X\șd5uЋe)Gɴ oTIK|zk?$A*hXXl,o%7a;Rͦr-Ȼ*֟K.Yy )>M10 Bإ};4]F4&ڠ*M]D͠~:&&U}W$uI<_(JGߟKCu;PW?SaǞCF niD _6QҢ~q^ YMN#c=rќ1Γ%Y#Wl~'J2c0tk_BK:OW*(Ζ7[30ڻxw.svdӖƗȲUg9[`~TΗރ.{e|@piYOL!(*mZcs [Z~P ^qicd_gv`e0T.!0wUP; \@cj^͂%/NH7\JҫH(K`3 b>- qNausy$FUs ,f2QF&7gbn0 }1PH'H;NӼʕ'=q / oS§F7cR'd8N FnVPcN`v`2 vUJz0#,\J1`24x[*wZq|'M(%TK13͐^L":XgD^}C܃,nD]†AT< 5GS[apfD7lOwn}p?^{O:SLSf~[2W?UTKhPձ"-"AQ*BcdYH8ꌉ<;]ס镥N}˭ 1affUs`=)8tip#h!ZY"zi`Z_@b_ 8o`ιm)nK lNwK(~yGB"s c?P%DŽ(+%ejOW%Rks$"51gTvn4YI1NeVz:Zt?Mʻ TKddF[8[j=Q_OsMz芙6(YZԿw\tڍ7E=DY-%H5F?n%a:ꭡ27܈ŕj;ܜf=?I4t\k̒2/A~ˌ1 bRp1͂"JcthuѪ͈v8쟲MТS7yC0G[sF#a<;GP O&Lg"{w0۸E8k6Q<*泬"w "lq)Fohz ϝrb+l1}'}=웅sSK>|{cXk/:,er6ӗQtq<|ZV/V%e#ӽjG |v0[O{#bt$b/H=_^K1faźM1yH4,7GOh\JщY5"?3U, DC=Deg'[=-xQ3N߬̆nwx+Ӑ$Y00 uKwm]sb.m$\Dֹ3`/X#T/HqjOhWjBKthV6sgN'ͶP+]q#Ƌ&Aޭ㗐Xfa§"ZSiEǶOet .6Rdcw`H Hs0)Qv߬2fo{n:5B`Z3nl)!2{wreN+7uZx+v(m!{vڛ9$T]UՀ5D: 4Km n rCYv^Ɋ-: #vo(b@gHʡWE$ aRq_해 bnA>HQM (V>~z {gA7pf9|4U%Ud+m)9@!^d4 #ri;pkMFBy(yi\k|8SZkD("U}d 2í0"A5&v1]P0bTh Apؿ=G9эBv28?#=&Zf6_ŗ8\ȕdBR6%vuY`c.{y >l%zߣ{T/6Lz:+O{Y}R%w0޳20 }i ) Dņ|?:ƥ" E,ԒW )r l[\faȲ1I1 (T2=\kb vp} 7V:AT~U&Z땱N`C&^~[/0ٳ+zae 3j.\]]q`x6ĩuqG; DoXRfZYQ}e;{k}! ) T ^LLI=j.g ({\bs}JSTRoX8ͧ*G22, nj&4;x |=TUEmK)WL[=‘]cu/sD:kbrpCqǹ + ^BtR͆o*Çl)^,›yi}X9Qo9LM∥Pvr }gk>fb~3tG =ٚS!$Ǿ0h)$R4s<Ў{qGL5k!8pnȲ̴f2|$-,CHS: ֔u)r\h15jnnp`@"Ap47"k|*œD k97"G_6MU̟}. oҘ/q!B{9pt!\V_J;QLY(_g!t_"@F+ 8KBWuAP,D_)j5ȁk> Ny?J.ҍ~_,_xN `=02'zp+TƵ2\}W5k"b n87<>ތf%+l2k6!שdSVhz-zjFm'FLP6sfgqGB~|ӠH!k=rۇFqOY6:Kn !Lf؆"Ok`*ڙ/6QE-q%$eMna|ٽq)1:~#OG"o{ޛ#of~"Sb=ᤞ;ʀd5~6A'i}A2L3~Pa r]F.ٗ ҤK~.4[ʜ_(j>PXk'5,{b|s29%)$^Gʳmģ4Gn%ŗQTmwЛ fÅ1Hw\vB=ߗ\ FP${' 6-PCpt5wE&tɗHZI ^=)գB4O%>/!F6IF(1ˉ2aN<v oyyyY4IeG[5i-|,NǑnDR%'8Ro75`x :_9cONJ4ad9ITO@ƙXv18F ^j?v7l#ףi?`gp }@R޴@!˰~}AgGH"߈3I,'Bwn ڲ!GA:rF{ 1`隐 i{&=׳ 'eyfO uAAპ O_YώtkV)DJJ: C]buVm3T~8)ՌJa5):KsN^ˋ\F핌؊ߎyXI\-rIpىϨ E E#44CnGD<9O{~˭(2Oc+QKd;lko%nj.oWٞ9=USk5%b㭺k&鱰Ouzk I& pe2F͞Rt$~n;V,(m4" 70G[\mas< j̅ѥc Ualgn3zO"9+i{Ve9|'vu)G3RȵLh;#E\l"ܕ.073! ><^A ʙ,! s>9љ nz s|zëQ^{uYڬ"\΅do]sP\Z.d&:)w8?#QNjOJ 4uWL J^f~G:gprS!X$D#MDݱ9@x%,|kP֬o{NN7lZLf +XphShOPh\1w8'g$" eD{R.Mn`ꉖh *apޏtIQqV)U۾Ot8`j&HDGG %\Bd=\^pȹV˿q}BM(H}Tvɸ_*pPHSsQVZd?x\P 8e72g.Ƣm9ͼD*AH$\75Y%$/tG ַ\y~.0h͜u+g<֞kGzz_6i%ezчO7٦i+P7P!q).5 /rt;HRAhHyizXu脡(Wua@P{1fo%T úꨕ0-zF are!vc@ H^Qmcwǩ({^޵cvD$*f=ll:Ͷ޲?XZ{F&Y(]$rd2NuAadC&F={~qAQ3&O:Ν{,@_iV[G7Lp8ݶq(|vwH UD<,CIs̤W] *@2h,.i9ࢿ7Dn7O(]7H~$;`Q#֗ٱ-)|3=1M}1Ռ`] f9jm|wyW[Ax/""v{SQQGBtJXt97A\1Mn*]VT^O,(`[4]qm~v݁+B5# C ?,top К#utFH6t1HhT /arۑ]YLϦTkLi W6uj.=X*͙vi@U3, Ԍ\Ų*h:COpFiëhT%C7,x MA1玙Nkp9׮O+6 pP—&*٭R) [?n>MrPo[!3YV8b,.kDQK=`&A`sư#᪘|U/s%49%N3· kD5=H yިd% 7ub)$ioVra8Pl.0Qb@&)DpsQtV>bw49z0u gӭq7`*g5_/XjU4>틣Mioxz |@0K? {J{m~]ۋ<+ ] ,;O(ZjM;{_=e<5e 네M c$]ZT>%`X<:+R$jnt %b돝(}ԁ&_E,qNf!eM.T숧6"?@\7(\^5,{9ޚUCX(ܤKofeB4Pm 4bb$CߤwF.no}?0ճ .V`tW=F*+h ;{ H0K$?_y좊ᦝJ}%-юv,k)Z8FAC_ұ]p0D6e ʗmTֽDvˡKwOFGۍ~d1=KbˡsXd7)ޤ_5}j 2t0RW iۤжr} #Ɇ^| 1/103"]0Rd Y`s}~D#||f0iIxQ;C7wV7U[:)FO>޺2_ՠ˵X}%FH*U} B@hٕm~K\[;ph(ejgfq̈f*|<,A87[6VEx|"^ȵc䅒 <)S`ibiasC%+;2p ]+r!QsdsD*FHas*ρn#Suoٟ]tsbQd"Ip*]7⑩QwZmT(l&_ˏak}<,},"9^ ɾ!=;EB%}I b<ԞW}"k/p)v_jGj%r]jdFrl7_9_ab# x;6t𖉟h>pf%]ܟ(D15VVxZ܂DA.=Wfx7[7;#yT?iA#.ֶh u/ķ6;`Ÿ/öZKR^>u1TItQ9Ysy_!d>ioFN1$m/5zGpߌ[Kg u Z7~ӻlK!_uhYT@f) 庫oL? fd[|)m6bƞ [ZFTcC/@r 'l*Ac ֠fѩ>+b;$&.c3Ƶx^ML@7eiC{+}FUwA"s]Ad{4v; )5@U}5 +3d8t۝BpUA-MJ^dxdA;K+s L`qh! \i+lRWl`+nr%I6n,1: Ĩ6}_][X|-Бؼ6Z ocyn!*c^,XYlmn'j-18#9q6ѧح_SR]|%EÁK1MBAW{֌']ecekt! O!+]iqkd\m}3Y^S('mɧ{uq ׯ:n$BC?3v o7mA%g:P}&@HqOv_XVxzp环ڶOR2K,I@󥳵^-Sd,EQH]v1SZ,)!N9؏ ;-G0Nc[ռҘ7*4*bRyE:fCxab_o f7dG3CLg M3hn7q|iGMtՀA•;f.M/\^0SM6`.k|8xA#ۑ z 4чgB| aQc8x0&p.B`7tJ}Xz')7 :l4ϛXh{ECRҹ(DK?v噽9S\Mq$H“TnuP%.+;PPCPz]DJ 6BX/ x6lp4f^C>Q ֈπk$b /"10GAN#^=K3 QeRVw7岣?A^H a϶9PcWpJbF9htZ"dž0>—ۡJO~%yG!Lb9&a ,Cޡ'ʰ8>l#9 ڝS0kkj]*%_S3V2! ֏?:A AnӺRf_D#U"! 6~  kyU.CmDPc˟.@pׯ |@( ;[*H爫nOI%]T?#!~lJLUHZjWrK s*]u(6C8Y"]'8UTVLRy&y1CP1ðg=x.0= gxQmgz ;㩗I)'_{^p7 ѱ61a44V^;\V2gr!q|z sW}sO 2 vsQ]U-k40F&y)ȷS I֒Kb)vWΰ=+iNAHfWf"GCSlxczkPtjf\ZK~Q7! j+2p{N, #Ⱥl +ܷZM 3p]U}Cd zڜk!`7#t:[M$6i:/)Ԡ,,W]0VpStkf]_wKu|x X؅$uoTEhp BaM`$A0фwp+ $? "}_en`, 8`Y QΐʥvcS .G ΔSCKtWVl-q坰 "Jk9VeyEmBdzE PΚEɚڱH0=A~џHc{EaG~dļk ;Pޒk,&W>~UstN|[!#HM2I1:,eO8 Q;K yV/3%=GZ>TPOg]u tjo܎_C>DH"=kJO]Yn+''BϿo&  "po؋ꎔJELQ sV˙h!LB#f#n[&~[I*5ձcPԩbm)MR% Ձ@^&mt^lj|G%n Vm;́TlB &I:TB Iq mݖ kd{$ \E`T) K,WWXh1:4P׉5SʡiԳZ̴,)Y=_ca k~3iIh*:+u^FxX8,T8sI"|<} m$+:`d&`e;6Je6-;vψ_?j=yIh֬+ū'*> xy:>"XLBEoU!vD,F>FGqJK'{ id컊ê?8y{` öN;+2׭*qa_Dntv d>M`Yojf=mϝuXplg֝G{qu7[[D4vd&'Jj)Y`TWeIDb+4ek3 ]y"NP>Vb14E֛f {% Q <+ҡ5k:jkmq5+0-q󶉞‡pV+7YqȗFXꃅYw-wDLpX-,0,$1:W0upst+̟d5 ^\܎k/ FdQ+Q*'h)yqa hokgM9gue8R_ttv}4pUIvƑj>^z7 u0לK3pkͱRWx1 䰽_R?6T2!ƒk3z+,mD%z;_qw4݋sՋ0!6ϽqW͚hD2oT⊑=  1u7晋+m iI?<6q oHI:|քyxd4Gul4d }"#~/ܬ =fGD}b2B&QB!Çs^GM&ODc,XϷVhET|+CD;㐐ʚmyѢ|y b;#Sƭgmi'/o>kV+k<;yWrҗ'z*v~Z{0nxY6( ZW+x[`kS=F]ۂ1ަgm]Z n)&{U}VtQ6m~7w^'EtpD}6`P£[ނXc)7]6 to:hYX>P\,{)7;o*5{~Ql1F )2^?sゥ0{K6)*ўI%cTq!eQ"U̷+pcK%3= OԖP37/ ="*G Gfz [ zaA{}˭sA͵|*\.T>d;`zyq\>4&ho W?m&m.&u^~7Ln]ઞO-S 5~ԌW(!HZCGT\~+lX+K}T`#1}e1D!W%s)cřwh&\oEI[s^$g3 G8i"1ȋS9%8T|⃨M7 B@Y@3COҲ)/ [ -镉Eꟸ kZ!SӐ}naKΣ\U9/qmK[Q6F\ ybcag-H/ {Ү dbVR-8]OKzLcT`3^À4+LAFtN`M4 ׷`7\jLX0[=6F}*!U5`ωø]93=/{e02 abY.\Wɢ؆=vMݳcpr"&T#L J8҉F'IDt`,%Iq`uJOxXFWSHuKVgW ͟2I;")놬Y&+f`*&VY)E)>#g~2Ou#{8H>Jf|H QGtdq&NYn VG_ ԰$K:(4:hn'껾|1wTjP4,u?{z^\+͸%6rZ&(Ł &J 7/qe41U:hO3Ldnp\| E#R'L5P4uL z~3!̓* Fc՗8I}%itxn6W6LL:K fV{JZ_Ц! ¨"QXa_ ]d%j -wQ,kt\4 *˜^ *&wNmQW.{޿n:"̡՟QT㾍 ;F8>pXd0-A,n|gH.QX]zhsDW.|t,Q<Wl)^ٱw~B}3eO[DgOf/o*GEuvэՈ2rDX?g1Kծ`sSfI.QSU WWQr͛//AYUQsAV/21e93,J,rTyvl;Xr y)SAu_tdc P5~z~uѹ_Ƀ}KR1HQ zq 6ZxXA𫜋 #I!:Y)1nh)gxHrie]2f)un54WXSXw쑓ƫsb5Dhk޼mDM!/SVQRA .!Z"89uaxƀʹS"a tpT:=h~ 䶳#[pAJkԚݓ֖Ӕ7ہpQXx%sC :Bܗap0wX$UW^KUU5k#Xh:M݃Uq-v97}mn۞eozx:N׽߽!͆-ʸ%j / le||6 AHl(#MLpjsČFf\" zx\hѝpNueGҠGJ;Rql.M-MT^@~о "!ު ~{p\pwpE>73nz^F~0f MvtrhOى& 2;۲wۂ*\hR!ZqYBCWΞaP3M_юE`1Ϊa(y#FպgTTUڄ(:_t mgDJ^k!&9d"R6POVr[\yT-T?f惼o/K@T*,r ləjIb*:ĕtvJ$]z{ƾఆʘIG&0)ͿRXcM6a*ނx/LNjk`@MuIxl 'J띇YUx( iX1޸:[\{\L\ƀrt vjf7cUB?]T fn_i̵$OQ~Y>:[A R+<.$ɷ^{mcpz-aح/ 44#V%x\X a7M tw"},~es^"ּgil\/M9sVf[.|š(|{ g.l~ྼՂ<[*m@)>~H:8`};jhC D Y䗈qH,wegimVCTnn?MVچBE6ɊtTǩQF4{fmJpV-YwdnzQ_ 5wIdMm+kLLV6FtjѮZs/zr$i_.aZxZ>.VS0PŻpn;<񭑹 aA kHDki~r4ŽHfH)cr2R|Dc\dqew7R=g<2^52|zY 1t b;Nֺ_q$ Xdgy;қ%҂|d/[ zVnm'-д.)< .Ǎ^Zi+@k[T#grC:eӱgiP+&@>>qXl&#NMD3 nyg߻ ȏpg9ƐA9™#*rbONɱ$ϣȪɓvWӉ5n]Ư P'RZn}pH\֍S-:b/Xͺ ǭ {Sl"ovXH8p"X5^9jAܢnlVoq yp"_ -cCy}@}@VgD1Ő'-@Ig2L ~#Xty ei+ ƶfC$ioˉ8IųAkszEC a@d$,]ž'Z;|t}x| `5Bhp4#& fEBbpǭVeH@>VW/sѡ=rSELety~f4s .#TVdIis1X2ppҹ {wYDS_/3TA??3?ytEƶDϿ%T0Ǭ"Mlzn`L-/dtޠ HPQ0b| @L|m{ FIEecbnHCfeՁaJ0J-|: ˅ L9>yrVRZUz Mp3K ~k<Dzq;kch䋰$G 2AӞ%4!Tsܠ+ >a}w|+ f%' &g*43t\jH XSzSiuFf .xRCx$%2\A*ud,KsA2:j?) 6-D -'xTIavAEe/Cb]9nqc6B_ί;n[ ҵJHlgQ-ǧBÞzpX-=jdJim+Ƴ^{1pB1El͉1ck }L@ VʣZAOU1"ܖN5ITL]? iR\R4!kv9dZaLkMa3"GĨ@XQl?9ߑDbkZHW]QNf2kMHX3Kdxc@Ǯ›3g2*V Kh|MCPG\R>$2h=')]'Hpɝa2,Aj*vcLPTG`.cxz%&L @Qqj/#}0lcW乁Ob5Pd`1 ! S< >dR0Ӂ[3({!$4 9wݤ-JƊ<_&U vISp :kE{ Ve5"P "r o8JJ{Cx. "OBįő!Qһb>Q:[47Ew &⠭_w=d>iWkY5)!9ʍV/=p4]?#`8s?ba`@b߂L_.7ccZ0Z9VL5e$r+.VHOj=?oBE<&tډb,@Aq#g5.sٽ#4υB/u3!0w%-ٚb[$/SJOVw| y[-$9Cx5P\[a++=nNzHJc79RZ@k0K>?%B WBRWӃx )>pvȅkƍ!j\3;Ф߯QhQʧX^وZoPj \C尬{}='X ='>b Įvz!mZRr׹.d=(Es5}{r'|k  96&&LyS6T ^yWDռ(s)֭(ؾ:bOo?á8iN5~N4 MQ~&Ƣo&,i'G TyZxzůt^Sڝ=] %DAKHC{Svb?EۆQn+{[lu2mD:Pݏ93!mOz2gF~2q 9+&6Bn,drC]Qf+9BD)q&'m&`=r(@y} ؈S2yw \t p,0~AV;t%#c3\SD-0CSvT 7-8!xOo7yÕxُv !&hޢw6̋Y_鱋g/&Rc7` ^Ӑ:ܲL 3xlg)e1LJ%CR#=*JC[ʡ-c،Nɮda " vOB.VDg_HXJWL'՟ HOڬ}h/#W]bĔנgD~Ǘ}d#en+l#=P!yÉj!^#Ό'XJK@Co_=M*bc:׌R9Hpr["K )!?M;&x+0)r@!jw?OD@ լxӇ ')E nهj*Hk&9[s=%=iyF+MR\k]pGΑryYBj{;[a&ܺ`[)eUL+OJsjzoQ&d1*_b~ B)wӎKy>gZ#@Rd3+$8ެ$mcXDߵ[ UfIiv@luHT#Vc_yN  badVcBSD2W e2v F zo8 /<ME(ls޵eb0Wq+>cz0ܥ%ֆOUÈRos_H}G=>:8!z%` CKX&ԥv+ƵԳBrrL3NuZv@ 00]5@SzO:IZ%У!mI VBVLvwuuD#o+wdRv%!~ Wk5&G} ߧ63yYS70)׏u 74g"]ס⥇6Ǘ V2LѲpG#ibkX ^}L ]=ވgCF"Ň9=m ޶pنG >kdi)\2?C9Hq`@Y_sI`@m3zaO)IE]f哯?Y#)<2E655{7Egɺ@*`p6;H埡 _-nť^c׻M$T>' D|(JU Q'Kn $/ /r.'Xfmql̺1ƒf2.{_VrqpN = @F?(ʊ4= Nu\ XHS_K(4Csx'~::T'@^.1zg1F>!- и^\eԂfow؃[ʂR4v\1q'\4+.ǚPa(JAchHxv8q^  Jx.ald!?1SM -H4dŤz}2 p{:0*}ϗi"rw},w2 8VJ"Ppp'I_`ݺJ7>,PvD=.hXX4y?Lc ]Vs<3PGJIGcmtxbs &%k^}}2u3NObZۯ;oN/о;O +a(bB6[fϡ,1OV|reCƟ n lkEJ H2>*:y>g ~.Z'J(5(CX6*{͚-sS`sm7LP^5Rmb9 ۅ7bS~"ed p '9Wݥ.O3丒 rZ ͕. !jm!X'չ^^D+v=VNfR~vE?ׇ\PUZRϾ(^${1K_7n9,TlQPg9bꤢ q-/ ܄ĖO>{/Wto)SV^lGntúG>O!me`_RR{ 0F\BՓLwOܶzCO\`*G˴s肢Ef?h&ЪʟMX%#z@h3cV.?/6ι1k3X"f~.?ެF&1{ál^= \)/{1{]>JwKl :'VTmpk@)Jp^|jImp~/r'Hv^r\q&9gˆ.ZBjpy!VI'uLW;ѫ8+U8rb,;z4!;tb>bǝ\WU-tE,֫d=in{WsRh?M~EiW# [f( *% EK'1UT;бm؈ϋQLCsz֍yZw$!Bગ;S=WGB#<ް.\yī@Jz`T@?09yHXC \ԜQIH d[l^ƟS8mA^wB|J $cƈ$*/NÃ}JB sA1!|c'YJV^LjyGh؜&#eii*4eo-#pxZǖ5H s3O6#u/db\ڄBx@Sef!c(b9alкcpʒugt:~){P\5抩3.ےU\3>KvD3;رZz6F7>{7Je$'"qb6$;$XƙM#Jv`sq=V--v~?엠ae.kJZʛcԋ<\ctUi{M*)p4P1-Ijg9OaL jdgAx(mКY wp6aŋb"_|mݳ혾֏M\[su7SC+p'fqઓDX#g9}2BFƍRdL6XI$^3N(D+DػOT׹%z6>pBd oiq\pD7ϝ`ޗ ĔЬ_Ds*Ქ3jgz.cl[`)4 S6^di{} bR``Q"pv׭?_`tɍ8] #ԅ[C\~<: \CPԆe_t~獧6<ߢm;DN,X@DKݑM@ kLaZkB:'gyu)e ӻ&ڭ#$\A`xa-׭nL ^C8_JW6Nw*):J-2hBёL4Z3n }'N;Ex[nh4^B""Vv9^ʭGiS33ޫJ|ےHak(u8+闾!stSAnCNR>ht*aM-} 7Wۗnw55L  _r(/L4BFQφ"6qXܽ)N:.zNHJs٤ƀ.v{dFk T0<̭E_phydј k2YFK{ l#O}")l_qޚluCh8n[bMd2YZ$GF9> ƝÞ:b|Ont#Pw\O1([ĩЂiw^w>#UA6g\(M'za{DBolI98$V%xTM11a6{wnMQ$:phwJwD{c1gqMsݖ2%o#h*pdˊ@Ŗæ"-#m%,Xn޵yntJ &HpazyH[AxIZA<ݳX 0q\ve[V8o+1sXW0y`&tȗ"1#Pyy[]ۂ"P2uB7po}/Tǹ3$Qa?ʉշEBiH&V2J./'p$^Cգ]VǗx&Y/A"33 i6_;>,`smpO qy9 h̩1 &ڈO|0=m_8,44]P#8<"Sq,5X<@ 5 SXn"rmEXNb3ZEHk29cn|A:+E}m)'vwʺo*}d8 4)w iu'T{U&kAvx>8aThvRɄaۘ[`6V-c*'q y&c3p|rN"W&=2B@|_,jt)6~Vzo1cVA@5l.w21.erױ hl@}98w)Eރ~|cJEۀtD]B3ɖqjP zlF ;&9!Vab!A6v/i'G'zߏk'E$p`$`Ƅ,~Ec<نeum^~#m;-}F NzTo?]55 *(O8__.rUhb"BX`zK:fH6?o2}PTd}sBF$ ͯ;ܬ,Te:C-,aS$}AC(tv 'aNu߭'s!ky9voB@`gRQb0!ʺPbu4 H]v_;z00ILT0xdJεq.qM 0J=kUB䚖yg9L1PvY)ڃ4Q; QOZdw w z>:Slz?[WWrϡ2;WQP*H%r-$$iWDEer5WUŋ1لx"-!+<0搒z9i˒^N6!-/X+{ǃC"ka!=N+<293K ȾAa1-EaB299k`+Z,6@#sO ȝ~l )}!*+7d/9F+T߰'  rLՔFVNd0tb$F*'v 2y7N:UfwX=J ^°b7'˔K$}\i73Qz.(JIO?LWq?VLd[;Oh%l*Q76*x/1@H0Q#p?4/ Bq`$MvϨnnsNtze,3c}ɨkvQ;DBU0  MX*JX죊%Gs K? E~9)vrlRk1I;T[s.촃^Xۡ E#FAX%*"m]96Nr)$r0\oݻ᫣!j>t°V\5pl1r-5|-V[/Tr8^!Fmjh.<+DXZTvd: 4^$~f*[43TUsItځD@ pY蕇\c(.2_^A7\ nIvuDZzuClwO?"8;U~hG?~O"5%b2)=5`"*MKSG"3^ -({~4Gn$, l(Lv_n6.iZılf ՉfZl#'-7ڣOEU\9(j==Ya%wRJ}" kÊnZx坝; ҏc":cq6}oEC )#"~/3j]TV|N&%Z9ʮ=Hy.ulܾ:mtEЦ湦9X1XGge{p5Ҫ]i+`d?R|fnpDIS߱h4K c_i>ٖ*q#>$̆L~s/GM:Ql8=bV [ŊҸ`!|UΗ}8],;%II ]_LlIiR¹3~M$̻g>˂i|}Urݠ8\v޶>g#4\}ScdOЃ+P@ZgGO7jy_t\X*5.<띇7l"lyD ^+"Jh<2:?z$jIH!ձaxo:Lw4U忍y<)Ū4|`p{7NJh"j|PftCѵ4.r7ޝ 2B' La W{ޘ$^zow@0_#iк!UK,|LUs-MzlzA4h \JSv<ǴYRx5_uyObm{h^hZl[̉d=kZDϐZRjNή%#ޭe`7磆ӥ%M%R"-gQb蓿6 ?A.$ AMz\Cƍɝ8b4˾M,`~e7+Lm]fJݐe de1M`">(,O<{ƥ߿6) t;7tuҊofqzF,4tdQf(Y!ŀ%T {NQ ]qm;хgd$&wkC3qcY9^ZkeV P!Wyם=u\ 'Ty:"J\!CU56ɇ>Xd)_>n'j[x`yg eqԄekzvɓ)YKȑ;hcձpJ>z`fFIV:%mat3YU|ateд}6X,>XU׺w=ԜXmʜ+|('PĜgXDC. KPChLxۀ)k1ᐞ;Gr?֪.wBpդq:*gP95$ L]O)c^P g/MFHTV7n{@y]r{l@vmZ{M^]rߊS˸h̺Ge+  1qpx4oʵ͞@/JX-]?!ufUVsN/83; ,tgv_Z,֥V}-B7DVWG0CyBpADݖŦD@$2Ճ e}etC~Ds]9#/ x-R޲'ґrR$XThW&H =!'4X2Fd'Q J$k0Wu5Ĩ hA*X_ATً@.Rnַ*̀o*: ^MhH).w!nJCqabnIп{n y g@hYD]7I|s9;yLгVYabGM̦,T6/_3 />ͺx)޻Z%'XfЭA~imS{ լZB!W^/2ZK~2teCq*.ueJ.7w6#fJ A$?Q̵aӇ#9ӻ`Dm환#+cgFŬ㋘1>xRzI/$y,؛'SkV)+Ewi"7BPN:JMeªQH '|TgX[>\A6$Z+Gdc ^M6t't3b,:Z5#я))79>kJe`?,  ryqz#C2C>Ypלm.+sr}H]bpU.6sncHID0X$-X K92vAc*'*S<`ո.Y j䏇BW6"S݈b|]um s*ƇqJHwup9Tǎ\U¶/m@A~\QצcxȏG!6TT??<6FhX}IZE#΋K>rNӓ~sT0Qp~p\MГ' B YZ