pcre-tools-7.9.0-2.3.1>t  DH`pJ3/=„m}<0qMYE_PiaؓI%}Ckʗ~E# Q/9:#qz󟣭'?nlu۠fq 5}s/U4Z P^GFw|'~BȜ7½\m 57nӹ8Pn1=aV+0og*3&10ef2dd586c0b89507cadc321208d636e9e17a15bjJ3/=„`B)b5hD:da*%Zg=b7=bewRa@-4`kиTR$ q15Cwdtw f0w9cE]XݰS\ pc좶iOj/eUyJT:X>-Fl#_ kǺt!^|aab1f2ԍY`'Os39A^Zj7$ of(l &|%j+J>Pg V1t?3믷,>;X ?Wd   K\`hlz +18L V ` t   4Mf   (0889:BV FVGV$HV8IVLXVTYV`ZV|[V\V]V^VbVcWidWeWfWlWzWWWWCpcre-tools7.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 J3build24~openSUSE 11.2openSUSEBSD 3-clause (or similar) ; Other uncritical OpenSource Licensehttp://bugs.opensuse.orgSystem/Librariesftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/linuxx86_64 Y%$큤J3J3J3J3J3ba0ef546cb47be4b8a24a4004d2a42cf860fe7b583f845f78e25651fd09610ffbd1c0570dfeb707723fd4d062ada0b5a94ffad42448fcf22956a712ba3f5d6b76dd3c67da9f9717570d2e1318c1bd2c5rootrootrootrootrootrootrootrootrootrootpcre-7.9.0-2.3.1.src.rpmpcrepcre-toolspcre-tools(x86-64)   @@@@@@@ rpmlib(VersionedDependencies)rpmlib(PayloadFilesHavePrefix)rpmlib(CompressedFileNames)libc.so.6()(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libpcre.so.0()(64bit)libpcreposix.so.0()(64bit)rpmlib(PayloadIsLzma)3.0.3-14.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".pcrebuild24 1256141730aaaaa 7.97.9.0-2.3.17.9.0-2.3.1 7.9pcregreppcretestpcre-config.1.gzpcregrep.1.gzpcretest.1.gz/usr/bin//usr/share/man/man1/-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-pcrecpiolzma2x86_64-suse-linux9s\pcre-doc?P] b2q|=Y10i\E Ĕ:EHH k{6FljimLMq`4.si]!O[h234~thc,tA^2C=~!i(o@x_z3\ztMK';u4 ,˷w=d!M FN6GP=Dlz-OՌPZI9.7ЮleИz5dC%-*vF GRtBa)`^ѶC)LSRVO2.A?P:#{WmnQ@)$K3=+TI~ʑzB r|i.xQ0o§ ueY3 Ktؤԡ$߀7N|3訓IPf1t^z& m, 5>~ RGIV&  ArjOJ$F#Z=hZbhmuҏ./Q Ď}}Rtxkq9MłTFU +ECTUr|,mȓs==d:=! )ǜĘYl 7[iD G̘ 12(JKwN渂HOcfqW< Z(j-!_mx*RS.ђdx 's_a-vb# IT>Kr?S R$iς(XH㹅 Kp$xG$OE20þ-hJ2JE>FrMuOΝ:Xԑm9B-uD+?wN.5Wn]~#>a+GRﳬɷ8%;kZoq%qk`PvL%9 yvD@^ޥ|iM D ;>Jq5q纲Ob µx7ߑw%3UǓQ\UxZ,D?S9*g6KP_PגLe9?f&{c$>z?G ²f Nn U0] GV8ans@s ]d:CrN ?,zRuRǣ»yzpH橐,{ٚB'J@9*%"tF27Y1xtWVXK]Pk f : ՟'uA#Cd5,qjB~ž qW ⸺t[5jyht98YI-|fn,gTڍc?{UV/h>)y}q%xJT;*Q֝cpNAk|E/۳~QTv1x h9qyߏْ 2~g-ڻV  F>\Kr-@VcHՈF>e=ƒ9Wd=li$؏:_n^s{ݚELy@A =s {ӽyM-[eo -10TeaeSjͱ-́:Ox! &Uf>*r5(Os]R鑤=Ԟ&JѮ':uƴ̟ˋdf@;>W0uдZKlu!n^FNǰ w?p|b.]TyLT] ]w2^[?y1 &_ms&z0!<`LITNjKuՀK)Q aQ"Oi>n!5n[/DSOg!!+sOD>ECAsrG)ZuUdLGJVv0f?Gv43mv4KhhvL4ۊ0'| xꅸυCĥ;CE!J3J3 /pJa Ť>O۞ ͔S*s%u31`P u lRfgRtjYByX ?^o`1 h=X!P,z ˺ W~HF~UAq08Ⱪb~AP m\N9Ԟ,cy8`]\$[E/H賾LrLStl}c|usVrm#e&OM+ DTp5 1\@-k>UuXw>Ÿ@[$b詇Ng\,@~a3AE7 DW^QV7Hwf^b䞆xbeEǠqhXBLy7 :%i@K"VT=}η박Ӏ/ro% >T1a/16f}>YY.xt".r@Ћv= eq˭B}M)9]llL6' }y,g|JExtLHh^-&(Ɛm[RL_ pcz=Ps9hPKBaCCn3YKt?X⑮(<~)o;%B֦xVF]z#|69pQhzL\oDe\!"㟈`Xe3A\aP7N,H'PAs̥Y /py5P yz:~ iβRIOxfn.L]`j;|2$L) W?5o*[[H$?IjRR0IY6Js2k 4U8GLwܽQK#xeC)Qŕ72u6Kv⩤GJ$Gbe nfNpS˝~R7tᅉW!S檽vʱ bPdJ.!% ܥk8dE8D1\S>G)=*rlj),|w"Y:{}`ORyH~ \[J2>Ls6Bߺ'Ϟ =KRO֊0Ӎ p6ABEc9f$$=f ~_Pw!F5 @DBU]f}UĴ( I%^kI(A![Qe7O/"=2gn @+ o3:WBk -~ɢU|GW޴~k<<"2CQ`~yMA .5Xs݂x\h ʑTjE߾|f6B0}ѵ{NW*:XӤaPKW0 %enYq5Ut޾Rm@7;bK ## !!g/-mXf97,]ji(* m [lfv{jy3AJNzϴ۽C eHFPc|L@r#޵aAL ^ 7˥%iaE 4ɠGblL3-u YwRFV̡̺&D q$y, I͂zzu 7>?0f쎣j{O(21[S<Nv6Ժld~d~"yT.~cמW"o,|4'\a(զwI9[o'h2xp< nͤWaP#X{3ei!S%F0IT*Џ*ȩ+GEdUif w-jV&/ G_RE!LT(m 0;e肆aιV8ݝO-:a5L@(gh )aɟZqPj?@L< 5hYՋèqYk G%cfĚzmF#y}Ý: ⚟Fd r1/뉏0? ,Hnљ8Mf<{\Z:gZpHy7CbMw+K?J6)|rMOaqLuyCn& 5̊X*o_}%'#><߫l#LLD/z4H,tSS nmS-M+Q2_v ĥ*c@?JTdmrfϢz}[^ۯhN-:ؽJ즍:Es^V)BKl#3@-2tI}Cj'N|JsxٜՇ:`1ƒF VMNj?PJ]WH[}^/¼tCnUP,'Ejx˲dP,ʜ05Z ն|uwnuu>3wsϯqmDܔؾyzTo*M]?~Q'H9Dc|z* c'"B20Ǖ@[!NYV!AҬ nZ6t9g W3H.tp1´:dVPw쿄*L^HĴ#E/Dg&:=׋?q;!T]v꥗S重+44Uf8Τ֓ŃnS(xF&3/9Q&b'UNeȤ&pW⟊vi+#Z ^vYLQ*ȲEr$7 *+5pV*.?qXdm&{D Jȴ/Qdl)(e>uinB߄ѩrނF'. yQ rlE &$۽KBor.;:(p&DLyAFo=gaʣ@OiOgs0Y͔@-s.J`Wӟ nH-]wmEP4"" 9̉zC_e0TfFŸ"Wm+rmaٱFWFu Lꩉy$z31Ӭ95pH֠Cв+EH^i:1fŸ?Kx3QG`^UjUK-!/il 9! C1,=`*kn_]:"BtlͿ7ߘ`O&n7Tbm4(sݘ6F>'JĈOB+|Nf܃ߌ*U^W"5ZxNS1B(rn=( cǵץ1øzt<~3gĐ`C잞`0'yI.G6J4yA%aAկ`%2N,nc8¥6ejTEXu.Lh5WņW*%pt7~Ol?_$HK'h^񇽖DM4̛fJZP rd#mƒ(6g_s"ԗh_'^-)ilƲBs<];5oXG{92<ȿ4 ƺ$v)J%IQˋ[j]2 1<ܼ+oljz+ eM w,kȡ_f2aZJGqE-w0tøRG4iэ0a[$'FZyػnI4#vcd)i# Ss49 @RA{u:8.4z !jiB["WX{GIRt9&S,,Pi,DƫKyCƁ/$3o:I}$|2i!;SƄI;Q5C(`nȍPH{_;CJX/ZH_OwԳsUluFQΣqEVǺ2Le#3gCh1'Xv.ɐk6I$SkMo;x vei8CZZՎi񇎳 S`^x*ʆDOddeF*qeJٗ("lH&Mv&dIlEg:7&^(i,^8i [v+x}-Zb}N8={\ˡzSp jBQm$ԣzW~ m0c]0OL|kAe_AA8O`hJ$ZSSjHg דyX^=µcou%?!&}W\Hs9ο&, Lߛ ^ݴc@ f2,I7΂hv׎sv {Z3^i h OU↟s>⡿J 8ϮfTv쏽%tg5ApDcGsZCɑA?E"JaP`Lyd)(}, !9Se!4KIpP m + 1l$v#`NV)=ֲU08 ~"*sݙ@dp¯ R%!?dz;YBn#ٞ Ag"2n妋Ԩjc,zQtXyL}Mʆy'0^atdG NHtv7 T[QjAbΒ@{0?˃V;H,HH}"M3r2X{,ǂoT#-5]^{Tx`s߽~Y<O&Uk8J*"8iH`{?֮;g["sh i*sLrjezCzGng1:!sg p(lə/7"D}1@,?)Xm(j`Ϻ& 81 o#{w2_,"5p[ nɨ;mS "EC=A+'umsqYa=v_+;:I9 AH.I^~jl~UIBApt:tyX?@N` &kh@W*5?M jMt:Nm/aFM7W^_ ŭ*GjFCQZ(kV?(ި8/EJ̭JW$ިZyGZSt čbB-L&6_`uKWbwS<ˆ\r/%p';5S0&G+U:.e F%VsSm屋 Jx^:~YP av)FsωsG[)s ŲB0Fir;(!{RwvY-i,eرx{)DS9ѦRbZIKcb¦_gw' Gv|͂9k(*+DI~%sqU(|nJ/e8Gl{j@ʉjr]X(Iʦ)3&WY`IJi92\wgO"s΂E6~Z,k3©0mSثaJ9#htZ'.?hHdT!qf o;VAW`ZpSiC =DtCtᱞ|r!c< xs}R,b'CTkEL>/xVuzOvhtc{<"q_1fO.lw@h&~a{!W%tTlqYʝ$οi{&a,~4?(Fu'TX,䃧f4h}(a4:l; A]M)3\9ގcme%"1sĂ0IBz. 7HFzColxas>( J(N?{oasVBQYeoӨ?^o=bq'sRSXq |s7/G#lt%xJދ^IZџa je1cMy2Jc%lQRZ63s߮9)Z|-T̜7Y[Lh/g'O5wX,=!Wj5V=$iH o`GE=8P7W`ubx(yj|ogxѡFHݜBTc@S֔ӎX]k\5G\j8< EG7ѕ`8¡p'ՏBZ: f}-~V:b1*S'/>_\jD)܁b_~ꂡ=,F諝ITCJPh-Nor+M9vE\N0"MgIDHBgUI_X>&^_] 9Fy`TEݤ|S"By"xw{+^U&r,4 Γ2B-1ś^Nvj̭! %e$mI_Ud͘i N?fٌ,6^2@ifL L"[M\gN^ #ñ1HRMq6Y]Z۞8TN+/P'\]&3O/gk)7WQ{+%Y۬'4s=f./ڸzVn٩h\ sQm|eɿ~@dlQ h!m h/0"34C30W!kU(@zE3x֋Ӫy t|$"DIB"|uZ;!9F'G#$s&[E&[w6`SDvj $f%Ei0 xH21CRvy2ZEH`(F1\j^ḯu'IywY'qZ },n=CIdW5+x:%F$jaT?oǛs\VUo3! t'AZ( ,p!H 7CU|W f`<5؉J!@'pW^W!..#}PQ澉OL^L'}sP@>Mc,7EC[돗e 5CGUЁZeN2{=%T">::uyx+.n5,(ː3Q*R{P oK;$l?:^^@'rAt&KR`6BvT&m,dԨh^{'>?9 &MΛ"JGӶWS`uH*/@43t ;Xe1Ǒ#`?τfFvXMܡ*1z$D@#%*Vezps9U"uC|SX>hhZƕ(ДS^XTdehh#[ VN%m@,{9f(Ll%X}h/&‰0?>XN 1JFʌTDx&-ðs~}cpMT%1bg> /S.cՒ?oB8LbE_`oq"0#Y%* '0*jFnb^\L$ qJGOpMX]ظHfMyg:Pt.ǿ"2ZZ#tYH_1ږR֞3ƂH҅#Z4^;[9BJpY|^`1J n8,b9Z(L'6L倏W PDtfP1o A#E<"|{k`'ygDG~;+kƃ &6GEbbI%!\tr^,o>"tz(Hh<54F:['ݲ}_dʗAC҇.ACxPy+L#WD;ώl1LiQYpi؄.,9c4R>,nc9 z\grLb-e7_31B+F?hq5:xQQ0ɅdMjx Of XYP׍B<Az[TBfThcdED"h(SCy߳`L5*P]>i;.@uk*G@l o ձ^2qܾ62=d+Tsli](7*Yc1wTSOC&6b_rl1ʺ6kYTƼP7)>*% Y*ӧlȺ@%V%n33f5u|VNev.d0K]KlϦ:ǁƲI!}I S8h vՠ# (UNƛu:Izt}Y%><$rcd٠c^о_v<0gdC&U *Y|U6:f-wOz-{jKpM"/kYwB SS^ `CHc?gKLoN;!{-˵i bWP%.KJ c.N3|-.+|EY?IDɹa}].$h-LpI- ,J*V(+%)H cV'9> eR8@ }2R>sue.`:/%T%xp"(1]*-F;d0 !4x ~3a|SBNu|fKƬZck2-u& j \Γ)6c:42 ,L\X-ӣUAfȉ$;#H-KᲣsPS79C£7X%'S] ˼I>2tN?d{|1f <Nj75B QG̫ӰA dOc9r8LUu^`u45:9jf{k@T|iRS2@VX$|XAURd^X5wp]Z{q3g@P|<)Pʦ_ l{mY<6W%F~E ˎiinkʺ.+ثaƄ"1Kb#Wvyo )Q~s  a Pbo!Vlp01;sd Q-0^t`I&fgYzk[n6A󞯱OEP (|AAV<#j3UPey- վ/8B O{ҽ ROwT@!/V[U &tR4ga| JcJ:;Kg؋=;`)ofOB2bT*.py*gʶ+TlwrR|)CQ2';3Y Jcn[#]R?]DJEJm$cNVsGd- <4W9Pc(y`. &4mhIgݪE{(y\g0S'@wvb]!EJ *Ǡ6!c&ܔUJEzCA}]q%f/5ЈDQ1Egk] 8Ph`@=^zע^\>~?j;u@tɳnt?p-v Җrh$!TL~Ƅiv+qVqOr9tXZJH=&6}X[Z` (gnc|Sc픇2vH_LO>g[ZCn*IJÂP3cyw a z"@?K$iEY)HzVX:@^5?P.)5 VЪ`Ƕu즛g@D8TO{<8ui@=x@ DžNެx.1L$ܭӥJW#盵6qg4p-1j.dK+SL ԅ9jjb\R(\I2~@ˈ7Pћa}=E=t Yu JbLOY0ў%Տ_&ejF{%'&î_,f|Fxlx+~,B:4Z&"0юvs(8+>¼-ekK_턄Exi !t<;~9Y2^Ӫ3.v>7b(?=BH 3r7(RtsYտ+uB kIxl X]MaqTl8@M]W/vC]y7wjwZVϋ9u]˳%ԈшQ⛣^/Df Kι5N&ju93Zar$֚wJ8[+8B^u_= ާtAJ+kR N,51r $Б>Ƕ}\V ?X@ؼL0E^~$i]_^R\I{]W{zt:b0t Z?XV@Ǵ&lVqb>E"L|ғYIR,keJ[݁ԍo2tczUa]U~-oخY!Px/q7W9ϝ!X/ɤ;KrjA%!!ql2i !]2vWYCn'sCIM=/"&@hgxtng^{ٺu&)?KC{:)P PH{pϞJ{b\1^D#0|Rg i"ޠnIhh&_V##Ss &XN:~9,McH9DJჩ*H@ '8㉨*l+t *Ȝ.}\0?- $ܿBZ4t]ۘLf)۪T'r{Ͻ0D^p-H9nx|5v+ŏ:00cj¼s|:n\eKמ+!V\fy5~ĂVxU'3t$ъ!y-m9*ŊW^2e:mфcGwKxkwe,8c1՗ J7 J|Өh&( JP1n{LG2qEѱ0\F 0w4<|!jeT"&HS3zxˡz}oŬǪF :HY\;DK4' j`u,K rCM %"Z^`S ɬzc0\1u8z$;xcJ|ч&[֭"ՃJ_ib;x#eG]*ϫijO{ "~59 [=S]#Ù.,K& 6%]ڨQDJ  xȍ`21 ya%: |Pr8_=o!9'݂E^v(5/E8-,՗--$f=]$db3Rd/"-{8uQ|7s#2"5x@ih!%S4t c|uҶA?)>Ұ\:vSU NʣQ<ٜSPPhzs9HnVLn؍vsBAuu U$eeO?m;d %0W> } . DkF" w#1<W#/X,OU` cVAM+ {G7,>^xKuj;F {$5v6ݖ m c1(6$1 Ǖ&;CHF4D(wʔ#RW*W/:VI ⒱/llW"@q#)"6V7xӒ$X)RX[ dΈ3 [\Tڄ.B^qRSᮦqk2Kkg[ wT5X.oJD&rH2CBt5FJRYu1MYJnB b<@:X({H|C/ ш˚dSOx!+Ԣb+_Ե_iV:))ܪfߙuܯ e`8{y-Ģ!d]>q}䐆XڢjɧnTFP6шJ%Trc˜h*ɀljy;4«IZ<=22ӵW[HGL O&IeJ%0(ͨ`j6;AfufFC{g;#)zpqG(|O'A^42#ն-4vƯL' sCQMH+9!Trޱ\JUy0z{Sb^9zQS'&4B #azwt5NNgs-5à]j SMZ߁(9]n;14tq) % 2EVi._Le 6.5"P]r.ixmwtN[FD;CgRx?HrܺG!JXS@qj´^g.V~я8ʔE*AT\pdY/LLb2م4Df'|EM;[󽞓-P"DGj#J6tSxml-Pp tЬ*r =]0ӈh`#_S9R ǔrR*Vwnf`!oO\xj~N86"oї'/73~f`õ?_Vl+8wdJEF_V٫`0ݴyA:i" sЋ8%Qic86L`wnUMuGeC3ޠz4PGwרKDI Aq;٦RH@gahQcǪ㿻=(rnAʙvu Ocmaq KM;7 6ث ӂ6C0/;]#T@E;&ɹ#vٺÕ1gIߡw "%¶4L00rؖ.zTESC5s?2<ug!*(ʍq]6kyxʜH{mbł-7(utc gMDdխ fG&B T94rϊP"OOBv3<Δ1 T9C1 ce :9Uc3 `*^Yn/bDϬgB;{M/i6 _!z{]bO!L:_ֽ[4'\g?Ȫh.sg~l?NNK0%Ojs0Px-Z7TX4Z&>Fu4s`'z Ԧ[V*{\O /y Q~̙ҡz Z7sIUj&Yq9`%ZFއkX˭]7>Jz%0uiڃaRm@hFq1^ӫ^Cg5 cdux0/ѯddru<%ěeOӂ,G퉏N5O3mtU)lr)+DFp`8]4:}+J8Z<{t98 "!:^9r[-iJvڶn)対6<s%RB7F+qnmK m fI/.öM̗cVc|FъGu SnM(\C1<%18Mѳ&v^纈hWګ? XlGڏ!a_qҥ>9ҖG!yi ĽK #F\hv_br ן6QMTKS0+߰':be(œ| xﰄbY"x$CCڗ.Kye׽D8YF&iwQ+ֺXHc5`tyhTo0~Pָ∏wc)U5@>[0TW,,=:<`I.htp`SeA-K0F P((Yʠ].qTl<֥8^z N76l|?Cȷ@`Jov,/k: ͛=s,2ȝx,(v+H] %Ng& n6 w1gFQܿ M<\]CnY蜧Vu_]wXʌY%/i`RLIiƲtC50"a\rH+{^qAȿr!$1y5bYiN ʯm>j-Ii[hbg8Ic(^:B5ƵhTqmLb*M)j8]}ջ$&}IHziG01Re e|`{g&8N&5sEZ3r9r|Y ]jD4 5i1SsJJׄEUҨ1HWM9':-02QDqx]"ijړpe$c!*)=,9` r ѓAҭKfQ4; ئ΃%7`σ9 <3`5:rT]m'CuUؠ3 $"DSc(37`'ڹYm pX({b+ҟM5>=̑;0(ީǺkN_?vK/ ;ޗ1t=PS͜*f] yFl6bnӂ7r;lig%E̚6MwStVAH(~U҆iRbȯf.PE Kbu:iuW C?E ,І k׋U2ninHzfa5#+NO_(?)>R?my+!bY h˜ƶb[8Xepɺ`T2'M$: q{q?fƱB%KCjv"j?i1k3[Ǟ}Kvٟ~.aI4܌bD1DIA2@"+* rwK_Yš+:Ou99߯Ə>!mÅN[UYyAL#K,@Rp?9{9%#=P3HL)B$p:,dS6SsCKpfLbpGmml|׺DH;'8ѷfD0z)T_Zmoz6tQ3v!(+5A2 Fd-"mYݕ+tߨ;~'*o.}LUh7M&҂$nI#}5Q OLK =9qͼsVWEgO;6l<om ${ALHPzz%. = &.9)׹8OB)$$YBzz3&0d9~4aoX 6d]B:P8>&c柜Lr#Rj"WUiB9ߋe ym=qzt_s9!"T͜.r" ɶSpԤQ#`?r va()J_E+lp `TCl`$k+uRYlV$0/.&cv:6A4%'Yc\@;Y㨵@k-*W)b5b: dPkb`& ֻOTp Hrc}7\L7}uDeOug}BAV+msCPMPZ)<&q it ySd,'3}1U]}0T6RtS@xnΡc\.KckZIŐf[?QZZV5bz8y0n[XT|Ai>GBihF3NZQ6Wjv.7vb'noғ:K )l$|҂#ĭ~vFWZw^Sj2Tq< 1C)٫e+" >߁buUa#,g/j#닖S4%LF<-9?vE@Նb3U&*?t$??>D<A= sz! ȫ1)zPV$cΛùEko1АG>?$;HOn;f}oq55öIFF=-/̀}-{iY#Xx[FWd@fD颳^bnQuRH[n2th5O3'hr6n\⸅M0v׈W8I"ϴHYU)*o TTP%KXwX#gHBB)gv-6y]sXxL Qs f8CLo3ړ-9Bmrx颊{izLhO֮/bwyW5MhA p m < XׄH'qm`8i9iGա]7Mn;j\v개 ˣP'}fG4QO-f΢, 3QFK1}L-I$ iwZB& L(^@wO D"d=jU~ׇ2,.^D|,kfGGx+1ơf{pnqlY;Inƥ߳)g·&28W+)zyw(_e>M3B6t7~Nܖ~ѼD^cw|ZL!N0Y;Hn荕 (s1`-#UDSRW?rUoA)N%D_i "gYcXM̗RaҐIízH`_ID*\o M[ Qo5ofdhR[c=' .ޣ[C|GP*$H|VT4 [uIe;U|bl&®6%RlNz!0W0KBYh6)i|Who^WdrDJl=Q6b֮0pLJ_8`ŜDťDLF~j$?q]fxꪛrs@Qď6l]%%Op-D_iNr+4+@ FL*{f +OIV0h| 3v/L(lW#{\eQ8m;/ SZN E=H=p-O*f8%ͺa*dZCY/8b+}8Qsf Gg Z<<00 g *T>u=RӒJh޿{,K =p;mc?06D@b"N,o=)UwӠfm$R҂8x:Qf۠lU E!Do鎩@23y^JRՓ ^]SYN䏁eZiJXU+n&kĎ$9G ?N 5ɰ,rvA@Vņ_.-8H^Ñq1dt0& ;Ԕ9}2OT*g$;K?q^ 9j~qӤ]9\t0L,5٥b /p B9N /m"j JJ_kT~j陬`0> ̯RVJƣm,A;\➹ᾶ-#ع[Rc`j2Meҥ)`V hb{ 67a|H%ߦ>"%x^>}܊\bؿzXݴ͢dB}}D]B+RQԈ>Nv}Lg_=a9Z497%ʔe\^X:Mbx=SoG\4jMeyؔb)uBA`$cD@}9T(/1Ru}FPtfwr3= ͙_X{+6%+QT[^-UHs!M w}AK3dyd}m;ddW cðCjD ] c8jsn'PxV)~ 7pMKұЛV&bgI‰&؈h_"-j֥0v^[wS1@!ܾ[Nm'`'"qBA)G؝ j7Zy~O&O6$F`NizTH kap*LLڎ&cޫ{^6JX]1h+tݱSayT-ypEP ٹ4xdc;., Y5ŴW;}5BKwpT1$]ZZR-SL<6tz$<Qɽn)oƦy9׽|.CmQE),9]I\bWhՂ#` vb~sYh)I^ I[&B(9۵7M^[9XH'e7 $pZYg$TX|b}%3Lj"aQDr!p=.\܉оt?>s R}i$S9>)gn" c:SЯBb7B2);[ CzC."=X)@C0;f-(NРûyJŸnp1@/)vYAŨP@ O7>vq/ <1Èv"We%<~5~X_٣aV߰uSDrO/y$#|_R9 V4yk2CLSR0x]vHI=# [s-ɢB*X2g1*>.΄;2[" LGlEh=OEf"=}Kp MD#Aųs(LuYAu4R 6U3L0V3")&NmDK4NI<8 _N¶»Q;yf5K$ӠI)c7 GFhИ8ه=#T^TD&5;uc m\pF) WSGQ+,/O֔ٹi%oKU 7b CY.`̛ ykhMs_. KQ؟+*Vc)A0L8hv ׹WW!f #wM&)'pS^téN g<5r7y ^~BOpܯi n^K9r}kN/"Sbl_yY"a )K M*T .oDd-7U\Ap07B_W`uQ)Z_>S]c, oɰvhE*ꛢY0GWURHބ28NGܨF;F8?y3?~U]>]n ,!6zh>Ts9Wީz 3u1s O<ݞk֞-P:CC]Y,.o?o)t16!ʔJl4oyU 35F=-{, 2= J2q5Ђf)Iq+4ץzm,Xh_F5Cx ()D47PrV-#z$MErrVT/NQۂ&,U|pcOJ蠶y9aK2PáD._~ =&NU5j,晲f\X *Ի4qwpUo* B@oR;*}t-5ۉ!.a>}dKu_B+b+`ے[[(;| %%tDfHƻx3`S"PJ1JvT˯g-]o (BdRj_":,#ԝ[*nLu<48A5d} ~ dPTjM'~j y3] f\ޗ1o]F9agF6M?Փd>.w/y9d'}TT^sG_xLk6ʜB I`  r k%KR (_+7K#mp咍vּ.4Az) / mA 'T]"|?Z]R/4XedjlZ뤯W R%D7S#/,(kozm+(oi ERkknЄ6H0]7~2z%i["(=Mةf:7ӡ; Òi)d6!bsm旵l]r]E+?W'_UF1Yr3ܮ ! ܘrfHd`;PV+X3IESD&:}g*з!ܤ?rKnHZ !ꏥ,V{P%`T%trxEZ8Z#;X[?{&tgiq9nʜY~cCCmU@3˦ s9AIL,ngo:!1J0GS5'=jk(KEy$F'Sˑ6@}oR]Q-dswe2=xrGWw?|^wxJW'D #qBRy3y .wLUi%!cTM̐rx,̭^ aeϐ!m_pyFT+e]~Z^uc%2k%>9 jVU˜la)%6io^v0 "!&"\;#5H6{))x9 -—Sj8e[MuOϓF >&Pd 4"q(**V^uPgWGqwiSj/{,.|&?:b(nS%;TLD]^/] }dM+NC')C]cN"d& 3ϢBGA&!Y(WLPG?;ٸهp8KlK{F eDp΃*2 !h "&^exZrUZ\ g=Q]{/ƒS§&V^V:zZ%_0 H$y|91CD{z ?$ 6AQ_3=p%*͜dr}+´0!RxY VR@δ֜R7OǿXR I"Ȥc٨G˫\y69:18'Wn%mv[εOoith be$RQ/ol&@XD,Fbn" bc˸;[X<;hi68UՆQKuldO'g8BHԬ:b՘} fa+po+FeV6 C)]޳1u>ZDŽF C opZWţRRXl?'}=&DFNᄭw@g0sfZA\01 TW0qmfp i{a2G r*zpõw+aʼ:eOs'76: ʓxPIszNv!~ԆC!V7`U~ f*/J:INQjV%v+9\G ɊhȗFNդ!]~PB-TO~К OzcϕP=@ي* b[mu(Dͫߋ*L(u憫 deRC[tq[w'D%C?3[<`zʭsSa~{iJl Z&uAp`TYX%4B?R&ڑvg[k/͙ 4KqxGfP־7](KAAq HiSU:f}͈}# J& iNe.u٣_J\w$] GI $TrHHz`_^Y5{_n">f5>@qvCipIqݫ\Z~LJTM8AU2Q@k!W` yX#D+rp|abAZ;$n-),4{sEGmvyJf 3XaΤ">4K`wmvR{âq,.km]&;/òqAi79oʫ4N<AvMߧ8;-!ӛ ݩiMoCA`Nd*+#A (1Żk &)1QhAJDQoasNTC$Z^HEx#/4a+˂uS Q/eއHsZ׈<;z!r [zw@[1,רg5߭.)P+\ $^l?|;@d|$[Xܦt4+s.bxh41(["i+34Zg\L*^9&uO"l %k9m@n&u1P%+ȝ,Cj^Խ)@@D̡Eʘ;(Ϣ Tc!ҮmT^>O s=$Ű19dK7* rUv+:pޕKSW0"hd4#zs<q8.TplZYY~gXשMU͍)boߗ&ø[T2O]rjˤ&aH3TJ0Yr l@2S̍<+SGL$WPVIh޹oW^Q)NC=ӝ/!\{QH&/Xi\ĥ9&{־z$4bx"UQ zv^jPN@v@GJd6"zD OOHlI+lp̿S0niu4ctN5Wt(Xtz=UD8[&,~[xW?rR|.~{W0B4 >_=y$>KCsjV3?-d0oʐ Qöa .1Ԡn\|([YrmCpSСO'YgzS"]9ꐯ؏F#IHfd.)X"{\Ї atq.G]11y8C .{mW 6/Ƭü-#lQf%܎0PN>܂ŷ'"TaA[lwgnlb""|zZ#n\1I?MёG4ۘE\KiuӲ,0`sP,LJ;"٬$:k9aowI'/rexxHZ| ]T;:m gd5.!!771M|(!w/iG8$mzmyW' աӷ|cMzQA/I['=fgD|5:QuCU)81s<3_3ŏLZZbk TײO5&Sxݻ?9*06oi^ނ*=I+{`~… Pj^Bۗ-)ibtlRvijL?Jo8_$"O (k XcRK^E\GGz?HtKC[fQk﯄s7+ -GnZ! 5 3^{&!XMls_!27RLeyOm4K@mUf6)[HOuvw睠yy $"2J¼d7_7b7[uLY7pH\%K}l8310-P.1 EM]}o_ϛUt|=ONI&^wy H:ˋ*;氎{:7ZF0%j(αk rD% ǝ Gcy5!=`KqTExe$*ڍಧ8xvl#?,9D^:޶S6}4!Ś}]y#k= &,Z#ǣO%uK>t^ J`V.[U e#Go\|4؁Xw)[x(郥ߎ4LڶX,P;aXyp R\( xYlI_!"Ȅ)ٝ ps|{7I-"FTrQM>BvUhP!FX hi}v ?Eq( "w5ꕃ}N˅[׬X/LS,D#4~b+3ͳF̃ІLb#*j+rۂ 5{.b;| +:SB瀯:xĐٯ'I3-,1Nj 9Nd(01/^PvjF!F' ZfgG~N yY2#YӻQĠH:dp8ETP]/. e?u,֧ꡜjJp1%hbqdq]ƀ` [sIDcY ޽WL l\~GA:V^!Q`J"O_h~Ru/sJ:ҙdL]ĻZ-qGPѧiI~J/%/@ѥ[,>@PImhTA'rl ߾߁iE]37$knX8=[P^iuV,OhE*VZ(Sr;5ROu|*m P)nYx")^&s6 gQ:'4Xcʨ12}Qv$U49Y0*da |qWs4UCm*A2n &pf(R*0'lv2q~!rQ& E%8^#l|Jn?B)VLt8[003dmF>`T75 E]9`-n-.9"S8`c%)hAuէ˝y[܊BgOR!ou‘KF[Weené Z:.G0b; 1k&DP$uaG /7cN#6 _68ysoP̡Dƿo)W}qj]w߱?iх&l1LC+Vȧ2Bi.,""! PGEZjx"RY\~߄ء@o1*Tc2$VTz(ʆ8,6ZԄ1? Ma*G/ELȼ A[~XD'ުuP ZxkGҹU @{PuvII[LKE鋌lXL:Z|޺Ãd{jϸ-0lE͓7n`][WEbڕrf,~_fRhۗ M< *-ie/d-F6?tDƩC?VduzMf^6r ZXxNSg$?`lReP>xdE(#$(W`N;. sX)(\N*^QSSzʜFa{%kF{[`XcO2pQ/68tCkk@38S@i:,@L2yup ?rVuൕ򏖒i"^2|ItnU{]ܝRͭՍd!)LMscr?aQh=s)JMaDugCEaM䁜mf!0S J v0dzO8--ʥO:P*/î 1,E1WP"d{:i8C,z>htEc~ʷk[Dm̚^8f8:Ϣb(PPM rʑϏ^S\v89Mݏp15*q5C|h |^B b %n0<$}u30lH̴6y?vl7"WlarX$/K4o${tl]OId=~7F 3 m0͖2>2\ O)*;O=ےz`#[!QR6__ڴvUZ=]5Y9>O&AMICe掩1z qa]FO[X%vVz5&ڶ]86UML?Ga EE눴~5*ZuIzBWҞF)#;S3\,N;YLlEY#֝_XѦ-!LjȅWnIJF괓ɰq:LxkP3a(f#*Rf#VS|)Ѐz2}RvUk"YZbnXQ$p ˡ>^yPYNN hΩCՒˋo[@ S#-%J E3idZ7u/g1aFX xEDm#g#TT\U&۬YNN7(O9C_vd*:aH~fu@촨7xջ4ýۍ;WSnr5,XWzA@ާPBTӂvc\id ]ىLLx邲r#n(p!"b AGYp##CCV9y +re4cT x΄ 7ܯBx6^%O!=j^@Ă._'kR:搵|.=`C԰d;rE<*S2GPC|t.;a(X*=>ЖQ x{ҡddE^rG5q-kA}GM:So.Oy>1}R!46\v˅gD"@`gk!<<~ERĜsuG1M Mhu!}_Vz2?}/1߱Ws6@U%oA)-/]4OI:Jr[d;ᗂ(Ruf"GWDO k~|F{(\%H}'wѪM- NASg*W74u ߐR㪉{#g;Kn.7G܁.J+~!}=E* oR覥J+L׵Vޘ<Ma &9LpzRŻ?oYUWy`9Y!M)Bv{PU+L_QFV~c{(cUL**<6κSܦ6geD`ȅގgՂk>yyנB17,29jF腅<AK2}č[XZs.̦8S cV  ºmF@,eOB0%)!7߹rvFec 'ǽ<>r^1?PuzsV`E+ 0.b\/Ɯa+-N u-IۿVAN3CdKVP˟~ce9@MǼ^~z?_ 3l1N=OO.qX [D&"MGgP+-Q'S:fC5W}m`ߙ;iT>T\'*jF5ip:0{فWёsm0&j;4A%b _Ks7e.fp7E7b&ˡ4Nz*^hj @ qD&RG]o\,]=a*,_tJ`:9=['ww'Aܿ]VKٲnb3|q:w]4rLJs'/M5 Wb7dGoTf7;_Ɍ̮*e݄X1]zRUEhՔc {1 bqތ$&a,$Z1В"|1B'*֗;}Cb "ߐ ,N&b;ѷDFi+$|K t(6=/AV8U}  $*w!j}B'nkf#*ӕv.ʣKfM3$I [1+j$YK9[߄d* T鞌mGUmE/V8OMSڗY^w;l_]m !<( w-D&%(8nCChX%Z^xp`Q^\u;燵t3S0L1k9jmHöySa>/h~_#q^.rlp,O`ոvjո|ҶfV 8Xu2Ͽb.ٞH"1"9Rչ]eHG!H _(bh8Y5Nh7XBFlhA7oԄW`W:ɔ1k!^Cyl ur/ة^?2fTt>ltD.kaE=^6;ܫF:i}kEL#IBflT3oU1?7dc&zPK0N䛁'8mh갦s$b{S,B}EC' s:zmLi8 )~m < BBDQ)-[QjޛjS Wv?G05#t>J|d!FVKEe*T6^^(Ϻ/.E?jp ذ˒iʹ\h .2oZ `E觬Ǭtx `X@fB#82Y*^_vRsE*ڿDa4y@O&xIZ H[.mr%Y`+c\J>sR~w#PF9F F1m|~drӿ~Cw7cV/ U.h2Lȶ)T3Y*p, m[Z݂&?RQڟ59M?o/oHUu"wQm۫82]K{(9b*ߎf7^ r{4$!]@؝SB^E:O\) &23EӋHCXm /r,y]ݤ!,Ls31Jq޼l&jQzw,lxރX$\5oTʋ?FP~bjx" ]kx{yaxY؝{Z @Jf].Xo0Ge ;̯<#]korOʄj,,nn&FjV*D tyY>PUGttqsRPHហxBIboSf+YKEzbʠM[/ Xզ%=qցQ2k/Z(V͖Yv4m 9e=,VCal ~NCu]PX/<Mo~Gq"MBL l] #T8$E"F$ѩ0O;v-d?H*D˥w < <#dϼdksVZV& fJhz Ƙ~a6v0_F~;zVu|PpOT͹(" :+X0IS?Q>eɷ2+Xfg~͞˓C" WPpx1]v3^QJϊ=c;(M 0#v"8V[ [:h22 Y&g|AhmHEW|v9 4b21ގ.21;W8F o,gv`s66u;ڇ~.UKd 8&1GA=#up+5dv^} +Z]+v_ψ#O>^Te˙?2Ḅ(?lXi cQy[.m.n^ab;F5SHǡq&#[Q] &bLsY)fy#g|Մ{ewlו p/FOr!~oF,ĖO,h-vb+)TUe͏b$ONOݲq13HJG_3q!&ʗ½cM޲UȺ6iBA:NctЫR Wnc*\gŸSg::WWjQ502׺Nvv+ȓJEԡM431\&y[{ #}d^XXx?[aA-9ɴ8ze~MG{.Q\P5FeF86I̚\E ک.roY_H#+ 隸"dPC (<_],;ⴤ)MLތ]Cb02~mbݯ+DqU\HJ !qB!Q*lf<=FJYP\NwfIAӥc5z0+Ǽ7 =/EbYS ܙUW~Ǯ"z. JI:~U%YxY З?H9ګ쯵xď%F<5U J}z̏zoO'pz!kc[Vt5c0_By!U<8IOD sc-8t,֣#^5=!*"o1pnlE2uN|'ZE֍lJ6N5aTy"y ,`Vcwd;&94!K#2J#e<{,r=p cG)piAӍ46 `[ԕۨXjeiS!yv)E2ޡ7]9&bƒQQ4p9&vQNW.|]^d-d.9CƼl8'jw*_YtpIY¨/mFB4m CSû9&Y3mI0ֺV¦/֕8P8ZMg0F%b/:O@"TPkecQC0-I EA,,-.~Wc)C_Y57P kaa)u=Pq1&< }{ˤ}s8qPpb噃ü m X3`!uuP6i1YphgU| sszT5xZ馤;gd!A1:}np85?T\p}!+o*a9r.뭋}z89r]XlrzTÊj.myߩ*`86iɁl)7z%́wJЁ|>S3X!^'77JZ)M+Xٕʌt>a!Sq NL_WzE24%.etNJ!V'r֧Ӡ#+) ѼYdn&'#{d-iij /^}I$32MH+ :W A}t/}U϶9䋥3a.6q1MfY6sHl3S gS\X"Z92L뉙Fʙ1ꌌYz>v^$Hϋ*>LA"cGEr2&:Om,JO0uXW s$dTb_@3hgi2^}M~R>RZulJ*ZS B}):0 6m9g͢)Ѹ}O" 8{豗UoA{8Rr.0>I;6d  ']GuisIA (b9YEUwpکneRxDM} 1.Ee9/ PcdV{cIB1Awl9E+}$*}` JdP\88?X*؝J+aSbqUˍcDwD4*¶)?3î5hv-=5"&ȈK/sq%ӲAIуX/CIӔ h£l}pRiVUGEsCg)}xRh䯬o%ekG(ؿ`}Y#m gA`TG^(Yc /?ny{,~˸Bhw1.C\=7+'ɝ<;,"zwtp,qEЂ~ދ.7!Hfr!~}Hp4:g"f fT.rBG#h}>ﬡ(9)f60{sGV2( ώ7_YnDbqiݹfOfMC}"#E'ZI2x:uI|fklQm`јRґ+.7Uw'Hr#-=llن 5C]C{(R[% V|d|; n9'݈ڔ3v]RcV*R FQFʄfgK$.`-Nt [uQ<}s6`sbцi I7_9Z Tas4+~ġh] v',z"XJNɚ7d pwǟD=XDd~+i='#8I͸IyŸL {1kb=ؕ]BK4Ք}Yp#C⣤@Qi.N˼q{nG9*Ԥ?Ef>p) c_>8-UgѺkWB>'MT1]&2ZMlpjxJkF߸`I#Ip NkHByȴkwa\voDr`fr+0OOdLs}LY4c3bcK8{<7&Q6vLÜfH%t۽jž?ҽ2=8t$\H 9ܞv@TXxI}%t;!iB$7]gY&^=.SwlΣ2"3L֩!' N`c!%/Hf?rdgk2fU_j<drqO3߬}|J1Lns%iYi0 e&[m"xh2,yY/נ2(ЦhjLm`_vrSɌ2cD}-}M]9,MB2_p&<-,ۂ6Xew"'>@-lGWUtf4KƧ3Y]|ptˇV ~Timc #N%\R^=yP߽[!e&.X5+!