libsqlite3-0-3.50.2-150000.3.33.1<>,hBsp9|Y#[BݤU]66/ S 幁[2LO#_H]z^vfצW Ύb蛘 Q|M[,~,#'?32+_ނ BqK5Y<v~ I c^Ց@\l $W+*q3յae"Ŏj yC=]]&5u8iv=)6T6&,1ANvO`+ y%*MxaշX[TI3Ԕ>@?d $ \ $<BLT X \ d  D|(8N90N: N>j@yFGHIXY\]^b)cdLeQfTlVulvtwx y( zL\`fClibsqlite3-03.50.2150000.3.33.1Shared libraries for the Embeddable SQL Database EngineThis package contains the shared libraries for the Embeddable SQL Database Engine. SQLite 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 a server and 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 that supports the Qt database plug-ins.hBsibs-power9-17USUSE Linux Enterprise 15SUSE LLC SUSE-Public-Domainhttps://www.suse.com/System/Librarieshttps://www.sqlite.org/linuxppc64leUh@,h@-c0047167e7e61060fecce83d623cdcb901867bd727c0a3658e15366076fb4401libsqlite3.so.3.50.2rootrootrootrootsqlite3-3.50.2-150000.3.33.1.src.rpmlibsqlite3-0libsqlite3-0(ppc-64)libsqlite3.so.0()(64bit)@@@@@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libdl.so.2()(64bit)libdl.so.2(GLIBC_2.17)(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.17)(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.17)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1hqhw@ge[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./sbin/ldconfig/sbin/ldconfigibs-power9-17 17536948353.50.2-150000.3.33.13.50.2-150000.3.33.1libsqlite3.so.0libsqlite3.so.3.50.2/usr/lib64/-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:39713/SUSE_SLE-15_Update/0a4769f0288c8478300adcb174459172-sqlite3.SUSE_SLE-15_Updatedrpmxz5ppc64le-suse-linuxELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=2d7a1c55f9fc5de09fafcd34276135913f9a6176, stripped PRR RRRRRR`HdwQLutf-8c683ea64c94a2159b0f6e4e3dbf832735ffa3243d401eae56ed6dd7c963cc8f0?7zXZ !t/%]"k%=6kѿ>QwqT1@7W8PhAx Mǎ$LmMwNлEC87lL4PhuK\QE*H fW^וkfڿ'hh3(s 1Pb>HS"jڱYw,LZ\=:,CT/v7!ZWGKLd_xt>cV}VĢh;aY w7n0FqaKYoۮ!}Vi#uZD=tƪW<# $Nge\M.4P+R&d8t3/]2-9qyNꋄ bl;T2G:`jFqr59^+5uo2R, 疈3"TJunro^!Ao}7Z8=*4lD1lRZ&(-V"[/WmP;dcm4ɟ@MEhh @T-ebq8BXaeNB-r!Ӣj6VG 7!,>z4x@ @uBlL0)~]>f#!({~3~u@rZa)mL'~yiGEBVGa%݋TV4M8 U?rPaڌ-i !ugJTtoFQ&󌆅p#)Z;[, (xUkO;x[10.0&`g(AZ k]v.Ttw9DW'Wr^?#᯸ճ5;B[hq3_H9JEN⫨vo$NefZV#p69r|t.l 'd9nڛ;>wB-_ vg-rh|.iZv*]gyAMch `xw&-nOd)~X=Lӻ›i}Y} 8ezT@舏^fF1c3(K`GVם/ F>ސ:YZQ^Ǫ–,d޶=MhYwt:2CXR<jI5)?(E‰t:D4$k]rD~H6J oO/AtUVi/utIҰWrՉ[0T$"j*k )XbOQګrZ$/kgHa |(:'UxsKB->htdW}=j1LhA`"T7|\ΗU:bID ¼Q˛v$Izܿ[A(Y *6|Dg͢@#Q톧{vXW9sXk5 U4+N'Y_j SE"&&v]tZ5 "#:nX2\@|߬1Ov=[e:hh_?.3=9[cKJrd/ o2 apݼ/2f]O p(qy8ڶu=I*^>]%d핾o(C%cI3®k݋ӆAɊs]mR_/b7;hS>LȔ/4=IA\-#議KfiChtq')&v굨t[eQaV 4VZҡJ;h xre` 迥B4a`T$.nNw8&y!ܓC|B9oʹĨIgV5גgޔӝWD7E\GcVT=RýTب4^P?%ΌBfd]>GφhMKt! UZs*lB;g~Re w?)_ߊ="5*̀XkwQj}Nl>aU w?W`Pn_YpwN[Y5. )S߆%pWed? *}߀ܽ[ȉh}r@pV _o?,_Nzه_yq՗Z~R8q+D-*=Z<+5/l[u- ,6`ϸB-TU>fK?p[_AQoY*&xQMfYгAwV-Is !v6h|x  J܆@>68 Ūg}̄nٜuۤ>'][ITM*痬#Qtrg}0Ԟ$ [@{tkCR=B^OnpJr%Q%tSKIdU Tz'C>`Lm_ |0fZ@˂Gj tԦ}g /!NM6Sv" 3C :s&Haw0"G]$< L=,ʖĵxgu!M2c,eLIjZaq[WFaߝD]dnA9XPV1$OH`=.|Yzq"n7c ~yEG`jCseuҬ.p%@y ȾOu Z_y0L?Rj]4NsʓZtH0?YVLs.͗#urGrco-F{h5c4spBt= i|*DE}wͣ) g7avZ14Eң9PZ'g[p%l 1p)`k%>lB'+{/X1q*yuPJiEjI@fY^e . n+]*ϩ*NWp+ݷQ#ɫҸ*gpxc|i~u6t@vmzvb9i|f4mkvrHemr.ʒG$I3o 'nIAJA{QLj?-㠡2ߩoޤQB3ҧ"* ֽ‰ueN5Rk"o)}JZ׻$/C8 4Ƀ-ֿa="+^K£G)X0l:O0+OP]+yLj2"=c-} 75K\!~`Hc/$YJ=Gˊa.liw1?ӌbz8?kp%"|b.E$pK%yr -W Ah$wSzv+dȴiiq+7QbD%2kƤKbůH}ƀem0.Y߰vek }>Ğ9 Ji̖͘3zxF!˓)zW]Q]C!O0,FJ6E`ܢ hč:2#25(bVBQ"xZ[rhar Iٖh\2  O9wj8Bj[ÍZx[Ʉ[:7.ݐ;fx%7UH3\d2dSiu/ x7bl: 4b|>`iäj48|92FaE]܎Oېć@aJP+ {b-S`bP !Y*Ƹ9GGߗ4t lYYTfMͽ#hWD*O& Rl`|=c Ozйs4EhyTf'ib3*֋NulhM nX>/kd#YKH(kfug B7~fHM'(Ç,:UܫQmĒ45:~q%7U1PZ>& k>7CpU[*R]vsh?8,0YZ3/Dayu=Ŝp}UJOhEi ζ{l3_83}g3eaW9 א|w%lA``#ɜ6&LlVֽdfm+*}i~+O)>OUlw_su U$"tb^>L}LR a<6ḋq[3$i`wl%,J{!KV7m_:I<B{"ieO4ܭO,5}M-vXD>냨>撴WO@ڟF'|(Ϫ[-Ͻ]w-RmJ_ p:˄`D ؐ~NUU [_=lFl>zbǷ.2ֳv{%0 vra{\]-GAn2 XC;/c,\<^(g G"2gԨ~3Sʆb9OT@lftf2LOn0|[xOb@%WaEyU[Zem RF|∸k\' Ұ[ǹ{CK@Y]J K.Isw+.Yuy{,*Y\R 1l "%n~򛧻~F7 4d|Xiҳf^8Fm[P K\_'B kAÀzÞB$!j9&Ht*+ȘD7[o(mngT~^?F£0zy\ZP}*YBA1mKh.*eN+K ]AMQon\g*>m!J!.9b!U EZžNbߗg=m4L:'isiL̉+W^g$mW-}yYX]HEvvڿO8CLz y1̼Y>sՂߪZœ%5.9*\0vc/tPD) Jh%1ɒ0ިh%phi ¯]&t5"هdxiqŮ8hh:VL5d6)gt LI#o)pwy 渁( J+=4SWH^1W8VNU1I3G9\#dY)bI2ҜH@K]=扜e.v)RZ%H=n!%9"Gl,)>{"™|NVb,iZg :RѰ8)xk1-|ԻG~|pBVь֣x`1Qx]o>91꒲E5לp4vp]`pQe |E3gr҇)^KϐѶ6ϣ3|X,_{ӓ/CﰡaY+[l;Rn\g>?NHϡih,U R + [_ZYh>8,]F2GkىViO90%Q~֚3g!$ De|S/iGMY~uj8 !RCjPc <Š7^Rн K6r$75\?e.g}_giE:zgBW ]w*GW0]kf‰= Zu]AGRut·"{FgW&{D1GC:(a] J YySF%%0TНڿBLP\ ֨.nI;=҂R 1*/x?ĚDw~Zm̧ŏU [;?SaѫxVK/o ߏ\kO d˄K`)f!ΞZ8W&SּӉB4.<ⵒ#\Tb,>2Ќ).9$ฉǮxg ҜTfa0W"B,3񛎽zn$ J(lIG HR_8xv,V>Zh R+JI`[LfZurOqޫ#L;2tsH R-})3SlZap8{CaXXMr:*μHEgK>,z dؾ: & 6ls\g CW^';Ht8 m{6Ww`u#+悠ߗXlghHꁨH{L>Y1ԔRo IZ`F?f Ѽ&XI3" 1j/lF̊Ѝ'Mԯ>tLfwJُ~DhV3v9>i9\.vfQ]5P\'nr7]'YRܯMdE{PJOFO_w a1-2Ži֋Kui%\cHԇ̣֮|=E\@20PMLJY"4 "=eA?ȂlO0h(BS?ϟEH&ͲƢ%qVTQ N iIM1Sf6mXU-)"9d f@ )ZL ^ mqqrūO˻=TnN_8mZr_w -aDŽKNt^X1B&'eڏ:%@>^rry,+z_o#b?uC%Z>s)(ߪ{ܠ!7=|AWG9~3T}+櫤&k3$% q9f</=! C4&_ fPZ;'-m4^/zdr,Jk.*DJ&lUCa]Ҋꋬ+ff3/݌-NZ`XqMg{NdX-~`8aAYL,%}ZCC5&Oa^H~#1Z̩j&͞*HU{ /;PS_]m^ ?Z<.܊ó7c͔Ǯ^Ǜ9#a~I~"YOzIfM>i^*/'!_H}SmD6B WƲ(1 Mr6A؆D4Zئ_֮3n&~khk&ZiOED0} k=(vwD;J9S2`*k"DoFSV|^cQm赕>k-e<wFJ|?m3 ZR>%J X SZGXgr+Am\߫k0NA.3n[PȩDw=\g\GTvC%A.kQ^(SY'ZW_PTykar:/{FZ2j;tV9hlY7n?KUW2*(urrsiv#!sw\^Z ̿T=O/03 4Aj< #y& ~l:W` %ZQvm! S :,K+@l4R6D)ME3c9G4lQ8Xtg7%Qi6)we$Y&DIe ]18f UOW1t]1 βdU;IK3zʤ&i"࿲0Lf=Ʒ+LAb\Ȏmkpoq:qkb0,o)~dQ9Go5s|tՕa<=-:m(%W7:Lz#[}#t)5ftm?E+[rxުbD88ݕS"nNZ'#;KQVYo%gr&SL.xHYƴ7M*3y+M_\oI, i7MӺ*e8;VQTv\Lh!ZZAcQ š/qfS*%k(Vt U> E={TfG}f)!!& \4+LL5׃n'8xY!hT!`I EO-9Co J &@KHg<*CLR5xZD#D#^`M u[խHU`k1{t3ALQ#.Zdm_26 樯f lZQju`e/*(5vcǃ gRl{c{')L-r*׸A]zզK=as)! Jw0S#Kmw!U$|OpN2 󵜫7zm(L[јM:'kaWxEpK B*֎p86~^X}Τ^+;&UZ(1qsػ ˾Wɜ9p;5p#qfugpAhhR:-FQ<>bF+鉢\c,g“p7?LK:!>&cߙC7 Dr-]/-*m~ cBF0 -s:1)bN|_1 EjF 0v^`BQu/[];:J68 V^U04^dfj dA$v?r8[mzYbùP̠z1=>W,eqв3+qju={orʅz2cNkD!.9j6a=ɨq͚4(awԙV|"و}}Ve0'o4/?.CqןR? Xԍ>x;|,͛ 9agl891Tsz79/1rϘTH̥Z=Wp82TJS\\h\l5ɒrjҋGD;674IUun(-_ "Di2}kϩPj؉w:i@FVF`z){k6]mx) d%`:qQQ:-d>)]oT3u/AQ{6J7᭲:+|1w]SQaB5hi@n`o RtNcf,ڿѰ:\)D+[|pI:h8d}%|IࢫNe:?VB4@8l榄'[K']u坖gdx)~ ]FIE'GNRcis22RғƖj7eeSKxI{:1Nhs?YvB;kvgїCs"l]M`V}l\xxJm)L[D O$,SWK:6ֿqg`/i c )u#Eo)Cu*B>GϓV@zUuipEbӂs*}g#Gr}cc{oD$}@tiyCCS' Sn\Q7T>T.g)M8\wo#gJY8_ 4mCݞ gCPg a8hŠc1T%-'N!ʡy1|{UmKq`mwۑ1Xٔ-tntQl\6'lYa oЋfsmD =UOh2o{1rfqm/HWcRl<{zqܑTɖWM6ܯOx i 6j<Ƒ՛ Wm(~*"{-|GOA(2oP\*RQKxZe+Ȓ(<`I)1~狐Ǻ.`ja~4w2خ<۟Ke ^,,0ý4Ho͘ yH%(⦔!!ͳOQ ! '/AC~a0k(6[=s@}{^Gw_"\-vN 6h5S5T=dBH1; _p̜DXLou{vxalx)]CN;Txs6p ;}p9X"t;5U8Ye[Hiwx9MR)y~JZEd @Lzʅ.@? yV=ONw0m;0Zz蔨x/Q;? .rՂF6$R8lN>{n!YoW~DHt'-D !V{zqLK`#A ۨB:9/G̋ܺj64DX`TG],,W}ThtxT׽jvT5~_̹fVz7ɸssIndi'qO:]+6/䲧+ xH-t0s1ӚҦ!9@oZZec`y.AS?x#FjۉA"v'k4Jђwm8aomaڳxp:Ys~ A .HEq}ȺiSK {a-!r$/t-"(D4I(b:U_҃TG @5zi\a `aCsE8?4)`s."&j3ֿt-axM,ׯ>e5%WՔéIt\k/ՓITo`ff^{B%WaDVR}lvȭgp>ai2$eЖh[i[~*XVwJʑ&[y*&͇ B"J+gwx~j 36%lO~?N,Ⱥ+Od2Hhe}ģ2Ld¡̸%< #kDݰ>9$\vpֹ+Jc'I eL+sdvPpt )EI= rU~`i2su#P!~^l9'-^%H݆Z{%Kg̽ZSEhlW4\|R0%?ۻ>X2D`.ܜyn%bu,NX1o5TΠ9")Bh~1MP/ywp5S~ 6 :2J|%)ab2~lWN *0Zǘ(%Jf3ygsUH~};Pk!UF&~!G%V;op`2! &=NA#$2ȈdA-;^j#U7"p "o[(y?\ J~ၼA,܄ن>mGxiGEBs ۢ TF~y 5׀('"q8[AǐZ5$msSow\5E?`µ{u&#wRj[3 k@,uLodHRZQh?M l>S_2 px7qBАt_x!b6xCpp/]feB~UH[ܓ{JsCᛀCos&DJvҔPZ;S`XA4jРK:}1Fo8s'_EF;V0Ռ9"ZS\R<9@ܜYe1s:7+r2nCNv``Qx`b [ 'eR?No)fGt e MIMB!;CԥZ[I/Kn*$C傶S4baA^VꝁaQ͗c;W.1j}7zuֲ۔V᯶]/h[r`]H ]qa5ҽ@tBoCRkoQn`M9vDDlvBXͿFm^̏Ϳd(xGe+95 2"9> +\N'Rpg;iXf迊xV|2%89_h 1:-dc^f;ׁ -hPzy(P1A6uR"l:Fr82K:L#PNj=(L^r^ѤQjs6 &]&Jz!e,j}}=#v5=gR 1w0?V'cF FΥQ /sa;]”MFg;i5XnbRc_;α@d2-l/8#`B" gA9N%̣N%(+ɧ߽`8Fɿfcp\]fY픞tN+ebfNǝuR!gƦ[@5ٹ6㎔-=?bOۮӴss+֌ϻEIp|!$Ӌ]E$zH[Ds6.6'z=n@v JmmBý7y;YxU+yL&k`9x NFhp"U-%ϗEIeTEQVrII@r ΔY⹤u7Gz|5jlQ_ ",T&LV@ NY ׁTH$*jS!-[Q`G)Tܔń$mu,偭aX[Z >qp4[bLXX)hT % [|AC2֨C; ;|Fjq~W)fCNFTܦ f0dgp65*M:0$KKD#4$A*{#Qk,~Ց#!U{£օQ=ن;#,{ngJCηQDGC"@jIPe)D#GT`jarF`8ԉhnC>8vl 6}Y c Y $>n90Jc*M!8~jVIڃ8 )M4:UI62mS&gX'3I-b`Rm%Q.*J;.MyM_>Mb9z_V0`*OI 7$[++q&a5~g*f~n.:ǂט#LGgGQm8!^`p)\QDym1u0 +i\RJu Y*!qnaPP]KAC J 4;iRD|4q$d3UU8 EIɟg#|W;Go9P;ڬ }E!ƶf'N<|~Ex b9>)+~T\͸Ge &ߞRŠ]$s) :-}spsxWC 2/PH|"ӊN^-Ӈ'.;)ىw4勉ʯ<xdI!<Ś[/-xПrdr[O~v]6 8,_[eK{_mV6´k `B֎[T~Q,uGm֛ugQSD|RnP'͠p@_ H<_uKc&Ǜ@O\C~csie`[M:XYkl}m2|scC}`ۖ&G,Uﱆ=5Wx7Jӯ|"ww_Hy3L_Y.H A57I= u`JFӅ٥IȦԞ3cΐ灢JؘWN)nj(5{AOD4F QhMcLDseر1V|}&6*Pg[s/Y0"UCE!%e "&.'"w sHgecɱ̼od3B IJ> {ݡAFoA?:YUӧl6޷;=$Y}Gk1#"BJ.yXIUb.uv^[hZ:EEzyϐ x8 1tN-r`>;eU]W|U֝@.,b3?wc&Aa/..Ehj|G>#Ķ諺濏])llFUBUnjȭmy?$@ͦM<"<irKv`D {C.}˕0CrY2> J+i 8Ͻ?Oe1:f|Dż+̇a/"".}E/ݦБcNs@D('hS)e1UhFX! լi`KNzL%!л ~VO"އVx+ O*1UE_w_ԐO+5Oy}v Ta/;m1G>OYR f!0#!<}J:`n S2-O9Wk|PIYX*_y5%1d&2Bن/6rr㨹j[;so}rrލD< sRN. ~p-XȅI$3d|,VA8e袏jD4O.D%<;ret׀lEUy.#[DƊ(.U/'R#[#E|f-IUU3h0JmYY L(vf(\A*b+ 67wGp+K>NFP =?T?oAF結c3G0Ǧ1_h7(V5˒)YG AI =h?^=k=' Psx∄t!UStUr>X;l~+ZEZ ׸Q8Jo4@a4,sǰ%_bjl2MIՌ0CŦ 2љ2,Z,mUL =i8MGg9q/7JԫK jrWiW6Z= ܎]oY [ 8]~oϹgrxV욚E"V[^/˲P`/8gCDcGZ^/L r(W@oj\8B55/>GDN α!7 s6 EǷo@TI.r 4Hz~vB=,),y fXUB9~ni$6~zvS~y?4f f٫gV>\R299D'%NKC+Y*tJ-CEu|fMThB9?b,UCCt޵? d[lrbXũ;NI))ȑA!ьϢp7 T<Ҙz"IY)lR4޻Q:J2*0z!5RoIƥ|gmaU1a>&ik^[4:sU[R#b⽛-B{,uU_Q- ѸǽbQ6%L*VRpf*GaϼqG&H[kM_!#FOkقiǠk{l =B _\&xD _sE fpyB/pύfWX.) ǹ i!nB.&3}w~,InȏЮDXWj=>vEٴaGPY=1?bbSfVo%(£R-*Ջ+eǽ6徶՚PV7Թc(gjtBݕ,~7Fu:K)uV8C*(Nط)o{*,Ԓy_.YsDiwvP1Ze]yR8or& tAg 2yl{"^"'.H2 s0x..;aV/%e |C,h3[24FҎ|#TY4"^oh  u4X[੪ځ^hbOɩCp #}2-MX8]NiW]T#~MG~NuuĮ%S=Ę\RɍSu建)&X|9T߱$g3SF&IX2Mzb4=ʡⵢ4=gL._*\Skگ.7gaб;&KNt@]y}#:]xbj%p$g@IDnCr8ڀKرV6|Օqˤ#g9Sf(5s7h*!]MhQ(C;unTMT4a/vmdtw;VxNS͡!A4UȲ^XpN/G~)e%i+A>Pfq`4*k>% mDr\i6#9 l5㹛X4,?Yo`,!g m"X'jISU%ҜmE:0e)kRyEڽiʟ4Wwt/6{%IZɷBm[VKxi :J4pk1FA}sV B`YC.ie;0'*k]S $)!>鉜i3!{S[M#_;wN)w[F]qH(+:tc1bIڳ% `kNUg8 s nͤ<4h"h3@S*sNJ]2|IQ FL$c:$[r(ٌW'>eo@VNL9hj@lZ`*Ż {|ā7yTBi*'o"}4_^R$t( [Ȋ-&x?3c}N!uj%m@g*pQi)ɈFØ+ h@{c4V1I+ʼJA:4<5%5S3S2XAR!m_?<0Xi'=+KG$U$AWOL;xd 覼$csĥ'D/ j:7 ]-{t&%m6[mE$ǫlC@޽G_ LKه~wxo/|皀a2nKaI0}xR|$`.i ֹxɜr7`;OU$h{ XKy1'&咢ftZҊqM rف Wh:NyG]9!zob4m&~C+A=2S K\eTQT m_`='O׾ҙnϛyoc@~&ԉ W6ٷm.&LO2(%Ϳğu]&8*0gGT|skҔ1F᝜ G £S# ϗlN2Im|tu*8N*[OtI6&/!'b[btod">yz+rx]by; %t2 KJTŒn:mJEL0֍º Gӫ +U¢p(/x> ͤ+~RaVi0s^"\5LugmDS>wHúN{>0I@R3J +ãiU1g\c0"mrgCMmբ\k'KBC^s2i_ ';\9q#_DH nSqkJ];:|yVHo'U=tB^sAIqCz_/wѓe98~* H+#Vذg^n6ذL2,[K2 DjF(+Q6xG:y:v2Ըk0(h?,eQ?ch!QƸwi6d7KMbYWAFאUL#ѬGRa>H$‘9*V"EE~BJ F0HVȼ4 ۧ6gJ>z˃65u 3nw9׭&FOOOG!L~|"9096b}*xԴQeZ]^RΨT&CYj2v[bl6Gj?{@teqQ53n xd!`H)_")+V׶Օq~qU قæJ-D-dlO:j&JT? T *Z]beH٤f0qL9F! 'L:/_r`TJQeE8(T-E悤EZd5/wz J-* '|o{=Y2IJ5YdL$$Cwi ʀ+#iSVq- / @aGM !/$*W.Uˡ̩|+UcD+ Y׀i5x~'SoGay#TR>['qZ6*EcR(O$B ׶7q<}voGesqmZV)R[:E߽T@\(\cZ e\dlҒMYm T ˆ-X&kP"W:Vέ$ݘE5*dP?f3?CQq~+6.[!,H uNpg IpQxf]a.Jk^@ Ǻ7R iхRԺ#F*̩oTNAc1څ6a"r!1l9bT0ƖȭԞ4`7Ҳ ,W~"6ƇxoIV/4ƄLNA([wpjaw{$e bdl۹k=ѧPoAuٴCJ EhYOK']`x0iAsmnp$vENH>s$2F3D5^͓n+z6 MǨɽ]٪}P<XP"Mx% ?7ױTwo)2Af j,foEi7;pO+:]/x%6<,L ڒC5<' [kt6!Pb^ovw!?`3!*Kèk #3IEga^MBh4Pl/+mTgz,X,![l'*FˇF@󗑆H ^0 ;z8 k{RM*{[FpN9/W&]8Hj zdD%yQުy)nQfVq?ba^}hkmYjN5#V:ĵGNWwlj'T#nX%|L"7!1'a}W]~`IEWDsEŀzyxXNZ^jH* ӄ8^jF+̟K#3Yݛq=*wCW0noЬ.bMxn8JņYگ&:<̧RXSƍe@x{IO( Q7Pc$knt=FdsflNa~+g)nmGx36D&b)A- ^lEW8$.wP,u=;r|1`7Ƿ7#]Mэ%)o@ZQ4e$}X"?NAŢO99+&SE54ܠ >o<#MDz:^B|Hf9jNyd,槅*wiMd?Zv}ȀØ0hUVX 6W]-jxl:nb| \RybrUDG~&˿2}GXayWq !"[7,b&4]&z}ۍ7NTlĂǶM60dj d{Eí}M3?gem!ӡPKIZ52hDem`atSCJ/c|Y2w˄EkJ@4זлdyr@ unI]snK8 P/wAغ1 ͷ!#Mi8GBN(+ԭP-̏N@4~i<}qhŔGsj^c^]Y8P]_KlhNE4KOhGyaJAs4@!׼٠OUki^o?f*b>|-~cCpjx&yC fж#Ьy6=C7BB.Z=4=_>gR$V`Mկ+7.޺rG=DrYz-t^ԁ/@Mf;VysT`??ΦI&96Цd$C ;mJ-xo!\w-nG%4,F)IX{Ms!=h8& d9;/W5F┴UnZ7&4mvw3HIKN q)iRblz섙)ͪ/?C_ O(YqP٩6W>E82\eF8}(μ@ 2F*L'[)d>0өrK/:/n01'B>a~dZϱW"!op_#mURPբ>;0Z[74$J.֗Cya"THGz.\}B4.D-NRsi¦%>l7>v9inpoٜW䎒H<ΰn_prJ +^e5m_DYck"4EHHq+dzޑ٢7bޓK vU*陉=x.`R(P,HH~{J[+6KO'u8X񓏗5YfV1ƣ*nbU[=ܬq>.-T 2q&8,oqsd4[n/3 ipT)e̶ a FH||Ge8k)G`z)LgM_SETf.hTk}^ը ȥQLBh::చ"2p|mkJg/֥6vR'Wr ԕ?wشʢ + ;$$)y6P'?/}NB[pd7^8W ѼK(c0PM&(5٬gY綋 9ic)2,>IC!u3d@!975mfSHNCM RD-n5Y_5E/%ݗPstvb5hyۆwkĆ\H =' Jl  Ćג1Pn~"QMK=ͫ?CS|Htx=zQ7',> ~}f1 ,ur؎ []GQq*3Ik1|d49TsHڌɜiEe}wAUV9l?ѹ "3}WOҰ'`[RO{ϺhrݰatѾYA -67ݣLKo\8!k.^ht:O]Dx'ba?"gכg-C[}MwW_~9֘xizAELX=wc۸vNV(S)\Q9$apG5'..AΟ,t2FPfN2ۀwt _9kwTVƽđHfFیg2C%".~hhbGT ҇$:#k~ilg1OkQ"sY@6,XEx̽#\zݍ95̥tKt=үc Ƨh|69x p  XJTInWAכ(@@>BV >{@M䦃c༄-%n56ݖ~gHVaFkH=g\َ"=٠ jSm/r`Aخ(îrM &?M*\YUZ L+3OT;3]$aGtkl,?t/"lԝrGs؇>vOCy~ Z'-ujdz<'ۨX2\s7A 㖊%{q,+#H6CX{[ZY24wyl/s5Tf1xaW!M"P3glmi~U=9eduqvϲ4Y{AТ$[t 7S~5V_556߂KW!M Y %fH9՟p#̟2 |~aSC}oc9ʑ~auN|՝\d U\ËjǢ}BI#`|x(%}Ʌ)ݔ&xMTe2w22t !cy}IKӨL +;T Kj7 AlЙCEoLG%iZ E !QD̦T)Ð0mhW$~G#,ܴhavGC-g";jPFBH?Z[%xɭ!D5;$8c~>4:og0o:(G+Wc vN͗,`A+qm<3@\De"2[-ğ4 ~B[H?abomMr d~[ߎ o~ͼfIqaYYP? Ґ)Bv6$yh:~sձ8m#pgv)"~@ dN?0 ]bЮڑ|Í^N%f;s 6BuL2 ]ێ$ýœHƬq)AN+qS!`—-~l;[g ݗ}@&?TK<-՟yhggnc]|zL 4W]Q*S61>u,9iPnnGݙ_zG -zIMMOJ<_GzzcctI1u|2-dr:.^w$: fy2X {3 cj^ u'S@e־gO*`0_ @m891K5^j™3989n1Ϫ&΂l[# f|,> 9> I {GmK?J| 睊L6eXGP-7ӭ٣FbFoV$K|Y wȦ:2c Za}p*:~4햫K09X]s>BPج?ID~Y.p| 3`jHv -'L.{h֭{.D0LlMH."_˜z$YY 2PPK'`J^SO\هiԗ.pcK_ ,pzC0!W.)mAQK[.1 5UJmDēbG m6Al{ZJ.-D9J1/vޠPOHЛ*t̖;k[-VGyN4tq KtGr y>S"]Γ;Y=?WLAEy,H'˓"&P #Ki ]j^tUWR)dL&} ;ȯ#~_~W կ(-~Y]a =:8Zu\o=)6J&fF,|&]`gywa}Ø_zPkW|s,=ǥWj@sŔ;amǠZFgR}D%kY0"M.kũ+NC=:+Bzp-@V8HjIx@3t؊CJ]ZyDdR[b,̍xuԷՉ9эX= 礏+Fx1ϋ5U7:YŸ +^Sd,^Z;#SЙ7 )͆w_@i_-^I4l st(:ҮV'/=3"ౕ,{tS٤&^>?f-Mj]~}36pi!f3mTФ~q#1L=Q6³-2g;8 k&cjRԢlGajԀһzU8@^G{Lm*j<r(sT".R vZSs鿽.GG]BU[Q(DSYD ]FMCFjp9fè[P:vdƳf9(rDvM' 065ņjd*(ɫ*G܉;+v||ƪjëBm?Rʎ:_I"=gLǴD!r#2?زWA-eL,fG ^+/E'\*Q4L-NY+^e#C%Μ˽\R DE׬8;$ȆNg{^(SҲiI%8 2C[XK֝H;}hqjF8I|Y}yIk[/7z P0,7?~T|.]!2%8p揝P dۑXx&y?쟩>nSl {I74C˟Ieb"kѾ<4*qٝ;usj^l0 vyRH 1_q%tyIj O1k)ݣS,jVՔ1gl mwǿ ,ڙ]*nCE;&MtD% +W sEt/݀'?sa@ZhnK--SB~orx@dv 뛍2 zK?QA\fˀ Yqܡz0ԥa{e]xW z}j;v &O# ,u$;xi<z\u.qNF%XX 7}ͣlDfeb1v=x$uL>wc&CyĒT WRXE} b$\Fpx-QeT4<6Ŋf͸>Սs#}xHB]:클ՅBZjH -6貧w_3؞,W @n??VyTlLK>Q=ӽOnЌrSX^׸oyc\ ?doGxp;h+",VLK{QN:׏yoݙrF..qJ= z(2}hZ>'9)#I*X.`nZ` |HKΔ"^^qW~K;S ǩbgcrU0IW^,FG—NuӰ1dz~7 ß\⯼1[أm6)œdF U,{0bfбH]\wfeAhcEG9϶ RknPxx 8G<=^ہ҂B iO;b_vl3Jm,P0">j',-c{{wz8|(ٝg3FD#c8lj{fJFEG5%9˅ s+0;R4g>6#ne}E#54qջXg_yo}[O*Ĭ" Tќ<׷aQ_2`|0v6B_}Hp>VʧWVN}ҐjL~si>;Dc[$~ 3'N=K 3Rbg(ytmy2M Z2e-ۆ+ϐ} -$R5}Sj$F4y# ռ)ZU"-|0n8$f:^ċO1= 9?0d㡴/hweDJ.˜7BUFjIY[_zp/I48FV0 &3y.&pQ-E\y5p#liK̦=sTl{@fl/Oe؅?O]-XWg1e#Iuy*Ѿz<$ X/88tٮb"% «qhkDJ?Á (GtX2R@L#Ǖ׸9N$@ ?|\ ~zDm_RS` $UdhJ^B/خ԰L"c=MWm~s*YMoey8\Ap'V;;Mi}XLvv"~S\*̌~|^VXڧإܗxr-2P4S"OBJdR౟>V ~ c`z>ua;$zP~" j|'[鐴)]_c b#±&L3N{R0i2y;Dt}њ(=PCSxK/vZyU_}B~0nFOj:'$6q¾5"ߓoFw᠜ QuqȶO? EU+H9?uq=''7TN 2(Q1)Z= VAްʫBVdOّ~r ޮ%"d W&1.<; s)T\] SՎՂDǽQLs 01FLS1C;W ٤.+˜Su7IJfVR>M`REdz*`$l}N7.wvu?\_Q8r^Onã{d Q@BBJ[zjQV^s ʐuӫW$zOi1xinE 6qjO"1ؽP ;9a5s60"><&'plX/"ot"}7zU*ղzѐ4=l҈,ThmM|\Ɯqc-*IA<>kP =o'^lC5f^5Rߑo{L5UEe&yMVy+~y?O=҆v`GJ>_T5ٜ 8AE9'\zCOבQSlO9/RQJ.?pjg^,R ^+ Zn B֔]&O賢J:chT5aI0< RBP nMӋ[i{"^[h8[C!s+]Qhg]گ&ڇ*ȶFD_DYß;l&}-#^X)u;ϵ6pJ;bg>G\ǻI c}OہȪt[_!+W"B >n4z[/PڀjfI( G*γHrfR&t??Ik5]Qӿ/R, N *]8qXuÕ}qyJL{=MTU=?ޤQY,:PRV| >g(}o-x)jq$/j/-)њ534; \\PJZ/tglFȄ]<˦RFzK\ K&eC~p@{J^8{/:&,h/] ?E'< u7هG\_?rH89 `Ql-Fͺt~mA)lRm`1Ϯ슧嶘aSwAw>LaI_lv}>8tGsg"T񼺊Ҫ"-' VFxR6H2YP81eȺp z!d8J%!ue=ۂaaERZ4#>Zl1Q\{#R7[bT A < zg 2%}-k_<\oғ=xe`2;շV*h2v8ɵ.$!2oӤ1E^޿-.z%n tȎ}J!eI}ͶE_$`Ч][sq8㈇lWG~aY(N!q&F۠el1F(eYBsxَUܠɥ8\gs}I1y{,v˧~H_Ecl[&ZY ĵ2&Uځڽ)T#hApyI( Bud|M ɟd*Wa a9egXc#__3ڡ`WEMїyo{DEr'9  +zF)K]e7 )ywڂxe}w̟nzPEseyո. 0QF+SMm*XL2o5C ;cJ.<*peD-ix!?0`_hUpZ{vVkUNxJ/WI࡟().Y0JC =܄tTEhw)w + 1\ݚuMܩ !W1\A$-] WDRRK@j.ZTb^-LX{xNEekg=?ChA܏[@PKHS.%Qb|oX=vl΢c =fqv-~c5cZ$`L#Ƚm|?;crGi o3`sKܓM5VneH=dWiZ->۞َlarZkĂ RmZcHKO{h?{:x[nD bò}mxO<)KߓNBө=gM}N^g$鬬H$''J&·NBSts@ r6|Im46Cw^RNÌiXEGiWC&=3mC_ g5B_"#$Om7 aQW@ܭ{ w?q;Շ:9 St,L3lٻ}&aⰜüFU#tJS賬rJ 9eԇpCU)$s{x&kǑ3/ H%Jzד6j8JڒRLݣO;N3@R!ގt}_ K[)fᑊ4z?*-jmkYA]J. !f<:h"KaY`~-Haٿe_MҚ`ZZGvz& mL謙 " .^Rd<%IaPF7YǜVBZص3xjhI ݹZL&NGЕB&սfi7a:Tט=0FmGvyd2'@w[haD%j!߷Q2:E[軚 {R|pL39K6zx..WP}1 HOR J^}d+ZR) +,0m^YkO? MVXL9d@Rkkf뵸}!٢.bCʨWV ~ [Z.+LCXEx=<qxr 0 o&ݼ\ȿc˚y~YIlt Vl+&(5n<g/(VNu+cd}@j,$1kڎB콱whݨр|keGfYO:U ]v\PD,]d;6]Aݎϭ-@FKE){GWԳc9i Z tdYRk `@{EyAc~Oz@Ȫbn\??Ϯ[ң/woN,A"D˗fe{):r&*EQȴ6j$1h2XOm;Y^c] _w-h(4sjԗDuB=SOȽJls ԧs!HʢV=cc" :PoXF4W q`</-Xr8qфbYXDc(n5NcҫɐwꐫÞщC_7Xn1۳@2=Y>1sp*(dndFڱ?0n^lܤMAP% !Fqv.t8Щ?!' T/48|6?ӭjb=TjX_655.|{=M;o}e7v%=>²? 㭙,~9[ma?YD24 _%歋B>u?@@ tT$ >:>vZJ]I*IABnn :`23Zţbk?,Swo wp{szVWӳE>9rPl/6]@g?HVVN~@>VJm ։n'oOlxTϵ+W_e8ʑ M #@洷1ysX]f?TIe h9kS׫4݆r9dH+3N\CHp7: SVXTΝq&޺ƞaej%cXP`3.F-jl&s"+*:n g憢N.>881׉Ol1ܶ" kۅу}nӤEB n|6f'qorD0j% 8᭠S4PKөq0 Nڲ==Qn1A{rZ]-nH)[O"]4%@ȈeJԺ:uetk}֖w >Hj=@ƹ@\@A1E\.gD?sC_A@iْH!x{&v\P7rLaSoI 'TˡLm`M.W@APoHHH!co]y%zRΫ'&OL6G䔐4qyc*!mRGv$c Y|9(d)lm6 aGMf{*(r:xw6QcCh.4s(s)nsZࠈ+.O`D:ѳi<1gn$99Қ uƽi NSV6';V%g&Ȥ)uN[]2hrS@3͢)anU.@-ǭ]~\U6>`zy/.*ς)CP7@)+2a LZQvY!ҹqu\hcNMrXAttJ*>:EL5t"EvxOYQ`z(5[>eҐ'%N,OΆrYjbt'#pfd]xfمdHIMSP@@uۺFsS^gtط ,e71M)Lrw2<=B?"Ǣ.٩m9-`s<{"_ߛ'[d<1@7:Q{Iqib] -ZFNa=ԹIE԰nL0:]@NgMQ]C*g{p_^qaz5?pLYe;DQ-XL|?>icgp M$ɨK[0,(&k ^38ήGr#j?LL"&j>rԑ5)f0wJlvOy~7<t95|c803N073ExҺU6HfTATһ(JNT?]Ng_D6"ŪS@new`B^StoA"$9 Y/ "!W=é(l+axI!km!J`⪻654tN@\zXk]V# { RFͣ-KĿ1hd``0Ħ0N-,SH+c^I)}hIu@1*_iBqzN}J ?@~oz 'zCi‚f"vn`)MRBHpCG06heWL*˹%tO{{^M-:){GB+ͼV6wd&&nq^p;f1xIvt+O}JVp,MJH{ֳzNcP,NYrqZR'( 9ֈU2{)AtMkt%Rӆ&w;kXùe@[D| ]}<䷋io*^ZWeyh}y͞Op?/{(lc )7FM}h&@#vb΅ǀk=F >5+B $`09Lģ\/Ɗ/2 ̫ΒwTa'} N*YeZPypе ȃz*RJ[^dW sSQ ^}!Ӗ8їIrdȣ5a&%4>_i ;>`eߕEIzi!͌4md֪jNQTX*lj_IOBcPtIDKl?5lI覛4.:t~W( 82{jhV8fГM3\ sF{#[0&W"4ݛmZ.&k^9gˏ ͣǒґHji&Ph@,ɇFD?`[g27 N|<\ZbysF_-˩:`*8tqkшhU죃ctwQҾP g0m˽v۱I@ܫu ІؓeH(i)Wգ8uN([2 j! O9 ӓȈiY٢u{ʵ2fx9rB,^ ]CU/f,{^(mg?&akZ:c16;W趌;"#ʨjT*V(KL)q*wOtTUʢ b[yBCO~Ujzxښe3Gr)Ǘ4Y{Tvavւqd0y(r_?aDXQ-̝}|,E@SH}BiN.=c;-iF%2kZX   zYg9f,} ʝP@ 9#|@+9R+R_@c HeX`oe"y 9Ou8dL!w N2y~ _(T=!K^µ* u#9vr!@"{,93,[Wzs8Oxqv=>Xvd3R"`u2+.ϒucۯ-9} 5SJPҺ096tSB%vrgr.d|5GkGm G SQўg IEkA*ªD DVIo[!ՍԤ= ݥA I{`'!fb/6L9eSS< "ϦHE5Z`u~3]d?״ARwT՘7|n @SQ9FnmC+]m쑱5E`ܟxh a6vw*GZ}ɱk&6CA/mgtPDdݱsݔⶳM*{JZP$73 (XV*o|+⯪;fcgcd>!麚΀ NkWX^ VV*/gԐ֭Sդ4+XĨ{\2fEΐnkDjـSg=mwH@pw\Mrތ`}+O_/Ɓg|4γԙwZ)#<'FwԔ-97v-5SoB\MeCSˣb.D'oZArWEAN튞U#WCVF=Cp)1J*T?BӓQ#O¤U~ݛaoBjVߚ`I͗sKR}FLWx~Q!VZÜz7F˦~[3550Rc 7ltQb47dgʁnנcVU};<=zD폥ҝ!'4:SkW]WoZ]sX\iQ_բ}b玣wy_;ѐIEJ I ْz^lhLrf=I 0Qb Hp0Td6EKГ%c!8|tc};YzS5F}iE_pm?@g Pr#;wYgw% *>ùt#$f722$BZ{J4/Lˠ ;fSU>hWlnv6Jy _q2D(6+n \4Ek ,!$!+RC툳qS3K)'ƌOp5Vv.o;8us1Arg)bQ+^}_='K$V"O؃:~TbD4]q .B܁2 Uԩ̹W\rу2.qn -9OccOWxNP!oŠ:UTR d1 o'x=r`)3)Z#N[,CT/Ƶ*O`estӝ hNAZ;-!K\2I[_۶i8Z?OZ=ZB#m:~m+dNT =ȢXZB1TPQk[1B3QȞ> ?+ ,XwAr@ȧT$Qoy>\a5DAS2N=o4[r Iø $bb>)ܺX9m+ڥ(+m⎋i^#* z#@x^Hʗ-EsJ>wX+k%3tg-FL3ljshg)X?}#0W0; atxy <7.J]Պ#PK\eFjp9%Z`4`Uȶ޳ >{9<ӍŲv_nLll/mq)[tX oIDIRĝ'a9׶*W][g(w`:`ŔV$a ^&f7+Yހ|(ߒ^{w UYS~օшf>g]`DD[_B2.L5SQtO'jߦXA3m>23'P!GMeR\:F!m 0*X|5_g}rg|jGOqjTWnpx d0hVbWY6f*Gs\7/d6(pRo9jCRLy~%tJ>.oˀ&&t f$JMXNR38Y_Aĥ:Q0I\TY撻<-4E8]q7%`;lޗݚ+I2~aGѐ׾A ,ш\>Mi]q ,po5+1-P='/O͟1;^#")ʩX}AH(4yX@z,TOxXaO Vkp{Vvd)#Bk.-΢mHr9v~te=&٤ h2qrߎp}JI $*pCކ+`o"q 2K4);1P8;${mVS"IAŶN}!sTŨ<5Z1%~PC/4Ϧl65#xršSj#xqKDYᶽ *&ۣUnPN3iHc;}ˌ:/5 u,>&.o芷}ж0$p>Vx!B]0hӟ3ZgRীOUѢZHG=B:oqs9#Uq]Co5]z;C$EGy9H*\Hydb'Rv+ܺnNcnx(pG2gK:@ٺLӖh{2!G ;.ajiԙs*(&;X9Fs.F1"̎v3]zlhx *A 4/M 37uxbGyn_<)ߋX6}i` o,ws2> g(ᘰ4?sPWu݌]E$g?Cƍb$pS yYZQrϔd[~z8q6ﶬeZ]b@z uq] m"s8gQϻ80w懙J0[w>5T[$|Ai|܋kU/zTcF$WNsRTJ7ǬMGtJ!=;qkɬR%sl.'MBۡe!fA!ڍ|[3s_t3e؞׉e?Mu!byOX۱WY林#6ч+n-+qB@28L)gI֛|ӛ`fhYLe0*mh=x6ֆ{|OACbᙾVߧe^ kjjΆ˸oQިᯩut#* P՗% iPsȁSdf;%;Ce{M [mZEF_Vš e̽%Y,+;o- [pV@CC h9g/< leWLfyyƍZ+ 0k?+4ɜjtt\bdS7ˁ΅Zj3ZkZ`U4j ,=rmeD`"ifП'}Iw0Bft Krx7u'y%Ui-`y#3 :TafUk}, )2*a plְނ1s# GUב>#eb܌;+~u|Q|GO 'ˌX_ÝH)fX[u2H{[W '+~NUmWPqT>>Rn|Y[']޲Ɪp<{c_?6ë (j'oU7ppC Z/ք'01 ٢=oJOE,n7}W?}YO*Ct"Z*0RQSHV9޼dadT A[<G]cnGa5im-t{ʡ9YsYbx5Э͠)܌pGH Oˢ)0ߝg C4sNjxTݓvla}ⴴj~z%@IeGh&b'{s8@_Fܫm 3߷{}P-nsJwr pu|KN%_ jo3U&K~a?I^,j[ڇߐ|ۊ3 JjYF4"\r7KaP_A &9U !U&{fS-7?U=j$#@Y,4 Q0Zop؃Q&e_=n7շ7Cϻybv)p >!"U0qMKwF=RNˆ_$ lS_f42+$9T),&ĶشqG`;*l+r& n n{z|3i|*zkP!]ʽ*&׊(9U68S!#yl=33@ ;_d#!Vj :~4\vUZ& CXRRݧ!>ݬ1+Eڀv1z?u>CMA PiU)" r"H 9~_x0FDy=#k^5 4WnM ARWcbkKlt4ĜÏ;XSfOo{Ul}u:;Sd8m ts'f :DP& =vB")G`P0N)c%DxÍѺ$qC/݊h{nмp {CUy[L-`*sHT&,B9V_8ƞ[.e|TUuajdIn * m®%o|3xd8UPH˹0ޡ ɇS]C*<-Ȅ#oгZ} FH{q;[82LnM8\@{'υ^\#(P /t&W9 ~d7X$x4z-^(IwjwiAD| RM a8)FG6d<] =|蔹?lbdɱ;lwLltN~)7YzxOp i^ȃA*Ub@ ?E E6_؄m*!?[un{ v#@ig0,X3`)|?D#:|y4 $zfMtrDdO>!Z9OL2[T&c\`ĴX>x1?"Y#[n5y%IZ9Q߭=څV _≀A!,/%ʑUؖLnj$zߧ)09hiwZ#T| ~'E0mi}!#^2LR/۔0J7ЉO>.}2|4"I3~_1owli-7л"1JMVKIhgT15t7,ρ ;#-$"^-6B(}=f`M0w(DaݑYP8xlj|| oGv[6x qE*m`.aÜ-g' دQ0erv3yRX7:w'D @W`T}cPZ?#]6|^l9ϬG(x/D+(f*aNL؍hFJ;y$ F`{ʜֆFlDN*фbOqo-]]J vQB'88>t]V#l_7ǒB0sb2BT.Yt\1yfI;HƎf?/WL1/qH#Iτ>|5oʏŝ \l̴Vuzsb N>A|/ϓ;,&L'PV-cL pUDCa.!1$ LpoSB S~! ūy&]WncPՎQMLL7h}kGZ\ XO@#ݗ@- HB2^i fZ1tDL,0mT{BCc؍ZZdgozW / @:'m_OLz@ 26by |m19O)c\,x%#cvc1!6QhL+]CHu:^yNh;e3_TjEʵ&ug+R߻=y%,*} !ng6l$MNl@mDDAa|S,'Kϱ~狕p #"J(pz.dwW1M'g Wʲ]ǔZkR&D&?cXK3e )K^Sě"ʣO+ 薮aM#-O>q{F?yU+[eO0ŕD QS8 OYe3ٰYp,-Oߦ?=Aңʙ Ȧ_@Sq,S%M9+&܏[2N㦂\ a,p,3$lNAgm(,K9zȏEwYvĘ;NdٛT8IJElT|{(<61q irj( rN o@egB;v# ;ܟI0.e5 qH;GO []Xuן/&/"(X2.]Тğ0P)zeO'B+1 b-T9NK@_`i_ !\\f3(D@v؈~=TI!pN>ŽK4k[n\#KSp9BZ;ŗot1{gg\xހ$Jph[UIR|Gg0ǽFЖ>:c^D@+۞Ƹ_#fƺ4~ױ(3dQsH|=w trZCLkeP48CL"OPm{ -V$j"E8JJ{#+_\Iz[!Rcл(3;QƑA3e&CUU-rF,H:O-xF]]zj3-q9B_J `mT1PxT֥F7vw JRӫUgdhmN6嗭C2+\+Z&I #HWLLX^=1|jccX(T1}@M-tySH& Ef7꣟oΩ^p$=4M良"AWJ Idr#% Z?lV>GQ3&(2)vvosWV@j4SU%@"$F*uv|(lC Vz5JCB8%cWT"]ʷH3p9E7M,H~T!?> R;1^kO=\aàvB 2+:j9i$7  Mj&w#S`mI:Id ^LIsk:s nCئfB95ײ|wۍqv7dXGG|d7[9n!*h71$F&1q"3TYy~qua"l Aj+ÈF0NIW)Nk ANyoR5aƛE4(;(hU 5ϿhYJ5Mj:;*{6+X7:3 TGz]ek۞hE/93eFeݖԥI~vom?^ ZџgڈTȀd:;政ivZ:r3c(wsnjؑv-D:TS<ȧ!%z U`ĬԎ/Sᥬv$8Yx_ YPH/2?~bQ fĵUKRceNZx٠젷SEEnDkH0d@j?y#̏=9L ~ov6J#;d:&iʳꈜT"h1.ʏUꢇ!Q<`$:z28}i;:WLg6=( -5Jǰ'lfS<"nfc<\G*zb'AV^hY ]k]%J*zb1u6/`i1&WlpHyn2U$!8\w!XyeFx 6}shݎ M|!f8/ځ4ph +V_,IkUnYtI׭ҋ $=_Julx\Asש=G]HlEylyG p_WTZ]ќ-5AZv2y;iv_&u]]E|HIva2oɇ9igP@.'뛃ԺTf:jfʰ+@U k}Q>{GN6@a] Rl,Mק+YJM ulD{trnP߉I%7b9|Oz<1 QM& +y 9=8ʂTi((9P3[k.za{޹O,t{UbP)>5k`4%x ޺1DxiBw9+4\N4{d ʐJ!4YR0Q:1>fw}LJ/99YX{[y3%N%P? +Dr-xFbpJ]]='ovfD8A8HE! I$R"ND0 moCW3 @[)arv&>f1(m6BoƠ"&Nh$Mw=.ޅP⬦ax{XPE?5s#k z8:é Bo5?^2ZKaZLWJ*4+iW6דBwo&>V3a61:%L#As5Cn#+x1lƽ7MEE~vvoBi 4{SS2W$T8Y-A:peBQ$f3 *SHZfJ} ۮ5g9ǍܕxJ|j򛔌cl{ _#}94J̖ sk-șV`A1ۨT"$Wla[r {:Y 9S{.+iy 1Y.?1sy3km~.94%Z|P /$6cxC LBzp [y~Njȶ@Uo<ᓭwyG퇁& ""Aja rPI=%>6A 35t!v)=\&BจU 1$^gO#`(7<#s!mh1]JƯxCPۻp;lF Wޥy [n[;0@8FB@Mwg]fMI-R:otGMH/'Պܧ=޿rtS#{)+$Gc D]7 t@b_rsa{]Y+$4~Bn'aױliB:vq5t9J>YCW,=!ڠrivEa͕M*McCŧ+)\ĵՃ7u1tѧ#[+ oxŰ2*e բ_lgn}^ b,H؍wԦuJ62Aʭ/@'վ/D jc^ axb/-l3J4i1xC/3}egink T koZ\i8diB7#g0BQ?Px`RM>z%2Fst(T'Ić #k=5!+I?d¶d Jك\ÔJd\v1)_ zo$Xȴ4wW|t),P?6}0ia;'zdX[ڈD)\ٟ̑N!1\c8w `k7!7|(Z+ѿ4`^Y"3,۲PB?!Ao,cV =6u<]`6\[HysZA4F5kSX`qwvJYpo hL^QJs /35Lnlҙv{!9;b*Lj5*eҺ<Ͷt ed`^e_l(@'"~ P*^[嬻8/¨TО7FK%GwxU@PABIAoӭJԆbSZ@ޝ_/'|u5˼Y}[ߤOp_3C6_6mSA-[9-'T)xniZ":[j<;N9:hXw+Wď;"Ɉaܡ;`l$Ō7Ґeք )$JJ*T&{jTWMVbn}}x [( 4pڷHL<Ѱt=vs2: :_cvxsQuмrTB|=`<V'Ag=|I8{H9>&rDwQe,]W ;Viߨ5EoV؁IO>cqXx$xxDQ~C<뵄ÁDDxE<#k0|czlP#&Ԡ7L,[;5;׷9?.uޕ_GKE.%ӆPЪdTt>;}#&VKN]q`A 3=^#ı2>6d3tWڡWmF䭘]6`&Mr9||^Ma<#ttE%5bnnGNr5P,FlG2 {JBmWh HUkc-rH^<wMB>YN#IOYQ> ,zx2l`*;d?'58$UZsr5-]UPVe`=3 f1S䞕6x A_bl2'%&ˁ 0nD,&]?=<*bQUHFoBʾ5U/q,GQ-_ʔ[iv% iBU9'ܗ zד06|Ԝw-YA*Q5v"qt¥VQVpfᲛb]m cKoDm P^Nl!) Ę6y}1!.mp׈@%Not;5]/W<9wE#G5mSI(.t -&| % "[hTaRaFb!獎(I6a,E v |Dq%\Ɂ@?,vdGxk\a ǀ8JQo+йxe^45rSRCœrC4?Zvjӳ/"g \gJ%1騡]{5 a</hbO^w}uYG`hˢbPwaXL\XrNzu(9x&beYya@[5BR0@h@܍sayܤxa+]6/^cF&ɂ~O +.xܾS:(ޠϫV = JZ75J5:]OP4gw+`5IM2|8fn9wmhqsl@eQ_An zՈG ,#]O@qT@$(cJgHNodLww4YLt-v=}~%=?|4K5'H"ve00ؓik?̥54rt僠]Emr)gW*dW@a)!~a yNK/v\F+nd~z5c#<*nW?wyu1‹VN{Lc46V9F٩c Mi ˿=VmMyZp؅S6Bhz~w"k?^ _JX2BZ~yWIE•%q,K:Ų .yFZ%4o"ddyab"f3ÚJ^'6zVp! S|uM' $R]dQGhRg2sZp+ cZ( 508}H ڎ^ۥxfbn \q?ĭ.6C@D&o23o?IPY]!%˂51..GJ=`#њ{ky,4, dJ9=23gG\O H|xwdӛRA$U߸ĠX~*|pp@csd6Uh6qK )7^\%ibD{$if5_MںVЬ^dĔft۷+Mg2N@b0c7雈(_Jp헝gUЦġs*w,rFT]b|>#$Iϊ-أ"P z=HǍ8 EOp- E&_UebC w_d1 *KolxPn6H.o]ӵFni-QuY2' R 9çһEDۻm[Ak5WS XufCV_4SϸiCh4r2ȗK1o4pvaE34et7e'AUy+]"ټz5AaM*^JCnE ]N=F|h5#ʵ) CN+;LT!d}H4הr㬩@ 3\~P*;RC hDYF"g5>=K@罃[ksg:η=F; ]T]r@:k'o,DzRD2/&R &W\zcP+:&O{_kؔM\mX{() KA?w 9A`A݆Nt Jh=/zp4pP֯X8,P|s DR"j\P20]1-a1|!!hȰ0fyp/A] dV}5k{qM% %c(|T|oβLLrVQbw$W?G8,F^ƨ@nsRG'`èƅ~JAAiތKE#k0HfoibiLgHR_@ƾ uB^5r;)eώmx%wXŴ4C 3i+u{\E@y{8Ih; XTF%)Ҙxy[ ^J<7b--2WD駬$e\r]U i__ {/PV^-3:o!p :>}q{,0pr}^q)SKâU-⡞Ϡ AQ󲢾䷲R.屵Nۖos }ijşki6URT/Uϥ+0ndN2%#cҌ/q,|-HѸV@O[p9㫿үۍ.}2lpR[NQÄ~ k%6 *_pZ tOuĎY:+A݉L1̠=J0T~:{q ˾qgtbwKSd.r@FM!>֊ܾWC:3;+ݺ{fwO߬Ƞl{.'9$"/XfѦW9<- b&βu/W̩S]@y#1$ȣt GF[57+M0җ<8\6vVnv!r||%j2J/A&@R* ` W03{Mo!TK{ f}Kn)mXo[e5) 4EYt7VGa0 iCX͂x>+B -|,\w?ph? Y?5t ~ϊ ׅU @1e9[{h*ID,wch7}]ѥH|'DAk\XqwfID*Fqp_q=s2Nj+o1AFR7\Mڜ#$fLpL}T{E<.VQqc7i)A%n͆j.3(,GIb,`(RlcV)l9]ys~r?%Z9C 8N p3m(󳜍x 4ocO!RZ ^R! ÚT?uʭQn]@f#(a#D; "Q6HIDnڅ[ׂ̠IVj{i%;֌6Ft&I4W~ ʽU:?؀[Q yGV)*J6%hl{=T7BFmvYYe)ǩckpf3mɗMHynoNy0?'M]Rۣra(yWhH#ءY!D(hfqe%"=ZK:N| 9Y~u"4mlTzkqO(@Q[iǏo䩮2sqP9UDng(goI/Eiw(͂[;sΣɶv nc!=hk`FZM 7i\-U8<$nA/jB;@ BGkd%*UG8߯9^z+<ʤ'?!є@ *o ?2ߐ|Rd$FQP}PTv6"(̂9^7ӆ+i ۶) 09qOJBA]ǝG_ywUOw0,vi{6Һ%^_7tk).wz bt!l 8|ȒmƾҤ+F% "C *)Ji~ֳ,:#^46ma\ݍ|*ƻo 8]_<wH ~`}P[_nx푻P<.+WB;5Kj f֑KZW 'f,*hހ.JQC4u\*5l]'  ܶ'~iɀaH5 ̂Mr[@">5lM4" qhoAwSkz!bdu-vg4g*vsD'/nq5AۯNGӱnZ/ǟZL3з]C$![99Q%8Hgdw˚oa1-F"Kh3ae,Aٓ?l2cTG0ž6=k6Ha禠9leG`D60 t.I#7ek] C:ϝN %G m=N&AɋY>>ؽ|fB6 Q z2OyWߧ aGˍ6ݰ|zu+GH$z\Onűpc"6^rFS|qS~5 B NۉXG̘f8p'5MC a!XTL/"P]ԌqڐM6QG7s/.T`FSP:ܕATå^@aV m#Z\`YXogh=RV}%a" ?r;%o// e%'g"NhVR2 Ӡ7P1p*jQ:R xli_9*;v$V2@(_9)BB)_j2ܵܶt1d:d#Hn52Y~J0BOF2)WV_O[#lgnGPЁݹTBf:~ #lr"܁Jn| c tB~3BA4b5 Az()rx?HM@k qaZ!/ϘpϽ=#1RvCK d R)lV+XmC:" v˷θDk_JoaTKT{oySlSC/jIn@3aept.$>aފVXc%/hG밣OX#/&^SĜmqi>^_Y ;z,{pKt顄3Zt q⛉0ek*H7ߐ~}V`l#~!`c*?N|K jqr{z,A(t] ]R/nvb}ȂMmΡF-q4h}SRO@->_W}x"MZePi! ,tj3?` NSfB^6K{ӳ(Ž`5-3v,D.CyܬtDPfD'~UG)i/aJs26nJas ɾ$@"HTTTh!=u.]6ᖨ8|jyNfMq<+d]AYOSXŐ19yJZb1)L B"/Q Lޤ̟ I ̸5Tvsyw0N*&V}4t_?,DM~ ӂS|. YK+K߿/0b4YHzC)) #n2G]! ڱ_m?ub([:yyqHQ k == 4O41I_͖=+88E]=%@8}.9%>dZq+[G21,zt#!D怨h~,NJxSVh(X Dۋ( a/GAK^{١X9'{5ETH){kIqPgXkg&uh%9J\4o^~9!/ w\66_KdbxN'Tcng3 zO(G=*{Cס %hRYUJkcF1; u OyUH~Tݱl#Xơ"_mS> }7qrh 8$3|""c`{ڝj'/r~XeJiĿrcn%9:$g23Ek.gE@>F:`T'fXR]?t$t'^G~=yBeSǵTi?8Di?blh4%HSpo!6Uʇ gliʄ]8[h(#ޜIoN/ϱ^Iݮ. Hw>zjQo%,DyP`"CxI|6CU.vDO ,ժtyšP9Z>T?)sjX=uf}v`7j6uT$gV^XNkC;N-bM>iڰ~Ü*L1 ܱ!1/YDHγp/zv)r],irNbJdEd_12V"[GL[ UҎU񧚞 ZaUkb1,:q9uIÂ]<ӕbm.O ]T[頴iŵGp%al)ugmKPiϑQjcUL+7߱GgCѹ4}~[ IEM|*HѫTߣ[ɻL_,?nhd*T$W"? Ƴq(/#+3By9_,|&NW~B~5( bA4A!ϛFaq_i#7l3 aYJvIt @1a4i#7|X$zaN* ''A4{ QM% |+]rr}AA5@쮿ӥe*dWL|KTE/=IW4'dz{΋yugo"VG_իշ0-\CF)ShL=ĜDYZ,:%Hp)3>nM賋PݯieqR( דg0"t8]sƔ6Jp<W BUe'Q/.H$6%?Mjd f0βB;|_Ըg3ӟ KtPCfѐĿ:(b4c;;c}&#v̥/u^Q})%{X!ͣ;/G4?axܝ~ Bڏ"JLry fN/Պm抰7! /=~W_K8F,pWі'tV!ezJL+g⺁n%y >CTyJP"Da(_q"0,TY-ξlGio)ƊsĪx@-rD3>*NSe>`$qSsȠ[Ö0^;Xtb 63 ѶE9}HJ(`IId|Btp\LSlprȑ?KJyD|e=]9nYLC )ho&4Y%Rv`*DkU5z2 tcҲ)H&Z'BI\9E"~EnPoU%LXGǩg҆hVA#n$eAd JӲ5 ׁtvU߿rS&"po};ڐvl.gJ²I /:gʷcdDT{h)d.p󌚖됪'gU9$H%ʣkE*"XjܙLEȃ`7E4-\Ģ!` v$PZjG/]#㍖~P+,>2MB&Q2lSPjk.wDlpޞ>$=+ޛ3)-ݜVl}BIfd}_ŭf{H6_ Y'yjF&p\M8͓kiuㆡ- &1=N ڤ qKU2"gVn#!Bc^j׫)ʳ1<y.Ҽ@˪U{6T(ta8~=X=a & V@:O6Zt/^ ÁVT&tgTPƧw n]ˡ@+* }lտ#l@eTavpgXDW||88HJ"ȶo׀,!03_xi.ȶb C_ P'馼KFNhC=H܃vl-Hr&IU3%1Snp?lvgbM EnvSmjp^[<ʢTkCwR`?n{*J2yNspZrG.URpwy9"kki͟"iQ`(]t~J3 X2UfphOh<zC8vM,ôw!-<zi`BYMBZy4:?n`PϣZǓ!AoNBL<ۋ~n.G" pM-nHHW9Yhyo^KG.q%;~z/AlԺ0:{\J2{N< |l]bUVs59o0^R)RaZ*axwolt(O3%pLò~Bj%:)UvtuF^"4D2`U3q(x\śP1{$.:Vb9⚀Z ed]Pb1n(4iԀ>ts{>}q_PF۷#sF"}@1O~hQ*A )1:Hu//c-+~+Gݑh߰kڭWVF/?z1AyRl=ٗ:wcm1vfh.4(*gV))d3aAe^xP^dUۺ-܂*X6L;֊?aKObʕ9YHyX; [tIŮxjtr蘸ٸ5p:3;ߖ,=j 4S цw 8Trj"xG;Bq9#2=P)ѥyBV3.5_5s;6(X u=i? <8]Z:`,`l,9[Hou7emDz] ȺAPh+\Q볛N Sf%wȧTe6#OqbHO눊ʂm%zG^ rY4l,T0΅ʍ:qgy.}oхeIx5{>p"D=+U>+}(vDć& Vs`xm(>jC-eEDNPД*~Z{D7~-2wVSe ˿td6)0n;;ʓ!.\<$Y\{GYr!aT@ &Xbʬ%kZ|ARi.J ;`Ll}P,g%uwB$I)]*:]Ђc˩1wZz)G.R%Fo4PgОȞ&s@(n-6OЬ Sy8jcz44ܑ:RmҲDw@ixruvz%4\I(Aǰ™}oյzuFP(@3dd=czS?!&-p)$nbF!Uz4> j';I9t$+&哓c}zSenoe+u`Z bw K/}KF9m#ʡ%F":b&y?aY|sXOv,B1.% ^1s 9?un*)Y3i+7)5IAh.gXP4^$A&8RB!ݬ-|(S5fg>I+[og%tҐ6R-|!ε`4*;uLSJgp2iU2صU-qe6$r:]+.^-xфødxͽwnHR7 ov>D_T{XT/Sxn+T#74 IX&}&`K )Ֆ ::GKU40=TiIHϾkd&H5}msD[ }^Olfiʣ*J/yɾV;Jvz!o YˑB3,ʰAAB8Amt43?&RMW{^^AƁTV'ٴ wMI $K{!Σie}mr793gIԏi Kpxoۜ1oڠ#TWr~Na#zc^,=$ P4]=Pٝ@C3o,fl_6%Z{$#. zqq'"ڡWLo .lMY/XVF`to2L*InlKXz,EU|צ'2QP?6C] H-(cK ApRi0ph>ШOLTXśJ/ sS IY84lvvAb#MGɳ̒O跊yѣ>6qvnjQUc#J-B]wW3l~y^BJ l(kn7JwJiۋ 5fZiTO81xo)qTN deEL0'.G!G!TE`5ͅv:zϢ¤U1Pg "dxT7Hlyc؃MU`}dH08j?3LKff*rJM?2S@[Wxw:NB ro 7U.qkuAM3k7n#rv m\QM/lkt&A)Ok,~pAn(_mqAr9gŤ5zַ*F⼮t 3tq$Ȉz崉zlNn4Z".m=(3īәke>ӁOmyNA,'awp¨tc@UӚtE%xf'lRj@ yK97|;ӑ=+Э=XX' $*ψ<` EAATn, .\Ol58|u#X+T*ꎸ,`=a-P)i+Išlw4y.v´5(7u[;fX)D)Z﭂Gzcd]"o.R&=4ڷi:Z%|ܮ뙂x/cNK.*%Q>S [xG+t0zSVx*YS|rSX2Y_N ,nj6T(W|]n war:ceG+aЦP@F/xw0!n{9R=VnkO\5Gkҳ KC\J"%D'Plc 7#(v+uᔁ(Y0=$).P_3c~qH|y6'o?ʐ.H4Y(Hp O5Yʭ}^p; ʂVk5@<[A,̟%v-< iK/ћˋ_S1#4ތ5MTDbI | PfYs+ex84S٤FxjA I`Z -#D`{`{tl]OFD2sܟ}GӽpVFo1 ] CI $w?m 1`n N!te5k ܒ;AOɎaK̨I@{@=W|R^'mhHWnS|t ބ̵Ro1{a_R{_,mDeuDY/蜝P<⭙ϫzM9T6z`ٟUසdHq&$4c’*Qq oq ~{| 9~UZ #gԠcA<}iI)F<{O7ٔKď. Y=̚ðԬ#O8o.ftgbȃDJ,Z \@ttw(ы[ /a=qG|YqGt3bDp>+ = z QӴ9GVfHM0 fToBC n2gmv؛CT . gvIw  akTg-Ewև0p<٧ &¢P=J: 0N m% ੦i)7`۽Wzj͡>]vYXMPܳ+!AQrrr4Ǭ;y1kz#*TakG@;w xz1]cF\O{2=3{NmmP(FkSʖnױ X‚V֣蔀!GZT7hml9nh7} 8]x|)4땎?eQo1^n Zd UF),YA4m!E )I-䊻. e艁k!&gFBٟNGۏDv|mMO=6<St?d t5s3By~.ƃ\DIn]ݽOQP%imr6z4eˎ4T]'gjQюH*sy.3p%nQaPڵ/WXqqeu""$}oSݧ@$ jma"fK*=C^3 -N\G` qx'#lx~FYzێbwy>Ғ8"hbԿ2($ȯW1oc FkT?,\Jsso/='r$:U(@dI^u5!h +v<`X "dcc6}"KP[ t$ZKj-қk{ aT[DvNo&g0*0j9 مȄ?EP*l#]|" N*:B9m\j*YX4\#tpd8X{ǁTd)N:Xq,Yf05|;J~ o[^ܵI0;Cwd4ʥ| M.J&<i[_{]Aي~ k/k v貛'ߪnx~|Q$.&FSmߖ^Ů%cOhĎGZa 'if\&vgTyJu2Fm^=_Y23L (VnlFٮ?ʏVrpJQ&nƄGx9hr2_);[=sz֔v(8ZR8cJ- 'Ӥ xCÒLaTe e'k>}&LYEystT*jA?eA3Gm^AG3#k>mrOj 6\Ƞ$[fM;^AȩlojCK&s^k uKؚY?; "Kf(Φ"7ҒW$K$"|bC:BGJ>?`k$> #`gr'zC"jzI mERuw=%-$z6E8Ϣ%J>,, ({ğq(ZVq%g0&hBvi1_&W fiꆨGhQ[h }ij|Gnk%9WP{GTY'jR(cN ~bڥiNldQB;U\ZqP"Bͧ+H}*3tFFh[?CTl%žK ~^TDPBGm<TL=R7p׏&+Կqsp :z䧎dmkjDԖDtzߴF ɗ [srA 3,cɔ.ޮ#ô6˸+?!p^da? /|(4N .۟x;6}'bc.LtBꔎ?Zv :.-)IH.pt,^F7@}QDv|yS:d kT WITw8V_+4Tp =% r{oODDoH@tfξߠ[J^L[@&]C# X e'^ G r19ۑ`0a7K?x \k\>l$޵Z~澞a_6Jm»fUνV+k|QF?5_aŲ+]e=lK=K)BzDI'lңrq%e2J {ܰN=2U )[p=6 5ipys &! e29%lV}m[VǗJ܊ljicPAS % yrN1cҺR>Ϲ3f?}:&R՝48hU#U 9@ z @&VhM>TVA ,;KIޭs]?|]U|"v~tBѽ~fWr>d(E PA )Y pz=`IKeU%<B4~YՙzjUU*;|CW)`ww06 Ǥ Z9!%1MC/G䪺v tt,R"86ӚxF❫ϛp]iI\iRL71y#}s< x SOoR͜KY; sR5Z?`6`uP^cB7^q#!rSݞcs~`Z b7Җ8!9aLK, hjTC_žxW={0i0z`FddtS~A"ï"+0GS[C}/4 k3˾A [(ܼ!QZ}ӏʋGtʦÇP^= ^]/WzȰ>VtC.w"ZT-1(S=NyHSΎ|YR`Si>cM9\ ( Ɩ=ӜwqzHA8u*?=vX8^860,C?XZm{K.<[ex{絛mZB5 ܐላsGk˦Ě-nGir g[+,;{cz6ko!mqZv/Vy_m#sQJ|̈F%AĚ6V+K@o/OCLG'&UXG7r_yxCz`b%\H tfQ?>Ue>d Dԋ˛9: ZբV_(H|^wKpSt{޴]@Rys( m^&kOYq518֕ݖNhȐߢRѰQnbCQ3>n\Qw^$3c%#/{_-Ӣpb[n+H% <,ިApn8>k s93<>9teX n]K_dDž ^o{-oy_ RPOS|$T1.M/6zK W<;wUnRErni\MCtuCXx3!rzۓ L"#2L uՂ)0C5^љ05|"!p+ާHڙII/M7W&eJ ύKyK]^(М;0R;]QN=VS}k|x:U֖b@_X??/%p˕X/,\>\MiiJO04!&`/pdAğ :֌Qˍ"V%W|7"_T}c~}dub-֝=9bb|w0 x~pN60=nI))x@AuĻŲjDv.[#~]k;h!4,JLwCbRqtX伿i0 ra-TlPmMb^&0/̆$m <K_ֲ4Uj9aŔJ:b{cZ72:TTӻ2Gv! K5ӨۇdV@2ˮArB Xs5*- \,֚eI,)ib9: ,ChvݥÊ.}\U+1?64:#[j˱?BF^Y9 _G BaE[$1u0AP~.{6}򫄲 Ŏ3e ?{y[< |8iGU Xq$&he_ٰY4ĺr3^lQ͟UFUN{M~0EQN^m|tݰ*i5=fRe{ʩWOqT}MƺH5VKXѨ" TvOD;|U[1ϗ֧;, OqKU8+|A?y+nHVwP}<,#M"Y"m CƮzET&;3pmLbu$J@T:3%wL:4$/S.im:JCia\uhn$) ozO% .f} rK>>^Z]cAdC_96Gആ <{)G{4]r`okƤ ;{}Ŀ7ZjQ=I;I0?9 8eYme:O3>;xIҙ 痯5(,:t :j9RXϩ,Y}HH1 XцR 皸.(=F ZO={PEWDS(3P i[f$C/N'APEh\Ry єXg:q/(fۭh?;V ZỼeٞ]= &61 +b-vj =dEH6D/qk 䠪,~a%(#6SL!mļndFu!/wqPJbT1BZ1'V\ܫwێ04#')=Wc6FT#i]sBeڦ ;FnܤA3jރ+R4GCˣ>AK`=+VaS6uB S#F2\VIU! iZ(jݢPOΛepn-Qj> k)N"gR1jGm߾ A 8B0՞e/-OyIJJ#푄\8m^5uBLBZ(5ZwSa`"Vsm)+ר֠j=\_㝾٤SqUG%V?f?R莣jP2~o %cJgtqj"%Kz~%:/}q^Y9}Z^Ğ2_QۃݫJ>7;30oDHKN4 t5Z ¬:LDo$xITьm(+ʅ'F&ə$M`i5 dJt+:17"UB-'`ō(ya9ع 7Ѱ2dܾ:ViܟX.&lyia34m$5:לH`y{W] fηmaqg k'9w}kL,ygYR[i~Y*;!G;2( {0q,vE;to.{ZK!9>wÄ_q˩wLF0]aKa꓆3^#(ϴg= tcxI3qɰMcrB 6bz#ԓreּw;7c^K{fSte a69"a;aK KK޴`aOcFI gϠ=*vO7-Mc#8Њ&|iĨ Yqg0JRӧd^\Ä;+׽h "+ )![Sy{آh<8mn[#̄%m-X#͐P2(KXn T6RJ83‚wWZ{=M¤5uGO{r׉K+KOv5 ]Vl:dSF{e ^ {%δߎ4zws ǂbC@]zeVm?{'p*F2sS;m.+_՘]4V&-C!iPgfHurAq*Ixӯt&a%i'.wg]mHԯχ>7tm}0VaRfhe9ʈ\U&b8B滶3v1xT}}ʈ`ei*|J-H$%KLCw}dP?\UnT{^'vV眉ψ.]Ed/ɟS3ujeQ00x5r^W4T25x`v7wy ?;^FgtBaq9Lȁ Z!wU}3<#ޞfo{8j2u{p^6aGth6 D:8ZZ(ŷ`}& +6Pa WS'ʂޮF hOl /x%Nywsmb.[?X$~)Ȅ`8gpqc0mGвaHh ?bEw܇H(:CkLXP6nwOȝpH=/~J_gg;slS]Ѯ)ff;[n\%fXxb'N[B3E=o-UlBtK(O fc3Â/t紥€ m@ѯdg5L``J χ -kaJ1$[.̶9(U}Dj@ir'K j>,t~].6=S,6{ M=6yHe??僘d)֑Х,XA\~ZaHHp&"aTEtz ށZS]=e3w}*gc_ͻlѤEL\8?pcꯌ\_7mbuٶ *{FfPy`קb3sKr吡'Aѓ+^yUKm ]TE A1E{h0ӻ#xzJ",K)*L^RQk'2-Ѓv0Idjx#EJɁ2첟~ʦ#Mpڒ 44b%# [AOR&@=?$\K,naoA{ù=)W6VT`laC~X(~7xZz)s;|P4󦾦Z*Xq]3hMݺT̂UOO$b޾ hžޱe#Vu(pLVg/U mdgpbV+8L7uh@ E[tmh|!>ɫ|u'F7INPJsuE6i1M,/cLHWĽHJ~@f_(ci0fr7B[MEGwPX@:AtϽ5Q.l7]p9UtO ίEOtzDlv%F25ZW.Lb2lfPÍ]P8%v:W5co hi<8J(߾#oxH&c% fNj2} 4qSSx_0q`̗) iz?Y7gxUwWoƠ{i6lu UZ1/hסP[0u@T9zPV 5k: ײsԹ!@{eq.i%)^vB Z lFA%6.lw?:y`ܴxI3 ur=!ɨ]kqP2?|@$`]:WfkT%mz1;+\ĞW壟Ă$&+'y/WI Lc#J.3}.MhXxh|G3|RaߌA>-i+~B//g«l˃yb'~ZZ0^< bP4m8sL^;d|]4;|5u9Ux5Zzl^ b< #&l ݫIX@R֥2d0u7u"dqF') }] /n -h.f?~ QFYUܮ}w# Kڲe ~u 0>zne뮨 Lb֑{]rE]bľbdsz@I3\o> E;󴴖"4(YRիj"m=5D@ 'jGm|֣E%CA8J.ܶ{|M}th5 Ӡ.%LQ _ۅ_pd+d,f;@ *Z;Jphxmf8'9}ij5NIA$kkk^~+oMw*;OJ;638S7ujAظrӈ݈'A:5sep슂:$ [|}ok҂-{Y$lL~* o:e̸SVpoѫsߴuUx"6w~!L.1Bv2&+.CagZ#T:uɮiXiOlٺmNa׏2$foÐN_;Zh5W Qlbool-(OGY$&4"Ĺ X鸪uX -XCD#&<[d(C4̇Q3:ϸ 4ɱd5';eygsyjH020xP {8e9,Ld׸t c- NÄO`[cxxk0fg\Lp$وd5 iCJB+B*3*mebE39D'5{^=Vzig)0.<6-oVrB#Ùd@ql`;ioU!R> 5|;{DIJzYR[}ZZ+C[Xb#.$\(XiB ~+KevW~jLX!`|7ia1ӮbaF;v Y;3Ĝ+Sܥ,=_zoX%fn1aIrD0ZZX !M#NYT!SX9"03<4oL/) )ۇvNֲ!dBÀMO+YϏI8cBł_TUFcIkNW)`\<>؃Y>,cl1Nr˚LU ȅ?HԂM'2HPR:;Z'L{Q՗ N'jF«Ex_~Bqt@:j \QA O?Eaڷ̡#1?S;E/XHl+w"?t, QLx[̵ǰȵ m[KYWN@E-.wW]-mM$͓,#/Rט@YC[16۳@Rm`|lc ~E"'^Y$:iճ) ؏>l'ORU #giLJ:a*JZ; 9{_(*B:;28$ G2ZP:b2@ZaF귭*" %yo2uDe-Op;qIC8X "1[hʹm-p.YF/i#f48ԅĥ{`fOGmyTBkgǏ$|wAi0DP{N[@ӔJ?,_B\8[xkBl\ۙc;#S BՌDZۺQpt%6^ͿἧljγX5SeCIURm1j"}blEZ"ņ%)12:Ml^V]ؘ#߶'-;>k (7 `ڀMc-79yr=91GrDGţϨ4*u 6b /9T߇}4$wEqs!sa|@f&a1FPB+ه7 Xe69N̡PojA]CڄUgskt$h$`":`9~J\&];D$RūYrQ:!Auzŵ}d.W\3v9r?R߼1YW; ps]=he4ɽ-HB0X}#+ eD)z톏APD-UXuxa~XK!8ckFck!` xtf>\kSv,;TY jsydhQ1"r'FQ~ Ǫ'BSptx#B\ ių5KSH&)Ÿ#\.ai%BY-B:z6/sQ:ᲿF,/CsS6l&z]X݊=DZl쥇hևSJ^J&.zdrΈsUW͙;@߸%^م30bFP]nMj|P5`GMcH50e'~.>O+E=d)8l rl&پ-%ˣ)!Ow!G_1~taB&DD94Jm3nQGVDuW BWXI?Ni:P7U_:dV2$ A1ȏPMj?~%tMqRw)sNe9GE-m>9&R6<ӃszEǞDnaBBʬ'ć *NGbcq}QoJ7?^E>jJ#H0>_!KYqF]0P%(֢Xx@9uح/@:_2r6:ChlW6w۠z.@0~WE b98jlLj;[uۜ"p:ě6HO3E3F TJ4_7dAb-\-0E]w &w{*=pE1?`;1=,Y& x1hc[Ծt׿+hb6A>L[F:ߛCca<ͩ񴯩Ƒ)ŗ5F5%{b/X;dx'GWvґRvUO} M6A[FV|CԒWď-샶)71uAMc)*kqdr>}` 45/C<qOs#yF(%XbKl(o2_ecKd5A/rO)M>xJ4P4RVBM[&U dQ,p]R)x/PSQ1y:OcX`N_C=齃2&G4ūP-nq#8pt8igPlLXćds~: R0=ɉ]#:F.B`8TD"dq 2e wMoyp1$I4W] a3bo}Bl+zC.8q&*5х q 4 ]CHܥo ݽfum1fwO&6v`ΑgEys,Ͻj-!tsf sa&(\ǻV!ҮO]e;bĞO)agl9!pl^,ۛ4=y_[+uֱJ+vj?YԷG5 nfӖd}S&^TTؘ M蝈U2 ?{ "b]99';)f)WC3ToZڢT<=/e+c,-Ogp@LF:;CL~DZmZ\ g:x&j~H]9*uuٓfZQBDYZvQpgut0ucŮ.ӆ|=8$8r-6Ed,) 4?SE/UѶ | =Re>G4ſ- [ efoK ^َ3sm42'NJAWSU@?;"q'$ie!Bn抉7;J]7yZn$WY_#[:1s>'\u )W<5ƈl^QL=VIK|| ,pP`<ĎԾ-PX s=) 3AD\ OX K0yҫɞC\ -806&%n8r2z P cK7݉uRXOVE3B^X!XJ3\BtFc[_\8@sUQD tʨgP/13ĈV9#6E0⢤S^~ -teJ |>"7Y=T ʺ&hI U+OY[mh  8JUZ*/btH+J);=ߠoxEr06>rpv7K}jf3}xM|$'[l1 ~22Vk)UVN>oQY;t-\_QK8$E4aJ:*xB{}G#;ܹ$hғk=by?YR@qr=VKʉV{J$-Yys/}WNaێ geehնC`g?\ǤҦxndVt1{'#|ݏ̎Ɗ/͈e )&L|dy.b*LbW'QMtF'!JMظ'[ݷ0 ;v!#BP+B)hL㋮iYb^qij]_YMN`ֳR6H}ň e^'9qi7 anu{3QbHK;Ƹoj%̘^&O ϒ@,m)Mlو)-o!K9龀%lL+ sR5? 79ԿA 高RٍctC6άu Y6k]-#sMqzQZQnyvV|(U=~|oGMNa.B[2q &zMK{XN+띇3*^4Qr>(ݓ |PvؾVE|FCgBgZv!eA[[6;{almN~yfߐy>L}5Bs._aHu%U!j7mMZJ7bsP&G)>e.s GV;H5: OJ.$5$ƻ6] *"xA{.u&D 3^'iux-LRJN~:{N"[%bWvD{n$ SfE΂j_>CՇ#1+tPpIm2 k'RPQ-$!޹qOB=@oBwΰXHFA)ϟxZe)B䬻'+n~U~@5\US]~m k}irLSV'-l~Nغh Lx=KD|ED/MeF$E6A(MvTEn!6v#\"bxRUZ7giaBO)1[c~NSffڈ0}'dW >q}i?op{MU/]Q(sKƦV.Q ZKH)&!!:A7`:-~Ux6΄Z7'g' ^@6,H[*'QL")UiҶ퓪p  D7 rŴ6o,ۋ*lGa~'$4K) /P-I9"뢷jAQ?8.hEf1M$6~s! rM#DIVg9"m!!y szAr&~Zcvmevqq>|=!huS43׳AŊxї>DR.[0.nq%'5\ej27!G;9'Vp+mcPm~ҍ=)C4p* 4bk߽,7}H>TS~8EJMeG[ac8jzB#>J2A@[ۛl[ڊ=®rfg 6y%QK~%god[isySteF 1ℸGy+_g"D89S[VԮ#-~{*"v)у L.,颠|>MEL(n^oĘ8u# |9z5>y;CeOU³AR$Z2A^9LwӓEx`9JD>Ǔ"ױnJcE^"ߩYN"3%":/Hl.[ b 3<2YR(z fNFF|&|&DVV_Il@.Er݁2G?f%;CRReh#kZ؀t3cZ mr0F֓.)aa,Q̳0z`6?h% pٖ 6)Cz&o_ pvӢstU=d3MQ|SI CŭVEF%@,=mE5Ѭu>kmK՚$Pfp-`k+|义#h R]=fsq%<ϗ"C Bi@ld`@On#>u\-@,ZR,q2v  :8wV15|\} aT {lBw8H%uS;Yc!DDiSӖm#JD i;I7.Ka$,`ؓ w* dM#;) /3Otia35-B,Ue`-HG=G3;M- L6OӯZA~ s洮(ݠ^a S*xk = ZT!eR\[^W՜]G]˙_gˬLjth.l0h <­1%-(6i`GA 8d^}~?˿ūo݇p6Ƃe=[L4lchJQ*^^S,t$0hcbo|V-nF`6cD҉fqCi>m.>eO pؓڑy vїo& 2?\cpɆD0-Y(3o|I.üt#O O x#k(>̲(ٕ04W tNq^ݷ\]O|YRy5}!O &> gDsr7ےqbw9^T$h$x52}tpu/>ۅEDme iI-i7$OX|Q3{n{շ#E)KO2z4wyƹ )P]Ǻ;!)P-;$ztW&O{b+ek-,IvGK omNnaR#'mLӧg gruaqwkt%x2ك%߲^Bm5]!keUbD&L* &v^ mzȞi $D*{fbxli4T /LϡY% YUqA->R5e ꀫ R~6%<[MN12L4풢 pS,dĸfE>M(7 *ΌA3aXGZ ~~w+g3^}i9"ntV-tg{Vہ}uhn[#v/" .^Pհ7rODg۱<}H=^D.EbD ]55}`_ Jd`D3p3zR,ёdnjO\Z; S-tc{E`{$>L$9[q,>5h~S{B0.ȁ3c^;ɑ+ioI+h,zkgglO>[/Y&#[=\o ;n\-lC!sYZu\Y?7,mT3 !.kW l"c.`w-#NA,EC&m_+ .3ؘ8ܬ_-,{'p*Ke6p1jy=z00e4Ԉ$sF9+ȳ~rBezuY N8d֐rv\5.INWWp:g3= DM\-OJAO;ϫwOPI0)03ZC|->'zySsk.Lu42j,Zb| 1[{^20}ѴB!Pc!E=6hI 5؞l}W8DxB;I$ ~d*?f@Ҫ1jnCx>;+IF1 :Nk0i2\f9mBu1Ѯ#F6šh$D JzJo|rknF]tpBZg53kѯ=%gdgcKpdWI1JuYb$`]Qa DEDioޖ, ǀeXW|<7I>8$~WeR]pk*u"0g٘GS~"X!k`y<鐏ZQ1)?A!!'ٜ?@f2g:^ɭ pxgRt ̧.DKp=L #pZQ"I阞/J#_k)GKi ~=KNlw:}'u(h܇WK:Tetskne\kHLHm+ 񨎄m4S-bXt>\%obBv^AQvIQmǥ\qn-{zB1>qIzuԝ+Xu+W7s)$xb2sTYcW?#L~ thP% Ih+2n攼ȰwzNPi=ƅ)5UK!ICu%J;?v\Of׍y. Y94o>$G ׺`[䉣BZR֡sP/n)7o[Qǐ{MZ XD\8M 3c4f4>wrH%W,lD 9Tk"HFEsb Wٛ,x!Q@WU`t|W\hc(vldIi OD>++]tdfޫKsu ,ԿkwN=pK7mQX&|~6fA!uE5Z<+ziro[LTr fb "ձu?31סkJɵx*K}Yld`1y:O6Ty%\vh 5ֿZ1wQ@9e&~kn/4ϟ:+uQ04@*jLFl2Sc[9>*F}3y(=fKs+F ^3a8r02d3 D+i!Kq( /d- 51n4/L:M|Ǭ@i%EɁ/F-*xts`೗n6zf@~aG~Woɧ{mv1PrkE$Kk={=VӉ|9H/b:lb@M]TYJbYg(VD7aվ:TvE\n;8#ѱ{buI&z5/f22hq׃ȀC*WcɄDop3/=#6f}by(#߆x=Vą|zT=jE .KTf{fy @dPcq-%6:[Wu?W3@z9f8mk"ǡSU\;Nݮ^G3XƘ&5~>^S"v; t6o^3:8-AoU(Oφ `(+.*Ӣn[rq:LL Zp|)7' h@D1g*eOCz4yLU򝡧Ig` ;$0Hq" :B&VF;FӴdU&rKPNA~tMYqx>CԥwC}O:\fo[xvasIyH-3~()f}X57HHU.'ldUSh;jlo, ͽͭ9)RLUAmcsBq@j]b A( CKC֙G^Ep+п)߆~.'O&̾v+Œfؐ%Ya N!LYÑhHRvp̃q#u/j! V$-"$6?6ncJ8RjK{E T^j1Ռ W(8!3R8f׼a_ !p^lu[*00 ~@ץM(kt$d5n8Kt0 ʕgX&})t)ߖj>Q{,:s_nFI>>}HӳHwgr>U54 & 5VI6K2G>.uğ<{MQ_/dKb'MSz-Bhh#t*UY"-SiE%S}8W#h7IzY?G@c&K ]>f׫D"?b C7>uEx׫x.tyzO!5hMo?`F+I|"`;v%>T*#Tk{qk$YZ:42*dNH>r@cEhgBP+^vcvJcf'P||ѳvkzոaS*%4S ^8 T7oaq]}ǹY(aEu0,3bjPkޫ6vzKqOtV{83i`$Yҭ#'ʬ_Yڻ@PHKvYmB0G:6 P`k#J;#Ic~C,U{"zu{A( z˜^MJz!5T#)0*"?%ijx_3PpSMZшdA6*R!^}ǿe8']$JG6z;+bD[OD~^i\sOձ-ɎW}fjO`'Xߢ vB &ECA؉ZPW—ZhUkU$9|?;pn..I`[u{Adc ˖r,X<_#6A۵뮀GUC*tqӞG;{'oGrv#e3xT;_JwIV>{PӻQ͏GR [OG铢5S11Vzk n籚N6M;i2]ҥV6 K|Sf-Ġ, pk jYdN=bȗb?n gZ4EoO:5:+0-+D p;@ن搭mGr܎"sBcz\90 i92lܶ.@yv8n܈\i(s8|h1bgHb6Ӯ¥>k呟N B#,sP8Q pQ/Q%0tT$Zwk"yd@#g<|򵎠 @E7WF,:tt94>ǻ|@қ \GF.U,XL$m?׈ iTpVp< =I(%ĤC341+ϒ9ulg׀j1Iָ̼̚+ACQ^ҬϧZ1@<_z香<q!xL,KhAD hLKl6z{5Bո)z| i]ߢn3퓺VfnROޓwLCh*XNuF%H5>Q vb Ӵ9Lʖ`iC6`i;︊@bt_g1٭3!,ՅT 4Vά=.D0cLP : ;Srl#{AD?NCcyX#V~<2I8*wS6``X\%z[ZeL<#O{eʷo7`XbQ֯,cc{x«>1'Fw9HQ׺3#n]𺡞cD9Gf 6dndr~.S0<" aM~t,4Q`:K3*7|]ʹM'63<} :e_{iE&F _dW?&?#/IlR!#OPύ=i׏tr'5X"-Qt]q X+9ktf@b;f](cooR|8EȒ?/[L䉂;n˕8Jڒr<-F*GkVJdw %R?oQdBZJH،OE3/ WqFcR~yƠZ]PK,TRKn!D !Br4jfXhωBb01@DqUbG%4Hϳb2*1IeiX׺r;GɻJkw! "HYai^(eOB'h1g{Շx%%}Qf/GijUjI֩[Q[+1k]I_CP8_s; tuNY Ye+gW}[N ccgTvzBPL|YCGƖbyR<_Ŕ}*'SE]ӂB?GyL8!Fv%pt!/nIEmexV p~6PC> }`b-5j]x!~@du<̀[irP|qU+Yqg `c%4Tiv 5M{~Wd3  (T^h#>\Fxۮ%UN?ig#0P:q}b&G=n~YC <pW{D^0;/)ReB]_"fQ~ԙN3k6@A/Gv|@ooLK }++hk+dK bgG `2Ba*Q4&t.lБH6CDtfs1 ZNIG:uʗ&4H9Y\r[F.$踻&kmyAo/ye  *DūnȿvqR[%"Ñ0JO̊x}WNn(kB`0(jmHz/fA©M. gf8 ]V[Ra#(Ц)]2 9 @F~tPx_uy@t/|ӏzf7Ie~pF!@=-?+(/XJʐ \G8q4U C#pc;-WaZ>XAVƐEhxv"Tes/_b4u/9hH]G7w@&eyϷnby~\vqz!Սež#鹽vLsS Pd )o=r?"ޔ];xݾqL5~7}ȁw좗Fl""{M5,FX0ƯvoԳ#E: r=CơVxӠwlSi. }k7 8%+')}j <̬`rY%՟6epSx9[wOlkpRk5Ÿ#Bc{u;1)蛉Qcc0}q7n×)s۾k$j̏L+IFiSjlz/-ޛTD5O܇fځ |We({&FII~E,Z4.t|Xmߘk/9?)` =h5LR忽Y]R T[p2qԪ4bAYHơqܙdiS?^U@G# ZG-ë~!`Yr |uVv6 c$uj~8~b~AeL2;V(b2]Ż)tG|ˡ4n?랂v4&UPlZm^|0CJl>L B;]n&x:֯l,7o!/T?'="s~EJ2͖ʭl4Ԓ Th(ɫm YWm*-@2NBiG-cuYNkԧDb߅R}ؼ_7>9rp\>L &nL^I}WPaXn-]ͪqYБ5tՇיݔ [\W4qiZdW/S# ;Vvm=ě̓iu}ԅ"V9zypkվ߁a7)r WշQC' Cf ǎ_WlIX<X'#j>Pڵ'ev0bO^Qi? AqF]N&uئ"iH~--w?Ym @bd`"&] vcgڊb3Fc@k \T(Ӻ(Sd}V8TMr-}Z k"13+.3BR!@g<GTRVA|NMׯD]7g *cKC"'N  ͔!R|枘x4:VRîUQ QuI>rbzq{Gq/ݔ+kw;/3LKJǟDڨM9^BWP3B [WS<7(}A+:Sͽ 'f`-tUX~? u?UC)uɧׄ%q\?Lfб5fCbb2p$v$~4_$k8Rd&' ̆6poX|=}[`Jf~h%r C~@G?|TF?q|Y˓ecOXf` =8ehj.īye. :n0%SSLNdJ\5t;ƛo,܀`rאE3ZKN)VJShۣ#.cuZ|`1l)cXf=rj^,{+VGGyQӾ)H4jtVrX[8n%NHC4h0:EH "W,%}RVlX],`RrKqV#t 򬰤((uh@* AW 'RIXfl^ [me٫/1xhZ>fƢEI̼m⑼=| M类-Cƚ*h zae,]˽F.s|XmN?Ĝ0V^TKƬQzU|>NIt$o:,L&lrKFӾrI8Yyo~ o/׌';n71S`F䚥`]|?`.״`ງ0 , %w6:hzUr#ޯ5Gf(9cխWuuؤ!Nec]5Aa?R+_8<`QʿGN2oy+ӌ+v]f'2Ŧ"]ȗfo9Nd &^$5e0e^߸<iҲ0%J&Jc>g^ ! Lq26 v\Tiv[K,xs)S*&{"iCr̥BR փȊvYmY_kfΫ[:f]gI(Cduq;9'AJ̢ :?JzL%0a4`hZ4[.z@0)Xٌ&u6DY| c lg:m 4F,hV|NK 8Z{ٍ @HTx=®i/Ոm@q7 tc%L@ݿ ڲ^sySΜB@uH.EHx<.XnAvfkJT>=ds@M 8rriT"[b/*Bɂ pUNNn(,$iC3K,ZcDͦ5ܨlMR@ =<82Q]WFGweR(@KG G=BuBfmt9r5 ti{6u<`u$Ft)9 (P!̎:vUe'VŚQ|:peHhkrϞ2qx_QSaT貯Z.H\Q[e,}E~^KV -y7=7_N =WM Z)Zu>$q.Ezzl2hIKT`%ekQ1ZiZMm6Nm.e\-gFfA7Dbd5K{u$3GTӉxLzV28g9EF5X~I£7/m_ FF8)qo`QK eDc$6dF_}|%m 0!2Ag ʱδlklQwGLhOظ :d;Meũ5ئa؊nvX1Tvl.{}gNGΏ݈ 9^d̷mIql̤=j#)Vo?&KG!_Æ;H.As*INI>٤ m[;)y] ;T??,8_ '}ADǙ}2 ۄL}N_alK^aͯ&c}-#n$,aO,)>@5ŏ<+4 csȨ?8 Dr~g6{㲊AZf@jVO.j[DF'ڙ s<H5:rOwVY'?[fx5䢖R(O7U 0Ya))áUSzFi|(R2\.nXY B]A1Q6͆?F3%Y}ާ(;#+n/˦8s'f27XThEYְP•ak ]rD V7]9׊R`Z>I\B% >4sц{W٣P kWh­̬:w}xvpZ%<^ br`ysš,ճI "6:jKX|NQEid>`YEb6:Ӑ+J{s5c8/ڝB-mG]V%c8 Z a="+ u饙ah>F3QBV][}Zf!kc5AsKtu3硼 XO .=nU;>7 ~JN(f\,3e>3ŎyDq%P HSh@öc[nVQ1r&t5`C7]x~h?9v)I3z"뚼k'.GG(ځ3?<4*ckb=H8UBGR0s^ߠň?P@oGHHZ%[Zm4y}Z:m*UڳUNxq;K(zC]Hm /oDuA]MpMlc@OȟBvb3䮶Ǝ `&xڰ&[!0C)Nap bJAoz&ƏJI,%b)9.)43y8W_Jg zܥ͘G^ !-0dhlTYU4{0V*F1 #}#u?<pivJ Pܚ["ww65n֟o ,bɶ|{&EPg&'$]~W)ٞc~Hr)yKw0ric9rmdp=xgJm}q,$cL0F6}x^ÉQ6*^8SNBIsGWO]c'"8ϾddW6SL'm}dUBS'Ln7COb% OEΆa=r\j>̄C2;kNtZrL܌ b$K,ix<ffR:AT>CL3!5ė}7isݾ "\̒>yLg@s"TSf+nWp} 7cb~I L㥳) ,ی>ZJ)~I1V*4~0~' ]nNڶRxLہm4ٕW֘8\~pH'>}H!qb LF=?"[%`OmF#mVe%dg>^/q6/-뒉qp$d`iaZ%/ȼ~i𵕨6w: ^ b?Ԥ;@783lDGCb&?/:rtltGe)]vhʊoRm/Ҟ9ԘmtM6Z6Z^$mJWojΪ{iz?59#!!9Q{T^as-VfΊ޼^,FDwؙ+x>eA>f zY]N3:T%sCt&Uz1_-f>Wd%'"9x䠡,ι'gdnwzdA!_B?^7:b{W 3DH)If!J(AioL&Jx*moK*6g+*iq8Ⱦ32m =wCNr: 4T̴TGM۾RbҭH-6͚OI cJ <1,,0vBF N3ƃ쬿rQcd=C6 ٲ.j6G909+yL/TkXdZ'8kavʌm ڎ."֖31a @MnWZ/.Dfft+6)8V1Ao֡Ps,b:$PjFHrø1-.-g3U <0nG'HR1sTRzYV9AM4L[-(fDyΎzA̗8#`UCPe>rY~ -|L^<<8 DZPhwU#Pw8M~@ 7\ṂT[",LJ=sU!5Ȧ*zf jAtAgS`< c6m#C0m}FOnHPp4)9f ɟMVΒve)[7ShE"7Ot[>?V1cڦR(MSBuzLU3c'q,T =h5S{^hI|@ఞ.f g e̐!-Rp\Cistcs󓇌R\s?e/p[ nd܏M0p`_l*L)={#B9 8 02^\'nNG%]'^iy`Cw >,~K^ .F4[Bx]O W0ݠ+gҁBQ$hf駧aH^RmÁ  b䩛D5}Io!6DHq|MP5qop81=<\ Ĺ6wv(C˛Jfo^ݙwJfvlU΄&`vUz< x&[Wh{.܋ tsl!VAj=~As gPs^ Ѯ 㶽6mjw0~O0 ^Pdmoǥ7Qkc;" roB(!#I'#ܕk_]F_Ug-KO;aY+IVms]̶jƴH-RQ+s۴M^wQYʬsVf@N D ot:zT`36TWPwq6Leܷf wpl|. GpAGܰn 7`$O6_Q]"+ 40h0)u2[,Aon:TyD-j%s]egE;=t]azgLoޠAǻɈij: Z5\(g5P߬ ЖM`o _|_&u,{94 Ll](MzaCuDf9yv~rGV:wY3+燯4@ !(oNPEtW>VI|Ov)RԘ.b_v胒'J2ewh| ]>O~Atss>Qњӆsb Q=d֐$C<^vUy#E 4ds-W{))4jT7u7%)qvZcƍ|,h5jj0cD0U { ͭIqZy`g d{9v9 6rͻԪ.R@?Hx3R xN3bcF wX]@qG [gGȈ6QcѫM 2ë1 ?'ڔD/:dxbr I<j ?=k)x֦U/O9"UbtS@B+:K=Qs 1QV8 ũ SJ&#r*WrOC`^v/E4_¾^Bez:AŜ)Hpݞţ摫b s^fe\3d7'+sl.^4_3[X|F$Jr b$,O[1whM.*/$/5id) |jj^^>g P%?ȂTfKZ 63 H_sIJ \tšiqoPM<^~8c: dmȊz5_Y nIu/>{rM6 nX浫R~FqWV 0^v&_8ޥ띖 nM%zU' Ss%-O]9[)$ FTx) j@U&}Pd $Ei<rj!6/+ jy{1wM*0m95r8 ff7-e {-F%xqQev-7;VKQu#Е uT"b |Z|(bQz>OiM#_.i7,Ael> /25ȷ:M@wݚ7:5/ƃ7-~t c6PmVsd-|~y jBr7Ϣo T*Ȁo/R^Ϣz~ % >ʜ),~~ 8 ֭g_m6Rّq= (ɐBpBǟ?u0CTdV2EVg8:e?Vۉh<o'zyi6NVB[b4<a8P\'y26$_EOwӖ{+%싩 ukVƲtH,69qSaÆYYaSXQE);O)Qai;g^/P璢RWuq5J8ϰ*-Cx.cww 9ޥwJ\^Tzl]M?&.X]xskb-z7}fV^ݮzjaޖ?`N&j?E<67aIez7P*0f"wESlt0M~7Lc5-*3u\^1n/=BQCx\+(EA^B@w_ N5~ێ l[ 7*-tcQܝc2˟rBtJ4aVRk^mx%hhbGX?&(K7:o-@`YTͪBH~'=¦)t 䋋t@"(\:^ao)?&,r5I4qb;ExGE}q#_+rGgGZIj݋Lޞ֖)BX[Blb {SR]?:J2 ZdQ't:W:t(<.KH͏"A$u0yxV$b`k7u`6 {8f"٥ P|&bϝiüݏ+zqHDףSd ;Sxz*ܽ['(͌3VRaD.}*$Fm?ˬHׄ6e0֜6J3:;u ^+Ȟ۸%B;id 7uJæp#@a'b} L#g}fᥗƭ"]9PBK[CHvI7j,U%?6?^|? j#91z0 WQ[l8|\<l0s o\!4~9*lj:KãNKi:!N򥞹鍍߻[C+^aIݰàW-7-]_^?FkEzU0ψ1s{.tK/ۋL9^/|qihz%0tS.""@Rox_߬72L8SoE"sSۋ젰i8awH5=WfT%UNL[hr4R!w+FP1CfR¯KИ_ LPƏ`n %V(p}238A9SѠCO~p}} ͹>RٸdА5^ZsRm9xTYeFKc(_]ͣ lX9~Ȇͥu{ٴWݑ&=%h7;i Ej}z`\7AJep?=d0B!M+Z)՜a(̙PdSJ0JGM5 sasf_s Д`b8C2G~^UGw$ -Qx&ֱfPgTf3~ A`3iAahV|`A0#j<= :0*^xPU 黍Q!Thnz1|UUpA7&74B]fc?RzO|5y ߊ`_o]L%oo!!i((wn98|XKqmpZأpCTA@&I8!wiG3˞6fӷpqe Q[xx jG6 !Y{Dj*N-ny*D43͸)  xD#ŽBFFNEn1)CDvz m͎jBgoEJt>SZu$=Cv UZ]$k3hA]efmS gdsX )a[lX U[͠(nd"n!,&o['QFH0_߸Hߏ== yT2D8#OBbo&A 3#Bk2ߘ WhD: <[( 9I\qpQ_`MGNӿ_+3M,Mz cCݓ`H<~;-HZ1ZLo0 yqP>;_!K)AȆen{?T Hz%VVtG{ַD?dq[^4-S N_@ѪX[ 2ڼ )a3$MaD%xb?Ɓ"`,!|#"o=C٭ .%SO"PAJltr9kT-9,cCi6{|8JvC34t7KݺL1˰1H$[_7=ч|]>!m/)hPVW$j:۩Di~]`] A.Ϥ_L,FڕN׍Z)j wGԏx̡bi) B:Ѯ3Eʂ҂('ͪe ,ff)WEV~<ҙ!{k2Ŀ[#~GUE W4eP:Fd55ѹ,(,߼'b<[Qr:"P,#JaRĘ%Drb;PSXhi8}}rm n<>ě<`?C._4MRBz L; YPҗ5Uu%Bɠbh7r8iK",bL=O_f%ޞ.&u KI+}X-BJmب$,oBXW2Wc-x)>PbcchB/2s4X,7;2ƹuBk{k[ 9c'/igj{\ҏ :i$}k7䇙hPp<Mn׮Cːw-9ez5 `H;q]!f1.8&a+Y\ʘEb ^/D~-Z$}{)YqsIpQ>e^,KEX!q IʃWʓ \5u}G5Ff6X5Lr>e!(k簜(ɩHv$Rhu ݊ ?w#G1F.mPƵ[{8?٠Fov/MXT?;[ `N?*r<1U뗊^k;U8ɾچ}|NyQrY \_V`xN}64e.=] -Po="rVD?4G]^[H&Q$9p&YHH=Q[ IZ^MySY-qigݖx#%02m¼6ع3MGv,z*p\#D?fr `]g%kJe`ו/پz/e]"B(#iӅ6B QG#eOr%ss5GwԸE&w߈B5]p/2\5ЌmZ#|Mk䲞H׊3Pi_bϣYo`%K]RjIY̐"JPݦp0n-롱rUNPzB$,)P7Jnbck ebf]E 51ז G6'Aƶjji=q*Pd'v3(=*f1c1+O*ɷY2;w(L@*?f+xĹJ|jcbGi,lU`^Tvo G .eYY-%  ^;7A{auu攚m VhXT pc`]‹~)TYe$g;-6ٹ78e@Pa}Ra}`9]++pra=/jE_f:BMﯺh=OCH8l)i g=^341Cj̺z{,?O>>a1VwT=DvuX_2;7కA.5o_֖Z?RZʫm9m3Dr<4k&jsvAu\f@Jq&PkvLhJgF𾶱^in,qNuvU_//#e>Г_ӣ(U*ZS1Zx_?Q~M]pEr:VPεp/HYJ[¯~M|sMz87t t ICR|I²bU6JP₁ (lkuQo:ŵi"}_2(x@]!IĒ'C#5O%z<3FyIzGddH<9##Cba4G*,GīHwNk JJ3bw -y{M2N~r2 <,FB2o1FoZM$u&bs#_̽gݮmq+ŋ :3*̿rkI0tr7ȚӠ\toV-=>xq=D4!XWlH(!\t\'eF fGwFybݝ^g4|fH;[ّ hmfeتV%JQfeNw/ʡ'c߽%Ψ@o*e[m /]eP{)#iWNg#De_#UˊBX $= ztvׇ65gqhKf9dA;۩1! lrW0n$g<d3HU[^tjB. ; {$71̇V{U9`]ڟ惝p8[zԏR&MzL՚\@jE񌦸$q-s3s@ͮ5OrMLD{ImW4Rѧlp;($f~9ע{mp"6KzH{rw)EA 1P(fL!̩9lu޾(G˃wbY.Hۢw$S`vt^"Ǣ"] ].HtKh"o]*~"daG'<=Gpx:[FAG^jEMX!a_{YzHq#4w1a_WRt+Y͸";F|m+s؉:Aٽ'ڕx-Oexg"P=u2/V5q:Pd!1Ԉ])ջ9պ;Ciη:e0&Z.Ouiz ?W䤦m"y,ٻ4YqFT!y1%c+*ovqZ,I%#cٛ3/b0Eu~]g (ɸ xe ۗHEQPV>8e · ^b : a;n4wֆb+$l;䋌I+hx, $VTBK$C6(.?G8ձ2pہvIQJjr=?ZIJa+mũ#)1VJ>ö5 b([̖˓y2?˄k @qjt ӂt\O(_:`yns?.*k^q7k& IR'LWMftv1Lb(b TΥBKL azwBk&< 0iu<T4eBY 5/ A2x TzyH H-n։e}PBE~bclEY11;tMW̴94k8<59LUM{$_LȽ5gYƶ7u)3OsvT2_Aj#hc> +Б>6 9.EJ$('zZFB.ݍt~4[Og| M 6Zwƈ)]嘛dStvZ̔_)5_%NC2Jo $jJu&Z= x-N툁:CY#qy8=UU7;&ⵇNcJť<㌤$}գѿQ5l3<~6()Jec߱o80ڛsp U煖'f*^rwbsp0]s*5<0 Q(}Uqq2ntm2`tI=RqfJ7ڶey98gK 2reƗ_M93T!jϝ ^ˢ #OD#㞯peA/0 ,`Fl*SZlP9؀-o~@`.)[.oE*dlatmO]~I:/`3L\x`J>CUN>pwRB^]a.dnB.=G}ehr9>On_i6Ÿ8XWuuͼ<VCUA05nNnso55Yne#@\p5`^&n)" <04GcbKgƥ5hR^r馀<|qWQ,p|xˉjhTvJ?] da+1 J7R)v;PM.k+N#BLk%|彯SVDgXn䆮[aaOz=A-e}MTũ{!(̒%7­9# (Nk'rsXhvuW_90ч%3>@ Ѓv`8J=lʹVݔƄJ?I9Tю,ZWJCL_<<)D\pJ\c ^2AU:Mbs=}ugͰP/{0w FYa﫝e i"3 6^[S/t4E׭qT6E3|Iz~K!qVA!!ĝA {,^(D;~0R¢*jBF ฺ`b[͵eT$Rf if*__D^arjGsnIuLEC~,A9LkF1oĺgb-/#%'+Q涿xWW) Z dؼʤ,JFWʓ|MQTTwJ_ *Ak MF ǝ@|ڕY2UF!s{)p]ZIlusJIPG}'ϗ<*}}2:v$lva{)IB~/,TJޮLf#q4Adf W{GXb V?m"tqhf `"Q|xiBAR_Md|$$]p/i+dh6'`FC'| Ŝ-ַ`N OiQ&8EjmDʐ5#-YNFF6cLƉApox&9V2i3滃rolVm` u'Ԉ9W>SnR=_h-ߜWٯl- u'{$Ҧ& $LW-@"'ղSG(%TLͳu[9 }_&r)PX^"&̨,.x})N$v |4Oa,xw+ M辁eAa#ݭKv .xwfy|.za+;bl.e2wz#(#Q|!j܌gn}=lt]yEh)V}-+f*D)i$!} c~ykɫbcG ~Ep.,~=GC1lgoo6ܾfង۾8, IuUDU3~2KH߭g ϰVMsgSנis*#ж~ɴ3g6/Vf3tR0PρÏ9p. B:R PM{g MXnOLj/Mrq鏲82MŴS $"~d(pfMC⯉]15|޵]5S독W 3P{vL8yxnuO}YWۭx0ڣ>w8)CyP[A6"V~ L\Xm~'j)T[#S@r4pÒ+='N&$ГQP<`^a(] Oer$oԮ:+lI _t%ytur/|HɣI] g:Rn5e]:$#`!84k,#1mspw'5kKb } f2`Ę,XD ?OtIcBSp/g:j?gН"tR?WP/%؝;xHmd`*<.}h?ˮϘ.!{ 7I,nҖ0 b,'&F+#X<1D(~56.!s>&wuΓraWD1(!{&sm3D/{Z[FhlfhAjIk\z@fj=3؉EGL 68cZ^KPmrt:MWޡq}BR@EėM"%ؚ}{'m~ p\il^^r HAc<} A%rz5,7`%"9&?,NE.jQpwDDvjL2$|e|]g  Pe?Pi>.;͇v33̉ /Χ7dg`\]W^еe.DIzLJEN"xif|Pэ ԯ59Rb3ii*c.:hxK~sӂ"mEIŷ0$S䛂4ds;k_-},jή0ک'f*i1Gu!8J_W#V)3&@Nq)G< `~Ok2/܇"n[g;E- IADpx#KYXwɤqp>:5?ZG>O" Rb8hxY F xwɡu7$-@6HOcyK{Y#HD҂ȠK(S4hz- *A(zr \Lym4{@'M5@t{[FEI4U|Tq,^=w Ajuލ0sہzr#Ե]~5uipYF1cQF"^u*lP񕶥7##lZ*QPZ\'{kK{i*#e9Oarʠ> {>$OA2n2&x_)MJ/0|:]m)6fVenB/ V ,lSvaJ^`vu~edoJqa#J!]ڈCWMvdq4uNedA za_TbK]ar5 Nm_nB[ɵw9ߤ`6C|ǟ򇦋:QYwaP;TnwKB*#/i!.TQc^]b hu%,P&p«gvY;[tk^Qn }VRŒ(͵`B6'(I膌/b4jHqsZR<(Vu{']:8!\*W(5'YQ-Q: @`2'p̣g}Zؓ%c3/ #R@$6DE(5x[ݦWIMzZ >.G" kJ[#ceH[<(&BcFWU hù*,헃6!3mf?2߃i#a'_nu;#!L&TvRXՔXh+M#$Mh<5U?mkw3%q2w%@)@DAtt y*Z's>~27aǭmLggsB1euلrȪHj^ UŽy6 ށYb}K] 253&En,SrڊMg[! mIRaV.*: Q>\գ,ZIbWܔhr3_z7_5RT]Y8+[6l6&3̀i.zݘ`]L)jbϛh'hLg5Q`M+ՙn_ݱʉByjõ|嬿6<61;Uw?Nj bkڜaI,q q*qP^V$yj]ir}X  n JnCi?+^xecәnדvϬFZ2\,UY^$Dž0~sj?KF6}1<{`*pGV-@"Ix&Iz|v?"Qy{漸AuNEvC9fߨkY0׾ TZ_F EgaN?ghF9 'lF Ut$\5DI,)eIkV L]'LIHǡ҈@r\> *O (s~ UΘ{L iB?g / }uy<˷'ʮ*%.C86vH~訖* 8gik" ]v/E c ,fzbLVWHDAnRb2 M0 *X;f9 H( 9CZl[]o6.nr RG> 萱| Z+G 68!*7Z*nwK.X\<"瑳J =ڸ[|lIVҾ~FL иk2ϵtM{5K'^->l^7o>iVG; s5v0LS+aYcRRLߜcRֹb:8n6ׁIl?B6EHVM#/Qqq io%. g0s">Ҳ$N&x E]ql\[]%rVl:Ɛ@~&wIr'AeH=+_1,SԳDL5&mSLCvYCZ߶ q#]]GoXO;\q549YiuXNZhMO w"WfdJIۺ{J ^{ *ʄ" dnG"̗NajSّ[+:}Dʊe!ك@XRc¡Ğxj%9t6m7*`n#nvO)DaN,{iP>[,jkFjf%xKQVX~*N3f|>x鍊jL$ Yd"4&DA9P߄tЭW7tt eY2*ϯ&<azs$]Kg sS2A̽Q%|}( Z4B Fd/ضAvlT ̐|_5jD㯴8B]<[++B i|g:Sie!Zd~ۼ6=ElaqmwtXn+RbGT?&s[9fU"-zZ_҃]UN.. idTx?Rď\#v֔ĪMt7Ь5S=Yd`Kw عU)n‘Z^Uj@4m$  gβޯ1HPYj[{RTPT{m~j Tw?Zz?wu&-4JDНۃcTA .RB6Nr橽ND&2ق @)gOՖ%~gӟR\/J`MXlA߮F\B޺) 9"RsQ5c)r8:eVOіg*"0,iXUH,#pAQ.sFǣdٶΨA{tj>?ГȻ7 f=n\C3NHsuZ%>NDͫpW_Fzˁʅ},Ӓ%]_$6hb|NlT?,(VQJ0 i"1yNנ7ܩv3n'5> JX"K]i O0x[qEvʈoprDZ,W7V]4Lhx vX Jǯ<@1U>Ǘ `UA3w2ޗ.Wc0N>!$c?\Pv͟u%عRG9OֹT>Z$|-aBjSv^ n4 >%`peW~$⚯Z=MXCgp(AVky~BׯI_&6]2܍OknH*@SC1YotJT`Ҋ)⮗j߸oJcPpoxcupn?Dȍ"K8=J*gWFcq# ~njj\eeo8y ͛$:TX Vs=st 㒫mxA]I#L%F;ʫ%8ubCp2oRbEm:ި\Rot:$T n`P6mԝ9vl;s&c"oe`r5aAW0*p)[ }$0-b;SqdvjM^JˠW;TdNSN7tZ0O3DI(Rd),L;~jp4ϑg p~ WP%< :;Te*fX_Lv}d#֣V޹!_?Y^E=$;))0t39Ag=Ib\:d}C(D`5J&(.Srs .t[H>5Dn(+DiAъ,`+p_OrP/r$E&:,[]*0 CQaH6X8<-myMtAZ(}j (ؿOm aH[+7-|7rk.Cy vlG% K[@k1zS71WK'7B)(ɤdC 5#⸿NgH0 ŋ Nnˎ Uw82vZyy=f15d1GЮpx`|acxiNRHXc Xb7JZK eMCCZ>T^P+Ēl a] +[N J&AGu& +h륍2P lVGMtt1,dV7bDL/- :'Hy^`[q/U^Bxwh}G]JkWڨBAXqD`_aO&d><= 4%dqi9̪}/c]y_Y|h6 51Q|޳6`pZ#V'w9u(~+\>|57b& Ȝ{Q50%hc\!@'qj /k. ~u8kgWOҡPSZ]D~~~0PNw: QY8oŒW9ҵsXD0i ! =f* M(x|gxsAlȌbcF?]`307|֌")!'f(>gN\ =xSs3_#%zSfܮēe\cSٴٲXIg䭠J_cȊFѻ3rĹoi_u+2f(x8N~I* 71g 4,E>,. DǴD',:agXP /nT~)8j.t HCI$ q~?0z!Qe E :7SF3 ۽6D" xC!K}ؒQz^Id #ZOc."(f7VɦWG\ԗGɝ;#Yo[qJev HH֗A)X~?D7Bs_7?%DKTmT t|cE/T}wx%W0cw37GjzQp^Yiqؔے)c WB=/K%࣫\QQm"5´sļ%bnеPj2nL2Ym@Xێx$|rCGIs9b:> qhE.abn,ثgE!)emlbMׯAq38)逌O&eDl#T_"j dz:=˨O-rr*`vW)a}uc81ݬ8(u>~I Y0{јDִ:j~_iKX> v`Ϫ8۬Ur:5w3v1yT9Ta)R0p Rד'aOP/QtK_=?66U>5UIʆyPm%| J-wC񠯙77eU[ ])껑 0ӫ qI&n`oЈJon>ȝ&lJ|[^nH!=Oؙz$jU skHe鞟INuLga|xd$u''~h{Ngx㐜Iyu4<?l(7 }-Op7Jh/Yd*u[paR!'!O|EZt0Ov6Vm{5}>d?X(}U m46u2q`VBpLko;OTL;JB]ߧe;ƭm+Z1i3aBUNWL *IC$(B;S~eŠi5qhZN {ыva5C e4_2}@7첰ԀbbV׿ Q"O/q%.M0Aw̹%KAa2-=mb/Ach )T _ 9Oc. Fo!zIU 7]RE;&:O ފwb62;=!O/Dx:|teZ11%ɻN!,պ^\1IOdPUANnڷ e.Kypv!b2d+Vէx .~r=A?cqQuX Sp{}I'ꭇ 4_S)wY2Gy$¢X(9blAEA^l;* bFXDENFP%^z'PJ& V9%AT9Yμ&ܓ؏cv5zc{\/ǀrA#A`u8;8ASzȄ[MЋ֮L -w1K % bWRe"\Ϭ笾9Z;1{;a= o^tH姲Dc N;2I4*K0.p4!qxIՄm"\šq=A;L'Oۚ)0irTOj ]XY *aP~e_|<Z(Cu~F7权f=$7J%VS;+&ijo@Gi쾧 z̥#18,csQ<\\ [GZanj`itL'{&sD뢺<~tw1= Ml6QX9Pd=ղ^_;%J?XcxDqf}l׺na`q>ڂL2錃Wfºe9{Ͳ4`ʣ}nnR!3+o>&HV4k Rlj!7b󦾃rs_=3e{\דHfOa^7Hv[*.F!?ˬ"ҼkEJVˮXڽ=oDU86a߉DZ93q D 7S4sKWr$|SjjU 3!=`I7PXf-LE |КKHwje?mJqIuo>Y:̞1{X}>V Z8+3{-,Gig|0ŔhldIO{@2*LW2 =;g= d,@%կ0>ނβjU5ri‚pI s^b}-"qnQ_$Duϯ^HQ[ܾX7(DxcQ!}tV۾mdáX_)NAAk{ hϙF'kx;Wl=)+bG1.cWJE-@ Gg3P7/- &6`_ /:r IR*&Zof:a@ApI(- 8p!^/*Afk_>_kXpv!LQurf=r&cg%Z>htاބ5R-PS{ݺ/T\0(L ~J Uڦʏ 3kkzOT׶$'T kk# X\_t,%=bxiιS= 8 Vk Bo` "0L. hy4w;6#s]2C,<~H#)GVDq?<\I$yڻo}Kkd\8{]Vs$@jsr\YJ4*W2 Ka4Kj;ubEZTz(ƠLU h; ?Y l4! I݅']Dr`9Vၩ&E.i) h_!9䊞~KZOf?`W7O>I1Z2(^Xr]c<,ghѳvl]gP#| #Mh 2SY"Mr |DyKv'vx0!g>s/qłaR>|j| e %̬uq#MKzAh4SKr?(ϗJi ]1'2Br$$ĕB$M*J+bQ~J M긖{4K1v\j%4rIh9FzX2R} O^"3[=TDCFb*GYX 3cO# ?RѫH"HCꙗV%3[~]Iauhxdxdq1H0%mϜ\iZ//Q>Z#.]~fG`n&*G9WiV4 C86a);md 塰:0gyQӡ*ԕtx=Y=C'/VId.qq8 fpܓBf};|X{K^[EU#C\liqv乡]#( lGE)0嘂XXYUuO|<2^D2R doGЬ #H.l4ʽH}ĽQ4{۴~i!CSDI7U#@ZOnZVWl1sK+U/" 561& E5'ƶDc3Tcٶa8O8UXfpr癅x5Zj(>ϛ]TU*L4Xqwo 8ױϱ)d" qdkbYSuTWjǓfw>8Mx~rˢW AG)<׳'UM {O`S<2zIDl1-/۸tbo(rձ]>Ɖy!Y) ^ݶ,t_I--^+(vP ޵@idH3a+ށ΂Re%Ȩ,?R|ok Oİ҆&T2VVׄGǎ3)}A, E9P%.u]28URN λm )]90% rmoQ8z"2Ho Nx٦}(V نIW}yݹmPu' 2~R:b}XQ1ڧǤhu".q?xx1Z| yx2%i$3`l×P9MthS7Q/Siz&1I]jRkhE,4,LV︘mV %1~Sa-e G준+a'SVJq 赃lGkS?O3O#r}EF{"1IUC|_z]_E8*{ ;asdT_.,%<默O6KA 7˅ɵ6MQ)&{oP[Nt2YY'DtRA=S'ݛh6cAfq'D/_m3O).UK.t.Ƙq/Õ]hO+dM E$'f*`!!cČOf2O,*sPDL5 cҵ ^ݰ ),:ixbzW5=ѕ+ M W{0֪MD )П\gNOZp afI3 v(  %2>DE庄B8Ea5*Baa${߸dbrbBS5Й|4_ȓANʞܕu76Y%^ߵw9a_ ""o`tN_0~AuYŝzpj(I2uY1R@:rhH.WH]!oU(qƸNDIKT#n#^5:䲘~_eb]q@jZӜ)VV:ӏ)scvTĻ}HE?p-]aQlI?{B(e4G߼~us1K&"^cQiA;4+!Dطw!So{:G8& E5c=D#85bx<|nr {0~SƢ :貼"p5}"+&,{;YoMM8Q3W& b ͩūB 1WV1&؞<@Je_ W)%Nlu v%[SEB@E9YvF>*n|~4 /D?fZapSq`mK+oP]S3>A9V LRtX[bH ؈{[Wi,{ޙn3 $ `s(n~%V9_ALñy,qfVT{X`$4"Oc oނ- P|8h܅]l7O.$YUZ. dsj`wy2eB_5~w iv= QOǩѥS^o:C<0&wnb !1Ծz(`ɏ6./.J(l MHvWvU>CIbLZGLE# vE ֆbV|U@% Zݻ.`^- d.0hKr]AEx;A4uױN>%Lˬ}bHFxj(\ wm7ݨj%'\E3& # ,-UzKT\} WqtK\:jeFꞻޗ8@ 0@(Cr@XR9c>rd a`e}Xh"M|.)pKniv8|@>6 k8\zim7O5`zр9k̋Iݥ-O͚`*Z>ۭcZo)tߌ?sIQ$jvbL_%wiT, NDQ"|^1_@\ii2(|/սxۑޥygVj|EQVlu,xS],f +!Ή47u\qB]{fp1QIL$e94xi t(~!->~v*Ðkn-?o{RsyTKqxEvرH8'ɺlw FdKCoHDQcӒk1-kHHURD#F{&yF꙱Y^PtAeskDE:.|Ol۸?zM肆c!͛dKHD][`Bq2W"%NOy\G)я&De )8JIb3Ĺ,d2~M}n5e؜!Xm94(^+9W yOzgL(Vp\ķaa%R/%ZMBSl`WBgr,~\ګS5Yl|BŨcլw|xZ~ּK4S#ĉtLC'9?h7qO9075AlӇ<^J]~N g\ 9DBG6/ѣq~8C ޕOZ׭̈́ /^4gje6C.1ۮA؀7^ 9=ci,b﷮!=^884SeJ@&P6hqLr)VAmHQ 6c":8ԔIra2pA*ğ ԭ9˟votA3Nv7ՎNXc3~đf PFS FOrIO]C128 "(*D'fR)dM>V7#t5.·G:aAQC]?k@Z(X6Ymz Wvu"`K^L~Mb٧rVpdz,+Fd:1йN[H-f_̑Cc\Qh-֔mp_@>Ȝ^I#8ͮ[ji<(oH'uqəN-j*eR:?naD'.#h>=0, mۓ!HlwR?VXB:lOpFjTƥXs?'!IO3+4Hv*}bOލ|eO}Rg2sk@xR6̧4Lz,D\CAY\1?Mv5.RP\Dy)7B6<'{mѮoD_Nc$#n]QQ׸GRJ; ᮒj0M篫ՖH6:Ԗ?1"Vzo}],aMīѾ,[){#̑w.y qC\?xHh3qY]my6pwnh7~U Wqڼ-!E9Ol*δx-2:bZ"ފO»h"˦W6ZBH<ֺjjc{EgggI|BDŽ#H=kX>o(o.<&o\}K]h]wj:1kӪa{p6ҢK&5qj=lG8ب~}X_!dtn?eI& !g]zvHW._<ͻ2*dh[ ҢBX+jjQ"uɍ%˔gB PbJ<[=o IEZ0X=47$K\oF)_8.t f@(-!Jr&m|c\?%VٽZ]Õh=e43m ͇Ϟzgu؆*Zzb6*v8IźA޳:X1f9GQe_BPhms\-+j'xJ!U놉AuC.A:5lҧ:97"s.gt-'WͫCE+D-T56^N5%\]+lti^~"pQ6k t4M]<5%vj,=27mzVknhꚻnPo%)Uυp6a7)L*;$:yM}#96qֽBkY!=Dtf.H:}3U7%(t|U[gw7 <˔'גe}acI3I2r&-ج_Zz&mS{sF[ |ñI'5Y[Ќ-ңxTm^/;0#FΞm$H)(9_Zݔ耍vdb#j!!+`r Kԑu8u}@ pc92GV $F$83N,"k(pq ^X7h/xe*$׭D6_>_USǃ-eZ .:.E! =,sts{A:̀yד1mg{`ɓ)~b IG،20%+mͩu !Q 8@c6̓Ot]0mlzD]fiޒӖmCͷ.Q mOZYX<\d yqg<TW5 7LjN((ҿgt0ֈbȚn)18$vMiLH qUn1w/ dQ4*V$N<3HBrSP'Q| ֕8zF(20= z_!9EOyY!¨\kH'XEbGTliHsprOќ4 etGO(ش7W365qeA'0X}7K3L7`c;zq'WLM5CE &i[/+/M\wUܙD|ʛU OgCs DNJ)i?舜\k~;K"Z잰 4dPEAJ8#XVnozèjnE{to Yu>^*[ 2jbTJnȼoc+4 UԭXZ2 5IA=(s}6ި=")\ωE j QQOD o+S3R5<Ҋ#Y]P@3Vb`)>$3s]M41ś?E}KV- غR R(j |Ng(ا_ iѮ؟1&F&D!^9PvMd(ēY[Sv_k"#rљymwlsp&R|XG }f}Aah8~\JT]E:wR6Rl\^U "t iJLjY]8H*9qkZBPf= 1  5È362jɌ8c9N..U:S'*5SlfҤ{ h_QNRB&Cm`M( =m&N9Tج=jIW tD e1o` s(,xBx,uL-eI6[[S{&e'&#vu.rݒc+׈aV]PAUτm|<Kxx=AV>CH#lRϭ8+2%9 EJFl%lG#/>X=QA|JrK@Hg zgDJ C5cxQ,*D73,[=V",o憐p7+Bj@}VkDik`dl,|qlL+z,24G+&@LDe v&p̍6.˥^k6?4J0{\ 㔴g sG$w9}^0L`D3 Ti84mً{?Qjk%)`Ӯl.b+%f!6*8FMsEu8 TjͫTVhJx1xrɮ'231x:_طqmh)+zGiv\2Eo Q0S`ƌv]\0{~ K#rήAl{ l!{q_'*!PHtRʹ3V,}HWfHnȝ_&Pxhhi +pWM=GvX!#ZjCx&[c"u\Їlgll:/"bbxO&[4I6޲l쳒2UV3kon 8'@@!Rc@TO2J6`-#7' zX]eG]{jl&'onDDl;med}2B)I툮\O>? NiEL!H d%0㶞E+꡼nuV\>Qܾũ,Q \Rq/NkBZdYF ^#5=Gm+#J, SN Ж[H)Xg@kvf耻+aWT՚7l*P5VduJrlf:9C):{(TX6@?ºڢҨCаS9 /,t"9;1(*/X]BU5;l#~kvÉ5ѢV?Lcd,kҫyU &;>N$j7ywѫ\%D'Y>Nu1Dg|q[Z|`5V11] X\. %g %zp )7=%$ gHڴ0r@خ"TuK h-5kGلqJ5a@2=xM񩰐P98Ok ^^^F2nq ^Outx<^ D>1;2Lh7@;mP0#{V;: Ma`W IƮбgN o-n:L5. ߎs9,X/kyFYuw;N=3$lAҳLa\}WFD *"][+:iN8^{)xz;܊-&27'o\5תbTFsp"O8}HVxNUș`V{bA8ϼOb(>rdʺw4{g^O3<9M;8KYwrل%d׼Hv6i%Lh$^\Lr*ُDWԇ~&j9 XUaCsk'J;#>xNdKosʰM{X8a>$ хgWDo0gIwJMV?QGvE&({nW&;<,@"}et# b4T|~ ~)2%MrGqWbmnF=Ԃ۝j7Ad5M:YVt/1@g .QtNz(i*сKH4M#Ԧ.{XӒ.d!=Y;=|H%\ul^6'_`\USY|H"?ˆ̍ 8*:&czhdC Q)d[wk Q0#[zJ$uG>Xd߀]$/$[DAaCb\+`d*[p=Ej9gfxr,5C4`rZr)zc2 g1/֙Q01o9/kK"$hQ1֠|S#{xnl{+V# U5]s[㰠/J 2N\%UWƱjUVTnu^9 (N=_qJb_' W jEp<%>4u?YSBs~+@T1~;)r>o g9OZB $Q. 3GzB M~v1ܨEd,(ahkIEGZwSZi2@3^ʿdN)O?ݺ@v@dlHVd *ܣJ: NL;r 46a(fQ4AXּy2MH袅%hJɱx{BG,@/YYM3}1?6#L21ad?il X$@-˛{G0WE"=G|d.s=GE?}G>U+ٳkT'A֍h=IX ?Z4ZUFo&LhfH<"w?L0f\N+*\L]py< ׀H]i <ovSK0b4Uh@]A<5;&/3Ԏ&E~@f~D*ྛl">kXQ~D.f ~g8$/ ; JXAdl J33}1@L]㞲/[\}^ppMd/%$ݴ?$@ߵϓv7[W:iTW 6^?1*JSg>qnj2iRBղ`EwBlL2-*-.ԗc reTA랝ߔ$u*{i܋9܊ ax9LaC#xr=!|(\}PJ,˹Zdr]ekUO]AD Ze>mt1~N\Ve"G%u0aPXgS)SQLE?+负h.m7#ܸnsxCGnfד,wg![ZQKj'etd #/5b3E(S~6ʆuhd\0%/ZnGEUɋQ#n\ӆqQ#M2ZQm("p7t&z8paP~;E|gE-[CU[ 6mN|1b$SDKa]0@8OB2gxЅ:g*Ŀ'8zRR fӃ-ܴU^؄ t/`z{[WT} Y70/b$3yO[\0e[: .&9rt=K2Iȸ%ހ$]iA8]FCOl/qyf[>~((w9cHݕ22doS%Z~l]r1AJ&UEAꛉ?ud2NITO݃5ɏ1[I*2?s}R{|Ss$× ;%E(ǰ+ IlIќ)3R!ܢ.1˗qOMs8g3PEƭ}879E f`6N rT=}glZ~F=\%X[g7bc;cAI;t^~aw:e3c4u[R(VpӟcQ\Z.3{aNCGJ!_x' EO Lֆ@fE(ԅQU>ܐX3c @:zs6@^ñ%GeGj#mUS z sΏusҡˈݜ-,rG[+(^<&U#h|mˈWi;;k8\[?3N3CP|8yRm_~ur&1R$(2>VUV2:t7( GɎ6L57! }(k"cE%)N?V]7e'B6尢&=ll[oQ3JdWP]&5e^w|,m1*8Xn;n)JQvSYxlo@mα1;1 })nA5fәo;}|7UEAey,.KJKOrbj{z,XG}lk Iư SK ތc%jA,@u{ѯ "-TeDgH%3±Bِ2,@u1 yZLf4ʏ'5hT!LQlѺ%3yt%1[,2Gp,ZiZ{4wM94!1$Z79G.JGu7Ēi':R9,$mPQ5 AZIʾ{@=](Bs! ,0ckm̍\"TA[l:bvp,F_5t(nlzDM)F-Gm %7. =(V!RW6Ǣh@r8]y"+U+OU<_b1t Ppq7G|8j%ugRV}zxhBN!4A2/O6_UggTfzBeIa&tK> Ta'bJ%ں>ҷɧ\Џc0퍅59 I˿b'cԤ*베\/,USߕ y%ʹ ޳FAl]MЂ).暿[WrXܣ$'20p=@eM|q/c1;Q@nT/X"M' 4%&56_:t,D-U(qjR5Zy<|"+XIGLj!?CQo+} Axe]vKdFmOXeUrn8NyUR0dQGm%PrnnXxlq!@:xYb`"nr1! &ޝJ͸َVY=I,ń,!Cs%ֿw?Ekf *f^_[sK?@S\ ˇ<#<׬Ū%a ,$}_sflrjs"4BǞ1#OavmĚ\cFz~flp=[' Z叨5TP`b.\JIKM8[XxS$a瑶yW1KjPis4&v @@Cԗlj8ySkNbZZW,aeLS>i}Bomx-EڿxNh< w~J-\`|?m#i.+tv4he!B34gP4m>1M0-eL=6ȻEb;;|Nߤ؀O}+晨)l!Lc)do5%ESI+¸=%]t|L訑.HtZfӅN`>JM]Fz]8Ц~lY|ʗz,x=\@gBBV^tWH|Gav\ZGUN\dBgp/Z_O Sg)~ӛ^4n5Z6G,.ID}8OpHd|hYZٹx g %sUi"谾] R6ų_V{]JC|iM7-ɰoZ 0^;?|19T^d}YD5kC)Xt;[d;oڦ$x tzhYOX JŔ`NfNGwBn ֐9 y'h0ׁܼ`v"BkV" oz4,UQap#d6tHHIN~AVᲾ=Yil}i=G{g{Ĥ10 x*zŢ(Or.(4m %8j|œD HHa_Ȼ ãi،5(y%Pzxcj tҠp9@<_!qf@:Gvx,f+QH$ֈii |J}_1[<_awMCPҦ{nZwfa {- lRDYX<`[-y>K$Y擽gG32= 2Y2yۍO/G|S t\ 5xw/2kꚦBMn M&ȹ;LVtwfChspZޅ6c:oC>Ip{b-(K$x$!ZaI2 e"$L4tްwm̩KVj^c%4PI A ~' +;o9²8GH0iI (yof[[fNZrLs4)3"֯zXT{o[Г4B}N萌q ]]Aq݋t_\؊$s@IFNO<1dA7Q }gw/y裆va3tlAM>]^wMeS-jĺ^ &'щ%]eب<@2Pb c(XGNbZq2qMlP1=j>%C٨aX5fnk8SE0U.WN{nW-cV_vh]61BeWBl(P2;dP)}޾9h7^!IDܷ×CĒѭDٽ/`g>J}"|ףg,PVpɼEC;avaj}$u ϛ أB/LhzDh'vCWYhFOV= rAvug:ZXq"`tci4<[ަ5V]PwB@-6d7AS~NXf=_% 97u?T!7hte@a%8 G"},~shUoE] 'Ej8ì'zGvV? yɐzYv}  BB?(?bo‰z"{F0ɽd#l(шƁ-Z̑JU[[XyyK^/BNY.46Qh-Ts`.F!W ՋHuxVfϠ .LjQcMPvb^BJ/Pa47Ʒӟ;?ne:r{]IW[4/W,-ȭ쨟({6|g*^`uqW]"l{'?pp{`CUҰ[3 ;76jDKID|7vؒE0Fs*fߛFZTtnf~Q|uiƠV ǰү&Ö\8 !ZYݠsff) .̓3\!j ЅϭzesOTGHS+0>< Bl@LB"3Ł:-1aFnɰT)1l!kQٟlm|{rKS<0~U 5ɔ0XK|+겢$ չ3 . lUK}t\q=*^̯e exRE[Ov\9.B{LFWTSNc|"%cE7~oV[Ne*~%`E3seޣ@#"ꏒD "<^8YSf ^~Bfh3lG# m Q7Gf'M*ؕ,loI;bf'Yx'ZiXwR<$C'LWuBW(~(s|m1L#K#"itͬ{{mSu s GYQ fSyNjgC|_"=CGrrL&9H\N ɋK [m5G!OfTҤ_Z;J똦pq\^ok0sai@hks'2 :=Q_X m5ѱW")Oj! #-ri(Q!zXo ymړ ֱRu4Зت &91/X­^09/stLYK8Mײ1ЬV2⚦;D2 H:[M?Ty^d mO ȳ[T71D?iX D}c굑o#))v@Jԥ'8͂u $wP +ߥ5)Tz[-o42 q&Xq!\30`+ sy|"RlҎrjj&g6VyGeOD?6p7,gpsӹَ|zEMQZ{ "Ūe+3"=G-p$]ޮaH`zE!'NQt>T[A[뷔2뾕t`Le!6TϷ[ʧH]czK)"PԬ(62ŕ2(8*^-Ŧ*76v8ӻ=8W~bNjiH_uv?4s?FN{H^\$fL5E:uSH1GB ]{hsA6sou V|E"&vQhl7(ƭ뾵~XL 1~*00sCtjrh RFJiX1j>u F6\b7$1/7SM2暈mRs#!+Zzo䎄1&eH.{ g;e_[Ok}R32+jn.6ijiqX.9mWFۭVA|K^!|, } o#OK @wb_øVP*<[oX+,d/OL["I"敉]13Xy1aNpHPe\왢dژ6 dqJ Lǃ@B2-q@4bpL4hLo=_&Ӫog>OS蝥c (E&'uPtQڑd\<;t݄§4硯%:އ}_@ e<jqCE>U ~F%:ꍯCVa`\`9үcb~c ^}Q~-AsgsSH[^NΩ' t2)ۚN"{7! 3[w"jf:>GqS g+4;y Oy$X $g9mOjj^vka)b|AXkEջ>HX/yrNl `ѲRr^uT{jE _iM-SSƩ>H| Hb>ŀ7`"ד2"-$&pȸxݞkt%}?<ڇI@[EzYRPbw3oȱج\&~4:O'|2PY[q'sAwy̓7Ǒ:ڱn$]uuHGmsJt +LAc:9M m}3+qkK(9;Y ZJchEn+ô^/Tv0ȯlvرĔ#^VU*K)>CgSëafm? ʢo&;G\MCMG)-u켩隗;bEJyQiN| RXS+:WpkT.Ќ?Xx8@a~ٕK; ]\^WHSI4Ri&J ,k݇.=VMe NһnnHtyi2WgpCp|:ȥ;SĠU N]sus,[KcȂt.^:S,wa;i֛.>鉹|e7bV18c{۵"C1ȫ>f1>5v]:8Kb}.{q /@{c 8Y{3;KLU^\yxA@=Bv-uJh[)z{~͚КG)AE[`4W} 3 MR'˯"2Nwxk{oZl<{֪Ϟ<j̒tf/&0gd!a&2VrvК!3O}9!LY)QfJ` XSn Iq$SϴIkQ4UR9DGkGa~\NOZpg8_~#LA SV^kW3rxrCFõHz?)s|=%f8fkdăFK) Bxsz:H9ÒunSw+PMB\o*- Vh*~>4uBp+a)OkI''ط66"^O9,o֋>Zl&Tm0Yx' fݚݷ4qV_^4Dp=732,Fh"e0cpi+ĵ|Y"ڊ޲tSCyU:zf>5_R˅H,+G1Rq1U"KYP- ʠq9Vo2 /$S, ;UuCPP'Sj! Uo&ikAljHioS*aX&*z( ]J:zWXM~uصH>G382̹ckoq-:K\Y:ܴo*}FP\$VbKnƒQi5hN{#Wy^.@̔x^s'rݒ'9> 5- mX6a\"3^ץHK.)l&Ook8hE:^(4MexCPfCi#]J\Ǿ>%q+?#g|WD]bhx|H"@*b`xyCAs5(b/h~e<&Pp<]ѵЈܾZxEck\ʘH(?ڸ0%n*emH'?yo3>cv+ lGˌW}!&魯.=qibLi}CE߃L6p Ak-c ߑ-"Y sA/:gf>㑨r Ali^q6#+Yu ]!7r76j2tmmHh/N^4_sBtb(^,H FlQs`,7eR<‹ve2NF#[񋱊c=EV%Jx=ѽv[SVTk]LV#n%ܐi9||IC!6PߠTT1ǙG7dsn d!AMQICk_Unq@ĥRqz,d|ISC.b?]Tbx8OX\|ه:zHRSZ.3^A CՃ'L7rx#%)C=Lև'E$` tٱvqiuNg>5MΜjŰR>*)I8 IUU٫;2e'κna4 B K獩 7̒iʮ\÷,C+ ~R'~ZD>ZNd]`LvyRݘpu`bA fr^:(/ ӯ-ϒB80w5LE~[Ah?hA8jɆ]ZnGXKPjNe79_,ʈ+V|"c\L*ܧEe?%;ұ3f=׭m5RDb\4Uɇz  U1{Βr>6\P(r< ̥*8/֊,H"p-:wqf)ր>~Lꤋ NU.]xqa B[!GWb6Ōpdpsa$))nIc0끐-\S&#w̜FUƻ.311v4jQ?'<"]ύ:\o.U~- #骉4C}$A5cTЈ8sG9+T~\ԡfU|. vH)hi~xmK؛u؋,Lt^U8#ϥI&Q`2cDrǤZR R+N;㣆vURm۸%Ô?C<} RsɘUAS UYTXVBXYdsRx/ 9v~-Ft-.@WH2ɰ-*}z}_:qVqy g;Ty=,ɠ]Z؊i@XGoXmĚ]LJ5l-RxFFqTHKW&1h5k_vj,d?aJ$(6LՌ!vL*)B^߇MB;{F5̕s6Rs}#ir37G6)VoO\ Aw0$ gѷi^d!\Nj}USLKZe5&y2,oD 㞿> O0 9ב,)z]F?_j91Jn5 HYos"Ѻ)EM zC垶ޑIICx qhVguh k.CSJח#M+ 5ESv fnc I av)4j+3t"976rɃC3͌6A #~5aՃ1c.=1k yT6C_~}FZ|#wU2`<ޮQnOeo~ҙ=8I]g@)>b.}+00[~rQ7p3ZH73+Ppϲ`ܳQמv!QUUj!hʄfe"“D c-}&JD/c4'&ʗS\F@̠#T|8{(u_,h(%ڣ*+D`PthPΐ7HrI,<ӉJq;)ÜbGx4Iv*Sh2xg|zkA*C7!w=ތb eX`(CfҁљvKU#2 YA>hňJtqF]6"0$ց"Ԙwpئ ]pm!c:46- />&q@!8$=sͺ}YZs0"C!:;̢sѕ` z RT]x#̙# msUobG*p,N?/m׷!BO tʕ P.1Ҽ >6x }Rݯ\ l ZS& HrseA9;bl#aHzYòz1H"A\WG3!x9ވIp%W1LGDm^A Pk0’SlyIqS'MWGof \iX` UHi^:a-ȉ Qq*3rǐWMLL u 4sD0g&)ؽaEkT=Q30v0p1(S,i+KsOW- oB:oS+M&GS򂸣3d{BhG(j@@b`C>,"f=QQ @T.Lb42?pre\geq^:8Rud4xKjVK\R _ g]{peeۀm *ܟxƐX3Ť71<Q@)ۤF\S5izԞ +:`~NvHwo\`b/S( ]2 EjFgEr{KȌuC3u@wuHT\NӜS__Ao"=uId\/t@ aJA0n_ܕqP66,0監-S<|lsΘ!̝Mͷ{FiNq>3"s-{?Vw"euK$%"Ry3@/qi] =KWca"h0 s_OJ**L(U5W_ yD^kSN{-t5Axͳa Iٹ8:ǷH D|"rA8{Z0F||@)FwI`n]Pg&J֫XH%Cϋ!!\_lj*BW 5LGW>hfKזSpXi\֎]ļʣd꨸Vњf3=Sş)7s$ܝ%e/ ,&*l,lkI ݰߞ:n#ļUCP1!O?}=W3Kgy Մ^6/{'i'a1qBk3|FDVv|mm܋)g~C؈\I?("!Il8&^VxOtpM8t-./@sgvpb1/΀a=йxCF~wojTqr SUOG0uO5MsXC6#- 恲 }@nWT7d_gW X,kܱJ~KN>~z##Z@^/\JpGK֌KcB#[-3CG&!XFRB8Nsw&S\AZ8FJq]P%1.#WTp;Xp:_N~ ?n;c# sCO8Oo Ca-?{|pNȘKFQ52]R wDWݪ5ʸ /|e |n$K$ %’EƻibȼD06n2rVe, 6/jgzhB}{cC1_QUZRO@^\R*20tɫp!6z-V~rHCߨ%GD_4 [K.}9f؏@E͠aVX5۵^ՉyLiR7A 3YeD^ѓ;3$]k& XFj1 ȜqR1&gNg^ @UƇ_}H/40yC~RYYf TjRWچ'kRչia E{:rCi% ZZqcwU 3~G*H" {JE.PlErH3+jݒx;+ɜn i0VI rKXM15\AŹ9 |ZO5`-=%N N^5e"'Y4 Pl&4_k[_|LU1ǾKpT}# ͬ_;&zMw{ g\nȱ||QiL^, ;-X}x;Wok,P$>jǦlX r% #WG]&\Qpz}ciQ%A\=f:A U>Iҁ3.Cko}ScɯDzǻ}9#j$f7*`}}yߥc59/W"J_:釡`<%y$4:&7GdVq6S.L8"#{;fr};Wr,Q䒒K~Z}9 qv ,5zs 6)A]Ȳ4R2s^jR RN>uW*w&,u%,%叮ФT zE& [ *|?L5UytCP]q&/_8%N]aRWii9?BH&򔺥SvW.20{& 's76i(lG lFO;_8Ɋhx5X`ڡڼn&|I݆N؃n[L &Z4m9ar#D"]&EKsf6'K=jz9a,7ihfG'H>s&LnEϜ el뫓Ƀ2h⛓5)D,01ܰ++FEaiatojA" EJB{) Y-NǦ{xX}JN-j{|s3P !$M~I%Ӈ)FR1˙ PFK+)bdceKq]{pBeZﴢh*+ryy"5;W=ty>: $ܤZ`{fɔ{jD,W jK]=3 t4iie8 @C-bΥYmn\G荧a ׵wymǩ𿳽lAE@>/ ,8QA ^ J0l`]{7dύ2HX+shLMWP?|:@<홏/J_bPk_>e2+`l$&#\99rg7+whت炇6O;Y:>Ua6NU1oYl͝ %W#x~2".Z PWfku*L%66:> ЈѲ:L0 dx[-l7 ȔRm>Q̘NǑJr; rVҀFMT rcH)j6eHQ| ?C )*?,79Q8'ޘ_I%l8((lOK/qYd(4k@Pũ#_V_0*pdžY:9YrOjӪTsٱS.ke6}"s1i*7بAG<Ta3lge1 }c/PO=vx3*!vWzUݝX962~[E/*V%xɝ2j0>@z\ڔx Enr2) miFE\ȜdX27oD X|L H K@:v YSfSe,wȕ:u׬kf"8=}kVwXVղưg[wWWZ^$m@ ձSV%DE.@jGm[ [rN̤[:DzoBv䴖^.t5Ȏ D$O^fAt>sYXA>,#2$H2d; Cp>6c](W0O+ߋXnŃ@MrKJܣT'9w5ﲡ@WwsCyGlRX1 9 S?j8fm>6y#D ]^sڠ[cKʹ(/2LM8K {=]{~Eou dF.g/32,G3\',, TWUؽ?7*4(D=>@GͱǀTb_NPZ׬: gC+ ȓ%O9K*B0@g>wR~|f$U8ӈ@s?c8cV ߈++[,cwI,۩-_$bO I {ood7M"\ȵSu<Ë6#&)u 2 ۶'L#|sz"Dȡ+4ǙG Z_,zr=I`2_\}mx5YH(WAķ̺P T\~N !ip"(Xa>IKNW1ӽKuo~v_K_x;Dv؞W=)-}&1(-x'] &AddnU/+ 4(4o|YƼ +)3˳o󹈨[{L"2<_ qzc0-!r=&#"SDUs@]HGS/: ^hRlGk)3.eOEw-*e #jCr= ~p#YD Wnx1lWbݞJE|ol*1xuj{?|tƲOl{QI87s~Wgb*(thg]lHPXs#tsC.CjLTV„@`,<&iA`|8sȖkI/6.5aA7ts_CjJEuof1)8G@݂q4 lkO_3C⑉K# ImL(5 I?~ 8:: 8򫠏(x6Reۅц|]\ۛjߩLg+iZ@vPġR|TZb@;0+Qpz1JӧF( 9DH0EEW?jZ$yyWt|NKsvUtz1KsN g]`+ jT޹7xn"c#^nhl%`7 FWZ}﯁ėfaQۛ. k-_3 iP\,™ӭxnybMB c͸ZL5OehyQ(jX %y=@0+~ Td УJJ<Nu8BuA+ii"~-oyBoٓ_^ݹCPv (xHLdNΙƄAi[IM;ٯ4)~z"FBqU̽g2H(B+$v>#;7U;ꂉu =|={]^^8_)aEoTcIoL 9QG%嘁3d65IjKP$%^of/&5hIN:Jvf-,V$&a C4V\-9O'L\GuApYa?i`>H X^ɿk)$ G6N; Vj [)^= vVnM(nhr|azAZԢP7΢7SpNO_W5n6_ܽ0R HS}<қz?v껠1,ESmmv.eQR4!2@oe,D:UYEp:R _V޺@c𲡜S&*WƥڷML,}sv|ᵷh(u|80PxΞETo4m2xyWA8$Huڤ QxyB) ~KqSZm,/be3Y@X]b8,}ny}cUṴva&{Y։E7܃yٯ)a>x7eoݖ'jQ=Ϯ~6DjZiCH1a {f<5GJ*4gX;TYgÒ*2bCGb/B Tgy!fʏY}.,dk,L@c;<ܥfx:;tŸޟ|A[,zDvA:scQrgGWQU$<ӻWȤBT,c-J \*Yh}24z<ӂBZcpkt׋&g/!mպ^=4U ӶfY-vU]3];ˌ7v]ĶXe䌂45LqqSk!V_{sӻ9/[ ό OϦ6g6.9%T.}uS`i1eQ" @ʟ +H"wHyZ:wRLP'OC;"m 1kLr8m CGmCIh,wZpqwZS!?NdWcnK 2/z)Y'RdK iBu ⳟ[uΕ\/9'nu,w`:1^YJM"M`+ "s#% 7B CB_q՛7/&m Is% U W+%=5㉚c+|ꬾPA+,y2-tY-(Vi NyIOg2:q-Խ~Z"ݗfW P%'~gʣkAWP_3hF\|Qɦik2͕f$\׍pCѿ"q}ʽũf3Lqݽ셔::FơO̳+/ BCЫ5V 7lThɸ酏+R5*8 zUPv:cgeΗPGY%#E%Z@2Ǟ12.S٥huDYGYȎˤqL uz`b; g(³wH“"BCyΆ%@yB5 ɔc n3)oTB眔S̷<מaXc'<rh*LR .po*ǟhQN !.rf]у۸$qMGֈ8kgmc0~)mwv06d t=DV%&mG1ɡ+aP׵5|uBXSHYdo{^GXlѤKW:o6F[j`? |9Ccz2 F 奤,5@w*WIJJӑ2m5-o˫ %M@c-7G1eLcyf8эsvݷn$=׍>kBEazwTS4pgnt")C{e׫C< ֨3-,3,qfx.rj *@~ Fn"fLST:v'bbԧR)i |, m^Uk1Vџ vE ֶku+a YV ],ԙ+I)q1RUy>O3Hy{8В)%6|_R/L/~b*QLb*d1s'} ,xby>V{Tgud]_Fe*n|' w99e-t}IR3NҬa*hKќ^2s!pI}Рܥyh(cD=zp̱q$9\0Bq!;7JI.p'%EL_w1Xx % ɥa5j1`ҽ/i#H '-F?w3# Ù2kMD=m*eA*f'ۺ'eX/;vzu"PL1粀F Vwx'׭e(R~sDVϊᢩ,^5S*%B}]Rr*r֕j=װY6304f y39"f|g3UvsN!dx@f/0pBNGҟ, t!{j[]T!G˄>jڶ5χ bKDє8VYw0b l $t=4sJ n _;x?;8J@~忪䨃0?fxz114^L#s*ޠ&^):l3(O6ч>s7l'.bM& *6mshU#GotϨE@BaӨ0VB"QPMp5/̦q2I],!aYMٞb[T|DKn@{}l`e W. ]lqq (0l=Ui;*k:Y/˹ ~c;>d] &x@x_t D$j1@7=LU_+7I'a:VC~$u&Neɶ*rԭ9k3RYF=\D3O-+!':|K?+.KPUQ/9خ"%(}Kп6fBaILȜu\WQMﶏ䍃:[rM94dU k#f}q^;-:aPoE6D#6|J qwCq#FvW neR {.FD0-OpU*w-9pHRuB SV'ʗU<$H"Zu=e;0N!Skv|tMKtrm,<4#/vYtRtV,-FSFk"?TJX^GAZ_Tp%$N n.֋Q3琛zJ(Gb$+ 9 \La*hP䲣]BX~Ey!I9]Pr|Y' 9"ǖUE`s =/) 2B,(;@ c92܌J_+X TwՐ13|#A uoB̆$O$qR߿tUbWլ#YJte:#=!&ǘׂ&N㠎Ntĺ0yf0 90ޭu_J*C>SD6\1P6[OtK 0L݀F%|21aeC+I.Ruz/*6ޓ;5R7ڬ`uN!o&$wU}ARX㰴̓L:'^\ +1#,azTOR̢AQtaw+:Șvo'=cmm%M O+˝KSu}&Ut̓ 2uj58ΐs2CǃғL݄Y `a-x JJ% YZ