perl-HTTP-Message-6.14-1.16 >  A [Tp9|Ђ8gkm{YF})~_Tw.]X :|8@W5} LcC_eoXH00Xi09PS/ɾydK֗ݨuP8Vڛ|ވ:;rk+J9gg m4, BLͲj&SBC5y ^; =wKAyŎ«18eLjΥ .CdGB3%s4CșEOݙ5ccd174467e301b6b05a3df5ec1eb2102a6171e54f15eba7fc71005e3855e1261c0fe79f2a8016443994acb28a93622224aa8742[Tp9|M䇣Y5m iLeO-Ĭ0:%Օ|;GY}n9Fy+qb: 8Gj]ˬq o n'9ԥE9XPY["1Z "+k_$fBj%/`6 &t%tsXFc& 09oބ"5nќy3JIJk+%*vԱ7>Ȱֱ pHނ4~p>L?Ld  >(( (((,(E(f( ((((()` ) ) *P 0n 011202T2 34 5(686 96D :7 FCGCHDTIDXD YE \ET]E^G bHcI}dIeIfIlIuIvJpwK xKyK zL$L4L8L>LCperl-HTTP-Message6.141.16HTTP style message (base class)An 'HTTP::Message' object contains some headers and a content body. The following methods are available: * $mess = HTTP::Message->new * $mess = HTTP::Message->new( $headers ) * $mess = HTTP::Message->new( $headers, $content ) This constructs a new message object. Normally you would want construct 'HTTP::Request' or 'HTTP::Response' objects instead. The optional $header argument should be a reference to an 'HTTP::Headers' object or a plain array reference of key/value pairs. If an 'HTTP::Headers' object is provided then a copy of it will be embedded into the constructed message, i.e. it will not be owned and can be modified afterwards without affecting the message. The optional $content argument should be a string of bytes. * $mess = HTTP::Message->parse( $str ) This constructs a new message object by parsing the given string. * $mess->headers Returns the embedded 'HTTP::Headers' object. * $mess->headers_as_string * $mess->headers_as_string( $eol ) Call the as_string() method for the headers in the message. This will be the same as $mess->headers->as_string but it will make your program a whole character shorter :-) * $mess->content * $mess->content( $bytes ) The content() method sets the raw content if an argument is given. If no argument is given the content is not touched. In either case the original raw content is returned. If the 'undef' argument is given, the content is reset to its default value, which is an empty string. Note that the content should be a string of bytes. Strings in perl can contain characters outside the range of a byte. The 'Encode' module can be used to turn such strings into a string of bytes. * $mess->add_content( $bytes ) The add_content() methods appends more data bytes to the end of the current content buffer. * $mess->add_content_utf8( $string ) The add_content_utf8() method appends the UTF-8 bytes representing the string to the end of the current content buffer. * $mess->content_ref * $mess->content_ref( \$bytes ) The content_ref() method will return a reference to content buffer string. It can be more efficient to access the content this way if the content is huge, and it can even be used for direct manipulation of the content, for instance: ${$res->content_ref} =~ s/\bfoo\b/bar/g; This example would modify the content buffer in-place. If an argument is passed it will setup the content to reference some external source. The content() and add_content() methods will automatically dereference scalar references passed this way. For other references content() will return the reference itself and add_content() will refuse to do anything. * $mess->content_charset This returns the charset used by the content in the message. The charset is either found as the charset attribute of the 'Content-Type' header or by guessing. See http://www.w3.org/TR/REC-html40/charset.html#spec-char-encoding for details about how charset is determined. * $mess->decoded_content( %options ) Returns the content with any 'Content-Encoding' undone and for textual content the raw content encoded to Perl's Unicode strings. If the 'Content-Encoding' or 'charset' of the message is unknown this method will fail by returning 'undef'. The following options can be specified. * 'charset' This override the charset parameter for text content. The value 'none' can used to suppress decoding of the charset. * 'default_charset' This override the default charset guessed by content_charset() or if that fails "ISO-8859-1". * 'alt_charset' If decoding fails because the charset specified in the Content-Type header isn't recognized by Perl's Encode module, then try decoding using this charset instead of failing. The 'alt_charset' might be specified as 'none' to simply return the string without any decoding of charset as alternative. * 'charset_strict' Abort decoding if malformed characters is found in the content. By default you get the substitution character ("\x{FFFD}") in place of malformed characters. * 'raise_error' If TRUE then raise an exception if not able to decode content. Reason might be that the specified 'Content-Encoding' or 'charset' is not supported. If this option is FALSE, then decoded_content() will return 'undef' on errors, but will still set $@. * 'ref' If TRUE then a reference to decoded content is returned. This might be more efficient in cases where the decoded content is identical to the raw content as no data copying is required in this case. * $mess->decodable * HTTP::Message::decodable() This returns the encoding identifiers that decoded_content() can process. In scalar context returns a comma separated string of identifiers. This value is suitable for initializing the 'Accept-Encoding' request header field. * $mess->decode This method tries to replace the content of the message with the decoded version and removes the 'Content-Encoding' header. Returns TRUE if successful and FALSE if not. If the message does not have a 'Content-Encoding' header this method does nothing and returns TRUE. Note that the content of the message is still bytes after this method has been called and you still need to call decoded_content() if you want to process its content as a string. * $mess->encode( $encoding, ... ) Apply the given encodings to the content of the message. Returns TRUE if successful. The "identity" (non-)encoding is always supported; other currently supported encodings, subject to availability of required additional modules, are "gzip", "deflate", "x-bzip2" and "base64". A successful call to this function will set the 'Content-Encoding' header. Note that 'multipart/*' or 'message/*' messages can't be encoded and this method will croak if you try. * $mess->parts * $mess->parts( @parts ) * $mess->parts( \@parts ) Messages can be composite, i.e. contain other messages. The composite messages have a content type of 'multipart/*' or 'message/*'. This method give access to the contained messages. The argumentless form will return a list of 'HTTP::Message' objects. If the content type of $msg is not 'multipart/*' or 'message/*' then this will return the empty list. In scalar context only the first object is returned. The returned message parts should be regarded as read-only (future versions of this library might make it possible to modify the parent by modifying the parts). If the content type of $msg is 'message/*' then there will only be one part returned. If the content type is 'message/http', then the return value will be either an 'HTTP::Request' or an 'HTTP::Response' object. If a @parts argument is given, then the content of the message will be modified. The array reference form is provided so that an empty list can be provided. The @parts array should contain 'HTTP::Message' objects. The @parts objects are owned by $mess after this call and should not be modified or made part of other messages. When updating the message with this method and the old content type of $mess is not 'multipart/*' or 'message/*', then the content type is set to 'multipart/mixed' and all other content headers are cleared. This method will croak if the content type is 'message/*' and more than one part is provided. * $mess->add_part( $part ) This will add a part to a message. The $part argument should be another 'HTTP::Message' object. If the previous content type of $mess is not 'multipart/*' then the old content (together with all content headers) will be made part #1 and the content type made 'multipart/mixed' before the new part is added. The $part object is owned by $mess after this call and should not be modified or made part of other messages. There is no return value. * $mess->clear Will clear the headers and set the content to the empty string. There is no return value * $mess->protocol * $mess->protocol( $proto ) Sets the HTTP protocol used for the message. The protocol() is a string like 'HTTP/1.0' or 'HTTP/1.1'. * $mess->clone Returns a copy of the message object. * $mess->as_string * $mess->as_string( $eol ) Returns the message formatted as a single string. The optional $eol parameter specifies the line ending sequence to use. The default is "\n". If no $eol is given then as_string will ensure that the returned string is newline terminated (even when the message content is not). No extra newline is appended if an explicit $eol is passed. * $mess->dump( %opt ) Returns the message formatted as a string. In void context print the string. This differs from '$mess->as_string' in that it escapes the bytes of the content so that it's safe to print them and it limits how much content to print. The escapes syntax used is the same as for Perl's double quoted strings. If there is no content the string "(no content)" is shown in its place. Options to influence the output can be passed as key/value pairs. The following options are recognized: * maxlength => $num How much of the content to show. The default is 512. Set this to 0 for unlimited. If the content is longer then the string is chopped at the limit and the string "...\n(### more bytes not shown)" appended. * no_content => $str Replaces the "(no content)" marker. * prefix => $str A string that will be prefixed to each line of the dump. All methods unknown to 'HTTP::Message' itself are delegated to the 'HTTP::Headers' object that is part of every message. This allows convenient access to these methods. Refer to HTTP::Headers for details of these methods: $mess->header( $field => $val ) $mess->push_header( $field => $val ) $mess->init_header( $field => $val ) $mess->remove_header( $field ) $mess->remove_content_headers $mess->header_field_names $mess->scan( \&doit ) $mess->date $mess->expires $mess->if_modified_since $mess->if_unmodified_since $mess->last_modified $mess->content_type $mess->content_encoding $mess->content_length $mess->content_language $mess->title $mess->user_agent $mess->server $mess->from $mess->referer $mess->www_authenticate $mess->authorization $mess->proxy_authorization $mess->authorization_basic $mess->proxy_authorization_basic[T{sheep20fSUSE Linux Enterprise 15SUSE LLC Artistic-1.0 or GPL-1.0+https://www.suse.com/Development/Libraries/Perlhttp://search.cpan.org/dist/HTTP-Message/linuxnoarch-b 3 x ",=B#%,G P @xO A$A$$$$$A$$$$AA큤A큤$$$$$$$$$$[TwZ:2[TwZ:2Z:2Z:2Z:2Z:2[TwZ:2Z:2Z:2Z:2[Tw[T{Z:2Z:2Z:2[T{Z:2[Tw[Tw[Tw[Tw[Tw[Tw[Tw[Tw[Tw[Twfd7e1b66e752e5cd91e8b9e889a89be27b9945ab35872051ae07b862cb4b3fafeeecd0f7519d92c4ba165d379dcaa3c72eed60003e7d091fb0d77347321c3f8fb2b1c157b21e66c017a5782a0f2177efb8c0e4b22bec66b14a013314be0c95e1c52e93527330c954c053c9bd8076f7ab8da48eb0619a5f8976a1cb42a505c129ba8224591a3cece85c38059dbb2c7ba289d934a27cd7331e16e2a2616fcd4aa66eb3c3162ba4b5e5e769378519998e0fbf1e5c85051e8617fbb401dd43215f496133f6dd9835fdde6c75c07da4d7e2d280ee6920a18b102a375766c0a45b4ba8a172b13ef512db077953145bf005dec68155d9efe33c8ed4cf6ff358308dc6f3dc0df86e53e0fc8f6784cbf805dd8eb2520be5d6e74ec0a9e327437bb1f6a8248a675fc049be8a0b491f4be6a1c6b9c401ae9af1740ad5aa73ebd22e422a89a359744b888ffd7d40dc2a75675be905a4f8f0ae0fbc20ba663492e52c0188af0195ac8fb6821e7a1f7af4447e0c213466186bedd6458daa28eaa7f2a38788da92bed965334f88e37d7aa9e670220daee1dbb774e5fad2cf6e4f8b22d595ac6bef66f0d1e8593d5512d7a8cd90549a976aaae97e4fa9b6097249b3682f14747a6bf9e32067b04a6192658d2ee166b46b7924335ff195f2d9213b7e8f0a3b9836c0e3f6ddd8d7e62e4ccb57fd86fd04c5fab3edccc9948bd622b628bd40e71794b090ec69e6b41f70ed05b67fdccc9563df0cca1bbfe71cf5a8a448963963aade241804d88e41af8e7e3f748ba8903c8e5f4955c8281ad8b45550a648ea710a833e6c170088a33e8dd695449519b90ac2eac05a70a72fb46f59a5fecc6580175304f89b9ccc1fe98bbffda034231d997534b61d43337bc4f868f4c5bef2c38df9239f15067acc62a6afc97f6070cb76851b8c3a8d07481926641b14553d72a5bc626e4f407f90ef69903a1d0de143fe197ec9817f091954e1d482f2944c1284a12fd4edcc5f396476bcc8f2114b024f9d70ff6f0c2630bdda8f204a23857198171585a7be37e60208c30d4d32f67730e8b2c8ee9b50f9326d0b99d9fe98c42f55fbrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-HTTP-Message-6.14-1.16.src.rpmperl(HTTP::Config)perl(HTTP::Headers)perl(HTTP::Headers::Auth)perl(HTTP::Headers::ETag)perl(HTTP::Headers::Util)perl(HTTP::Message)perl(HTTP::Request)perl(HTTP::Request::Common)perl(HTTP::Response)perl(HTTP::Status)perl-HTTP-Message     perl(:MODULE_COMPAT_5.26.1)perl(Compress::Raw::Zlib)perl(Encode)perl(Encode::Locale)perl(HTTP::Date)perl(IO::Compress::Bzip2)perl(IO::Compress::Deflate)perl(IO::Compress::Gzip)perl(IO::HTML)perl(IO::Uncompress::Bunzip2)perl(IO::Uncompress::Gunzip)perl(IO::Uncompress::Inflate)perl(IO::Uncompress::RawInflate)perl(LWP::MediaTypes)perl(URI)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)2.21162.0212.02161.103.0.4-14.6.0-14.0-15.2-14.14.1ZOhYJ_UpUU@U@QQkMlM@M~@pmonrealgonzalez@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comidonmez@suse.comcoolo@novell.comchris@computersalat.devcizek@novell.com- updated to 6.14 - Add some useful examples in HTTP::Request (GH #92) Batch requests are now explained. - PUT and PATCH docs updated (GH #84) - Trim trailing "\r" from status line so message() doesn't return it (GH #87) - Bring test coverage of HTTP::Config to 100% (GH #85) - Add 103 Early Hints to HTTP::Status (GH #94)- updated to 6.13 see /usr/share/doc/packages/perl-HTTP-Message/Changes- updated to 6.11 see /usr/share/doc/packages/perl-HTTP-Message/Changes 6.11 2015-09-09 - fix an undefined value warning in HTTP::Headers::as_string- updated to 6.10 see /usr/share/doc/packages/perl-HTTP-Message/Changes 6.10 2015-07-19 - fix uses of qr/.../m in tests that do not work in 5.8.x- updated to 6.09 see /usr/share/doc/packages/perl-HTTP-Message/Changes 6.09 2015-07-19 - converted all uses of Test.pm to Test::More - fix uninitialized warning in HTTP::Config (RT#105929)- updated to 6.08 see /usr/share/doc/packages/perl-HTTP-Message/Changes Revision history for HTTP-Message 6.08 2015-07-10 - Resolve new uninitialized warning from HTTP::Request::Common::request_type_with_data (RT#105787) 6.07 2015-07-09 - Allow subclasses to override the class of parts - it used to be hardcoded to HTTP::Message. (Gisle Aas, RT#79239) - Added support for is_client_error, is_server_error to HTTP::Response (Karen Etheridge) - Added flatten interface to HTTP::Headers (Tokuhiro Matsuno, GH#5) - Allow PUT to pass content data via hashrefs just like with POST (Michael Schilli, GH#9) - Fix for "Content-Encoding: none" header (Gisle Aas, RT#94882) - Add support for HTTP status 308, defined in RFC 7238 (Olivier Mengué, RT#104102) - drop the use of "use vars" (Karen Etheridge)- updated to 6.06 Gisle Aas (2): More forgiving test on croak message [RT#80302] Added test for multipart parsing Mark Overmeer (1): Multipart end boundary doesn't need match a complete line [RT#79239] 2012-10-20 HTTP-Message 6.05 Gisle Aas (5): Updated ignores No need to prevent visiting field values starting with '_' Report the correct croak caller for delegated methods Disallow empty field names or field names containing ':' Make the extra std_case entries local to each header 2012-09-30 HTTP-Message 6.04 Gisle Aas (5): Updated repository URL Avoid undef warning for empty content Teach $m->content_charset about JSON Use the canonical charset name for UTF-16LE (and frieds) Add option to override the "(no content)" marker of $m->dump Christopher J. Madsen (2): Use IO::HTML for encoding sniffing mime_name was introduced in Encode 2.21 Tom Hukins (1): Remove an unneeded "require" Ville Skyttä (1): Spelling fixes. chromatic (1): Sanitized PERL_HTTP_URI_CLASS environment variable. Martin H. Sluka (1): Add test from RT#77466 Father Chrysostomos (1): Fix doc grammo [RT#75831]- Add Source URL, see https://en.opensuse.org/SourceUrls- update to 6.02 Declare dependency on Bunzip2 v2.021 [RT#66593]- fix deps o perl(Encode), perl(IO::Compress::Bzip2) and other subs, o perl(MIME::Base64), perl(MIME::QuotedPrint)- initial package 6.01 * created by cpanspec 1.78.03sheep20 1527272571 6.146.146.146.146.146.146.146.146.146.146.14-1.16HTTPConfig.pmHeadersHeaders.pmAuth.pmETag.pmUtil.pmMessage.pmRequestRequest.pmCommon.pmResponse.pmStatus.pmx86_64-linux-thread-multiperl-HTTP-MessageCONTRIBUTORSChangesREADME.mdperl-HTTP-MessageLICENSEHTTP::Config.3pm.gzHTTP::Headers.3pm.gzHTTP::Headers::Auth.3pm.gzHTTP::Headers::ETag.3pm.gzHTTP::Headers::Util.3pm.gzHTTP::Message.3pm.gzHTTP::Request.3pm.gzHTTP::Request::Common.3pm.gzHTTP::Response.3pm.gzHTTP::Status.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/HTTP//usr/lib/perl5/vendor_perl/5.26.1/HTTP/Headers//usr/lib/perl5/vendor_perl/5.26.1/HTTP/Request//usr/share/doc/packages//usr/share/doc/packages/perl-HTTP-Message//usr/share/licenses//usr/share/licenses/perl-HTTP-Message//usr/share/man/man3/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:SLE-15:GA/standard/b412379490f5668f9dde4b6c830593c9-perl-HTTP-Messagecpioxz5noarch-suse-linuxdirectoryPerl5 module source textUTF-8 Unicode textASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) PPPPPPPPPP ߦOکzautf-8eaf01367c19fd8293679703b0c0c7c61ee9d7e7688ba8f435ca15834ab798261? 7zXZ !t/] crt:bLL $կ)NqIk+w8e'u Rc_¾ܦ.\uaݚÑaE6ˮRo{i^ :9Iec%w^=L-_$w8H^M⼩j4v`ga]߅F~1l h3s#v @zԏG+0dJ[J<5m~y2n3Νғ ˫=6;2 =ɑv-¢nkͧu`UnXF9|{nkKx1F&Rq],M?pg_$e9G\3l&S{G7JLʜ `ˋaGз#aPh482Q6ce Eŀo'mQ>>n8!-t jF:R>ﳪ}R֘gAB/FLi*޴l&dhv-?>GK&B/VC]Z*+ng`c,9P:j-O!$KIK/5QgE`Vv[B 4V]TKXFE5sq^ όzk'7n]*_ yIa6_179idd}ʝIgC)m>-^}^DUz8WwUS=ІQmybvň_T,1'QjK/c~VF`~ٜS };a#Te%sbc9Z?HN(Pd&Z{1pf'>-)]*ߍQ`#%' ƙnS}ٝyiwr4։SY Ye@oL,:w!7/2]؜"0pPCa9;x-֟}h])ﴕB2hŨY/ $JR钑+kPӡrL[|(g}J+pE^͐>P:9bǭ:̚@=bD?RC^R˟ c@ΧbF9P11[5;>P#Cv r g/*ԍp/KTڧ@7}kpL?fsn q~֋Jh>o'Y.s(G#]z/ZB.MuZ2(Gsi븷ⱖUTB^D{rF8"uG+B.ȃXwB1+ :OF\/G}il2)kySxL)@7ӐBeӞ/Ž f&N S6݂=婖?568 ; NvrAx7u626KQw#.GxsPs]hfbh }M>:UNspKSkU:>»I(qJ_&Ϝ} ʪUK;WӋw o--o0?ry^]jҬdCcE B Uh@F'x[s+YVvǵ"b=Wb:KY?( J&GvR5xIb`5W֝JQϝ>>KˤY_܏<=JL[Tmv<өˀCLTc9DžG@o/thm'Q1Eңltfٲ=_2%nJD ~T &t[xNMEHde7N=6J@w\p(81H\Fj1OC/RӞ\Db-P:)b< eByEHPU{wM@@+U5V:s VaMwbP^ :Z(5'DtPƧbXR"5W@2J9yHFg&- yo MF :Ly\(xxë3W6*EiGHnv<mXzixCDe w1 I`"ZD;)ꘘX2x`3=+R-8ɴnx EnߟٌT0 }Jb-`w\+N5kğ߈o8CWōNzt,ŷMF%05=q@Jmlm/ 9F}Eb>2lݓ CNv+OlrU1fTUG3󲵢2>(&AJu(c0ooH8qMvjK~]ʢ%MMwK!*|2z *ZXh:  A}?3[@鋓plB^!':&1Vs?N;}K1Շ)+p'Z8~Ps0MFVʼn}FP"Q&SC !ufEdRN=2o <C'`~Wf^~udK_;(YE!à vO+=s϶ǫY(;@Fm3Dx.3w`E((`dɩP  E&YW)\fev}E{)mxVuzS{lv/QɛíЍc,w9/Klfr/ Foo¸ }O`0 F ]ܚfZY<ԜX0LM/Xn҄h(bxPB:FQG;g/eMs#zbu+'iWn/k}ۦKuQ: 0эW;g(4Ȉ,+h?69E?mUB؞@@wqve{4_tJ":mwF] IT_6$1&i^Ŗ\(żL`j2R`6zDѼ?:31rtl#DL+WWϾG7l\/ɜy=r޻ ?x%Pm KxrjFTs \p!o?ڷ=_<Eƣ*`Q 9[OH:\d  p[i*Wy:Œ46yG0HOl~+Pr#Oh0V; Nw, h6O k6&LP+p hJ#Qn;.B (sLʹuJth(S 7\Ȼ|s |@K3%s(RҸ77,h6MO*UZC115:4ڪ!Rp=g>N^DSyݽ3ˊ ("<ޕLFkVL䌀DeT;[0$rST},b O/@@8tY 9LswqfGQ5sG^Y v n`|N reȋ~X"^ !G͇^:A>V@BߘPvNF[(R#lĖ%λlJYttg#s>u nwev|n_?V"S&sT(&Jc(pfErY8ӅySHֶrB$ Z͙X @lp7[&Kβ"Vʢӥvm}!NV)"_.by]5}=\{PO{ gsy]jz x6g!ptc8܎q.! n3нz̵2)J 0Ó,8EeȲ;*&K[#<3%b< -N&sIuf#Z,f_u@H#T@"0յM9 [9@|/->\ܔUc2h06`~bˊ50$orIyA$Bl PY}D|OSF Tm*i#B`jiC|oa%4^x$h};4\5}=hk)# -hy;.g5CN?9'܏JUS{I//S"W顧94*qI5l䞯imw]VVMx]/gZDoqbOqՌҊL]V`+ gd!1)T!Jx6ޢ4);[[aķ >Qt.8j2~Ʒˌ{w9.9ȹE ]L". IkjZ؉aDxV-ó˖z5SQ>_ .Kfx&td_k CsJ+M_l%0 1ORXjLoP+!t,W NTA_ʽTX\WO͂@yI!B7s}Npc\?;0e`*J,gLojo>Ŭ? ZA `қx[K"݉oӜw\c?Ǭu{C 6x/u}ȡtU`*ל m2CIOQ`BmtEj"7.œXad@ s*3CMs$mg̅x1,u/z`Lr7=LMr!ZvEVml^_CS[4~Ç$Z^U_:QN×ߧY|S ^sST/IH²ɼtLϝ/<)=FW,=o$@-ALaY!wxvRj|+P'Fi6Q!T<ֈ5!4ʅ\$d=8WZvUjw9ja_~ غ[ l)`6;sq}{[`YrtAgޘ6\Z/* ybZ,q-j7ZE[#3_vKu ߌQSvcY_N] XtB"r7DrTb)8mR#,N>84}YKx6$I(!5emi 렶C#pg*Yʏ =eP2vzkNWvOzpaĹXnMwb!&93,Y!nOX;EƎHe|n9LF yKO=J S C}tCRu+ vb2ij=j\" oubjM8w} k}j>߽m~lisQgQ|Cߺ nE _~kqfFI%X+u532d~YW26M[ 1̹Ag#T< P*tTrm6)tްkI E5C] d҇BE؛].h46U8#)L7WbVɡX3lPQiz_W;&JBIJd)*|d2[^Õ6oz!?3M(:wG[hՆZ7yJ 2独sͺr֧xZµ;CIo2D N{͖rAΓ[: Ra?tDh\ܫߺTsrc.Fh6x!w j{=Br1(< czeUbQ>l&iֳOq{3̏6bm z2=+3vGA[)c )*< 9{]5_GS 6t'JZ0?xtbɵѪs7hre s#ԉ,R$ Yr m_#s8hh3a-(qksA$OS3KMlT(4*;+ժ?^>|*}\ p='i1n9P@qyK ! 5w|`g&oEģ׆փGAu9!)`~KE40)k̛ZϗC.<zmvxzmc:?O*r$\`@ ,2%ΑrUll͢C? aFG dp7Ш71/q _E4I&|?{9Gy}u#{#5fRJ΀`Ie?m`܁#Vd s7K__WF%ҲKAgD`>9)[ /׶n(E$GݎQ/$!n3v9Yh*ߒM4NGr6 [of B^z>Қnv_f 5sB Zab[92Zk^ B^N}#O'@譙%@nEG̽< ŨKFO-852ur(1L'ΣFq`kVm"&Ks^juJ0T*>#z.Bfɖ.kW u KX"n$ף07q|\Ϻo:YlE&ʹ u0VTܜņUahƿDq/B?Еo:ml8]rȚxXDEW&c B2oDȃAO(0{7guTDm2g%t=V4=%JM!:֦OaZmƦImY&\ kzd Pxb]YSFc+xw=+]L?gE "hyp{/nrYP@zVu0_UMV%\iZ;:\ +r)L_GG(VLOA/sgj!qv8Y`%q{g{+~Q"ҧtQp,nNtr%yl$iwMDK{+"`8`S ф%Cp鴂d-u@DP34e0TTtw66ݍm6i'!˛T(%`ibĄL%(5-R?>:- dG[  d5HI] b -{͛JӦPiPv!)!i1C7:!vCryW9|k\M9>YBnWd5EŕʼnJsgh;6Tz'7S8X*LaT VA8W3 -1ء/D4U"uf 蘎n`V5 8wI۷[J7TcsgmGasvo(1@>&H.f j̶b>C"%W, q Xb1s#v%G %AٸOD9] !حpս`(t(jQZ`:$2ohE2TMY 7"S !(5(;PU#N͜xB[rnxLI8x3ѳ(α_W҇Q7E*^Py3nlVkj^wI4 &?kLFՙpҫ}]aax`:9Y ʡOF9 RdҀγ׃>>:< kuyӍMWa!+rf0Z}H"L; ; py"u-IPCޗZ:1jo O$@I)k" Ls9LM\1=h$X^u׍U%x9+ tfM(̓h]z൞b ߡ lK7"=ErvUǧD]US RhiHuV)8ReI@SBG6YZ'Aw)!$׸2(QouO1iHF\ێXg=xK+оaĎO"FKqȼ]Ղl;1{P[{@f&Wj`ُ7* abn鎆 [8qu]DuNV#f ~LyJr%2s5Էҙ5S< C[oCQ&`kkAS:` ֲ\IrN^xޓ7̘(C&U|ᭃII8*&YKDbk~. Y՚/ȹu+Y pp~JD]}۸Єd"9'ϫx h:bx\̱'$GkB1e{DvD[Z:),ZI)7ܶ n]=غFs<6[0jg`8VL=P_^YXmfRm]_h{J;;) |H#;!FL/ k者ʊ7AlDҮ %չ7n#9!p6C) _!?Y.86 [#NܦXT}@.‚T(8X:HOi$Y#4b܊MtByeY{Y]%UvSpM-9LwH(F20"M-tیnP\!Y/I<6{^M&LK EA!  ^rax XEHB >;1l Q~<Νԭ]/ڍ$s}1_<+X>LSQ}'|zz!2WN^?Il4gX|1Oj#^ڬ31i:GNvVN[W4 }6G}壟6= v 6 TlOmD|dF/!9%ē!/s]!׉m#Gk^(oiYuНx8R܎{5kĪ-4Z j[8y'v؆ :B BTHFt6iKI9s"U6nx(P,cv97SAϔP|GG 3y^&FC|BTF[q Wk"nFrVS|wwV^+ Zܜ׾qol"W=-U \$Ӎn΁ݲ'汩GV+|gfk%7yim.CŬKfן^1CbBL? d' 4μ@K\@t6;_+u&bu]5X{npx~M8n28|=iz6ɆRfQ,~j_G  $؝cga\\;H`t7ÔKQ׹jAsGs *}a $%9~+37Er-!l] <"c{; pOIe(%t ?!2U.\O ݼp9'D@'P r[DSs3~c)I躔WS+6D+BMU"xs\TslsCL5$QMy>y|Z~LtM چg-5B}"v+ ]ܕߒWg9 Si7vD鞩G;N+RqcN,`~Χl߲36` m=(.-̤)xʼv\ VYEП[ҚllAPGz,0&SM&㶽h/[~&vje ,8\jĵˢ2bf@$>]"w5)UHArWM(IGRě Q WI0l*#$(h\;?oWɷ/ѹiQoy/=[9re}%AoYF5eZǨdk̚ˑ,&s.K_ ?/x򻑘]e<kW۪tC#&dTC:ŞB㏊in{{ &:חVE,DJ<8R;}uQн&t?tG_uݤGLYRAT5̑]. -lrձg]|D0f=1.+Kj8)R[*J7>BJ!)%p-^H?j}+*&TAt[.FhPI "ǻXWR>q,X[/ONPi5 8_J`}~M6:#̺ 0DԊsZ-^(b2~n~>r ,*pw,ϸ4&d47$\mѡx|0\veg `l֭P maܱ.3JMK HxmϦjQ]o}\n|t/ۙaWքESP ,+$tEg(|rs?@)j3'5x0|6/81 2[hyW&WbjS2 T[B53 ꑸªgh 261~SSOЄ:G.#AhB[g#5N$coK7on_j&X]]G!u ;=t Xw):n@ZBWSsbz'u@@KI4NtAWpjISㆼ? MR;gHg"fH*i nm_-4S =6@3!@Ʊy 4*,j:^ΚIa~̴'ߕC:]4>0÷NFYлԔ{-Kd< kץ*M``T.Bu"K>;nk*yN)!KA/x3D*|GdR7sұ879OiBQXF'Єyl{ZߴT&+p0X? )$W)p~!DNpٔH(L NK_rx~ژ}գl Hl Yd250}ʙQ]G$NY5}QٽǔuAgёMpǎj%79*>o巇pO!6/a ,cj>R<@enOuTբϝa)9JP\*H%F!_@>`{3GD:w+(j*}2; ៥Mu1Wv u[fUwbA)qoht,ڞy=[t!تR.BRYGR&`;daD?QV!E6-O}\d7j{oK;W>0  > 65QfC@Qjstzp2V=+No[ MjtF7pY/ fA`;/ΆW.#e *I[,G5|DS8X$?SeL'1(|HQ2%)V㵛}ߝP;$E{yY;>IdϭHyKvT}m`\u xbFsCR줢f&/@sS)$E'Gv9!:'+1apey٩wh dNjP}S}xҨQNF؞ZSh3B/BY\߳=TB3PXO^أohܿPM 5]'%G{a{s5Y.ʪZO@d?Wl?|i&6e!TX*4Ƌ`Ū5M }]7?V $=e:(@56O!! p9'*g{I+C#*NhzM̼Mt!"-P]T-A,抡X G4 cnUAaW"LN(7gg#j?M+TL_zLexTЇ$X#7c)zKSCFl&&9J뻴2_J'ܿaoh@wwxtg* ?$)5M.ÁL@8jޯ/uByFb;JHVV.9@{}|R3RoL<5AZEoiw1ON$P}w=f 4ݜP |mpmp-B\Р3ԣD={SC [K|zIh bh隁K֩ bnWt_ހA%/QDN3jaqBHL&GDRrg ' 6!{=sFEyuAŗ[/ع!Q6YWuFnU1yt\%`HhZ*=qOwrONRI8[@D?nfRvX$z{z/[yx9F="kb1#J走+9_WN⮢Jǟs-[nm'oq9lZAf[>:L V^fFħ,Ι-,*JE;Hv!ٌ N 逊Jy3ӻH:}2r]mTS(w uF*RsMf &{CKs.e "p\Sǡ|שxLY;<Ț;"<w?a}CUR~ܩ<]:, OXɥ0Ym 1qR:)%NikA./?.pi:aDG,yU;<܊T d uI? eMfw)^ 3XbݔTD2#904`q0yD%MRschZ?L8Az$zؤ!nKڡA|6ED1Q)e,}*6ݎMv_jɉ50`3\j7v?WC2y=BL۞Gq.0!*MTkhs0&tcT;oTݕѺK?Dsp!55U&Q^4SNOUGR6ރ$STأd--^˖u =QVIiԱA#AvǻqCp4m g3@bMj/(o1,M&< 1px%+`g8NhI(t$18}=C262Q!̈9<ϔQ Q IOl;`'+ZS="gޏP7&Y{pd=P0IyJ,11~zU\')FZ.&d,ϡu^G0y )7ųAz46D31Zm>4mR;<}Z0E]6[9?#unqC35< +z\Xzj[(R}w6Vq*֏D-ިuJ;MQطqѦ-וz5%tI!5},3DڡQ._&d|kX '8[,fT9!.'Obi_dťX;z󊾰izpǔFA#B|%mA*y<28EG`zu 0A/nZ`=MIlovKI0VK>`VëQL:5`K,hvpS]PA>&xJUV1}T-~eQxSxw?4p-;Gq5D(9MT㨼W4@A7D҈wR R<~U~MҗL;Jė$n*p@;g ΂LK# /A먢WpCN@.bƛ z#GL6d9Ch.O< DBE ?gKGH/寸y/UΙOۣpp pȩ[*~&oҧ/COAE؋x H>3OB0v^wa7a0+ytY-H: &V1v\vrӳDV֨_h@9}ҹ\4E.$c@=elFZ*.~[#-I)"I!sD>s;C5N)?À!UVu7t4 =)1J8dS-ۨQWySPc|iT==9%!1lrz5 xMP{#^$JUc4Wɾ۽ꌌQt1%IK$xJ"&RMq"_.<0dLbmy}3/h:G_mrjKeUJH; FVmVX)& }螤Ld8ږt  LT(-دyumA@x+"v)z>)4y9E%:$ִߥU`s;Lr>o848Yy{΃)3xcWҾY mS{EI9!n4S9u:;cT0w67XO4^@8! ަuJ l_+: Q'_tD8i@|3:i"R`Dw"-# B)\={R1}(7d.\#;fI n 1R/OVK, L)R7$ VvK`7☖ERM[\4`}ֻbRSOͲII/ L5Jw(>^ Ok/IJZҐhj6FB7X g㕜EH=Ex'`B !s[3w߻.7o,DeCJKL1U@FJ}(\<7 (Ef;dGٮqc5g?r-i@< 4vAIXfj ֌#9`4Z͠@uswу[,"p;WoD_+yQgzS/mG$%'2b!w23&cj!5n2n𙑮(B)TbQh\;55(pgcEx}q8<@K~~o.x;lF}vn$\;v: ֿqJ!uҷzT'DD@폿 j^>& XlI%i}ECE.CFEo#; Maٯ+a5t?+1!}ѴP_aNh|DQǍd8@x!_D[lar"Y|k!>nUD@)Ǘ*D")΃- k0pm=4=02"Zcw@]!Q3W-ؾp[3^GtG?Xqt$ WڀF$:#q!d`~RyUW?|eʸ/&۝ /AֽRWz4!}Qj')e_Ȁ hZZ+Pp&o/{`kYuF| l vISud}eF[6ΣMSt=g,.G5wA{\Qbrn+8䱲\$~{E@`J˔[ݾ[ԫ@JLܡgzdZ |#X ߞ<{i(x?* ['P9'a @ZWܬቓpzFݎG,U©9zeXuVfrCx]7rmG6&6OڕZ6{z>M&g9y-4qN5 fi+x9& W~Q` ]4tK}, ԐUߛJ_sܞC'p^ZĒG`ga;dw19GFk NfG{Zp&_cQL$&2hcsc\ÄK g7[ѐkN 叉)+ׇdCUݔHV$fy@6~nMdꛮ) YE2OTb4]۰jM0 !w"Oi_GImWoI:Nj@A2JexaJo^IXxljM Un|]D la{^1N2ӑKS2p2UR߫fExya! "i'\Q# .^4<exQiim2R#G6K0 Z!66="-M9D7z,Lg@;|=*jZ+}"P{@i10g2쟱-H&cLɐgdC\O7zX`2tph XW1a݉%(ȱ*! AǽU[pd UP siHGG AeH7K$e2gBd4١abTi')SncXsyXӠz~0DOQ7cYj_ ^9ÔņSss.ÿfC.͈ 7 7M;gPO>Xx=NnM=w_5n;D6qiMʚAda`ue>X]QCs*Ep~}XOQBgbotkxN%ei_T]$ܼ[MoC#Y[e ]P2&H1TTd 7FABiCb˕׮7Y>@*3P6R:T Ǜszxv,v `z 96Zn:Dކ,c/mbEsS*)~吷bx= v:HH0ΠBJ:*Tb1*$W?^R!7*h8T&\0Mft $y>"8)3Nb"3l6yJQ'J3ZfNs. ~oC}징~ n9QZ춷',̀ (|tlFa: ŦYLjMlngOwzrLqk)W#70f-8y{Q.©Ē/sP_"-< ~+I7]x6\sG#BHyX"T ]}ѺUX-Lol$36g[dς4Ns6%F],„4KǶ|aDa&o&]h kcvʡ{%eX._1(TP\kvR|1u8.d@Wkw#DF툯{uIVec_CY2kOZU4ќ%zm47wK4HFbjxs5)Icw-JeztijಙQCSd<DCD#="VXPYn%{fwwrhw|7BUo54/7H@m6q>FK>ǀea-EAAzMu6'V>oi^:XtFK8/uғ\?B6XyvI.=h{r@LyD* _J{BpC m1̑U纔[YT>C1񓅱}|]I3^7-}~rYe|TC(A6J\.܉x{ПۃH_`h*:$Ҿi~@jLνr[b=StZ j|w6B lHt1@d5:Kt&j, \*酛"(7djW:!{c%KA0rëskܪ6tY̓(۬q.0&\Q?JbuPKsa N{ΌfgLbGA,5wE!S0B ') +zxx͗$"t(\O@ @ަ=Q5/&?~kWBR1d޿N~  K_!~ce&]vYnyսn"T<|33d袷7{-E`?49I[rӖo~iᯋdG/INkCB}h?\8Eiqj~ĺqÕSˊkv)6:s ;{n$ x(hO[( ?mbf/B/G1Mg0bК4]*N":ubsZƜ<AQ-tT9o9O:7Eݛ(qüLaj<6(tO@-TP<A&j/![1,JqY UԇKI&of-kpYޘc _(g8@z!crjȒ]Q_N,BXGT-.2DrP_Yݳ6* v̎ Ue6X6Rw7Kvl~ zl v9m7Qj&;Zy;; #K\/~ ~ӑ30x=_7,(|Mhs8u&Spࢩ县MƹϤČ+Wf`dT`R2W?XSD^Qy?=-YlhJK}0/"󑫦''XÌ+ϐ9Nb$x>l3z!G7{[a ]/_,ƕs).áK5  ve ׏amԹuGI;^z&49wC7gddRO]!ɡ7A@]IgJL^TZ% )tpyY MϋhO$~! |>ݔ3&@Q'Rq\5}'bYU>y콀5Fs|8l<(NzUф5sFso6$􍘣P"W _Vn6o&e?i/ 2!X>C#%ʨR1`!R'+:Cژ{ޔcHw)#M24^xDnsP/"X -qgحⴢf4 ֯.x@ Y"5ypUݡXo t}4K)ql.GXR4"4Q8QҩVC}y8nkDTON-筈ZNCC] bCJ+];JьUL: }XS๾!Kb b\/mj81Ӊ+ՇVPȄ:嬡Wgx˱aCҾP DRvV A^},x-"4eW>R .m!͸E)|8;;gDh >zZX_duEH4vMXPCNejަYWа=j>^6\oT\g\jx-1Ti'758.,ˆt=0jNiNE'?=3_ OU): Syʵ9vo+Q*(O]j׍BPs2xkli.ش ɦuv8?.]Q:n)V nޘوUIRg!xF#5UL{qb,\OηTE ξ;Q6Ã$3?EH"q1[Fx!L z-n7jV#Q#MuCXN. wB8t^%Hz D3O纂yp?f-Ɯ b I(wiy^fI6M[(|`MB s˿:[F dm~-h*V?Ѐotϔs<Ж70iU6:t,Xa3D3e)bnHÆ Z"eqlAwq U5ئ1'h^g31 z_ >x>i /is8\ dp%twsŦD>C|6^6YSHwN"j AcN;\ 27?[UP惢7`K+%5hBrI`P-7"þ-.2Ovq&~s EI_sOX?#25L؍yWx'-lĖ8Ϣ!_]Z4#g9))|: nUL=Jben Vwa"2&2KX{͟R }P5j pTL٪YԠ'ɝ# W .[P*(XM64A 3;MJ '6}7Qm/S7COo+]:K H6Te:R%ǐ!YlG Ùϳd[Xþ媩&o2VhV !|>LQ+h=yiW8^vtӼP3ȈNߴ)elo: M# "eY9YS>q5 /&g)-bNv4?v8^^Sfvbhm9E-"0MFl*znpSw} @w{`;:=ks_ Q<ҭ^]M+wŽ$QH`5P^C%UN9kt""ZKabLO<EȝNܟ^ O)7K`%=Ja`.:e2kqF?Oi[ L4Ā!':w\ܒ?@Kitg"qf&qKxEɏ6R gb4xbo!];x3G@i/edNB`lQe- HAEZЎhppsU'rErNx mbQe5RwFw\P'!T“]&\ϾNk^ h7 ZG1&uՕ`Ee,nIԃcn3?}Z)S6P؛Vƒ9H4ZɰS`I#ۅyyL%!Xxgm6 !PRK4.9/G_11v5q ʜnNT*>;|>Cxzy2CW%@X^`^5~b5"تQ,U_*vGma]ʹ z"@17J24qRvsq=bˋC45N|+?& yR/dC_N: Soi^2 zm(ylԫhP^ڱTkt8P*ŵlaW azf Ơ=z@?Ho9Z\|Ppz+@,1K!{mBGBIu`tS?(3E}@ \'s9:qoRUɑXT@ 5*G. g#E 2,ij~]HVI&h6{TRo^oNeFî:{\JbyAp萀Oݣ &H1[4UZp9DNN~lԓ'Tj"(at' Os@.Ag2ˬ3 %ϫ\=0]<Կ岩u6"4RteYGבN^邔[/mo%GAț)b4I4K2yFVff =aGk>n3s#ހY/5&gD%b#4J58=&wļlSU^BS`0)I1?Cc2bVkm#QߨwDm9_:}ayPy+liN֖7E9bl$ =iM:dj>i1jS7A]d1f)Q ]Gu h+cG m'ApkY8e,TFi^49z\{GS^)*zϸl ֶ #d|"i&KZQ~c㕣>m$,3Cda@׳m5ZU];alόAPx3xq2owV@/̍r@~┸W菆;XOBYSIƕ)'>nPA=6F%ܖY}@U#T\$㜢XL\>LS0M޼\?/5^Ch 0EX1gnWd>4`_7\WS !Ra QuT^(v+Hx%݊pǫ@TQ1q4#˟Wl48P1͒Np@EFS%qLu'$# cZ`nw UrhMs2Bl朡&Jp_.Q.\r TnCn}itÈvlֿTs +c~]SzxL%7(p]v̉R"c=I OŜhy|[f:|ɄJ־6q'#g EvOLFSv}J͌F]Dd# ܕY%rYdI i}y_١`CN,?ެ˘XEHZ`5HZg\xk N!uTk5,N}Q/d]b9x;KyAb c3@ip 2NWiOg❟1FIbFueׯiX0:A E&@l»ZFbf;;үt!I;cW|-J[Sÿ2ӿ;kxrxÅA=cOB $ v oO%F hͱVn u'܄8K`$P%|TωoߧzJf8&'p{3܉b%Rlcۋй5~!CNbc!!drܡ\&(BqUd{N(,Cw@WO/9tCͣ+$]sj6MC%g𒉯=<@Ba?l< 4oK_0ƉlP }QAgl IaSC%i1ٚum7O"E Eކ}{AMVwb=i7p*[iǎE/pl[@I+j!e2^<{hOrCgF'!l&$源Kj } @H`,)Q&&XCXeǪ[ˎ v33N !sꅛSF5"hЮ9ƃSeK O\a!:شtH@a쿖楬0G6Mp3YxF=. @ޞ9\GUy:! _lL-V[ I\=fmJsSU+]*44!k%m /]=Rf2 p,"%#&5f8Pf#(ύ`V},"X?V`}PLd"ƞc} Mc~|][\Wޖ»q6L6@^ۘhR#@n+ߍP4G#:t7!U%qcЬF蓡a^G8V ~enq!e; )Pu|<0 ]_S̓ Yc k*R 9 %2M4p1ȗUҳ83g72Gݔ"X7kIOwL'nj‰m2H&_+7Cgu[Yt>G5WXʐ:5~.NG%I ~^yA8d@MQqD='`27P=~ʷϬFJ ެ5\: ߦd%| W'YݪWtEd0q]ws{%yy?dPY=ג%яY/Ta{n>o-L׻'~IUwm)u=̨`PsM^yϲ8*a˗_,WAb~ ؏l5[ 4Wd0;PܦxOzS /i[>ØVI=!` 7hZqw!4e]%'\*wh>8)auh'6(ф@/CGwNJTk[E~C'S1}lbG JXr@6sI~0p W8ka( MW.oCc qu'r܄3Eo4O̐-txW^r4}56p4t/x@8m"A*T/>t+ t駤 M*jIu43YJ/#­{ w|zű>DظY-eɁV %8a?Xȍ 7F?nZu)9TsmGDKc4öjUs}W?03NiM'ɜ=n>r&#m5`EY*iŻNj$iHL|VieqE"ϴA P6͕)[}u.ezRvc-g_ARb-HοZ[-Z<GD f+u6Cʹ74^qnDžq\Pr>xw 1ps2+=ÅJhSoc송?߅$=4ÌZF(B @T\/c_rįBT~vqCn5Y@R' ;3PrXa ws=LB_9_^;}YF:?l{k]}zg8`CR{Y:Ь0N/FCVE}!1e'fVYJ\_P1Y`ޮ^G$C+"jpASCNfFD˸ӷ_Jgg󼰂pF:RmLgt&AY($>0,"J0a T2r48pT= P X~6 iTƦ Yzc:8f?Ilh~re3חu Kڙ"Ӵ}W@9gYF0"Qx 6BAgCȆbfuSc4pm {s^mң}Tq,ŕ;A2[ ZOf''$a)z;9yq8L!XFvFH2.W[RqBqH%)Og]@팷E9d^MU'p %޴ۡ]a%-X y>)5_uv޲m'oV Gh/gOj?L){; aO-u~/f"ŲZyk/P=+y&{erhzDD1$5Z~G@]6ذ/AbӥkB;eӜUs{p%U(УfXyB y'WX(r|G}P\r EBlA HP:ϻ 8J>*(bNAJf-+:CpE]t*bⳮy@􋝺Mʗzc)5^M&a7 $ j ju׏H셕?^^Dy4t<=pD2kO,w ^<;"P6/VA胱=*LQ5U\$Zd]rLQj:xۼ$Cq+D0ơ FG_?to>~^TFյ|߂v͓D /Y,X[>,j"ohI+̤w v-Y zI9r{[}\0WT秥h_\“XR }U8k2ѢRR{\7w:D|T •Yc5#WJiz1ԻUQbPH'%PlsN1"UvjV,Nlmq /y8Jc4X,-aA!!@2!3Y)T Y9i3,ou {+ɦ*W1#ذu~昀̥ gD*:Ñ%ФNM+%C;QFy㏮b!+zr"[crB)i&c_>'̪y93a&OU8ܓ;Ne7(6GijZH+HHC'+&32tHt81@/eJP-Bl%5ʘ^`aCs#TfŘRHp=OG-%*3bqf*5;K4Ob?چ -ӎГVezͽ\)3- lj»Ok@A~m(Ѓ8`#!#05Q쩤噅[uf~K9LV \']6oR ›<Ș ljCQΤI`;Vo+izxZ船Q:-Cq%7vUv %EV zəRl1Y(ܚotQ0z|Z 8ɮi|;k3c//lZl²P .pY%8>e/d"4@ݳLAϙ H. ߉69~mմgC?<b-~#?sojFs^*@,K`3ُyb'%şD]O;tti u Sp?9 dS>0Hm:|aY&[v#EX7XR_s- JQޥK:L]/ JR[cxnf% _J̌FK.v= RѽePEZxaG$LPm%1gP`FX~S~f2"] "\]3eqd5Db 790؜ MlRQ_eg df p/U U٣NN>S[ sĢ_ͦ@݋؍ f\#?`1QW*낮U6\YX'eH3 ypdʇHn'Tھ Jw@ނC$;gY')Ɍe.0KM`jճ!]ѳ=}n߯1X$[C:uO;[RhB=fj<``n0J`J1ŦKN@S8KJIIhBۍڷ`/ "1|*TOզxذ &Z"Nݘ'xf" 5V$0e;h9Tsyz}Uͤ$z?uh= K;1[X(AX4͂)Al8+BJ65ŤA1#1]oE u6V 4eDhR􅈃|Z]aU~y˟WyWFl+ 3(26=8H6 gcJ̀W ][[@5$jUT ZƆ&O"l16هӧURaTAH:P*S5 M( 5w(1g3I ׋q?ý]ٳ'P߶x &aҪuclB)A`IhI@/ʪڋ'e2XDX X>6!Vk)^kw} R2eQz%xn~=J~%GlUьkXEֳ358O(1MZ]IwIYŗcr̖U$3[[f-}#ɂ ۤIA?p|=Vnٽ _{Iz͗#ڍ.3Jz%qbvLjW$ ̞GW+#5jAz=@҉pO4q 6>Y\{3D YqQĀӋOEaԁ*;|{FGŊJδilϪ(n#4wؚ`!%# [ E~K+[b&ݿk\^1I҃[ϜgbT ڥx2ja87/htb<ό iS SSҮfەD{?x"?I|U<-I@*3|={f4!(ݬH!2 Fhu#$V7PwLPV+j8~vak[,<ܾ? C4(5䫁f(ăk:‘G= <1%|UgQ@5gWVoWq12 *+z~:-y<C]L(*ʧ%y^𝙱혔 =NzQa_Em!FDEanGf5YiIVv6 L|IUdx&2GC7CM,u-%lfōX Ri3TfPklVǑϢe ĶK8_y3="[n̏_pwEmwD3} iFv\zTaRgA>cFG=/itHp V74r=*O^u#5:[s_:ѦWǏC c\E4U>IDUy/u8K7|۲s+%}'MJ$}Eå%T&Yͅ8Hg$>%h\ƘjD\zjZضa^HN*WuV:/S PZx3[-tXH Ԋ`^*~C5v?78:4)3Y4l=SX7 7(͜F,zMsX*6XJMYsnCo42{pQU(s$XG~!sbJ:biЏJ\D5|@#=^&UYdТ.> Ia=A_О˧ J93H: 3 Q cȇZR4` @*vq"|ʞ<AqQʽ=bxM@_ yN5Gotw†d) ZQl'+F~U% Fb`MS"*'Ot1i=^6&6fѿNM{ (>F?vt+XWR۟Kfw3FySL bGv=++Us&(,"iȃ6n;C(}5wkGc?O6@C5L@ ] yAzd"Ë#PWg>=I:w<}+K Ϝh|4Ǡ%@`#wy'}r7CN1ʶZf" :( YXq"I޶Z`tO*8PP }y۫ROrapU$jOÏ㡒_&NGr.ef"rܿWs>$/j~B03Vk!G]DD"i'f0{H Jܺv&q2ĥc dʳ^dͮlD+?yOtx2UT<#hZ)8Y rjMtO=cuj+W2)U&%M2gfh,^pXXl} 3azMAO*w0͚2o$f}#!pu\, )biJ EUGdh"2#KJs|y.}}KNɵ2y ڏ#_o &DlwtjN灁~ 4Tq [9EA3])י+#p%Z3xتHyN^nAnbiӮl' ٚAUMRPC4E 8?&!(iuh4I8E\OpÒ_xzpm"5PC?ABa{w >f,-o쯮NmjvQ1~QGH | %׍jaeSKw]kK:D2UVl]fr-sMcF"D.|!je)h$W#2Yp2&8ONH*xhCSW OJNOZu_k`ͭ狛rm$A0![c叐k4) )COoP]% ChAFKp@/}ΎM`SQ0!ʍa[;|]cHapC;U{6ΚQ`=6! INjcՖ,dlܬZ Ƭ[@j>$ą>pJ衺ej߈.bɾc 1[qvVwц>q j5`3KsD om-vzQ̻֕U}bCj˯%,B*zVdu:{Eץ{dRxUi%_}n-GI2Lr3I`ʢ\DWi5V@G?Fc)%ؓx;~y(2Fi o=H3,қ5g@E{E"o)T83>ՇT~>r.0a\r2-$y&vй weX"iZ qFS!-Fњ.fX ]׋XF<>[z/ͅQ kURfMX528kX'P#T!H;+Ҵh _ʉ{J R_IkQ4O tUhx2u ~[z+ދb'{˭ N.LҞz D3l @P[B= !6y; tq%J\b{v VJ؉¶O.S? hH0^P8 =饻X 8E}`&ޜbHZ l;2uc{iQ Mes9)dq'X:_-97s N3<7lsgsHn ;}~?VTbOJ\Ի2u7jІOfhC稵.IU5tm\#BIy Q`Ʀғf[_~M`փRd~0^uc${Ukd*igo4baaOܔLD5ZHPq1 z B%(Ìz2%;g'1z5iۋ:aTܔOW 7m!yrb[ӖG\'yFZZp҂ Nz.8WC]L/zpZ7)AJ0ff3yʺVm]*`kS=vEV9/6VG"Y@<B +UGvuB=k_`1u|Qi\?hdChz'9ƋQrχ:˖_^HnCԡGVeQ(<=H0橝D@AW8? 9>j@he*rzۆ4Mc2`kavliJ 10&_'GGPf;Dj0o1%@ 1@[[J8-.BzqZg˖tdv@`Rz6gt !(3 J6$;rxc(J*QqPk; 1I2瀻>{lo=)(RUbl-\4.Fj+mU'N>XӺQM]lnIw$Ch] oK)Ms _\TsZ剝5΋?ښNZ?mTM=(t~ۗ[t6p$U%N@_ 3V7{̾msP׀C gԖ<?@#ژaV!^8PLA' ScDޯ+nBZJ ??B܇}շ=&+QÆڭ7[:k}=hG;SXpH&E|)1Qrc`:{Ҥm MUpXz0N7(x0 {T@ ,l"$YZ)ZQh$\YJO~BL2c"jCӜA'V?1LJyOs;N=o:uSZyǼaF*X]D6eB&E dcXʵ$}v寴_bz0NUhcjd\cjg5r|Ȝ_>tJ*TH^{vk#hNPԝbNe}}ywKH%ˉJ ڱV^@xM OI8!oTjpֵ9TA+0}t X(V(QFk4(`5nE?֙.LܨI,ʪFرػ˹P@$w\I3QKlCv0;.!,rdHfrp=6s{~?vBX: 1Zim&hmI7Bjo`0þH>ǎ>Ma[8Q,3-9fl 'n)cR({ UpHH떓ZfjF߮ulGm2[6"1Zt8]KrD8*V9ӝgQ(LPn61UFALLDb"}Y9E=)ߧb^Ym0 7WȐqmQdpۈ#3,d+Fr}2u bhsF2P[##:J6͂jr1Yh2mO;6 OJ m:R;<Սy'Y«Ur#\W!XF>?PRdi1xײ 2zu#"z>uڻnHYqFlx $+Ò0~Ky{B|qhˌ.I/wzy|m9u;$u-/is.n0<:h7-W)ip03^QP5}I+"֦hY+Dc!5qDm +.`J#U*pJ pOo\g}JTxM1)I~z[5xFq7t4==-s5I%8gz"ByL[? pHpk>av5֎i * 6zP^7&+?;~X9$<֏n߽ƺ8gN=1C+F09W2 }sfjV`ሖOBL2+hC\%,ygխ*̝d^ao5Ȱ`r Tc4͞@€_,vi9]<d`K_h+Иܑnw9h L.$| Mɪ%\SP|[/=cD?9.9'v,Aͅ@%0&EQ߆vO)įɱZ@$As ʋeƊ>e\ iich,}Qf.5TA'x~{'י^76 ~WOk:N\Wnf^P3bOA͎fu*-OK5>x3# K&ȦVRjfQ-~c6tN5UwfrG=P>1D_Ÿ̵k%5X>mX1ni*T#_,soR\驴rq#::D,mdr:R )E 舗@9 Qj[ר)=*6Kn `>ς8z_WD'NXs6}p܎PHMYBK2mmT[#g,-ACb[;ypڧ/p%"Eп|Mz)RZDX,+d 8T xe5[ea%0_P}pói0؃{ <<ǧwf[V}~VS9 A.BIᐮ5%8~raQvjJTB%A~/dnR\q;w䵻`Wi5)8s+lڇBmv^@|D '`G@i41 _>\`|d뭠e~i+}5J?1z Pu; h'F*'+!9o|{yk3۴ H? XyÑ~ɨ =oyeo`C%J ֦OiV|'kפ|Ƀwew69p,?dуyX\S}8Xk^SFo`wPuz)@(J*֏x`Jt0VlY/W8/Rd` fmhb}L L/Ѕ?:=^]rD^ e1J5.o#-G#F`}oxD[ _ 4fvkt ;Y\^T kXq]0?  F) -01Ӥ~*47FYwfLS]%1v:/]1:S~;P'5 ڛ+U#5jH~!״LVt5Ed"g `,G*U`YYԪ4K˭MGt*2Цă@^7F$G3+XJX_B94'$Dl1iMgHm+e,QaAʡpC~cvTVR͛JF.bF[B ;anujg j4frlt1ˑ:++\s6j2**y; vO @eP䅙9Obyp QB2b-hďTnKO? <3;ǩ96PP b2Xp8 V{n֏o1B׼V/70\[[oh&-Qe囖3fZ"+i?9:tw[Qww?zS[L.5{؛^Y1zi K&X')nc 5q{;P$fcۅ$BZ͠2@nY%svvHjzw|Zͼ7at{v:[I $ex؏-. Pd٬K14xNC.t6F `i 1, s}jwj:Azҟ |6(2 _QCr>͵i`7Xۯ^P imi?EKҷrlѥ7O>L ug|Ol)Ou,IEUůo^eA"Hc}v$NtJ̢н Gw::zA)O*fe%-`d|O@Zz/~!|qn2# u?+jO79Q ۛ.oLrP%G|T` B1HacDRf ^J=-S*Bf†0հlEeL2 dg82@c`ȴf[ 4YJraF1Xf{?ߪ&BzKx$.'9!0sr~DXH 0e6Uo^ߘ(R0|<$[r9WbDǃ|Y\p<'%aVIg&C4s(J p{d;s[YM51.i*btQ e{O,{ ɂ/g0._o/`k/3 h Dǘ`QΓ8;c_x&ļ/pbF[!u"ejT>.l07eKeW)6[ڪҷn Nʠ;M&{# "g2h3u:dU4[u.ճ՛\ ^dT$?Wջc fuIͬf\-AuA{hX\]bC (Lc4 *aݍ#?n<\4;_3vYP]ʡ$,>1f!DUr꿒b(c%+ecG=Jif j&cLn׼mmEEs-&eA0t a+B3]: UR&鸦C$* V+;f$*a"f4ղ;|~A+4m]pRG6k8P! 񍬾1<Iz'c'] ,\D.g+-_NRܠ 3+r߷x33ֳ)dm Y[~Uli]Ym?-sb}GX-WL(1Կgp#;q@q6e!UG wk'v"hZd="v&{6xcI+-8OA sSl~= j4~E U6.+8DY]+~ Bvk{NStGfrpv?ԣhK" `4v>,u}~F O ,T`1P<06wI ]䁗E?]Ү&`=dYc9UTP[ !4Qjj~6%vvd󯈾@Xg՘.Ul6B( 0)u6pk_rX8R$]?~#K= ,$I!)]Lúݔ_`{Y&<`B(ibc}%1<ˊ4i!ۂ'딬d,mGX &@2wÀ /!+1A {4G3 bX?{v-b48e+\(?z3 BpPmP`ꅘSyfC=Ύl [mx{{(NAz"9lu8Z,xSee7n\42#|r\"I@穜q)/A %.s3O\mq9PEz/k-~@xLA WDjT{].{'Kf] ܣ{Cfy!v* 3c_"7 B`/$G!;}V)H8Bօ xRQULʴbmPQY`'ib~]̹wYoMͺ iU^@BY3hFt9=%x̥PWe?f+g:xYP}gӸGx7&k1w2UE6%X+Ϟ1>2(됿k^jLS#.!a6` ܫ$+ 𭤝A#40C$ K<70]7vŖs dOUtxɋ| M7oթzNٖٗv&c7\#:r4/n CKs4ELjMaƤ$~`^Q̲3#j)"NJmv([.?97j|~M-21jl!u&õKU2-:~yb ՈYQMSP0PzFyRF}z(<6[ߓ1hvh?]WYߖX N൦k%+n +Ti9.4L$ǹP@c}W+fl8뛓'JCy;_ebW {}dkrq' j16@=v܋:QO>Q`i });c+%HbVk$|7P4"\hwH7'_̓apo]0MZrOd1GΏLnr17xBۍ߉Ty#Y 6~^Rd u'ZDm8t Tz;ٴIU(=+yogX Pgwۼ4_i%KNG3C=urD?G ?~q\u'JԻ38%ŬKE Pc}^饻+=]al $; 9-8 ++i0/P^i}Jt~ֲ),n6iKw6O4 k 2dR*ä;bE[0^AW|k'}pˍԀŕ\?gw8Jӭt%n*Ty7mc[yј6o"!V`}W/|߇- ]W(q&U+p6q{*yVZƽrC nTfySYE&:{~k4hK)5=nmNBW%׺Ⱥ:8xr^F`Ҁ~?yɬy~譶0R ?6(ы#9>2vyKy7?J`zMHK e j*Jdq9 CXOqy[V+2Q͕-lg\ ܖR RNJ\  H滲:O(:)VJu|7gm%L ]ɎfЇHo5U<\-A%1X5u犒chJ #a=ؘ2gppXuާL;!1ɞ dr:Yc{.ZRc;MK=`1GWY)FY">[h9T ?>4uz@/[= YDK] ~_<諶5S%^q;K'Y j}'\NR,NHj=UƁ(%Ĵ@Zq|N;"nfHbho)UL:z; dy ^?%_b#q(s&cccYَb z\yIBkM'/귔INWT 7*'k\~ī•:^XUn9*tBt:Nz%wr q5A_ܯTj2 QWtiypAfsLEhn~Q ߻ً" %ՐCI:ثEF ̿)̍j;Iٝ4lbAVm2?/8YrFB)'( t WYvP =p 7!/y[Fбxae~E{&ha=vDLZ@PsXtq'WG@RpZw׏ 9۴\Ng6$2r8Y5ye:~>y⺗G)U t.&MNR!CC:(738VaWj۶V5y2ͻmSIo*Hk-yHG(`5-)b/_rO gP{Rn*U6"$ PC/YDs}f}Xr 4Zխj@}`Ja<> EvEEY<|cK-bn :߈4A*{<|9;W{Yg=ק6!bR`F_I黫1Qh`B_L"ݹ <+mRd+Ϝ 2r/ٻ~;a4E}\A ڡل hղc!7$\ps\%-YT{MtC eN1vЧ+f~ͳ3WCi4D̫ 9} tPL+8)!6B܁ ?a `̛Y]/Hǯ\ZT'l9 P6JT=Rt"U#y8עIH;Z낚3Sq]Wi%mkP2a0.H_c=kىl?tG[*|mW:av;hQ?Cι,j;0oQq[gĒFU48Î$Sˢc(*X>QkHfTޙ _BuTq^DlG7xߤe GT Gf;FRK5^^ҁ]8uNO( !6S!I/{ I(l* X__aT{[fĀBC@<"rrؖӮU ,m\C,>lǾhU;I?gF"R-O0E!a7^wx $=LR^lH%{U yI@u /矜qK)>@D,MU Ր&R0ӈl-oMl.mͅ^G.d)ɺlf݌gL`s<՘Mż+-K{IHcIj K*C؈Q-Q݄Y/>z3P\U D̠?pUܛ#.jdmI D:ܵ?JDjV\(>5FzNY10rRfw5I+2@Ek.Gw\5X6&wΘ$Qv" ~{/U\W?kE4OF(IoBѤ p+5tv:+RzeHkI"m2da3-,vsF0D#~ԮyJRF z5S؇Apօl~ xM<'(HAM?ת+21τHm{x= 1H 0‚e1J,K>aV0B0[gi]Vُ&{=Yt,]WxQ 4~/;@'}&;`=_Oi t ?F./NKU[j70'cb%l ^Z_?\#$Eٸx _b|l&;`+QG:St HU=Pͭg"-o O>0[R#g@hq*qzXUN-us\+ĭWƕ(gW*I&'{/\%? c@ofcZ[qvձ˸b5;y_^;$Fsʠ-䷌>E菿o >~e N)=*>ʽ^lhh.%l͛Y=/tdaqw ^;7ZB3-IЕN(̖[O||6ڐd߮ 5Cռslѻ'9QZVKjcxI'yhOYE4Ǚgt[MZWP_9?s@G_J@[핆 ӪAɲGoUTGzXNSJp%V*+TꉔEAives,( tX6YrG=P6/Gԩ٘x#0 'VszU#eM8,$\\l;:%WVm˗ P TnIʗqnF]ơX)ZYn?FU(I9B&/uN~]34S uisLc[8,D-? h5Dc`xQY47ה ծ_O"<ֻFPPH6'j!tlge- 2k .]6-_e(k=y޵G;ЄNx|@{gE(l,Q͗)s+S9Tυ29?,\( IrAJ1$3}=Խ4z /85qqTKBG)s ]> +w` +'>\ԟ#\k.MAIC+|oTbB"-usC=2;/Z`m#4JȌ\LPD\$;loXVH<ٹZ%\7f^e yK0zbԓE&r/T-bh#1@IE?8ƿYvu:[L~q<~sR:ZȨF""KYiDJ!(ۜ輧yBn#NԹfP{j~Yz@N k̸R"#Vх'g,2Pc RgmZ!3ڢIC0`ws hY`8ל`@57Nc[ܐr?NS Ċ`贳q+1nR +23q0Q۲l9Vn_;)аpcO^+(١ N\6ME|z؊`DBgEH v0jl$R -U,ޮ$i, AĀA-0y@2.ⰼ50 ;,e: }P1]r@+Mav!Dމ*$&MlƙxK(-R | 58 K+3c~-fJ=L[,bN ]4N?-?=PF$x@IiSxb$m|Ch] =1s\.g27S~@rX^:#_%p9 w+iaxܯ2Xٰw%cQm~}6NBFv3ը~RE_P96wIf3HԜq@;rsGI QcipKsBَ&F? .ܧXi|5yIbG/'Qt~[.Sލqf>cjzP6,x迚/SӖ7>`~ * 0 kemZcN){ ,8lS9"3R ɴ*f@>Q䓟hegP.9ߏĸ( ?ɿecr1IbH;;:t[ zQP)(>t0n; mexo`0qrqgž5,AaשK|4'hÖ[ KmEB?F(lRk.=w\_6-\.P.6}O/V G:RcuЮ} gW$oJcfF.k?{"3 ᄇ#YI7s O2Y*e"/Y9iz;ZM RPBS_VJڕFvRW)>-MÅ?%( 1.A&kPYT0xv p3 ]/Dl/ `P&Jͬ]рJqG'-1 Plз9\ɷOolpp\.Z.@E\翟~f s@؄HԭD d!}B("FPpriP_ч)ӳ4LAWTv"IU!DCbg'wl++,ړ]$vyJ]ϐǍ[2_4'\/Fr*Q/7Wܷ5z"F;-@)>ya[4CGl4pXE|)pÕkܬK҇Bm+tPV*B3/J%KRr3Qi,&b'J=(6`9|N%\9'5?3MݪX}a+|Ihf?_&ތ-Ss9l7nl)ƄF6yxviTX)wJ!lϼb8<.aMjɓlA;jeF@0/Bc_dݙ+JF`l^ JN82m.s;wMVjy}<^ɤ~LG%|d`Γ>,qR)J6mh7aIxM}mIC z鏛/" X`% ->(ldu@:hTgU"+V+ ~$˦ s,t.m~ޔ;bx_.(Lx]` v ~:<{)oJpY&iG2/Y#?_t}œcPMblÈKg|%vҟ8jПYFJ d)6AzS^ ]Ȭh`P224s3Yh8K!U쨾3{[+g1 h$ nnv5^}m%ϳ_E;Qޱĥ]ǵOK-kh9°8Xm8YY@Wh3ld>a9=y'$m_6Wm*{A'آQoG,8i2h;B#˫I!~gΚD~E|,ϰI%qw05 nqVWR8Ao>atKuAyY10g6BjJaд2RLR8b[/R+g9,%deު:1 ,|6 Yaou^c/lP(1(zC5TGMcp;\ڧd+:GV:GCYUXr.zW6F: ]dzfUFF~ ]מ6>.M&tw&`M*sjB3,߱1frupw hxBe=C_9CM4^ ȼs6(2h(tK8jxWЀ&:\MH蔊pmSOzs hkH9o@b`%?ЧE<N_};=*dDqEPUVδc@s$1b Z5|7B1+PoWq#'9 *PjaQ>T=8( TvzfTѦ2E:Ut4BKd\.Mh F1 o.dhsvc4G窘;[W'9%y^Xi8p[D[J#ts_:85eߨaZȣ5IE\ZAwۤr00U0)`~p .7 D{!Y(C ȭG 멏Z \Zw?*tr['z'i#jZ<lk<+_*=1KE9-fC%$ZS'ҝz7.&N^%#^B4ѡH =yP‘-FtXK )1I]Q{}he_2+ HP)O69:e)xF^ iR}(uj~2a)._@Q;U>VKx\Ub[U"e ڲJLMϻԹinǕ/y.ƼFՏLGWD`O §bHz tە6]o}rZ)+\yR/>0 ^OJ"0‹eć>CLgGDQ+zsc$vGn#V P-+b5zBP6@Xn=|+\@vy8n$/}vt^cse.QWce7:tZU0",&ׄ @f!9dPN=lh^ }(lه64s eP2e~ޜSƪ.˫oJ)ׅZ}I|sH2nclC icg)i潣TA"4S!h d/pԇoQWiz^U専ab ̱બFZL*ָZє&DA +Aݎa%׏L%ג9Py66Զ$Pl8 ӄ3'-?:\\4cZˎFó@޿?jWh |n+hU@ߚ3{]ikR{^Öv?`]2JǦ"ĂOZ1Z5u.0!}B+DTNmTІ(k)UX}r7~o(jZE29(O@J vpkmU#Jdm|ƨ+ 4qLu示(gJM_6_`";A$p BFJL |#Р꠲(YɝTh_\ H-ᏱCĩԛ4xJ&ڐ &!h`MMee4w(6 %#d39l»S>B"#Ʌ/xNet[谝]L*ܢN[%H Rcd%S2b]Z'ՑS,M5s 5K;VK/뱕w9AvDu6 ˄`|[WLEAak"LJŊ/W^hZ:Jm7-_[eRv%'Wp٭1(܌8:ͽcTomί j>W5]2N0u884?=D;'u_F1\,W =&Z*|JtGF5 _Tʭ?nV}+X|S"x5a9W&Qj_ G).ӂgf$͈31 ݂by/ EnHcP_ټ4D5 ϣVGkXwd/̽1o÷]``Fā{~+>s}NnpfJ;|YDl4BD'o?%S#O7HQ1$ /؂^8tQNLt}QQQ ͺ[n,R}dx@_@űӣͧ(2h2C]"߫{RJwƀt{ꬃR3dϋDqZqZŔYr4l4ep 0,aQYQC駵c5{ 9]qwT,|fr3'Z|=XAW]vFZC? !3@v˷wP(pr&<1dtߙي sK;I_}k.{2 A XN!kTUa͘n6 nϹJ+^2l; *}gD{S,V\ˈKlx f1f.lG @|kԫ}H"2gg> L㝦+BZg$r?SnrO_M/d1gܖ~|n#yw^u vKi OtQ1ʋ4!َ 6MÿnDZKȭ@'0¶,L+a~x݇ ) o}CҫJyڐu*Syf,cxixh9;/a8BD)y/TJ޼@*.Uv5k%te+FrȤe EUDf4M2`Vw+3n/CNj&4څӜv6UYXMG)iٮ}uwt<+:.ⅤX|߁n Τy+'%[ 3R}tCɰv̷Rarά@CDSݚR~S~Krv)T$V5w臍1@΃ bxV6,ێNiJsl%΁ iNlH0Ӛ WJ6YFc./F峯4o2J=Z^!u:Ź;9 O&Zc)8˨U@Z6B\- aF~\=!ڀ/z:(b߳W\[0MMa5IMQ³0::sR3Us({־19zvE49w(<'PZܞгiZܱU}76-%sSy b$ YR\NT`GP@"j%Qʹ-u 5HZka&44#YpW $}}kp T~IX,ʓɉ:&xb+ ޓNd Yn0z~_Kf 5K]RDRkz\gJIAb\4YxؕvqӼsѝ˞N(A)D*iv2Qt#< H98OuJhy*%b1U?Ee{c6o5uR(0:BKCя=#^cQ 2yZ~Ӻh H)QVXÁ!0ָ;`c\8B\pzqi h/ᴛRt檲w@TUXfbOoĝBPs}H(v~s}y#y>cT6Lf湻.l%}.@Ywz:e-N[jR_%Dh=DD|K£dھPRȁ9,1ϴ~ am9;D0X`i9E'1$a{@FcWȮW2TBW2/ﰫA %]mET0 : A!I.5 Pu!,k?LAV}Vyʼ*WVEC9*fC~J1wh MGA]. fTNh" 5 %g KʱH gŝްiZ(c9Erg1T?U9w>{S(/0x7hOsh\az #iQPtZ׽o~TA(b-Cu፷I$f ۿ6 DcOͫF#=B@,@6ZQ(Kx#WG Lw ;gqIdz8_#B ]&Ҍna25ۍzͯ =^3ƅsTIo?f&$bS9w'FE0SZǖ,bk'|ȳv9 ;aJLo(0$Tgg [ ûӳ`YDM9:Uעk*7Փt1ȹA÷Y)E]ԑjIr;kW%1)ƻ8eOoJaH/>p֠&,. jvdbbPӻAZN|qdztn׻ߟt13Ms-pvug9xBc-}/e`zcLwGϺG{,}h}.XNxI,7$C1Y [w`Z+\R4Qkư1ߜFvgZ2fS-@ff5{s_u7qnLʻ59n&Ǟ%pSM\g ɻ"PAeRws xf/8*ha` Dvv-Floed/Ote;6a,[xJ|UIUT&&7Dq7\_rDg2{24ZeI*&jk:̬fY]H|$[ ݙ6j{_ri,<CqS>(9(dB;1k}~f Za\^Zxlȩ~N tlc)7W5f%{P}&Cȣy ѧ$ùV6uPXk%%kDVt{g*6)9Lv-\#?h~jY5c#HS. MQ :5[-gz5Y' e37:I힂\ldEdR^i B.U)p<.x{5au'oHO@:@P=4Z"4b٥3 i$kn4 0M| HQ=OcKll̺"qnôvCJ(OjW'?DŤ,F.Ǥ[V'(=Tuc3]bt #%:]_oSR$Am_KCdBvW*D@%džx!9l9r~~{R1|wkk 3#Ex D_Ma'i *̿)N-%RB,1h1jAj˿;m=NF6ӲRw-{cl8b9S4WGѱ"ﴃFڰѯAc(RȐLeKǙUG%0ixi`αV82%D4USno\Dt`ȡe|âzDNE^gizď7CgK2NWJX`sꎪڮ쫞ʴaNw"[l?mc>țC_=O2# AEU54d&T%x SʞTY5){xW ܌:+仑ch)Yh[$n5HGB/#6].['+.Nj_(`Jkψ.URҋ wB7jjs)/$ᐤh[ &D?9ug[Ώ4Cm" 0UIs)|Tʡ]ېyCCkpi[%b`f9ms=¸hA 15ƀ>k*G*)^H=Q g6.ϲrZƟrR1M0]8#]9OY.yy*mwE*'F@6iEZ~kɖ^ $pnxV J#6 v2BWL;pC ̡zʑ^fRtsl@o:.FGB+L.i0dM-FFc` o{Ni&u Dcy {85γ@9 CM(4Wf/C4˿ptw=e1ὄ3cW =m0#t Նa&&vDyrf:F7ΛX_:ȯn{wSh~W- S꾻w\YuttSFdob폥4`$BS@K' O=-GoIiJ>tePK'51.X%I"-ܓd̑Q )6 S[-3: KV}yCl VDe}*}&@+.ѱͥL2󒾲D.wxA2\ lבrG|fH @d iƠY1FK G Z|yDg%(kitOǯCʰ۫9v%şii }BRM %H3pfc#ԝDO*LUCVSXjCos3VuTHK[cFOwSNf1d +9u.~e*u$܌YHh[7i 1r01 tb|Qp6XYWEcVN\qd\J 9+^ܣU9"NR.ב"]jEMm0N&QIimy0v0`*}.2ݩKo&_û( 8v0*(=LqX~A{iE%mҫX\ވ累 }Kkdu<}R薈  7 YZ