python-redis-2.10.3-6.2>t  DH`pY4/=„ $pCf"(7M14QD3c㫭Y {:7ouƆ2;|g0}49i,W}{d;\GS%y!Zk6wzM}oU!*޲3"ru"\y?H4gX:Y Jh|4[}_.ϯwÝdCLnd&aYJq3L&IhXv.rB:0831218b1f6aaf1f0ee01f5ca63b80f5fd2d7be8Y4/=„\%YR(zHlofހ=`B67Lտ NglLV3>Y0^V)Xi7sӨlb'-̉ϺH3'zw,a nxx WRs!>S\AT/pOTeiv8^]U Ti^Ui81 DaܶAIG'e|¥$]@DQphd˦W.xu/>y.zwi |>:O?Od  Bx|  l      t(8$ 9L : FJ#GJ8HJIJXKYK\K]Kh^LnbLcMdMeMfMlMuNvN\wNxO<yOzOCpython-redis2.10.36.2Python client for Redis key-value storeThe Python interface to the Redis key-value store.Y4lamb15n1openSUSE Leap 42.3openSUSEMIThttp://bugs.opensuse.orgDevelopment/Languages/Pythonhttp://github.com/andymccurdy/redis-pylinuxnoarcht D~  )C)-- a2gA큤A큤Y4 Y4 S*Y4 SqY4 SSY4 SY4 SqY4 S38Y4 SqY4 SqY4 Y4SrRSV08467ad62204f3562a6c7fb49291ce9e44c2e4ed90311e9208ccbab9532c0b3d4a3f672d61402fe2a6740ffd18f30da4dcf72290eb01434efb9099ecfc21263a0533512394aeb0e5b6e1d60eb8f47b0d4c0d8b91afc7898ab664fe79732193f3005acf2c88a63a04df9281da090404d8a81e76962e99aecadbade6dc0e3bc01a228aef072298156dc1029a15698baaa1653abc17e9cd2b9593c1a2de39effc04f7bfd3c1cb67866bcbe6708405c89aee3497e5744606dbc175261c1f5cbe746cd3cafe1d36b239d1d7cdcd6ed1ff632b67b005dcea6f82a8fa2c620dbfc51783142451bbc989271def591a554cc6a987b35e6f403a5f1a3101f2bd8408a77eeb19b029aae7cf0e9a304b606f7e78e53bf40fc67f8d683f50eaa9b23ed64d1d5c51d9ad56299ab60ba7be65a621004f2713f148b5451b8203b3f87716327648c2rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-redis-2.10.3-6.2.src.rpmpython-redis@   python(abi)python-pyrpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsLzma)2.73.0.4-14.0-14.4.6-14.11.2T@R@R@Q@PDO@O1@N|tM3@K@toddrme2178@gmail.comp.drouand@gmail.comspeilicke@suse.comberendt@b1-systems.deos-dev@jacraig.comos-dev@jacraig.comalexandre@exatati.com.brsaschpe@suse.desaschpe@suse.deprusnak@suse.cz- Update to version 2.10.3 * Fixed a bug with the bytearray support introduced in 2.10.2. Thanks Josh Owen. - Update to version 2.10.2 * Added support for Hiredis's new bytearray support. Thanks https://github.com/tzickel * POSSIBLE BACKWARDS INCOMPATBLE CHANGE: Fixed a possible race condition when multiple threads share the same Lock instance with a timeout. Lock tokens are now stored in thread local storage by default. If you have code that acquires a lock in one thread and passes that lock instance to another thread to release it, you need to disable thread local storage. Refer to the doc strings on the Lock class about the thread_local argument information. * Fixed a regression in from_url where "charset" and "errors" weren't valid options. "encoding" and "encoding_errors" are still accepted and preferred. * The "charset" and "errors" options have been deprecated. Passing either to StrictRedis.__init__ or from_url will still work but will also emit a DeprecationWarning. Instead use the "encoding" and "encoding_errors" options. * Fixed a compatability bug with Python 3 when the server closes a connection. * Added BITPOS command. Thanks https://github.com/jettify. * Fixed a bug when attempting to send large values to Redis in a Pipeline. - Update to version 2.10.1 * Fixed a bug where Sentinel connections to a server that's no longer a master and receives a READONLY error will disconnect and reconnect to the master. - Update to version 2.10.0 * Discontinuted support for Python 2.5. Upgrade. You'll be happier. * The HiRedis parser will now properly raise ConnectionErrors. * Completely refactored PubSub support. Fixes all known PubSub bugs and adds a bunch of new features. Docs can be found in the README under the new "Publish / Subscribe" section. * Added the new HyperLogLog commanads (PFADD, PFCOUNT, PFMERGE). Thanks Pepijn de Vos and Vincent Ohprecio. * Updated TTL and PTTL commands with Redis 2.8+ semantics. Thanks Markus Kaiserswerth. * *SCAN commands now return a long (int on Python3) cursor value rather than the string representation. This might be slightly backwards incompatible in code using *SCAN commands loops such as "while cursor != '0':". * Added extra *SCAN commands that return iterators instead of the normal [cursor, data] type. Use scan_iter, hscan_iter, sscan_iter, and zscan_iter for iterators. Thanks Mathieu Longtin. * Added support for SLOWLOG commands. Thanks Rick van Hattem. * Added lexicographical commands ZRANGEBYLEX, ZREMRANGEBYLEX, and ZLEXCOUNT for sorted sets. * Connection objects now support an optional argument, socket_read_size, indicating how much data to read during each socket.recv() call. After benchmarking, increased the default size to 64k, which dramatically improves performance when fetching large values, such as many results in a pipeline or a large (>1MB) string value. * Improved the pack_command and send_packed_command functions to increase performance when sending large (>1MB) values. * Sentinel Connections to master servers now detect when a READONLY error is encountered and disconnect themselves and all other active connections to the same master so that the new master can be discovered. * Fixed Sentinel state parsing on Python 3. * Added support for SENTINEL MONITOR, SENTINEL REMOVE, and SENTINEL SET commands. Thanks Greg Murphy. * INFO ouput that doesn't follow the "key:value" format will now be appended to a key named "__raw__" in the INFO dictionary. Thanks Pedro Larroy. * The "vagrant" directory contains a complete vagrant environment for redis-py developers. The environment runs a Redis master, a Redis slave, and 3 Sentinels. Future iterations of the test sutie will incorporate more integration style tests, ensuring things like failover happen correctly. * It's now possible to create connection pool instances from a URL. StrictRedis.from_url() now uses this feature to create a connection pool instance and use that when creating a new client instance. Thanks https://github.com/chillipino * When creating client instances or connection pool instances from an URL, it's now possible to pass additional options to the connection pool with querystring arguments. * Fixed a bug where some encodings (like utf-16) were unusable on Python 3 as command names and literals would get encoded. * Added an SSLConnection class that allows for secure connections through stunnel or other means. Construct and SSL connection with the sll=True option on client classes, using the rediss:// scheme from an URL, or by passing the SSLConnection class to a connection pool's connection_class argument. Thanks https://github.com/oranagra. * Added a socket_connect_timeout option to control how long to wait while establishing a TCP connection before timing out. This lets the client fail fast when attempting to connect to a downed server while keeping a more lenient timeout for all other socket operations. * Added TCP Keep-alive support by passing use the socket_keepalive=True option. Finer grain control can be achieved using the socket_keepalive_options option which expects a dictionary with any of the keys (socket.TCP_KEEPIDLE, socket.TCP_KEEPCNT, socket.TCP_KEEPINTVL) and integers for values. Thanks Yossi Gottlieb. * Added a `retry_on_timeout` option that controls how socket.timeout errors are handled. By default it is set to False and will cause the client to raise a TimeoutError anytime a socket.timeout is encountered. If `retry_on_timeout` is set to True, the client will retry a command that timed out once like other `socket.error`s. * Completely refactored the Lock system. There is now a LuaLock class that's used when the Redis server is capable of running Lua scripts along with a fallback class for Redis servers < 2.6. The new locks fix several subtle race consider that the old lock could face. In additional, a new method, "extend" is available on lock instances that all a lock owner to extend the amount of time they have the lock for. Thanks to Eli Finkelshteyn and https://github.com/chillipino for contributions. - Update to version 2.9.1 * IPv6 support. Thanks https://github.com/amashinchi - Update to version 2.9.0 * Performance improvement for packing commands when using the PythonParser. Thanks Guillaume Viot. * Executing an empty pipeline transaction no longer sends MULTI/EXEC to the server. Thanks EliFinkelshteyn. * Errors when authenticating (incorrect password) and selecting a database now close the socket. * Full Sentinel support thanks to Vitja Makarov. Thanks! * Better repr support for client and connection pool instances. Thanks Mark Roberts. * Error messages that the server sends to the client are now included in the client error message. Thanks Sangjin Lim. * Added the SCAN, SSCAN, HSCAN, and ZSCAN commands. Thanks Jingchao Hu. * ResponseErrors generated by pipeline execution provide addition context including the position of the command in the pipeline and the actual command text generated the error. * ConnectionPools now play nicer in threaded environments that fork. Thanks Christian Joergensen.- Update to version 2.8 + redis-py should play better with gevent when a gevent Timeout is raised. + Added SENTINEL command + Fixed a bug where pipelines could potentially correct a connection if the MULTI command generated a ResponseError. + Connections now call socket.shutdown() prior to socket.close() to ensure communication ends immediately per the note at http://docs.python.org/2/library/socket.html#socket.socket.close + Lock checks are now based on floats rather than ints.- Use upstream source URL- added requirement python-py - Update to 2.7.6: * Added CONFIG RESETSTAT command. Thanks Yossi Gottlieb. * Fixed a bug introduced in 2.7.3 that caused issues with script objects and pipelines. Thanks Carpentier Pierre-Francois. * Converted redis-py's test suite to use the awesome py.test library. * Fixed a bug introduced in 2.7.5 that prevented a ConnectionError from being raised when the Redis server is LOADING data. * Added a BusyLoadingError exception that's raised when the Redis server is starting up and not accepting commands yet. BusyLoadingError subclasses ConnectionError, which this state previously returned. Thanks Yossi Gottlieb. - Changes in 2.7.5: * DEL, HDEL and ZREM commands now return the numbers of keys deleted instead of just True/False. * from_url now supports URIs with a port number. Thanks Aaron Westendorf. - Changes in 2.7.4: * Added missing INCRBY method. Thanks Krzysztof Dorosz. * SET now accepts the EX, PX, NX and XX options from Redis 2.6.12. These options will generate errors if these options are used when connected to a Redis server < 2.6.12. Thanks George Yoshida. - Changes in 2.7.3: * Fixed a bug with BRPOPLPUSH and lists with empty strings. * All empty except: clauses have been replaced to only catch Exception subclasses. This prevents a KeyboardInterrupt from triggering exception handlers. Thanks Lucian Branescu Mihaila. * All exceptions that are the result of redis server errors now share a command Exception subclass, ServerError. Thanks Matt Robenolt. * Prevent DISCARD from being called if MULTI wasn't also called. Thanks Pete Aykroyd. * SREM now returns an integer indicating the number of items removed from the set. Thanks http://github.com/ronniekk. * Fixed a bug with BGSAVE and BGREWRITEAOF response callbacks with Python3. Thanks Nathan Wan. * Added CLIENT GETNAME and CLIENT SETNAME commands. Thanks http://github.com/bitterb. * It's now possible to use len() on a pipeline instance to determine the number of commands that will be executed. Thanks Jon Parise. * Fixed a bug in INFO's parse routine with floating point numbers. Thanks Ali Onur Uyar. * Fixed a bug with BITCOUNT to allow `start` and `end` to both be zero. Thanks Tim Bart. * The transaction() method now accepts a boolean keyword argument, value_from_callable. By default, or if False is passes, the transaction() method will return the value of the pipelines execution. Otherwise, it will return whatever func() returns. * Python3 compatibility fix ensuring we're not already bytes(). Thanks Salimane Adjao Moustapha. * Added PSETEX. Thanks YAMAMOTO Takashi. * Added a BlockingConnectionPool to limit the number of connections that can be created. Thanks James Arthur. * SORT now accepts a `groups` option that if specified, will return tuples of n-length, where n is the number of keys specified in the GET argument. This allows for convenient row-based iteration. Thanks Ionuț Arțăriși. - Changes in 2.7.2: * Parse errors are now *always* raised on multi/exec pipelines, regardless of the `raise_on_error` flag. See https://groups.google.com/forum/?hl=en&fromgroups=#!topic/redis-db/VUiEFT8U8U0 for more info. - Changes in 2.7.1: * Packaged tests with source code - Changes in 2.7.0: * Added BITOP and BITCOUNT commands. Thanks Mark Tozzi. * Added the TIME command. Thanks Jason Knight. * Added support for LUA scripting. Thanks to Angus Peart, Drew Smathers, Issac Kelly, Louis-Philippe Perron, Sean Bleier, Jeffrey Kaditz, and Dvir Volk for various patches and contributions to this feature. * Changed the default error handling in pipelines. By default, the first error in a pipeline will now be raised. A new parameter to the pipeline's execute, `raise_on_error`, can be set to False to keep the old behavior of embeedding the exception instances in the result. * Fixed a bug with pipelines where parse errors won't corrupt the socket. * Added the optional `number` argument to SRANDMEMBER for use with Redis 2.6+ servers. * Added PEXPIRE/PEXPIREAT/PTTL commands. Thanks Luper Rouch. * Added INCRBYFLOAT/HINCRBYFLOAT commands. Thanks Nikita Uvarov. * High precision floating point values won't lose their precision when being sent to the Redis server. Thanks Jason Oster and Oleg Pudeyev. * Added CLIENT LIST/CLIENT KILL commands- Update to 2.6.2: * `from_url` is now available as a classmethod on client classes. Thanks Jon Parise for the patch. * Fixed several encoding errors resulting from the Python 3.x support. - Changes in 2.6.1: * Python 3.x support! Big thanks to Alex Grönholm. * Fixed a bug in the PythonParser's read_response that could hide an error from the client (#251). - Changes in 2.6.0: * Changed (p)subscribe and (p)unsubscribe to no longer return messages indicating the channel was subscribed/unsubscribed to. These messages are available in the listen() loop instead. This is to prevent the following scenario: * Client A is subscribed to "foo" * Client B publishes message to "foo" * Client A subscribes to channel "bar" at the same time. Prior to this change, the subscribe() call would return the published messages on "foo" rather than the subscription confirmation to "bar". * Added support for GETRANGE, thanks Jean-Philippe Caruana * A new setting "decode_responses" specifies whether return values from Redis commands get decoded automatically using the client's charset value. Thanks to Frankie Dintino for the patch.- Update to 2.4.13: * redis.from_url() can take an URL representing a Redis connection string and return a client object. Thanks Kenneth Reitz for the patch. - Changes in 2.4.12: * ConnectionPool is now fork-safe. Thanks Josiah Carson for the patch.- Update to 2.4.11: * AuthenticationError will now be correctly raised if an invalid password is supplied. * If Hiredis is unavailable, the HiredisParser will raise a RedisError if selected manually. * Made the INFO command more tolerant of Redis changes formatting. Fix for #217. - Aditional changes from 2.4.10: * Buffer reads from socket in the PythonParser. Fix for a Windows-specific bug (#205). * Added the OBJECT and DEBUG OBJECT commands. * Added __del__ methods for classes that hold on to resources that need to be cleaned up. This should prevent resource leakage when these objects leave scope due to misuse or unhandled exceptions. Thanks David Wolever for the suggestion. * Added the ECHO command for completeness. * Fixed a bug where attempting to subscribe to a PubSub channel of a Redis server that's down would blow out the stack. Fixes #179 and #195. Thanks Ovidiu Predescu for the test case. * StrictRedis's TTL command now returns a -1 when querying a key with no expiration. The Redis class continues to return None. * ZADD and SADD now return integer values indicating the number of items added. Thanks Homer Strong. * Renamed the base client class to StrictRedis, replacing ZADD and LREM in favor of their official argument order. The Redis class is now a subclass of StrictRedis, implementing the legacy redis-py implementations of ZADD and LREM. Docs have been updated to suggesting the use of StrictRedis. * SETEX in StrictRedis is now compliant with official Redis SETEX command. the name, value, time implementation moved to "Redis" for backwards compatability.- Update to version 2.4.9: * Removed socket retry logic in Connection. This is the responsbility of the caller to determine if the command is safe and can be retried. Thanks David Wolver. * Added some extra guards around various types of exceptions being raised when sending or parsing data. Thanks David Wolver and Denis Bilenko. - See file CHANGES for previous versions...- Update to version 2.2.4: * WARNING: Potential backwards incompatible change - Changed order of parameters of ZREVRANGEBYSCORE to match those of the actual Redis command. This is only backwards-incompatible if you were passing max and min via keyword args. If passing by normal args, nothing in user code should have to change. * Fixed INFO to properly parse the Redis data correctly for both 2.2.x and 2.3+. Thanks Stéphane Angel for the fix. * Lock objects now store their timeout value as a float. * WATCH now supports multiple keys. * Broke out some code that was Python 2.4 incompatible. redis-py should now be useable on 2.4, but this hasn't actually been tested. Thanks Dan Colish for the patch. * Optimized some code using izip and islice. * Better error handling * Subscription status is now reset after every (re)connection. - Added spec file license header- Created packagelamb15 1495217166 2.10.3-6.2redisredis-2.10.3-py2.7.egg-info__init__.py__init__.pyc_compat.py_compat.pycclient.pyclient.pycconnection.pyconnection.pycexceptions.pyexceptions.pyclock.pylock.pycsentinel.pysentinel.pycutils.pyutils.pycpython-redisCHANGESLICENSEREADME.rst/usr/lib/python2.7/site-packages//usr/lib/python2.7/site-packages/redis//usr/share/doc/packages//usr/share/doc/packages/python-redis/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:Leap:42.3/standard/ced4a07280845cc4266f201e16ab39ab-python-rediscpiolzma5noarch-suse-linuxdirectoryASCII textPython script, ASCII text executablepython 2.7 byte-compiledRuby module source, ASCII textUTF-8 Unicode text RRRRRRRRRRRRRRRRIn6Gi?`] crt:bLL'6||ꍉo&wU~愕'Jq)93b{ǽ<-s?KQ풼|]3>:(JG?b +nr+94F8}Y |AkD9zAP*N69)(80-n+;fNK/|"Y[RgPHF< ȑS&LR]pBiK|~SMBK~,Y%n3={YM$Ԁ6/C(dNx Է' 1u_?u1,%=?XMy9ﳫ[VU֠_y~h-rL$KEoakR[6̓-9y^f-ȕj%7~wNޫM}[@%.(M\#S!6{,[JP ^rxNj(?e@ LեlPIysIbU`u]l_G˔l.!iR6aJV7rfV–3!Ci)1q>שmRx62;zHןCبi\ce1Ar0޸RTbnFHGS_a=n[Q hwcMdi HxXڒpwPr:=2`Ei>7!#/\MM,]6ĢvJ XַnsG>#&d&ISV-CX֔t0>Lb9> 270{'4|QZ1}sbjiOP?.nNt"~L@:t\;xс 3)f#'G7(t\vCGˈD<%ܹ֜t6(1r! B``0ik"@pVg5JOڣ/If뺴s@?)*8s?VֵJXYQTgé)'8~rb{e#p"͊6*bbF |d$s%1Wڢŭ/+'4zBmG@C ]jZTpg[5QL4C|Ji=jY@yF8&, FcW'Z 4Pik߯eZ,hL\JkU !ga戟 ?g #gAS"M㲲|tJy C?A.e}5XE >gCu\}o V,ٞ}d*Aɟn> I շp@)Qg^^l>e{)%t# F2cp|3ꘌ'Tt%;OlUhgҝ4}49VH#GL vMRv2U{]>K*#+~^rʥ:£=I_8\uQ$H!MD>-)FO)`s֓rҵ@~%|k1/>\i+D\%0(NA92[%rH@> p:\[^x?䍹`(I5I1 xKxOi d0L4xڼFE/\/FGa axp50(A'ɡ(y=l;" gL:Y`&7L&`2x@Hi{AqC\r .Q).Xb-{B\Fv|B|1J!(ɯ_C~4渐U_~wmMLZ#K\&(*8eg3,M56G;>>OZg ?%SEszl GYj%3˜HbMSKx#,ha1L >99DQ[xoDo>v3LͲŸX HJ%tU}RݬDb!KGq~vkv n).Lv .6uܺ~"vҫ$C~a:8f^'bbR|nޛ,ưLK֍ B &+33gjـ64hm SY!mQ8L BdOk`8b 12eaz_ou.n]:jX.`-}M +11K`G6˔jaV fH!q%Ѝ0t}q2SV{!%?z|wՅ0%@83m+`B6 HXKZYꞮ0 n"z{{ZJi@7MZ|x%- 6={s2\@NF^z6%'Ά%ZEoc~qi^=vn,A&*I M1gxK2.SgƟ/~qbg&q7 5~./¹t(SR%N"j.DfI" 'ZzZMsƘ2Kоm\Fݰ6 EVw+ cA2)Nʽ2F+3uuS`ёla!@Z(>F1C %rǃYO˦GQ4\-ZSJJ.ōrjwi[zc-2/tVO>Q``DhZu..PV)"WEǢ[W) S,{cfuWkS0erz4>xoO{ K='7 / tDD/=$Ld͕QmjS0͞;$AW&D릚exf'z[1E7uj’Y2T .틀g<{SNE={>͠[? E{ӗgMCxfD7^|||M`rEq?VzZݩ>襡<Љa kmtOeYqE=8|[Yw(PAMüt/Zlj}r]x!_ܼ61cīO= ȵO[8 qjꚵydV ,x/4hc3#;E>_teY]SN}#MFf B2Bd)r͖G<Q>3A;ӡeQrL =~ڣ!߈J:j5DhHi;:Eci^yCܱ ɷ{53Goȴ{)4i@.M=zZeI9ųޕ|aV{7 a>ӦvۆJ+,׮h4iŢs.d"ova_~UR4 ޡ:,*ke>gށO@yri%M6ZQce1(e#"(΂ <*Tnp 1 ?#Fօ>({s>Fݧ^A+חT$ G5R5\k''GyO>i k6;}@6a–q.VLwԢ-!ӏֽ:7R3X`=zWEŸ^ IeҢ(DD POe^߷3 IܰY.727_fe(ɈgO)MM5ŪYQLp\Qơ4 2bD6NRf4nקBh5Y &yp4Bk _t{19OgmV)Jz3z%;;%APɲ[rW]Šg/kT>FG bf]{KCЦ 6>g3CUk}[x|Go),aWzzXFE/$2ͽʄh9q`8 vOfOwL.֌)7ZI5{Bqkȅ9M,fԷre7'+r257,JR5"ňp!_QiJ՟U8 OgLQ% C2;$|H4c9Hz<id%f81COR ^Mv2~!NX ahJs3ijN|uNF5EI>1CQg4##GS?ХX9^138N^u=R>#K[{ԂH`R3jGCIAIC#l,^!ӓfݑ8!4$ޑӞ) ; ,Ɠ{/^@3qOx~T0'p u-?^y3 ~}ܜ>חYc[EG7Nid ˁ;m!+3iae?Lv'duO:ݸ}fޅA.cMnцa1Kdm)l7dLOO`愈2jgo ?(ImςOn9O5 f"IHzّoƑ%\ 0)fnv4d\hL5/]muGW0Xw\ Iq`_Iº͂,pqĶx CstXܙAM9IJ^CxgCJܧ 3*(cAi$/LYY$}̴J!JZJ6GM9A1NOۤv`aߥ+’vt_ծO@ܷPvʗBF߆qY)F7ԌȜY .T#:'&=Zs)C\jG]6o]]:9 `9vi^zP_ 鎗Y{/[!rkN\7 S.!t;ʅ=b"(ӕ ᮆ}?e5JI!˥ 0Yv 6FK(5CKF71,[5ӑ\]H?"%\ɏUEa ~M>]bHƹFNgg应ɼ8٤bEj!?0}ݥ<'wE i,зtΛ)~-qR$2/ż M& ݬ ' ."m,T + 67\P,KMY^謋O-Ё@UjYNN}(芈.Ӓ*~;5p`6t~ij&) 4e pG MO_<deEUߊ<>k+νmYZފC!ΏޤFG*#X*IRc\@bl Qq$UM7qfL5zsQJY!(~bwh؅V=_lkZ],Ӏ D-eq|۠Te:h+ `0_0 ~ztnsD0[\*vTsD"K*1<~sVC^IŽd31 ,I1z,$~/&u0&<1jK2ل"lϒSK<*xmWGV` QtHrL }47rxGiՓ]mS#n1%UO< n⣭ V~LuX9؅ts6 dꎵv!Ϣ>k{R_Wڀo^ܦ^8Uel?.{g=Frç>ɎɄ1@Zp1sxQkL$YajxCVⳆh<In[qqה8Ĺ:Ry @!,ȶ[>rpc _U_#AZ/1gtݦdpt`*&;o<^>ﺐWÚ5}?y{/"rM83QN~ qX$cdh ?*'Y3T4K$YZBH!q_s^T[!qmQ}\+>b8z}\}:tTb.ƃ d@U#lPQrS=F qXo6.]%fͶFHTvɯm@X 5+דLS WM2`v|̰enQHLxĶ}]a3 2Sb;GR[  )'b9Gc|kH0,MvzY+ r8R Y(FSjxq =\1HW\;}w2c6:lEF>atv/ El+/A]Y0~xKM:dX$,g1"w= @L+W;m:=Xȸ!cD!g1oR2c.S?G}P2lG}eٹd|υ k*6644 {朁lL.bxw O})ʤN~`R,ǿ~߇tl('.f/Z+6-pɓkw-g^ fH9e;Ϡd漞-wJXq=TEiXo'@E,Po#+K_gM g<$s7`wg)'n& E,p"P}O)ُ/R#&♥zuPqz'{xvdVb؊EL`;B^X0ɇV?>;xE?{]6  j!_![~΅mv X~#Ŋ#lwH+ٵ;c`vY_|JMUM'S-%Qyt[/ 9;T*i6V*HwZ63'J/7_ޣ>frF XҕRpwD6$G8~^$Cm 4EUj*SƓ>*ҍLJp{r} ~W7ܷ$b@ͦkbZKi76*O]2upfW!WqoV.EU&w!^IUx6bHtv>ݐJg-n{?V*;3_H\A\Xܢ,|Hy_,24F@{10M{g`ӝ.&##3b):qNt>~J*mn5*B9gWn8C#) 7YCG⥮FWyz6AUB5OUS-xK@6-7Nǯ#>RnZ-]X-ot\׹})lŴ #(3E1exihC;^Ir-Gl/BAFG[[ -0|fq_aOń:0`3k ͟ XґډtL2AOGKg}i|r~TK} agn0!ԙ\&Ysg?SyjAbNF Z6+'[F)PωK3 SBx*b -Fq{KI ɵy!VnPzo]z!~> ^^S\oVp Ƽ9OXkfFz]z H;$KWy_BDK4׀G9m"QpaٍK] &Y=>Zjw5U,sB%(bPVG^H[3c!7jAPOT,^u*7Z82^mbLigi uLJ$c3TW vx)\DچV {~0JFwZ-o?W4\YP9SEa&ڂT?CiA#nyX(*K^vLs-AYbQL!.D[/Y+`5!Vl[*騖7QĄkR^!OhZz kIQ3_NÎaMԶ+YES AِjC(fſ!v}ӽtU" WH~eWF2㦠KK+DI:I1Yt4ŶqV\ncPոViAY,whUD9p&Qc6{Cdcx3\`8C p@ڄJ<S %9ԾAResNFC`=Ls)7\J9{OXc`o[vkn﵅ L: 18K2 'q:(N}mS:o7)?o%Wl6F;4WSieH>A.16+ߟԦX+%BbA.Y746]qI}WQtv1Gc쯽fY H d#@Y^#R.z+~wqK!.Pa@Mfլs@?sb% Ȟoh8fK>z N#+y`<ϟ'#bjdr+%2D{{5,}{y((ُL/= o_Qҋ]Ɉx>d3AiLS^j8,%kFl6OVú]rE >>?HMy&VW [|ePJʳRPgik]V2NPo¾bR=?US(skXZԫX={|ۮKjhTQlgf@?qI_\iΌWS<濉77KFYS8Jz)XQoK;& 55Q&DW暴-ҽ+|^Nx1՛.%3*;} b]eWضX^Q1#'+DĆ!} `-|G4D݇v4u<=\BPUP:P ^ٔx}vY8_HHXr@iaN8#hN¡PMGF+> ZfrM؉$y3VsͷBĠ [B#_̈gX-2 @ Ka2.Kj-Eil*_J`yQԚ\('P.T6JvxSzFz`5_Cfcq.ZͰyr?y:2I`2/Q;.P0Zr{lª~Lޡe6hjvbn;#c}*0#{Ȫ`%ZとM9z5\r, :k\!'#H=ݢ +-+'! -TdeD~JbwrԧabFǸiX-cǒ!-#؊#'HM%9)йQ؁7Z hB|ڬr&iз }?V%Tz65+1AIM{0tTSm )V, Y5I b޷@l8>磳&kbNW)79{ԗqmdK9)[f+r g'/7?J/l_,?궵X\p`fl)w4;Giۧs{_7_m¯}wv@GV4K>t~f ڂBpwP=XyS% SP kn/yٶ#7BYF~&϶`Q/fመ'F[;] HV~ByRi{M zYN}52]/pPE/|`i%\1(G4-BM`/p;^RrH>gt%;~zA|+aj#L˯_+\еdG,˥a6@`} 7듉SXLCêN~)^@j;fdLVY-#Г Qk9`<0]++(* 27^0u:5aF*}0B$~V =` Ai-&RC*,%&ٿT5Ioo.E_f 0Vր)=Nԩ6#UY}} q8Q(篅Ǒki|0I{^(Չu>Gݤ$λRNqzk5?4݄Rv3Vr/-ȸ͟ -[=HPG)~4/kWhm^Lj,i$XL8 <9cN +M3#u++Ek6cBw ٮ6co.z-*_)e zXhۿv Ϳly;zT>2Pc_rL$LvכEC !EˎW9@ֿFúIFM nO)\z͇j\ 2Xoky}2r0Z#-IZ]f`@(7 *VF6V6vN* T1<A'X;A{UC 9ĞTݖdYd8w֝w:JkmrLsfO*@L$&{ɟ AY$*g=Ønc) ڨRR[ O}Ga q =JOpP}`O( SH[wl"ƥ.ۂ45Ȯ[#lcC- [a懲ίCgL^ ;PNu^y K3].VoAaPƵMWP=3nMtߗgS=F .c :.d"7uU=;"7Z3R[a&jy.Z ?{hRc ples0LNM&lY2èGgx'qpy'Z W5v3Ӱ %J^ܿiG7t. mSGw5_BO&T O8ymZun=pd%iL\ G\d'qr=)b5Љ5⯵ L/"g"vMEs( 3 <:(&R,Vj OCPY`5@a!Ì[I0Uh!Cvk9|%Y#x*>BJ\ήG85gQHNMGaed! 9DpQTOӸ[2C% {W1=1[vwN4N7FKUI }!X(uhW,cSN"h YԟTgBv? ɘNL?<:t?qUX iK-oܚ1*uno3P5 ]2٤ZAQtڡa&h.*Q!:oL\|jvE(}GGɣ0i"ˏ/ [kGu-7dO>9<+A"!S4(b) -`VVR.{@Bj78ޔR<vm$xVJSӃa웧sTmU#]謁A?˴+]HNY >%_T~k黵=ܽ| o\Vf ؟)5m|z^)5 !oxrSBf@J%0jCnv>KsT2Xu[!4!dž1Pz~+5ܵϔȌOϥ;Yڮ{HO%`,Y{XqO]-@0piԵ+Ev2XGB2 ृ.o+,~o|MR)1ޫU5Z 1r'BeqAxśw6}]r%#L7u6^yRc]?%Rt6 bk^9QW`KeޫufH. Q2}8lXe7/ W'(>.+ ;i%^,|ll^ycEB_yvdl!}{[pc|EHaїh܍XR\ ˈXÆ)K0J8 f,/G88 f̺6V^wיĆ~/yK^7޷r#^ *7/T?;Z鮕nSk/ସ٨4JTo8拏٧4j})ՙ-"4s =ncQQq}9U9P+^DBj{<Ѓ 4hYǻ|t7(ɘ:_ nuq&N˚S8eɨA{POfO8kՍgnee16t7Bj]xt)(ÿVxIˎɻ׸ ӤL0Jֲ),[w)qS;c{˹ꭋDxk^^axэZ0T}q𻴧UO:Y^=G A<;3`blG_sJ^HAUn7.^}.y8}V΄aA'zKƛ*ge}eA*Eö/΄F/%Y0Ao.-pP|0䮤ٷY"+%s&Dt]C03gQHU EզG:SD4EU+ V}#0=ǑRc 5>q?#MIi!M& 3!m`}ԜxӰfF߲p/f]lR|E<I[˟ VLXFvōC*p93?I8vĚtೣK\Zq|X^`=cb"G[>Z%MY%hp[kK/{8g>PzA2ƧlA*́p' P5jvPEReBɬlH+$J' = F+I*0E L{OA2CzdS.>ݪ ;kWݟ5;7XFU%i2ޚHb6\19x in)$H`5|rh]da8/Caʪ;Q*@7e4}WPIqIBoSjck7/&^q]oTr9BF[ӗ1;X !m?/4!D*K:e\@0D<+1k݀&Rπ0KC)ڍT"r" g{4%pѹFh? ϩ*>APsּIGKgc)I=d5$K.h\iYͳ B.cBZ﷤@\[[N>:I&҉yEC.vB:oOHh/+]LchSj@#[Դg## m_`~ ;v=41ѓ6ZcPs7DwhR TϝOesS;C,gI"Kz˦0b[)`Bc\(,NQ/I!h^Ƃ>w-˦:C WNvHy2 (Qy0p3v,=KRAyB `+=C,!N!!>iPZ|V4p{RbhzǬߕPjެ_ޠ⭻련 $jvo[ndF(`\->6e 5bTcP5!h"=\@NNrrY<~%蠤ῼKTKD6c8$=ވFC؄83@gM,X<3f>d: oNtUN'[j=ޓ6S͠EBRMǘPq?gg=n =0MyC#I/g1*+ly8nZwRxt6 w WY֨MS / F'lro9rtkMs-/6 ѱ] w Vki9H~Xq߰)F.~yx#,5JsWliJ͚If%#8Њݒ5c"O;rj 8듈nRU'kd)Cuo/m@ѽykjzI^N %ݲ^r'Qu>~~Qc{K }w1G?]b,G;(Hp| Ha/ |$%N_ &5I5j͔;֕h0jzVu㽒Vc<dv:s |g R>RB7 Ѧ IDծɒE.ǟ,( [Omr8Kq[22\y=m5FG77ةYB;6Xu,npvr,wrwh%"cY|"5M\ذ 1IUx PQ9J}sVeAɃ{)Ow:$$G= Njv#Z1XGF=,>[IgӼI3nGw^=4 e'i1T6IUK,F#a0%_FF\H Gʥd ŭ׾m@9꺰YRwYϙːZR>k t ix rMwA::+CMz6a6(1jkMMh^n ia=v:6c`=7*K@!uOܞ aPΘnĐL=nY oN\.0dcepx /vi0wjDsm9BB1 VV)oXqyHAuH\I''zOr>:7<3s,ri=1ַu8x6 /sFsKz ʲI/+L܄n#Y'\ >hM}>#I:"BX8M4X<$xk{ {$]|'^熑K얟9k~HKwmFR«yAORcN"B o|5CCD9i*A˼,"ϹQP 1⧥|MNꂰ*r> *,E6< gHAiMH%u)zE2i$)[q=s)5(CCos'$\ĔC"ZofxY@!d{.zڋ0RoYːgU--+|*YEtZcҧMMQ(Q5JjWG+MHb)jF6_篨ND=KvX)KfX䎇zv98`5!2%)LI/-_zq;1R3t)-@_M^?6&Jpp)yD5}KeSax2YQ5b~ *@n|8}3 _ /c-E$ǽ;̙cڿO,CC'͗!Y{NQ/b>=6 gu&X4{h&DwǪG}IM(W?,a WR1QA1fˑ_&bkVOKx(PƩ>B5'ʀ5Q>BWnKXC7Ǒ4 yJ qucbx(iWr[ryk {(VXJt&n|B @,ߢU槃7RS^qH&[$őy;L3pOr’Jxv7裇:4KMQh[mԔK%AVDjDV].ce+npiR&?~)7^w;^Wx 0GͨE 8m͙jCzHsზKOr`$&cT.ioiݸ#W2=ʸ)rqzL:::sl&GGKQva*4Mvj6ˢ@ f)\|3_H54/w@K~`ԳoȐDw44-BBF v}sRI 1r⿅JGy罨\mJUȇӞ`kp`-KN9 V˕j nT:8䬐ZJ 갚"ϜEC_?ʞ[M4`ƖgIL_WhBk_(+ ,ݓ2TM mRV|s[lF`q{ zmb #eH) dWl{_3XmӜcO ŝm왱C2(A\ ךnGDUX P]~GvIA# YG|$h!_jM/c~V츅rL.sMK#Ql^B)W!G"}Z+-ٜAR,BtfGZfNoj [< VI('6lĨ=H\BlCOtM']AWpg @X.#^e8G$F?M=YVXbhdR)R;YqZԴ=U Sq>Cx_,FUIt=kLO \@rT!w(g4A] ._R uv3le<}kc,K|e8 $]ܡ&kp$JxI-CR9?e<|h6-"]*%k"/V&:uCIC0'^) 6,=$BUT l *{q6vP5؇dJ7 ґjNo*W9_;qr9X'6>^>n'Ci͋ !B-%3~d&pɠk A½5П 5]3 Qd+,Hv'r2ܒq1ΒCk?"= ;Q]T!:PG [&$W}-92F-흄h[]3*;|&gc: ť9{Ii~`RUrkoZ}C+EfƝX v2QJb筁Ra:s!2  V2Zs $C,OlRԀ-yR`>mqI@ TٚZ6)x}eΖ2RǺ-b]vܐӾ6/t߰2 _~;3Xg5x- 8,n$vB[(H#Tg5Hʔ;<3lۀ*E<49L/iSh7<6ғa%Rhl_K#Yɬ8K3^y;&k`fכO\j0ᓓj4w `q;FazwͰj9y\-+oTLjS7-)JA%[Ѹe\қG1\KnG{#Zsb&nG$ûgQgrsʵމOͷl"=sWxʿ$ ~\ )h-ˣB/Vaٮ~lM|,GG;QPv^TaAs$F 4Rv~ ,B.7AeFȌ)Dᨡ"T |t*%:Z $ 'X̪UL!5fKkP a߷uّ9sc> w6譺g5 tԁ'C%rDG)q_Vj?$cpngOhmyL*~#dTP2;߈He̛lW -t"n 1u>CG7vG ŧE+|{[ǫoެ>K>ewlVvvx_Mf"d ;<Pujj0)Y ٖvC*nbGt=)c4\hFI95Y"&xnC{$SāS%_]-U4$s3DU+-0LY3jv'uc%K-QY(V&ܭ0IW`Oo e*?%,uk~`Ei_XD- QR`|SiΔl*v9+^ jZY3IFA5P=(_W\|iHڴpdRӟq{E  s!k:+}2^!g*A]VC>,]ůՋ-}cEԦ5 R  ЊeHuJ{}jgYa|F 6GץQӋ&tD(9S0)bޢł)P EVU$"YRYEq7˅lȇY݇zJ(/pi f^'r])PxYab8+XY{.Af+ ;#aE#^(tgu>.q>`=JpYKF@ӹՇ l$Oj5MW1* pd֤)912AE glJߊ%}_2(3Z`<qVph[ #؂b7עk(wP"$Yn?+R# PlŽTᓑOWQ.~H/jY^5Ù\f8 a02u{Nt,h#`󌤈ꐝBZ@Ȕ%A%>H |Ly1>[s5'Ƃۘ+\@2#Ób.ѯ(=xYG0\ocu; j6ޖ%#޺'٬rLdRʤX_wyϚ 3:>9}rT7o4 { È7Bt^NaNT3٨z%Nb=/ m? xwZկȭeE:Aw`ݣ4ڎwqF4n𿟸JH3p{RVx0G0ӯg"vXKsF*s.%i_a(!K*;trdžR;W/El~~C\T DG$rϝUM&cGTUqZ@YFCr雍$"zX)li;3,XPM`׌.~uW 2`ZT*~`I9WF Ɇfv Q>V)avyR ˂^B Pe ir|N", ,c-mggrΉiݲ^Mˉ8(]/au~!9/!juh&nM?9 T4pESV{yEhZ༑!la7H<{f/,$Qi(3fEERdꮘ+NL]?3c(8jzkX_Xc+8H|onX+ zd/Iχ ЄnU$>AUjZdtޑ.]cq-a0ZgkSj sRtdRR 倁/ =O gm)ixUjs ZM7SZ =w;Q<ь 7f%n7.M,Y#"8O|/kҕ 0EgS"Wq|,`-!~'5 e"ʴ90iه0=x1^=,~,AxiBG&;Y~3 @ P  fvZ\X C7ď6 WTo- 2]d$Q]^)քCHOu;l[]ְu.5[j};HA1@ζ((dz۪3.V,$-򆟡; "[LjxDNSr.r+2Nو'YTސӦ.ӗI`㲃ܓ *XzR &V쑍û\e.UCzF uc}QU LFSB"L:Q5 ~6XHQ%GwtU"T%?u5z^Xok18ݩ2nQ BݥM {HLcnK䊪:-NF[QU5@Ծwʷ;94Ci9Xwن" ̬s'웲$?(WTi꽅gB Oy}_ t>9mKcT#i&\8\/p PVq 2gj"a8񘦋W#k9x J8WUEdz3>a[R!-c-3['NqZ H۞pw%T8{xE:,0C6'pǨtv=OeiL}g,DKe+&4'E I!fdY_l |q:)`w>xH* Q ,0Άڙۚ>~V9P^ftdSR:6y!X@)EB#>c#7_Myk<~?pg_?t hD a[ZYGEV#/8kQq.֫`qvOSIڴ̲>P0c*@\=/(X7A|]Uiv#hXTߦR{ L3ӓw}ƺ*Ǫ h.OKPf`$1MȔl ph-6U޼|4cJr4:ZKoZ7⿒ֹRھ"dWJE N~#Z P-q8:ߍ'ye$ݘ$bʋ#:0Cut13Vz#7ykO tnS`DxX1Ww9:8}I9 -h,Fa'`?i)?/ۿV18ԧ1ep3/h#[)GEAe:_Ct34]Go^\ʿXm63sj'5'Vϭs.t#aM< +do:yWEdOQ p|]dCk]JoX$Z5MMgh/Vtc,ҦfRSM@6lW\͆n,]<1NjE{s}NHXUɥXeMyc.׸ɠo_KOPhmEĞ[ǵR ߷Fv Sפ ZD0oO=u7}/w ii&X3puNlpUpXs߀5{Vc Ī"'þs>PHGI:J ( sP<lt";m@uDXm28ŅexyiZf H(e&GLK'@ER#P,2C#+'fahN[ّUS"R7dL65:Bmw^+o"jC}@dH}79\ܟdn ~N?s=oM{֐ ҷٚ'X(ܘ8?8f_uZf Cy`Nĵ z7Gr{&NFC&t.rCN$B[#Em>:1mb|u€_!OZ=7< Z;a;b'DGҘRؕI|HV#e^J?3E2᮱ѼigD*t&!7gMc<={P{Ab21m.EՆ;.OUH"tE6!̰ Ϻkdn A/soG9O8i]9SfJ?h&g(  RkXo[C9P5'0֒\dSJhyH;#tm9ƩShEPD䈶TJoHdevjSr\r"$kzT`! 1c/UHkCH$}I5C",rMu%&|O2zjqgMؠ* ݝ+>0fI{&kQq\T/<;Ż:`1QK͇i#F@X1rǰ1E}a|_,54{Z~/A7~?R2ǫkwTp/Ij LˁS?Xd:fKQ}n@l/U+[,tBo'wh~([n6+SCZKBj -(ٓJs'_݄9T*&pLf`cvbB+-ذ&=bT^fA0qc&^u|3Q__^B![?3؉uG!MHa>uXੵTvtudHM!|{O&3O\ҩB2bD?_`j][|IGFXd@=%?6^iJ4FAFBN,ŀ-AUިrA5McMl6ENb. []u]}ǡhMc5 &mD]Q품yMno$kP(uuº&16`\ JAlX9pwVd+P$KK  9@`fVOȵ?kb pK,Ԛ9QJCU@`\L2zlgUUҹ3 GX38wf9$e\(d] z۠]/Bu_O+AOw93Z=譀.:s)CuDFe~͒nvJbO<8NV*Ma!#C1Bg*"yxbۇfᨉ%f /gz|N5Ut]i{kLCT]Q1KSb4tAƖLiИ8C;OS J0YS އҶB>A]wR3swur]Re[$UoU/z%65:7eר1Q'qjKF RLph]8{ވa@g^! &-q$;W<'#R@wCVpӣ>]2ݺ{)ꇓC/C>np>B?\1~W'.QG0o2 O)U{ͮLդdt_g7A3|h5dok5VgI)|٥PGxbƟ,;"D=uEes0o7r-nvW̔[O_AqjUs~_DN:0AAe*i3[’!r)Xy?j./~L5moOI9 7>&0}tR)~QjczO ߮[\k?b-o٬74 G!QH 2C<^F)Ql)'.'7 \߮26UsmOLM|Zɚ&yXH!%{[[2oO=ho&e]GSܽO=oLuP[|)w7Ыe=u6$ݖbFr* ˡY39Qd&+~ xoIewa4:F50p,@5 ڡ+G46{\mT{I@6gQXq5GO.b6= 5euA$R1xpm(db]5dḁ$ ڃ^,lrm0C%h^cj쥫2$H~qX7-.&/~D:J?R]\OT ⾭Gˣ!c/]FNuF6q/-`ES >'jw+ @csac^f-Pk,&l ͯ|  1x+]#N7KоǮfh89Zԯ]zIKWoDyF_IE7SJw rx3!*Ehy2+E*YNXG[}ƖHoxvhdဳ+;CG2"krTN/@ Z@ g= NCsuq/Jr۳ ,ZOE ˥cve(f9~AJٗMm'bI2}gZBYH=K9z\/H\9tE>α\ Ku} C0=T#͋x؂[\'fI5e}Sڐr8d2w$9r@#xYU1#_81 dCL}d}% LP_A1Okȵ~rESThUc! 5L^֛tY{]cG8"p}=gLOGe`)En L*~]xAwR5:\ōnV; XGCtHr>QuPʥ}Jfǒ$mctHF:Sv,S*x˜.w?Mb,>զrE,MU<gwrDlЖ`V&76ߩ*㵊@si3fm yYYj,g0 >ݲ5;g A2y&uK' bTFE86;P}+oU8R xu-z=d[k6N/#ŨNV ӗ3iyj0;+76h G>K0qE,AtJAi\ .߭_~oA d/b2S: Q3wHxʉE.m^S!з)8n1چka`7~ԧ$*~2>Yń%<8 >^ +p 3Wi>)=Z EcwM@xПv Rd#pZte3RvGNK6$s~t^:؟Ub4 %A߿Hȩ|C9fg(it䙳Wm_X hݩQ{XwC]Vpn\ .9:W-z/Yl8CTabZ66`*~M|!pi=tL x5+YyLRޱ|ȪZ[=XMஸl.bԔXQCz46c_|uog8q6I3$?I u. WZUd- 1sCԼhdJX]H(umW Z׵?F*~ډu׃r/ '0?hTG_ߚTe88j慢U+g,OMWU`ޙ**'!sz30NyYt͚֊g!5.'P^A(Tt :'W " _mM3U~ꤡ^m9[HK*ngugНۏ\|*a0C}dHE$ӡ=nco.O B/`0~ /8ޯ'0}Ԏ4;E@@b)'Cc[coam,t!w !,s>qyd{vl}Hcug(Z!^%$ |L E΀&5SϼjuU+U`9C/gúVW 5RуgyΥi*?k|%!9=Aপ٣[U&H-q1jtsłv*@%V P (W .1EZ*ߕfulݒ !rɏϵ7_j@ yƇɣrAf*nP D_6#UPh!:ӻ*6G9@?X"eOޕ:[ϣa+߅"%6$tqzp=O?oH8í7>}W"6D<D5Pԥ8n{Px&v.uJA iu#R$y[^ |_Jgæ HUSkąa6A }2}xd2AK@PU76EuVv:kB(~Άb-Iؐke*#謿O0]b]?`ԊuQ |pD!UkiF@26qH%Sl-~vIhWt^"cAVj܌ᩇx4;)~ȲaM d(t.5n9x`ۺ%p^/HsA~؉.;oLN!oՔqDa_űgO*>~爾-0UiRu5;dJAc>:ӹ o?R<+okZkUAr+9c`;k޷SK#1fƳYlxVQH(u^^TEֆ>?<+P^Nx?. һw?56\^C6Ri:'hrW>uh oXb\ Xn3N^8K,MDFM:9:%-(]}-H.IWaI}ğjG Dw1+ƚBU*}Զ?r*v3g$Ѻx uxD")kt+.6ھ?v`^G[N_ߦ߄*2LSVc<}At}@^g;x %%+L-sͯaǠMhu0!HXAMx0*rxU'zP[UXwD4tL9e4A'l*M Sg&1C#qREB [I^\/@WiakgGx?j(i fX06 1C"/I B1&&UDIo_$ ջu(:Q9rKhT`), IR|^DhJ'w| 3]M@.C.v5VBڜk4^FvU In8";VS߱b>aMjFI׭M xk+5t\JWla1F_Z3a^ۯBB0P8KӇeEZ[@P+\+AJT _+guT:*Vg$BǖRz$ KB{Ԣ?66_7-A Z"s'LTC:>3EE18NUy|ꕃ-QH,*`!α<Tqd ݁Y%,dt,wWJ˔qϷ625]-:R,X; تp~_-SDcAɩ0>*7ށQ6->OިA("$ƶ!׽ }H%X hm &1yt!zE>ʞt?3z7/wBLa?.Cw ;BlAؿzop"ΔU z[$aev?WggzطO p >c7˻"9!6Uz4` ΑTFr Bif PrwW3U-mۑ{PmRT[fjSYĭRVwZTk|:S(j"%-\_Z8(s:Ъ-ex +[^15*vC'Y\E+<ߎq@^濌_쮊GWho=lyǺph GQLf͢h΁!  ؆DRgY0 &dpآI#lªTzESK1X-?+䉎ȾDX?"{bR'?k<=krm.}lv=+/t꛿Ma)!nF.ASfpr/ÏFDv&ZTEjtK?^< , ZK𢠧w`ZDbzp-mRPKsPa_6RH4t?f+G \,U GEaO쵟J=EݜDX w]2hcҼ?HŰFP1PfҪs}iV*lFi5GB\j |P#LHyZ$ӗBy[WIј r%_B%CImFQ|}kW[bIQuyB?uCA5rV L`Ru)?>jsR>NmϦ'(  #"E=rDԲ 6wPb*m%2Z=sA4PIRt۲dk%2!  7 x/ i;l6J'5D\`O+~ YepTmʄ)Dynb!oZ^9]Z| k1-LAgi!zkCɂo@wgKB{'ѽ;'=WY CW ;& `*ж'ޱ̬s``M!Xes_@'6ʧK+^y-uKOgKҟ[6yT7bp= g=M¤ 6S[X6ŻVAH/DVAz %Eag[ H˝$%ә2T1 c`#!@ 6Js|VyFGh.qy -Ye on(W²T\-֧T>z]GP!f04[jL*ET&[EӄD[O:~ )st4,I0nb[ M 檷Cml.#-2c6ly`|o tv/>?~QGeHRȡYJo tXh+ vmG%l~ܧ㕴%RsvpBZ?)E4f"֚vN>QbJmhH)^߹{'nh%n<+n(?hH%ڀ&*s#П7ul;X,P*)!ܼ"cڦG(KEdvv%W}5cOL riVq' x 'b:jeծ yU,r}P=Z1{z A=9WPCo ^y'+5D4}vMɾ(PRT^lO}cGO"l3°l\3g:^db껹] B@|o{ Bj )@}  IM rC ]^7=٨p .4 o#D@?U 2ľ^q1mbػ(v~[Y'P*tŁ?`p1̞o!j~+W,l)wap,AϻY(5 }y^@C H05A4ĉ-pw# +Á\=[jK]LgͰ+mO;PTP)`ݵ/D>D:#x1DdAhg##*ߨxj`&s8$d]3S[ӐAզw4%QY0^_G\'Tuey4a +2AT籷zItN?^7=V ޟ[sMr/L\_Yo#Z ÈT~(vIlMu!H |};;Xk˥k׵]Q8ݬν/r58/H@ӳׇhNdW+'\FCTaκ?Z}SJNFl?#H&%r:$.Կ6g.d4Kjn itM4;N XgbsYf;&-A;1?Guz]&}k]#pzU&bQ拥D 1ǵ*4Y/v4ỏl _x/m؜gub]l@w4VFt,γW&[^rJ`܎HZx^#ڃ?˵ے/߶vP]Tde01aNмt mz PR18dC1ȂT>\df0fPvsl t; igaZ'oa_( MQ( [gbJ /02O&l)^wp3BĊhuz4םf[}YvC@h(2ghyv5G#loWuS.+.,Xf6[ `(.T@UnjhhCPgRdo e;@=(Z`=VA?gYTN"hهwCj(μG2n$[D0bpI)>mؕ23 ^(35$)ۅMJlSF yC`ZY[e4]yp%lFLLaޑsoB}!\)'E{zu(ϛ 7k,4m"k1q9rDIuV 7]zc Niܛ ^x"eDЩ:P vv;cgCZ;׷ʶlB- @jR<"PIUXʡ#8qb>Xg~Dg#D*c NȲ2X|V Ro1c_PZWSvQV eLeO*@H9_v #x5 cTy_8d:i d>71J9s/:8CM'Y$}+hlQ4 8%@ꑾ r1# `kmR(|=TׅZD=jS0[.%.,o%GOd!wt>jpx~Cl'b}θ .} `3=Q,F?Ϟܿ<QJl&cOF#g'hMp-17-$VBf JVm-5/`SE_$ရ r* 7Ŝ7߹/P ;a};CEEẒp9''a?Eh{emv;m}_`9p_>sPǪ26&:g3ɵzV= m03EjB+Ck#sG_t0*|{bA 4q^֟x7g$sѸ. CA7-Kӯ1;:X%>R^=r HIg>qEϫ{_ La=%xj6AK?p `C'KB 6ݨUD[dF?Eݮ>{~d \ *;~fTZ#w$t(Mci{B-@.z% $NHtk|+ܲAzN_LKj݅ W^.l4)9w[+(5Ng\k.<@ zǴ M*"GiR 8"m@lD?%5RbʿxlMvuz\У"{7] 7ޝ^EI@ r "" ]QҪus),+ uOL, \;6]Zq?q'ގݱ7 rJ-uhzw8CF_Bydb&0>\!}iv6^Jˇ ]O b K"a4N0*/Iãhtv<(Z뺐ᳳ x5RJFXZlՅ!~֊䱽W!fԙH 4‰[]\Fi) o0&O tr X6.P*V;Ec^i/RnM93qO([1SUqjxETOԂؙZhF*Tg:tO%_"eoIñr<B L=Q?iįL M9kk${ \;:(MGe 2zx ,K{S!] {`fkDYΘ̴? )+IB&H 4JCKURqIQJJ9ωkECo+?%p4Thy`sfnLZ8SXR݃!|Rb45\?VWev՗lY aϙpA烣Oߋ_@C[Rf͖҅o`jD`_.պ2-Eh8L7Fdm@ۺUm"3ULYT$"y)Z}:pDI&0P9Y\*$Լ$軔Lzu!v/%4?8 0vʛVȬd`"ƕPp1mٵf&{n픜Mp\<=/9@@KfL๔ gu|~~ISkual= w(SY~#9;рEY]à7DqL_*QzZI7SZlv%K_ p SK&Y3j* )y9j9ҷMA&$&" [%-JƸՆ]Щr5'kr) |!a-e&MAsz 2'+t:+7m*8zQ<#YtI?oc:bgtjY኿pftfNyu3QaexYYᢘ9D[/{!!޽3##"ƒ'5b ͕6[{< fT[SNTѶTeG{1>ݮǎn6ǝpI){nQ!@>wZWSL}7qr7"ۤ ҫ A칂G4\AW!E!q.Z~eΉCO뎀'PMm_v\@v|6j~*Q,0 շ%J"BLOى[83瑚q·z 餮2s`I{>SՕ{F&GTuu:ۧDFDc2.ީhxIL#K)􈫳Z y.6K? 3W{.cIXa4rCxdR}KTm":ڌt1NnHfL8XW-ej9]<.W@o|NsQdd<0CEJϠH֢"<$z=$"nzǚ[DR+mA0It0#HFEr&Đo*ONV 6!XC5T|Hg+M+ֳ^NN94" X,MQZ& #&ȽJjA[U;T8BB= QMN Ѯc@ / %8k0'  @bc>ӇfQ .r .355M3[uCT>?!W6C'_7ՒT -Tz*q @/DF{a:y5y<kÏ>ڏfK{LjӯɅWb -Pg /Dd}̼T1re#|:*մNwLp$mbNM.>(Ztӓ3Zu:su6IV'9˲<*,P:OA͔hNUxHdY6:4˕FO;!;D6!8%uj5\D$1-[\y7NNJ\6%&K8IDkG ԱqrƊ%*dH8rjC9;$ņD`\]y 2)@3=d~h>ÁK>.*Ţc[dldL1`K̍\bz 48d"0!0o<+`=FD|θɹ<ٱ&{Ple˰ %n1r9.wCxIDotP.Yw}lhqOoxoBwϪ΢~U[r/ \ שgEZ~z`tD 읏tYտ?.jkG y|HU oVh[k\w\'͜'*| ^wa=2^g{b~,X$OۄLUi:&~s5mls0{#%@?R:;ldbep&d Ǻ]g+stz?='>(CS }$,Am-SI{96ܹ@uCB}!%gc 4X ,~|T9գ+<$]JݖWi3h Tz=p͡gjC71D,;ZWDpyOGWZ* |M12 1y'{$VsN?u(e.W}{wŻԃʔ^AUN9 dt=M-uO#PO,Gρ"Zn jZ(âFk vy> |S/ ttyҩtt1ƛ;(";P3xJԨnPٓ"K#Bӗ0^C^ER2Ư9z_#)kR?C/~y"NҪ]ZF?bCLOx}1x sr4PiQ\fp++aQ,EM?K~kQŏGH%|&6X)ƘI{Цv+OӦlʻ0 Mr|o ٢F03yتx_H|t{.cETB"J^K5KMEdʿRJV="#L :2@}2jsqfAzZ/yLE!ʎA@%]%LE fxAf&猕+U"x0Px碴nF!kލb=VsF!iѦD(rLBR+q4wi"{1l;f vt Q !/[==,& $U7DR;&TH_3$G^ǭI?0,n¿MlU'ґN(Jc=EH̜N&t5=r3 YD_~,i/%;^A_eɔPjQ`8c4Y#x9u,DF1j=u5%Dxl϶錊XXڲn?ljPv<An65enXlmj@ q/g4wCO*|;%iJv<-sQ<[T kKY=Cbǩpc2O߈Jc]?S)I0NÄ,mEUr9 Pe]hapƒ]q毉x5q“+ଚFʺ&SMk\:$e_x&j1K wM5BY|qx_Oл ٰL@6tAYn< g%\ O=L<8#3*)\E:ZC4u kAI& 1 x ##:xguNEM#dA8x1/d;Z&=884M73ihp5Y'̦:1^X183u~8LY<:Ԇ杬lA GhJ=Ҏ;Ld@Aj'K0tsD x^ӱ.Jc5ϻ1Bߘġ VEHh&: o%i&J?S2 Z%eD]nrj4=B0N 4up(Mzp5֒Tw햛wXtS+ vR7Z>,>!Jײ -`٘RF = *{S9\y'R*#4T}x9`?LxPlH`{~j0 7ԼMQ} 7/ץFK |th"O]jE@:E ~[kreδB &CDOP\s{J #sd ɵ+00es̍&̍ E]^o5x].yDdb:L[K1s-^X")C6n`F%WJ}ܾe%VE~ۅa=Onƌ <'kxꖻUcC#wwz1R1gG(VuG(])ce KZUM_^m~$Z&AmiϚ& eNRib Q4(uP[sLQ:T=4} !|UH PVD"Jg?[Pyq rDaAQCPRzE=W<5C_4)G/hχcVF$p='fpDAlU7&7 hkHS嶽t@u39+1m+}9x@ <~O0auq]ЂHOu}&uKM\z$3s"485(!+)G \V5%|ӹ +4H gs X-1u 뎶M(f}X 􂳝h:w@$S'h+2f#}[Iqȧj[f)ł{ 6 mlW6RVs};eVI q*1}ܤs[DTD]a8dN,R:&:)PȈ/G0`KM/}>s:H00(ewʪxr7palLeoHL 9%Y_ E Z <В(<#۴Z7)w7 Qpy: _A!i1S< `ZbT (RTa NPGk8<ꤘ"䙅~ !SP l`9-{d}/+RB!wL61Bx!w_cCԄã ;HOYWيm;Cu Ǽ(\v2ɱT. |Wc8d8(*#I[x^.u@Y2 UlΜ +yIҰO~0- TkR_<+6eD&YaZ' QE=`LǩP^~!>L`nw'5eGMgIB](8WЀӇ;9;:F`vNDf*mGhrFx~IA~p{+T' Pv8Ϝ@9 ,XtrWvJ͔T_U]glE~ǖ'G;a2 !-"jhU&<>?d;x$!iL@>n+zDZYc[X#Xhu̕dĜBrg#X[IƸKfE&̵/]Uh(ê7{79& z]2n Qa-"I +Og["jE1b{3֒amŵ(p"f?Q ޣf?eҪ뙗%<.n ׳48mx0V=L>"3geh b3Lx7?+"#K%4>p "iXfcQ7 ;aTጹmu> Xbh$Qn gQ^l&!Y7x1⚚&^ J]d\V!ᶺNaiםܓ y3h`-ڒ GA \n+R]ŝ )/v(uЇ6s:v+, Eǎ&hp L7l/yä*w5GssATM#&Σ<],lFT.@JbT&]5 ĦPsB؏Vۤ>"s1T{R%90I}қ 롏G!\Ax))iWr.\!%fdJ.gZRՀnJk[eQ+%(l!մ8A @7kǣ 8*v tYjpm4º $6uw0*Z,,LKӜD{<ޤT^ܬs}F4فy;u@F@$nBQ4MvC/_Y'p:k*LYzfG6}$_9%x\]5@ 'Xc+t^&TcRÙORi,#ZϻD,?a8,W<@{4 M⪀Uݷnzqr*<Ū V)/kyㆆPr{x`6!&7K6]@:{a4WHҿ2DkF f<1c&VH.>y&s0KGSU{C/:-rw*2x7Gt Y`lk /%Bago8!ĺ븧Y:׍ Q=6 0 by 6x-fL)(eySFAk-*唝\'+ x ܠx*ܐkPi 9:zTA.}-e|0]d[^ C~Ӕr}P4Øu9In^s\9A:nn&?lB'ou-?3OmwV `drD8Ec}&Hec)5z/xѡ&y ?{=P;CN},U"vX׳ex67<vEIV291̬+Bd>705d9++oa܍+xDW}ME|C@qT ^ -"-$c'6fkU他Y%7ryd>{8]$$A_^^=_TU|L>yyihc'5pHTH=tW0)1ʰP#TdiӅ,v1{Q}CMV`]9YTtL M6'\J٨ky:VB Վ;]t&Wu=}:chЭ-[xL$"uDP޲;OA>*Y̭D&'vAhʕwzd]1E'c}r$5߃D]bz}A)rv%N7еCx= Yի!{Íj #$^.>%.žh(- i>ZlH9hd!&z>'c`\H.9$kU@H`v񫣢Tb$'mgQg{}&KJ#)uo?SJV3 2)ND|&h)+4NN.@2d.k[#RsWFdORZT[{g @@DPj$&՚&J_dIB탥׶UZ:۬JKDw&[kPv N8f!F=ɎSLJEgj%xYKl]&CP.ԞY0k:lA`-NI#D"PJdC7:|`7%Νu9SfJw,&uiF)6}:B:hlL{v=2iNj%z7NSa'QK̈e#ţש Tʄ.j3AA*8KCV=NS,NF:4"嬿jd `hN$h!{:|$(_*+:rghqb pbXPQzh$tœOѐSSD3K8RXS^, h5a:͕Fh[^l I: .M=|Lv:g&gaH1owȁG9z\tu.;g](i9Դ^doX%1^yP[*;yjPeR.#gV& ~Alj}s'S؏-LĀ~oro3ݔ.b+yJ;&o-jԀ6f10{;g0ScxmT9C`]-h3xmg- s7~Ӿa{e A^T[R쬷M?W'\3=3#g͔C4P _ G< 5a-(nKfѫě†A<Dq)ofa[Q}] cYxDByh`ψ| j(2 ƍv-̫ jk[GUC9hU!I6VѰ?1ETy zVo5̩Pܤ -—ؕE)aN>mH D@[ 09a^0:tiĐvHw@@л-e)~9#*F |y`&(j*Ћ(@J.\>e#&Hϻ<`0<1򖜖b^Htrs36=y^]KX)e\W_ײ f \9Ww=t@aQ<"SX3ul9Uޤ  eSgLsȏܴIy#uy[]Dpt;i&5]uڴ3ua&hbQi[-NJ:4oA(K2vGoz`ǤCI te%J8ga*H$'jݸ'X& ;Q|O |)4QYjGˬh}%bIjf\~ZZ,6m[Ir}TQ\ioI0؛:\ scDJ%*/8Tc}wzrsw}Xq[*ؘ׹)z'UJZ3 0[&=Q7NֲZB7g}F>ntA?N)xfXYQ3SA2:a]Pp1_rվKT㯭Rwu AxQ.<ݚNaI* *5 9uLCUȊ$(aHz~H V*W&&Yf2$1~k魴wYXSr0HX{Y1N?tR68n7r{IV*(|b.1<^F7^0IM_[J~H^2&[LXh $y  #UpZҐj{HU "!륍F"4\-hɋZd7eV!Em/ rc䥉l-ix…[68wZh9i ua;R`:E jwwPb21Dʰ5QX*tý." Vs+nms/EDF3(GԔcX"ÕKk= U̫|ȜKEd9&_Օ']ߡD& ט D a\03hcdVQX*^>5HTZiQ$ZQb:˽N~Z1/N|^07?GIu8gZmiK{&X>*[&z@RE/G{G-<[M3kq)(xh ɫZvO\v7ԇ$IY7eFkP,L_-u܊bT[6Uw.SMl$ brQԿ^nѕ|2t!/“p{Kph03+crF/ⳅ楟pmL*t{!9;枦}۲-h}4y^K׸^O\ڃnF'<0k\+)^a`߭[0 Ajjg22,#*84jCg啻|mw aP~A.ZgI*Re3yGA췎w^W._c~>xMi4XmDEgEZD !ZX؜{{>3w1C>Oig!SG͆*pSH`)d~c| A|cZ(4zAY!lճ (4M©V!8m !ɝ<&/h5E 'BNKj?DJ/b/\*!۰J㔌 !1PG2hX4ɹ *۾Yd`@^p>Utkֳj)ƙʞq[j18[ZS QbP.%$Vzwx }4.1*&=\-Z,SĆ:_Dob6A#hNxl)kt;U܀ 1XTe3Akwi;w_>ND&4]H ,&x9 \ž=ÁL ͥGYӄ?gT1;X(m锓"?>xl3JID^;`xUw);KokW0 wbD@8/Kw1jFp C&oEޫ`jO^c]Fc'q^):`qRCzAL:^y$zȎm†{c*I8A[ g^dwįs%Xp]@E9) =6]9VRLBU3pA;AD){3[/7QF֕f?+07FoXOfSS! &K{?[)!:=do1ޥDSP3V/*Ʃqy[#fA%j4F$r]pNF*b<{t{Fi-3e%K"a%DW,6M,O IrzZT>MN+lf5[:tT{A?:ZB PNޑ׎4ӳZcRpdϯm~ t+E1u-:nX8Pۈe278C2X?T *1 ؗp]ٕ ~ogN ㊨ Ft'ӦOHMJ*'ݜ,I]nM pr^ܦ9%}rUy[}Jq\kAV!+4"bFH8xi 1-ŅmVUVd1>`}Zgٻ0yLN 7<ʕ(mvP Y3r1QemREt)ƒˍ\Z9Ԫ%f":$ oXͻ濶xF()Ah/Xkv/Tf֤[.VS@BBg I'c2KCG,_t`h5E+L,D̺{[G0qxQ쟦>Fes'-|!|"I+[0gItV!r[ {љx6Tb8̯2?m_US6:"9zwInL|wR&@_PhQgQL\W!  'δq1J9uz30k:m`= 8u|.!t1r5KJUhcM9+ 0qcU =Y4ķo]ECf$d\/07K":Az,I6;E\?X؊%k:=㭦J Y;|wCx:)㈏oRΚ}Aֵ**8$Ѡ ş:f9-KaTȥ`5&=EVK!*1~%"ҤNqk <ż)Gt|V KQ2gCHl d+|0qD -~$DM U$jur[w IB۰1P8GR1fT (/jȈ:.4eC X jTf+V5]IooYȊWi51( ;%clH@#R?~(x#9kDFc7"EPLh> Nj.Iډ(H 4UJ( (!Yb8Tk&4^#˹+,DX#JDrb>@Ƥ@ɗ׸ܔ 3alKʪYǡWRm'⃥Xh;)SYњl`g_Pªn#(wn %z.`@(TDJDG3rhޕ9cD$ nIsГ#d4gw";qBW~w^g\UəH ܎؎ Kr5$2 j ۪{ ;u2/nJ[Wy{rN M #@TE}>E貥?łfBiAF/mNID9k&P+m\*BCe T%t'5R3/fQ@Q]ΧFەn̰Yiq*zsf[oeh}+ ø)2"|Ha7 Ġ݆噎qwbn-)>zpFc}G'h0:L$} :2bQ94a̋~_@FKT2>G JٻcW_qA⌺%itéHdiRe VMMGh/p:I~=qXe#T$nS5 ҷձ+0 QRFzo}pFA?ApcuR>vcE ;ro&R1uJ*js?%3+ q%f׈@7!%!nHR@ -^nvގ.Gs=euHNݻ e{7Wy۳L3A%@TsƱ) l,A\lnb)F/ݐ'"V_|qHL8QA":|meho~janĻU]3RÅ_A^hYMelR1)<9KXoDޫ)ܱtNZ`W*EՐ$sㄹIKVpncEuhDQ/9[^Cq-f%yNÚ9%9HU2eW?nf\(wJ b$_3WC9lgFWZZ^ѝ5vYҭ`ֳ{݇{(UQq05fDzs\0)=nU; ō:UqD~YV.R6!aD2$G 0왹hTmmIq3޳YY9A>9dGyՎz˘;<`E k\*PilJ>{pRC̤(Ȕ%F'J&ce,f6Զb\OSt);!i aIVb8]UxZfc"4 N"TX½mIM؊Ju p hg +jgndtv YK~@%+)g κbxI`勥ߏL@|ey^J~ 2AH 1@:DN  @] 猁1c/F>5q^V'-^k\* 2v* im)bfeDl;5ra;at`#;SƣMk:LP04D)+~x$hm~ou~ +) t)HuqP lFT0 ,3j&Z, af3F[=w@ E^3:t47|6zUu@4v[lUo w`Yl6}SZl?hTW4ݽW`LwD fWsT: b:X5Z] n{5 ؂cŖφ۪_9\] şj;waګ( pS|o(-[J!J9~#4qCS`)5Ъf3#,8*J $*y^5x>f;q9xp<\&'<찃J`D* yo ַ^?y1 %Hp#,S[DeV18uZZ]Ӿ^sn#k!8v>7|H ݟ'ɓ )M>IWnN+4򧝺L3Ԏ@ޣa_ؐxvP]*;hUD/K??YQ;=wQ`7b!U,?;WƦ Dʮ;ҋԳ % ì%\OV~kY6C 5>U|r sk4oxL|^9Bi Gp>K斞=XqK;aʪ:`!MbBn67PI nTj_l¿\Zy**!A~UOf%NGмWMx 03_$Α֣-5$pNw6kd_W3VHI%.c@*.#=:b SC镇Ng6#b)%ۧfɾcm@2F1, Z~M/l C8M%MZ}s.'mB9)a1] Ra<>Z6&E5U``҅~#Q`RzoKAJpp]f/Y}r1JP7$S2&,Mgf;؟aqwH ynǞբCI/(:sd:6Q&GZ go[JwΔSWǸ x.k@_/V%}FjnyƼCEtAnr+oKJPnalc4xfxvp #+0VYXܖڤߒ@Srf62/"K_Ծ]p7OIݽFasġ66ͫ6Olp:H8z!Fl8/Vh-lhuMT] A_7`Ԥ6 JĹ7_K(ݭ~r=o[YpG7bApYc"\Nm4^wB.A8=g88ۮhU8զބPKApI/K!Y,eWZt|oI"~fqJ6nU @S%%P|37OD$7͚/p \!tMTeB; V}[ߐ5? IåއHBe+TV領inJ}cq>rG^ZO1mJۙ~},Ṡ%g8Yް| SX9I:]R9K+;gO|c ʄBJdlƧ7Ҥ uN@|4]/+~D% RЗbc2vk+辻1N c~;&h+ 9yu0tZ|ZM\8X OB{o%W9eмz4í $MVplHeR&A2>bR=հn$z3=[xdLiKO9{Pj_:6#uGVbWjŲuQr.H;xl TI]}qPE3=Bq(d[`B3X؅zʭ]Z1lSdifjp[}߶95\ /hKGp&I<(yCzA Φ OȘܳEj7!KI;歵^>˜˅=~1Z#I}?Qݱ{b4lcЅ]}jd>OL ^.qnvdU7ۍEW7׍LM`i(NeTQ9΃GpC%Ń9&m3oXieh- 2Rrp$ m5ǀ ӟM6st9[$щ e|Dj:Gn'Z ?_⨓reݺzƒ.~"X84VLڄFG*+[E9H K D!r8@JK|v>.-3kW=0]q[sxݦkdM%PÑK( syIڈU=B+L;N`~=#= 2^&s+H+Puh` 8oA3wV6ԏT?PJ\nXfѸLUZL@e7Yy1k퀇 ޻3]L|V W4];ٷ4 *{NyswdR}7Н;Yx;ŏr#/NţFT\(L$9]`o"{O~}AdžgNzSN!lmo ){&s# ģRin 8AC:^u] +430x?4⦑9gG84IK^i L:hwUƀ\h?H bWͅtRRn w(v.<͋֟y?+nV`Hqo W?s5T ze&;$j5/{u $(JQ #˝|basfu)UpѰpHҟ+[@ڬ+vUV( (}SXFܼSOZejAwggE#Jxf>o1oEFOPv>Ēz ¹*a!t6~PːzI)ѵʼv,,¸H& 8is夈 lOӊHo0:˄rbnoZCb-BӂF~U͒kVqCʻpwSGl'pf l80Qq>qQdžH(Ge)2#h9M"i߭j%/Sh {GC )ھ U:\4ߕ..fVKuG+)kܠukGhC 2wK`.vO˽wj5QVJL&bpC/}!1A!X|&u5ò`6Jsu|68rn+'{`r+B/o c^?CzJH97۫#2۵k0n%U%,J0x!(wُ;*ml:taA=C@ܘSƣrq !pQyv#! E;-McBo2 UFw yK 7J 79<"8/])[/dR[ĢXeK ._z l,K'yȠ12LVz$B M! (L| d]6^hOΩzXH ^~#o{TTS"࠭\C$ 6-*I;D<-7\T$th(5ÀrBo+;I}șrdBk ͪo(^ѴskCJ}onآTZUdXT\fJz1vOIG}ˮ9Nzc=NfV0NRH4gAr[c?`T\-/J/zb~U:Lp+ 7=FsY iϭ)|YAZ3cEtd132zY@%~Us߻ « UJSMNhW0ٌIk,_f?I]A*8hƧ)QArvuM}_[kM-DL'~廸VQB 0$j~ }*J4EC/BF[|ٸSoV?tJ.힕1zǻS,$4~@l_ĭ6c"zdVB*> 5h7~|,:Y1gaSj_U2m!Byp?1 0BǗu!l|1 $w1?h),U"–Z3d0 ڇU5/v}R6I ۾+,-4$tRj:ny[J;`lĖnO,< .YӉ0Uf-/LP̞E+,1w~#ukZRh:5e%@9趇(I* r^݌hmʿ$ʧUHayّ`kSʱ̹@ni'NaW ;vRmhS{Щ RFl'/itܜ[8C?xPЀ8c 0oeFV9v˾ysl٢4Y DeF.l3GxZx//D۬I$LB+_ бߔ\7c;.~=3X:aRyDPS0uG$yO3wd*@!o.=|#nà]B@KG;ê:E.9n{Ԃڕ%˝zwlML:qKL#8.7}BxpVHƶ5͛ndNkG+!?3)Jo}iZ _g~[:yָm8h 4!)in{k>mR.I 5]{{ ܶC˯mh\ɼ{cƓ*U(nuJTaI(sp>UVŪ! msC(N4Zw-0s-{ (GR8%w.cGF1 .d~| (85vӻ/S,GX|dbFlW*3ȪG4HӜy;-xWm8-5(mml&Cb#].bHztu1ti ;Hj{p.W̄#a@_>Kl934 ko 1z <ȣc;BWٓ^;bXܚ"Yusm? ~۞Oވbc.sL T='8M/2CSWk},~pis 5:Hy(T\=Wz҂zr7 +ZO0xwÇ%e1jE3gcl |u[ƥ)Po+k;ڧ˭~&b:Fꗭq8/e˧gX=m.ѶzS'5͎5du@TA)IRUn$NlP: $ީ+$6LА ?U"zY/B'Fi/1fmnA[mэ¤4kkV/>j6:| ʐ+W"}aCQXruL5D͝&md)DLF|x:'TQ oiU 3VL_ 1F4 p^=%] f)ɟ4F!KMʳh>;ԸrO%`d,u3Tt 8Οm(28ªPۥRٗL p[Q2ݾC]%=E߃JTBrJ>bZxɩ&%Y`yޠ2&8m$O7tU¼fa9o3gOjGSLJR02e=RS=1)ljܧA^Y+lGdr1obD_oN,F?ՀMV/p?u<Yd qHøYqY\` p(0폖YvvASz{Aeyꦊ}&`^M- L/X]5F> ᒑT78Li|w|:E JT5v`—=㕖n8 oO6_M_{{f]ZțK9rKfjNmnhJq{(aDP'7 ZdU`ozŠtͫiRr("ٟ{݇wr܋} BG?@+<M/tCGl0qwMiF1 ZG+]QuS+#2_tZqڭUf@T# LC-zV^ qJa:tcga-5{^,BVȔyzbGmy).?!g+RCldKATF˙#5ӱSTG܃nҽFz0anpMgDܡ[9.)UNv8qA=I.hɣdUO!hnrILY&ߤG_kg{#2?rNIGvt?zl g~;$̬쫦Ar8\Ӑժb2mH;Bz@Yh}t7]+3(M\ S¿q2<i(͏.bO }k@~}S0I=j;r9}$h++M.֚( >]c/}cj^_2tڊьڼ_ĵ}<) ܢ@_ v#ygʭfggs6i~ 3Hu4!?^߉Boffg(yrtHLQuk9en|#,wKV#]XI&BKǸ\rj8ffPk|D]s!H$0S?1*bǫ 7?dQ~KA'=d9uc{tK>tw?"ٷQ@iVWFD}U)N@%NB1ZY,,, `YjD/lUUxvi*B֓`d>1=KHc3{I/sڴ@-{}/-2b;/k;[0|vEH&_L6E+ݻB;>w<##TE.>^bLuAtJ囉h =DY\:EuŻoCTF,@#w|0j qJAEѾ1Z*3۰?:oz6⪅*HWы)M^mE_#xC.M[XpC 2H2zsvѨ(%|Q?>1uhaNyhF48Zή-l`>yq.,Vh@y6YSNC0O@z`Aۄ}_UJ |ZI&spޔeA#mЭV,5ɝqSIgwj:\E>aωiJK!M֚mD /2^*ke4{BSt97%5E&)bDK_Dg/ *6w!Nbϟ턺>m;4\6Cdɧzt3"CjCÅ5S-hz{ϩsȦg3`vn./eS% }6SF\b$u|#U`).Aebo{TIcÃ?va$exC\!W:ͦF#Ͽ:SeUw_h1rۏZj]9JnG[a1\Qr1c /Z༟%XnsCd|5vn>cUk)^zy PL]=|!TY9BW-ZD ,j-fq)N]`n<cݼaE&u?p t],y "eEJ8k)z"ؙE](d?X%3~v skͺ6,n! '*րûWI9r\HRQٔ13j 5uLR#nbE\AJϓne\殰Xcf/O1 a:`a]Sl]{嶢maf̷n#I?!\>uK}VyՏLͿs5"}30FGg X*YUSjy߈R`8mԒ)uXl+[LeDYkfEZ _qB$*$ #pFu[QB:UZK2a|:W~07Zpw4:3D/[9IĤh6P{uMx,G^tޭedA1q뚜T"=MFzzS6q.h#`U` y$eJ涁o I841Κ+,iS;ElU$;T?QoBٰl"jVFq\JN\#_-/E{/Q%mw܏@["s3^y(,vIA| D14بM&szRΖ}7P#@q? (hc'ͬ i?i SoZ-Kdvc'0$RN@"appuP&TU^uO7$bpM9tdi{֕/'2DCWx?CL=b O%=`Nʹ< {ePkfwn`}C̀$+}yg"_nz"VPwQ JLqfVJޚE'zMT,'W]h-`LD8ZC:HEF=,nn%p2'pG0a3c.;{FhfЄPPsD:7}۸Ͷfe`I L27Ayt~-?!lqqJFTAlG3V0{#lМz,*%[Wأ*˻sխGOtX^N%=M4_|Tb/~ #mqGŃk˳r4*_qws }/cBˤ}=+㜖OR巬m1qQXȺ)p"wH4C Ui:ւxG70w(]ϙ{2=U:Ht߾2neVq Smѽ]swиroEn9N$%Z;dk4ɸfl/tK "sq"{毛 4l!U&~˷T&ђQ'K\oR@Drݮ MEfi]nr .lؙ%-5M :wkUç3U_n+%j<jf !pnkųp^^' ѶQQ?^t=c@WyRcG0g] 7t1 IH왪j1"+`K~˼^B_XʕhTo֥2g5CiJ'zTkO]oI3aJzYԕMgW8hg h|ZӜrz`zҫC.VfVi0⫵;i\-!C/ViU2i S)@7} S#NA J䭍\4l1VbdV%9+E{6\2Q3xܓ b[@}~؏Ғc$CC# ˃8 |EYTm@זyy8n~g6[#*#7^,-3%PY\Ny*Q׊!a ,JlPAQՕxK47_Ag9T_ 8]i/"]]PVcwdֶ n-!٨ЧA+Pj^2) AyMGsC1â@L-Kct(v|NuOWUEDKFTv1kF}zex%~l<2otY1ԍ=K4S5 ~%X7#Eq(o|~$Fq,Dh'TK$_mhB離vc"ڐ)#a| |-pCce'Fn:5d#ZS%H:W57tCZq*DX}":LBN:l练;g#H~LIs$]#ПPcxS͛J[1胷fH֧P#yzp_w"S%8ʽߡ2'Λubx$P>@)=;k%,+&9B5]ipkCskTTqZ#k"8fR:7b׍IΚ.ʞZS]S[e`]%Zl;2br;r/w* .2SPq/67捏Fb̲