sqlite3-doc-3.51.3-150000.3.39.1<>,ɠi{p9|/&D62S^0ZS7*~Ƥ"p1 p ͙w#FaaA-'8DHy y%X;3ҎC*l5z2}:R_JwMӯ<,+q8|i- `WLʁrk4QM2B{2͹y-;qr6SѦ֩vU߿'z q>;P?@d # =6I _s  ! 1 1 5EYmn}~~~{(~8~P9P:wPFvGvHIXY\]^p bcedefluvz<Csqlite3-doc3.51.3150000.3.39.1Documentation for sqlite3Contains HTML documentation for SQLite: SQL Syntax, C/C++ API and other documentation found on sqlite.org. The files can be found in /usr/share/doc/packages/sqlite3-doc.i{h01-ch4b/ SUSE Linux Enterprise 15SUSE LLC SUSE-Public-Domainhttps://www.suse.com/Documentation/Otherhttps://www.sqlite.org/linuxnoarch#<#1s[/8j`W<.0*6n#eOA$cq=4:tmQ"dQ0M}|-  )#?_iV\!,Uz [!A~' ~#!w1T3Wm:1Qf`FUf@sb .<-!,3 $ $P&%M1/+K"8W<'HZelc+(F%mWQcBG/F)b06;00=C9"OeE%7J_S J%{?k5j/,+QAVW ?!C&0+G2_$9'}j[PnWv7*c/).7%Mrc  !+'^'F&R))2.z3{.5K$"$'*>3#&Q< *U,)!6]!4(#AB(+,P"H,JjQA;E" ?-LT8}A b }  G e fQ" Lu R  *?`2* % J5 %j \,MdDA,[d$'s[JnX%.8ZF1D yC ?5Ng%0]sr)++ (U.++/D"==( CG;VL1 C*0"2"!D#tCdsc ->\ Z\'@lJX%$j($&xS>$+4+kICif;o'G,T6OztZ/g^!A[%F p4! c&TLD/F[.}3]03Q.L # "c%)*,""x$|)[!/" !"$bKsT.0Y(J'+p0"* u#(y&)+$>P;6BPz7 |$%} Mp 1!#'035#!"s$'Z)*"&u ]O7<]VA5 #U&,wM6 \ f!$I#':+ N#U$ ') %db$@)+,"p$W%&UOh2|<DKr=thrEY7G1}z"M>s G5b"#'W{3*!x!i@""UG!!EV";$j%'[!" tF@3U'8I3a=Sh!2$ D/_P>aDpO' 5f*!m@$Zu(DB&-'432@~ 9M$5r#Ns}i(6$T)?H{=9rN0""""D9nZ{W2&| (43eW2VB[(V1,$U&F*z'!>nd$! ?9uO`+/kF 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.h01-ch4b 1773763573  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~3.51.3-150000.3.39.1    sqlite3-doc34to35.html35to36.htmlabout.htmlaff_short.htmlaffcase1.htmlamalg-v-canon.htmlamalgamation.htmlappfileformat.htmlappfunc.htmlarch.htmlassert.htmlasyncvfs.htmlatomiccommit.htmlautoinc.htmlbackup.htmlbase64.htmlbase85.htmlbindptr.htmlbooks.htmlbytecodevtab.htmlc3refaggregate_context.htmlaggregate_count.htmlapi_routines.htmlauto_extension.htmlautovacuum_pages.htmlbackup.htmlbackup_finish.htmlbind_blob.htmlbind_parameter_count.htmlbind_parameter_index.htmlbind_parameter_name.htmlblob.htmlblob_bytes.htmlblob_close.htmlblob_open.htmlblob_read.htmlblob_reopen.htmlblob_write.htmlbusy_handler.htmlbusy_timeout.htmlc_abort.htmlc_abort_rollback.htmlc_access_exists.htmlc_alter_table.htmlc_any.htmlc_blob.htmlc_carray_blob.htmlc_checkpoint_full.htmlc_config_covering_index_scan.htmlc_dbconfig_defensive.htmlc_dbstatus_options.htmlc_deny.htmlc_deserialize_freeonclose.htmlc_deterministic.htmlc_fail.htmlc_fcntl_begin_atomic_write.htmlc_index_constraint_eq.htmlc_index_scan_hex.htmlc_iocap_atomic.htmlc_limit_attached.htmlc_lock_exclusive.htmlc_mutex_fast.htmlc_open_autoproxy.htmlc_prepare_dont_log.htmlc_scanstat_complex.htmlc_scanstat_est.htmlc_scm_branch.htmlc_serialize_nocopy.htmlc_setlk_block_on_connect.htmlc_shm_exclusive.htmlc_shm_nlock.htmlc_static.htmlc_status_malloc_count.htmlc_stmtstatus_counter.htmlc_sync_dataonly.htmlc_testctrl_always.htmlc_trace.htmlc_txn_none.htmlc_vtab_constraint_support.htmlc_win32_data_directory_type.htmlcancel_auto_extension.htmlcarray_bind.htmlchanges.htmlclear_bindings.htmlclose.htmlcollation_needed.htmlcolumn_blob.htmlcolumn_count.htmlcolumn_database_name.htmlcolumn_decltype.htmlcolumn_name.htmlcommit_hook.htmlcompileoption_get.htmlcomplete.htmlconfig.htmlconstlist.htmlcontext.htmlcontext_db_handle.htmlcreate_collation.htmlcreate_filename.htmlcreate_function.htmlcreate_module.htmldata_count.htmldata_directory.htmldatabase_file_object.htmldb_cacheflush.htmldb_config.htmldb_filename.htmldb_handle.htmldb_mutex.htmldb_name.htmldb_readonly.htmldb_release_memory.htmldb_status.htmldeclare_vtab.htmldeserialize.htmldrop_modules.htmlenable_load_extension.htmlenable_shared_cache.htmlerrcode.htmlexec.htmlexpanded_sql.htmlexperimental.htmlextended_result_codes.htmlfile.htmlfile_control.htmlfilename.htmlfilename_database.htmlfinalize.htmlfree.htmlfree_table.htmlfunclist.htmlget_autocommit.htmlget_auxdata.htmlget_clientdata.htmlhard_heap_limit64.htmlindex_info.htmlinitialize.htmlint64.htmlinterrupt.htmlintro.htmlio_methods.htmlkeyword_check.htmllast_insert_rowid.htmllibversion.htmllimit.htmlload_extension.htmllog.htmlmem_methods.htmlmemory_highwater.htmlmodule.htmlmprintf.htmlmutex.htmlmutex_alloc.htmlmutex_held.htmlmutex_methods.htmlnext_stmt.htmlobjlist.htmlopen.htmloverload_function.htmlpcache.htmlpcache_methods2.htmlpcache_page.htmlprepare.htmlpreupdate_blobwrite.htmlprofile.htmlprogress_handler.htmlrandomness.htmlrelease_memory.htmlreset.htmlreset_auto_extension.htmlresult_blob.htmlresult_subtype.htmlserialize.htmlset_authorizer.htmlset_errmsg.htmlset_last_insert_rowid.htmlsetlk_timeout.htmlsleep.htmlsnapshot.htmlsnapshot_cmp.htmlsnapshot_free.htmlsnapshot_get.htmlsnapshot_open.htmlsnapshot_recover.htmlsoft_heap_limit.htmlsqlite3.htmlstatus.htmlstep.htmlstmt.htmlstmt_busy.htmlstmt_explain.htmlstmt_isexplain.htmlstmt_readonly.htmlstmt_scanstatus.htmlstmt_scanstatus_reset.htmlstmt_status.htmlstr.htmlstr_append.htmlstr_errcode.htmlstr_finish.htmlstr_new.htmlstrglob.htmlstricmp.htmlstrlike.htmlsystem_errno.htmltable_column_metadata.htmltemp_directory.htmltest_control.htmlthreadsafe.htmltotal_changes.htmltrace_v2.htmltxn_state.htmlunlock_notify.htmlupdate_hook.htmluri_boolean.htmluser_data.htmlvalue.htmlvalue_blob.htmlvalue_dup.htmlvalue_encoding.htmlvalue_subtype.htmlvfs.htmlvfs_find.htmlvtab.htmlvtab_collation.htmlvtab_config.htmlvtab_cursor.htmlvtab_distinct.htmlvtab_in.htmlvtab_in_first.htmlvtab_nochange.htmlvtab_on_conflict.htmlvtab_rhs_value.htmlwal_autocheckpoint.htmlwal_checkpoint.htmlwal_checkpoint_v2.htmlwal_hook.htmlwin32_set_directory.htmlc_interface.htmlcapi3.htmlcapi3ref.htmlcarray.htmlchanges.htmlchronology.htmlcintro.htmlcksumvfs.htmlcli.htmlcodeofconduct.htmlcodeofethics.htmlcompile.htmlcompletion.htmlconflict.htmlconsortium.htmlconsortium_agreement-20071201.htmlcopyright-release.htmlcopyright-release.pdfcopyright.htmlcpu.htmlcrew.htmlcsv.htmlcustombuild.htmlcves.htmlcvstrac.cssdatatype3.htmldatatypes.htmldbhash.htmldbpage.htmldbstat.htmldebugging.htmldeterministic.htmldifferent.htmldoc_backlink_crossref.htmldoc_keyword_crossref.htmldoc_pagelink_crossref.htmldoc_target_crossref.htmldoclist.htmldocs.htmldownload.htmleqp.htmlerrlog.htmlexpridx.htmlfamous.htmlfaq.htmlfasterthanfs.htmlfavicon.icofeatures.htmlfileformat.htmlfileformat2.htmlflextypegood.htmlfloatingpoint.htmlfootprint.htmlforeignkeys.htmlformatchng.htmlfts3.htmlfts5.htmlfullsql.htmlgencol.htmlgeopoly.htmlgetthecode.htmlglossary.htmlhirely.htmlhowitworks.htmlhowtocompile.htmlhowtocorrupt.htmlhp1.htmlimages2005osaward.gifSQLite.gifSQLite_big.gifaccommit-0.gifcommit-1.gifcommit-2.gifcommit-3.gifcommit-4.gifcommit-5.gifcommit-6.gifcommit-7.gifcommit-8.gifcommit-9.gifcommit-A.gifcommit-B.gifmulti-0.gifmulti-1.gifmulti-2.gifmulti-3.gifmulti-4.gifmulti-5.gifrollback-0.gifrollback-1.gifrollback-2.gifrollback-3.gifrollback-4.gifrollback-5.gifapple-touch-icon.pngbooksaditya.jpgdarocha2016.jpgdas.jpgdroessler.jpghaldar.gifhaldar2.jpgkreibich.gifnewman.jpgnishizawa2.jpgowens.jpgsanderson2018.jpgsymbiansql.jpgvanderLans.jpgbtreemodule_balance_deeper.svgbtreemodule_balance_quick.svgbtreemodule_balance_shallower.svgbtreemodule_delete1.svgbtreemodule_overview.svgchart.wikichw.jpgcpuusage.pngdirect1b.giffaster-read-blobapi.jpgfaster-read-mmap.jpgfaster-read-sql.jpgfaster-write-safe.jpgfaster-write-unsafe.jpgfileformatdb_connection.gifexamplepop.giffileio_diagrams.odgfilesystem1.giffilesystem2.giffreelistpage.gifindexlongrecord.gifindexpage.gifindexpage.odgindexshortrecord.gifindextree.gifjournal_format.gifjournal_header.gifjournal_record.gifmaster_journal_ptr.gifoverflowpage.gifpointermapentry.gifrecordformat.gifrtdocs.cssrtdocs.jstablelongrecord.giftablenodecell.giftableshortrecord.giftabletree.gifvfs_role.gifwrite_transaction.gifforeignlogosadobe-logo.gifadobe.gifairbus1.gifairbus2.gifapple.gifbentley.gifbentley.jpgbloomberg.pngbosch_logo1.gifdropbox.gifexpensify.pngfb.giffirefox.gifge.gifgoogle.gifintuit.gifloc.gifloc.jpgmcaffee.gifmicrosoft.gifmonotone.gifmozilla.gifnds.pngnokia.giforacle.gifphilips.gifphp.gifpython.gifrpm_logo.pngskype.gifsony.gifsunmicro.gifsymbian.giftcl.gifvisualdb-txt.pngvisualdb.pngxojo.pngfts3_doclist.pngfts3_doclist.svgfts3_doclist2.pngfts3_doclist2.svgfts3_interior_node.pngfts3_interior_node.svgfts3_leaf_node.pngfts3_leaf_node.svgfts5_formula.odffts5_formula1.pngfts5_formula2.pngfts5_formula3.pngfullscanb.gifharmony.gifindex-ex1-x-b.gifindirect1b1.gifloc.jpgne.gifne.pngnocopy.gifnw.gifnw.pngpowered_by_sqlite.gifprivate_branch.gifqpfqp1.giffqp1.pikchrfruitobstate.giffruitobstate0.giffullscan.gifidx1.gifidx1lu1.gifidx1lu2.gifidx1lu3.gifidx2.gifidx2lu1.gifidx3.gifidx3lu1.gifidx3lu2.gifidx4.gifidx4lu1.gifobfruitidx1.gifobfruitidx4.gifobfruitnoidx.gifobrowid.giforquery.gifpartial-sort.gifrowidlu.giftab.giftpchq8.giftpchq8.pikchrse.gifse.pngshane1.jpgshared.gifsqlite370.jpgsqlite370_banner.gifsqlite370_banner.svgsqlitepie.jpgsrc_logo.gifsschart20221116.jpgsw.gifsw.pngtable-ex1b2.gifvfs1.gifimposter.htmlindex.htmlinmemorydb.htmlintern-v-extern-blob.htmlinvalidutf.htmlisolation.htmljson1.htmlkeyword_index.htmllang.htmllang_aggfunc.htmllang_altertable.htmllang_analyze.htmllang_attach.htmllang_comment.htmllang_conflict.htmllang_corefunc.htmllang_createindex.htmllang_createtable.htmllang_createtrigger.htmllang_createview.htmllang_createvtab.htmllang_datefunc.htmllang_delete.htmllang_detach.htmllang_dropindex.htmllang_droptable.htmllang_droptrigger.htmllang_dropview.htmllang_explain.htmllang_expr.htmllang_indexedby.htmllang_insert.htmllang_keywords.htmllang_mathfunc.htmllang_naming.htmllang_reindex.htmllang_replace.htmllang_returning.htmllang_savepoint.htmllang_select.htmllang_transaction.htmllang_update.htmllang_upsert.htmllang_vacuum.htmllang_with.htmllemon.htmllimits.htmlloadext.htmllockingv3.htmllocrsf.htmllts.htmlmalloc.htmlmemstat.htmlmingw.htmlmmap.htmlmostdeployed.htmlnews.htmlnp1queryprob.htmlnulinstr.htmlnulls.htmloldnews.htmlomitted.htmlonefile.htmlopcode.htmloptoverview.htmlpartialindex.htmlpercentile.htmlpgszchng2016.htmlpragma.htmlpressrelease-20071212.htmlprintf.htmlprivatebranch.htmlprofile.htmlprosupport.htmlpsow.htmlqmplan.htmlqueryplanner-ng.htmlqueryplanner.htmlquickstart.htmlquirks.htmlrbu.htmlrecovery.htmlreleaselog3_0_0.html3_0_1.html3_0_2.html3_0_3.html3_0_4.html3_0_5.html3_0_6.html3_0_7.html3_0_8.html3_10_0.html3_10_1.html3_10_2.html3_11_0.html3_11_1.html3_12_0.html3_12_1.html3_12_2.html3_13_0.html3_14.html3_14_1.html3_14_2.html3_15_0.html3_15_1.html3_15_2.html3_16_0.html3_16_1.html3_16_2.html3_17_0.html3_18_0.html3_18_1.html3_18_2.html3_19_0.html3_19_1.html3_19_2.html3_19_3.html3_1_0.html3_1_1.html3_1_2.html3_1_3.html3_1_4.html3_1_5.html3_1_6.html3_20_0.html3_20_1.html3_21_0.html3_22_0.html3_23_0.html3_23_1.html3_24_0.html3_25_0.html3_25_1.html3_25_2.html3_25_3.html3_26_0.html3_27_0.html3_27_1.html3_27_2.html3_28_0.html3_29_0.html3_2_0.html3_2_1.html3_2_2.html3_2_3.html3_2_4.html3_2_5.html3_2_6.html3_2_7.html3_2_8.html3_30_0.html3_30_1.html3_31_0.html3_31_1.html3_32_0.html3_32_1.html3_32_2.html3_32_3.html3_33_0.html3_34_0.html3_34_1.html3_35_0.html3_35_1.html3_35_2.html3_35_3.html3_35_4.html3_35_5.html3_36_0.html3_37_0.html3_37_1.html3_37_2.html3_38_0.html3_38_1.html3_38_2.html3_38_3.html3_38_4.html3_38_5.html3_39_0.html3_39_1.html3_39_2.html3_39_3.html3_39_4.html3_3_0.html3_3_1.html3_3_10.html3_3_11.html3_3_12.html3_3_13.html3_3_14.html3_3_15.html3_3_16.html3_3_17.html3_3_2.html3_3_3.html3_3_4.html3_3_5.html3_3_6.html3_3_7.html3_3_8.html3_3_9.html3_40_0.html3_40_1.html3_41_0.html3_41_1.html3_41_2.html3_42_0.html3_43_0.html3_43_1.html3_43_2.html3_44_0.html3_44_1.html3_44_2.html3_45_0.html3_45_1.html3_45_2.html3_45_3.html3_46_0.html3_46_1.html3_47_0.html3_47_1.html3_47_2.html3_48_0.html3_49_0.html3_49_1.html3_49_2.html3_4_0.html3_4_1.html3_4_2.html3_50_0.html3_50_1.html3_50_2.html3_50_3.html3_50_4.html3_51_0.html3_51_1.html3_51_2.html3_51_3.html3_52_0.html3_5_0.html3_5_1.html3_5_2.html3_5_3.html3_5_4.html3_5_5.html3_5_6.html3_5_7.html3_5_8.html3_5_9.html3_6_0.html3_6_1.html3_6_10.html3_6_11.html3_6_12.html3_6_13.html3_6_14.html3_6_14_1.html3_6_14_2.html3_6_15.html3_6_16.html3_6_16_1.html3_6_17.html3_6_18.html3_6_19.html3_6_2.html3_6_20.html3_6_21.html3_6_22.html3_6_23.html3_6_23_1.html3_6_3.html3_6_4.html3_6_5.html3_6_6.html3_6_6_1.html3_6_6_2.html3_6_7.html3_6_8.html3_6_9.html3_7_0.html3_7_0_1.html3_7_1.html3_7_10.html3_7_11.html3_7_12.html3_7_12_1.html3_7_13.html3_7_14.html3_7_14_1.html3_7_15.html3_7_15_1.html3_7_15_2.html3_7_16.html3_7_16_1.html3_7_16_2.html3_7_17.html3_7_2.html3_7_3.html3_7_4.html3_7_5.html3_7_6.html3_7_6_1.html3_7_6_2.html3_7_6_3.html3_7_7.html3_7_7_1.html3_7_8.html3_7_9.html3_8_0.html3_8_0_1.html3_8_0_2.html3_8_1.html3_8_10.html3_8_10_1.html3_8_10_2.html3_8_11.html3_8_11_1.html3_8_2.html3_8_3.html3_8_3_1.html3_8_4.html3_8_4_1.html3_8_4_2.html3_8_4_3.html3_8_5.html3_8_6.html3_8_7.html3_8_7_1.html3_8_7_2.html3_8_7_3.html3_8_7_4.html3_8_8.html3_8_8_1.html3_8_8_2.html3_8_8_3.html3_8_9.html3_9_0.html3_9_1.html3_9_2.html3_9_3.htmlcurrent.htmlrequirements.htmlrescode.htmlrowidtable.htmlrowvalue.htmlrsync.htmlrtree.htmlschematab.htmlsearchsearch.dadminsearch.dbsecurity.htmlselfcontained.htmlseries.htmlserverless.htmlsessionsession.htmlc_changeset_abort.htmlc_changeset_conflict.htmlc_changesetapply_fknoaction.htmlc_changesetstart_invert.htmlc_session_config_strmsize.htmlc_session_objconfig_rowid.htmlchangegroup.htmlchangeset_iter.htmlconstlist.htmlfunclist.htmlintro.htmlobjlist.htmlrebaser.htmlsession.htmlsqlite3changegroup_add.htmlsqlite3changegroup_add_change.htmlsqlite3changegroup_add_strm.htmlsqlite3changegroup_delete.htmlsqlite3changegroup_new.htmlsqlite3changegroup_output.htmlsqlite3changegroup_schema.htmlsqlite3changeset_apply.htmlsqlite3changeset_concat.htmlsqlite3changeset_conflict.htmlsqlite3changeset_finalize.htmlsqlite3changeset_fk_conflicts.htmlsqlite3changeset_invert.htmlsqlite3changeset_new.htmlsqlite3changeset_next.htmlsqlite3changeset_old.htmlsqlite3changeset_op.htmlsqlite3changeset_pk.htmlsqlite3changeset_start.htmlsqlite3rebaser_configure.htmlsqlite3rebaser_create.htmlsqlite3rebaser_delete.htmlsqlite3rebaser_rebase.htmlsqlite3session_attach.htmlsqlite3session_changeset.htmlsqlite3session_changeset_size.htmlsqlite3session_config.htmlsqlite3session_create.htmlsqlite3session_delete.htmlsqlite3session_diff.htmlsqlite3session_enable.htmlsqlite3session_indirect.htmlsqlite3session_isempty.htmlsqlite3session_memory_used.htmlsqlite3session_object_config.htmlsqlite3session_patchset.htmlsqlite3session_table_filter.htmlsessionintro.htmlsharedcache.htmlshortnames.htmlsitemap.htmlspeed.htmlspellfix1.htmlsqlanalyze.htmlsqlar.htmlsqldiff.htmlsqlite.csssqlite.htmlstmt.htmlstricttables.htmlsupport.htmlswarmvtab.htmlsyntaxsyntax.htmlaggregate-function-invocation.htmlalter-table-stmt.htmlanalyze-stmt.htmlattach-stmt.htmlbegin-stmt.htmlcolumn-constraint.htmlcolumn-def.htmlcolumn-name-list.htmlcomment-syntax.htmlcommit-stmt.htmlcommon-table-expression.htmlcompound-operator.htmlcompound-select-stmt.htmlconflict-clause.htmlcreate-index-stmt.htmlcreate-table-stmt.htmlcreate-trigger-stmt.htmlcreate-view-stmt.htmlcreate-virtual-table-stmt.htmlcte-table-name.htmldelete-stmt-limited.htmldelete-stmt.htmldetach-stmt.htmldrop-index-stmt.htmldrop-table-stmt.htmldrop-trigger-stmt.htmldrop-view-stmt.htmlexpr.htmlfactored-select-stmt.htmlfilter-clause.htmlforeign-key-clause.htmlframe-spec.htmlfunction-arguments.htmlindexed-column.htmlinsert-stmt.htmljoin-clause.htmljoin-constraint.htmljoin-operator.htmlliteral-value.htmlnumeric-literal.htmlordering-term.htmlover-clause.htmlpragma-stmt.htmlpragma-value.htmlqualified-table-name.htmlraise-function.htmlrecursive-cte.htmlreindex-stmt.htmlrelease-stmt.htmlresult-column.htmlreturning-clause.htmlrollback-stmt.htmlsavepoint-stmt.htmlselect-core.htmlselect-stmt.htmlsigned-number.htmlsimple-function-invocation.htmlsimple-select-stmt.htmlsql-stmt-list.htmlsql-stmt.htmltable-constraint.htmltable-options.htmltable-or-subquery.htmltype-name.htmlupdate-stmt-limited.htmlupdate-stmt.htmlupsert-clause.htmlvacuum-stmt.htmlwindow-defn.htmlwindow-function-invocation.htmlwith-clause.htmlsyntaxdiagrams.htmltclsqlite.htmltempfiles.htmltesting.htmlth3.htmlthreadsafe.htmltoc.dbtransactional.htmluintcseq.htmlundoredo.htmlunionvtab.htmlunlock_notify.htmluri.htmluseovernet.htmlvdbe.htmlversion3.htmlversionnumbers.htmlvfs.htmlvtab.htmlvtablist.htmlwal.htmlwalformat.htmlwhentouse.htmlwhybytecode.htmlwhyc.htmlwhynotgit.htmlwindowfunctions.htmlwithoutrowid.htmlzeroconf.htmlzipfile.html/usr/share/doc/packages//usr/share/doc/packages/sqlite3-doc//usr/share/doc/packages/sqlite3-doc/c3ref//usr/share/doc/packages/sqlite3-doc/images//usr/share/doc/packages/sqlite3-doc/images/ac//usr/share/doc/packages/sqlite3-doc/images/books//usr/share/doc/packages/sqlite3-doc/images/fileformat//usr/share/doc/packages/sqlite3-doc/images/foreignlogos//usr/share/doc/packages/sqlite3-doc/images/qp//usr/share/doc/packages/sqlite3-doc/releaselog//usr/share/doc/packages/sqlite3-doc/search.d//usr/share/doc/packages/sqlite3-doc/session//usr/share/doc/packages/sqlite3-doc/syntax/-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:43222/SUSE_SLE-15_Update/b7a361010353f83a3ddf4fb9e9326fe7-sqlite3.SUSE_SLE-15_Updatedrpmxz5x86_64-suse-linux   !"#$%&!'()*+,$-./01234567789:;<=>?@AB7CDEFGHIJKLMNOPQRSTUVWXYXXZ[\]^_`abcdecdfghijklmnopqrstuvwxyz{|}~cdcddirectoryHTML document, ASCII textHTML document, UTF-8 Unicode textHTML document, ASCII text, with very long linesC source, ASCII textASCII textGIF image data, version 89a, 165 x 91GIF image data, version 89a, 327 x 97GIF image data, version 87a, 749 x 220GIF image data, version 87a, 295 x 270GIF image data, version 89a, 295 x 351GIF image data, version 89a, 204 x 267GIF image data, version 89a, 368 x 267GIF image data, version 89a, 209 x 262PNG image data, 144 x 143, 8-bit/color RGB, non-interlacedJPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "", baseline, precision 8, 240x240, frames 3JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "CREATOR: XV Version 3.10a Rev: 12/29/94 Quality = 75, Smoothing = 0", baseline, precision 8, 240x240, frames 3GIF image data, version 87a, 240 x 240JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 240x240, frames 3JPEG image data, JFIF standard 1.01, resolution (DPI), density 96x96, segment length 16, baseline, precision 8, 153x186, frames 3SVG Scalable Vector Graphics imageemptyJPEG image data, JFIF standard 1.01, resolution (DPI), density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=0], baseline, precision 8, 220x282, frames 3PNG image data, 2707 x 1361, 8-bit/color RGB, non-interlacedGIF image data, version 89a, 445 x 276JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "kvtest-timings.ods - LibreOffice Calc", baseline, precision 8, 484x336, frames 3JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "kvtest-timings.ods - LibreOffice Calc", baseline, precision 8, 482x335, frames 3JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "kvtest-timings.ods - LibreOffice Calc", baseline, precision 8, 474x332, frames 3JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "kvtest-timings.ods - LibreOffice Calc", baseline, precision 8, 484x333, frames 3JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "kvtest-timings.ods - LibreOffice Calc", baseline, precision 8, 479x338, frames 3GIF image data, version 89a, 482 x 356GIF image data, version 89a, 577 x 190ASCII text, with no line terminators (OpenDocument Drawing)GIF image data, version 89a, 612 x 371GIF image data, version 89a, 587 x 198GIF image data, version 89a, 544 x 59GIF image data, version 89a, 587 x 93GIF image data, version 89a, 577 x 89GIF image data, version 89a, 510 x 93GIF image data, version 89a, 668 x 183GIF image data, version 89a, 486 x 252GIF image data, version 89a, 487 x 203GIF image data, version 89a, 457 x 83GIF image data, version 89a, 515 x 175GIF image data, version 89a, 249 x 54GIF image data, version 89a, 511 x 88GIF image data, version 89a, 544 x 69GIF image data, version 89a, 227 x 60GIF image data, version 89a, 348 x 54GIF image data, version 89a, 759 x 183GIF image data, version 89a, 577 x 270GIF image data, version 89a, 649 x 320GIF image data, version 89a, 63 x 77GIF image data, version 89a, 215 x 75GIF image data, version 87a, 215 x 75GIF image data, version 87a, 215 x 96GIF image data, version 87a, 250 x 61JPEG image data, Exif standard: [TIFF image data, big-endian, direntries=12, height=98, bps=0, PhotometricIntepretation=CMYK, orientation=upper-left, width=400], baseline, precision 8, 250x61, frames 4PNG image data, 1261 x 510, 8-bit/color RGBA, non-interlacedGIF image data, version 87a, 215 x 49GIF image data, version 89a, 215 x 55PNG image data, 500 x 111, 8-bit/color RGBA, non-interlacedGIF image data, version 89a, 184 x 48GIF image data, version 87a, 215 x 89GIF image data, version 87a, 215 x 90GIF image data, version 87a, 215 x 55GIF image data, version 89a, 1094 x 995JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "Home | Library of Congress - Nightly", baseline, precision 8, 205x66, frames 3GIF image data, version 87a, 215 x 76GIF image data, version 89a, 215 x 40GIF image data, version 87a, 215 x 83GIF image data, version 89a, 186 x 48PNG image data, 255 x 52, 8-bit/color RGBA, non-interlacedGIF image data, version 87a, 215 x 46GIF image data, version 87a, 180 x 25GIF image data, version 87a, 215 x 100GIF image data, version 87a, 215 x 60GIF image data, version 87a, 215 x 53PNG image data, 920 x 537, 8-bit/color RGBA, non-interlacedGIF image data, version 87a, 215 x 66GIF image data, version 87a, 215 x 44GIF image data, version 87a, 215 x 57GIF image data, version 87a, 215 x 64GIF image data, version 89a, 216 x 76PNG image data, 400 x 166, 8-bit/color RGBA, non-interlacedPNG image data, 400 x 84, 8-bit/color RGBA, non-interlacedPNG image data, 215 x 46, 8-bit/color RGBA, non-interlacedPNG image data, 700 x 240, 8-bit/color RGBA, non-interlacedPNG image data, 700 x 130, 8-bit/color RGBA, non-interlacedASCII text, with no line terminators (OpenDocument Formula)PNG image data, 876 x 170, 8-bit colormap, non-interlacedPNG image data, 875 x 126, 8-bit colormap, non-interlacedPNG image data, 875 x 127, 8-bit colormap, non-interlacedGIF image data, version 89a, 363 x 294GIF image data, version 89a, 344 x 340GIF image data, version 89a, 823 x 312GIF image data, version 89a, 795 x 274JPEG image data, JFIF standard 1.01, resolution (DPI), density 300x300, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=7, orientation=upper-left, xresolution=98, yresolution=106, resolutionunit=2, software=Adobe Photoshop CS3 Macintosh, datetime=2008:05:21 20:45:35], baseline, precision 8, 600x547, frames 3GIF image data, version 87a, 8 x 8PNG image data, 8 x 8, 16-bit/color RGBA, non-interlacedGIF image data, version 89a, 175 x 175GIF image data, version 89a, 200 x 76GIF image data, version 89a, 383 x 726GIF image data, version 89a, 537 x 233GIF image data, version 89a, 391 x 138GIF image data, version 89a, 672 x 140GIF image data, version 89a, 353 x 184GIF image data, version 89a, 136 x 137GIF image data, version 89a, 624 x 137GIF image data, version 89a, 629 x 139GIF image data, version 89a, 625 x 140GIF image data, version 89a, 136 x 136GIF image data, version 89a, 627 x 141GIF image data, version 89a, 222 x 138GIF image data, version 89a, 672 x 141GIF image data, version 89a, 645 x 131GIF image data, version 89a, 305 x 137GIF image data, version 89a, 371 x 136GIF image data, version 89a, 595 x 184GIF image data, version 89a, 364 x 184GIF image data, version 89a, 467 x 184GIF image data, version 89a, 369 x 184GIF image data, version 89a, 700 x 309GIF image data, version 89a, 462 x 184GIF image data, version 89a, 402 x 136GIF image data, version 89a, 305 x 136GIF image data, version 89a, 636 x 379JPEG image data, JFIF standard 1.01, resolution (DPI), density 300x300, segment length 16, baseline, precision 8, 220x300, frames 3GIF image data, version 89a, 452 x 227JPEG image data, JFIF standard 1.02, resolution (DPI), density 150x150, segment length 16, baseline, precision 8, 625x290, frames 3GIF image data, version 87a, 220 x 101JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "CREATOR: XV Version 3.10a Rev: 12/29/94 Quality = 75, Smoothing = 0", baseline, precision 8, 1120x998, frames 3JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "speed-size-graph.ods - LibreOffice Calc", baseline, precision 8, 864x508, frames 3GIF image data, version 89a, 302 x 312GIF image data, version 89a, 356 x 484HTML document, UTF-8 Unicode text, with very long linesa /usr/bin/tclsh.docsrc script, ASCII text executableƃ}J -u3Kutf-84ba2b78ad799e13b14cc42cd804155c116a9ab11fcc26744f22c779def9f4b09?P7zXZ !t/]"k%@ 9m ^&<㝢>E*yw͚x` !}G¯ `yNC-ŚOHD O}<(ջu20e&\)ehQM,3oak."f:_iƱ _y' "1Ak,Ӕ.3f ֢|͢zGU*jxc0ҷ0ݞ~|q"ӼƋLITd3HoXR]Z83K|F9ڳjNW˭=ԭ8LK1g~1MQXO/8(yL18eUѷ:3RU|jw.UJ8LDF7YLlT.IYT*ˆፀ7!?ɂ֩RX ^µ/!\Jh#KD9]u6RXT4f;§v=H+{&Unid(IET;?Uvr߇`A?OL`~ {Χܧ.HۘRRi ŌӉ2&_EpFxm!$pdFOpvrxjm^l 6^ݫ>>nfJio81tZ5Wb|>+k 6~_jRxQ-]0pShxPbW+b{ݰ-_glS [uSeF.-HV)Lh8 *x3-? KWx.Yyt&ZraLHiVcxٸSl\I%i9bA=q,"Zg<_=U eMNJܾL| A @"KG'7}67ꆒE0,.O(F{ZJ|֧Z7p]܃27ӔNf)` a2+AhI+qn\*@o;QT wړ!uy;m,\eL w=nN/<ږ,b:VˣSqӳkp4Œ.ȰO#ߝʣ-ھ HM}5'vphVwYf6& /=c.f4-fhov9 3-])'sG_I`"?`ڛ ﶨ3zdcQ#ī.|+j"aNnU Tq-o-5a{oQiylazFv~qIJw1o5j}UjP^7L&:<!O ܜ))YȔmOa^iVWiT+L#\H r*چ-W|6'X/DمԜЪڄŋLtcd&Uc:wTi ŋdOo3Ac}6~c :gi^Ʌ99DAη)Bbx~K̫dт׉.g;WO2 j!IˤlL%5p0>w=Z+DӷJW;6s $Y&2]#n(BbI{pےV*@=V7 iGD\ۡ+_j:;9;\Й#mZ8}-¯Sz% Y:}v; ">9u3;7YlaLS rNw.I݃ODLo S9*`RJ}9Uٵco} Ȋޱ!@1 r[QC\HA31:h ę#}qt͓b!.829X#r)ӀH.Ja'%_/ A ?V1}Fkńd7(|}qeWV%;eo]t)|.UL0zx&$53bq.a V=BӢ" 0 SIJ"OF9(p>b 88!S{JOTΆh{(N&BUߺY,`b1\3i55Ga4qu_ΣK]d~9 ,L-R`Uaх߻t)R:%̯ 0. E8F0N,x|+W䥘fiӼ(؁1 Gy!}^A9CW;E_~v+YG_Y]xIŠ|r9F/Ww!['o;\J9&­{\@(FAx(_g1~"ͽhƗ;/,٤+h+5$< #7Kfg#lG9WNr`#(6 ..Y=k63֦W:} D*"ffҡxW=T脭%#N& ܊ڦ)~VjtO,mt^)'aΚvTeBĴZ^8͍$UtD[tf7-\ NA3λO HLet9TuǛE~؄b^@"h<Lŕ?&NLz^;;s{Kx5,Cb|Hb)^$' AkUJd%0L2o.bf!jspDttc [F RO3y3#A\ɉ<(F8Ef Zv?b">F =4pv cv 676 )?Ll B**mҶŕ젧G' 6ڞ-)Y›1-\mEC%7(z媳IӔȻE-vpu%jYrr:ȐJ=|F bd@KF(U*onG;[ q]4.o|~K ytEIB\=l.92@_g&n@)t]2R<Ż?K]׉cU6l3gaڞ"eq %k!z\PL,~-n#}\OC G8~ڧBA-`~C9J}8j"v" _lwifi|$62p t=)}3'Sb=: ^E0ԄmdzLPeA5p6 ڷyk60mw$YMH^6D1{2m̻E)9!E[kmxYp<$@ hll?ad@^3Q#3ޒԹs4K$58-?z-H Na+J?Io88qS܈ ,U[B{*Ӧ!%t{c E/ 䕷(pijUUQλ(M7>[ A"ׅؓ.De$WΦL1FZT>TS,yppٍSe;0 &Bh_z5lv_76'Tr^Ij1}DcB_,|cы'uvZá sHWAXrN+ݝk/=m>"34BX~-6urdHHI*/rdD]w*q(]R YAsqĎ0c]Im- L.q߽x?ܝD]R0}EM[vWڳ8 ;z 5.S4D|ezvn@Z m-iҾhGnH'Rcqv,>{oI>CʼJ9-7Sq)s4FtE])JzKAgz:0ɞp(a~ 3qT]V,$!aDP+(FegRL6G3 IaXrI6Vzlr'06bJ j_!ף1H}Nd1L"L)(w'IYiǸ+D doE Yfᥑ`5e2C8و \HA;\./}(TԴ0}(?V C,87hzzY_/H|̮\"@xƎAMQ*sA?*}͡3!fO?Yi_'J#q`VAt.ym,c!58VX}%Jĥ\1Qb'm݋&Ylak&%h5,Dѝ)J/1>•^.هުvT+/ܫ,YT97 ʼ>y9΃S_cv# =suZ"G67C"֧#wԃyCM`/g&UG[B͏z*5ӏ*Y.qoo@ϧɌPҞ,G2Wwhn$jD\KmAA=қS##$(Up0jCI,33\]7|}qڋf@ܘbl㡍_4:}pG7# 2= N.ѷn*g9tF-Lh15>4Sۧyi(:S4:m*&Pxx"hvz1RhQOl@/XvnX1@-' cv85 }݅"A/$LLM\Xx!'KX^ܴͲӐ/0]Pp> PLXm-QgWfDi qn? wofQ*l!?[gƂg]Wڳ{}|c&PEO>٦͒+̻vr4| iNsWJ C;S@`7iۤydž9~q{HJóyqvfk# g nz宾KO/vf/$ɵ+#ۓ*Z t euy;_RP T9(vI QT![wxG.`Rć#UҺ.gFۮjp`.g_3l ğj l)k_vڄ(y3ÇsH\*qq5tfߥDkIlUr ?ƎAv{ mrnQNG =y2"k GMxP Ǘt`d`9c5sԘu\Y m8?<nivw*Yj^)B82o=Rv$os42*@7HN # FGZp?g& LK& UAXFv\DU&[˧e$kK\$ Y@;Hi,ZD8vC\?ma\Jo F{iI:mN^*+IYpB_d[}C8 'yǹ҄VI9cCqiءR:GbAiwM-|y7a% Ӽ&(+ФjK=MqV >Kר/r =n^ dh̪YZdC@@W,L0/ՠ`rʁ՝Ѐ\ ΀>7\hETt=x*vmnF4ju(9GTetM;TQjJm)מie s׺AzeYy;b3 Biˣ} F."E>UNlGUڳmFspZ"VwL L,adyH&k 5z\e<_"DX3!gSLyLR_Ǹ3uJ9,KTzC,?ͭC~ΡV״p:+? +c|$s$vTްČ6*2|oUܱ2I /9dTI$F[C5Yˋ=I? pk ϹsP/M.n^K@EԳxv ԃSU*c!j&E *j$O[I["l{1*}'l.H϶SB Xq $3Sk 0wDC.zp6q#{կS1rM X].c:oxG~÷Xa>fo8)- {IWABi&dwmMp!JM;F{H'>Fֱ۹LpĞQaS%7}:}Yjus\Q%B9a2B#?Қ,0YPIyI1}*Jn0KwM1z6l R=*-b2gn (W0?*Lj9㦣"w,2ߑI# 2;sAP?W"vN VHdw{ 6owW:_x Q̇+{ŚG!a܈y61k ,ķn$@7\'z]BC KSuhN6v[h,`0L/r|uaG۪ͥ)ds<´3̸1>[fYdKc`75`"IUi#,k"yu,l|pxbq{&y8 =w$Tȃ:adF; n6"9,ZcDyI-pjܜX0o;Ǝʚ4 ED.xO_H!᠓ia tHGv `) v(TCjIq)ApQTEfŐWsySԵ6 DvIt !w^%u~g7+JBLjϮ a6BTO14sZ =HE`,_J)AgOO޹WcWP5(>m_æuGj\L7(ucM[:ĒvW#ԄӾ˶2[xeڇn 30=qoed2jSL_:ʱgleKh#&YKḇJۄ]r69/0T7. `.{iuPP*z/{A3CF_!TTy?/[Ju]Yo#9м@S )!4۳;l7G GȘ,w'{e]S8wb,zoH(4Rus&[7F;[tJi~bÁ_e<#O'+Y!"a,f(`Àٵa/ک4^5VY0rNy l,|F1_ ʽKc@9;"oSsLMs{v:|Q82Rlڗj/|ʼnϻ[=7{ 6ÕE;pEРJ}MVٟMYtG8Ȧ.xglۥ@ή];",kr֯4!º@Yphct3 ;s\]ydzvIr5hb#9wj";rb&]'9=4yeox{v$&;9;im  vրRbBmh ]4}bFx0rkUŬl\uۜP7jg̀61 $gU~c,5SckÐH3Y -_eTfUo~ͷO @MGi"E%SøZ͊YG9:JG[P *h:Ya &8H+>- L]CEe -s&=Iu(ePĭY4оWp^^uhPu Sќc"sIdœ^^Q"p8ܿG tġ 90"Nގlppwg& jVVd݂,Pǐ 3Hkrl& *?9s`|jh)`ֻ/%3nINq2JAJ'&̘\u| ?jvwG3հ6rLSGBqL'-2lx\`#8U{[ZbC =$iZqzxFaJ#ba5 ᙾ81@XcmQ%9 ɒrZ-iظ;u8g[nf$b!Nz މ20"ASUsakjI>&tVU%+K$0J jwfRFۤ4k|IKBlfiЀhNR&u^>ǻRZpI&wi+!+{.V2()F~em& 2MHaþ%`)cAQ0s/vK-kj ]"a1fyeeknn"bע**g$VF%{_> kڽLqO؞Rgv%vYGzJ;[Ja2wϔ-Q(Rl0gYzwR8_B! K@u9o5X\;S_U!tW*tW܅Z VIo# ϐPc%Okע8?-'QC`íoJ% R$o<~n@bе)+BRf\6O"C{8\x/{[usy3E4u)ZCtnO23RnQ:MloԨ;wAbCo=ꝥ{MEgB40X~'4I(IFpowd"QH2.2KXĢ„,2yJK I0@;Fr4WQ/J^ \ ONM{Hv$ H__c+ &P@{|&DT䤪#dNw5,}OaGO-pSCk.VP!DDRHmp/er^MjV"q̈́%hyw3'e+'8zz}qXN^)~cbU FnVՈSj ҼA] ?9dpT@CSs**RHfmw@ xfl0=(Ӈdj@ThskNо~qV-|5H`ŗ)it1j9|kJް8Zֵ{"`'xl #(TV%ه+9ߙwkE񭖃?S=\XwUH@ ׃t>&RxNkX=*7/ e䈎@)A2#kl(pK?77ٸ (vmwfnSuE03-&;İ+jưHpe-FW› K:wsm.X+rO +ϒ]B50E1.zI ?M_qfHCG%2 ÖYʮ/!tqzv jj0{I#+9@ED1Tj'z9=b"ABz;p?ƨP71/1 V3#IjP<#Y9c5/ y+sbtgF6d@9ujT5F!ʀR P2 aZM ϼ I͚eTPtT8%k*G$x oŻW|@xLYYg$zJ–hٱѼ7I+T2v²euo7bCzb7qtH)Fk5fΤ`0q>JݤO:-=qgtebm5=A\n]:ЈU?owZT 12ߎAn">=p(# :NwT#>zU}K`|JX܃BsLrgPz!c&8dy!E|`<ʂmⲺL2rbh ,cBD wJ%?_j>sꩂ7|LП,RQj0 fŮqVKS!i,S[V޻GFt8~)` &kgF+ӆ\cRIAu~p X͖N<1mTBȕlTE>]O%XH5D#7(ϜFC4o:b<ګn>Np 4#qqN4KѦJ]U"a.7,3Q MK ?ON"Z} tk-R`֣~eX3*xteRؖ)a‚"H6T@QwG$jl \$#QH7ތt:D)Ia *oי̭A(bFs7-ZMSP͢S<_?_3j :j@fpPޝ XnJDZ64lT=ߖh)8 6J "Vw=̓"+ZAUvܗ֗7llk̡uc MI]?b(JMQN0-:]δw[bUqgA*eD. dɲGL:o Ac{S\gʀmZbM, 1IxhGwf/9 #Ǝ+f^\H̓ٳ~Cz_ V+a=YN'wZziVZMTF{GYS2f+2`Ncx6d&'*Qo^*uxoU< Ä:^7$E}wXyFnXp4,0."9:!iɕdMHy&߈nֲiX{TL-]I"~sHS/;e.@9WO%/VRa~Ct#%S,wg8=ꁩW%Җ2PlոA@K"etY^BO2f&.Ӣz)%Nk`| ~D~E%A%9@NR $[.)pQo`\*8V]MHୂsTW~Av+(-lPٺn_1(!^NER-%z!aئ89K[*lwL$89Z/I5IBII[zG!D,Z/bTB@ai]o+|Gi{xw\C$MwBc~QIV~(_=(vb t`"]^L ܮҸ^%렱j}8чINO_7|д{sHS^x|gSw\=RK)ݸ6K`Jt)}qcfOu۠+]c+ (gLFI'C>;M>ǨQdeS5AnR6_ ~؛=$G=%m!CxjD0|t;.r  x̹N *TF@6TCg4dBW*vdR~zᧂknBz imE8aC'`V:BgX0]VP.ҍ5sD %KaJW :]7 ?q¶:ZDVrlLį:mfFl'R-B Le_v,*0hiFp Ɖ$%((Gd=5V@_o>OwᜠqfAFyDƨq 8EuiMRFl${\X=' BFb ^k'F0bVjyOU2gn,: p)ӝYҏC bO5"DH$[Kzm 9vM'L6` )b;_MPd43%1^և6981ۿ ,At'6R8m1"wCw艇쫖8mҪ\բ`ĀKNg=Ŋ lb6V/4[FTq\#>W7POV5҇w,B{W;(< 1hI hgK dyImEI.)Ùc?`7nZjT\iR~H JTaV4-<̓B.TrDTdͿUH޼^oªI ^XQB>nO#!&A Ǝ`9'MeH!tmE4~,raZEk_6tK7rs8].U.$tIlRB?n3;x !M߁+F0nYlIz3Q[?m2 s 1dT!ӑG leߺK<^a:7"sC yNg$bRH M sE 1deWfiA7  w!c:>X0?Wc\-+}1ط'>їRyI;},;%?Li߯: NTN\7A;]qRoԧz"*X)Dr.ݢsv{yهˌ= d,T|篹)=y4_(Lw7pL|909vW9 wN K}t.[GA6⍚yz~oa%Ҝݍiatq׏F̯/&#Ny _60 |zӪEF[k)‰s|qɲ `NT=S(O=niFb\&g;D_I8*53ko5ֹjfq&Mz߀鼜m} n74A1[23|1&NCH9?k܍\E\-[ر4LEe b齊]IUK7=7]_@{ >k!7cb+QHvWk"6SѲ 6b=,~AV!.H&*xɨtC*)=P>/ɧS7Y{H Lǂ/iMXc:捄 `J8D4( Sv6N g''h)D(g'"OLpjT9f`m8.[9 鐽Q<,Ԩ_brW9%'"0{-F utREچmd[D N/ \St_Gvd#i&L|  t>j~&FZg.+ {4zxK71q As&` L%c6$X9F#BҲQQU~kXo#s#(Na<-;vy #:P`s=_0{(z5:+eZ6f%=%V^xx}9K.p seOV*cm9t-,RzgsX+;ic?1:EÀP='|I}> _SiTehV~Q (BezdzB2~s2+\ bXj9.İ٠dLtsFsˀbB_NNG'E.}8pe[Y8Zr.kdk Ko&[bVu3*anO!b7sT(&O4w@4ê_ݢ PԎĊ6tJ)sݕB=y /e'cRy*-g!dZXdž B{ab¨V ֠XS;$ebY@fzBC>7;,c")A]s[&B|y '?l?H~?qD&K-+r>q}pHV~Ңrkn;F{˴"HWRk\ZPܦ'YR'*3 4ڊ\(pG$׵36 XP֠Czj?zda!NƐrԧn؏%zm)əؚU ee=sIι"M7*\0M;a7w ;fȩRe{u7cgBZf"0Rʤ(J,@t%ę-WxvBvj rc8whdN[/,Eₜ^k% EUx""77K8]SZ]d#! >ב$ʫE&kB'V)+ SFe N]`Mi8h.s02-t2-+xz N'=UcBZd[5-YK£_)xfmo'IoWG˚P/FƇd:flgʓF%LCSx%wO?Rq6ccr%m>V66.7?%(Wn-* Me%{ OK%G2kc tyQ34^YmYˡl֤树8#X:qM7B/L0#Q; Y 2'zS@}Lx i#/u`zb)HIІڞkn'W k4芹5!8SJ.d4B7b#͙@Wh5jBఊ:(6/VzzMdե8.]>Z6W7iny3o2(˛w3FƦ̣0#,fhM \pB&`pbU1+.\EcyˡWV{!}ϞvwWX7;bx\YM/w޳(ɊI >TCU6:<0KtVq=qLdо=|uI*`t9rRPϓ+5b~ DFcGU; 4ϩ22^ɇ, ݡiHV. 5Q̜ Beȭ'hFk.niө`ˈpqEEy<7P~5+^;%G4Vඵ$8zEn?Iv̤!K )˜ly pr-P^dxc"N.09h /O&"Iv#dsy%_8'7-t z y"b?rg㡋FO,[ 3ߣ 9.<`,`u&dO2iFA9[ބFYo̊")]:Xr♃W?l WȄxѬaM)VT¥?qFr"lm@Z,u\{dKWwG%~rW9(_'"G`7 2,&QU ܀,A<=\McUSG 'S6_8ibo-ĺ-,Cύ0>hVsms埝ߧyA䶏^9y藌A-uc 'kC)Q34᳣ETGwҡʏdz-60- =[V>0ˏ\: 0ǤQg4ꠣ6Htsv*X&*OoD1Rupq:W͞J.-~&Z]NP; Fpӷ%bE}S:xc;ccFl ; OuR`nګXLY%w(-\B /q˹Y_S#,~7ܵ- BY3e6 ݊ƚܚx9, R *y{7w|2i H6ЪO<$^dx2vmnl:`=c{1}:6N$Gd"_oncg8>!  >Ia_SҳLX6DXRH\,mY%d;A:bz 8FZ Ut+2/׷Ǿ0Ove{?vJC!fy=y!80Qv{ŵnFOF#b%`k_>b!ឍq/v!V>k'vApy<͹0G8EgԨʭS+)0X/ IǶOæPb-Aj 'swLW?мV=fFJɺowefK*ڞ~ Z6-xaDZkWuWR%i]T~Բ/+m;9Q/z/&2/S@ƿ-B)5Æzǯ}{0}ǃ4mr<[K=y>.ϩ}ZTܢOdOr~/ŵ2">yS5-\$P; >XܯGxN1Bli[˹`?w=I +;<6z, J=Ekw9~M˻z@aΕ>eGq8%߭/.1vfhMCS1 8v1=@!k| ~ݧ"mʳyJ Lkjε TO#6iSI$W(6x6mBAbHk(PƊ/n UfP5KY ;=59FoX V)P$WX_ l>Pg  #BG5c<+s L?M! ђbQ*3̖!칢@c.3rԽ d {\u,#gRqNy-[\}USU]LNc?' ad?QZGD)Zc29TjKtHFy9WĄV4n HdN2Twh8f lH{O+\gHZm6ϩZm Xpٰ9qA;y|<ߒWgHiNДQlT /5Ǯ3!\"Pޔ⛚:WA2Ց!v>%/]LhN!p5a2#!v0B~tꩾM{ e L@8#PLKҬ[l3ǖ Mr,,v(H#ajH8EZ_JԓafzUeIuH<Ӌn\ Y<+/Dh@}*U6 xc g2>PC ik`uXx~+mc"1m=KW@z<}5X^q:`k:jO bha(fIjb2!rDme%|"Ys2BC{u^TY))6뀗 g$7 \G4ߙC$HsIA8Sy肂c %eEspx>!dz8WͰm9ˑ09 B}㋆ `X8x߭ Y%\SFɟX7TJ1YS kZ>@1>:J] [y hr%M3#o5"YzLgitd%U2̧\[}nFrR  fץz \#Qt]yhe|W*m/NC1qy%ǯs lF)I}IV%?Jm1^3OhN] vK몉5`,WJ% %d]֦*%92_~|@Q6jyc//S BYM*gQ$ӽ.@hD\Zvitr  *xoLt )mGS0mMÙz75˄}Lj*c8@vPۂɬ-/}/I!SH? W[Jz0NjnW˩Wg. 'q'&7~ ܱ;k0``ߚ iN 5Q5 7=2xy?s QQRUj*X2e~";b^۸F7eݠB鏉Kew~W1TDDrp+|:n]Sn. әFw_ËP( @rh6߷OoRY5cJWBï֡oi%Ý6ĒqDW>"045N,M2#`ϖY>RmT (OT v󲃡J:k1]ĸEh(@6_;ӊypg{~,Fb!{P*l:^o6\R Amj]T@SB`ɛʩZɞEuN*,a$8 Źa)F!HDf se[ _?]Sm;ʁcHR^y2g\D5:oI=@C9kW1OhӔqQ(겾 5fyMTy0{LD'un_λn>V17dwԺzكW`Y`NYJfՑd`:=QIϼ(Lx8[CKׂ߄[v۸.#t 6c_3X`z[5)5|v;ifYPG&:~fO_vb: 0&v*!ƖƝpTR.yfvm kפ-3t ~TUQ]ǩ[zo۞kE>=+=-u1L'SXSN[X.*'og!B?fRR5G[_[rGy̖3sy׳uD'ik@DD=kf;E`C_-nt;8Ez~ DMj~X+'6Ry2xQ#H$.:nZfޔj @ KyCyo$H^^Os&!ԋV"Pr7Ndd'o4 f^i|OKC1>iwփ2/u :,Ħ{1Q+z A'Mf2]GNw$kC̉W' `[4ğq1,6bU]凄O" xU7{Ks5W3U-ޏJCp;5lI&O p`Λ(%n9r b*IǍ!jn KUpnWg.aNh)}k7Z`  `{kj  {RCe89W9Pˤ_6`tW=h(N8X@Hahb1ndu.'zץ۞0[#4NGnGp 0wQY"tInv>O^9 'g+`vUҧAIUѵuߋN=tQ:v4lxk3t,vC)9:bC̅}M3G[HqRp?Z}\8!fόyUzI8ht~tW bV>ss ٮVeƯЕM[u QӺYTh Y'0FN&%s^'.8-GC>d]&<oR5Hعj)*n|ƒ[/ V" ͵H}W-]iI1, )N2K9gH.j%>hʌ2~b-/Ow /VS&@ "]B/в;NܾG|psŧn0#ہx?⛿Y :]{d*F> ]ݘ,8LgZsg;= aOʋCxZ)ݓELg"K%Mhs?ywדHP.{6]jYz+(Ahw0U,w X ܒ_ |v Cf}Fq9h#kKJ5D%B] 3.ZZ|C;a +:(M *-^,ĦpMmvcv^0AӍ☟:sM\Qe(UDB疞/yZЙ91dxnj=įI2nn\ 2IwY}<,lڅ8]g.3.~p6Iq)] x^:D.'?-]* V7o:R"aBLrEZ!E07m鑼ICQlpPyǚ-t(-bJ" gWT)Ǭ#Ěg8(B`3\}>ZmPLB19&&Šd YqCB4R>DZV͋M%PEۤB2dse1قʗOq򼣎Z1R]@'D xI5fr\ ZIxM)U ?JC>pKUQ 5XquRz t$X1 6-s 7"`VzIEdyTw{ȓ +/LI֊6Ob6k/bͳw, <哷Pa)0 GR =Wzd| `x iv4ExP:@rvȯŪs oFC: ~ZKx 4IDɨ:uV9}cg+!i:~̷SpqVF.hn=ltH<+A*uqwIŒflwWSt8̇)[:k"mVXSfK3I4'PLzHpY환W^]a"96Q1$.nj/a] yc`K|Ue'yXVu:5:$Z*B!e)5ЪY9H;;}~s($sW*<,dZ0~8 +@ 3]ߎ*ca]Rs?5)$;ɟoyaE(G$:2Vp cAS|aO)Z}afwc<9 Z^ 1T➇{ |C]ub\@Y\prd7.PgPhԟuɶpj)Px!}nO|[zsҒ5sGpG9{qڧӌr(s :o31Aas(vL2qu$zj}q2 06J]rJ'tzzIw!5ƭRgǝ"[9T·aI}qy,j-,/.*36ca8.ޙ!+%ΗA *@|r? NDZv/׍mLXIw}3B:82)~QcҀ3iå7Җqɀ_wZ>,] gbZ~SebDΤ/c=nh,YDZ>*(?E tE\9AH2y2N &.;uU@|qV&!i#~~!eLd!$CmFȗ-?[yqI "N͐ÖQt {Z06OQ,(8B{M*d3Ef0׎QIdijmNAgȎD /wՋsh?pJM%l >H%w |\n0X()R#ޞilUDmܹNaܹSDJX̫>> ~-,9aˣ CǣXW[.8*9Ws@K|^ǧ<9A8uc͡_xEeWmt^pIiEBbbIݴOzzK M RCiV8=+Wyk70 w; ;m v'> xs0zg w<#ǀqY${nOAS18б购_ɣ<$T9Lj,i&iœbbYylJnM,;;<3m zG>*k^c81@TxkHasMchf3KoTlS?J%1\%@\z߀Ps;TF XO pENl_p+$Y !yb.~{*Ͷ(eDS;/-b =PS^tM}3<Ƞz Jd)iQz|zR"'S+ϐuX=L} qCQA AN)Eprd>9R?f~遆آ}G+"6y!7'=N҂{X¼ȲU3q}@e6o@_")? 1m]RN@{dOgѢ;Q9tjd1t"iEܦ֕ ܫwcxS(~X# 9L/'5I1 䱈&)#J$iVh'н׈3J69=j @؊xa6 7SlZo> 2Ix)QWmPW6=>T `=jF-Kb iӇ̱ONX9u UME-~[7'DؙB\O#\wݻT k4qLֲ+3FxJwB&V z.AVxгmy ).'Bkwg@͹Οd|I [pX~|'m]#cb֨A7F3zGpe/ HdMtoJjN2O hñQ:\{*"RL<^ H/Ix6OM4a_n4fˢzcu~diS))w_Lc޼5NQ0->s!Ҍ=_["W$bC+7)(?7$f=<|K5wGi:M{ËDŽ.nۿ>cɷՑ Ap/EkUr[ZF=BHbm0 m>;Vu4"OP^Dݱb [;dJ,\&kOpo]t{:͛)0P;?P_~pT#iQ4!$JN#-6ϼ'?##w0`T╳,^CK%V|5* -$OL|U0 d5Jɛ8~yQD2C}!jZF^&N %SD C~nݴvV;4vCh#E (hw K~W07}|85'nزTƭ=JDg=i߼cuR g· L$6MLgLŠɃ7L+D94aܝ?R-jx_~=?<i^lQѵbqpF[oz4c>'gD3cO0q M 9$Gq}d/tt=buQ=%̰mc)pЀN:i) ' wKX GSzR'\{|" K>;;mFӆweRmxIdioRRLڱBЌAfy'fn:b_08 \gY:.)Ze.P3:G`JZuc]N;')ecl BsuDq?j;b:I-܎]Aa+3yioT '7~MRQ5l+ͻQ`7y"~v]/^E!tt菞"*6i<ڧ!%M0;vA?f(1L eyv{M'Ţp}2gTU["K}劌 )1օ=カO>!mY(I|f9؝/=+jO$`^D89/Tx$F̑r[l@"4(V)]ui',bQ,#YV$L}q\@x72݇uR$46?QWm^"1h͓l*ᲄ_:.WB7vN54n cѓJZj~yKi~ANv/{\O!~,u"ew-a[zXT]הڪ% {.lRݾAksZz/SnQf١/̓ʠ'{Ry@lL0eN>!~IX8Q{'UΊsŀi:w im1J<ɢwU2@#/V }FxĎ*Z}&A)n?~yҞpJA=*|V^j^Zx9>OXYÄR#x`W8$ڿQ`ӶWldIrʄ9[T4ԇJk} O@Fp}ϥ2O500 PZP"F9}} YA= j%Qԁ- rq~#N pKJ- Y?ñK]Jϥo0&..RN]{/;$bGZ~oRL964ĔJgGz5A lݫھY"ELNFu,n4=-*n3 g6I E1A;z9OٖU24ڻ }vI 5TF.>n@(7Zm H~1ƽ7s*8 dM={/?)r8$fزӤѿH&BEg4z zJ4ť"h3)'7},.+OJe:{A 9:Y/R:bpD\?7GHn \ۆʨFAe3 p9؄-L !&/RQ r2F`K-/1cvF92'S% fz)I\<܃IY_yfFXK'{?'xlH7@' ͋~B2d;ߍçK G1۬Id<_ؔǪ%,Ǎ4=iD%Z*r=3+\@Ϡ[!RE6J1} 4yRT`Ҿ;_mp.z~9Q|VĮ:|a~U7cKal}@'1v0B:3eˠzˠg0NfO.s6, ,"dl`8Й:H*|UKͨJ\}wAgn\`Z%%H#8f J"FMB5 9~8QtHU |,`GnɌ5kJcoG__^@@bпnD}]wL˦BewGDw b õߠZeRi<;_)gCݤVh@C ÚP&ԪA ԉpm=BW z9a9kʣxsx$jBs$_=/X~|48rUՅBU Oh*m"A*xDxiuL*Zni4~$A8 ʗRF "~77 ClM}wtaejkfb>Z7rvJZA-[^WgɌ9dz[ET?JxFk]]8T~K HzKЗݔbvTw$rl\iP A@`cb|-5tArS#DfpU2|..ƪ4Fw\m5O: _Yh7x@ B$x^3|*FZ&*yRLu-8<,5D-V{^*xc[kNwX׌wN HqJrZ;??uow_w0G(#-9A!t=X h:_{ԏ?)90xfnO8쪟wD`E-y~ ê!pO Xb->bC%_?r}HwZ9\9z@`,|l&'tʀnRrwt=UɞcpgCj*ˇ_PQO-&ZtIKFFBcxꄍIhyyUw$ 9t dZFsTHU-oU1$eR.\6t}4vީ㴞a}v+]Gpf6qii#myb{b@06 7)1Pjoht&gr wV6`xb"zC%eM, JvV 4wWDE\XaY/=PH;CӎCye*"E #N3P+mu,x(Y*{訧Gs Bi> ̀d?ZVcđpt r %;A*S-]d!,YpD0';6Nˆ1eq dğߛ,GAQJs$yvWGlP"-}W ȮUw3nB& a |2oCtM׋a22y8؎CtMU}rn3eBQk| 3lm5(xAMёı{\OHe@|Wd_]f$f1j".9ҝo@Bo`]n2KO/l:OYʉa%e](( kࣛ\ 4֘;W\?Z71vs7Ìzi }iFȷJh0X_6ԙeiu:/ a]"tC[2#zV&UApUfͩ{G% y BkUZ'jpz~NU fc =Po` ~f+$!v)Gձgm>79¾'N?g\-#mv<~ mX5z 8 DJ@K8M^ntNeF CRkDiN)TߑY{L2ƿ)ד޺Y/ Z\ը, j6-+K)tAĶOM_폼=;z#uk)fD)3֓F|đ]eF4Oz{4MX; 堦Tw;1{7!@+lD\_g۔4zb f6tP)ܗhAyEhR+2 @é3nwueGNE؁ Hsj/Cʙ KV^iX#lB6j"OI%p,PB*g'zCAB7C))6MFBiPEu*o|Ar/F>Wi 'iVyJ|863>Jcff9gI#ů6.]"3\=f$4>Zw2Πu ֌WzMYU0 ƥ)$FŢ^3Ʃfsx]eX$|?qK`E)wUHa<AMNȌ7bĔ7J5_shHuvAxKGb8eZA A@t:j?}RSw/+lÞDyZE܊g/+Z@&!A}]* {lź@aqe6"|G$B^4Tb؃'qu2A 5jOUZq9=/KɤXt#io`Zֻb[utHNxe `2YaE֧ R]x3g9|KEP}x g=)*h8wTPe H Ҋ0)!sXwzpA4>`b\{&;o1mĽ4j\+r\oI*x2X/<#tաઇ КT/(XOIK%{ 7 ԊIqI4=)iTlXaM%Qgb?@ԠZhqGTg;|tA}ؼh%n4j/v_;,-M@F65ST VuH1kcΊq߫ If'Jrdi98 y}@_#彷D?>fr.8]PAKcP @~f=N?! .E6 {akS'Y v%x{6o˶O`愭c6vܕ5GƷz}q#glL;|s^CM(S~E7(5Ai0;X=#TuGх73=2iRKh/W6S¿]yf8>u3 2FQhJ2/!X+Ml' p\+I5*ɔ^k-T)ij\@ +`'_tĝ @Ԕ [ `8;&+V%f4'j[rc t""gqq.cyI_ud RE/0<\+!3bW \"1ҍ?%4Q45&ȒE#;ga_Ex岅*]E0 Q65aC 5bBLmoh2~%ؗ5B,e,qʒԺ~Pܐm: nLXeg^,`#\t|NwH z_Ѓ4j ,-UyIWm as2f >¨^@Zsm;a}ٸ)1|Ns*IS{tWAwKK>q"Qn~?JauAQ+o5]'HQ1`pIË+X$x8B3/n}ґMd,+ W2MײV,Tv;SDC$^Q5g%Kpl`SmwYTUW& L?vnL"ʋA0[Mnz+KE M70[s,z!zC0UvHmQe4]Uى0n+km|}[/-K@T.uENzB  cpŰ_2S0yH] rq``ެɷ>EVT4NSg(}_& bɽ&xY4{cTN.w&ƹ8̹kpE~"탲Eh14 {p;hW3S 'y}B~ cWiqc֍|JS?Q$铕݋d Y֤ [6aȥ܋n;[*s x?B zǫX6Դr+-_*qn?@u7ĢZ!4C #͚eW @񎦾W?Vl ϓo'L)1*Hq pB W={^\W39AR=pzr[*(ef0=4m^KJ~<`lIF`:Bb= F>6Gq` =*n3E 0ޯ B8tvơpŊd͂܍o@د{wÄ Qÿbc+?4 pRZR)5V}(sJF@f Ұ$t*hV}%cʒ j;M]ݎ23pٯ`Κ_?!ն9Fyxfic hF"4Qj RO`BX/ ! '`Jt֤8\X hmG](2<ƁKacr&ڸwȏoe_0pc5&p 9K`fB;⺂NsV"ݒ(:NOI/8ȟ R? ԲA j˚vQŃۉh5x ftfCY) .LVuq,кbLyK4-t1en'FAGZqL@0wpe;L;iGaʞDm8c0Q}/kzgsơ$ Dv84=&fWi~ j9u3X%F zdTJ鉡;-_V`egQ$߲OI[[NkY{-o.h~%mJg>qe [|^+eI U:,Qn8$Mzhɩ=vy-ѧoN~D]ԐA KX$ i9֟ l^Xf~?Y{%lnOބ#|}ldƊi]liZC|8:'fF,&휠; F=3DnQ=2&ͅ,6 费+>ډzq8o|фƃ%"f eܶs[췙s07'7cf!A9M,3aJx ! \˚ȆKQ_`2Z{^y2\^Z@vsn3ش 6.Ep3u6 ʳF3I=5 = s׭yE#R^fD%8",GaT{Ƈ5qa7ژMYggS05UpN!׆5ܽADI^a`/|Xћ,CLSػ`2Ax.J22(*k1OlMfL(WQjzVwy_jr3:T5 QE1A7=W< )zh4)o~Ra%P^WPx\@r|f#MXGb'pmo¶c@ BOjhVD \Rd og'sڷ2cb ?p. LZ|ގV$#2Y&cIs?Ί}YQll3Aɂ Fl."ٹ2wg39x,#l9dcͶlӇiƢSĭQTL7lF[CQjƫ7W, ޑ'N(ֲzp=t[$b0 W.r 񾨈w>}8eO~,ĜGhǑBO%q|I$o%rO:I8]abHu'*UZqZ(DO,J/&'=]SAYȝC7&|Y,nEyv T.cd'RA4EyHtR1oiˠ11rZ 8O-]W`Y[|jhåϞsju=_!)L zTWG4r5K_(&3v_6Gn\=BO};+Ҡ^tQS&z!wO+t 8ebvmJ_ D|%0f?j]Mt65L; U \/lVt)3tu o[SFVjdtA^ ^kl\XQ;$E H'BE#@J@ ED_ޕmk)T ̃7ʳpU[ ˌ.mf{'р-`RJr)#MA c-!@H]!ތFt!o{9: WΟ&ҧ%QVJd^ED Cʖh8YS}u{^|<,}÷1x#߻WPƉp3$WU?t"ܕ kNT-g[7nμanc6ɬ Bf11¨0^{)1]Ck3"i }S @8hDtC~aM"Uz^ r]0V<|U>@U)ͣ?X5 ~#}4Ԉ{E&0 \na0OzA/bIp"Qbw7q)~"8Ѣԝ9;"HTKJΞel߄^7[^wVvcB:c6d-*-Bu^ )\Ov -U$7@q;r0~.ljnfDH5(7\p*t6$IIq-hc,- 8ݲc:ϐ wR+/: p#IE,=m=aPjb@٩Pϱb/x]:D*d̴Qz{nY8`~:J$HtзwS1!NZ[2~6>t}E/C^r" :flմ״s%ikZbwQR߈cFh i$Az\,'?א2 -z=1بP *:=8vNk*}HuF:4)06U.  ک"ح#71*I8pQTيH['Yhns9<ec̳>O yɤ8D+?ΝI.`K;tIhmG|hS#(<ɤ^2CtR1a98*kV}\ ࢵ~*) ;Zr#pV$&s+AY4=ڶ& :5n94sJ.2e{5|dvi^f'#5&E|;0)*DNiMo0,u/3;x^ sу(zS) o;vd'/l҅In&"iBZ\i~scعP(zKO$7OMVյ&Xɠ?`ou.h`{0<]i lv{9kޟHa-^usZx|e+j;a8 2W+4z>0QPqeQ#)$/g](-շ :|hW `Yڷ"i7hza7b6'^cOGA1B*}Ŋj\."|97- rmr4IA>q"62.@r6IG{t5;(Q ؽgfmu&*T*49i= -ճ3˷9Zl>2& kXgpE[I @:p}eT8xOD}ÉmV/xю,1Ew|I9%LI^+ bwV~q⩗WOµE&y 9e`ا'>]婾bԳʈ5 P30ŏj1h#UH<$R8Y|Ɔu X㐸i)R9r'Beo 2FoiG"6p%8&VXx;җ'u:t$hZќ?;~DqhY>ʛ0{i"7:!͟-\t.4pn8W4f#z9jb8f׮#C9S=n:f&˘WL:blH`h@a[<DrԾ%͕Ε5s8xwAKuYAz~Y[4xS*8F])F;ϼnC{7dJ`ҭ=6v 01=v-~=˕tƨ"PT(=`n3F^Fa63DӿڔV跠/{l m-7tG"9ħ&6!dR֭jiy`Sʡ޶ťzAe&: {OuI*-3v,{X^N^bM6߲~&;e-X\/3 s^ޱ%I#Hġ.W$PsdĆ/lY0{w&Ӹ5C4[v}{#L&дPR XL]LCطp8v2/2j#@O%oLn'H+ze]-벬eDJ|jp9^;&=*poj̡G'>P32Qq^R+E -?+z"oj]&8ŵGn@Bi_<j=Rna$EP ?wG <4ڄEhݜ%Ϲث"q٫3Sm-vf(eI%"2U1٧Ƶxh"n\B2j&S4^&gU#b-dqtHAgl> h*i5>v+LO8f" 1?'bmsr'EhDP9 G\uh㬅Q4Eհ^xH(@3=wbi-|7(n~T$Z+xr>AņۼB<a (np҉p)|?t%s5h}ѿ+\8ʄ^#c1%X-Ubo ݾϲW?R RF;"%#aGjؒw,'ƀ{%pQZpU< duasCSSd ->:5Z< )s*'O 9Kri>BƑT{s~ Oqjc7)i'!m^Ur8]+n]$B똌C1^ :he*)6'VUcפ %qjg`2GF["v74'iR,-lǞ0-zSSk ,ߥ)Ͷ~3 u|> I]"[ )aOlqN^TwRhغWfЎXD|ga[;Q*iw)_Kweڃ 7)|CQu5AlŇLdSw`=WQ _C:grv8 pr6h5$rR/]Yk ߾چ=,ҋ#:eYb9y-\Pmع)feANR|{u-7]Jd#Z{n|ĿA3 ) -}cV7+[PnHT#׀Fu K .Q"+:{ߢ. 򒐷4u|vȬ3ڜ&]paN^O9K&_=JhSEۡ(Jkq];c[T?o,ƹ*0߾FŶ!4je|J+qx^Kq'8ļ&ǯν=$665䂷>(~mmĘO%9co}@=%c5"Сv'<13W)뒘](JazEi:pE?kC Syth@8v}3afK'3{Qgtt|=V^5FHOaS>tw' Rhqvw4ܦ v=`Fr7t1O1pGL֠ZK hvYA:Fat{ЍUhhdzSLgqz~x+Nk+948iSFS}9Y9U?:5\38K~ݷz23G-_qmP4U%; rI2 'yYNw.5e^fr`?p5` ʱZUf^;H`-l'&O9Ks(zۭv5+GY-v1) tqyl/eo?^ Ѧgl~-iB<LW6a\CVuW'CJ8mؕˊ@ZwEMҲp)6c~7cBxکgJ*8bQwν~ݽ_Śט+vl<9~ܲlCcq{TPW cТ/00Xܭ]uUЁW<p46sVϪ\-8f] $$֊>!Qe I,{P`_s{l@SLv ڹ zl <.JF H @jGwISVFrTw@Dօh.Kq24lZEJC#Z%םyOO=Qn(?#N:Y6aHx͆/ wK05E]L*4-Y6qmD+xI lJq[ W9^<| |pxlʶg5v(:sp|;DS@*`Xoʤc #aahSCG@ͼhGxEɮ\'D3<|QH^qV5}=֓;lSʅGylr[m#4pT䫟ޟ]o?T^@RӾH؇>JyP*wşja]X4Q&ets~a}ގxa7KO<1Z:UUOFAV614Kw`H{ab3trF )o9x嗇/rY9tI=F!=jmݫόˑ] g6ED{<;81;UL % Ջ"0AY&o.岈"6DH:ː`bhƿXlv /3?D/v^}VWuWjlnR>Nv{5ֿ/ 1hs֔`r)o' 8/i:~A͡zb<.ukpN"WWEpfc–x1˾olş&mHBvq&̞ FP3){ygs̙+_x)3&#{Wq0^`2-s'|A Ő3 $N6ًkFRd'4T~PjHN:߻{:_ĥa. r{TDwHǤQb.]Is8a3\y5Dme U™8_@|AL_ #'=P;#C[z=i狣]>_2fEϩtA<GS8);Ll$t|Px Qw!iHΖlAml-G^WG 7UJe u)!9}9OW1=ǸU: kRm$9zhv2eļƿƅ{|uO6b '3>{P8,R8%g*U}J٢/`hm[}ϫ̌p q)@M؃=2ڤqoNP,=cGRpieuu2Eٗ0d,0ʥ ᬟ?&E@_zk^cQJaanrw1%U?(&h34(QY~+9^jxHx;`G>7IUS- ޢn߹'\6(JlrtyaTiif)zhe~*o2YeLYZIϼ+Rx"r)r{dޫڦa~wx4 KfCuMI`"P™r=m8<a?==:ɎYbX-|*UyLH35':ދ(oycH%NOzS ZY髧~ (ynjYXDS64_OCj2%zE8 " ғ?0 xLaoy*S(:fBw.//~HF-@98$ʾ-C:=nv"dql}woqi>@OMXH/]3.!'BmI&OxHvkΤϏ7֎r\kFxG+={7PItw5|BXˊݦB 5wj~)[gC'pekmlJ'm(&`a#?9U֋$^<=PL7BY AqrFuCq@dyc$RY"Glٚno(˛nEax\bBv2X6Ph,`Ni[, RޘI쐘ERWh#)O^+6#sd IMҴ(J'CtM"{-{;{ B3._`>ArO0| b]dޝM:'@Y8*KɨB[۾|ٳ=(`v8? ?H ˖aKYt~z #t%n!usqE{^L4_͞2!Gv-D.B6-O;l.l,[ R^j膽AT?x9zSS;M9fS[`j _.hȫQ4p$ƈo9غGLvoSվҤxWv OīĄf)29&Btޔ+1 T1ǀ+F%ŲxܑE:遣 +~ơlͮePX(y1VJRRK(ZE "D)ฌ9sMvO-p.&EfӠy.z]>F}^ѰaXX-ޯYc$Ã|tY#{JiC+-}Yk؂6uf=VZ9I[d+]<' "gkp~lx6P!Tm~+ԱAv-u`VX3" ]0DRz-),-柁08d,S r+- 8J3Jz=A|εj24tT)MdRRPca\E1ʴ+M,WEjF'1̬D99AF?v*F[h%RlW8m"O$`0 $v$jǵ%٦[~angbNPj( ҟW#Da_a;3s>!5pFȹ`aW7b:jkfS\I"san\6r$T`Qп-h'"洢ORX~1tIˠ$'aəܡ]lxɄ=eR!܎k(T_YE+ v3YO&^O|V+ cmwh咼C7kȯXJ+ǚ(W/j22\S;| / TWFU*\F$CL7Fd[LC9)p~gE5G{DF8Ǚov/\W鱹>NW65TbvaF[q{žʖN޼iCC oW-ajȪ TШ&@~ E'%9lx~t1W!"~ԭ CP+WtIgٓtGPkGVzSFA}KĉBm $+@'pIѵ "oHBp fҋ({0~Ss+PZtO Qm#9.E(f\ӔZ 3[`ڹ1ݹebdnXy똞ybX/u`HJRݒ6x:-}t]4'yc5b"xʖ6uK}SޟDjKg"Br@3[RJRz#S!x {~iHge&0?ub[}Hkq,grb[ߙŜ<&gelT:>>GB'(lL2+_j,al$#sdVa*DK4}}dl ]bחŘj$nNiC^:.AKL &E]7Ofq| R[.| qxtsY:^nHONf~< fC+2V'}zE<U ,.fx9giQʨOnY~ 4Ä>޶4:Nn֭val(XLRvRp ٳe+SK ؟r)M϶ 4;3Z\6I=.4c_4ݸmtp~m5 qݺ8cQJ856h$S(+zd?]|uYLAt@썮Z|nlPojىLY*Ç8gksȥ"o/9Mu3/)WTGGƅ1-=r2z)8޵| zl3g|s}x_Cd?EQۼVS=͠?O_su,2Y1˦tozjsoewc{*3(e ZD9o!az]%KoJStl?l YqoY=B%QvJE(N)~e v$Q%QߪPb*JAF 4ĮNYc(H63{8uW&(eA!xA:"2U7TRF)9? c)Vb>oxEqa-Al:޷D手XsBUzHۜ#Zrê5Vm[\ ןc+r)̺vUO!m[Fm4]x`S&<#$z-6~28wUi)6PB|Y,vY:U+zџ'/Ly ʒcvz-5SnslhS]kG= Dp:۟af}'06"3X*C]pg=vvYһ&r`GSᯐ:B1ѣ[pZ g:$n7N"*~5d-ANe}kQ2l"0OsAR2U4FLghАV9SV== Lv ^NHa=@f =ˬ7=TP:TوX7oKhҪoaF'F=#j ?GiRXSEDwfByˮug2и #b~ĮU?굈 >Y8@p'?LCa(QL"uEM,W.RV/ʿL~%i;˔\"[[Xحo @c" ף.aB^TmU#ڈ?ӊ|fw<t̝2S)8 Ru,j3ф4v֙d@=ZZco^b_%R5+tVZV񑗮Θ`|P%G) 7o%Gp61,0@IV, A~nNLpy$zӟ|X &sWT\=]sGݢJSBQ6\̜l>Y>f9ޛG F6z@a,svtb[D:j>]k4\究HɮOl|*;(T,1\[e[O{kdɵoQ0ݫJۅ3*7t 5J(f?Q,[zYcqdh t.I{'|s=5n͏Z9 s(~"ɹzpSD~4xNܣb!u<~~,j'3bJp0y뼪B/`ne~Fqk7 /}wԕV4٘j!ܜZB:E@̢A+>*qe ҡ!:p; .bߠRR!Q68GBfO4\'2 Y^e[o,.zq7.+DC͔C}Ղ`0/ёALIlmrųO4`SPЙ>]ܯi #E nzv`!H5FLnVB/(#eTТ/l3gt7e={$ث%|9o}Ұn˥:ܫtv<Je5~ZN-,CEJxR+z^Upݱ.G#YP\ZO05Hg}+2hr͝/k",.3H:xާ3]>CP7_ق՗SV~3 ɰ[h3;n{v35p:@{)Aiެe͊(fȈ_"g3S]FBsa% ™Qd𵽥@\UܴYpVseAݑP v@ ioqR{b]½'}lG L[KNRyu㬧 5-=p2"!S󷅔뮟VknBR鷂47$y5.D|x6#ƨUugpr~mJ̳k NhVt=((o"m5Zq8yl3KzB&A y7Rx=F}f=}5]\v o8#/2Tbb &[TIvuuWFG6,^@k)Ӓ[>پ)(Bk_ma21o" #HȺac=ʎbA Rٓ/8ve eI=xtrEYƨZ)\ $ڞIX]xζ ~tYp#*y $ˍЗN0`e9R(E-LhQi#Z͖4UR4&teLqQW;9J#"VH*# };HBE`@ WZAYۊë́ɒw%-Wi!)5MocJ R4#pA.OF7^|Bԇ!RXel9 R>F|"fG1BXS3pO+X̍&v[ԥpNG0Fb_0Ѣn5ʑQ0A V:*ϛ613u/gx^P8Qq7f L^)j)W4 7!tw**V>3@8VyJ-m5l(DvQHD )JёR_p ӓ$JȔ[V .n5DȖP3@ c*\3 k)(Lݹy=nVd-]NqFn "h_CrV?VES7S2]k=.*eN70ndY  ֔{*VZ)xjT_'jii !yu8oPHVs"9p5ISز"$`l%,JMC{R]p!ȇ9kemsmhH9b |`^d2L^r _JJ@L7ըCԂA>SKLUbS-F.swLA'B+O_"r4Eka0J P@7R~ݛ"ͳ1D6gD:Jzg$/ai< rn,b΂|ףM S=^wR3٠HRI2.ʠWzgi_39P?HZY{R:Cvo/.NdeS FxhO%g1yT_`X$n :ݾƆEkּI:.JxӾd`Bs bHEANᤰX@U>8sHbLb)P] !i_j.+yPHCK1'=Ys9fYf>?G“jGQS j:>֩%5(~CD D*_ ґ!Z4^ xmT A_0 v(PXSF'tDq;FG CT'w9k*3) _wԨЗ/c+2ϟvy_m>o=y`Pa'bh>1,4 A-עTٗ\p'. ÏQ_Z 6l]C3)h{6ghI/,Y^qdUVM@f"#]Ljnۭ xcn_c?G 9]c"C) 'Lq)dvWv]t߽ꏜWx"z60Lп}7 Q9=,hdBpͤCiSV86n):rYix9\C ]Q=v*찯eEĒ|.c2ao#jO=m&cu%lz46=V"pMdV:)v8eĊ;=V7jcek˙3> Annp:x'3Fs@Jo%p2Tj SU->kf 6"a'i0\ޱmM驎TP0Rt(.wX(5^т)Vœ-$BntHL=N=\]7-ori~S櫘F 2КJBxWʭ.kaYN6m/I[5?vjh"Jt-ZLSF0<(Ǒh)*[%-sex ̬.XZX7AxVp *9et y;8GoQ 2Cѥ.Y)AwTy]F6Ϭт$peoc !԰d`IPTW:Mx+P.`==d@&Nt'/[0'Dz}4Mlğ^W㳜Q0ۈԊ7iyG}7R=(oۿ])]I$رNRߗ77o%"8޴ki\_`ךW)P-7 b뿀M`=XP:r_X<9&H.X=7_䄃/uTH“>PuEBl:ݰBNs^,:H}|e=N2B]cqcJR吱&"˘Զfj_'`:s֢{O{$'i{ef Hd{PY$T>a0uNAikO"}T =w}/I v.Qy>h5K[W.xq@ӵf˞`&B;җ_䥎D~i.`)BWʕ8=' iog8LeÿSz //Y0oŲ=6,}(#ʙ5p6y9Ko.^b80~ 㪒8]`wXkn<9uC H ﮲|24ԘߔVo+:MkGo">uIA)V.\ CL b'uMAM._Z0=*'pIxDY8t.w&ύE4}bҨOb+Kli @8C 4_k r[H!)dbAř\%vF[KHF{u8\sFAOų;cEgDY>ogYC5FP2σ%LEJ%̭l>Hp8D{ɸp8ccX(]EN _vCaO(/>s'O~KjfV*֙gJn+0%!osu]k=fx(CRkZ4Mqh9Vڵ@SݬpFr[/rprX XѮ^\lO9[5#Yvl[B zwLW `E 5:FJaϸylb 0z!Pٔ\M"1'S̸zz MTձ u;#X:|5GPW0)OpKύu0{ʩuTTQT.ǾWSv ]v8oQjq`EĪ썆ɁbOW9Ib \Qd}.`:O!v.OFR+ק%O+ؓPP9&ED|gӐ-3/X~!S Q>ܼǶ3D[WOBnU=];sqJ_왰WZfDp>b5ˇeGYc^b?}]`Z`3+~H7{!ݠّr`"C˦i|Vcƛ`M/d͵3('35t9Vla܈8QH.U"nFF/잺J]:C *!7QƵEMػ Y5kS_s/8JlW_ ( 8w/\ "L9`y!5R Q,GզkՊI?.JՋj6qbP[9bHhtxe˃cJ%š)o Yo-\E/DŽW6 K ,]s31!xJp~,_$_wήIf>԰ʚB_%IH@!:t1,!}ĥkz~"nNQSH⟙+{kteUORU~2wH`:TO[dZGޜizަVzIVdnVTpc,$;A#kl0;/krVŠζWi2Au'18/eml':otD7\a"O&DM/=)e`$Hcա旉xIƀCB;Y0nj@Q|D N!*:mGyDaܨ%)l׮p^h{?6=h}rĊXWlt5~`'i%^űbS/rr^W|t%Ft.g%-sDsxm2z?lWR =H! ׎@o0k\=V7@>m8m=0%E=QW >@KN r܁"-iMJ ftvC2OAսViMt6<G|r|Lcw;JKۚ@ )y6E?Y̐S8wֻ>;YF T|P:R/2XXG]D?52S)MiX/{yV ok*_ñl. >BpJE⻫s}-TC1F Ou9AëC哝<}LK߯$vG$>/w~ݝ !@KK^tkQٲѺ )Z1ѡy%R ce y;X;ARMe;&s-"lgڑsJ {ZD)w+tavŒzz+! 衘}fk)W`>@fkq_{ݫwoF$W\S]]l 33)P>hz-ߐ(^RyMȻo}u,cm2Pg_Ĵl+G\^8<&@oBxepa*hªOY9+-RU~?!,$NZv@9op65@2c$Ve O`KSߴ1S`Yl1gXS?4uѵ-w^b2D)'Z[A={uE[&:OQQrE8^+ MuLwrʽj|<awT6_V ߈{K`lnds #[exL՘*_CW% qYᳫ5 QkQ ׶ i5 Vs \iD5N.rto:WZ PC, ّJMtwN]kO\Cb'MpN@s Neǚ]-Vlu S@X,1ƊדIz>-J8 -$RNn.i|![7x2RuFg7͌ i#q ӃJ)HYAL MC[)-@L>z_F} `܎m(\.6R/$)vۣF|!L\wqeh#_כ XI]D`E=P!};C;xe3,6w]c*KNhYGD4`:޲|6Bz)7 l4 fAs@:j n̴oΜjGQ&ICm̪w-TZlZmX'UpM/7陹ye]0N{)7)riؚ_%\)^:zL,͝W/֨5b/@R04P2-(DAUs!'Nl?]jX0k]FP1h9i$GEZy88; `{mLIГ%m,FPQgUV]ƭ0ڨ*N)o ov4 ecKoM!X^;aɻ!P Ik[lg`vk!MM4P`!qrxo[_ܝWSM4y6Eղ ٓ{A%#ʌŖCAj(|F&]-)@3Tι5Хb20-4YI-zíavCgbMf1vЪl .\=^oC#k2:A.BR9u4V< ~(yJv w'Iw8uCA;8`s?SP /2=SrqYe-<^TiG٭wM'ZyHסp(m eҧX1 gâ؉D|;1\5Ӱٴ}SgB5ρ|DGHd|^f˳.2u:fQ4ZOz1A0DaO (A4#1".3M2[m3KR*yZvwKJk˞`pJGVE}70\IIm<3CKaI$1u'bT:]ү'؂X1͉›ܔ^YԽDnbR{C,)cxy! h"-( 8{اp C2_|/dCE"X*Hɠu9x 2k&/@] ?wNUPүҦˀh}y#~B:ih9.1TG t#+ܵSUk uxKtY"̓M˖ؐՖϹ_f6:?K۹-tm=O)jjkk#ꄃ0+xl(HFՇ駬& z9x]FѣJ#˩P~a m&]V5܍K<[n3w4cANt%|"6!>`zgr-ttFNoǘfqQmmj x]O6Cש[߮bqju>=Xo^U >d'BH''lQRۗMJ9LRC!f$3č?L7JctF{*N\x!wL?rQU?RACVZMJn)ߔw@΋, G=ˋ@1+v4;? 嚥N!%&YD]am|>>*\n|`˶rEa~ |*L ѳPFuLɿ/{`G5v@t82)Uzfia.u߉ "7ͨx( `L*!t˪=^L݊I~]]Vg3ay@VweU1-\.al,%_8>Q^3}Ij.?ǰ}Rlj LSJ1zU$`Pm\j!'C<<*#(c:fxa),dm=WrQqC*墠)30euO {K^׾)":qGC>MfctЭ@2Jk撛5Ws8_Yh(S ˂MQ4/緌iC|&|4:@daxWٻx{LzJ~/ 8+$'^T2F16%J qJ^4˱ݫo].F"IKL?߿vvyֳsف\4Ad7$%k}Yai-ja~ć)=V i<ۭ-"IŪ8?T݁rD4T5p +5W,(e$뾏O/x& $^N9k0SrhbdlURL;.׍rFD(2W"?&}?! 6Jask:uXrZ-,{2uA6쬖B _=ei; + mW;\H+tThI0v/vqh8Eq +C/LfrU=b '=N̪3Ev=Ҿ_qm7Eƛ:t[ B\7jd?ձM<^}naEW~`vضQPE{-(sm/z3:r^lٟu{Pchߒ*wԮYsb{ߝÜM$.Y G:(51ImIy(w+(쓤qk;Pm|g d\ŇlHlM}Ƌ_B EM切J|>~? :3g{6k 8-ܑ:;IiDKF!seޓ?uwlS܀D鏦4S<0ٹ_u eԙi UR̰=ϵS|:d"' ^Cf4!zԽܬ_>G{P<"Th/* :KsA̱85Q5E`GϺ4NNLDKr2;ݼOuj-ϓDe,tcfF.!mi~ВI)+?zh:>rJL,]ܚf ▷p . R{#VOo`LR~o#3lbG*A@(Şnx_ ġ-̚3S=Z蒌 kh6 @ 6cEˣp8M,(,[B G#.)[L!rIhN<4W_ 0Oyn ?oZEQȳTv_|K#г0M0AɑiJa> yMM)P ʲߥΤB3TfV(Z)M*U5{?v~3DzNgZ9]o niC`C~؇o9w {{5LcإC?'?~uX !h9 FCe~*H,APGɚ#IcԹ> %U؟Jd%Dݡ/خ6Z 5 2O ] DŽ5zvbcUA=Gy2|fV[hS&28`'>!!|U]֕Trv=\7Rb4VUH :d2]`\㓖 agi߼ mcYi&5Ia߁aM7'tW!c Pŏ?d~PiD gͺxNS^UFg"IF3/vKtB_Оf-FMB|O9ap߆Inzd_%iBF0iPum,(k:TZ;H03=+*PG>n4Zfbzɢ3fFtjoEQ j/EJ3.GR;~? |@ODih'FЏ.zhJFB 9Z!ĆQރm"2#i'Ti{\SGBL=3Ƣߠ۷G(YAtPy,Vu;ڊu]w&҄K'@aqF;p? Іo, ֭bиww6˖veFEdPΜ6OI܍}x`3l'Jsl8[bs]_; =|\p/~b ϊs= ]tTi6N22>s ,. ֲK -cgc.4^9 uOv^|pTbCMAUR ?lՊgO"w棪5HSUkI}H ]~.QJ`T'3c`^@}[le-܄^R\\2"&$ Fdcҽ=KU7ЩNחzN9J҆Ț[U%e)cJ!Dtw3mUoyqF>3ÞO3F E/tʓk۾vpʢ9IXקnX0Ò V .{%:j~&A]-p1*7(W&$B ?Ůzbpm;Py ?r#U1ASkm^-6XS\&xE9v6Zu\v}=,' ]r=]@st7`!p:^vycיiaK]}K$0-C+GHqwM]To^F81Cd.fzW.jAdG[)5Td|6TוDUHg 6t?8l"bbes&zUyRu[ՊX#u608Sp\N⳧aىv׮2v.& m`㚾Q|jr''3'R 6Ej_C1c_'S }׾ M3!":D0%}~4gσ=sX0|BN36crX`)g==ԪtfJ}25K&yspĚ1z^͈:A 8Tx&W+0Jװcwc8=bT GmAVu\ !ᖬq"aLɾ/$@uf;@nz>HoO-p9~ޅ՜&^T?ZU0΋m^%'dMfR@$ 趇[I~AQU2Ϥ./.'j:mm@IpNw>{Z0gdX€bԲ욛nfn1"Е™c-M"KL]vz4NFoe%gOzÀ7STѰ}懱YER,syjN]3 ҉=Nuϋ9ه n&PLh,tL9JFȹAԧ(`Ӟa "NwK&ˬT :B\)4Y|,gDd?(!⩷HMN1%gQ/n%GBRr`qD%LIa1랓ݏc!˯SR,r۬Ԍ)lZb`{!BxT-C  U`D{|.&Ҡ=x! Z3!фp5kHvܐIuQ3˝c zT1{-yhv^ṔXV_e粪(H𓭴8Tp0ph7D|[xH-аG*L/oWT]`0,Z#2%$|wT/i{\p|"YtDc\co\@ %Fi!^Wh4uSâ9yǺr"SE=-VT6X>AP% c)3>$7z*?njTdWH{ f>V\W0#bHjKǖg6Y\7#-DPԡE+OLɷ-+_4g2n)l_ss72] pȡC [-zЬ/,Fg,{Zv&.NJ#oZ\.rv)na6'FZ Ã] i>5c5xR.RP+@;R#~K;WB,yۜy="\Iq!yJ$:-[҈}F+]a>I/|b[l05i)''~{ W,PB.ac /Z +tLI?29bU :DŜYv9CCbo[4~J_-?1K0}41'N9vyKSm)xM-%]MS9exz=iFEIh'qz:n?Z(moŋV*gAZ^y'ї˲j) P;TtaNo/?ID/"ӧ0ĥ*^"m0P}D%Džk9UʘeK(J!G,yQ'/) jZΈ5UxwM_ HQ6H4IB0j_n҇LT`{ww׾-+ބ!gcSpbdi k"\XUҬF„므Ў5JlvLZ F?|![SK| `+qugx|_6g &Lb48cWJw_“aH#F磥f7`?j8cj # $׺f ,Al*?!#0G>J~_Mvu9& ZD&iSm-:rsK2z;!ba0DxMƷ}PME-,Ke}}4XAeX|~5Jn^\}ĕIafx4mQ&A7eBX!,.F{4k^j9vX$WI&,LeqڳU0~#, @CZbVOI둙14;;0wQyV060;ױ HCDK:I؏,3{WX4bx~]\9tCqUue, /{߇`nZD&#!#<`D׍Kg[2%ljL:Պ!H1~tjS[aeޭr\"E'P > !$GN?!h2tV\ ,ْJѶ)*$ R*-YHƛ&߭@;MеC9MDpcm,J b#Wt6Fſq=n5V*D9NQ3BPQAH\s#HtWp[ZRsؘGDPqj"yYh}$Ď}\?ܧ 8: +ni*hgAvH/+.N;?[H"1dNў]U$J_:IG>Ì_;z°J!q* u:*<(>-bV[)W .vk@zo 7xW]B,w! 0#:3j1!=үdܸ{NWkqrSSׂ:x}1w0%ܡIC$1kld"擊a>ZW>p]TLFrNel7;;2-;zKaj2}r`ЌH=-IYoAEJp\VntY1O?$UBՙ:_;Hr'iZL5AhSoéN8%0l_pr #]BmՌ.1OvoDsc|fʢ3@Ovvm]Ȕc/Z(]#u78a zVJw OfmzZ,ʡ0\ ˂Rs2+ } jeKV]Vvc]y՚-C~u=#Bt0hP7_)IxΪR<']R샒ҟZk%\/Țwٽd"rtҫ4**އҎJq/T=H*[םS&v0æcEu6d93?;5\l#Ͻ)|,O}cj%N?)].[D<G[W4pe'F߷>5ǫQIL,Z SZόP@ڧ š[0t5l52ܘ(T,)IL_@e'5…7-:G% TW"IO#_s1h(i^a|6G %&{VC̷*m= [~s`+&‘*=:#u`|WL[ŪE %*w@H,a=bEh/Kz${4&j\Ϩ.mim3Δ9 |P8y;`gŻ!-C^p&)~k~ 795AocnW!ELLWq4f,3CP#cB'd)dtmHsA}~\R2.&u#l`bv H1ȇyMS/ >޳OgDU$:MpqؘTYF~M(Ϭev<)ȣ/؆oibޅȧ&|Xox1xIs (O '@_D$<ۺbDPbC]9BJ`~\o`D,#@r a\U)ms=,igE\Cy (FM2dz;+u&0u 3 a̮ɾ]]Ś\ {qךHn&I "ҁ'FvV|(JyʟTN j7[_6x5~Ӭq0tK“ C#PQм6~UHAbU_KHkZd:W# :C @uJ9GfW>%AނؒHy.[lf@J#\@2,HdǑS<bX\A®Q/w(!ACU8׿N$rK nK:TruD")*S~Q2k`[d洼c= Q}b(!]X3LPQ25]kDpS6 >UØ2Փ]#(+.ddp(*-(K?tlgyg>2Sf0=>(cu}l)C(8 qg?}RK9؄ 0YtOCrS ְG%QT iUQ24T̈́Tc5CJO!?ijk tcޠ˿r=PCd*dqdb4"-?璭ڗqӌFy3xBƙDd驓;y~qx#bU0ō# T 4x`(fԯӹ Jyek-# fEc㚪zR@"4g)D!}X { et6%hXK<٪ tMQ'a#x.WeSޮrU% cVYҡl ƑE7([Z{0)dRh Odum/ýRYGiAɳH }כuewc 4Y\CWMuĀ>KAjhVNԜV7 #JCWiW1T|8͝O6t?l`ZbluE% ܱ)hDrGBl=wiIXS~EW?p"=A08 ϣ]z@Ụ$ht6Q{,IB?0Ks 9üP*6:p k%n fb6ۯn79.>π"g(>?R:ǻ 8|K"6o fwoOOm:-\/coqzV\Z 1ӌ/̂{GhG`w\|Sd3>ʸQ6x kw]Z(#@.@^*ҺI7H"b: (v"U5:m~0Q@[0A Kk9kPX̧^z(RfЛ :^-A ,sR;ȟr,`+;G{Pb(8xF92: TQ2˥3:ZvrCa,~b>lz.ٌIot4WqMT~\stoŏcRmkpu@J`5pn Dx^4 =}>ˬZmC.6# @5܍hWM%$LTa`냙*=ڧ I͒(}Te&xo%J~ڃ)i h){V ff_6{rbW;edR~u[,2}8#xSABD *aDDApRK Cv C_Qh7RT_t1fY^jZ( $5oM޽_Y6]@cil[YRyA$Qml;2n߈&b_*1R0s:̶i٣"!GGbcyXǸ^w̅n|ټ٦oIj䛕 %yW>Ew QOs< Z 5[=xgp\슶 9`7 è;{_W(LAbX`T>mdqS?Bv"xwY$elu5BFȿp,O }XxƟCW-n6%6(=ųlk$@+s5Ǐ +S(=gC׀ !%6]Er J2Y+/ c?;|%UVk6Q ހ`B"U(BiQP`=?G@ RsBSZӗn%#+2sv~RL=$F|&.`Þ]ő\k2HRyͪ]Bp5j z 0T7("+([ ]'e !s5h"8&ݙD6 T͑ $\N9bDӘ1-[50+X޿c-h} db02$m}w*[GX@r+yS QwպQ!0 Į9cm2$?"B &Th̢ȺCf!sRĨiipUΞJ מ*O3v 4s-ch^N d~B9o/5Ψ9[4!ic@hxr)-sËPb`%a!qFSDjcKg8K$^zvjǛn4)eb3XauẐ,b EwXXFA~4x9Ƿ4Iv?A(Eko}|2^6NX( "a"N#JCA+lfRp p b{Fo)}Z]/CSnqE[{a&o"[Le9-C,PJ/%zh! T[stpT;úFFWy@Tg@41Sfsy 3Pt Q(`]# X7"pRcVHQ\>%uWi<20y4kVU"E9~5cQN*r6,L*g98JrOx/jsOXgP6K&Ʊ䣜X,Mj @Xc| 2p)N8<˪s` Yʯ:!!SO#0t3u@ȼ@h}!smm\*ƿI"6(Z{e1Խn*/CۯGQ}jw 5Q00_dXx)ڠU"_ n)l'+I;k-CF}3 tR836_7Z UAr-YRTĂEח"l$uwV+G)~;E9uӍ4AeMkWw_ά")^%d\O#)$vAyΪQ}\<Y:'jdC2d@؎Ƴ0LZE-ɲ׿733%y$ <$}w2`ae<8+~Ԥ=1^f\)N&T;[#/"&O\Lau1j3jЋ.\"$$-n[ڌVx,ՌM$u4?;u\jOu|M=5>E&{.%CdT(t0~H$18c~wGa g{H~X>h|bªE0 R٣*qFLJ +[5B_$(]n]kŒlܾm7cXG8LױYh£'}J/}({(m\G=GwoRjԇSƪd}.bCxd>B c?դ¥ڬ4Gs++yC<>R{D$e;qFZO ԥ7ǃo1ktkQAQ- a|j?YՉ@Vs|9Ϛ> Qg<&xF S9/́ rsYqX`!E#bSZwQɪ6{Tz;#ۥN<_^{yoTSgЩ#m !9l0qjP'À'GgۤTpB;ޮt e<#Hu(^DBs墣>8(4;jsh7 gʋyu%*+[aT+t~ªK^1[j\^ۋPbŁǛVM Wu'';1B;#KHe9| 󋏷Qbw$i*ahԹ~`\ٲ]OVDa tty#o7Wj Ʀ뵹x P F_[Owc즥jQ7cDf#}na@TO^XL?0{ojWjm%?*}dZB5'$1wlZ;tIS&Hi`6ɫIn[$M}vs-iHv4ې~䏓cA\a;S&75L%lh0mT0 ,9fqviz]Hp毷VXmW\O7=~,8xl43D- ax@o)ϣ1!9\p,{ 3(34ԁ{(MUoKvi](|!v dhz*HM9 7s1i+liwIGeΦ }5|#Sr݈` hwF {⇁:i+ >ΎA _媆VnF=L7܍U21>J 2} 4eҘinEΉ+r"n2j-'q]rv/oW'͍.D[5$Gkp|0bFEd:9cgF1SStaU%fxwRd,YyYx.ѫFʟZ}{YN*bH, vs4-!=?sw$-'zӓkLeLɷVq:kmcoWl[ha]|3쉝5swz;}&7KP@Oοi .' 2/t $8ԟq==Y ؿ7*y5ӛcVl <;}2DꫣkB챶UFAKV޴-b !]V$tLto]^̭m =!jgWKt_ƞ~~cV"j^gCӦ_ї xCo}|;{fk^i1K,Ep&'uQ z!1K({'Qz۵AyN5, 2Y _(Ш4g5\`N5=iGh5Ćg}3p$@pZ"#P;Yߥ/kf?`aCG16̚ 4W1KUaM0jP&~;5 'nJe^ǖ茀/&Ɫ׎Ykf3g"" 撋+^jX(l/Bd#z!:8a+tW)N.pgȽqlà'= H1gR; 32| iqK5:knb~y5)UmZDvĖ"p#4y@߸O+k󬿗9ɷ+CӺ2dCPK=@>6U2u^Vq%N2f~jL |=2!qy0\2i&\'X$Gg ^2&[PIǃP|Uu+wJd6a9Um&ul+^ܖ'yχF0 vL,d>kңENMϛZ!f6C٧qpcsQ$?`?ia}GOBxEpoVPkřQoeP(..g]`5LWKVj)Ӵ詠^::DM>;G[ :-sfi,C[Wlj4{Ac1(Zup0#]"K t"Psأ8^9zeѲ) .FZt=URaih̒cQ jf6vC{"˃-jfO$k"j~Y!^ M3tKHVBJŽaȺ]A+3-L?&yGh?E28II(\;^@tpā&۾>K.!b`slb/+1dɻj 䱫W,F dU3Fl7s&Iy#Ɖ\cc~Hja]F-x{-ZWnc4|h6=OLl i{M0.oF&)vcC~we,j_H+1b#,4XOcFmu"V&l{UgMvNoFBXAF1 Wo PvkgN)k7Mm%&ZQZpW3 Ac;C+HF4 腈 4 "Y/C4 a<)un6Aqw?W'twJ){Gm@ASF~ TP7`K\_%WH0sW9P x346@Ov&o7_3+zB^lk<ߑ$0pkWo˥:@ל)|Dq60,EKcKIgv8ոܛA 5CS>MǰJ ;Gz[8 v>KM!z6 6{lX!\8 LyHũ.) _(5M^a"aG[ty;X ;NJTVԞ![h>EwM {NbzaajNoUGڅF23߃6anBW yͪMv6p?-sK AZr=蟛4k #Vs)sRbA1qMwfsb+rTR~TDRy_иfr/:`dsOe4ǁך4@bb=I}jtoyh,Ђ[!^mkZ]0S/ĕWHB?SλZ&Fl4El/"_46isB5@𥳐y`!8nGgp#E~)YW[JܔcaϲڀpbiaQ+7V3Y 2 %8%* 9dgxs[pn.a}/@`(q("Z=]O"kᚍ> ->[bKa}ɹgţEo=v_ !$9Yt[N{+5z LYk=o~6ޯ YK 1x1[F]bc%䄅Q% iPrt&caif`. &<Vh.[{lN ջ<ZshgKx ^puP`ln!SPZmM4;2{RǷuSɷY4wn|vwdM њ(ߎccv@6jFyzq7A9$p ng?bppQtE}E# -?~W@e Il_y}ކ]`ǡqӁr4[0CAiCyQ~n7f3"2݅(J~z;|]1k! ͏O~Edt)>ki[MƉhĕ)b4ĈhH HKnE T+r`:|(`h%$441zuxc>K[<⏍N6yknz~qtHm@ie M$Huf{xfpV=L,A6̤Ϥ9NNքypNwx&hZn;,(R}:kD3X,UfܴtGʮ^-3-\$e&tHO-#гA^83G\"I -DDk`6,<30I,.F!@][Wy SccI{*w (̟z ت5 k-#`eTĠ Ó<~;Wq͢Ku(<@MOohpHUdz{ {Q[GdԿK`}˯h~C?[:A0sJv Ne d/R%` RP-{<ѐ ʎ5+'{{-)wUbcL?HҒ}oi]K乏RP$kꙞ$3fy&]BURZsfռbpwJ7ەY)϶VDIٮ U{xɡV[MƛȘPf=ESUl> чvs8yfB">'ňG˜2X4ߗҧ*0 !`wsk@v96ό&dwUVvY ;eu?Q|~1i4HxK An~lӻ5XX3$B ſz.˕NV- .oQ̓'}ġ=MS1/Ha=::+gaU0D vLmqaM3Xd}]{ˢi E(8 ,-V$o(FDA-4>?IA F6tCٰA-x")avs} icpt {5:i)fhi55US!ug=y92Osi^/B |8b%9vtZ%I,:? xlXe"gtCZ;w8K卄]>Bz wJb%⌊ ??&'Ǹb8<F3M\xӽ"XxJV w5{-k]f鱙㤅DvVK?-z"O=It+4;3*hejV?)0& ´W38߫;\sEXsɚC%rQZrNu <'2+`Ƨ^︢dt+ $/sɋw88P^\|Be/6ʓTzX 3R\%EgrLȋfsEOemQuI`b7If?нzͨg6}a 7ءz&{th8m,['&zvjrRgmnry#^ ~Yol1", 3پ䒑n5$t؄m`>yy#OBbpXmQ#r3L/stmHCIRbc40>*Jrl7p{j`mI.Y;Z{{e"I?l@e3hQ!r8gȬl~_Wѡߵ2˝84zLҟz*@sYP$JU?^ ms+)#!><ɧYtZG˖=({-M{5׫:Sll^IuP QB/=;"yl˜hr.aX#k!. g Rc\6X@љ#k܍MU7k Js 9+i좰ˤ"5tMtrn[Z)H$#O8h[|i"JBmMt0![z:3ŮbԜu*K|^w p`B9)ARmD2A>h9RtQC ;8L.YrJ -:,{ ⍋`4fw*0{r% # j R}6T&:XWkAι(q;bx~O +y<,~o.fFw=睏olI T+)YF'.Pc IRhf,P^(Ti5=!>jV2ҋ^"R~.TICÇ`|$ן1u2fEiH-\׵?b.@z3tbHv3j͞p0`U͂˔=cgz8]ƻ+D2HK,8<d}䄋Mq "нKTYHB/̉(,I^qOInW) mandæV3EFe?4I{"#z9s7ޏB5_d)R нȌ=}Q}} R"h?o)>`d/6eQf]"eU] U ۡ:yy4tvmRI43U$ldxVۖhq`#mQ.o^';yN`C7 LȢ ]$w$=ЂDUS9 kֻ| Ʈ|/WO{|ԃF_m8;Jպ =Sc1f /,qCNїR~I 3ڑݦx;–fKi f/?62ڮ;!Qgjyx7Eqp"K D;$I| cxVK7#4!?g̉>t&5㵬 D_J}4Dq37oUGn/*' $^3QtOd.F5ɸ_!e&7c77?'+IW9 C!L)0?t_LJX"E31T ~W_Bi\z"]3qpA/=vA<= . iF\^y3/v9 1K+}=]W0Pb1d(=in }4iz*ÃM)?2|ܠz܁Q+9 OYs&^9?GsaSɆGa!3.j wtk5 OP|yu!̝ z1]$ '&h;;P0T5lZˉICVjk`RC{ XPg{U 2kz%.=A( O㻿Z"z"AOUkrvKkqgt2x8!5a_)LZYtAPYct]́O4=^4޽U@r/moĝ5 0MADb8l!hDS"ډ0>UUժT" ݸ꓊&BW9[O^yjhf_Tc%xIOl.ʣw:j%fP+?!ׄrΌ3>{]GSxQ^Csb߻m X\OyQBzh [szt7T%HjJo3K~PK> a ^zyiRp#70MHA5P9d${ѭ8)>pH"/5@ApI<j\EYkbI1=m䢻Yۭ_k}ُTÝ.p4gsTߓ:}`h- 5XZ 7pJizB7;RYYvK/)XOŐ֧T0?3ybe+ΛeL"|8]utF3(N˵ > NbiS*]Gi=o hzj3C)kM?UjD)G4 zTpUkHLG]]P`@drx<~wlLz).g@zK(ʋ CddRو`AL{9rl k3`FsvB0yD,؉/G$AvJὄGB=FWTqL,qXxjbN3˙n wXFfhbE&b۔2s5>ԋs/O}W}_| yIM5!VgwCDLQ1jRdk;!x4y\h"y1#]/%6X aS9Ȧ' +'$'8#,FApqS֊ձqxtiu1yKMT.&GsժIw3uQLE!6zjrR]0.kc,o^@g'h˪$hL8ϙr .#t\=:48i>9^F5Db5e)D`6"7 Km ZV_n0BBDf7 膉' meOy=eT̽$RJ g4>655XE'* #uع}CYġ98S !bcAco_ KD#` )QvҺ +(.M kqT (ns>ntM JVOnՖ]#-CPNGdVXz<%r|0_&  t@%]WI&G޺cPŬnʌ:Q ]{}zZ8IҳCcEN1X ƿ.LeEjHT8Dnm%n*} m/1LZ%8 J^&ɥFi V>F;3c6Ɣc1D@m_5$koZu,fe|"֏*aTs%>DS#i8a*\^vdɾ7A t ( dݻig09@(鯚5:A IHP$ X*:72ڠnn Cwt6#g`yniC:T 폘COelV3&4mZ2'Hq!f%?7;'L4S8KMR~<`6.qayBVjڐ7ܒK^%5,[Ju62\y9faҺW=JZljʵ h'$L +Cl.\Z/>8'ߚ.TDTL*sB!Dn7g- }53HtG+T,+wE1x^1ZEɻq9/y{@q履KU2C/pkȏF)4V*mճV-O\}'Ėܯ{^ĤN_N4eY 0ŐHIl;b 8CYgLRa=j8Ϯ[nn4qH!Oat҄L"u@Z GN!?z "zSi" S 74 RO HGτ;2i8v: N2b((~lC/{v8W !|M/ޫ8OeWJGI{;E~xLrtW&ΔY5@pp+ 2fʨ5~T8-Eˇ9V~?[*VxIli[_BHc, %jf\ \#\Rq]~ q:r>h2od{VC'C8ks՛>LغioL BRd5_RuvJGYΈyl1:BU*Fnu3z`{E4A1RmnC91]86@0@ۘaIT=:IE~8eFLavޔ DUDz8rcH-lr{('vճUY%9[[AhdXaM\x0%z^ 4[b_Qb̔j$rT[@ [q\fP|/ Z [W)QxI9r%}"Gbυ3L@?dLV{#5h@AC".~FHYC,v6K_Y&\XLte"fEyW{==R0Y#[*:c~&'cDb~ZɚK R^e͎ ͸L:lNP6<ѫrFk$2o<AaS 1.UU97b(]ӛPeŸhi/8y=X!LwS>v+3>(ȡUԻU!I`]NP:;Es%$n(p0ʰsи ŔkdSKZ }ͮΌ 5ij 0YLj.3a$4X!sc s~R] 쇫_k=/vgR?%X$"),]>Y{5σY~UwG 2#l2bf*,ZDQ<V4"KxQP%;AdWb-7JjZp x?h-Xg Eu7Xi@Q}qk#HԼғm>imI P "G8%ԶH:b iگ<kdE mC+~P~㏫2:2<Sb6ebSQ#Z ^D`yHB.41gxaOk y/tbX dsanʚŠQ@[HsHM+n;%:)Lً>}\"aY]'FHaj..E-CVB')O/&FK1 2 4Ͱbo]#=Ĵ \P*Aȑ.o! ԉQectkv!91aH=|bmГ   YZ