sqlite3-devel-3.44.0-150000.3.23.1 >  A e_p9|gwҳ Q.墀iq<\lu?3v* +* =P{bNMk 9< 3õmfzg.<*wXsD-o}kF<>P*QfY I].?uJܶZA,2']~PlnO3ŔsŚ!N b~Wne Ö4A/[G2<}(Go)fmp~ /)8a599df051b5be2cc48eef4a7085e9cd8faf017d1bd982bf6c6d7a9ffdc398b27e0bf0af3c538549949a5251eea3599a30e6544b3te_p9|cX/~t\yz")>[DVh22xCmw㉇.:yKxd(Ixib_jǾ;XrA$^Fj my?)nQ{L8D G/d1` h0ttfCAa;w8]۷YW.OOjetW⎐mgȃa2Ʉ%m?pC:45&"U!zlR<:Xݞ%”䙂 I>pD?d % D,0<@Yz      ,TdX(}8K9K: KBFGHIXYZL[P\X]h^bcqdefluvw@xPy`zhx|Csqlite3-devel3.44.0150000.3.23.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.e_ps390zl31 FSUSE Linux Enterprise 15SUSE LLC SUSE-Public-Domainhttps://www.suse.com/Development/Libraries/C and C++https://www.sqlite.org/linuxs390x e_ve_ve_ue_vc0d8cc1e71ce8642a19f14a8eccb503fa7774262f86def2e8ff8d9966ea33351b184dd1586d935133d37ad76fa353faf0a1021ff2fdedeedcc3498fff74bbb94d588c0cf434b040596c280262e451934b6168597da10aca422dd5ebe3ba1d56alibsqlite3.so.0.8.6rootrootrootrootrootrootrootrootsqlite3-3.44.0-150000.3.23.1.src.rpmpkgconfig(sqlite3)sqlite-develsqlite3-develsqlite3-devel(s390-64)@    /usr/bin/pkg-configglibc-devellibsqlite3-0rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.44.03.0.4-14.6.0-14.0-15.2-14.14.1e[J@ci@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-devels390zl31 17007581283.44.03.44.03.44.0-150000.3.23.13.44.0-150000.3.23.13.44.0sqlite3.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:31557/SUSE_SLE-15_Update/a6e1bbf2eb409650e6d0c11310c65bdf-sqlite3.SUSE_SLE-15_Updatecpioxz5s390x-suse-linuxC source, ASCII textpkgconfig filePR=k0A%=P sqlite3-docutf-827820a5c7a7ac0ca4210b710a70674b70e4cf8151a2cbc9e806ad1f4ac4f2bd3?7zXZ !t/" ] crv(vX0Ĵ;YcT=Y]eq0fT|nٕ^ϑ%(QރXΖ3nK|57j>]`1Ωi II3 X[9+[*^황O!iLyG<+罷{Ï$Ӱ6ݴvVө]UVע{.TDwA>q'GX4$d/.]#/hp^C}=@2O#vL.׮B@u5SϭHd%(^W^Fl`gLf i3QsoZYZ$o&M U}.eW7p^oDP@WG9ZdvGbtCrS~Q6E#NIݒ^Z ui{(6ltD%꼶N$6eSX} CȕTy6%1@|Zc %Ș/iӅQTIDc[ 3=Y)0aGVʹ.rbAszMbOaAUZYjQi &m]-=9!.$v6>ޖT;|HzP`,d ?3ɹŎjq*YH{ 9h}N&oڟY UmV/w3tbJu(OqrVe&ɡ55wLL S#@ne+qF:%0w{Qݖ )v!` |ڴQ%*eMr0]&@])r1pZU{`NZmPr99:rMlk&Fό-mc UJGh߉Ѕ6+:O)C07E*sD+IgLѼ@fߟȋ=Q#5X^|.3jE5E&ޟs%$" չE5In$?%$K SK|4:l .flnP̣ٲgm,!9nJכ5u} LJj%%qڝ98㦫;$1"ӕW FuxmVn7BD;#zIrq׎,NїČ1Wa,^ >Pv9!7Qȳ!m3ELuŶPaT mOtXdeƍ%w[0>RG-tD)K&㷦t1̐.4oқ&fAn'O]t]5|~%&a(.izM^sm֮~SP>*G@DUa p"/s5Rd#ռzO\Rl%fG+ovJ$Ǔpf=rKF@UB5@?~<_HF=#G]-bڄuw _|y?ꦣ M;Dz殺|0VkL((E!@\hL{8x hxrDɞ֑A 'qR&goBV0X %&suEEj|gomn4!Xp7dg j;7uxգ<D Ɯ]zBG}!_G{%@EرJvGCl !-.x8/[6:u|]>PNL B, |:e/!lEKcR9ʣwACqwtK~k*Ufi }l30I9ֱ {e NQN`̞JKNwLel6U 6=Hg"Z`8ߑ3AUxE"4Gڹ*)q[KA_"˧6S0,43fAYԒt &O"8 ө- -?=8l݀f*9=kew]\ײ1M#mIӥ'k6ˈKeZGא#5>s ޭ07Vmۨ'XaGd4Ҷ[ډ'%#bt!TFYFT kPE.Pϲ;y*dB'Pfba[s({I,VU_mpEOt5ӽO(n-r2;VN: x+_>2p833.aG!v%s%ФzjL` 6d*싑V#.t<ĒGlw sq|3Ls1 lʑ|Ф%n&mc xtT)YPd|́Dbuvhќl{kp#ipR D3whXNv> G ՠ&{UzU;<B E"ٗoa+A`RdO; WIo kÿ@XTtm|.7#UNIIn@`_̒l0 3{|ki/,{(/i!x{֯ް*ZX[VK3g m/ԧ vQ)zpӻV x{2P \)}cau EP2?DMoN[ hFNָh_2`>%H~~ҪYQJbQM᯸#4Py+&@n6 'h3)CԵP#Cn]9[onٮ *`y9;q[V^U jF9De"ދPNG_=^4w _Ffԓ}^} mSk5XAŸSszDV]hqR^CIao%j㒛.ϠE/~ղ6]Y*8R{5 v%}V+PVʍ}mߺ(L3vV1B8g˒ԸL n 4EXAᨋbox;+E.#гwg9[eҖ?xz W&8l`*L+g:Gtq~i+V1gDiw[K*ب# E(;TJϚP$663^lK<0~eOjF*`>+uF^gfS4OnA 1GsP_ qtI5:V,kfَd^Ta Pw(-^^ӋX@?Qy2I&|&#пo#r #qVH*uC:\Pnٻߨ K;^zL:CB P1`g8\J>X|#Y)'#{\+n<. X֣xQxӳۭNwi'#4pu?)?YRQL cX~}pfM|/wsnѷ~cG;7DK$ᢞ:vҕF?^B:tR \q6z"3P[TL<%65~-FB Du֕$.xۆ t~sX7da8*]Yv^ɰCF.N X(a1X&08%X=sbu(q(/}+0(@W3t=.u dg mtcKW2:"Y t6Ŗx(* bNDSF'u矅f(>aK,@2hFʔ߻ $_G?Y:ޫrXw86)8Г;><2PWXͺI6 OiӡxuSw z qi8bO5H"$V 5qxN fx;`)ߑe_vWmJˬ'6]`n9ӗa%?y]_'=P  G֡@n[}Y٩F ụ; ]) octMpqK=JlSA]<ݻ0mg֔.JbĒ& #ZG+V$K? 8<)fvF!LAoIh@G%Z=9>spj`hQ?Y~TYJ+qM%h{5,X}.ƌpV'&7̺g֞*z־ 7*\_NB,~"^̦eR=_OQW/w,)OK.-C~-{5plM%sY}6#Sm{54/EeϣK {LH#EN;%)cC v9f@6E!lǪh&TX@8e ٚ)aX@-N\A[k5ٿ/%0eip\)f 7>2 V  PF:6?_C 2VkU4#ܿS1eےzG{ QV2]Ť+$Ti:]ض^T&qAEwc Y7ܑw4ϟ]Fmм3_N+9`v)MXW7 ?OP+Ի?ZWsL6=G_8*9Hc}BRv+CB0`q̱ʴK#׾`X0 ZVH^X‘}~=Kk5R߷hW]^!D2 g/[.+wA@Tk L2yQPEHyX|NY(4E_cLJQd} wwyFh9A#rZo/HfF೧Qf2@k#"y:${ط9W#<E@ kK̓ i 2܈N[Rɥ.զ;W5RQhe՜1&Fm,%dat`5ц]M[>S nA[mK8e"FJ Cf"Z!oM4=kq Sn(B&NpQJח<,_j =؈Uf(|dpMB#j7*,Lbȡ"0L ^`uXcZI%Gߥ{8-3E7v+V6 zmw heR`p|f"g^2 Òi"2O!/f\{9ÁV%H5W V W|n{g˖.N N (x=/v{[lڰN >,7#]b+'tDV+TISHB##yC(6Xj2xʍ%:J&컮8XL)_'?ݒqcԭ&oI >,fr nW +v.n`;R$Vf-.nH(qkWbچxQJq i>T᪁ M26SN֯21ݫ6SSWCFEuMd@")HR  r//LW$x0Ir.%;GohhWO;!3=ڐgJM8`+s8^JqClN^wsaā WB%i QSoTdybTO*b9saԉ^GK/yGjQܱGM̂l@< rc?m |vˣ%B#߄VRŜR+׼\L:s}p4*Kg-E+{( [dQ`_#lBl"m/}8+]8?#أN6`ֺN;Z«L <Y]r.LThPTy0s[B<P-ZZǎxS ։jL.p7#bG SF΁_Ef!PGe’(pTsRk}OFid-y8_/7j|#6ʚ(9=iu͒aOLcF4.*&=ZOϡ=K\2R bMbx7JaosZPOz}3@};[h)| l/QUKO~[(<86JP~o-Dj`!AQ+HC6l{g5c;;i tt'dEe0ìx{FensGdRoeURSa^槤}[E 7`hA:ب.4 o^,xM< ૔hz\Rꋡy&zdDM_ !>K%`?*l0zzEBT~d +!e =A|U'Z4C碒\Z/>q<=ey +׾3{9izw[9yˮςM#ș?a@#HT Lgg 41p`/p ҇HKG$( 嫖Lh]R5>K"r(Aooqv,`"8GؖèCZy LI -HQQ< 1}?u2+){ػfb`8ARoW3oauQek715|sϿ9`>;.0:~judm`6w4!&JyDҺ w.>Ws$~}><( C6t\tƗPHYɳ/oc<Z)bB8#(]Y~``۸" ]R\ۛM0jBHđ("؆]NfŦ*ʳk*}D\߉_Pȫi*s'$\4{ȎP7.]]' t^ȁO_l!Ά㋴_>EE7ഈC)FwWڝp 6mBSd&XԛErF4'Gfe? }5yɅ'vcOƪDz V/_^;t\?N;ݷh Ci3p$v<@VK݆^ v[ \19h́tЕ%ٹ..Kf&~9)0n޻FuɾEMv\t8ZV1ͳhGz\S'7b#U'Q% GЍ,Z14; ;#mD~4J j?jAq1"q cop ͕]2?in yn7L5,L4UK9As G%-K1V-'Ò^aT N+^JD X ~جK5Puӑ#ĦEgZ5=؝&O lC qD2(g|-'h@TpD޺"OO?||K.?k"hOTV}og|vIN s9ƜoVhQMj9~ yq0}4AZF*ۘi7 CQ$.+b<'JXR{:BTMd79{=m(Rc=`^n?lNPڳSBY.|ϯHj0)>9%Z$!RkcY8P ɗQZMkeK;cpByWEkCnpnT^@rheo3*z#Z=6gEb(ˍ(e91EŲ@1_ݐ7):i۬: \b6:^O\̶Bb$J(:=y*G~i t`3tj Al:m:JcEӼb*y}U 6``vm=-e&V%M&MdLJP&1Gri{v^.=njq G|Uҗ+h_ cBi7H+rfKpI{IKXRMG10**t0"C4Q,%jvncU%ݞrܓd[4J 7Rw%.-QzK`ݑK ;En7 ۬M /P!h–lI*,]Xc6<ԳBPٴWF#0 W=EӟxI& !)Ⱥ'Ax1RLju ]Ȑp*2gZJt(\ >+`d hQZ)Ar )}#RUrH|}V oݡ-#wyGDv>|bżډШm#W\פ} 9Xګ}q%SnSgK[3^0Yx(93 u<*꫸>R ǽ4p&kQK{oNlǽ3=w *;) j5ИSN1hK,d4"Sa0ATA_Pp70A! AW!ˇK,"q*7GJ,ʃi@4oW)YVV<~Pq!0ϻXM.&*K46$˵ PjT8^~Qd0}j%~Ora)O$>t(#״u4٬5){}SC ^oCg@Srof$S\}or, MC/Ʊm>k"U?5@OSp n [FAp0(Pp.sasڶhnGyzGQ!̕F13s"K 8\p'()g^|k{Yw|>jƥ jYb 1TWvN3&YӪ8^;LwNP ܹ n[VAz.fhB` Q+ݗů 3ToyjiRK1,UbLp N_nv_ce ~󋑥& H?ݎ?vyG6<1e!,۲\o:r2nQv2ձr2fd>Kh7a\%F)NF3̗]j ,({0mLp9-}H~:~8[ݯxuJcJ2ԩ u#"muPxɸum:COngƱKTV%=3$n {Σ8[F*M;flg:>iCWnFZXqIKTěGnVO A+Px&㸥`wvwsSo䩉R<*.G|l{rצKhڨ-|.aYUO47ׁqȈ-pRoO᛿M.F064C HP!X#_32dpv[ oS nx5/MjH[!RߎO>ifH2maIJH DZn?@LTT-.Sps.SVT/vkw;jDHU?'~";huM=d9)QBFu _jͼ}b7w2Wtjy4T\x WB=B( sfNjcAÂav]lV9|(=hAEB0k3Z*Bx$Ӝ3\>llW*SBmͧD|U]kM9rNj!UcE@(+-{섅ܩ4o5kUo+z†i՘pM'>9ӄ@#2 UT$E0.P=#/rþ" I? lo2`jCIwt]Voџpjsvƀcop8~s=mOd[$R}pohwy_R!ޑD* ҩvDwS1Rh^&+:pϴ.w`ƙ+"$O;$e i;NC谭Ilm3_ێYܨO"\)z-'k55 ]0y7z"ꀢf[R}[j,pIǕf4^ UؚV^ f GLL Ȓa/5t(.bPeƉ,9nvt~# ǭ9Q1W5Xko~h5YP,x|YF;9qJic&)!YüddK9c{}y4Qv52؃yF'2ΜeC끁 ^-Y7vԖEZ?_Wg{sj,3O7>J2j6~ ORK,:fhn|g&/:H 06R06{OP?qÖNW:~ Ͱh5|il"--cЉ$5!~s0OPKLJJTrAnV M~ܹֈy|0t_$u V{ZP_Gq,,37Kb &![0\S(!>KK_=E{ h[U&-p.ΰs>$;FCvA$p_|cYOH gEs|]?@nΪmA,#kacY3֑U+ma-v:Ca37kLPB'<̺CJ<Pۇ GXWkVL!K  7*%Mn0|]ĄQ0^+c]V~? F(# --AH!`9AyL+E+2_V(tz_O *D6I 1ݍhxr3HaK`8/F((ѵˊD&_39`M4ϻaM)甋A\:FB\6Xn'=܆`i;yA9lo,LgxfS9vs\X/Լy`~fkM E.QbfA:NX >С&SWRNq丼ZD;'ԣ.(8΂em=Wx@Ӝl!<Vʈ| DR+ҲH`YtUZzܕ`Iޕ0kxFlB$KԲY6߃$mhk(GAoF"l51pg/X%4,Qf-|S[M) ^KbbBoѧlQA糉\ Eׄj-@F[[^+?_Q۷51ȉ}"S9D?@yp@RNqTt ~ yoIv .H]!*@ecfUPY Ei[↬/\6gFӣ摐h<܍Gg3>* X#]*^MHLucuLݠV[W_0Yg "~p >eTRT *&2=PoD{zIȜݾ8?,(>a 4%BNW p_t]8"A1:p󎢓5Y3C``QF® .N^#gCĄOch{t1 p&ًRp?t> m~sN*`T=`g B?%/YektRJxpMhZ'{)tG-{ڛ)$nu*%EFm2cm'L/eڳwte&<Ȉqn64s3Lqs4sOᕑJK2y`5J݌Qa?w{O ]7ֈt/ g*xL+pQ_J|)˽@ACj2H &O[b"=6a4Ps7{pò aC+dI ,j.sӻLNxOYAO̥\@K $t"k)S[ifBrtɄ톎pno'y(%B.n2cǫbKDʬk</.fNח1^.E# Ym &us@4]F8B;.tD (GnN=NJJ5_ҚrU"(h|\ɐ>ݼ~}'y] ΤhWv[ )T mޖ.*0OY4կL'FE(DӳQTZg>ת濷{'g'ߦM9IcZ=LFus<<6СfY'16s/a#锖%LGTZ{ ^DI/l<>rդi@[xpz=ԔU`E]-X?l/񎒪A,n^?d,?zb%E]G4̜V8S8 Ul|4DgLo52 J8k,+ꥯS4΁1:cߣ_Jn]aZkԝo<2-~hV[7#Us*Ǘjc4Q%-#އ2}l ҡsT9_ڸ}ޒB+1%Lok(I(\E ]pZ.h¥цҵeMRr@F/wm.G!?MA. +/洐 IZi:Rp(@ )M?;(,όSM艿L'TGOU,iu?*2². 0[>-G~3Zk7ׁuJ"C[Mұ{nIIQha>dê6N:l+$4Pw,E|+;QwX 悠FaWUiP@Ubs}G.%%6;"k(Àݠy+x/1"o :oY#[='wCq Fk0xЙ+w 06[hCHW}Snxvr௢i"@/.+zf6#l*.*e')w/6֞C(UNB=O2S!w͵\p%q X 6aݡ R۳ u! H*Id[P_o!YŇv0_~|O3xN6Vx~Hox#Ev^>W4:?40W؈HLtFwTYdQGte?yZcQvx-O&wBwCc~hMf4z\z'LG<kHcZ2 t46/ʍv7B⭨g"9{1kYEjc>Bo_뒝UrAS̡c%7)4hЛ2J`)se?˝9=FoYS'R=xWiy)H wf'w\nnԝ˥/F+ d Qqg5:iυ="! wG4E>wAeaFxF%ߝŲk^o)h5[fm6H7RM9Gj|HTCY_JZ6}!;%_u# QX\;;R Sd܊^rS|Ȼ0"x`\-jč .1 r㩓લXv#(!N <-&(RTwHyxX@r>Bcrj]Q!#^n0Ao[ۇCjk*5)#uݿ&emc]AB&\k:R4pB%ߩu|b|@?BEcE9HMsV(`\NCg &Tydu3)K.9+H?tFdC>蟹OXnOkt, O\BSZB*$Bb̒t{6'Ez_CUG@PrN!.I8,Q/~)$lIPh>nn$3sN$~~*+w: ezoKjmJ9ݲaܦ=$%_#)\N$Vjf@DcDўie!ߛ50C=Ye,>L ; Γse% 7?#.*!3(<طXk#fbCUp~I2v{ɭcIAd@\$)9YGB$nE ;`VFں M 61H gN%R_z RTw@[CrgRjY$.C o.WTFūƲl9]bIqdds -?^SWwbRA# Enz;4_&JăaORX}$"]*ٽhWNF&m_h*Rl^_'܎MYFr YǰgɉT'CfjO9 -+{`kr51 )#xIb`]eDQzKI GVTDIٽP,~&㘱KDV<6q3,Z{Lz-vBXjS0V5 ]Juo r61^\2i8A~:m=; lۻrs@Ah8Xr~ 06Χl$6›h7ɸkڙzG#2ɽmqWDsE7Eq);c<'Æ.:2nU V|E XayW`)bA%Lb"A@96*xޓa A k`SsG8AANj:ʂN-N3pajK¿y}dɓ}>̇ߞ*+Q|ܲy,W- 5MRhkV|?f.<<"6MR>d,ն=~=kx%Hg)er="55$/c(qFID 0!V'TtaT 2u$Ȗ) ~H@b[gv#䠩7\t ﱐHR/޻/yi)`Ê"+c'̠jCe@|% oZnbxb>\$|9a=qCs&O׍*@~O94k[*N!nP#y Q[0,'PwH2"8ƨ%LVz)pM)+9CO0Ӂ|^!`u.'*UѢ0>`A>lKqs:isۉ% KT[@+z&E4M(wp@d z>=;2 NNB{K?v妎޽7D n*A/|\#q`܌a;Fe2mbT`s=}z oꬫġBXy2BQTv!BJcD ݠ|N9#w҅۸CYs {% y^ѯL[lCP8A`N"\h;ICpl'>&L_b]Nm>\]H7S:Lg{>)| g7v-QYY{͹VÏ<ج]`?\~Y!mbBd칹a'=8|=N2Yi63L_a~ *_۩I:cjD^j`y+r%:sxn6!OAB}H+/x=- lw֎yr$l= P)0*q@W$I}U<f7hb̓V<(n-qB+M-7Ϥ%3HC6\ZԴq5Mvv"?qoVjc꧹ @VVx塾PeEsUn͠~&GиpjGs\7} Q?8'EP~ bpLPQqqr a?L򉧬 k0-m8J0! >dOpnu T qӎGF|àEqrw,6+PEҵnTq^"rgP0GԹ74VqIIףF b]7vΐ^F.ELdjd;a^뛵F[҉$UY<A[dx~FpDYӡ 㘰čFN?%]%zǪVݓ Pi^eMu$!mvbFc5yJku!3=?>)wKN.BkREǷW+۱2JND^UxuF*TS+.R\s[#|E,&5U2@E`2'[ ;vjM5_Z؅q]ֶkQ%|IFNKû储g:"c UyOۙ4;ug]j?nrwc sيAa:ۯq5FbUK%(Lk]LF X(")g#}Ti*"!wI@P/m]Bi Qob8ڸ:3V<*J YPc?ɉ<+I6R˫LLZVө ɓu^kp)u/r^6?GR$o`2ro$u>GAOA5>`*[ȳ m#vr#4FFeVhT(ORa={IYekw~RKVBe1܉ kϨ4uKnBa&vaWrZ!i7{}׃#"4Ve`ŌpOc Y F{= za6GGdojK6]cwʍ99EvuĪ\IRa6 \Idhpo'r5Hoc}sL9=kRSkhڡ2WQs_cx,#B٨^3>{HVtuȷ>vU ~pdЦM*=؂+ >([<09ٺ#&71ClEJTP#LAt;'A;PR#)p=8Csʨ^ Š叚ղqV Dxط4H~O!E}Z`pST$ӱNdҎ㲣]s,H,e8jϫHCUԱi=1l*5ɣC(3| ۨ(!GJAm-hy&2{;.5w7;4DvK !2jt=V.AaT44]{N(҅˺b_+=lE!2Jn%Ý+$m~J-~(rГVY\LYQ ]H.m` rB;[ui:Hr#9Θ%mEndWW Ō]/p7=Ntw~~K_>캳_d b7J6DGa݃2ye`ʚ޴6 iuVi.$ބ1q>fv6'.אXP]<kwTB,*l1<0} eE6(9HZ<0g%$NnʟTdݝ/)KIsq 05V,)/fâ 8NbTTUԯL-gl@ÿ7-Ѵ.25(|7Щ5bmQ 0V&} _l3(%){MJvp^uW\ Ӛ͌ Vb `\iNQ!tFyGOŜXJcoB-=Ks l;do RYo^L) ˣ:^x;*vY'@E³/n4ꨇJ@mѹ+)T- BG9W'%So t"dވ;yO16}j 0Hd^ɰg{̃׼K]gyp}/to'JסWxk&.O 6LR-[}_UiR91Jee=\.U$ti1 x&pgƘy.wP؅>U2\^ k dNxj|"g9wFi錂y5K]lְl5YѐB+85#-YyЄwa<|ٚƊ̖Dۭ(So/]j7VwKҦXQH6;N^-- MâdtOOv ;+N<7©EiVq.Cs1MwXω2oׅ%7Z2}\ 7-8NSdOý!PatS (1I!Se8BSFTDXl3KA҉rkƊ3O:vu,A@#, 8s*mIruQ/L&}>%#*=Im@ /Xa5UVC70P~jT4Bh#ςr=FXRt8Fh0sS^ú}Wl۶a p=1^Y3|VV>8w1QԸ0\E>5I z<7_hv7޾P AsLL45"s2g`Y+s|yP~y[Sl 4 #0#xPXzEɒZtDLSMf.3K۽jizmlR-[e˗ iPo[@3t=D ">{|IdB,zx MptWټzHjIϭd5D(ёj쒗Wo|$E>cEls{p0!4'_aAd`5 f*?/f :LM!Z.x H@r:]Ҝ4 ?|H E6*LdS#2Za%~_-p|Nג`bn[s/Ll8QIy-o.E7A;݅bG=׃"g%@ dRCL3nC]\L@K,, #tP1\Ӳۭ1-Zwc0]Ҙ&TiF|݁9d2<A3T [qǻ"}g|~E}uvl3kyRZ@|*YRu:\0As1NE%OF3GR۞dA~y(!-9tX~JT*(6LYnupϺA0A'~_\ L>og'Zu27٥Ja.!6K!p,vm[!h]dZT|AF燻ll ^RC7}q!oӠ l9yjx.r?_#jUyUԸzN U,)'~XӦŽ1sԅ;5|[ ?Oo{Nce0_.Ҟ0<Lqfd/vP7{R_NҾc` gMc]Td[g)۴pn+{|eǵ4ੴ,RGc0C!7NC-c ףp(|7ȑMkal}3i4*䚮k7dj)60"Q{ K+ љ8_e=_'] zJMMs[b2ppԾok 7H} P^#_\zU7?Qn˷BoZ - <<||P#Td2;]69[Jk?-ڴ4E'Q0PH$"Pc٠;V!理|kViݯE%ч<.>qjBs'y?RYwx_#>$~DDm E@ j.XZY(B1S`A;p; (@3ӻLHC^P<8Z.ՉuU&DWc0ZڭZcKrlg(X0$T8w$♙Pxpw͂ɳbFװLw_9R%r:s2^d>+w6?* cETTOzeth@j}?Dİ6z>ooezeaG=K4xJrzPc\_ɮ\guּ#f Ä~q{sa?)s/㕼n'K xNIB1n(d||@d;n\!Ga2MW҇cl! E,fBlBt`yEϿ`D͖uM:(ϣ!ywnyXRH.z 숀kpn`ͧSDe;'?L}h5%0k.㖸n i(W )d H.ϧ_j H^G/s9BV 9>$Hl/]^}sAkmҍf}2wJ=y/rNpb}UMEq )f4!E^l։fA7Կi>!鼘8A 4ǣFKQ ygZ׉^G;ϒ"Js@` m c24}vcXE lYQ؜~XPP}؞ qoM4MO'`B:'XPʢfJiúU;xv n~4f䁏$+L?Yb8*B_ƸAA~;=nёO?+ܙg [.=Fbʁ=OyzuH-6֎eԕ[ۀWt @Z';uj| 7pp G/Kx:͎uƝP6g1B.ABZ@]]5J}{~M+t 5"Feۚq&Ago/@6sYhl67fgF\9Ay;Iu|X|> n6NKQlt#ZU!0A'[[2ș3OPߚSa I>^iWzh5S*~,S`abu[֮|iҢcl^R+'C9Z|D=~L>'m!? VyRLhoH +'9Dji=˻⇪S[g׃=b`-'5rp%Ypo^S`pLMԒTS z!\wK՞c]OѲ@hmt3|ˇS)Hek`ƪ|Au?òpxA|۟;eϻ6suԔ,ae>4ߎ)+,|ʡHUם sDW'Iq1oPc# Ez@m?iϟ a/ȉn1NekUr`7* v.Py!@'XW Gg|:--@lL1Dc8qP1AaIYS@'sP[9C))F e%ŪWM?T2f̢NlrѕL;:dM'TYHF{ǻ9Po_<*fPf'43=3 ^sReu-K]GLOD! owB+~&K]f d(;HT$SƥkX3۫2kp߇np.^ ƤѶZ^k31>Kk>]g.25go}0.Bp_.w2MWCY>ՎiXʼn|ot~dYo1[gHTtT_q@?u e$&'ireҎ1aܻ$fs8vU{Z-tDY ~$^m3]i;;$mQFJT)F#x?,!Pw 46N(?Z͇8,3{Vw]eSipΓdkwWޮX" #Sq" r>hrWNܟIrc= ⎠2LJfγL4Gd+I+B藯,RtmJ0{.;ɍ˼<+xf͗or6fvI^sJ"}B tTdCZ)W: 'W45ַ(g߯J +ԪQ3Qkme-(gA3/j:w/Ǔ1/W$HƫԴMgsju"I\zA E0z t#O*߰ MV>s{IѶ) XuBU~3@cft 4U'WRI)uΙASW!L6IJh;يG7+݋M%Wy iAQBKDWlE\CH""su"S$P2 D>{ ϐؿ_"ɂ~r:kIM. 8&5OƬJ+`sT$q<b nΫwR玧*U=mJ$J5}(:\hz|(2ؾ1I! +`OB:e6 Swr꿜'*Pf`)s+]`$`(br33Yԣ ީAGBИ5Q`ab2̈?xpqLN!"NteXq ȮGvveGK;LF&pDa VtAySq3LB_eqcj`9o'%10 SV ID{Ӛ(!J,ͯcܖrv9C|kO?cH 0Ջ]h(tw=.lss)fCIE Dʾ1|􂮗&Bg)v.!/W m޲<,{]ٮѲB4۞Mtܡcr x/yD` /g^Y ɹQ, Mihs3nJ~q?\E)S~g6R9u9LP;z|bf(HKJ>-:! ˰fN\ 5o깝7  e^4YbA€`/NOW/g,Ŋ5;seSUEu0@fZNVҰ@+a3J߼q3@ ٞ4n|-ۯ8NUçhZCO/QC%Q%~R[ ؍6Ds+ ;#ΔNGDvCZ T t0r./& LV,a dl?&Vзo>Ƀ`e[PHZ=./Oɛm*k\ 6ZkhS`bvSI\{na]bWoI}b1jO(wMlxW/I+!B}%6p; |10oLĬoXgaj`#F*Y&Pa(|@E`ڥO&T-gY}cA٫1r+t|il %v[%E ̓t9.+̝,Awyo1UZn}^TUr0Tq@@C;̣}uri;Jj!ҟ:Z`6@sQMJ poQt>Lch#3&&q嵵.1ؙFVf,]*Gπ>& J}{4 &> Ԯ 4e琤Jۼ?Aע/|2I !9ż1'7CjWzqp()fz/)4(/0pz1x98#9+gO4c ˞EF"c̾^^͖u>DޔyFh1YSNh {=aM"ǥuTC-bPeHA_!G1tr $ 0>OSs[~dտ sFB dxLIp=*\}ZwO4UzLx?'o0ZRP*Kl¥q-^lÏIiDc v9Uz,lэ EDzyÁLwu.ZF'Lg4 ]rDn[R!2gN=R kmںPj7WFėA1klEw( ^!4rPUKWݬBE+i/AdU#X.c9 i`Qqr>[It#-ų"8 Z]Y[r-5DŽouA%r}UF|:Ӳ |}}븢VZCdE Yc |Z {:T(-)cY4owH:(RRcWeê] ໾0_Q-NCYV!_| ^I{y6&$:'FaV77%~w&FJ'Z^#S^&IM=uA$4Rc/^ŬA6Oh°YLQ?fd0_'W]臭 ʇU*7@ڪ\=MdY+-l]*puV༆w!@$כU;A6fr8ڟO& d7bl SɃCh ≉ϙG37mY(*Yu•UhgzyJz9#>kPԾ.LII>.n/¾ \a\`[ϾѴzv~1u0sx7CǓPTYk-%'c+k h/,qL%/B]Oz^|-4ɽI xJ3y ekdR R*Afj<83WζBxH` \xJv=|j X (dDhoyj`0Iυ7a u ]36=,^= ~fM*,(!-U9 CA?( Q"AclyΜ|.}c#nb/yGb\(oeOe]EXaAȫkgşA~G0oUAiv 󂴬meL, *3*AATq'jt^ iM4\P;짉 X!H۪vS:E^3` (r3 饴Uʙd1Ay*|UnnxzW;W<|[}f<.d'.Fذ-$*(qN ܅ }C0.oKL,:SOahOB4s`4" @M b$/҆V|1nVOˈM!c/ ]-1 nO$ n+S9="V$™6b,K/bhGե]\rǼ7Gآ+){kd:4 ڀfXJbW:7[ =ymv62.LX:% ."O8*{P2Np-Ͱ im{l&t xe S2է)Ḿ^yR1o]WQCPAN(JIj$s-W7:Cb2JKv,uadRb/yn\  ;-bڻ+K&3ss~y#>T@<>7iٯ/e6[|ln7}N.|4Dw$3 `(S/5Nt<,<jJLƱc~K UIeH]+{`$Q^rYvD$Â$ 6>> yP4D :&@%J<qa .Yv@¡YX¼iKuBdm:U.矚pEdw[?]1!^n6Cב#ndo2i[!B@iHr𖤖_˭JBkZ91WbQC@,2ϏQ0)QAWÐ'Pfa|V_@N}Wh+$۪݃^h*Z"V,c|t;l3Ak῎1,j6nyu%qW w8 lҕܵC@oN< m?gH^ŐC0^ }F$WJ/An ꖰz+CKyuup15;HOAr-DѼK+= =v_N-^&"t7Yz} ,Ǫ2F$D%'^ 0rB/-L\˫|zǒfP meҨ@tZ %8l}T֓Zd ;sr(@_6`W9H}gQ8ͪzȷ%Ak s}~0oXc_!&v湘E[t'y(Cp8.q9sPůh*rS|Xo۝p8RtgpK U> Cn˲f+zr%|ۤ=Lt Uxt!_S6dU*;zx}Z?${x2gnM^OvX2 u3xUʤfMl"dVd7$*Lp)+7jr1ZsF*ZX;gUK$kM}dɞ+rok )!oT=^7(C{_[9"`|an]) >}9*Y5-t5ޥ*VYu>K'W/Yg}!1 PlH .l>轺l䜀gKx[X)&tUԹ#0R9Z-f*_xKWxTug%?u"_<k}:A|DsuRQ-: ]I!L8;ʭS-8UbH}H5ኘ?ZgXec5|jg֪8o>AcBk퍏K%ݓT=l7ex&eF;_4X,'i, [xn8Wfim+]lQUYvv4?{b{oO`-YM3}~& P~(a=0ϣáS>]"Cr>>&N5K‘(i&NQe%\H+S6UU//kzg 6UKgx;=Y<ŏ;szrOx~/x=W3'*We\_QגWA/ {VLjKTjyڱB=T[jB^YtP;~+ $Q0oȭ$3D̯ 9PPY5eȚrJhq_vl( ==.yS ˅a T/8x|\@.&Ujo䌙jpP }`vɘ ĹÌVƲ׍ Ի^cJm6eLO`WbSsG+[Ki]wbQ*Sĥg͆75I)kfػWFo 2nU e-*k$xe^3n y p W Io08voE]Q3ζW/.!jwd U0NHX <[]ߢ~Q(`["Pp, Ex1c*053yJdw;@#?-"<#ֈzZUP)a"4%J$/*Z1pC}ڸR- :Ŋcv2쟵,.zE_pd1U_9_5*EoCkͷ^"˔= N*rO9Z<E} }ܹv9;g 5?p^eA uN|J בA9^dux~8{ЎJe/KIyx媑0/FV^ A͈p M}Wv?'4)kgnFtۆ}h<g~k:t@3q;Š{G)5%B^&qyA%Gt=ጝ]A\ fT-⡲D-WAVZVz] bs _nj|,0{ui]AlV{9HoY*zeH--XٶDXt}=wקV!!$h2l\ϾO9*[@ix'C͗AGBB1ߤ8/c(ڥBNT,^fuG:*rʡ',`S>?Wr5XuffeQz>HZL57,=C1RPਾS3-.\mvA]1 hL9T.̹ofoCdk믿&zfFwt]nx};߷|PvɬۍR\:tA7)ULL^AVIv(W-6DxɅS!Xr928kl1lhgړyb$5$I)xoKKuNCDF6sK9&xGG0pDS]);ubEBY0QlT:QlM%.nod19J׹6j]0Rl̵Vc$l bSȟhoGK\ =#Jɗb~ X wf)m!ֶ+I]BYlKx$_x.iIcoɖ>YjtF؟ܣExf^tl %hsr<#k҃1K4Pnh,=0YЗ򻘃`IχǷW E=TYv108_uO(^_i]Kc{("OVxjO~g\E8*֟9+ǟN6ʾ]ĄYRu"(a*rQN|ppє6J'nFo?$U+3KHC!-c0bpHueJk0.{P۝✟st}toHb(F0*@?8EpF: yqQ`Hz T ,.9\sbw1әf7dVq-qX9qblJF3PD=D^b({,8^.cYY)KM ޠ'~&]hG; ۺ?L,Pfy]l|RG {*U~Bu4C ;:;];*s!Ŏ~{Hﬦw㩮JG85bm,wqQ+>aBZp~w|$ԏ^}V mJSog$Վ~SU .+ hm:)@рM"gR<e;^VFGcs| [)7)RbD3 M_v a)Ith؎70Wo@ЂZ$!mLmEm`~Oz^(ٵmaFu(dI !%,]ެ9ϗG,iDU u)|T=3 OV:[u+hVP)JҌj\]#n#B%j|@@ Vma%L쟉Qw.zA{,;|ՙ_ l&©W+N.ZRDzh6~.4-0"QcɃE$C>',/G|t/5*Pt">Z ۚI@Z`!Tq5kO=/l^b(i'8mdh9+QµP.̍Y!d_4ե) S6YeWu%$S^bN)EP?W (5vܥQ{瀋Ӊp b2wWK3?fj^o}iye|,zQ_Z$7`EқBRJEp!VĈF Nú7B2-PCN!|$8][.hĘoW6"ЍJ\4s}rB Ҹ輮ix"ZL%"YW_." gsCh&̺+sm{xwBH,xwz6&#_D<@Qsl"?-& q  16:9bGWާtUj D.=M7|nH8Fy6 a[PBASr%`{TP)'9Nz͎)D7Ӛgsmdi~ܵu"?/ ;͘FQiC׽Rs%Y]_aU5hD#jKs]ja\>I]f(NZSj e[5CE&u)zyc9;R:$R "Jgԑ&ȋvcw j+"E$ g4ePʑf½@:Jl6׊[Fu5Z}R;ydMb<;кQ=eH\TPZźSû]eHgNz&7 :iDu'+b*oa'e6MT4$橨t/z= ?qXMn~[&G;SϞֶNzs%IpMr3-$]h`XBg Lw" kLqDIӟyۡ+i:&WB@UCψki,ːB*5EcMѩi̸ Z 7Sk{|z`z,5z'0&QBv!4-wj:ɘ5YE~wւ>VIJ:vRhejZe$m-"Չ=7y#|cu&S Q{_ aƲ|ˑs?0B镡2m{'Y{A aDz[ g O@OY1+\ :f~A I٠.Q%8km9xuqUex`mv:j{PR>kTn_e:U;Oֳ?#LY&,n1&ݾ_`NT8ea)Z@Pw~zR jLuՃ ubW7/ oˆb gTW*wQl(|w܏*m 56(2vc?p5754X[R26=:#6Y,#EfĘ{){dX8S|획wT/LYzI\*[al X׼>3xݕ(r))*M rd-6ͤ|OB ) \9="{A?78Ef9ĭ\\]pOp;vԊ뜶gj!`哠 \왳@bzl|@u%\&|5>*gh|W@@:yұ;!d&1%^zP`A,;$,1rr x98IhLH.SRژb\$mۀy,XN%(h Lk;FŤ2ec$4;Mېwj:`1xM8@dZtruAߠ~ &:e nlvRЪt*WK_"G p٦&BY34(3W)>@4 -mpL΅ p}t]R|+(iQۚGܩm*@<} z5h3]qs.wPaBz?c>Z/^ys -pj KTY-\vE ZMeyOH9Tל!ONf苛E ϋny8630ǣ9AHտ0"yqz5yUĬr MvUQ~Ҋ>O*~cW1B. !zl&Ju=cQ%n|%D>?xT^N„kz!=Z"3OZ̗MvW{iO&[jdK0YAig b┆݊r a+PpY)S䥂lQR1ه}.60|.2`J+rM_1mB]YnX G/E_}$$~-L)|B/5e%o>OуpkƜ߇PA\otƙRBs-J]Sr9 ;tġ{)RUŏ1}9aķ%/K l^nr_j :wFʩD?}ml4=F@Vԃ5*'8puaUF1n &oo K!PqgVf'l-1_TO-2wR"L\>M%x4Zv3n̺i F3]\$fnH3S'.q[q]uBx^Gei_'vgW.?0].y``^j*7kFFѴ'Ag7#7$Ts۬8v 8;q=K:k|Iހ.%inCéeJp$ɻv]/w臢չJ; D73[JcƺrLRy]9խ=wvekYw3H~e+"FE/wloDC.[?/>-v;\Xfa4Opct}Y 8_$s釅e+{Wzxxc2nYDZt5̆7II-܅DlR"]tyMDJ? \M{iFvu}ju@n jCֻ{IDᠾ?OϪbw(keN;áUH\wlN:o?hHVL ^5 8],oV2@WS9Wi!_ӧ'*j!{ (Q2S㻋x6I.$rX$?Zﰨ%FA")kة\?${'G!,1,l\(ˀU#[lフ ~XFeI蚲)8+JrJ葼`2Z .~8SBJ-p~y\m6Opf0›D .!T;ZI'ڴ>W7*\JG$@3^a$YŚwK0[hoE]pr$-!4Yʕڬ0lQ<P;lϨi|\+OԽRIWq#kSϱP>@σlap?3 >,Yq9-횘KЫnb~H GJZ2}` Cӳӯ*?b/I4ZC8&-"h$~.EܮtgmKռ:fF8H”6Vi o޼;fɲX۪CW!(KXYx{rW(M@BwGL=9Op^Xu  wq:eu~EEa€|t-P)HtX= &jJTǺ0w3 zGRx!>g%_k:DfCyA%CRI la cK} nh!9ڝ›]5>6ŷ]6=!H ŶE_=HϺuCj8Um%] >9MA?J~%ƺF2 i(.Eܙ o+DM4.v1Rv32q/wVV }z!qπH7Nйk|#0:6\ g7V7v\~C"3:We\AfvEӲ~.3-d8XʸݪIZub_򊸿7 \ [JL E'B',\)hϊ#%&"y8:k:R-ZU\5^( @dAV¦z-ȫUvO %ʷaw3ck֯ Q=3r"=VKg.73̿.ΧBhJIYȢN9k9d@ z0*c[XqojvX<:nQOqbS/O  E~ԬjAD:"IӲEݮ` &q_NkFӭ]O5Ś,& dSdM'g{.Is—~+Ba_@a8X̌(bM,/MUm(?rsvtjEI"G(9 `NIV80- <%O Sf&V M6txfEC<v֦͊ZŴO>fP`p#=&#?T3W9{h. q!A$N^)+Yb}+9 ߤUxHɪ* ?jwlbܫ:CC.J9Wn0N1Ts/:+G">I >I{FG*_zcĦiepq" (v A.O )sǺA {Ge3vMcD-Uљ@fˇbeYh>2㲑 6GT#z4@)7'k]1CȔ"(DlF$H=>N"r\ ū|0H|9E³!gfU͌x~m%9Z#c픽 E*gDM%ip; X1ħurzCF*H#sàGߘ]٤HJ |J4`I>7Y`q-Hq$Xф>[!@/B &L$h)]E2RPTR*RY° j:WL_jFa[4nk\'h:] NGT!8üpx jYbE|d/yP0@@RǗwxU”c&N`,C1Ufd}Zy,0M̿џ.f̍j,<7!}=:& AjVRR%,Jmm(_ `DJy׽P#eM j]ƌej2WSN9cJEynٻxw>#O djeV%K"/s-et1lĹG\oۓx-R<9FF _جcK RV؟:.WGlKJ|c*[}ε&T5* zH\QViSgK=7m/mXKdp^@C"xn?,Zڏ(B !B[_9f74xCmu@`-S-II]Y-Z q~|¾31'Yi|/XOXtgt$,V*͒ݝ+Oye1P}˘ %KmRB:xmy\8'E+ kZ J5tC1Nm:ؽ/.췈?BSpcJLJ re8bhH gaDNr/ysۺlmj S'Grf _/1RY7JV5h ˿."eEȌmJJFS' Vh~YT`X Evɀ9yn 1.GD9s+>p !9v/u6pR)'LӴm%S mхXXܷJKq:bɭwdEl0@j<)jZC95|!OЧulK'=G 6P_ 4)e"/&Dj~zڣб# HثnDxCĞ7yxU3 ~*{s,훊>PSkGptN2#hS-~ 2 vw]b>Gʣ ӱ@wi*6Gv;;"yd4Fu~: I/6I6{Tq p#W+nk^Ѵ-82R=`x߂sko@0>O\ؤqRiW^R)637U㩜5}y1z=e5+*4I%zӐ{&=Erx=]T2>eoHEKiiJ' ib=鹨6rL_''c+[ÿMMᴒ T*"KPY].[g fp$ʹx8jl5O%OVE|ڭ}J[yȀy_#g?w0 `@[ެѐ9)P8 5X}m{kNX"8 (H_SÇ @3{j1Z'B-Q- ckKAoԣ$CϷ9Y`hAQwԘNIʀ}CA^\'{y\>x[$um/7 x凥BSPd)`o#D$6=dSݳ!a\+1]:6-0ej\K2sO'A-grfNA{b:+VQe+7ICZʙ#_O#lTҒT*  y[,[>7–1RgL OO9!m`R˩Ew~} j9$~Ъm'Oa<*b)Lih[j?؜W]-d7Zl`55{j{s$(c(ǑX95#8'hY6>Vwtl~H[6vMġ@}^ǃQignyFZ.W0| (gf +@1EHѵ9˵0/Ov̬Y>bёԨڰ'^s#c*3] 3_ˑ}>Wc K[|0]0Y+ߪG#AJ\_hJG `H86`Aقrw07Kiзˡ'hC1u3z+o%s{}c\Guvz 9X \`G,2j!x Q-,G].})srד5+L!09oࢤ3"/j"uy5B5t<{wUϼЌnX^YL;!?s1͛ x EYJlCghr*zB쎎g!| OK3Йq ƒFXG=XY":{%!7=Ze*ei#)yLRQϯ-CPOx_P"=PN+E*yRUڳ<6۝c g/xK[ vB]8k ztT:,(dƾ nSQ/i$zEͩІ5 `v/m/jyK|/4vǓJ6H8Y@.U9-OYՕn3=6G(M|.EQ+ESˇ]7ֳ pA0b, dO-/*_ؗ dvb%*!.R@~h&κi>z}v_هo'ܪ"@6#glAdU%7W/W)Pw`bj.i1q>j^B!S4ʯX%Mi=}d{yE5P." AFf(i%(u $R::S +3x!lGv~Ҙvv]Õ^Dq?|Vx>ݍxv>Q9MHZw-Fw#[=/|ωYN" wz#Hct3l1 =4}\ij;R=Iu粚oC%a5|`j߾JkLo37,),b&(Ǐ"纺RHl;)/,vFc4OFm8FuA%#A3;nH!X֠f |6+" aӆ֩(k,ӛh9Ңp./1jډ;Ȧ E͐aGA"߼oT᳼c`ϗL2:tpCn|/,C~l]6S Y{ Hˢ@nS=A=K^i "f'S͒U69}]k\Av# 0pyNO9 ]LIw0fj0KT~S@`U 4 }v<_Y?.??fǙd%͐0W4q4J, 9QB\M2D&;y=e>9ڄ3 iW@aΣwY5d<+0s*vIr.0`Zm=vm 6DKKܸQ6]AJWnt~,|ԧNܔsN.zm^FA9؊tO Vw?^s88!G =]&@Bf=CڒiEUjn6 qTB) GV޻}?vߌʮtc >~0a9W) Oɟ""N%T|3$XJnU߬Hʘ@wE1 (e%GgUGFЬ HވO }.u"hH(fm3|h ѕG?O0D31kJfW &/7-+1j6>vNPz3rm0}iteMmy|)eBIH4I!0^_39:؉OG5bREE3HE4%V-%vlܝx@! EaVU8ߜJc8ײ!eNy*>u.)-Ok?{ۥ;zthkn%ObɊ+]66LJ :ؕ PE6;]!2Ч8 @W@Ya#8 he{R,f-iv&]kwldgJg*B@m87;~/hG.><Xe|g\I(x_f{qT. ɉG> $" ySc8)R3Wr2k` u[A)4{lͧeg`@8Ɗzz䷜j)^Й{'x0$u@FѡTt}k`0EN$”n[f[WG7WhBS{F'qo[?LA֓_2?LP8 SQ2~>ѹ=2gShsӻa*ZōZ,':2מ:++ux'*w qOQWݚ7$ )FelNk-S uT_jXg @_PqKҩX ډs:&hhq,̼glPEtFlo<`vBp-D]69~8jIu& hQhz6KK* ]zɋ5U-W ojlaû+{rTE:pXB9zts$gU >F2 (tٮ̵ɀk)! п? riQ5n ޽WhK[qo[ 3z9@u."`!dw nChCt4WFWyLp.`h!77fhG ¯ؤ[ym0PĠWjˤ =(5 X`C9D!ICY|AzBXcv +[ȁo>/EW8 :}O1 n،8B飸Nx?sF=S<|TrqW8S;R0=!]S)wn2f%((_זŽiN_X!le6 &+ QeB 8ʣZ##?a揇2z2| UT}) 7a97h5_2]80x@WLqbꨴţM\3Ճ%e@)k `s f@`8%Q\3)F"ؓA(A]Kx-7hWUe=C2x=KoQ/'Gʲp(4,bw,_KM^qFB 967N<:6JoֆaAaQbJ|3i&Y5(HБgOkJʿCqo4~G Wij4l+jhQ)$8isW r@iO(xy+^|kV7Ah=XSq0PA1s^U-4!*NPd'F2=>JVW rq04LHD8E9KԥҼdק]/zX2*LL趀JUC,ee:TR q^i}z'0\mGe}<* g?vP& !'eTl,~A$r CAAYw : @(^HOލRΕN˿4ԉҶ6I;%ӯb!ȶ[Ai)uӏ^!1((:*=i0>8<6Jk j9خD JK[>A?jZ3A(Nhg|ŜU٫5$OOIW}RX8v|~+$k?WⳀō}p$ߠ`WI„dڨ =<rwH"X(? t?58 D~c=."8[ݨ~OzaN|[ ZI|q2VBp1 zz _7)o<릞+3#Nu42+=`bhX~].* uU&Cj:PQbtݜ ¯6f ٴD>qȨ\zRzQkg C7g܊\  @wB"ptgx$E,,czr nz%WfXw8Q_ =M%CxRT˖T^i?IXk6F~ub!28i& 1Gq2ysEΝ7$@$ɯnt"yV\=9(O֫a1𢋀6Q@]SòQ5%/w~E{fC)J&e4UB1y$ SfPd]>m/ O>e Y6 _ ׮.w(d6%xP˻j*cphEl cQz&4wRg%ތ(eٸ2ր &UC洺d| ‰"Ȧ٥*0-_<2 : z8@ᅟs?yK[&ڸ"-Zja| H\h{p,2qe,QZy[|]eBƫ 0#Jx?}]o2Jo&x‰vS%@jR^Bg!أ)!F@6kpSo$7t7 tCQC\`7 :qp ˈ9\vVx&4:wh\D}ñ>8+ZΧ8[Tml0x.zVR9e}G w/C&G=@8GvK2/0ڳœ""$ ԝ4:%)9U%&7υP\#XߎAࣅektI4fCXVyN{z` xܖBwj3ڔ1$L,!xXC!D=ޡKٝM'u 'ǏΒ?u ȌHܲ ]>E7'yK ʔ V)">m(;%3u6Eԁ-+~7k߅r>' lNu/ ɳ7Fӵg+u!R}rNcV5 :ˣ&͋"+GIfi0YVϓ.CY:D.Ŋ" t-}-I*ңAԩFԣ |I*1ʈbQ }5WjR2`eƵrk|/3Fw=Pl{Q*/k,QX#0@M,@-{z$6RWуm7/H߮v|p^BXÐfp%-D{c{w) 57/]s M]o}+;߱,ULKn%@^jG7r+_Y-qN^-HF׏Qֳq1jk+g2: vC_Ş1[4S[}f9AGO~K0챕>355F:VTa):Qx(~Luruhb7CM RcU'pH+DϠk=ȓgҬ#)$`>D'2~( ~@K"_΃cAxm=IKNzd}* NP`4ewɍ$3tŤ;H;t(J6;oҋ$X쑜{f"Iju"B%SjebM7OauXNgaZMa !o+_ 2(t֙=%%Tߎ@qTfc @{гb3i9^}BZA8DVs_w3ʞ.VPD/XoH%^@8X+?m,7\wE;? ՗wGn!UKouo\ F;&[ߍ=gY,%HL#!?-O``jsNW΄ V,F+|Fƨ+өnALr7{+c.$:=   uFtY?l!v=z$Rjy+.y%?$xJ=X,Eީؽ?ȁ pgu)ES@CZ)4G>UFv*tYڼbOïq#$1*}f)23+?nq[t"cC>`3uIjx]<#4؍HwD&LISӓ{{.HE n(%^d='=5.J*c-ĩE\cbiN%PJ!w 4O*Fw9F(ҙ@#_ fMj{`ˠ9eXtf=%ӾRTh Pge2`7VMܶ h8?(?F|˸,ALj793S.R$4%;ZM,Sw+_fspv c驨yعqU_=Mo1%w;jЫAP;v4?'UBA;J*0·]^q;81UҖG@]02Uq+i#ߋ³4RWBd՞{,>]vYnmM{BR;ɱvtKVGRӿ'M~j6ZiۜH P_OyNJ(Q *CaC  < %UhOIIҥV iY^nw P@ ӎ%-Y;ǜdW [WhY{h%Z>rsse6gg`h `}7"%P}^[5\OeHݨ8`._3}?`MS`$CeF.5wH =lvAaΗ υEsІ̀=wK{.Cs|RVlaRCr\-fٻ I\J \<,pvуx/f ~+-n1x xId ~IAf|YsvUYz6H|t8H$:Tz?HYuZe8k.ׄP I} ɺ`^5%$,n>8 ^Oho ?[*I#X罙1ntD@P}Fï̦ ¿]>aB~pC&鿍Uq-i|0~H6®X}*ˬ)T20N1GN wAG~ڡ&U*$<(]nEViS^WZ`+h$hD Gw<_=^^RWp|ZF" -*Z0<6?M.)MC\S kͅ ^]bLyB@!nEI!qX_ ?&駏nZXܝM`;cx9dlz+T"I_Do[Z_b/]ufP嚙vĜ6\@m P BrCh=T"#wc k#пt(4ϖض0=ђfҹ_XZu{!{dꞛ8Zt'HОIO».Ƽ×]*N.UZni9d=1~N89J 6e9mq̙FMcnl/ /YNoZrʫEdV7-F =@˄R5 @MoObB,V[ h.:s |0Y Яq h``^A6xZBh/D`E󑟨x~ޡ Hn멡%A@J};x3Ρ]}.H0ò)b0 CUIL탩Xm,Te_cy[>2\Gb0$va Еv+5si,EIm3f͆y.ƒ׏f ,\mvGGgC H)86ꑱJZfW*!ˢ}1ΊdA1[ns3aBiDVG [I-:,@K {NS[_8^ Պ8(! &[ȕ(4d&p+ ٯW!P oBK1[XKZ?ũMԆ\{Dên{"{=8c t0eQ+4D]u2 !MDgro3wkylh>p󬜛+̂ xc! bIcOCBֆoZ\!1Ļ޸[wN /j>.۲!3֬ es^7V A4K3-S$yrdde7l^Da6 ]97UUB03uD|֛ PdgF}Y{lI NR_86 42z{=2Wѕc8] hviцŕX ,. `eo?Ϧ`}:M|!A|ܦwsptvGlBUOяc;,8*5T?}݈xOC/7v+}#\Ge3%#pT2J`0kv!Hi>xE[>)z59 pҖҳP+Dݻs/=e=Sw C!'&eze]ii;dmyň7S78˄&G"'a>&3>舅7, [-x }*ӣ`$+}AH x<)lWBvT(Z\{z-NpB(5I0< P dl6986&*nƏ( R{K% 6ڊ%MƎWcRsx<~,vC"Pu,m(-m b2T }Ss8ȣTÙ}ֲhg!KƒzCJ듌윪6,}0 !~b4v;m %}B;/< t劮ke0(DO\01ǭC4 m.n==h*|']ܸ.ZK'aNRٛ#:;"ch0LQq,C8pkMGqR+O~A'a}|N">u @29i)&]=2G 6Cͅ[g͢Qu!5u{#͊f9`$l& xh.d CJc8I0vͻ|DzK%.#)T \nanMYv'eќ9w tg-?ê=(+,LyB 1&'#xkiɈLG(/ETYgr`B᳐/]8,D}^0B&/q}:3mǽh2B[BkroP k(Q>lcNdЬz{덮f5=QݘmNsOVWEF y#ByG'a2'G8w\ǽ%L@sr嵞 KVY#ٜ.5L fСl$9m9nT K6x aWRߏ,`EDW:Rq{hWkÌvMmYŗF?^\όh ݔ(IlN-D.t m#^?8ٵ` X$UkafznݛXR zLL(Sj;۽ay8Q W~,nپgRĻVQ+$ (?HOܩǙt4;I8_ co2hаW6hjcE<F*fY%u CÍ)5\XSrtbI ʯ>)fǫp Qn2jt$dSSI/Z1rTZVOaeRIw/f:h=iu ~r=:s/,F2LU' :XA$4*?4+#h[׎7fH](z.u\3=$~CYzɷe+JWZPD`keW}K-' ,|_8NM띦N4|n`o١봏Bt_,'DCẇpJKnbs 䁴ZɍLB/4+,7@sQ}4"ɦXWÕt # E7bsΪ&j͹T$Cn p[P ,p[v[8聆u(޴$pR8(!X͕2<~E^ s8K!}c=|xK ˑTw9 0'Y]H4#:^V_a4)J^zFZ.F6ś\ lK.x$;%og[3<_R|?/=]7]I .VCh (]|+@?VuejЇ^nHN+O&ifhM0_JE;P}/I4ZUb3{;n%ʚw9pr_lkuw=nȆt[+d#kCibgȨٯ[4 9O +1 ϽdΐN3y8 HC~Bv{}PϋwІ5oƶg^J*kbY-4|PWYetV `ʧ}\;&2 UCc8WƳT1y4TTA/դ:^r#:Ks-Oð`:mN/VM^ޤ33rdq9C8?$:VҳoZiVOPX#0^&v V:u6\U۠mWʡWuĄU"f93C]ԢnJV'c 9QYJq߶Qh^nsxYSН 㵐!B|W/B߶Π"}3,5Ym(ו)tL?~hr-L/ب^O?xo(d,ٜSSc;24ʲkP!CQ DW_ KmJ1:NɵoUdyIL0[UzNFȒ vOaM9+\=ezOKS7竓sƞ1'Z߰iMS b(7Z<D:3=m-P.k7< sz-Ĉo2y hRAȯ(7hEۭaT'@D $ <ڮi/w3, _HyRV a0VsL:0Ë^LFW\T<2hBv_:̊T\z 6gڳt6M)_Qy2ku2y:1lIs߶Ϋ\b~֙`Vm&W61%T-»ޛQW7櫔iCܱp{ipflFM(KK + tER`}sY/Kq ϸ#?@cjG9v rH.VErnL (M8;/9wD \A8YTg6pv)EWu| μz}s6:;;[u\-q(]ܒv3Ʈ/wM(2CCzWN5爿[IkW`[& n'@),| C~|s\I䍪!Rvg{yJrv/sLp,적WJN>.vጚQz ņ7&I=S|9,Hjo_ڹ@X;Wimo(iT>TǷܯ6S9.`jͿoԩh1g}M⊕r9Ϛ(qQx0 |SEalvױ["dZ[$Xm8}R"ZgR$ɋlZ€`N}Eh|ϰ$qE?\`b@ޕSPe5DŽ'^~?z#*! vk $ntg!qU(/dN2[>W8K0{X[J݁3gGy#G0G1lhG`Sx6.o9 ]<$k '.pAfM?[y#M RgimQiװGc'ќV pw{?c NeYD@C\05--Z^k5&$ ; nصW5>+!pBFތ[B"q$) O^lX_nYe)ÿW>֘e-[*agLR&(ޒ. AP?65 _պa2X#ȝܸeQZr*z;\h^A>HvDž}O Tb5Ε#I3vU:u2%-q?Bߞn7M#Ax7+XwؑAnr %a߆0,pS4qgae/?#z@v!+wF͈} L˟/2S!N%mRr= .ˬ͡dh3hѿTKPRԲd48DL]|V +aP, !)g#9s]و rPIGVf!JQطba1p)YoEIKUC-Q%B.'w*ϞG4ӷk) Pts+lX& ܣn"3צxKPjO cx7?Ɠ+M'q\`gֳf\i.9WZIڣοCKiY0= D;ؑ}Rgyh.=FoelI)>w%[X>=pϪqI7W5Hx{'W>]._?}n,W>9LdgniZ )Xm6ZS9|Gt?TJK|_3k DDS嫃ӌ0efBUӬԫ1ws H,ģ6ƈg>HrI+(`^vīP`<#.ȫkZ8Lj5_v/ODǣ@khs Q= zVڀ0#QC'GFBX#;]XVQS$#gtSB9G&>燼oHǏ}.s=٧e>SU.V O3 3cmrU6Fd-p byvaaP+s.fAzehQ]3YfSIoEk)e +ectW}a!>XG`(,y A]y-`} mkc'dCMK⍍+KKVz"Ŋ1pna&KWj+lƉ ڧۀ^jlzQD]듵hHҋL \U=S{TaoTQH¼WykQ~*[bVTzR MK]Ժ*@}q1OL|`<ʊ`H5͕W~]뚿LЄiOj`ҫj~Z>nUU4lHq, m$mĈI @bp^r6iqX}W2+3Į"mͬmdt'/+h}/GR] cVBҴĶrIŒ𢦑=S[J!/TdSsJqm olԊ?EX>1kؗH,7ZwjVXn6\Mʘf d*ٱsԞ5)TTӬI_ 5.`l?1 A!r+t2C3 ΂I|x t^~g,GAl>Sp蚭t[e7Bab_P)Iߖ:.4d @`x+ }ULDzKlꜚah#ث)p/iт㈵BH4:3PưmF|W63,,Xz%#rUG/J=+(4Nc, g]5'h=#*^u܈Fk<vAOΈ*iӻOnS,*"b]o4"M;O.5PΈBuXfD-w`SQ#N|ut]dZ6~2RKTtjqw#s9ǖyYvH:~X MA΢VYͷӅ",n@Ȩ_)tpCpdf_6OsERYo-Z곽;"<*sz+I"|>lӕxv)@ 0 &3N6# 4i:0* ]ɘ=Yf|PJv؋2$!!0YȾ׼LN\>M!W&h O?AZk`7tp{eo+C|<\BJ1=7f]aư,oF *|MtguT %U0pD&2I',zWyIW&yo 4+8(#VR &7{DGYgwxdU~ %%[v}Kw҇ 1ar/{Cupn^0ฉ ){59o6s?hPFNZk r3s.;6ΘRי%;3Φ禊M`cA7yA]+ .`ܓ*1YkpM(6E2O/ߓy+Dփ#&ta,87ı ?UcQR& NQ%Ғ_-btݪSPBЈ>{*l/ή;Nvu tqxֽ6=&S2U,յ/)zjA@!5cL=mB}jQ2(r͗? m^HhcWϣV9 oe S9`kyO03*-̀" q)Y^* K,H9#cprMځ;vCɈ=qYQW/c΂^rE:&#]D:G1F!ҠЙyˢd%(a"PŵM;I&vj4"Axyktқ~ 蕢xFG˰Ɗ9Cb89g@:8KWt£r9%rBzdc"n}F/ʸ5pG.c9x. )y X {-0F|^EO7O,04Yx||g,ZmkRɧb #:/J)d:"]/YK~g{M"t? }}a <RVYL5 :3er nzrTG7N}J|xh Q$&,-+?'_J7jIutv= a: JܟE\>Oaxl<\ug:H 9}\IEhfi #ys.i7Fڢ۝%%G:6Y;Q*)Usdz۲~:Dg/W$Lw7sȊW{V`5V_im =߄5{ӄGiaz~L"E m–0Xs'QSZ>J![ .\,8GnԒe'~/aL(vŕU7 >::=gt/{!P1MIPfI5E* :] CT,@骯ab{)_d77paiv ;u`B/cSurݯXD`ןxѕIWZ[b*QrS4z-O\Y.O[]xndZШA5C0B~v@9\R1J2f،L=hУKV}v3#cpәo#+W`:[(XGH-]NcMZ;1,R*MYV9[Dv6{Y8H~d.K0 7X* DPD,4@+!"^nHdo;`w{Yu+[%Vn5ec{^;>%8Zc妇ޒ0ԛP4w/Dm"+;(%1s[hRtj b ;0E3Rש~%OtB!3#v㈹9K?nZiχ*u_VXn MNsFDu.; quʊ di'9%c\h`Ms'MחV'Nki.!Sie e0'^ԓqT fh'RX ):%I ;rF!u͚d[̰Pч6+ $*"pZ07ͳyRlR}t}me%TK5&`h>cE?~a=}U)őm y]-zylq+ g,TpJ1]Ϻ/O6no @I7yU'6`²SY *1OK[8([.] OmkǠ\K:It N6ޭ^Ԥ%h4o#Hhaddբz|B\o#҇\6:A~!1:V6iuU5x`bF &s'ˬ^/>RpOƷa6|TP@yhK1@ oϥ,&Q88 ֐,82AVU]Zf7Ρ社%}qkwrGvOPKx^^u(.zjF4,i+=2gjIBzZ==OHCtJ'D.R&0m>.,%pӑ'^t=6A0B&!DDozBrjU  `.p@6T2#5nȤz9UPhlCܳZ VC@Abkzp3*g`%oyA)@kT@<9{Xطԑ1dԣ\έ@˷|%F+ ExmvYcBxOLAp^O9Y$t8q~Ege@6Θc;q;ћ `if%MT|{ n.!$g!fCڎF\L.B@z0$Tw=_Ĝ߿ *wtW薥6w8ހZd,a0:śa\ijΒO )Mߊn90HvM{5Ӂ "#q άqV" cSG6D` *C} Ac(w?In K6aKMs/n^2i mf8^ d, h.=; $|],8R :PJ;Zمm\\A}%Z Hڪ2'-tq4O7Ĵ7\(޵j-S> $YuT)e` ; '!I%umH2/6o\m%`Q0O\[ag&|:yusZ,6I$WM-ٮQl Wp9U4͝jXlzFЕXSu)9EIך~N}mW덌״ЇTD{ pf_+5&G!jWզNK92oƆ朗I;;>}eS\1aP/\/]z1G(Omv.eŚN2fg>ľT3jɴe䒠M:67k'MV_/2`Eխ!sۡ ٚ,ȨK Sb6S|<N^Ev,t+JIO$sΟ2Rؙ"iL138 p'g|G3!zY>wge2.H. gz":URKW󬸻VߺvHBzϧ?~9WĥpWkY1t\pfgX0.M]h@״WiW-3yP_v~e@k$wtl68"iu|{U:!r5qa'ZxPmy ҥao+,g't֙@-Ea9#{a7gVD&`/\jG /fdqjQum|ԇ[SԤ\9_3[v^_ 8v!q` dT̺=q,B`n{Mkݲ q,U&ԭ*Z'H #_Ba( ݎB saosxk+N^J 2?|i;t?Xٜ SRe2-CW"}r{]> /mНRar `^X(ݲaEC]PVx}{ ~$9|>|UOT1;*{<V/JZ1qOBܦG ?{6D2⺰&6Cwml{ADwn}4rˇ }`꿔.aX/٨ag5'=ngiύ< U[bf%H)BwF9S9GskAi]PSDqThxLk gד8E>ma@_'+RYݏfy쎑EtKr"M)疐_6d^JNV:Q$OB@+Ũ)t}Shk]Tj@ϡ<}j0 ]ܣtmBQyF U_^=quDPkEh+VSkS/ui۸7DE"j=H,P T3<%WzA + 1(o6rOd4O/gtoCTg4(KwqN[-XIu//7sj|8)pi.T/D*˶A;I8oֱ";֏xzp-w V9_0E.:+54] HqKS-pve%~{_jof1ܬPK7{zB-ʪi` r[t^h"@wg)u`Y~pѲYCy`S:\ކ[%;Cv@u-($y'*|~ZN͒OH;%9XA>"xi 1sϹwh@Qj|hc:,r,͑BHaޥ#~̀# sbsbeT25hj>ӷෂ2!ɮ^ SR*9CipNY[Q`{i7wԄHŰ}!xeq_z}wq,D$QߎoJ1 K P egC&mfTEJ9Ǡv#Ͱ=XB6R cS;攳M7/``WNX_GN&;,="x&+(rގ+K_P'yP*POvU@K━xLu 0&T;D)-%BfB9x" *c)7`FF1{p*5;Uk.|TE|+sķbjzo?-xɹ$̾Uk`b4Bn$u iqj1"F7 b 0Y PXar6q~\8=JNBo%1 h ȾW?Y\BdG᩠$F&$/?JgZ(>ܮ0p 9RIУvN੔n9HEܛ(9ŠcDʲ\KU5z_r3RPUo.`gT .t*w  0q&f@v;lP:=٧>WsX+#ݕv]}U+}[Kz$/&o(K˽aȜa.l$%*+U߅rKCN.Fm/;}:i?Kdu!YהX}(% 3c7x;ci #tF"+ gg4cը)7~oi;n"N7[AmEҲ>p!t3 dM?(HA*fEWtZ T%5\5D)0UJž.uL^‹*٘X\LJP0Ei8#ՊڑOmXSYmnkfNDNŐіԺozퟘeSENv/9,VNC0M0/m](Ś{o0_7mt\JS)߳/ThB^`-ycq/v1wE*b$vĬR[*d)ؚLhWj-D^T{Â8Xz\E `d^S“\iapif8L> o!N'hpˆ}3G bUQo"yK/+#ƢQ,4Y^C,b$cq%h;uCR  oY zJfzm6z܍Jd֫Rzm4%A='ᡌ^0~ϦäX[ 3{p^lQZ ]NLJwPzΨO$Lu\~ 9&4gN%(t&TzjO'[ҽ%LoH XhDSKp`o<]4E{‘rX0.X! ,LcGWKҬC{p sFV,JvO^u(x1"e58BQݖ5 $ zW&LyԬhD1"} ӣ+bQEU( =f@gwq%&=Uxr#P+C3Ҩ~ ȃ{{{L]MB$=VPkߕ[䂸t*61^ Ƹz'HLCpY%m\ oX!}@i-\/MKpʁkԕ1aOӱ-IˏeC] aC:ZJc+c1w)ڪ UuIHtpD  vuT գ\fDo R=SYɊ8v =S tvXXehsXTM =ĥ=SkZ -w֛Zߥt F&44 y&̉{?ɡ>)b2$cAə>5p?g"Oc  A{_k=vYϾ'=gSregFv:oz'Lr#@b ͫ4$-=c{!v.+4"MHFd70l&cK#r}|8n3HPCŮ t>H[-f+AݬNaVio6~`509òaX%A"\,z2=kQl< sٛPS:@dReſI 蹟쑥}֛{ל6-m .C[ |ٍ~6Tlk 8eجkӱ^:M#S6 aM#d2KEaF/p%܍(<CPRCBV̍]ۈo e`?E2ԝ6P'ϝ̽[T.@ W0NU*Yk?Ȯȭ;*+ ru<͎ȪɑNSٕ&EP:R8 A/(Ʈ!ds.)k;*Ẃ;(ǧE=oqaKOF^}u= *3Ci4Op"N\@obADŽ[VYd7\&m$^@z^J"$:E61jP/FsOfjH&<#$9< 10^>qZe {\\gJ,GAEa R3 "f|zό)9U&ڨ 0~*ojIkD"MIx30my/u]cv VF4<AI8 Ŭ(vu/ʏ /-p9ldM8"hQ7ofuLZń-"a>I_1C;{E U"VV?|"h sK殝i8y٠uU_/k1' \57kH{Z 0:\C(eUB7ˈo66HJMa?5F Ƶu9+G!"is?j&NIol VlBI6`ߵ,m[Ǫ:zz# 33 |f J ,nrQN[aE4 i#>1y CxƖJp2߷w@_%͘t:(/#[@1l8|^IeSLԴ9SDb>,t/BtCssJ̽7=Se{y]71dWLN'\:IY2L^GÕ`u~s_C[Mnt,KzcB_O?eFo򃕐T)H\P_P8yQ-P$l⤭LF: &aX5>ig ©: 6!Q-o7WA';}LH2e 4(Zڱ8eRpim'MjѶ%qd6`էULMa,{2`NȅZBD μymg4AY+MKȤȌ p5G}@f P\b!S̢\UјxDZ9gȑ̴Q<:;4 =]Pbf eݙR,*ع/h N~)}RU%pOCQ~4086TFOR8m4?`F~^(uufR*ϙ{X_Y#M*v1o xg6GAेo-h⡛rRZ ż B 丣 Xt{Z1ufAjgf}n> xQtk4cfi;ha_ O?d3&8}) ԈI9cl"n5 ٤ni1Rd(&Ɓ+lh'gG| a0w+\O̒d *ZЩ&{FS~cc Gp |3:Wzksn{dK$Tb;@W=ӔD<M3 d c~b.@ʖ'!}F_U&g6/P-#G,XyS{)VLCWp.6^#Ɗ0'`ƪ*ZlC^\[gGzq0ǁIL'v#&~A]Oet[|rG|ԗz"P5U08hwj)$$&zhPk΂v&n02LM(j(;a]VsY /ǫ0wwWwſc*Ah^ZxSb/JsM i\#+|Eյԋ)$߾zvDcL@{Fʉr*AҴHb{x$mGw؟1(_c*(׾9cPDr+39.ڥf,w˺ίXjACZN>UW 'HxRռ eZ[n^ \5Fr. ,mFl]zU!$r~4% k$e5GٹX́n_Ьp}K'fY_a_8tX^O aeV )RȸZ vr 4g/}C#4 8a%sLZEx5)6)ːE1ڜ WU|0ob$, MB!48f $AF!pfQWzFnimz\n1XUU5(CfJI xKJ``pbDF9w5uuظcg|xQEhuwouWcVB!‚ @f+w=<{y(&Nޭu>&\&+QzB ʆڠDP+ĩ[,MV=7piՊuCe@=]?bU/ 'S:ˉOڄ/VTBTnWB"Т031R:S.F12[kXN,az=ν}'v ̦y$rXEp;xz O^7 "!cPE%$AI LI=@-'7 lt5BUжh',AhU\=Ϝz"k 0-rL@>'=!ڂS5>.6ӚpqptVs\.$z3/" (/4sUA-UER~l;^H+D6揰-r&]Ka@r.e>!TK J)K [!ZYF^LgޠkȱȼGC-ҙC"hFtz[k?y5*MZe\L; $[w~M3 }[`%IƯL%ϼؑkGJMl MHVJkwT1D -j5Yʔᧆ ^ܚÅx5DEܥzxQ@)v@WPç.G<fG@SfX !-kZ/qgzEEaGoP_{M C[w)j0~E\iE߹^u $_਱^xZ/3vbOBﭓxs;  Y~҈Wh`AH{(l-6[͇ 4{?fb2(8{MB({U'1v^^׉mc@g@ޠvs$QNN~%=mZk๭;lX1*{x_+}{| bD.˿5tuX{r!tDV 8ͧ'Qʝ $.i<1jx+>r%m _@.:_,RZI5͊θTb#)H`9pkyG. q-2 Q-9J}ϐp'cMΦ0W-z047zAF`G2r4i̐uY$96\.avl6 '9i y^W#(({~P/ ջ^;ݍF 5Ls-&\-zr#A)~󣲒WDDEH˰C.ꡤ8@ ({Q/pH'hS7_wqG= ^|R-%PrZ=R\exGj0Vb3A2_L&7~wib oU9!7Юl Q%Iƥ\\eHs@’Ct(Ew)g'DZ _ F/LHg/Jrm1AL `竨 Nں&TkKDB--P zBoEt" Ֆ~O#FY/N{o3t`:]F`x3>c1c[3ᅷoܖɢ:;¼ZFp+ rxbCiŬI|iZ섡hֈ>&>~ݓ#sFRF9` nDxe91GQj +ۍWFb fUVz8)>tz>sM͗e }į.bgk/)`aݤ!+/t{Z ]]"sDcWFOV~9T@hO3ƍ33u>e<~g5*cGHv=!&/;|.˽8V, 9tHӂŘ0X}VϬV^S0jF9/IϠro]u6GD? K,s2{ۍN&I^]qB9Nz^\BdjȧNu.wXد^98"hPo`ŹW>s_nE gşՅ''ز ntmAGFYWu@(ފ kX%')D`Ɔ 摶yA9Inտby^Cc4I;8#6yN]zP,Bc%yd/xTP (OJdA%C\Aja=ψQB_U1WcvP8oUV-#J Lq:6gN.>}vJd4M:^*) .: "mU x/VU UF{wes,@P$pSF4 =h$$)~NoLEfdިzNwaf)_mUgd+K8VԄy oW֣ p؆quK1[Q܃mo#-Z`T %ȡ-O YR `WA.}SRx~_et .+ֆ?~mQt? *4?f؎ Rdy@*;ӵ$Q].}(nljDe;Xa3L||:T=E x2<%%v%p㥮^Uu_"S3Ф_j~C>Gx(~@pVzYN! ] 7ĿF_'45oJƌռ 8ҫB^ WeQ_:st(8ڤ:~Nعgڲn2_`YmpTv<Xn}?)SI+P~T.sqZsTR8"y+⦾ߎم`񉠕)6S|M_Z wĂl|&tSVZBςb'5rx)6Cr dXƦ/}oywXb-7e"Seӗ= `E3ލ!ʒ֛.',wUY_7Kb i`a,:i b|QNE*hc$"z! _>nɘH?H#*\E8~(H2i t/OWn_ b[s۫JDf/.pHaEO[ %|q6ڧ.ƑF7 K*7LԆI,gX rYѴWR IRi|Y_Q_PIƘI9^TYfh[UQPox3L6j}lNҴt": =Pw@N0 㜬)D*k:}$E |l 09 ˵4هd /#NcW75NS*% B!7B!iJC8\- @'Պ2gQ^H@ e]]+BŎC]Hba ّ8a6m9]鶜9^E,msK#*ԁs$̗c̳Mr_˿wك#x`LfD SD5j+~P~uڼ@Ԋ@R)"|xhR]]ǵ`ˤFQh/c9mk[=}&弑8I9*y)g3QeUo`ʊ)%5vy+@qֻ>_61}@0ļB+Bg'$]ʔ>4~Pgu=#ꈢ*eX ][~J൨H3喜=W;~oLSiX\ס3!`9K(mbvvG]2$@>$s:rt6]XF歀c.68|j[Bϔ% %7In }.ڡHTqopqPЗUaPC\tᇨCD<6g~ K@zFq1]=$װtp]7zS.iTޯYj|W74V c>lyǵ,Y:OJw营M  fl^S_hfkʘ5 [PMA6yƕ ݢ(ox @{AeBN|^)5W#d𽬗 tPnjeg!1FgPtf:g Ặ~ VíqQ7+`M6`Ex52z={[ D  _*Mֵb!}Œҷλ=nN~H))'癖-|bbk#LD/k(e[}g OR]q1 j);I'+@F^#ՁDp ?y7sv/0F7omADԬC|#y 6<ĉgEq]XQTERco[߽[&hPثD$ObH%]ޒZq~rΠ?LA9Hs-").{~-(*%5G42=͔h H.jG:ibsO5v(?rl AhG^Q>>U=Xԅgd#=cj-jUd !BѮ>m%`-]<:U ǀ)A1i(23yIL* >>m:! R=,B;&Ywac]Vx0bu#?Y隉G- 0VR#Hz±~qi@"-V-EG!41>[F_XP>aО;ll,޽.F^,o~J,wAnZWù35^DFE/&_X}d][ "ι\mas^.8HaoWrƧ!D4Ʈ,DW3v82qֶ&=bP $ 透lOe/?+m{=AhCHM@CF(W?!z0":TN1P\nި6GDē[]o4ީb|G{شnmu\N kqn4 L?L l3­ OPnCU{uj@ фt5{2T.O(pvެ\D6}zkǢ؉,M͜n{G<ž(KKd%Y6}#}bdisf{XקNfeTHWIcf0n8l*@e~WEeU՚B ImzFשKM%2C/pӏSwid =IlY{!SZLg+}|PoQPYrs3$ 55iUAh\BX0WJUbnh>i`pbg jz<6 v ~oFTn>N!  ^7,^[?nJ7t_P?J5W?T`OJwIph{G򭻴 2Sqb vIyT%8}|nqȱb2<1߸kl*8$++[S02w (Bb|vE9E?dʥa+JJhzSՕxGFL ZyNԃ&zw'؏ ܻPr3$2e[r{=Ue%/T Fikw5+]TtPN@]J.`8-ܻNB_Nޔx T> Ӯ}-R`:_jFj 'af!> PAXS*ߟC6qgP! ){=9{gzbofTlhǒ7e!\3='pl GGPsubTrum$ƳQ:pDVwEA4-肜#gW BeJ?7j3 m$d'P=o+] pOjڞ!p{xO>Xu 1T4&= ٟK}DXy ?6H"l,nt) nakfsVLxcXB?])׃˳he3vF~w>qؾ /؄zd^HٵCn2Hr2  RKG_ gb]**' ё'FCSe8%gb֞KN:DŽeILptk{ & X7~">pqi X*AaAR|ݛLcz3T?hJbOC)}?>u-$W_h2oD $P+M!KdfIn#WC"߂iNmluFMHT2P{ZJyP#E,YU-H:kլy 6)|H3G*dtq3jm|7+S ol+2Fy 6 35`h}z"\a4N&ݾa };RVZ.i[lXmZw2 Zga"Tj)%6@n@Ue.h HG>`uQu@/$o/`)6TVv5]mq^RȀ{ $7AdzZyjy y%^F x:_O wV8|ڏ7'|:I!yRj1/Y <{& (lDftic^/Zt72uG%^G}_8!g_R?߷vhXigpQٌ}l8\cD|8o"k %gVϽa؜Fqױi'?/#零|%w8>A0G&& h*;~V4.= ]D/m4& kݙ9;s g8/K}ddk Acvp!ϟo6UG1YrL wwmiAOі*N~I7|d.JŦ0FD)'EC+6մ_t=9KES| UlY_b<)@O#OXMwjekozB|>َbO~xP[@^ot-1kV_u0,t$,.`B=;hP5nFEG<aPSH-vo0Ob1g9n b` jJ'DAI:*C!NAQL tB pjW%&PT48 S+i.տƤ#2`FAC_?O{f(%$B_!j{ sl:-a:Vz#!m{Gԃ,;U*߲tl["@)-Y]ƽE$w~)+/ᮞ%渌V'{S8(:Er`kً{ɼךQ9#1h jVyD~m ̽0ޯKC>5y-:OJwUb]XC'['BƷJeoVL@ܫl }OJaWaR n9/ݏJjQz6h Y6Sfqj $[70`˸ 2 cx,^Α+W@w1-,\j Pʷ,#٨f~RzN7t8us ,#Zyk4IE;f~Z`_h0tMJ@љl ۭ!P)9mlC|E঵"K];2K71 /ώ#Ç ގJ$ ]*㻒מ=&;mzee>ty3!eE` ;8RfK916bﷂR0v d2קh]2jVavv1&Tet%=Į_('>vw/f*;'v+ e?bxo\t.OoFZQ`q#)$ȕe٥cWn~SAЋ;nr.aK3qlL3瞱ݬ) `USsQd" 1YU,VDssƷU>V;WU2+%ob_WP4vbkBo>KpX%sw`iDȍ&4% ߿NEw`TI_FUrw ÅڇHRTGcVTC|ێz./7MAzN_i$?dVeStcԡ_Xn6 z)Y"jyPh8nWlm\e[34̛{[7C8*~ SN|s!*$3C#NrpPXbAj݊|z =< q\%ʗ`DMLvLAEDäIڥ!Kb)|aD W=q& %Byœ@aL:khˡ.epv.ϝ5@"o*?%p"1EnekO[Vkɚ}"E|p*V0d+{3kݧSȸPAM B;x'wК@0 < <ZgYd ܆cY܊nV~N$y-Kմ|NcmN`>=0DH DM/``H6Q*D FAAcQ; +b%#rK2|ZRIχ X8!O %,f1P|W^Е*tgQD գ*w(vt-)Zcھ]l^۶VP 'GOMܷNo7N*XI@,GCxM2gUǁEM!@$xO'~NKg棱<]_k+$mSA}ӑ*0JPem8iV9$a"s xrIoxS'JYd+6!@TpH=&iއq;g(vavzөm SYµAy[w!"G~w$d೅XY=KG@]/ZWV;Q?`6SeWt?>6'3K?uPT`E`6X&ڕCl+oFⱇ$˵\B*[V.ȧ( t-ޠVuw+o  ihN.5Ky&(bA4SPjɝF(Ѯ (AeS榆~$D2ϣK"h'\} UTif~(ގ̼X*r@2W,4ό$f_)/&䖑*|P۰ *II@6Pr־jo6e{ذiusugCcdb!Y"#K;"si ND>:bп[_ 51)^zcDN]۱=(D7cXwrbE-p޼q[bMZ0b־$;a)R5:JEW'_Lޕ-I6n-ӟG ŰK #0 ҥyH:"#rOu1pJkeMX?m_r'-a 6Jr:LC:A0#}UAfhH(N#P4rVאjZ u=[w_Sq0%W)v@b&B=ы0VULAl%1r4886|cjwPԹmSD"6r5h4?y+L+lo Tj-+ H@YYmT^ G:B VDz_&i5!+{Ktuؚ'uର=txk*_.oT7|NbudwNg8aCyES]%&wa^eN~]֍#%@b(2:(;R"|GKY=$lnz]_ ͅxp eYYF?v? [*ȩ2J:$hp lЫLlB t\O9>X)k2*3g6J=mU'(D>^ =]ᳮkGC=at=́:;$TC>{N&EE8B!-k Rb) zY܋.IcOq~Wz*!"ʻռDӴ#k>ܣ=x#҃ٲ `[FsbqrN 0@Z#^C62($L1Fx).&mϽ\Dn&fj*X;)菠 AiS KZr$8ٮ CKiS:F%rρuWKq,)d(V>xt9*缻up(VIH@٢j(qWpKQ.e4'¿t Qa7˦^Ȧ=`rx CL=ޅ9ǶQhw(M.>Ij&')"/cu1W^؀]*?CIz$::X. LԑX]ss{&XsaLEBLw.i&'WlvcNF_Hds'@Y}]TG H*3\lG|0͋yΞ'nv8aK ԃ3|%LZAE~T{YVd[+kϭ'D#/lx=1ؾQΈ pIOrw LhM!VHHE9*ӛŘ OmdqhZ2[V$ v^+svZDb|+?u! GTw0 -tjȐ#j+-GZG'rTEB %Pzl yi!QT4UYKU8w^>"gANc[% NAR H,W Ulu9MUAO\qpc~%P8ʍhu(v5ioK0_IIrY/)3aj.r ȆsW.[6 ^8 VhrRR:"8(qi{ݒ~aI+=gԒ(d2r{As&XxuBnsHc{ ?Gl6tyQHx*撬AB ,:ˢp;{9a_74JFLY{{ku;zB3QaRs(qQ)&y¾k/G JR=VI;XϬM|y_ZR/*al E8%)r7> e+ 5,˕qIrcO(Qym*L46K>DXG4 lV=Wֈ R +(h;pޏ#I_2$DKvyqq2cةpTB;1%+ |S6Eتgd^~. SEŇBmt!&Km^RNnuՄ½~pޜ} 7V[976eᔨAw9ye. UdtTH׎8OڱR c6l;`~j|+괜LJO'ܻW礋l怀%*Q(=Msf>\lFwsU4Lϳm|:ނQ@¸wB7RhaP3/Vcq sI5O4 yC$ɕbjh^@N[˩6an63,Rhu A]Q>Z=#k|HRNƣ3BJ]rY$;#E|%FHǷ0 m q?}:5f'Hkg71u=ar&wp>K(mi+=mh yW7,oWʆ9/mMrn }D]u#DDžqd|w3sYr&xLÙz^|i#iNꞷm$c)Ve^^|chC@)QYď{dy.7^RV,OA9x^W8v,;h'ل`Za&F +r}FAp59(; |XX'~ͧ3L쓱RFz YYy"i}vߟ 0}w|"=`_k,vPrU3-ͣg0.RiR'i92#s Tg[dՍ 2;],I{oJc~TpB-y߇e"H., I>: h|З̝Й f!nz,(/2kߖ=z"bsjQT:9rԵQx$r0]qS |rU%0?VХ oȨhǴ=׎IGg?j*dps|;06wQ·3"@w}6_I31YK4PLhMOЍEggE*E`by0KνP@%\IجC֓&\іK.9c\#a z笸2o6WdC€0f~iBkg"~SiZ_¼bo=<(Z\db DTq U| a6Š)s:[۩ܴ^WhNy MY=golY^0xiMpNN)Ƈ0U11J}'I}2'KpcE 1Ѐ5-LB߾)9 6" M+zʝZP:&xɱ6*i6'm ޸=I:vߌ|nlxk5݋ĸL_K9x6"\lέ*-xdj)i]ϬrcE ҡdR ٔ7 9(^@&P $Hpģ (ʨKq?:4Û֩Gh#Z@/w'sx81.7BT!9B\]9"(Y,3"NMxU7^Du8|-ҽ& :Wdq<}A'0] Mu~#~tvvv!.SA *y6/2߱ }ޯԬSz<~čbVHF Ҁ¬2L(mkΰ\-fCj\5:)m$&X-F* )[9M,."}rzJj91"5ʗ"dg)0Rm##I'|8|OT 3C5f؈T>FRa2WqN|]\y =(ɈY3c {@~vu@oȌTAR V)sߗeR'[ZB3Kd>0ّS7'%Pd!&>[hsYpbƭ b >,BAjlz uNG61xqxėi،~K9 N.N6{Q3u0sN6q{E|pȅXzwCnIE3>@Em;drٛg /훠YRӪU]DI;c^G8\34tKf|TqjA ۡh7a<yhRXΞD" GE4B:`CѾnP%$螊,8I=&[P S,;-vTKvc<4eMӊ =j urw$㉛N[H$T`A-]F;`ޞgb*Q z+%=;0֚`bT a0!g5S` bLeCPY6cVd{G< 8w2+XV{H9'QPBv1`2{7*)CӤf/RQijd>]v=8Y#xՀ)+eo%nxa,m~@3s5( I|z\bwm?[,p,i77i l>TSc䜪S^|4Zv }1*%VE)qB7DL;)>>ðmNH70Ar^o|Q Zd[AR*/o@qFK_uǽ%UۑW~P`0o U&xHx]N;SĈS9qGI ǞGZ|խE!Zⲍ˶-XgtÇa3V0vql]%_ıJV)z &-s&%` OºpS>KC4~nDO럡Cm1'X\d97YF;2m %jpɓ-fL^T6!pxт: cqr+B묟[+[(/ƚ(ڽbӰ F> Dي6l NѳZ ,똨} zF=j,W($}g~ct=m2D T Xv_znaT)וҡO%敓]~%\*|Ґ[5w2z+4̓zyǦ!8a={}TJ]ɰ") -(f֗A?v{+sѪ/>uצ_Lrp$N(l#>Y ᯊyQ%xLeL3ꋜ3&*cռxYpDU1Y ?ox9N;Ewi[8>~{4^n;Sv]l ٺ7S !T c=ɆR@&ON}OO0QH؇Q /wQE))O@4Tsg"8v~X@yF6<>ZEsI*K^Oe8}8m \YHsjɆC{Toigx}0dNpswg Af]!׉@5=9Č D'Eus]T G:*+<~nXgo.%` N>5Ԩ^Mce! 4ouą&!b\m p<fyY v˒Ca52:Kr}B(s ٱʀԇuBnW|]&?I[cІoQBrK_9JC)ݓS̾. {W/m@\>x]ИP{[As'޽ꬩc`d7ojp{dMKUon7 5Z4oj;6R"eĐSIL+b2Wo20S*2lr4ֻn5x %IA6K ɦYc" 盀cF{ #oQwqayR}pZ/17VqtPАSbŅQѿҼ'."sI:x YE1yMN_3l7L~rz6-צy.:@E?`ɇiU"weeֲEl 3Y/,QuTkl!ԁ,vFe$?,rTCӵ["]7 ~9bI8 'Kc,-TЫZAI<5{S$P|d~*kpIoի{ vUPs5+)(8n`p-"צo:rzS>;KGT +RFkYjC\XJ"z"d7rF5*:T,4*H1cazǎx.߰xf@Sdfk8lG$2cyTQ;~S8VPo/mHvI_d3qܜQ%vQ7E :ϴ$: vnH HddjT-ܱf;BWge:ai/.$V~F-NSs7<W bĮ/}*D:Ѥs+1n"&_ va x|e[W} Uӟߌ[ic-#4Z҈ %P7]|0P2Yexo$VnXǐSr~PFPy,l7W B6}h Fh.\g3~-R_tg;sIwE{yٟOޘBfB`?ɗGRVXʦ |2Dw8O+UBs_;\j$zƼ{?OTJ6:t }Hאq>HZo'S{^adq%IY{Yi;$tYnefk+FKn DLjk]QFl8W >= H%хbG'`K:]?s" Z?$aJhϫ66kL5fHk ^x[$_(YK@GƗntvQ2| .qJ\N"~I$-DФ##^|VE A8 W )Evux/x^ON9YwB.9yʎAfL^u Y"ZT=8L;teil7 BG Rg_ $ƚx.f>u0K[522-V 0zʾ9iEeCp6dž YAmBl"(nFk8YXkV͍hdR $aUR d aa5TSX@LlSƳ`|X]:l5 8s75#E*ށsMo5ljZJq2A5wYM~,M0EP-S1a ,.L㨴-/ĥLʊcQᗜxoR〙5>v)wfB`dAåuТP9B/ӆN1ktNII v6G/n~HXXuםh@V>N/sRSL}fOOooXC-J&L4zSⲈ޾ :Z\%ao@⣤n^ Сo@/|@)]w&p-MꣷUE۷'}Od%Z>Z U€ܟҜwTLR'`A4H4=hIs ni2f/Mhy)( P{-rIDU_i%tjDIڠ5p<T>3KP\Z k%j`#K|ek.B{=I"B}KGM3b}T? Kkg\'*+ ѵ<ZY8-47,TrUef!Zǀ`Bb0Eȣ:ˠPQ^jbCl)(Q)_Z3Beڎ ܀PSDIdZ9 w݆2T%"ՋY/q&T|?5C⚃yFʎk7u-UΰѭTē"E^_=&{oc0pQ~:W(MUA%vSTE;dn8-j6h&Д+i&{Lx4jQ[G.eü=Vp|"{ r=ҌY\|0R <,n0~ͷl:rxzt=oqˇ:D9YU,3Mǿɛ( { Ĝnd7kvURy"A uOI01~%NJUƹw;U^fwys`(?5 0:/#\X$bhN,tC=AgE{*q_?C!]Af,791w9´_derA5j@Jm3 K4op!]pWT.֬am2TmIy=9&l-H!:R*Ӂ GFC᏶l7_#c¢ff3Agb{L~HU/§t#F1&/ߝ%&圣&.GMQzpmK 9]mL{5Փ/)D'ٰ{#dIsaMjca ((hA:{xpP ق;a0Ʃ^!O s];,XIY_dB0՟5D n>=օ]EA:ȗ~KdnB$1JHk I\QepgyCc6| Oa2^H UP}|!7/)L\f,~Mކj?F7OO*e8 x5zζEb!q\~wb[JB܎B{" JTOaw*fYq6E1:)ԫrewТ8̴MKmW:OcEB/U<j v~$| ǬB/ԍRadL2T,؍e=,0Xε}眃zL<_ycHqz36T+= <㫫$K90YJVh0܈~w}Q ^$ML]P.dOqЪ!L@_)˞74߶i?AтZN|5N٤^4W7A]EEGȜZTj&4}-B{q\Cj~*)R(vV(]0I?ՅZ s{+ٝO\p +b $YyLU;}|z)q (kEYWclҁ_5 ]\\}Li%}JǠ.=20 P5$iQ~:kzprI/2]'`o4,fb*FX5A=q"Rc\ER`#oA"5W?"-Jkɜ.ΛkԞ- Ǿ|՚S\.A%q/SȓK73WE|+.LӉoFɀΘXzOi;kE k^g,N/6+% -[bA 49~YtB35'c$@k#kOY|*/Q}g_h]X6Wm z樘!*]ǻTtj(RKCYJyxR-D_um8Ot0/w9x!;9K0o{h4@ө'iIDBc0nWS9OF9p@pbX% FqCd_)B+ bh>|M[пb.?9H{p,_ѯy!J >4v-G&=hŁE߿&ya|>1%XabFgj6{3M-ҋ"҅cu,u6ƅg#67kIx@!r<%޶?=9KO3?W6u2O1Qe_{g EDva. {d3>V揨r ~të,Hf#7p`PqpU|t|( 't b S'[1 M_od^ޣ*dӞqbU%Y =Vف*awR?H5:R( X_Llnn K^~8[c *MMv$ 1HA$D̖7A[Qp/~2mo 6#[*Oh)?ԸQP }GmjjM>빟,Qqg9؀)U)߼0 3KF}^'hK/B/ݷ7{4NHgHO?R$vTmvy};>Ơg[hm#URz]l WL;_9 B֚͐ ۷CqjӁMͬV'ͫS$ɿ[U>J+A-bN$"cT>Gtq|oDB gS6$wmֹhrG0 !Pp~Y0))9rep="XY6&y]*) .tG*ؗ=D`LC"LUAm3<⍒ź#\ fy.FfK$>&}kک7C'YS}zl>63B1 &`0,C'_4נnIL=<.lWete;gc9@M5鞮\_a`McYVbKM~?h-d ׆ `Q"#zAYotuBOE,?&pB 7|4eĨ'%E֬]߈ )]_+ko[H<{Ù1?7q9Z(SLelvh==Xa׿"8u);1>Φ2Ȳ} -p6])HͨT$Ll>3s(4o,5ٟHIg,vTU&&R;£8g!Sl!EWBt氭rih [TW 3Z5KgU=7V@';M9e+IqsPV+-R9ǮhU޿R*Om7"qs)ҽar8}Ց]n9y^y!v"nxe&͘ fϥJ%ɷi(mwKMȋXfgU5,22e:8ɌHtKjߊ4WVulAۡETt}h)d3@m| Њ74#:6AÍuUJZ"6ZjKJǘO+FSg * REE_#F3'Hl^Iy=v%P<Ws~r`pu{|㡀pk-^z?"|ŅG)awsZ^fv7-`&(т1 kdZ7Q.$25/9t\/vCO.H $`<PʣL;=g~Gza\KF|.6L8 +kEQc $+ɡA3w+v~I!_|6&8}#ɓMysE*K@`8rNk"ӇBl;[aP*4BG4Yfi%:IBy_N<خW4Pv_h ZHZJn;B@LUP\0P3>X_G #Ʌp"tp(/zu4c$n ,?[mr+jD\A@2Rڔn1nB=>%R*$mvxSnƈX <9&j`0s`[{19K+ =vԑ神\Tf w$gzpCV:z:7so2덚lf3 HhW}1pTЍ|L8(JbgVnz0p=\ ( |"?XN?/}yz3`wU3B].#L#:4f.i?p5 ˫^DmD8uٰ # U^|dV -[Z$Zdr snW!E1d /c$]f~1 kVȫ&`j2gsޥkq|oj(͓ jF, T \`Bؼ/3 /ZSG5'Pq8{7Z7Gna2>;ZwzMo;29J(4 o )`~l֋䘸gP=}Dܱ!3zU)Qn=L/ޖ(W+rR;UL&1sed A7jI ЊiGu/yfEIÞWZK_4],˾,b$eNddMB:٨KiRص,ZYsDcty=3bIa c`罸Yw%DkHQ Xhè{Nv?x/N >Y.1C!>mQ{iD2B(J .%"Gt(x V N\W?ZR##GC()WIQ8jXoj$M9/ ]N7)$ϼ[`] _GJQZzz /ߢ`fn%6-r&NEk ɲ^u#2{ajUH뜃 Ciس_buyxAw&%2k)]zqw,t ?^S9u>^'805j*w:@]ɪ,/T?7 IiJt:@A- t $,#3R)7kHb2_u07`-iaƐ' pey8Ofm#'@}Θ3mk0DơOm G (WyUphf%ȶ ?hnPLP]p{/b&n•/A@3Fa"6~q{"֞%OidyqjOo2|TM)PnUF>`k,S5~;zpp9YA>*T9i&Fr#tMTnJv< Rp3rco =H C-ЋEfM4TJĉ\+;/s10b j&(u8tcǘI}Jۂ>FJ%E2Oj6$) kDʦhl-7j> k]B,IWn34;9S#x#J,Vw_BkFtj},0`z*u,o BqT+M_^>Ddb~V 1gZ$a"QVr363" +Ke6-!W=+>ՕphCnNM0sE+n.-C淦rOMs 䋢%udH\%ɲOL3cGs ),ޛرSB| lO4¨ա})k`3[9w[ ?Yt!'K&&X4a I,'. 0A1AV4lfE:V 1 pIV/0It,C֨z\ӵ:Lon!P(b;CKG<> {\ C~?.aҾ 9@dzQťɒG*y %"EeB&֑]P$=~ꛭE#AuwE,")Ckk;ud)ׯ譓tȷ2T٩14iЛK '_ o/ĚGTCS8` {ܻQdn]Ȫm <^Tc+GPIy“Φu?o:B7Tg_ߐAO9'U)[i#] @@#Im|>(T!%\}A=7P7GXitN3NhK5L +9q>f:Foí IZ^7O1_K9 8ADCbq{Mmsw9Du JggXބmRje6(r_H0qZcU Anj(0Zmm B>6Gz3xBkb`r; ]q%L@_sX}]n0qTVU^}N.rȏ JZ..=<-M.YWS pT3EfL? 9 q9huur&7j~r؟n5S5CpUM$syyH`es 9?Q xs:mΈv@6 kP)[=3|Pdrn@eRf%T礎2ZI<`%l%KJ- 8Wɞmw90Gn¹jsMhaVxr&1ԍ2;rpmt;>[ XnO}uU)vj%jU#^}bo#K1oY:p 0=:CzY"nb,{CcqJ8+YtNfVÖ Gpc*7>EDq&ﲖfJ; i&O7€Յf*VIucx!~m~m-O5!̐;{?+#U/YeCeŭH"ٳܗ T;4j`/Z,R&.aERyp6/FwXJqZٯ-8`\!b%DSbBue;+% o/} F "HyM9PurF_i3 .IRکOcQބKg@l@1=ԾeP:؍{tCA<}~gCu.# BZz{5/*3]\0(`B5ys\_y nZwy|nWʣxJDMyr5 rPn&+7.I!\y!F.^I7_$c\IZŵVf I/JU0%r~t9ß F[Х6WƒW"L-Y[YqHjj q!c {'$0`Ns)xcKϕSk;[x#1aK|rQe 4|jm]tsdJ˘t_oVX$|FF06;=)7#Rpk;q̧Z6m%V\4Z֯qxWXK!7|9ae|ymTHaBVOO7ϟߜ ,O*+j)9 \2>_Bx4s2խ3u%IX~y傗rvx8Tgk Ml*9F1X禵[]H&硎br9VFbzD=~s4\<<,rv>23GŲ2hh#Wy|Q -f]pݰ:@Q#{nR x7_kIdz,oCzlrs+p$`i 0Y DSnA|Uj8dxžG O q$y7|g ]t+*:"-BԼ2SHt@=',z!!gSXiX* Xp-#ճдpd EI/KsD >F R㲘; ͞4z2bvfZ՞ui1^5Ľr=Un"; 4K(Ѫ񒌲u)&qwޭN=@6Ͻɒ>n" Ino?x!pWmP%ݗ wVas V2Oʥ7007v.d,/M[EH')m!;%iYOLbV4wzHrKm,`֞SBz^sXgbdX6iWO\ؒPI*Q]gu5.Ʊ,P/\M+!u X bZ*݊O"N~3H;_Wj]OUΨZJ<emuD^XwމCZn]1~G=ﻡtY:Q>mJ+x3!?Qu>D跳:-ᝦw8[m_F;23RBj+mL9#`-={l[uQRbLloFdi>`/ //(0=ٙkzc;mS<#RJ?C:1@~Qǒ8SWc!JEuI[uf羯"ƪ,e1DשRE"l)O| L!HaW.:,BlfKC2O,n|R WGv]rHݞ+5 x}q:8%AasƒR'{@Պz6pi#´Rc=j:C) & [K:h{Ғ㏵N$ɂ/ r]MVLn7Ƙ~۫֘ rp]>j,A RDxS&`C) b0aA:o߆ŇOV;L5V"ܤ3ziz&3?mDWGՄlR Z ;*^H@~S k .XR9X!"T`$Ho%7V[[k!>ƢlĿZ.4.L1*n%=C'C}ȗ .u6f;am2ۀFe'nj>w ?8PKE>y)J9.Y/C w;ɰn%Й[2>E1 ʚbs܄2.4fؽ3c\{7:23:PZ%… = :i EJC[Joź˥Z+/o.{Y0.ymʱzqUҫAkya ^  :]!E\lS = Ucrࠇ"{%q_F־f.vt_EjI ߫ė"  XB|) aeMѸ# pd)ATˊXj]6 t]`2Tv?koыb c66LN~?u>>IRX4Ga5ԝ-J(s@dͬrvgve6{T}-Ђm@Oʹ%t!' 1d'S(a %iq5-r!gk>;R_bNXJx!4ݏ"}50.o.0d*ܦ@SJ4`NG%c* CE7Lq 2ײTiY:ަU*qBFXB_ [Q>@X2\EVA^+V8n<RC)t׎{ڏ^${n7! Ȳn' 8@m5 9M}QtO'N~txa)rض YZ