sqlite3-devel-3.28.0-lp152.3.5 >  A ^넸/=„H]ڐ*pHѦLI[.};sLia̍'n-ҙ5F|9'5kҌ@Nw h~,_<]*#Ž`[fV:}/g%%)|QJ_'Ij?;v54䊧9Ot"F (h@W#WkJ/og"NM*|E?_H)Z\+u\[ 21 h_LŌ8.G:6 ֫g$ X>pD?˴d ! @(,48KTg       0@0(U8\;9H;: ;BȽFGHIXYZ@[D\L]\^Ɍbɼcedefluvwx(y8z@PT`dhn˰Csqlite3-devel3.28.0lp152.3.5Embeddable SQL Database EngineSQLite is a C library that implements an embeddable SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. SQLite is not a client library used to connect to a big database server; SQLite is the server. The SQLite library reads and writes directly to and from the database files on disk. SQLite can be used via the sqlite command-line tool or via any application which supports the Qt database plug-ins.^dlamb05 openSUSE Leap 15.2openSUSESUSE-Public-Domainhttps://bugs.opensuse.orgDevelopment/Libraries/C and C++http://www.sqlite.org/linuxx86_64^_^_^_^_5045ace95ddd26ae36922cb2e8c68aa96f8aa0009f4af14e39381ce3feff768a16d99f2b71dd3826acf8d928fdca525d5746c9ea255e1c29848fb3a654474291277fbf73a7b64cdb53842187f253b265adaa608c29c563cab15958b202ae4d9alibsqlite3.so.0.8.6rootrootrootrootrootrootrootrootsqlite3-3.28.0-lp152.3.5.src.rpmpkgconfig(sqlite3)sqlite-develsqlite3-develsqlite3-devel(x86-64)@    /usr/bin/pkg-configglibc-devellibsqlite3-0rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.28.03.0.4-14.6.0-14.0-15.2-14.14.1]w@\@\ZZ@Zs@Y|YYYC@YC@Y:Y&@Y"XDXBX@Xp@Xk@Xk@XfL@X2XW;W]@Wt@W@W@WReinhard Max Reinhard Max astieger@suse.comastieger@suse.comastieger@suse.comidonmez@suse.comastieger@suse.comastieger@suse.comastieger@suse.commpluskal@suse.comastieger@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comdimstar@opensuse.orgidonmez@suse.commpluskal@suse.comidonmez@suse.commpluskal@suse.comastieger@suse.comastieger@suse.comidonmez@suse.comidonmez@suse.comastieger@suse.comidonmez@suse.comastieger@suse.comtchvatal@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comdimstar@opensuse.orgidonmez@suse.comastieger@suse.comlnussel@suse.dempluskal@suse.comastieger@suse.comastieger@suse.commimi.vx@gmail.comastieger@suse.comastieger@suse.comastieger@suse.commpluskal@suse.comastieger@suse.comastieger@suse.comastieger@suse.comcrrodriguez@opensuse.orgastieger@suse.commpluskal@suse.comastieger@suse.comandreas.stieger@gmx.deandreas.stieger@gmx.deandreas.stieger@gmx.deandreas.stieger@gmx.deandreas.stieger@gmx.deandreas.stieger@gmx.deandreas.stieger@gmx.de- bsc#1150137, CVE-2019-16168, sqlite3-CVE-2019-16168.patch: Improper validation of qlite_stat1 sz field leads to division by zero.- Upgrade to 3.28.0: * CVE-2019-9936, bsc#1130326: running fts5 prefix queries inside a transaction could trigger a heap-based buffer over-read. * CVE-2019-9937, bsc#1130325: interleaving reads and writes in a single transaction with an fts5 virtual table will lead to a NULL Pointer Dereference. * Enhanced window functions * Enhanced VACUUM INTO so that it works for read-only databases. * New query optimizations. * Added the sqlite3_value_frombind() API for determining if the argument to an SQL function is from a bound parameter. * Security and compatibilities enhancements to fts3_tokenizer(). * Improved robustness against corrupt database files.- CVE-2018-20346, bsc#1119687: Upgrade to the most recent version to fix a remote code execution vulnerability in FTS3 (Magellan). - Drop sqlite-fts5-link.patch and do it in the spec file instead. - Version 3.27.2: * Add the VACUUM INTO command * Issue an SQLITE_WARNING message on the error log if a double-quoted string literal is used * Add the remove_diacritics=2 option to FTS3 and FTS5. * Add the SQLITE_PREPARE_NO_VTAB option to sqlite3_prepare_v3(). Use that option to prevent circular references to shadow tables from causing resource leaks. * Enhancements to the sqlite3_deserialize() interface * Enhancements to the CLI, mostly to support testing and debugging of the SQLite library itself * Increased robustness against malicious SQL that is run against a maliciously corrupted database - Version 3.26.0: * Optimization: When doing an UPDATE on a table with indexes on expressions, do not update the expression indexes if they do not refer to any of the columns of the table being updated. * Allow the xBestIndex() method of virtual table implementations to return SQLITE_CONSTRAINT to indicate that the proposed query plan is unusable and should not be given further consideration. * Added the SQLITE_DBCONFIG_DEFENSIVE option which disables the ability to create corrupt database files using ordinary SQL. * Added support for read-only shadow tables when the SQLITE_DBCONFIG_DEFENSIVE option is enabled. * Added the PRAGMA legacy_alter_table command, which if enabled causes the ALTER TABLE command to behave like older version of SQLite (prior to version 3.25.0) for compatibility. * Added PRAGMA table_xinfo that works just like PRAGMA table_info except that it also shows hidden columns in virtual tables. * Added the explain virtual table as a run-time loadable extension. * Add a limit counter to the query planner to prevent excessive sqlite3_prepare() times for certain pathological SQL inputs. * Added support for the sqlite3_normalized_sql() interface, when compiling with SQLITE_ENABLE_NORMALIZE. * Enhanced triggers so that they can use table-valued functions that exist in schemas other than the schema where the trigger is defined. * Improvements to the ".help" command in the CLI. * The SQLITE_HISTORY environment variable, if it exists, specifies the name of the command-line editing history file. * The --deserialize option associated with opening a new database in the CLI cause the database file to be read into memory and accessed using the sqlite3_deserialize() API. This simplifies running tests on a database without modifying the file on disk. - Version 3.25.2: * Add the PRAGMA legacy_alter_table=ON command that causes the "ALTER TABLE RENAME" command to behave as in 3.24.0 and earlier * Fix issue with some expressions with windows functions in views - Version 3.25.1: * Avoid false-positive error checks on ALTER TABLE * Further ORDER BY LIMIT optimization fixes for window functions - Version 3.25.0: * Add support for window functions * Add support for renaming columns within a table * Query optimizer improvements * slightly better concurrency in multi-threaded environments * The ORDER BY LIMIT optimization might have caused an infinite loop in the byte code of the prepared statement under very obscure circumstances, due to a confluence of minor defects in the query optimizer - Version 3.24.0: * Add support for PostgreSQL-style UPSERT * Add support for auxiliary columns in r-tree tables * Add C-language APIs for discovering SQL keywords used by SQLite * Add C-language APIs for dynamic strings based on sqlite3_str * Enhance ALTER TABLE so that it recognizes "true" and "false" as valid arguments to DEFAULT * Add the sorter-reference optimization as a compile-time option * Improve the format of the EXPLAIN QUERY PLAN raw output, so that it gives better information about the query plan and about the relationships between the various components of the plan * Added the SQLITE_DBCONFIG_RESET_DATABASE option to the sqlite3_db_config() API. * Automatically intercept the raw EXPLAIN QUERY PLAN output an reformat it into an ASCII-art graph. * Lines that begin with "#" and that are not in the middle of an SQL statement are interpreted as comments * Add the --append option to the ".backup" command * Add the ".dbconfig" command * various performance improvements * various bug fixes- update to 3.23.1: * Fix two problems in the new LEFT JOIN strength reduction optimization * Fix misbehavior of the FTS5 xBestIndex method * Fix a harmless reference to an uninitialized virtual machine register * Fix the eval.c extension so that it works with PRAGMA empty_result_callbacks=ON * Fix the generate_series virtual table so that it correctly returns no rows if any of its constraints are NULL * Performance enhancements in the parser- update to 3.23.0: * Add the sqlite3_serialize() and sqlite3_deserialize() interfaces when the SQLITE_ENABLE_DESERIALIZE compile-time option is used. * Recognize TRUE and FALSE as constants. (For compatibility, if there exist columns named "true" or "false", then the identifiers refer to the columns rather than Boolean constants.) * Support operators IS TRUE, IS FALSE, IS NOT TRUE, and IS NOT FALSE. * Added the SQLITE_DBSTATUS_CACHE_SPILL option to sqlite3_db_status() for reporting the number of cache spills that have occurred. * The "alternate-form-2" flag ("!") on the built-in printf implementation now causes string substitutions to measure the width and precision in characters instead of bytes. * If the xColumn method in a virtual table implementation returns an error message using sqlite3_result_error() then give that error message preference over internally-generated messages. * Added the -A command-line option to the CLI to make it easier to manage SQLite Archive files. * Add support for INSERT OR REPLACE, INSERT OR IGNORE, and UPDATE OR REPLACE in the Zipfile virtual table. * Enhance the sqlite3changeset_apply() interface so that it is hardened against attacks from deliberately corrupted changeset objects. * Added the sqlite3_normalize() extension function. * Query optimizer enhancements * Various bug fixes * Fix various issues reported by fuzzers, including: + CVE-2018-8740: NULL pointer dereference on CREATE TABLE as (bsc#1085790)- update to 3.22.0: * Add Zipfile virtual table to read and write a ZIP Archive. * Improved handling of WAL mode databases * various improvements, optimizations and bug fixes- Update to version 3.21.0 * Take advantage of the atomic-write capabilities in the F2FS filesystem when available, for greatly reduced transaction overhead. This currently requires the SQLITE_ENABLE_BATCH_ATOMIC_WRITE compile-time option. * Allow ATTACH and DETACH commands to work inside of a transaction. * Allow WITHOUT ROWID virtual tables to be writable if the PRIMARY KEY contains exactly one column. * The "fsync()" that occurs after the header is written in a WAL reset now uses the sync settings for checkpoints. This means it will use a "fullfsync" on macs if PRAGMA checkpoint_fullfsync set on. * The sqlite3_sourceid() function tries to detect if the source code has been modified from what is checked into version control and if there are modifications, the last four characters of the version hash are shown as "alt1" or "alt2". The objective is to detect accidental and/or careless edits. A forger can subvert this feature. * Improved de-quoting of column names for CREATE TABLE AS statements with an aggregate query on the right-hand side. * Fewer "stat()" system calls issued by the unix VFS. * Enhanced the LIKE optimization so that it works with an ESCAPE clause. * Enhanced PRAGMA integrity_check and PRAGMA quick_check to detect obscure row corruption that they were formerly missing. Also update both pragmas so that they return error text rather than SQLITE_CORRUPT when encountering corruption in records. * The query planner now prefers to implement FROM-clause subqueries using co-routines rather using the query flattener optimization. Support for the use of co-routines for subqueries may no longer be disabled. * Pass information about !=, IS, IS NOT, NOT NULL, and IS NULL constraints into the xBestIndex method of virtual tables. * Enhanced the CSV virtual table so that it accepts the last row of input if the final new-line character is missing. * Remove the rarely-used "scratch" memory allocator. Replace it with the SQLITE_CONFIG_SMALL_MALLOC configuration setting that gives SQLite a hint that large memory allocations should be avoided when possible. * Added the swarm virtual table to the existing union virtual table extension. * Added the sqlite_dbpage virtual table for providing direct access to pages of the database file. The source code is built into the amalgamation and is activated using the - DSQLITE_ENABLE_DBPAGE_VTAB compile-time option. * Add a new type of fts5vocab virtual table - "instance" - that provides direct access to an FTS5 full-text index at the lowest possible level. * Miscellaneous microoptimizations reduce CPU usage by about 2.1%. Bug fixes * Fix a faulty assert() statement discovered by OSSFuzz. Ticket cb91bf4290c211d * Fix an obscure memory leak in sqlite3_result_pointer(). Ticket 7486aa54b968e9b * Avoid a possible use-after-free error by deferring schema resets until after the query planner has finished running. Ticket be436a7f4587ce5 * Only use indexes-on-expressions to optimize ORDER BY or GROUP BY if the COLLATE is correct. Ticket e20dd54ab0e4383 * Fix an assertion fault that was coming up when the expression in an index-on-expressions is really a constant. Ticket aa98619ad08ddca * Fix an assertion fault that could occur following PRAGMA reverse_unordered_selects. Ticket cb91bf4290c211d * Fix a segfault that can occur for queries that use table-valued functions in an IN or EXISTS subquery. Ticket b899b6042f97f5 * Fix a potential integer overflow problem when compiling a particular horrendous common table expression. This was another problem discovered by OSSFuzz. Check-in 6ee8cb6ae5. * Fix a potential out-of-bound read when querying a corrupt database file, a problem detected by Natalie Silvanovich of Google Project Zero. Check-in 04925dee41a21f.- update to 3.20.1: * Fix a potential memory leak in the new sqlite3_result_pointer() interface- Update to 3.20.0: * Potential incompatible change for clients incorrectly relying on unspecified behavior: column names returned by sqlite3_column_name() and sqlite3_column_name16() may return different names when views or subqueries are used in the FROM clause, and AS clauses are not used (as they should be) * Text of some error messages changed. Applications that depend on specific error message text may be impacted.- a little less packaging cleanup so as to not break SLE 11 SP4- Small packaging cleanup- Update to 3.19.3: * Fix a bug associated with auto_vacuum that can lead to database corruption. (introduced in 3.16.0)- Update to 3.19.2 * Fix a bug in the LEFT JOIN flattening optimization. Ticket cad1ab4cb7b0fc. * Fix more bugs in the LEFT JOIN flattening optimization. Ticket 7fde638e94287d2c.- Update to 3.19.0 * The SQLITE_READ authorizer callback is invoked once with a column name that is an empty string for every table referenced in a query from which no columns are extracted. * When using an index on an expression, try to use expression values already available in the index, rather than loading the original columns and recomputing the expression. * Enhance the flattening optimization so that it is able to flatten views on the right-hand side of a LEFT JOIN. * Use replace() instead of char() for escaping newline and carriage-return characters embedded in strings in the .dump output from the command-line shell. * Avoid unnecessary foreign key processing in UPDATE statements that do not touch the columns that are constrained by the foreign keys. * On a DISTINCT query that uses an index, try to skip ahead to the next distinct entry using the index rather than stepping through rows, when an appropriate index is available. * Avoid unnecessary invalidation of sqlite3_blob handles when making changes to unrelated tables. * Transfer any terms of the HAVING clause that use only columns mentioned in the GROUP BY clause over to the WHERE clause for faster processing. * Reuse the same materialization of a VIEW if that VIEW appears more than once in the same query. * Enhance PRAGMA integrity_check so that it identifies tables that have two or more rows with the same rowid. * Enhance the FTS5 query syntax so that column filters may be applied to arbitrary expressions. * Enhance the json_extract() function to cache and reuse parses of JSON input text. * Added the anycollseq.c loadable extension that allows a generic SQLite database connection to read a schema that contains unknown and/or application-specific collating sequences. * Fix a problem in REPLACE that can result in a corrupt database containing two ore more rows with the same rowid. Fix for ticket f68dc596c4e6018d. * Fix a problem in PRAGMA integrity_check that was causing a subsequent VACUUM to behave suboptimally. so that it works correctly with foreign keys on WITHOUT ROWID tables. * Disallow leading zeros in numeric constants in JSON. Fix for ticket b93be8729a895a528e2. * Disallow control characters inside of strings in JSON. Fix for ticket 6c9b5514077fed34551. * Limit the depth of recursion for JSON objects and arrays in orde to avoid excess stack usage in the recursive descent parser. Fix for ticket 981329adeef51011052.- Update to 3.18.0 * Added the PRAGMA optimize command * The SQLite version identifier returned by the sqlite_source_id() SQL function and the sqlite3_sourceid() C API and found in the SQLITE_SOURCE_ID macro is now a 64-digit SHA3-256 hash instead of a 40-digit SHA1 hash. * Added the json_patch() SQL function to the JSON1 extension. * Enhance the LIKE optimization so that it works for arbitrary expressions on the left-hand side as long as the LIKE pattern on the right-hand side does not begin with a digit or minus sign. * Added the sqlite3_set_last_insert_rowid() interface and use the new interface in the FTS3, FTS4, and FTS5 extensions to ensure that the sqlite3_last_insert_rowid() interface always returns reasonable values. * Enhance PRAGMA integrity_check and PRAGMA quick_check so that they verify CHECK constraints. * Enhance the query plans for joins to detect empty tables early and halt without doing unnecessary work. * Enhance the sqlite3_mprintf() family of interfaces and the printf SQL function to put comma separators at the thousands marks for integers, if the "," format modifier is used in between the "%" and the "d" (example: "%,d"). * Added the -DSQLITE_MAX_MEMORY=N compile-time option. * Added the .sha3sum dot-command and the .selftest dot-command to the command-line shell * Begin enforcing SQLITE_LIMIT_VDBE_OP. This can be used, for example, to prevent excessively large prepared statements in systems that accept SQL queries from untrusted users. * Various performance improvements. * Ensure that indexed expressions with collating sequences are handled correctly. Fix for ticket eb703ba7b50c1a5. * Fix a bug in the 'start of ...' modifiers for the date and time functions. Ticket 6097cb92745327a1 * Fix a potential segfault in complex recursive triggers, resulting from a bug in the OP_Once opcode introduced as part of a performance optimization in version 3.15.0. Ticket 06796225f59c057c * In the RBU extension, add extra sync operations to avoid the possibility of corruption following a power failure. * The sqlite3_trace_v2() output for nested SQL statements should always begin with a "--" comment marker.- Drop update-desktop-files BuildRequires: this package contains no desktop files, hence there is no need to handle any of them.- Update to 3.17.0 * Approximately 25% better performance from the R-Tree extension. * Add the SQLITE_DEFAULT_LOOKASIDE compile-time option. * Increase the default lookaside size from 512,125 to 1200,100 as this provides better performance while only adding 56KB of extra memory per connection. * Use compiler built-ins __builtin_sub_overflow(), __builtin_add_overflow(), and __builtin_mul_overflow() when available. * Added the SQLITE_ENABLE_NULL_TRIM compile-time option, which can result in significantly smaller database files for some applications, at the risk of being incompatible with older versions of SQLite. * Change SQLITE_DEFAULT_PCACHE_INITSZ from 100 to 20, for improved performance. * Added the SQLITE_UINT64_TYPE compile-time option as an analog to SQLITE_INT64_TYPE. * Perform some UPDATE operations in a single pass instead of in two passes. * Enhance the session extension to support WITHOUT ROWID tables. * Fixed performance problems and potential stack overflows when creating views from multi-row VALUES clauses with hundreds of thousands of rows. * Added the sha1.c extension. * In the command-line shell, enhance the ".mode" command so that it restores the default column and row separators for modes "line", "list", "column", and "tcl". * Enhance the SQLITE_DIRECT_OVERFLOW_READ option so that it works in WAL mode as long as the pages being read are not in the WAL file. * Enhance the LEMON parser generator so that it can store the parser object as a stack variable rather than allocating space from the heap and make use of that enhancement in the amalgamation. * Other performance improvements. Uses about 6.5% fewer CPU cycles. * Throw an error if the ON clause of a LEFT JOIN references tables to the right of the ON clause. This is the same behavior as PostgreSQL. Formerly, SQLite silently converted the LEFT JOIN into an INNER JOIN. Fix for ticket 25e335f802dd. * Use the correct affinity for columns of automatic indexes. Ticket 7ffd1ca1d2ad4ec. * Ensure that the sqlite3_blob_reopen() interface can correctly handle short rows. Fix for ticket e6e962d6b0f06f46e.- Update to version 3.16.2: * Fix the REPLACE statement for WITHOUT ROWID tables that lack secondary indexes so that it works correctly with triggers and foreign keys. * Fix the sqlite3_value_text() interface so that it correctly translates content generated by zeroblob() into a string of all 0x00 characters. * Fix the bytecode generator to deal with a subquery in the FROM clause that is itself a UNION ALL where one side of the UNION ALL is a view that contains an ORDER BY. * Adjust the sqlite3_column_count() API so it more often returns the same values for PRAGMA statements as it did in prior releases, to minimize disruption to applications that might be using that interface in unexpected ways.- Update to version 3.16.1 * Fix a bug concerning the use of row values within triggers (see ticket 8c9458e7) that was in version 3.15.0.- Update to version 3.16.0: * Uses 9% fewer CPU cycles. (See the CPU performance measurement report for details on how the this performance increase was computed.) * Added experimental support for PRAGMA functions. * Added the SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE option to sqlite3_db_config(). * Enhance the date and time functions so that the 'unixepoch' modifier works for the full span of supported dates. * Changed the default configuration of the lookaside memory allocator from 500 slots of 128 bytes each into 125 slots of 512 bytes each. * Enhanced "WHERE x NOT NULL" partial indexes so that they are usable if the "x" column appears in a LIKE or GLOB operator. * Enhanced sqlite3_interrupt() so that it interrupts checkpoint operations that are in process. * Enhanced the LIKE and GLOB matching algorithm to be faster for cases when the pattern contains multiple wildcards. * Added the SQLITE_FCNTL_WIN32_GET_HANDLE file control opcode. * Added ".mode quote" to the command-line shell. * Added ".lint fkey-indexes" to the command-line shell. * Added the .imposter dot-command to the command-line shell. * Added the remember(V,PTR) SQL function as a loadable extension. * Rename the SQLITE_OMIT_BUILTIN_TEST compile-time option to * SQLITE_UNTESTABLE to better reflect the implications of using it.- SQLite 3.15.2: * Multiple bug fixes to the row value logic that was introduced in version 3.15.0. * Fix a NULL pointer dereference in ATTACH/DETACH following a maliciously constructed syntax error * Fix a crash that can occur following an out-of-memory condition in the built-in instr() function. * In the JSON extension, fix the JSON validator so that it correctly rejects invalid backslash escapes within strings.- SQLite 3.15.1: * Fix the VACUUM command so that it spills excess content to disk rather than holding everything in memory, and possible causing an out-of-memory error for larger database files * Fix a case where OR-connected terms in the ON clause of a LEFT JOIN might cause incorrect results * Fix a case where the use of row values in the ON clause of a LEFT JOIN might cause incorrect results- SQLite 3.15.0 * Added support for row values. * Allow deterministic SQL functions in the WHERE clause of a partial index. * Added the "modeof=filename" URI parameter on the unix VFS * Added support for SQLITE_DBCONFIG_MAINDBNAME. * Added the ability to VACUUM an ATTACH-ed database. * Enhancements to the command-line shell: + Add the ".testcase" and ".check" dot-commands. + Added the --new option to the ".open" dot-command, causing any prior content in the database to be purged prior to opening. * Enhance the fts5vocab virtual table to handle "ORDER BY term" efficiently. * Miscellaneous micro-optimizations reduce CPU usage by more than 7% on common workloads. Most optimization in this release has been on the front-end (sqlite3_prepare_v2()). * The multiply operator now correctly detects 64-bit integer overflow and promotes to floating point in all corner-cases. Fix for ticket 1ec41379c9c1e400. * Correct handling of columns with redundant unique indexes when those columns are used on the LHS of an IN operator. Fix for ticket 0eab1ac759. * Skip NULL entries on range queries in indexes on expressions. Fix for ticket 4baa46491212947. * Ensure that the AUTOINCREMENT counters in the sqlite_sequence table are initialized doing "Xfer Optimization" on "INSERT ... SELECT" statements. Fix for ticket 7b3328086a5c116c. * Make sure the ORDER BY LIMIT optimization (from check-in 559733b09e) works with IN operators on INTEGER PRIMARY KEYs. Fix for ticket 96c1454c- SQLite 3.14.2: * Fix the sqlite3_trace_v2() interface so that it is disabled if either the callback or the mask arguments are zero, in accordance with the documentation. * Fix commenting errors and improve the comments generated on EXPLAIN listings when the -DSQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option is used. * Fix the ".read" command in the command-line shell so that it understands that its input is not interactive. * Correct affinity computations for a SELECT on the RHS of an IN operator. Fix for ticket 199df4168c. * The ORDER BY LIMIT optimization is not valid unless the inner-most IN operator loop is actually used by the query plan. Fix for ticket 0c4df46116e90f92. * Fix an internal code generator problem that was causing some DELETE operations to no-op. Ticket ef360601- SQLite 3.14.1: * A performance enhancement to the page-cache "truncate" operation reduces COMMIT time by dozens of milliseconds on systems with a large page cache * Fix to the --rbu option of sqldiff.- SQLite 3.14.0 * Added support for WITHOUT ROWID virtual tables. * Improved the query planner so that the OR optimization can be used on virtual tables even if one or more of the disjuncts use the LIKE, GLOB, REGEXP, MATCH operators. * Added the CSV virtual table for reading RFC 4180 formatted comma-separated value files. * Added the carray() table-valued function extension. * Enabled persistent loadable extensions using the new SQLITE_OK_LOAD_PERMANENTLY return code from the extension entry point. * Added the SQLITE_DBSTATUS_CACHE_USED_SHARED option to sqlite3_db_status(). * Add the vfsstat.c loadable extension - a VFS shim that measures I/O together with an eponymous virtual table that provides access to the measurements. * Improved algorithm for running queries with both an ORDER BY and a LIMIT where only the inner-most loop naturally generates rows in the correct order. * Enhancements to Lemon parser generator, so that it generates a faster parser. * The PRAGMA compile_options command now attempts to show the version number of the compiler that generated the library. * Enhance PRAGMA table_info so that it provides information about eponymous virtual tables. * The query planner uses a full scan of a partial index instead of a full scan of the main table, in cases where that makes sense. * Allow table-valued functions to appear on the right-hand side of an IN operator. * Added two new C-language interfaces: sqlite3_expanded_sql() and sqlite3_trace_v2(). These new interfaces subsume the functions of sqlite3_trace() and sqlite3_profile() which are now deprecated. * Added the json_quote() SQL function to the json1 extension. * Disable the authorizer callback while reparsing the schema. * Added the SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION compile-time option and turned that option on by default when building the command-line shell. * Fix the ALTER TABLE command so that it does not corrupt descending indexes when adding a column to a legacy file format database. Ticket f68bf68513a1c15f * Fix a NULL-pointer dereference/crash that could occurs when a transitive WHERE clause references a non-existent collating sequence. Ticket e8d439c77685eca6. * Improved the cost estimation for an index scan which includes a WHERE clause that can be partially or fully evaluated using columns in the index and without having to do a table lookup. This fixes a performance regression that occurred for some obscure queries following the ORDER BY LIMIT optimization introduced in version 3.12.0.- Fix SLE 11 for previous change: noarch subpackages not supported- Reduce the conditions a bit and sort with spec-cleaner - Remove condition for old sle10 ppc machines- SQLite 3.13.0: * Postpone I/O associated with TEMP files for as long as possible, with the hope that the I/O can ultimately be avoided completely. * Merged the session extension into trunk. * Added the ".auth ON|OFF" command to the command-line shell. * Added the "--indent" option to the ".schema" and ".fullschema" commands of the command-line shell, to turn on pretty-printing. * Added the ".eqp full" option to the command-line shell, that does both EXPLAIN and EXPLAIN QUERY PLAN on each statement that is evaluated. * Improved resistance against goofy query planner decisions caused by incomplete or incorrect modifications to the sqlite_stat1 table by the application. * Added the sqlite3_db_config(db,SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION) interface which allows the sqlite3_load_extension() C-API to be enabled while keeping the load_extension() SQL function disabled for security. * Change the temporary directory search algorithm on Unix to allow directories with write and execute permission, but without read permission, to serve as temporary directories. Apply this same standard to the "." fallback directory. * Fix a problem with the multi-row one-pass DELETE optimization that was causing it to compute incorrect answers with a self-referential subquery in the WHERE clause. Fix for ticket dc6ebeda9396087 * Fix a possible segfault with DELETE when table is a rowid table with an INTEGER PRIMARY KEY and the WHERE clause contains a OR and the table has one or more indexes that are able to trigger the OR optimization, but none of the indexes reference any table columns other than the INTEGER PRIMARY KEY. Ticket 16c9801ceba49. * When checking for the WHERE-clause push-down optimization, verify that all terms of the compound inner SELECT are non-aggregate, not just the last term. Fix for ticket f7f8c97e97597.- SQLite 3.12.2: * Fix compatibility with some legacy versions of sqlite database * Minor bugfixes- SQLite 3.12.1: * Fix a boundary condition error introduced by version 3.12.0 that can result in a crash during heavy SAVEPOINT usage. * Fix views so that they inherit column datatypes from the table that they are defined against, when possible. * Fix the query planner so that IS and IS NULL operators are able to drive an index on a LEFT OUTER JOIN.- SQLite 3.12.0: * The SQLITE_DEFAULT_PAGE_SIZE is increased from 1024 to 4096. The SQLITE_DEFAULT_CACHE_SIZE is changed from 2000 to -2000 so the same amount of cache memory is used by default. * Enhancements to the Lemon parser generator so that it creates a smaller and faster SQL parser. * Only create master journal files if two or more attached databases are all modified, do not have PRAGMA synchronous set to OFF, and do not have the journal_mode set to OFF, MEMORY, or WAL. * Added the SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER option to sqlite3_db_config() which allows the two-argument version of the fts3_tokenizer() SQL function to be enabled or disabled at run-time. * Added the sqlite3rbu_bp_progress() interface to the RBU extension. * The PRAGMA defer_foreign_keys=ON statement now also disables RESTRICT actions on foreign key. * Added the sqlite3_system_errno() interface. * Added the SQLITE_DEFAULT_SYNCHRONOUS and SQLITE_DEFAULT_WAL_SYNCHRONOUS compile-time options. The SQLITE_DEFAULT_SYNCHRONOUS compile-time option replaces the SQLITE_EXTRA_DURABLE option, which is no longer supported. * Enhanced the ".stats" command in the command-line shell to show more information about I/O performance obtained from /proc, when available. * Make sure the sqlite3_set_auxdata() values from multiple triggers within a single statement do not interfere with one another. Ticket dc9b1c91. * Fix the code generator for expressions of the form "x IN (SELECT...)" where the SELECT statement on the RHS is a correlated subquery. - Remove sqlite3-link-binary-with-libsqlite3.patch: replaced with configure option --disable-static-shell- Enable secure delete by default, this matches Fedora & Android. It can be disabled with `PRAGMA SECURE_DELETE = 0;` - Enable more extensions, syncing with Fedora & Gentoo.- Fix sqlite-fts5-link.patch: link libsqlite3.so with libm instead of the sqlite3 binary: the library is the actual user of log(). - Add sqlite3-link-binary-with-libsqlite3.patch: dyamically link /usr/bin/sqlite3 to libsqlite3 instead of statically using it. - Move autoreconf call to build section, where it belongs.- Enable FTS5 support. - Add sqlite-fts5-link.patch to link to math library because FTS5 code uses log().- SQLite 3.11.1: * Fix an FTS5 issue in which the 'optimize' command could cause index corruption. * Fix a buffer overread that might occur if FTS5 is used to query a corrupt database file. * Increase the maximum "scope" value for the spellfix1 extension from 6 to 30.- explicitly enable readline support - run spec-cleaner- Update to 3.11.0 * Enhanced WAL mode so that it works efficiently with transactions that are larger than the cache_size. * Added the FTS5 detail option. * Added the "EXTRA" option to PRAGMA synchronous that does a sync of the containing directory when a rollback journal is unlinked in DELETE mode, for better durability. The SQLITE_EXTRA_DURABLE compile-time option enables PRAGMA synchronous=EXTRA by default. * Enhanced the query planner so that it is able to use a covering index as part of the OR optimization. * Avoid recomputing NOT NULL and CHECK constraints on unchanged columns in UPDATE statement. * Many micro-optimizations, resulting in a library that is faster than the previous release. * By default, the shell is now in "auto-explain" mode. The output of EXPLAIN commands is automatically formatted. * Added the ".vfslist" dot-command. * The SQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option is now turned on by default in the standard builds.- SQlite 3.10.2: * Fix case-folding bug introduced in 3.10.0 in the LIKE operator * Fix a use-after-free that can occur when SQLite is compiled with -DSQLITE_HAS_CODEC. * Fix the build so that it works with -DSQLITE_OMIT_WAL.- SQLite 3.10.1: * Fix a 16-month-old bug in the query planner that could generate incorrect results when a scalar subquery attempts to use the block sorting optimization. * Add SQLITE_FCNTL_JOURNAL_POINTER file control- update to 3.10.0 - spec-cleaned * Added support for LIKE, GLOB, and REGEXP operators on virtual tables. * Added the colUsed field to sqlite3_index_info for use by the sqlite3_module.xBestIndex method. * Enhance the PRAGMA cache_spill statement to accept a 32-bit integer parameter which is the threshold below which cache spilling is prohibited. * On unix, if a symlink to a database file is opened, then the corresponding journal files are based on the actual filename, not the symlink name. * Added the "--transaction" option to sqldiff. * Added the sqlite3_db_cacheflush() interface. * Added the sqlite3_strlike() interface. * When using memory-mapped I/O map the database file read-only so that stray pointers and/or array overruns in the application cannot accidently modify the database file. * Added the experimental sqlite3_snapshot_get(), sqlite3_snapshot_open(), and sqlite3_snapshot_free() interfaces. These are subject to change or removal in a subsequent release. * Enhance the 'utc' modifier in the date and time functions so that it is a no-op if the date/time is known to already be in UTC. (This is not a compatibility break since the behavior has long been documented as "undefined" in that case.) * Added the json_group_array() and json_group_object() SQL functions in the json extension. * Added the SQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option. * Many small performance optimizations. + Enhancements to the command-line shell: * Added the ".changes ON|OFF" and ".vfsinfo" dot-commands. + Important fixes: * Fix inconsistent integer to floating-point comparison operations that could result in a corrupt index if the index is created on a table column that contains both large integers and floating point values of similar magnitude. * Fix an infinite-loop in the query planner that could occur on malformed common table expressions. * Various bug fixes in the sqldiff tool.- SQLite 3.9.2: * Fix the schema parser so that it interprets certain (obscure and ill-formed) CREATE TABLE statements the same as legacy. * Fix a query planner problem that could result in an incorrect answer due to the use of automatic indexing in subqueries in the FROM clause of a correlated scalar subqueries.- SQLite 3.9.1: * Fix the json1 extension so that it does not recognize ASCII form-feed as a whitespace character, in order to comply with RFC-7159. * Build and portability fixes.- SQLite 3.9.0 * Add json1 extension module * The CREATE VIEW statement now accepts an optional list of column names following the view name. * Added support for indexes on expressions. * Added support for table-valued functions in the FROM clause of a SELECT statement. * Added support for eponymous virtual tables. * A VIEW may now reference undefined tables and functions when initially created. Missing tables and functions are reported when the VIEW is used in a query. * Added the sqlite3_value_subtype() and sqlite3_result_subtype() interfaced (used by the json1 extension). * The query planner is now able to use partial indexes that contain AND-connected terms in the WHERE clause. * The sqlite3_analyzer utility is updated to report the depth of each btree and to show the average fanout for indexes and WITHOUT ROWID tables. * Enhanced the dbstat virtual table so that it can be used as a table-valued function where the argument is the schema to be analyzed. * sqlite3_memory_alarm() no-op.- Update to 3.8.11.1 * Restore an undocumented side-effect of PRAGMA cache_size: force the database schema to be parsed if the database has not been previously accessed. * Fix a long-standing problem in sqlite3_changes() for WITHOUT ROWID tables that was reported a few hours after the 3.8.11 release.- SQLite 3.8.11: * Significantly improved performance * new interfaces and enhancements * Important bug fixes for CREATE TABLE AS * Fix the skip-scan optimization so that it works correctly when the OR optimization is used on WITHOUT ROWID tables. * Fix the sqlite3_memory_used() and sqlite3_memory_highwater() interfaces so that they actually do provide a 64-bit answer. * experimental extensions, not enabled: + RBU (Resumable Bulk Update) extension + FTS5 (Full-text search) extension- SQLite 3.8.10.2: * Fix an index corruption issue introduced by version 3.8.7.- SQLite 3.8.10.1: * Make sqlite3_compileoption_used() responsive to the SQLITE_ENABLE_DBSTAT_VTAB compile-time option. * Fix minor issues with the dbstat virtual table.- Update to SQLite 3.8.10 * Added the y format string to the matchinfo() function of FTS3. * Performance improvements for ORDER BY, VACUUM, CREATE INDEX, PRAGMA integrity_check, and PRAGMA quick_check * Fix many obscure problems discovered while SQL fuzzing. * Add the ".binary" and ".limits" commands to the command-line shell * Make the "dbstat" virtual table part of standard builds when compiled with the SQLITE_ENABLE_DBSTAT_VTAB option.- Update to SQLite 3.8.9: * Added the sqlite3_status64() interface. * Fix memory size tracking so that it works even if SQLite uses more than 2GiB of memory. * Added the PRAGMA index_xinfo command. * Fix a potential 32-bit integer overflow problem in the sqlite3_blob_read() and sqlite3_blob_write() interfaces. * Ensure that prepared statements automatically reset on extended error codes of SQLITE_BUSY and SQLITE_LOCKED even when compiled using SQLITE_OMIT_AUTORESET. * Correct miscounts in the sqlite3_analyzer.exe utility related to WITHOUT ROWID tables. * Added the ".dbinfo" command to the command-line shell. * Improve the performance of fts3/4 queries that use the OR operator and at least one auxiliary fts function. * Fix a bug in the fts3 snippet() function causing it to omit leading separator characters from snippets that begin with the first token in a column.- Update to SQLite 3.8.8.3 * Fix a bug (ticket 2326c258d02ead33) that can lead to incorrect results if the qualifying constraint of a partial index appears in the ON clause of a LEFT JOIN. * Added the ability to link against the "linenoise" command-line editing library in unix builds of the command-line shell.- SQLite 3.8.8.2: * Enhance sqlite3_wal_checkpoint_v2(TRUNCATE) interface so that it truncates the WAL file even if there is no checkpoint work to be done.- SQLite 3.8.8.1: * Fix a bug in the sorting logic, present since version 3.8.4, that can cause output to appear in the wrong order on queries that contains an ORDER BY clause, a LIMIT clause, and that have approximately 60 or more columns in the result set.- SQLite 3.8.8 - New Features: * Added the PRAGMA data_version command * Added the SQLITE_CHECKPOINT_TRUNCATE option to the sqlite3_wal_checkpoint_v2() / PRAGMA wal_checkpoint. * Added the sqlite3_stmt_scanstatus() when compiled with SQLITE_ENABLE_STMT_SCANSTATUS. * The sqlite3_table_column_metadata() is enhanced to work correctly on WITHOUT ROWID tables and to check for the existence of a a table if the column name parameter is NULL. The interface is now also included in the build by default, without requiring the SQLITE_ENABLE_COLUMN_METADATA compile- time option. * Added the SQLITE_ENABLE_API_ARMOR compile-time option. * Added the SQLITE_REVERSE_UNORDERED_SELECTS compile-time option. * Added the SQLITE_SORTER_PMASZ compile-time option and SQLITE_CONFIG_PMASZ start-time option. * Added the SQLITE_CONFIG_PCACHE_HDRSZ option to sqlite3_config() * The number of rows in a VALUES clause is no longer limited by SQLITE_LIMIT_COMPOUND_SELECT. * Added the eval.c loadable extension that implements an eval() SQL function that will recursively evaluate SQL. - Performance Enhancements: * Reduce the number of memcpy() operations involved in balancing a b-tree, for 3.2% overall performance boost. * Improvements to cost estimates for the skip-scan optimization. * The automatic indexing optimization is now capable of generating a partial index if that is appropriate. - Bug fixes: * Ensure durability following a power loss with "PRAGMA journal_mode=TRUNCATE" by calling fsync() right after truncating the journal file. * The query planner now recognizes that any column in the right- hand table of a LEFT JOIN can be NULL, even if that column has a NOT NULL constraint. Avoid trying to optimize out NULL tests in those cases. * Make sure ORDER BY puts rows in ascending order even if the DISTINCT operator is implemented using a descending index. * Fix data races that might occur under stress when running with many threads in shared cache mode where some of the threads are opening and closing connections. * Fix obscure crash bugs found by american fuzzy lop. - Other changes: * Disable the use of the strchrnul() C-library routine unless it is specifically enabled using the -DHAVE_STRCHRNULL compile- time option. * Improvements to the effectiveness and accuracy of the likelihood(), likely(), and unlikely() SQL hint functions.- SQLite 3.8.7.4: * Bug fix: Add in a mutex that was omitted from the previous release.- SQLite 3.8.7.3: * Ensure the cached KeyInfo objects (an internal abstraction not visible to the application) do not go stale when operating in shared cache mode and frequently closing and reopening some database connections while leaving other database connections on the same shared cache open continuously. * Recognize that any column in the right-hand table of a LEFT JOIN can be NULL even if the column has a NOT NULL constraint. Do not apply optimizations that assume the column is never NULL.- SQLite 3.8.7.2: * Enhance the ROLLBACK command so that pending queries are allowed to continue as long as the schema is unchanged. * Bug fix: Make sure that NULL results from OP_Column are fully and completely NULL and do not have the MEM_Ephem bit set. * Bug fix: The %c format in sqlite3_mprintf() is able to handle precisions greater than 70. * Bug fix: Do not automatically remove the DISTINCT keyword from a SELECT that forms the right-hand side of an IN operator since it is necessary if the SELECT also contains a LIMIT.- SQLite 3.8.7.1: * In PRAGMA journal_mode=TRUNCATE mode, call fsync() immediately after truncating the journal file to ensure that the transaction is durable across a power loss. * Fix an assertion fault that can occur when updating the NULL value of a field at the end of a table that was added using ALTER TABLE ADD COLUMN. * Do not attempt to use the strchrnul() function from the standard C library unless the HAVE_STRCHRNULL compile-time option is set. * Fix a couple of problems associated with running an UPDATE or DELETE on a VIEW with a rowid in the WHERE clause.- SQLite 3.8.7 - Performance Enhancements: * Many micro-optimizations result in 20.3% more work for the same number of CPU cycles relative to the previous release. * The sorter can use auxiliary helper threads to increase real- time response. This feature is off by default and may be enabled using the PRAGMA threads command or the SQLITE_DEFAULT_WORKER_THREADS compile-time option. * Enhance the skip-scan optimization so that it is able to skip index terms that occur in the middle of the index, not just as the left-hand side of the index. * Improved optimization of CAST operators. * Various improvements in how the query planner uses sqlite_stat4 information to estimate plan costs. - New Features: * Added new interfaces with 64-bit length parameters: sqlite3_malloc64() sqlite3_realloc64() sqlite3_bind_blob64() sqlite3_result_blob64() sqlite3_bind_text64() sqlite3_result_text64() * Added the new interface sqlite3_msize() that returns the size of a memory allocation obtained from sqlite3_malloc64() and its variants. * Added the SQLITE_LIMIT_WORKER_THREADS option to sqlite3_limit() and PRAGMA threads command for configuring the number of available worker threads. * The spellfix1 extension allows the application to optionally specify the rowid for each INSERT. Added the User Authentication extension. - Bug Fixes: * Fix a bug in the partial index implementation that might result in an incorrect answer if a partial index is used in a subquery or in a view. * Fix a query planner bug that might cause a table to be scanned in the wrong direction (thus reversing the order of output) when a DESC index is used to implement the ORDER BY clause on a query that has an identical GROUP BY clause. * Fix a bug in sqlite3_trace() that was causing it to sometimes fail to print an SQL statement if that statement needed to be re-prepared. * Fix a faulty assert() statement. - Test, Debug, and Analysis Changes: * Show ASCII-art abstract syntax tree diagrams using the ".selecttrace" and ".wheretrace" commands in the command-line shell when compiled with SQLITE_DEBUG, SQLITE_ENABLE_SELECTTRACE, and SQLITE_ENABLE_WHERETRACE. Also provide the sqlite3TreeViewExpr() and sqlite3TreeViewSelect() entry points that can be invoked from with the debugger to show the parse tree when stopped at a breakpoint. * Drop support for SQLITE_ENABLE_TREE_EXPLAIN. The SELECTTRACE mechanism provides more useful diagnostics information. * New options to the command-line shell for configuring auxiliary memory usage: --pagecache, --lookaside, and --scratch.sqlite-devellamb05 15896359403.28.03.28.03.28.0-lp152.3.53.28.0-lp152.3.53.28.0sqlite3.hsqlite3ext.hlibsqlite3.sosqlite3.pc/usr/include//usr/lib64//usr/lib64/pkgconfig/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Leap:15.2/standard/ae7f0190a5406e0f64d24d3031f006c9-sqlite3cpioxz5x86_64-suse-linuxC source, ASCII textpkgconfig filePRs#=d'Z4sqlite3-docutf-81b79443430f0d4381b389ba868c644f8389319647f54f9d18543b7db98b1fd75?7zXZ !t/1] crv(vX0dF[FA0:۔J/ÿc(eeX{d$np2ߪsU耡0Og Xz!%WeL] 8v,wIo$\)&/͟[; "';aC[MFN=hyYkvcV(&jWm=e.-=a^\ۘ_Afd 2rDR ?%AD(r>`;b+l!D]d]Sez^eey'P4,0P ]*c&!qTkMpέ)?`t@ {KP)21Q>V;)R8 K-A), <  P;K#,^_ӄml2"ƅf]^uN1g}Xγ4'1+5nN9 &̔jFW B./!46D{ƻ* yᴃvaA=~s`0IRk>X$#PO'O}?K^L0tdv>7P8]؄z؄2' =rb9{s @{@x[EZIg;ɟ<YDPP6GTQQQ#u)\ w &`z-nSZF( a7 @!7],_sɰCdÝK/E00_\H4b?XJz;z(W6I x7(bNEa[3fI7SWb*ţr}vɽ-~WiG[7g{2Q\-ĊVb'裋 ͼCi1tzqӜ,ixPAf3;q+WI}:fUHeN$AԎ&vP3zF$d)؍v'^÷2OjSX@*[|N9mFtۉT9vVB϶ú$tGG g/၃ :j/͠|Q+QY w*nzE?\8h3zfW`ɰ_Q`: oZԊ0B}69esMWRN> U 9dP w 7Q|ݽox82v֡8qxX~sQ`{J6NTDo6apPىx,zM\ͬ#; AVK4, ' F=Ԙ뒅,d|S¶86(f%ȼ#Q C/iR7Ij' ク˲g{Ռ)F|̺0 Xڔ0Q$ɨ.],A[E(YZQJQzPۃ7Ut񑥽+H>BA _~7x= hWO5QN4!Md\~(+I GhNJr8?&a14||Z523XR9R^UŠ1?F."ϛ[9`nOxO_6&꨸PhqB{\=k1׉o Y"jd`N5"vj΀.$qcdzr=g,#k/g VZv| Z\; fe\l!f%ylpq8[$+16FV<^SOMY;XBo0K ƀhz wU jE"LFS7^'nePz,٪uX| \"/#d#, Q){'T;3/@#7 hWcHbhj{lb"$v;c&ڙWuKK"qӾ:eKιa]ΚwLZKW9}^-qÑ *X@ݹLhKirfHI-Rza  =)A7^̎pԉD҈[l`ϔ:hHRH%mQ=r:'q,(p浙E.UeS$?{ta;x]+xIf }/Jl4[XąiͻoCήHzjߴ>+U~/ {6u,#jR'>Z%k92=vE1 1t> .zD |}l͈7k-${9luj(r q\wn%9\ȳu 85+fVd^;v &t;\]Bkh dFh LM>NqTeߕF 8!6ݩvfz·'pr^cbB|9͉F:tfiܡ҉B\/GӁ}N\dasy3;<}+< *ޥ9hHfUcʼn;dC[2'Y"D|*Yn§j!w?`a )n%fLH̓6os/u2go?:.*G-p|3.Yk6n%>_>z\.Jc%AݚJ^ +gXd"G Ju@Y3iAvw2y0\7j˜R=}2NJ)P佻3_)iLeNT@Q 7eٍR53(Ƙٰ+ Ѳ K১FUlY  @#EَM !&,wTP\Vatk'ituΝFs\xr +4_tyԜ"ݰqlbJmR݂ȋ\fa`.TD4lL'dÕ'i& #~Z2%Z3~Al5YE+TkKCD9d{#X4Hx3@A-"Wg!#5ۺ.8h4ĭes{Q  w((sGqqYghB1'>TVbxAi\6i^CS %ݱ!͑,M,ⳣPxW|ϲh9rIoK|]@Lgs37Cw| q]*ۚ$ bBvT-MTN{,īBE57n-ߞ5ަ,#VdXDާ v&a.ho=Cޠ&1]Ruõ4:1KUCZFQM) aI_EY@z??wtwk:QmaͳaRer| Z/EQA=%Ѩ)t$S<+ߕ1O&_OnՎ*Z!D˙[g4[‡kczZB՜:WL#*?V}A<3ZAV4Bd5EGѲ4 k]{լslL[> kFleR3 >>ʀd')U,4()VW092;S`x"~xs]S#f<օj" B%M#88sY3W&2^V`=St]֤SdϨ<ӡiyK6ڟȾЛf"&ץvR)Xwtz B_aƒ%prJ:Еߌve5>cZ3Uy~YQ}8cj p$iIɼfɉÜ ߊD>"~ƯԫM44+c1IevNb0~X3o|ŽZe{1mc[.Ggl>[UWu(9瘻usOA.BfF̦-Sg}جiY[IO:پAEmh r2ޱ+Imv˹P}Mrk4YԸqro=H}!xE2/M=L6z plgC3ޱ-|ihupXVK ؀ݜ/:nd2q.4yU"n8C8%VĭД \i{_824Duൔw[r-)m^9h~!c9gu/ ̼+(#cܓ^63/Fsj%R̢z)wk:y'ĵ%4 #k{gLkjo'+pd |O"00[8Qדxe0@~o 1}moJh)#= [8jx~ǿrx&#PpK>s:Fitx?`::k*dIUOFj>Ny?8#\g/^Mb~,jg2CDI]eϥ{&5Gu2_8*־.k(TwGksjE{iә)e w[cpK}9On?;aS=|)ˌ#/m2B,$i .g52D"YmOlתei8%X$!OI~0_k3zH ?3I0/`$]hd!.BRg< "{${Bh@>+@zwaYUMy(r3nqɲiP1%ziR=?j.AA7т;xqGDi/ i11师v Stch9BM_(}Ӝkqp lΣS;}-[A[q|r]T6iEjtoVwΎnJH:*K{E`x>>b/FV<d# _P[%D.DԙlZZM6$X :T1&LB?ʍE/}ɁAhCR ؇mʗJe%iyBjmOE;~ ]}'3~4 y6fP] /2as'J(̓u5==S / 5JLi2.;tr 2r9V^Gy@~ I_IdwK QP.>J_.0LEۛpp+FqLu5MYiaE@@G&UQ4{^(!Jc6yR?<ҦOEzz3`=9sPRpTI1[aǜ4~o,O«,(!N1q$LHkW=q+vta ԦN]E؏n/BV 8S{V;[#ÜI4GkF*Fo7ZF1PZe\#ӣj#JOO6UB|Il-3L).EYP=ay4R`Gp!GAmFj*0,9#AZ!}ʋⷄʽhN?@AT1`ҽ`,7+kwKXQݤw|m죉^EwG+U3 HKT |hW#dNNoa 8qS2 ~%(XSQ꒞n$i4Z6{bJO6U$|5UX{ї;qzYV/,N3CZ{:N"NP*}"ŷw Zr") -]N4p91EεR+17_FR K*~17]=*i^yF@d5deoh!46_B~^ FTʂK|{r,(u~Odž9"c#g?PuA:j%%w4jL^rGO(ϏHJAQWuᑿ{s7=6PZpUgH@\_aٿ] Q(pkgw|̋ݰbC4c tTtjԦߘ?Z88y,ey ɥze~3]QlIjlYg7kJ*Ynhl`RV#q4XHӼt/BOo;b9KG hK8.ɕn#o1%GLI( ̋IB'>SFfK֪ #vղrZv`ᕯ}ʋTmq`(M { >cm_\cQm^u kRH'lW}]3,dhr]nD_U{H޾H yj}1Wu3ؽЁe _XS: rJ &IsIeęZЇ]z^-ql]Y?l\121߻I|^aWss,yoړ륒"Y?q Iʇ^jZLkQ :MӐf@iӮ; (ok+A7xᲵr) [˅)B sϯWF9"+; wۍT~g97a1? L>04n{Y]x^P=zsÎ־n 3$ l02[?/E/Ԟ`)|qCw˧zElITTMa1H;`%Ҳ2aRLl\QK]Pms, /`VU(՞L`p9YC{C1@$ilQ\uŐA'b̥˿RǶ7?;w? g:٠J3r"[$+kj!0U_p}*Ur#@f5S4oLJy拖•Y{S7#<$MA+D+,'>\u.$%)0>  Th'$@iHP2 ux7߹aoK =懋,Vg`2JwU*K5nB14w弹&PYcHFô]Di>v`6qVq'yO6'6P{o=7!}$7p]nv <,# 6Oy_ Հ:p\Udx`tFdÉR;\QKvtCH]SNX\W U N C}X<#1`p-5A;0[4Nܾ'IK.…-O cJ&} ~S1fr]012(%~`D ]\S r LxR7~KXorgRe?n- Ѩ|~dC5?ʼR`3yoӣ+W84>Џp4k,̍]hAɬ`a0\a>LeA @eRP)_@ 7dWנ%˨J*IJ{ۢJVk `r#}G"e1$q e4uL}x0Fpɺigץ4Y~-g_2A lv>b9ҹ|QYp"mdg'G3K $MR"i۳R|:1uP E_䘖p^s]dbNk}/]jgh;} )F< E6$rHHClF1Pֲ/OŊ!uy㛒ϱ`t4WR^}ab1bs47n{~/z\3|Ӊ%Vk/:Sakr1)yex۫('>,?`ܛ@ )s_ +XW?PS~7=~ցn#-l:6dxc@6:M3VdmA9v˴:?T a${Gp?b-<A{N;OQZK ni$CPAMf^D3Kp8hut☆)Ba4YݴG 13*lmeaQapn"x4If<ڪL V UUs٤MBijk–",O_薶,ޏV`o1ɼJ[pkUk-{qkEV }~IPkT8K󖶭fؚSgܝncbRGX!7u&qWmnQCn(=^ow*+ hq!2ZEH.p䉞sH<뫝=!8더$c1s_U5$ru<&uM|s;˟!3[?* L(CZOkO}\KI^k|Z$Ł)[vC<'HK)X]YYNIe"Kg&1.z)L@yV/vЌkWpmsxjZ08ß*R&c9Nn9+aL(,%;(u4LW(4K@eӇ(Ϥ@_0f򕠷\yh,G0O4(OhAf=ۧir_XJPVwN2[}Oo$A+;lv>梄J|ށ b#֖j&D0Ew< r#q;ZaB6=Oۭ VgE1í!Ős=56S<^F ~Ѹ%ƶ眥vu@HI- ^ms~@V[6d+ 9髸(3Ah 7&R*10MÍ^Wɂ-,̓ Xvz_/d_a[n`LTm̬RQʦv<|Z9[J>*tPGjQpq/E?1;}WKv%@eG ">C%]B^gZ` xV4yV -PSt͎JO3?-[SUx2%Ň zt $?LcKKj~R/)` 5h%/ =+NJrc.FMm #HGU{)^9KyG3 uwPցuN{_W$1;+l 2 ̤;V3n1ڍ[ި{qIT[n& U O߲WWCKl *t>/`Uuc8 k37s3%Er IWbP}ɨs6lRXIe%Ϊm]@UkuRu]` V cLPTy|MZϞ޷ʖ:lwwB2gQռUJi;9(u OkoapJ\N)ǏDjFgqQzHኃ} 3F@ht;2]AXJ/PƇ}ԘW[X0|rv -n8+x˥30K}pFxh}A1d<UNxBs-oaS43Xnۙnyf,y(?t.*St':k%oi _vIEg_3ǣI!~x3*iUA Ge>+G= *6K9OYk}PAW| Ur<rINp8&Qsru f erާ'3,'Q ,YDs5ȌҾ_A3ʿ {PB@YkyKppz_Pd _ ^5ey2޵홖^YA K`j؎Xr`&84~ĄYx$,f|*^zßûP0}td= ?e)B9 \j0-9VM.$*gP]^aV1;!P{aB.cX_q|IɊa5oDeKMm#ܞL!g'yFq1 u$hmjkA0*0)&jG'v6WG!ܔ |~ I/-[iU&PB 0!vgr#?iGPM :Y4piw4%}Oge&H _6I NUQ,=C˛>d‚@݁ke꽥Yᄿ15_R d8~€=RZ[@f(-5O#>* F4V-@|)bRS t"YlT |W[,ӱut:bɰ:w`@vWVJIA^8|Mf!)pQHmɠTXpyaf< XТ5cd^89@9e)T֠ɑAbRAef)O^pӤè7_KD!#;+tNTQ .N21F6UgN]¸`c@t-GA=zWc996ig^,࣍Z:\xhCN2$yB  5 寷TV]?+\wNNj2!EN>j:^cR"MjF ou:W=|@5'|>IXvG0J}b1]UƙAN:aÓ~i!l:}E*`8w٧9yz0Xu+Qcab@$e}J2|Q@52Ej˧$YWx0ONT@~)(4}zEkIۢ"͗m`z؞֫%C r I'w`4 Ueh ׵be[\ Lp\`a,WKM7֑*wBi4;47!YmsDZS̈́r­}2 %^FC}PB`aຒf`a4.QYhs=TvNS~ngwFfk{pʁq};D-$[\pax%ۙq4bп>y Ϲљɀ_Ob)|eې䊎81o z72/#CNQ]g@~Zw3h2;M%:DǗC\5 P63dfz1i'+Iۃi {/F+_g8: aM&P^ kޢsN_G?l D7[fqq (&9gN7_S͒l5^Z*(L|8NHm}k m~npp%3L?<!3RxBjfL3* 8` R&-zg͉%n"7K9<3O?}AvgX:NNYM c-zk`uR~?mq޼W|ct]ʨRxWceF79fxSiٍb[ s09ƗZ!.lj&c=?!R{2;ǏfX7gY##Ck]PK?2᫩nuAp̲0t?`wRKASW?ClZo 3㣂ܬ1FNXt/հ׭QOۀT<j#bR.$oU1h X >`yyoW+@Th+T7í:fl$ʈE&Kcl1N%<'^iפ"Iug^EkF`ǘ0_iF|'xDYcn]buXTYZBy-uTK$ ]* i|Yav~ Bq>4^_%^lDn_aB8 ntQA߸Qb` nH~*M#܄~$,:OA30TIl%o&; u<N/L}& m޼-sc̟ QÓAYWl,t,Ue`0WaT0yC3 /}]5/ve κ v@H/)4\r|,}[|!@<7PXn L#i}ꠎ1ڡH\/ѷ,Ay }OV|rT<:,M,/d=xws{n /)lDX. ^Cu]جgUѮyf%{p<-%mw_![4S|G$R:%D̿:D3T%u-Ͳ(yp|ϏWǏ>nyURþ#D5ss;˻Sz%쯟޸P&2T&D3+|XJ/MDK&*F>݂b@e0Het 8;CkE"- -WhhL\7މy@KT>|B5zKEb~A1@YKi %z 5ox `[P YW׍ NϺnjNAs9 PEktC[rQ^tVIk Y)HeF/A")M2W_Z+絥Tщ,~EEm) e#G>EZ  Ű1 \QDV:È+t ggJB圀(*YI@ _1:|hH[LKW7H&:ʕyɖ*ʬ: *@0 \G}BSj/ E568]S#fHG̸ qylfO4ni jL;dO/^^}:_P7XKX5D 7ҎM%jt(ӶUxQ Y@(4>!42\8/ 4J LllgXTN,-4fAʄTiZ'MV ̳Uj82V:!~( 5D>~[P!)L^ޠ;ԧ=vۚFiH<4{"6O1inwKzr o%4 [t8O$"V8Bvdy@hp3bZ,Emm n&^etso@' fXZxt{ G:*x&dْo¼n{.A{s>=AiLa /Ձ1GW-dw:buKV`Bxa}\wxVjHY7p7#=AY! yx.zM=[gw=4UGdr=F1/1wd% -5rJW@h*ɡ"]WH^ftzsKc)fj[W y" C;4Ky~B(BEOGXߢgyz9ˀEN,Ai͂eO)-ҬS #U.ERϔl6sv! snV pfaSv}i,' )Tҡ,$.YFu%RW3cZQa`@9}+%K"#Kb0? i|Piw KimTE a"+&p:}=K2vc w_`hc=,jfLo.\'W?P-cuK jYW ,ma ,3jx$o|̒> ځg*Xy}|7_a8ӊA'64kSvt053a :=d1/+jc,m| =﵋!©P&^ɍt -_J]0zQTG(PifɬB=0.,^G @x *F!Ӭ:7PdcOvuJ>[Y:m-3FBbc[Y򅭵~|1#sVfɯoz/)~ﷷQjkiu=aڭz(ats$@Ě 鐥٧~! 걨"dN%6؛x(@PHuȃ&0Br* }O`ΣJU4.ЌYΣpn"edqHlq(Ԟ%{0hTƋ9Z,I=u_B]+rĮ'Ç+)v.,+w\ "RA`eL>>*[p3zޙhq#&XG'Wl@y!vY%L3@l5mN>eZQ%R% %lRٓPfWRNxh=cA TQ„n*9u5O,P}hԦÈD%rML"-f X#= ]Ţ4r f1r(ŕEuq[Jp,o ʣκ{5Li (t\Jb]}pa-iD$H5>£˒"2|ݦwGvY#- 2AH I2OGbe8/L>)H#$sNgżsC}=blWr0 1Z$fOxOM )kTf>mez&ӥHÀ wn:S~Key"3\@D:fuM~!~fT=\, YvF m ]& uT Eo~ݟ4FNLU@z H'$|o=jIys ̫9M)bt_t)`cU8 q8^w$&n؜N҆MBզ-fY BC%a!?M9oUO_$mJ_# s+B.v@V(_8)v`Em`ZVI+Y HMGM(f[fhsHMTq7XBA)CiP+]dAF(1tqAXFV}P?dk69v_~zX>9Bˇ{{l)Y0 #/&aʮ$kL0H4l >p [[̓|<4kAz~dƳdeL:ҐhL.5e݈dcNTmP󙗼)$|A3N'zO6Cn&vX,1fc}>у9T&6Ct 4Tpmp&]jaѤ4PT< ƕ'?̗ ^ l(M;bx=o> zX6F%2VQ$2m%9j_S@TtXѹ,2|S-DSSNVO%t/nZ3bWzw4kXX]@],槉JxdxVHb7HU_ȥmCokDȚ''"OUm UZ!E8_wjYI037 %h|lCJYER,)n}"~_VxaUit+^_t[c罼xoА /PLF,Rx3Ѧ|3aRg'!D^F\F\jL6i1O1,1ۣL3ׯy.ߢ)Ab1>4Lmj!,A8Ѱ{~(YYJ%W0_aP迖Q3Ppo]2:9 "|΄뮊XϠ'Z8B 誳.v~UH<)K،ԪZ (: ,^x3I sTOghtM*.V*L|Zk/q!}WŶ8M0y #ٲ!K/'?Zq5~wglf)ΝIgezBۤZFWa7'0:*0wV#3V`M" etՍeJ㦸z5^ǧHBQ|aK$9}Aَ28" BM vˣkͫZ#`/k0p!EEVOI(Gmp6!#<38 S8<|@? f!e<;c]ȁx:60uZDt|ZBO)+}?TrG8w +" ͑#f8-Sۙ'^y&ݫFgZc'Gk;Ŏn8M8G[ @r(]s" $] 5-1+R6$Hbŏop3B@"lA,{W &1 -y]Mff4R|Ӡ$]eS7Xg`E~10 1^P:Zx_[9w)Ձ#~^cQApJ3zxJFpK@d.~c׏}줟3%v I ụ}J,|E?h슕P;,\6W;g|4}Q+>vSGßE?⬦(_ѪXp`m*S:Ke`c@`N{5 >xY_ӷC~:AKzTJ zTO $%W `%&q6Ӝh )BQ^* NB^Fū#2 g6B0XӰ0 16"ԳCԼGuUG(ҋ.]F{1ӥo``=< )GF2KY T$[M[)?׷'\rFn3 g2 ~͹7:Ft3Bkp超}jv6֯4}3pҹ_ym6^,/qF[شq]\IdlL%l`JPq= KR;|Y3: ;Ywx$TLugQT$aFw8C@k=9-ݔ,c0oչ?l흤UJ 穠pݾ ]Qq"rx@%L\!ITH oW!f].<ϙ$c<ĩQ *GEyƭiyePel:~I;3i@ jT\6 »bqqY22Yp1֌ܾWG c=+ނMyy!,kK!$kQܑHֹA?Ict.d[Ef*<kxP5bD+&KW-P7NYcB JILHf{ 8>׶aFuQjȉ2*LamfaeArHyP9Dm`e8G Gpg?$cC=(tQ#C47O^@kC 8̊@=gԜ>(77{[̲}PpX䮐@Qd=-><:w`2|׾u=t(LU4:B{6sOSN8-OkYA \o>C2hy*wW WPSR%at/_5˿QE o3k* uKN} &R{OZX$ױR:i|I0I$06w\Nk"+? pG A?{MFC<Cv,7-dyGz`VBMΫo/VoT [d48hB `7]d1gRQ+7mվre&t>;w< W_gҾ^H3U;j1ɒau3^gAJ)Ì+)[}+r5S)~;[׳I2şr0.Z!3Y/L+Eˮ%>rnqҸ#7#aG&= =\#}Vhg {K3-s4ā(EFQ3"uЄ(4"†~lF+L&$ST~ goz6X L.Ʃauw#RCCᑮ0#C7ջBEӴw6VMCcJEbm,(̀.Ǭ atf'"VS̠NqIez2g/kiݖha4Fo{?*sr8TYsɠ#׭tbʦb-tzF "鶔daykڬo<{kNx͓):<& Ɯ25(i1pBlLIө Ӳc/ ˙m{$@ N\YrVaJ?qAiaeH;{Αb2N 7*NEМlh@CQ-<xȝ#}ApO0VJ O؅)qJObU-puu^-WJ.U+QcJ*;* QJj0+0Fѹ4@8 8%Oڻd3ljO? J;H'LJH/ 5.}(` GD-kqkDh BjmSVqW\ݳ$ƲLiv);bOW?+/-И^p8M GK QuvG P$/!&\X@_aF×3f<3 P)6WK`{Kdb0WmCQR𠒬 b6"ݟjKU8WSVE86YEHgD7K #@yBv<~s=#?l[|)()l7dbFPGUۑDyvs<^C^jš8SoW\^mtW ,ٛ%ϞDª͐ LsݓlgSzD&K\`}4<T7xmM2EP+N3*=7w:@1[ ͶnMs4''Y}Ӆ[( t)k|iӽgO|=Gk::Ԇz)2_Z<)[ W ff>@MPl}czYUH Q3eywq{I@|&8`΢Mao\{3"iiL _`nɎvJspv@&󰱉} X+_p 4TsNϜahtp=̓T(vcm@?C)K`L5`/HK6Z{#=yltx-)[ rL:Obb.;ٞ cWt1 EH2R/ dl|_82ܐM8/Jȣf}ӄɃ=?1qNH~Jݟ?Ik=FPb [Ǘ{;2h%=%tIgc9ԉc? BrA1Mם*~仯*}c2׋koーKBL=˨':m5.NAV_J*5%?8[TLu]-=)=#kܞ47T4lPNxe]뗶T4h&M]7i7 y uipyo@yS9࣐ݿ-ڌî5lAAsB~] Dh `mtVtQXI6'2j/ ;!ji2=D@l`7mF?125SZ=ʂQFe}S p7|a.b6Y|˓ڮRYzP$#@@!шa !`1-P',f 1!倧Ko3*ʬ<#FxSoxIg>*h$)FEa Vx.p9 W ;]ǿ_Bg"hǂo2ߗ&sÆ:] nnXusR+(gi^nӊEvpϦ#d; pmu(t9_Cn<)< w{}7-l'eE@|>yohE2XFNM8԰NֳbĦzq"ZMDo^J-ؗ r`7k1c J\2+ȵ{#ΪX bGj뭟KO`o0EyNW>NN.#ۈk}pŀY)GO ? /M_B_/.p۫ǭqT(SqvQ{hrF[Dp_v{so7vem 4&%+i'/Ǧd3|׸<{3p竣YHG'AS kxYM F҆iw@bSUlx azH4˓H,S4.(ϡe˛Sꄥd k#}g-M,'ukxR)R3K^m H"lxԂoD6psz 3j[pL"U% >a-:vTZ|wjbMHVKww)>HޟŸ3N҈A{џ?go/6o6w A_|HYF}MKL"c $OK>saTߍ/#j,dP~'XJfaAo}רj#%}& 1n2 RW"U8X9S TwZåWd«?c@@vpIxvU^xAҍttkhaIN'`+avKbI>Ӌ i J^<U}yU hR/g헓[}n);ZM͢c9|}[ØJZCz׳@dWeVO*|=IFm{)՛a%e˧݁aNr}&lPyd?2!z8eCJ9M)g2Kx 9[X [R>cܝ~jU'LC4bBkJe5>C΅;HBܞݜ#c~WHvϠ< f,x #zDݟ WAT/-%søbGa[8c&VhϦYkP7=dѸ8C7`jSÑ^*'Rl6ǥˈ.V>a H vәXoˎIwg+tQg1t̲mAL #}E78 PD䖎]oإ^ uL„TRW%C"XRA}̎)gJ3em2[ YjWoBZ[6gn#mQ.z>OR?u3X$Oc~)S~ϙ=x`yK8zapBk rF,a CfAզ/td#mFS̳i+H7Η#Ї<.>gzjh5>̨o4^rۆ'wO W@ j a7(0\c4!A},U/𓻁ZXVo7[F\y=_MQVJ֡x8nqGEI2` )?CɎeAV֯cUvi(T597 cG8<$+5 [RdP͙L524,^ZjAr+tm1z2SFrze *<7YAGV<, =SeH㓉&lP`pI KEYlszL.Z; m%R9Z"hF'K WFDcSLV3" Nѓ~|ڏ cyGqA*!Uw.0@/eiZ]1I) d FVQ "hjun3b'E"OJڌsd}ġ++2qp|FC-?OUURxf<„ YβiXD™hGicDdv=F+TK!Yg[nmUeSxJl1R"dR\XdBW0tH`Sk\WB|SK@ *~&2x _iķc_D;Q6,P 'F Ig&5^_r(1KklF/4:(K0 pxwSa])p$1!my:TD#=R1[mE{ѹ:c;" S?~3Дm݃H҉g#L`%O8iqZĨH! ~vUlTԼvy:K;wh 1H 3Da![!吉;,?.mެ<7ÌdL¯,q`l#bea#i!2bSɈ$ya9?>mUB U5)զ-KإsEo$t؈J] p}pqr {GFa* BgU͹ lg"|_ W@lRޢXڞq[mz]moJR#PKf*U5;_ CUjs|Jԓھ|VB|U0Β1xƬы0شωfP{ ;o|01rg#]fJS_pP\v3b~AX3`DO%?1 rRJ>Ghh`IjKLIMn2lPp9^H%7(?7ޓ "y}%oJA-cN -a[|*TƋ,LCf">17O>eA_&`_SU OS =G>1S^OPhxWN.j=sn1?uPLđ[aýx`EWEXPPˈyCM IbtQc1?c_zR)/VLkХ8LW2]^,+!p A2&1G^(iOeiCj3ĸ^qzvT;oʪZ܆jpaZgz! ?3"\8]w>v$%1A쬍v2I!1=}띗Y+h۽B'KRoBܭsTq0[l&?`8^˥.h!#NV*E:7*X2jӂx$-Vj$v fn)ӫL5g$nySKq8̢ `ZOq6o^YPja UZ &v?;$!|-zyJ? "07a! {TpUm"!u _5@yb/ubRs0tJhQZE3R\":EuÎWyqM-t{hW<84)(j& :%#-ʬVb9f1`WףQ4Y-pňH9aҠ{cT?VE!Sef[{}-7_D|J՜DhB@}P#[f<au #iH (y l\/l&9;!p*Zx; *s(X;+5;0#dr1ܨ!Fsz580ڬ=gt 1_wÔRlKLZ  X;[,}ū xDh _`UuLnnɝz5?px҇>!& 2c}TMHd x wjGhruڍuɝ 6>{4VS,Oj2Fg ތ" 2|vUoyI_l20 8;))np6$ 8.T!ik%vSκHdK'ۥS]۹ :0>+3yL(Kdx] rm(@{9.;L`{hDz \9ҁ""xQfvNEڤ3U?%j"ha_b<4uJ%V.@HH3`C" ݒ4_m? dyݓ"קw`yNU\x;oOЌ,Ʀ̈Þ/e5ݖ.5MQ3T+ ,CW"/*3dK/AL j tM+e#1c: ՗1_krԸaiId,o,- |侦;v!`f!jZ-?6u-ߜ>~%yU(l{nfJ.6'L^Ca~yuӌ%뤋,i,̱ŁK:Q2,'W {9d Kb6d3[Xj7j5oFnaJ (P ;-Mqsg2Y)ѧ~sBE6p&|ruChM1.YzH;Dy/} lb@N@_^G7PN&R4nxG` -zAI>[xe2[ς>o'WW9 "C`FM PcPh5ʰ^D6~{-MpȖ`hJKh[HxW֪Bσ7 euX...`sLւ*?)Xj%HIrNN'C6QQkپAd=U~LN \ p?:s0A }a=f-iK>ߥwX~a!,ARtSrr[1b?"BѠJz KG߳hJ9k`lԆE?g&6S8}+Ai>Ii?*4!Ǽ$GxE\EP9m77HoaO?^#,8(F&FyYft|(CE 6ٕBO>5{`)c4"ɽ2`F\ 5hNxZOYf{qA\ҌNi2J2pA<Íf*ZsϹr_ }!r|AGE[@E)7;z$+-( B&--vLEyh8[˭9kZ'a%zvum(\vՒ_=VmˀtJsA +=m߶!wyw1p(\!L?yp!R_LfS>²ȩWit(w8ާfiI48r pjM'O{kNpO: YkC ]1;9xYSƗ$ݏ'D{mYGIL(nTY "pCb(+?nK /ʲ|I,"bTؔr~*m i=M*פCD(_Z%͞ DޙM&aXZ[$Gr-c< Sںl8x_~V"{s5rO )ɭXSQ~l%皮*Ow>et+ldpie2܊v5\Ge_:0W'0hA2, /%sF~PC kPR%%NPa3(&G)p?Wxv-MI-#Ie񲆺Hpw 9M\̽OquץO":kUm%Y-,DU6tB=\1B(1}|sQ./ڜ,v#,MN_OBAHed,s:"6ܡ[D OMec%@gPO)N=1*Z2mL苼4%&JfJ:qAPy&`u`{j9RlGb稬\Muȗ*Ζ88ʯ: /e 4ƲW tMH`u*Bxl^ ~GEwv E$S^B6/Mj"n] ·ā}mSd@C/Fx诩hNe,#ߣXv N2K.{azQ(/-A}uT| z֟!v枹3qst+[A\ħh b-#M x}w[zF%Ԫ2SmD\s 1ۚhLÌvt_VIcP8K5;pJwʥѢיüfmCh4E}:%3 O .~~@ ̬ Y(=,U4їYm`"]n,踷}23fi4PzvH s+; L L{sذWactsMFFp((ɒ>dje[G:7lK:I?uvVP)_a5-\:HrMz bDܿ`Q9 wO2AfOB**FR5$-׭_ҺzGkH$7kgC0ńV~u\"^-@EGV5us(­Ug%h;@R껉!jW/372RpfAz]^Ač+_hszPvD3/QsV\J9sKGİhk슌?46{B'&d+?@My*K2 !|8^ bE@ADžbϘm޽U >(A滮[Euc*1|.;~Tœ΃f1Ht ñcZߒ/ VKa-ouK8ٻիZT$3ͅ䡱D{6[y8UB )3(})Ud³W"8S/Kf})qXP}33krcД>D&'j ^ToL,_~~mWLsɹ`0nFZZ Ss53ݤl*2c!i[{Rw+:R/9 t8 D·dv^ #Nf߶0{.\ l2UL~EӶh\6>8GTY2x6=t 6nFHZ4.ƪ1{ї*B2u.+H,t+rZ[z37p|u|S&+:쵤X.. {$DqH {%\W#π,m^7AGV'cFn*.sOAk1рy7QT9}""LX4y+.]1qKT$F(})y{<s*hN->Nٵh!ͭ[PV)J]~l8+@$L`}iSg ʮPg,}i/yܮh&DXdIԉF/N1I-`KPqCԥd7hE݇P\)տH^'CnM8^DO9q|o(l@7'W~;*bkgIwڔʥ;OLK*Êz}}c⢩Eq#AWT,vJS% `̅ i9=2UHnuHC1F=֦6hb dPrpAJ:!}7p'GfeD^ܹh](>ڕ_-)mWWj5w6lhIY$ h"ys/—h5UPzCꑮgTu"-1}rك8wDP]n!)ڍ0*]hʳ<@]JR߫T:_֖u`MS&A6Kb"'ț ){yM,1r2N-CSۨ0ʌuS|.~&:q`WTf55]=fĦ1 .F;q^Ƈ3ӡ^ȇΌ8UIs'I/;_<2[yN\VLtQ^`gX 5?PzDѹrw՜&IVc%*?PÄyi:2ۻ$s]R}]OB=O{.u wN Y*,=x[Ns^tySË{flɪP-5댦 +%%(cG20s:&-*59NM 8T'\0.+n dBoh ;gcN^^A.F8J)DL/5:B9Vi*BchYAwSz?7@ =`٧Fg0@ K%_)cµ#}| m[HM%T6",f2)El )c wy iraQu,ȭVU?eyWh͖M~LnB_&z 8;=UrViv!ZJTӛ6w0/+;,#`lfC5fè.\t+bZUtUz+ggNE,|J9"[XrLdĕ(}rd\et GBd, 9_{%h1[=|p =Խ5ۘsRc$QIjr;?b1vm$6jx][ݗߝuBFCE[؉:n|n0 $+ASͫȶBVȃB>5*;YsçM}(' a#~KR1E_'sS?ymV0fX>#wӈrĨ ǂeo]Ot"FϱxDnpϧ1]v-6*Jv[ 38 ;ɬpsEp4Kli<#2I3oS݅ov?.N@O4npuݚreIlݔާy66g*mvf)aw2bkSBV\ >MJkA(2J/GNn8S]AyTw3˒ZCnY}k5ɛeU`0Zͻ =Y;*.. TYӇFe|)0ӈF_a^f9 :B$:ѩzP%%&L"99D 3 #ۦϝ#UhcRW"ޖ! %ڍLꂑF k'< {Gj ]J, B%$'sS;ZKt`!DA28F2[Yul$ƃ8tc^=VQI%Wt =:օݰV٦w0E!YǠtm<2#ESGd GSujYv0*&xTfQOlחj_2o+d@33o}x["cxV 7A\5sug h~@W7Zp*m|&:>zQ.&B 1ũbBUahѣk OTO0!hAϳlpgZϫ[wEo멞MdGk cɶMC$ypayOn⸘%Ad㐠ł4CXg=l`7VtB}<5@W~kV"j@,޽S7ruq%"`>0`POl Kq e^٥_|zE>:*{H6ATOk~ ]xZB79M猧HN-ڲy_jæ|r?9L,^M%uT̍6hwpxNxZWҙ n|$4k'UqxE{$zmŊM:1eUc;M]yJ xQմ5$ 3v0 +p&cM=$Uq P'a '=E)u9Gi~ "<3o/I Q-d~{$ .ZqƮ_+3sAPt("E+ v.ஞJo c—zXgh0,LRƉ*4墮?l=E%kхo8!!R%Q[f-}&؟*O:ʄeӊ xD0,e?> ̈́oX@h 'gJbqV/{IVaҰݜ~Gd[S)2i~'t\6C `Wzt3#q <$Ya"폎7Lr:I%Kye&C /ؒǪ(;I!]%"$~CA,26zdvyMdCJCMӜ{-nmgnh_ejLѳXQRM2?qMqRd78&xT]F)%r #_=)p?ޙCw*U.߬[4`ē'>{~dFs%T! y4(~HJ(dIxN7Y3j M {AwV9=GWh~x]t52D\:l1bH%F_g١r}Ar`<.D8@Xyf'?ŞzQj@Ҍ}ˁ]9n(i_CX#J$V; hB#TR:Hz "wStP ȩ0 ZZA'u[er1\{ـGFWqwJFCcc o6aE[@I;Nr߾Al`'fgBdUJ2-䊁Vg#O KJb==e3cސ1O"\*LVT(^p2ͦ9e 3 >Ss2=w!,v{NTow|@7χ.urxqMUDAel-/H~w^aUj}2V!-oxذAh~<6FD%gf+xb-߸14fTvgxx73_^yЏrk\^:KT0 C%!@ear{^vؼgsc86D5NRW|ע6'tDX #WӶDOI^Azi,Q5j#bs 8a%kID NŚ{1Ư K*7"ܱEa+o bzZxt/sJ\"P(PDkCqw\ Gš$MwD| "I4w ?\";+,Q;z6X ~B7Kz&;:9i _tud80K@d5A $Wp)օ=D_iLS/}b{pgY$CVv r ҎsmI&=',,NEd?y(17#Y4+B Oc?;<16︩mt)t6DlGPܔǻ!]Db# |&~gJ,9&7|!.r(b[]p(88IP+W ͡OL">Ȳ7+ȾR%aL2AH04{ZX9oyd5];%;WT>7`I;fy 6ϑVX[j2\M7t C4YS,YP3݉q1p O,x (^Oڬ4kwؠ _*ITr̽ j)"yxxNO*Vݒ^%}!3#gJ7v~ND`k.5)EKש^@уGW4gC@2Ή {.GEܢ \ B||]RmqQ/K MshؾZHieffeH(T\&iN,{s2gsΏzS'Td_R7P˹߁\wA a]-Iep@."n4"&i:/g Q.r a,qjeGS\eT3tSvF$w e>Ǒ '')"j9bDziпnH(_Tضt'0?g^`U4 sſ"i'|"Y0|I$G\)h*EtLҰ8 qQ~IyD$X2ȵ }~cly!_wͯ<3hc*̓J4 9#uN75U]0 o{<}WenƜ^|uaЀɻ!2w g17˺ Āc#>*  Ĭ>$HA(fz6%@mDէpCܟoݝqp~hfɇѐ#v5l7cL@S $#˕1Z硡tΔ4i=P#P@*ccJdM2JjwLKykOnAco5Ġ$wޑI\E\{H{A% ɯKIin!p+y/"|E U E|xnm{sJ{>y9J8)PE78i>UXׁWiE\c"fT ,0^istϵ>U[' &,ew\9t l  @jgw։C[Aa#:>sQ֖\jP=QGjP O0թ`\U?]ʟWEk$Uf@bzR,S]Kؕ)U+Ud>2L|DobrDUԴa/{TGwأG{? .aeCTH0F..w[">R>…TUj;Klr np̭>PEvV]p^ sљʀYoX-83;}ATNa;y@چq }t5FJk9>:'ӿ~Z(_hhQi*(E_/]S%u$KM"<$xR_lĉ)H,m{rg6 .ƤRd8d*йw}!TQ%WLd5`ˣ9"]gnsL05?߬ ek1|bـ!mk#zm~CdgϾ8O)zȕ `U g^oi">{d/!۩_֮€8~ɼ#K1vI\2[t^Trn>=XU6ֲΞ 1u0lsP(E&<06ښ,fYҼb(ux>IC, 2LUL,.dP7hMtiSO3Rb6nT]-;tNM<8S FEFc [ ݣ!>ceg`0Lmrhz_/!Cb8}9ՠ=ЛNܣtK9fi+,>ޓYD4gt&>O>LG.])ݧ˝bvD=Xj !Lf|?˳aaf\&9a뒯?VKrV9> ?Md,{'{1ꨪN.xV',7k+Ciqq*wj1dt M9BnFv8Qlw^nÂV}Ei'NuJ`J~VԷg7td[b t{w#B n48gԚBiE*Y;Y$ٱ#ӝjnR+ eTv, /t(z|$mv1m9 ,֬OG3bȘhݣGc|xdHۭȏ4gio%R|xLMVo1⊢1fgT+/-'yT؇ dmQqM҇%_F!!FM=C PFmV m%5uf׃K%[z(Ծ/Z4Z$# 5 ؑ(=fl,U`7h{fѻvT([Ge"^8MڂZnrѧx>i嗗ݤ4C:"QI  >JmXBd`,w *R;0_#QV4uxLQns~%Zp/M4 kY4hqaC>u*iulGI3=)r.=ǧXǮrS ~FI!N#ʰ& f/RVgʃl7>zc睂"-֮twA gh ߸֟Gc7bRnJPA]otVCKH!X OzZmlGCPSE8(3ɘi}{T!?O•풋,EFA-춿@/t Nɔ4ٯ̷׮!<õ ڃ;*m#({Xχ!3v*/$euDyH\6^'Tnv`^d^:Q\7 bH4. rkVꨑU:P㏆Af篯tM63z{#~4F rXm ǘF8,ؤ9,_q3c i4miXܶi4׵4Xc>6eczC0t:"C>'rܸr4fŝf҉8>^D19z)M#RTfSLea?v/)Y8A9Jᴜ]VGQ +PAȖA?8A޸ԆG~0|_R]"e>0mohqV/$x>|Ԝ>͎:;-;B2U\ơ4r66zZ % mQQ+du8h eI:ȭt'Ny[Ő$irzeqȝ3@U h,Էdn#IUd1@vW!^?* o* w,7( |j=ĕ!"LX _Si_r`hL_o6#cw# 4PlY\/w>3h~5gw+p_T]0ܽ6Tq?<+x"B&qE*9cN<%i=wmWvA[wGC''qm/ '2̓`lZ^i#((v6 &MYy"lR+yxTƘG t?%V~Ό&!*JzVhG!~ʸV^RpW]50ުp{#Te:֎lʌp[NeR)HlX|=$S¢V⯃V6-zI&ńvٓ!q]PDB^iz{خR7) j}+!(k'Jߦ>y #J,jSȲxJӵ{kD SLuˎic]Y7m˂De!J̦ceK"ի"tE tJcjkOH6 \S1q1W1ޅ?E;[%~,SЯ!*a86/6GXVC"@ 5rxОlKQe1R5=\$w[VDҽ"~d-&gBl[uPێ~.?[Eu dd)E陰Mw^? iz0CuJ3Jd+*Qm@{x]2v2M Mo N]D.%@gk 'Z&QDA{H"!a\SIy\՛? Y$M0׈7=*NF{0&AJ`pا*O^YD We`-gJzȺ-sl^-S䋚0 #yZ-zHݘaiJ d` uCv2NZ '_}>^d.ӧ|v )u!/Z p3hDbF`w Ժy%oGEr2n()=zj.uOM"/tzzt Pn@:F7eŗoΎQz2Y]W!/LSALIVs9 s~^ w;i^lѓB;D+^Uٷm7m-kIu1y sfϹ. &CTBɇ7gXJi۲.cP +rhJH9 q@܌SHl% OPԟ|^mPm2j&J%2ħQ3N'Z>Z[dKHAnS-޳Y2z<]:}<#-pzc&oDOEgl&=l98Ot_ fxtx]eoӫOC"<5־+-FYuw_Y:,N<)QV1 %lPzZA-KK-+N;mwz)a\R\J|k <r[jFP(4Ҵ;^3U8R(f Bwzvx|FcY*D;Lj|[B,T kOu[:?/!vԈ}OQ9T9tG138ʗ˺+~XQu=( %iX Y%"jcDB,<ݦcnN{ג:DjzhZ'8#R_ 472؟}s Ÿ2+;Z;h\5qѾDC(ՒHi2RϮR+GӨ{k嘥i|b5JſD 5R\oIࢵ κTT Bjy}Ҟ.ˀ^*AAxh!$gES`II 2lo% G CɟOaojWC= /ߧcM|YG^S+{@}|%'ܞ4ݥJ'`PVZH{ ̞feI["RG1'%r'TA>J)hkd_? 籲qG\uٸ\CBkYbV7o5c-ʄ!1w2fm]G)Fk2vqF)r.7)<"Q;5V"3rkz]"B"6m9Y>4V%(]PX ڬ8lrDi7/ }8Ԯ uAHkySLkߥ'Ņ YjCR]`Va:>pD䚟J~`CʑDY}gQ 2JD}B M'JI`U)(.F(q<#Kv^%/;N 8~"H}V 8^}kf\\U=~vl~H~*nj6BdQ-yغٮ)p>ݪ=@Dkm") ƜQM߶.wHk0LN^NM.^darpV&ՓӔ-Tuѻ \Sb!ǽ[eFg/<ؘe{a;#,ſ| jtN!l%Euu52 ɭ%9 f'ҟ ==U^TI) 8^#֨"/c{'N3;K;T4Ov`H+UT١ MTyUpkD>f o#P!0yмpOw ] znw}9uRڱq]q+KLDCCV@o`^C57jZ\*%G/^1iX*HKMe5u-D7SU FBʣ刊}tU|tVxr E/x;2]t® m b: {Pf48Z6z0w4D-ҙA^};ʡN̚8ѵSͼp9n#-B*)7rXU=vhq/V"gl_*S oH7gc8$k:VٶrRp9Ķ=%c$g3exd".XZ@bp žLF0]a7<q39ƈ=JI 04_m2-a_e}^Gsƕ2b`vIlP,v;kAf |βns+tB ̕ T0<.0UReBJ,ap0i&pABG [@~*tEhʡrMH1& ߼+km!!0p^^'s'Bf.MA+E{sWflGSw HQ]a!M_-B4=R"ͱ$T8AB~4Ae7tAuvc%fKF^_LI^&1V= 9@DqmJ{+aorU1le~ ,0 ;S1N  5R`dFo60r0VlU=5,W^ʑ39@vm?N=N"A >KcԚL5Iy~h Uoh /q֨`iOŅOm68 " "eRA?" @<U'-=bSy4)XxYdZ'=SjLY.[]$/WV;Ӂi T~ NJ` ؞9H_j\)vY;yv3^I7Ln763 |!t( %lsD"jVZ- Hf U.$;,r8UK4WQGLumtxUnAl+gh+#|B KBPө(كre\]~1ڐ[Ayv W^r|`C ;zqHuSJ*c(}Uω8k &l-#uV[L72IbV24BF>ԭlH]1]_5с'eith'2XAv?9p02o3Q2/jX AAZs![fޛnlOwcE|@9*+tg@*·zm(ͧ0$W[=|uA U-Τ@ؽ,o6!ڲgb/Ə2Q S/w<'ryzJP.`{CC=S\t Ln˾8rWn×D;nsti۵!WQz9"T }I&/Cq;$X*S!M2"v2KHE8Z #vz-),_D%.!k;>Rtt Z=0hH_s|-QvyH)ʜOĠ& mpK"꤅]:B<w^ {7IJ̉2JPlZW_ d!θ{Qgw tF'FĥIRcB7jl{tK4UpRUg0x) /-3Q%QٺIB) ["@㾔^5L*!j$Ė2 un4+cl(J\u[GF"oNIӒ5.[.s?_!gkSSKT rǘۄP舋YmGpHfsgί(gTtR4"зMAW0o!bVQ"ekSӺj9.i!Q[Χ]ņD|~c<$6 I㧂A΋I;hmqin+ں4)D\hD$]0gnj_Ba>vq3޾"X]+Yj^9zR!5Z}r^0L)bXޥ1 8bD2Qϴ{JX'c+…}@hBZBmEV5%؜xHL_NP$D DTfn:n3u}? -%EHm\xAѦNEÝ($QڡF뉛ȳfg[~,p:i5:՗)Z]٩dGAIFo*;B;CE>,cg־"v MX(g{K_/ [\Q?Qf!"v\Oyvs[kw)_ yWMYVsAޠ8^vι\4e~.V̧߮Z䒎c_SM"2!؉uD^uN{%u`\ey>)7~L)!231q5#xX.mII- ZMZ|RE{-ّn42  tS&Y~edS\y}rm6 :uwqg{#=^R"G;Un}P*dAU]ؚq41tϨ2K5?QK^k*vwWjqzCdWDϭ{.Dwp[ո-bUGt22ى}od4xLI_N٠8dә 8Q%=Qv:B8;L‹Erc ymHm66C@ޙvl;20L Y}RfGQOY?pgfFףenS0KdaO@f {Zq\0Pli]K2p#qW*_BF}Vh0˚WVr?_R8?s)wq R nۼ+id}q%3 :-~q2#&c-3a2ј\sfU$GoC-dl*\miKsޮt5#n+$Cu-_h.Νr֬`~HM/*lK&mmjǡMS5*ײVs e3VtN#R%mݜI9;=^zw :iz,ێ޶cX^5GB;С-džu`PYՔA(IqNM̿"&k=KJMW B#}}spCC{*c'Ex98 ;#M[?nb%gϭ~4R1 3'@*qV8K} >yt9ZbWg'uSaTFa23%1{"RgDr>À*#Z#hI 8q]I8]@{}F*3&$bJ>[`{^!s $ 8wgjt *cdt5c|о5]nگUj4hSz' )Z oc܍ An ɽtZbl`M f{Ɉqf@[܎/-wgu؈Vky2 L?+?NE'm3)`oW{imhc /֞MGX2,7K 73O+]Lb+~;vU.LdjxPjIť6;tV LK~(|nf@` zXݦ0@s'Ol2s,,G"7ެ$]dzIѫk[ )s7u')g&V(q[ X#Ab򽁫"ąT\,Z6NK^ȡ! aQ:iBq5/c2;3+W;d XR{$sJ(A!EOW|t&8^4HrQOw8ӈl1$d˺/]LsP#|8sQ/RމUYq!#6f?5YW|:MIk*:UƠ{L~&R  !B=#8k'H-I<ֳB\Y섇J=QamU>Ĉ PBRhR Հ9.l.8ski0I:u׭ٍLeZ>Cuf1|!1hg4kK@gE6m Q wPؠ&K\vqr 2[!Tq0ZqPc(qvW,Y~}LVx8sڞ1$?2/;Ca dbTNG7iՅxRĵȝEBƇ/kE}ߞ:1Q/`9OqDf`:˃J^XGW%SوFt\628b @ϕ';\7mR<99~\NH/rS!EppdTb;k@JqՏxbOzcKqߣdTs%Jk851u,ڽfȻO(kׅwfOA6E-_PnX,;qh2nd+on k+܍Ysr2^Ae8C@7<ϯ̤/[$ݰbSۘBN5fO2F#8I猁GM}nZ (ۇnZ c-NYdD ޓA+na\T!Xf~$" '%.oT Įm%#`dߙï m(ވ r+%{YF%t(~a?d?EdJu9I @9s@o4,ZqJӀkNZUl3dy# *2ȲE[8L5v98 aP]j6=ZǢ6|Cf5bJX/@d*Hdj̍h0C%>kZ4<!R*\eSA1c=$< 8˹WG1̦tkHih$\˾Sͥŧ 6 _)jz0B_qY֫ "AXQJJ8S7V(w^ܠ4dJvvp=I 2d er 9>m9r^f^5a5ޯ!#5_ I%f*7엔E$,ċ<*bp %v\V9?dW+Ia!3v.(0MPZ9fV^セ;bbJJ+4}kLNo]xV%>T0Df țX=|ZT=LgJR @vA(P*K!ܪuuܗh#]$Y *Urˢo)wc4x!G$:C|p8bT]cX: <_6WNo~V1źTnUUŘ] i?eyp+D*!mZ%9eAo!g giYKԲpHaFuD⸢>]<_M ˶ʜAs,_STcYs#(K% \%ZXsQ Q-fo`0r[ƁoS^MxDCM:ĩ#OKD̍lcEgPpMe_~-/5IԱQoćf. Hn%P+Zq6^׬Shו}ʜ7ɢ K PB\tωThBw3JMŃE*[@-n5P3__ $ƹh)ǬeYxAY [J?Apa/ˆGX0-m %|tsX_Rh)NAN]SeHqϬ И 'H2jԡ kԳZo%ŝ6eQԯ(\O4`W-1Ϊ{-b>1+p)Z.Z!k$~Cn ntv\SH=6)Zy:{bnȮ\,VD,heou]\_Ie@]7X͠"gȮ7B|DN(z_|&б+I8Nh 0(uJ4>j~wSl!pCF뒧Jj>v0B,`{@M`H˟(uDj!~FFbQY7]ևW4x3 }IA4Mбkp,oDjROj 5_1TMfVnS>lWBd4~NL6&)(]^0OFC@%:)'W[UE] N&_XWG ըP [H $-$Wgq *]w>`zWy[,Ǻʒ{ZgK"'I=Dtk҆,DKL`Ʈ~ ֧ZhX CH6-it=lMmn!W;vLS䉀δ33tƘ JF?$&J5Z_UJi:1-JJWϪT;эK@ IC 2Unl+Mbɮ+*Rf^J>z}Yt,$>, 73U'2٦vHO֌w=>0~T ؒm^Nطr|ίl`WL4SZduEh(ݼdCS qi;RjA5sD&aZr;yGD V:oeU_AQZ4. )鮁3(4tTGI¢i *c{.lA~t: ݖ#T/À_kqG PuVK1yRaO`8(#}CAuoFE\)RjI]{UN$&6۸Dk+{6Mg0]'}CaXRkk(J0RP~yKF=pD.Hw}zNc~ؾSr5GdWzciH:F 5՚ӥ"LORI}oݵfͪЄ!d (Ջ `V6nه/#l…Cvj!D#]=x'AԜ{Nisn })d~zK  &Anbg8zibV9g:=ʪ&ʋ. 刨OHA.?1\XPX_ ?|zmn3Ӂ2X42Iy5pM0e'c ͍X[Te{qu4ugC֤WMj_.QQ)4rp&@elc+cĢ,lؙܸBի8"U!sXdY6q4NX5 ƼJejUoKY̯`'Ђ1=>8BR'%)kM>O*,X9#oiʏ>CtyX6aKBYb|elhΗ b ,8KXgY0`X9Ҹ+؉e[_lϥ]%3tj'bxy7aÎLnAe̱C}F4,Co &O4FN{" F»H[)psM8ޔ'~ i@@]U䕾}{_4+\J8 ۥ#N* '3ymT63FݗPX# #?&%%ژ*Mj#rjyvxd._Kp(OQbf[:. ݘmuJҹQ\M<f1ײqP&&,ZА 1T} }zU&H¼auhLM$˸?bSRZlU X'z8~ʟڇ0S_ĶkN!oҼ.@}6oӖ_-%aA@ko\ nB [/e8XeGileQ;xݩ~QCKhФsʡjKS=[m_ٝSu+(ۍw (A;ƛSA).jZnN#RC ^kDxR'1f@E>KgeBK\t.$tD{= >UDۘR]7N)1Gس@ķ |(],Cg8"G7(1~6w'NBN~}^)vOZPIdPNKP:'Qr2e%Ms5T-na5s xLW%c=o,/<(XSe)t:Pw7gO>[$D<}O`xÞJ6h?_%s`g8y*Έ[A sA5df*n,XX#C;趍q ofkUg4F Wᄤ۬\f))@'UNqO}sð#E|$8ݻq-WF #^g~1>Bηa+U HS)WQ4ؔrß*.:*cxy 7I"7'=&/!|܃:,K rXX b ]%r*DF=%zrG9-9z}W b.Y'u*GaRGNKg RXOK a)hҷu(hDQ٢$jdž3R v|ʾJ.Bd:D_[׼F[iɞ[IAZ=f$w.ySmD}@"$CFvϡ`R┌.̢0Rw/Y""7)$/b;)5N(VZFl z!zW wGJv5Q埃̾=w(tjB&ػ>:?BIz \[{) >'Ug h?ovP9FF+.n۠|cUOmU>yE' N4߳3cqNV3h1@opdͨ 1q.,EUPiTmd]ܐv{-f>J&%9PRd #\i >73xQջQ*Gy,q/J cEAhTC7bxFH/fj ;]qP2]`Y"u"| F[%f~Q0 ReԒ%ĭoh|a#찣lHm yXU?7>@LNb",ĈDW"[gfp~دldJjϓı:0lz ޚQ?>ܿ[H;aYlhmzM&|[^d6;ܴ ˿6 5]>u\P?D#pGk fiOe\6,%yL-L?Fey/}bM];r{іSrdqҳ p$Vnb0'W[sbm\ҏ;&ԧ(]Њ!D]\)䳌Itܻ\"/B4c]J XrӰAܯDM*HթA +0LbzTt4TDyNŐeZdT+L, t~DFQSvs1sƁc׺Ҷqu謸z5Bf^)o[ ^|̮XGEUz~Il9ˈ 0q5o?ŶkdVtL3N4;KGC ,p^ՃnZ$Ѕ@L)uivgG'PP w*FOΛo$ Vt^kBxmW.RJ)'*+~@~ jġZ^d[0YGtbki(Ώ sAxYeП+#7nm6 Z CR B,p ~;GT ϒ~9'HⓀs$A2[St#Q"k7 K?l'¤WV lu_P=dzwtX9R{^fT0ɦC?6;Y(< CK$0Nb!i8N-_tԊ cpbŀLˊiC8.C i˿4@gK`q-Wi,ș>^NH;SS, £ڀ6Kk`>|xx fb!EA҉(A ;+ S` mMd3ݕaz>|f:]'ζ*_(v bub$Ru^OPowJQU.b>XwþlPHZr!KPͭo,]]LZ S_@d$"#V{ mÿ/E pQUvHzDRi2%Ωu.UB;i $1渰9R3ˬ~S7K uas W=f6oIM5:x%N91YLsKqC ܄i9];&S˵) *Z@J&䴃NKqv ׻wZ ?9xl)&g ZNt\2AK︣9I||k+AdUI(u#PBsJ * \lW'&\H͍-ދgh6tȃ<]$~Νlu<|÷_ TS%F e@CHBKq.O?vLZn07fnGXӜ i"댠XvaJB[\B79iPuHə`#}]dZ ג1G6U3x枳ZV/)w-t*ђJZfSY*ѪZ :WV0t5u<@jdkYqU~ N&;#dK\6nU^qA̚fH7(ίํXBi2}=FsUC7:z坪a־5g,Iƾ5}?8FbCߪ[ɬc+jYƍhHN: kT JoLW9+D7S 칍s:/Q)4&|'1U7۩g:՜p#&#׬kc̳VG3nK2hOlE<##%AU-0ff#vĘg7<"r+)J ӂH%[55>Wg^_FŪx֟)[:@zNNIQ iFb.*GFWY3:.B QYum<ImTWrn֟Ǔ/WͺK&87Xz轘 Җ#27ä Ds/x!}EK`N=~'ș :w8{]0w@Y\J~"Pcp-f+gQ9Vo*"@b ߊ&jtDPƖG|]s(չ}SdfSٔu'V.'0s)εBt/lER3_ 5<}Ҭ|oٟV*Rq/Uq_y0CKGׂx4&:/Z?&eq;p H3B!`{(ϧVť RQ>:hp;c_Zzy&s,aM(b;ʾtl :Q1f%˞TFŝG&A1*2}PI@D8mIۉQ'̶(|'J>:FBvoM`̵[6MQv|çkp3Y$`׽85 rFu9rb\#OQk/{7e0W|̏E$G^wcb-`YmdysR;GoPawʹ8qREd$~ 2.sNɻ/QSo!E}3@ hW{HJ!1j4@#|՝%+R)4ٵp2ݯ5~1eH =!hIS0TD&4Mn2:?{ w*|1܍cܶX\׏R'^mr~8#snV|ZK BnrT r zrj :^RNl& on./ch\ ghqRtfmLg_7F$ՔѩxpN?67¢7d e6 IW<~^3䑈֏c=G8l]@sSN7;bQ|-u95˺Lcժ,OЮY+ Q7L}nˋ+7^cH[U[6s_Hw(yu*2*.}&+[7hnvوx%TDb1[4\idF)qorC U{Q`ĪVĮ."njߤߏP#CDtB&A;"6e9~ VTxH@bJ<`DX{c9Q `9KP5\3-:C# 4צ[^qLǫqpjϮiV6[i8Rl4}u_Y1)W^EE}g-T7H_\> 9ʬom9'i&|c#+%sQy) `zՉ^\RzcJOCPR do{w@6 jH% {?߷ _"YLUyAW(P(GQ0Z"zٻ~B(Ai{FҘ{͜2kLü @kΖSODp%|(yF3k\tS QIi֟2eg"J$z Ocsu,V8_82gY}y.B7$z,or$Y5s&$)zvq >/#v} <2шzlmX]vxy~kC9Y-C ˅>ܴ%&Do˖A :'hyJC+:(Oe7Gnْ&kDF94yVޅ 2؂UoZ@βcu">}p~xJᄃV]KM7w)aDHкų %@mK oF WN'S[)h$vt Cń$}۫ϼڼ# f˳bGsSHt|2jλ'Ψ~tEm|4>^Vp`}m~z) țP.$OB${.HxKG|.zYgrA-i d}}Py>Oa!}-Mhf<w9> )qDoJ 6g֊dj//i5٥h`TV..gGYvyj;c<<5oh|f&>2=yL$oDJ;0^@Cܻf07.LJf:=4lhǢh\*!j_Z크K&0*9%,;?Jgi^X\Z ǀan<ԍ%C+[))d}^y8vƞ HDN/ ҇T+ )Y|R[kr[y+:e㷪J; Ӛm YӅV_ލ'@-]Qɇ1У6Ż|^+V,u_ 6*ȳ&4f+WBNǿzTw3_[gdӘF TY  #3g3"P}zPB̮#%%&9މ)(]$ic}yHujS-7HEchPˈ,؏fn _Dò()]-lYگJN9m ;-ij2b9k:x;P P"b]XYB0"и44PX6o.tui#_0oT~#NeﺹZv N_-r}Y+?/S2X P $=3d.u I }3SY[`͘BJS@ cSJ?ҺR!P hȚҥb-&^e_dӒhAY:3#_xl VeZrx13CIl>W0h kKYg`& Qȩ !/fy vuM9[.="+d%`i.ˏI`pxɔQ h_!0#jKM}s!Kx_ܼS/~Wи)|Y[f:P%Yu =Tw<6H4%|OCZ-c wv(i }#tLNu>{H$9.^+ >E/BqhD9M-o{&B2~$FzdL[{o=SnHJzmfNO2~f=}AkckrbI(80ڿ)~E>!! in@lx(6b E0E<7"૎] jʆAa%3 NMBF>~׆MwM| us6.';u%P޷6p5F30loHcAݱ!i9(ǰ.LjA>fFR[W`!$kY|R=%I]Jı gnEX%̿fِeuyG JJ",Dpߜ; !.h\ h_VgmBhd/."ևQ b(H)tFo[gTtX95J˫=yfMw;>6Eg6HX;}]%gD]'<46vFM%9@?z^%rNoWt/?)źT0nTρyBѳV+?=2jLP۷),SIe#J+jb}j1ԕ5YZt,`S:?lZ`G6oRVh1|P2FuD#`ӀȽDuCb5si2L4GrsH;cmD%Bw)0zF_pLzhŻ-©'VÆ\ᵷ)t{7 gi{J2 E,o$na {4m@ՕktlAhb/W&X=[YNBkK}\ܠgѧaU+Q~7h8f֍yee.vs/"Z9ar GuK0c I.Nn$gYPJϰUĚ R B8^ObU I˼BtV|% d#֊ŅLbT9w'Gh!޽J'8purM9ub8|Uw%z8s *DDwJ#+ %^j,Fx-~Z{0.IEWs5)YBؿq[H '"2a9ѸE!Ɨ@TyY^£:fwz?(5"t@l3*kV4^DKEE9а{H y!gD/Æ7(4Xoeǰ Ң(ғQ+/ϓKy5Y/ %t5} POi(~Z?_r3Fm2uZ2uSCII @K[#ub(+ONdPYFHl)$NK6V$xk#Z~sۺ11iY`7xre|bÚ7[߫)KtZ)q8' Zrb&!6!/eO#y%*@mRKB|5HEe`Tk).`Nugpn}5dK +2/>hDtAPK/~sjuy^SuF`u!$$SI }x|?NiX (6#2%CbDtS"B5P)Y)I ޏ G8]l.s58N=60.E=UO_/2JÌ ){cj(;v>A6gǤ$ߐZ{Kޡ/og_($j_^7XksPJ>uE%U\? Cjޱu\}O8gMDU :xֹ`6~W AU$vK5TFP}JFzL~gO~{+2E0}q| >IdB=)H`K_; {[lEBmr,PPO٢gԱҀfk{e)zʃ"_!ou(yGZi.fzsO1rLG J{;\Bzۓ5i:D*_ 5k9|ƪ~CaZCr;5J/B#5du'Q7؝?'Tt]7!%:^'AǛ45=)1D(m4+M?̬snsj'7At݈['gj-MCii"_Ԋlf@R)^ {8VVh4)L-wH0 d4Ex1R{;d؁uEYAv5)pMo-aܲآI~E Ӣzg}!eSZ"USR)&\ےtEʆlfn3Uu\yZO().GU*vrZlGy'΁  &1?u"͹Ju_ͷ&s2ˎY_v1tnUǘjw4>ZWɪVڹDz#'wd|]ǡK e_$&GIJ(5s'jO/T |tnr0`c|پ=}RoA~/}nʼnq?RFt Cn.`8B6)O4'T`g.aB'U[/Q*O>M O:^<{ކL]$̦WG@8 0^وC{EICY"- 2^ \A;FKwyM%1HJ Ez>4S(_`ԢBؖRVFf!:K{O VA_sn_WۺS?r^ &TfᎼπƆԋhSg-_?T^ʞ0LĴ*3vaeGDI6!a[ry5 )pu3u!E_] I>XӺYtYd!yJ?Pht^j5KT*'5$WY)~`Yy8mFJV3@z7d"S`K˰ђCZG[(#n$1K:o eVPi Gf-x50µ+Q վ& Hg+\?QJse4pG>532akEHW8j];Lhj%TҮyݰnR$x:b~A腶|(/e!f.;YVr?&uH c*%wkN:~F)XGM$bu#its[k %Dr'98k0G|&nRN" !%J^dx&Olu┟e[sƯcN=\{jMDH2_?\b42ˏU\BV5;lwPZ.P?XO{[9dXyRgUS79&6<4xE$ .pWGm> /'~LWIUTS y]uP?Z"EqPOɓsy;Dag8}l*i`68ƹIb'tg5::DGg+[ll9[wR`}ʺ68=[w"rLPzur+xŰ$zV9_Sd5Μ@W1pk }d"BW-剾_Y-v UQ](|YjÃeN`sǗg5|C}X.J‰CѢ@a#P QL7h|ٔd-zs[/p O i<1d semZJubgdPvM,J܉'VܡpXF Ps9g)>ظ1YT4i%UoK!ϵ=i`X xR]4F3d-/[I3DaL $@ƾeBQŪ%#}7 _C`r(kX\6@E9 1KXo'=1,ÚMZq/|Dw^T3XB#bòңmt&+]}=%4xɉ)}RZߌ/B$f`Q߰c@L*qe*~NG65kp6%|l"yFa$ t`Iɸ"鏵Iߴ3q_IȻQM~9'"1G?dЊ1vC_!=51dJW  [A6M[.HjM]oi$^[B&KAYۦ R3wgZG0joW*rKM/f'ӊ l͋̔`*m WanD%G5͆" Э%pZS6 2ˈO8ƞd1q FxHջ("e$݁^eP>{A iT[-3ï-MW:|z[א]@9n4+OR~xZr\- uABnB}y:YRϴn?S\ɛ<'V3υrYlC+V>oÖgUwA Bi^#\2| - 5_U |yc8|אKv&).sL㩭oTDgq5cްyک- t!FhPEճat01XAZ nYey-|v `0@~5823+f'gٺ /Ѭk%(_\HtὮG%qvqhW_Vr d+긁?r>0Xb |n) ٩^ UH\["0ÈhCU:mr[U)$q Jo Npt Kٝ%tى\?-]}G\6Erax Ϳ翷hҠ -|mtu2N4_ v}&a|&,= #aQmrVh䴳VMOU|y1`wd&p!K߮~Q0XNr'Zb*7{`"Y%wn'LRB2!y%u)F`mbVp̑}i?1-06DzɤRFwe.7F!>ꎾ^#OgB#-4x/ :|iaӊb ͖nqjS]d.XU{'\ӛ0t"J-*.IR0 r]];ݩߣHtqOM}"y5қ6W[=ChxU#`-nIPS'刍wStT̑ V-A`*+=|Pf%Vm ̠,"vy=ĦmF4>$XzwחFևe,ro `eKN6jeq"&n'dP קJ)lHL`3>3zyA~ӠZe|D0$>(wflO6{Ćcįc`/()0D*ڞJ wPE[c؜Rw5.ܸsq4$6n ~:9S؄, ͙lP2C8$6-?y5jc:60ꎍokR}'["4\|a!TJLʺ-Irh22a#40ʭJGp}F:^{Ck:nP*cwZR['y>^gOq  :G+uS I ?TYrLGOH7]:h"b9`T/F,k +g<%BJ&:Q3OFLO_ݳ8^vG|" l#.q]-w-1Z".aʇ_ᴻZu~\NjSmNqL̽W92H`"rpATk [Rtk#IrJ"/=!խgKoFmB`AbɣW`f_IНawk8,EE 6GXV݉N)ϥ\M,+TUQ7[$4۪ئ,]}uצA\H=VwK˝hj`{`vO5>wu]oyfʳVʃ0W6|?<֩yA \W% tyŎi>]}Pn{ iт̽o_:J.<bdR>DC3R<'q>ѯ|mё{^;7%(xe3azI$_\b-j#k@ѥё\H5I-<^ӠdLJ緧t̹eA{viѯzˌcKq"e_TFy%"!B#6~:x!kD3>dV*G?ˌ.&g] ^nzn@p[Vsa1$ bUVٱv3Vj9n)LҟXF=Xm4 W`쵾IVj M[- 8hUa=R~d|/aHA+_v[ BA6]M&rtw)(C=lZ1\:\`іұB7#;zYHfȍpprσb#9bkę 0C8qɊxT"|+:_k$ΙKxAnnDdhfygR[7h507|Í}"*S_1LSby֑^|dtyg8+)_X9&D<Y⒦N~rGm+n"@򞜺f6f zۛڷAæ/Cb4jcTDn 8ԛ(򮲏2aN`Ѕ[Z'85zO^ó$` "s1À<3[Gmf"4ʹ4]i{߭IaT){2 |YHR?Ô5#[Kmxk'W#%Hő:FHo-fHA bMrS[p%ym-!v!s?O;/1A%43HʮMDb:&GUnd5L%2R_WwfOyffʅ|$)0P6du4($RCRtiP#ҋjms>ʾ;! h}NQZ1^lX~$r O'{ͮu }͗2Mt| 7b"i'қ:TF34csKFbn~]"Pg]<\ڍFcKpbKUGlOfQ|RćA= &;B6<'⟰w`aWꧦڂ}vBnPFwh⌎ZZCYLn:\vͼQwrqd<ׇVkHշQs?yHo!;-q N*~:Zp9қq;^n7핵~ֺ@ 5ߩݜPK-JeܒLTW8'ͫ2V#mƈyA3"3+Yc6`]rc_F&D]v^=1;3G.+j\$\7^UԃE Hxgt=nQ^|8Rh3;sw ^Y)g{?Be S<$"p\樂P4GvAbc"p7#CРQ\= 3lUTxkYKhi 8;vFglFq+%#1L;N,]OH$.v5~UjJ`-Ik7/θ6٭.$m›UJUeП1_gl*H_p šh2?Y=gd$by kIf EO1zd,4=v}Dݳ`'Hs? l@WA /y.%鏿Ai_!,lz ߲;?#T0D̆|#Ȗ"Cǖ%Nˋ|Bom]g LcrO;'r:o\•# kݲxqzcG`l#}ׁ!g GJwJ[Ug*>8:ګu/̓rKDü(}25AM0*ILEd1}{I!8[0vuiŢXAQS Жpbe}Y)+ctzZ4cTpD88>8t jrtTwKoּ;/9 ]㉿:J4G]Y,֧5J^6V}߃Dߗ_S1f[6`H ^0%+ 0,Ҹt~ BR$C?K;G?,R۾ !)HVwV)).Ky{iAr(+?pk K֚y:-iDI^򖱮FRa?ب/o̎*὚Yvf\O0^ÐAΑ ~w*{T|D;Уy2DUؒ]~&(4@8"fHZk)@ȲG,xS:A;}ֵ]-ٖF#?"Raz;ݜb  > \4&39wu0/̎@-npƻ7=xv/}HV|>I.-f25 gVC|p|HJ奙[j4[' c^r5G¡|s])ggUgn{ZOHNV #CE2fJlFAPʱ[!ō}޶CkP52Pm4<]E[^uo,Vl[޿JEڶCD}Q-uqdc0R&y1g֔>V @xS>K)s5Ge0)$«Y&|_ rXo᨝yd 寓wOJNk3aH}Be|A&:GԠy÷VWBcMۀ/+Ģ+DU^y$ˀlu`/GEWÒIUS$ɄyIO^Ɵ վݜv {85UQz> ~َhIvOUpoG56& c4WPVͤ$˦ZƲSfx(v&,Ssq]/R^{ZS un#&ZK(dHaJ_VSg(2R p;:|u+,hⳅ1 KJ%x;2ONR?4ѕ}wSJQbtt%<,q*SJ-;~׌m:3 zXM>ct 5Ko:6]`lcSbfڢu k3  H TL Ő #A"b`Q[6,X >4mQcT0Sضǂ0M"F,g=jh~RB[=,gF\nX4-Lzϴ-^_ "=]fd^6$pjYil539ZVӗ3~'ςnE飧 N,.fMYty#ieߛm1QvAoʑHa[>`m`Dx ~ cqmxk*G?DEo4IXyk[,?#wE%*O*+lƒX|~4 @-s+8Ɂ@OV{^s%qvC(F(0fH:jmy5x9 LFhȀs=a^+ό(c~BB4eqcF~_ncPaUޤGYv>fuH8_0 >O'u(dž{\Hkҥ%}6ߛ#𛣫),X?ױQuD0Pm 3U D$&z~dm2 yUUi nyCN& y'Y&?b`I*# 4vPЖdG4WYUZ4+/ ^KxM5=pm[(G-nYy KW;ψD!Pb X*/Z`-&\#A413_dW=7\ZV s9VTLG#`jmOBiyJ6/^uQ,+5-2ˏ#Gԓ4lX`q4E0{,z8^N'uCo⁆pD3 g:Z&V:MK5лCqWOk 5o&LuL1$IE 9zb/(1Z:KґyFMi`Qfs,ѵ/x KsLtHsS@6tXl G\rAcgSr=[3*HJ +晙GF Ic JC8l 1L y t  YH/|8%T>jc2|ŝntq-F΁ "< P\kr z[oRA>[2CR$Ur̎ce2fg> U L;JtMqz% k!7SeE_y#UPLqQK"]4@)p[ ɘ8j ǟ, S{VԳP\QqqCd][{=66v-D@Zw;/u;;khؚZ+Z| UO+xx-¨Z~\ۺ!4^o7'/ۃ¢N1G2a]v6=[˘&}JݢO&ȻT>y J>YpmwC e!ɇ6#zJ|aʏLKZq4,=$zM2V{&oc¥b>Աz%t"xd Vy-T(}ݳRͨ9 OO #tz[҉8EA04m{2J̬j3pE7רKJV`{СʭBUgu"մc:"׀#p.^BkfmK=Rj+c1O:(t@8ET;l5я,U|RlqUIX&VqQwWinR-T݁R22,GcWҩ#՟(~MJĻu c!@&X0GЁuPX=o:s֚,>,p× |v%!e&` ־qJ\G,11Bٚ 8XJ N=>i8̥XE=nˈ-+'gOm͗ňhߩXA 9\*sj!Aq20%. ݘް4㯋pWȄF_m7?8UoLʹH; {+TULbgB :zalRa>;(/wRhB7Ŧ)x$DCUqs)J'h~ b,"[\Zd!UY"x(E(Xv[uK]aݵ, <1+/oW:^W 6&c EԧL/'wQ~ Ǧ6 jn!#r!6"]H}(G] RWc5F eBMLߐR!}rl;[%72 pC/„?;,\fvxC1!b8tQf!7OڟP6j9&3D[*Rs(9kٳ%: ( 'T,GIKw;٤u ̴^6O'8JΜbiATߛ{ p0B2'$EEPE5K_gzhxQ>tKd7&5 ?{,b+u6' a84B$_Xl9?R(88]]97i2X:m˧yK11MMoUxWMbϜ|>@Xzthw}{w*yVA}fuq5jN{. ,: P`6<5]Ѷ)% Q~E ] \~\ai䥈cO2iוY#wŹV|sE&[=&JӋ3\-ޛnx7z*<h`S2ڳĐ-0ىO[+L3*0X{%1L*Ծ]wǬ]uG3]` "kkt HJ3b.W8f0a{ߖL³ڲVe>})/o_K2%|qĒ_# s}Rt:N0do!m•QD$l}jc ]XY; wx+Qlˏo-q(6K?a$_Hl)vgʉ϶Z;Y8Xq^ z~U"Xmf/Gk1M|v3G>gW?0k-g9h.^K(p3G40>z}ZX04IvȡdOD8NMepI>@]'8avamȆw.!AN¨2p]%M -#fnZϰ.X\ 4:9#cq+Κ[X]u)rQDp|5@@`u=Ec1}b쟴4*>sUGz|[LZ\ZFڰ[ЮH1J9ݾ "([HGs4@[ڟ-W!g>¬E `DK/p10hY>3UPo=0ᓀZ mC )I3H1fM(cӒ csAdJXVO ]dA #ygX:xxƊ\'i!T ]AKLKsiB&[aorrE_MTD91M=JU8Ŀ_0 k##fX[E*#'pߧ9p/3k. }?)v |1KlᬥĞ%ƒ1Si G2~2vF) >7\ eJ{v

