libpcre0-7.9.0-2.3.1>p  @D\lJ4./=„^BN#.0f-63CY> _kX8@INX6~=/7Ʋb%ql.<^LvM&ۮ@,d}h!׻K)q/~4q^g.T4G3n~29 /WWX\yE_JxnJ£)l%S`Gp%mۺ#+.nj[@=4;ˮaRpz`$PzSENwYlSۣ641a2dd9657c6fb2a9cde511b0dd94bbdcfd0d98LJ4./=„GhWW(I2qkILsA_#anyK/5&ܾ Έbb(~ƅ^[4 Ԣ'wr25|WR˸_J F܉,iʜy!AT9A6`[G| //WN'}>oc[9Ddcٗ5 8ϼ>6i=OzL > jo >fa)˥3(-y@kHVfx퉪OqNw+`=H6{S=׈>7V?Vd   I\`hlz +18@ D H P r    ()809:>U@UFU!GU4HU<IUDXUHYUT\Up]Ux^UbUcV$dVzeVfVlVzVClibpcre07.9.02.3.1A library for Perl-compatible regular expressionsThe PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5, with very few differences. The current implementation corresponds to Perl 5.005. Authors: -------- Philip Hazel J3build20openSUSE 11.2openSUSEBSD 3-clause (or similar) ; Other uncritical OpenSource Licensehttp://bugs.opensuse.orgSystem/Librariesftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/linuxi586J3J3ac2901bd2d474d1999d1b304f893d196libpcre.so.0.0.1rootrootrootrootpcre-7.9.0-2.3.1.src.rpmlibpcre.so.0libpcre0libpcre0(x86-32)  @@@@@@ pcre/sbin/ldconfig/sbin/ldconfigrpmlib(PayloadFilesHavePrefix)rpmlib(CompressedFileNames)libc.so.6libc.so.6(GLIBC_2.0)libc.so.6(GLIBC_2.1.3)libc.so.6(GLIBC_2.3)libc.so.6(GLIBC_2.3.4)libc.so.6(GLIBC_2.4)rpmlib(PayloadIsLzma)7.94.0-13.0.4-14.4.6-14.7.1ĴJ/@J)J!J+@J*@Id@H@G@G G@G0W@F@F@F7+F5@F/BEb@EE2@ECF@DA@coolo@novell.comcoolo@novell.comcrrodriguez@suse.dedmueller@suse.dems@suse.dems@suse.deolh@suse.decrrodriguez@suse.dero@suse.decrrodriguez@suse.decrrodriguez@suse.decrrodriguez@suse.dems@suse.dems@suse.dems@suse.detrenn@suse.dems@suse.dems@suse.dems@suse.dems@suse.demeissner@suse.dems@suse.de- add obsolete/provides for pcre-32bit (bnc#539543)- split package into tools, docs and libraries- disable static libraries, shouldn't be used now- fix symlinks to libpcre and libpcreposix to fix the build- moved libpcre and libpcreposix to %{_lib} (bnc #507449)- Release 7.9 11-Apr-09 (bnc #500734) Mostly bugfixes and tidies with just a couple of minor functional additions.- obsolete old -XXbit packages (bnc#437293)- update to PCRE 7.8 * More bug fixes, plus a performance improvement in Unicode character property lookup. see complete changelog at http://www.pcre.org/changelog.txt- added baselibs.conf file to build xxbit packages for multilib support- update to version 7.6 - The main reason for having this release so soon after 7.5 is because it fixes a potential buffer overflow problem in pcre_compile() when run in UTF-8 mode. In addition, the CMake configuration files have been brought up to date.- update version 7.5 1. Applied a patch from Craig: "This patch makes it possible to 'ignore' values in parens when parsing an RE using the C++ wrapper." 2. Negative specials like \S did not work in character classes in UTF-8 mode. Characters greater than 255 were excluded from the class instead of being included. 3. The same bug as (2) above applied to negated POSIX classes such as [:^space:]. 4. PCRECPP_STATIC was referenced in pcrecpp_internal.h, but nowhere was it defined or documented. It seems to have been a typo for PCRE_STATIC, so I have changed it. 5. The construct (?&) was not diagnosed as a syntax error (it referenced the first named subpattern) and a construct such as (?&a) would reference the first named subpattern whose name started with "a" (in other words, the length check was missing). Both these problems are fixed. "Subpattern name expected" is now given for (?&) (a zero-length name), and this patch also makes it give the same error for \k'' (previously it complained that that was a reference to a non-existent subpattern). 6. The erroneous patterns (?+-a) and (?-+a) give different error messages; this is right because (?- can be followed by option settings as well as by digits. I have, however, made the messages clearer. 7. Patterns such as (?(1)a|b) (a pattern that contains fewer subpatterns than the number used in the conditional) now cause a compile-time error. This is actually not compatible with Perl, which accepts such patterns, but treats the conditional as always being FALSE (as PCRE used to), but it seems to me that giving a diagnostic is better. 8. Change "alphameric" to the more common word "alphanumeric" in comments and messages. 9. Fix two occurrences of "backslash" in comments that should have been "backspace". 10. Remove two redundant lines of code that can never be obeyed (their function was moved elsewhere). 11. The program that makes PCRE's Unicode character property table had a bug which caused it to generate incorrect table entries for sequences of characters that have the same character type, but are in different scripts. It amalgamated them into a single range, with the script of the first of them. In other words, some characters were in the wrong script. There were thirteen such cases, affecting characters in the following ranges: U+002b0 - U+002c1 U+0060c - U+0060d U+0061e - U+00612 U+0064b - U+0065e U+0074d - U+0076d U+01800 - U+01805 U+01d00 - U+01d77 U+01d9b - U+01dbf U+0200b - U+0200f U+030fc - U+030fe U+03260 - U+0327f U+0fb46 - U+0fbb1 U+10450 - U+1049d 12. The -o option (show only the matching part of a line) for pcregrep was not compatible with GNU grep in that, if there was more than one match in a line, it showed only the first of them. It now behaves in the same way as GNU grep. 13. If the -o and -v options were combined for pcregrep, it printed a blank line for every non-matching line. GNU grep prints nothing, and pcregrep now does the same. The return code can be used to tell if there were any non-matching lines. 14. Added --file-offsets and --line-offsets to pcregrep. 15. The pattern (?=something)(?R) was not being diagnosed as a potentially infinitely looping recursion. The bug was that positive lookaheads were not being skipped when checking for a possible empty match (negative lookaheads and both kinds of lookbehind were skipped). 16. Fixed two typos in the Windows-only code in pcregrep.c, and moved the inclusion of to before rather than after the definition of INVALID_FILE_ATTRIBUTES (patch from David Byron). 17. Specifying a possessive quantifier with a specific limit for a Unicode character property caused pcre_compile() to compile bad code, which led at runtime to PCRE_ERROR_INTERNAL (-14). Examples of patterns that caused this are: /\p{Zl}{2,3}+/8 and /\p{Cc}{2}+/8. It was the possessive "+" that caused the error; without that there was no problem. 18. Added --enable-pcregrep-libz and --enable-pcregrep-libbz2. 19. Added --enable-pcretest-libreadline. 20. In pcrecpp.cc, the variable 'count' was incremented twice in RE::GlobalReplace(). As a result, the number of replacements returned was double what it should be. I removed one of the increments, but Craig sent a later patch that removed the other one (the right fix) and added unit tests that check the return values (which was not done before). 21. Several CMake things: (1) Arranged that, when cmake is used on Unix, the libraries end up with the names libpcre and libpcreposix, not just pcre and pcreposix. (2) The above change means that pcretest and pcregrep are now correctly linked with the newly-built libraries, not previously installed ones. (3) Added PCRE_SUPPORT_LIBREADLINE, PCRE_SUPPORT_LIBZ, PCRE_SUPPORT_LIBBZ2. 22. In UTF-8 mode, with newline set to "any", a pattern such as .*a.*=.b.* crashed when matching a string such as a\x{2029}b (note that \x{2029} is a UTF-8 newline character). The key issue is that the pattern starts .*; this means that the match must be either at the beginning, or after a newline. The bug was in the code for advancing after a failed match and checking that the new position followed a newline. It was not taking account of UTF-8 characters correctly. 23. PCRE was behaving differently from Perl in the way it recognized POSIX character classes. PCRE was not treating the sequence [:...:] as a character class unless the ... were all letters. Perl, however, seems to allow any characters between [: and :], though of course it rejects as unknown any "names" that contain non-letters, because all the known class names consist only of letters. Thus, Perl gives an error for [[:1234:]], for example, whereas PCRE did not - it did not recognize a POSIX character class. This seemed a bit dangerous, so the code has been changed to be closer to Perl. The behaviour is not identical to Perl, because PCRE will diagnose an unknown class for, for example, [[:l\ower:]] where Perl will treat it as [[:lower:]]. However, PCRE does now give "unknown" errors where Perl does, and where it didn't before. 24. Rewrite so as to remove the single use of %n from pcregrep because in some Windows environments %n is disabled by default.- update to version 7.4, since version 7.2, more than 40 bugs were fixed including multiple vulnerabilities [#325921] . The list of changes is too long to mention here, see changelog.txt for details.- added fix to run ldconfig for libpcre*, Thanks to Cristian Rodriguez who provided the patch (#298291)- update to version 7.2, fixes bug: (#293752) - Changes from 7.1 to 7.2 1. If the fr_FR locale cannot be found for test 3, try the "french" locale, which is apparently normally available under Windows. 2. Re-jig the pcregrep tests with different newline settings in an attempt to make them independent of the local environment's newline setting. 3. Add code to configure.ac to remove -g from the CFLAGS default settings. 4. Some of the "internals" tests were previously cut out when the link size was not 2, because the output contained actual offsets. The recent new "Z" feature of pcretest means that these can be cut out, making the tests usable with all link sizes. 5. Implemented Stan Switzer's goto replacement for longjmp() when not using stack recursion. This gives a massive performance boost under BSD, but just a small improvement under Linux. However, it saves one field in the frame in all cases. 6. Added more features from the forthcoming Perl 5.10: (a) (?-n) (where n is a string of digits) is a relative subroutine or recursion call. It refers to the nth most recently opened parentheses. (b) (?+n) is also a relative subroutine call; it refers to the nth next to be opened parentheses. (c) Conditions that refer to capturing parentheses can be specified relatively, for example, (?(-2)... or (?(+3)... (d) \K resets the start of the current match so that everything before is not part of it. (e) \k{name} is synonymous with \k and \k'name' (.NET compatible). (f) \g{name} is another synonym - part of Perl 5.10's unification of reference syntax. (g) (?| introduces a group in which the numbering of parentheses in each alternative starts with the same number. (h) \h, \H, \v, and \V match horizontal and vertical whitespace. 7. Added two new calls to pcre_fullinfo(): PCRE_INFO_OKPARTIAL and PCRE_INFO_JCHANGED. 8. A pattern such as (.*(.)?)* caused pcre_exec() to fail by either not terminating or by crashing. Diagnosed by Viktor Griph; it was in the code for detecting groups that can match an empty string. 9. A pattern with a very large number of alternatives (more than several hundred) was running out of internal workspace during the pre-compile phase, where pcre_compile() figures out how much memory will be needed. A bit of new cunning has reduced the workspace needed for groups with alternatives. The 1000-alternative test pattern now uses 12 bytes of workspace instead of running out of the 4096 that are available. 10. Inserted some missing (unsigned int) casts to get rid of compiler warnings. 11. Applied patch from Google to remove an optimization that didn't quite work. The report of the bug said: pcrecpp::RE("a*").FullMatch("aaa") matches, while pcrecpp::RE("a*?").FullMatch("aaa") does not, and pcrecpp::RE("a*?\\z").FullMatch("aaa") does again. 12. If \p or \P was used in non-UTF-8 mode on a character greater than 127 it matched the wrong number of bytes.- added --enable-unicode-properties configure option to support UTF-8 character strings in \P, \p, and \X (#269749)- corrected assert compile error- update to pcre 7.1 1. Applied Bob Rossi and Daniel G's patches to convert the build system to one that is more "standard", making use of automake and other Autotools. There is some re-arrangement of the files and adjustment of comments consequent on this. 2. Part of the patch fixed a problem with the pcregrep tests. The test of -r for recursive directory scanning broke on some systems because the files are not scanned in any specific order and on different systems the order was different. A call to "sort" has been inserted into RunGrepTest for the approprate test as a short-term fix. In the longer term there may be an alternative. 3. I had an email from Eric Raymond about problems translating some of PCRE's man pages to HTML (despite the fact that I distribute HTML pages, some people do their own conversions for various reasons). The problems concerned the use of low-level troff macros .br and .in. I have therefore removed all such uses from the man pages (some were redundant, some could be replaced by .nf/.fi pairs). The 132html script that I use to generate HTML has been updated to handle .nf/.fi and to complain if it encounters .br or .in. 4. Updated comments in configure.ac that get placed in config.h.in and also arranged for config.h to be included in the distribution, with the name config.h.generic, for the benefit of those who have to compile without Autotools (compare pcre.h, which is now distributed as pcre.h.generic). 5. Updated the support (such as it is) for Virtual Pascal, thanks to Stefan Weber: (1) pcre_internal.h was missing some function renames; (2) updated makevp.bat for the current PCRE, using the additional files makevp_c.txt, makevp_l.txt, and pcregexp.pas. 6. A Windows user reported a minor discrepancy with test 2, which turned out to be caused by a trailing space on an input line that had got lost in his copy. The trailing space was an accident, so I've just removed it. 7. Add -Wl,-R... flags in pcre-config.in for *BSD* systems, as I'm told that is needed. 8. Mark ucp_table (in ucptable.h) and ucp_gentype (in pcre_ucp_searchfuncs.c) as "const" (a) because they are and (b) because it helps the PHP maintainers who have recently made a script to detect big data structures in the php code that should be moved to the .rodata section. I remembered to update Builducptable as well, so it won't revert if ucptable.h is ever re-created. 9. Added some extra #ifdef SUPPORT_UTF8 conditionals into pcretest.c, pcre_printint.src, pcre_compile.c, pcre_study.c, and pcre_tables.c, in order to be able to cut out the UTF-8 tables in the latter when UTF-8 support is not required. This saves 1.5-2K of code, which is important in some applications. Later: more #ifdefs are needed in pcre_ord2utf8.c and pcre_valid_utf8.c so as not to refer to the tables, even though these functions will never be called when UTF-8 support is disabled. Otherwise there are problems with a shared library. 10. Fixed two bugs in the emulated memmove() function in pcre_internal.h: (a) It was defining its arguments as char * instead of void *. (b) It was assuming that all moves were upwards in memory; this was true a long time ago when I wrote it, but is no longer the case. The emulated memove() is provided for those environments that have neither memmove() nor bcopy(). I didn't think anyone used it these days, but that is clearly not the case, as these two bugs were recently reported. 11. The script PrepareRelease is now distributed: it calls 132html, CleanTxt, and Detrail to create the HTML documentation, the .txt form of the man pages, and it removes trailing spaces from listed files. It also creates pcre.h.generic and config.h.generic from pcre.h and config.h. In the latter case, it wraps all the #defines with #ifndefs. This script should be run before "make dist". 12. Fixed two fairly obscure bugs concerned with quantified caseless matching with Unicode property support. (a) For a maximizing quantifier, if the two different cases of the character were of different lengths in their UTF-8 codings (there are some cases like this - I found 11), and the matching function had to back up over a mixture of the two cases, it incorrectly assumed they were both the same length. (b) When PCRE was configured to use the heap rather than the stack for recursion during matching, it was not correctly preserving the data for the other case of a UTF-8 character when checking ahead for a match while processing a minimizing repeat. If the check also involved matching a wide character, but failed, corruption could cause an erroneous result when trying to check for a repeat of the original character. 13. Some tidying changes to the testing mechanism: (a) The RunTest script now detects the internal link size and whether there is UTF-8 and UCP support by running ./pcretest -C instead of relying on values substituted by "configure". (The RunGrepTest script already did this for UTF-8.) The configure.ac script no longer substitutes the relevant variables. (b) The debugging options /B and /D in pcretest show the compiled bytecode with length and offset values. This means that the output is different for different internal link sizes. Test 2 is skipped for link sizes other than 2 because of this, bypassing the problem. Unfortunately, there was also a test in test 3 (the locale tests) that used /B and failed for link sizes other than 2. Rather than cut the whole test out, I have added a new /Z option to pcretest that replaces the length and offset values with spaces. This is now used to make test 3 independent of link size. (Test 2 will be tidied up later.) 14. If erroroffset was passed as NULL to pcre_compile, it provoked a segmentation fault instead of returning the appropriate error message. 15. In multiline mode when the newline sequence was set to "any", the pattern ^$ would give a match between the \r and \n of a subject such as "A\r\nB". This doesn't seem right; it now treats the CRLF combination as the line ending, and so does not match in that case. It's only a pattern such as ^$ that would hit this one: something like ^ABC$ would have failed after \r and then tried again after \r\n. 16. Changed the comparison command for RunGrepTest from "diff -u" to "diff -ub" in an attempt to make files that differ only in their line terminators compare equal. This works on Linux. 17. Under certain error circumstances pcregrep might try to free random memory as it exited. This is now fixed, thanks to valgrind. 19. In pcretest, if the pattern /(?m)^$/g was matched against the string "abc\r\n\r\n", it found an unwanted second match after the second \r. This was because its rules for how to advance for /g after matching an empty string at the end of a line did not allow for this case. They now check for it specially. 20. pcretest is supposed to handle patterns and data of any length, by extending its buffers when necessary. It was getting this wrong when the buffer for a data line had to be extended. 21. Added PCRE_NEWLINE_ANYCRLF which is like ANY, but matches only CR, LF, or CRLF as a newline sequence. 22. Code for handling Unicode properties in pcre_dfa_exec() wasn't being cut out by #ifdef SUPPORT_UCP. This did no harm, as it could never be used, but I have nevertheless tidied it up. 23. Added some casts to kill warnings from HP-UX ia64 compiler. 24. Added a man page for pcre-config.- fixed wrong usage of assert() call- fixed build for all architectures- update to new version 7.0 Changes: As well as a number of bugfixes, there has been a major refactoring of the compiling code, which makes it easier to add new features, including some new optimizations. A QuoteMeta function has been added to the C++ wrapper. There is now a mode in which all Unicode newline sequences are recognized. Support for the Perl 5.10 syntax for features that were previously in PCRE but not in Perl (named groups, possessive quantifiers) has been added.- CXXFLAGS needs RPM_OPT_FLAGS too.- update to new version 6.7 - finally removed evil configure patch - When UTF-8 mode was not set, PCRE looped when compiling certain patterns containing an extended class (one that cannot be represented by a bitmap because it contains high-valued characters or Unicode property items, e.g. [\pZ]). Almost always one would set UTF-8 mode when processing such a pattern, but PCRE should not loop if you do not (it no longer does). [Detail: two cases were found: (a) a repeated subpattern containing an extended class; (b) a recursive reference to a subpattern that followed a previous extended class. It wasn't skipping over the extended class correctly when UTF-8 mode was not set.] - Applied a patch from the folks at Google to pcrecpp.cc, to fix "another instance of the 'standard' template library not being so standard"./sbin/ldconfig/sbin/ldconfigbuild20 1256141823 e7.9.0-2.3.17.9.0-2.3.1libpcre.so.0libpcre.so.0.0.1/lib/-fomit-frame-pointer -fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:11.2/standard/6682422f27b18bd0460ae81e7ce20057-pcrecpiolzma2i586-suse-linuxeRUDQT4?] b2tDj0®f1n BbM ~"JQTbfC]Du{rZn> 5G4#Ofx8mW6/IO{oǿ6Rrd[k!=SΘ*lx;bPˇ56Ll(@gvosF >]lav>Z ÊǕ WIüơԅKjJaq ; ޸=f ~c*K曊 }Ȗ-}TꓱO"wѷ6Igןx|Gcn(B*q=ly9`sJW ٗg޲|T|B#6J*t#Y9du!D!$WdI%hԸ*Rh-\zv$*]1h㣥b t XY0`@',PK:#:V<[K4f CU]it{~%Us\ \tԇhdzKWBU jiWrm5;ƣyBv<:*" L&~bz5tl!yQ$9<=$ߌ\-B>%Ole!5k )z1LiTi7w<.uWq\vifoS0@Ukb܌ib{]֦qs9^թ>˰bl :STML`R|5a*w . ]=yYaAf?%QcZqp@irsg:O^K<6`nx`ScU#kynZ#gGu4_/Aq=ے+J֌C(1C@w y=Nm!G۷}<HCtvf"=!07k?zϯ}ДOdJƛPV H*雙}A;hp!aMEd"6|LA:ܨ>tgkgw18 !]Tڷ2 !J4)O"OlJf#ܣ^n${$FJmdLx͹|o_>;)?,RX>/;~mMRR6ֿ?\qXg7iMerw8ܡ-$㕥yI[HE1vۖjnACoaJ?/Ih?eu>,McWV<>ڴsՙ N8z Rn+[[uD`.B bFKީ`RA5ĕAŌeӗ{MAAdu@f&qkܳQX43J@/$@{R/Ip$.S2ȳZ5 `^`a6EZ[Ni\Ûn|BiɑcCu8C|0VV< N>*'o0tX*ԜhUv~+ e?%Co>D($IFTV4"hs.Ԍ#H *BPQ!l/a+RW Az{zrtyF!}3RWpn =xzD!*H#Jk79|N0)㴍JGO *FÚYl*8Su(4|*s1+DOCɄ9WrDTf|\lߩl]UȚzKn>].A2XyOSv`ՠA^4aEڔ발7"]K̜B_kn94BE$j\2 26V|[MX8"j}C,. E'ailv zqMwvuнo UAt*v}:*p'Q'FߦHXxt+G0M ]J!$T5Әysv({2ݔQւ-~pUz'V *ơw)g-@?1ڍ7=4VnƎv!-\'#~xw Sea}Mu<GZjZY,A£a|}3[+֜uڸ6D-lVb ediJ3نKn9=v1N{ SE dTdj[>\HQ*4r[dKo >/(7JN@ӡ~rfRBB6܁P[j(g:l Ru*BXQnkKս$z4lf/"inP.n;5-⬶/Y&#COie>y ܽd''a*f5ų|B`+b-3eB&_ s,C#xQ׋vo cx\GI* F 5r8 iq?#rT#N `6]~,~ɝYҸ!;!2M#JDҙL@ǫHvjB{[ `ϛ|nAō[11 PBx<譡,mS S }T(SY͸R .Eՙ+3%$ :~r82\k?卵GK'?r5*+ #?:%bMO2u'\vDžLvn}H] f"3"sjroy*p*kYf]P_7M(o&\]JF 5y jjhZELRe}fOS N7C؋C؜H)K$QʛŠ4 *BCF0*: aUǩb+4x.wXS.m'^aZgs zCVNznnMQa5}"chÄJF/IدC^4lvCFUkC@Gat_Q CRgQCdU^{Wvy@*IE"moG'֏?7.lw\\_k:@c'w،T# `yzdtYӜ=p>TWn(Y ۰7rlBqU ߮%k7SuG{Sht&8i@/ߖ8ͤE cq0!w#0b@[f`q0KM <9~ñjoY_3#9E7 HmCg&DI15ڻ} 2ϸU %tZ zc7=8~}XjٱB7о'iϩ A""*Z}ZgPK%2(<~߃qIPqh&Жv8Es3^n5z6j9g ٘pcl"_U&Ǥᑖ0$ѶM!q2M0F ݂ρs1e9:K^{êmӤF"NmEga'seeHJ;kAǹ8o:2AnYgB5ZJkɂrN?>:Q~n!Nejt+bɰupdqa#ʪ`\\:Ǵԟ3Ray22{HKiR7toUP.Uvu4˘Fo&X.]*un#'M 3 WDѿN~wB@m c܋lݒj-iAqPtiŌ8.5C,`?> Lfd$q-qν$<1]9I)$:X1'%_~Ew_"r٬LH媫ڇ]gȊSsux W3*"SDh~o.nmη-):wEM\>}VZqzNVEr'Η$*6Tǡዒ.3ʈ8ɫ W]TGIJ˞RxwB).,,GJ0K5^O״Յbm|b)t)`fh3yУy[,-g;^pC,~ TP4>f` :\X3nƜW_,nFkl=Of*RuaGpz ;pי6a#Q+] U++ga ` 7EEA]b)yL[F,s6꒝=F^0 oȭ\DCq1KO _ UUp.}P>jf *-*0k).mkeȝLmG !! S g޴Xx(H|G$=lm%ImVvle{U—|mߚyNdi+|IN[d$j@mh\ޓ3ʡd'_#M@h/-Ծ| c+@ֶjsj+ [#\},|b> 3lg& y ,^ CHkb\Lhd駺a5*: vŵ@ Cp.n`dQ<8΅U!,q\J_@jh8NYCǒe2B&6tmaɝlDؓ9>徍 lחU-,ϔ#2cGL)K> u7I(Gz RϚ[T=#PAR5Ɛyq>shNn0o*e&!]np[ r#l N' X+{Q~'lqi Yh <8%Zq'Ő݈hxuaM獱* 2 r Oѐd1v2[U5 m>邐+᳝/6.ޕ;)ŇfrҰg& x$e}ȠhS WPx>mNiv?q9lwf YMU,Ĵ!O& lV8,f6 ^o'ļCC;Zn'nZ0Lb7$42Nm5 [3qhU"O">KT{ȡ&m7mDǚ0ՓxK)f&,j)6zHVȧ6rDL=63{hgo[Bm17y!ث>̩Ffb!WX(q陿e}o3ދ;y6g<>,0'GGykN|hhruqϣnRT|migӘczNqwkY/+bhhj+lA~]VhB5p$]Jo1|Z?a &NI;YVaw \Í% 뱁-lox:`)fƽ7De: z5X5U}!(fp% u-ʙpLݍx=S')+yNI ڪ^mʵS)L\'.pLtPW +iޮ}6c|r!,[2~=ҁ0wK[vx_lC[gKɧcإa}d`~Hg!Yq$NJ1]繎U2y]iYe\vL*<25%h kp9qVMNdy8iӈ&94o)2Rz X^@?O$elt)m>U,"hLÚwQ @j`U$g+ յ녠/=É #O3$PDZd666K~df1䚩;!I8?w$g!h!HC3q,ҒB e8h ,“(BS3My,LP1[ì>ART t롶``KJiPA[tۿ\QБG(%PDX~aPd_VxnZ~@pS#VRԣwE/n"Qkᭁʵ\!#2 "r]rC*8Mm;@ş߇Cm/*Шl8\L"kV E䃘f'\GH2Gb_z?01 Jq鬓4R'a3x+$CUM[^pۯqbˊK2 W4ʾWtєG9!\Ⳙl⤦[}ܑ& IYh +1 [dkx˩!Q_TKADvvVqC{4,ޜ~|lPu_U ł:iQ_5S {zc(s'jX\/Usbfy(5WGƝ4^OB!'< d8.N*`[O1&`iێN"%3yLWƑ m5.qK*}!tKJ u2,}fPw}W|2w@\5m7`U:\bIJ́u;1N ,*cm*,O@ V(NpRNM|tϩ{2F fdV/J_F-D0)k>0ş4Ijۛa!:taގQ5Q%?#W/}dh aMV/f2>pvqppR`xr(=\.a §*sEV2 B\ʡ3%tocc ~9ky`b]I0E)leO!+jjʢf!P9X3[zJ; $C -U8 <b0ȃ 1:[*/$=J4S{⟒O(%k97E.(=9X QA%VZ @ُ'@Lp? CKUrA5٩ھA8lzrб+NЍ|@4waq)#Mfגˡ]$B%«I9lDVGK:{zk) (ȳ7,.d]J6z}>Y9F';;R::aJL|7SUZ1@Nkc%׻Jl3Uyw=KnfVp>ϙAϬ7*X=/z_W*/mk%蘔[Hӻ `%cJF"WA'h:{x}5|7щn)u?e22ocͭ095b;fA0ύ{f(P|6ϕYAT=,K/__$ՊUܓ<MCӅ8(?}tg0m 193Nu=~LRiàP*!du}\^ A\AN4(&B&'^ס.|zQf Ux_r{ӘE}2%`.HqRxڳI9,H_cyC͎WA'dkHӚN: hN^gǺk`2̗c-WnM+w:%ôEa ͏ X?Y | TUIn(܋4)m5cy ۱[P1LJs zwkZ'q oe<@GlmAHx>ypm( hÖ/:[`ߍ/yiWxR}}u巃T?ChMI=r숿HW}'F4G%P 1y*")4aE fB:vg˦L, ޝJDR!֤xF|*{%T;5UqcuCDtFR|ⷭgORN(B$M['K?J~>PFCn"i3Z'+әܬx\vHh# !pΩiOx\gK@=F4fcWglN'uC.LIK eƎ O&frhmMŤDj`nLJ+8Y. a'uR@8变꣓N$Wk%ԘD\EE™j򞛇V دz~-U (~%ѱao F = p /!vr8t>񈜠RL6lŃ -=L' hdN,@Eo.ѐg_ r1G*%p{Z82wGS@l 4%&vk >3@`xdCI7TCcƩ\#:I}Wmԛ|b{_hEwQ oSs 骣>:?~)St;_5 z 4Q05 -xF岻C'"UuK1'u*!,+w\stFBw¨-.YJ54ϒb1; $MY̙TL٨4~'}VX&z9E-ݤ:D*MŮy: ]+oȘ,4OǨt^{60l#h =ջvۼ_Kq㖎v~!Bי?_$A}֣BҤϪunjNˠ$1E KH( C-X3zh#g'1Z+xn2vQb}eh/׾۽~]o1kagD }R;dF%L=#m,۬lR2{6!:Bި*ZNHM(w&k~Z<*<fs1\ͭ ,1 /ZOn%jN+mv/QfQB8ll(5 9?ݠC<S3ꔤYt^w5(vuބTP{̖ n SZ(wf\ J tˡe qc1Kd\6O»:KdF2?# =؇gQxSݶ(?&xݿKPb=Aj~=فS47_@3.]ٓ%eg^1qպ4=uÁk]b4AŅ tT5Z՟ ؘE;\i{z#&.z6TJyP ::jg@:)Ltߤrv6EaE A"{M=^$[ <6)]`XJ4n5{\Q Qc֊L[ɡ֞,d@'K~Y7\<0qx"RzyݘfA?`;za$7"Q3ZJZ"rL 7vb7Zl |U{O=2V᧴:Ν?n۱Y ̂}~+͌Wv 9VeL99 q4"zuEB2gKzU D*$cH _r9Aj54 "I SwӅZf]f\^9-(YǭI6 4Qg:cC=>kNrxXTs4=3(*e2eS L$4!<)r Q6I,fذI~f+Y51cVۦ m:OXČ*xrexn3> OC֐ys8xp("`GC,m6l˲*wxnT "&3*f.mĪ]8l!{a6Q#&XE3z4 u/$O j#@ZUZB%!!©uJ_*JqNe;;ӹDZ4bN~ }9M2 {c7+une9Xdpέm>p/c@B9ba vyRtQM( /դڠ?l-αQa\UnF+恋< 2&<ʲ#B7k\MߣfH)~%qt0x 5^'-epP rԫ-\Hk)xt~ȭ4|w'of5az*Ea ;)~/3tؒ9B ek1Zg_XxFC>E@=5z,0`U=i~s tAtmxNm 6 12J?*(V !inC4q"c`+/SVf]ĉ 1֬)GFSrk-悪,_{;gU|YPFt̫q"ȡm{G@\TFaHp0rSk/%h>ͽQ%>bƈ߰tIK LT/ḍ̛-]斃#9CS[V~ݍ(7&DM <~K9 TUkD(."/$ aBV(j{, S:׮0[` لS(TUEE ě4o[lgwfU^CN_= ܳly!rQ{#_BۂMyʁ, fO6͸hI=Vt]C v큛:rN#U6|=?&d:ssa d^ +᪜ޢMp$Jar;Y뿩y1yH? 'wg:GnMQ@bs"@}HO:D24),w3U(nN,@MhpEECnw4j~eWsWB`\ ~VS{zln~}wqo%! 5'B냚~[c֮F|.3'[k9b7=3.B4U"l9J|'qj vYz9Uc*|m\!ŋ.%LyZO$!HnbaRXD֝h"΄kF0e+蕶v 7[ qm{$2r:=4hY& c =<E«?F_wZ&4p;{KU[ʪΞλlq}G0ۺ\R:CۆVɺ$1ϲ״p,=ؽѰETR@_nbq>;r𔑌HAC4y7s(4~up ~(l- vme+?8ZyȆeN߲ܥEd PkT, />²f @ RM.Ls|'x'gNsV:jq]P^{nlp,܆Nȅk+tԟXQAEsdaPJeLRYzmńb.=[i";B㋤WS>HHŏZcf~T7F?{K.a7o5QLzQ!(*yaq9`E N$2y$Y@Ҕ}& ^sI |Yp!YUYNڝo_GEu^[w;S!KTbr)NRԟܕUGzY.|F>3~0"XCuZ6|$H1;;l Ii&2R"2Odv^(\&**K8r9 Zpklǁ!VK NBkb^,!K?]m8'&C->D>mY*kF|,Uy\wY3³ s5W1E! gWl-R8SUswsa&Ⱦ=@\*[ڗ8QYR73xaPmBP`Wś ,Y>\XZ{ t eغp&ƅB O';MʱʈKwʔRdJ]^!}ctyOrB0 VndO}VSH!GA_uH"%GY*8芠^o1[ؒюv!)nΏͽӴ xՆ&[K,?d'j꾾53f kNd`Ƹ;Ck5Ma. nP T5dZ$lv]^:=_^Hc٣Ohj4ʘx1`$$V_7VtW ᦦ:I&N&pvdm%b:Eq,[P C۠)AdU/ lJ>P ^$E;mT‘x"e MlaL%q%MK/N>~%4*;cO@O!`_I{∾^7zGP-=֭  j#=<,9%y˺+` Anh*.2iMo b2$D-aAmkqtsΩ[2[Ɣ]702J=.p式7{s1a`AoB7+-(Gq^|cgD˧] N61 IuɃ]s_[g9Qי3-S t}I׌O˶#31 V* 1PV> @iaIOM!z-Xxc1s!pYO?Ax7:2Nx0IRl(t0|&ỳq`PkƄr[tF'@/G]|v^Bƨj jC*|]6qTˌY%o g)GYRFZ^2-F) Xl~uY[6jj{QI mmLqD|ED" RiS.nAzXHkCЋo%x ٢~Q h+A,rqh@ԦJP6$x{S"ښ6Z.^c0RԌInyFtSӤӌmQNX TY19{")KGzlusC1'O4Bo_᛾ %}_?rl\XD@Z8g(~zԓÉt~uۉe.}ϝ԰mWh5W2Bۼah ,g:9?B770"𓮘?d=nwk>glLRY,{;OߜWkd K0dL47l(BuYٗޓj)c%7gPwF)\S>^'sCbˍ? XF]](hzp@ʤ QF,`n(S];/9 e nQCX: *Cձ$QaJvÔ,$ z{#Ca=d2}?? ۀo`(A"_!*Ry?宗rUUT]U$.Yq2wOUEҡ3 .v)HiU1On,Ү.2TXN 0@¸s yF-q(F@ܷ¦rѕ/f"K@'?a -;x_BŅʟ\ ikO7)w ʴm%JZ Қ!]Xw4__m%! p6x\s;ڭAuT}p]V<㯧R9S5w;ɜ0L=В1pD~9 5(Uvnkq|)Cx$߉yQS!HrvQ B4 ^@ۅsT+vOX(8Թb~ᢨeB;ĒRB[E(d4\#.NM.1:Bi2SJ|QD Il0RԅNKsPyW+&-F[ngoؾwz*◩Oxۡ6x. .kآۨn"ԓY AzLʷ=弹`r[i/`Pd;l+@=ԊXџ <uNX ^ 9\>pgfTDd+bjW8Au6bIe%ݿKZZle+gCYR{"±lHt)?peb>OU j~cGn.9Ia2)_Ea3_c/E>U0gL3ۯ6%d DxUǓ˻9efEHəL;L4vr1CDI$''Gw)+.xEm. =-brGLy9(8YO"Uz$?:*Si}܀ m0$CC]حH N\b!'ZȽ5_n_Q*)k~ }R*x'3(|e^HûԴL=~P0Ŗi)W `y,Wq\熺dfBqGERTQztXa r]Oh>#CPv7ⷨgD|PX{cq^SWPMlh&5ɲ<-O朓Q=7(xpOǐ4{0P)aلiz< kRSf$I ɡ4@t͂ƚdވƺюXǤadL֟?cns,xCFmSVy(c5y[wjlբ/8Y|n@̋&_T<ĆM UW<˅ics \Kτlu_euBHTYΫաw O`hـ/#N$rt߇ ^P4/ 񪟃x+%mg$5{7 hpcf$5 Ţ0y$hR6vGΩ_c|XZHlu, f`Q: 2yD9֝\Ius2csl$kgE]VrjGO`bZ(z067S T1+]ps[^Y-TTQ C+OcA^CL1(xx}fw HbrkmPMFty_B-&/]weT|ۻUˈoꊍ<fK/-)hI^!$t+ BsA5FlHb>Qg1,ޓR+`RB+Ry8$T@YɑQ@ j07V8F/2A1Em%Ȓuzs 13◄k`YЅ `WU}It#4!s=N'fq1d)4 BL{PW*[ /{}`\\׋!TbYX^'Lm8D…{>%k'?UM5A(5/$NϺ?>n'@P v$Dph JF8kwqA Tt><ֻ8p^Tgr`<趰PT^uxeRGp!=5 W̝)'PQ: v۟vP,7(al %63 lZ\M3z9 e͢}c✗k@3a]~-h+nf^92bYgowf^ېb"겹eͶ< 2@p"T[laOϸo #-@`u`<ƺ0̪oT0A*WMysƵ|RM7y xa}fRӱIϤ:u03&D`!z~OZaފ2EɓQE@@eH~']u^f{vh5k0GHH zJ{[NlbkIo?3%٦<]ƨwXJYb;-931!%ƄԭP tJoCM"tX\PA/6˸mƇIyڦ[ݨ@\-S09`y4ҸGr\'!9i Z#0uH ){ִFqu dt11-Xm"Q0q^9veqbX='V' a`r]|yB_K ڬANog R'D=\(x#r=TLMk)8dS|F"<8F]a(>^C(i C">%Dei ˲c`Ep>BUi<P'~:̢Ŀn(WEiee;h\0JWr7~6аpOڱ3 z+Sf8G .?3U!杋iPG2󗣦*ߋ; ?]jZYEM˼ob`"p%ig;gQ\j S4\9(?8FVU#SMK[=Hxh Ti^;>f1LQ{:OFM !&}=$'_mReu~HFJGj5dz + Yp<5y)E*/6ܚѶty?knB#]7حQ biHDI^Tlg8<zqG~V̺E{u ;OI4@zssß 9DQsk`*T.amRWi~d/悍+1Չ e`"T>CRfD=oϸ-Km*3be|- oX4s J=&"c(ixfC~Snig9P|]IW0 ;VjI{8bŴ)y +HKKEy:!\ē* x\C0$R=j3a?A]YxRJ]]`<$ oEɜuSyh/6ww< )#hXKUI t*~D5mʻ JS6:Uy^'7O,hM.i]fF|p+&ƀ#wUu|2u9Z-9_E2\d4pUGC {M֌}FV6x f&i%ojW)Խ&Z^Dz?jw N)96pHԄ١32@#nJb~u[u.LH+v?L):+{fo#(}$#$ %zn{]!꠮;RN3{,3a`{Ll =쳷]nA20"+S̑JPfM ]1jlzOq>$ҡMC[ ^+qFRM&+YxdZ`nVTBkxN2"W:ɏAE7y yceVOn/]+xj@R.aT@9r( ٌpX 5 u/AuN*d"U/6ՔA Np,}blD|!C8"Õ v8EԱP Q:_33h@v5H,|n-f&%ϝGg--j>L}Y9dj]`n9l>곆r|^bk3ݺs?}VGms 7-czR.ܝ8t>=Ί,Ij8RK~^E2Lw~btzɿ_-!Dퟞ^5P]H(hZ<|si0ҥyan͢rA=%JGoTW]sw?4A'vݒŰ+gƶ!)Tm|/brq;H馠b>%"Y𾒓UiYrxZFh[I1ݠr 񛾵Y!/L}JW;=~WS\< q f_!RD}"r-iUe]-g9߶OThRhJĨI6bv 9Ș/ FN0񃈂'g> I:#]#>֮Ɵ`u&W[ibPIo a:s |T2Vn ञɧ K ^lCdbeWʋN+͑2ja OX Af9<`ub\ |X Dh$W[Üb$)\n: ?D%yNR&1՚r7GAFF}#5F׶#(GhWOK Ō˨TC y>R>%8f( e #?OɐP8涋yrXoI$'"K2fT\1xq*" Ab߬: 2nᚓAy 0_u<ۅ6A3җ`=k7I-/ l'͔ߕ@Dhy-<hGإ dw#] 9e/!$m5fl&1n,1a.V H)h![*U]`bm |Ub}Zv.nZz{YG9I=/G!.r nc_G (0sl;S⏧u&ESg0pRI[?A؃tU,$mfC2}yxMU\DtŴcjܺ6h,]0gZwZC-%>N5xwB'dH}VHp߃mƇqcC*+tA>h2`M`=3LwYq5A=RI"qBۀ`1ޓ9BRIV}wF0Qڃ@IwLc̊w(*L1Nmj ⣬PCZJ=s_HE,Y!yDŽ/_gM[=32j59 Z'R,E%zf/BIܮJQ5.~x?2%*xtzc:5;`T$* _' mma0 õQ$cwN|ҥ/ߑbx9 ΎW솔;/g[r!LwkɦIO~>j&*YbH'YQ'sՑ;Pr"$u>{{{YQ~Q 裤)+w`t=Gc!`uEbhKTDZg1<3&G)~HAsV9a׮v9-K 1Bx%#ykDf߮jute,Oa2ES0ҩ $ԝfJs97h)\Ib@ lX0.3x=]#s0Ϣ{ .“@R xDj,h.qYptj:ٻ$:2`_:]K;+f0v-oQw͎VWCh8kЭKꓬ49TQAN@¢UNW4l4d[O3s2L!e!ukytL.hځTH*X"gK"ȅA!zثɸi4K>WI:$<4.ҟ1r|,F94`l #r|zM|+GH̢[1 IEn_Ӆ'S*&GzTG|M_Mv%bw mhÌKAtAk 9!\>&t.f BPƈƠhYN!G1 x/(ޗea( aIb΄G \:+C8 NS#ſN|٢xlF^K{ l8mq)--ao"ΣgGk1 O;^tW݋Uh\`'#$|SqvEC,4UKhpȿ|+ ￾IO_Eh3eݔW/X6V]RZqݽtj8Xq܉1''E1'EVܬ֑"/$f`jI˓)pO'Se:=(}cBʼ૯Nd2MOu*|)Sd@ԲrJ/KdC!ϰDzAPW|$}ӣ[d頵Z&2~&p;$𱩣>) hDo@NڃH鐉 =ul٧НZ4ll)?<}đUO؋ko=[yF^'1!LL3Fy< Amz Qq>v0{Ȅ<]TB+❴vD^fRWrbP9f Qr7v[8ugJ|`lyXُyYz1 F%٬wStIڊܶc`VTE3X(<Ĉ^+}OD ڐI_})=_r@fsGVV_h5׵}2bGlCVvUtyWݭC[zcL DoMR/!L盺E^7i܎Oްc8qCC4ߪ2 ϴwB1땑tjQ±*q!0U;'sTY0L\E-:CB$P2@'MϾ8D2F |~p+BDŽDsm}qڷ(='5f̗xa[se%1b%)OpL¿?zn| ZgOaMl[h|.Zg`&Yu#=EkwKh@w 3?f). ~)4k# \lp\@-[n37IGc=$#';rbhaM%TruW<]AǾSLH jA_M<3CXo]DYĩJyi #؟QInDAki6cHtɖUY&ઝ H MMﺕk j$eBFvΉcR85@cflB (P2h?w,>)Yt @A&[܈RB^Xiр^*KhMK/PO[ \cLL%ި4y=ɷl&pӬyq `-T]\Dh^lk]chTŷbQNP3SK D`>>g+3vg

