sqlite3-3.50.2-150000.3.33.1<>,ѤhBsp9|GsڀkAj#瞒R| 5}WF=phtEn :jz?KM!uaú~>A,?d   >$(8<Uv     ~ ((8N9 N: NBFFMGhHpIxX|YZ[\]^bcd'e,f/l1uDvLwxy zCsqlite33.50.2150000.3.33.1Embeddable SQL Database EngineSQLite is a C library that implements an embeddable SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. SQLite is not a client library used to connect to a big database server. SQLite is 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-17$ePSUSE Linux Enterprise 15SUSE LLC SUSE-Public-Domainhttps://www.suse.com/Productivity/Databases/Servershttps://www.sqlite.org/linuxppc64le$]8큤h@-h_a2a1b6a729a9f7f9456b74d0d47e7829f490ac5e71343c9887c4a7695948d566cbdb8f8a4b193b6fcd34554c8535142fa0731ee9a77141deee71930c3fff64adrootrootrootrootsqlite3-3.50.2-150000.3.33.1.src.rpmsqlitesqlite3sqlite3(ppc-64)@@@@@@@@@@@    libc.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)libreadline.so.7()(64bit)libz.so.1()(64bit)libz.so.1(ZLIB_1.2.0)(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.sqliteibs-power9-17 17536948353.50.23.50.2-150000.3.33.13.50.2-150000.3.33.13.50.2sqlite3sqlite3.1.gz/usr/bin//usr/share/man/man1/-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, interpreter /lib64/ld64.so.2, BuildID[sha1]=aae3ca3469a12227508d8b4e155f7c58534a88cc, for GNU/Linux 3.10.0, strippedtroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) RR RRRRRRR RR`HdwQLutf-8ae0c71f5c8459bf93284165ef2f55f9e9e17e2a114628bc3b2b009f532e06e4a?7zXZ !t/=]"k%f-Q/ިykIuH L-r(-,FN^Z2 fv(g}p2xs#Qq@"8y6=pw:3qk&Nr7`1G˃b\y&g¢䬗k&@h!@Ehl{@'"nƯ!+Onkoftʛu]wG9ۤW/eM055G&rHW Xg& p7^G0piF#~@=Ӛ42-p:;o`T:D֧ *y @[ܢ{_,bW/p'^v7$Y߇}|WĭR%A T.w1[f6 $@ܡQ ZK7sXd{נwK?(^x ENZ@1ʺ ϠDR%ঔ K@AqOFz\W,xfk}gMܨ)yRqɔԨRN,򓧚L%틵3nKGp+V'UJtj *:RHtzyKIt89KUQ`7kVgs); |b6Dz%rs5I8WT1@.EK q5Upv>4%,xܕD WwBq+Sso/M/Y%iSr9 9Bj⠬53ǙhU@-*.DaElDЈ4w&bXWyѩ77-A]ȏErEvXE8`@q w/J*5KA܋+)gKE(qxvtx(bKH~ 4 4Bw ԚܯSq>|zmSnT:>Ɋ.)6#?yUkbI:**L"$PT/^v1{@?z B1-¹wpdp Yk-"BXFlf9zaECM']iCU? ew hx\#2 ^&# ]3NRM̈́l~B#3fq<`䇁M- "zö uqKuQf.!u-ASfE.q2=߆o͆CXzmsxʉoPF$Q*m7Z 87!GЎ0,.Y:0Z^k¼cր_N9cphmD[w5fI8 al }ɵtB4J1%.vt4(% ޺zէ5S|-,/|Rh fAFL8Tll_[31kCCi E @7Sdim{08tSTAxw- (gy%$+1AT Q7Ysy fsh%wˮF;9kgflA*oց5]+>wvܐ%`}}9@@Yo#Dj{Sʪzg9XL5e+nYt(ʺ\8MǢN_vM $ Iɱz>Pbze6^KN9mvsWs ۱k'lQvjfbn~!넭^׵_9ޟ*oKg-B>M7@v<@'H6.LUU|{B㯚/.Cنv;+iH/7%dm,M@iKSٜrf ]. ĐM #@D:x}gBZs%O#5o| ͒t7WxX,A?r|0{鼌ʤ^Y_-^Xt (S5μXa>0~C2,ě5h]-c=T7$?ZKZS^jX2 #;A@4opl6b,[L<5bJ+],f =}(MlVd3I ^f)! Z*HD :C( Sk5{طFiHldM϶|tڐ CwD3tu2UTwv~+521ͦaW)H(ĴPZ v yn9|o:ݗ^ Hp!y+.7/PƤ]Y2lu=M^8U %Ab0 ;_| {<7"?-23IJm+jOf57y0lچtF#|yD4P Td>yX(TwAy  [7<lOl*]pW (5\uJlt|}_f8v,x5_q3KjHQ0:NE ڄ '2V-o}"~n] zdrtWb #@*'/8BYa (R\"9xF[Nʟ1%qňy .Qw?)D7@A;i= T$/;J%HVcu7"G9݂C{/]~j|nPk .f̙(wKTM5 Bķ&߶Q#|juEYă&<> =[ۊ(0T!DtReɏ :h^+A51~iDX4ϔpNF q'%[tldNxWl$3 .mXZ2Tн 9c!fVhWݾe X0Y}>tfWV\{vZPZ#Yvu -y]}mdER`6m *^o p8,f{ɰ[A$"9}|/AFV}#B&^SǧR {R#@s3cQ %w,ow灜ٚK855gJs-p!^6c `I`0Yc.󽐍<|OT_ky*_)M[;i ׋g lRv7wÓb*2 ' Dx͍5{_-ԂZ?t lLכs#b<ͦt%M# O4!̽bD-/{xdPC ϏĴ܁;VHЀtDŪlBU-NZ2Penz0e|tZɩɑb&1TNP^lULp sgAYF8mY6 )*ph.yi."81-~cMOZ+4}#>%/)[;nj<|;k%vx)33:X/(*UM#[\8|UnS׃ Ttqб_Wb1u'zf8E"{°c$JC9kX'`QKN aŲ;EH43gMi[s#%x:~Z>ץ(hѿ̠JW̬-eYH2% 6^0CQr",r"SӬ\(S|#=K|ĐlCDFn$wfdC9-Mg(-i8Gnz^.kʡ6Y3  rX,g/b΀ͧ.A3>u~`v/> n#TE0XO0-_ AXrZOg*(KZVR`\ؔn˝(=ׇgƃ-L`jQib$h@ۘKf ;.9;Xױ45;$q SUO&LR ҧ#E,P;U3>vcOfS!-fw2T$(a_KuBĬyܦ#7s5\"Muؠ.ƨLJp(UWoU0z 9|7la$x_B冀Fͫt&dBP0e!@Iw>'?ӮxRJؕHD;\֡bɐ!l؅>4'.=+3^p^;,D\8{]6>7&Fcr*-0uB[dk]w̄  rx474fCet!"Ind`B_C F9>c[w15\OD.#9$jF^#1s.uR1DQ K5eDq&;J %%?:?xŒ%~jJr %(V'K g: @Mz;h[8xƣesԹPx5^v.+W̏ų4).ebmwHPrT F:pXBׯ"Iy\ŧ!H38 Ɔp{i0*ڶWz_@7^4`K3 QU:֚"w͎{K=/l!@7 l`1XQRSۿ?y m 4gNm"r,<3Yf|a 3m1_wZLsfux X8PH>^dzh9 |О7{Fb֩p"Y&EʻT"dHػ=@a{xk5 qAC>*oǘϞo l='9V!_HBԆnT)'m.mo훔qM!>H9u&piyWWKMϢ$:W1!aC8i*4F_ȻpZXLEr~CQX^^Awk 6oT'ZLg)/F>ߙS: 7=Mb J j!|w vWh Q}ΙLOKtfYcXiWv8(k,C|tNN=l;Sޕb:$(v = LVĮ$fm.Y<&1( I>7j{(L'B{s݉K.k21< aL+٫HLC}ϻF x&?+w2H&z>)ωBQh:̅Hnr fxvsdJӣ94z/+P6nי+;=2^3=~];v ֔l؞ ƪb3t. "y%b6S8zRA< ~Յ 5aãvޛ]uQe- @~(ŨZʻ n^Ą 8e#Vm`Ѳԫ=Sͣi2F"O/ք !PNT!,ZvV ܎a("S@MG8 A̻$br)_8aIBpEmZsOutg?bDEFi6/e]?^w?FN~XJy[F21Ҁ/ #;{уjGmz' ḏQ HJTy=J1Β 7BwCjio.yG#Z=IK,|2j#çVS . 90;F(3VT}:GhuRq28^z1}ߢh̍r: 1#pq{}O{i%*;WM4ǹ_\7Ukr 'c$[@7"!ȕI4/o-4cp=[m-`De+==d6#r NwrF! ԳO~9E>>LxyJx_ڽcsKx2pB`wAlśSqV9 μ L u=&W12>O_j]Pk˟ ӄ&APe/_l?˒G_Y)JFgА;D!ҖX],"nJ.`$\uNc'kEFj*c6 +hKm9f5ATt7ʴN;uL'E[]t Bt_bŽJAZBC Ʌuf]PO$Ai /-wH_8+i3JM%Lىm8Mb o;~5w[PUGϴʨR@5+h1u>UXڴA8n`8 ,&~ӝ9-BE6P4rɼanc_-[CϲoY~RU~z;Mgp-KYL. QXhYJ *:Iw4a0Y{g[ 6yQ%]Īd.wUq%7{C/2ێ ™yu}Yᶪ库 ߙh~v\Z9 @ 8l>/Ey׬ BN"_pΌuMUvKg-3WV'(\#*HD 82hq]1[-ـ ǡ+ xǎ;.ZPRd^>H'n7U0/*%i!ΓOR'.?T ۲囝[hPq : qs C\ڙjLy|4knh$7{t7OTDlGrjo1`S*bK.@*H+HA g5b2ݒ*Rf>s2i>OQ!̤; E2f_%P™Pz?lIJQ$ }/h{lXYo<9Ig~[iy%t0L߫zj*qJmnnEe&샴s\(1}FKG-7A뇱5_"Sn@C$a"=n5g2lފ=5b2iu)tlvfac#z6! ;A_>`]?J:bʫf0< лAPVQA]}QsӘV,TuAtiƣ18n7 ލhCM;HqA.oǺ̉g~ĆĂzRcjX܂䡿7JysUagwa&dl ~FiSnfޯ\S.à(Lvu_e+?5r6<3P޳\;aXG(A!K< ˄[c`!AIyE)x^YE; >Nn@07OKĆ k6: .П3fdm!kA_ך|k?By]Bq$_fY_ꎅGVT_"w{iJ^sn "" =8f)ntGdحOMa}A墽s| OyQt\3+PB"GY@vfg\eRfE .zMLmzdi-Ux=i9{p!.5 wPVYm<~9 F?-IjȂ)aуN;M?XN+\l1R2Hb*$ۓhv,@lhk5Ģ?$`@?!~m]Ձ^HjjMP:Oԫ#$RƁqĊj!&Oʼn.yb2~뚈Ȍ1eĢ`q2Y}qz{7&GGC>b8L,.e.:cĆ% h{GH=dz}k]͆gPhEL/,B0c 1/73Y&Cu /A4 S92ijѽfoo"?7wOƥh 9glQ7ݍG$V/Q+` OwK3llp `l~.~;ygITBRGhBФ#[~SY{Z~D&?V$M PY1F=W%qQUj$Rjq9~J>r;"Γq\_&@XM?s0"j^%R8e?g!h䴸Y,qdXm1Ɠ*0AW-R~>K-UG5CSAҺhXƧ&JT5i8f3+J( kTD,#S;̄OzrԳEѪ֍&5=)7;%¬SǽX\95uf@jBD<`}@ﭻ뀇QS7 JT{6ޣvRW|Ks`0HڵOdk*u Rk1lʴkyM \Z=t= ^@җ|\~nŋTK7O:\y L'vY:w$.uIBy"d"oܫy­IJa2بa+[bӅѳx"y1Jqn%>~uPoO"W7%/ } $Hr)SÁo5۷ĴW'U_WQ5`zv+Gf?$ߍgn;׾f́+Sr/P<ᣈ.}lvTh^H+1PYڨ9o|3v=J&dL%m^YVhNI!_VqĿICCVtO/ܨo%>'> 1X M=c< "TFNIwP,:XL#Y4Va8M~9a5߲U~NSm|4:@*v"4w (f6Fّ q'!Q@ڿWMhB_'nsL OΝ&yIs Vof;rZ&P,m%Z)Hz#h(d}s}{ GT9ix+|nctœwz\@?dt@_Yq:gUEHku?&o"a97v4DBIcx2EӅviLbٔ3%~>:ͭe i`#mHkT0!QWw W5mjV 3#iOA/\h{vWaú]fV*ap13?jYh 9 +2҂VKȫ]ȂgMpcEZQaح. 1[-񎭺Z€6ԥ%|"jB)l5օinGgVPwD Q.[ͦꎆ!JO<Fo+qG\s,5{`j[ \X2%MXK8?@d[l(X=7ˡYV>zUY& c>+}w!=Qur̗XVVgn*֚YTl5?Nu?dIU `E~Ғ hM2تIyGՂX#jF-=Pޜץ9%6@%`4 ~e =@dka0ҲHqgagݱuz< +¼3+]6e#z,iO]}_S|Pt$Nlr*ʷaY'mz|1h@4ZR ݂[E% 7R[5AaՙGnKc0owCoU-󾪮Ւpr uXفtp(׏}Z=j/2F ǧy_bXXQ\31ˆ MS$ʡ3OXk҄ #HŁX 7jSD;V#<˒𙪒sXIF\]j.=;Yϴ/H6YY.wle&sѦx a-#880u¨.=4Cפx!)d¿ 4 R^өL{U/4. /lcg*|)H1oqw*.F_vY8O+<-?OˡLxQ<)wEeƭm1aDQ6H{y,̗T9@OU=ٕSM•cl9'~30^.wPA i)ξ|8 |s7/n334c*y QOP``,MhH\ybvZ Y_࿭x\-6 =$́ئd ݺO?Ջ枎f2x'j NqhQ5WNv]|v&0JJd!\E)5lGJ@ Ig<=僜Ӌ?~7H}~G7shS˅D3 >za /*h^7=#Д0_ 6P^Z93*uM5 A!:>Xz"XGo(9!;eTm_45do}Hhjdꗉ&ڳμL[Mz?K#:E]֧S s|]VWHUOQGxoAR :p"9` -ن {Do-0 bG,)0L/҂ ؤU%αVRHI*II Q@5nc^@6MO#<ʯs@T:ҙm<'^u= 9@ޯ!#C#? aYw4Ȍ6  nNڹjkJ93`xsPOR!n+x#YE_!dPby Y@5>2kFrćv],r P#`g2Gl8CT?Biomԙm9t8sWv7e@REt&mTkHR,I\EZG[TS4քCsߙZ|:1[`Ueiܓpg.@$pt^C)w z$OE9ņjaA%-hR;Sj D{[HQ”HVFպP~{\ajZ P'>T=f>?b0H!oCz+*z aġxd 0߿y3ȝЂH81pѩf`G8:aLX"pROb~8)5p1 x|u߭'[! O3XsG8SM{u἞MƫO4ih"!cԠeQJ j]N^=AM#P–[΄zP)j: 4teU ;[f')[SW7[0\8kf܏iPƣd­wk5÷gx?u+Uyt@PdDYB?{j}Fۥ-A]}ϛFse S®_!J!45(sTb7)2jIi. e?$Qva%y#L0aPCɂN"ެ|vehGjU]{p4c:s~/ b*KvF σYz|74nnN5lNXF鯚dggT .Fc[$Hh3FVc#~g҇d!$İ d+ϲ=7;Dim;襶"b=Za]F,udP9Uf%~Ƨ͠,1"*(H+^(5/N4u-;y󻁢]CUqrbdPu<q} BV9t@&8 V;uc󎅡HPoohOݯ)+VAk@v@Ik]WԏeDMZz{Fp[XR jE 4AXGguڅ[(5l#ˇCpk;P ֝=0-(]O0a "߯mVThqe>wp3-L3v"3D*l%üh% U%ܧ8:`"|^w[7g 4XdN)m" GIANe=HU\78]\ɐ{ÂJ{& ԧkɊ_d#A~;bj;6&1>4e6 N 痑 nU )7׹``ɝ[K4?ZNj~W䄌`ۑnoU}x*BP{fচz:lrk8 Ǵ5n.1YG2( UBfkFEHR;5333aL+Џ }fj]UͶ܁!wr]łaxjE%Qؓx3!w&+߇<[p;'6䦜תM,xn^-~~j,m\?L#Tqzhu(A[5+>2#S6w`<&n&) Aq_~Bu+/zbRzʸS2դ ڶ&2'˴07P^i^4o q+6Sqq)1'S kbQ0lst7>m#KhJ] \d`G5hS%:2DldRPγ>D6!pɦXF#嵅3yvORz9,6!L} A>^8I&*ice;dD лY(4 )Boἐuv=s-HXQ}̪뼏7 /b˩q}h%#ԾM=6 MT?x4j4 /y`;€ cGZַ{$Un4c|p|'pџDBV'eZ?]mɪmkA|F̼@ mR%sBʔ7}rlSLgwOp:ƥ'6_^FHO d6~6wC yU<LBzJ]ڵCҟI5+# 6" ?x7Z"!Ցۉ_]>2 (0lj1I1@qbsPL&mXŕ`LzR]zx{(,2idZ\l]][_RȰ/)m!~Ƒ+*!TV™=qתpNNLlCHj/D%9ZX43Hߛ g9+l\xgYVCѰ okCbv_˱4Mi0yʙW"dȅKacU<#~Û(RZ4qӰ!N޳elMtS"^v^#Jqv[˛R=ִOtCIsn_uQҽ0)bH@TO\4 0ָJhx>9JU=P~x5VNP-A09N6:/nnvl9jfJvʰgdeEjWAUm;ԣk[pCX5JQܝw2w~ $j w^\qH\vUvʁZlG5#O֣;%UM)#EQmG*SF$%2CG͹1\"Y$JT۶iTIѵӕH\Y^!{Yʑb.9?AxR&lۙ If"lW.&CL:M2FtU3h4M{ʟaAߎ)܏i1 aho~(*1vPoc.ܻa*/ YN;hY?'^kF}lD(ߏB'{AAjd>,#+HtΒ¶1\*qq<$O@8o{i_. LM6C|dFb0we//Dve41nzXiUkzId nE<[C{W9PhzVSWMo'ds`jJf"8{t`<zg4n3~WpR8_`s%>NfˁN3poB<6)M01wߚ o;)~dbz9I\9|#}-O~1G-`>X}#F흂?f[A xzw<|(}2P&EpX룔o::{wC5G*Pɇ7zjc @%~9n^?HJG[V}c4X [g~uS$?Tؖ_pUe+ͦ ~q776`=u'x8qH6@ 98AI0% fxX. 3mna"K f&n-*T(V,CmmD[9&%T]o nkKIsj[>:QG}Q:<}6/y.)2O9*+.u±7!e~#׸{s~RdZZZ_6L]mk9ivZ\af7pwLJ-(v^y#,߻^4 #3X*JXeu~6>ƸK_/gv*,:E@%AgIv5?/v;_wxڋ AЌ-M`JFAcrFoTA5䦚ScPB-"$SL+1T@plcr#]J*NQeƺT1b7btFNBu0009(^P,է w;{ii۪/,I79 n]`13=[Oz cLRŪʨϿYD PC~`Hվ -Ap#C OzY9I-=% 3m$܋^F)XlR>2FA||V)l+3h҄w`9"?*! ٥m ; `>,cIL)慳P)W{@{I]ͳzjXG7:%h|4x# PȪȆB9Wlʏ.Ng.oɦx?uXK^TWSJ]¼ӡaBj.,Ձ>Pđ-vi,]>2Q?sЌEEG𤷌AHϑ5:GQ\.|{rQq#'Jc߷Xw 05`֭9pQ;Zx_eݡj6Bz0JRjDg#B"B菍xh zZ"IH~nkZЩ/ ?hnW~C Pg`!xkFބ6Fn38h.JYc& N,J6nkB n9 6y4I=4"ҥ6L K(΂I)+ی⒣b4Ƚ\qUA1!FO`+>kxn"|p[PI@g/ _j 'T M_6k id:&GFc,aiw+IvuQE?ʭB.H \Ge5;~3N%Z[dSih&C#) RDI'6-%aK)ޥǠV;Wh!; <0V f/r?-PZf]3^d+p dG_@L : qipP:؅n'覶|fWݿm~ P9ąe GvlW4o5QLM9<[",u:iB®=W6w ugnfyȣ6{i '#|PcAl @XȀW G9x"اF\# dz5S6i2./@TeN#8d2k5\@᲻:& tRЧ*Up@`)(=W>'}<9w\U+rcu2G6Dx̥jk6o8T"c{Uc+sm# ^qBڻi,rp `N:E9+.6A{O`IIH볎];|r!>/by8!l"vb.0r||1p!rļraanMH2$6RXr`U#3!n!^ 9cpY<\.'wKپ !KQl˽ڭ9(ӤN#اX) ;&)C M Pn6&YZ} t<]#|P-+r3]oYp_rFVƊCeP4X"u˶%ؚNQ fC1 sK!YbGB%"`xN)+>:K :u2`.^05hu9+d/cW9`keʾ&<t'ήKWA}Esl1GFK.X1o+J hEF٥8=hR? 쟒3mpABR,<ߣ@7$KҴhq[Jg;qP0jfLf px4l0eo7 [;i1,Z\Ԅ"nR38?5_ e ݀q4;8՜@4 $Dp5msR~܎beMwPHuwqj BZĖ&b2'ab?5^bs@X@MHt~ɿ|ҞķSJz17KWK~6485\]iKRGNoؐy)oϭNϢF dz;MXhZ[菲1/+Y LgP[JYB0}h|&H&7m;H&+!6$q`aqYGґUEgS/MA?"ޏ.j3.B.Ūx=Kͨ rnL.Hwk*%ђݾ'![U oG,t˙a}IBq%RC{s2x'SueaS_aHXlC-"<˲B6ъ >3[/ymE6v&gȉvv+%)+[Xn }6 ]_%U}YuyT62ȶ~qFZ^aYm_aŧ$Q(c@Do@*fxrlp K-*MCuC.z""ʳ,8v288scnQ_+6</B5ͽ(#-BeZ`e&:`pMqʘ$q3Arcl,@$c/Q&1<6YioF>^aPU&:Rj Hp2Wc~/F0k\Ȍ+8+2ɪf N0>`/8GY'kJc.YҼ6t]M7)XMcM6BLiSΠ8aŊ 灬tb߅?6tܢ7()ϴ-$'wdno%!"C"?3"`Mil~;I*;8׮\ Z//z(/TJXepCm먃<Y' 6cR&1 X{ [ !q_)ֽRĿ9zڂ$Ձքힽ<6z{G??,fr -oP&76P%`Y%' kQv=X+*ZO۪3TY?dBSBKYD;iYuDp(r T3*x{C%#WgA~Ḧ 9"3ꋍ]EaZ0B ¸8tϘqhBE>z$ t+Sp8(AT z侎 C׶Hz:o>)7w1Ѹ'`0s6C+ N+"2ϔGvȍ.6OzLɞѣ;K{ҜPo[Co9;Ln9-%ٖ|5ߒxj"I-`uMwz7 . T0Ɓ0y Cw1̶'KHq~AdZIc|`>o{ H[IߑO} [ZԚ+fa-F"@x=31'b; ˖VJ(NdbM,r,/ #Zְ"x처Ic_qH[iG'd<5ra9\wP%1O()*k:M9,K7dCobyC"emOR%Ű:b&怌0or,;莡[ߏp 1KQFyU#+ ?,5Q# hQF`Z.j[Qz0p OaK*ibByWGf_;=OsA!WA> Fׄ|DYő5 ^Q_窦0ZXIݧc4zQN܃OBU-i^v@-`M8(@fǏIsu [0&0OkATS [EfgPa8\>㰃+-=-iN='Wgw3ZHzq<[&"4wZX+$:zcuk;Wz ØmQAeՄ8q -ň;?R'@٧]kU!!s9":>X XǢ Rg@$NL 6ZI.a}+<&BOg5zWv9tbT ʂ;LHP *uVT|i癄ꖘ`Þ;Zt3:a^EJ0<Þ|Jִs(\ʖNY,O*8;[dy˖W q#s8l4Ws#KO]'>„se2jɱ+{ҵL`lƬ`5Ҩeo0u\}g!,#m4MB?]F~[㍈wGJQ>4.`SJ/"Kم\LNfj@##J/e(3|"Mv="7ZmZ y^آ+AKΒ78I%#Ccn& sX, #.TUⓅ'^Z\K ?;Ye}qv-#wk,uPu=T;~zUЍr筫ATl^vi Z4ˡ>q;pŶ%õ5 =b'݃90F1Sr=U2ElRv:DIFTXyp/ v@j>թSGϋ@Vbz;zgH"c;,k~:&$]Go$='5.A #HV-#V;V 8uRl kq%)DLT[zǷF -DMmEϳd~AjO3Jr MiyD f tItt=H46;)K,|;KGuq C,iu$g[q%':USpV23t0;Uqc4A# #'41"-#~ƟH>g]{)0~:{pwɺVzw @$(4mfC"4N|@HIxZiJi#k@4k & 8,Gg+^tXhÂlv@-5ύd1t ycxvԺ@m ںؼзgYgߑŰi+ ^t:ϮE+~㑹Ζ+`׏2)q=9i^KOp7Y/D3ґ!uF֊q"r yM\dI hJÔq~m}@0S->Dn.7' %R182A؟=;S " \e9/)|+25-.oIpb>}`aĒVbkŀ5-r,g//p[YOns=jbTQ\x|m+-+!z.#/̏7e`Lֻ#yMO^Txp]Zpfkgn i%,lU _?@3av#QLlгd?tCΆ"5?!.whķk}ڸ2z8ox!Ӗj&#z܀WwU(aCȹz<5`lV4 ,ZSER^&|5?I55I]IF&Q8NY[Ι ݃Ta/I[ MLҳ*B;θK >,;3W k=!˚݃ ?&Jn$q&gxC k<ic\x&d֞ G wyzOu<7_[`A4E4FDCmafglzɨ]) "%ݜAu1ВJL8X5NJbx,{k]%0}9qfx!E8qeo7#,_X-GR; Y)Fjnۧ+rۿ=}G+ӹBpqa|i7Fk{];^C&%|w0=%`YWɕNhq1-sP"Q}x2^1=@v0K R+6Im2} P |6HzfrC>Uި9XzKʣ@|V$( J}-Vh fv(+ͣ:P$2qGx^oq鼯U׻A87{M&'۾atyS^"+P:%w$ƿ5[L/*_3.yJժrQf7<\$.gz+8#)"cSB?˜CcY#>p54ѱ\EPAe4!pڪtծ-?B3>n4L̈́rXI|u7\u `"HyvT*ဒ@uXl[/BGZ>\+yNsWX4V hk2OOZ`JbOࣧ??ٻ2JtZvrti=%XoNg 'oueCo8 5>p>oݾ"3oz^ĩ C ">FPz*ʣE:`Ĝ/VEN"F,EQMLޏ$ڋT>g,ѧLּ'Ђ2P= D=s ר@1\!G`Z4]!NˋnFUM6foB22/ow[ \fʌghx{rc&|k=o>tW}*ٞSGH 40ǣhxsdo:P!2`%e &?\ɞoTFz/5s tM768Ǎng}H-z{X QVnWpq\62  ɬXXV>qJ2CL5˗"'.T ~& gJ4FPrY&u(x)IjG)2s?'T7?f3E9LKXmb"5LBIq0^4vfyt={4PoF1ek޲>nq3x0Ip"ϱ-вۘo1I*ҵ?!}x1{J/_I-jߴ3@*Mm hANYPwds׍pY rB^!!cJd)VauEY\8HUyLpfq&|.зG߂r'l #m̺pJS-G% P:7kOUc7C|2xDpq@mV&νbRGiXtK~dI-`#B IPK;;#Er. ZIV7c(F# 4K9* "EޡKxp 7x+_@ -ddH'Sqz(]T"yU7Jo[kf4Z{m5R~MJҏ=CV70b>  kmQWBmss1*lt}n@gؿTn_lS|0?ZT㪠,9߸e:4;rJ+nvF]W``(S,$ҥu1*%y ?vUDՖ)Cw ܻWx |AX4Fb˚:p7v #h>Un򘉦.^01sq Ȃe[ y#«Avl}$Z=:wwH6)8U_ep1 ")-%;o:TOdː\ީ, u˱I)xTS! J _T쁑cQrFT5b*>x;%Mt\S=\(mT;^h{Ĵ믚GH~0PTZ'6M${^9W-g4ppWx6J% u氟H-HAٓm nEʆay>f8¯NU[{A%;q~y|-^/uOX4C i9apU^Bf(N\gUпI&돨,Ee1s!RmgclBJLPұǂ:$nwR\;9cRDB'ϤcW 6o*wr'>hN)us}p[1M漛EF~QzEs)52>IyqԐ#GķP#-7j Љoj:,*k>1ߑOnHse˕r??kAEtR*9' 1Ur$+!ґovΚ@āf8EKmv,Onc)8zA07+ ghpL#-599yӏ8z@-hw9q V+ Rȫ >+D/ڂYhϘ:ͨd\M5ue=+$+1At]Tk v| 0?_Ht+W=d}FyzoyXw6e:m=$b $#hvԈ^Ѧ((XEI6ZƞzB?ܝ_x/ _voْH񲟁\SW5!Ea ?9t}pcbZ42[P4zv,`6G w"X&/sc|j?G$\,ODfDlL- mޜCƇ\eҦ?:RPZ!&}&~m#ۥUOQi-@y Cy98`:k28q&{qm=O?ZA\NLP#GP9rmszܩ}&bw%ўa_Keì6鸌 $0Y]>7N^C:mr%wVUcKF.O~[3`qJP˂^stW`YKY+@M7P_PXŮ`YdUr(q:[D.d\LE)Bu&pgE>)c3\8 cD+Fs{^\{nkhL-ԾGjoHT0 7ݩ& d2ZAdmt$e}ւ."!JCZxtR`"m9;YE)B8XtAN0O^z+K~<_S[8SEfɻ'mpבpD:eJz屩Dj r.Z8mn6陨S`O>54L7T9w4#2θ]X7D٭7RIZپׯA]۾Ux8%-TqYcUkn}B9Xʪr_>@ ET0:|obeYLJjr$D)!g~ƒ?3c )!?3gMis,>- +5{փ$qIĥH/!` B/lh],y;3ZɟdtzpӛK%ih u3?'i4 w>59Rb.Hn$DVF⑺`f"zcs_ŭmg+i[ҩjk v䏞RNj(___fy}dZ Y<~!㊼+!ZЧ}0H++5ʽ5믌گOO'EiD RšƧ_BGμ@L>kEžV~uEvP  V24ucoC/G[`x Y/_9֚V,cQ; ]# &&` -ֵ!Ôs99"zmH>mz>{O3.1I 3z !?Ji&Ub >N6JAvۈ3ܶ3.9T7b܋6TWmQx#Ad5!NGU<> zE* ⷙ5EAѹ|Qk+bm''u4Qnj\T/J2pwq#J@ȥܟW #Z˭[H/H#y?K6԰_Ήd~ 3t[D`rb$ldmM*轊h|%3^L2s14KEo,$lfGQkJXSv*XҘGYc?`6B Ll3TQ᝱#p L y/M:<NN~&wi/tŏg0qxo ʜU'J _[Kɓi3]Y>cgW\ N_D0hXX5| WDϲ/iIPB ~Gg&<599^qQdJ$z=@WLOA?*$N74JUwT:4|[rz`ic ~(Ѕ7ܖq攃߬]Jr#2/m!6 D:NWXhS.Lp7S|mLdcB{? S%n@npRpvm02$Ry' R Mʠ=o-T-x >t%My諗>0M.*훜e@`l8\lyFe9gE6r⟉n5F^3]HQiA$t٢cˊ1_ud{6exSY8 ƌXK[9**[S ڍ^@3;$hI6591PuR0n*\/ӷ#?q1D,D[&K!@]=L:u-Bf%{G!‰ jt*F"_%."qQY!?J-?5#bT#wJ >њ#iq&KxSj+p'I2|x0b$ WQJ5]›ޜp,S\TiSdFZQ2WM_b9} 0@YcEˈD{["p6% k4(iDДU7++㪮 8iƦ4BCMwH4Rb&R`K(%r&HO{/-ve# ԁG,$ XqLY3pO<٣ބW! Q\} 2`2n4viڕJ/E=ggW FGvK4iPJB,Ԁޠ0|STwY^'53jh &ms% ~g2vwJ6'z4kj q:h#i2J3ԘYvwpdMi^#{.!pkHt<6|c Qd>n_+- dz5rJ9X:<br&FC֧Ď..1dkuN!OICq9W׸5 _eJ_r@|fT}lVu~]P+|jA)E#HJ϶Χi#ɊmCm2 \),ÈD2R`L!]wv߹{H $ڕ? [=$Ql|C㨡lț!gr}울4eۡXLl&a\`3z&ݿ̗M>kߥ֟arT¼lHtPيG@߂&yxbZ1$'("(3K%ÁVИG 40t 55|n̦Ĉ/ym(x TSLԖ*YB{C.ˋFP|)\ WWOsE.AҟP˞[=f=2ÄIYaNM4aRmiߕO 6*YdP/&>v[%v%-m7 Eg*_ȔCZ8E!^ bRΙgC:I&rnvHHCD~ϩ)A(FIRMH4ʼnFz.g3Bhn*^hdB{nb2Xk3vhZӕw\#1Oraؒ, 0QkukF'eMENgr #CvQ5m+yIgx"1\ܰ6̪̠;@/ !O>O@J}*Zdi9գmmjvyU`зզh3гyFY{`JY؎ʐA@UnKȌrokQȹXcWN=pqIj]Xg7FRЄKB g`U|V{81vĩ]/dtk]]E(uIf83nwVM=P, vm% & Tiw˽\+,>^0Sgg4PՒ= (0l.vSe"M| H8v I4U2̆i"eٚ .ü8k E _N4l緖"ꘀB#; xF^9[E5 }l^DCu̅mG ܩ8ET?vSp{ no Y6.jɋCB ҷW`Lޘ;>8ʟ .CZT $r:]S|Lv mBk݀DIH7Oh#qO9c)] *nٝb:_,`E9 jc*9Ӟ d%S؏XU7SA0:vvՠ;z1[u*ㆊ *"d ?{:(8Z'Agp *qoֵ=ѮL7&J\`sQ.pD0?e# hyGtf""Q J) $SðYnoGf@2Z$W$#ܧ䣦$94abʨI)ǪSmw}\q_߈uB.G}y8=Ak~L)eb2Hj,SvK_F Ai̼Oc8j7]#;% m#y'Jvc!Ա9w5%HfHܮ:<6i +W1OR 3Ԑ]@v7rA ~x .Gbb -7@pO߿ Vڦ] /m̝ހF1DG* 7|au Ee+.X~{͒nQ HC'գ1 Hv6뿬yj ,\-wP<[xA؍Ǣ%qGmp/a/ r)aɶø kj{QB%S]!BuOﰊA|`}wpW4 :WA}(ܭg`Y9TȖ;4Mp-A`\@>7}q8d#j$^b\c>߂ @W;g jcrC+b~#*ϖ[#5N-~0 "7=w U1葳#:!5.16˒eѐn7H0x7ZJ5I @J>#,m( ͯ`6Z"åۛbĹoQ'ز,@TOs*wϟ&pvʜ25ӱ܈ °(@yѕ琷*dX8XoZAx_Wo`rL<+f*>Un>IVm-%DiۢP-t"Q(Ikj4[d0(E=]L!}FƔ7B{X2~mr(/N׵`^AT+6+ϺTW/gNkMF^42"aWT[i>IF7Ce8Gܨ֖R 򫳖` D3Eĕ$J>F!45ݳ+,.y_#IכA_" ĔU㈼#L\'-ܾL)48GFYeψ.!]⇇,Bjd؎tD}<KTx\,L]E, RT@9W[M$ztA#jGl9{0 4d08qZ.boԴཀྵ6`eq1.-3z'u C?O$Nh id鲩9rdkMֺ3цs܂;is^u}E?!}?o p%b،SGni=߽0RB"W)1' +@9]0U!H$**Mqq[9zduc6(ʇI՞gDrR9xiE+ZQR)cwv5 '%u ,>vs`b̒nQ77ċt~yJ+A {tׁNp43w j?fxw2Q^,4I+2,6<8V(V2AFnMf(-%*n{S{\U2m PK&n3p G#)/hSw*^H6s]KچB=98)`ÎFC^TI(BRdjC 5d>^ JUWrUԘlodHI Xy@P$dw#4af~w22MޭkC7)ѷw\썡,jqM /. 1+8A` [ CF2O &)7kNrƐ% /JZNE4_T'7˾Vi,I(]ptjNqljDrsB&6A/u"t/('0wƎgxF˓z$ScpBCoBI[qZ}&xZ=@H܂]Q(1swNOД__ >`4"yC$|:gjKD4lk2PhOG3*^ ,73/9+ɁIˍ͂2>ڎ d&X"tEt(ZFvDCag߮(\Exj[fU+7V[mQLskk_o2jl;BE\ ̦  Լ?FjA BC>AW~Ru2GX^clXohp)J=$bzTv+w,ɶ;g;d& '4E,D[9Q$FaEf)Idcƅ!asl=(CM5lXZ ]#c>X+Zae";6y; -ʪ%*Qf7kQNi˯U` Ff d~8@?xsrB^9?of`H6j)Uș9~}/Y2IԽn\&8d}황k[KM$,bbEnf]]"w'Ъ (ƒKU)+&f/CC;{s-^RhKXsrG0U,FI612:ALk]8`Qcޟ  GӫDKϼ7I[Kȥ9q`Q:A6JPa|قXŦm9̑ikGZs5zf-2,0 }~ 45\+RĞ|(G '~˭9πUt?/Z>eUH͒VTG4$Vzw {|hWE=(W&M;iX4*YiNIy݅ZY^1χ-v3n@E$S*4Č{`= {g'(.:RŹq^\}?t=n7+)3/OQJ`-RYaUq{Ή>I}Z,O 6Vg7 D7[1/rsȳ=q\$,\7~(I2**G.B]H.(>=u.Gr>X+{5*\OB${䢆M9vQX2R;7"QQQ%v?f?k+"L]}D&PpӮ0,=yW\y?p9S&e|+x&^!5f[<4 =. ~U=9p##qZm ).Z։G.p$$+l]Ҍ˔G}z܄-J:q{6PG<`y`t,hlIo= h.%[SlȺ\޸zז EJ Pwx=9&{ }pZC pjqd)vtCT7h}Bl+̄gm%BDzH -ںPݾ3:y͝>֐P:lf[8kmJȿ+T,\zU*}W桻Jˑ4@-9 crWޏ DyIVhm0̶ ܧɋ="tыj٣{vEܰ/k I#Oo*ۂOrJoGUysڎQr:y , fX Ť>;ʜCzgþu5 y_ -$ ob7 b3}e_7vȦqUnLj zí0D;@wע6~QLTVփFh=0p0nUxmȐf#Ŕn& -wg?zη9OAxmFVH\:Q\Wߺ4˻%DIEC%' #i]-3F *1  /p;~f:K)vkʙ2%0r Ok//'J ) |7I!M ]$) 6XLzˎD@R1[qK.-gDm3}H"/!JW?ȞF 4\6H8gR#5OC٬%et\?F {:# ;#H֮ ,a6u> Xd`Ыͥ#iFFW$i2fHEʿ}P'AL_R)+~ësQ"P@uvr]Laq0eB}T'+jU.TǖMPceE=(x I2|Oe֣;ҁq E 0񖝃E3v-&;{K47IJ}GlYЊM"Ff+gWuGZz?|Fqֳ1?Wy)P/Y}ؘ p.*56j1o>N"cr5)Jk? =ͨ`lνU$֣Tb49A +7JgOlו`퇙QјaE7q0rK^qScE:ΠSp̸=T[O8#=cYl"x㳗'ƻiwi3E7^ l9ƯRkj8/JEA+*#1ٶ[lI^\9?-%y t"=<'*DFcoYU.[U(QpW61&+Dw-p`֨;TMPf&T{u.h|a"e1;pX@1SL'[hG1*bdc?V 0%aaᛰWѵrG6z$?47*j)-X0jkp2B ~V'"t.bA{L)0X}xH2,ijx_4ʒńBv[W2x;a\<G}_L 8#kW.*e_ݾgN y;eJ3}]xoNSuN!Q8˧'`[n*OUide\ƖǺ^oPLAiz?PTzaZ}LAh:9M ل*ܲ=?7!0PPRi-.D*LՄۇ{S q'kZy{13ͬ%kAbŊ-$7K-J4?\{eW5*ş8YyFJ`5W%C^qE79xhbQ(6Ka>d14~KM%mz)u ̸խFvQ >w'Esi; Xh``2ϙJvz|͌`wHy0&_goQ6馏#mlT Ѱ<d]rr&_ z5Bߴ-eckR44$\(pDt &Z Vj Xx 2NībMc ̂cK:t(~di uo:.] ݦ2.r{g,tUˏ'B̟`+ƺ`L~g{< #vav6o|KB=RLz9>˗?mI 9r:GS3.IcI@$kٜg J4Gu 9~sb"@5Oܖ'*ufsۺq$-xcreb0zA՚=hm\!i銅&:!/7T_iJ0h]04]hJ7Fc[3v;S>K7r 0 tA#[aWAK}OGa'K/&1߇hNbC֓P, gZ0, febI.r[sR4;-NamQi:+oY\ȢH3e(PMf 1i7츻EJ.q}(&E-fUVDfIPxfH]77]JE#̔+6b7Ȍ 9&[A1~1tjan h􌘙 Ins4 s%Md*zIRjjXd.~￁G>C4KUwvDOb+KՏi4>A!@฾p I2B9`׼ ޹~d$tJ`^Xj^*ۢ"m3sayn[qwU+єv0ZRqkNe3*׾a{;+R{<ǃca Z}N5)\@ap=SHF>m!uvLFmVh]lրrKz\rOD Nh Έ/<"F3ZLn*jU*Vͤ t.#(]^@1\KYq3sDf׸ןuW0QHE5ը^(8n;3Z66ΏN!za  ,@fɨD+˾5gNf%W!tsuhBڼ1h?^x{Pa%P%TP ]Ƌүomc]أSwȖ"knj LtAm-Cݹ;\/:A{6>\}z*5{gPKJ W xF3C9ksg(F=id?n&ovjۜ@Hzʂ.tXrςu _W!G/Pf?h./h&j't]n6NLmZx\(4)NŀCo/Y9cbN\T V0M}t{"V($"(?2MluSg0;EiJZl{ꐯ([򢇬$sU~^Ӱ{¥XM]C_|b^w6 9]Ú-eq4j7ĉ0RsI+>q#."9)#HA`,WjӚQ0HG'Œ}|KWBz}Wr{v y9Smɮ=g.y (*+A3 &S0vfɞEr o-wK/y&vx{\dk]ZoE(Os#?,Dhv,AS{w5TZm%> ֝]²H'/ؤ#~ލI0#mW1lu=$Wya+e_AIP8VbGkJNF2G7;ミ<q>*r], a_L ai7@ ִ; B8j͓fE^%.t~=+]XZ5l'zйݚSE:qiLM{IMU{-=:!' b@n 8ՈջVj"@RNe/JLjnD6[킪$uYv}+gv>&Ї=;ͤN cZ fa_1E>N3zZ42O !7خXB 눌Ic"NEטnė3s67g?ByԺXiZA 0'TmM?oKʻЫ˗"u}'W;E),".~:,nÖs$6v\,84>N#L>3Y)4뗐 ?v kǽfwBbO%ǜcx7gЇv@ DbJ7Iƽ٢Sn$&Mrd>LE}KwZGt*۠H0rlZ/a}uԢdG#$B?t'n6RnRs5Y)$UVY-=AFQ unm >1cj6=Qu$Ɗ8TA}0J[Q~ D"\z>4-+jmDHdG#K]N/f[_qj:S C_lE;Vv(S bZd! QKX ,ĻҸiYD\s7E"ơ2ʏ KZ= 88N.~Yء5ɾ \A>ބ2Hll$c(&ʁDf[C"Q4կ9%)G)!ȒZ%+͚ߍBXR%*km褯9W 4t۴v#nlf31p$Kacxps]O[y\Js״YH)Yp)g?W[_%tϗF4Z¤ab3TG׀z,?ʡ԰?)oNMgk'%j( ̊8%7Μ aAI">3.›z^CxA9wXB,jxKeY!6Q\$ є__`Kd;(4k>ɜ]WxTao;#SbVl\|qp&9S܄Ġ.7FS/e:$Kd|MX4pnVH,$$!6PJg)HdnƜP?'ɗRrSpqX쒍PBp*`2" }~V>10'kӛ= )Cb 99(\aM,uZ,4v F?kv#:~mj2LbT~ Y# Y po$h> %<)--~r=K^FndMLrD79x[\d.19f(G#wf 5rЉ.ȇqp/&BEP@n?c֛VyQX:“\^VrEWDu]$/4b'2L()qh1B YuCysͱkUӋ>!0lr,rq 8T֛_s='o55T?#Z ]vՍۢ.E[)13,"I2?iV%sѣy#eh*SEkY|0>^+0 "x`24C+-Fn]06pۦM _dh5#z+/ܭ߾# QoC$396e[>lxX,p dBD!^{ 8@CQҪ1 26˖U(!uHwKqlTGnw/Z'hŮz &e>kf8ކ Q p_֢T-\ύK8>a|iD XR;CIP2aLQvV (بb9q_c=f/y(h3v'rɿwv4Op 95e֓3pȕQqtjus6qslq9v{_2t{}? 8bN|zS><6gdJRim'.ie>GlۻOO>x8[u>#p랪skj̴ܴfJc4. PB-={Bak4ܧ Y CG^;qkj&U E~䂭u*f8Ǿh=̉ULw]Wю G!8+EDz gk2weO3m3|`_pɇg^#=Hz+y̩ Y2LR,N´s| `Hs7@8VF4n9T KmT7HȔ 9NXطmyN zf~򻄎DnۏɊCM7]4RƟE?ԮEhp8:'߄ȕM7\HsJ>͛i 0~[Iz^[<Y96xBv?)n eSOYbؒe;qR4mLTݬl$^ANypIJbw)fIŸJ#,Ydg>{T:PQ}GDgcO-y̔!?~5E +oPruxYtp{+-zfΌ.n4 ujR֬z g_;vH̠th@{':cߢ< <}'nhAݹaRc%a"/DOқPXGzMe4V1"8 tDXpT덑OQPc^DήĭNvti=p e<|APׯ`it'[G}$/o2)ŎTsdЮ  WÃ5x|4uZ/8xEIɿFhFs=J=ȱtULȠgPETNA %kvOg2./e5r)vW50tX#R@L N&~\:*xwy To;m:_NG`̡a(?6$Yp/U^s; <_Jd<(Zh/2~9\: ˳Dvs:FnHN^HQ]_O-Y9z0E0bۀX?+YJ*ifTNްwh4߶Gv,lp'EzA)]灵DZ,~Wj&4V\[Ŕ7uyD+|_|Rxg)C9הиIu߭?O{hf#웚$,{cAG7G3\8-<`-p}2h 6^qT1{?n7q@'&{ŕ$zb١ir7iK -F x RE2#v~.#l_Cj.nm^N.˽p* y’sVeII'$~^kGV:.w[׬a A!J@Mn{Fl-(V3*d* h3ވT>Dߛ4J蒝hGHS3L?]c*=_REVDjq8ށ\H5 <{Y _HPK" F!ZW֩qi) 2>lwJ*7hs!ʎ*0XݑLzs:7aj pegneʯ/anߓEGe6ڡX4wK77cogւ!PП_U<[=.-=!0ɰo 4T`C|ln#h +3 d  NQ-LI҉ Aਇ[nAKVgբI45#v*xNY+I5 X.Ŝf<2hCNՕ#.D;G=h>'` gX)h% MзWAtj8_4 N2Ŀл7F/yyw.Qts\_X(jTzqX_-zbK ko6Y;E QnH===U"iHQ#6o1@1|ejx9e H-` [p3~4Aűۂ6RL}"b|rcŞJ -G1:C]n]D -{}6_՞4?4#ȣ%bDђ"iHåP@ZXiϠuL!Ҁ{y{vUچq5KmXEzN0n@xHQ~Ni{SрW vs-P<[SLBhgO$bJ=_m T˿TKWfUၰ; +rYh07'Xd&L04 E)惡U^OMHed#65͂N_T:kn#"?Wµ iLB6Qz|hb=NC:"Nzb_]B%uƲ pHEh}a| J-Ns &vG֒c޶DFD6Ds/ NfT(?#ѡ]%5J,Ĭyy:T)ƴ^߁喆Z2KP]Zu Dj#ʍT1TDA)8\KN%s>UÂsY[g8"C91JKnhע3brvptYn^joql^mՏ#|*16q0y;Xҗ'Rxs@?;#íN`!iNz>hM uhCf \2̏mP"K9:ڇԱ* nPɭ` jFx=|rq)!Tf4M'n?{1k2D *٭3 G[*zPEz"yojc~cd*@!c2U),1%F:?톞PW Z3QkįʬPQ9^3C :}:a<\MxzO$2Ưtc4: vI+[y؝ 4B0run%KUɊ-;^fj[ TʯEuP]shSF1,]y#NI`L0=/RL1öJV *Cx5Fw-:UrlYZBUZ)W`b]Le֙Kt *?[/ԦiŲt\[/,dÍտܷtn69 L/D%97?K|M^dgSHJ^?p9cHNڄ!zLЩ9E OddHeA/rXpx2I ԁ<-${Ig@Z)9`ZA? ¿7v=~oSnz{Sߛg}Evm˵?4+gÃaTr[ u@2cgΑƺp֐+ÿK;̰ZE?|J ˆX*[a`#O|jbMUߖv|E= -=^\l2_xj#wEJjCouC?ǫB?^ª1*gRû⏦ȜJ,Y(Ӧ'Jh{POuԷ^cԜ=1owNrVᣫ[TiqN~XM=@g4wM/ϩX?J%M| AeԭBЀ q|Q(U6a<7 Y0!u,@ oY3H>kz BBX>O%SknHai.K|ut ذ+xk-| Y&@m =S0@}W_ŻW,VɈ hGf9 $)z9G>G&/y%Gy+26`E_?M}pmڿ[J^gx>Qlj?@ѧA5VFr0@3!>3bӋ qֵH IStFSw0N@]);NkldUHUL [{_Le02/BK$tr$}'s>bK7̶Dq;'e,*}+^D,R/9| 6#: sX !jt <cl/_72zR/g\PkWMp( f1*c~``2p|2h=9M|;t2仒YʵH\=7曋emojASHSn`ŀ0*9Ѳ†Zaź'Iz4R5*Gblb{MP&>l21@9>hs|Y;"e|`@ :oTTw9oλ\\/WS7z';?w.|'H!7hJYZ?7\. O?$}~$4]be[B}ogaH*S;΄u,ȡ2c"m>TT3GCdt9:JcZ@K>ͦ:l~8R50J 1`'c4NU+ W|vU\akV|thss"֩]m;2}n?8qLtUg %DeoVlUg;Z<3xԴBIsbJ]\B Zk{rJV(l[_~6.' m2<I iЍf gb=;f~ʶQ站Ujq{jv([##US#C:H79tr/[7tU&u-L[/RJL8=<c otWҴR.O4ҔiJbݰB a{-ބ q>'?,/UZ9I0%Z -0] UUk8*U@f_k>7M7DE{._>*#eV>źޣC %OJټGSibqMIuAt)qRBz)ꊻl@!weʾb_*_Ѩ|==+Y\% I2GOp'ZEwrPS JnLrWѾtI~1}g.8-P)@hЊQƂ]bH['dP1`NQiY`KDq],h}`Ի3plKbF_จ,%R{Z ?"K /{Fʭv uCG\sPRЧgg! yJ>OEIv8g>/ EvR" mɐV&%WK/9]lcH nB6A7_^j6G0Q0Ay8xTf5g퓺5w ?l]eӫ?9|iR+@'PF6sF/[v؅iF-5;iK٤C iČav"*g\<L*sȞLXX.|PЈMkp겔`&HHB`cBH X\pRE%ko@m4Z eb!b.KV -I ix6<*.Ak=i1!tψ/V38wvAGu#+hYEbEeQ.l‘Ncbqu[f.Fo[.h7{fN"Q':W}}:_ЖK%#7U_UŪŽ- oG VIN bE h aJ5VxA3@ YaX u=<]8; ڋٮ\~Ik=*; qu[ww^_@nJH R~Dx@IR$k&9U^,]v)1xs9DB\l[@Tїf. I3Aږ!Wb6V}KQ&m{Xzeޱt?z `4$"@9I$iXH}4tWHW|H=j\802$(; . ڋ,}>6ώ P ;!. 0Tw~i@22*x{^t$}O}o<~^gG`5εӰI$3@BYU?'a$ Bd !$D}x,1dф$<} SZHLCZ)4R nD e:CV*lk#l>΅ zN <;{qqV=ic=ozwB; (c C7{q'.X)A0>L 宅=/S#mImaE;6)a8 9i5])/C5J3L9/OcJ0M%&& Xސ1i$F IJRԟE!`[T$AK2XM$F 6szV %AܶhԬ8޼=;0Jg+a̮s92dj557Z / >qmm=w?5hml^Ղ>hι-/Z=S_мt9rqThyH[Ms!SeŸU-,W#]nrb{U6u%b(=%ִC=/=93 G]yq.YCC AJ[93YC+E{G%JXL1{GHuώEQ'*ͺIf~ kgI Fku=$p 4G)N b]y@Zp} R]Dƕ\7Q.|ӗ~|0wB3Mj+v?v,)˔7ġV %ĻZµ)YH?ـS`V@~]~Q`}C grxqĝ.y.?>s?Y>@)&x>XH7ey\%),S2~ԵVIܑm{ 2 PbPϛITC'X& b?XKg?_qct{ 8|Οg>ػq^5[c':n^("yՃOuH-`"П9}6.-ayb(Ԍ Dкg8a{cX{ @q.KNE,D#$Fqsy}~ukdC/F_c\_ܥLZ2 94CaXX,E)t}+bem; @S)(X4؟oc$'GSa[S36ED͉B[9b㢹kI[:6ϯ8kbFju)G @UrCo8PyY $n` HϼZnJٛuܿ&r)O{[5KޔIc(w[FJU}XC %u x:&~k;&M#'O>}\f-ys=K~`hOauUUS+ݛ,\>}YԔ-.lN6F{[LJo=,pTd>zpq"`0 bg EF&;Xs*=;VD'H*1^ 2gu(P Â_6d`jKMciBcE$,&&'8\`o|zˌ ZV% F= b(/Kɘ~RҖ["rf>T7m4z{i?Eu; z, )&2ӗjx4몤zx+"ajl_gZzY8!t F>HCɛظ~T^֣%8%S7fa\E:.w,VEix-[c;DyH&V M=a+JK-MCj/]G[ԬEAzNO"MZyO¡lk8N2y:A$Xm&l- 7НEDey%g8ӖBxXЄSբo3zZO̿g y>(Cd2>lqʹtEo|oN{m0}V7 oCI- ?w֒0bb0* q5]r(8{oGi"ϫ7ӫpwVľ z?ZR+<%jJ/=]O!o+xnirJ͋H?{V(R}`({[-um[z<~]'7/?ף֧*)x-vr%CGEC*Bb<\gW؈"3cnXڑSRՊ86hu;-Z N,@n0tt&|A-—Z֬m]BB̀b IxII_R2>0ϩ ìXPdFkzZ&  qL hq{n-`ænd`H1П [  Z9"'WWX|NDVa9ϬXOM$И"ĈΟ|AI~yMn:ҏ#<ᗗ}&@(߳2RԴ;#hς|ïdL 叻|},-Q$?-2K.2r?(yTrnJaNIIL{t g>|?5>xf<oJW&m^w]gAFy= ;mU=)2PHYbzq>+Y`7TZH* =bFVDp]ZA`rU!|iI=Gh{;Fsąv+̍ 䄥yCX{K=WBCGzz)=4%'pdQ.5r%,@?ϊPP;]f 0 1̷^oɧsfG aM/`Fm6Fog^[[=5!ۿuf(vlꏇ[ L)}#,էn' ,´coB\0  a|i3 b4e}= :̓J:2F1Xj#Ppk4(/v~eo:#9m31$@F -Զ_׶3KzN#̿mrZ&"9\S{MkVFwڣ@R8º6zí{(֤ԪQU4=`Sj=ͻ5edTjz}n.y| c~$E}k<`W3rY=]rDL Ҩxcdqyma|`+o/įu5RH4̥\-ʎURI)TmWXeq01N`4*x~=ZE. r~;8.)T='jI\}l c9 n>"i/,- P{Uia~"ƍ79pS af?#6<@zH7kK'J ??NG%*,s|P #(iL &WƋz;ʅV7>u0 S6n|I3b͜n]͋eKvXH~stB#:ov9!Q8V_.6GmrTW+ϓ'pݮ镕y0AJ81/8 -bYfGk`smZ_oDsI .Ӳ~ƻjyXN? 鰻퓰= 3g\wn[Sas.7+3ΑEp-.[XG«BbT$ $o^@5Z_16]kNbjS[hKpIi.ᳮbA jcݻ}\& /J>d@|.8mulyo|dۦhǡ[[FS<~ twKqM[҆%?aodfm|ζbR*4Q,^Wx 1UP(=#MoC1vTQ~ߢh3bS\.+8P&T`JaױPYUlޓU1/$q o{=tNy3A#QHSveWq{.F,Y.FϷI)luNz%_^ܛCi_uζ,Nܛ,ESٕ")m)B0*_jҵ}//yhRV. /ƃ 0ᴋ>8cOw2)x+|X+b/Owޥa.p1/ݣMv|y5 Mf#k~VӦC+z8≪|&Js *r,([,\tI!DD#i#=>ǒe"ѷ jYf$[ɜn1DHyhJtf4Vr &E Ab,^kc *"A\ 8 󃊟SH+cg1KSŻDeSmQ '{i,*`A"K*G zJ]FC(%$ŅK B- -#-8I&Qf6KR i!)bWY aq uM\= &HsP$; ʟOIWs^cL 1zk *]Xs%tdb3~w[ .}Tۊ7Fg%eP]0/ pTUڥz4ʓ;Y[C( WI̲B%EMU(k)ԜLaΛ %&Lt3i$з@PTi)FW(( Awȴ44Ix{S9㴐byYjyH`5]njqL@ɕiHK H *@UhK%GUم$T+Ge234 L L+)RDDES#$ü;fUS_ Z; &]FO FV%$ADܜ)AqcW*-M tYR *]"@>F}[pܝMHviP=p.XO! 3H MLB[úYcuu9MPoh.-beX7I+'kg۩$<@xE|ZAŬk򼵹6 ٷ $`Uad¼,{pؑMvmeNfn3>b-o`J@[97"$oahb1jѵvsBPݔ"%LN.EZ@8@_p cEMnƕ`aJ-ef8pHp4J kÄ80Qő-kCQfrhYV\lb Tn(n6Df(I }m R(bdfpj"ˎ n\P : ,]1í 0MɊNpBҼJ0nfΊW} 53 {Xj.pX u.\HƾE4J0Ϳ):ɝ+] "58ߦؽכ FӦr+i(KGPfPuT@7HsQБy[HR: v=lq6!.b4*z MY9by$( 5WܷuR\窮zcEmgUф>°D?}㣠OSTH, $J(qj ۖpHto`/L6NyXhY"^ h7([)qK%.۵U/i~LC0›$ Ze͈ p*ԫT$  C$_@wIPX Afjg#4&  /nHzTH)`t]} Fu}*:C%WGU py0E CPBFX^j'%8 MFECDSw@$K8 81jc4W&r0lsZ#dJ8%H ss3"(@OFɢBDσ ƩY!;5%ܽYDT"K3Q 4Sj1(LMUƘ@{m@A¨' 551 q! eD\ Thg-r{Dh]絥d8̯ 9(^`˰LAyY}ی)Mi*́Q\k.}/l6b l>1d6B74f7~$$croJB-rXH5 Ի6*0]tc0-PtT/M\m3  Ԫ,2ތѬ"@Jܩܖ@P0N*Wy]\F8s@&:t$<Ȧ0)5|w3H)i9ߙ@6N9&CR*> p07m¸lM ,,P>*;P#2d,LgEj Drf*%]D'bVQ:lҵZwF3 &!0~cN% m\(>-W# Q1(Hd]EDQ^*jB5AVJ'.:d%Q 9+I! q$QV-Xp$X ,3.(*X$$ "?em;Ǎq_GZ{ #8DpLVށh %8j@6uEnH/xSʕ |<#=1m4hn D\oJ5҅\7r3CU qwCX"dzT(C2I8~n}E}=u)c׸aE@_M]3`LNv}['=w0lwC ϸWu_KR1ql? FIvI !^2b%HX$33ϴu.Av֚鿯1/A<_[ ( Wc>J"ry7vl^Ɓ1L(DBlu?2@-7[h[opD/ji,P^8p{k"o?vp] Y`5JuѩMyVkp$/~gZګ2BAf.3'FTD F2\M9ɴG xl'7a? ]/Ez +{dE17m"u6nbnt*`bЛK2NMo'?$z;7ބѦL7/G.VAvڇ1D4xj+ġ=&Dbq~D&zHv-2>/l%GjL$毱R+&$(ll.XX8xw</#1l O1H! 2@I zBG24ZSw{=(43ѤGC_VP/pwp~Uzp&a7R:Ó?b͟yZ/+9?,o!߷ݳ9nzJ<0"_Fى}K Ʉ7Jgȱ@!naU /?}s?Mo[]YS{3Hdt{;ϵ ʍ ׊VUWl4`аF_s`Y8BYm{kALj}8hj3Y#%Q 5h_q-2LzAaJY:K($P'7^ew]l43VnÇj,vHVn6PuB:l~+ ~&{j?>ͮ_һv0ó`KK!n4mY*ƃŒq#NrqJ|*ΫpDW{om=scb= vw#v~nTtr#Ȏ]O`'Ww~˳3wH;9AEYO_~,FmQN>a,f0rr0wFRmu/-{? /'w6tqۻ?;{ɧOEYSK=ގۓ}>4gc^޷V糷PTq,^C>ũ]ߗZzM[˷颏GM=xہ˿ʌ{ǿ0ٶRZͳnF"*\NDE7o>x;^k1B5\*_}ݬfh*%U@֨ŐҝEb@JAB!׾qfPѹm~G'ő/XխXk:El*no; ԱzqY` 6)6']cwkχPLE͉[x;-ww27Gx@PV*1w(ҵ/xΖ&^g3t =R J! .^cI$CI/@찐x(9'!I'|I/$%۱l j0I+GՄ.=s&RThՃZymvdJkUooUiB 3 )#VR :KQAǑ _h\L=Əd{*ͱZbJ KBE򭧲تsXF݋Ys5"FsR܉4K:Y$B.c]ǥ^W9VY]!#XE4Q>as_hJAQi\`g'_ BWdNX=9\՚P7jA'+̥,< ^N9-$d@`Q",e}^s jdVXPZ c0@ d 30*$F iAE` KB+\P" A@e21dYF (1AAF E0  / H"`^* #nJ# (2)AĀ$QR  gY;jL4&: 7lp>kSKVg;:d;@PHInS6ӧpP=w4'A1_{0V2oRͳFr\{6/C;^sؑ[y}̥%vAZJAf9XČ@jֳ*GZy_oKS鞰Mw™+؁Emq}g ٸUF3y|J=8^wNIv0 w1ILM[$}ǷŎۊ쇨zsƝ}Kjޱ|ݗ;]f1&6! EYT)4|)F-aW |xg+$YxaSi.)JsU("Q#-f=ZM $FyG^Ax.i3K nY݇Ve _70i%УS;7)<1tϙxӍO9cD@oBt !j_Y˽yP^N_iK$B E{$|&:%fa#B90kQt}6S&"@<0hkBR 󍎉:R#[5fUVi?mg򘘕2HbM ["wۍ)[q.Wu9|@@ T}H$9} jE܇>IEŤ^~I$A =o*ﰜKg3THyhI Xaxɉ~~Ë+`xbRB~Hm(< W) 0L=W 4K])<^.kq|%05 5&ڥZ9bgg~AFHT1;&K=A" XCNݎm*y~*W,IU~g^WM e#S51Qv= pcR[{cu[ĶکL"Lco'(>ɵ;* ŤC' I *O]i}[V`͏x9 W Q3?v+ʋu":>m'bh H025gZI%0R4~S*q<"8Y07:*ڟ[W~k-G.CNhB0PAЄh]!~-1f.f4U>FK_y-#=gYOOL>;ͬY;/5{p} csdҽb4 HbHNcc?jtHK3jƑӴ-c \!48 `r8~m$gH*H"" ؛)DibuTeʘIwL4M\bEY˷i޸R s-Y_yMoz )Hn%]J7hRhkZ]l>k[IܹsFu/{%U A\ƊcRz쑀# ]g 5aΊR)ERM #7:?,>g꧘Cf>/0Ȅ%*RJ[8Fj \y1Y>|;o'q^o6.hSm!+|мTM 64 \B!Kp{JV!$ 9Đ&%MeH.S\qYlͻg5˚Ʈ!q$-K:/zxx8[\ 3fs]e 4$sM=|_A0 ycHiUc~{@D\]@) =$|&ZgXXq,z9;"[?Vdm3za:_ ՟ugq4sb0|I*aJӍs#tBK0Cq38Ě;Ӫ:(|O܎7֢}l!`T a:tM$`t> Uڡk6nio] ?#-_a_\˃Z6y3%`CAQQs /`6Hyd }'$RH I8H;$րHhHڌHz/yNGqc=sA6:5 u,\CHb@v%٬giv hz5+淚D&H)荿cO]{8ڥ)QN *6e G%*D"}P13S@SJR1v1F'?*Nq#ӯA=]Hvjlu;wJXlAf4Q!t  m,7}/[aG G>Ϋ6Uf ~Kܖ,ؐQ n&\_dv(.z/t7gx 14 9ڞLl4"_{O:?>=9 M}fޑ0jKV &&rzޙ&!pDy+o[oO_Hqz/&"S-`d8,ދKClś,y"DWv{u]ȃ 㨱s_oҲe՝qVGݾ@]c{b8^4fҔSoV'(vbB'GRf^sV/"NdfJnl]C|1;S\г>ͅ(+%B/d}wna!3:R6K|aGx[?咣Cd >̭GlxC+|j`,U[_[sjIH׮YAߏU~{d?-ZߧnP xoJ*l_]sH9n{~zF3/#TkhـWCz[@sLq2{kuS_uBϖsy#:$炇;O@ԅ#,aJF`/|ၔ.)|;@~RDv@Giڴ/f׊@pظl]~W|k[fqкQH $I~}t8 oj ң!)h>7K6nN[yŽkńh0ۢ[=+Gg^bcj'5A=YTȷjgX}wn*аl GŪAIb7zq:lwly T Co`i[l>echFrn`M,{>N$5OH>+[ }hKBb'̵/spvazo;2옖sXM ` ;+_Av0b1E)MO^fI?IY?_\`)QLzT4z[sx3fI| spdOzhܹ܈PZ!ƃ>;m`\V>_e{ #݇|=ܶX?z)_A~ |i_a٥—ߝr+X:p'JFΜUMRTL@=~sa$\4H\vŐ1#_}~$y6ޠ~woLc.2 K1xHw]x+-{*|/.UuL`N2!PqF a:22CN {$/^>mnIW\٦wv~nwNL[2_74ƟdPr8qɘ5̥i[cj!w㛈j5ʤ`;ez%n8*[CB)_K+{Ć\R5Tθ2ōSDQX1:PƵ4 j\EKc1؃:F.}{^;lWhY74ye壟ə>ʼn'3ʣVf  yyᯞҶ38a1ArAС)8cbjI'8)o`_wqØBAryS}vHi NzXAZgC# ګ`4T|t_r_l7yM?M, W=F4\pLƕ)?K4I64Sdw9xϳo?g 2Ȍv,U6TF GcZXŇÀ`۟hM̊]'@%8ACBo͊hjRitsBߧ쫎.?_@$"oS'=5QM|#کLIB ];:\xC__n|ŐlTlAwԋ;;ؚ+t _ ?S4!~&SYBp~._ѻ7Mt7-/;CCXL5ג~qS޻ES`l>X 5;JV 4&RM=7М?I֥hp* Ek WagCKՌ}•aU/gw9.ٲv,N媡чP`^iq$YP{雭L8}˻6ٖX,N!PTl2GXhcĭ14q(9t^{{ZˌFXRVO\܇5xӽ HgtLhqҶ?3ǤsnAP*k~~>Jj쨿ERϜx[GNޟ7wJ0siO-Z;X}NqLcسOҒР  MΟG/tu֗l*w>zq.&+l4FA=I @p`ی/ϘH߰)ki%C'^Vg!EIY,;W>=M8| k|pK4ٜδŁfُk},kٴ|i]˷hK}}Izos 4%u –H4}0כ/1K G]i6u8*}6z6 ;vL1^ItYV51sjuL.7-`q>|L!`FdS3DK Xk9>$|׶?%߷S*rI54ebI%yԉNHtG8T!8Q.ݶ魯kt9կV|՞~Gk6`t;%wǣȻ@M)kyqAPï{Vi~FW /B;l?Bi}&_ZJmd#{9;؃.q w3$kZK޳G!O=¾>Nɭmf@x劬A OYɫ#s |)>̯+J)50]?UP"Pc;u2ϫ}NܾjUk4k$P+| R$*N)g4k5/8@kvϽ_rt{4OUHr}Y3kҗrH433:ųw;&u=y '[3etqEmbF /4Ι&Fˌ  b ϰ))>.!e@m T_ĉ`m{dE Bx ;*= ')]DEGoW'Iml'⏛M{ *~튎 z) ] ,j~UYxj: gUwDS|71ECPIm][y 9;>hhD"'yo7r^^YWͳZuMѥ5H/EV'LvB ]qDzT.s0RfhJ̴ "s4G.hEArtu.ѳOFVK,)I/\of̋/X4qq&RR ,ʒEk7[Y92]o8'Sx/ .61fE01TQI'D>E?/:O6qGlm[<-:t]ZU 0|k~ sQ AFA+cF*rKS*V/QjCYhw''[ܽ-8ЉD'{0@M[18ʣ)ptdEKQ3 C^^"#LVY4jKRVP Rߣ^4)`ˮ.18qnM8+NEVy}Ӂ%V|\Ί[#`ؗݞ]S{aWKnu)>,__]v+j;s$H-O,G,/碾ߒ `fօEj%ق/|%&M..l|a_ώR4Pp ; xf'O u}IZflq߉w[7Es9snKG=/iQ\#{%aHW)q뿻"k`wo|c@# >;n0K Zly=l7^3fa\?w|M  @sKͲپٕa zNG_Ov=}eϧ/]n⇨kIe\PeK9d܁兹=q GsmT>vkr;e./[%5v;t -i)LSTX"OKU|+evi%nDXW:- t7 r!yA71Aa/cksORcpRYĿBJg|g^evey|m)n4ho,J]q$7wY-n:;ufЛWeԤ p?W[潍e8Zx9IGc[deBP؂T?4\5mJU:vp+)TL0¸tRw_8]E@1ex$|)e@V3I6%xqv>^w^JBF*nṛhӋ-+a]/f\|kuIǿSNPHMDBO^X2&~$%1HkG,AL6BPXËթAjiy#7e!@;!FFaVglZe2[3|!f+ؘ:\X1ۨ56#:*DαmJ3sOkR21#=gH$+G7Zg՟PVa04&$G!䴒阕BWF$);QYؿ Cb?@وi;ɐ~^ɭi`wˢD%&b׿}zE+bnc yOdpD1_AGi\韸 e,cĜ:}c n6`=hLTY:vas&L>&<_,F㴋@EgX19<Pj6xKyR6M|K`hD.SZOX{4?ք 0 2= TZ}|vFNޮ585]m00BNre\҆ݸ1HՐH+3$j14gp; ~ eK]͌4PReN- ŔDUCApt뽨R,Q~ݩ/4w4yC?jWHUc 94*Ty>|۲BшpIН/D,%G5Kkfb:xk1ϱ< xR;MJfz;6K>6["Cou}>ZEuF1VyxߔxUL&D{:M MNAj|No\]d7m|ɀsB#dH.?\zE:c#ATWEOm1nu}jTǐu V=(`VHxy& . .gc ɻұfƻ>@V/Y.Ň""X*u$dy o(:X 4x./ب$-)\ 7T%C ><;]21e#d1 PtE4 Q87a`&4n|]^2nKk͡ծ÷D"j4t=׭@ټfۙW}'Pc6(5dGN:%/{$q>?=QF7{y:cD.:$`tif{is*a":؞l+l@tVkd*'T.z X_ږZJmҵESxD7 i~G`nVj 8)ia+]o7*_$&+}Г?d?|8V<[K Q _<(hV_ H/&nUy~g!Ko!g;NEF_O*I\ʸ}|c' ڑV}ւ&؅j˝Zdƒ CZXARpFF0Chm/c˪TqwkAtng^@)1-]Ăor$phj/QᲬ AU$ %aj |đ4뵿2@"@(*%Y(_Ž?6Y`Ÿ-`k\y #] 9 gQT߁g"Acx`nOvs=$C&^v8-k駓]ȫ:_lv9o/Gkr3g]?[vGD,ʑ[,yӅzgc/X8z}E7ܛ\ 2O7ZmK{7?5D] VRW(WЈĖ-4lP7q@ԟ%_9zHr30W=,_kτvO!7tJMdtȚ›hF' ҵpJ'&M)A)s?GDX0[<_&IQ0ޅwҨ 3w|l/޴oEǓ)IaxRڙ֕>IvScje徛,+Rhp'ȰʞOOs(F )'5/PAy,0vͻP~nȶQJ| (- _1H>yasr$K=m9NEOQ'GnO{IUﳏmΩBgB*<8|\)O&'oN*3[36#E0ZMƋ7ᠣm}u伦 [ U\Á*u5:qc4s hʯv[ȼ"O"m>x\Kʵ6u:$ 1fFs셆iWL2@|XΗM)NR|q=նb1Z*hrg9G]Η}qƏqqޣ]5yt !uJ5 Ona\Rp eso:ц4.z~VeB $;,"APĿ@{Kcƣ^M:n,#v?L֖_$#m J7[v'0r@s@6s^-ydq E'2F1 7BWXN抱ZT74g1:cQXؠh`% W:  Gխ%aג ً!j *,hh1tv[vyɡo(GAJbC\v^śVaj9~'PX.aMRe~Gyl>Vm {oMCS?)ʟ}x>w-E7]J ц{4?ٙ#̺w7u[Vo3(Fys}uI] W,곷PM)'X(E2͂2F]3\z^}&ߙg=>syd6 kM"'<^0̗n8~}^cpk:'OX)r=!X@Xىve|c^vab{it&-J~T;k:)lm7-,ꢊ>e'󽟴O]\eÕ5|*;6Z| ۛF05 I]7zVM=|d~Ȣ(zXu;?`ê켧~~^qV@ލ)~cN6̀,̩^5tkx\Cauպ> k GަuH>n壥umpׁ+#gIԱ|){L{jjղRSdgeV5azփ#UoG&EUwsޥy/' /fESync:~/y۶H l1H,9zkr_a֯+S?Dj8o~lT9$mEÞ۪>"'c}1-~u=Y`- Lthλ,_&{oH*\j Pi\&]k _u6eR v1|lvNL`w sg/`4b^Hc44bѫ'#6D\ubQ] *"k7= [48͹\T2o%o'C=1҇Ĕh,HCGF&@PQ"p?XIP?=?]_[@x:f1ki" ,88tJ 5gQ@&ҸHZ`,th{icQ: oL R@4F Un `nt- 1cے 1ם(`vf62LDŽ'?KBrgS^٫t(; ݿ~X 62dp?#0 Tۍ_o t.KY*|m8Vfz3V ~l>V1EA32A4dH<s9: ezq:IَK׃s~4cJ2PiӐ+'W_Z*-+aPnnl=0[C Z :) Zi.Rae>=j[ʙÞU7uQ6{YBշlhJ-ZgރӤ ?Ϸ{?=[37}*<z: Z4ojlғletw wXo#sm K!ZavL9&cRgÄưM{px&]jT/SyƟ&g7P-KVtrY0@fG=qLG~ }og\>^=h@AaOA;7^&"r]6:RO[¢awpILjWk2{y 7e4/7vwsU6>i4nH.TcpƂ@X@#%H&ֱc=;܊Mn4%5G=J}$ 1\B"FdMݟ%IuKD@G@ffJ84:\*.*]>:N۲@4lr(9L2rY[+^26UT*B?LԻR8LP'C{ZY ccrʳpr}Ni1n`s5VnqxΗ=׳ $y_8|qÜ2osӗU 9- `b3 A؏ax:T!/vҧ 0>u*дpy:|:|B^0נ$(js_$܁A,{|m !gwР? ?;b۹< :! |M-a~"Vp$cC!烩|0*PY i?Aͨ;mwSnnMF+/95qQ縚^O@ow[N  ;827~ʌ .l5ŷ%MgfߘT;gm0fͷZ^Y$ B4 F|+5I -ܬ촸S,/?Syy` !sиZUOd6t_bv'0,6wӪmEKz :4P} *A0No2kA=o0r7R{}:r*DT慬Z;Qș$#Z" e1Eq"uy Y>)*IʑZԪ&KM5ec^"2o6!f8"SJjQE˻c:3% z~QX b2JPcenPEʜiKAJt:kE(66*zY1d2RN Nh\&LN)`XW=S#2a3aV]|ݸLGXoևrRHB~Ϧ+|yyj˫gSkkyd&Z0[,vf152U6`MIiqZ9B/W+Q[3@6] x6A!' S8\&"5E.[gS0w 7ʏ2ϑ/wsjq-@NݞI7ˤ bL xӟTˢ:'{&U˜zrg$Xe~X%›]|\aJfJ3f_ S,]]9p_vٲڊ 7݂8biֻt 8ǸPQ:ņ+bƻ;~b^^%^r oz6,Giiƨr}&Od5Ecnkuva\WJSR!wy7]сw&6|x^6_g/^ {s<K؛)q"..ޱ7pI?d];N 6J_Nb؎., i.ꫩq0zYmkOۦeğr1hqÌ}vte jE=108nG/f1_a./( CJޜ''伒?L7_9~U= !2G_g}>bt]6Gc>y3Cw_#k; ,Јo+;„@AR62?󕙈R<')jQ7全^n:}H?wda!z ;'0:rȧ܁Y`͚equga){(iMᅋTA1f>V7[TT(#:ZyU*phʀT=*(^MvMG#<++C;kho+lodB ft4acSw-^wFbT5gRGl |m ̦BK*ΐiJIG}<ih vT Ln}:"+;u>C ȐfVN[wSe˕z<: h H޾p8"{A%v^%cI23{zMrA(aVKfSDj"C2&uYz<b=|U擿w!IdggAz>"?5#B-Q>\{~Э63u$`sPDƳeSnZ5;kUU0R3DF1r0vwg}I?UC΃aP^6<┮EPm |%G XL~f|Si /W73 EA87AbYǒOFYJ#o85\@{92<c)āB~3=^;؆:fU]Hv*3̭V"^]v2kq_WzP goÐk|^u{a܍1@;R,$ \>YJvehdK\sh5E)PީU_T||-~#_:cc]JR~6Ik6&K3%~rLSxr^Hs@?I2$SuIHSm2P2:*).B&p߁+p1^19~(뻯1>^@Op$%vWf#ugZ.i[Ooë~{Eýec̍z{SƙlHYpm;Zƒ]ǹS fۿ^֎u/9O!q#zyN旚;!\Q+ntmx[i|! {FB’h_{nVa8E D`C>m7zԛ_Κֹ6np*@{|LR ~x?R1pA%C*-8^,5=(4?,oJJ m@`"ξLF&2p[6҃ji˓C S1;FL?Oa;`Ao~ 'z|ͩJ3~.Kyy&a` dUٵ\ǝȴ1 !&:j|쫷^v'qpݚcGxݡ+aߡõpa{ NBxK!}v%!"-Aϰ?`@gve닔(Q3a ڜ83b(B ;"yMJ?vm{#mtCWNjz#}xsn(OgaQ϶dBnP"K>uS`{&zMҳSp|_BmVgö̕{tS1 ߏcnpdRqM#4<@^x^LBak!{HKyG*IȦNE*W9NT/,q8lQV|Y89YŐw&4E>]F 1/0L_ J(٠afS0@֦fzNE[Or\3զfIvXMfaS8Fړyg 랜) /^&yj7h)Q+e2//"4ܚe`5Fzs jy 7݊j܃" -q{pxnCVs謹?e|Oط@3ŶNGNQVNFN@Ip$ḱ%zO˵T=珶[01^i{/Ž1mbP;n_u D0qxX[;7έΕ̚ nq ӸE5&JV^qm=튋a>GBZ;Ic s ӛz-UyIwtm=A{po||0oN` 0q]::zi ϣS$te~j,| ْi yR m)'~\l=Ͽ}1h:{fC`\&c\-@`ݓP/U&~-du:Xj╁{0S<:z䝬f]OOFdt&<1v~ 1%k,G2IV>Ug}S P?*k尼J1-Vn_|x7AaqX9t)T9PuP*9ҭ^^ꦷ=4PPO+cuqbB1G-dG GTԄ%CG9 |[͹cPiN%!#zJzy.<žx?7xf, 'lA0grhƃc񫀔Ml$ymGbWLs}7Ϲ+P@rA'~mח6Q*<0 fyαfmo?M4}T.j{b~7w3~w^'\1Buaog7oa*S9,fL6YpI!&KNcQF2-L%,se EV4i iu¥O&R-4Y&7/<{+'E ڢdsVo!'fgj|hvj7y?18ڨKq D HPrRFmH>kggw[{߹5Fܓ7lIL h|j~3>{$in3@b PٵiSǺ}jvjo`mG=5k.67_{oD!UO3NSvT>;eg*ƔUybҰ{e}ܦ3k/ɳc+s$|R`pݡ`7LR'9/4LR~$BzW4&63,ZPPrf?'4~j۱]:sKݎO -~tL: ͢ ybd]>?]g~Qii/DŠL_$zFV|-y>rL(!O\ i[(fSj v4}u$^7ȨՑ#8p.Hv=V|Oo~)RucZawLU $0닠Gj+:ٌO߷O~eC)?*hFqԜcZBa)3D!vsßV]X#3ܶAغU+ Ų 7;[K 0oqr/r9.耢&a8L_J`'r?d/+Ra lP7KÄ/j#L9Ȑ :hd"DA_Aʟ8@sE-Pe1Tn䷌)v=00g_#0T3(=WeKnfv>_#]e#+~G[^M¡ Y&$F# P$q]al#PeHZWpq)br?s-QܠpNA΁R8vYjcim3Ш5# BIBD'螃6-OISŨ~\y+Gkhti>yL9Zmw>Xh7tt0U; _~8.V^.\0Z Nܷk:W*Qgse-+1)r= .mRSo~awbQn K_{HsP =yƥk1k_KppGrbbu ,C8UҲqGwy~jGjugv.,IrWDf$q\eUG~c'Ɏ6_'t 4LcyyUrXg*4IQ[6Ip2r7saoW],! KѮ a\ޓ|]"ǂ4q-2iJZSB21DΟ D@VF־g[|qsK3tKbHq`ߏN2nYp*vߒu)`jY-- Rh-r=&ζڠý2Ϥ85e mC`4a ˔ @jlJDN4_ǂ61]*++d( VRUb Iٻ02'^OQdl"iIOx V',{6T}; ӓn LBj0 6xĖcm:%ϼuN Z&3mO-2`I!@g$%&JK ת}zZM.`]KA?V!QO1c/ur|r86Z/2y,"XҀ,VP 1HQOF`CE#DYŎE# ?I$ɔޫ?N3+1MLȭn>bHRqZJ0ՍvNXE#^BIUQq,%URjFEE"a!?W>u4ZXUC=ųjZ"]q2߀tl3J Fߚi) OdNV^\ ylT S9-MKBAZ{??G3݅/bo  /uuD+|cp„IP lドw2+91 Z=D %G!J dIfua)0IzBdXק9bp.t\)=4 N0|]3>ʘYܸ`{0UI0~%9rrBA)ǖ^@~[eԄ2|~b ]ûHYpO!Da8Ō,*BBNU+OH3;~z]ywgQz>^]u^=}Qsқw~n^ pF_{xWXt!a H  7vWՆʸyItKs<5.x~oQG״ 潋[f_e˥>Xfz ,z:;5uQfiM $?]T~2_t y,G+yW_4FK#oSQ")OE}%ŹUH-( c*(bFj0%b״64K8LASLSp.lrBEΉXʊŗy݇5^HD 6b͐̔M|n1?jD:1ngsu9E,`݁$ Uv9~ ?bF =ʬJnYC&W *VPh#2R縸4I^ r69Ԝ v T/(E;-OT3'RtE^_b sW~wksہxka)ͯԃԋL] T@`JB!F#¶GDv1?~ ~=w}u\|2WlEj"1 ~`XDK]>c$β$8iPsza2q^Y?O4x ?jfc7=݊Z6X6ZRXhҾg~ST{b7st V_dߋ _щGG_S!F۳koWxZ1ه8VR3>!]' x<>5bs"|:s"ڟ}ͤ5KCYGU>z;ݗѸ[:C.7@j xY›i\7s=׿쐁sՏvdCAϫ?p)S/_of0êx>H̷; Cc~T`prٹ$(:/oᤒ9| wjf:^!>snl6(OVK}q.CP_/d:s|C4s+r\&##YN=8L=πOhGnNr|<ʸvfA/Y:5VjO=˱M#Yd|cd͡{2:zP;#%'4/kHo3-8(ς>=X#VѪ2^d4_NF3u CX/]6'>}x\{e`ri{A{B Vҏx[ //*'<"thp9Y9G!=Y=[=|Ig+;S87)RwIl/ ˴isi'0F2'>q!׼pgL=mc w W1e=]xy:khW{[}Sw6'ea3QĐzv kzo_=oڐ[fp`vr%5HλN]L:DFBzoOm?MUIL ~=O n#043>]{ߕfSzVCzog@H0k*L$}{WHgcYX_}zm鼩1u{2˛{q=.g=6r}oCų^veȸ:/T+ל,<{ҖqHgtq'l:̝{њ3}PFpC o0#R\0Z3 =]Ot)wo2&cp:ܷbW:+07hZ1S$+k~f,!B {q;[ jp#,ϝ\DB~v%=n9=3l"I8xP^K/uN2$xH ͏)2ܧaʒ헄y0!7;!WY)=㏴vcsUx؊~-:ig$!=Ʀq!юnj8` Hmnp0ׇ]nPw۶FʩOQ#C%:H˝Yw!e0/T="l[_[ _5"QHbI,B$dQ8սy3YN ?t S`b_L80LTR`S=qcFnU`zOg0.(! JrS4Ah1H>FOR/ _e-o+1(p7L[VwCn9I"8p~ rV_7l.:PW,d{Y{g-lYjBڥ~ VGqN@^(@qp ǯe߃uid< n,eGkHČJԫ֫{wۘ"=^>%k$2\Ըmr\J 0^ 7ĿχRg8-l^Y֌c>ɱ' 0zPTiS;"+b)ð;F?OG.9z/FQ|ҙ86^*MPof[2*_92bQ7 īNG_l 8ʻa|ԒEU>6ʜ6EGoX`xH ʨ*Ѣ%7Rt{vpXv$뵛Vt4T-mWB%<6hx|ߌᦥZX zJyHx~U\B/El)y(}_M `]W/#[utI:A.9}=Cc8C'- ]gc;s& '>[\YI~ *-:ZpǓaSЉ:񝤿7/w02{x\b1UL' ZL󹘧=Hʍ.bH./°^iaRؓ GI!^,a b(Q],Rd~*(c2QjT Pc4"EIlѸo/~TRtnVS W0pB7 O_[du a-q|h3Y3M"F? B01H"$0 E-b4 rw:VDzx1{iYB21'@GI sw% ˿v9h?y3<үOHYu [N2 lfvZX3G\Է ZQ] nW5`L \8h\^rbf_'86!K9F='4*]{x>oi_E RjI=ˬ:5DX\*3 ,k[n=\9{Eod=T ?檲:52@ ="B9)ErL4?T\&` 2"gLއ}\pw;,JQ^C&F`IEGjAoQïBZ .J9#{Yvq<2䧎Sde>FHw_Hvg^w[wgܚUX%= i-#B'-䐀CB#T$'AL(F'WScIS!d`(}u~#._4_Igf.\*f-,Q*7][{~DF&g<\K0~EcH\*X\T TʂW I0#2+]ZN]wf$}k!x^De}r@l0P"1wGJ+mV!@䖉v!7¡, iFio+b\`M3%J<{MP*cFz%:!ڤ%TavGY1JT_kAa :Ư7 tCKPrÏ@˃s*mqX4lҘӵ♭:WfI/&Y@S# 8.-b,T,WuKw1K\X2(Ζ,D\<32O'xnɏ{&F,-2f⿄zK܇aF.Z`d[3EXc~$09RWQqvO>}v83:EGy*fyjT78doƵK {AG|5 V XD;Y~;2펙AbC Y+>+ f&UO C޵'`s & Ww2]9ϯ“A0Iu/#iHƗz5x?Oq>/{w=Y\gD>st)G@_4Y;A zq_VcÈ@xSkqGuuDT^k"P.H0*|;r:DHb`Jl]S4AAK &ěԸ`4w!2@<+1՞gȎOGؙwXŨ?h9+4-/ݩP9)_]JDjVKtҒErP,g#2KE"D(zΆAe;QE0 `a\BYfZ0 &+M%Ѿoe:~o0NkR2WOj5"&nK)ʘZҪ*ܤڪ䔊*=cW?>ثGHnpz 9]̠TɒZ( ;]]׺q,$ŕ"M}7VpaQAJN(#{PRfᰔjT_w e,xğ% [f cˮ4+:=fv+gS XUR <0̐mr{~:#y;({_WX3ÚDID 3B5$,@ā 0m3D>+?ACjس_9?3r>m0uo`X ,HC@ރJU_vض/'$XٯH"1([r; '*(i 6>xkz&?N NE[O&a~[kR"Ȓwvď@L/RZʇ#~]\KS.bhپCpdۓ^Az+M)%g'>{{L*$Ag߈G~[ڿz%(xb[ԭ|tK+VV.^U]Ռ}2v,4v /wrHU7~>uPWf1RRV8IR{Y_P$jJM9u؆@hL쁥gI(Udl>L,(3Ԇys?7[km &G,)ڋ&}P>M^I@@xH\/z}'WpK!@y|D*}ǏsGո]Ȧ(i+tI%$ oj|j@LqU1 F]S$hC%2~O/DLS$& =#i6Gy0-X & ^H0Y#tp-t1}Cgww;]ig_t9>:T]C*q^lXy`M5]w(ʃ~MSC_#;5 0oC-B-<39 "3$JƓ%ŒjU3Q(`dά.j$4Ųձ=Ɏ,j.iSLũ-qz. nQXS9ҤsPm|"qS191rR/E90HxnlNGȠ4/JWhE}YLZa!TM'c󷁧;Ewքqtu޽㕤UDދBG!N/os!r߾\z;%Uv۰~"&jfZ[Yë}cZ}7xWhW ߧ QP)<+QϚ H!8Y`i$@bKHuJ̧MU#޿-@|=8OŰ>-d@bZHӴ˖xIdO]g%<+!x!b;hǒDI*voW|>d0? luA3Ev~"tyIDSh dZp̪93HMɽذII2M8cFŦjJ2ݗ +yBLm-.Ol TL@HPP)l/KWq/J՗RlTBBPޠ£[/e*w5V}*oyXlD}w7=]z%pOA6ns8| z~1zP[x}XVqּ/HRY k\2_ ~)p.P%\ "L!PJH%>.iA?T{4קTH!<.N _^b/F',^dԯ߇֚;}9@T'd&>$CC"BZXN{!rR`&O=Jd5i[΂q$2Ucd4;g`1MQIϐ,׍/Exf_R.}$Xg׫|fGu;bVj+wm|bjٿH^izc5MI:4-^9u~p#Z׼Aw'ƙǯaDWݶbgwYa+'5&-?+jv_7DC;yy N0ØJaIp%Àa!5] W>,Ox2|jIa0$e'q hDj%AZUGwzцںWϽܽWz% mzKRRң-3/KhԌgvP9[:La%OW*A/Z[F⠣TjĨz!W<3K! ٹɫJ"Gp߯{L# )#2"# ɼ\="6U36ځF[7lh񜧃PXֶ D+Lt<&sadݎT3Qtj㖣3'=@!w K\-F%:B `489 ZN<`coyӧ~ٚEFY=E 2GO7aq27bhUpk֌9NjyW۠YYH5H<iKXlӾ-[?i"*Ǩ!D#t"_ĦDJMCVߧ"^ pP$^]ӧ$:4NHxpa8?af_QKL[?ogUQ9溷O{R9vESOpvG+~Z%Z58SR+J?H5(b]F_ڞu0I_xx|7ySG C& n둺_Y#nF6ԥN8uE/oFo&ԫ-w\֟١fp躆rz7x iagn{LiD 5!J (]ON%bf %V+Ż5og^έ*d[}Ie) J8"u#C)kbEI .*Ԙ!zV1Wns$fחi%6s窺|r6Q(>J6T"MJ-u^$=C*^ݷ} E&5&nx_b^_zhmZV) F,4w7y'Nv T`gL"gzy"'\"gizϥݛ+!X{wk5YeDyaXus`vpVJ{nAᯗy1I"XhSANE^)[|j\5Z[~wMmB!錖F[idyAjM< 3~"ޫOF sWL,aҢAH/̿n#/$HykhqqWۓ =&^e\"UPFȦ<6S\ 9^Nzep΢+sj)qk%-"C.Ls ~}:߇z>_%{}8uwJl=X56kԝjE*غPq^rm֨2^S~V( IFD窫?enu JIV?{g}wB푀_^re5~B6$1~ ˎdeӀ :!3?ԟ}k YKR̙ia7o R'7MV9#/ "웊3LXo]NQSA18GdDRĨ:"@L:$))&0"1Su\/AC5,)z?@K{+fo]z}|3^8'% U5cܞ:ߖhD! Æ?e&;3+&}8?)Iuw>o)$Nh4ඎ&.`YA[@!k ĞBw>)3o3paʿVallc3S1)+5{ul&=^SC݁i\̢T+%7xF)%t I͓tF<+Ma乎{%\Bɑ-UMYIqʐƵ>lMMn6&KP¤ jCW!Ҧf /C!|57x/v&J*s`uros`(|FxXQ]ҌpC?MñGԦLUKɺ(eNGjDF 5 9+ 0dlZCYQX`cw@ᱤsd28yXgl3@T"! g8rɮ>]I f_ۧ =tFFmjKPvgd,cwkR;2EQBΓ ԴH˥+Qa}U@ AӀ];Ø/vFfe9Yt;r['3U#__ 8{zA'DN{uSUqdVB2>AzOsu]sWyvxWە:h#O߈螤4䉍T6;m3Щ)]iqNb Sξom>;eHS9Cڨ~_?k\Nt t?BR ZV+rQ`X;p@z?ORDy* ??U(@uɁ~3u;ӣ\lO?zns҆aI]f-exDLII#B*w`BJ207<9-M$eHSegsxv8`t}_E6BKy:sΪ+ ߨƨ2f'!O)Σj9Џ_>k]1 SdWڞE6M +#`g.wvsR qP{~Uֻ|L -Se,GFuU/p3}~(cJte_SKƥi䱽gtg4O e/9_jm2PW;nB^E!aHU2M> /ӨWǏGдQӰq{oQvjs~ #HaEPdq%k=щM3G/$9ӕ$"&RdKa_}fj$dFѳ-c"/r,0o!,_&^NP(x3Y#8|%1BT5E\Lb,'~󵝎6.C]v/W+BnH[0k\6boqu2K.{G0*Qwh |1= m}LG^Y(y|M&f1eaWR+Zo'g eM,)^wp5.KN:zdMn?ʗw骳62?uCe5RS`%2k`.~^2a,KQ/;qkh뱩nY7YJ5+'/OESsA;c Ꚏ=raxu5_#*d2Uu8wRm{}N}C4Mc n1ɿ]}y~*|h@ZDq*LP+@Tn%*ټ5.i+2);\7*޲ýSy:ISt{2;C<Ȋwd_n6_wx;>9j >(kʒ9Oh`p!X\ڠI! 5lKs~|pOܟEk›:p::5f<KY_ɍ?'*-w@PڸY< V@QP!#\[8b֚l %zhXq&?:%WnZxt ӑ1"Nxɾ`Bxs,8@x$<@H ep͋U4Mo+XxnC(+ Jk9,%T߲C~JK+$˯F,^pRU`SOX (D߮+x+ttj3ktŃδeJ\<3hdI93b0ZO) 0L ?/]eDc$5k}?az=:oc0ҁTj`h:`^m^qh.?֎yzehj%3 ءF*bU#5r4£3uQH=/^-bw8\`XxO^ k˕| _(T~ݥ'‡.S<zpY軆I5%qv'iVֺ}5X)?0=ܶT,_2m{3/kУ>A*&&Orຳ;_雎V^ݲ'B8zv]_GtE>,vu,l*3R LTw.6hjV:Ӱsty.™N&׸-Il\Sufm. &ہZ^ARU҆Ƿ}8_XqrfȦ(w%~rm?3ѯIe@+,Aw[v8;}w╠rܜ-eǂ?Ga7t޼3ɝ&j?xlX}?~`CQ V-oյtV8eżJ1Ĥ|*y.',.ݏpڧ撳ej9ݫu*(P 7=$׌a $@/?8HOc=lnbUBU!Җ"(`,Ұ11;b;Y @e|XUK]t+=Db>9kU6^vdM/E)g#^UfՈ`ÂiG{Aۨf@Rof :Y(KE0D2(gZw `Jc ̘̂Is(@A\;wQ+98{r+5OJLM-f O Cj>xBd=xZş"]_*hRI(*ɭ>ZPU:#/7lC[!BwˎU%Hy6K6M?Ef{3>8?Uq)2۠ r7줇ujjpz⥫"UޭL.pUsXZ\.@%)*^vI00eqCy)ߨ喝VOϷfn HC^ڹ h8Ь8KJ*WxC*vw\Pbک}&1(}; Oby/?x;>{DXP80}~S?Xzh`h 8_2B'YcT,`KDҗ)U DK@r wdz~2u qDs慗Y_/l "1݉QLNDis^+C4-` qD IU ^];F.xt_:8nI,Q3};jsڦovNr9<N(4 V xWW/Y),IdLjv +cG[-m ."[M1kQfhɩu4=ĦXo[̏jn0JA6a(֘¸(O97z%X(:P ޶H穋(愸EI\'䥂TDZ<䃱⹹㻹6ָ!JܥCUˆ5x)JF.6~# PJU5L嚌KLTZ.SZ{Z'[N.ta-/bš CYQfDS9`@"q*Ζ{?j?KCR ,qcVa0%&:Ũ`LJLk0tbw;dJbM$٠XoÚQK"~SF /Gחҳ+ BubjG׻raJw/t s/V_zYe_"W΀kLo6yHRӱyi&:ƌgu|ߌ4i4&Ux9&lZ£1_To:L;܋o0Κt^j}}Iǒae-z<`?m4rMǍ(W$5 .i4-3~jEWbUCo]Z 0z "P=tiartbTrI*43ʐTvb:Ir^3Z٤sz >9 ڬS=B#ua{94lP,BȻYK) BNuꯝ#yD ŲIK[s.=Cߏ+DT]D04.5ZK39avw|v`e-mJҘIbT${uTabi]W;f :;}nZ ?>Xpl MdcF*;F4.Ź}p[\Z.0EZ`sui/Q]-o}Qi@vctR " SuuOwbYnV+N8cV*+Q-MLXRMʞ # lB,zXi=,"Ω88]/ZFX'8e4yfT϶Mov\M󯼐DYV> K3d.P" T @5!n 8WZOO&KՊK+ukRsOAa'~%X$u$r~ mRs4%Vt6 iD$)YS`Kpu' (#dK~$ۻAZ>$2X10pS{Ӿ+6Kw0"&lFh dǎLp9 Wl|iQFt'ss "B_X6k;"qӛt 8co&nj> loe5o q= yN*mSsӬѭp=rhVm'<bn&Rnq]"<ԅ=&b2( vKmzzPtl龨atJ~xL{ ~@rq4SҿzJOTdb*{u[jc;Q(,h*[[8Y:m{ !Z3xг_zDKÝR=KF%_JqI*0G,d n./+T 3ٷtCuLҥZZ^NzdC%,F,r|qcP֟&5iJ"4+[kתwmҔQgyia}p Qƒs8"'_IL;d-IQv1Ȱ(,Vjbh u7e12 PId8FTLIo-i,;Lٰ$$KWkSxX7t>^&򿣒\ءnR BeړKMT_Rxko 2++L _;']6GJPhnx]w$/૾Fbư+w,tZ%&귨4KQ]7Fcs8I?$2{aae?R zmHs3WfQlNϮ OwT~=ĈNcbXP2Sk-1r2/ *6gdqȉ'ksMD+Xl(O=]vG[^//3}<VVnaٸB" n04V`7Zx8 Cu.i4^8ZúId@M \mt-}P}~6(yH9ǗzԶ"O{BQ}&}⭦.*1L;bgkC|r l.2@z̿*FS޳fw"RĨxZU#ѩ +߅zAzuU^=cfN:^]ˠ Pxl%iϏ?N!a35I ?oD*.,# .0칶٠[kv^`8&s2{IeRK)Aڝ z43]sWvke) f_9ӣ1*Y$3/S9b42 \r Yy< ܘ4e,wP,.8,#N,7$|3-ţ!XLpToB`^B?Md!7mH _U,vǂadP# FǗ33.,9],o7 UVGt@V'JtB;bCǣj1h+ԅƤ$'MT($هpaxѷIk[4f[kB2u|^K鄭O28޾aWkp?q˩mGLbgv노6nԩ}Uԑ4&.\0l#KBrOnx xzS]a]1y$'b27OAHw>4:BBq:uJ'Ba^ʃEu-|8M0<*'ש#)·APAAF%߱k}kKA>I2s:JD$v voSp;Lf; RT3GIiF0f*:JS-|Ef'Z#.Hn1So/.&Y7RQA`GjTOp3X[츾VSޭԸB#z >ctm{ZmݞK𲲣 {C +1`s6<ƍs+C[gUUa 5H- f/D[/ tkD@8ey~vMwUp̔pXحTzJQugKETߡ/:St8Gi=l2.ءgC q0kWE}Zs˯#yo+NY- \r^fԜ]-ULDWIGU*MM/'X1uY WZNYFs=/,^2Vbk6/C401))6oaMZ; Z 4Dw{å@ek:$E&kzf5(K0Tu)44t3FM9nL.d3egc(n293T7)H~_J.7ِR{Qnj/pl"cRƒzs%:RP W1"'Yx5ן7D@a(ԍ9Y;7|m,e ׇ:(X_vV-p^:0̅K63f*0vw__h`8heVRElennr勜QΌ1qVhViKy셦`3"g#α>'[S[d9"$z%@_/ag.'ƽ6q0ߔ8%N&F#QZO}EL;鞅Rֿ8+${~)#0Md'yTZJNjVy3+i8px>ӴC'P /{2B# JiJK#0귂 IFe12h74SrlZ62[6%q-³L W6mbSV4Nv[?:NJFa#apTf@-Ԓ=i䦾aMK ƪX3ҋ)%}lf_ ~NNFAY9ҿO#y|23LO!8!PanZC,Q,^(\9`gz4.Rys@G hG}t{LXs?& [\Nnp[#÷ʪ|_{zYz!`dKW9gaÞ_Djg%qiЮut6 G>G%GaJ%iH&Mʮ ¯Có:5,~4$#$⿝c5&zqw /˵dfk^0~՞|i%ǨbhN3?G.NJBn ԋNq~ŗ:1!hy5ۀ_h،,OFFMt?C%r0@4fs ) (dvUQ'{<%"\䙽g.`V Ҋ#TSgƢ~?v g KңXhxQ{y{nTWeł.x69¹kr#@A~a{R]&AЪ"A=i{y(*WۿMl)c8UԖ驋~wXIM^T#dO)~=8$Iܵ4#1l3gu&)5]܏5dѬʃ6aqh4H 0@=&5 0+yPey}2q AL9x _"[aCӅ{{N ;0^}%0[DVܧrVb7O:rx Қ'߭^VPX>uAhP/!Su85S1,:fڑW{>v{Kors!7z AEk4O 9e+"iۆY*T }_%7;]zD>-Cz0BԌA͍;y} v&7 Z=FjHjȯT"o#d햴_o IUf7 * Sbr|1II{e.taLI8;B)4rmBbb\hjBv?bxG,duN/XR,!_Z/5L_`5N?ot# c8I\2M bW4#Is҅~s\]7'EK.L"ۺ˚F:v VdUJE_Ԫ{ƑEeǞUɰaCƣF̈Хvw'w[0Ъ5C.`u+.BD*u\wط"3ja8{}kY1(SY)uԟՉAz8=U% 5˸OӸmʿ1z f:ȝmm^ 92~R5ILX('.k"[ ?䝟BUocj`Cϴd pV= [M:n,={mn+x,͕VTAյrFAQ)z(>翹4#4ȵeB}$٨hh2@3)z(6>uwh= (x䏦}z}aTWrbVi뜔:|x9Qә5 } nկQ%dm)Zjbw+;Kt@?='p$l(W!,a&nn rO6r!lfO?3OTt41Pm$h jA='^`4Xh[8өC={^P _\0&Kbz6 ơQedPo'7<5o 2L-AIpm^ ? yӺzRmXK =,K*FqbT3 ͕+)aVP[߰ ;b@LʀR|&\ks79ln&W}> = #pk(Q%k(mE]B6FGBxU㙴]-.iITȞ b[&?>#` BC q2Kx/Fv2kTf!i 4<"Kūba´(<} g :(/R:`_Lzks˻(95cM|LW¶t5C J҆%K/4US7N?<^ .E0kS5,=,`ba1bUk;HhTJs 0 a]!= $ B{w;OьueOvO\wixNܭHBތ\׾v?cs?TTx.X؃ `/Fsm>Ok6 Co .jNр6!6芒&f@]b 0CO][vfN! FP͞T{)O"uCRڨTڄ YtnB\b /ϫ"!2fZSr50r[h˨RESd>c{SSZJ~R.JT:1, ^MU@}R|pq%}zϧv;NٓE])*^Ҙ(/8eg(=:l6+;S~[$m< W4*s׼\^v|4$<,&s]t|(>s\#Ɖ! {NK3Ad_/O@u#rC2+Fq/ৄ?(GT`9~ZZ9oȚr捴 ] n_rO;z9&?>65DHP]6+$H"+IHz>Z[/IC9o~]?8| AP_GhQƶ@Si>$%ЍQ0I{ؙ$,]-Ѕcv{;>]k_1&y{iX[rlYnTƙ.j9,ٷobo.ϴ}ƅ^+pta$!S1r{Vm$AA: (<3^96qB|Yb[aG#|ĠkX=lz7*8ǍxBcd X>9yaz)_#,3}`4{pFgxgi#! ŊW"NZ)XXp:o(?؅2!- lf[Ǥ:ň2ʬ =S>n87&O0_j:c#RԨ$[P 78@#"jR nqFSO{PPN]$s4HĭqHf0vs#dJIdK53rfۤK|6fFg28گ bw^I*oyinUml˭ w4d[6w}wj')OhfFq^3y﷍1]28]9^f/nK꤯jģ_F[&1T/, ҰQ9I sz;E=5 P kKFD|guh Йj樂^`S85Gsn促|R75;R'F4n"jȁ>gqw6nDj.@li5/kDž5c͛(UY7#uN^ci` @"O5uGe{:=c`vzpaj O@͇0pnb]t1J1CvV34ȯ7K'Uai?Q05{DzCI]z3UCwQ'`G S93L na{v>X6`3黰\ %#nN- )Eȇ{ب,nn;-K{.54qdu'C'ٯǫF.Ө4ɢ L:dd0 +*P=.!yup4a6T@gq-v1x1ZҸa $Ιfk eVx3SI%JtKTͺX Ժg#_kRHv|d;(u״kBǗ…|^X^yDKދ`o!SOٽO&pb- 9G W+DdavA\L>y>L PiNulFG#{@x=jkSQ>|vsrr@~V*m ??G^ۆvQ;\h~b R_ZoJL獊2/=/{:G 47]]AN;+bPP>Z ߕkL٠ p:q'KfH>\2@}(\*: jHe#eHWQ@Z2q߾/OwXfrMO%%s`:RF}P]ē#f^R;TN٣B{syMjLB]aW_/euTp.7ЖED9_W`s{ å]{Cdl]&,v M(?EV*x i8IP\hF@0T88,1أⴧaLeT+p,Ds7ap5 [wVjeTBl[F#Qȴ4M(˱g3EÊz;c%UXBӣ۱ƳZ@b"mdSA`K,AIwxlSt} C5j(<5[]vm$RR`yE{Ȍo7ƬBKB"_^%l3 Q{O&aݐ$cMx^ۨi Hmq(MSPѬPlJ{vbj c;+:{f 4q}?`'vXY L2 Z)єD}+\,2ߒnLaZPp 1%GףWϸmxP$X Ȁaoa|Y9xeqC]tveͮ<jƛg}vRAߺ/7Yoa!s}3 R8 Hn%^ۦ ѱt֤vD|]WdZ`|@DV@tL`T9JB"堵_6=M9kyLAYk9=d+Rl7`!ѭCK&<(yA8Cȯ5Hi&u+24uV[6ppJ]/sU?q6i*gIG 82;I\G&agqə(}kmQYHZD$vt'[*_V@Yjx`9 F s yGzj,Hw^0<:PL! ? 6t@Ѻ<ɽm5H'VH3Rg= B]G5z !J6 Tzi,)ϖyo]aO< t1n=PD5|./َcjݡ?0 6^|̈́kDCA8)nDH0*D ab2n!L/瓫'HR\∨hyO0^'Yӝ ctC3vHuW PȪKŘv#U?L#T>WE>]7m&g_yUsٳ1hQKS njW`89,+VUr.jW apG.bmY/TBzӑHh9qJA9"k54"w[h'Eb ^dVs²xIK y0r]50_$TƊ_1uɅ1&%QEUb<8=T~%Fc !5',SjRITpɚ? xqcmqP!#&71r< wTS̿&#=˛]q(J$X[oYhqX&S_g'V;6@2w-_Q+9GeZ25BVzn>>/7s_6,WҳٵaA/n87NKcp%T"L&P2Jy=`J(SE䡑P5T,($>v$.j&gBm iQ>h,#lTVXll@Zêo*Lwva-*x}&@[~É{8Z p.j[ڔV~xx0g-FRE52L&VRlԱJezT"J,K|}~t ГQ`E$$1:CiEU\bX2<=ԭ,ᅓ?(EGܹ -+(:O'barևW@x5JMp7I@aj`gS]+ZM&' !.8Z% ${K G]W(D /BDM*ςZ{ Ã>GK}[+OV#>݊g|~1 R۫?#*qeX]LqvTDXpEE~K|r_Jq'Sndp:lp)Ez^z^fZ`t^a(f'p'7H/2'WI ❄8'?ʘTjEj-T%-f(Z\4S[%jjdEӜl{|R$lXCӇ~hDh몱 Z8JS1Z0 }16Q2G.N}$8GYڜ,SW-g,>!' ᝤ6@uIIh[H,+>%dy7[˨}+!{fB[}Z%ôR%mѐJ\GH$$6r~wFn(j:rT"ǂCc<n~RSO{2&p]xHuVzϜomdFeCd+2OOx u?lQ>r"lw?#r47HMn9a|LɃ: dIEUj^fID}t+C%9\JȤڼ"-#g:GERXQ³E#[ Jj1-Z)%b=9?ӕ uDrbmLfwb0ڣǿ;ӊfp[;34UX:ndILMH)ha9~?j0QIqdJcR#!;'9rY;F(9*h'<,V׶ B+Es2xZ2Bf3(Ub>v*ViN[zऴM0|L2VUp̻|S\ta&K VIKJѥ'͒3/q,ƟVr)-X՞a?86}:J$=g9ng_eSCSFq(0c_@WTdfG8h&>^~di;%_?֯K'u5+8;Jkhm|jxv}NM指xcه`&x F]:>ԡ!ڄ>) z-*j#4aRXozY=$rjVwj;IhBOQ%dN}*hyz6qיk]K8?I jX(i*g[ 2쓄ɵ Z\6xq|hp<"]6xTB6Y%c(y1695;oLhA1Ů=UT=#N+:\b'K^UD"[w@Eܹ3fJYǴ3%و64Pۖ8Vx%|u `dŪ 5LE"߂"-ۻD vuhrTdbsYQӷJy zV]+dFQ:2ȺbQKɘ*O-}{6N !lDԏ _)3#>йz5mF 1lg[| xŲ?N胐B? 88rvh'֠ c3E4•^};%ƻOӰ?"~ʖRf+|hmYx@A-"ܨt.tdS"s 5xF T;u -z5y3E$j*]yÙ=mP/$V/_3Gz[my ш O[%+݌j;\Q ,h^lT@蔎9|*5EpyTˉVʔ8#ff+?}Y / B9@O*9+CsA ,q=58)U7A6Ic$X=+:dmHrjP" 6g'E+Qudž %Bi _-Ns =vzb+)et2t=x@bj Ff-{8?g*^ŅXFIJ0 {>2aQM2҈>FǾC˺PCBT Cb |ں{HvC4 3|Xg@"k^mgt_~'**ɏ^$<m| /g!D$>mm#l7 TYy1><m{} KQf4H-|5`l QQ> .;/b#/\UegVn D( S~5ʵW<~"4&?1,Q6]|5-<eѳ?Eftl_IaҖ3\E"o4>MdNiavmnm0N'YS3VgzcR?q n OBܨ RCguRnN]B @'ã/Y`.:) pZQyV sXLވCx`T 3VE.ǧnyW?QuqN?gPoH~D nE,r1-&Ϊ`xfHNZyS'5xS2Zt ;U (Y@lҬXYܟ!a9Td-vYO. ڙghZ4g^חO#/KR8- fG Ԭ:5~Kդ R$drt >RhazoWdcOhW-&Ri/bmOuHl\uy ':p@-ߕJ`~m.8:8fLjThr~Kf9G"oa3SAuk[fRSl8V)1w@8aB?t d=a7S UbϤwtsX#v"e>[#:0wveJdUkг˺do8J]݅+FfC_ȱ+ Rܖp32CH[wݭ+Vgn0wT@Wdlt4~_r (㲤ޓ^#D =fPOPsOJBSzr5e4~?IX:{+Wi K086i3ǍYj{31CY2$Ahü7I@03|/«kTC AӫTUX@'|g"c`7O HҋL\{ݟn ( PƐtUZ7݁qI2pL 3}txy#67/-+J|7Ezm~U]m:]ȡDx 8Ų=gsTfʝ*2$#HHhj,fr^{Îoa A:&:C%}-~T "u +|GtIv$,؏`EFS1I9I-}OCCp1ϷZ_ 7sЈgC_%6Iv wc6)6Vbl%iM[1lLM-PZg4lEoz0nO m+sgmƘ>)c`_kq6Ukzd=u;݂\{tJ gCnwd.=!}=I]MXBx0\hJ yL@)LsUO$i>CC:ĻYVpCzؤvx JZ/v; ^ 1xFts@kT|B<%Eg' $qtѓ?aۙr^|%XY᪋k8C5e$*k\1=GXNi ++db֚}+s\8νg=9MlRsCP> L/$~#TXGS+t [H;;W4|MΨ}!8ZHu! 62<La"Cg^@}"8Y~|9,4SMZn.aAbO ~C¨!' 1I;֟6g@A o1  aF+h. $4^oFZi)፯6707eJ/\loON5DgImz`P)\_Џ+.iO1 tK"\h-2G'ɢ+udŬE~RWs>P}e( =o; Y}EY?b|>fQFkBPΆ &9=V,'G/*N=T&16bi([5q1OeF,Gp<\'d!0-r daL;b^%|ՇgpZwgUb1/NyMTj|~mJȏ J*)cKkI+ Gs Gy4|HG3⢀--_342s8!I ޒ9ؕ-hi f!%жroD=1 ˷TME\.yQi7@EȅXc;C7+ snST@C٩]TcIgc+瘟"~Ա/Ef{*m!k1 ]*ٮ@/5$mfCR4hB Ek*Tsbce?Nq:ǍÒbeSLo)49eAx)btF 3ΪLᣩ 81["=afG?Rw巪VvrFI_a3 _%?˶JR)Qa JHr30`Ңp=K4O3#$[H~6WVD[gD`<$?OlJs91Y)Ywg*T HY/f ڇ֝+ˮz~ʢ[JA`r0r Jam!?N*[I_KBeq>y2)Ir^;Vzh.%gR$ڼ9iO=pe؁G'Vm_e:y-w_Ug"ˍHT!6Hw+[ڰV\ℏJ}2y%J#4B^ )dT=])|ZNDD3pGVXՒcylB> 7-]7F*G[,! mF-!s~mo^oW%U;qp.|WnPr."'yaT]sxܪ`O\iL={& ls)ӧec{t/R.S<`}zZV]~f*B骚tޠ)Sz{'+jX6A.gcoVov{ld*2l̪W. QD o䖠>ΌE4 \͚\x豚LSb6 x<^7Gn o'QoPC翪7ル.@{FĵjPA׹EY'9nˆ%dHb+5fo$Qq[`OQܯ;RfBî^[fD / 8ݎfBz te'[RYP5DDe7.fNScZi %3F?> 6ҏ/Y3RIh|Eevy-g+la.R@! 7c.R˃exBi2ke:|Y~GMUΉg+|j_Vgh ̄`, dqV!BK笗2*Bm'C‡H>lLObOrU,FzhF5=o}Hr/8M-TZM]ܵS˻R<3}15^E"5XT;ZpHȨ 1:dzaB bE=~}T<qpa/L#ɉFe8(mN-^Ai#ʿ_ D?!SN/oX "=;'hʹDإ3ZTes `K_'/#{97HͲ}ŸJ͜;Ek(] [T69RQr;]#YNAEM.p?8S= l )}cuG [Z#Te6`S,\"iE-db +pz8L/$}9zC$T`4C4)J [ nt[jf%Hxhߪtp֫E|-%%n")Hbu$R %S o3`XAHzPB h+M %\r‘YxV.Mdڱk}T'uP /xmF9nh)!yQ?J=;%fkmZS}UJ~F;[9h0,~IxW`&p*xf]KZmߢ1I;P<;m+d;>&)n&?wY I_\PZ.70SzQڊ[oj<H|`Ft.MNδBIX'o*38p֞f5 #SlBP@-5X@Ogm8O=z~)7/qьT"Y|MSIFQY<"e~%w5.w!XQ@65%Ot_wЈY19Viz "1fTǐStXjXl/Wq.$~ɩ8f)+t*Cd@_rW_09sL ?蟵 $Sm)tOϗ`C6BhY9hjHgaGk^;|F. H j/,laFK4~}͵ʗ]BeՓ4v\xDe=jT-bɰr %#_tĥρ/*C~V&ʯ OL%XϜ|9z~Yt`&KZ9qP !_ 93`; t!whpb{W5lUIXȼps8a=TwS5އDEW&;\Ml`e& 4(`zŠs~1[Zwe^WzL㿭8Gp6nXg]Bj0Cm!5xYg/{}UIx&ÿD: +݋\G0!KbRCHKx1kU 9bdѴ.tg~UKxԜ3P 05*7d˺F_)Z0W-ŕh mjJhl&z26F? ЧS',Syl=,m.ϗ`{U&)J$kD[X@v |kl^s/pOHӏ[_-N)/6nR! ɭ%t%b4rR-/H3a:7t?bJ%4ӣ8ū-l%0KdsKL AxZg'f/lpΠؤ8mυiH[/w2vez8}k2i~vaLn6G]<-VHa${ZJ-_76_ְ͡[#6_jP\R-''`zT@eN2hCTb< kNBaحTVzL7{N$ȟ5E̮)brZ;ov/5ZcH彽e+g+X,J$FaƽҮ_/s0[4MZ%:3?&T4jg}0j8YB7l[L v_}kOeo".67lLYqQ!)㍾`Q9y}K)_jmBrzH㥂VLウ|Pͮ-T1G?!7ʀX;kD5OFp4,jcmaYW?dZFJfѤe(,ܽ!p(cyuO4,>?h̀ =+m߻-䃃΅*JavDYz5clNHs'CrEd}yF\čO;x:p^899#{*m1QBP:؂Atǩ>"[_3ۨ$znɥR~tt+22ʛly\貫5W] v#Z71td.$ϗnH _mE9!NRV.aU ڂҘDt2OKzw]zgՕV`{ 1r@Q T0][ƛ @a`8g`XZj<a8w\O)~-f>_ݶh&dF٤|B‡Nl0Ê :y_$Qnfg9_TULQ܀a0 2,N2qE#Dm3iw"p~:؇.fBmR9#Z}'i]ĸ ?Ҭsg9.auUTI%ǹg$&`!F3.uC:!mbQǽĒ邻4*+QVuY:$S Xlr\g\|glcHr4BrNJ&-`fرެdT`r=%%|YmH m_3"iUmb)1kdAkW8L8y H7.tI"R#Xh9cS\Tn{j8kEQ>Oad:q($t>xG s=a }e?97قE"2MX+叉b_`V@un7>l(j#$O^KC/ 'MDHۇ.M3FvFaaכ2,ƬM֛ܟk;8k%~:ɚ@86W3βAj+GKZ>!AJhh뫒qQBf!7NvU#nj}9h0\m;66OqBK WahA{Pa﯇( h{13KU}Bx( 2|v<bcWEV}0euNCǒ-o F_؁\m$'^}E5o$1zsUhh5g b4yV$‰ʍ|Љ?( Dj*7r\A~lNƲLА+M& C9*8J)bC*T#7ܺajpډ,f+ KF% 0uhhvOI 8\!OSCQ_. 4N7<^ p2 ZdFc>loT}uqfL{9kϙP%b0,ǥ6D;Z.w;rt賎x'⨠lƭAy{JRy1V컃P*o[>Ou=M_smcjh.PPޱ=|^IpK܁RbBCsOœ7F|#y<)EzM!|+r Y(kQIF6ZFΖ,mhYé"ϧLьf3Sz-(M|nn-t8;2dWmmIhX!uzj_^TV[ @T8pRI*rcml39/aΥYAfj]c*} Cb21&#z\HVPD 45H~ ?VYJY+w4 Ӵ3\+VXhzVЖL in+3c*<%ڪ6Asbs%I ϼksmYK~@R4eFAx#VsO"8 Ɛ{ W7f#  V805\4d{>=Dh\XG-%cS1/PmׄgnP$טժRWwSF$2{jB:xPlkbwOYSt'1ȣ:hZ Qҿ[k"3"F-25l:(Uǫ@c?qNooC1Wn+[jQwA_8v޸GTr3ԜڡgH p<7`juSI"ԅ~HwU$mI'e [!S}m*'/Öޘf#kYkχ)B994I):بjq-%2塵Cz#z4BaPͼ*Nsj^Rzŝ9))ѭ;‚N sN[KB3y`pXt7tNi& "trJs) G̵9DֵA];n 6!wEap8Y x͒~2J)aN•斏M*WeQj&=;Rly;]|%! 90¨n:0f뚚cs/Wqr/ &U4P [xY]z"ƒyl<0PnsϚ rCY}#$yDV% fл\_ ˍ@*>d/~|Q G T\\CK]DSIGL ۘYc~941)$w.] s"$w,J)T;8D))G 4,$[Kv*pnY=7-VmUqIm\!Ȣk2)I[ζvq8MXh`;[ mP6K[JOKJгȅHcM+`D >jOdmI g %r]7XDQlM :,8j.ePp&Ժc+OҔ[60хd6-:?sx߬+f: L0;G.;kuIhibС ;|F)І5|<YBrAh3|.Mew|oZ~ Ý?aD5NJYլ D\z߽dJ@ +z2uվ])`] )'1#dvUǥ`K;Y'CS/b>}4Z@^>1a,;&Q֞& 96d&l=K5BuGQ vm $&,Bs$J#VT~Kҁ);sQcjʰ-jנ 4 `yO϶"dwצ~D)/R*ؕ+QF04`͒$F_b؍_|ImF%e]-O>@\nC4si07osvdN>"zJkd4uBʳu{nжl#; {^灭Xos~=tsi5LYgC6M! ,DK]Yq-]-yPﵝĴ_ip@0H)`873{K@uPo m}^2&h|z.fm{ml7 NSm;:uJZl)dVzUoxʝW4kX{St·>IqYl + fA;P#%Iڪgԋd?sou.r{MfN+]`/UMZZ Ypn ڹEu/]*r6VOOʪAY+faDpF1s2stI:-+F-`HgOfY#;xcU"%5ªSRSQTʜɔc uŔɶ|tGQ"Rmi1ϱymOw+XĒv?;i$D@P8 3]"x[;AF#.E ZE?E$P>^A]7]+g9nR@\%/~uajzJ&LΝ[]{)VߒN).G}Ze! @N&qhIbwؑ$onEh_rvئFp;]" DžfȡA^Ǔ9T4` s>NFQXRَ,mEK]18v_1e6f;w_#.[ߠdRvgyU=?P{|1%Ztrg8l}OiHH'J*jW)h)o'^ClKn)d1Po-MÉAu1J zGm/NϜ?z`| e^ϗLc.*UC;z@&w2鸌| +*g]yC\~ƥ]#TlpRd 9Q &In+>QD5͊+fK$4܁) $;i +)xR~yW0gbZJ γ$| ZՃJj梴Cԅ6QϿɛq}WYt?U#?o 01QxU>d鍊 cPOvI0gL\C?.p/!^u8^YW6A0kcH.i꟮ fxmx{"T{UC ஏg)Pjإs֔Jpd x:x23/sn9ƗOY'ye6/T8jW4u,'slSR^AhʋKKqWPX-2-B/7X!X8-LozH"j^Uvt{]AڒPMZ۳ ?ȋg%PD P+,C0SVhPO  YAqa,|Fš9$Q&!)[ +M=τ@_NP='!1nI.Zi GpU9[^H (ŇN xAgч& n9W%JrO~ܵ[D3Df=6ftLаE-nB& dH5Cj]ՠ3Jz;Wo0[I75eS90& ?oKȡkh*<5^><]8CNIVFa"UvPU2i)Lu7۟e,;}"Y+{JAzi4p=g; IP2iZBH§[}|#,^]B]ԦNc+iK/Kt i^BfSVTE]阾99bF9z"a=ﰶfdVbn7RnM/˹[&k55Ю+&m9[ADb74T1d͞Όz؟껁'n>HDHi`PN$ǗZ.,m(.Ig㟖iz@ .K?ƶtfOģMfP0W:Rjh@V蜳[8uyz /Bl{Zܤi^\n*9L@- o]:>9XRσШaS-C(ZXUd>E=|.Ljă`‰j&3i_2\~['?D"1HSKy[m$y5GT|`95 v+upA4]oenzh UWīr@b{Q@i\SC^MfQ#٪/!>@݉uo%7$KƘ"5B:'خ@ߐ!2 ; ڜ W.qq0/-~wX8vNO c*EdJ,J݀seK >hX(ʀ9-#Fۧ1&Hg7ii!P';:z|$?HEP.-[iU]/HB/{ KaYx4)KP(R9 fdeVK"A:7+酋Y/*p_k1Wm`2|qxbHs#o(!"kuaG; Nc݋E޶92CPj6RCO8&;;"bc\ծdžpA-=wVx 2bmlא o`H" DzւJޔ.4.gCloH88̫0 =6;;ɖcJߜM/MBroIh}CKeOY{$Vk‘dkf@Y [xfƶ8*I~,z9@;er=p_UQ%ОJMLHw#Z?x:KsH^3O'5L3;/L`"$bPLDIkRs'XT JY{^-J] u0h0!0y=drlܠ 2)0jWxlPsB 1!3~t-}JUU9ps`;؅kk$>Ayxb{s{;@_j\F-5E~n8Uؗ h*t[Q RPX Iܑd2 'oK`XvX@QAp!7 PC".t!o Q,4ɪg!)0! ֧9~H(5[$dFrHV^mx)uMiJz0L`B' $ɫ'LqĄ 3iJT+C)9Tڼ|x,P_VȯIGpl_w,R_&㨁CשD.} ->Zj!4EɳMs!#@aed vsL/v[(ی/SA_g^PgW1 ><@xT1X%OWȻB; r>52irA`G `y ;s3V@SW*bbvr <%k1LD.ޟl4B+IHL6G8^/ss顮cآ7M2Xz73HFn:Mp4' O=kF1|P9NμC#7vf$~剑$Q ȥ -=c0mIIu}HU=I8%@N{jEBu Fgd]5O\pYQcDuy{4QqVcx,pb+k3ӊp%CiNbӟ-oO|kOtsA{+I#U|7Nwv7C0N\?%y91PcAN 8X?wj3T6&8\$8&%HfPoޛ쟥ĦKUHӗ)#l k4s}KEd_9;su:c&$ d볊74d)A+3ƈ &| ,@Jeޛ(bCFp?yVwjq`No%Ó Ti`=<%B  -}x$k)橬3K'|捁:b5 ۆiw gYv<W~P#9?¤ SDA KbWUҮ =}Lalgrw]f\@qw n.Tޮ,BJЪ}Vwފ֠}*h*K#ö$>T|LnCV_Npk*g ʥy]Ud{i4wPYK$Sc,ץjK>㤥S߂fFyfpz1: HˬSg]WEIX΂n}yyW, "v;"e . PS WmL{llX(=Pj@Ď5!xuf)AptWin`͕R}`x,qb侓-Zc@({4EGbCBFN&RT#e< z1eI)R $/V5I\5ݼ'+NxtwOoF(dPK 6aCA<6,@`Vw=-̻72=]_,9 &[Da" 5n@*346JDȥ!NsV7)/, äL|;BXX1jRk7ա}_Kk&Cc>& iyԮԁV+H7ЃÍ@\ ..}@L[,^d\O?,,qH"ZYq.p]4h-Ȫu;m`7t>J#2<`GkqBoGJ=JuIyw<;m5`$73w&+bQ ӊEٺgs;1lRN9@?bq˓cX 8LU,&/'D6tcC9ֲPg_w F!L4^Y*PH菦b>4G*Fب3Y˞"Ki65dyWݸg89v_-,;h6Zw/rGMրR%biLj|z;N^0;҈ 6_BOlp?L192J`_ _Ir!6c)\--e7~DQf]Ei40b,4T+kCkk/jiX9r3tUC|?D-5GFE ngH@ao'Ljڛ,>6U6P%2 `(PEwVޜeg;o@Ix_0[$BQ ꊒ(v8UtNmPmsRWc z-mwjĨf "#7[`/W'$_PԝU(Ygbo{7VpV3\#bSWdiJ< *+F|完-06#yS|VU:w;{| \.kBBNnRPtci\R[BK쩼k e$a֐腚W<,QtZ 3GJѾx-_uW/-g,l HZ|TΈQ/1Qy2`Mu*o!]C]~Mov';='|>| `(7Y' @J"Sqo?nɰѾ`CC$uW!YaDRa/()nö^YbkLV@RW|۾Wyʆd*6#*P] qwc5}w15vJ Ei,"9NUwWp,Rֿߵs2e5 ۭ4GW$a5`q48J.WčQnǰ[`J}hJ"Yub7V~.3 c0L!z~Y>h^J^d/|Gek ΂Bs? ÉpyXD)iamyXg+SdRI=!f{G^W`4ʀx(܎}D6^E ZtvH8e50D9.ÇUs!FqT'.dw&^=2Qu zw$y<3ԧ\Vf2vh㺍Rf&=(d^V% \hw$4Cن;⠞%Nl;Cޅ'>Ԍ3!05ag3"w2vְ8kdŔi RT]`G_0ne]O=b ܩ79/ePkͩWit1SBxaMlܶ4 ]!4sPIGw}QjWGPh#́f0ZV~.RFi5 ;/, }r̼;ѩnX׾29B)??2IP@B#5,&;L/p[:<`({`V$e S=t4qxk AgY[LWTS怔wEEp%vzTf%^ьmt+WfZDʭ->ZahD̔K}[a!vjYLFe?i٥YdBr yp⢠F&f{aw5|Zf4a j3a^ _:^Q.wRT/Yk9y,\a o[^ bLyE;V[H4+ΊPy%geYZi[]8T-ЊCjkNX.AL%l˭C'V0Py/lvT=~wO"-P}Bֶ tS2힥RIW*M Р ֓e1˰ǎ>ZRb-֏ `5:׉$Ю1PE7!Uld}xL p2͚zIvrZЅ&r:JlhD y:}?i[Q^ 'ػ8 FH:W1}\Kg&4,^[jlfyҗ( ̏0ǭy5J-}:r/YK \_h2vǥx VШRH۸> 'PF<q,fnt}y )積0\/W7Yb_k;Hfݣ%UP0I'G`y.4>\b%/w1d{|},W@H |`bu< .DZmP1{n: A,ܢ 0`w<F?1:+ +>bJ [:-9tvU\!1xOKk@"zQ4ڔQ߫G8x!fM#$aRM.] a@S~֘*&nqdɮi~+GIkd3 owTdZ>PU[QCF-9ޒM%u=Bޣ M ؔ;@V  //I̅LU+fu`o* UP±)e5,lb?PV% ks.xTt|(nh+0 b b~0K"?!_ 2Vq="=Jұ2-'ҁ*fSvw;^cr ti`(<D׊Ji3>_{ڙxү3f :c.kxԘ\%ߪLLKs|#XpyЎ vĻPB=7Z/O-/6.ovRF6NrԬ)}_H:ZM4f;v,I, Zg1.ͥv"?ј]AyeO˓R N^b}3*H֜$#{oK쉪8SV>l3JY|ȷ6.wtGD|#aۉfg`Ы!ߥs7Di%]Ak/A8~ԽTNcS轰yS䊷S])S V5c~RXC0KŭWXr%>ybHr> e)}u3j|ǍpGV*D$7#M m=[@) ah+fܼcUx QZ!ucYs -3  <5)/첨4u)0YȽ4Ӎ^18Bu7lp{G'&+?M*s73 T%fĘ/XikڣPf!W !JK\·€).:!́ޮ|Nryb\ruK#B 7/qJRG `rOWX8\`/[/0t\|ٝ8Tm8Qz0;/pYƙnM/np6VXG3"Kd-#(ӻ"5\ Acz8b[罌]q eQt}2U!&S(4h'pfmZ$?],ݐ0uE/&Q]Tk=P:61v=?Jv}S\ %4>}  ֲX1B$ #3M";߃PikZr8Y' I?'iI;85MAl/HE=t:L5,[Sz'7&#< SۇY|r5 2#flT'GC6n˩X~:#mA%{F tN3_b8,8}lbLX! Ƀ0ZΏ bQV??&΋ $3]\AYkA?I;!~gTw F9"CYilI@* Da{{R $=cZR_I{De?f%m%tCPnΚJ&!5A"f#%T UM]h\o4hgYEKߴc:5$/RBMq=ס2>Pih{ RMQosbs#"ĝOY6;vS-G} IqL*,:}##8^T XY@\S^תD<^*>T=DSG2s7ىmA0a7x,82ysPInWP8R։_ R@C'3ֽo9_K!qi$X#lCѰ:0DMST[-Kn @]ܜ Ux:W:MZ=nu.pc4MRn ֏.H1!%K5e9Y #aa]UUr/sv:Y T2NMqg%O,~sX]ˋcvZx0]7`2Y1D dR^pQ0Ԁdvh=1*EB:a9}΍W1n,qvz>Vq2gMi=җ2]A KB8Raý% țcU`4SC2pAݢJ/:)=f%ݿ"rrB.Sν8N&{L~l>X $?w!8~sa \QpdDlȠxCJR\2M-0ۓ;'mN#ψ@c<;<-ZpU ? :^SI8P?m!2f3Wbu6*ug?2:UXqāHvvwisWx^ :)FgZ9S!9`mn&̶=ϣU4tg8Ҏ)X!4s[1cV89`q\{>f$ \牊krrdO ~,Y(!oG8TwQ%߂AMvx#fPQ8HIHKIw!KN@TSAS /m2HUmyB|.?4Hd$߫4Oţ{ %Z2XRP,mY@5TpfY{D2E ^kԲhm=4B<~5Z;|ҢxhO\|?[q#%;c|%;LBrH";Y<1fT Y$kѮ ?ρdP&HÅ/_4V-5Bu7U7[79XC7ՔqQX*I16fg.A~!b?jp|̇L~ӯ#he.=U6!c-alW^/- 7;pL9ef]"V!H6rW@X@e{js3I06"$>.҆-7(!inz^ZKjn5FY622{(v_IwB8O,^^/*2{2y;=O@cļ7!epIGUe9^5)"gޫ`z(mh]9}]_ƾة}Zh~,p $haJp=I3HvRomu~//%4m 5`-My<4Q0Ds*-y.ud0mH8 VYG}9W3@˪}zJ5# >Jָ" BrD+<(qh2FeuVc^ ~z[6ZğṘT`5v[,RaH6S ٤j+ kvh] p@Rأn:e2nErgKflD}))_?0-/}j]{jpܻh`jKLJᦚKwL}s"x^mLC8vb[ݔrK- #}Ox"/{$jYv-WT[j}"`W=֤ ġWY@Oj9F0:;Xܸ} @g.M6zC)MktJ^ tH R_9exf+gPxٹm6]Q,PQHWMP a ᓆGf̴ęQ&6tG2̆G؄_IpjP.%NVAD&5~ReOv,X)ʕQ9X,•S73G_apI.BAB{9L C忀K#Z>7h$x7q+eUeCafJ H,oZeMs{ W̿ͬ8R"iKBl+0'JÉVG}Jd{5R4+L W,A5$^IڭR;뀕=2O~%'~Dܜ?TOUQYsn҇ɝ[h r5>@R^N%979j>㶟tuF)7#'djt-#V6 I&<%E"oh<̚])9?R`^͝(b%VcM`DOumGH3 lq8'ڽЌ`A\=O[#Ƣуd1ͫnF[9dCC[šetɎVRȽGYYje@?pB;" L窫4 Nn0ѥSa, b ZHԕLhlsu mq2Ė#Scʢ癦DDΞ}WNFAI";c 36HĵC=qƫcJX`h 2 ,S_}&Ҽ4#L7[Q[| 4ѶKt^Myo6PHmPFg*61(N.9SV5IF=]+]a q˻6,b!Ýru]8![m7Ccz934` ~ZA rd(0G`~y;ݲر23zrEU7:g؝ p9.of2$npm2pqwyl߁'l~-Z=nr¥4*ky[`Ci&e9e65!R5R7d[j-=HH6iYe'Ped*>|8B][Zğ!%AL ysj.Ga?4oqjudf}XkBFˣˆ}ݴv]`ZcGɑ hxJk "c)=ߴMfW3|a+;'ۂ(#oBYEqi BT%$2{9 hPBM_-8'gcC="L>d O\4r?55ƒ0yƠxjX =Uhy3 ^ .c)8vxA8]Zy n*5wrymkߍsdigN๯:oV {%ziԧ&I7'vsϲeF6L/9EPn{`}fx3I}E <dQͨ@E=B,z4d3eB؍Q{lsO_Vc2U4XP6L?ΓwPoҷ; pHOib",K xdDðkq5AWx8X})۾V p|F˖OW~\A\0m {Bjg) q~VQ.G x^pq1%Vc.jZ·g ]7#Y&rы=d6q1!dX(IkyC3*_yo,:;/NOaٞty4a&*)Ӆrvw2.zhr?UߠU>ƠEnȟ$n/GkQ1ˎ@ж&9̃)x9`MW=bZQݠj}:}D7 dIFr*|qPKeާs@tсv춱S{M1& ;jzUUNt#|G1Q ߥu[EwoMp K-0T7RÏ Qf>u0=<ؑ7 M19#pSj" l2ajFJuON}ʦO @:Lr&SAW}I ?mqtEe^.u~O숪X]؈w{>"KljYۣ6dK#=bDb1QAݲDL8 5*k!9UP0k.f16Zu-4^NRIq:viJb1MONnBB+ۧ# 7 H ؠ3,QH>PW_+͢)%TS|~eT8L9 TcĻ )^ۋ&ʸ3-՟P6sG?-\>N^W'` 𚮻,̇]]ϚM2fih% 2l{%B1Uh!=NL=up+݋1f xN4cA:*^ qr Iv_y4<*+@b&X"hTZ[0C.a&i_tGWydC+jaE #\Sʫ+eH@ҐYHoΉ4{P"X˥p֣pnلF4p7IA )S۠!qhUKʧ!K%gC]oQZJaͨG!fd2,m K2TX\ C} Lieݕ@3l$Ԡ/gQ$jhbr;XE=Q'"`B)8)@VY~R!NBj5Ldxy[pµoK:^7R ֥G|Aڢ`7aAr+lttR-.(۲s(K+t2_;1*/3Jo),Kɱf&DZ3Vg!qަ*EP5Cwb WJ[P4a1f2SH@؄3̓вsIMtDqF󗈊vk./vԋ-ψ@L|<nj>M~R\ڬnvMiws!̖f:!#^>8*r&mEzZdlptCS}a=D^_-Ѥ.ZOBڦUtELG881E@ -){#ؚ[K |ҍ~ q`]: æޏ㟬&[3ML^+oBlHUumRP#j]Is2:X~K'R*ꪵ՝֎&˜wof[Ӌ6ɖ>5YVʢ[( ײ2*jX'GGT]m4h9և&Tt`DTd}$αdՔ f 2230dk>niaV(j 8VWO{ jiA?BQ}@$G6 c.G@a3_2'_w ^h΃4f%^1S_hfe*iw|oYc@ RñǤA^,%PՀŌdA6;5-Ag/9(aBexO4J=l£yˑVeb!<~%--5u'Z_lb_Ԋxu#6E6߁Ȕ><*֏HD ͪeա`|+zMAA!}<1= ĐSąR܎ `Ճuc$6I$ƹQMAO#>t9߻h4hHI/; ӻB<1HwN&֠X`Qty& NXw'0<()ʌp>D@J}菭yzl5stq\c#+p" nƉR^r;ƶ|YZyuSm[cryQl|T=#TgưvPkEķqquN "0V\g`iAb.5nC;r\W)[3s c(`/tY. #F}ޜ4/F@ؗLDa 2HUrS8Z űhבXc< >Mu<Kn9`?׻ּc=qj+ 60/PKþ[nd_&M:)'&,OøNeTgHRhᐕ.mjOèڅQ65!V`Z9b_Y r[@r誹>0VU 'Bv1˻3\ʷNNJ:Vb!u5VHܶ75?dٹc+q09 :ua*iK9sߚpv9j"Ȏ%'z<(ÕӢ3akl¤*e0mGS88{[C~ F"mn)@UMTa)P)v {-kW!<#h}g"r>C]4DJCn9u`Uфyߚ[i^w\*;+‰ОbySr%ښFkPˠ8f VTtc=J}CRp(65ӚD'P|AOK) JYrfdNBUAǃ00jzY~FIf//~;+z 燨j la+;A7EKq :K?cEe <5_]L#|TUCB6kWe-6}=T[ HJ.Ez/iFwbC'^\T+9z3FiuϜ)US9w~@N9pQ]ey1xqAn^\zϕtm ?i69.98tU/`AA~OW. %6,7v Ab`F[ e 82!҈]ym )hv5 ]b_-r%T[ ^V֔-Š̻ƫ#4yOw]e͖M2ۘ'rh)L8Ij%Q');٭{-v3_"Kn$?qiGٜmi7O,yBGh-֮ QF&t^Ο!%w>k>!d'BQyN\Q+7vkwBT\lğ!c= ]gM\40=a:g3eAnK ReEU'#oBИ=]/sY H;<#j{&#y]Q-@7m"+mő5 H~' 'yݕܠ(G3CScesOX0d[& kZ3v-aGvS/9t߰KˢK觥p1_f 7` \#849]VMͼsaNFop[ш-?}g`^C.">]"NYⰜ^"A$̓J`2U6WQG݅`9p٥sgZFq(~3bZR*U(f 𥐘JE%^9*ؓݗ (4ԓ3 m5kpp݈MHT^DHW?gG(&)凔-C :%(W9/[ǖ q'>?T腦O{G`,LXWQkDC[weHqFL>z]A #`e ΀ƒD?' ۠R&1nljCؒ@Ļ佦|yI;by"WΨt !ەŷk$jfj+^Č%C8 EpU `9wD9o`ٽ]`-}[Dxܔ| dRpX-!!c=uq;U =A2Ut^%`kL.h#,$bh/zSad5fо6+|'g&|Ja퉁kgڲ',3z1njO/Ÿu&eEe*LvCP.`n"2gτc0 -1_Ut/T:Pw·hs3ɟBͅc%kU\o0TB#[MוSf=X_n݇trFAdrk P;~OI3j(YTE |[ٚMavys7J eÅ53\@Yt`Bӥ liG3A@26mX8ySbjT MdT*?G91o@٦֢1e5Yf^O6jYKwʁ_;S"OfϬ5%gQ8gi69C͔3x»LyAi9N_u/=RRdܩAPuk??OqJ_.곇YW lF!98,IțY$cS{ȿ&Pc XG zI9*)e'$Y$QC st Ś)?Hp Qe*D>DVwVid2m,pc`d [W(A6 ROvdthtlSս(]WH]-x-#mʨ{h_F#UMAMZ9v͂3Ugpҁzjݯk;`=؎1e|wGI =";.[N4$FUKXkmMVͅLAI+c7-C XשwǗK{:t 3UB2UG )lܤkH,YqP=evWֆÙ{-{-x6s[MC/x/jzw,w b?g}gQfe:$3vٯ3b^aUIa],I!@rPP Ʀq{R\4s@(kDrnw@iR&Ā<{kx̻ܐ K>R *Q{VWv?3>f5! HW:犽C[ *Cߕ) Ӄ>*xXXtLUcIlux`C7&h;8F|]4qe(S}=jh#oDHP.KNz3QQ(!y"EM\=m@H#gY3!#^ǹFD/- SA(T#MD_p%QjFmFSi+&t"K$eݬc8;F_KB:2++ #tWA%Ol?]WžkoVqKh㴵|J>rGzV%!@q臧ʼS'wrtUvG;a'-8GRbFzPnUF3o7S+:HYDa Vݱh/oUR"F@[O1ܙ_Ad#65;/%_|\=`=:m=<.u1k[`Dֳ^ph 7=[P@aɈC$&1VE]V|k ,#'6W6E臀rQ`[^Jq `2HT]-W+J^ݪl 5X&+@܍gMfA ?-wMU I Ef̕Ug`{ XިgpYs?Y[\r=\D*|Ͼl=B]SbnK]?tI= ̋juKg[iB{¾lЙ^H "E{u_Bt!fvs}!,DW$]ʼnk6(ʤݽ1$`c.=P'K"P"D43Wo*ײi񅶯oe;)(;/>ue:Qi!kS2+wT o}ܖK~kqM(Sr@!wj$v!wy{p U<4WTMhf$Ő9 js(l'Bɠ%L 1./VڬzK]ʹz&1o Җ>woqKcN"E`FMg8o (w`UVV|rݶj V~Kd d M?*:Y(m.pTk!GP8I%s$9;-̝%pIh KeA8,@=엉m1=O&:X܎=3#<&C&Д$k~fccjgY[̶) %3RP@”3g0B4Dwpfћ~@ԪؽKηa636.{4`Kh/Y81$膎x%wߏ0[#H]]E4,SZOwGw(bqgc1#/.p?=/D9ҝ.΋$9j*R'fb?Vr_Nx\^cPY-4Qao|?*arWCLb29OEt,CX.xRFc }3mymKȉ;ع i!R\eAMh "ΓioU=<~)bC48je&B\ M櫦|ToZ q~P?cF509uvO懋d{A,PLFi>f e!;% qdDE+sǢͤĿ. H(JOn&OVt|}rz`b_oErLBTa= us;X4QN>Ln%Aiʫczzr)9G(^` *p 3>c+mUea^V^EJ5'@zKcBP5ѥ%ݕrA7fT]ފwэ#`Jyo8:ŻiIT&owR/GI @ 8P*-֡?*nj4V꼖=LE m|Qee-?AY=lDzp;܉i]*40ڋ&3[?#5A[&{՘b^) 3b ' K?8qS_~BI᪮>]ќ m% %W%};(ڪf7'Щ?ؙ\ⰅX4s|M&۾`\ P49{RY xt=%#k nGBՉSMKr7˜>8t0v]FL hճ&w57Ъ3QIc[594̺] QmZ_{ᬝ"t{J׎̆p $mEφĜIzeFMFЍ`Fz CGjg kɍK(;͌78osPjLe o r_;VaN JTZ9&wDП4疀b`vUez%.5=}& 4?j(.9(dA$(F&r{:{')@016gTjTr>*YsOBݾ#eOy$<7o=IV}ONqL!VgPÕ~2vn3sx}Q%ŊrԄ g?Bm$8+,z1cP&Fܮv1%. m'`e#⺼B{ݔVM^H $JiI尶LZ,D9ad<ȳ$dDk0{rzM 2 |^7y iR$F upt7oBY'EEUjf"LgouT Scu Oٞ:_*vؖjxy4ulH3~hK(s1,DSSLCG!xL2kڴqy7kpOtް2-ra =w5kY8Yk3dQz׻+8UCbtNoh)7/dVzjYuIlRL>*,rU h+ $Y;&0{@d]q9}0 H3('dA.A|60n'T6 >ƋwmͅV4_lG_7EDW2HS(Xh[Xz^H?X/c:J}rׂGF 1Oҙ Gҝ0ml5pnUx/`#w˥CY탈[lYrkz*&Q39vAmLwU_㉹hR0Y!Ktp0R6ޏ[~V[^n?v4Vс! ) h4kT' t! 4Y_H8Z(~7"hCWWwWV'twhR):JPF /D%=k&*ݾW6E)h?'{]n}DWwm'>:))<F ][1SSgh_Y$Ķ>#Бw . XfO Jڝv34!kE=,zQ8yU]TQ;hl ׵DAҗɜXY<QJ'j {֤ X]#*ϲW=*SSjx٪@fUFl8L!jw.p\s;0;2EG$srMw,gljHQPAjNQ: `vM&Q?;t z@́;b9m|T쳖2K[恜pP[ta(Lxic3 GG3LR/X [ ӑM7LjR>l.q^еV8ȓ7-䞟GEH<_YSrdhN|1o*HO v}<-Ϧwތ\"Eo-?&Xs<g"›]f6i8\tq!!YXq]4'ݻP'ثCݏoW'-cxvd9k(ڝPYzITHV $~R+> *zKѥ{deePV M܅!Uh& GQ<&tܢF\Xhsǝdmeɞ@'tL(m!ʀ x '7S3ZlBv1{~^`ZHBਯ1 #]72;E\<q/JT1sETH챚Yt2Kˋ2+12!\J+#;<ѯthcXsbg"}s=5B4)5kkEA@2R_frNh=` n2knـIwO鎉8 $4Qt,d@K,YJGZ*80d!>Ut|@hi32NK",lk. 5ً0JRP"><_()Ly [^V jq"%2 RĤ/Hq Cؾu)k _z&xr Yٓo|c (J&M/)=aZOiI Poe xs/r}:Ԣl: dEn?݉)mԿѐI#aYDW>R+dqs=}=A]5taRtUdLrkY,hi/V-l)tv̢b rAro X=.|Q0 S lbKqLUCiHx@;fq_,6i}!\ө KU}l. `Lȿbz:B)lu5#-an[zx=ߒW˳%7* .Ze}4*nH}#9!Ehsž1Ip@%Ț=rȅF6w9Ue~"$C% UAc-Cq0 ;@PF&BL.̻ޱMf-[YTmGsVm dH򽹸E5nnijd˺:o$OxA%qTX䘸b!&}(iѴ)ݐ_Sr-~ă`߰Ny 3!\w'0z3)VKY0(-CRZG뼄 sRkE8 fO)vBQؾۺ#ZJא2:91(pj UO^9#hSOr]*Ð~}01+|B'DXd)|widf= yEPŲ)zX~ qj38tVgk,?+Q5|<Ń3MʟccBqAlCY۪mЇm;Z:i0zHs5v@9 [F>׊ Qp߀)#q[9КRc:Z ÀR@`sG V MUQcp{5$:q7j]C կ`M=I Vd G'iYPǢo[֎n=&rblH0NY>ϺPw _i#|80>Op_n6.k}Uʁ]nYjىsC&ΤHDX{!'2̄[ xX,DP-&i9uNR 7,S3(!UY o6h0t4G/^vf8h4UXtt4%HdUN*f=wl:^A ]w'qWsX:MĿ'Xiz ͽ& ~R?ނD܄ٜW]s=BO5rȧp#AB$2OtYx9IH .~A0`)ޣL6A%Qmh+_#JPh͖5>e^ U%ʫ\QQec9*Vg[_ܯJoXzfo0. ĉAlm6scycgvq1| ?J(w3.&~Ɓ"]}F|ƭNK%΍X B|Q==ltyyJu*D ޽jGSb i*sW+Tӆ1y\#:F%lp!n͉t~py Ör+JlZ~چ0}f8XQ$#sxtA0{7ΫnN(x`t0׷WwujLB|x/@cıgSO3KF[e}-Q|K}T?)i ڨZqeMn J"rԋ{OW$E/ZK?!BI`!J'e= 󗞇8[cXh<391d'Z?GqKA0\AAOKQlKjB\-(d[FKqQk}QCoXN3cWyydLro<56(1k==dch:XR\mF@)?we?ϹQy>eNAGJۜ4A X,b7y80BR1IqfF/6Gkf]hAjRfqtV8 heqIiSutΤlydHWْџ2hp;a:ģ##OƐ4-O.lqUqbIQHo,M s @bs/V 7¡2tƃ=̾]_yhմA5.$8Eheu7aLVz=Vl iVXtDV=Cnr R>Wai`$(lNv,ERUg~xTgl{jϠ\rvNZ ,y> db4;CK OZȳޕyI:,6Oj&s> "l,T4plm(ROw%Os;ƶHZ}hfa!"J`34A_;ȧe  oÛ7ZƻJ?vڶ!M`+t;,ch ߷գC^T hH 7UpA)E[_MS\yǠ{,p/I3[D0̫U^]W)5qsAEy4x$.~B)7}qBc(0QWTV(!M3, T\=oM7W%x+وRUɑ `Drf.΋&WdPL*MncE/,șb@`]1-]:Y Dɸ2[fTsL֊1;yN֡ Tl{fbfIv| T9vQ 2;kMYՆcо0pEscL79Y69qh  Z&zX2doj2qrhclA3N4>?,B}/V"_<\ں!nxY;O\w?ޯP Nz%\.qtTi ?:>SNqحc zmog@*n|Dl3E~^=C{44 i.wd)ǒa?:DS _dJHl+x{ ZfްmRiJE2ohɩN5%$ij&&:d ĪWg~J`R<{W+d`.S(sKgҧc9I;X[ B?d\8IMik u|c@_ >#灲oA{kmwOlG7OBvc3zgPo1<%WlU " Y攮Fs\}UX n6,(qaf3+Y1ݸG7fPTg ؛ FޕzG\7(ugeL@y?Sg>DQ_G[Fɫ+P8?l~.<%))ʔsH֫-{4ˁcГn׮8@o@` A& YXBh.G *Ig8~N_ wU>@EQSDb@'2fb`X}d&`vSXFGTUb q/vJ z.! נ!̫oKJC6|wZ7JX}I/#Mv^kH%zMϜ–s[<"pR;z =fSMvdy~r#.R,x[ W/ivNІknzt!̳6*r*W @{l:F88bU`"dMs,laU?K︝ +2ĞF.m-p#/_p 0*ѕ)=Jk~"/e_Dyu&ПBLe)OC@0|g/qMEa#? SuY` Lu9+1:C>jQyɄ SgzPJ8?lͶ"c pCK='dZwUzelk)@I d0 LmOFbY{~P[ tTM8@=HZ HKUKgl򈪌i=-tsP m2b;ą۩CUV)UE.gt_oIs"ÏV?E߿r m$3sآMb+Ҩ">B,;r\O ˞ /_@̲q* K,9Du|(FԀ.ȥqNs>^U,mNH˹FgXUBf|t`:ݤi\’Pk"qXXC ]6 @;/#;NsLd&Wk2ȅ[pQYQc4 ޣGrp xuiw#Hj GO@"h)~L遑T.XNё_XWg${zm8>̖7AUF$5mYEv0u؋ЕH"P {Sԁ rg,GrVWᾕ&0)0"64YG8Dy;sg=Py%=y[Dݲp,p^m,Ra=Qy͓Bhn]R`+g1 elV;9KY ;4"[QgM}9+?) PΓ͝m緑8$,)#һѕ@ܐA':()VD13? qԂ{[JTrx^K gU8=WE_6RxLs’I%mN>:4Or%O_(6H$7DpEG, ~FmILnE}"I\{O<\$aW: 5["s9ӴVSuspU6fy@ړ} >at|DocTze Ok1;oLqh*i3t, *ab,,D:<7n0!ت٤ڈ1J>4'*T)O OlP W L"a"([M[hqE醜wԎ#Kqv a˯1n}3p1 6@2핈s8]}-lr1t٬'o]]ʎ9y⅍*B0.l8; SP-q0_ўCVOYi[#͆ @п6prDw[)4ޜM !LMtբ"VOx)xݜZ- [^/'4D94.v\$(";E:1 {kɊmƕhn:/mVkLpF$FcpȂ-2XԓajͲjѳ-KyaRKͣy\}IXҷ_J=ʔi`z `)"V ~!GJst8o-`Pl-KƑ+A=nF1|֍zRo~02ӂ֤Uc& pq 5y{ZpVT#|t@$~53iӓ0.U?lΥ}ՌzY3Hk{ (EL9𽞘{@V'3s Wu@(=aHKf6[;U ëZ Ġ:Kl⡷wgFڱ3m4 هۂc&?϶bA.喝)A+8=捙跒rKeHeq#2\vkפXimTΪeNTm? A^+]. `Fc RT#Nou@vJfbK>h5o6h ) 2?#hR(Œ#Tok*CK۫=e)x"kuF2˶GoE=רhQ:)M_գP~Z.Cf&]O'׭/ۙK4aIԥ)ej *~P,#{X&hP E;MT{#iehO8b+п^M3StNwiO3"`zٲwS !\r1F վ={-7ǀc%]ݛ" X- Aw? #|Ϫv Xv gi!]㏭)\\9rB? gq" I"L*A})vwpHo@\g}Mj4ҵqň\Ga*1Ae$fTC<=# @;c*,gy+hȹ/Hz,~lGIoX]tb}Mrp93#*:S%q˙*<,{(AS^h^2@|j{,0v8B_<տy u,U,>H/t.-gn8y%UL'p!]yY_2ep--xE["ʙ.@M!OVջ%%5Z[;4~Ž!1Vz0N;c-)PrzBkC6@Q.N"bipzCx.V89.Xة&R[M+n/}vA##=ԔY]ۥ^}FxzaC4ђN9y9.`y{ЅK%א,=ɰd/ i[wFNUIzj7K,-k~\ tܷp_ 3+bQwqrMBTF4eiJH>7̳p!͉;Kf,}v0+ >iAӏOt48xvgg7k@=VKIUr4$] AN׊.֧ ?A0Bh ${ -Lz䆊׋0c&}cr=L7Ɋ'@@)}e-doO3 wLnff 96n)/W^a'#.%d?>q56rkt oziYTAgV~|1 }W`e=8{CjOYJGf-CZu` akX $2܎6Α6Xɻ$vj]ǵJ8g*!#rl`As ge mmtc`I`g!7_K{+̈́n?=/zma^(s<"؜0LQ<@*BUׄI ejijb$KM }e2l`ބ{A]Wg;qYm愼tZ:ʙ " t '1;>w2$\]gp)Lf6~[:Rn/qgN?sWwY4(iNǞދJryD˄񝎝^r>A8>ڂgxGV@ge `^ԛӑ6NXza#@&Vh9 u-hZrMFF~Y}ҼVR6"}&[&3{%fVV|{9Yj&beW"vZ%6X-D.)% SdA!2 xJ)LߞMh8u$̴1ǪQqIJBoC'x_N~[K=ȣ*)Kɰ;ƾE|wetLk%~N(؋*2T{I6^){.ʞ =e>gR UTv'Eʋ7/C&^!ƒPE}6>.+ 9YL@6]5N97 ,AP {>oS.C+znSJFQR6{ݯ$b[[j{r!lm|,|rM/A1,ɬ^gS>{?VxKv( <_ے:ԟsX*Dg3Y@l%ўHd8:Szr3-H"`vUI<&ײ"EY`b{AM DLή穯pyh$bOf*½\ORi!+ˈ$1Qa}ԗf4.)>?r|`D2 ^-0Lb}_)c/ iʋVشW1]51kWw-'y;:aiD];`c9W IKg3 Is2QS'{1Д%e C!ivwkh :WK*Y>m D'w`$k]FE}K|i[3CMa(`Zʃڰ_L-UR`d{ua8Q.z؛0d/d3e "̈́`Q<⠮ah7OŖ$s0!-#bz|b'9^@ID)>ZE J8 LonIf90:ȐN50 k1%xm0afn {edyG ЄaZ-Š,XD ljH`BL0U<"͌O*o;w[ nGsۓp(?9[w8XRJA~oZĖ)%-lܺ1cbD4^4~yyNtP2Jgց*91Aٶə=񵺻 ?6͉}b>D9~K*w/p%J.OfnsH{xAev$Uv_ h(zf~ Sg'oME~kh+3{BY-`͜9f$:[' TB~'J¥C{i l/J6ڤ H1I՗q4# 8Qjl]!di`nSUg$ k=\jZZNLbMnVC̀e$ud٨G`R%Rs'e:Lشxɺ'zx gmq[37(D{!,/tW+ysMEd0ki'Kx7pOI1Cbx@/>R_詘YTQ[G Ac6>_ (DGv{8%XLc=7}"H$ fN$T ˺mng~=ES{(0..Z7>aOm{8H3Q\{VO2+lд4$[WrCuQb3 wjp-\Z0M4+}NPf!4=EMegq̉]VfEPGO^az֢Hdiݤ/o-H7H>]xm*| oq̾d6u@T;:)}G"k1\+,wѢ6#eu->'tގ!0MQyw.69% rhvZK;C;_7Rwos"1} .O&||8ḱڒ34/){҉ 9/ƪ{.5l% lZIQ[jWJ\ B/OLcK'UٿNܿxnz0JV=ßbt~K77f1 Fzag/q\ ,nWD-70GO_\AeB'Zm>?/Ad|H`RL>AbU,rph˟@< v3d@Rt?>.6z2! yg  T"F`c | yr4?x0e: vka(J+܅+ts HDN` = Ê m_ ׀&Gbiz#gR@K`>4ɓMS) SdZ1'#Sq!aRH+x|$j z 8w\Er6YՒc8KtAa^km2'! 0oQw%QC0, #\>9H HD8A_8 GQQrR)Ȫ]څx+$C^oɰ1i?kz,Qh2HhHQd[Lkm, hnľf΄^QVf# ˎd>ĎR.j)x  ('uswTZþ+D׿Bk&uפ s;H zw** Z[ ;R\w!Ow@`C2mzaU^/.~6OU|ľLZ(?<78E4\TS\\9O[=}f| o"6m01j|mu;7dz R^gJ, kM6ٯOHJm`i6}CDbM^0a~/9X7XZ>.,_bi[t4S79vZiu8@k̑ސgr^CBuh҉4I0|ԏfv#4 B;P.7 D%~!?DRϽxU)vcylśT\8̥;*LwR=GLllh2ܨpr[oN^ vw{h]Yl ܽS 8}~w#go ըW[Yc.js2]殿4!l,1bĚo,3c WlRrHtw2ZݗhNX TVnnX"t*dC[lloȂ!>[.S;Q W >ps|MN3:R>/Alxu] XW hF. 5|ph6bl\! W&9_̻vXaW 1DFh߽ԖdEe44Ymƭ]0SIh0y#]9!^!^P^.M!).e2h-{Ӕj hrnjXS׫ V:qB\7]"'(y>*+E͘ |=l.F }M/Q$.Pe]D=o.M΂ Yݶˮ@vT\޹i'OO+OOOk:>**N ܜR ֨WfYVBԨ )9QEYl(7 ?qW}c!%Gx](A=Fy_z+MZm\PMpm|{nާTYϪ7%U߯埯.'aIkMnyL++=?ޅ]KԐ'F\{ _eH1bd4I/&= Kފ?=ySjaB#"2bVl`լV۩/¤*[̋m:x[U4; |fePe6VTEN3Mqhߦ~cFe,V . 9G !4n| [\h|?02 rhW~J\}Nթ>n\E,ʩXUO-w܍@+b\oB-b jCfW0왩# `]1 [왟#k NuYaaѫgsGVen"FAUؔt3`+P=~:Tw٤SR Q 2][)X{eH.ِK {LJ[O\|xzɶ )h(56ϱ!. |w_Z8 ,%O<5%A=xFBŊmfm[q3-XϺ?AmFRaJ?2;ؒxE|L4;(Y8WLk9cTըMck#P5KC*(f**J|L|rgFHtwKܩM}fRRF&לd|4ĺBF6~GYb5/aUDv+sQ>s5Bc& ":yC$ ݩŢ6N拮_gd1 狏@ lhS.ΒWug1f2@\nO~n_̛ >]} ^Elt4jkAArL5}?sҩhЁ'Hf=KE(sn֑b c}_+ F>jJtie.V $'ܿ n|~oZ&w73ao_4E X"h Mt:1I|2SΒ+2w<>l=o88j\j 7sq}XoY IOgxɨlxqͽl @\zZdwh)"2SPBi/ж~U31u=1[ `YX`čꕷSk,4dvAqh9@ ᝞q܀b yV`|Oc*$f$3|?ƚ%WEK'wצMIMiL1DtPPJs8RlKM3&n#eP95mB.Wvt-*p)n*[v:@)}Jҷ ZilcZQXi^ iHʚ2D@:r^LԶj_2d]J8gF-[ gbvw@?LSO.IEYI t =s7gQ84Bv@o.-ٛ"Dgœ~ܝxiԸW3SOq!Z) a_d}X&Vġ%8j"W' f;O5l3c]u8PEhPjdOl-gbQMzD5ֱH?Ptd3tԤ$͍99XG(tuz'̙E `waԂNp#TbQןyAJv΂Ƃ a'Zb$0!M{&yg#Pzp`753|x']TvBSV S(B.ShjW /zԇla2q :1}[3.#=zPSiC /BB`&.^(T$0&ۨumX&7 vaY_b/Beu YW;˫  `z"FXW]1oOvu^ǿfh$ ҔP-KT>>qÏ5:C4>Wf< Z%`3찇FSdDiX7Rw{ AD/i2"l~,: LJqh$6rWiVVֳGh?H8I([V-\EJ`gp>eWqas ߳zՑH/@`scSL;E~^dJ^q|us2@X3f"r~<縋Ŀ_tϾ,޻eRQW/^lfL׈ P00ˍOX/$?d86.mdFh/GMkB`HSgx¶Vl"(:8N,#˖"E芇}硨PM S^=*Τ.Vc~jISD)XkUF}UR@[ݭq_#:2D"jp楊J unpe-;f$~aOPqF 7r+NF^z ߍFEP&o9yp*@ej SƯ26m*;W,[I,Epd۠[W #Ue+CBINIbHt˽'ϝ*qCՀ?v#%dy\1s@[`\~s*?fR@]uԖcu\—UyM.VKv+7 ~e/j?9ALX{K=ZIL)CQgXel[>AwMZ@n7bOQ'#BK!v~ tVy#4 Tb% o/ lskyH>iuT3I3^8߃C4)6+@s2HR֭TouA(ۭM1=LR7H6i_xJv`ߐخAQ%,̜#;|&H{ҵPb}&3:Unʔ"D9{N ٵjwȓ8*Av`0d;mUo'gy?A3V0FbWWkl^s2圆 8C 0ebŨ๣8X^< iJCGVp-a'r+b%G%7툥I."\g^%`x@`GO=^tCAڰmmWYj/-f$hǕBr: a#[.b׈[/Ok}{KM51>d]4xWT 8=ۼQp7딞O&yKzF~4f-w ؋.~Lޭ("% t~ Gobha o# Au1/NuVoQ뭥p.Az۪@`x)əEzj 3u񄊖m3!d5~K]b9;i1j"XQ{T#M>ԇ]X0'C܀YË_.f2 |R4WeyhQ5cg/l HuLL'FfZg+af\N"2HvC|| 31#{\-}Ir:n8oWgsGP\X͟]' (WK{в¾ WhYW Jpr;D*B8;=Db 7^~| kV3:cH?+,Du;6!c>0*4v E"pjg*pX)7~6Nj"bv$ͯB#d_vꅃg[n8;1*MK&@Rew a $J+b,E]FzHdB\il^3r5-{_r݃JdQˏ45Or!@s$n(kʇ:*AZ;W ]Z`+W 7C @M X,QV$(fhq,*и k'GT^#r8>>B dƋ(RgC֊V<%?*9FB[_\\NgXaq~^z|hgb4C6L P܅Iޖ5.-Kٳ*F-l'0zoF Ivݥ*JfGM<[ړbk|8ʜZy^r ))fHvH%@e+RNO:r\CÖuszM r8b Hk3Q%* `ߺC@2F,~G+D˶!4eY7ʿ_ӽ%ѻM3};~+YQZh$73\nW 8X㘬16ߨ}>AO/%z)rcޛ+uF є~lŪl.woJ1k7Sr-~g C7K<}GPf|*\mD3!&ʩrkM[>ȯRGW֋ݢj":868e`Q}h#d#&j}T8O ho\g 5X&4SABbfztXq\;g\d"بv/hKФp*Mc[X/E ~%oRF6&2"Xӵy7Q0$6F?0V Gm}=> BRaf;|@#]{ j~ 迋8"2#ܾJj'=ͤ:'(g@KMwbPH|UcAS4kU03Kp)|4Ćw0d #j]#!@ё^iP19[שCV=%p pEIO< @i,:G9"^8T{󽈱fF˲7c\!.|ž:(>BNu,y ;(SOMD!F^)3(;ݢ47wB6WUu1e r%0VܦrIe8YϨr2 ^yt|:)3* fUSYpәCcz~ Y*܎VDv'0a1|FNxmфHD𡋑Ꮆh0/;Cd#;ض2oVz}lz%Ee~W[.# B!;3 孊V_^Έd6+WOɐ@~ECw_inկ`1k/'[3,V?б@ &|/ֲOT@ǂ/F!k߲x+Z#Pήd|ʒszl|Q1}B( ,*1@w£Tj~=aO{'돚;%[tv ݲ8 fh^YlX0lѬR̿Q+mU9$Ӥ2>v;!>7>>GkVe"ב b#uF'>an1mKT_,I\{] ?%*`D0W9[cá ԰#܄ FSh g]FmS* W]USXu*) 9$n[&2`:\H@.{J `;(nָ2-siʦ~*6X;5| 0֪=;OF3YS>a'׷9 |u/F!qte3L]N*6xƗTi Nl1#=XLuO Cȸ9v,MnjNn?k#DlɞDDF)^'Әi/L 3qT')rW,dِ [.)B,m$Hd6:sa{_l[7xAvQO`<묕^_A!V$f{" CIuկvbgPG&փNrZe:L3yC]g4w@.uWITܭ@{-BK֢EE2zB#k>;4<f(+Wʐ>B5/ZAy_ěA[7X3\$=ƑS8SGğ_4G δT йjb#I[vPuE:7@$A(|2z$"pi_Pz9UAۨn`%ga÷aMU}c[*8y ͗Ne(^`Π|hVX_^W@r9ix\?/޽%\M5-lt?Cm=QFA#nNgכk?8: LL6v0^#M CzOu+MIT}0o"RΨ5G'7.26E&.1w4mА3uX?r 4ejGmC_Tq ry(5~ t愨ȇ{\ü +e0Z ?]xQ(XRn%ɀi,.BW7?vF"t]ܘrW@ Q`d0&ASpX&4iӥPJ'>yk(y*rB]*m-kxc1|x0NvE؂e y{"{;{|d(n56 Hxxn)Zψ޲rZ}GFBŒ$t7) 6p:|oHE8O|?jv֨m& "q9v5֝1ӵcꩆPK/ o\g00M#S(9"l{qJe` lÃJ tcp8aT: rjE)4֤=XVqmhlBY֝9J%Ֆ LVBֳM[u h㹛 D2iFWQtοZ]OR˴>QxoF 4M 8 6"P9ɗT=uQFojыg>z?$%?s[+6 >W}TyORtd!Vr1–yGW MDjLJxUE*Ȩ6UfPUJ3LDSȤ{=i^ ~hJYo򷴞Ն],&&8#*?^[HUf,cpyIYse]3e:8$z\ϧԡ*-=u际IqyTr[lBΥ`ojdL)K_[mg%tg5>i _G]byFAA^oEsnq+ S/BSjh RlG2K1YNbRͩõWMOF YQ!%ʌ_ֻ0bwх:G/|N֦1 r K% A}9׫-nvM5rXDnߒ+~<5&eYfXܸu1nrn}|.ϕBPzʱy\̎;GS`}ۼܯ]|Jyy8I<_(GE5&_qt1,~Jcɘ3 xpܸU"? FܱtV!J;Ѭ0yZzW6)~m uI!*K餑ZZ+.3A{v̘ٮjMtq搊o44(`yLfiUSt:-ȌuõDsYR(r$_gjm$iG(gLeJB&;HbOG ę=^aDa1x7KbewOW): FUjx6B8?+{}HU-b" As̱iwj(Ɵ]Чja);Zcyڰ#-|\↟~_ x&̸#WsQ.Yv?+rż}MW.!,6@EtM2.09Y f\jPUR4Zo;aBW=YalrdfңVⓑ<ٹL0BE^c$*Cb۹Fl?`Gi CY@ZM뵣wL-50.,>٭3(o]E:L¥h֩03;. &~<1%Sl0'Ԓl% lAm܃ Hf^/vt[ZliC`<\Ю6Lfu` u:y٦h:80a0.Tv{`A2\UZQ])gd/c_+;dJe.tI nP>wr"˄VU;">ɥak~l0s.%c h{أq8 ShiZ5E7{}" G]"#,-yPr44(o? #tJթpusC%!9UcӬT1JEQ3B3F9IeݺWЫ6v_+0( {?-_J$81Tǣ|R ;iAWfݶfLJ`عY fTq&7oUo; rۿuC'& a@Ӓ𹐌z_t=0lSGyۃ(]`x a$kxn,l H{z@> oJ\\GJ2e^K\ Aa4 nfcХNr - șu;|F8En+f2:0#c~韜31e<\RWb|+_ UԢjtGw[)Ym]6. I@!IO`E1@fj"9@᱕oHSLq;qN]-bC!6a}.J7 9]uݭ {EY Np][?a7h԰e3o}X5)#P(DfTNӄܱrRS%W,p#Gԁ Ry.|\g<oƣvn# a( tWvxװ4>hNJ 1t-2k*= ˫%t)u)I"0~J^<nP";GC~o ^͔DۨU¶vaR2p i- @zNTɭ1X@ !{O2O"-t, (cHS P|{^xumH /蝉!UԵDNXF+TdS135x>7`jꚻnα'w:㹾ygk[ћG|qf H;Upϫ$xGniV$芳kDMl$mMy8TFԍWnͬ([g4c4VsL$lzW1H)Tѧgja{XQ;঎`&=ya8WŜsK=H_tҥZ)\1YөvԠ\Wa* vsL޸?zqC`[|8k]ƪ0UBt4>h |//a&Zm1/oGH f  PZ0ٯŹy\sL0+bx3O6zw;)?u%`AA=L-bV7ƚ!40!v٤akO2Dم0X&Gc,MX)k4afyR&6G6(h%qCg{)Hg/Wq[YVpP٥ 蹼TV= CiKӌjhYN Y^VT~ߎl2 qzX+N)ZlL{3Ǭ`]8_:XژK'Nktk~8ye{J҄ol f^"M`I<|@I$9mOv2=am }E FVNLj&Q-TpHT$a4]p|;psjن>whȚێ׊Vq1V(C4PgaePN:2{^UJk@ށZQ=K% ';홛X/{L:ֱISq$iƽra Rϼx']79i)Cqf Iϲ W]^b7N_Nz$l,kHH7/*oJ&g~Ys! %&ol \ *~v_ϲoK/+v 5is+tzWwcބNtێ嘹NDΘm7 /V!i7*WOϑJtKel" '=co)HHo:G7;7!p&3w~.=!syBtZ[_wڧ/č,D`ҡ\ws-.=i 5LtU\(Ydm*[U">#͛Df<]}qid 8:,ͪ9B i Crѳ?~ %rMJ vbۦA+,KnwC4Ksܔqc\ _27UJ2N;(zmqEJ Vuill?{- @tDnuwrT-s6"p@=%hh3bLx֕a6 ,lPj48kz[~&j^P>i[WV Vٽ߇@>vY*M. ޤUPT.i-2c_Jx@CӮ?D%Ss|&"pQ+ֆ6ʃXO jrALJTt#z Nbz+#}$U_,[25X5@N[΢U@-9-8r"D <8> ]:BE"#t'+\ѸDRQ|P.>TvZ% >6 mpT ?^#1vp(c@ePqjĩí.1s(mrR`e4quCv"tnKeXd-$n<'HY g{5}.qLI\UUH\& OK2U2يTp|f%;d3Gu#ˎ.76,)ey2Ibl@B/`XChkjgNWABu][m,*7!D#zq 򟷮 i~@ûh)d-N(^t(\DL }~D3$Tdɀ3d[Vxf 06\̱ov?OHeGF;ӸΊV60t`)n|.x 2 QbP5ΣqWJcRyIs٦/_-cM9 Zֳ7= ^Z?I{*1ș[Mumu}Gïk8lpL 2q55 ׭Mv$Vii1z=&[6 5~wE5v%$Mj,9P\wr3{a_۝nHWl2E~d*[׹RV7:__WJ 2=Ho*⺱%,˥<)u3فw,QW9j3'ѹ(D~fsXcw3:M25t_ 43(wGO%;AIE. JĬN*Dz 3؋Yx\K,+tE2:u =F~S/GKa2kz(򣡌$e0Z0u^,MvS֋c;`8J+ӡ/ĩguWy"I% CdMi0G&&ʟi&>p\Mmjng| D* VTpџgL= Mvl9%ޚpnnŢ&0pr=YN#U-sռ23XsDxd"w!9+~A604冖yTrb +b}|QU=O~YMuOFD0%-jig.x5PGvZ88v)qrȱ|gEb'xrV&S Z~0ŗ`޿aM77C7,vHf$[ ![z@`[34#xj`1UE aFy'۩8y6<[V0n #B/Nr]zvftB&&^cyVGyt=*f R]]գMhz`]5Ov4;g"H"tAXsTf%b:3ǜ+Coro($NCR#G) ͐fM1Ӊv(mrS'- 5Sm2٭/LN(@v `Y+s|QF3=NA6Wx}U9;(pWӰ;! 5 A2; 0ZI&n9-ˢt؁N`o I%Ê#RKR0O}IK6ly9;˹Lg~#2CpgKNuyusR-#*= khކaԟS Q=]|n(-E7aU2٧rcٯP=lY%& %%i,~ Z }ɻ/P=Gd [&}S`|9]^ݞU3SټbNy7w Ejr;;fyfnN Y_Ny6M4R'E-_#ޑC#iKUU.4[Fr~Gj2RN s _FyIj\pPg&߾HGr{2+g+סҝܚV2"ju[) :ˠ OG艹 p!%O3 $orG׊ 287{&n#UlJ/~|sQT) u<uGẌ Cr$ {˦d[pn eɎ{ܰv!K2v..lH \V3ycGV{Etz@<kOXH>)Dx^7~/L7EsHՕy#UUs1ZJC|9z&Ua?s5A!2\xnoI ΨK vv g=Ve<>`0&,&蒦IoGy-ʣZQD ~C#gUhGu5B͘-[~u?$Hݣazx2h'H}LRrऽgH*S>j'[+롡6@*1^O:gQLӑ!>Dͦc!9 6O+y08 }|+[uX&kKdM:P(|.l?}:^A|u\bmA68A}xet+T*ZWck`F0i@yhZmtb u;؇NUx Ѡk8,BĢ:9֬r:= i +I7tuC![xQٱu[l['{c۴9m( y _;P:%[шkyf.cni(oJwRC)¶e7/e[ݧ< U#j|8$QOю!?d%6 փ1=f֙b_굓 ?ǀXO`yln:2>-.N#մ+{{IIEj@Su+k[Xd1F4݌qVP-1SHSFk!=:,4 \-8+G}Q|8g1>bK*^,K$"B=\i=(ky Ĉ\Jvl҉KSkr8wZ3ǹ0!c yK*.Jv .*WzIV1 x7ǨDzZyKk傢@PJV|I X^R[K=WZV?){raSg^XS0bE0ũO؟XX쑬ϟz0p\hDg:셹ƹ2_g\٭ #*@Rbo!mҡldvpM}xp 6THg. 9Y^mЉ^}qbE]\@x/bbLP٫`/c#j:thk Bujn)g&J3=LX}z"kԠDY˾Yc84LH"s4AOoxJrw XNԽʅ֠be4YA %ޕnVu;-;{caABf֖,HEm?Oobi Áq:3yhXlxBXo&xě9ˇw2Q-%+pzu8(-lS 6<c^wrl2go\{S^BUޙѽM^,TV>vSQU% wPesO vu#Ei^&(^`,qK ۵ GP8.aʄ9 &J/ߡj~$57>*=2}k'Q+ȀwckE;ɐH}Q +,^LŎoF6sq圎l(_pp IрDLiV߆a54!r)ٚ_;v'R8-uB`3x*JJbܪ < &v|rȥWзLQO ͙3ڻ2CY5m/hƎB.G{ K.,+|34Gm̓4CkWJIcyqtC"2S&}~^ (Хyd WFѲ*Z4 ]ZHH>YLST ;#>KrAm3WwBjzzEifqQ SkdCGCJo>ցu/_g辐F#ꂝ,+@jc"Ӎڥ{,hVKQZbJMm}GZrU AM80[c$ڟz BLCC%5+AJ=/X"% wr|Rh [6J6ݤ8:]/ZA p6]=; CFSem?SH {aJw;뙇{Dxq<.@qvm E nlۧL"D~F%Y餧[Y&THJ9PQc3DZc=r&.w;ـ ix)lcˠIV]%eSˈ l(S[$DOylO`a%sQC97jAk{E]^b,aV"$B wӘ falxI!r؍Mmb| Ġ:Ao)( 8>`2@ʹ˼vKd]&eNpZC;>О}Vl>퀦y~ ,//b&`yn&+J{;}۝iV=U>gVNռFEP1\ 8œB ˣ>k([rW>թ{p` /zH$"v"rVMrbc2mwZE 2^ghr e_gxvoj{޳ \pi6eܿ|ʓ1 ]8I8#w#i{J684k3J5܌OC8b}9ZO?cT6)v;_<Ǻ+\)T^g?~zoFʊ/ 1@h@wP/-x+p͜ 851Tk}EIX q,vq\J~8Bd2J l%_>$BB I r{wkݍx; j?I8)N,2lKȍK1-Ҿ2)]:N:FmD g'ӧCٙxKiZ7g EV;sQs M\3.p0J5c$Crԣ#C[v !wp/onق,y0Rݦ;ۏ6vOKC[ޟghO;ذّo;ͽ5_k&&5vgBP p+{#d/0eɞZy$J ~n3~i-Y/ [~yb fs{J:0D"RdFBP=$W݉#ނ9O賨YW!Fg(74/bdm">~պ&}n'_~[AM dѫ K\{7s-9?ceB/aԕ?z0 B> J]Ɣf=ɗ]K<^`fQ6=ie5)ӏ6 [,X_VWS7Yq#4m |}a5.Cg # PLkrCe]n6*enzǸlbZf9h $9'U9Ǻ 1`WI[1@zL_j<,,L[@זVq0jFq56MyO{WWV+w@m,~4Hj㉰R*~R24\8ĂG[/O5;5d)V/Dr aCѲd q`ܕu2#L7eSYc5m OV #O}[= . \`V{c_*ސ$!G!MFdlR9B~oUoCк#BE~vVDj l Zt!{">VYq,vK㋝P9A],oFuA c gXYaM,^2C!8Hge~N_ khD}<| LX`u5yNȣ(dtW/ .2:k P ڋr@'2B HDqq- ,s3d2 "OlG&$Vj 6/׎CTN2{YBi Buc]/~KxG3?[ _{S1iLlx"*V{5n 7M[*pͦb#qRRU:!jk"C0s6EˀUj{Q~NGJKW=Fܧ$lS AJUIz +CdmBapb3Bӟ8C}oӶ!R(zv1VdIݥVlFΑ0q]B8Jqphuԗv^-)oqmqF2zef4黟k>zHڽ|/,6/;!KRk-ܒ'"alZ[;G&o0H"&} 'E@d݆0LIVTKɩBՔc3gsrWp蔵b 'cI]|2'H*P@Ƃ}2Ώ "T]u1#}&U SI-ġQ(AG飩*j?a=@ :4hi8q=&,8Zp/M?eu=f. vd;M>[qыCh1t}V&2qrQ3p:U"v`? s yhul Hk~NyGdiyC\CRU|)9g%Up'eEc)kl}; 'wBH{,5nT{j'~0k[հQ * څG܇7SB}}nM/ % =g?aA5e zL~UE޸1l BV7iaZ {֨ bG4 iSIڽ-m͐N3Pݗ$c"^*\Y:)X ;8F\Os/nK*\Yml48矤yoJE21BZZnH-@K_&4]Pi6D|Z6;Fy0I ,a|`aILo4P(g>Mt(Ŕ R8ůWf456f=r7+x4+PwIw'dK~o@o),[BS]CXl[ ]Hĩڌ-,)hINNA36H_x“E1Nsأ";چ@3U`,|uFq֗ O?)C1nil[t* 8!YF/y 2kf}T*)~fW-}8f.@Ġdb ]v\?Mχ#u}.A`﬏J oTEIսbSe"oR('8`G o ^:@,u+k#[|F/!`V vpK{܀4!1 -武}iRI]Y#M1aBz} "E1ƕoUZX J|mXNkj*'\9"̜]E %V!:_o8=-gפ!/JMh:4z|5%<$Y~Qn{!nr2DGOo#"hoHǪ8-ϲw#6eM8ܱ׏ Ҋ槬8"NřbS&CFڌ@f\V-]gj;|e@Lu K>&-ǽהs͵I䘔SNבwiʦ%c~%/*r'eGah߯!./^!)4|cԠPZ";8.MVWFW?3'E)CkAͺ9իgY3rd|ǙHf rIOaM&=㲌cb f5+NTcgFꈌtXY0%:@]m >y[ brA@؍hć,5Ba5K%࠭^0>jo:;l9?Sx; EӀZNHk;ԒفUM;̟Md5<ӚJ<$Ы*ak!T9~M;׿dj5=M8rx&+ Zc@g @  Ф_/Bc8Oq4 $x݆+TC#gC: nnZ;k9DКi& !z8>`04~u:mTFy( ˠ H]z7GK/tKI$1֮Bo,W-XVc)"\r 낵+DfԘym؁d.< k 7(U4J="Bʁr7GUgjciYJ;9Z.0"5A!;~V ;ߥ)w /]f̒cw@>VCQdU[`ܡ19/ JR# B2>5\ m@Jڱ=NEZV.A!!sUXOk &-\9Mw5O~2y)SqWJ5멷$&[hhwUjL-$D)9!5U'-S^ܓB"2Xe!/b/P KtWmςOXpآ T"*+L%8);9&XvLg>wdmޘR+hX#}R zqqiڜRPam5dU鿖TO#$e#``\?@y5v>HqKS>uIk!\he"vڍsm!x,EVYwMvXRw֬֘A1A~pLGnX1aK^\'z؇54Rqo; poUߗVlC+jNRn\gv9Q%r1QM$ sDhp7ۂy &v ob>Lŕ'[˷29|!MSVOӦ޵_=#K"U2pF*T׃sVZG{MUkZA)}fQW HAMB&V9g짙ƶeױ/\&ܜ~&`jLx6bSkF)i`Ct`I"aL %D4d3@Rj0@M$˿Hk^[w)L˟VӊgpO g2I9X" c5CπRNH9Z KW#V="2ʿBaծXV3x4\@r=chf$xzsf k NBc Y`S67 J.L[:i)h'y՞F:.w'm{9U=٤@S &˺S0W.ʍǟxwp"G8.S9 dȜ1 T󐽂& p3쳼TS̔#Yސ.߯j(C⽞Q%2L|K{@٠GۦA5X ?r-vh1[-M$sgaKc _Űqꙁ14V;&f)'0$9UrU7=}pE6`cZ "h\5:| 0홢ҾnQ7:9VVE Zw }&G7Iw"E* &i¼vOzl 7ga&},2hY.-(cĒJ)=&|x“=Q"j[3:cXװW-6<z_o Mr>dvWB%dr6TZ*vxkVܳr47,߶eVrfoو4=XW$_%ʺsFιo+y-9CB+qNu#1GHZH6齄o=xub\l`JpVA_MM+8U QJ oY+'sՐћI~X1zBC(`ܨƲD_C6iw/uۣ3_4fX2 4ܙ;iYrU]K$ϊdD~%^~g3bSx6rpƀg8N~a-i'=4(3&R/;oCXm>j;_&!#6 >2GNX=ו?`̜gOF)pZR B7)Lv 41;˫~ӱx?/ҕGZ)8ݛMh&1EejaWM&9G;JܧS܌X(йShoI`]Z:IkhYL=~P*a8rᶭ,?XtDL$ۤHpY< 6p7v;RC{Q\fx d}zzp%Uh%R};W8,*2Sw&wo?O~{">gI͸G)ﶱdaEo!ao槺!<8`?hzVdտ-fUUr+)gun_@JA&ՈFçUCVY੪Y"/6PeJs[Ѥyê!Q1bz QXHCX[) 'ػw#\>oeG Y싖,e ߲&u MphML>+jŒ2N}Xۼ "hWvP0@ߤF[c?,euEt8(-]S\\>lCq> 609*&@#g'LЖ0Y sKP7ᜪG1 ]n|h/mrb^< :TKF0eRJDiE _ЭvTS_0HӞ۷nAwը))DxրZ`;ǃ/ەGIBǗD&itJvS̀$@Ҧ=HSr 9558ꊳG)>1҆*d PPKs+]Y]FCWZ1Q_`*kpw|jPek+@l9E/0]M4UcN۸SufhZ,0]%|,|gdin1MjLW J!IP0s@̓< 3bM#M uYXZx{k3XjNS)!ϱ)aG_zD["|e$ {iN3U߹zs_X 웓x}>zމm<+ m3LgXV!$RiN@@ag?}~5&N-O?z2ʯc%hS\wkxqB#Uo@gBN}2\n0Zih 7Nd d{-˺!,9xh|WEPD(Fofm.3)Wk}E(EZMH&i2!J#'G s\@'O4>s &s_/9SOK+0XBё@O&PۊY*YnbHF@;S:Wm~^&N2W]YV%!ni|cyMnǺe(#8w ˸J; ˄U2#< }=QԣpEq3^f}..cI;yۋ6벤 \ҭ,:ID}аVY7Nj^𝈈8F=T_j\qP\]|lh| (>yw.Jl]WN#%^ _BxQKVƐ\}?)}@2_dO =lη7ľnwk 8'R0%&zn$? ~Nx)y|C()1|!<7BL`,3=XԒL#'> ,KNb +%z- docwRa }nEDX> @>'د "^#(jaUKT \/0=Pg0#r)A꽍Ax]PMì?ѭJ<0+LhQ@ʢS'@{/ɢ}i'@x,MȚvCcg 2:I_> pa0q:?~jQ= \dc]Y௡_7E׿S"K: _\[C@4{'O[aO`:b,*$>SJk_6>.flf[!oyI6W}887 |Fr獻͞lttbik(2=1qf9JZTތb 鞼P'r6E++M쎡ljmAZۜ/D5E.9 L1kK2V>%J(cc/,cR!MmO` F} "et5 | jJhgC8Mswu5OBf]sL*7nsp8k`-Ŋ ]ٮXE_X6)̠O7`Pm ^~mmS: -_b#L@%#^̜7RݡS|Lgk?h.t.,*o@ؽ(.2UOoC!k$D7[o_!iCi/a,{ZrE,uUwY{dM}b)XPsrx ך2`ZgOpN{HӓLg)n\b&W^#ճ{NB&cxVQT ~N'i`NP=pn˴25"aуV9X|n]4 G軒Η`#:Z҇QxOb  ̗)"~z~"X#Qqm{LG/=P (#]#)~BQV HAM~7MxʄIT+=p&]2".@t c/0>z4`%DVK$ӱ ek=#{I~eȰgO"Εl`'U]8Z n󧞑5-ԛLȈ9JꈐCޢgrwz4?$JwvL 98 t[4h!b;&)ij>'.4dR`cD)*㋔REH?:;`94d0>!cguF`d$ /#k0frŨ|ezW"ق2mIBuh[L$p)~^%N1$V̛aR䅌K%<Gĵڏ.!+)gu'I?z8p Z MZ%N<tuѭ:8 /smC^K#~-ɼ`$q 'rwنOi@C>7a9zS@ ] 4]Mt[C3 )G[C5I>\A|ɥzJOSl, }֜mO 3LZ~D'l@O>{Mi(rn!=ddu<Ӟf^^?(̋O~EIOMc0~j+%לvg2eh9|TB.'TrdȽ^%6Y0|-и-}TCFM H[pM ~Be$L &!3C3_tcU!}@:+|@hmW?`jf.>(w*$6 τASJP@4ECH,XK+/& Q˿T2:D&.}~7i뒸 J]pZjE>NJ T8 _~:.A/ OiNsІ֠73=M^9Ύ hY$k9)A-yL6빘NvAItKd/M %DZHۊ(unO $gAZpմgq t xC1JY(]tVKzjbxsƜKPĤMH yLgcvtٙ$m͒f>E.)MHcg7C`wOKm,H;'M+ɢ]hĠOP&Q(JJH)>_nmM{u $)fT*{F z@&"N/Z"bhV:I/LU&% ְz`&( 8>~λJ uKQ5˵` A`j-$Xv 0Q(% Xyךa}]azU 5f0=o[k7YsL'j xV 3O(>${؟>VnR>!L@i2m7--ѳK9>$/%+ҫ&󸙼:WW~=A !f zǷP%U^R|A\]k$yo\?(ܒS_@N!g;\\4$4BCS&@ظnFf%yǕ#g膉pt)~ w0:yeVly[Y&X wD0yZ]A(xLJI0/tuWY>,ȹ.:8>-{+uo|1Ȍ]=i𛙉1B'W+Rr}grջRނ#HOPF9C<篇`̢v D̵6)mߒUL& 7`3rXfґB 6SVJC\moװm{pO  h:D7O}mgHN&YPmopϚ.@, 8w[koUq:1!ʕo~Ek*sI4O)j*hՖ >lb+e e0dlF>į ӄ+r6Ktɤ&W+F=vs!1^M:>lx>/p܆uɠS)ЋXݮ4Қ p Q(gwԻwxlsaҨ|5#GL7&(7MP_sH"'˟cAc&5l?>?G^iUxɴLcb #ݸBIWOuX->7voK%oڬLZSSpKIXHmg84g_M?>^6j@*{pQL0&C뎱g]_9$e Kaf.uet4f]mLgmf٥ō1VGkhVXWɨ(e*dPӠ9s0hXmrn5^TSP%rOW1l€[ 7D Nr]"m9fXdPIl*ϜfDgD٦`5֥F{봛81JqH h=oڤ-Ǡf+|ÂQ_v!P&f67 i byD-M 'eV0*LvF%Q SʠE\~"B"2sv~:Qvq0Iр X.F2AfCoμSR'eK;dB??c*>l1H[@-g!pދ?@8Lp7oV1&wcP{>0e]1 6YY3$B>^1r,]|c;n`!*~iP{ݜBPԂ /e$7]`ݛDX7͗qܢf=A+.v3S~ I&ot6J6 7o2×Iu[U(^C{[?MO Eωy_1 ?= ; zguOԧLXYjK# M!&F#}t?Z̯RuvI\cxU&Dس<.;Q< VmkskV# Gouݞ'_:g&/A[r2jQ)|a\鍵VqWzB\[s/"xԦ#j_Viqv 4"WϏnvW<"!AkAAeHaV|3EK{>=rffm^eq*ߚz;фg=?ɪ_L:2n0ue`K۫ $5]κlڹ3ڙJ-JfTѤ'WM X*Îizlr׮t*'_ V'ਲVp634h6[ͥ!#a5* 35VqJ?GiĆ.7̉O邶+SͥrTzTS]2"Ӄ6N^rJ˲m{\#P;- /J'}?wլ e3Tf h2h0Nk_i}RMiɬ*P} f1MG, ̇0iܟ$gz_<>k' uJasMW 0s|c=&M$'48r}D(%^;*[ׯ-s.H Y{ۖl224;"I0i97\͌b^w3ȡ^teT)s,C㿮 +5hI5/͋\mFM0iYQ6ʃf[$gS~u^`#UXq"-VJ9ar,a=[l2Z<-LM$h#byS?żҷ=[j>=jy0z=t׬gաC jQ(Ҫ}&m~ ݗ:0Au6IB: ut*DEVuG sT#D@XC/DlpH}Y MOԇs~96z=)ίqRX]h&U|.gޡHlU\'/Azo1nd@:[(b4F|8οywgr_yȦ{TΎ&(M}ԓR̓ ,X۲krKr~(6HYp?Ӓ;s1}IaYyͅJ, %p#V& &A3v"^DEă`XOtsw@rBb&]>XA\Q=*!h';Eދt0gAd!LR 3:l&og&klbiJK A5e>ӛpj_Nᐐb(uV~=G A]RC^֕gX3=%RySaJ4klk$;ޯGgRY2ҖXSelF˛c\x7V^- OD2V1j ܯJ⬚I] ] |Qoxߧd}ER3W!t/'4+(^Hu2b#yc RR\uQ'{H{$ip`96`|Q>X۷̯qJ-"8b UqX:H)z*T~M-n_3L~_of $il&89'Wލ?mX S[~S {2IU^PN! Y~m +P4%qL$E-ߓ ʥq a,읶j}[N}QaԀN4Ŗ0kyНM7FXnlbr · SqD+5BO?9(R*&TOTLQʁm\f%㤆{9Ķ;|ě,/ 3fc~*o6eCrF42 U7iyJ3~bcxu#c\E -b/«\{ﳌ_S{qj_U3T4U Zp̭dwDMZw:2H.->w%J(s$X+U9]}Dh{@ K6Ep2趭zsWeO%LSUNy4oQO%9ι4]e#\ضXo8l&GX.ߘ|"OгP%+ثA4P_Jx%U\dV3uN+6w.y=8%@zy<8m^+w(}FuW ,Ϋr2d/}q+.K~Yd$*l]c&nQXE39][MDzn_i^, 4gU EHݴ(^6AC]s:@CYq+Y+ tP~3;h49H³ 쵤ID-P-ܨdsرA(w;')"cF#Z>NrҲŅX^G$2 Dz?2Р+klkpV'NiUH<;a`)Q,\~\eL42&ף9vKd`C٭ +,C*]T g4(#qțxT;q=P~0Pc]C$F5*+_J[c>=s |~::x, ?m=1}0A׼8&ҧ9S4nmy1'QjurKq_xtxY?8cHWv-wsE,/ f^AIJ|tW.ۏ؊5r) 50E_aAɇ '/<6c}?Q66TPPP9y)REs <]dHw`#+٥+y%Q}lAP¬+凇?|&4a9_π^z펤jJ[~telzFчN| dA#yP:6Dj;I| uyxεڣ*B nߎ׊TvͮZctƀsg?gw$T`Ԝ``D<+RѦ4p%6]TR䡴,ғkհZYD<2m@V ,WGc`]vPg5 ?Yڰ-CH pW`I2aBro12,{(|wDe`)x`HN679 |mc_KQW*wҶ)_V**C]m,<6SWnOl3tn8Yi@z{~ Su9G(6礧?awmCw*akNܲWt"gLz #1u@:L/]״֕_0b:ث `+tW?bdP]@z&S\83^{ztovNHe֦n YZ