BU_7q+Hx|p `סv/> ?]{p9FL'U/I>k_rQ;]ʹݥq)v dTKPƽlPXLk'x%0 %3F562(*r&0!̪m#O,-]?$yC!(Tst^DiWF>~8  %E.)HV[x ?>+EUrg~:_Y|-ـN[.}S,SL^̆䴧s M8<[;JlfG;a:R _K1HGjXTTc?;d=%r}zbu:+h(ЈE…tԃJgX\%]5D0*D a7A&{ud50 M#!BBñ199Xp>k)ȌY.޹ab&(VY%Mv(}Lp-NM;&ôǫ;,V:Ǝa%,LFtOi/>CbIddZ'S:䤶 ȥ*7c=І{ N<Ǜ#*q;ߓ'??B'i걌g4sZ9Pos ⟝YG@f Dɾ M*A@rL q|q*e"Z7 64`ɴђ[{%%7mb7Ť, [kƄ9d%q1'n|voTxUrJ 1i1xp4XbSp29;h2s7jd׹D0cT\Eþ#B4"H| 8A@%;_ASQT LQ&dh=G:,^pp-knzxoG 5h%{n$zƛf3 jx>belh Fa )%,Ƞo^5j F}<n^G 4T- ?r3Cmߘ Q2,B"Wr`;n_ȸR EB ߠ˯u˾Up̢Vf c,Au7qk㑐aTp Ho Fjb:)2 %Zg1|_taV pUV׳*! G/6~(`r|Hw~Bx5zocKQ>"C F,Ejv_ك)rqp;ڵޟVu6^ Ny˂ڝڎC# 7 Bd!Iψvt /=/P'.YAiJO)`qz=7Q14+#~H4oUg@ϺW9kތGG^ZG?!E3묹w1 g !M3s_A@%Q!36Me} N)Gل7VҗC-x@WJXrFHyZ||֦] ,V.N0jsI+TiHٿc0j. 6̊<’l>f l`G6sWDqI\}@>|K)1$IAO-,.Yj)SO~$I`bդεU'f%si)HZ|oih(wˇ=N3p$j?Ԯ`{"FM]n;-w]">T螋B < EDsKlNУl3rU6hLV](|AF$(׋KQ`1 ɔ )zs͝?XpLj*t,4`|AQ{f_Cp떫%.=Gߥ}$]',?GO)3SVp lڏLƠ9]e+ۭENSu> لz %e"ȓ強41W>EuA] 2~ظq˘H!6qzːrړ->'(PJHS_b,{u^fn@\J2i4)\hy]MyR8[)ݑrb{tQ3!\ߨb'ut:ܿ@TŷO>j2Huu):K>{As}ƲBH-N[=7 j0)C>",Nfn r~`{PJk^Bisp[!s=09T?MD"nx  43ľP?Xxk.։K7Q!Qi\19s#ٶ8lUkec>k.ts9/5{dT|{G&FIex7§;pO,'d8#R=6쁑L[5 ZH8K; p4 P2JT JnjR3 AMDB~NmW*rGZd.RSlqI sg@0ACB[iQ۩J\Ӭ ۃu:e'sdi"|HV/^r@kT(c6Ӡr-XJ6aTtl(HtI_6$I˫Ĵ٭+w"p*qt{1;+<痫V5H(RJ# HQ$O{|hyn06;j/5aC6P紴\景v}$KYL}<|'S0azxr1K5T::£ 1&KiwMDG"1N /bWW+0 H̐| <1DLَ_wg"Wh okz|1s!3n2$ٖB( )s*[9Ogq wyy56(q_ժSx`h`Zp[U>Zs^['HܹC!}յz(6 6F4_[C[Y A/mwyG]U`mP9W[˯D22B݌9⻃s&kS`biRk{-J0*(0ړD͐ a jP/:⿧|"EJ8|Ѧ1DZDž_"Z"!aC%B.40 yQ2D: *2Xl? \ fT]C<z(F)LsmQ.:w뿭' ՛36|-ߎiޜ׹ZD>Yկʼn,pL^¥MU1g˦y ҎRM͑bgO(&?44vko"elX%pҿ-}ᲜܞcjéLo?.FIuO2ǧzUP26񻪜caQ4w]NtR; ڊ0ܺ'>yβmhp{ ɓKRMkOd@rZ~޻ bTGT0zR-M4s3*6ö65Ă(ּ;~|:~{ɯrGd ,,lHɎ} uٞ5U}1lzb=VjGpcO{w4 Z bN:_rQ[|"fAo>O`I\%Ӄ4wNp WS#0lF3L(e &əJ@8'?Om;ofZ\U) j'&(WhɃtR{_UyR L/huX5Hb)L 4 FsD#5w{̰NZ*d&1ZB q*!! Vj%ϐaO֝ǽ"p8Dmx PESjsxPI?x4jBU);$ai S| nȿq'sƏbazbwUᣛolVd4/d5ۯ5%Ղ]kMF8Hl6*3'[ʆ< o?QѼ]0/$O!f<.O1tOJkožx"7Mmx, a/$@&wژhˬ'8>ly{k0F褊fhָ=7},2ISJq+bAILʙd{=TPJ+`W ]Bh-Q+T;< E͜8dx7`Tsf/S70ik rjpXFɽ?e,%څdެv:zlj<Cܑ疀ʥbWec)<= C eZ%7]T~0Y7{~4Cl}2l.HBj)?.@)̧?FC{I(ϫMQ,ǟ]$qU0ҫ["" -s~h Ċ5z?[Q>3[6,jByAFCa*K= $$ *8ZQe;Rl0v ;k> IMyaI=|(U6^=JF:QՓu3l4G7 ﺼDȝ`u[~6̓l8ꫜQ4nXp!3pMTі^AeldA K[?7 %/GL@l{v "H&` bŭ ` Hb)+1V notJu]f2k$$/I{MQ2ڛt)a֦Йd]I1wC:C] Mcv.11_M:%024F`pZ' >'vV쀆 'xj?Ԝ@E$292K$~AƋm6//{]`q;9 `CYb,P)s?ZJbE, eZM'"toJI1ٟN5|X;|2s.mfQvztZH5T$#Wu=% qέeWڸjLf*{D(t)>џ01P dC?5)iS Nrjw3xCs 5rcW LЃI,(fj'Vi]ژ0\+j^oa<%hOE87)*bjBl-L?TkErb׽zĞyScu=l k$3ejSgfX,A┟5|5xc`/3_Q*;ebQh!iS.?tiS^nRwR6]6' /jh:<_Ɨqx|s:#eRl8LC: n=7הtQ?pw(5"DgQ8ote)%Ϛlpx_[e_/M~vſmCיQL6w9:x07]MpS&N"'^52 "T D'(.y0xi-*X͕wn\!o4蘞7x^d O4!'.`R ׵2+^M0rpuUm$K19KQs`=09)4t'Bn!hk],a#m`WRiW?O90a0Gy*4='ԊE~ȐEFn7Jt65áETq^ ِ7 V-–mw_!$u{y? '_Hn"/Q 4Ia)yp]aWڸL{)<V$Dn\d AcQFwM%@}lw0k~k`/s_bu^gVEN?%]ֹ7~ ch)& bJcNCs5ZLWjRIɾk7;pMZ\8-ww1q:ю: ޿`s]2å4Z_7$67i1!ْu~v)yӮ%EfYA&]a Uif\Uk~=3?8Mx)q!.0z;95[!R|Sr>HKuK^T:ތM;|"ޔbj>qzR 3GD(궂,r44?nNd%t?D%BU* f,z ;B~B0sX^|JT ԣ8ƄCm4„ i03  wB!۩6qpḾ#|%+vQb(0Xj2Rװ[{9׉i>a<+П9f$&$!*Y::8LY 2^e3XLf]D pۼ[`qlCq Ƙ; m@&RԌ wD NGwKz wJ?gUYAE%/^ʍ%䞂Hn/vu`HF̅ Gu+9! pI`Ilt۠ qނȆ wjm=Y|*q ݬ$ϣx'ؠ%yw_׭&&}4t}7 9<7@N\cjIe>x\T=az8\NآKڼq>þ]1W4!&,w8.ǻ$}z}T]j<>ˀH;\;k_K>s? ,XzٰId Xtj/Hƽ#j9z5[1B}#{JgCyH/:5|M~,Vf9lhN]u{l(~ؽV,5ἒNmfv_ Y gd!raP(TX,usC!ow =<0 mq1s ]O / d-P4LxyfK;!Lo1OIEHq}P@TlUCO^CWZ=xh$~xNZ΅DN-|S]~+l[u ]晝EzI]20ia-9 NeV]®X; ~vD=xwe/h95Zٴ\yJ磧A4 g^nD"LO;-<az]ӵ_6ݱ=>6#rhP'ikA M(̨(1>l;ԑLP!#ipLe sl?1=1rTo&&k=7dŴkز1EXbD2B/y"',F;JL#b$埓Ĕ궖EY(ݑ^ka`!Rl$HP{z|[^ɍ$;b}Q_WNNbkV'\4M~>q/_l5,pTB&6eUJcwNq_l᜶pEqЛrHUhEyŌc@Ċ׊Kr. y=rD꽖BVT*@#TLʀ:` eؼ&{y,To*eZd!k{nZ ;C)-iO2gF1T6* Kz 87B(ɜl -qfXP$ _yJXo /:vo孷="ݛr h Znj*sd񌛠v,M3t `7Mbs LڛR&I90B(Dk |ea6YK<2ZVD|ƪ=&dB~ ⶞𤜖IYUR nGĉǞ ]6l/i'\7B*LpY}͋q &_ٔ$ȼ?k1W9>(D"ƞ tVAc~ssBI 1"KiKS^A\m>\ @Ae~QN+u}bQmjXk]/E9U hvA{>e)(oA;q׊'FT@ީCG xPu©hM#HBYm_gÛ-C0ns @)̺_;&KP5N;Fa tÆ!~M &6߾PyXVAz/6G4 !=zA._&Jg6]u1^hJ}cܺ#eṱ˸/fD;Í4G;hV2Rr 7zD{Yc쵽|{s=v{M4: VI&?lie!F?*B">ߡ7TҚ-9l:~mՙiSV<@IWa !qԮ-S}5zBKwV\7sLhh6ɺJÅ!1y$tB9m'xZ܉Eʢ#Ԁo3=ԎC 03ӡ-M8U Lj A]A Y3l!ղ_o!qxx,}|WjweY .b`d57u@l !zܦkfzFLlBm``c a{aEFEZx1Գ{- d@ҳ _Q~]WVbxSUkUb,'\Q(ARe/w">oZbmX+kJ6"^gћxm01a[M FmmCǎOϳ6%bP츸 t ӻVMdMU E* cj.&i[?GpӴ>hkZb} S8.fi^xqjXVfJ3’z+J41_U᠝KOAZ>+_.K_R\G\pś"pt~֋7\2 VG{<-[Bs్_爼X&K . ^.uOu>DhLĀ`G4#”C1C^X܈l9 !gsܼjEy|q Ph]a_Jv{tX WHؐ)HkFH\c8Y"R+4;nF*CUUvVkIZ9T'Bq[%[9$9LJtѝ:f¢?\{c"45Q&;vqMi dJ:otV`QPI8;&C1~4WWXمWkYoFM! Ԃ0=ϵ:\EF`$CtDcpq Ӄx'f<..l'7_4랄׫ m<)^ħ{(U8]wD#L-v9vkֱ25rGK[ :WJj]Нp7G T6!eJ7pz/]«dA5/er8b\9bjs!T,QbҎ>-Q BϤf+ҿ{ aa=nfq.G%*mSv bm$H/$<(N\(Nk}YL3CWZ 9u_W2^MɎ"|mI7egBY wM(ʻ#m|w bn-#W5,m>P]32x6gOiCY׹nкD ,~ܽؤ$!ۦ YZ