perl-HTTP-Message-6.14-lp151.2.1 >  A [[0/=„{%z$o\+6N!M\.E"A sg/y30R=m&J?=zuH^#Y@%-Ü#P?uQ?}NS#ၡϢS^nw 97\xtvP1zPF= fh;'؍%N{lvh}> '+֜R'e۩SOpRvPcxG` R*/ח@ E^K:ޅl1f9579f20e2e1b98c0cb17dfe4d1848a9064919c484955eb39881236e06ef06809fbb089f0f8d1e8cfdd71f9c2edb0a5ba35430b [[0/=„~C:lن8g,z2 #D^XRԢ2d>T31糧 g^nw-8 FTmoNSGM\GƧ_$)qtD[>[-oqs:1,jO OG^`شmv#n6}j[7lׂw»8;(F!؛@ Er" b yp>L?Ld # C( ($(,(0(C(L(e ((((()L ) ) *< 0Z 0x0122H2 345(686 968 :6 FCGCHDDIDXD YE \EL]E^G bHcIudIeIfIlIuIvJtwKxKyL zL(L8L<LBLCperl-HTTP-Message6.14lp151.2.1HTTP 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[[&lamb08fopenSUSE Leap 15.1openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/HTTP-Message/linuxnoarch-b 3 x ",=B#%,G P @xO A$A$$$$$A$$$$AA큤A큤$$$$$$$$$$[["Z:2[["Z:2Z:2Z:2Z:2Z:2[["Z:2Z:2Z:2Z:2[["[[&Z:2Z:2Z:2[[&Z:2[["[["[["[["[["[["[["[["[["[["fd7e1b66e752e5cd91e8b9e889a89be27b9945ab35872051ae07b862cb4b3fafeeecd0f7519d92c4ba165d379dcaa3c72eed60003e7d091fb0d77347321c3f8fb2b1c157b21e66c017a5782a0f2177efb8c0e4b22bec66b14a013314be0c95e1c52e93527330c954c053c9bd8076f7ab8da48eb0619a5f8976a1cb42a505c129ba8224591a3cece85c38059dbb2c7ba289d934a27cd7331e16e2a2616fcd4aa66eb3c3162ba4b5e5e769378519998e0fbf1e5c85051e8617fbb401dd43215f496133f6dd9835fdde6c75c07da4d7e2d280ee6920a18b102a375766c0a45b4ba8a172b13ef512db077953145bf005dec68155d9efe33c8ed4cf6ff358308dc6f3dc0df86e53e0fc8f6784cbf805dd8eb2520be5d6e74ec0a9e327437bb1f6a8248a675fc049be8a0b491f4be6a1c6b9c401ae9af1740ad5aa73ebd22e422a89a359744b888ffd7d40dc2a75675be905a4f8f0ae0fbc20ba663492e52c0188af0195ac8fb6821e7a1f7af4447e0c213466186bedd6458daa28eaa7f2a38788da92bed965334f88e37d7aa9e670220daee1dbb774e5fad2cf6e4f8b22d595ac6bef66f0d1e8593d5512d7a8cd90549a976aaae97e4fa9b6097249b3682f14747a6bf9e32067b04a6192658d2ee166b46b7924335ff195f2d9213b7e8f0a3b9836c0e3f6ddd8d7e62e4ccb57fd86fd04c5fab3edccc9948bd622b628bd40e71794b090ec69e6b41f70ed05b67fdccc9563df0cca1bbfe71cf5a8a448963963aade241804d88e41af8e7e3f748ba8903c8e5f4955c8281ad8b45550a648ea710a833e6c170088a33e8dd695449519b90ac2eac05a70a72fb46f59a5fecc6580175304f89b9ccc1fe98bbffda034231d997534b61d43337bc4f868f4c5bef2c38df9239f15067acc62a6afc97f6070cb76851b8c3a8d07481926641b14553d72a5bc626e4f407f90ef69903a1d0de143fe197ec9817f091954e1d482f2944c1284a12fd4edcc5f396476bcc8f2114b024f9d70ff6f0c2630bdda8f204a23857198171585a7be37e60208c30d4d32f67730e8b2c8ee9b50f9326d0b99d9fe98c42f55fbrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-HTTP-Message-6.14-lp151.2.1.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.03lamb08 1528388390 6.146.146.146.146.146.146.146.146.146.146.14-lp151.2.1HTTPConfig.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.opensuse.org/openSUSE:Leap:15.1/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 1 ֻtutf-888aff0359af7221d2555aae42c19bcc150dbc8b82a4524e3cd57f8073ee5bae2? 7zXZ !t/] crt:bLL O`2'jՠg&T E!2B7+{҆5ZMl)r&8k+c 54#+8<qgw@kׯ;eA2 V[Y|fQ9>gCuXꢴD S1jdw Ȕ]¹҂׶gƌ+4TeQcM&c*֗rx8rQr*@HsqMe`VX̍T2+ܠ|읢)fz[B e@]A. R[@:.Ê'?GmzxT/R) 'R)O !9⍭Ix#wVT3cz0ai0&[.]xXv7TԤ$WkU&R{jlm7`-͐W>BgY9c#9$Fr5qߘAr׷N8@O@]w+r dd`.TFrU,sBVGk9(3 ޺'a\6߉!0JMx aLi]]Hj%+aϱ۷Ql a< G.>'`T^%}{rPWTa8Z)sZ!|yhҜ?\u 0q\S4 #o#  B}^ߛ $!t7md)&-JF:XWoۊSՉi=-À|b-+RSyDOC)g/ԗ_6C[xDNE: ""","胥dw_ǐQMȎ߶0@颟"'u YO0sS;7{!B]ߏ# 2gUVD`9 >=HP?| CnZ|{0ꈻq?*ijFߙPp) 6&kZ^ JJMzfP*w$bb'ԄC?yZ,sq^ĩa8Ӆ&iՁxG~;n@̩UjnDjn}iKr2gW ݟ>$I!xD[6o!սjE rez pHSs '0yZa#g7$ H鬀'/½_XzZZD.M@c\4Y톂[/fN5BISu,DLegO!TPwmEِ60; w'ZٕnF |_TKq ,oy b$~jЬ]EG'YNI%彤p蛖ZP:᱘`"IoXEg#O YM`1h^{`_w [+BJmChGsE6Cl.ɞkgumNWi`[Մ sTBiLe Sq[&(Zw'Do)`gl>UQae%))ƷOx=.tHM]$>c=mdN밡pG1f 4+}G6mM78}isMN{L|=ٝX"ki&B/q$}g92!YјL_Q!;F ^Bݔ|vvCUȑ(#.ƹ1敱~ BB2;Y|d+yHd{Iw@"u Uke5IPl*PS0}^bgC@PWwVV`D@*N E']9ZA+J4Zu ƴQh; I7z3 %zߜm4ů5OsXimhtVK w$,M EeDec3%ƎԘgдU󜩒J7"ZWk W J%ba讆ǣ&x{^\̶n~ѧ s2׺ڳf٥|6YHA#2lnދ^<,אb M v&(°:kA~OjSKW ?c]VITɂbSgڐd]1d`UH&D!:Z"fur~FI(o:sֆ"_!мh!Rt$W`$&VFAAV/W2abb2\b\m[5~ ZU2V߅3_@E8(zTRKs%-bݯTY9;XTxOd.-)v Y0hҶ/$=ʢpʉikABӀѭ`䮷9GKE'Û/ДKIQ\*'GX YmY4)Ԫ;A j^dw]i|ɠXnzO/XyR "`s+|W/s-. * i JB;l!'l>z{N꺯T۱tmOyރ̓%n١ ms:zq龍I!-@<箖˵}XmW6xɅ$p?txZQ4ԚwF>}㫚 H!dH ZH<[ ~pquօX7&iyǘRx'^mO'W!" c$nO5=mtt{]r>+GF"" rV5}ABpŗ Mw(Dиgb-o8q?;Ju؎2a1$:W\,b(o#w(6=`+pb h!魿D-K}[a4lUJg+!`' ScD"WB.9o`} %lY\]?~L?׫sO ez7G$ʃ/G! i֭za݃a&IHFܭi7==y"%e)n:"?E|>k@QЍHOv_ULߩa&=^Ȅ~}_ ¡2/>cH+\}iYwx© Јn91NK+~iM/F!cifLy.:$9g-@͛/U:(jc|m o Sf"e>j 'Y7Љb9>)oe?-U(7S* w#c:p{V\Ntt#LW)  t%tyX2O K)ҷ/@\h\i֠ d*:,vg9v)E!2Gd㛫$k>P)leLu\aZtB3ćX%4q"A xneXȡy%! @- *-JtVO(*B2Q1~*VƇ]u_׌X|'~~ TF]ө5KY*23{ާmiuw!*rwN#sɃI$78XA{ɚ}0}2ꬂj\Zsv|GSMk/=Q‰'N7E\Y'a2u۟+HNVO"ͽBX λVHPxynI5\'Aa0 =^(iN \S h=>[f'\pCPvs.QGph^H5,YƂZ1$N1M7QA)r)\0v u e_>G ݿ}6j2BT-@V/p%Yn[+d{eBORT]7Yw LGU%Y $+ڏt$I]P [a&zK;{d'%I'X)s8tdR;Ľ"<Ăư&݆Boc(fA9 Xӛz kmg)Xn転-(q1ofBE\\B{#gŀQC76%D Y\qyՊ|抩KHpU8A!"c_ua?.-uOQ4`TLZʆ0_Uh`q:Àj`G ^?lb,P 9f .膸ak:4zt~`+3vΧe'kg.%Xt>p"&*9ߑC+T|Tk^j. Z;@^"T.`Hd4HX K- C"(~?T 7xA~3X'7_dw@s;= M =)޹kJbc:\2ńx u] |[g%!ܦ{z~; |Fx/-oSA^Bɼ^pIeӅPks _T~};v_[ƌ*;!!jeOk|3KtHrtƗ^s }V~Rv+d^zo3S SJ[S&(]"b% !l }hFvӷnVU Mh?Ux}բdU_k2ew_5tARH>**S'( e5NcmI$(⫇[>ǂ(& TYtwD,޴SY(L?<,aˁ\ǻv3v_8ZqqE KsÏ.To4_+3C27ey3drg2x,lYeS4)z27YU4y4}hQl]T#QBju!;J] ݴ(<wbbbp%+}i^C|簅,vi$3FCP;*tsTx;VF_P?n*Oqp##O`(ly=k;}{,N v61I„]`ʫT 9ׅtSA@.BL,v 赈Tjm`C CrsLK:#C+de`. T'=nk<. FlӵxUfs`##?5v"\Y C]R5J\8vdm^ =uW(*~&7}8[{GQoDՈm$.U:]^iݯ@JEn|wH"sۇ8pzf*W)~0_{$+^wrNR#ldA&O5 .ļ o_)뽴&'0Pz&_Ii>$႓ArKe 3f^HLyd+sI`lKhO3aW1zPǣܨ`n?ZB}#!4CEz1Tz4 ʋ-GcOfJd1.#_oӶ֧}ïTmzGEHWS8Y)W?eX]6&ֹppμt4KrʐJ貭+7hJQp+=ukC mDA|ЍjYM:v$M |5e1BrSC 0$|<#g & dD2ak}_$@Ȗ|[2ū`XIGM 嶦~+xT;X `+{U_ 7'n 2|+]sS  |lO{48Q{ X/Ӂu!}8B]fQ]ušI$-]3-FC6J2;7_E~0_2ޕKjؐSA##=jt7*徱nzpSMT){;ݪ5&feCJPDߤq·åbY h3fze!g2l)9J&7HpsGPfmO*#vX@ibq߻gr-y2*c{m2MLf{_7䀢$gXMP3n0uBU)A_u 4 E+l1El"8zCJpr;#ּ4I\uXg֕㬬R)ǩ=fAıӾn0C񕊏C?1HRo[ ƅ _"=,8$᷅}wqYbgimJ)dd{jvk6,Xm>aOqb.l1QF\An\{.w #|Fs8TF Pʳt7>i*NF(1%Subt`V́-"ܤK]s.-yS~n AڒES͢)YpZqo.)0i2ȡ{Kk䯭Z^puDIs,$b鸔큥uC0l>*NLGIa3ySA8 9Ip c6+ =~k10Y#vJ;؛c>?S`c`WsLy]*V֓bqC=ZA?RbbKGX,8*s<~U̧oL8sW{VȊ=NLTS: w9ȗqjQ5nK (ޱ) {E`cЧ DZK8'9{>nR]F 07H;ܒ_"I6jad9}+ ] 5 ++_>M$K{r }AEz:r/EJ$hh#Gt&(bb-3cޔ#p㲪9qz |I*BZձ\@h$D϶nq,"הB wBemTeӠ{,[/`?h\P}sExTǎ ӫhW;;.΃8WCy֣Z*,%o"(?ϋI>O<޶yGm~hx%Z|b b+hQ9+n{6ї<`icN79=o^wKeFNbvmI@ <̓ljlYzanױ nU2O*2\|!e4r^CFAt3.߸7 ;D-[!_XL-:N  яB 'E:%|ST`-AA;INC ۣʎxŢVp[-v o:;<*[hE ~tf.f7QSK,ֳ B-NiU@VknV_&s nW!zz}ޚ`nXؐISaJ=bY^z ξ-gJG6ڠ7p1 4B6|?ӿ/e.gb ~DZ]:fLD+٬? %ЎQYC?F"+-DxF[ bT).93~P$_3ۆ"`+=#m7gq>X<]ndy.|w'.-9"=|^LC@Fd(gTx DdZZP$?i4d7( ŪQF<4TF ~,Q.d)#J k#nG}P keɱ9.7fɅ3)."6;o9[ ^>8 z3ݚE+,]bQecӧh'<&)!u[W$/ee>'Bg6}n^TEū/&‡46R_a_J{)k;S4dRY4n殄j*&?eq ǘBz;A ˱֠⫛&O/-bHV8|*Luv/d7dY9Jۨsyv|RwDz7+NNwmD]K< /P շW+&Һp-16캲D0W,uWk  )zWZȂ$xCډB!c`PIʃDo_Mui"9[[?m5S')vJ#䓤&!z;D Q%u_Sj"ᐫ9_v1kcmX9% W]P*fI7&!xR-PJDUzˣ$[UҬ5Uw-Gb7V6Yz7;qZ^AK<]? !"rDBջPkf?_X\27F+@ 9׻.<n?H%ZTb#:uki4xYgxٔhG$+c*2=!-@SY9|= mB> ][ƌ-WS2_N:4S 0m0$>f3/T(q5ўHE@ثgn.& iteK# <o(MٱcM!Ô52-AI$i gq>sބl (H Z쮺p  `"_+tV*I]r ok'S0GjdţAaAQ_ڴ i%# RJɢ 5_8:4j*^?ŏm/!D",b'lXaƉ~p6(0x$Nؐyet ֲٺc~a;F6Zt(ThυY=4K8P:>io1&1UO(B %(U`;i$WṂ"JkgH ڣxM,T(U0 84.[t 1i}ɰ]eGURfq;Jg|ТJ۾Q, t,`1=pC0T'bs+o㰉˓*s꭬`5AN>CWDM B/xleŌsලMd dGc6m>ZSj s3VIt[,1; E,E$NJ:nenOQ~s+R3Xwy D)B8qZS46ܓ}0\&b(pPnj>le)N0\r)iSаJ~wטhP B_z T|2 `^nϼK3w@Q ߿^F,䑛0H/]eS͓`mC;i]ڍm]9[:-%)zd2e?Z5_[Aiڥy4tk3ī9w:213כDC:v!rk.j[SmA<6ﳾ sLv9KF*y6GyK[/?1&cRv3j2?HURﵣo\Ϳ9 z 'pϸq"EsbOW #E1' Z#ٜH)" g+s?e& oE+a;sNs\FX״azɛwк`>Y'7|Sh1rYC͘MTѾo4Z У3iN+e!@X]Sg߲,/E%(zO$͏6Ivg=nꚛM┒7){V*uoCmSt@5vъGFP 1+Lk>v;W1rQ$kӯG^!6Gt(YRҜ߁Dn^zy gקDkNOiq 5"=-E8zS:Q$b[WdG2t8RM'BmCV:d6Wt:Do:iikVkvxWۓ^97n^R89PwAC#d',SoWú`.e5, |*w*h,}9.ȘA͙ ֋Ki.5hݜ݆RjwGuC֚еBݢ ;i-fȁOhnEĤvh\[Qy0I}nu$y[a?0ʭJ8)}{ F@dܰK<|3*u%̐7YLs"SNt`9@ J3er9Ւ3ɨg9`o ϕH"$ \%KXdS @]F谨Ԛs6l0$e>AsHv92-*VN\íljm#s]H{(;,Y469֘ρd{vS췄̏I[Oa ͵EC/ @c@9 v8..$%tE3.+ xZpُ̿] !k1ۧy]~ॊ0en,נ*< ?`e /xO|ޓY[18ZXH|M*0Ћ1KդF^Րc*sxAgY/]\0㣮bçݫ_ XBx<'u鿖.Dyx(>mBhzYZO9DnXCMy֎/_ Qe%{:; lhim` B;%\Wۆc 8IDٵcb@:&GȔ{ikB-:'$u|XS7/ɚ̈́DR '|tcڔ,(37~ҚOq\Ԓ?īCX!̠e&ׅIl<ÃUF̰54x55(5&SwqSVAN-gvy{4S6r*ŧ-Ξ7nj14NN^L;ffxח'|FҔ2{ax`2{#3fh)5(#ԹRPeqh|R`~Gx{6P%E2]ý΄Hrx(Й&wBloeѽR^ש7BhS<FC<1Ae vF=G %ogu1ZFI}t#dZ\Euۮ,rNjm=B<<7=~|rq]~ WJ?*g[6_Ps"wI:t3JS,farTh4{7$K_h'u\?[<jF>8wCIf%A_09n`j6sw1WhicD``I +X9<*VJtj>|.`Mrc,g CtGBVCQeq/Db4 '6QH.4$Lcӫxq˷ڵwP *cMF\}A3mha1P=Ot6vkPK}aU^\i"N9}=ĚJ lN?}.?7f3^&ΣOl w&纭I}b~$'srjf$q?ُ5eWHo;bk;ArG5wZ3L&Z xZ[_o&/w .ɪo?oж]@?Q/ZՄ >ȫo*[MlŮm*&w@B5sٖyn*qO[ ||0sT|5ҸhߐQtxJ9%I ݐy:p? }+낇 nJfU36'a+esDa3*'JTBYU( ǘ@z@ޙfp࡯ՕKb5@O U[d]ق3%+[g,wW,-ZtD17mJiA{%s?ןB`najZPpcNLTx`nGq-L=%A,_E0%9cs=2@Ki' _W 9;ƚRhhbλy4a=R Z)DVb%S6V9j`F%My .r@[ ie{'nCRV!P;1(jCB*t-} +Mt Hq~~+=M٩TZ CRm}y(%OQ5 A)+ nHy)*ݭ]붿U\NQ=,%o6΄'=.0քA&2dA0==>S?(LMdtgMIOEKs2 h}Ϥmڅ<461Ēy1D86z Mynp|}t1YEǯ:O"&~cn`񰟢Sic/h-2c/68:ceV(7M@[X &PxGdT[gɩrQk9ϿuMEZ!e:s:=h>EW)7䋇o2{3BؿSapYk#{Y8H~bbf,la]W=@]Ĺ%-uܼU 8dzC`=+t5z*_u t"]oH_Zpunjh5,M5A?8s\g{*D ?3~pLʂl5=W ڜ 짾S+%Mo2G[@[/E-G&*V'A=94\klat|wKț=F|0Cv-$%J&^IBfsн:dH{t->FtՔY7p `@O}W29,7mfiTtq<)j@r"~e7m,ZA}j>\g| [ b1G*2εĒF+G Ob Bƞ!0أCT%U)ZK bMs!Ň+`% juQ:|/h8X Ϭ Mhߵ/9%9@rrsf>j;{H|: ϳȿ_oB{<ᒼX[Hm.n% !F^Nhً<[ƛʜϛwn4'Qo3;C^T$ײ =eP^ŞOLBTEP$;yHg<.3M{֌hoA5¥jRȇhmRe滟\1ESLJS:6ٳQnA*kd8+EMT1ؘJBM2g[j?r'EsM%Sx_/a#є2;Q;pR5RCJ)oE32GDe i/alx@af z"$`{5]s0-i^"hC،q[YB/tǖ@n̷zAM"-S("ƄukD>Ol~ALD I#fM30/Z۔4avT,| W,<- NIgboڣU_X8l՘KB7$Jy:J p[dY.Ox7D~٣^ < m5Lм[i\"f\ߐ~y\2j#P)>Y\11_17Œ<]*80r#@m8߸9@YΕ C7@^QWn{hT4bpkQ\NKg[z߭/Dž_<dv]W?zv3۲wG,M-iD&2jg" !`}. va/W^P1yN)r +/ 8ڮxVBij` ?ב 7| *X$X ! HE@Q"yH]D#q9L:zϫRɁG$oPsNJ^:yov !QGgY+589i<^q \y.:=)0&7?V{eQ ҬH1eUe%c&w&\arVI3I gΣ/+2ѦCZ,$ޤ8?Zy <G94ZrЖ=K= mWq<%=6 H^|~`̒smd X$j=|7vzsz(Se'D 4Ԫ\waNYp+ +f6'e\:4"z+pL_EA%%Ja83U-xτO w{۫n׍I=!|O#B<BEZlj GS&zۡ?u*ԌK,23 ^kO5sSԆ&\l̗E6FzgRdYh"2یalP7J ?/ʡyQ곢kT3s*U(yN?~i 75ۛWÎJ&/lU1xanL§:@DlXա7#!]RhRY ne7.mk$Ae Οgיf[NupC .CIީ̳9oz GԘ8EяFOIKJ} M6ڵf%3gA@ ̧:Y͛XQP\78fDo'~Pwo>!\,EXẪ`7$VSHn݊}5VSN脚WL]w'xU똻Yg5du-;WiM8滽P0EU,R<&#wXAN?*H+p=䈓_rc=R䒋|Ks۶{X. էGv_nIQepRjFqu&Rj"Ey~֐TYD%CLѩy^"džwN<@Eq7kbu,J][ x!DOLJk"&Pd$ y%bXJڹ;ēWOol1x\HRXhD8sTsn,o; KXZ'-A Fn_ Cgd( B%]'W:\jҧ֘Ûc1Jjذ/MB߮?-P:[!ʹF=UȆ7:$+p&Fv۰SVڲCAƖ_ ]8AOH""ф7u%n;ZO\7h08 AC]}mDYe~%5kqVhY: G !Ik#i{0_FwtRyf:nԹeJDtd؇8җ?}x2+9 wG񋿠x ikWo%F* '=;5oc/AEh^@AʃÁ gEHqȱnKd:?ˍA $C,X`}e$G߮eDTa1 eeŢj0O B 2>" ¾X1 x$%]˵ 5rI*~V 1 ׆|n7q=ܠo}#zj 6fBXbDӫ.7e3~qH"CCK{r>+ ֳڥ]b}i9gR/^©YcomɈ. RfV7u2f8a |bKRd"24,feSU3bp녈߹-S孮b!d$t=A~/_I?^Ġ/[LLkAAg"[%o&P(!ي: \nV[ux {U$` }uhuD}Rn_}CBݓ?&D)Sf3@ރ')λb1>崬wD}s.\0Ar Y/v1$Lwе_MA_sk[0iԉ6K$zv߃/6:jDpM&:G% :H(,5qeJ32{P-6a@v~zVn^I'ƻO!Cj0qJoPA6Ҝ ![hA";=z@oL79 z6rn3q.*@?;iuC@lsz@}DZ0ҫ{MߤS"@~ Srk#kx/n dv ìOo0nKۿiMб^B.ab 9*& ~%za+ 'FYQZeHk8# 1$=#=`. ]C%VkA_ Lib Zewq?¬jş-‡{aXe jk&>d`%Xq/L^ %kއ"̘"@"`Y$vĢdor[>&qnTyRHb nϽS!90h`w~}r4sэx  brNx% H_/d^?zBL} MkJ+Jm⋁R/j΢WJm!,$ɯ\nۖ@DKTq#v}zjf&f|%Y\r]V8˱x_A,90G_#k7L7oUy0m5 9 vAy-taVHK4Dsݺ_Z(}!\dg-e3zQ2kIo# Wn71 T֓^v=T ꍼd/3% 2 }Yֹ,vXh_J} c9ZѦͯniųx%˚#n aڐP@}9ܔ`]7\'GmWNm{#y8v )7]W|,0*"xhGlз>},q\9;8G8F2%յSF~QmsJaL6/~G]Bex o6`:Mi ̓ro;Ffu) 5֧-km^zQa4"D*J`AB}CƧO&u4' gf`閇 WbRtؘ9#՗=:C,v0Jo'<2fnVVdq|іnO8ц`yBoRz<@gmcpС0V)X$#(,ת; x (D)A tP849@_S2{l&8m=Z ?G[,C_C&*#=% 7jo&87 `;8eJ҂ ?0,Ævg9(DB/j-I6RHO"61:B[hvWs>l:k'1( 뀢)7Hn"kDج?'mu1lāq@#_ ytK|JJg@]CI~_g1{SPh69S hk݋߄iM'FH4+V~-Y-Lv$`-3 Q\n]~H0 H 2t;>*TZVZ6[ O/ MO1Nݞ&M}>NAk &*(m\S8nF C}Q 3awh?kϪ|â).Kv^>k gڹ\ MFqbKIUEM Ml80>u%߆6ornĴ/4&qt=r#*uE@:T _Z :Žv|߭ 5b=) Rn-tf!h^LϖYQ\ ͠pMEKM$ݦg.!5!܉|J.a=uarGuP,<#&K<6{?OsaW R(uIA;MNmADX=]::vɉj"[;c)p3۠-UG~ kgzL[ ]|۠%0ArkP\slYaW=uQC|[RbNl&AbUr\R"eV>K2ҺUlbtS}G$sY7z!s:)7$ "5t <* !ph fid X})յ?#\i8E`$^jݐس!6jlWǃj::$+%8AW*rz a\^?T]_!SC:JʳQA%"P/=K4SKvɐ!9(Z8E>p" ';ȓ(φv3 [aˏ ':FwN0rPZCB +Fxy ibw[ԊkHGxmӪM9c…)rvG'{/gĔ-TK PzDsM 2k jЍ҇$Wn,75C\8jTR?w}D6Er;pz\d[Ȁ>Pv]<"z6To10/兟oge2?"{R5XP? ht~qB)K<l[ NU1,/*eb+h1޼}Z_=l 8dꢆ1[IH:x^9+nD9J!&> fs[e&*{b]1nBѼ+@jkuf:! Y˟01eRM&>돍DYyfzH ;)6O*z$3gL{Pu l؂[|5ܒH~yIvN$wz*~\eB@JFa,S"D»lӿ8bЩC= U_Jr߸ 2{:Ե.53X O)BB"&sP2L7d><78Zuwh0:sEа`69x5Rc-2 X!տkZ~wE8<=G5,: YkZK\;w w^ Ґf}jewM&A^:-Z~D|CmT(ոx_a};3Ft"_7 mi[logI!ߺcၕE?{Lf{aq'T龡TKå8z2;nu@VPPʴ8灙3kgɣ.̻+CGZ3^|*3ZwaZË"^|xqp CA0fu80jaVm3(yl  z}4zٰ@9hVRFi-6 ,WڳwP+GWˁMa}*xhK?aX(ǴZh]Q Cj˔Y!fu *KJ:@ʊH`- =)?y]L6AOgɂ]]O/͍Ee XŪ"Ҹ^Toad,z22'ikPN_lc.?;>zC'$^~[oÓai&ʔWA0tL9֡nT@Jfcv_/ѿ+e[iҘ`&kKqn/&Mo   F>7rPw؁w;.U$|O|`W&CBROȵ7#Zwcb\Zv86pMߘ9҉fkمqz)+R?ڵ%MxO y5M:Z5\?t9.{Z#$4쵳QvQ#@ =a`'](Z`?`S4 rO15eLCZA͙PӬ'7A~9=(bSP1@=#a d8hsz?78M`WtFƶE@/D˹6 ݩԄ[Bci5x%R դe q8!dҵut=u Ν=9@5u?S:nJ.y\"P8L&Lش%95uo93Œ.=ڬԝO̪Bx#6U M}TJ{dv9ݸ«o.  w i%nLP kK߆4a2B(KQn'wRoS ~{sYxRBTtF5g_1]]n`fAZ#Hc r­H|=k4܀M 쬉_ ڄ\F?WTPljJ/Z32ׇ8&TcPd\9rr1ϒ; Ei IYX c9``&Rd-Tp˹7}+S_MnnqJn+Q|P]Ѿ0Xp~mLLWb%? J!BH0A* 1kйIC{*j:j_ɽ/w4f# ?Z-k^?|j7&!RRAmFKMpJbvI݃wI_Q _Z}0.u?0R%.=U:J\#%@T儘 U%xw}qf.\(_LCm"1?`|#zՒb>W5hWtO%.k2;[Nux\xBI:dBr} BnCOR>iugE%'vaH5v85p$">}$|^v9w`%C>vB&!F|Լ|Q{t6X;Yi%`iY.r{n&ކ渘xgd U8>No j):K,0/` @VsuRRHHt ,{ F.{o wNYH C}nni[hk/ADPb5Z.o\H/1Fw-=+?)VD.z|:IA[ Hڧ2^^VS;^ iVVAcOqò>N:[2ϒz_6md.(;0w.ۡ\Z'HcYC7JDo0 T tKB$UnQW-АʩkuE֭_]/hکo RB.Cxf7 -rY3o9TWPFymz$mQ%N߲׽Q:{byB,0vXaYI#TQ6nnG>e㵸tQ,{5ӥw`~,eU҄'q|>?@݆$k0B? ^/CFX؜7g2򜻫4{$NMۢtS2 ÖL=zVx5Ղ4[0?Ok^c~%9A=υPjA:sc}N:ul%|7'9 }aXi m+xG?k`.FMȝ X*z7~uy?wʙڎW_(YU/ˮ\ZWh(_I~gU?:e vCP Aٙ@@) Φc*8 VeOTGR/-GJg:8[(Q(YѱA381u-k+V:'X0)9|7@9 _oeC3pa=Π2jDDMK:U(o!FRSC&&#< hNU+|+ Ճ_5y6OteWpdLW/ˆsZX+b&B^|wZIN|n~ث[`ORSCbsg:v\yIHQoU]:0& sU ^9U98l9f*}K oGRP h4}uyJ|⋱V9(;&Nahme͑;֧xJ<E3זnӭ̶n4Id>w|PZF=J\a`wvpͶVm`?2IdHZ҉{QO!zžJs`m-gW& Вn+>)J0`VqpkeC1b B*@E' sʨA9t]ԊAv Aᢵ㡡/z/\ AE,&ewr-@eK'EG&ŐvxwnCI:FD/djb'g!z*͓,}j'Yc *.n y^yj ?tt*ڊwNg#P/ePIcW%z#dPjZ_",PέGJ"9}ak {$ ~CM%v.b:Xt <* :wjV0{7m×+`y:|#Pv" =k@BR'=adOm]rp:2et$!(Lel>][| ]ۄU50U)M*o̗j{{tAQ0t5=GTa7bqީg@V`gIw zȽDm^Nemd(@xg_٬8څq{Y+) 6ab'Hë Lь;CDR߲ )Nd9UL <󗄁xeJT2UܨMyR莄L<<ܦKQ s*t,uVF!IIg, 4$mSrb ~P5ZGӋ -LlTF Y<7>.$VQX2sB%3ne}P]Sc@`Yp%כSUQ ?-dOIe8V z۷`D s|/E\ȉa1K  bk4U -F-,m݀ bǡh|H׻1 ^ Iyd`Y UІuF;5Fʮ5s4Da^uoڏY6( ΰ 5tӻ*7NǡSKؠ`9x YÝw̤ƈ/ aB!R47Y!1WDQ`O].nv V6o^UE֬blc1娄&3=;hX9< 7 6i`yC]VB384(rj=VM݀ BfJ:J[LKTt(cmd%޲pWy嘑 7Mǭƞp*SSX配߮IrʡGgi|:}< }7JdճW)SUB u$ӣhmQKH:c\n;.G$sYQݢwMHD8Uq5Ay˙/j+SЁN?;:`=~m ]ߪ`-xzŕa5Fw 1 !#բCpz_/4N,rd?kD A|L)HI-S򷟃\WSX@#q󡼗ѕ`PdLnoȔ #SXH~YQXąrkAv#:1)].T}=CaYVB* :4Hǩ`6V6SaW=h]r{Z0Y wD>b&"`Wl+MmoL?/B&g;x,ͪoeyQA]ש |ӓQ R$pE!1ad(䤷Ч]$LJ0oy!l$&ZgAu:@^{v O Yqw$6V{(_sh fh.Ma~YI?M%/eۈl9g~Ul(F:Yzku?*]^rC5zͧuXȗyDn&% @8޺{˟(iW,.^9 ~mY˴> d~ iO6=gxL!죹,@Gkl*Bo.6L;+'}x@ hg†--u#[³y3tX *~Kwd+H-##BWZX(e†3eWA\zApũiOv M*}نrlNÅqW?eq )̙x:iـ"8 WX7}n/t2p8&&۹;ӆcV``Ž񿓭[R8a\OHO}TFZE{cT,,2"7iJKam̌oG[8ZLX[uxIA/G 5`˴Aء5i}>b$pHN%+LF\vFsphxO% @#Wb1@&ruP;~Gx 3cpWA 0=oEL׀fy^\p㸗1(&S>5Ew n%DD*$T8C"w Vvu[<ž] Z~Ґ*B1P5k9 {ckdpj)Tv3N3MLU0wP&217qmv|R-+"1*1s|kdp0 ^p$V99(nKXYZfJ] ~BJJUvBnXJOP@ȂWr^|xŞ6;,icցb7*Y4B沜 :Őz|4q_DR$~3(x$ 7r 9 Y(|KALbma|. lIFA8Tvzi0<[A=^<}th^33U"x:7a_5ӓTeUa~pWGd]psHd1(\]SІC~.xv ߪZO2,(>ʼnI7_4JT0=9Lu>iX}kx3J}%OE?wW?5I%[(@\fķ\'A|Vw}`.ss̥y'A ++0\30^>W ;T;luDH]5 FbcFH?]Uk~ňD5T#4aw,'TZG4@+h j7fX 3 `@ [}GͷCrF"N:<7Z6EASCT[YPtre[~t1-N,O\uq;}an`gwq nJf1\ᄚ/A<95I^i..b36RnvYu&eAA-8uez*-TZe=-tLmdI6TA.KCDWpY{dbfA%FZ~?RKNf*VZp?9 y ~7\|;;gH1G,VM脠Ê!y6pĻOW4e(|D~H(!{Yq8+_o\?AR(RQ%_Y]v?ַ7dX>usc(`3Oѕ6Xqz F؂<.iܖ&5z[zr·^8g,@8JX ed?U:({yyZzJSź#f^3 f`g/+Bu-'1F0Q_"?JXռa}^s_K@,@a"FoȠ3з[EJH#<_DU$̞SXX4iQEk~T6}Ulgv᥸!Ţ|rZIe:|Z#M Z+4Ucma~.'%.hM,9O2+9%X ߢgF~{tS Vh]_v&\<أL|Ξ얮sD=rgU[jiSQa@{|)1R7^xXtk0y;U䅘h7H} rkpʲ6i4]H*">0&{4v̍-|3mqKҼפ!FI(h>8\4͠SkW m/ ;g KgiNsl|%Txʇ!Ug65IaCּ Kצl/M?}LR%)^FFz۱pS)O$> H@긤 BJۭX|B 98oL6=Op?2Y22dx~.%a yvU 2 7u muNft{q,H "^A;EXCHwy=Di02Wk0J@;4ޮ#Ro=g jPhVPϸ)> H [Y_ esdϼ[ F붸"klaP}2D ~8]RA_ |a`yOd 5ibi}M>hUŕ&=HC V$BwqaU,@kGP/D 4#e<ӃO & 'J ŇKpǛiXnì*BZpIRLl#ǤH)RaB4od*+KNd-Gnpl~T\3")"]ԸT܂)Ac0)t+I 4IOˏs[$Z}}I9m]X8ެMnL9 EGtkHMZ L=A7\䞦'eP)hCM1E El2T@Tj4 CoZ#n4'Eb苄eQUhG%=^Wο{vt((UXˇV7%rH~NQǤ7Kɭ:0FMO{&2frD&2'Ql /IAo>z'QF[;X$[M8#O }G_/@~FHs_aeQ _@.n{_Ep'?nQdb^6[lMhFlFKcF_]dH22]霦" f ,۵Ct̪UGFO H&ع¨<͠ W ^0Q9 3S%$ HcUOXFI ^Yܰ3y @k3k$\#UNa^[-#FRؖ_B*za.$nOg k`@$Hjxcm7tN*<.v@h?t=&)CO訩bHjC?Z%oS$gQ\vH>j"JɻP_*lgFRt3KTTLY>:RV6pxzccĠēxi2d$v1/l;>PA˰x/qzEsm"19ǿ\ 'Fv9n:069U_-0EQ5n-{bq_{rZsD;BVM2T?WՒݤ1[>i#4$X݃3l8**loUgڔ8c"ki"{ӫֺרԖ<Υdb rlT.2Q /km/ʋ)c \̭D]7&%V@D&[:Bb,ut\q$H HHv7 g_F/}O$ pcMRp F9?&bq+Tx[֐>0гC %Ž&ZC!eYy:$t0l<VNҦ z4|uWw(h_k*nT$* ?-N(=4qF`GD7َv[>_8Q~xl"jPaˑTƑoӭSH+nD ioaNOsp5\ItC=jF#dP۠{:h rC(!驑_Ŷ~K)K̢{3y{k`{!3T,b{TbB$6JbvgۡоUF 24S5%4rg{# +j<]?q7݅jxtnhq(E0Y7>rc'5:Ki d[mJv(̚Q3ɴ0,4KO!G;;L6Y=٤D:;R˭W"BsIq8<;̤heϤK.wJF Sv̗lp(.cd0 a6Ql_gAQ%g݈DCଲ!qC=@ ~;@a斂ƹwvA;X40[ϪaI9`mQQGa o=*DG> ̻ߍQTÜy .0`"2t-$6_i(.'V}йNs'aλUp LjKsAi@#N|V'*JZH/~zJU?F`&}Tz6ڬ<ߥKpu-4дDwzg]ʝ]ػ#^VoA~<ФS) %mEQM5U1׳%M∁q|, `uЕ?_ߍjvxf¤d!ntگ3( ~JwQ!J nM^ҊF?6]g ? N xrv'@KnmD@jO4{TT@0WiTÂ_S~sÊ.f4Db!0Wi9O]"Wf)0i:& c||;v\lہuNVѲ{׮c=P:i vzp,#& G4.e(ow-8jCN6iIpHmN8/Ҩtxpv0 ЈgU_7+L#nRkNIt4aεQa `=5e Y"/Ȳz&:@rcGi-QMMMPrk[ .M֩x, 3sv}~ rUy^_jɓ"Bг/t=\^ $a6F&4Z-h ?^gIvjrh$IsZM~`uXGH{9]X? ժDWXe4\6Haڄ_a9waz@}H"ï!H^`خ2^J)"qokxH}v\Pʔ`q[ zQ;Gs7# '?ճ}ܧTF5jH=Z~JWwAHzR$2. O"6^U0,T6&FF2uӇz],@Ť #1?*Nʯ " /{6Fy9xu@w*Xu4'ivU3%z`STF4>v_ϗX_Ii//_ J)[9!R&,'4WwSD*F(wYVA'B$ޗ",+T].$u\i&Í;UKn;8x)K)8@`qh?lHcܗt>^޲i\ $G Y-1Ǧ&jq(lJMShd&}:6qe& $inE 5jd9#cEd37a6KȘ gBڜrDus{m:6R puW clI/І WKil͎X9nY܉<,f7QC1 .wL`9i^oH,OxW[h8?7x(4 ܠbu51*Sg;j֎.E b `~V@fy X]kڦ'q`ڬI8@S:L#5C}of'ُYɴWTiދkȊMF8Qvm{e#~NPaV~R}?gtXA}={D[j|(eXk=V>rd'hD貰č\UcZb#~NmH<Ұkչݡe^pM ] wZ59D0F8#6笨ބ^l $RUqՍ4j{ٙG]*2 #Duۢuj/e) d ޙTQ\\2f_bˆf4|cݬeV2,\J*#]0VnLeNv;UU11Շ2G75O# h1y < xUYC8*%RtнwIgIA a|/)APT7}y{YrN} }q9)8tU˨6t ηqqJZT”aއ=´?iII_O)xE0,Dňz~Yi +)'CXhP:V f?v9̙͞ m R:Emkj 7-  Qڊ醥V )F“" 78+7Ug̨$8N ZBԐ uL#*|`#$2ob`ߦo#,pVr:: hP-a!d!CKβA_{ p{§sZ66φ-Epi$JMTqihTnzN>b|sքpSṄjS[L52$0'j蛔VLdH"B\.cUu :&{e/}oju{3}\HìX.$͋Xf|F *NanV3?z1 (f@ڡDT,3F$'nG2 -'] nG HX~Ó"4f=7GPbV{)>!q\3;ر e-Jfej?DAЉx2dt{'odm>v9aCG#.$52AQ>"8k0! %_*K=(~+.QwߥRyup62Xf4uy$CM4d{t@KPy-J}~((tJz坔=lx[1 !ԧEMNsCq Ś)~]Bg-؟y՟ꔼº HLQ08iWrzq\  :|}s֫UFswPxx}F%҅LĥV SXZHnهr>5{黙PYboYն}T n0\br!p8xg I,LTͨYaC~\梄ܜO}+8Q񦮔-\]HUǍ:267_U [qCHs&Dq~VF`T[`72T}|'kuݕ$SX"v\E$3/7&vcr&aE7ؗ=ˌ&~{( ڧjT7QH%f޵A5gOvV޲w6G8`gaA-mVsY;2G8Tp*/ar Ba&jPᛵ tC#!b_;&SCS]=LŎB9~GROQZˣ^GV $̃Id+4#nuOT"YPG-Re8?בika¼Kf(fZȰBAbpњ/ry9Ь׽.&`bGgȞNN@'`ԥR:5ɨȏ숇OUʩHɻ[6ھ "š؟eC |db,aV׆3Jd5N'v 31Um ++pd{Os:n഑*5GTMp= ;ՆfkXDO`dg[[TsWZRZAN9.GR0IʋYUV5rrϛ /|ߋw8'F1t69 8egp 昑zQ[ Z3]4w>xL#Jٷ=dȆ, a/l W?Ֆ`PcO%yeR wbl]ڗ,PN-_B2GYh\ه_oZ/ߖebc󓗏iv ܯjRAmrMOUu0?$d(34֣'^A}˭q8Ex*60ayuVJ o9BO_SZ߽:sΎ9 l{F{ 4~ pS¹Z^O.|^7i_)-f?7]WzM頂8qP RԿ ~YX,v u"8Y(6DSK1i˭k?1FQ+^$ݝ+|MQ:=P|0N#2WA78l17.9ʋ U;;:! 5 WCc&xԆxAȿ#ҹeO.dF:[@'qk~7 R孜8ɳyb Nh}bXաH1ijav9{EӤzA%25{X_(t]Y)^xl3!;oզȺ=* 1h ?V@EMu҈QW:6:&t^Tmᔲ SM՜ACRTN!lY;"P\3K83DլVdTJҺW1; P }ܕ/m %I>4 OMEmWn*diCjXu~ Z2QGz97 S EŐ6ї 4=@* Bg@: jMCF 1)5|~"d_m0g5ٸp5f#Pڥɢ[|G*7_p 4;:i c7W ̙E>-{VRK:JaBEF uWtxOF#'J۵ɐƶ 6]oëhk%RB>Y{IzҤӔiw%_s9щS 8Gv.zAu8GP(0?2_To*ٱ r;q*,1a2ς%f~ӹS eVZ,xuPUl%I|6|b. ;fB+&Eh|O UI}8;y=@GT]N&r")ҤJFC#WS$-*'\*դi t-iT7Zec!6p.*3M>0ģHNOV9޳s  i3CQef f^-]>~z7w!֋a3~mks/FԢ˞gN{#:Atd]#$ͨ=վY5{W-{!+L\>6@u~|F@3o7uqlw[WcޤO轒&Qg{K(|:]XB}t-D<UVYp ;'Mn3\^afs8@6sY`sJǪ Rs\ ft߁ʛ 7"ģ's5@?=$Dv{YTȶQ r%:HMPN[h:a![PBl,\]Ae_SIY63-z|m^"i(s7A/S599ǔa{ޘM)[^zkt8|RL-c}&JKjApH5 Wq>hks~O w~UhYy#"i,LmE޽.I"G:W(aG x6bpy# Q #%k>e bW.ED͵y3W32"^ž{52՚2\kkPNfq)U 4XfÝrn_C'F?6WS{mz㠐iuC~) lv$rv n6W tgwvA R' e Md -\?ZnAIvؒaBW`9MFJﰻA~&bj p]o0V f"2ð fLc1g]tP鹈邱*IOҬ޹C[+H13XW'תĎǩ*csj[efC7ATG5S'_ЈV׍Z.f [cgC_+ױ*45b8tWGÝF2Q"]^ƦE2qIᣏ"OQfl^qD1 XQsܝkKP tUo uN ӂ|Pź6+ "Mgc|DzލU5M'72j EjU`So23 Tn<:o=KʽòB.ZY搆ƕd9P;e2\9>  KS/`HmOZNv+=C"mvNX̓ A8JRn=^qېXv?9)3'FMBUAuk!gh<5,Vx]C.ѨpY1T_PDj>inSӔs!(oA _hT&"&թ=st\MrE3PT>>Aͯ`;4ғGdMIsFwpԨ%cX2,L!V(5[HiqxX±VWv͸IEvNcDVub|+1wq,A\ ?Aqqé DmD7"-?T bbCâiXeCzcɫ ;bDI!+KW2G[ p, - UB1|:o6T@3R{0{0m֞/sZE+w(fWyjp\2>IBNӍI׌T ]',DKcy| GgZ R\Cxa>Ϭh?,jIdਂ(=G\:On ؿBmI:9a>$:(Ę 2ک0s Jk3o_| ٴiE0P BϚs\ZHm-<RWo0h6Fr[q:wpd=qJqRUy& b$ʑI{%m(; <"L63E-y YNfhŦۿļTͧ&U41lV!E5Ny YaE+dj+] GBY82[hUA{#!*F+U_k-Ⲓu(}EC-O\_;^FaDu&rkM[/D6T>B=ki&{-^3eWAEu-2M!S\> ?9k8Lg:ç7E 4L/Ԏk-g3a?:J|LjW5Cn-O ٶaҳ6w]X>3ս;۹?ATFl>KxƎw!Sxߑ@eh8m;u1ëۍcܶMYзJ|N%@/]iՊWNx%[?w\EZ?U@WX[}aj$Q;2Jk(-fA`s 9s*s+#2Q0A0BUwP QG'W )zˋsJT'Q:![ $!sHë鑚ԤDga+VgɪL0rbN Vr_So޽q2ݪuB\+d䭁 îhEVFPA' y콱dy`_"[6JO۷:)ܚ3#uZ;ZN|{D"Z:+s|zhI_`t/Is"U[uNW'b1wkkcbo$zρ S}v݌DTkz,aHBKja1 0T's&kǀ#*"")ZbtL~f_\Cӡjo3A~땐Jc kDY'J6Ac'A5}sƬrvFݡP,(4f!F x0 Ij=Z/1oR5 &\dz)ָIYrt!@6z \꠺l{C!-S:,) 96XdN$WIl{&8|S*CW \3FG\RCAS*瘉Q#I3&6#.9yD '<3Z:}H"DZ eNfa%і}5= ב~BN@Dy4w728F>mm+xNm` sҩP+9h{G,]!4?_WRS@၊WCI'{ېRRF_!e`ܞn"@^M.Ty?W2vyRL R*ҫxٝ:~i{_|ܴ h7:EFK+j$HZ)P ]A@.5g_o~Ҡ`ya ޜٙ%osz[o_u<\k?bq߅Ge0 QϝՆIJf$Nǝ}^d~½š¬me~~@>u z!},,&O@HQbxiI\Ŷ:N;!DR},mi?%%N[SEt;c3Dyj`R0@5U~NµПe,^?sI >0F+8AyMN(X`8EP_":A݉'4bhȍ}"Kɐ)'i{L?4T16>PtꖪTYq?:4[v]K=C]zOH ϻb(èD3xTN)ij<ۜy`g> Go9Kdv#vv7D1wG47Or*Jmi=FD190̾$>@s)v]>kBfн0%0s+:p>z72k{{op:Vn DbMuw!]Jg/tCEax =8_oR*T^ v簈/a2rasr,,sݖ <Ӹy/J=8iQ%VMY4K WN{b6{Q^$@ Fu{XVx{և?#ɋB0VvC!*y 6Q+>4L'8]URB)..nɌEW^EfUQq<RU w)oJƘBE;C2,%:&꫼ZhK{Y2E_:\CRJo(cxQN[?W'?oźo|x8W݌G`(*; x߀N R?LO~YBӼkـ)0K&S'ب-ݳB΃+rO6b]ٷgc 0QR iHX~|gQ}+r趕+cFL ZYbR4(fN\/c v0k;,?Т>o 17thۏkЄг)} 4ua4\$ʦb`Oy׻ :xRLG見2a"4n"pnTV7M/hn9N-R.uieZfM-YHQy7v y)gEԟL` p@$*OV\)OHӥj-SjꕽwX`UJ%zC経|odND J_ń"%2Ez"Qv;aqK<'[G ق\ÂE;Nd R cR454:ͯ\P{0RAKi޻&KX/FA3+4vсB%M,<e{f_QB%7sE@hdL?exkO1F/S! 2ɋ@1U.].ۭRu E-`3E!:azOӇE+="JA56g2lyLj{jKzlځ? >u‹<,h=`×@0 . :3\7;l یGҌ;'-9@˖4]L|$s_P[s>a}s;|˖̰Y ^`Wqv`Ҏݜ$V\n2^3M[]EMdmc_#Ab_н|bW\S, 92N]=:.i]A=Ȗ?ܶ75Ŋ&FZ#69):\WFܢ&x% 'zqMB-ഩ7ڣa43 shÖFv:+_iZ_9oNiC%^z5chgO|(t"ꡮ̘=\ 5ȿܫV{م: ߴۈ}_(~n<c'C%tQ=NL ãfB_vI7yt9u,oдtplϖ.xvΪ^iK8s uDo4ReMKU>he@T,ب&=`Ή'2LphGs$O(zM𬺟̠b?:QEp8:O\S]R 7\z3S" 0R2:-Gwӹk6㥏6Gtq_:/ Rb[D4rb0tMɀgIM"[$=-%:y N@ʽ-Mn_mPd@SOCuTZ F#mS4,t!"1;X߃Ȟ~{<9[bp7s7 hORf%( j}k)8!"=c7$eQ͙_Zyce8棨,H e@Nym׶mw #e؀≿䵳\=\&-i>MRZ*i jo.O8p;ATcXˏ&YMa S3sϭo`)oI ,8]I }X9ڹh0(cD~=Yl>ԥ~<';5Ah,|>ӐWWIEDF5nx%#1ƛP# lL Gl\TDDvp\fsr<|)'=oG;dMk]Z=)طF.ԱX7x]S| y G-(YɫU QVuuܝcMbez:VQSvYe`_i5P1֥IVo-xg=1W40b>vNGߞޡrޥ3}œ ěHMi%Hcd/ g7gʨP=0I$#x=+so[: W m)?QHp&:Jl(v1]m~c^Lp|D!P.g6K?! -g LdA2[ n)̙cE9O|抵_r_l<]}au1| S%uÎ哭Ff)P8B!Ừ ${F U?aDsOQ?j sa(xj#h*[|GԓNIAS籁lJҌW _#N=5^ `Rz[XB> Sw#!Q JrEI)K Տ/7pfŊ\C܀4dl&5y\jҗV.], ߿n6hbvx=Ri`c h"}uýyw :w ꥅw6GM0a6;AL|R'n[Dq؛KfjK~\ i=[np[r:#` JS*W?Y'@ljhF^r_X , ]vt:+ )~`JJGԏDEyIM^q$z7䟥U aJ3>]0x^81ʪݽ~wI*besaN+( 4 ;jcQc%xiQ*~ 4(;(Pͧ>z OT]M|`P7ݼʭ3t^cby "lDQ fWp> 2 1|+DDf :l,iI5f`jc o:XHV^DY7p.](fHECyG}X/@zݱ p XoS]kM(~k[ԲXuK L? pR@n{q6j(d$&T5h{sWYwT>}bC_Kh JelYޥLDFՏ`Tu\em ]IXv*XG7u3b@R/tWIo}KߨTUd5z蘈 =r>U/4/@|-r\QU|tͥIjd&$#Bc~XY1*7D |s!']a X3N?jK`K>E4 7Q@9> ǖYCVW @]NU̱b$!695QnG{IPnѪ Zq|x#J67wiz.o}\5y'e5MYxUτ 4l'V:i?⢁kKl`]`3~A[Wa0@V}4JWb@S'^{j7"%^.$ʲ8-i HwQI]mze4X|DLZ@%jvsil)ҊGLbP~HoP3>Ä'J07F,MJ/3+>9Rjϓ5Q7xM}GAGBE RJ&'SM\p:NiۨJHţo !{[0Lb+ySYy ;:;EI ZGB˪9 hr#Z|Q{zV2}K|ކD ЂOC'1k8ضKʈ:)^d:Wpabw iQڨiE~ʇGai|+kW ~/zìhw3+sb2(e/O IޘV:;"hPGOAy&ЀLẻ>zĻȆG/h 8ţ zEdv٪ 3qo)ൄ% ͕OqTq$YDQGE-E> ōZ!߂h/'fVtzn $HSNMgWW3x2s2耻34u3֧ͱJ[I.-(Er擯j &0kZ #(FYyyv?-!E:f6PyHNLkAXA!iC HJ)(ި>KK%=!=q?Eմ^h'#li"lɍ#z/jA~}2;Prfg*XA.8 ςAFb #p_֔]dt4W~m3Y_gホJ >bmB#4VwfG{+@Ľ8m1C9 Kc#<)f`FJ}FӪJc:tV~x<ޥKBb6.Dx 3y% ns>np !/hyD|*0̫=vzTj)&ꥲrɫaɅ'U/7Mu)ܨwh6ʕEC&&Q~i|pI'H[DzAȲps%hQu[msE "wEjvD/6{Q~/*:TGG0 ,?2Rh5Lg׷)p>^{+Ӗl@ +00swm@R`%sA  ]xɻs9Ϻ(d V?>j돂_0`aVeA**!.T:j~!(*{]@wesn+Ӛ&))ȹɴ\Ku좋Ze(;8 afAbDgk f>uogYz)]ykL~qxuhxcO9j˯6zDE[O t#d" S#kv[;Unc68^$Vhmi߷TI j b9F^{ƙgm :&n1%2!qt7Y/Pf|C-rey/Ҽ|SNfp$ Go`J\mǮh*k :Q^o|Tu~a:HΧt$7SaSbTR.Ӷ?oWM>TtHn1VqC5Gc %J;fE6zbJx"sNupG򤢧{h0p`@\$~/,' LQ2%8jT>[_XIX0L7 O[>S<)PE<{y[U]ѐҦĦUhY_1]  AӼ+ eij93u3-Ie%u`wHڪjb%Q]LbxZ//R Y(/(?ןqFn 8#]iBAN䖭Sa1 /CH^ YXwG9(QT>J}pf1h0\ʩk+%_Lpv|_tOgYwP ~yp[[m7 _GM|0BeR["_l6n߈O~MA{qf6443h^o If^Az[仧Pls hj@}OkDE (yP)2HKsԺ1׍ *e`KOW!D SG~)-'L6BW-xO1TSi>)xሿl<rЎnsTo^K>`%?:)٩Qhz> ڍ|\ |7YR |6ɩxM{^QY6W/'~&ۘ*8X,NMM>eiX)X59q$y<\ҎnDEihӹt hWixAچwLv:LPZՏ0DKhK00֊"| sJ _ p*? 3t=|Yyf0Ç)U2 ψUElm{7p?o_4M~0Vr{,%U#L k‡M!EZ>q )M_iT|,*G Bn>iׄeh |) Yh7:ϸ:Ќ_W/LWR쯅'| ER`{2:)ZCʙmvK #5q:aWr^+"[7!h{n{SB1[?(ER-dxrퟂc%9鿐M7Lk:|5¤]wy8xTZveh1[qmPؐͱPj׌L\$uolT$ U'>6`0fOf{>xV_vƤmߴ %ۭPD4=X@o!`/؁]!yuúj"Z z4Ç$'=|ُ{ЄT7=sjwhH7 YZyŒ m|paRn)_ \!tIm8*49^JHF^E;}Rԧ8JE(+6Yb v#߻|ڿ,Zy2h8[pxDy@hFܢq;(OzVR{%)eƟ7ՅK`oMĘ&3uL=z)Bͦ}WҀ1THa/ݿgZ.q3tawt6H. ߍ 0iw_f};;!n} g)]Fe߬gVugXqgy%RlDiv!A 0`ѮWa)q0*F·}EDBy_C :QqWJCRQud/mcWh 0kg4,%ֿ4 Щr;8=kKnXA p^XV]_ްU8a|kEG-u0\WΛbrN Z7=ztL?xRcD2m7gB9"SA\n(s(ҼDhHyG )4^ PS^ ۞ꩽ[%{GT_h7}C ,sE!h7Fi;S^a8gыsws3+<*WDc:yJL_ۣYQjOwJ{aD6\*pi+R?`|.$̨r}w7'j6sZq%$AḮ Zu$5"onXyOϐ q&_"hD)&WCHG[1Jӎ Bj3ac,ư du2FZm!/$in?w{l x[abSVj~t?WOv7'yK@;!3{?'q[_ ?@jHUiEJ~_L SaK5-s99D]`+3]]lqA2!:E-5_Y ~!@{lzA@p?%1ɉB6|>3(䑃V(R}Bbp<1 LK%f9GJ+%Im)|y:4f;WOr1Kf*C~j+ h&iz:1ޘ1:fy׏ `[G,{^N=d xu  . %`?j{4ٸu =D_]2*>~uZ$idLzheg2 Cqn`?'q\WMFܞ{Z9Qf 83T%dM;_9>=ȇ}ֵ;3Gg~2Ō\QvVz˫Lgsvͦ `Fa|%Bj0F=U!i(Vl^M f}M=g= gΞ؃  !\ #$穌+f{'ɄBU93ihxPAsJ' l Е#޵p 4gYkWt\bIo %GVf`p %:LGa;zg61 y7ob0By"^5(4v+ ~$/"Ǹn2 fg8~Ff W=6ĜbJrY/ %E.(c~Z %e,N/x%fK{Djno&Ԛ蟇BvS"7$d&1`)Kqb}p~Akq{rO3bʴ-Y0HQ"ӥZENkDĢ5zZY cא>j'k1^8|o+- F;˽C%ShI@ PzgMnܔ*H-lY@Ϲg#Y}]fC6uӝEڔ'mXxM Vd|Koٜ$;ec?Q7?[-Gp= "X]8Ba$.\RG%Ƚ1P MӀKFH9*Q~=lSq>H.ſن6?a&]B f 10K-P%z N7{0p3O3vw㝻}HL__!Ѻ}L:k[ӷA? 6DE1 u3<a!jS׌X^3` yK'xA3mD}#ǒ_/E/eASں*+as yGSDۉT;Lbz x !GYa,}%'[m!q~s hi˗&_Nոuc 1)`n4p\F$d5Hv0/̫k`8 5$.BQ"u=[ &G]: $wd[x0"a+b q ^z)9i&`0fpè*N&ΖcTNm@N |OZS!N/g RA^U& R7880Ug9<;9m<7 k˻JL]Y6Js4lw/׭pCVKM~2Qh&Xd3OBGB o"VcQUB[UV?͸> VN˩*Ey6["):+7ŮOj@p<GԙkI.K?>hle٫Y?/LCd"*T|Cs4:qQ{uҕ|;aI ם_3V㥇x t@-D) y8ؾ]f 4;! AOX JwG'<Ė& Eym$;h hNfboF62O!s= pd%~kI05JG:ϒfej91:7/hk=2mM&R9:;(s=uďg%џl*ӂ2b)eJR-e3$r*cx.}TQ/;:gnOUS+ŶrK`vN.83 x͕%DVqm }Al P8R43A5"g.BQdnt"^s9KBR[>J;#4̗RMtB-L܌E`99I=&R @n$u7sw!H7RƋ Ӥ g~{~΋S M) 9;/y_K+x"XPR`=5ٺCkt97m`v_AJP֥6_BꈊMK,~ɭxR8Eb1 vh`QS?P 0MUX4džFNYW7Q."a$T>ٟ$5CKê |P$Xg [1⚁Jo<:,U8[NkOurd^FĉE@bl)5\Xh4_HNdgUi6ub8*'@X#ͬN܊0py!_pՋ]f^4MO|,-\;3Kq 't?j O#+\^9UlkUtSDgJb-Sk< cW!0hS]P\*[]<!H©,#>r(X3P֤/ y>_Wz[61N9.!恊#_ s12aRUC=H֓leyfy ڷI`o *O;`F~A 'ҼQ[]Ȱz{5hHiY?i.OvlN42XOK=y!AHPG`5'S+ϣ]u>N=2|϶4ր2DM:\"ueH#"֞P+~]Αf<Q1> #|m^ 5QAˑvŨ.7AH`Vg!Ӽ8 v:}hOag~eVdD L /fgMZ(2jrKzc;Wa; JP5UUEmH_Gd3q-tL**aU'`S1F_ٱ 37충лd ~pⷥWaҬLʄJ~dU?ӭFL|cub }'d+{u-)ct!-x݆S*9M! ىb]8-1=j8OFtaAqW?f}ܢ>w{6R_ NeWgehN9vsg%+^S/IĻf1 ܱvt}s+m*=ezM`r2iHx_u%͊,HTݕG; Cdዢ{WB.8U%LszUC%ZBm%O*Ͻ]0>?P@AR#F-,ל^szu[ٝDR\ \L1'?,2BZx(Z!.q ]-q!<ߜW|R37Aw#\ %QC5ߚep9G]ჷiy 縀<} e9!rTyw?1.}䄑:K+z}R{>?Kf=bf_,RsIڸ7!|tU\7Ji;W^xbi**o1Ҳ\}jdb89i1yK7.yU}:ךōUb6|aq8>N?j^0qrDj;apl{AFXVvȩG9j;1n L!L v= z7;y$- Hɏ=' VPs/זN%B`0Ѥ7 zdzrp~S;1goǃyLu& 礳uJ##M) Fk%R u$8Ŗ{)WqM0z?-;.K5;M'7rNf #JSpRp]vdok!"NI6¹Qrs"/@AǁB%5BLo )1GT9W*[^sEgR*q~T m9x Zԁ95egQޟOX\)[25P0%i8'Q>,ωc2a6@gŃc*dS\?3y]RpQ;P'sK{;`^Um [X3I[['q/L埨 t3OϬuh. av͙zop J TNd򺐲6,lBpw!تC!Y54̣j,qvKɠECǡĜ,^ ƹ k=V HF Tm&~-6j !x\$ʔaPer3nolP;0#$5(ٯj3-PG0Ys(:b˶?M3h0ɯT7%̲h'`d#ހa~@嗿0vgx2^r Z6cE?*Q;5h=oPfleӶcºr\zO2--`𲡂˯CaLժʆsyH^(]M5wNh:wd 5+ķ=S4E׌1rqV2Sh܃Kvۼ3ū2:SZMugL}<.&! pVn &w+;QXۓz\ ROmU>$ olVZ"$4,]VKSE_Oٯ{O)r`gVd9dޒ֨SL16C ]9v'·|ܻu,xPpf;dps+Ig὏ZV6e~UHacy|]"y 7 YZ