libcmark0_30_2-0.30.2-150400.3.3.1 >  A dp9|X4 .:Tq1ۼd]xev:!V{LjCO4CdpRP]KUTsG(LIgV,B*H_RC0wAi({^#h }W}DR*M4ecy*k5> KL'}7Y&Ɋ<8N&a#{ 碟 .+IÚRfumJ~5u{@T U~6n܀0a8308bcd14e460baa3b9468579d0bea3c57625e22821ef00c514dc8e0d423209e4e7ba610443aa5a4b3b4199b8f0209ee29a14fXdp9|p S@6L M&3 $no@121&=O>s"˫JԻ*s$襄%`,U=q(YEfx6{sp0<AW.2u!6m(7Zy*>Uc"KɿX\Kа mKdC"[,T$_p@?td % M  6Gdjp|     (7Fht   (89:3>{@{F|G|H|(I|4X|8Y|D\|p]||^|b|c}d~e~f~l~u~0v~<w~x~yz$(.pClibcmark0_30_20.30.2150400.3.3.1CmmonMark parsing and rendering libraryIt provides a shared library (`libcmark`) with functions for parsing CommonMark documents to an abstract syntax tree (AST), manipulating the AST, and rendering the document to HTML, groff man, LaTeX, CommonMark, or an XML representation of the AST. It also provides a command-line program (`cmark`) for parsing and rendering CommonMark documents.ds390zl37OSUSE Linux Enterprise 15SUSE LLC BSD-2-Clause AND MIT AND CC-BY-SA-4.0https://www.suse.com/System/Librarieshttps://github.com/jgm/cmarklinuxs390xA큤ddaM368f4837f17c2cb8bcde992954cc87bbfb35f6eef1c9e0cf0ccfb7e0759b7cdfc22e885f33b821bddb24cf007145e5540655b6c0f403e49e6c76a93c28e6d9a9rootrootrootrootrootrootcmark-0.30.2-150400.3.3.1.src.rpmlibcmark.so.0.30.2()(64bit)libcmark0_30_2libcmark0_30_2(s390-64)@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.2)(64bit)libc.so.6(GLIBC_2.4)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3da`2`@`f@]IkYZ@Y5YéX1@X.@XkWW!W!Vn@V#alynx.zhou@suse.commimi.vx@gmail.commimi.vx@gmail.comsflees@suse.demimi.vx@gmail.commimi.vx@gmail.comdimstar@opensuse.orgmimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.commpluskal@suse.commpluskal@suse.commimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.comkgronlund@suse.com- Added cmark-gfm-CVE-2023-22486.patch: Backport from upstream to fix quadratic complexity bug with repeated `![[]()`. (boo#1207674)- update to 0.30.2 * Fix parsing of emphasis before links (#424, Nick Wellnhofer). Fixes a regression introduced with commit ed0a4bf. * Update to Unicode 14.0 (data-man). * Add `~` to safe href character set (#394, frogtile). * Update CMakeLists.txt (Saleem Abdulrasool). Bump the minimum required CMake to 3.7. Imperatively define output name for static library. * Fix install paths in libcmark.pc (Sebastián Mancilla). `CMAKE_INSTALL_` can be relative or absolute path, so it is wrong to prefix CMAKE_INSTALL_PREFIX because if CMAKE_INSTALL_ is set to an absolute path it will result in a malformed path with two absolute paths joined together. Instead, use `CMAKE_INSTALL_FULL_` from GNUInstallDirs. * Properly indent block-level contents of list items in man (#258). This handles nested lists as well as items with multiple paragraphs. The change requires addition of a new field block_number_in_list_item to cmark_renderer, but this does not change the public API. * Fix quadratic behavior when parsing emphasis (#389, Nick Wellnhofer). Delimiters can be deleted, so store delimiter positions instead of pointers in `openers_bottom`. Besides causing undefined behavior when reading a dangling pointer, this could also result in quadratic behavior when parsing emphasis. * Fix quadratic behavior when parsing smart quotes (#388, Nick Wellnhofer). Remove matching smart quote delimiters. Otherwise, the same opener could be found over and over, preventing the `openers_bottom` optimization from kicking in and leading to quadratic behavior when processing lots of quotes. * Modify CMake configuration so that the project can be built with older versions of CMake (#384, Saleem Abdulrasool). (In 0.30.0, some features were used that require CMake >= 3.3.) The cost of this backwards compatibility is that developers must now explicitly invoke `cmark_add_compile_options` when a new compilation target is added. * Remove a comma at the end of an enumerator list, which was flagged by clang as a C++11 extension. * make_man_page.py: use absolute path with CDLL. This avoids the error "file system relative paths not allowed in hardened programs." * Include cmark version in cmark(3) man page (instead of LOCAL).- update to 0.30.0 * Use official 0.30 spec.txt. * Add `cmark_get_default_mem_allocator()` (#330). API change: this adds a new exported function in cmark.h. * Fix #383. An optimization we used for emphasis parsing was too aggressive, causing us to miss some emphasis that was legal according to the spec. We fix this by indexing the `openers_bottom` table not just by the type of delimiter and the length of the closing delimiter mod 3, but by whether the closing delimiter can also be an opener. (The algorithm for determining emphasis matching depends on all these factors.) Add regression test. * Fix quadratic behavior with inline HTML (#299, Nick Wellnhofer). Repeated starting sequences like `. * Add needed include in `blocks.c`. * Fix unnecessary variable assignment. * Skip UTF-8 BOM if present at beginning of buffer (#334). * Fix URL check in `is_autolink` (Nick Wellnhofer). In a recent commit, the check was changed to `strcmp`, but we really have to use `strncmp`. * Fix null pointer deref in `is_autolink` (Nick Wellnhofer). Introduced by a recent commit. Found by OSS-Fuzz. * Rearrange struct cmark_node (Nick Wellnhofer). Introduce multi-purpose data/len members in struct cmark_node. This is mainly used to store literal text for inlines, code and HTML blocks. Move the content strbuf for blocks from `cmark_node` to `cmark_parser`. When finalizing nodes that allow inlines (paragraphs and headings), detach the strbuf and store the block content in the node's data/len members. Free the block content after processing inlines. Reduces size of struct `cmark_node` by 8 bytes. * Improve packing of `struct cmark_list` (Nick Wellnhofer). * Use C string instead of chunk in a number of contexts (Nick Wellnhofer, [#309]). The node struct never references memory of other nodes now. Node accessors don't have to check for delayed creation of C strings, so parsing and iterating all literals using the public API should actually be faster than before. These changes also reduce the size of `struct cmark_node`. * Add casts for MSVC10 (from kivikakk in cmark-cfm). * commonmark renderer: better escaping in smart mode. When `CMARK_OPT_SMART` is enabled, we escape literal `-`, `.`, and quote characters when needed to avoid their being "smartified." * Add options field to `cmark_renderer`. * commonmark.c - use `size_t` instead of `int`. * Include `string.h` in `cmark-fuzz.c`. * Fix #220 (hash collisions for references) (Vicent Marti via cmark-gfm). Reimplemented reference storage as follows: 1. New references are always inserted at the end of a linked list. This is an O(1) operation, and does not check whether an existing (duplicate) reference with the same label already exists in the document. 2. Upon the first call to `cmark_reference_lookup` (when it is expected that no further references will be added to the reference map), the linked list of references is written into a fixed-size array. 3. The fixed size array can then be efficiently sorted in-place in O(n log n). This operation only happens once. We perform this sort in a _stable_ manner to ensure that the earliest link reference in the document always has preference, as the spec dictates. To accomplish this, every reference is tagged with a generation number when initially inserted in the linked list. 4. The sorted array is then compacted in O(n). Since it was sorted in a stable way, the first reference for each label is preserved and the duplicates are removed, matching the spec. 5. We can now simply perform a binary search for the current `cmark_reference_lookup` query in O(log n). Any further lookup calls will also be O(log n), since the sorted references table only needs to be generated once. The resulting implementation is notably simple (as it uses standard library builtins `qsort` and `bsearch`), whilst performing better than the fixed size hash table in documents that have a high number of references and never becoming pathological regardless of the input. * Comment out unused function `cmark_strbuf_cstr` in `buffer.h`. * Re-add `--safe` command-line option as a no-op (#344), for backwards compatibility. * Update to Unicode 13.0 * Generate and install cmake-config file (Reinhold Gschweicher). Add full cmake support. The project can either be used with `add_subdirectory` or be installed into the system (or some other directory) and be found with `find_package(cmark)`. In both cases the cmake target `cmark::cmark` and/or `cmark::cmark_static` is all that is needed to be linked. Previously the `cmarkConfig.cmake` file was generated, but not installed. As additional bonus of generation by cmake we get a generated `cmake-config-version.cmake` file for `find_package()` to search for the same major version. The generated config file is position independent, allowing the installed directory to be copied or moved and still work. The following four files are generated and installed: `lib/cmake/cmark/cmark-config.cmake`, `lib/cmake/cmark/cmark-config-version.cmake`, `lib/cmake/cmark/cmark-targets.cmake`, `lib/cmake/cmark/cmark-targets-release.cmake`. * Adjust the MinGW paths for MinGW64 (Daniil Baturin). * Fix CMake generator expression checking for MSVC (Nick Wellnhofer). * Fix `-Wconst-qual` warning (Saleem Abdulrasool). This enables building with `/Zc:strictString` with MSVC as well. * Improve and modernize cmake build (Saleem Abdulrasool). + Build: add exports targets for build tree usage (#307). + Uuse target properties for include paths. + Remove the unnecessary execute permission on CMakeLists.txt. + Reduce property computation in CMake. + Use `CMAKE_INCLUDE_CURRENT_DIRECTORY`. + Improve man page installation. + Only include `GNUInstallDirs` once. + Replace `add_compile_definitions` with `add_compile_options` since the former was introduced in 3.12 (#321). + Cleanup CMake (#319). + Inline a variable. + Use `LINKER_LANGUAGE` property for C++ runtime. + Use CMake to control C standard. + Use the correct variable. + Loosen the compiler check + Hoist shared flags to top-level CMakeLists + Remove duplicated flags. + Use `add_compile_options` rather than modify `CMAKE_C_FLAGS`. + Hoist sanitizer flags to global state. + Hoist `-fvisibilty` flags to top-level. + Hoist the debug flag handling. + Hoist the profile flag handling. + Remove incorrect variable handling. + Remove unused CMake includes. * Remove "-rdynamic" flag for static builds (#300, Eric Pruitt). * Fixed installation on other than Ubuntu GNU/Linux distributions (Vitaly Zaitsev). * Link executable with static or shared library (Nick Wellnhofer). If `CMARK_STATIC` is on (default), link the executable with the static library. This produces exactly the same result as compiling the library sources again and linking with the object files. If `CMARK_STATIC` is off, link the executable with the shared library. This wasn't supported before and should be the preferred way to package cmark on Linux distros. Building only a shared library and a statically linked executable isn't supported anymore but this doesn't seem useful. * Reintroduce version check for MSVC /TP flag (Nick Wellnhofer). The flag is only required for old MSVC versions. * normalize.py: use `html.escape` instead of `cgi.escape` (#313). * Fix pathological_tests.py on Windows (Nick Wellnhofer). When using multiprocessing on Windows, the main program must be guarded with a `__name__` check. * Remove useless `__name__` check in test scripts (Nick Wellnhofer). * Add CIFuzz (Leo Neat). * cmark.1 - Document --unsafe instead of --safe (#332). * cmark.1: remove docs for `--normalize` which no longer exists (#332). * Add lint target to Makefile. * Add uninstall target to Makefile. * Update benchmarks (#338). * Fix typo in documentation (Tim Gates). * Increase timeout for pathological tests to avoid CI failure. * Update the Racket wrapper with the safe -> unsafe flag change (Eli Barzilay).- %cmake_build is now the recommended way to build cmake projects- update to 0.29.0 * Update spec to 0.29. * Make rendering safe by default (#239, #273). Adds `CMARK_OPT_UNSAFE` and make `CMARK_OPT_SAFE` a no-op (for API compatibility). The new default behavior is to suppress raw HTML and potentially dangerous links. The `CMARK_OPT_UNSAFE` option has to be set explicitly to prevent this. * *NOTE:** This change will require modifications in bindings for cmark and in most libraries and programs that use cmark. Borrows heavily from @kivikakk's patch in github/cmark-gfm#123. * Add sourcepos info for inlines (Yuki Izumi). * Disallow more than 32 nested balanced parens in a link (Yuki Izumi). * Resolve link references before creating setext header. A setext header line after a link reference should not create a header, according to the spec. * commonmark renderer: improve escaping. URL-escape special characters when escape mode is URL, and not otherwise. Entity-escape control characters (< 0x20) in non-literal escape modes. * render: only emit actual newline when escape mode is LITERAL. For markdown content, e.g., in other contexts we want some kind of escaping, not a literal newline. * Update code span normalization to conform with spec change. * Allow empty `<>` link destination in reference link. * Remove leftover includes of `memory.h` (#290). * A link destination can't start with `<` unless it is an angle-bracket link that also ends with `>` (#289). (If your URL really starts with `<`, URL-escape it.) * Allow internal delimiter runs to match if both have lengths that are multiples of 3. See commonmark/commonmark#528. * Include `references.h` in `parser.h` (#287). * Fix `[link]()`. * Use hand-rolled scanner for thematic break (see #284). Keep track of the last position where a thematic break failed to match on a line, to avoid rescanning unnecessarily. * Rename `ends_with_blank_line` with `S_` prefix. * Add `CMARK_NODE__LAST_LINE_CHECKED` flag (#284). Use this to avoid unnecessary recursion in `ends_with_blank_line`. * In `ends_with_blank_line`, call `S_set_last_line_blank` to avoid unnecessary repetition (#284). Once we settle whether a list item ends in a blank line, we don't need to revisit this in considering parent list items. * Disallow unescaped `(` in parenthesized link title. * Copy line/col info straight from opener/closer (Ashe Connor). We can't rely on anything in `subj` since it's been modified while parsing the subject and could represent line info from a future line. This is simple and works. * `render.c`: reset `last_breakable` after cr. Fixes jgm/pandoc#5033. * Fix a typo in `houdini_href_e.c` (Felix Yan). * commonmark writer: use `~~~` fences if info string contains backtick. This is needed for round-trip tests. * Update scanners for new info string rules. * Add XSLT stylesheet to convert cmark XML back to Commonmark (Nick Wellnhofer, #264). Initial version of an XSLT stylesheet that converts the XML format produced by `cmark -t xml` back to Commonmark. * Check for whitespace before reference title (#263). * Bump CMake to version 3 (Jonathan Müller). * Build: Remove deprecated call to `add_compiler_export_flags()` (Jonathan Müller). It is deprecated in CMake 3.0, the replacement is to set the `CXX_VISIBILITY_PRESET` (or in our case `C_VISIBILITY_PRESET`) and `VISIBILITY_INLINES_HIDDEN` properties of the target. We're already setting them by setting the CMake variables anyway, so the call can be removed. * Build: only attempt to install MSVC system libraries on Windows (Saleem Abdulrasool). Newer versions of CMake attempt to query the system for information about the VS 2017 installation. Unfortunately, this query fails on non-Windows systems when cross-compiling: `cmake_host_system_information does not recognize VS_15_DIR`. CMake will not find these system libraries on non-Windows hosts anyways, and we were silencing the warnings, so simply omit the installation when cross-compiling to Windows. * Simplify code normalization, in line with spec change. * Implement code span spec changes. These affect both parsing and writing commonmark. * Add link parsing corner cases to regressions (Ashe Connor). * Add `xml:space="preserve"` in XML output when appropriate (Nguyễn Thái Ngọc Duy). (For text, code, code_block, html_inline and html_block tags.) * Removed meta from list of block tags. Added regression test. See commonmark/CommonMark#527. * `entity_tests.py` - omit noisy success output. * `pathological_tests.py`: make tests run faster. Commented out the (already ignored) "many references" test, which times out. Reduced the iterations for a couple other tests. * `pathological_tests.py`: added test for deeply nested lists. * Optimize `S_find_first_nonspace`. We were needlessly redoing things we'd already done. Now we skip the work if the first nonspace is greater than the current offset. This fixes pathological slowdown with deeply nested lists (#255). For N = 3000, the time goes from over 17s to about 0.7s. Thanks to Martin Mitas for diagnosing the problem. * Allow spaces in link destination delimited with pointy brackets. * Adjust max length of decimal/numeric entities. See commonmark/CommonMark#487. * Fix inline raw HTML parsing. This fixes a recently added failing spec test case. Previously spaces were being allowed in unquoted attribute values; no we forbid them. * Don't allow list markers to be indented >= 4 spaces. See commonmark/CommonMark#497. * Check for empty buffer when rendering (Phil Turnbull). For empty documents, `->size` is zero so `renderer.buffer->ptr[renderer.buffer->size - 1]` will cause an out-of-bounds read. Empty buffers always point to the global `cmark_strbuf__initbuf` buffer so we read `cmark_strbuf__initbuf[-1]`. * Also run API tests with `CMARK_SHARED=OFF` (Nick Wellnhofer). * Rename roundtrip and entity tests (Nick Wellnhofer). Rename the tests to reflect that they use the library, not the executable. * Generate export header for static-only build (#247, Nick Wellnhofer). * Fuzz width parameter too (Phil Turnbull). Allow the `width` parameter to be generated too so we get better fuzz-coverage. * Don't discard empty fuzz test-cases (Phil Turnbull). We currently discard fuzz test-cases that are empty but empty inputs are valid markdown. This improves the fuzzing coverage slightly. * Fixed exit code for pathological tests. * Add allowed failures to `pathological_tests.py`. This allows us to include tests that we don't yet know how to pass. * Add timeout to `pathological_tests.py`. Tests must complete in 8 seconds or are errors. * Add more pathological tests (Martin Mitas). These tests target the issues #214, #218, #220. * Use pledge(2) on OpenBSD (Ashe Connor). * Update the Racket wrapper (Eli Barzilay). * Makefile: For afl target, don't build tests.- update to 0.28.3 * -smart: open quote can never occur right after ] or ) * Include GNUInstallDirs in src/CMakeLists.txt * Fix quadratic behavior in finalize * Don't use CMAKE_INSTALL_LIBDIR to create libcmark.pc - drop cmark-install_libdir_is_abs.patch- Add cmark-install_libdir_is_abs.patch: CMAKE_INSTALL_LIBDIR is an absolute path (if -DLIBDIR=%{_libdir} is being passed.- update to 0.28.0 * Update spec. * Use unsigned integer when shifting * Avoid memcpy'ing NULL pointers * DeMorgan simplification of some tests in emphasis parser. * Fixed undefined shift in commonmark writer * latex writer: fix memory overflow * Check for NULL pointer in get_link_type * Move fuzzing dictionary into single file * Reset bytes after UTF8 proc * Don't scan past an EOL * Document cases where `get_` functions return `NULL` * Properly handle backslashes in link destinations * Fixed `cmark_node_get_list_start` to return 0 for bullet lists, as documented * Use `CMARK_NO_DELIM` for bullet lists * Fixed code for freeing delimiter stack * Removed abort outside of conditional (typo). * Removed coercion in error message when aborting from buffer. * Print message to stderr when we abort due to memory demands * `libcmark.pc`: use `CMAKE_INSTALL_LIBDIR` * Fixed buffer overflow error in `S_parser_feed` * Update emphasis parsing for spec change. * Fixes for the LaTeX renderer + Don't double-output the link in latex-rendering. + Prevent ligatures in dashes sensibly when rendering latex. `\-` is a hyphenation, so it doesn't get displayed at all. * Added a test for NULL when freeing `subj->last_delim`. * Cleaned up setting of lower bounds for openers. * Fix #178, quadratic parsing bug. Add pathological test. * Slight improvement of clarity of logic in emph matching. * Fix "multiple of 3" determination in emph/strong parsing. * Correctly initialize chunk in S_process_line * Added 'make newbench'. * `scanners.c` generated with re2c 0.16 * `scanners.re` - fixed warnings; use `*` for fallback. * Fixed some warnings in `scanners.re`. * Update CaseFolding to latest * Allow balanced nested parens in link destinations * Allocate enough bytes for backticks array. * Inlines: Ensure that the delimiter stack is freed in subject. * Fixed pathological cases with backtick code spans: - Removed recursion in scan_to_closing_backticks - Added an array of pointers to potential backtick closers to subject - This array is used to avoid traversing the subject again when we've already seen all the potential backtick closers. - Added a max bound of 1000 for backtick code span delimiters. - Added pathological test case. * Remove redundant cmake_minimum_required * Make shared and static libraries optional * Added support for built-in `${LIB_SUFFIX}` feature * Add Makefile target and harness to fuzz with libFuzzer * Advertise `--validate-utf8` in usage information * Makefile: use warnings with re2c.- update to 0.27.1 * Set policy for CMP0063 to avoid a warning * Use VERSION_GREATER to clean up cmake version test- update to 0.27.0 * Fix CMAKE_C_VISIBILITY_PRESET for cmake versions greater than 1.8 * Fix for non-matching entities * Modified print_delimiters (commented out) so it compiles again. * make format: don't change order of includes. * Changed logic for null/eol checks only check once for "not at end of line" check for null before we check for newline characters (the previous patch would fail for NULL + CR) * Fix by not advancing past both \0 and \n * Add test for NUL-LF sequence * Fix memory leak in list parsing * Use cmark_mem to free where used to alloc * Allow a shortcut link before a * Allow tabs after setext header line * Don't let URI schemes start with spaces. * Fixed h2..h6 HTML blocks * Autolink scheme can contain digits * Fix nullary function declarations in cmark.h- Use current cmake macros- Fix building with different release types set via cmake- update to 0.26.1 * Removed unnecessary typedef that caused build failure on some platforms. * Use $(MAKE) in Makefile instead of hardcoded make- update to 0.26.0 * Implement spec changes for list items: + Empty list items cannot interrupt paragraphs. + Ordered lists cannot interrupt paragraphs unless they start with 1. + Removed "two blank lines break out of a list" feature. * Fix sourcepos for blockquotes. * Fix sourcepos for atx headers). * Fix ATX headers and thematic breaks to allow tabs as well as spaces. * Fix chunk_set_cstr with suffix of current string * Export targets on installation * Fix cmake warning about CMP0048 * commonmark renderer: Ensure we don't have a blank line before a code block when it's the first thing in a list item. * Change parsing of strong/emph in response to spec changes. process_emphasis now gets better results in corner cases. The change is this: when considering matches between an interior delimiter run (one that can open and can close) and another delimiter run, we require that the sum of the lengths of the two delimiter runs mod 3 is not 0. * Ported Robin Stocker's changes to link parsing in jgm/CommonMark#101. This uses a separate stack for brackets, instead of putting them on the delimiter stack. This avoids the need for looking through the delimiter stack for the next bracket. * cmark_reference_lookup: Return NULL if reference is null string. * Fix character type detection in commonmark.c + Implement cmark_isalpha. + Check for ASCII character before implicit cast to char. + Use internal ctype functions in commonmark.c. * Better documentation of memory-freeing responsibilities. in cmark.h and its man page * Use library functions to insert nodes in emphasis/link processing. Previously we did this manually, which introduces many places where errors can creep in. * Correctly handle list marker followed only by spaces. Previously when a list marker was followed only by spaces, cmark expected the following content to be indented by the same number of spaces. But in this case we should treat the line just like a blank line and set list padding accordingly. * Fixed a number of issues relating to line wrapping. + Extend CMARK_OPT_NOBREAKS to all renderers and add --nobreaks. + Do not autowrap, regardless of width parameter, if CMARK_OPT_NOBREAKS is set. + Fixed CMARK_OPT_HARDBREAKS for LaTeX and man renderers. + Ensure that no auto-wrapping occurs if CMARK_OPT_NOBREAKS is enabled, or if output is CommonMark and CMARK_OPT_HARDBREAKS is enabled. * Set stdin to binary mode on Windows * Add library option to render softbreaks as spaces. Note that the NOBREAKS option is HTML-only * renderer: no_linebreaks instead of no_wrap. We generally want this option to prohibit any breaking in things like headers (not just wraps, but softbreaks). * Coerce realurllen to int. This is an alternate solution for pull request, which introduced a new warning on the comparison. * Remove unused variable link_text. * Improved safety checks in buffer. * Add new interface allowing specification of custom memory allocator for nodes. Added cmark_node_new_with_mem, cmark_parser_new_with_mem, cmark_mem to API. * Reduce storage size for nodes by using bit flags instead of separate booleans. * cmake: Global handler for OOM situations. * Add tests for memory exhaustion. * Document in man page and public header that one should use the same memory allocator for every node in a tree. * Fix ctypes in Python FFI calls (Nick Wellnhofer). This didn't cause problems so far because all types are 32-bit on 32-bit systems and arguments are passed in registers on x86-64. The wrong types could cause crashes on other platforms, though. * Remove spurious failures in roundtrip tests. In the commonmark writer we separate lists, and lists and indented code, using a dummy HTML comment. So in evaluating the round-trip tests, we now strip out these comments. We also normalize HTML to avoid issues having to do with line breaks. * Added to_commonmark in test/cmark.py (for round-trip tests). * spec_test.py - parameterize do_test with converter. * spec_tests.py: exit code is now sum of failures and errors. This ensures that a failing exit code will be given when there are errors, not just with failures. * Fixed round trip tests. Previously they actually ran cmark instead of the round-trip version, since there was a bug in setting the ROUNDTRIP variable. * Added new roundtrip_tests.py. This replaces the old use of simple shell scripts. It is much faster, and more flexible. (We will be able to do custom normalization and skip certain tests.) * Fix leak in api_test. * Makefile: have leakcheck stop on first error instead of going through all the formats and options and probably getting the same output. * Add regression tests.- update to 0.25.2- Initial package for version 0.22.0/sbin/ldconfig/sbin/ldconfigs390zl37 16794733170.30.2-150400.3.3.10.30.2-150400.3.3.1libcmark.so.0.30.2libcmark0_30_2COPYING/usr/lib64//usr/share/licenses//usr/share/licenses/libcmark0_30_2/-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:28333/SUSE_SLE-15-SP4_Update/e6b7bc07007d3ac682aef5c0e3d8180a-cmark.SUSE_SLE-15-SP4_Updatecpioxz5s390x-suse-linuxELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=b308f7efaf4996e7946c83db340de95559df45f3, strippeddirectoryUTF-8 Unicode textPRRRvxz>zӲutf-854dbe4e477f8404bc24a13a7164eb6ad9b89e2787cd86c3524c1df7ab1ba60d0?7zXZ !t/] crv9wk 娥EqSWx:c5,Cw9ԄvQkP@uw#U$d=X=  zi4ƐS+ǦinFXd"ċ7KyejT{ziﱕrSOl_Uj =C04:||[EПBx51r7`LS 0ouR_\;NZ o:Q.,XF+I<,Mll&'g-RKX`L$q3Ox-JՁw{}"G…&W!M,Ƚ^Vpt<2V~O"r Y"0hZ %ZKXS"yD_%~q$cp̃[uXljRƪA9͠ůI|A׊mO2NOTC)ø׾1b<?HxB˪uqlzy* p,vFf&y^5[*'4`g| 1TzρF=/lRá;_cxmjE<1!t eo-\ h=WK&$8@ ͱjR K oL}lr"Lx~lX&@ä햮rtcߝL[ 緹u^խɾlbnDnŦ1a,ۅ$^-4݊4Цw[zX [Y@#ڿ*O O܃U[q>Q3 2#&=,Z隀?';:^r}c9l>Gz]$yq% @m>KEaM d3:yº92=߈וumWY,}'}7ŀDěpJ kqWj 㪿һ]+3%qYuqUۀ_[a}87-DC5d&3Ìy5{ uOq(tPZȡ@k8HԬci2hzy5z#\Il'9 ʔ.<12GSaY<֭Kѝ!)LvbWZ;괲BFRuwyo&*ƽ Iq}YR}RfB/ oX/VKC⪡GҘ )kBx׸{t=O8 rILI>Yy^q2JrVm_i+=!4vP@՝ j FԵzԒp4|%.V!}egWŧE/lmSr.ь Idl!qoI ȗqd1\(C_osnUЋJFUsJ~0ױZJHugRJ MB Q-'pnċvTbHɋNa l#VB{=09RV@hk ޝަSh M]r&ާBĸ>;w/[M:"^#%2"=<eg;5EkZ EB+^n^QX~H ڦ(!S[_Wo3W[?N0T;__a#r^x<&sF\H_FwLguYNM+ha\Oͳ6z]5`ċw9̥{&z-gP~0˟:J`HFIStͫx:u˒tj*g< w=#/^! b0 ܼ' .nTֈ/N8pz#?};zIHTS]+bpP*|s Ns1*GhJAi!\`1}>{-20t`48CL]]]>Z[|[(A2Z!1DԮ Kmаdt-7;?^*6G(4sx wq?b6Iw>Y݇OӢ6># aQۼs㈇t1w/MT(U/.>sg7"Ӻ'Lp)(U?6%㭐"ML%^ޞ㟢I<i :~i ld{d|mFv!ae^{{syq[ q2ŵW'b17[7yw^t)oyN[X )b[?;եI)1 PW" )~/Yj>JrI t1.v|> 'dg&3{Hk`~&b' /P:a+2^2) *NZACh? g4Cn)ă.~؛w*+3{ZEB(]C;^vǗGu+)/Hv{d.]#6;b#g1!d d\`99=oUzy667W t:EbylDQ;R{HNvRc% Ukj\AG<+{Sh|SxyTZA(-j rf+@||A8 |3=bL"HV|/\r:ƷB|([JNɛ^}f(vReXa/$cD7މ\wjyg69GbC>:!0X2>1t- DW8;/|~@[乁Uey,yM4唀?뢺oQmgDŷLZƲ#a2S IMsz+q>M_ÑA7m=pUZ5>tFZ?+TD. UMQE8V hjl9U{ FG,p7%N=b@-+phujȉd ٨t;!}y$`Ip$a-| $FSo] qDu?\K O5YYWCwۢHz3Y4͖:yJg^+] ħ/@8vzimJT fdYzǨ/94#eo١,Z%^<]Dq7[{wamEHnN:[)Za6$ȣ3ٱnwd>+OqX!/0x DŽ;r;p8;Cǖ7~B}cXt̶,0 %DcSl<)U`ΰ?ٶ8e'L;S+gfx}S*kLkj&Oc5H͖lH}= Q2o$aGE =cxЯ|Q@nB5 ~y:$wT[ dLd MaIOV G'Z,z^5Y07 . -^w"@&a%|kV}/8s|C< < N?s.q;2wp\1eV[0fB=OcѼ82RKђIǵ7Sך&\ʭfow S.^@k4u)S-驛!y ώUe;ڸNFP 4sm5zmcGxƣ+ĢgQ{T&r*nܿM9zl2#Wpexjcf2ɽE@ MnP pʤ t"C}k%m|$, p8Ig_lgb^zQ}ZRU'.J@BZy7Y%K) Tx+Zw49͐ g̘* !v !5Tbh sm觜\uW sNfn!'@) ]2]a4"$ ]+) 4-+(Ǒ~jݗ%$իPAXPl8Qpm{T3}>uFuG!V3ŹLC91<փq%Dg ilh_S (tK)ez#Y)}Oծ:gZ0ͷNU][֮Q׎骭'h6/[j,aMPH0A_ LQF"~gs(Z,BHEX{8eεkTxjxirW?. j'zDe.S=D]j K+/GC .fERB`aǷh,~qk~g+x j+tvT&g !=Шm/N1_B\90pgT?"2 =vA9RĘTh@b+XNWM8T#K۱ ;\FWO{ )Z62mNP1KGK[E*l"\JjG}_9 \m?z J Q|D)g{N5k:kGD ?Y-\Z_*jӄ9wBƯ2ABϞC e8(\Нj˩ՌSH?PM6ӣwWJB%yfGlR`mGCm" ܧ6񚤧‰~T<0Oߣ@f@|Y( `@a#p1zW6X\iEFlH0[ h]| =@3K5:lO3[\mDkU<"&Ys WwP;6j#@^,cnj#H3D_ 49Cc X][Vbd+0 =ɹ:= JM \/TJ ԏ%f? if:rߓɮXq~ZKQU6xb;w7+~qh {z~Ft.3Wqr)YJVߨ*2z!yb8+wc*yctiri %訾(7 G!JX6"ԏsݞg#39dFrfGpvvŗ7SM_9ZB(_z=6>m,_j8Ȋ ΟAL3bqT1KMԲha*E'Ng5 ˴E<^]GP_%M|ʰTWm1@M!7_oE!lMȕ]=i$@ ` K A&S(JN JGyorDkSጙe svctMf^[>? _6Xy(g!*;z8y6vfNPAOWe5e IZC;x5 9\hgARd$wvi.CǬm0ALpF   bgiQ"#W6:3ֻ`w='|<t-.d'@I Di"':zfX^EI#Vhzi+B7?k@LMd(-`_5}0.Bqn Yxc^Dqr=1ⷭitp6*Ih j/*A]Ul7Mb4"lPqЎNGS=xg1N [,#L;G]LyH|ó3yp~B8{>;h\ڔx i$^UUsxy~D`#!?_ph1k4 )2PCeZg\Q\>M‚qHoH|g ݷxFm@1_Y/&nO Ikla c+^{.BOڕmt2 ,;NpdE ;B 3L(pYԢS? If~7x: Gxl(?>\up6̵PLRoAl ݙq ,kv},z6;W(ص9wެo,F}W'*ZGk:@2{ǩVn?H=ŋݔTL&;߮J>y,X<;-V`^uUw9/*ǥ≽F:,̳U`xN! 2ݠ nΩ'AȟOb(6D ]idJx̹%+C 75p8pv+Y,MLZpPH4 r oo@y{EET |ou{=> >Fq$:Gj=~uPsZ͑hRr[=a! 3 %" yןJf\KBf=,PʤkXR~]f:QG[1b(#bsB|,M~}OMŭd$fт7@^ ]9 rlS2I]2H76+L?UGoG@72G֐bjcR| J^m:燪=6 P{lhDr=OlloUl^h;+{_s`ތ~Ƥ?:UH1.$Y7Aܼ P 8 l}eԢkNSlxM7[2}L9WVϥ W>HB˿=hm* &~eJ# :z/l"ܥ˼G (w. h6([vUŊ3PtH~̦2Bđ; "0 zwvm%z @USiScZ)PʝcFXL[Es>sSjpzJpFH[v:33`O-jm`[=yq} ݵaQ}yƎJE~ bDXyp5XH3=%DVԊU~ts(r#g "!ߴ>^>HrRQ hyʔyl:OluO-^yH쬛So( +_ [ch)LyαEnK& EHBJ/61Vi ƴҲ0aR*cewdwlf_'c`( pa$L"]!}_?-P; GTev`e[3 nCY3.}i:4Vi1HS+E;-oG$laD`MGe@qayH z_Lm@ 9<o}8ᰫ w ~}bռ蒗Bnp p0R%!cO7Qc'c> V0XС#Oz &e΄lROpRǺ2dJ&Lj܄PI7!dE^St|HǦ@Ό'C'J+d{5\A/ |pkhXSG25'};%?zݱi`jil JY3Ǖ] !MW]X7ܫ?N,'Gz!qk@GjOo }3):|\|1K@D0$M-/st `Gb̊  $Q!(yB3G{; Et|׾:IÀߠ*,%jm A_\/=(sV9MكfTB6\8lJ"5:V2xu]`[g(w |4b Ӄ+$IV9:3<_b+!EdN)݀Åd$wWբ5mJQ\%QSB%@]j *E10k/#ZF/)('1ixaFFDK7E8Zp;Dg47!)?.F{rzo> wFw3 Rs+.0+CĔf~eV$[Qv6"~Xni؝F\NkiF+tD侪ܦxM-᭎Zš%FD6f%4'aZtB"5 )x&An}iY\CH;o`L엥*,[P *Xޘ~AVR68=jxK7AD~?&cfE J:˩HUQ:}4 ^$Y^G4C)"86 x!::T^h̬ k(DyFajv FCfe=ox4!qzui,sY@*D~?r41kӨ\n]M-MK)ljF#pғ^9b#͸$;vm%/:㗱 :j״0W$ąK+,`U=%S!XXyR:]VB3iwRK9$+0|{V˿ cahV_01- ^+8@:eH=s"t dE홲ؕsУ\F:6\_MA*47(,|L׎"o>իv\ԨV'#XkMo,,Ku.`t\]▙*W =W1M"w/X)Q/%6粠O.4o)ݨ(^gl9i=a~s2CS4\>n&—)NNĕ<]aJV&N|vi"6I lpUwg1Vu j( z&p%hC=۾G/%}uwywUNKdg!S* *aeL "1{)GKzµK}4Zk¾qWBI ۻ]]^]r7`^`mve\Qgm|۵OvwÉ%2#]$DĖO]کAt<^ 2g?`/ W$',3>~i>΍\fgA/\ve}`Xr2ApHRJ.zKӌӏi 3MB[x^.a}Ԫ[K)0ͷrs \zuK 9)DQf5dpם;lwC׏&ħP٢~Ě%ҿA(\5}c&G*TH󘩔5Hˆ+u c ^'͏2آZ\F^ _nk|LȚ9feO(DCɌar_cO8`(k11FiKfe?=`3G>Myj[V{ׇHByuw2ݙ\ :;|㫫n_-Wkt?t?-6LvvmKf D]ERЫKSe_VU|8锭o=M?sp\:Z{>TY刯14;bEZ/YAU?EFėB-wD5KZBUrX֚ щے5QiE Q:f!eC仼Vi~$Fsh뭸j'Ejm1r#(G\PӗV/]VAeoXǥ@63d|dQZ3K>Xi{|E%l!(^ 3vny؀=k" z~Z"q49w.hW65ȡh4 6ZC [%޹`fa >7zU/CJOǛc1w}>F D'sE(Z_{4}4 ;g߼ P+kFM9\q6/P ބo7tZ2]Φܰ7C1?NaE*KueӉ*Xx]FKu;6Nz9QUwEp؀&JG6vQ2GuJȩ|7Ѕ#5Cyӿu -јCș/YbU#N {lo.KXmn\$FҡcO6 0xhX4i2*W@qLlʈ+vwE񵷯A%)ZYo@Pe_ c)Gbn"Cp6nX.hꧺz{21^U? wkl!DPiYVtjÔ84CqVƬ @ԫF@12vOv]1U &V[#*< Խt7w%#h^LM)Rb9T,NY$ pꥋUW-aH/BȂ2MhS=i=rZ-=dSv!`8ق!V>uDקhNPN쩇U,jNf+u-'eɾWxU4V8?{eRu?asA"ݒfJJU pm~SSY\,~yM ߫dO_%[Pndy]aoD$"8l*^BF/[&;[Q r;/IQVUV0J~Zb(C{+]vR-&& 6ZXt ~r-L9G{^BO[Q$Vu1蘘"rCc4PBڛq'P 5:X Ntd2{Z+* T{M dL'B F)4C&DEqPl+ڿ3Xجp$BO쿇L^Eصkv޶LjU LQ NIAÔiߢzݬB7cbI}sOUEA5g8~hO}ցmcAٰArgocW7fc$3OY?Uja<6S,"ҠD L^432dm)y0w9 8( hW2"+ `5+1v~C}LK"}h$VL̐ZXX~4-;bD0%94Wg΍$)#T`?d{C[kKi,5%Y\ldzG,$]谆,lUމ-^$GV/0p;r "mX. /4B*x]_;!5Kln ^L~'"e;MSB?v8IE}P|N?K_ byP4$ cy21 \fӧ-~"]a{l#A;{/HDԑkLmqBeM{* Oq1W+Z}TLH`,GC_4^YlE>FF^e?;%1íVn(y`H=QlxW*w"+52*PyTFZo- = g E$ B-M|#qx?6}B|@uAK-?9eJ=3û|.$Q!a[0K|^Ps/{b1wy{7T[\; -ܜS-nJM8C Ghxs~\@M}-! Ȼ򽣥/Hcl('g [ A8o$72i^o2 )d N7|g3#0n{m/8'4T{EeˈZsawٍւ&o6Cmťf;xp8٘IC~,tgqb QiQP/ @IM>G!R83Њ4z_ 60!SHÌ*9#L_ϿG2A5ٝ[#8zGd>t~@tTszOZHX%Ħp.vA̛?ִzۊ,3+gA` )@ j.RX> α +Ηq:Y_J> fu/NJfMVU kkK!jY<dP2bN6@tӭmb޵&G]}ˡ+ !쩜  @lі'?T0@/1eSBhmsNT8Psfb^x[+*V[p\$~f*ܛHʚuly_XO 2lurJ'?kUF#:F) 찤d9-S#">Ai޶84dqq$x=y(J5 ; nsL{^+sQ,BInMJ!Ǯ![K:g5#o,g]eM" "ޞ ý$E?9DH~OXr l1,TC 2tb EqA!\U2MA1g>EF*`J4m1dE˓(7$(r ks2GR: ϑ8 ig5VE쁯ZΪ&̻Td `ʵwJ~~y ua70^B;$HOU 3Sah+֗DN;=Bt b*?IEHT8(0,p]wGud7< /fTf$e7E_$( ^B7vVU_^.qKDK 7\k 0c:8G"p*4`h=S #wUlD4x-acT4,VDS%d{֑Q*\19n}YraT|2ئ1C<$>^Y'+dg~Ö n,ˠWX9"տYE\J|zYK>^辽(*cP7>!:լg{H'̏eM/?hfvk/.yT#dZ6Wma<5 sY:Y|Pjrv |3^hV7lueIN<ʱY@>c:Fa~i={^~0{&_=)Ω8;BŪtR4 ̪QbOasf["XafwF=yXݯv"k5vhjЎA\"#0[ i nXn %N=Sf^硫N;f)T△=)4G[37sGYa |$q$ pM'_0$T#>wHвKYiUL'yv+&ۜ&}IwCh7Hv{C'مJihYO!Ryl4\,3ԟl\GxVҷ44٬8D=^h q8gI]eZmܾ]@i='$@6 0ET̑7})J؛Gc/=^`5(G [po ߐKqm::k,jPew;}<3j!"[)q+|)g uZ5IˁGp _8<~`kiME& \(DtҞ@'\F5!%5aE? 4zxA9en[|<т)Iv75>rǗP&ڤ<;ʱ^Ya#vV I֊-,Ei2xlB2 )tp^ PjÃ}bcR(u-]P^`)cеG"*֥?i!V:p @5~z!j;CWiN/=fܷSm˹U>iT{@4/\SUY7!h?LRS5YZyH8OXJ^%t﹭/FY$ǑC j h:80 ?^ovB冪!̾qoEjf [$=㤘\)_@o \EU+->fͿ7$;t-F N|"ѣh7yQA"72W:m+в8_]L3]paC; !Z,CiSQX܄fСg/ĊFpϏkၿ 4yheU6BJ>9FnËA hzmSY.SO oz\D̯lݗ-paNƀ,oY]r-mQʯ4] .(gn@HlC䃺]9 ND',E >I |#BK„UϰK݁ɉ];Yw,Tu-sΒn`fwSЊgar zS4Pfad-.Tˠt2n@P:&]5F|۶:g'ƷAxq>( Q7zW ԸIH|,=Rl*4@iI HJ#F6NM3ꍿ=7u1.ߨ? #hfl xN|{3PǤY(O>ٱ^v|~BST6MB 1XLZzȶiFuM*xaw깓Vmr4rly9oInsj{eŔ%pԊ6R'Q:PgÎÁII׆M#FNpu#gŝUŘTDnR) i Ldc"NsЀܯ p 6$U;, }oI3J:fS rW(IN< RW*d/7Ȣ7\pV)sKk5x\ѕP72_0̛zuMnmS;[A'Qƛj]=Um[J{z7ۢQT ~~oyߢ 4|1 /Ɏ ѕ HJ l\H]"FqcÁ?y _Ģ=;jlpڅ-)fx씛tc%Ъx$,<+Q2E<]> bāfX+ǥErN4I'cن۽#ffhQ^D NTGŅi$|Ⱦ)\.{1/.?Wףۏ./'~0RQ(G؂֗8%it<] CV"5 _T:*t4"A(Et:q: ܮ02п{fmYjq;%Ti6|&wf+Q{:bZ"}+ c܃u Iwwrb .#Sky>Ѽ~ f/H<yKϩ,)r!H_[D*М+ؒ[g>|Ҡned,-+ޙ`sJK8g@NtN*)NEnz%[KbߌpʘV5/MeڠqGGTd9%4|a2ɁOԶSe6vs諩/QrU ∲.|<ץ=ڱkq ȏKei{Ʌ'E+ǎa}fݧ!MyfgdE&?)U7kf0I$ );e^a#Fz_R1 LxοW(7UG؋M}U,+?f2 uP-ƩS2s~w}mʀ!~+&ZPۅO>&<:we AK e7-W=1OR#LKS< :{+U. x&% }(<%? r"aEDf<w 1Mï~K,=9 iل<%H w7yG}Lͩ!OxlAK󘠬Plw&(Wjt>KaW j!0hb5LÐ**S*R*,!~+|jz_8".ٷ>*o æ43Yo5/j B.ٖ%5GLN cB4eS(0W `۟DL݌oMSA;_/^liˁ }l@/ Y<تVH\2u@NJ);e5M۰^Bcp-*qx%4KdML_Շ ^D\J'`iUnʩz{#yyv2>> N 6ӊ0]lqCU fl@ŽIގ2P!Aj;'WLeY(<=*/L!mUs jEחm7L'C䫂w,,bTp?|Iq pwy-tۤ{Wďn9oFz]{Wj S\SpF:7tG/bJvZjjӍgad.tb' ‘碏U<`W&ɗtչ󤡑|漾%Q,Sf}vsإ&avTkadǤb!7P@)~Й TRfV3Ey&\E|A޷%,vv !-;j⦈] nn@zQ%hL1,5§iɞI}_q6H㖓ɶnGd"5Yk{#DLM:D6@ÏdXTw{-`..IΕ}M&(h.VhSlN]tŶ_MFe6f6uǤQQ5c OBqc"lFG}os$5 Y%VLXq:Ρpk^eVZb,ys b2y;QaU+7{S>|b,p0!U]cőG+:~ dungcpx.J5bn/Nh`w6+MiaWzB^2 @=F).>E}hgTga/C}*eŧ|!Ll HqeF3%S_2PVc+QA,qÝqKs|=["EEs2_! pŒoՎ4ȍ/4@xiuhA}kWť#t5![3 j/1] 9DsL 7dT9B=-_į-# :7ekC,%,+ým9;Nx${AJlSmAa)$~[wLf-/v%{&Y{PNYm1]d3|yjb ge]?B2Wbm:>1@gj"4~ v?HtK%ձ5811yp v̵Zo+\lD*E˖-f'@ IkK(?BU>:7F dePF]O 6/2hĭõgp( y#B-LdҒQ~{W.wˡ[Ma.X?7ҳ 'pμm}9^KO>uvqtJ!6gZp_ a $1 _:uєF(Rb}@~nT (7ڗAee $$Q,evuڲzsdZ \omX[gm׵`]DO_$V\-Fw0`{I^⮦( I՜wjiT%^@*vidcڷp%T'[cLX;\EX\N11oc%M|֮]X2 wXE5R['6*\FSpL/i, U|fn<6/v/:H,\QnaAt]f>R|>Lk07FҙISAHiǕSkH0u1[iY3<އ@NIm8 ko]Z(zi]v[ lFVI'vJёz:s|H7cI}L3*Pk G5PC4yBZ`Wv&MNdo$ +M8LB"R־ yI75r>]޸u Vi4Y|Ѩ%xΞҕsa&!]5} 'Qe¢Nua#IAX(O2RI!Wůp32I#.smV޾Js(5kH6`'5fWժ}X/^.;Y@ҏؚ2Ҵf\I6%esHgӑD9yy bXI _ƒpE)gL 0!; ,5m8]XvsP->g5.}f3DH kk3)L}_$ƖV]Vշ\:~S~T: VMKUɠ=?Uꔸ3D1a(Q]w[GΗpuk*|H??6I>x qA,֬D} ds0pYT@ɣ 0u}Dw Ҏ~䟜ǮzDuu>Rճ1^41 DX.>+B[qo>LvB}/ #yπBhFslfuvE\ ט]JL"k/،dZr7j|AmGV gk(.X*|\67nͫC*Ȁh>fiL]עa6Sϩ >Yfkk+KNSjwB~C ?K/aGWɩӥ9Vz#f63R+÷ͦʼ]a`x~:C? < F' d 3|)l bn75x$OA7q@å= {1=K@193)01ЄC@jdNu*qa|vDX(6Ý^"!"Dِ4HX1' nxA.<8\+ ll`_f7](%llmEtoWׅ.ͯ/K,W&q֫ GUVbM,ߔLYe,Z5mWˁaݰB{l9b R,=NA/({I wv z;"]l"p&= `v3\yD7#t#ܭU)~dYG*mԪ<ۆ"!"6h3z$[rey LٟJ"ׅ{RO+ ʡ( & Q;p\2wƒ^aqwfr3مm6' [:~y^vIa2G.X@O2~4C{-LQYN Ip";$(vWg73Z< h=da.(L+s9u't*^}9V.8W';!|74gf(:n&6lvj( 8%"^aM2f~Gѹy?,k⬻H}˩ \qd/ pDdҪW?*xu`+m Ql Gdz42$0K =F4{=_%nd/Dž}>wx!j?-G8m П|(ON+`>cl@0Cښɶl-ɸ ~{G<Ek/8C@vNK8[T5h5}1^Xt;]C"Mȡ=5r,`vtINkҊ3cM9Lz/B#`2pFKEuǵjV7 }|L ;3[sS0yAԏ?rE'ad{O 8=T-W=\898bK=d1gIKPAWmv/`Un׶X测t-lmĐ>۷h:Vy"gN1d}:Xu6>qyicj8X9 =Ұ1fbA/!}Uz]R\wz _D+DOb1hv;U2獱wJri c((:LG:lݑNTǡPEd2jފb]{erC oFU 7՜t>_RD_Ym 2wmdO,38}չCg,YAUZUDTJfh Itb€pv# OqcH]5a/jBRs6- Dg.N~\ -y 7_k/X SM\V<k!e)|ۙ`Xme鹁śBmM E[Wk^o.Oܤ{VKWlSѭNRk3CNnц @Ʋ>fc:D<_P|T+K}]Uٓ,DbZIr]H{HqK_ifFL&@OgӦ -;lѪ$^\ {%nU|7&M4``zX=KQ [qA0[LdLpXjZcd0<^ q_;T@}#GUZދ`{R^nA.:!3;Ƥ\Kξ5fp٨|3`}3CkQRUlͲW pxȁQ\fdh|{*ɴxwv&T(Ԅ\fypG`%Ok韥()<5S6 NOZh q6%|Xbnq]f?FSц`MV? &AqS(v/d3y7c9!$FSY΀\Jo͢^ nU=>2+f܌hwim* 2(mⲚy=қŖnAv 6:\/;X1o!! !J/6_!Ӥ !6 PgOף+PT\EIwes g2Ȁ-A,@@:UIcq-J9vur*ovqbฆ),?ÄLJP8mP2=dZZaͺpU*ɐoQz2<Ж, h-؂(M5AyQ|sR*wR]aQ7N]gE3&-7 $qn~J]DZH ؝tї\z @ L9P+$0̂$ʪEJL^A+vȿR_񑕅Zܖī ab^U/&LQZ*8:Q%Vm,;dQk@(ͫrC <-UfoQe U~,Z{Y}F)>ik+YO^ǘ^ʏBnXH(?W0u\yTť݊"ɗYJGevueilwG)u %y5~FGhڐl{Μs ,ހzYBۡÑ[BvTMgF&],;-` 81Lh6aʝ׍#@c&.E|2tˮ?rYVwEtygD#!T}n0wa6O,VₖH\OTz9uD'Uİ,hjb4p^nKEk :Ui6Ǡ\$:{cg+p}9a[2E!g*M R֕DRk}oEuY\-;ds奵 擡WI Is%L%/$ѢCDDM" ᶞj6&#de{81 ZdܶRxs,1  L npINK߭X"(z*FVA h[/bf57V zSfh$\P 1QƓT8ή,=Ӱ?] C擏Ï%T3;A=hfY/^2Eˤ~h9gcۣİ~7\ZǯmŮ2ܖ0UeD);WlwSWi>SCx!1DaZWuz-+Jx֕5!z_>Ă,)r߱ 2EA ףm@׽!IS,>ۻZ5xo| ,BN2Y߃ m#SydO_0 , FܖG9tzFٲ.J?d4Np¶gڅi_0{f6љtC7H @w0@UB@90WGn}Nvr[ 0l%3>zA&?LҠ}șZߒϱ236p3ჺ!aO $m=Q$Y~@险zUwz%jP6v{`PP"^e=u"_ uN’q6f'S qjܡO@XrԾS[:\t~t[:X,dKȾ p`Ԝq4x]f@F!-WKSĺ<)GNoƶrA$rO VZ;-fO)~ݦ̀ L}!% ,|v3&ޝ(F@a.Zh>]VU8X䛉X%{f4,w.Q @s /6qS?sj{uIh@`WYi?n@RG'TTd+BӾf]5,KeN &N;=#EoȏZ fzqrBg0w3,v9.|+pr\jKg6Y~#hSPd".` ljY;5:16cc t|r {] J /VR kl.|j* Zp? 7JYW:b09E(r0lϛcXke-AB/W'! {w!T'F.wzۮ"j<1{:?z_drev)s:0Ǣ3TkW ~En6|UT}+8TYv40L)3Ii簆׵BO, &gfnas[CQ{w]/tl*7P13 hQSʉD&t=_;muUV2Xf)$* eH4G},a sz(!GО.9E aBbz_oǃ"})F)u gv"u2stn `Ih:?0)6ۈF0@UxehTˑd de*f4MT NH0q#W~ZiO=MB_m٪?6aY'Smjt\ړo w5Q%O썬I1}lݶ(xΒ<;ԋ8NXI |Üŋ@z -Y\ny8BDlMV!-Lo^S=yɗf eyH0̦^R&Ni!D#d2{Y҅_`CDPUȏQy2ƗVp%Mъq3U64$(2^2ns%xz߫NL^XYSdj dP.uinuLË/;΂^D͸ Jz&j~jb$I8|AeR@ /LpUcȓQ^6bE9E$ى9htf/܈r~ĮkOUs۵&68 dDZltA!ݑ"UBgJn?9& C'$e#H͊ǽveaLbƔ᬴D'NtSXWr8!iVxhn5 Ƚ+{yڥR_#.`I 4"s]Uҥ*沵"錱u㜷!&+x; }ٯֈ BŅ E &NB|J4wCx02?~N ׋+>2 #Ty ul؎.r iè}bf#WQNBd0|B˷6SA{Pe6B]Tkkm k*?km8.;_זP?C&RT$kjQQ!A D9z٩)lEii?* PŐ ̀ZaC=(锷9`޲GTś灗΄7ĄOj9,1˞$(h uJيty0dRS꽩Zav="_Uդ$m=sb=3a؟w!-aVic6}c?řǷ,zQvu;M:1";ҁx @ElMɴt *'.#b %cud6i?JBp†zM;PQ04*e׉ѡ} PPPCKTm.?Ug(dĆ=L i)؉b}8 hu;e{\H RA+#B'5Ց9 6'Ϗ@Aco%H <4 RNRFaԌ1ݍCժjiDUtj$ bi)6'ǂ5SAhpƂCa~c=ࢣe4] "h 6cB${f|>^˸V䜑}bI۳Akv !GfWb)`LaK$DmhRoI!!@4NEkQxi헞){l0iP$L]CNsB|I0$ Hvb σTnSYpF Qy*^ؿLcjc޹#z}{50T2oXjYmQRDzj䧮<N axlKVGQ/Wz+)Dϛ2ߩt^PpcK/Nؽ\&]9d|ڄ!9*w=k HnJuk2_lDh*=F#ɀjMYQ2-o,[u.=w\i|"%cg'xʌk%cnEAIVvj`n&1"ZK@k݃Gn$2 9+y?Tsۚ/67!#9V\Nx*㒻{CԧA$arȃ'GQ؂ћCG }^9r+Jk(t7F6ȿM_pji*5LmY&ߥSAwMj:ʱ&:aKM;ctaְ<}Eg$qD\ѓ E]nssdsf 4RG,1[4\vqt#p\p+o^A"R2oƓ+poiM@z3 |&,]YPR@#N5/O_V=SXE?y=yyiq5Fҟ$5r!6\!jwMuhH_ 8mg'A E7iuRA:[r.td伛֊.uB|i-0('2bV%>$,<(\uF9ao8DI./Zdr/de,}lx %|Drl,lwdG꺉y3 Yc0ԟK/)9xOڡa#oވd Y__ ] z\P@5-/MIn5%ưbu5H3~PLΨ&D G8>~\~hQ͇ Ͼz(A, {R`.WP'LuλBɢyjG[VN:֙iI+bԩҗ2B*:`D LІ@w:9ܰ" ֭2scMRQش>au2}o3gі4^0+zkLAt'|b/f ,>  Elh0erCB+>V۶@}i8jG$âRJz‚teY^RH0:X4 J o6膒i2U_a<齙ITX%ե(Ok鏈Q^Rf0ڄEY?Zyc)7VSZТ0=WEfDǂYVѕ7g#p~2oEiаkwS!KgiJdDP瘜< mUQ\K@&L@J\94f7a\smD İ\zlX#xy*ba^߫ ႭBwP(cWa/ + ]o-|l/YniIp3][. XzZ=c}?|wKNB6Yo 0 S"/(Hgێlo_~]SR]ۊuA_} h_n%. qpA쀉:?hwPeFW>\`Tasۗ@C_KaݤbPXuDK>J#m|8C/)ej/끉Я8/"3HD.]TCv@6BҺ*l&ȣf]:(tVyqIt]G]RWYkWx8UshA /h+%1IuPρ|D.֢F֬}/S1 2,, wc4DsZGFc3>$e|Թ9ueb!U/4]y]5pll[ ,`bw m-Cv>Wu5s|DS2XKqHy~e}FS@>x)aUG ¡29%+2So>}x~aҒ;k y<:ϋ0-B \BQxBgT_HY"IhZ4f۝Iik Gtψ3JX܅J5 :oX :2/  &^{טa}?(HxFe,nWʟ1Ǹi+s=1-fQ+fL[ߛ6w̑xz j4迺k9Xc%Ur;dnWcײ~YvySslh1~&~s1!:^F|`ųf!y'~BSMQV!>bYdM\BYGϩQV\A`tD)"_Ej 7&XLtsA15Ob‹pY=kXY^ {!<=%9z+1F‹5Ĝí%^UrpѣUr]+f|{Gzb/.JH%(T@ #;k6l<20<^+Cr,w RAs-K8!pdz 70BQx..g8gd9n (m ^}Vj4gbruE/N9]gm-J5й_R&4=4w>GRub.bzBgUJۥB;LyLHmK7#UO`5% U_=hl1` tmGYOTf9/%/D#`@ڍXa{̓td@]ڳ"}ۼ"a7Ja 4{}oO0j6.6$%a"){Ym Xd"Vo jGЙ` k|Agm>!7BC2o l5A/( *VܧqHAޒ^qzCw2^.D0fK&3'KJ1c)8^I2do^u bWd {Ar^Y|u?^oŰA->d=RP0l˗#_@hLP+?(+$uGЊl@?~\vlw Sj}Yrߝ""N;CE#J[bV+?Mڮ:zT馆ܘZ\%}9R" nDϴ dgؕ `Rهosb繫s OҪ|Ҋwj@@z(EvրؤkᕥoOPJqGš6y~Ug߳=frث/sX^sd m< [Fkkyâzd=3M;v}6 b&&HdMO]udbcy\hI?a*mMb7㕱s*R_rJ\׆虏9{!KF[{ME3|y3wK5'5tl͟6G6Q` Zo9-^oSZm5:dFBYGѵ_ sE!Ri1w63Mp9i-P7-" I*z\AQth˚Gɯv fP [Sg_t,N/k`l &5':S4mA7gI 6N;LՑ|>iNӱdl@4ba?/V ȍ*d\\;!#+1("B3iIH98 AZJ ۸8ŒrUoEbGZ46M'w-c, YᛜU{\gTaGF>,ʑP0ۻo51¤5k:HVD&xẾT:jL{(;>\M0+ MNo A2d:F] (5rʰ5bVC! ݓhJ13BC`՛qON7lO6iVP *ɺw05^010߄l&G ^3y)]yY<,j>L34w,\k7x5(fQW!noH`p^EQVj@ziO^ڏ!"( hh1KRRrn*\U*lc+#v8,{:c2>H[ǭn&&uJX?WE%HoC@N/FO7T+(xyݔO'桗HPH!:o2M>X(q= Νib }#F:}սV̀&NW{KZ&{B~iyl:<2bvԞuK(xy+jғCCu)a:^w_קVH#Q<ςJ%x9O~ezX!e}oAP* r2wF 41P3+ p 1bhX138zX"nZcLz2 ݃vbOH^@dxV-sP&ke P7*ܹ]t9j#x{M4搲e[ j W4N- 9REXq2 JOXNlrM˶`X!U+2}(')D M@0j&:Ř_ XMmt&JL|UO;cn *z?\' odΔQ(! >5!莼Ki:]4(L8Ķy^Zcr jQм̫Ր&946mНb`Sq%[U7 s! MGs@zA#5<j9y]#]OC6>pÙs #IP RvÞ}qpo^e%Ri6u;c]&s5': )ѡrUՋ羽bj+ʁЯU~AJ╇g?`<}Zi:YXGIҘ ? t(a?P,l溬s{F3?%{zXsq9=+Rggɕ/x4z4씸 GǬ6ABK0{V|1Xq@1drh3ւW,;;Sf݌呸\Q&\X>i4?N/+qع|0c2+6#l 7љ#{ڨB}n!F*ڵ Rx7]To}F!+U͏hI CaLJU 9rfW_6lnP+B, M,!܃oT59<Veef)V@0]4omj>CHeڷxl(wvζ#!!vgZ3,^5+|m1 Jc7H=\22J{e*T=ޝO jрډبI|~l)gMl 8L\9^+F7.1$)>wHaF[Pylhc77]]~2z*Ao%!U;q"\5%uyMW?H[@bKL nHX*r)ͨ3hyu%J"<g"o:0gT}5P:}ͱBf6ԝ,MPYM.u_>/p:P=8b2GQ@؍j/Cء1bq#n/GKFgzcG~*@4s}INF=}'Ⱥ7v 49H1sCpN|$7=E;TXh^@Ĕ\G^3&3vN7I&:@CpT J.^J" _K3]hrr`}M~o >sKp.0vJI;MK_i>\5va6fpg`ٮx麜[p/kمsjN9il1wFfwJLl]e0|1M׺:m4R#CD fRA:+l 0 E P0OW.A >8s} t[QZyk8+y*`C`p u#ֲa4e^XK9o:C-Rg^ӤV4<48^Ē8 KD(;~XJ8T1&pdm?oGgˏg/:mA!éiМ\͒xt3oVR@{L>-ٟ Y"fɺ5 J2AJ@eWF2D%$(vX 2 9&d_"\YũLk2cV~hs!ؾf,̖33fXSzpd>Z1(i Os-ov+h{a0Pe/츃yn.#$ͳ N7[ vܐN.g)M)0m\Hyei_$S hZ4P&06Qr(wI ,[nx~\ϴw]ּyZ&7gm3Z >2aC3_L z A3eTQ48)U}UF(t#rLjyb YN[\2&#ٝŹ؇+D@<̕iO88:RqI`i@E dUL >^v9#SqrΨx7`vkd_;Zy\69Kt' k_-"7юk\o2bd#Q!$>Fg_A~"N8 rm( !m*&W[a&t #$0@3QS$}htL:s`2N-$w23?8q! @[{ִ%q.J~95DIxq[9iYeT؛IOڠ/` ylOBgy ap5@T#ǘt2^{2Eetf;,18mF܏>}cS̊/\WE,`cq=<|ذ yRɺbt_\(ok>˺W 5:Hgtcu i@6u%!LU"?~ Y'lmD m i7)"{(J_;"CpJ>& Llو=|,9쭴Mɏ0^Lܚ\j2|x[_ۥBBcďehrq[|іڅb3&*HA&b.$"iD aú*͜&l`k aB)ӳq3yuPHsfhGո lOOA71*[X!jBLֆ} &4L1g$_ZTau n /[|Ϧ"@D<""S<5 i&i eH]RCjrsC9]]4Bxu:ͮ JfEu^_]yuZ@.r7O؈O62b4{GDH!ԅCz u' oUI!qiZcr3Tyڻvs*:(Y\3 1b{ i tic=RZIȐLغ6ׁG^]y6$^ν1 :0&ovBk DDZ^{6jEK2=~vOej4ѬHҼnbI-!tN/(Υ ocjB&u} 򿃜}y~X8U%xg\QBػWZ3~REA卓iH/{so;!COl(ay3v=%j;96B`*ˡ4$Dx0)?YtH˼zODlQfкagw~Bל(IF;E^o'߿O* jKslhoְ}o֒lĪEtA<6hqokc돻r^6|MwZ9zpk)pЛ=-4eX Lk<6}5޼"c83uU}Nt-7P.A6aؘ$ː(ZwEa6rIs8 x&2s,PwkC{~DǍ\} -O~iXj;vz}R\>p~~â à;Sd ,wkƪ\ ~ ;zAGFLXΡs5A-l$+dW-${hӈSPu3aEekGŢd P~9r޴[(btȦZ8NO M_˝#O>! ݒ*1*H_5KoU,mo wZӏ:HNc惲Yu@[tܧbxrGKYZȭ5XWX0M)aSavV|1$~7R! ~3FFQɱTo-΄!U i10 kj>QaT4C``\($MsjJ#r#/?} W=_ O{6&t^zh M17tՠ7S-aCtE`QW7DLEfH_1qX*m,6_:2~~UVv"?1tv*ј|O!e\&T$̏YR#E%#5ڞ44Z>ݎ0̗_0*0%Iы92-toAZ Z`AE8Ѳ!2_:DVc=/dUAPr.Hޜ>*CZuM-`著dsɴ5*x]X]e4Mulgݓ u_x^dm8˪ q a.Z=X7hS|:e r%U rU"W*w&jP @([75~=7~6J.dƀ' [H&K™(-GOFDiE8V+sDaa2@(WUNdbs8vLnߚ=^:"!}T',Зp;c0=Jt\-svxsNs>>icp4\o7Ȯ\8 kϊXtAtR| B,&)6svdCca/@{:m,Udf0Aݐg-d-Xlhe^N ]}+U)*Y(`vq]F#qB>ϭWq2f!5&gJSb^ΣV2z;z_.=K(U7Krm }{ĕPWnY_:RC4d CtC3?3߽^"6螢}pY'ɉ\,"]k=%؈?dcN,X?5YlJ{tGG΢~_ jЩvxK\0|x%[ ' T#0k 9΀PAxE}͊$kǁNgP ջ2tHWB{-eT׶.7D49˲ӴO-ro;Cv'.)m+ݻ15^{ =;A>8{T)+<7j3q-s#ECu}`K m{O6(޾˳oru^:'R`}S$^0Mnp'p⟍ΟnEh7!ḾuO1MZ 8 gG33B?$Z{GQul!MnrB@P7!ݳ-X#/ ;Q˛q ݷ!pR?9c"P"ٯ+Bֈin@nIRsN&MyC)o$oJGDE_1UVE=X҂/cy<9_Oշw)v, B{cH@WDHQHrsF"`N)NڹY̬#N?GPlӆ[J +^H5E&;R0L(oՑ`@uc+.dBffqF9hQr|Aש>4L74Ҏ?@$Bۢ㼠H!ňP`B\yFLE$%*r<*ףSA7gb_n_7RGFǁBN/cܺ'RX =wYa`5ST5:FӖ 6C.)"D[nHJ95rg=p/:1֚a̓WiAyNgy;*n꒑7b8{1@\G= wƵx V'䮨T1|eRGoʅiKt"3Ѐ6ƴ$Yg|s? }m<{A[df@$qw{J-[p)LY>q>2mƹC4|NԼ2B6 &?j:cLz2ʇlQ^|˴GhD`oe;ܰ\ Eqm@3H$X1鸩*xvEᲖ sWRu#O)^ExsĞ!p 1|0}4 H0M0L/$iĔ>2ES`Yz4qe?+|NP Ev{]GME&!aNR jhYj\xۊ4.*;#bM6)(1ݔy4b uɒ,sH_i|oa?5VmLuO0(?8 zX-άЬ7 O?8. R'Mؐ4_M >F! 4B-Ʊ9n cL{Aj$UJ*D1>Lh꾪}ְhH:py. @e z~^DKە/%vKkh^zٰ "]˅/oU]iA1Io^yD$N?r-:q* h~xcn: F4bX q$v'L ;mN_wO%KK^cnnR~Qv m΀=fF<d^"a$a=pC``~Zlb G.3̎Da#Y4Om3xXq`@8`bcޚvƎB"ӯ˘W5E:y5=J*/E$+t/ kKHq߂\$&"yjr-! ])@>{ɐi7Mѹ[̬ vl# v:7Gzow^zˬ"N}8ܺuxc>W`yẕS4t,"&UmG0 ڒ6 [َR@$crԋ85Ua%*(*ޞ kf+F ([ݴ1~y19 l7(p'{!بWxtuRwߍ94]k7zVl&Tq.~=1 nwK?PLQ/{FV[.1Ͷ^:'>G85 8^(jxы 7aK$*O+:n:˭Z/JƕCX * Ex"8p(R.<sv8<)ikU?)=wT-"Ȱ,##DLتxW9tyu %U/bBIτ:yW6G/aVɦ,ޜEJeޅ?;MQO&a湬<+nr Elaxb! 9E<RkL*7ly]:>dd eZ|d?(jӌ)K#^Qh.ԩmUD.7.T@в$xCUE<3OM!eb41N T}/xRl֚ $"uSٰA %BҭuC'H|SC" w@cb,boѢ2`]e۰ KqƔ)>6[|'MΤQLBwLmi]8?sV1,R-hy:+=Ŀjٮ{?]n\dQĥj99}AFb#,#6(҃Wi .pQ8K*waխԡ^-5L=!Vm !?ijY +e lZY&w>LGz*)[# _a0j@5^gBd`.Y3(R] b &iXLՄ,E*hKX.>vOpU3E8 >a/S/LI9‘ݦ,Sګ+CGJ̔R mloϜs}͒{ &,0T`)N$y`aZĨa9j޶ Ѝ]"N3v&u`WT񷌯q(T1m" ΐʤsZPN,dv?zlY=uAc/%27*JvɘW6ڃ:Oƛm}raָUGRް/J.FinM- BTaS8q s ؖ=g则w6kb&M4I$9lGܼ/* nV 6`ᱤG2réhx133o%-68Z&ɡhF',H_Uجd9(w/bxg[s&<IVRq<{ߵ}uťkV:P6ףi2kkڴ{5 (g YV0RɃW% D, L7d 챢wkJNA. EDlAəEۿR~(z嗊2c~jlL\j&GEƮs }(m:a-BDD9! G)kϔ3 L(:X9+›tU] \Y"?Y&hgecƌUZfʣTT_:Ji2x~ho 1c˨-pՄzK8/,_ @fzusT6.|G` C4䚁E7K{1,h )5Á,iCZ HSڳ*{T2nӓ]e)K1ό(3#`bH\1,@"wܜ{}!ۯLVqV߂nZ*U !jz(env1fdMҠ^Ң"q4{ll:5:U/ Fgmk]%; >y Cᙑ !xz!^؎O^@ji eQL͇J`ucO k3YlLa4Vi3WB<"W/le3p%HgQy1\*AԭFNA`rk+xG%6]7] ybN~)Il5ȇh۱'AO7jʾ+S~Q&MGīBBYW"+u|,ʹS)F:)YaUa!Ru,*}(8{Zdhu5kIZ'H<&0r fVh!޽qwb}Qo]Gz3D\l7Uqr|br2a:Q(yEcR]E\6ɒcEw.gmRb@Ȼk҃"Ҡ=7BNZN{'3ň2S ub:hVݮx?wR54>'c@tsYi~ 1`p%fFk` 1R3´E7#͓pQ3 ]cc^챎^ٷeTІsGv70_X:}%`k4{Pyx Lk*LI%o^x4n J[Fjoqԩ'P<{Ǟ_ 9; JW<;Q6\=&d$'qDb | 1#)>]:Rv\|V5(X7@~[|ZEȜR;Il $Qu̙@`׆}q ̐Iʢ@GM>KB{*Q-3<șO⴨[J{8oلY厒ؖ/&dRu3wG[姗/Gpm5ICkZ"5y&\q_m>tK0N5A Jbh x`*f98jd(rU,G K!3vS׉]Th~}N6;21 B#̗4L%Y& I9[Jߚ1# π~pNZ%IK+2S$bѮ[[6ȨM25` }70u3OVj#vÅ/l)N e]D@3\AXod>sA+-=՜2ӊƥQ XN…xWf&ONwoFz',7`J{HU\U4_àNvQz]8LlpB.w/`?0fZ[c(R^ 3gm4BV'V4  c0M"3A7N 'GȽΧbߨň7CL(L[%O]qkbݶp~Udh?@SCea 1Y{{^!C%ynZ¼l\,FA2t [wsj#2ɈR%%"g$OP} cRj@ϵnYc:=ft]-I sUzA[-Ŵ;h% ;Fl NrR´SEmPLGz-P񕨪s>xNNVJ2 JIC5A1N#mEma? DQ{r0HߪRMc0֡mvʙ R %PlBMnP('J5G? cc5gyY!LI4 FI+%/Yv*tDI(pL6lG>̅Q-:[/˖6+c%i*pZM CXav dZ49Mm[1R]{ $<_eMÿ9WCR`h&ZOf'QvHzՅ$jypiƓJ,(!t]{2YlצH$w/u_m%f**5Hұ)ȁdEyˤ 2Awݘ`?JkJ-=FBTQ#CO/\eSxRf _DmɧaM29JR +;R:A[uGι>'lcBwNov(ln$N " ]ˆօ! Ut H+O9Y,K9̻ڬBYY t,)]]0j欍~q , J۷5ovX+72GZ\6v:ltV89D3=zr}4vVF vSlʉ~)A@v2JL@*4hQEAIXxlr* RGIYtg @&wc{mr|1qyJ[ AqNlD#8 ˭8>U*83vnޠh:w%Pc^E9ZiB́qʤ}amtU*H({t9vGڌ/70\Q-]K8[/0HzIHMl]Y \scC!JwDjTf$ȸ[.\0O $ɺ *þ9{W2*u6-tJ1@ؗ98T8;rۨK^"Q!uJryU:G^x?fFwZӔetaCzr[CssE~) 8$F'CUFpˢǒF/чgr9}<~-9*5 CJ1UNRlxYM}U'QEܱg~J~\o`]#F~ V'>D)_Sc Z4j !_6Ŵbe%=?)#gm嫹Ql{P}͝FNլ)a.i[&!F%[PRvN! N^F.x}ψ &UL_zKy_8?HTx %:U:;;跆8% 5'1$ Cҡ$@f9}(ZASqy˵deFpce^ Qڊ\O%uB#1o-MYzwQ vo=rtzR L{*[~ܖ&!g#1o=Q5Ԩ@xGd|)h,1Cay<-ۄww(? ߤ:,_Wү,!pc7̟;@)9ڞNf|"/!pTw*y i$j/̉T|!^ !Kүd\5l*lE[ܞY 6V `2n8*B5 N5?<.@Vώ)"!#!ս@&mY+{ȳ;(weѰNė)Ҧ}&sn<|A ;Om@1ka4e'N-JL4f]'#NS o"w-!Z 27HIϧ c#J N 57Љ N9ȖJ A34^`A^⬀"AţcVм~$O>DU(K* |t3/q3v$Y[Es Tx;rV#ZƙR^yLlɀ2^9Ma<EIOEIn~"uUt9Ci|iζa&?JG $8YcI|Ћ}N:w[$2ny+!/NLn33M`}*=}8U`Ҽ`hA|߾Sf~TGh)_Av(43Zb'MF / +>/u/@Q@@MюΘZ&tku'{ p5Cl 9"U-~](vZ:}mLq{xV'δh6=@.ݸۯ?EbC9j*m0|ㄸe~p\}8c7 2gëQ o9L|_1L׻}Y-ODQMR|4 PPmK)HakXRNrViU9sC3 6@)J|XP yCs{Q_̒DJFdrNF:8> ӛj /^@PdGo&mC ާXؠF~>.#!Rj>0 $by8M=KC[SON4}!a^u N=zBp0&uWgV()(%qq9fM0Z%ᣬc#\ 7 M"ZJ^XadQhGя)SqJLtuLI2OMe:DG/IlvO Ib$e?|IL |LuqQglHUP$V6" #В/vr+k;-t:>GӁM[9sG kC,gEvȸ qeycL(d=}88 !i*!Q/= .Ć\}_:4'EgG/{6Rc )Ig I^d*ܤVGIz!>*w _ ;uLȚڣB |3KiQM*~(lr5[Uռ}x]cŢ,b[k$\&*Ս3g rx&%cYI;g&7 ĭ`ub9ʣAyKCmi[ʲt̖͝ZWO~R[v)&#3'(:iǍB#w6aLӼ9Y Q FC ֙h>CeD ݫb5H-f:USv>GG}7$Qt4AMr6c|fAgMw*{,]Ī(PU .MM e]ynGm>Z7?_:oNjvK DE[)ZrL [ řT@vvÊ}2`ʶnbaۑ;"Eڹ[:~%9z@5\B [\(>h$ lt]t#$#qJVR8ޜ!z+_cJİ?~,N("N?VdKzvuo՚p7by,&HMgBYsjr&{Uc`et{*D&(Y544~`;4;7rk6(ݤ/D_! 5rIl75'0VջsӺ`PR Ϗ0@URR_7K=5kCm7WwG{lI|?$ %/-ŠN[IN.Rہם a֣$.VECC0A,@oQ*IM.YN-ҟ:Z:  e-t"Dڋex'CPa9/>jݙ̱z0!Jٰ0VB0SY.xi0!Y2ƙӼ4U QrN~¡wNs`SiY @M 6Q(0ӝG#jwDo s"򇕆 xe4E=nƴxĠ?w|cCH `'Txr yc+*+U}"l\@mvHKqzё pY!y ugW:1A{/` b5v3ZˆQahS8++{Nq@w;';C5-?Tc;W?|=.~pr[%CVs@0%"Xr=P y>' 8}3<:7r~ *\5eZY…:ǀ ?t(h>eD P6iQTf^d}ٟB&CKbǑJվtɸ)Na;ィ,h'fI!ud/LW3{yoiG'KJլM:UH:'G~  -x"/'Ot,.SU(1 `˰@:l케'1|)(EabWVxG4]$k; d/;lO\ n,km*ϝԯ\ҝmu%) +e·MYLZ»|S[`{X$<`lhQ Vg~S֯8~`Œ\Q{]y&[e2zJyL@HҢmsuRefƗ[c^6[V!".7T#g,lB0;KZ~͢\.$wq?_S#ݺW­2$D:TWe.[wq ocP[[%U(}Jlˆ;?$]$8l.|$}E!br)Hjo-ΥarŘX2B3woDssfJוѽ9\^ȑV/iZsë+}1Zga zps m1vz"SVs8* ˮrKH  aQ G]YAU|_ƭfǞ@Ay -B\п}Lh-mGg[-7jLZ^ ̴y`ybUUoJ;B9lHk!]txw$n',_;vLVX㎥Ӓ.ma3TSe D<c-q?xoа`J!tjcUB] z(.PY'uwL!ӭxFiP#97 Uv7 ;F3wӄS4Lr@%JW&^%'q"f{AxtQ8TZ+|MM=`^"h^z%cFkF&[Q;u4i5~:q.( ӕ=:#7,>&S#)sTuRm OD% o <40UeuoW> ̮Yڿ`w/&eVoOaA҅SR +:~W|d-2V{>X\kc,yO2-%R˩ɻ ITFPeyBnFX }ŷqKem?LGEw,W-&n遥E9YM >K $S(!˜ƆpJ2?#mcbm4R1l1#:-*5^Ef9B`TGMڒ\HJ#*Th /u|a ICaWZ&.u*RUN'HBn)r$2Ml,qL8 %~ y7ґT7"NWp}n6 "♅i0,Zg{\a( SiǨI+SOӖƬ$='Hvnf,[ 6lU%H,Bm\FRS~ǒ^7V#_~J`~%ob>;FxIR™s, ;)yvhfEjj(F0)] &A/t+L']-1T6/&:R{ 4sj anhpYJA [ '(X~S«7~Ԏmsorzt|LӅOr 8&ĸ6t -v/ٟN[{ e#l1i3,,F6;߻JD&_1i璧3yé1 8ű7C6#FvGAfO%s'lu@pUkMpddR}}Y=ɵȁ87b{fL\Ix"]İlV ԪCu\mzRX )6(*w`ϋՏ 12~d]KԲig="z&֑!k 2)DVj=|+G<4sp|۸طܖό! %r'xf05kC]h{o6j|;KP|9qD"1`vcOY3Ar]v.jGDɥwC),E(GR  yG. BWtK|JƪxFض02Jtfm Lc% mMNhu a꺞#t}3;XsQ[L\9\}~ڋ,~Ax`/UߜI I#]/"'e< BT,;15QugNlLOt.p k#&EAh:̦zm|ӁV7@d'U }H VpdF^A[ i{3[e,Nv.QeR͒D 4v/8~o>6#(4b= ϑjgn{Ywl@;6FZU( iLy3ʯ?>bb6;׀(ZGxc>Q]&;SGUʁ)Ws(L?d+i2 AL3i]h1pn16#1Oqل'RbM 7U¼.AVҠ0u:b+-sϫ[cHMrg]T-{0Jʱ/fw]VORm3 d V X|GGM Q2ii$R#R@m2bJu!Dk/r_(\m J9&.˷v1 N9h/넯ݽ52\5(45ʿ\WМ3CJf hR(!Ap Z:/zVo'f'ÔG`A1%dXFzsspen򺗈ǻHx\0^+}r;4t\.Ir<t}Bthvg+_Ό jn>|7~ ,3š𼭪3֢M_g@7 i/c]ZYX#VN! Mt9L"4"7ͺü21˫>h( !yt&D@˗ْ`҄:gϑ19K]}X/YM vzGWyg+P;6;&CfcԳ{dTd`x&UhejB{?J뫣uLsU]g/ ֪ŏ DQ@?wIPRJf6XRhd >NNc_'NRo"Q>PgI_` eǵkc H*7_J.FB#PeW=ϣ{30fX27 ~#7$vd5t-ox*);?m`%9tbml~w{ǖCӒ랓+{v4@V>;iRG"꿝QΖ~^}n)+mf3Glok*4,jpxd)Eų?^62[V+ӢM^)j;AA(P(NÏGe69ײz` I2j2ҵ&|bUMoϦiD}˟jxvɀ>XFTYZk4{i6(U)x qqR MoCDzN}l{ Rc3C*69ЁZ@$":&Gmy;Apy Sm~Mo8[q$/߮9ÁVKl~l;Ĵ}pQ/xя-qkK賩 69^꧔ESxRdzdtI^!Pل uP C|)&*۶jz~%0E܋_P놫L4:)/|6gқbr OB۠{1.6]Y%Wrܙ"ޫIJS12D+; (6"3H6#`Kc#~@|ڵ ?YC(zkf)<ȺEQ|"ѣʛ"U5%Ή`LMԥM 3[擬CnB$$@aiŸD6Cb*43.s2:nA|e+\dfdE1LzK>/ C]j}chy]-> $ZQ*6?dQI ^]ٵj x,5T+0s **Ev[bJߗcZ&[8/,"Rc@: po$&c uGerq¬>y'Nsg_d+eMP}]W'Λo!O%H3렩[j- ^_TPk>V#~t7_/~y58Fi_ְ템dr,ncd`+ӰEl 2&+BWׄ?h?B-Cv"$3hbNC*,}Hg4-;n5JW(?q6u0R;qLSU~^Pke3 ɴ$́>TW,M ? } YJVp̦.G;S:4n҆Z7q=ב7EY1Nٍev3$%L3aA*PH/ r&(9d{=(vq:6",J$)b+F#2L*mWF!=~P~ ?rZq:Go n濞*d}#y&пi/r+Z| LմI`B.L4PeP\uc))CΖO,ݺ5nw$ %f:]t2Sv"tT0nz;'_ P}JFR 0ږYQQ6WZJ0scI^5+Ƙn=<@jIH$yga=*2|R+Pe+~̄z8~o~|$oUCq2m,Y`t;CJ1E5s|\&>^?Tm4Vfڎ<6N0 c3yjl~wHɹ\ uo1 ۧDZV_iH\`DOȪ MmoOٟϨ JO?(PnRvd UK轘y:1\_q%&`?jfO?[GPK%PR$Fբ󃭎r[ J{߸ަr)"nE,Bx4[1dM Dm,+ܾ(ǜzGD?zQ؞;eɔHLWb 짲^ &0|BɍEH7]j^%B9a/v|2TrnL_>_(tI8`]gBGz]m "w~'%ܬ>q2hX  AK(H;rb_cb՛ ?;|I7w~alF u+uM\8= Ƶr +K= iu`zC0:^r3Q! tE ˈ;Uf-dQٕA+"ۂ³p564??%4[0y'swv0{Y'GRXV(/NN.' aU)Fvա۲8;R+)1mtPX]:9CM`PRo_A 0L d[r"/+,\#x^_X ;%!^3"]pJݏh Jt[ mdӝ\W"\Fس {%ȴJMq;f-5zP鄖E$e$Y@* ;bg!I}ZrҌJq ‡N pހ?tSDP鐘*ɮH=]T/ي:o pCq'tEY^E'"\)Ӑ__49__ gN>wZՁe#ꛕ&ZWCEqMhYOdc$ZHAgtBC&3_ vEWඕ_[Mf$PIP418.X[4Ԧ G4ɬ.}b% zFob7S*8Fif=->.4mc0qEMUظ~\ydgn*  #(&Az7Skw)Bd~ va; =<^8E&xc2 !B/ڿR9 6`; oÒ&Cff1) g"ӓ{udlx"_ sCD:};&(EFI z9G9SW/WMd,ɕnSR~ 6nE* 'EDh0r'2ܲ\ |0Ӫ  ]d XLx Zg#Օ|'EF͆@S5Fꛜyc5q' l_#%!ՙ)< /h^DSBICZ>U6&+: C`.(v3!tay0#o!2"T$&=L*\*i|.y#ܷz!|}A*0RYBN(59>pE*_&G: ρ& R~#or ¯y\XI)c O&F\'h;ߒCOիxHkK!v$w5rSP+ $!JFz !Y3RKsS $DzFd,Lecu(DZFhTR= BR d19!ƯIt`)Z-ڿ+, u{cUbzXͮ:1)=Aui"Yh& >pa(\iR t,8X&\~" /+r0A2&8e=âG-śud\!Lk>dҽZ_6ûY'=g3Hm"N ŠuܘIc, h&{[r#Mv䰀VU}*6RQ>)F%28׬6,#YhgAZ)z ?ʇ2BD5W~ku{X6ƚc0@ecc\uO}{V%k,R&[A)%O[ $"޲LpDod c e/tzAoos9h*!;W !pÌ8K/4v(}zsL<*EEuh,pQ`2"sjj- -;p1)b?8_37=<8-1J_?G>K&j$nlVYzu9V@}/3>`p XpDI$*e=l#j:SVzql.R;'2f ԲiYeؿs_fcD;87> s>!e0vc `j0-ı * Xy`"Y4_+3$kS=AQI3JgNܽ&|#X~ 8(")CF9'.7V&m~Qb2TnCHbsN [D-nP#=CHh](s-jÓ}e]a[FI gХ|/_'>:%z65J[͞y O3#ͯ[F߁ŇkK?D B>" >BKsGr/aґ-0{LXG˳KͣqoO2$BL.4נjdlQYQUMc3!oȲn\< XG'|ZDrlvr''w'qv z_G7Vw!Sq]d鰖WqSH"=)5_ P7RAN[J-.ۇF5(?!塏b٪YK16DZA=t  Z[qK4^uhFhN 8)?Ѧ #{@]E3;XN.mO$'K{t D&9Rx@} EVd/S-SnqWG-z dP p?U~ IYɃ=L2ឹVWdSQQAoo P)z2Cn6Fڟ2|9ϡ?sL7 ?03yCQ&=: N"Mv>J*`S\^%ox6Pg)?i/;U ⎀ J6Rj4qA׼JRVB/_uoѳӰs*nN e"^=(&-~H8D)Ϸp`q6l:-ڸ,8-ݻ'P$=~[%SG9|ɘIͧ"a4z!B`.>^ ?55|l38:BK#XT#y~2n73Ni_Baᙯ.7MMv݁<}gjȞj,okrDKVoŪ[+>vSՂCs3 >Iɓ[]$AaN>B'[[=zk~&'%7K)_9at$> } =JksJ{D  /޴Sǽ% ,~t&wTjXLvvB{4 ÖoX],,L!Mc)ltoFFM9P ,D7փta(jfA2 2+NZNגD`Uיy)aٻaq۷{왷S9M̤,x5jzgoL||u lKjv?恎eܟ?6:<6-=]Ea:FjՓ}UI,U3IӊR?IfH@8$4jP·s^] jOm X c:wOAFqPmh8:JMu2k)48$&Su:tBIscϛZ1dM]Xo`V'hpȾ^*2@E B8Bf}aS(LpFT]\Ʊ.~NW[: 6މQ+hRO*yl`tb,tY;F:'nH}_In64 r BeokV?5@bߩ-:w#(i#' Z`9k"xm%ZQ,peKQNL# `,ΐl%Ltp,!\Ue'{?RO};*K_YT gƚ^!aµ7#67>tZ,[%(Ly@/Cߕ d/#4du*X. S:N _(,gHa}g̉bhlazr)*_pؽ& 7V䧁Tt+»* ޝ:77v2vIgavkm1 y#0ZxXdK䪫l&mZ`?qg3跚㡝7y)S?D&t VT8 ɾWH",_n.$yNDʋ!bJg侃f[Jw2 q&aSZ-ijV vD!{v#;t9?$> ~!EE"C~WU0K x@sa58 tw- -3Sڸ {G‚f>gokAuV,bTM(\:ڕGZVvFD^ cҮ{*>tϰ-(sWLw%]]FD}rWnTGxԨy\4"ofel6{UapN)__fFe355oeϔ[I[k'ĔCMk~/S i馶bTi ߣ @OxC*}ơ?FU7Zvh,O YfCIm'n !K ~*U509Ä=J[R`<֮T*&s5<d FQϗ-9\yuV@4suݿ}7m i>'}x @6A-8lɛZT[+P\4*P{AKlIR"6yF[a9ߛD!n0zOh:t1>Z# 7obD!YIJj#3(ׂ̪3s7Bbil  ڜ= 3=1PGẌ*zlN҄Bz$ DeZ ,H YZ