libfmt8-32bit-8.0.1-150400.1.8 >  A bvup9|DZ@N㌢xE )s-0̠_o՘'sFA vgO$O#8"ȑlpo->Sv9\ %whH\ w xVJlcD~sefUfYYɅMpTSkjf0JIiH6MP` &}|'}SL6#L z [?366ec3c08c36280e23000fff96a3ddd8143849c685d3ec2825930563d076909b37220d062ff5c7c49f074378204ac232432a9f85$bvup9|04/ ZlUbXCZ!T-b\S}Ks3Tjvd9|kK4^W$9T YS#fF®m:}غIsb)5Gp1N_6EL r  S=Nr0 b"HO7I#p>{ .*zݓb⮶ݺyϬ!P& j77yvЅ|^Drc=>D~u0>p>\?\d ! >tx    $ , n D(+849:>YGYHYIZXZYZ\Z8]Z@^Z\bZfc[$d[ye[~f[l[u[v[w\8x\@y\H\\\\Clibfmt8-32bit8.0.1150400.1.8A formatting library for C++Shared library for fmt, a formatting library for C++.bvlsheep66SUSE Linux Enterprise 15SUSE LLC MIThttps://www.suse.com/Unspecifiedhttp://fmtlib.net/linuxx86_64/sbin/ldconfig嘡bvlbvl893ac428f1cb733361d871e036c11e871d732d7ded1affb6300ae160bee41ce8libfmt.so.8.0.1rootrootrootrootfmt-8.0.1-150400.1.8.src.rpmlibfmt.so.8libfmt8-32bitlibfmt8-32bit(x86-32)@@@@@@@@@@@@@@@    /bin/shlibc.so.6libc.so.6(GLIBC_2.0)libc.so.6(GLIBC_2.1)libc.so.6(GLIBC_2.1.3)libc.so.6(GLIBC_2.3.4)libc.so.6(GLIBC_2.4)libgcc_s.so.1libgcc_s.so.1(GCC_3.0)libgcc_s.so.1(GCC_3.4)libgcc_s.so.1(GLIBC_2.0)libstdc++.so.6libstdc++.so.6(CXXABI_1.3)libstdc++.so.6(GLIBCXX_3.4)libstdc++.so.6(GLIBCXX_3.4.11)libstdc++.so.6(GLIBCXX_3.4.21)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3`Q@`@_G@___@_-B@_!d_c_@^^@^^]@]@]]@]@\\9\ @\ @[valoisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comhpj@urpla.netaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comolaf@aepfle.derpm@fthiessen.dejengelh@inai.dealoisio@gmx.communix9@googlemail.com- Update to version 8.0.1 * Fixed the version number in the inline namespace. * Added a missing presentation type check for std::string. * Fixed a linkage error when mixing code built with clang and gcc. * Fixed documentation issues. * Removed dead code in FP formatter. * Fixed various warnings and compilation issues.- Update to version 8.0.0 * Enabled compile-time format string check by default. * Added compile-time formatting. * Optimized handling of format specifiers during format string compilation. * Added the ``_cf`` user-defined literal to represent a compiled format string. It can be used instead of the ``FMT_COMPILE`` macro. * Format string compilation now requires ``format`` functions of ``formatter`` specializations for user-defined types to be ``const``. * Added UDL-based named argument support to format string compilation. * Added format string compilation support to ``fmt::print``. * Added initial support for compiling {fmt} as a C++20 module. * Made symbols private by default reducing shared library size * Optimized includes making the result of preprocessing ``fmt/format.h``. * Added support of ranges with non-const ``begin`` / ``end`` * Added support of ``std::byte`` and other formattable types to ``fmt::join``. * Implemented the default format for ``std::chrono::system_clock``. * Made more chrono specifiers locale independent by default. Use the ``'L'`` specifier to get localized formatting. * Improved locale handling in chrono formatting. * Deprecated ``fmt/locale.h`` moving the formatting functions that take a locale to ``fmt/format.h`` (``char``) and ``fmt/xchar`` (other overloads). This doesn't introduce a dependency on ```` so there is virtually no compile time effect. * Made parameter order in ``vformat_to`` consistent with ``format_to``. * Added support for time points with arbitrary durations. * Formatting floating-point numbers no longer produces trailing zeros by default. for consistency with ``std::format``. * Dropped a limit on the number of elements in a range and replaced ``{}`` with ``[]`` as range delimiters for consistency with Python's ``str.format``. * The ``'L'`` specifier for locale-specific numeric formatting can now be combined with presentation specifiers as in ``std::format``. * Made the ``0`` specifier ignored for infinity and NaN. * Made the hexfloat formatting use the right alignment by default. * Removed the deprecated numeric alignment (``'='``). Use the ``'0'`` specifier instead. * Removed the deprecated ``fmt/posix.h`` header that has been replaced with ``fmt/os.h``. * Removed the deprecated ``format_to_n_context``, ``format_to_n_args`` and ``make_format_to_n_args``. They have been replaced with ``format_context``, ``format_args` and ``make_format_args`` respectively. * Moved ``wchar_t``-specific functions and types to ``fmt/wchar.h``. You can define ``FMT_DEPRECATED_INCLUDE_WCHAR`` to automatically include ``fmt/wchar.h`` from ``fmt/format.h`` but this will be disabled in the next major release. * Fixed handling of the ``'+'`` specifier in localized formatting. * Added support for the ``'s'`` format specifier that gives textual representation of ``bool``. * Made ``fmt::ptr`` work with function pointers. * Fixed ``fmt::formatted_size`` with format string compilation * Fixed handling of empty format strings during format string compilation. * Fixed handling of enums in ``fmt::to_string``. * Improved width computation. * The experimental fast output stream (``fmt::ostream``) is now truncated by default for consistency with ``fopen``. * Fixed moving of ``fmt::ostream`` that holds buffered data * Replaced the ``fmt::system_error`` exception with a function of the same name that constructs ``std::system_error``. * Replaced the ``fmt::windows_error`` exception with a function of the same name that constructs ``std::system_error`` with the category returned by ``fmt::system_category()``. * Replaced ``fmt::error_code`` with ``std::error_code`` and made it formattable. * Added speech synthesis support. * Made ``format_to`` work with a memory buffer that has a custom allocator. * Added ``Allocator::max_size`` support to ``basic_memory_buffer``. * Added wide string support to ``fmt::join`` * Made iterators passed to ``formatter`` specializations via a format context satisfy C++20 ``std::output_iterator`` requirements. * Optimized the ``printf`` implementation. * Improved detection of ``constexpr`` ``char_traits``. * Fixed exception propagation from iterators. * Improved ``strftime`` error handling. * Stopped using deprecated GCC UDL template extension. * Added ``fmt/args.h`` to the install target. * Error messages are now passed to assert when exceptions are disabled. * Added the ``FMT_MASTER_PROJECT`` CMake option to control build and install targets when {fmt} is included via ``add_subdirectory``. * Improved build configuration. * Fixed various warnings and compilation issues. * Improved documentation. * Continuous integration and test improvements. - Bump soversion to 8- Update to version 7.1.3 * Fixed handling of buffer boundaries in format_to_n * Fixed linkage errors when linking with a shared library * Reintroduced ostream support to range formatters * Worked around an issue with mixing std versions in gcc- Update to version 7.1.2 * Fixed floating point formatting with large precision- Update to version 7.1.1 * Fixed ABI compatibility with 7.0.x * Added the FMT_ARM_ABI_COMPATIBILITY macro to work around ABI incompatibility between GCC and Clang on ARM * Worked around a SFINAE bug in GCC 8 * Fixed linkage errors when building with GCC's LTO * Fixed a compilation error when building without __builtin_clz or equivalent * Fixed a sign conversion warning - Dropped fmt-7.1.0-LTO.patch (merged upstream)- Update to version 7.1.0 * Switched from Grisu3 to Dragonbox for the default floating-point formatting which gives the shortest decimal representation with round-trip guarantee and correct rounding. This makes {fmt} up to 20-30x faster than common implementations of std::ostringstream and sprintf on dtoa-benchmark and faster than double-conversion and Ryū. It is possible to get even better performance at the cost of larger binary size by compiling with the FMT_USE_FULL_CACHE_DRAGONBOX macro set to 1. * Added an experimental unsynchronized file output API which, together with format string compilation can give 5-9 times speed up compared to fprintf on common platforms. * Added a formatter for std::chrono::time_point * Added support for ranges with non-const begin/end to fmt::join * Added a memory_buffer::append overload that takes a range. * Improved handling of single code units in FMT_COMPILE. * Added dynamic width support to format string compilation. * Improved error reporting for unformattable types: now you'll get the type name directly in the error message instead of the note. * Added the make_args_checked function template that allows you to write formatting functions with compile-time format string checks and avoid binary code bloat. * Replaced snprintf fallback with a faster internal IEEE 754 float and double formatter for arbitrary precision. * Made format_to_n and formatted_size part of the core API. * Added fmt::format_to_n overload with format string compilation. * Added fmt::format_to overload that take text_style. * Made the # specifier emit trailing zeros in addition to the decimal point. * Changed the default floating point format to not include .0 for consistency with std::format and std::to_chars. It is possible to get the decimal point and trailing zero with the [#] specifier. * Fixed an issue with floating-point formatting that could result in addition of a non-significant trailing zero in rare cases e.g. 1.00e-34 instead of 1.0e-34. * Made fmt::to_string fallback on ostream insertion operator if the formatter specialization is not provided. * Added support for the append mode to the experimental file API and improved fcntl.h detection. * Fixed handling of types that have both an implicit conversion operator and an overloaded ostream insertion operator. * Fixed a slicing issue in an internal iterator type. * Fixed an issue in locale-specific integer formatting. * Fixed handling of exotic code unit types. * Improved FMT_ALWAYS_INLINE. * Improved documentation. * Added the FMT_REDUCE_INT_INSTANTIATIONS CMake option that reduces the binary code size at the cost of some integer formatting performance. This can be useful for extremely memory-constrained embedded systems. * Added the FMT_USE_INLINE_NAMESPACES macro to control usage of inline namespaces. * Improved build configuration. * Fixed various warnings and compilation issues. - Add fmt-7.1.0-LTO.patch- Update to version 7.0.3 * Worked around broken ``numeric_limits`` for 128-bit integers * Added error reporting on missing named arguments * Stopped using 128-bit integers with clang-cl * Fixed issues in locale-specific integer formatting- Update to version 7.0.2 * Worked around broken ``numeric_limits`` for 128-bit integers * Fixed compatibility with CMake 3.4 * Fixed handling of digit separators in locale-specific formatting- Update to version 7.0.1 * Updated the inline version namespace name. * Worked around a gcc bug in mangling of alias templates * Fixed minor issues with the documentation.- Update to version 7.0.0 * Reduced the library size. * Added a simpler and more efficient format string compilation API. The old fmt::compile API is now deprecated. * Optimized integer formatting: format_to with format string compilation and a stack-allocated buffer is now faster than to_chars on both libc++ and libstdc++. * Optimized handling of small format strings. * Applied extern templates to improve compile times when using the core API and fmt/format.h. It is still recommended to use fmt/core.h instead of fmt/format.h but the compile time difference is now smaller. * Named arguments are now stored on stack (no dynamic memory allocations) and the compiled code is more compact and efficient. * Implemented compile-time checks for dynamic width and precision. * Added sentinel support to fmt::join. * Added support for named args, clear and reserve to dynamic_format_arg_store. * Added support for the 'c' format specifier to integral types for compatibility with std::format. * Replaced the 'n' format specifier with 'L' for compatibility with std::format. The 'n' specifier can be enabled via the FMT_DEPRECATED_N_SPECIFIER macro. * The '=' format specifier is now disabled by default for compatibility with std::format. It can be enabled via the FMT_DEPRECATED_NUMERIC_ALIGN macro. * Removed the following deprecated APIs: + FMT_STRING_ALIAS and fmt macros - replaced by FMT_STRING + fmt::basic_string_view::char_type - replaced by fmt::basic_string_view::value_type + convert_to_int + format_arg_store::types + *parse_context - replaced by *format_parse_context + FMT_DEPRECATED_INCLUDE_OS + FMT_DEPRECATED_PERCENT - incompatible with std::format + *writer - replaced by compiled format API * Renamed the internal namespace to detail. The former is still provided as an alias if the FMT_USE_INTERNAL macro is defined. * Improved compatibility between fmt::printf with the standard specs. * Fixed handling of operator<< overloads that use copyfmt. * Added the FMT_OS CMake option to control inclusion of OS-specific APIs in the fmt target. This can be useful for embedded platforms. * Replaced FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION with the FMT_FUZZ macro to prevent interferring with fuzzing of projects using {fmt}. * Fixed compatibility with emscripten. * Improved documentation. * Implemented various build configuration fixes and improvements. * Fixed various warnings and compilation issues. - Drop fmt-6.2.1-fix_pkgconfig_paths.patch - Bump sover to 7- Add fmt-6.2.1-fix_pkgconfig_paths.patch (fix for boo#1173270)- Update to version 6.2.1 * Fixed ostream support in ``sprintf`` (`#1631 `_). * Fixed type detection when using implicit conversion to ``string_view`` and ostream ``operator<<`` inconsistently (`#1662 `_). - Drop 7d01859ef16e6b65bc023ad8bebfedecb088bf81.patch (no longer necessary) - Spec cleanup- Apply 7d01859ef16e6b65bc023ad8bebfedecb088bf81.patch to fix kodi compilation and probably others: https://github.com/fmtlib/fmt/issues/1620- Update to version 6.2.0 * Improved error reporting when trying to format an object of a non-formattable type: * Reduced library size by ~10%. * Always print decimal point if # is specified (#1476, #1498): * Implemented the 'L' specifier for locale-specific numeric formatting to improve compatibility with std::format. The 'n' specifier is now deprecated and will be removed in the next major release. * Moved OS-specific APIs such as windows_error from fmt/format.h to fmt/os.h. You can define FMT_DEPRECATED_INCLUDE_OS to automatically include fmt/os.h from fmt/format.h for compatibility but this will be disabled in the next major release. * Added precision overflow detection in floating-point formatting. * Implemented detection of invalid use of fmt::arg. * Used type_identity to block unnecessary template argument deduction. * Improved UTF-8 handling (#1109): * Added experimental dynamic argument storage (#1170, #1584): * Made fmt::join accept initializer_list (#1591). * Fixed handling of empty tuples (#1588). * Fixed handling of output iterators in format_to_n (#1506). * Fixed formatting of std::chrono::duration types to wide output (#1533). * Added const begin and end overload to buffers (#1553). * Added the ability to disable floating-point formatting via FMT_USE_FLOAT, FMT_USE_DOUBLE and FMT_USE_LONG_DOUBLE macros for extremely memory-constrained embedded system (#1590). * Made FMT_STRING work with constexpr string_view (#1589). * Implemented a minor optimization in the format string parser (#1560). * Improved attribute detection (#1469, #1475, #1576). * Improved documentation (#1481, #1523). * Fixed symbol visibility on Linux when compiling with - fvisibility=hidden (#1535). * Implemented various build configuration fixes and improvements (#1264, #1460, #1534, #1536, #1545, #1546, #1566, [#1582], #1597, #1598). * Fixed various warnings and compilation issues - Dropped Group tag- Update to version 6.1.2 * Fixed ABI compatibility with libfmt.so.6.0.0 (#1471). * Fixed handling types convertible to std::string_view (#1451). Thanks @denizevrenci (Deniz Evrenci). * Made CUDA test an opt-in enabled via the FMT_CUDA_TEST CMake option. * Fixed sign conversion warnings (#1440). Thanks @0x8000-0000 (Florin Iucha).- Update to version 6.1.1 * Added a missing decimal point in exponent notation with trailing zeros. * Removed deprecated format_arg_store::TYPES.- Update to version 6.1.0 * {fmt} now formats IEEE 754 ``float`` and ``double`` using the shortest decimal representation with correct rounding by default: .. code:: c++ [#]include [#]include int main() { fmt::print("{}", M_PI); } prints ``3.141592653589793``. * Made the fast binary to decimal floating-point formatter the default, simplified it and improved performance. {fmt} is now 15 times faster than libc++'s ``std::ostringstream``, 11 times faster than ``printf`` and 10% faster than double-conversion on `dtoa-benchmark (https://github.com/fmtlib/dtoa-benchmark) ================== ========= ======= Function Time (ns) Speedup ================== ========= ======= ostringstream 1,346.30 1.00x ostrstream 1,195.74 1.13x sprintf 995.08 1.35x doubleconv 99.10 13.59x fmt 88.34 15.24x ================== ========= ======= * {fmt} no longer converts ``float`` arguments to ``double``. In particular this improves the default (shortest) representation of floats and makes ``fmt::format`` consistent with ``std::format`` specs (#1336, #1353, #1360, #1361) .. code:: c++ fmt::print("{}", 0.1f); prints ``0.1`` instead of ``0.10000000149011612``. * Made floating-point formatting output consistent with ``printf``/iostreams (#1376, #1417) * Added support for 128-bit integers (#1287) .. code:: c++ fmt::print("{}", std::numeric_limits<__int128_t>::max()); prints ``170141183460469231731687303715884105727``. * The overload of ``print`` that takes ``text_style`` is now atomic, i.e. the output from different threads doesn't interleave (#1351) * Made compile time in the header-only mode ~20% faster by reducing the number of template instantiations. ``wchar_t`` overload of ``vprint`` was moved from ``fmt/core.h`` to ``fmt/format.h``. * Added an overload of ``fmt::join`` that works with tuples (#1322, #1330) .. code:: c++ [#]include [#]include int main() { std::tuple t{'a', 1, 2.0f}; fmt::print("{}", t); } prints ``('a', 1, 2.0)``. * Changed formatting of octal zero with prefix from "0o0" to "0": .. code:: c++ fmt::print("{:#o}", 0); prints ``0``. * The locale is now passed to ostream insertion (``<<``) operators (#1406) .. code:: c++ [#]include [#]include struct S { double value; }; std::ostream& operator<<(std::ostream& os, S s) { return os << s.value; } int main() { auto s = fmt::format(std::locale("fr_FR.UTF-8"), "{}", S{0.42}); // s == "0,42" } * Locale-specific number formatting now uses grouping (#1393, [#1394]) * Fixed handling of types with deleted implicit rvalue conversion to ``const char**`` (#1421) .. code:: c++ struct mystring { operator const char*() const&; operator const char*() &; operator const char*() const&& = delete; operator const char*() && = delete; }; mystring str; fmt::print("{}", str); // now compiles * Enums are now mapped to correct underlying types instead of ``int`` (#1286) * Enum classes are no longer implicitly converted to ``int`` (#1424) * Added ``basic_format_parse_context`` for consistency with C++20 ``std::format`` and deprecated ``basic_parse_context``. * Fixed handling of UTF-8 in precision (#1389, #1390) * Added a CUDA test (#1285, #1317) * Improved documentation (#1276, #1291, #1296, #1315, #1332, [#1337], #1395, #1418) * Various code improvements (#1358, #1407) * Fixed compile-time format string checks for user-defined types (#1292) * Worked around a false positive in ``unsigned-integer-overflow`` sanitizer (#1377) * Fixed various warnings and compilation issues (#1273, #1278, [#1280], #1281, #1288, #1290, #1301, #1305, #1306, #1309, [#1312], #1313, #1316, #1319, #1320, #1326, #1328, #1344, [#1345], #1347, #1349, #1354, #1362, #1366, #1364, #1370, [#1371], #1385, #1388, #1397, #1414, #1416, #1422, #1427, [#1431], #1433) - Dropped fmt-bigendian_1.patch, fmt-bigendian_2.patch, fmt-bigendian_3.patch and fmt-bigendian_4.patch (merged upstream)- Added fmt-bigendian_1.patch, fmt-bigendian_2.patch, fmt-bigendian_3.patch and fmt-bigendian_4.patch to fix tests on big endian targets- Update to version 6.0.0 (too many changes to list, see ChangeLog.rst) - Dropped 0001-install-pkg-config-file-into-libdir.patch (no longer necessary) - Switched to MIT license - Increased SOVERSION to 6- Install fmt.pc into libdir with 0001-install-pkg-config-file-into-libdir.patch- Update to version 5.3.0: * Introduced experimental chrono formatting support * Added experimental support for emphasis (bold, italic, underline, strikethrough), colored output to a file stream, and improved colored formatting API * Added support for 4-bit terminal colors * Made std::string_view work as a format string * Added wide string support to compile-time format string checks * Made colored print functions work with wide strings * Introduced experimental Unicode support * Removed undocumented basic_fixed_buffer which has been superseded by the iterator-based API * Disallowed repeated leading zeros in an argument ID * Deprecated fmt::visit, parse_context, and wparse_context. Use fmt::visit_format_arg, format_parse_context, and wformat_parse_context instead. - Removed upstream merged fix-fmt_pc.patch- Do without em dashes in summaries.- Added baselibs.conf as source- initial package for version 5.2.1/bin/sh8.0.1-150400.1.88.0.1-150400.1.8libfmt.so.8libfmt.so.8.0.1/usr/lib/-fomit-frame-pointer -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:SLE-15-SP4:GA/standard/9c71b2011ec135dcc4539d02e140f216-fmtcpioxz5x86_64-suse-linuxELF 32-bit LSB shared object, Intel 80386, version 1 (GNU/Linux), dynamically linked, BuildID[sha1]=1523c05b353baf69fbab1500a24beae5348c53bb, strippedPRR R R RRR RRRRRR RRutf-8a408351f5e89a34db193af541e0c5a88cb65314d4a011e0645a1049974becbd2? 7zXZ !t//] cr$x#F ߢPh}=,z>po/zT_<?Y  t%c4 y\>q4SFxo{_~cCSGGeQ6  ~~+,+V<4P]0dɍAQchCV|D$I:T(?YZOS@fGevhquUu?s.ŵd>0 js[ꆂ"ƞvatPNU|lo枙>6()_P=R֊\8G3Ο |ƒǭ*ƯS[mk~u=UMâ^&@ V ssRb񆫮`,Ѭci`ce ne[Ud@`rT!^ܝGtrIّ T ԭF(jd)OWe)UɷAl5A';Pmc<)$m0<У#b=&{7E\ȦJl$U.E5%0ʟe[ AgGZ Uok+zX/p]tLʴyHK9a9<#4O;"8~[WUJ]K"}Y;E2ץwȽ%n4_P?m38qZ3]z(hg7ׇA$di5w)ֻ8J|: }7oU'M$ 1أ,ɝ$shL ˧yT dKB3kh)'6.;Z I۬\*MM^y'|"~AxI}<%u6P)뎐`w+qH1ΠсbB-E.ƀbnA-!<9l:ÆG fg 07S^mVExwdapY1O 2XNS6֕Yaq1u5 d]cyPQ-x>5ȎLk[[H Ӕ;dj#\yI 7_MA*faY5`3TOW;}C L,S6H3#%v=~, Ht$s)pʭhyA7֮x0(Բ~Ċz.|Py?eWz0B3UQ}t%~U_`x۹]492lq4Q#ħ)\>I6cpn,3X!@ vImO_!F_EsPjK}zm:Pݶ΍F=^<#n[Mkavޗ%&CwE,~`Ut7F$\ZO]Clj  7ቼҵ]-'6%r%$)gVxE42 W&" o{Q$!jTtZQd!7Q]n1&LGk S /9f~| Lϖ JɘpJ#Y",y-J8p+& gJd/%Z1 :t >E5s_PP`ȸHz*v&1gwͦJKp+Sie/Haҹ}r8 %[P u}s94s*LdnN;caђ7l+HkNokaާtg)**PS?ܴ!Ot[x_Xf|QV<[2/ x:9O kC3&7'Ѡ 96yj_OܷT#P}m<=Tȣ*#MĿg])f0Nd$ ^ך^GOβ8fi1j+6Gh1p#;ΉQW 2MC!Q%o]yK 3=- vH~|r_ư2V~dg y}(7R-@((dy':z֙kT'вcRK|byϻcC' i#iP{ऻf/b: Sܠ#jbÀaGB *goG"UbMT 捸k$B Yl0<.VCV5^ɯΆ /p'/;EkB𥏿\0=Mf0]aC粃€agN5=bKЬtJ<it]jkMSv]TŐ:3<=BLb}F!KIO%u-{_Qs9 k,_tsu{ OзשP qt_DLUn( `2jg I!(_#P+ERSWd 1\sB <7^[=^lBPwKsr1 Aʂؾ0}uTrKMc>OVKQ4Y}*Ѩcv*MT }֟I܆;GmBIXdeZ19k6#ʍ;`mwP&*Rۥ#O\VV&wkyGL5Y <רϫǒ:J++ŀIrOFn 0ŠMuc)%S{SDٌٟ98s]k7ẗ́' ?8@Q ST;⦒'c7pOV6C4Uhsp\ϥt~ȩxVʊ; %p98ݑrO1ǘ;0_8VEAXhYգgC&xʔW}< *iA E%p4(o`RN7 xp! dz$'z}p ᔄeiaTh_AW(lcl3*!W-Bļ[R-ֱVBIЫIm Uxmka & ΒtK{qLw #Fѭaw!;+@GV̠L}zWCfyVwFp?_Mp GPyP )t fYaLG"RNksU_oE_r) Bdeuyd)9BF%X^}0'3=6#lO -6!3T~WLj /4yЅ'b$Owaʦ{E3-/Ztҵw(XKPR ZnxBG םݙ:O`a9+Bh\ m堬}g-Ŀ#ے4$|ZGVOް[ Y%:)9'X0%!IU$Jj t̊&V_󁠿хK(ayI"gL<|W{a%[hKW_F'TF%NhX?X 7k^{h>Fub=6@ o/ v?$\ Z`WLD@N ㋫A׃"B\>]ݬ~EW<^/:k-d,+PH`t/"%1 i ˂AUiG S܈wjgh'P"ˍx82^pVWPAţYB;̟.QاhSPp%Ō {mkb;dE[68޽Y Ssz(bvoa%yX[;])]M+v|j ,bl s/\6ŪX;9NUø@rͺ dbQǷܟ 4hUՆ+)c{-prӮ3uw lcj=)mmݞ9?U4fnYwwHm!?;):Q#1x"tێ>w -,ba+~hiU,P:D95L?/r+@Ƕ5GJg\ަ=#ow/OX ?JllMHP*9DCaAf{ '$rmWcKl)ѧ,ˉ\Z/qa#r`%Ah/wt\I52^歐;Za[՟*(( )YsB^g-'RuIW@ݵ\!qe yT nz4V{ G<׮]W,Gy ,6`LG]VM'4ff|Aq%:lD'bI}O>͊@Nd59mKḂ]o(Gm:4"BE;JKc<ހYkPu؄^ Mg y@ŖtJ,L %α/x6J3=Zve~3%_ɤ%Z P7#$@=.t^3T:mަbK C f'(AFubg_S&M> J v@s\V]}N.hdvP+sQ6tCd~ 6$DĖ14sҝd#*EH\tuVWVutIhN V{ZfNPFE6imGD56/N 6Mg=f|:יCJZSBE{%`{Z,)FhǾ[4 CSY`vH=pHYnads JxˉQȵkj:HSKk@ !#|r,=ΐh<Dk[aE qz 1~c|7)Aȫ4hBj:1)1iyKQzebcڑՒG"}5x; 1cE:28٘;uD')IS7:"@ \KU*拨ňLDDP9)"J̷5v ^D}bfG28̎:zĆ-Cݚ$"|,^kք.%1fuCdO6N <7Jc|b ^ܺHm xC$V:~zD0hIrԎz(4$ó[}KTD>V<Ɉl6BhC21P\2~>nfcM>{Zpڸk TNEuOu5?l&Ҹ_֥.0h+q5$* lºYZH ]]ZWj{EW+UMCf3ڏ!FoؿydHRKߋhi;E9%[MC]IOñ}y;ݛA< kj-N[ݳ3{4*1 oAAe'2~wA &Sez;: lM (N?VV&Ib=u(|0cѺ[Ȋ0Q'&6s'̟ې8*su|Y&JvOr0_:H`_,&6`Mccv #5tmRd<}795-ݹϙNEiR]WR1ME P:nBT ".WDS+ϫۼU-Lxf_6BEZklU,ņ׍,g귓hwIa&;9ql6fWbׯӌ@3NhTK"4X D!%&,7^_/Ӳbam[uxǩl0FD½뙄Ɋ{a/ TILvE{W)p*⯉~W_W:辆>mķ|zGJI*&on-75e'A+AZHB*[݇)Je3]\݅ٻ}C3p-l^5YيhEqlw3tIeٵÚX8OKM $6gj: Qz֖;HiW5{>[a7T .#Ԅ(y6h931>xP0)Q l`rbR^e~|~^UR cf#s0)"VF5o!u,4gu2U#uQ[;\4ۋNhB 6_І796Y.jXg(n|u;pZMʙ+"RV|| G~LjX+H 2dX>Y|9g!IWbԻZ A99j {3}5AZā+d}nޏY8 xͥ2.c3}ri>%Z%͵$k8y#v"ذ NA陱1%<2Ch0k0k,{h=G6 c* xv[ꌖS Hrz"K7l+fNCfnnV $O8%NdB:uMy#y_s_N:f1l\R[xß!|fwr}A@k wmHKgnPIr|XnZmNz(A1;8n=Y~G[S!tX)gBڣiK6Ž$ \I"PsMbdorj3c2ytF$Z@v,OLهBV#Pc]}EYp⒕4 +X._Pe[7\[#MQuҮFs fy,s,C7879Qf b>–utϮYe#!͗X Xua&IE,DyoØk}q?jen>HVSmi i)e| fZ6-6ʏ>ިQr/0ĀtǡgL*Ɉ ODȩq*{Ν5ҋY[vIĭϺe@ycB)MYaQh\gB@LzFXmncՖʶEݾ-m 8YW37tys9[SstWYN%,'G49Jzڣ,0\'.5"Eo >-H mS>4(rfz0+ NPSY-/"4K}Rj ; !K͹sX)_5zIyF T_mڄ=5ܜm}Q.֍<RTb1$Hz{ଆXEyBԞdH-lM4zK$ 2%`^u;cLV,AGPT:7LCӸ5Ӌ0y(EId K`KG,(oKDZH tt&zE㼜3i7i;i`pP/skʔM+dhUїzHÑFa&'$S.R {G.s=753X>*=0հ0y2o'-OiFW[ r^ ˜TFUǂ{ *[4bKHe% W=uQ(*܈  BO m1I1v7sKn ջ9`9qIօv.Tw&3=KهQKuWsKn2z],CR6+ZNBy,'c#>e0^M<3<{1 QX:IeWIf^CJZ RQ=*M' ۩VJmNeΖ.-$4\jmL886—SXz[ "^Dfng?ræ)áżuM=6">rlY`7FRGpi٪elÆ mDn&ř%5 %D;夠lVlÈ SvVQ% j7%D^t!Ʀ߮'s`BDayÿ:q |KM;1f8㊱Dp$q c:;}Uc-µ/PL;Y:%  1rUkPiDH[6UKZzSP]Zg5Nm=PE6ςT0sGmXwph=G?ӏt'i 9ͯyt/h.ᒥZ N2/XQ5Zmdx,tB^xNFjYܡ7hdD!p^ku,]\#G$XL1=71O%[Tq_ϲZg>m.uUijrEQXoE+XvdU^)om=놌Q[rG۸7r->vm?-5~V${RF_Za;tT[fSYSk*>9J3"oF˦HX.Q7sF$֤cInJA`7ؗ gA_}O!qn9wp7sXk~zw7_6 B&5}ZAoJ3  &)I@PDHLA:G^+C֨t/r-<L ?8>!BD[ÒZ3Z[(QȨ$[G~Ƅτ&-07WaK^ifPr@ʆ/jUFR2*+*uV% 7.aTj%YmA>I[,h=~ac/Z#ΞP?wCKn"A~oOId^Nq0L[ =IxTL̷W84~poq"ul]=ucyoH³:93Je6 WK*_K! 86Ca)yTq!>L'Ĵ<~a ]Cm] @B֫@xt';]Ra߱cikT2[l%j" y|iLVΰ1Ǎ Xln/iHL.QeafdW P8XujU]HG-"3+=ar\13W62߆gA㕌owJHS>UQ2y{]*3m:`НMBe.\y?)}:Ǭ{+v Nk4-ڔT>UH]\\+*܉XL MPd?ɆT+|=߇$Nt>d3պJ}+c3^@ BHh(0' 2& R"O|٭Kܐ24:>^dq60MS{]XoF~$,՗z,Q Mh0}BZu?~TےB 'T!@C:j~OxӉ:΍2\z$O9jޫ+"d@Y(u+w b:\ ݘ^ Sp"uպ4P|gpvYכ j[YpMM[G*IڻNT9e `V}<1 ѪH@!;%,vwx #-ޮ ryʷ-|]P;ƕɑS>!w$5l+NfrL2LLїXmƲ/Syk9у!2͂ 43_ؑj6ħG?&afZ]c*.'uJ3^6vnlfz;<!g$;5Wj3RU`ڮGZDb r6@X?Shlr}ӈI &S )lۚc)=">btf^d1fhb4BϜDp<|1yđAԋyM1n.ɔ.)-=$0 35} arĒs%߼ƢqHu<Ir%|rB =KuƚI 0Yye>f_,hM@fU ,BĬ?=4boq[0pp*؈{YR0M|5DfZ25sh ?:j*^G'M1l5@Fv#.|Q7eY"E8:B%(e6 F3(k#YfXڐOh 㪨3F{6B~ίH-Ku:[|A1n]Qj,J~ވL+XfR: ]7y4LG'ٺRL3Wm%Y}jb]1;z0!Vz%^j ,4zg:Dmi;z3;. i#5oO89g)%!7o`r8x-y{hf(x3V*SqcNj"&L=@L0Hsf`+@u_eMSaygg%S$+h"MBD @w$YxvE/b$sQ?u*W)|UD0uKT_z|YP?£ piOCL!}圸0ȁoh3Gkn\a yg!i~RNJ'[f +C*g7#fUhK8ҩ:rcNR)ڥE(vnM3u Hj|oL6 I4Sw{nA"v|ܱM%NrqRHw۝m7l|Ag ܧ/Df;GdHF"dyhTيa?BI܀GAe@0XQ)_B~rz=(bƥ^Ë[Yq DeH=ޏ0reݰӭ&z<کwj_1R? ?tYHQ֧^=0 [NFNh56QG])Ξ8`Sg{Ra CzZBdE.j\Hfm+&$KE.oo~ܤMqkpo3ȋFvng3,k\$p|"cG$|aq{4 Q&8S !2&g#)8}t;E2)\_g _zӀLK6lfƴnZ3xTpom:5Átvɷh #s)W9 ~4A 3Lޜ$&"Īq׏r3= qSbH9 %GO+[R2pIWR%V UHxzGbn +mrWMgY$G,{@mسD?|L, CnE~|޶2&'i٭GGF*鮳}j8tDL#qj5 N+n#3ƔI yHKr]_%N@cZ]ߦqbw-6P! Z]/ʕY`7Nd sa ѹn=-AbISԤV"_brB؟!{:>ŀnQ;2XZbA^CFlNZAR":wy$Wv=φyǡ_v5\O)"Lϼ66<#h:Lnzry>raf`*oc7,:z${)r-:>1]n1SYC"hAɽAF TƽfٿKaǨc oǠu (L6֯b_^݋T37L}2>KoQ0#u($';+R: 5(ֶ:iqc?L (=v ЂM2˾I@j@3XZ "? sm!0)>+ za#fޗ㿺m>l˷b~njJUj@Zox(+OL5pbA,+_+`\ `hȥ<{WQ^mZz!~AВ[gmI` f {NrtgS=I+0܀:/<njdO5bb nC`Ҵ] KZR$dVAhr]%5&Oo=?+ki !}dvoR(1|xޱ5$x/rJֿ31s E99ӽq$?,~NTׄis2٘\6:QXp&xٝ^mTj;,?BuSG{'y]* (kZUܐ/jM`txRf,0{+;6cIψu>& e/qTY/ADul= okiX.M&@A?0J7?^ća(+R<^ y3.Q&)k9=Kбw Px_'r šSa {M sM@odL>Mx>DߙlS/#\PT:<:TӝcEBjޏ2`O$icAH5 d+0ze& e]%Q }@K>b6! 0|t>ZTin "B1@70b-|f%4J jt?g&S'CUyOaZ=uHsX)s+.*eWOnf#:i@nxIg rYD3gU> et,`W ínC2Kh`^ۺBc(NȨ7 yOf?Y1^+6: oP_[7oH[o9G#ۚ*vbM[]m*;cՈiLlY'B4JEn;n߅fcƸcV *jHצC5I,u[$I= 4,ZnKvpSeЗӿ ?p6/V´8.4=`gc~ *86e m aW@Udo-׊ǍĒa+Y6{GY= ; =tsQy.V524wʳf9殣|BLÊ"S#Up8=C2j|β3odk3eFQW= Go}"->et:SZYAb ec4b0&V9'T3;:ÄnE4(tdSkxfuOTtek (+R\#NЉᣅRߗ_:S)T`Z!;^ _RD`4|2f7(wxz4) U>i4S-xfy_ZA~s7Y~ HVENJϥF25M6c )AUp"(Ƴg)Jzl] ,c+a 5FUB]{0 l S8?_5 o˔$ݾ3 du}Cu72 wRGZPbXbC~!@cuK2-ևD@kYX K/'FLGp=\>̌Geݻ_ls5(2 K"L#bT-#3 D&DHg|Jp^ `:> e9cWMtmnZwH^y{4yv+~mk^(+4Kb:gQ8*I:kg4jLLoHB=jN"QQχ-mg,4O.HRmka;jMLq`#z)|6ŜvҍSN] k_JK;ϳ /vV9 Ys~.}b:S a\wO 0pCEPhe>s;SHm DCҥg qs[1hnA-{)Mo8_Wd~7ZI:uyLi-kT9[uLJP[ɔɲxv8U`5[B涔ʨn;lV^>y}͗#x,NۃCA`T*2lirRbvܔSFUD{,5dq͎/2֠٥ ntY8jrNZ~]%:UW9qbMm^oyހTI*ޠqrRݸE`c  i?c4Dr7`%pyl^o"ЈXF8J i;R8gkis #I^*bbD[vCCc"0}w4@$9<β6ӐlΎBB8ޒl3]j>kzH>EqtYV;p1OksC>4,kb8~oi\RK K_遲jȾm>` h^o.CMDԃ$#c~=~f*+u0vcv>Yxmc.= aEMmu%>}j; $mfy/vڮXлvќ=?F8ie -(_K7_ꧥ $ؖ82^~>HE~xg"Ìd<FEvpFٰ^"Z=ى|gkHZT5g4hfr?dԔQlU5=`=*n"zeQkoXul: u}؋6 ]qJ,#سZ񦥱"Ń9QАGɴ*DZ1<)_E4,o>TUIֳu^-zAd\e ҟG|ǥ@x|8oZNF=~,)ٝsf"fQ mk"E ~x!&"߿ʨhH&R3qLdc(Oyl'`~ӥ}G0?;&P jYVRP6ZKSS8M헣}J%dmgGwxLgriOX6IL G/l)Zw b 퍮0ȹn d5(k9磷 !qe̽OMПTLnzGE r( ק _'񯚲MJեcMճ}W8j6AZ䷮Ү[ (?W$"hn+> L!_QAT W3-B sWyjy7mYDrk[7WE `ݢ0(Œm毡G ;yKоAlWHO%BTP)Q~AE 5^{符"oWc'\/Vh (eG6OC, xwXJ5S\2gnp t D8EuuAE{*zb?F'1I00tH $=O?ԃ}'(?U-Np-X1IM fCd);gQB&2.hccVݟ)_: 5& o,,XJA-Ǡ;V ~MzGfJ+BrߣN[L7,DMI:nyMY|f  u/oulEwWW~e#rJi&mmSo_MwKAT;n9-! 0G4'#bーqwiV nsIWtסLi>#za<]VA; uo?I&% #e{OVvr/,mZ]A Y_w$%l|_ 9[Wb6 ߖL&fV6vX{Y!҃(-l:.Q҉~&FS}P}4$PC ̋h-N+$^R8SjINbt}·ϙ?A wez} zQ]i".#aZQXy C[О;} ;Y|(mVmx~SƍT.mӑ%4W+_/_fV 50 o'r0{57ql砥cRβSX!s|4!A%gvRIܑxFSjIV>'akpE 6ۧV.|>iԽĝ8.7acynFTe:JD>|&ܺ69r# c 췱4PR).YmڣU8m=aU9Mf&a&4ϿێC9Oy;iezT&汱ݷbsc.|4MR![ udf NtߕRSғLpz9/?׫e~X^̞$? 9DeD&1gd;?>[t.?Pd 92}^B6u1,*S7V`31S Nv9UŵwkMeI9%UIvbF}&oPLF |(-h@EC=l5bgLp6(KXxf&<22F@Bvɓ+K2b- [gorEČȆ qnH͜_5B x|VRkZϢTa1 A(YL^ŠP:k[#QS JģBvXۿq]08m-:j`ȾaAS S<;Ym].tD@D;4 |E8©^&p1gcRS8:(kmx6}CưG-PF?S@[%Pu6 U9]Oh sέXhT._c*P> oxƗė8:hi21 'i$`Wk,`@D3Iyw50Eo nbå /}/Ԉ74wO9w&/U ˂bN6HHLC_]ETMFo| F!] B 66蒹d׌`P|,/2,s?h*Ҥ0/'` yJT5_&~ghf)$)}Ai+Sy%ܲD**(qfLjЈ^9ӕƿ]Y- ĶOZ!7ȅCM5!e *44KsG['glWzN 0_aC$?WQW9ei#/[C̊ݤ@B34lo6 m;CR2Ђ*3aA"K2 b_l+\@1J{e_VL^QмSB[w+n&}?^cs =ߩҾ$L@`Iu@97Q*0q0N3QKx!2{!w+^7Hu-Za`xm-A o5Xx4ꀐa%ӾXwٗCB!`Wȥec>ZJ v$x%|y 7{݈ 5YOIB<`G52#XwfaRwiQT^m"xrH~ H4M`\3S:cRt)0ٺ 6óiM&aO!\w}XIyB%*u|4mJ]a׵Cн&.(=]B{[4Th`'n"e VSEڪ("8Qrqd #/5A#=*Uq5=xG|G("'@z^K^2Į,CgHfDz*ixHywj ŹS/v]C˯LBa\ !B=lL=OŬ¤"NV9V X?Y:@ң,5=gB[ob]45_[o>nYv 7SAviB#2*\Dۼ\ ,\f-ו\6B/Mr)ʼ׈FFx+ OuhHjvU?MUm$楨;S~S?>ZizŐ͟;#Jnؽ\zx}^Qïe/m^p1Qy-T}8<q'~Ndyٓ7g.ՑD{Ӄd"gCMK*E_kr i7=@8y}(/\|}^Ah^F6خo]/t}IHK IߒtQHKo'l{koؿ0kK/_ 9sh:I,RAQdJUoQ&^1vp_g-Ѣ`!B,Iag.:鿿赪Y¾=Z2R+ 㨏~-(9(l2#k5nke it~KZ3naޞ%k/(Z9  rt̬-碎&|:]-],cwĈ|`b=IL\=tEy4= OŃQ 까p`[f=)L M<AhpjvnjuGF{R:>fuS.:1?m]B,*Xي*U^,85Fnhi>C`tR<@LY0mfbYIզ /)mZDw~[5K6sr45Q[2m։;n%! F[K{vbRONѻܟ*򘍐A}wj Q^ZCP2<gZ%7t,UHn1кn_h`> )݁XFߏRoז6pvMv TL^R +8 m|Ua qٮ *)@/s/%x0 O2;6 ~>'<"ŷr&fw~@$䎣(oڜ2b;my( ru>fͫ/HrԿ51Z2",P(4/}ŃE t-ͬ@&&SlVbªYrQ?翇cքٕ>G6nEhCλǑM\C`=ќtuꬓ1B3zzvk@մZ7 t~/էYd۱(0Qc~FwCH$in5js ž+O 1ꚪ&QYL)لN84կ} H^ǎzԡA9ŠnV)LjT'Wz4Z70KZ:R3z%k >&·=JqOWVao3?KmV5[KH!|hG$ د@|ed(X<- ϛX@ˋN7MFd>] GE |"cz|/DSr.-LPHL]y>ahڂ)3J93Q : }&I%zTVYbr~'qvYLwm?)DtYR&c~ﺚm[wr'hćJ$>y{[lKiB69 ޼yqˡ*t,S;LsjeLǖ]aj_JR>=9cyD{6(Qp)ge5 q*X\[Gԙ6 3d8(n  Hhf=N1ib]b߮?E:dZ<;` c}8` Y ]0*uO (|*gAt1~H'"nSy=NāY_=VQrRzS,`b5s٬ٞ/|dCb@z$>1\ښW[CpЈ"z$/:%5YDZxmϟcEń~?I[$.a [@*ynl{~!;h 'Rd a6&:; ۯ'A>6+D5]?#ēNs @@/pu%pb&k_NF'ʢ*>BjD@%3\ƍ$w*8Y8_ŷ )ǝtßOb&!+sL:!C_x7 c?{+a*:%x.YתZ~ئd>\TN! * D,5F 3\dGcJxҊ3SR̶s>)}D̽6M]t!,rCz Z tzj0TCxx3 P0+v: m2\jkpIe^ߡfSK˸E|cO7 Ô`TA_jL'D)X0\;*B}G· ld@->>O)d m3j1xcn]/аϱzإ0ڃu5 A3g˻"x@P2l:ݽtpcesHuxLgӅF٧N#JR ʫeIFS%\$_RDdZh?+%9t,ŽO"`2'o~$W_ZzFspF~E\u@Um?Rgzne^UVm"` {Ig"9x \UY~S˔,p~뵝gWd-;W- dcW"}੸q`su_$)vT=\>߂؁<]W9j*e5*7h95-oK*`2@qXzy,gk&&t"HoO;FA7#T,vaK~N ']i +Shaw.5+B*' ZT^xj`q/[h;+ޣiA. 5HgS9zGU4ڄ^J=."= |F?}B: ](S%5U>3#r c?u6a.F~+:8L}LqO",(PIMἮzb%u.싽5uONgy?+˭I'Wјf KC9!IiMvs#wjj>㱒O] [Iy7<-~ߕRIZl -8?U2gAD|ΟPؕ$\{~J9˜aSPoriRc sEMBs" )0cFOH фQA rm2LA?%t&)@c/iLy󽠘?;UtB䞍+̨k “87`k\BFq^Ԙl2r=̞"ȳ0"RBsճr툖E^s۔W<~'.$Zt+ At'[1;@7"̲4`C s,^:H! </An`*ƥe@V84\O" Z7m!>Xf;R.MA.c08zo 6uM9E,ʺC;#3>g@6;*lt;5)V1: Ba Yʄ`ձhx0ejenL1P{N-'@f5hx CHcϱSL{HI.WL&ڜ9_i"N7s9?j܅52 痳Wؿ mӟJwp\ȍ]ܣeW}*Bf܇8Xah;\}_29@fH0P I84SD>(ސHl{Tɡ~҄i0cK^g }>7wv .D,6G*8 T#{ĕaoJI+Z@MTM8jj药ܦcoŌ,yu3Z5`CLo}p"ǝgO]&PBuՋtˆġli𒓺_.m\gd.3[GGgEܲ>~7onɧ1z?IfV54l`i$IN{+"-q q#`j/HVՓC*àa'E4%n6p^{u?GqD9*zWn^;x2ت0ɿR{=mQ+Od=Q`7vI/ A2e@s`P5#yB`k$vEB?Kw&{6c*^s-,JVrK>Xf8'%X& h,sG>cH/f(ڜU-3 /9`7<P!df`vn-8 lJnAHd صr blL 22zU*3#W͒e'A43X(2X׮ o!U +qPq١]Uޏ9cCXLUmIϺA ]QTc'~;6pB5҉(m&rz᪨H 16BY+ڌ{ȆbM>{9+ak/ad}tHDxdF_[J{U![a+R<FlN_ٕu{ #K} /ASQ Hy7h r77 yYlyq"y&+/ڝ>X,3.8 [ /K3oGC2Ǭ=HnK 6~wT a][q(*dp?iAA )5o8c)%*̆;$|.I[ߊ1@?L$_X~hG!dmPuO6*R<)*@L'BPl+ h.>Td7]S9k Xw? N:_E@ +% ZPIXX$kECj ĺ|In /"K5Pr57K5\Fe`b]k_K(_q[~h,i"O *i]Xr_N]lCDѡ@8T͔+xeٯKFU;ө`SgNF|-Fhj;`ok>;kMy0G!])P8#Fbch`#Bzoj=ڔ{lݖoSB,TgF8D&5g lwv-_af4o}AxƲuK#Mk߂7'v3*xcJQ,7/n"q 0'?#G0M1V߉A?e=hDK@"Z1d=I8Kn(.U[,_^ۘȺnB0s;0L^ROϰ xѺ {ӧC:j߬Re9)m# ;+%\31FquĀbnc˄ uIoWޤ.=Β{]6 #%J:`CAT EDT!=KH]dP/p p4r{PW@f-,XRoO"f@ONjKݯ ?EA-dԃp57#^ﯣ̑r"a鋋x%4(Qmpwbb33ٽ>o-BpJw$gGJԙCV"" t8jٯ~;%&\Ъ7c&5K* AM"{V8Ds!1vUuX4[p6[睫~\U-q}6qH%==aUu1;g?*r5YR~^k*,Bu(y҅LʶlZbX}y7pKs:=Fic0@j vMZ)&$#D%E[" CEu1Ħk9dgN hNuDZk{+1Op[t0"Nf>%h&^XY剳jvwt&NΑd8k/o μ!ئX[=-dܧ#~0KW'+Jqe@[{<%|pkj+ ,E9 NOG6P<@PSsQ_:/X a=oR_r׺5{OW+qw4xT桘CAoq AL" z ;9]Լo ytj~/:"Dܕ/hPSS.mER' 71K??O0H|H6m OSx&^ JLLߥDCG孏r9a:UJߗ$?wN=Xe#Ծ1\o>-¨m \~pG%vzAtRL*?sApt},A8X!Nz)|+O=Ql "ЍLBwBNߵɪPhpRqVWǚny.k*-Nw HKr oHzYd&F"SqKѝXdžؼ[.spӧi8FS^8˼jKeIr3kiK`E'k?#:1dӌ vrсjl9Y޸f9•$k4zI%z>7ɸP XM 핓Gq"4_d{?pra3k:jEM+ddIjTaxȳPtB[M)ؖ'Iҏt + h7ox׬յ8 bαu7JJRvZ@i}ud W(6T8S843܄k%"PY ~>1JAsAt ̇!)PY"7o&޹*/' $kf:&Oȱ4/QJךJbGCh~Z̰?_ۄAk(= ^i!PRz&uSA_Jt.~ں%ڋ~1ޕ; =21>X׋P߹b5 (na_~aݚ oE9",,L,JZ(NR΋c7D^Gy* џVչy6_.fZȁcʨFCˑ^U:EŨ `Ū;|Tj71ʹ'0Ҝc/FLmHz$~͍ u ^b(%_({1R\4fk8{_nERJBAi0逻GVCy,L S=g-3q*-[%w= YD cO w0F<ߙ3FG]U v&OJHWz՞]L㌯-]<JkIl#Tn аWz!&-Տl!&A˜AҲ$A mĿƊ  kF6z gFҷU3 RW Uxi<ύ<̔),aFQb_+)I*#N!Ye8Y6IC!{_MKj#=ԁn;v4z jl9%#8ƧdA oj;hѰG UoN 7fK"/E/,ҺKqy ♄a|mΌT@ 7@ ĭ$Xd!5?CD)H O(%@S2V͟('akϫ]9.SIl] L v8~0OIU:d2SuÈf6B(tOB O9cYM)`\cq׼Nײm\50%7t^S#5E>WTEyFꑵ/glkvI"lT9p gh+ȕ;Ekiml00|M{6z-? A૷BDBY:9Y =T^L8kVc۬i Q 3m5à&8AClȤ'dlٵY}d-ʴ7جY8: 9K)6mS.4K a m*^A9!2pnp)e"!X݉c`~D č f\6 )v>pӪdzJ4U}\3C#`bfg1X+ώ WU7s:)] 't|~o=ze5/jD!Rjqvqt/@b+,C`;mʾ_/֍njn1^$r8KfzU6o>RƊq& W00P'gH5UHy|3x1抠ܒd;`x~'Ϋ'qcl+Fb/1dP}D'Гsm֎[6[Vl&Р)IJٚ=#ɜ$1PH IBF\\M\Rf+qD 4Wn=ךnIٰ_Tj[c>y5!#qKʪ- ryqLg}jhc2OW&}{ ʖ,i&&.`d@&u(P"2I{@jĞC* П=b_p!n{*F2ЖѕO\{.^ LTkx겙4żEj!xN>*Fl-"w7!]HctCUQf e1Pоc[{hG@߉,Sq58Op,ǯXyutaߍW;v=4FҐ #׆jxd' mzrp|pu"?'b*˜鴯/N?"`|,gfiAO9eJycUSϛiB;at#Z9l0 u2\-Jjo:=fB̧~Bf@]lk2y4L4vdf:\?0pFǙsaG{ל.{,4J{;o]."lG 3b=`C ս1.rOrf⌏ Gխp[G\6b;ani[oP%9sc4\ e2gzdOͶq͛w:o[uOu8Ǡ\䴮O-2*h%A5H*SEl$q!dg( F Qy[?g>(.;PY+&L:rT)AR,O]< ǯļ_'?XlPFB.$G4O *3 38멤U9n4WgWIq1]XGkfȧMMxQշQ Ǧ7Ȏw^Jy]&01U/̬ھ0GW`S#c@nhk>Vyž+>42['|= ~}Y7g C1B1iH\ռE~ JTbef1绂=ɐ3)XUiiK_ EQ*UX-RavD!UIe` 6–f N;ȵ`RnG|խp3U\aC#:93\}wfT}QkW67pB,ߑH^EBQFc (4`()(CMcd"6vfP>0UiCE7䨺Ʀ-rBp)wAKH<a\g?&mj.Y2;u ]ui~jw~g$) i{UJKI8}ePhRNqfVՖSEN?B,0oz,(o"\gM=f sKϴme.[u}yBB:n]-}.{"F;gPys唅 L̔d[:u5y'G 6|)tۧ:ߵto "V~U>ӧ9 :ޱO9-#,}n!T+Y}JxU-bjفs+ msFSdun$. YuF/rAEtKso! 0c!d =9ϖu6Bsd,fL3׹iO; ڐ%[^ƞh "ߚm{;J:|~K숙/{bd؀]P#CG]ފ!ɃQf8-dm\`U-YیƙO+)'M+iLc}+HƕƮ\,@"&.N%QgV#8ymւ\n' /;Fh w~j]+X̑+TYflG}?Q~WĒ}b1f# yT ( 2òQ(8YBǟCyCj&UU|v.`@ o4NN>s9;uEuy Jiw7m58T OJ5b|ibo(j@*eb0FV2Y'fb[ G}0 f؎N^q&&FǴ ʴ?sx/}˅Hih{,4Ble8%}YIkj  &G=ujUc>(3<0mֲ]`H'~YK`1 x&An R=iqStH*i>FXsQp!YggDB̀.n>W9*l3Td_sd" &b&I/z;Ӽ1k6ZWr$߅M(xebS s zQoFGJˢ[0{DʄȄ1J26 _:'KK{g 8Z A%:xL $ 6dbj, /Ol'|j1N*hj3E'ފ/]g7^Xݸi8ICTΑ ;{N 'dFէr \ <;o^ӓ,b|4@ =1jOaEIJ TU9JwѺ:"eCvޱbU[tal_l/Gbodwn<\GaVfވhM5=dJՋ/Iݶil0aWpQ>$#17* (~+UW{2HB(ܵ-l{Y",z" ^8X^XuM?=wq Dl1,ǀAHj^ϒ>F(O;>/GǺuj˳^BEX.:qW f|[;5;U%Ml\WC {2]=w޻Yf|łc{"ip,Ț'M /a}gqtՕE]W3V@.0ޯ/JCuh׽/"'#JY ;cGX/-6O=&d@T,oCDQO*cJ"ɡǐmyȔ璹ݷIJY0OR3Nٝ|XJE',8k0ln3RNGJUTB5u 4MInPu?;f4 pSՆU5CG* X<#r8\彇q-$-JTi9:`&7yϛ*XIPm*SΊ .ßu%~L!uB`XU@IRJ @#&MCr) JC[Ļ$k(|hķl%i/4.NLCZZM#6: *rclM sqM9ZC<P %^S5y3YMm7-F=`E*Ҧ~&ӊ kngޛa[ȸ+EH-u0fa:Mdp;tq؞V.u%y te9]g6<<)h!A5(.:nG"׹R Y҇|K<XIJ4{^OW\ !{$5?o*|Fmc88mUIu [JxUc;-4L}vkW!"]Makyy*Ԏ{k*lI{烰n0D{X7R0QtL]s6{P[ M*_:&GQ0k#1'q+*္@ A}2)r^`b(E<8Œ-Ҩ($ RKvn;A¿c5kb]4,)Xl3W4y=[6=Ռ=w %#4wX}-eq߭ i%u+@@]ZX@WjB"zv\ȣQkf?1>WF4@3pB[ Sx _ K]x G5sX.i# 0 Fx3A{ߡK$BU:S['2(n52ZDaMG(yv ,ݒZkԶ\lXթ|Z@YƋMLsf|.vp0 y׍B".SrK>訳e#(P!Ńuq}ւ^i/*)D}gnja/ۃ}Aje" զf=ȗ'̱SPԗu DɤƲQ+2M\nwѰa>]4}< eEUCN:h霝 #)=ywHVEmݽOr0uTbe#קRBZ'"I #@lQ>tէ I s dPv4hڨ3wVͦۘs@Ⱥ){[OW}4,/,U1@j#2! šr km<|hZp,gLע?aj67|aQLi.ab #v2i lw³=g`K߇8?rG#'Uy;MxpLd\'bBZX9P P  a`?)x@T*}sl젡 jCl@*OlÝMnCYdͣHg=ҳ\jzsQbi/#9*ZV=Gn-kުDK)+v/!AJβ@Xhގau@Uzx> nG>j䠡 UxнˤIkFm)/NP 穝iya6/xM~rOT䴎HE,uhR2G`>BA-u/=h{7gZG$8JuT eOVmY[+{ k&y͛T848>Bg"8֬\0t1j22},5 yP(8硴6Q:.k@]NmۼJV< x!vcO_6lI7j$xM\ 3^\ Nf06STp;f[|2Tڼsnԫ.3' pi_y~tE-&ɵSÅzNKb^ GT<2 r};u#@8Uyt:%/Psg7Oޣ|/1SWb4Mg@S}JSmnÀ.ܐЄ 8;wrye~c띨t@/a,wvSc`6ZInӞMف:rHmY;Z Ux[,1 [EQe8 { b _-mL(B[*ǃc7MRdB6(ȜrS\:n#R/R<nr$l5u£ C5;`R^ Y|-8Nm!53(`Jhۙ9Yqi दrObZ{ 9봩t7<gdpEL&F[lLoHz̃ qؓVԹSYgV-|x01b>xtiW!tQxtA2 u.Rځ *>N?\@}o<,DEcabbY&3n&Jݗ n#暊V)5O@egԡ9M3[if";_J) 1IXk\i<0ax9$J3WvS֯B |SkaU[]Z$xⱧ/˻'RQ3LO ͒Om*pʶ0բ P0bg琘7"ƌ LɄ(P]_K43 үzaW7⢽y,kItlRr׫Rk ab55QbyB(u^wS,dI]|8~PmZ<<@ {JdnY-ɗZ a咂-LۡFE_9!F:|GfO.ϥŀ8"EbqZL:__/Mݩ%|ߨR4ƽU!p*<)gΊB|s6^ӑ2ܯ8cqoj 1Hh5rS= +^'~qnՇY%!B 'rH%KaBr]Nugu>qz~t׻*I|o7v*~0M87Zm0۷U&dO@[ao1-g9ÃPkkG>aj oS1L{ H]C*P͢DҟW'TW|='f-# Q[Q[4Ax,wP]e.AzPUz I9&:뽾4#=pH:IpB=^ᯔ}g7&6k,Ie|)1A-SHև[̬'{>faO?uˇBPNm=!$@t M~0"\09B)SJVa!˼KP/RjZ9R u{Շ@.DftBr1e 9yԑyS&M@8FWxDLp^iYqǰu0`/^î&a_xm`<@hs&)eLe>`CQ IAU :B{iju)c\RO`N]#o]scĉs1=4v\C8d@Qa`|Q^ ZQ9IJ3>%;l2NStuAPfc|Zцkz傟^2GƵHTm^/͎)iͤdMo~$:: u qGo&~o8aNZ2DOPRKN1|0.a{:8+xE"'Ἕ{ tj g|ѩdEiLsĝPA |~}ȼ3󺾙9>ZBӆ{B9(Wd&'0^M"q%D'xZ>!\Jɸ3Sp.'e~SN*+6ۊHuC.u݂f3:mz2Fߛ*(G@=b",K砀Ot0[ulpUu\#P3O2zӶ-+v&$++rfVCH]Zzz'4Q&M(60TxMq$rD)="*M>׎]L+jXSa"2z*[@Zx׀l9-^#'RTf>>\NmNvV} N(FZX4@e/W6K"WrqݒjV& & QGDm@iDQ+v7rEjGl`m06V*ΥJpqCtut#B1L-:l_faHqyc~,y}C@ YZ