perl-Want-0.29-lp151.2.2 >  A [a/=„\D^)nrY0fMMg;Hf{=sZ hl)'A93AggʆAn.T21!"KEdunerww^'8(LMwszWj;upM#"caѷU>9=:|:|UsشdōG-ll9H3#gJ`4`>p>?d   : - Gb              4 Xl(8 9 :f FG4 HX I| XY\ ] ^5bocdxe}flu vw x, yPz`ptzCperl-Want0.29lp151.2.2Generalisation of CThis module generalises the mechanism of the *wantarray* function, allowing a function to determine in some detail how its return value is going to be immediately used.[cloud125openSUSE Leap 15.1openSUSEGPL-1.0+ or Artistic-1.0https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Want/linuxx86_64GY@ UA$AmA큤$[V[[[V׹V?@[499626f58f37590028bcaf56987763d41f218c50910a74508ef4dc00df779d7c6542cf5264687b7e6d7c2ef240696c4c8608001e2f3f1dbd9dcebb97e5563598d6840e860a31dc4a088aba874aaff3b53545fd39b3441388af9d573306f7edbecbc2fcdb4e00e1f301072f80dc850c87e0ddb73bebb1e71dce276f221acc5a7a9a7a76dfb9151e91c4bfc1ba7ae38cb064305e267c1bd83868d3134580853564cdc051e3d2242a86ab69822cf22d52e30ec9e6b7c8322d4b1bb4c3b8c030f79drootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Want-0.29-lp151.2.2.src.rpmperl(Want)perl-Wantperl-Want(x86-64)@@@    libc.so.6()(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.4)(64bit)perl(:MODULE_COMPAT_5.26.1)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1V޾U@U-@S˯@S 4@O N%qL8JjJF coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@novell.comcoolo@novell.comchris@computersalat.dechris@computersalat.de- updated to 0.29 see /usr/share/doc/packages/perl-Want/Changes 0.27 Thu 25 Feb 2016 21:26:04 GMT - perl 5.23.8 breaks the hack we were using to implement double_return. This patch from David Mitchell fixes it. See https://rt.cpan.org/Ticket/Display.html?id=112226 David wrote: > Running with a debugging perl-5.23.8 will show assertion failures in the Want test suite. It's because PL_comppad/PL_curpad save/restore is now done by the context stack / cx_popsub() rather than as previously on the savestack / LEAVE. > This stops the double_return() 'convert CXt_SUB to CXt_NULL' hack from working properly, as PL_comppad is no longer restored when transitioning from the inner to outer sub. The attached patch substitutes one evil hack for another: it keeps the CXt_SUB context stack entry, but sets its retop field to point to the return op again (rather than its caller) so that the return op gets called twice (with a bit of markstack hackery to ensure there are two marks for the two returns to pop). > rreturn and lnoreturn are also a bit under-tested. In particular, there are no tests for rreturn in list context. I added such a test, but more need adding. > I can see this hack breaking again in the future. Perhaps in the long term > rreturn() and lnoreturn() should be implemented using custom ops??? > Dave M. 0.28 Thu 25 Feb 2016 22:02:42 GMT - Fix test failure in 5.14 - Fix test failure in 5.23.9 (using a patch from Slaven Rezic) http://cpan.cpantesters.org/authors/id/S/SR/SREZIC/patches/Want-0.26-RT112226.patch 0.29 Fri 26 Feb 2016 04:42:19 GMT - Restore compatibility with certain older perl versions (5.10 and 5.12) It seems that “ATTRS: lvalue” doesn’t work with older perls, but that you can forward-declare the method in Perl code with the :lvalue attribute with the same effect. This version of Want is still broken with perl 5.8, for reasons I haven’t investigated.- updated to 0.26 see /usr/share/doc/packages/perl-Want/Changes 0.26 Tue 28 Apr 2015 12:31:17 BST - There is a new experimental option in bleadperl under which one ought not to use the op_sibling field directly. Quoting from perlguts.pod: “ Starting in version 5.21.2, perls built with the experimental define C<-DPERL_OP_PARENT> add an extra boolean flag for each op, C. When not set, this indicates that this is the last op in an C chain. This frees up the C field on the last sibling to point back to the parent op. Under this build, that field is also renamed C to reflect its joint role. The macro C wraps this special behaviour, and always returns NULL on the last sibling. With this build the C function can be used to find the parent of any op. Thus for forward compatibility, you should always use the C macro rather than accessing C directly. ” Thanks to Reini Urban for the patch.- updated to 0.25 see /usr/share/doc/packages/perl-Want/Changes 0.24 Tue 2 Dec 2014 10:22:39 GMT - Accommodate another bleadperl change. Patch provided by Father Chrysostomos at https://rt.cpan.org/Public/Bug/Display.html?id=100626 0.25 Wed 10 Dec 2014 19:31:03 GMT - Add support for the new OP_MULTIDEREF Perl has a new op, added as a performance optimisation in fedf30e1c349130b23648c022f5f3cb4ad7928f3, to represent a sequence of array/hash dereferences. This patch adds support for the new op.- updated to 0.23 - Accommodate a bleadperl change to the optree, made in 7d3c8a6837b55fff0e6294ebf8c94a1601367c76. This is bug #94086 for Want, and bug #121342 for perl5.- updated to 0.22 - Prevent return from being optimised away by newer (>= 5.19.7) Perls. This is a patch supplied by @wolfsage: see https://github.com/robinhouston/Want/pull/1- updated to 0.21 - Change tests to avoid the new warning 'Useless assignment to a temporary' added in 5.15. - Remove a test that was testing the behaviour of perl, rather than of this module, and was testing an aspect of perl’s behaviour that has changed (bf8fb5ebd) in in such a way that the test was failing with bleadperl. - Avoid leaking the RHS of an lnoreturn lvalue sub, thanks to Father Chrysostomos https://rt.cpan.org/Public/Bug/Display.html?id=72083- regenerate with cpanspec- switch to perl_requires macro- spec mods * removed ^---------- * removed ^#---------- initial pkg 0.18cloud125 1539963345 0.290.29-lp151.2.20.29-lp151.2.2x86_64-linux-thread-multiWant.pmWantWant.soperl-WantChangesREADMETODOWant.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto/Want//usr/share/doc/packages//usr/share/doc/packages/perl-Want//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/ba16ff417532d389277b530a0750e233-perl-Wantcpioxz5x86_64-suse-linuxdirectoryPerl5 module source textELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=96f0d20049456f25988e29f51baf8c2f73673d02, strippedAlgol 68 source, UTF-8 Unicode text, with very long linesASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PRRR&*Lo|ǂutf-8eae052e1b7a3fe53f14dfaec47abd2cf78c85bd94dab863aae69ee36a6d6f908? 7zXZ !t/a] crt:bLL D|b`>Y2gUwA-, GI=D"p|ʾ:Mf9dQ]Nt`Q$r]}HίZX =LTD:Y8AWic/3 ۈ~L6@_jsW &ٮ倴* ''`aN$aKTpD~@Q(3rOe5~; tB>ǫvy#`rs2qlDy=`\Ɇ*A({y6(LK]r8_g,ir8&~Ew>~lvlkɱyaM!JD#mݲ>l'xd%L(+nM#(}"g g= JgWE~خ;NG{xfjwMbK*ĭT"rKRGpuoі:4jӋUGPH*2A[ZvqNn Wg'Lۼcidv N&p\z9J*Sk =,s}J>ΒGE0񲌙)HOrw?|!3UJSD-xZ\?WM`QgfwQxr}}nm(ny+oO;Nz$d%1z xek$-X8{lfm\5؈,>(2U !f DrCL1%qDЈ @y8䑉zݖ".]^.@^β蒓MQ>}\ž;3jS Q ;aK 1vE^Ag7{-/<E˟horYoQ̷GuHS+C%-/| RkK$|z#I1H){K7(ӱNV! Ȱ) Ur($|qYw=HQPPAg NwUa =ve5&v<Ұ3灬sĹ{+x;Nab|P);}aPD/lQ랂\e(LUJqn=q jp&儈 - )ω8<=͹\~к5Qp_@7o\^r_ uвIj87ӧavIv c{t1tjYNHx@r\.eM&ZZ5Kd8͗J[ЦT M}8RP '  bL'S /1Q~q/է*kT~0";2<# Z,lnYNY&"qc~2l'max~ kBBQV3>` E*܎UCQyAȁ6601lx{kcZ5 u)ٜxa:^ xM ri Z9 hnQG'#Ae3g_+եv_g2\GJ ޵)p꿌q n i!u7lUѪ]T˫! m3|W )[t՛ȉ$Sv4'IR,(qT*r# ;00<+ U:nO=Q!㟾j{DfxWXԀkQ#?B2sUTp&*7qD)MWVa1(ZL`ȉ>0\864Zu6EM׵1<`2&V#(؋ھ ,Fl':3Pz.? ̋OYWf0%%kO]DykoD|&{ tF>ŢZ4Y1FzV!4 aqf;a7knCf%~F`!l]56i h.#XB㧋g2Gj6ĭv'.(y]i]xacӪ X/ Lͦ3MI 5Z}Tc?%'c{$1g$sveӚT1'4p{2']\>+ljU,ʲ"kkN1pw#K3,H|T XwV#)cV# e+S@3Ј}cA4f.q 8psӑA9GivFVW qx"t=۟|Y@d~G4SuUHW7Y&5 [^e C7אuAϝcz >}h)6V-$4gKȈ5x'45[;ҡ2;zG vaUyV\mDgtӟ2>B08CoŊ([n!@6 `[v=ҝ&zT+*˕qH@4wǠJhDZ&v|MFa5.<-? rR/N)nt%ೣ"'3) 9,#&]@16F tAF{`OPQ'&;g [&ǘ,;@&AJ\x_H0yGkC~&KrmsDO<"ri5/(& <-H7a?}hmK$~݅^n5 v)985d.u2S lt Rg\IȜ;ʎO6 j%N/?" GY.!hsoT` "ekxq# "uG*H4E\۳r=BQ,윈NU,; )PǑFKu0{ܕRo$uya!wt5I[{.O :BkQY7]19IlI3iӣq%=_"Da6+v X9oM9˕}sG&mRL7}->r+Y 8bWpW^~yy:̵5İts[tml/8 /̲< ݐ.x~|+wtu\=Q^P:Oޞ 1}`+S,lR$yqa NY+`ܼD*e|FKQy,w{;U()]E8j+_h5VkQhl>Ef%j0RVm]s[|;ʧwg(| j!3x;"Ez[-\;x+ĝ. ڶEB&-%M4$֩T7Y}Fag̾4(Em {BtYħW/Lg˵q !DoR:9 WbB:,DlCz׬{ dGVnt}z,+JNʰrk@>WK`k5s4_' *4`r1Xwۯoܝ(u(CkEĨFp|/Yb?puO%2 GV+ B·ʘfB> ? ŃKBl%ǦU@bhߏ$W u@mlSݼ?`թ@ڰj M=|:L{a|f;THrY=IO=#Lv(qV0z?3mcP/ E6n-3X(+G?{O]Fg?,F6w%̸Oj{ǩ:`/xxƬ,y\E5z&ɋgDcJlU~u-X b"Uw:mw C+叩"!LcբkvM>aD/|NmsvWo: ݑ[χ8@58V!mjc "/.R?eXcŽNW[oJTث:rX\eJS25oYoC~%MPc3~/tA{GbB#A)XSZWoYI=K|/),*gM-3{sAFT̡zQp)a+n V_6jڜHֆ gZ~fΡ{AI8'F ϼNVuϪ&4ѸCY:w$ב_3 {BXrgT\khڭpi+ZxC{tvjKH:L Hn9]׋pԆ2}R>L6ޞ2#kX#U%^ނ΢6AK[vHP?E/?G/"}aDC?\ޤA[e2 \yh?#&$ 0K`qqv͢GAGU|e#K#]Z3n)A =g;'֏Yk'J$ۛVa+a&e}wZ]TZYl'Y^hroY(7>u5KadS!Td $;JnO㊋!|7U.,PCVfMT08؀(iqNNѽǂ?4hǟ<*wT}B +x!*_)vwꂯWĩ7x1@Z a=٬"H>3Ã/͐Q}A P3'm&)< ;xVQo&[t{Ż-58g /R_9wnm&D-`J_'Hlj]'yz>Z @!ַnƍcߞn&3i8,L& [JWouw[B kut}TEG-FcO1{JeXSCĩ+f}dZ[|1A<ɁDAp6 }emmWAVR!}^]({7K>* k#niDe]Rt5JD Y7rXeW;p婿W !.Hjϱ ';7 aNB6]=(:R}h}4l7sC25&1c }4삘ƠgyaB]j#{WiE~5qEiVasJ") dH{qs!zumΒСTD2y Vj',^ZG_`sǸW_+ 7y=|E}J@"%E 3 :lB![XuU|IEF6$s3{7]ԩȘdj"~ t}Y)3P. 9Ƿ d 󎋣!˂'?IrGz2F#s # œ9xd% 1L57v\xtp"[%L۠srs3R ?r&NMG$}4ԯ۽2-{5@J;%8{dג,4cs$bjd>}A!>u&-xh%/6ICr?wc}l2ުs CX`Vޡk#B<7C҇S Fho8V}wF}.Zvp{\ t9k$iփfO/F*c rcN̋s# nw$'ѿüWsHD㲰|CmU+wmboZYQiϜLvbɌaTy&[J@ C6+8.wؤCҎ"i MJ # FnߠGDΟ@z;u#? xb5g/>:4O:F!!4ә?>84jK[Oo,L*h2|XʮA,!94,7bn12Oǒ0P>Dϐ |1W'l*FC$ 7YI-1pVz{㋨Y9\ uHX񙺷J;/{8XdiǪ֋ރn|YH]Z)Z F?S({Yrڳb6&̮Y- A!ix6ѳR2k/ &2 /`ekR00A.jiU3q< t25LSN 45)m4Gw&+p7ϓS|r]}*7.T({&x9+@j-7o5L!QLٌ^]ާTjʂܤXx$6l$oѬuۆг& ΋D4cD+۰z["ϑKrwN%N!&VWҟ5JgU:W) Z̭qk @N/SQVcq-u -=kJ?:g[ jpy\Yd~-VB;lny"jUCv|O9XXv1'7 +̥)H V*Y(Wad1A!7XbU/ȊuaOm:X# _@r(Ԅ[߇#ߛ=;S-8FpAEtz?h%eQP؁4eD/0'+E?g Pe0cD2b@ds\o/K% rV"~ "=3}SZZtb  Dl+1g謝dbKpcGUZtx¦rXm! L'/@soa5טb~>.?6gG%o%b36BxCtZ\f(e?d:c&- ,=ۢԔ)( 6y93VFqZ`o 0i2Jٹ~Q jOqlcTmo~@k\ok݈(ґbۏINDg'-J A럘][XsrP;c W :& 5 9<4_lOӨ&?QW  |) [۸[ 'f A6-.$X+izRSSV\.呺Xi^;iizqStt%mkXluZ.zfx*:X6QܚyQAkcfk-Kg GFD ILü% "%Hz6qVS}Hi_NKԄ8p!L$1]mxܾ堀QºuKf9%qAkQVorxn z dnUqh7ҬOCRWcԿ%|3F2C%bOsBIX:7!muw(pA`=_1sԔXTَ)iu)8v.o ʕySfwLNQko! 9.E5k ^M$9\RnN30PnYdF6\AٵACOszaQcVM۶׭M/wեl(+n5%Rs?. l&)rRk~'/^F>߻xH~h8'uMkG$ڞhWCpK#(Չ0K3ag~.Ӷz#kR=ڡ+ FpM-0<3j)`z"‰ɎQQn[B7#3xuAKK,[ z8d~xL3B -XMF\-L^E4{dK5(K0\υ2U1,u vEY!6>"*dxLՇHKeJ:-Wj'ks[ΐξ 8 E8Юd/j 4k#J@=ݐ3X ,_V0?{t)>uWY&j ;eI=W'TdecyoE ~Pˏ/!Ci:-Ftݾ*غbl%xM(PR܈!ugQ<"}` ft @\=*o H`dﵯ7nCsHJEO@la!-'#kXaO%Ej~vy.Y/FM /6QH Nǐ7ҳE.r\ި)U(?(VS-PE?J̢9>/Yq4 #u ^r1!M=;c|.XyX|`n8%7l>z*U5!2&IЬ&?0@*hT*nYA&LJgC$$ڈL[  10Py92Z+;yzG\V\WLK$@Ae35cidݑ=S>)-Xž35&Mt*Ʊ|1U?@gEuoY!KCRiM7|\"1:M#ij:awk:{|"I< v~&`-ש/V96f4\iCwOe唣 ex;hD 0Ke%` .hNsP;>reurR9~_$uX^#hE͉@ã: ̉_&K$Pbq~XVD͵mahf}Qalҟ;@Q7e f EryX\uYv5V%zʇљ=!6M 4m-.yl8ʩa(\y]!=%Mgz pw/wkMS6'u P^3G9'YlID# S]9j˽WҺxяE4Ȑ # RG/GB`fbMBws`uPv%51j;̱ef<EV4n-8Ď| V71}ԇ>O6%Y8 49i+OdiLR%Lg)dsmuk weM0_:ߏdԳ/ ^'[3_6c,l < 6 %'YܥHc^E-@|;,I-}oQtn'է}Dʈ?~}q dބ"ݎ3/YGnnRf[[Vj=쉦6 cbIXJ6N=kt':͓3`Gֽ-A2m{6>ԢG_y1ݮan5MTS4҇pB3'ca6w_u|^wnSlMcw#H E0̭~˿(Z^BQ):CTt 21˹9JEP&'E5jآ}}A87 wճ aLcEj'MM\z2h?nr/x˿A Mcg3G)f%ߕ7^:tF@|ߝqrۄ>1/O2(B<Q#\J (LN2 ݗMR6.QZz,wC->i: ho$}XOGZ_LQd8tL Att7Z5`pGkZk{e!UsX)%V<dJ"/xVh??PK֒"A5| S|pirZ0VaAA˸-)S2]œ4HH@ҜS#^ҘQ+ %p2q\kdU[$-2 BL#E~<PܢQ$ޡnxlwqbYZӡnHb9HѽR,EBoJBvh @^m\bn[kz2j"n_jv&gB0DV R~|:5ogq`MC#H=kr&)u% 0 \G!1HfoNIp$l.|Y 1k6\|ʤ|U63_ׄ֗uş/}=o`~Se\H͇V/qČ5f *jT:L=t YA.LDx8BڎFU; ^ T/ȧX2ƾ5xwdvc?̯dtr)` H]*7yG0i?+2}L`$б7GBsC4B%-E4UZW5Zn 1IY,ܾE.-hs3hH5|'t;-yW"2O [ę/M3 F˒,ahfx3F&ψy.K]sc Msh$ߟ~2(b q)C~)ϺtsGX+GA+/'j˰Pz]=ٱI /yd"Q@9+r..KX*fδ&͖1MpJ"|Z݊Z/POXY2ѽIvs*aoiD_Z%3h^W/B AJe$B 0tIy],6YFup`pН+;Āg)$OK)is=anKXy; z3YWH页Mk^};ͨ݁w&`"Kt`:w(c_} l=s޷_6״ftwk4mu2I_ mT*>~ /E'([<@H_9d WF zl` 8}형A5=YUC {eM(" ٱ""if|=[MICAzT ;\[6suE&94oIEMoz+YxO@T9{ uMJzN0cz%^49TV|]5<.E1p"eFHeFU &+gdk[/Azvfϥ*r;4K^8M ь1 ,l9jͱ"ީn!x/ W:u2"J2`q.t`cs'VGf܄UoRŷ/DG>9%\[4,muؠFmQ8&B\hzvjìYUrZfK~?)=Da״#*OIUCeD&a4/(@ qAw D)Fa%k%{bJ8TUk!0ownKc8n?^[c=I%9pGّI{=?JQC Z>wHbpk#UK)%yWs XbwϟF)" !PC~m3{cShdE $'劸̶SxM!rҗnɚ{5BIp6q59:H * я<\2ָ quJW=Y7IGH0F5.GJ>yfh" $'oZ ǼgO~qWTnO/-M\pQ0!S^v HhnҘ7 ﳠŕ 2ZS iSʣ?_)pуR\dkBBFo$$RO$.7b>bnbDdDhB_@xdARے$s4]snqz.P:#Ŀn|0P]oMp)@-8|kT%T5i $hr$Zl|s *kX0ManpؽlG!#gzdXR"e=DxsIvpq"4!A"mˡ@ng ; 7݈7Y Ɣi|HJL}t0Dӱnt?}gF< 4-;*H \2^O5Ao<(+ )K,:+`qטtyCػ̝$oaW Q4h;#ao:D &vũVm"P 5ounqT HV1o>at21 l[uX~1F8 K{3aݳQSy\Q9OelvgF+@6! h)ୣ}sl܊0i87z&'XZ[/'k SbyGG_t}xmgqߟuh_#~$qzRބZ|"U6+hê`)L^K~[e/JfGkwLS*cOh98d0L$N1`]eO y,b︊*@AHާ<_X_Ǟ^f Ç%,h?$ $QwUU\luAF*=]ĴSdVmuF'Fwۜ84% @8 `y.I*maq_uӄO LG2̾q AnWӦ<_^gN{nQ6BW5nkTy!&/pHCp6XWY@z:#à4$`[mTY3v!#$A;cD =ٜ֫r3e̩Ex5Z@yyUAs3IrJּ*ӁJJ/pe3lb7PP'cN{g\}wPTy^Eв*d&r 74t^ IϺc@wt}(o;yy 0M*-5:3k:YcuKh;q#UxTb]gn^~.R G5=H\ɡwl(;l;;Cw8%L)So=IP9"ܻSo{s"*a= ?0&"T$S$d<ӌ&L >6{ "N)4EE3df3e2;k0|q ^Bzcm_G y`dt9WRF$gmw..B{d/xߗ%v㊣vk3Pf[lYQS: %o9Ix'J٬4Q?` `f(o6SgV2ab=ɩdhDI[Reo-:T3{Dv;=>.2[4f6TQr[P|_5]ClZ'Q,"l6@xw`Gb0 qFԂp0TXID]B+m?B[馁$pwZr%<{`.Q9cFJ!z 5,3|EawM#ihQqmϐǓ{w` Ttŗ ۜ⯩fFhNQ-s)Zp-;7G& |{i&hY9lwT@\On/3V.,\.pyJ[,,m n:ld!,;KSdESI7?Xm7+L֏PIzsDnQXљhKwT_pa[T~&ٗ~H[+0 ?:}M7sDyxF5+?y=5(EI/xu`\P'uEz8s5Qk11E?["փDʗ=ts7`l׀VJ-Qbv> 2WR@ ,Umcj}el9ۇg܄[PSRb =\DTRL )t‹H@bz Ddp Nj?.,^bIn'&ߧxG.ia W;qpX <NܝѤ>ІB %Hv"mUb·?.ts}.3Q~wL5#<%{9{]1mecK=G^b(h;t'_ ${ dQ~wkzXX CH+h隈vdc v26>vM56&TcCd cˋ  ˉ+Wy:$cn tLbҤat̢X@\f5U16e ԄǴf;fah8֡}20IU|LoYhaܫ"d(( AKNEi&8L4qEpT{T[PKO.?7T\ ^jw:EBBfL[ ˻oPoKYHlκҐd,rqvf{ i(/r;$1!wCsq y9/pJbЄo|;"hӦc!Q2ܢ\#[URz,Ti|e `?C<h @y61_di /K.[`uZK ̢4$ l`Qmq9KU.ߢHװ=kG29lU3IB{QQ *'Ȓf&UՇ( yVՐPh~s]}Q%tZ'`hܳ0Dh ^RPb#\yި*vRCIƪ.Pvu"3xP?^:y1>F $XsEyI6~\Ff}^P_B}sYD5tut}kYay!@EA  .%[M.8 2 ,:) +Sn4TVu"4aewqG;#qzHݲKNBP@(HStt~R-R<΢ : \k}Z0=QOYӍ(_r4%n# i](3b:?ή'#>9(@!s9ܓп"O|'S KnR#Xtg%j!dKz|eJEVeL ];# UvVw╥H5VCGUZPH;+[:77ۥu``5 is" aݷnf!j=Dכw]@:W/_QV}F뺘r flp`OG W->EE#2AJ!"l;Eܳlpf?}b\r7ZD%gp?Bl;:qeINdp{WUwc ][7Z~Q;q19~oaDn a?۸S8#X8̺ة]#u7k {UM`mEzYQ_^>F^Mc|-[2w<B Z \,l[ jc/Lt덝S5NQg QIQAaxABf/WV"l&̿ e]C9uzc:T3aHH\|)؍4 ̾،ˇk'x풤 F1fC\,=oQ'wǢ \@\8h2;vj=~`GS>4(LW܉TDH-}fv)GE X'ưQ{s`^ɾ~^K JEC vԾ:ߺ2 :Es!${Z-;`dX[}0-UjH)b9Css02E|Xޤcb]LEʬήUvqWn,kEcd(ľ[[\;4F`|:x]w:HhTlU>]pE bƇo2Vٙ5ywؠg$=P R()마.M>Mick}=;yk/N {SG8[4Zwc:XzٜOPW()g"V,AƌQgļol'蹈'FϙfM@ɦomM$~Twr%l|KD6ZQ׷UAY.G@ms"wwڷ:K7[?W NT>q7>-K)hc/ _<#v@mrt#F #~浖Kg0sd5 5S Yp#thj)!rT[a~<&/QΔ &`/ ),!(@Y>a׎OT*W7;2ygoj:!r8xoJ未 w~ CoYD*Z3|P cH5 3(ꧺlߙI͍ TDwdyߩϷ-lK"a!y/)im1.IapOEGq\"}0cb=~;7E.җ|8f8pM?('yA^DKL@oK72S@+&\MsEV#ư ۡ[v8h,[[~Fa }s <]3$g/a9G2"m,s|p޷?([ yO^_=t׽mJJ d((y(ii0)÷΅~*P'6ʏr3rO  3Iθ^VĥZTB&ĵF6AV_lH* Ѝa9SBi 93 ɏ:(n3>o9FbG?gG9ϧgU_oG1r3!(EBW>;EZv}jtB*6:X5X0Cf~CLpK]ef(VbxZLTUzpy2g[7܃'ꗅm|yv!N2hQp1*naB( `ȼ jc±2El@-U^% 4K Y,5.Fx q_3]樬'mvuQ~= 2`xIDk K5>`Po#,t$|y㱑{ZB QL4HWaژ9P)HZk}az߯7B F2UB{j O,z~HLK&d#eDuӞ/YVAv P:>MqiO(4e~SDQNVvA%7cܢ Hj{ayZ oP0f(Sa|"xh%Y}izW!Wpm$hR )ԍ?HXg88 =ǁO wip8{< ;g-:?`c\ .($c|vuDX^Y^LP>[ 8<|kwd⬕ %Oۧ,*k0R -&dĚׁl[x 'ietA'f&V.Mb#bu9>2iA7mܛxUs jU Ef2o'zWeO9nń3%*x) rmͬ23?ϒ{0 ̕m3\êg 40:e}W WqN{N\8@\vSh̃C+V]n bYYq^% YZ