python3-cffi-debuginfo-1.13.2-lp152.2.3.1 4>$  Apa#Z/=„ uWsj5W͹?Svvpg⩣̊[!"tS)VǍ廬(Xvh%_Xe@%L)/b-bͻNۇJDPGP VMPmsf "cchh/'Ϧb!vt.ow3]/[Uݔ|Jwgo^:A3\)q6qlUA7r7]tuM:H5[5d3deef6fdd575e86fb7b19d63f466ffb1444acb9ad8537170395fbda5ab3fe28e64ecf3a041a82888f2cf68f589a6b91d9c3c5b@a#Z/=„s8߮}Fv̗*O|}6Iaհ}~tVMWwo/Oz@n\oVgD~dK{wz#]e {^*^ܾ:I9#=8f5,JEyzҳPrY5.[׍iq 64cdߐ~/FKUM~jq'ޗ)Ϊ'0!|˛4w# iƙ0H,y-˓Nv#4>p@u?u * U +48 Qc         N  8 `   `t($8,9:FoGo Hp Ip0 Xp<YpH\p ]p ^qbr`csdsesfslsus vswt xt ytzuuuu4uHuLuRupython3-cffi-debuginfo1.13.2lp152.2.3.1Debug information for package python3-cffiThis package provides debug information for package python3-cffi. Debug information is useful when developing applications that use this package or when debugging this package.a#Olamb15TopenSUSE Leap 15.2openSUSEMIThttp://bugs.opensuse.orgDevelopment/Debughttp://cffi.readthedocs.orglinuxi586ZTAAAAAAA큤a#Oa#Oa#Oa#Oa#Oa#a#a#a#a#87d01940a08655197b68b5997736b2a2aa0798238dedb6d407ea0d1a9791b451../../../../../usr/lib/python3.6/site-packages/_cffi_backend.cpython-36m-i386-linux-gnu.so../../../../../usr/lib/debug/usr/lib/python3.6/site-packages/_cffi_backend.cpython-36m-i386-linux-gnu.so-1.13.2-lp152.2.3.1.i386.debugrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-cffi-1.13.2-lp152.2.3.1.src.rpmdebuginfo(build-id)python3-cffi-debuginfopython3-cffi-debuginfo(x86-32)    python-cffi-debuginfo(x86-32)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)1.13.2-lp152.2.3.13.0.4-14.6.0-14.0-15.2-14.14.1]҇]\8\\zp@[@[$@[@[:@[ZTomáš Chvátal Todd R John Vandenberg Ondřej Súkup mcepl@suse.commcepl@suse.commcepl@suse.commcepl@suse.comMatěj Cepl arun@gmx.dearun@gmx.detchvatal@suse.comarun@gmx.desean.marlow@suse.comsean.marlow@suse.comtbechtold@suse.comjmatejek@suse.comjmatejek@suse.comjmatejek@suse.combadshah400@gmail.comjmatejek@suse.combadshah400@gmail.comjmatejek@suse.commichael@stroeder.comp.drouand@gmail.combenoit.monin@gmx.frmcihar@suse.cz- Update to 1.13.2: * re-release because the Linux wheels came with an attached version of libffi that was very old and buggy - Update to 1.13.1: * deprecate the way to declare in cdef() a global variable with only void *foo;. You should always use a storage class, like extern void *foo; or maybe static void *foo;. These are all equivalent for the purposes of cdef(), but the reason for deprecating the bare version is that (as far as I know) it would always be mistake in a real C header. * fix the regression RuntimeError: found a situation in which we try to build a type recursively. * fixed issue #427 where a multithreading mistake in the embedding logic initialization code would cause deadlocks on CPython 3.7.- Update to 1.13.0: * No changelog provided upstream- Update to 1.12.3 * Fix for nested struct types that end in a var-sized array (#405). * Add support for using U and L characters at the end of integer constants in ffi.cdef() (thanks Guillaume). * More 3.8 fixes.- Remove test suite exception which was fixed by 7a76a38153*.patch - Add doc/*/*.rst to %doc- update to 1.12.3 - drop patches: 3184b0a675fc425b821b528d7fdf744b2f08dadf.patch 7a76a381534012af4790e815140d1538510b7d93.patch e2e324a2f13e3a646de6f6ff03e90ed7d37e2636.patch * Direct support for pkg-config. * ffi.from_buffer() takes a new optional first argument that gives the array type of the result. It also takes an optional keyword argument require_writable to refuse read-only Python buffers. * ffi.new(), ffi.gc() or ffi.from_buffer() cdata objects can now be released at known times, either by using the with keyword or by calling the new ffi.release(). * Accept an expression like ffi.new("int[4]", p) if p is itself another cdata int[4]. * CPython 2.x: ffi.dlopen() failed with non-ascii file names on Posix * CPython: if a thread is started from C and then runs Python code (with callbacks or with the embedding solution), then previous versions of cffi would contain possible crashes and/or memory leaks. * Support for ffi.cdef(..., pack=N) where N is a power of two.- Add 7a76a381534012af4790e815140d1538510b7d93.patch to fix bsc#1111657 (we need use to proper void returning function not to corrupt memory in tests).- Fix calling of py.test executor.- Add 3184b0a675fc425b821b528d7fdf744b2f08dadf.patch as a workaround against https://bitbucket.org/cffi/cffi/issues/378/ (possible bug in GCC, see https://bugzilla.redhat.com/1552724).- Remove ignore-tests.patch -- testing what will happen - Add e2e324a2f13e3a646de6f6ff03e90ed7d37e2636.patch from upstream to remove some warnings.- Switch off falling tests with new patch ignore-tests.patch instead of -k parameter for py.test. https://bitbucket.org/cffi/cffi/issues/384/- update to version 1.11.5: * Issue #357: fix ffi.emit_python_code() which generated a buggy Python file if you are using a struct with an anonymous union field or vice-versa. * Windows: ffi.dlopen() should now handle unicode filenames. * ABI mode: implemented ffi.dlclose() for the in-line case (it used to be present only in the out-of-line case). * Fixed a corner case for setup.py install --record=xx --root=yy with an out-of-line ABI module. Also fixed Issue #345. * More hacks on Windows for running CFFI’s own setup.py. * Issue #358: in embedding, to protect against (the rare case of) Python initialization from several threads in parallel, we have to use a spin-lock. On CPython 3 it is worse because it might spin-lock for a long time (execution of Py_InitializeEx()). Sadly, recent changes to CPython make that solution needed on CPython 2 too. * CPython 3 on Windows: we no longer compile with Py_LIMITED_API by default because such modules cannot be used with virtualenv. Issue [#350] mentions a workaround if you still want that and are not concerned about virtualenv: pass a define_macros=[("Py_LIMITED_API", None)] to the ffibuilder.set_source() call.- specfile: * delete patch cffi-loader.patch; included upstream - update to version 1.11.4: * Windows: reverted linking with python3.dll, because virtualenv does not make this DLL available to virtual environments for now. See Issue #355. On Windows only, the C extension modules created by cffi follow for now the standard naming scheme foo.cp36-win32.pyd, to make it clear that they are regular CPython modules depending on python36.dll. - changes from version 1.11.3: * Fix on CPython 3.x: reading the attributes __loader__ or __spec__ from the cffi-generated lib modules gave a buggy SystemError. (These attributes are always None, and provided only to help compatibility with tools that expect them in all modules.) * More Windows fixes: workaround for MSVC not supporting large literal strings in C code (from ffi.embedding_init_code(large_string)); and an issue with Py_LIMITED_API linking with python35.dll/python36.dll instead of python3.dll. * Small documentation improvements.- Add patch cffi-loader.patch to fix bsc#1070737 - Sort out with spec-cleaner- update to version 1.11.2: * Fix Windows issue with managing the thread-state on CPython 3.0 to 3.5- Update pytest in spec to add c directory tests in addition to testing directory. - Omit test_init_once_multithread tests as they rely on multiple threads finishing in a given time. Returns sporadic pass/fail within build. - Update to 1.11.1: * Fix tests, remove deprecated C API usage * Fix (hack) for 3.6.0/3.6.1/3.6.2 giving incompatible binary extensions (cpython issue #29943) * Fix for 3.7.0a1+- Update to 1.11.0: * Support the modern standard types char16_t and char32_t. These work like wchar_t: they represent one unicode character, or when used as charN_t * or charN_t[] they represent a unicode string. The difference with wchar_t is that they have a known, fixed size. They should work at all places that used to work with wchar_t (please report an issue if I missed something). Note that with set_source(), you need to make sure that these types are actually defined by the C source you provide (if used in cdef()). * Support the C99 types float _Complex and double _Complex. Note that libffi doesn’t support them, which means that in the ABI mode you still cannot call C functions that take complex numbers directly as arguments or return type. * Fixed a rare race condition when creating multiple FFI instances from multiple threads. (Note that you aren’t meant to create many FFI instances: in inline mode, you should write ffi = cffi.FFI() at module level just after import cffi; and in out-of-line mode you don’t instantiate FFI explicitly at all.) * Windows: using callbacks can be messy because the CFFI internal error messages show up to stderr—but stderr goes nowhere in many applications. This makes it particularly hard to get started with the embedding mode. (Once you get started, you can at least use @ffi.def_extern(onerror=...) and send the error logs where it makes sense for your application, or record them in log files, and so on.) So what is new in CFFI is that now, on Windows CFFI will try to open a non-modal MessageBox (in addition to sending raw messages to stderr). The MessageBox is only visible if the process stays alive: typically, console applications that crash close immediately, but that is also the situation where stderr should be visible anyway. * Progress on support for callbacks in NetBSD. * Functions returning booleans would in some case still return 0 or 1 instead of False or True. Fixed. * ffi.gc() now takes an optional third parameter, which gives an estimate of the size (in bytes) of the object. So far, this is only used by PyPy, to make the next GC occur more quickly (issue #320). In the future, this might have an effect on CPython too (provided the CPython issue 31105 is addressed). * Add a note to the documentation: the ABI mode gives function objects that are slower to call than the API mode does. For some reason it is often thought to be faster. It is not! - Update to 1.10.1: * Fixed the line numbers reported in case of cdef() errors. Also, I just noticed, but pycparser always supported the preprocessor directive # 42 "foo.h" to mean “from the next line, we’re in file foo.h starting from line 42”, which it puts in the error messages.- update to 1.10.0: * Issue #295: use calloc() directly instead of PyObject_Malloc()+memset() to handle ffi.new() with a default allocator. Speeds up ffi.new(large-array) where most of the time you never touch most of the array. * Some OS/X build fixes (“only with Xcode but without CLT”). * Improve a couple of error messages: when getting mismatched versions of cffi and its backend; and when calling functions which cannot be called with libffi because an argument is a struct that is “too complicated” (and not a struct pointer, which always works). * Add support for some unusual compilers (non-msvc, non-gcc, non-icc, non-clang) * Implemented the remaining cases for ffi.from_buffer. Now all buffer/memoryview objects can be passed. The one remaining check is against passing unicode strings in Python 2. (They support the buffer interface, but that gives the raw bytes behind the UTF16/UCS4 storage, which is most of the times not what you expect. In Python 3 this has been fixed and the unicode strings don’t support the memoryview interface any more.) * The C type _Bool or bool now converts to a Python boolean when reading, instead of the content of the byte as an integer. The potential incompatibility here is what occurs if the byte contains a value different from 0 and 1. Previously, it would just return it; with this change, CFFI raises an exception in this case. But this case means “undefined behavior” in C; if you really have to interface with a library relying on this, don’t use bool in the CFFI side. Also, it is still valid to use a byte string as initializer for a bool[], but now it must only contain \x00 or \x01. As an aside, ffi.string() no longer works on bool[] (but it never made much sense, as this function stops at the first zero). * ffi.buffer is now the name of cffi’s buffer type, and ffi.buffer() works like before but is the constructor of that type. * ffi.addressof(lib, "name") now works also in in-line mode, not only in out-of-line mode. This is useful for taking the address of global variables. * Issue #255: cdata objects of a primitive type (integers, floats, char) are now compared and ordered by value. For example, compares equal to 42 and compares equal to b'A'. Unlike C, does not compare equal to ffi.cast("unsigned int", -1): it compares smaller, because -1 < 4294967295. * PyPy: ffi.new() and ffi.new_allocator()() did not record “memory pressure”, causing the GC to run too infrequently if you call ffi.new() very often and/or with large arrays. Fixed in PyPy 5.7. * Support in ffi.cdef() for numeric expressions with + or -. Assumes that there is no overflow; it should be fixed first before we add more general support for arbitrary arithmetic on constants.- do not generate HTML documentation for packages that are indirect dependencies of Sphinx (see docs at https://cffi.readthedocs.org/ )- update to 1.9.1 - Structs with variable-sized arrays as their last field: now we track the length of the array after ffi.new() is called, just like we always tracked the length of ffi.new("int[]", 42). This lets us detect out-of-range accesses to array items. This also lets us display a better repr(), and have the total size returned by ffi.sizeof() and ffi.buffer(). Previously both functions would return a result based on the size of the declared structure type, with an assumed empty array. (Thanks andrew for starting this refactoring.) - Add support in cdef()/set_source() for unspecified-length arrays in typedefs: typedef int foo_t[...];. It was already supported for global variables or structure fields. - I turned in v1.8 a warning from cffi/model.py into an error: 'enum xxx' has no values explicitly defined: refusing to guess which integer type it is meant to be (unsigned/signed, int/long). Now I’m turning it back to a warning again; it seems that guessing that the enum has size int is a 99%-safe bet. (But not 100%, so it stays as a warning.) - Fix leaks in the code handling FILE * arguments. In CPython 3 there is a remaining issue that is hard to fix: if you pass a Python file object to a FILE * argument, then os.dup() is used and the new file descriptor is only closed when the GC reclaims the Python file object—and not at the earlier time when you call close(), which only closes the original file descriptor. If this is an issue, you should avoid this automatic convertion of Python file objects: instead, explicitly manipulate file descriptors and call fdopen() from C (...via cffi). - When passing a void * argument to a function with a different pointer type, or vice-versa, the cast occurs automatically, like in C. The same occurs for initialization with ffi.new() and a few other places. However, I thought that char * had the same property—but I was mistaken. In C you get the usual warning if you try to give a char * to a char ** argument, for example. Sorry about the confusion. This has been fixed in CFFI by giving for now a warning, too. It will turn into an error in a future version. - Issue #283: fixed ffi.new() on structures/unions with nested anonymous structures/unions, when there is at least one union in the mix. When initialized with a list or a dict, it should now behave more closely like the { } syntax does in GCC. - CPython 3.x: experimental: the generated C extension modules now use the “limited API”, which means that, as a compiled .so/.dll, it should work directly on any version of CPython >= 3.2. The name produced by distutils is still version-specific. To get the version-independent name, you can rename it manually to NAME.abi3.so, or use the very recent setuptools 26. - Added ffi.compile(debug=...), similar to python setup.py build --debug but defaulting to True if we are running a debugging version of Python itself. - Removed the restriction that ffi.from_buffer() cannot be used on byte strings. Now you can get a char * out of a byte string, which is valid as long as the string object is kept alive. (But don’t use it to modify the string object! If you need this, use bytearray or other official techniques.) - PyPy 5.4 can now pass a byte string directly to a char * argument (in older versions, a copy would be made). This used to be a CPython-only optimization. - ffi.gc(p, None) removes the destructor on an object previously created by another call to ffi.gc() - bool(ffi.cast("primitive type", x)) now returns False if the value is zero (including -0.0), and True otherwise. Previously this would only return False for cdata objects of a pointer type when the pointer is NULL. - bytearrays: ffi.from_buffer(bytearray-object) is now supported. (The reason it was not supported was that it was hard to do in PyPy, but it works since PyPy 5.3.) To call a C function with a char * argument from a buffer object—now including bytearrays—you write lib.foo(ffi.from_buffer(x)). Additionally, this is now supported: p[0:length] = bytearray-object. The problem with this was that a iterating over bytearrays gives numbers instead of characters. (Now it is implemented with just a memcpy, of course, not actually iterating over the characters.) - C++: compiling the generated C code with C++ was supposed to work, but failed if you make use the bool type (because that is rendered as the C _Bool type, which doesn’t exist in C++). - help(lib) and help(lib.myfunc) now give useful information, as well as dir(p) where p is a struct or pointer-to-struct. - drop upstreamed python-cffi-avoid-bitshifting-negative-int.patch- update for multipython build- Add python-cffi-avoid-bitshifting-negative-int.patch to actually fix the "negative left shift" warning by replacing bitshifting in appropriate places by bitwise and comparison to self; patch taken from upstream git. Drop cffi-1.5.2-wnoerror.patch: no longer required.- disable "negative left shift" warning in test suite to prevent failures with gcc6, until upstream fixes the undefined code in question (boo#981848, cffi-1.5.2-wnoerror.patch)- Update to version 1.6.0: * ffi.list_types() * ffi.unpack() * extern “Python+C” * in API mode, lib.foo.__doc__ contains the C signature now. * Yet another attempt at robustness of ffi.def_extern() against CPython’s interpreter shutdown logic.- update to 1.5.2 * support for cffi-based embedding * more robustness for shutdown logic- update to version 1.4.2: * Nothing changed from v1.4.1. - changes from version 1.4.1: * Fix the compilation failure of cffi on CPython 3.5.0. (3.5.1 works; some detail changed that makes some underscore-starting macros disappear from view of extension modules, and I worked around it, thinking it changed in all 3.5 versions—but no: it was only in 3.5.1.) - changes from version 1.4.0: * A better way to do callbacks has been added (faster and more portable, and usually cleaner). It is a mechanism for the out-of-line API mode that replaces the dynamic creation of callback objects (i.e. C functions that invoke Python) with the static declaration in cdef() of which callbacks are needed. This is more C-like, in that you have to structure your code around the idea that you get a fixed number of function pointers, instead of creating them on-the-fly. * ffi.compile() now takes an optional verbose argument. When True, distutils prints the calls to the compiler. * ffi.compile() used to fail if given sources with a path that includes "..". Fixed. * ffi.init_once() added. See docs. * dir(lib) now works on libs returned by ffi.dlopen() too. * Cleaned up and modernized the content of the demo subdirectory in the sources (thanks matti!). * ffi.new_handle() is now guaranteed to return unique void * values, even if called twice on the same object. Previously, in that case, CPython would return two cdata objects with the same void * value. This change is useful to add and remove handles from a global dict (or set) without worrying about duplicates. It already used to work like that on PyPy. This change can break code that used to work on CPython by relying on the object to be kept alive by other means than keeping the result of ffi.new_handle() alive. (The corresponding warning in the docs of ffi.new_handle() has been here since v0.8!) - changes from version 1.3.1: * The optional typedefs (bool, FILE and all Windows types) were not always available from out-of-line FFI objects. * Opaque enums are phased out from the cdefs: they now give a warning, instead of (possibly wrongly) being assumed equal to unsigned int. Please report if you get a reasonable use case for them. * Some parsing details, notably volatile is passed along like const and restrict. Also, older versions of pycparser mis-parse some pointer-to-pointer types like char * const *: the “const” ends up at the wrong place. Added a workaround. - changes from version 1.3.0: * Added ffi.memmove(). * Pull request #64: out-of-line API mode: we can now declare floating-point types with typedef float... foo_t;. This only works if foo_t is a float or a double, not long double. * Issue #217: fix possible unaligned pointer manipulation, which crashes on some architectures (64-bit, non-x86). * Issues #64 and #126: when using set_source() or verify(), the const and restrict keywords are copied from the cdef to the generated C code; this fixes warnings by the C compiler. It also fixes corner cases like typedef const int T; T a; which would previously not consider a as a constant. (The cdata objects themselves are never const.) * Win32: support for __stdcall. For callbacks and function pointers; regular C functions still don’t need to have their calling convention declared. * Windows: CPython 2.7 distutils doesn’t work with Microsoft’s official Visual Studio for Python, and I’m told this is not a bug. For ffi.compile(), we removed a workaround that was inside cffi but which had unwanted side-effects. Try saying import setuptools first, which patches distutils...- Update to version 1.2.1 * No changes entry for this version - Changes from version 1.2.0 * Out-of-line mode: ``int a[][...];`` can be used to declare a structure field or global variable which is, simultaneously, of total length unknown to the C compiler (the ``a[]`` part) and each element is itself an array of N integers, where the value of N *is * known to the C compiler (the ``int`` and ``[...]`` parts around it). Similarly, ``int a[5][...];`` is supported (but probably less useful: remember that in C it means ``int (a[5])[...];``). * PyPy: the ``lib.some_function`` objects were missing the attributes ``__name__``, ``__module__`` and ``__doc__`` that are expected e.g. by some decorators-management functions from ``functools``. * Out-of-line API mode: you can now do ``from _example.lib import x`` to import the name ``x`` from ``_example.lib``, even though the ``lib`` object is not a standard module object. (Also works in ``from _example.lib import *``, but this is even more of a hack and will fail if ``lib`` happens to declare a name called ``__all__``. Note that `` *`` excludes the global variables; only the functions and constants make sense to import like this.) * ``lib.__dict__`` works again and gives you a copy of the dict---assuming that ``lib`` has got no symbol called precisely ``__dict__``. (In general, it is safer to use ``dir(lib)``.) * Out-of-line API mode: global variables are now fetched on demand at every access. It fixes issue #212 (Windows DLL variables), and also allows variables that are defined as dynamic macros (like ``errno``) or ``__thread`` -local variables. (This change might also tighten the C compiler's check on the variables' type.) * Issue #209: dereferencing NULL pointers now raises RuntimeError instead of segfaulting. Meant as a debugging aid. The check is only for NULL: if you dereference random or dead pointers you might still get segfaults. * Issue #152: callbacks__: added an argument ``ffi.callback(..., onerror=...)``. If the main callback function raises an exception and ``onerror`` is provided, then ``onerror(exception, exc_value, traceback)`` is called. This is similar to writing a ``try: except:`` in the main callback function, but in some cases (e.g. a signal) an exception can occur at the very start of the callback function---before it had time to enter the ``try: except:`` block. * Issue #115: added ``ffi.new_allocator()``, which officializes support for `alternative allocators`__. .. __: using.html#callbacks .. __: using.html#alternative-allocators- update to version 1.1.0 (fate#318838): * Out-of-line API mode: we can now declare integer types with typedef int... foo_t;. The exact size and signedness of foo_t is figured out by the compiler. * Out-of-line API mode: we can now declare multidimensional arrays (as fields or as globals) with int n[...][...]. Before, only the outermost dimension would support the ... syntax. * Out-of-line ABI mode: we now support any constant declaration, instead of only integers whose value is given in the cdef. Such “new” constants, i.e. either non-integers or without a value given in the cdef, must correspond to actual symbols in the lib. At runtime they are looked up the first time we access them. This is useful if the library defines extern const sometype somename;. * ffi.addressof(lib, "func_name") now returns a regular cdata object of type “pointer to function”. You can use it on any function from a library in API mode (in ABI mode, all functions are already regular cdata objects). To support this, you need to recompile your cffi modules. * Issue #198: in API mode, if you declare constants of a struct type, what you saw from lib.CONSTANT was corrupted. * Issue #196: ffi.set_source("package._ffi", None) would incorrectly generate the Python source to package._ffi.py instead of package/_ffi.py. Also fixed: in some cases, if the C file was in build/foo.c, the .o file would be put in build/build/foo.o. - additional changes from version 1.0.3: * Same as 1.0.2, apart from doc and test fixes on some platforms - additional changes from version 1.0.2: * Variadic C functions (ending in a ”...” argument) were not supported in the out-of-line ABI mode. This was a bug—there was even a (non-working) example doing exactly that! - additional changes from version 1.0.1: * ffi.set_source() crashed if passed a sources=[..] argument. Fixed by chrippa on pull request #60. * Issue #193: if we use a struct between the first cdef() where it is declared and another cdef() where its fields are defined, then this definition was ignored. * Enums were buggy if you used too many ”...” in their definition - additional changes from version 1.0.0: * The main news item is out-of-line module generation: + for ABI level, with ffi.dlopen() + for API level, which used to be with ffi.verify(), now deprecated - add python-cffi-rpmlintrc: cffi specifically installs C headers in site-packages - add new test dependency gcc-c++ - skip the tests on SLE11 since they fail on i586- Update to 0.9.2 * No upstream changelog See https://bitbucket.org/cffi/cffi/commits/all for a list of commitslamb15 1629736015 7074f2f80fd1df2d5344d5a8192ad36d95c824811.13.2-lp152.2.3.11.13.2-lp152.2.3.1debug.build-id7074f2f80fd1df2d5344d5a8192ad36d95c8248174f2f80fd1df2d5344d5a8192ad36d95c82481.debugusrlibpython3.6site-packages_cffi_backend.cpython-36m-i386-linux-gnu.so-1.13.2-lp152.2.3.1.i386.debug/usr/lib//usr/lib/debug//usr/lib/debug/.build-id//usr/lib/debug/.build-id/70//usr/lib/debug/usr//usr/lib/debug/usr/lib//usr/lib/debug/usr/lib/python3.6//usr/lib/debug/usr/lib/python3.6/site-packages/-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.opensuse.org/openSUSE:Maintenance:16859/openSUSE_Leap_15.2_Update/7477fbe0ea57af7730775a2c3ad478a8-python-cffi.openSUSE_Leap_15.2_Updatecpioxz5i586-suse-linuxdirectoryELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, BuildID[sha1]=7074f2f80fd1df2d5344d5a8192ad36d95c82481, with debug_info, not strippedPt˚0ăpython-cffi-debugsource(x86-32)1.13.2-lp152.2.3.1utf-8ddd4bb06369fa5be46d8f7abab6b30725042082621afe0aa6050463dc88cd2c1?7zXZ !t/]] crt:bLL ٹXhv$p HchF!WGp˗T;#ve[ J28 "D J-]_/ӻ =fZP= U1?hpd9zLBo:[˦3auA(ZuScUD uZ2]-ͣLOAq7& L~:7J|N#_kq,$fD;(Ae./\4a&ʓnRLx[t7{#-͑h8G^|ZOd{X$$I _Mt`$YlW0h=@ `q{l"ct@6o-*6&Y:;'zp?'=uƗ 4f?LX[Rb-y3"sN8>%ЗY֖Dޕ^YaIT)oJc:D5HBN ^LB~B$<#%(, {%(o12y&kwv# lR,ˀhXt4&|h%TO)9n̨U#?{zmN;n槷Ƌ6w8B~+ӻbq>M qZqæ+,7`}:$J=<{rQ,fgM Մ N[ !Zx$H֐u768!Gd,^5?42M(έLSˁ$-?=]vC3gtGw fyaVo`֜{c#ڟ.=*!n,JV:njA wWChUB/.ftrs",zY5kSz]_%sQmU"B1Lԡ?T̹ߣ{6:8"C[kOe2>L0g{_02xi/ ert w8GyJbjaEY+/7b͌[:b26EA 5{47+dhB%\& ;QC v50@7k @8@ŏt;gip6ʅ*px2L DV~R-fU]E9jό.ĠL.p_jFؐݑ0+P%J~/Z]ӯVY{L4Zl1Zq.tpԒ uxמ3V)LfaDOr]A;BHu</JkmW~`=0 S`nwݛЦbv&\q伔ug#ʹ\[$ Ȏ܁øn`X_?$gWLxUʽ0S_*:d#bj"!cHov̊ R Rq-~lj9K, Gd {=xvZ {Tq: ߪV;)j^‘ %~y&P )M037FDy逴=¯ tk6),vټwv$x@mEK=K)IN10ވLO7 YHM 7B |$q*FW^$j0u7L(>5|O(򣁻O5scA,jVZ1\7D J%Ug8[ yd5IFw_-TvGEHtdD<0lԷ/Iu_~1!g|dH[ a`$K6ė 8W .FQ]Y.%ɗ֬u#GDR(^æA0'NNs8[XF3zz^(ߘ9eb 0P|/4`O%<2D@7j'#N8~OJ]vN4NOK֌Zwt$J<=ӐRi.59s<4yVae*in/ӍTjjB_q ֽ˕v`ﺉ YI;$ymtʆN}p띅38\!`"+AZh,\*LXEz ,Z,?Y?T̟Ǿަ+&KST{z]yC'tIkWe+}/IY\_]|@ f؋ UP%`oi>lFMJp5I!bR?iԏ'ڋaʃ*JeݲaDCT-gV^NJvqᶗO0ҼY~ /VU;':b^ 4~/[s&| L l [kSzs <ۜ]!var-[]" n]%*0ާD"#z-)~Jܣz*5jXªP : }F?2S~6oR j  G5}@kyLH_%DFYgqlyFp,dvrȽaPKgz6ټmwiEID༆E?M#QKrvR@VB2 2`"7( P^PŔ^aB%۳ iv|{]<Juy:?|gM˯OvMuGU:;<[q'O5=,R];^wsMCIgckqbdgާh=xSܿkg"`JWj2JZ:%ִQ!c}0?bvdreV5nM`Dbzje&X\- iybC}AkLP6az,!XWCgm؛Cpq~sMA( 1HG*" Wb OVBhezuD^( )#+ݏa,escu6%L: 4@Dt*dMr4bM!qju1p::7q+ ruruHLj';cIňz|*ڊ4vHa`DlIp07=jFT o^ `+%>%؄[2batqހ'zG49L n}v4EcFPЫ%V Z6w>shNGvW2#:bHG&x:o~v0iB㮰.rli>d"ٯ'V`p)=+ {}/ FB'x s{~r\CnCh))v"&h  ׏7cAllDݚO[LM1%m7GS^In9: Դ`D7=|:PT-&ĢS/<`7 Џ+JQwH ݾZ4?1-뫙 HҡnyCyUr4TXy)19ʵ?c5kݙE|n$sZ#^p_ͭJ7&':Ux^/Ԁ);W͔K5kcDI@A&yHp ߤQW,)TMjϕ&:݌0漀D@_p!pҌ6'+Z^Vkh9,sx >3x;o4\p4@tDfig*-D]F:$u3e.xVuQ|c7|*ճ\#+r`B԰I,ò ^S7asxWGp0 6v4gb2R WO4߭memClɝ uө@t!'nUA4$_ZM\Ըk?{~˹ g΀֩|m=,P76bDhCZԅ;j'kf5'|!-;X?9 ExA— 8 $'vM]3.F4. ; SPvfnѤppzb9zrA`'y4A*Yr >Kx)?utU;vaI}+ٖ;~]E#N vrG-ĉ6_&}Q{dz]WU8?hc+ EmDhSuY"36uv8v+ u*Z?ܛ n@'6Q,IksϑyBMnJ VԤ{ǵ(Hhc)S,x6ȾZL3 FU~\;tuSLbma,zpޤ^, jԒ 'JᅕЅbaBY!D^>|Qq(ͼ\2q6wJd DsߥҶmL>DU:O:;Fz9'A7F–!#X=ɱ,h?+֌A;LЦdm V}T`<C:^8Ԋ}BwW<Ѻ˥Ŗc%9g_]:JZ6ʐW F:.cYs@l)C _ kA~ޚGC\6h>rI_yuLnwu7-<֍M| &`( dbP;`YI3% @f7'7fT`-8Sd)d_!4+cO@;J+7;¥֒59-2FH Ȋx|-BnP\=9~Ȍ 45n8C%\߆n!zY/|g5֏ ΍n@g-^ GIXwRL#';C9+8ŽZ6?%cĴN%j m&i/Z}#m @˸qF;Շ\'*EuM5&U[.pP-L7ǿ,ʫg560ߠd57gkP-yMMr$dʀ 0y>x?<-EG7]a!X$@ٕ.7'lrZ,,}tcamEzea\|}-rQ\n=j0m7ƭ DH#.t,N'΁ `g6-I2v>cy{t1)_559Xjeѫaa&˻HB {[h }sHQu_j - `  \iᇞib|i2[X=qp 3'>yh;c~9T-/ 7uH _|qT*s?Tncoy=v&w^`a@m[b )ZŽlq] pљsy7^A(gD~e` ~6;u2M7mBC3Ʌu;Zq̥_O𧷐Ue䦜Y/^AR%CU2D'~Dwƭbaà0ڍ5eQcЯa;ku޷Ov]:@HSl qH4TBJ#~I9C5$\섨#c$+QYxuމjǟl f$a XH'=q-_(7B yv Ě2zd6סR"H# BXeNsRlkۣᮧHtjOO#ZG<yІ~G?ҌקPIWg&n?f0Pej]l4Z|z. 1G/oVJ(:5 h$ {[.MTo6Kl h˰P( ;IVMvys)wܣȆFUҶFYulh4'. Zi3ctY Q M+$muٖ}}jHI@UV 6a?Xu6?+ ׺)ъe}38,uo[*"^ (P86}\V}tmGs* B;0qB9Q^r-S> tו y%6pW`'u2M. |V9ַT!dEVA5T}_g/KU$zPl?#y5 ~.@c=Gb]ASS9pY8dUqJk6NoDBf94Jy$d3XAӹMCpY5_ Ձp,:ҜKnЂbbA+јJh"]>K!T{K^>A"]dv6>n=Yꪶs0G Z%ct,SLi {EmRoYn}EOiSa='IeOp;'rai3w3Cd)I 5K~YaD]v")HF,u4Zp{FпcdddL.x߶IExo ^3QCfYeɂB؈U3 Q5RE2:c9Cf=ϒχFo PvV6ugXt!a!{{vP,M9bG,qgf/{GƕCc CMuRi[|lL8xbY.aIO>b.Y*Cgזsar1UbYJIKc_yyk5ae2=02G)P6(?lV!5ÇVqݎ Zݳ!^7vᖋŮN% >_&ȌlTq[WTf8(Gո &+Dɏ8D0Q\h}W/]p_ ݿ[Mzl5XY;S~Z(k+H#贒˞IXIRTnn o:6T T$2E^?S0~Av18Ώ5(n Ո^|"Sev8_dEv7@]~7 ?΀99}%[#6^Z[r͗U.qxzڰ%\(;<,K/ `iI(ՆJ< F7w5bˤ,}fώ'"iT[/p9Bx*<$b4"/GN@}]ʎ75=/ï*렡=P]dǣX #|(?NXV J _y2Xy}'`𾽚5MnOscb&;4ԉ!Pf`r ,%{ńC~%G9 EŨ6 .%9^1?T)ʭۘ&Pm.bvk}{5SB=HP/hf+~Y X?DBXEӷ0/ u-~k&Bk,?lPq@Y;5f q1_E ۷ִ!X 5@W\3_5ln$Z9?X1k#v㓩۝2@<s J,#W>|e`otu `2 *E8 )l-],ݎ~Ϫ5X7G 7z`-5bCs!iX喧ݫ]o!2K; . ݓOc#>|/ٶ$DdRȠe Ѧ#zFO0gKRd$^t8(q(Q |ii~wĜq h/P_ћl. Ȍ-ەio97GR`ы ⤕}$m 6pUwܯP0g z{m!IN}ҳ27Gxjl`{UN=)_c#`J~CæogXw$՞~᲌| qJ@@ ?Ly ۭ%&(I GH5/]U֗H*+Mِ uHS J+8{wx>xBfw?,0wq/qLX" u&ڣ=" b!WTk yfU { Yuiqw_f `JyzZ5qHAJ;kw6V|yܚoM?1g pv).TcԻ#bsCQt(q".lmc9C9[V$Jt}%I}Q@Kǿ Q_+["deg:DM1l괼";RLJ?d>o-|=aUp+I2~+5'yht@mIӫ$fBDf0UqgzG Uedq%g,-ַXG[I: 9+WwU.n%O+ˬAl(hT#t9zԹYh|Nƕ]an{v_7GvtsUQ5a5D-1( cb};h'{ [&\[E2A7'lF 0-jY3 p x ?aDAYڣuGn9\mDlʚ i.٥+'$-Q!.mN忠yQe΄`cAhmK3h(RcSu^3kI z"ǜG[Y6rߠF͍U/ O<u՜5i~hrUWhmPKlng58[/Eq>b {%ʥLci<MnVf?^P#V+ ʭ_d`m1a6%xu<>'O_=;*?ڝLVnVIz /Ӕ9U ؔnEB]ZpZG) ij GC\#"aKnHoS djoz-Լۙ8&/cE"A vF} 2k6tMl(\hTFR(vb_q~%tw-NB2B8t)lN$FxE1E=)??l 4 )H\~|."[p+97} B4t\Tap[A!}6p=uSPFk4:pbx@JT }ݻIH?PJpnEQ4XK6aՆ; d)PD,v;VY'B%_Fb90'Lh$ {1=rŰe|ǟGu& cUF,@̚ . o_4R 3}l´.@Md/q]Œ*m,3MOrҡp}Q`#ɭ Kmu朋@|;[o;\2.2\hM:OR\YN<6QFQ%…[0\ Qy !lIL߅:[ #ڡ!ӎqRu٦YC}W/d8W*93/GH a]X)*_ 0vSX@xvr>udɧ$72Bpڟ/>OND4/ݮ`[Xuh+o=05h;E;@K`x11R[!!ÏA(Bi&aTKF{GV'!8 JLyw<xT[_(”Ti0FrLqM.u_ $uJ~椎2\%Y*ܡPGkfݿ_fGn X: `H0mpʜyRbи \M8 1]4=EgY/gj)̱/ݐ;YR?n`Fl%5h6u9O 7,a[4>ؗeZvQlZ\YIR%צ"4TnTC|qm{!ʀ۪2~<&TO$=]~٦cՖa&c. C&;jڟcfq#~f D7rIkG DywG[VB+Eoo(gҭcboL'ʨ#$Ч)i&^3W?Lo@H}/OH+4avlLJs|^yg(MvGb,ua"(RxY ]oPt eR IZb'.nG>^,b-ǒ Zv\%@{@f@Բ#jӄ3WѤwTQ( y0kA[bR __3]Ġ+V&׃$ Q9xid@ [S̨VO/( 'IclQUQwsCI|-֒_3Xړ\Iĝmö Y/,A޶I::r&1FRN@Űs)@@r`ht͓t VoC9}Qd$]p"L_,9)d9SȘ<)kC#Hd >dG#,5cY(O;\P^u( >X[g-O|J3f זrMh^?Qƣ_,׬ب'bG:w9QPJWl|챝c$MPxjFLޭmcXa3|2ے Br .Y\bco|yL=Od˃MNn1#{ZVT:X<[c:8~ J'F[X.|@eO^goN$'KOPy+3 G34f'; =C4VXep;01ϹtJۗpr_xwD)9T;7{Hqœ j=nJkJn`I?JXE$$$Ag#Q@[|7KLA "O&@@a<5Xx&=2OW_M-_U׶k!G$.oX#QUkpJfҙB:V7<0D,|R1,k.!Cyd9R* ד$oRkU5F^^˪&ġB['Y̬z0?}30K%V?lz4j9F 9yJӘB0VCS;Z38v 5ݗ#!BdCBDڄcD&W8VE 2;ZT`Y%{Җ8Ϸ)*M2B՘SN$ f5Vt -qS >T%3F4Ƅ.ln }~VgscMfCպ$U7tm[q\SmevNdw/Ey*aeE5f-YG/̰ BP5ncEXj<ʪϷhWO:6!]&QNB?UR"Ehqt7=:[qkIrtVCكޯ bH9+9t"SV $u/ATv ω|J^Q51 hDo5ֻ2 rx- leZk+X4ΫnIG^_76.oGAKm%lѐaKr5gy$˅ Ҍ> 9`M Ds 5}ۨOӐ)&lT>'1[0 Q@>7-Z{#Ƙ S0bg*pMr*:v.m&!,% Dxmd C"NQ^nN0HDz4RE4f \Z@q>dqQw˖.G O,Xn}GYUβ5ol:!; ahGXý'`ȁzk6^Ҿ,Knse ͿK$TԪH-yY˶A5پ>cV+}؜K7PgtG6_fo'Q[;xME"z8ŷ$-`u~Nzũٚx_Ecע*| I] &C1VbRLO#55K)x+(:+uCVg_} p]"9pʋkO缼F5-8SH1o6 Z^_$Rb/5ȕ;|J&<ACCV'if [o􍳗V;Q5gw"*`'d9 r>y^9^/&HLy{՝}ÜJ7\:r@2b%|*^nfGVm3,ۈжtiFqSXPٛs龊 B\{oZa]wu/xz*_{+̧śB|Nt6W@)TnQJXO-lHԒ(7<[9Nb;UOJ0*mG3Jĥ|D/UٖN?0 n+ ~ⵄ 9h#PP4D-55 zİ ˘*[L%8B^\h] ^Ǧؓ;C SlL`oUՐ%BaۦE-/e5@eD C&<,?, $˦@.]j3: Gm;9cqÎn:,6>V3' 0Po*Ht(!5Di+ sm@\a9hijdvv1@y WXgxkM!H:T%M`0'.ZGN8H K=2>+!kȩ_h ^mm \UXӞVINB_ lץLaT׾8TGMúȊ{+/k C(}իՙ"a^Mܟ $-X ev=#z`s/;C1 z >>J17BUFnꝄ!V4wk }@м]ܵA ix^TB²2fe\XO~GS}X 0M]vq-yEtصR:q lnDW333*Le5`=~+:a75Zg*yuBTD#?`@`4}+5[ͱtU#J(LoLPv,!ۜ 4pYL;J=ٮ^ *mH 9?d>Qz_\Ww`c?8Q8Oٲ,08XҰ5΀1Jz kK  8 &vz,vtjɏZNu"4bT!U=@)Gk7vϥ$`*e/c;fOgk\>&*. N8_xţмF+4#^P]q!PA|[“{ɝx<n#DdD@3(rW4K06Tlhҝ)^Nh%=-טw1Aq A0ڋ/_.!ǻJ>cƹmd{\Lڝ\nm1ݺ7u[X49rnҎk{ѭr/ȄIs9,6X9d?Ͼ5m^h? 訶 rx0S-(kziw(aJ܅PFgI %8Z{cuI(X} ^,^pkoD PٔvbOONv XaJ@ pƱ+ZY\t}ؒ(ؑ^A2NDUJ3esJl\Y'W H"~SD]f54Sbv>4_)a5 A"ÙI%ot2CZxS]=8;IosJ,}=˛z-HV`OҐіT6X< .f٣B6|%C+q˵lEqHNIY{53Ι_#6KB#7w ׋}kb*c_V'CiXH^(@t1.xɧj]-w:$\,,=#r͌3i40,B@u6ڄ+?W'AB_'Pdt W|tsM0*Ơ%HQSw*'1+eepGHbnJe|0XK跿 cM*YrmJ-_BP9ئ^}v3W?<5}dѯ`A%̴A~^wL哘/ sɱz.+r2}`rWqTi&xK}ֈCU$:K[蹖'Iw??"p,/&A F`ԽGQG=j1EKg6J0uWc*")/;!=v&=2THN&7zlJV‚aŃ~lgzH]Y*A /g6#Pym g!hgӷ?vdjmYToTGvSp>v'oZҰ/H)ySZ IW;=YG| pQ7kSoJ7gn Ql3rTUe,XtQ)MhՆzr1<;2.w W?v/Y~vF !rSusӥȢ{.sYs+,\λ>}I3kXl*=,iRϿ1/$xt x%u }h Fsot֟AA5(L{ rAhEJ"6{,0Eh {]gw˚vȌiwN.]tJ{?r?+%FU4 {\_T*\R\N%~mQM;./fT@Z.VXpa)T hAn& :b| }9\Q A9Mo($sY6W~9mr$Pim/Bhn[sc56z5ڴ}t>aXlo]u n큼=k `M_E 2@((,RjWqa59OR!ٍݨDQ0ڣ?6i$?A*9{Zȝ~M(ށӗ siebY~U#}qdďߏG9Xaۈ3G.v^Isra%Ksϗξ g-67[hޛƎ2Lh==00ٝ6Hbo-Ekrަiȳ@̘gTb%8R=dȗ0@|b h) DoDKѬ swsviFͭAaV)n Ӧq2Q4 Kt ]\:|w#}|?.G4"^!d;M@JA'|(r026<\o%BzqQJtx2QDW[MBjdd7^]:) W3"C(\2kJ74G 5ǾLDFncf\ݷ2fYk"AdQ2N@yEcS@D=kD nh+nv^">-%CqJy;sqM3"/\=Aʰ$!?qcyeȻ&3F6>}R0{'"]}4O dx.]!Cް`y=A \90>yna;,.*ww+6UqS-{uL\DPSґZeo^D%Vzv1~zN)[-r tO% i>f9 4LOs=2# |ZW[ Xqq(ȓ:sh ]h(xYNGL~V5Z@bwd dԽ2դ7b@QKxް`{s} XI%T+OaFu#2%,@~;pFt",,x),KAn1+4l.!z d!&QUnߵmѓc,>/`޹ĊW w\ZveHk   chھE@*xs'M}kA)"zcBµŠT? fFPݽ:ݕOTC/L v FCxcQHu&2"7[6}?G5pɽ&n>T_Z8+G/[NS-YwB]bڙU݂Y,'s7S@!c:NyOyWhGښ'R/|.g W|qb%9(VOɬ$\Hٜ|jŻ4N$Ӵzq'\ʩ4)3,.eWo-LjE74h.|n8S<}#ʔ7v䫰~wqN̸ۻvbαULY,}KG6o^k1*,ɘuh.L7 U;Bހa:̾σg ">_21*}MYcܜ1Q1a)m>+c[!jG* Yv4lLm[ko)nC(I&Dx@TS1NիQ?xzɗ24 k"-7ʟtX+p2A2buTrlv^HE*_R$g yuЩ l .ϲՑŹ=)X[Vz}UgU-0PFVaV Jb[C2_F~SxDgDUYk~~kçQ&2^ה\1~a3&{_$һ\7? kxy!{']H{υ\hhL@&I( ћrȇ7Ŀ3>+0(WV'^#2?Gξx\)ɨzIƒn.xgN =a$$HΜgߌ_W5=;9I]K|ٔK^G1\P|Lӑ'B_ :_q}2&4=WO bĴ#LjD4X 7uC&4t@tVC(P kcdytjP*SrFrw?6:WP7 bHsr`=[g PLǰcAoͼ^cyBSVA8{}F;8=߰B(w|*M/&&LCAtRjzˮftE⡌ֆK|!Y(5G::e\K1P|iUZXE2=HxPHn]o(7geQ.w ӂ Mh5?bXy ")T,f;nZ ҉ZsB(!ct?D+KofFoo)"{ I>)[<ư؇5iRL0}|t@Hb>k|~ȤtD7Gجٙlf'~T(zPhQ*$,1tQpjcn\K5N+C_Kv.tFpM~=N1qZDus=6 ?WzeX!O3Ziߠ1R dE菊'_bi5Y̰ Hxܵ|3ӤöfeAVCKI]Τ8t(BE5g4(j mbٮ TON$!~ld %!)t.%}ób*~9&{!۽ .njqmvzd\pw VL2"ZO^ՅӋ"lR=/E#6O~Kcq͠rr~GT}CQ&}:9j} (Qj .?6Cr gJ)ŗFeG-t-!=sڰ4 OU_]j54Uu_6&z<o>D[`%&)ق*A>؏Cӆ 1\M+H#.ϿMmZ.fi]ܦ n\:Jٖ?㑑'Ȇ, d&OKQT 8Ku722F栯6کIoQd+V: U'Eb#l F`24N Fm TWŸuTv #NvbBWھry4f{:~v<x1@%nkΐ3uRu;_J%<()tpA52B`Ҳy7Y-/KӍLF廜3+PC]B(/"r'Fu_+Td#֤ UB"s ༈@^l-NKSi\arD՞ﰵ=csƄy*&pzc sr&ٗR|t5܆oږԀH`fpIUΰ򱻰$[o+#H2vL;4۬!3n%\b8 `o5#2 MJ=5c]P*~~\5{fuثM}R/ŧ Y"+btƴv4`.|ZqHA%Կ@9 ?"d1@vptҕK9P$]rmUBvmئ|Ae{AMfo*\8oA$۾'bXN[o['I"<#XHp(%5>@mdK_9]= O~ KLz=$DE*ccQZLa1?3U}?@J_*a]!Ջ@S6ɣm.@cfsr 9D.޺}!X?9o+EqeFhKk5~%LͦQŲ]sVUR[TyM?[3BAn -6Џڕ0Mg`;/uxR@ը9cJj+dbu@wf?pЗ k(݊6:f ټokf2sit,ף;_ڽ*#uNGp l>eMt5|=>i|]MRDtPr':`M^Q_.O{}Ȕxve`SxdgEB:s'V8HcZklI# 0q03t1$˞']~A$cU@j̆Z0&܆õ7,/u$UY3ZMx{UyՌq5ӨPuQu.إ1g_rrEcx{%\!gBWT3vyҖwxXY~qJx_e=zxB= ۚD%{LGT,`zx9Gͼw]\pO=XvNciaZ(;d6'5uBPiM %Ɛt_$CTXW2;Xt r5iVl v.պxKЫޫ|<o9tjDZw"@|2up}3Qwޖ# Rub%\Cy#ygR.Ӎ 7GF(kgH.9^bKP.{dկ @e=pU,'}19!`LmFM󶥈+X=T ճe7}l9/w8`AD_5/[E>ܸoq~rsUtdcD{{V8q~DmV!35Vk颗8˚/cx œVEg*IH [.9VSȚ$%]@UŌRU|ߤ'6(6,2mY㠃ұ3r%D<:d)0fy%Bj0 gS4;*θ=5)͊ &qJid8p(V嵷e)3WP3T֨d= ~-BDxn nPk-[Fi\o=Fv[ JeM53 1 $sg/Qf?G&}7}f`*ȂP7sN^ RY+R@WCpF|;{VwFgqU搣|oUanq*!ݶ$ :#!-!X;l>+K u'QLݫ6Sðv0Y2%R?d]xwspQr6$$!KCy8~~QFC:+f]FJzK۵s|;Gn.l٧ޥM~SfGu>Zo'@ȱZYG,/f6`*{~\*H%BdGG$kmM6>So 7.p{,ai liv nH3Rx&EϿG1ؒXl 5+Zcˈ1Lb MB$-[8G+(j͑DѥDOh%&h37tpA P>EүI ]$8 jOWy#c~adqc3 23@E@'Zn]v'F;I.֤Gxu,(hq:ۻ5cjQ:DJL6féUztH.0/~Ϧ1!\ͱ?[ϬhNk ;*`1~lc_ A7sq"‡;uM!5QoOD:c<}*7["鱧e/[dApJڌ M7@5f&j5OU~v#܈Y~KExUl¦~1G$4s΀iM9 W*%] Jo$ࡵzeUNBFU-k0ӎRq3rj|HhA_=O"ϲgrX<R1M71ϧ)^⡥ $* @g}_?\*F2&Hgh(h ). K–9eKҙC8T-|çאdgwBY$  s4E>E$hG {Xٮ@F ALk JdAU54!HcRQ\-mg͖%jJK~iau_^K'%a؏ HꉧslB58JahY.84[NMh%ه@}hS* 6TlI9)O$tSW849q&e"x2?9nspv upQџ[i՝{$dg9[wHK5AH ~Zk@j AUC{+;Dث;!:zL{hp(˞E@ EV`dz}ź:='L1jx6X&x: s=<%]~bC)IR]GSGҮs_36p_ܧٹ:rrB絗 ˯^Ra[WnVF;5{ƗeRx6hp1B@(y&4Oah)TT!=x [J?k [mI {l9 +@lUP=}\3h4Z*5 7S'^mDYjGڤػz @B҅-{CN0[y[&,{1 !j_&JyNDm2@qJ4Q/Bh M$C#Zɭ`*Hߘ*k؂e\&%eϟ+oASуIWU\NVQb'2W]7Z}%)mcBDȆ]vwMl#xBbQf8jr(HMC=@< cX?,ժ0n`#.ݻ pPOdH'9\L,}Y%NPi: w{xFU:eG M!P%kvv/CsҎ.=yMQSTUinK!L]T`##;91TBUJl`'k^¬,~NE7ՕIH:T.hNrGm@./W"2}Ԭj"_6?ZUc:W.Vm{K!idg瘡lꝎJuFӻ֦9d- Ŧ}]p'% g'0m&.";$Cʹy~wN҇/iؕSpmٓ_087gyBeIb3*%.NLt?ͫtCeY4ljj#~E km)[_Y@? & 7&!xJ7񂹎J#4"a@r<7( 1_G6Q1k(B.-ޔxXv!^D#~hd.`˷T=ȥ֒ /Љs#Fl t6Jb(-oE6aE]68JđBDVG`ѺUrg7\ w^7k!l %TXfmx&әvRثUgKIHV.5@3e"׹]$5ahi%ЩZ(ۉ,o0R4b ivzNLL/Zy#T8exMNimo!`V"ݚzj6hS~ȉxcn@vf;,.[^AO*H\\pX`c4TD?ĘS*%7{U,[-47ĝ?7iG7k6E["I}P7EKrdZUX H88VYzՉBkR; # ^m̼4n`3TMf4KOs'eUMok*W(jNY+{*jjHz# H| U'1VKC}Y]B}nZ lE6]ɨI #:m#79K!,aL]c=PAX0A+C;zcSjNgG8Srg#bs(jbUwݥW‡b!tҥਫ1˄LI s lK|]vQvʸF}4?Ce $a}47H&25=f4T%t]MfX GMEiPC?֥9yGI;(v~"Fd2*UB];;UNb:!܄5'fRݳ dYҙ 3)ڏ_^~O!B[惑m;:Grk^"8HqM׆OO>}k 7qhطv;bOg|?}C P zݖi4L(H{V1 G|q1C 42 6Rݜq{  RKBML .ܴ!㕚Q)g\zc1'Fev{ڟOLwџSޯ>_ztae\Xá<rD\jlJοuie{uAow_7x;v|J\q*x&wԳێJJC6},kjt2m^Y`T Ƽ},]zv3Bx?㣽˽Zm)~{{yFN`6<ŜkH)e/Cȍe-f79ob%D;[ 9,YhZ- {eP@gJe;ut¤1?;M7ݱ| *<$Q3g#9ϒ F39/)bTԁC,L, /r|eZ:2O{A4yRdGFf)ג{Ib:'G9vdpbLPHw}e$}-7-l+KhZMhP ή+ -.ϕhhj oEryٓQB ,tlI|fGV@ 2;ٺwyQGPS%R'8rWAhߓ#2s(M3tb`wj.d519?-\굤wq3CODA, 0],RuJ xkDZ0  6jody?wwa];!Xd)mrwǝPGv+ʪAвzzrpXGz3:Re=p_jX7ϟUKQƀxz5bfaA&޿CgFVG_53VD華ҢxsE:(tEQWcw !ZhŘ;dF F*3˧>G1'|~VuxxrG2NC [~y;nRդG sf9:2o,0%aI>ًB8er0 ژod5%Oe\ :ެ0ꝴz[͈àJosv`b؀(i\h& L5Վx208w% aE;0G#57  rf/=*9 HP]+?%xr~ɦ`I>iwd -JR.4xSpc&ih먾[j vW{eZ 3窱,SZ%svFw"`?9Q{''uJB'S D@c=fLWS9!PrF^P+nu4@O&* t- WFcgNLلQ`gW,8"z˚wl 7` Ls =R/#˔#iQ6^taF<@dI/oLf OٰqmhKMkߗ0Hh+8@y[7JY=8*X`DK)2)~b"ʟ,7qP~V%.UfפʙSKI$A`<|;Yǁ R r8m|y2W_2$bk`ơH4W:w9_tSh/TB)bf6Sgp3- (R[Ivf!F3߶L%Un$~$]]XRҽzjD1@@.oұ: nBmRGg"8&!YRXTTwߤ̨,tblUj[ gA⽺2j!R8iQdt}َ$atK\>0䏿)o%.M@-LhmfS'{+.Rz2W\%8!|pޅd2Y{;QxM"<$:T `21|3|ᕐSS4Hϋ. ]puМV Lѿ؏BT-y6~Hئ%%H3< "wС,&e4T#5SQK|@+$1b׬d 2lb7 7gKJ[(^b'l<;Ԧ>-@%MzjϱW`v#H/k^)@-v o)Vv@t6 bsn-4W1w-W{0+RHB46c+w|BEg[_DjaY@ѵ5d(TK VH8/CZkn 3:20eAUsiG pzt:ּp&^GT7kݭ{`gb*ʼ"bX?tlu{H-zu&ؘ!Zø*u'z;pq}Ӛ,z_/Rp"MvLNxIA`{,n=E"(vV O2Q g2H-^g;^ g;8u ELmg$lo@ZLwnEZa&m?Țkqt2c[=$fLl;{ƑA"qt-*UB̪2Q?X柽 )%*( ҙ F77Oi@4^Ҥ$"ѩ./Zj^Q*٨MϭN_P-I3tF]TCiLj 2 ]t>@R50K BJOojiZȵ=.X'!9K^IeUTdX.SSbAI(xmc5Dpa+#Ku!Tl!Zӫ.Lea?T,5Ϯǒ-(пwP."94X( ĩNW2'ф2Gakj S ZP8sw?aRŰ.oq0vɝS;݈ȑ&r~]ߎ` Ԙ\Efڻ 5E2R ՅfMl9`j+;nr |i1SsG7煳,"te๋PjjVpCC(ɒchf!a.)4Їi=> n+YZVr"x8LbܦuF>ME>'vA/ԛ atT kے0NvjN(C^ҿrL6tuD^ܬ2KVk!uO5@X=:(1(B_QLbCuݪ)MVжW;=EP6*OfxCxˇܙ~: =4.,(uPT $nB}a=`2cLv}BPN1Jynn{ҞW['ؔ"L<#=T$ ?<ݧ(Q4_RmgVfKT9m3dpլv驏>(J:s79ft|$dSϧ "YmY-~mY>)"(9KYvi_^#mWbSwra܊H扻5vshK7/, [^ }E?3u N[JpǮC=E]]dܗ1-43OEo)x4hLڮЃQ7YizxSVc !,fRr'meM5o7hIQʳs"Yxq:#f0=J g|x9u9@&R,0<]Bٓ[}ochg2OΥP)}Gg h LtO=rQ kiֻ"\ׂ #+ƉnI@B Rת, #0N.U-Cz`pv( Vc;OD>x7WBGdE CIx.NOgV8h8 Nxp^%KchT$ab}\wNZ2$FQ}+D܋Ĩ#f \;pYUêVCLts#"6%zb.@a`|#oL); v2>;Úq؀lrA2b!Z WR]$kQwkF~#*!Umwh(y/xR)*Zb&_́$B\f侟hV(W'7ez[m|&:Ua{Ǖq㷅^zM7ްԅPdSϘEY'6i(ۇ.ó5лJ}i:gGܮsý]!ҧxE5 `FR8rbyM>j~Jƒ*rwmZ/:*[mߧFI+]kScqCNk<^\{!̊\n云̬@5;g-ET̰P*IeAAU*nˢp;ݴ^FO ]#`%\c\Hcf,w^Ī ̖Akx}RV.rrj'?f-Y=Մ=aϔx9,0p,2)ό^Ig3W1NGu 6OT,3 ΰNX /WEaMgl`dq| &v6|BGN~G EW%3rKGj+E(aU7iWuMՎNv hN+iY;/b[Q=fk{ɳ'{># !FHr@FEB%BeaXדȓ*Xo쩬M&B7Q,oU(fIvr9On߇`V׵⪐ qw$0-)<3As3Pkb.JVzzs\z!IGgOpItgOHRb9+ 'U6!q/(U-)Œd<DwE.h jcWX잨o08kh^squW讔jE\.am6io5ZZ^r/VWӝJSyٚ,W$|q!07p_'L{O=~.IKu~UC=:m_F$l7{jlvV"p[Q<}Γ{|O׀zmtbA7O`: ']zvGfiqA)W^}TMQG;N"6]Zic`XDpJp;Ul -ykᴨ9`NFK#e]Qy]`+ <҄G*lJ q^< })XaQ!s^x@#>8f?a׿3k`*{m:!_5}W51kLfuO>gr#` j -O`U :'$0y}@Y!dX@Q4)0y`j-[Hpѫ{خת?{FU+mD|N?D%K$~z>Z+;`R]ib rgh$13NDB"7'񍻾yCfmi_#iQ[F߯?6e/)CSKC5[pכ` cbtB⌚?Thm ;o&_ʛUYZFk",ؿda`yL|UK+xFT /e02OS${tLv '*BQ.n0's*%3;Ll#2'j.{qzAу>jO:tCT>_ q㵃F#joLc ~eA@Ϩ2RH-SIp* Ɓ]&r++剁_]YY]QYfJ^ӝͺVC\;|&#k7)U#5_ƚ05Ug85u[q)Dd0U7}G2l MDnPv!V3b1'HcKܻФؒJbz\;n\UC(V[K^z 4$?SL5^A>Tni?TGtZGDgWy !%L0YZ .e'(X@a 2N'îM4bdL90C|'`%ulQKJ۬m&774c<Qaـ6/b([n]^vRk{쩞4y[ lo+ RcoEhP?VO^vZVތOQ>ْ,^c3ħ}-҆^9i3Q~<4بWND@hEs_aw$nTE)s[?)dR\謅,ͭۗ-:1 d3Kc˸N>Z۞MF_TV~  N(n`'t-oE?n&3Wqc-\Ub6e!%݂ʴZR>6%sT/ y"- [O9H1 :O({*ݳb.=]&wC[,oN;|?)ˡrI (m[0(1 -8Z$5Ec6><`Z)ݦ]Go I]Pa|+&\Gb -%Rcɫlĸ{6{2^a'chC> {,uu{+n>TRA@=>)A*> BY!{`# ~NNMM45`ɊMp:lmo9׏HdΈ&똺S=ӷRZ&`b\698&ֱdg9@𲫹j`:֬>U(p}NE2@ozx4qmd؝4D>S fa`rf'{OcKcs$Hۼ]1ApJ;<`|!V^yB?H( fSh83)ߨ nL dC+Ș?IA>Z?QbScKY='Gs2EȒ1qӸX-W^~2:cGqS+H?v!+-(N g\sqzt h[KgͲ|p䝘~XlƸ@Fq SRs&yf #,rovVir<@ph ͝3Ay"h@,3yT3՚ru=z't1 NQ1ڄw))d+Z G8鄟1.(᳔F;8[ 0}˻b_6c͝Kr xm -380u ^H5JD98@!<(%D@`%1MpyFw\mYΨ&:̼F@ƿejnC3<qBn0C@]tG/l)h^x! B%PxSk"=a}'sEs :$gS!ѐY+]ʸ,41dg YJ߆D_oUS{:mypUN[p̓T- 'ԿMqn2BEFW!YmwGW\X+" U)>Gvޠ{>)oerpQwC~BF!HaeMJPX:@g' ]ecLi\ya-0YP;RrI2U|մ+C,eP&'gcrA^a#=?bRYBn;-{ *Eǰ"J',}?0fW{Weם.hֵ)p7` M1=AB` B:s7d-qSm[\zp8P89M{p.z*pn UFd&S>=^%?N=kޯ\Br̍.klAu4[cr񥻺-MJwշjjh|6Cd^F+Vg)!& 87zޓKy2|C|!.wFm'NĜ1YxUڌf_Z]zP29ww\}F n 5_[vgK^.p81O(B1:O[YT"`k%k(9 @}Wpΰ{\R >tbP Di\UFP=U  P~kWwD~Mcj]h#7ſ5 Q*Lh~1#>/]1ETAN!f0)>wה?FEa3+CR_5E'ۜ9%NZ ]ĄgqxYf8P5!d7On ]mX:{V_SrZm:őElpMQ @ݪK3o-dimҗ4tzV~`^"žXڱׯ :}JbΑet|-n- zO_F|v8 e D8F\l,SIPWQ$Iɵ8NAl3:[cG:s )ji^4b~6E]Q}eyu~2E4zsCp,nܪEr=,{cv&_7ej0`NEV/M7]g<fN]vܓ2U.%AzGr4t7;r* NIq^{:% u6vpqp~ԅ,(ᶨM>X-/&4lYsa\=@HWak#^ >U{x@g)3n gXNj93N˂6u#Lu0B"+}'GwڣplfR3ïdCL_Pƾ ^=f'] \Osk|2Sf i+WRJ/G!xy"2a&/8xv. ҫNݔ>p7)_?᨟br2즥q5x y1bAF'$ڒh0(ycc^|뉦j]N+n|)v;x [u59P~5ֿymUΨ }g/ӣVWmZ2N mވjiK K6庺f\3o Ӓ3&|v0{]跓:VژƜƮE"/iE\~&Q y 1?#(;r dHIH?l:1=HOv4S)_#* OZw:B 0M ]k롮#TjվcmJyh%roLÍ..3EZFKŜμXR-R6T,si,G Mgkםo3<Ԯj(DQ= v`د"y<ayr72o pEyi=#(G}յj@kL7@e`J%~qbd8Ie(+Y0\R=V-cm)C{N"8v/8cQtz\D=_呍EXHmh;  pI% 8iuK~J V(Ȧw$B\c4.?5CLش.1coDž!]VCJo^q..%ߐ1}$1kI!XaY%?i֬vi}_v߰ܢߥ LDYrأ΀bt(GRG&4cw[0!UHG?=R]nP.b3Aՙu7VL,TUVtZ9.<[h߅GzCyNi1") UtyC&ro愽c]K|[Kz8oҪƕ*ōZq\[y-3{+ߧfˠs]vĞ0FX";')S؍M.gG>= #JfoSA%tAV J?/y)Ƙ6P5ve~q&}Oot+4SШ X Rm23ҊR!w/WlRO雦o˰5{jx|nlڊ{ڐzWU$65_<,\8Jyk : 1[/Hk< BiݏIe]ɰftUsBP9Y-Ǎ!t9Μ9S_YoBQ導*Ә0oWB YϒBxNӡɼ[Qk"v=Q 1ح ,Ba\0EZj36.:ف 퍑B鈁`JgX 'M`h"GWy6ɢHB$s&pyjt;U;?Rc%e}8|fe^c:Jؓ.Ŀz 7CO3S0Iq0MNoM cߧЙ+ωDIUiT;CLzڭI30%液DS 3n^>%!,0bܻցEiO VlY 9˫Һfz%=` ]Ӏ:c6thopZOV5h噾-ݿR`2 v吚Û20\/*Iyx dmz7aCn v=*ij,L9*ԏdnX:Ә{t tY5%5"EX.i֑DՖf?Drp,%ovB+_]G &=_l$զ圳-S+'!3VCΗ]< +q,DYn w bߴJ"|=ui ='* kD/09PYDo(1<āGV :Imm7Et㥼9Ldt$Si< w0D˱䊗_gDJQLB  ܓhI0Sr'd`1"i)㍁όF}$ K,Yv廷 ̼SE (v p"%]_ΐRl'G, sGk9 T!|bbu۲ Rdc+'.qQմ8* lQUsEP~Q♌~2:'78^"2hP2ޠ+R-)B+.!X9sq]Xj jHZ Ȑ ױv^ЮDN/A&N1TZ4KQ"Ɯ 뛤2et^= 2ծX7S2ci$' >OH>)| (v_+ّYj],#o>rϏuɊI'!_rl>y]HH#6Eg~>ȴoKqe办7 S$t%<QLPkby 5QG';$wOl>̒HwGN}m9jc;v|l4q9ަ"D!Y瘱rr"TB0g!<&JBZfI~jt|84'lAzcl2+F7I/o& \065yC5(_%6A׫.`[UYEW"$F趁{EN"$ԖX/Kin֩9RiU"&24K+Cwܬ YEx*{۾Cw;nU׻pl@^ K#yCkv<ɱ6'hSuR_grhO(hPA>d_PDKJ\ =߼#y 0g$yMp-;'a~[Bm̟0[yvw?8jF ˹gWYo1x?RF\m5x˥&\ڿ0x~_j<~S?gO"E-*Nu J!Scg3ƕ˃H6 ҞGa8lZq"vFF Sٸ;bnqEsjv;vQhoi/M¦5T7rtϖ2h&hesrBqmh"4s|I{.%Y(9 ֓uTCPD|ثdf:TյаS[:pjiV :|O$Naeg`4Y^d*4j^v]xP(;[H8S9&م; snQ]iPqSw(>>< <k/g%AM%9^,OlՑP\ h|A'\אТ׋ׄ.D΍RRE1vF=~Tw~a)Ɏ`1f,XLj*NnJiǔ3%u5~QkZz ?utw%_rsڞ4lV-gUL)fZHh]YCdx8+ BE%"y8Zi`xa s")ivW1BP#݂d4@bH2bbc"a{!gVW+4ΟykrT]\9MThb}F8+qΤgsqdgu2u9V6E"W6^5,GQ:j_:K龙lK *  PmOdS ΅y~N yJ *ﱲI-gTP57 ;G)pN%;'# &?3w8h {ЯM{C1#& =inAHEHƴC@֜i W\D?/ޣG=b*$G6}]XJsaXg:O>i ?ҵ t+NOq ̕g0Vl}b4ɰ7u_Aro+S).P.B&WyX*UtA!WVCkSgC Ff:X,!bkDcД=&`$eXN°襈8`>g[]5ɳ`:L0* !:1Ѹa3?tDwbH@i͗Qc˄o rUy5ix|}5nYOá*Wr}מ,4Cg;zP}pe BgBh-3s໏u 8ŏ40u{jQW鶴5wԚAYg}=!SP'ax]U+[[^#Ċ[W8w>r*R-=/* Fճ`Б}ײI8"re2xȖs򤳚1;ݻ-AbZz%{іF<|jsOTgsZHrЬ,E9?=9GC&gZ P JJtP A+n OPyLFM?\oeBS05}n0־Q$RyxksxG5ᓴT yʢk NWkK7 \߻ӈ Wl;,o͍Ħ2Nǜ_Fd٨׼,Gi1o)|3l[vˑd{}v6@#cMEw ŷ'2w<04&q'ֿ]"8|U)gZJ]4|^Htj kݒ-/5ۦA_u@{"--7y89KhYjasQ0ۏ>kC8e1ǔ~3fDt!9 fEO "| ZJ3G fgGkCj$6a#UHt/? yj=+Jװ6e)K0'೽DgXfws~\7 09q¹msRָWlf6k"-jM+!bXmH~DJBNkWcZ FO$h0{vW W qSD\bDKAL\|tz@U+- B߭UU`%'6ySǪ5cww&$oē1\Y{hF,=Ħ u/&/K N6W4ByӛY*.TϏ^ /^m~'9اb=X(6u۳I5E#BV7A 9i 0@4<*3@3U2eh5[lXnLy!(5c1/G0K7LuX؎=Sw*9 HU0NJ"<E^VQ> @ C^UJE4qd\Y8-o_{WXR,ݒW!`NkHp64~mqӢٔdJG~5u+캎W5ܒlVĸ3qGefxy*cM9ASK}fܥ.:Ì:NRF:(^mA25_0 tNCRu_sѷD te>1p:E5\, )!'cLj, q6x&c|#9d-r`H$40ygYy6LĒ﷿"aGEE3Oi}T pru(#czKrnٿ(qM^uG ,8^m lZIȧiVNM Aȿ UIDP_S>X7N"bhw K.sBla$\8cN?eP#/ ^OhVЭv{zԎ9zO>b'KܩjsRt:U7 ^A8Kf=Vۦsubԍ]Q.#4جGg~a^&}_U!%}[bXLV_al7#cn@"Qc%|dWO=!K׈pAx9e=l3|䗥RvIkRDbq?w2be'#n8(McL$bf+,d6e$!0迼xSٿ$ ,D$4]4uop7Ql(5!vϿ"JL:(xU}AƁٵ:䩭ꚧ/svǍ;ql lgd:3]9fsx$ ͔UJ*3ṉT {1 d=9'-sHX9|ĎϞ*>K=<*Y0{e3)#(s}@6]<:L&\;RP3eileOtafB{,t 9]d97hݺ &nW`t-׎v%t^}ԕ'X|Zl ?*7uF/Eh^Sx0jwIև=ŀӟO {¬8a9Wu+.^nxT+3L58Jg1&xx͈/ bFrFͶXHqMT]wD\מg7`:H> <!\ kУ|~z4HIeʼ1:-Yd02+V{\ Qiwv r%GĜ䷩3"C1?$Ѿ5m/+(LW?k.Z 0K=bݑOm!7]΃XAnq["m]~x3| |oq0I(Wɴ%f8qo'4\՚:&V J2=ْPk0xրJ94@Z(mSlx͕冷=t%k5Jr4,$~Ԋg҉<:BFcģ`1,5 =6.^ Jy=vzG R/Y5`[-` 8]BݍaD5zW'ȳ`4`& wVfz5{D 3јvBގd] ~u>gyA"K߉}FlB:mMLR[DS? GCfJiC HH,7HaE2G90q_Lye"RRK/U͕o \eGlC'mpւy+yhLnR KÖ)M()Kxs̍@\9q1.@$Ej%#JO+DfI_iw.JIPqnbᱤE!V(u#e_U⧮(6O]XAs]c&wl=%Mfr1*6OxIACGubEC&nC/j ȑbH掍6_!q"o:!#ƒ1Ђږ8jp\DRX.cnj 1h=dR>`o EMrɽII\noTzkl̪ŠÿG[>OY #~3%Ԯu}(kTbW1FnVZt&puIF/x,|v(/  ]i,7!&wMB4T\rXHTݳ~|V0lVC.Zio*7-Y:!/&ƣF8fGRS\1訽N0$Ï*0o2y-%U^>u.wªlK;ٕ(,a>4_pY S/NWSx $tj/j3V1XL5:lRSNRy\cMmg*!Q0΅:U$)@#THNиן$CUȯnןp<ğf :`1|$Ji!t_8(+';=,Nk+ؗU̿ JZa acJ.8g_oL ()%h{*s<l /LJ0&X9gv-5A8Qϸة j{Ƕ,h`l&mna|5GEǞi\0 uBwM s3W*SY q( 5#łU5.߸+T^h!ONZOmۭ9K+4.S lHbEL+_k]\a!T{ъ7V"cvחf+~;Y+n= )KƢ‹`z6lh~s}.0"xz٫ 4#>OβPOUmu6 E l/%(Pۉ[` k UkIl=cpZ F 軪a8;5Qf~iȐWBwoJE7VGKق#;MX0P>(*#]5id*$|pgK@Ezmf?P~ "w^O_k[*w11c:wabkeRm>68/3zӻ'#>؄rB5[*T5z>qπr{̘:sbXkF9HH$, BgNA wU.s{CLJ /'o?ŮkL#Z ^ceCZg8GhF//s`83?5 v>ؑPߏO|hULqm9L9`h$(e<$W*3 ,IpꞔOiŵw5&|31UKSl梔0 Gb2O)ɽZ |ub$A^S /^6^4/i %=x H)u|+nbniQ%BwFv  @Iy9)&YaG!jd$-ølV>'balʷNUkph 4 C:Np&|SD;LYDw߀HJ7}N0'9'O^D &'Lpf/ͷ;y| [FB`͜[";[**zx遷^\Ubʌ($>ú[ob0 #934t|xFY=ATXIL~՛)ٜXvH"$s0g?}GGcUtt߇[DQ132lAʲ.29i/q36.:*h\H7-Xf)%!#g\tlכ!hQZI;3fǚ?^TW;nD{R4Og:uy5|ԑ3J NX[/JX+tӼ. :[ܤf_9ڭɫdoWÃE1KTHC(:t}ȝr],g&Ify 7KKg  R/6ldL0%왃&{R@ /d蓭#ҐCluNTD+OUcEOR%(GɃPI[0jZ˅JY#E4T<ý>O^J"u+_ U[Wz_6bDWW\J$0K L^9)8sSQdf q?N.Էl.׵=D瑫.¤Fb`囜q.濭aepdS'g* l='WeJfMi &L<#QQo ?W~5.JO4rqݶtsmGjTGx}54t۴xȕf}J2~h9xҰ"v^/utwd d9NKcoSCYgMTa864 F[ uh.~,PҘz(Y$<ϱy$P(fLc fwblkw&Z/Sf7~ypԩg[\J=ʈ${E9&hٲ+45XL.J# ͊E#Oh;ճzv`H\7`P@wȵҖy+A5)ū|NӟEk' C6DT2d CY;=_岀(K\,-eyŷr ;s7rrf]@M􄩍/3]x |1sť4K?'祮38Bm:#|ʛfPdUZf.,љb?3{|Y8c^@`آfz#@3McH)-o9ݤBz&CGs< ZZye=-n1Oj5)htTN6yb,̿ir7 /1åM4M}=#DGv>8"҈UH"b0.|ѻ:AbޭI} 5usG}&hFqZs;M칻YFemyRyzy;>]ge~'BNd2sS^E/*r!q\"fBR.T#JhJ&Tԕ} !'wo>_An~ۈuPy|VF@FOf*YŹ] M 9srՍ lۢdl( TmQ}n?bkN=`å 6N}`n9pm; S 8Iu_\$\YV$au IM% VH]cn1U:VYھ?#l1"wlE'|hP_L5 11ɠvM # .$zGyK!މPĕirZi:H(<x|m٢P\ FkoYZ}JCo%]W-,HFu"4]*Dy# 0cXȢ^Qίތ E:{8镖tw\Dp<&u#ɍy$;^ƚ[0Eb ˡp2]z ucuvZ $vVhf3`<ևb0Fӝ=EgH(=`W=tK'7%j8<}ٵLKtfFcD-x.yrJi@Rj*5SlX CX/e; \: vcۡОW7[SPƾw YbB+e,>O_9ḕþNjvdCOJo`714NZh ]vy;xX"!:lLY,]]z Vf+ЃNb0L*xѡH=Lf q|Q7Qԛ&Y aU>|B+H pـI AqQ.oW FQF6^yN J5h7V^0tWý!Ttd[0*T}z JYB-5fR1m9/B-OOvU2/B}k+]8IucQ re>z 6Yn3o)#! JNԄU0wo@F(zlv9]0_R6ʱűU#rDWWZ_y@32 +f Rg&M:y} Bե)@hVbKSQV z^kXrGE}ZfV<ظzRm9 V/lRSúc<F}7"F`U'`8(+Zt٠?_ mg8_T/v~ڂ~3٧~d#w$:vHݐ AjaطK)FAQ|h_eݣwSDkM4ifddZ:p^vi3.d1$?^ {%''`TvOV/;7 B pVP z* 6s& ? 7#S+ Ci orPjǎg rb?Zm~`["nVQDڒ^N%^Z^Gɏ{PNY+xz$)3%;r*"=:@DTAn&,_C_Xɗ|\pHbzw3jJt IoC2m䰈+}WZ,9'T+~OW*CSh4ީ$#4僲VEn`]շ3a 1C~})/p RB8k()E\Be]S$)HY"dv7vuBC&8tt̅\a'0ZUPl c5&>JvLcPL'Ϸ~K'I᧝i?m$a #60Շd1`W)/_Oc l^ָbpCmNZ!6e_s3`r#i[òsvJD6D^TA6hIr`(wCpݶ+8i~F~.vIlh ';AU')xư`v'nK]QNQ}j_\ߚң,}z3CWle}&2DB}Y CC^~"OXxmSըPo) tEBr ۳&]+Vp~uWÌl/lNOVga(6b_z9'0q㸲b"1/y4-e&qx6 LBsiWi/QK'+Z f/Ja%uƑ P?;Fcr2E %2/x]/"UR8*hixz zoI88T29/K(WxICk?CHJ/5`"eѿ^X]r̒~r%5 | G) (8P}.X l4͙eys"8m6v=a8X ,pL95fkD1نOLc,M0D\"]U¯vm;m^avz)C >P *Ԗ[В*műB'Pث *+׋NʉfЗE< ’ERO@ó`j …CbX4TdU9Ө{ q0a!̅`]3DZF_ `h>FT ?V`Kkğ^S:ddz7kb7;@263 mN|r Rk6 sc;\[ۖKWN ́?o@aֳ^츮%3סޯ/Ɔi?8+{~SU=ba4NP3Xp4kaVIkW ȔNp` c6YHuz 4.UtHJ!c71ܺke%&٠S K%z9,KXbY]bwa48K\8 ~+_R8llb sh% {0` Ic@GXӶXUVgcU"?O8(4)1 q@CmgZ6n$"pmgir*X)%#B_!#k6(ʼmOrl-Q؞lbe 7x?ƺjFǾoQnlV9ejZ|㏽1bjBMHQt!W.y| sDO#\[sM*&b ʼD'\C? 0n5k Fm`"MFP7@ΈyrWqnN[.3plTBSj>^fI^y5b..h:+ޏ>>N՛u'u4Ti#kQXc)RD%(0GY@3<] 48Wֺ\B?nJn6Jjdjz/\7V"µj(f~ $0KGAN|OģtMvC} '%[ )19wP-Nݚ+S~V(tY8F 6bL㾃|wJQ"(c"=8. .2ÔBvx*eQ4P(KoDr`5P7'+_[EtIIw-K!pr7w' Sfap/2qBRO27'cAQ_fX>f :E׿Ѣ9 G -D_ï#҃bĉчI^aqҋ.ڄG+0kvwB†J$gk+.6'I}Ҷimb5(wF"]ZoW,DENMt8A.`NV<*=@g#xC?H) 4uwwofȑe@8#o(oS8l϶A>cS4 If¢9ȲҜVIL#Q+Z LNqN [kzG]%ٲB/q 4mP2ޜ6V*Iq2ڤ[I)DIeb!BfG~f|ŦKr2X\nܽ+,lF!#Yn?Z09̱lG 0Nd-4Z?n #zb|"Mߡ?KF镎T]lz.m9G{B- Eγ]ܑ߂!oh4 [5ލם;O}8",tu~s$! ᐆ"'Yar8A+!3GnyTN-GlB%@LC\c AFoMiP$<|K$ aBC ,aRFN/+S% nfL%ceTՕC EU M~-xZs- m&:H!֏& $Y\ɼ]~?$L̋v^+U?*Fp &> LP:ؑ>y]l([7hS{{t@Ax/dk[іݼӞ䥖jdNJj)&ο"‰סDI J.({=($w~L(: PAh~V1\sEc$_v 3>S@1#DRb瑘7~hƘLjɳ QkOW [Tq"AMZ3pT ÅiB>jad~w4R"Kk9đy& aoBuvppejIڳ.\/VZ#usU.`TB4'{\>UZu*B"D? V|.9 )wSE ߍqUvqJxD)F䎲'ϊ L- n^,ljk˪!3q l_a2<0H]M7dVJv]i+Rդ 6.խܻyV=uO7M9Ф;"KKsxyL&]H$ĴQ7M2׮!%OtdcXM,4nCO D@&CevՋGtWBU=1H[w[4O>dC:Yo zt)ΗNpy65)qι 1T w 7␥yҕ/FlK3&¦;~-)&)_v >{#MtfOi㳽tFq,9IQ ~Ⳝtm["\-,sMƔEJsO$BN<14HE*~)Ywrl!4_ 2ķjr { ]㡀i "U+yTȸR<fl$hI3FW~m)i̅U>x fw h7H(2^bL z XVBcˤ o]EyJ ˳/_n_[7Qq׺G؀00!~ lzAs5N9KMrʄù @73{jĽ_r\8 o?-bINׯ+30OOo`] lgH"\0)G~ ݊ǎiXFlٺ !%փ]v5 M5ʏ$?[__TT{SI>IcA `vӥ {>[MUuD}~Rn7ޢ9UQw"kvS7&c~m.$|1ȫF }_[x$`󒍡g gKLNѶLG"LIK C=Jℿ?ûhWzR=&BX|WbE8K4BA I}]QdJ/ ?V]BJ1?螏 RYAo9:s-[}&M+0AS"vƣ󊧄iwM4 N:qџH0T:l_x=/nv68@JQ-27I0s?Ska椼Ƴx#֋6"B?{*8];jq14FK?0Wphc dE;TV*c T~$+^e2PČVYj"@cJ<.vBVwczCKqV%N(=D6>KM"h ?عȏs$7@QÕJV+梍S0x)RWG`{^m65G>44Q:~ѼC+'SgM`^ vaS,iRZHAŽGϋo{-wˡ4n1sr2FbVx64i*=1HꥃL  6UQ,(l6Dv;)vVҿ`2 H 2!R5s/@z7Ojcv3yQ1\x AƎwrgtdk)n.O f%֟BChǃZݭ0FN"d+ܭF Kg2%nMdTo6 qGq=ܥNl԰DO15#ɑ <}FcC*".7cwx tkZKr/F4mĦvu52ʓ0#?/ԅՀu pKdi#W$tצYlЯP:#G5W,.bk0bIӀ܅1EmtY4JKar {wzs?Q]15YJ]rZo*OQ#+՗N2|5_[<~r XͲRhʿsI)g N{n? 24{FZ[^b6$NzrTf]%rp9.mj/W[7әI:.KlD͓Pyw'P_yh1t)Beٍ%NAfƃzm/@G\l^ R2Ψ=ӊ7Qׄbץ {GO #)L7ѦدkD'<[ =V~P3Vr 㳆]$R>c$ZM$M/p`(I-lybaVeqep#3DQQ7c\Ia*0 8jT\=p:m`pAB??"9 lJn6ܝSy2tfov:r4 ̞ -܊qlB+9hx!;W`=1h,t")IDK;#ejzo^PJvZ=ŽwDQ}1P.3&1R .?w+!m=A:I3o ym)+" pt';{*)Nu۲`xhr=Je G2)^G|SlWJPJj҅Y*3X ZCmv+K e>Vl+RÃsMHuVWHܡ 9t9c꽰^. . 旻Obhs"7/"o8,@\UT"|@:`4b^)Y;W];:P?;Z״cti !Ӟvi/vQ& /ev{1_K܊ib^FUUx\1ۘ7)hEL ƽʚ}O+ySIw'[8H9o~&n Tgn j(7c2 n7y]aË}3 |е*m{Fp&oji{=L&F&`*Q:Q!rׂ./0V|kpu .{N&ܲh>cN8M%-&AyM ІSi͍wU7naTq_-߷*uU^8.,)SlC D[=knEWG\̌KAD s̩B̕ySiK >^"Tݢpڧxq }Y(ԾJnMh^6 1|.4X'0p)S Frμ$2~9+cLM"`e3h1:{aDfMG< Ʀǘc8Ä9umoMÇ]`@4> 1FvM2n?dVl7d3%>Q&[k2kGEΞcǪ!.U}<8 5 ~f0zOt!K8Hyyz5f[.>BA0o3gԘW*>=?GAt^/V4Խr#:f9FOr tsͥrK8; ^?=/(okNȠnjޣKf򇣷@XǨI P ʾe!4A֯d'y^dzs۶mں n;ٳE "QEfON(X0@ϋHUtHsk).t]>Cq6{ L TllAX6; J]Z|q Vve{7]zko5<{Rvʮ 0$m|?㮍~ &;Ezͪs IEJ>qt| G? Ex">oԢ1SF*s4dP·у<- @ "AueN~3GEq_o~ZtQL׷X0u͎L:!Ztv>-#Hׂ|IU%NF6벱.uT=Dx j|3ݣ MMk{ڧs^lAm`H\8|L4z<6_} 'Ls?_LT*|"q a< WPLCX=`vԢV1+8%`M%7]"n$az`V>{)K'D8IF\}-ZS*;8 \cDGRĦlfҪ\pxSDFrfI9))[bS$֩ŒN.n= >^Q1 {|$g6)ra04!*f15Ɔ˻q +➌b?qڒNY9,;f0S'5t%B<:*ؐ+E* m}<|.~#LAn ܂b^lXwݑxPdXO_BՍkPJmn{z FohU k6lVd?bn7;k^!G-䔄?UGC[21{9`˸|49` x收<;8:ۡKLqfm|\Y=ۯ&h#ʦ&8fƍ05`⪊6fΡ#$DS(1hܿe*:v &"1QNs B RζmO"J)y>aIi)װ8Pcղ`N)ΕzD< oX^TUo P)"(l *SzE(5ڀësA_HQ0j2;m?\1S.c Q,왻bi I]3[+w v7Q(BAl`|̋Xvqֆyycf\@|AB9|rW\K֌CՠrLS!!qB#.Ek[i'>BWAئZCGLjvZI2g`aӖK,Nh&{NGnD8{^j8 ϚB/ m\_tSg~}1)Ou݄滶3&Ľrk"p;13DuSx}kÒ@䄾rdE }x X.*,L4 E8J&O=}Vs|0V| u%K'ȊjXBF6Z)1b^.ٱ8pCja{2?pe<1ą?Ί45R06O!3) ?<~OmO;dcN hoa33Xfu 9CE\6N羜t)IRdU[)T@_QOp⠲ݭIR'eXŘhB5~5… ݰ \lkdت!WsE,b5s99O`R$N5AJ82PC HTbVOe&ʡb` # .5Oy.T ƫn`B8;0<|S¶\}!l{v cB`?@?6u(*E<àYۜ\XL-Hw&2kmaVƭu+JSiИU7 X\VJOՊ)dлXʁh0/8U}Qxn~Dy_a>|F0FكP QE1)Ӯn6KAJȢD/\7syCN ^lҨg'ܩ?i,N,BS:OʬYED\(ePs &Mǚ{(^*U"iA}{\DG%nO)-MFɵm|Xpd.~w٪ld58@e9_o&Pe*;d(L7$;Ig$On Akdƛ'V]]ˁoۦ}NY'βׯDnSkUQ{r#fmⴚp')n\߂FjBL9@?5vw$n͡3@4ӱ|nXtEžal8UȽV+-fNd_b=5-bOHFΑ ss_6܎LKm'.P7x!E2(=$U`51KjqaC`|sϷ#%QC'D`4ny`G=zubρfH`-AK@/kjU_áI,QZV4/S@?Jaiw +c`a;@QqWT|.ǟ׭kgdWEXE[ Tԃ}Z]ۓQ L&|Rɨ]Y~" m9m'0\Ddn"_‡uU9I=&zS ̛C>B-&Տ3=fg>k52:aIZx/BΥ+_BJ:L#> >IІ !ƄDW3;\|'(' V|ڳ9MNeo%1]He)Ī7>bK+YtԈ;/ zO_MڵFx)6K 0}tZ>HuF*g$s/" SǛv3Bm*I@U-'Bt! vۋ*`%5A@'([~P;ְ_hUFd<,3G"5g#Q)]dV"_f]|-l9.6)9蹠-l1{$nڿEyF`)Ř [t4?o}h$y|WK( p"iW&j>r7}SDX5539fW`,,L(1 $n(H#;TLAtY`WJн. Ƅ,t(V-UcނSd-ҨN]o_x[ӑKr UZnga_m`j*MCGwA*~*׀Y=^[sFr,;6?tomiZawryc##pP?1ֆ|mg<- | ͇ G ;${ [Vt9KU|{GF ݅ w~,:|FFWGJ= R?b}ӖhC.2v[۝Fnޯ?. c"Ώ 1zG1jxW޸LS޷_ZCzAE)蟔rk9p=aIJy΅"zkP9o!Woh +ӝPF*$-} ^@gRU(M\dd[woe 7Z0%4WRgc"JØrJH}{>K; D⹿Ι+WiDX&o#&Q،4Rcc emd \ؒ߄=6:9Ja1 :G!i488ێ~9_~:E|X.pPx;T3Y1bVf7E`ae)Ń7\F=5;gq^i.@(>wePz<]T3r0 k!&%)(uReG+s,sK2=:q'DݭDJ9Ҽ$ioO&kOJEbͅxR7 =IBA*CmTHag? [rȋOwy4;rΖ*B!UtCf_$*/vH~Ě_VSYM=M涏l̸rMU"qf4h| %5%Q\ֳ@򮫠'Pi95ҦEO+ȰtfWwW-Az\PA792/f[{QT n0UD*'ڏv$/?>c1M|A@T]pb(\ˊ&u}‡m`e*s$o:NfqTE_76ڏk48܍kEn"'ՇxC䢁WC_飐6f %b/ҁ{n8iz|"vz:8YΑ(Gg5Ē5Ww`eiD貏piF*e>~^ez|Q$Rp ?ݻ\Pb9U?n=hg`8%6Z J:!`m ,f\|uf62~ VgD؞gtߚnrzL?VȊc R 8_xN2Je:7[WQ`vkE lY=@z|?b\%2!8ZCS5 Y:v[@D,3_aT7\8:2Lu f_l .cHM訣>v(:C} 2T(޹TŒi"S;O nTb5֖g9i:Ŕ4'[؟anr$p5hhW)'5|qC\b]x(ie:b}#Or^p`P3ΝO7yo `^VЭNbazTa&nd Z;K$N;W,r8zYwˇĦV=(yH=v #FaIxZdk{pr6&a QQlQ WsO=Jw'8}%,T#\c6F`OH\ɛKH*l#H"q~+7ŎcJmg;b/KKmhz [lZ9dtMtS6g;5X:XңGJpgdRF_iVs6H$wT7@nv̆D(WmG))o$PĵоZ[ @{ 䗾dO{fI ^fGk3Å^s#x>땇q7K1~z +Ե~@PnGm0Yߞ)7HT ,:ߣP!Ztq/`-_݋j w?iJ^y7i>zT/*RЗcU-hLm!*&)xl$~XX=b< UioyVyª5x @53YcgѺN.(eu@؄OМD5Cmznļ+YE.X^ytuaGe%;չ-)VN>,v,2kNlp5gEeSǓA GOzx8*0EV]7R?JR=#ٽ}wSF>}9˚e1hS2 i})Fӓjj{( du|SA8)\b:4Z⤮XTmȲ7HjȼsApsa"_`$E ԟ{U`IB\5z' c-JT(K;2(GTtGJ"F_VH|8rphw3Nv@0Nؔ۫XZ#8)Sr=:hG'e9Y%7Z'0%AU^(%y592 Zn{$#eN>扚Ă'3!֣ڂWMEdr) ZrВ2:{@ YҸĶʔszF-i3*j~tXu[_鬜M3SD)⇬Z~&$&H?<Ru[tqo TnVAgl/B#=| Zb|ub<8hEJm ٨.s,IR,ytqс~JQ~oۜZOMmvwi]CV<#_mt=GPV=P,od8%DwTA)YHFw&F[_^y̨yN(R°ި2AuD̳u`:98oYgZbK.~P˱8, %8YI:әF`\w"F0“ M NaaҰN)(E|Yo a @χ[\0VVEk*\Kſ9;)M ͭ^ibTQ{'_ &8bFjdihCcJ~ljW_,~j2s+I9*b{7q41i*Tgʉİٴ^b$.c ;6&1{U/ . +Z'2Nȝ.oFzpxXJyzDG*@ޜ &/=(Yp4rV `2@{\+)ݡ9StTP}k75AWzPCsxsLWGb4kckeKRd,JTE1U٬ B+@~>OCas5YHM#D wصhgŚ;exAZ䓫ĂuF^V2q}[fq[*5?]1v 1X0z?f*auZs nd1+xR=/̚FPj t#N1zE#93{':ZôޙQwsnA]eW cYGFeк2~=k&{h +zEmd$APіNEIHqsPS ıHP .DHv#/rBHJ/DeP|%M +bLwNlU!Itp|'U2o&GWUxʖZbˍAܴ͗/эj ij -uXA^$ۘVHب`*?cZQےm)Dc_΢ kf`b1$) xq|>aj.MQH#iPԔ ]}E Y6Rne_2oR9G:O^c6U|a,oSBd-ճ=ܛiƔ7V wFHJfNuC?)xo ]q=ɭO\PTHQj4 7'*_j&jC 4UՒ  $ W!]jAPd r; ϣZ%iVɳ'KhN/coZO6[C4: MV?JjF@A2Fds8yBm9Y>7vbgbʌC"0\nX <`1l9ĥJcbOØB _53O,(ѕ=b!R 7.baqƃ 00D}?qvfeIS=2K}FaQV_&$JGL/olmCe׬ li?^H YS<00#IInm5`Ԅ"; wtnA^u_T1N> [R$pY(T.UѡS:U##dĜ-%.p[iL %:DADO$P,zΙC%8&gE(twj\fw cl5]"v~H1?k~歱}Ml71Q%v #D4Gl){Oam99DY6$C! \hS 2%2 lKV`Hid{g=;UPt務m*%_&R@I3pM|\a}Co.6- nn\TZgG"@`]7rj_S >?Ǹ9HMwҐlfӝ-`Ӌ>HR|t16Dg Gy\yoD3A\E!E5wm1$4n(tAYh\ e L[eƕF*2]kwXHr. ]uF?<~CH?Ec3VB$ dgPd_Pmyޖ8L#K2ɧDzb-훬')]g FPJ  C#an%f|¿hcT1yɋaz nRGY-Qt u@S;zEtϗL^#:쓳I処Jr2!10Cz+eR=3Mx Evr 7qZTp )c4CSk^P_'-u!vTCsEydŎ`az;! H c̤ǒ.͊H%LEJE/Q% s[pE`DJeP!vjVH:~SaK}̂ٞ~N P-XHd8sYGGӓ^\hCKthy1{wl&q;~5[2k 3XhsumKGDc_Mⲡ: [`comMpPMHoZbFT#i.Ap]JѼߪD D hEcj)Ѕ.DiP @l?f]aSKƪQ;Zc56܉ۺb8Pi3wGVru3Qb#w )+ُԻaфi&9gUxpwVeڞ)⤨tl[kx~h!J٪πcÞhD <aO>1.==JQV8MT3FZ3X]$ӧtWӉM`w~bbYX G\AL8 /?k eHqgdH AZx^==SO1{)A6u{P2}N1|eQ"Z^?M^ϾP67A472)]Id/: $Hkia5W!79r!֓Kmse$xQ<ɏ&X5 4vG*ѩUp u“PWk%U  D'Lwfnyˬ 4GM$t}LM|Sw'L݈;[R !jJJ|IM_+o5 7 /& ;'YP3m[Gh|ڹRȬW ɃQ A1#TqKO$ﳥ-1[|r$O!_v-0mx(ֈ8yLVo耨z<xj rt ǫ;*þb1ff1_QUA_Ro{LrŰb%(4>B\5,;sU thim`nɶ+c hq'=1V`v*oG/9T+/4T +m/Q_qM%r?bu[6'C>ΎӕtBK8P<};8̓Td"GCwةfX16W kMw[vͮ-L,ô=CF=L묰H*`' o4z͇0RQ?% ^X2Q;’Y#`+ ]Ræuھ"CϠNiylsh= 웠' _K!oHJī4"۾(+i!#|4ff32AwPpwkϕoF$ٹ6=3$uƜiV,,!pc5O|IQj]x-lBӠNx0JNd("тn>>--rߚ}ȡ qX^y&5/|"5ޑdoE9-Փ䊺QǙ? sm"NekSj#^utߡ*nNQylT=K ChtZmp^kDږPb: oXUYC;`S67z3`7 stz^J6u#l¾퐅l덁C$}lvY&;x[i[ 0jVqU'RdUGm/PQITf];:2^^7'e A 1E=`,d/|<3FJp- kqHHG]&,qJE6Z;Д"PKYK-Z&Tdk2e^|iB5a0]nr004Ӻo=y91,L5kw]aMG:%^6Z{9L%(HUB#Q rIy^?xGig<}: Ƚ0*30w:r=_f?U[TXKr5rK80yHdzkR5ChA2-f*e뮴xn65cH_]wPslBWY靜/rMg0zRS#=ωo3̞K`G329q> 8 HI)0g_G?@ HbO}EWSY[MC$>G" OS[*>$o/0y5Zl,p,B؜ub !N#̣`n;p%~\cX&P \ߥ[/ MFEA9JDiͼo*N<;ԇзv4'qԖ͌@PZͧJ3LDKrZ!6NsÔa$o{xt|# >Cz5Z\#8G &%t\rJooyкnp9!a'ƈP 12hWk`r5|䳤ֶRhrŪ)TsA]vXտ[ݓ:T[ aB1YcfRPbNQ rGB?D3Td #Z *۳/U &sS's-aC^>3=:2xD7wg3lymwEߜTYCͥOpEj6_o"T~,lh/H(K`ANc2ټ~>E_R4k] DtJ*+dK(DN2M^vN^P1&m/o G(qK8;[ߛ=97e:JyM Ĥ=_ao}aد5c@(P?'x(,W}*1Oľ{!8qB+y?Mӊ@.Btt4SI@e$z3~pMf_Qp$heU*RK:NI>kCr+R+o~Y'{eIAÉY r?W?d1bE G|aT9%g; o5#<ZIQcA)S+},w -宓(Rm_L@Xuj߆rb}q&ehPgPj¸r uZ͔ʩ+\#k*nݲ?*5틛\[ x@U3 juK-:'t/3ص8􀈶1B`yhO&'-("/1~W)7w< o~wcK2xw$q5iG}8 &&^ :,@֝dYZ8 {vPR2DzUyM(J XD%^xMVP(`E֐r_\{_ćWC1A9vA:S\' ڳu$% !%[nNso"*-h>a4gQz!tFcWZnXTU5_~`*k$y,:4 UQ<̝C9[T0huEih6nCazL&E@}|4X\sZ+PF9+ԽXHln_)N ~HN/- 9se>S -wvP4yv1~:satO(ޱ ;u])pPm\ɨ>pڛ? oUZꔹoS/b]'VLl7U @ޱӚ$^lS;P#ٞ8]@R.5!wNՒYJ$RSc kLbQ̑DSt(Xpp!To\vͱc.`4ks{aLv#J}F<#ٽ?6Ƒ)%br,O۳ʀwqy }g«5߿!\ `T}~IAd}xn_[]EGI/; E;=3oFRkF%G\* vMQ4(IJ;1",y-_ZR:F-/GYTfA6j)+{gZ#V-ogTMp>G|*]챈 X{ٌo,EYj+5,;Y$T2olf{}J\ T`2ETt>xȤk 'cb#g+RbNQP~`O.S(CUY\:ZGλR/G'ԁ10/d0fkdޥm\mZbӸ[iHT V冠JtclP@ `p%wH!1pƍ2Ca݇3e0m(@j憎C7[֯UoHXDbp~NKeXHZ)L4H͇JMIz/޽(֪7}20\ϼ-/o(+^k WKxT[kW\YWJ-KhE({P/\* Ґ1#QFƨׂb+#;TQXr1st-'p&J;J D;QiEd.tV+S`bJʅ.hP.ߟpr-mf7o[MC_6n5Oid2Fsm#q׀TP[BxpZm^+Ţ8‘F) kJ)9x:Vݻ w"~..Ԗ;*m#%"0y?0\TI%cɟ׈%6[&U7M/ 7Hҝ}1qxݱ%X_9C8U3p8/º .=TO.^ч='@9 6 *TIk\qj+yBKQlҝQ.l}Ȗdx)_))HfF aߐ*uMR6En r|u(3Osz~zֺ#]'Hp>wIę"[AsCdt;3E3ۭxA_l,Ub$-Iٵ_O)Ș')+ɏS$9+G侞rXi͑m1u_5bKˌV542NSvwمYwgj;i^kK"l4@uJٟ"$C 9Bϝ6价=DzEY<9JW] _)T&]&Uߪ[Tg`n Q‹Iy$eQc<_%"d=wER5پm[*ҿVn"=d:bJ\8|Yg9&áH-k~_˘f- W֫2dIW~#1cR{ ~R/$~,C"wsIKCa$G zp ZCC|y0ZIV a';9aQ&1- 1duȔl}̉tE1d9!{*?T͌zٍi97e1 ;L{BzјˆOBz-Q(V!Jt nNXQv?TZeVԧVޛIXp0iSDhhdzJȄ+؃ζ]P<2S&q~ky8=߄_np\{5mTԈ,Hs<)xC8!nMnK0t>RCU `,Y7 x&SU͙!uv>JEDd8~YASЃ*VxXNҡn_jDdVaې(.ZYj(iՀ 3Td_,#LΩ^ )`痵j^a?Qά8HC Hf/+ס}OؗqsyXMQViC(LؔH+ĠC`C܋9:A o)w9dW\;63OQ;[~B/a@n/"A '4oh;q%lS#bh!cTϝ7ݶGR9R:pPk#EmUY*-J)Jx95{*OQl5z5N% WT?1+r1Z @v)YfNExIH5qId[( Wg}KҦFw ә= 궪y&G!ȋ<1B);U{zӒŖ৘] uwz~+o 2 kyx[yxܓG]X|>XNj҂trk Ώ`%jk1T3b!!ݷc$.`5JMGypf:V4Z7i"' k N%+}V /3xf~uZQޛsRGJU^:0PLx߃EWu2\9њ&vPCҠ*e-bB*zߡŔjĜD֪%C_n" "w[ѣWT9cok*W9+Z]~_&'DFOl0>-PnVދ@z{s E ~ AjB3CH+8JK!w=RM竐ZA.o[[4($k$wJVߜ%Cڼ>/VNksiiq%.*ޡiTy{,NTm%QXcx+%eir<Ý㲂 g}]^w\VXy?*I[9x_,4ծowcxScq$vKXXsf3{+*QMf\R :Bd xvE6F5]]"~MYr: :}g!YX Aáˎ`.gN.L]Ԅe'7d䖒rGFA%Nt`h˓^nSkYs 2lc]w+r~0཰Z4s*QA"8;Z_d1P$pDWq'."{F}1-ΊbWs!.dz>G^[l*kav\쮀𰤳Q88&WY4BrU'znV/mG( 17 ]h4}BhO)n%A'=PLzNy6t[n a5v˷@J3Pa8~>N`2ߓL%U%kG*Q=SʭszQknAVk; axЬ+ݾ DpRL}G"me–1| $ -+˺'B=izNd2!o{1O=IG 6&·<]d*i^_Д#漽w3)3)c\O Ҧe]~_@u߸n&#c];ڇWEk'Z 8A,#4g-'4++Z#33gw[DG