[솄DF) ;8o|g Ǖf~ Ѕ;%D=VʖBL? H-f͵QzGB[Ӯ1ң|zocѓw 5`ߩ #t&$t`diO zK K;Na.1N0 lz*nusş(oNEC (LVgh]+||<%杺 #H;* ׀ }z`\-)/o޹>&)f_iuHKwӊi1w0`cIn3fZ]lDG=&R$r;[}(,_cTWh/3 -)ݪ0uPBۭPL|DOeDђ&JiMTg"6J{%Nzm뷡\R*K֩:|RʝCpĺed >2K$_m|6)d~{9iC GIz. ^6ZCD!=Z1Q z'&W*o񓯈1z9P:ee;ߝ=afd;)pUpαw3bM8cӁT,c~TGH 1Zihi#:kAK/vkycBᇝV.Xnzk 5=9ypjtQ;Z &}g,/П"8;rN$sLF =`RAkp2gM3!h詢O&KG7fH䗟dN!DaDT诽 ^#l ߨnmpc<C"wgO#<\jњV=螗@0v~ڠ2hi +0Co݆Hԓ@K Hç{ D.!:C4YyxO|. Jfe5w$E4OqCڔqˢ& OS2Df` /OyW'^{ׂ]"Bn٩ϵn";&0Eg5Ӆ_@G,tZZ3^r"̻ m8Q/-=C SBH e1|?L$uڅ~&}%}tcHYr$+2g\4G/B.ऐe?ק+QDSKX0(&^_M r\޾hSD=2gMk썮ZXz;s5d'6Ӣh`Pz5G4hߑ:?;NrxIXuze "5ƲJ)r\KiUs36 K?O  Szd"؄ŐcL8ΦjkH1ՙ*Y4:X@ceTdZnO~N Gݵ{p^)0)s_B$юhݜXǢ~]:=@8ȶYFyncm~#Mz]6⽿TRO1^()X?bOPGW͏61)cǹ %?ECv/cwט!6$_h B\'Oص?M`a,$wp ~?`*&ٲRQ>`94RT@. ]ZB*phAO?^r h6 eA[ɷkߊ6g mz!;S Ow^aF1wH?r'W7xI﫴'iy4iu^9(gdٮQOZ$[ojmȤb#886>lf2}(ޤsdc<䪙 \%?*SL{K6ciY~y3YS"v^7|"2uyFґ0iK7 \VXjXM] Jĩ}7bBFv2tb>Cv NCvk&4/mrB^EkUT-3C/'NxO ߼+h F)^. &hb03@J*ɦPzsCnz1ͮu2{7<.h\.TϾG-Hn_O7rkC[3&9 sscs-^ڇ)'u0C2'Xt%4~9<=/jӭ!ߨ00L(N;n[g=yF_T֚MrKW:CD %~GԝEeT s0, [HYuQjΐH˩fhC#?^"2|7}SsP5UrG"=8 ͕YAg̃ps"ɦcK!/YW#js iͶD7-̬UyKޕėXĿguSSZYdXgYjv#=aMؗ+5]q(N ]Gxj R??; f ԗLGﺶl:._ո@x;a^љEZ_j1cN! B2[ï'sq4 / T ʼnkd 8KLa%G|c1 J`GSc@|͖U`5U7$nrM Tx)Ĉة%E ZS=dR]@'^3w uRn[*lk.Z=oX.RMV(g0!Ny|nknMN F zh0y:0KαYT4^ Y(,4D S\rVZ!m~piZoemW~1;`\p0Iמ WzFAG#EV{,R>ү9hmCNɗ/{H%&Pm.I"3,e>1r -[e@eCJP#.ZTY21KDv^I/}DN[fn@F-#Tx>L׶dmO'5ɮFFIkUy?GM`tTZC{$c+mn&~ Zfʐke=;W^vqP_e<<z&y>wHCjEyd{Kv'CŦa%6p݊Lv0Fʷ`rs3D{3g<#B1m4EH_3ECc\"\ ߆b{c0ֶ,r_@N ˛AcXK*z!)vvW^*Җge\ˉL++M n[B_t Q e$vI gV ;=V^%ˁQ1Ttg6/Lt +(MRxӲQ 5md]U<@D lPB`)Tc!";zON<1/o!ū^m,kWIxרlYxe!qSyߊ.pz0FjG`_;TB#UQ H ek\Qr7xAǶ(Cֻu#~'yGQʾ \;=/_vw$~gdE.V>M4迆5)0.=TYL>UE߾+}⩽(=b\kSv P )ޡZ`ҡV?DXLS=1g CG|KBxC+8_|V MgZz c[HGz>|Svy{e>u;u!u~xnȵ"U -;(cxsAG9(hV˒.Tx)òt.=3*u|}W`uq dX6yeOhj~P@>{>c;;[ XV ¦Ռ[疁Y:$С|v9@y[  ߽.<^JWπok 9JyGUpqFo1H LpUTs~CJ3X0S@V}JqN5P9`O>gi+J w3y"¸iB]@d qgR.3$" "C|g=ǮC@ٕS85"o#d \bX)qwrxϘ'Gnj-QXqF>͑~1DdHd'PIZn6[݃JckKir:Nñ%)Ҫ|((\);FHi6uc zk1bvw9 EPÏ)6Qz. bQL { [lx[ddC 9"> m"*>%c2糽>̊+ZGP\*U'Zdu櫀jGK<^|o3 aՊ-6'wQ\M!f`q ֎_<ӛ)hmχ B{ph@ ~Հ}%ɐǘr5#KT X&vֈnÁ)\kAJ C- hFF ,hI%YNQm̀<_ ŵhϿTky'.j΂2k*V[\ Ĝ/[2lz)dIH *M+1M}zD5墀;9󣲿vdDey`q✶ ωX`d|Yك8ה\vN6ZF{;tGcoد+wH] reBZwdejgb65憆BgRp.q}*nQnLi5h aA)#f\_98t13 B;~N][mOXCOs_ .紁7_@gxT$/EI /ջ{9g~hsVL O'˙VT=pR'Lлe`z>gط.#||ovt 4T?*-tϠz2l >Eyܹ6j {%84%ڦgFJE_dj rߥk GCUnazFMDuYY2M0pt%U"=SJqph_.f `DC>wxbnLh)`WZFJQ ڿbryAJ-ͱVT1?) Uvz͚8Ĺa S-F'.}.8/sոZD5-.]QeΊ|tBIs{{@uu@Y$ߢjT%Q9C_1֋!%-ڣ"\؝nyT7&QkuM5^g{jXlZmJ/o/Sځ^)M|7)><@ywUʨcE?k^~-% :A{m+^( d͸ٷTulPmLjc?mXOߞh`a*h2NO ֍#%{k]Uur1J ц<ߵf#B\ar5^#h1dDUݭn:bIXhGuDY[[?VTC DBw`j[֡yw+$d)HD ivnhN­ dS [kxQ=dvñ%E}Ɣ<pXUFӞ=NCBϴ5drOWNO^L:9=h"b` LrwyCEûdb.Rٛ嵛u,06 IHZyFrwAhv='?sDkaܝn7?d|z>:nؑL*mOFո2Xa>_oӚv7-9etWh ڂULf{XXp䋞]qŶFe{uhiz?$_0/գݮ1NͰ@2ڢPG;Tewb@!6c\c}I*`zF,*?Gt_0+,a|"i"&ݔg=$gڂ c:zW \d9ӥ^d7IoHnڎ)yݵb+֤dkW ˺-WX5 \H+"W]ެ|HG(S32k`RJx,#l <ϐJ4I7h;aV9G7MOڹc{ị-;*l>WM͔F9dK )Bu#nc9ƅ%skH _.~{cY1:Sķ0FEToxKX2%kẲyrIx޾e|S\N:DN՗$ØK>ëjK]౻LJ0)Da..*, TbCwR+&?e4M#`虶]8?^~39LHب`]:xiGd xjz*um~T,-6 j14 f8$۾Tzɭ|i0y0%F6Z,(zT5iDGAknVگt;˒M(W2 yht`ek,Z9.@\u%aL܀i jmQţ~D;E:SE?A&>:wOTnȾa i\'io;',}%6]q>J۷,sSc^RuESN}ǽp9x3*rD쐤o jIT5Œ-֕{ܖAPNkY^!acfpnBOrf PJ>qW\Fš J.{l*LD%9Wy:MA#sYB NBrIYuxOg@ÏM q*lXw"WYjRzT gQ Pjq7;L~3\ Ï{Ww56=UhxVHI|`.xukcQP3Y&,Z ֱ%K~sOb~9?P Oܣ{c ^׾Tşt< ;v"hH^vݾNUXqz+Axa'h[#"J l5bc~P1@)8!mvI\,w.o*1R<)8`rǓ[y-SgE\pkL&Q+gq5~Ȧ/aJ[mvzMF={Y3^$JT8YFzoUA P\3X$9X No2Fjw9AeKif(:& yG7U*ݫ#_B.nψP8OիI&3魓O\hؓ|sB\̃rF '5Gd_)G* y#.:V桥ê!PBer5jn:isǴPT20 /|uRi9iåE짳ddbj*sA;Pt8J=)ϛ,kd[uy5L^om@#ղnu)`?b+v |!$5合[h ƖM*p_+b}൦ nFO_!&KqgyOVhC&_">u5dt:E,$oMXCq{=;?*@X)1l F^= Yߚ i8#Rr4}_ j,֧亍-ʹbNHeJǺa'+V6"IGp+a'Vv1Kz"A=Vί^ /)MVp3#8*;M6qǾWƦ-.5t{/o M<$ك>s3_K_K6+%nTjWm7'<Yx}PJ Ո6*E8Gr_ReO\dDk¥#%DxZPS/ nj }n10:jQwM &5XL_jW,jB+aq~NvcEd^[z<yRa|ZVf=/$ i˄41z<ʕnCh!n{ x@g2,f1g_B#v6)|[|F)gm4O|UG64#ƺ^t[Wk>/ߤE5ᙰz돊 @T`v=x*K_IMNx] cGELp-;Klu^{rI0\T,7;sG >W_hGWo0Qb3o͔NW. NPu/# @pЪ|= הAjU8%Q~Y0F Յ/Ry*:M;w=Sj|XȔJŜ#9Fz6(kf^++tgY$ƛ"AgA|Diض8w[ Z$T|PΆgJO[9 =x/!eG>]G;o,]s z2As,j_ oCƖݍSFѳ :0!CdB,'W :r>S6&0"p@Tnyn7픯΂ J|4ng-D` oDd:532\g"M*^ +_SVԊ~baP(.4T;[mh[iFpے}R\aA6jH4ndL1i$Y<q zKҼPՄS=MFmhb N_w B;BS=3ĬG$jLA_2р$3b>>JhiǴ^a^;WFRRLԇnjgu @:e3ԞG6(cް!mW)1v?Y ΓHMk; l"\E3[ݲm+:+}\V#RFQس+ExfeGa싙7og׶TR 9UlL̩3 6 a#"S"s},Hf ~H^g"@Ặ:%̾5q%PR,oxNSmvrpCxc'nݙK' xζ9s݇E? ^6ڦ d 1wM.31R qH0;ʹv%_\ZYH΂X*<@dMJB#gKR:+sn5)LKy&5X)A<3 ;C"E ۊjcJ!P*k*LSK5>Nl(C0uCr. %LuHk+xFCixЄ_?xw9n[Mk$RSZ!y )$!hJԝ!^];8<NT&QNS/]rXu͉-h$ v%96dz._:{^DiZP֓ [~ząRu張n֫g6 M9|ص2PK^Qe,^I$nA&O@DKU*35|u`+30GོPZ s9P.èAplB+3oˈYB۲S @۰異%2+&+ ŻkmA{+GE0*mS3>_VDQǛI;"_B̄2^;>y_)\*DŽ "qS[{vx?ΖlNlg۽=Y/!J 0ǼB'sjޭñŠ'Ժa9(Pl-o/cG[rz 6XdeLx&}d:Vʍ;jUوa,Bg$Jcx 9}ӡ-J"5J>}Yzo7| ez- W#^E9}vqJo9J 5md`CdlD e>U vg1)n4Fb^{'<"w* !i2C͔2$Cv,gp!_R>F&l0vkJ īW-`T5x, G1]{ʱ?8hWW|6eObrO_GQM0U M#0X&PWkl/gœɊJJU2;j^V V&n A|k Sx WU4to3iKXHA[$E~1W"\lF N&!ב~t7@;իa qn=|뻑^T 2 ܓo1Tƙ*K2lsڷBr2jEGSXs !-c7k-.gNĕċJM]RڋC"N(lxI-ԫ\e*RDd/F$htO9SQMȚ/ TctĖ]xbӛJ~t:HBM;!%o`(7@adNAɲfxee"fWVl(ÓPq[o7*kJQ_jGE ; nkEx g߯R2W_a8BX\\JoOCiV8ޯJs@KRKG{x%ֻaki7M%7(;MObvxe"$m9P 7 ImGVyꞶ#4)=d VS9Q6Y3g7\4^gΚEycMf'ND\7]fO ^Ђ+QASF*tBO"K q?(ib?XIofޅ!qWSvJvA tVBoL9K\<2G|7beQ?~d MN^޽pnA\066!ro] 2~)Ay|&5Oȥ׾)B l+ik+tWE_9n7Uoċo5"g8&CW[XP/gS$7{\ <:) Ţt0(B%] 1;?[m= &h&Jvzo>-x2|Da ]h+:`=}c3څn5VQLj2@;,Sn$%gĮvlNg sF$.H g >\t~m";WlިT#hEoWT"Q3,isW UC[E2sHzTAI8Q2\V 7N@c Jz[9Q}:C)uy\b&`ZFpYxA71%}ߝTg-<̀uŤ0iЗ}4s[`MEdЧf2o#RX`N:? 4L(M++9T"/Aߛ"o?ber@H;# yt{}:XYc)|%/JkdZK l}i2B`qytOJ<V!>PgfcP-! 0w4f MZs[MXtCD,-cɄH.bھiEPLR}o%> bN-]1OUQXaxYlr3ALIV M#&?Œްc{]kgF.ᇫNt(SnZ4Xv3.5"xcKC =0 p*:2IT)V^qj'x쯖j+6ߕYҟbiI $B,ǏũA;_S¤y5W{.q)Ѕ)A TuHVD*%VvjJ-$RBJ慥4E/ om!t_ S*Qk<;l`0H!zd%t!L?n ;hc<HzfʱA 6Nq jtӤsD[Tn9GRϾsF*@dI+6ɕR 8m}*i^መFbV*dx覢tZ{P fĔW:R-;ɿ` B@ku~Ӳ4ٍгF(?eMpL$vW ?ŀZHhd*Wgb9]+dު-.74>o cwEz,:܍]iZ}pdUp!~d̰)HSEm6  f;b K&>օW;j;P~V,qb0K hL&. (ԦkEԅn%"krR̛Ȓ{grګ -w'gq%P~-wvˣG5&_U_B9Y0oTX0ÍGbw4Iʘ=_D3Q)H$K,|^FBOTmk,/'t=l\^E~$ޖ/1Ya>DeHO!EE\G)umkZ h)7ZUOl-t͟7r#ɭ/&>I꜠-8(+gVՕBHutXl6} qӟ,e+&w)d(zAOg+Bbh.%[3U2AkИ!6UAgm+/q'%*mWD Y\}$׎\Im< Y:tDQ~ +_ʒcA0eɹ ydnb[ []4&^0F[HS36X恵A2?򆤗i4J'f];g>$8 BNPE%7mӐb)NI|WDB]S~ 5RuT|fw$F N6a+w+^ѠjWQvj5wѝǑJ*p}y¯_Oo[sw#zm8AixF k4~;rv[n~/+ΐaғe}E]lLل|IRL2t/Z ˄A^"Ӆ[$($T2K@/4m𺜒XenA̤ަ<|;DG]bn< V=>aL]E}vUs b1Ȯ2SZxh_e-INQ3%տPXL2[wU65qAy6 AD,$eNV42itV3mzd=eP8_Kd7f{&B@<1a>3)bq u2 l)( a<6>IOOAGXO[;QȘa9oyz4%:%ks+-B[,Kh[*I}h1AIM*j@x] HxhoŇ66+D %u wg֭4ޓݓ?y*l b-XV8:o$u GeF`掆!G >TỲ\ 5>JDӴ~Bk=v܅S]TjT2FiWi^uC6 5Ń|V 0o JP,ث>H0L4٫ң'+@[#Mf9cH&kiA[m\fU>}6=ܔ?KR%IQ,8̹Cz&^eZI@'hi~|ΏeMK-/@lgeK2)ab~WE62ȊgzjkKȦ&h2^U^AF|e88MD-y$)G1X-G6wͰt& ss6ͣ'ptT-஫yCCG# i# \n!Y|'Պi+v+i+;9WRx hXng|]jlϨ1|IPU5]pL_:ᾲ̪ȍ Ƀ5(JV]l;* e @kozFV_Н=|B27cIKvגuj]5cZ.wi% 5x֣ vxvH}=7c^`B)iQS*yTU~H6¬)7!TmqFg^ N7]gʙSN*ˢ 1H=֎V ;0xxb jz7Qa#q_:!WUsb?yU80 L;t$&{M[k 7Pja=8_"F\SB @0z.vm)"ZAP$ADW7?P =T$(=7nS.[ E[HC챬'KQUleֆ!' yOhvGJ +nyerHv.aB]Z TfVi{%=h(;w{+@SSϔqPF?e  k7c}ROeڮ rdzAC*}Wn/(3!'&jX&n"6v}UYEuPP+)ҝ\΃S:SAkUSݒ |L9$Lri @F6lsz)/Ĝ\k O|6UQb\`pKȎE29YUf(L k'~M˛cdNpw1 փ z (,j2/dۈ*dg:zñضv F ݼk\x yzmrsG&$Ld5L9Ab |N#0yrʶl\Q,!Y;at/i-Ig#I99׋hs(Қ\}mӚ MeFPৄ ]a:ƒ K8~Ƨ#B<)+C֡=dW&-e;22{/:`ܢ:J{4<縹!IØ?R\%gWՆ‹W1C93%E}BVTjuތSa:4Xu_%"Ocgވuh`'ޢ<3G0. pf؀]E󾸦8b9ő!3%Ƙlg+PFb(oѯSxBP_Ab3܁_I.T-oHFUs^$9N vA#. לH3&ʓ@.ve4V/;+3[p tܧ9۾pmN<dWWRU#(qh'**!ҥ ÍEdAudYOAu~^"@%;l5XC%vF% u-wsPwP-xCEftV8AGȔlS)t)+Sl($&)2 i9_tusvWRk#r p#Ah4fuXF<ФVFF wzW'*^*jΛ@9ĒKRFx[C+h*n0]vF>I[e]c15ߨ% hOB 42R.*[5oV]Jpm2"_(!(sl{%9а^hvD$߁{(7nQK|$±$gv2arNtV)B Z qkq%ے9m v.-of`rmˆN ma@iw\ P:b18H Ǒ! nIɞJHגe8u3hxտrs,ݡ}Z,<"m DuyJ#A?AеN2 Əv⠧Aaj it.E)[YJwبhԤ9p0P,ׁ:FZ맭 /-ۢ. o YEOW(렛[._};S9T#ZxxʒW/{iwRt va i11 Q;P$dT.<@+\ e-y+Ł̤ %(Y2\Y>=? ZŬHhQh:ϼWEOꦉBv }jª$Ώ|(2p{&3KJNsҽo`Q@5 xb ZɨB׊ty{֖z:kJn'OE'l:R>Eդ樓}@@xGR'MӨ5b{mꁹ#;9VE) i#[pѺ '|5`(o\OL1K5*آu6o8Xt*m4q>~G%@sTr ":ʢkW g:j4E;3c(:!w%y&, )73:֩ha}K_ܕ8u 6XXPH WXٯ9bW';? FuKosi#l>H HbnW8_ r {-mBV ( $vi PSւαobÔiNlH 6dD S%ۀ}kjd@S\˙1xDĖj&9Wi;Z&0%?y "_Dݱ%< qN׳p_r.}fE\S,z41@|LZI#̨DԌxa,9+u& CNL,[~גA8;IB0mAL$W7v O5˵M`O=sʀ?,G܌ٽ`[ ACjzii$ٰ_[zdaΖx% A#lzE iհV:T!;yLlQP\KSrS  hTL.tܪF (t_@x3^% cE1\JLu[ʭ˖mэc <#8Nrǥt>Q/޽{vwכQ,VZpHUm /MFWEz<`<$3FӘTF Z ν<g5ї{~]=M UVSzބ^AT5?hj@ 5ӧe-* ؃_A|fP \Ҭ1tgTQ w%3)I/*^V%w;ο`WK1i] a0| $(\uyyPt}S>PQccDJ])'&s~)eJc ,aaŀ d<5`) 5G+}Ѻnng۽U,'iqd: ̎"[d;ZƦ8[[!T[$jGe)fnM5`neG*i=J=fM\ M;|j1eج_0$ K>;$MW@h"riRBHUު7'YUyky$dNl_+ƲD g0/3{8C8@}һr%sŵ3Ӕ/\63BJ- Q:&/h!-:S{6l$`gcJ ׄPخhH_6> TSKb5c{+ g+<Êu>UR虷ב ]RY9$S 襁@SwuOF`tCХ8n}}ߔ,:xJ+$#E)V_3j_:/M 2;B`ɊӺ WŞ1Q&CQ Z'-,U'JXXWs qk-&<wP ηk$:gt_/b᧲PLk4*2iCp5 >+_6F:>xqn $rUs KwG{$j`b,qԁTvB VbCͥE%Э,9;]ʸpw6@ ;#]۾U4Bmh bawJZ,Gdy\eU@U> qAKCw}y3]WS |,g &v3Zb$cjI.j̄ol%.(Wg=3TX-xXӠ~ xS1JX\TƝOPθ#XNQ+"@K3Vyo.{.Z}b4ȮIJ0]Gt 5jkLA ZUn o FF[rIjh5dWJ̆8_#XBAqK~p=7[b I F^b{*@Y`PԿz9\r4Z'tClD_==ּK ?^ 4 JHtv89壢lKahTZ6=!I)_Qnd; S5SƽB}a TT f?,{b@N"A&m$!鴠a}.#ʫ£ӵfp5S|JmlVb oHGxe*j}`RG1Bhx>˹6oZ4\qklΜ%)]idXHp,w4;晬2`e-o>#i<>:H)% cO u= Bw'Ya&hNԒ#t!mr;WFPs#Bm5^km%^N4&F1MUirG&;E`N]rUR1qǽߚPX_^Ho`d&7 Yv:@ݼ=az~MQXn.uI{0%y6T?;zș٭rq[q*Q&is71>Ņg&Y?bX\H)kOwX^j*fx1QOU} z8rh(iM9 io٣o3hv[JQ@ s&*BXC\uc`sM ָB,7̠Su6VzY+#$+]a$OÒwolTݯ>(-_^VsƯh?Z,#t@jcTox_X]ʒ M9`k~”J ]̂aDPel@[̷|hgmpXQTV` *)St 0ķA 0fecb;-l??f5%.<oH!R%ɞf3Ό>CclD\?¯4عj!m@溼'FاH,fI<ɼPGîlZyP_93+6fPNJoG9R< P<_ӿGd){Az/uNxݬ#r{kR}  _R,aRP ߅=g{_>e)P"OS |}"ǖ^qq}ޝ e^TUWNnT@\~ r*}Yc/t94_B ekOhbbćPz{TL\%OI[Wd^䅜IvŒ 8-s]r pՙh;A͙~V[ݳ0q J]{(Oh@HcDh)^'8vgDҋ\NAZRnd)sogK(MEԈS2tspHgf,9ԳXW/owW5"Ȕ >c $ߣeCnsːLAZNwJ3f:buZ4 p6"#VMhf|Cu(5%^տ\ȡ%8egc[C,l~K Xxdt+:7̣3kStB2Nȼb` &TS:ShNZZ#YP!] "Cu~N7n+ ĵDd9/r ([/>OT4+dg%~WFL:†N|bqXL6E_EatQ5 ߑYG+ yGj2wHK&O> H^y2`@/|QDtqئkyמ}@%LLcNjv4ӷc1-g*hk?C&-NK 6RUTBySݬ)9HJ`"]cfP,}`'}bb(#M9p,V_.ib>Oڢz#_>`wz\1q[gK+vHQnL?K٠!>@0R4Ad ggvXvWy!Ho='(m Sw;O*W-S#ؤtmKEy&g &=k63JA -;.O; T`uUcFv,!$@.wb1ki#OVACa]G$EXrc !cƈ-G@1%Fՠux=VCci>4A/sz<$~qeFzU;]hQpĐ:i}c@&:$ z7ιgk^E(F8~nq#S8NlbEvh& f.ZTb0g|7M @@~ۖG6笣Ryތ&UY7 #1Dڒ:-CL,zW׮QC eB p1E(SYI?s0D 4 w᱙WKP|y /œ%-T䜵.NUQ%cΏ$햬9^~>Ăh,(ShwӅO, N*]n-$=>^pûWD["52o>̘6L6ƌܛ@y%pD1{@h/lutp< 1Mx.'pjG!,=8q>M1(EBLe dY~%G[=pɋPW0"^E\@٩7@Jӛ֗g2ye^_`mr>s\|}'E IӒmn̡~9=XCn] DatAx7 GI"ӱլE7-Y>>&PHHHQ"}.{Lm7P<8m1;c58?N3/ESCiSpH35w%L!΋ULGV)%9`d͙ Gh{'HnSANꢧզ6Y֭ bũ}@t)gdWbᩐ^`"'5QRFC&d;[)s;Sowzn "|@~~(d^ML/82: sx4sGriK,1ϴlQKL>,BSUͳi4{qBtݪfK[6Rc1UFqa )?/>1flE^A$b>_7_FwF"H t/LLX u=B