perl-Want-0.29-bp155.2.11 >  A ddI%z `P7pVpJ)脱1r=I~#U5gkz5xOdxU )ӻt Aځ 3)_ϙ'(<81 ۖJ=ed8ߊ7<Lm~]I!& T-"-`Mq)&&q-u ^HLuۂje}*ա3f0a509ec3d4e0ae5d11481c9836a2ea34eaf3613785067365a5c128a22e55b0104c2197bb7a09d3c391ea2b630e2d636f888a7d4ddI%z <4SńuN)'T)xumC dt( 8EJϷ(_7sYotޟGf Kt L۾IN2q z0*դvu U<#х!Ib'嘺Q+1'N Ѥ]sr[9@qk_MgBTobabn ,Y?%Gdq6S/R) ̕CLrF M*q/žr(P4aR'gKA`m[]ZV œ"ÖPo+K?R* (D:ib$i뉟m;tUU9ŸQM} seWo!O67n#4uFx=Kb9ᅴ dɧ oduQ^|^ ݵM_yWk4ۿc fZ*ie 2tJ {P@B1>p>?d   ;"; Up              @ dW(v8 9 :R F G$ HH Il XxY\ ] ^*bgcd{eflu vw$ xH ylzxCperl-Want0.29bp155.2.11Generalisation 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.ddobs-power9-12SUSE Linux Enterprise 15 SP5openSUSEGPL-1.0+ or Artistic-1.0https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Want/linuxppc64leGP UA$AmA큤$ddVddddddV׹V?@dd 499626f58f37590028bcaf56987763d41f218c50910a74508ef4dc00df779d7c27ac71c7c4981030a15e77cd1ec6ae2e5733287be558a9394d70712ec88756fcd6840e860a31dc4a088aba874aaff3b53545fd39b3441388af9d573306f7edbecbc2fcdb4e00e1f301072f80dc850c87e0ddb73bebb1e71dce276f221acc5a7a9a7a76dfb9151e91c4bfc1ba7ae38cb064305e267c1bd83868d3134580853564cdc051e3d2242a86ab69822cf22d52e30ec9e6b7c8322d4b1bb4c3b8c030f79drootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Want-0.29-bp155.2.11.src.rpmperl(Want)perl-Wantperl-Want(ppc-64)@@    libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(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.3V޾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.18obs-power9-12 1684333071 0.290.29-bp155.2.110.29-bp155.2.11ppc64le-linux-thread-multiWant.pmWantWant.soperl-WantChangesREADMETODOWant.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi//usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/auto//usr/lib/perl5/vendor_perl/5.26.1/ppc64le-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:Backports:SLE-15-SP5/standard/ba16ff417532d389277b530a0750e233-perl-Wantcpioxz5ppc64le-suse-linuxdirectoryPerl5 module source textELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=87c0d14c453c94a094d89074aae1fd8490d07d7c, strippedAlgol 68 source, UTF-8 Unicode text, with very long linesASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PRRBk jhWautf-8561ead333dd8b2a70b10d3c63a2b203ba955137b4ad5be5e96e04a1d4b66b6bc? 7zXZ !t/cr] crt:bLL {Zuv ON|TTl>5 \qj;%0cg-Ȫd?{ 6ܝ:F 7| !rdg*\'ChW; ECcEcO2l&~-5}a߷*:zNMzj /2hqjefVwr֩ \Ei܃f`^Rakģ5|ת@7Uլd k12MˆW)IoBmj"b"Ŝx$^}M2%Nz#sL[!EH}/W$&4K-ˢcC~\q13Lw7">5^s#X|-LpY]~,WwkO`O޳hKÈVLQ뛜ӼV7 VJhq {xCȕ"XJ5ɮ[°iFS{k}YW<)2V@T8[Ԋ53m[l)Kjt F.3Bĵ՞7Tv:5=ں=lB-jHp Sv.4n16'Sw+7@Y,Q\]R4U)IVȑ@ ß[<̎wmJ#wq%WEF gk}jotZRzoO7.=>fƦ\ }kH;{Ǡ1 _k,9rkcYn0iC88ߏ#ɣwʒNP:&Vo춿w»cj1_-2g} \OZ "'GX!{quiWnPxO mJ_h ~#UՌAB+'B#"Pؾhkl,,ŕ-#!9pG9fS 1LQPLo;v1C)ПF`[+D 4oyk XkZ5cMsd`h51B?2JnKĮ"T]#5P僱);*?O=XBé7L͜}xy$ܜ4D^2NQ1Y0r@yso!q"A-E̬Rdyj_9 >3:jO!*7zt 4.+Ji[gulDW [IHm&pX;pGQn)mym`ٷ@bDeQPem? !V[/PBǵ`->90W{aSEq!k²\1xl-#7QJ/Df"Xo@ ߔC|!zG37{ "J)G|iWXKέuz$ȣ,O;*w%1wç0P3PKji(FImiǿƩR|iMoAa ~c֪٩-f3,|id90AW-$dݩo%{8~*1 #ḵAtQȪh:6BR8X]+TRrdBUBÃl )̰]hj*~Ob֯.p&:lXg״0DM@C &d[\tf\!s7 tkwSyY8''2V`vNcߕ(X4h7FCKKCCg$ HHa) ~S_ryXcJ0$ {ʢ8 qFOlA>E4^mˍO1^_RS6X&& Ro{rJLJ:0◚)gv,Jލ=|@#]@PLgD 8|nM+Bm8asU#|xW*{v92cD[  B53[/QT=irwLD+˟j?2ܐuw5\/sP\騛g0h97mby N@]XR?ozt }&n%a ?;nPH{mBNC#AJ3YXփAv D D%׼:bhH9i7:d'e`Ač@uZHgG̅Ix_K-p}2X+`bo{ <<2.M5 D7S?1M#pPҴw@`@cQ5y zχHx JV}ORqU>%}w/8taVUj쵴:Qx^+]ĩi«@Q-J'3cVeF[wOǐ٩o)@qY"a ^<`NFWh\ lFOl =/k^sׂ Vp $䃋XhzŨIb8UzڗV2(x IU,)ϨTK0T1=k2*\ 豒#MߞhR*m Y66]$qŠOXĪҳblIe6h=?޵(ae\ sAM`LF3{@z|$)L]7 jw) Kx$S`İ>Yߝ[*4+>4-14d9ff::ǁME@tK` G_"ԑ`mA?ȥt:7'.Y*zގ9Z%.'c7bRJ`PP;2ҳt˫^hj(`g Bfַ% _T'8tt&3:{{ߙ5cFGܩmoo 4ٓ8xÝ;IULF~zb[@mʗS*}%23Gԃ[ig=B2B3Dߖ ye,ozCq- C-Խ3Xw$ܣ$T4 eT1`XOO^UaIdc onP|.Ș:a 4FN⣩~`Y<x.sk5 WsQzxSkJY/+ oåemc7$UzǼ,dmFZL{dL7b* --,zzU8vtUgg98i[l[}l:~ksrN SOMYv+ghc< ړť$\/qGUgCv&=Xb7>D;~4gC}\gV[[ALy%NF;{㘝'Q.}\)BV!꺀g[X)9KUvK+o_᮸<#`={@9YSx] F_6d?2N_ν h^{BV~2u"2 FTK}\P|:$H:Ͷa|*j*cK]E!J&n+|>vjZ_}$( Iue>{ad8 CabVhV0grpQt|o2,{Zk&tSXX ٝ\w~Zڵ@G9 ffIn|I)x Rh77D 5XەIh7D6k\ۦHWb=M'tj5tG'nUsJ;7WHEOgn Xz r Ba\-;lQ5"M\ q07I1-I߬|Zi뭫kQ<|yi'-͆[ܡ+ef]s]jH@-Eihja"h=N3`*YZrLyʖSuLk|;6l^UH6A/)S UߵqJp g._ ҍ }=ﵘ 믍D3$*9/"c|Ci[cCWT|j&} CZv֊_!~Fԍ=Q#Y(1Zh1euzH"ܱ N1c%G긋0:K{eh: Gbٸ8X 1 $5m\l;XشM O3٪K  SOIHAz;^~tb$BBa0Q.jX9Pm3J; kn٨]O1+{~%h3LGmR%L ?o,9N +:%X]`}%#UᎬ?1EYtEt<7pIEǟJcTyvz2 hjJW 7, (ŤC5qЏ6'VҁZgHiBnxb>'B(.؝ =kz˶ڠY u!ھ⛾m74g O#g;9 ֪$*&(61 }سEBZۥv@ =rne0P8YttP`s5:ei[(lI(/0,tpׄŞQNi+ʦdiJHC6od7O*Zb'l QdGq*#4"LkDRB&su8t,4T>"iהjo ;b@g&.)8Yr'0f_ ?PpJK\7RR[ (+hm( ` '51Ub(EJ,%sTC>9 <2Sa֍`'e` Ԭˆ9:;(TFq(ĭ"aBƪEVżVQ[U,L{t18_d~< $ճ#*/HfAs)'<"/L3p)gSW?$cUl(l|fXj0M[%폼EH*߲x Ob~ ޞc//[{0fBJI|Vy :^)MɨeK~Jò 'сZeuKwޠ)=@*Y>#{ll'ԥG6|]_1JT2];ZgKM.#SqȄgvʟ Aնf2Z4A/Jkm;1-&t ړÜaA2G\ Z J _g)~PJ*P>@:_U_$ tb* ^%pC$!֘(Xn@b۴1E.\E.ltFhꟚN1$bK!Eq"iO BDu69gb6BAC !窫@~/^xwQMO=o?lfO'Ixi r;kbΣ? "9NeM;nz-0Wu_!gxY3;2oB.3cs^]F<#oq:{B)7;x0\.&Z?7ZVM`eʨQ [µX`{a+|i%Z7[j \Y2ʃh1^' s/&=7Uͩ ~nw:J=Sӡ93w7lȂ(YpѰjFP4j);xI"]QQv򝁖5s4(D' Cj5@!>/Mbp^niQlHu_1; %b-vZSkZr+L9}aft쉙OuBƚ8.X3š0/T%^ $'Չ9Flq3Arn ՑkΥxO U͋W,zd5–nN ՘#Ǧ,nVDX c66zrPUB)/^DP?DJGD(};X_|f(&z?÷^2"@q=B7 wPL}` i 3lm~nRĆUۻ:h rF\X#H 椶7s@=D+P]',06)x \/*6]W*O5] ^P߄uj+rKwNΫ#P|!BlcI&08b .kvy(b'ZZ3jJ9(ѻMڟB\ D$4n~1L>g$> AxF<ڱ A~QZ+\ƻH]Es+a S ks%ޓ̺K[y)֤h긬ʬdҚrA9{\1kRz A Ÿe}JD+i)IW`w{717Dvu9(KŌY.C|wLws:Z(cYWH$/n6o%]ܰrn{h4 r_?I^~Î)>gnq h+۔fwR[=f߄ E%UNKAGNmN~2V/>\-l]{ism63g &׀MkFFX?p6q޳QGqsD)A˙*^ XL& rz;l;|;gdv -B/$Z,$S."d"wqbpǾ&-=GZ (@R֙Ldv$ZG.k' =Qw$Dd|{]aH`cFҁnקf"YK9&#B2o㖩%AtO;aLN qq<OFH t+*F*kΖ`o) B]OP FNi#Z._A^70A J8cW[Ŧsfu:mqE*ǰFMO פ9r:,uDwt@;o/B?cdtN3R8/tݯ{"MK<ұQ`xy2͊` sK] M1xI/s}˫\$O3GU`r}*_v 'c@&t|}LdSHqtؐAi&'8`﷾Qj; cCY5$(f8\`ר9*{IBx dr*b+- VB@?$8(BǛE7 YƱOVSdhvδ$ܫC]2 /d 5H*JL9x@xJ5s nNߑ=5&o ڤ@]u OŜen}9żO6PqVO^J'Z7[㝃406VLYo;l`w7!ߙe v+ E]dE˸U8ϒ1[3m`s!y F9߾@93qzZ{ v:D^.,]YK Kxj˅1/7̺7r5 -vhSrvVjڭl5yevG3=Aݦs zrj-0ٸJ 8;8)a=/}㽿Ps}QS::B^;FM?Î384 Z7w0n0غok*ɡ1ZczbQG.F. tF|=LbWϯ*No2.aZ܏htQ:11Y[уo$uu^ p(Vd䙔I 1 :,R =P ><'Q09P*9q>mXZDid$P.;{~{u2҉=V`RS3@q-NJ#(xwءQDd H-hmf)qE_#>3Ko3]9HMϱw>;"@U$-L~]T I4 <ϴ!w'ScbZQTk.a-5 /P&1QTW6 S8ۃ}U{cXL4e|JěȾ?po4 ;(+1B(Z3I [K'Ʃm`="BMu?(~l F1I|JndP]2ĸRv)GOvEWIb aOdtS<7Um"H)eۍV ~ovI\տ mM־ml;ډaPܒ_w՜oVJdr\p" 9u)zDF:Tcsi1{Ͼ o^e-{ݣ9n,HI"Ccق /@v;[Q%ED] 랸3 N0N:p&;Қd.Wxv;bfɸcƨ)MC>:g羼]+Gxsu]ގ_`O_%m0Ew\Pn*G5;z^ix,x™As(uHHκF]q-Xeť@h0B s}ϗc8IM8W3>%E 7o3O7sJac$ KA<"ĖĮ:BV4ZmZ}t~rN]S^s1'T8=raϽ5[1ZZ:v &\Q;{TS!{dg/7 V"2BP\k_S& eE8nvX *N4 i3bg @UEI7ZGHCvMPAXC2-1ý[at2 c(}Zƨ:LӜu'hݪ 6=5 §749R$pͽ(EUp#g݂W@"3ҿʿ*]@("p%²KHk̫`}J K{үpp$T΍:zPynF7 N݀rpB(q'6/\_ R׶7cq|K{j(Vgw-Q!>9ew7(Nfitvpn2Y"Pi*#6MKy?-\?Q 3۾Fqp8/Øm'odvm=.xgu9S<s7[;E Q9ՐaD/Zn<\)XjLFO ْ)eojQ}xR:}yhȒ4E^o"B6=0)%g]rTfg__tW!ڠw>K . ǕYų$;/qB<ݱvlMSšY.SrmC*u2 Qn,5H&s4r#*Xb 33lY^U+9o.6;g?F!txVӛv7I/ Eb*8.-@ٕC-eq` `EȳQЌ/ueƷv'slkfŵxB5<7YOlƹr)A,`-8fSn7 `YB52paXqb ]+w*)cc,l 'Y8|/z^᱌Y8Yf懌֤z@w5O:2X։%#"r:$%TI.˘4l>:c{RR*?nwhv>`(O0<*ODyDKe=O=Z=:6- 2ĐUe9{T 󭉥iS`Gֳ²)b$lp҉fsǤS~P_Μ( i#q`۩$0ZS?@w8J 0/ j<躙_r;K &Bc_hj;P01t[.G=H3f|Å!jeg赵eA@,DH^OHy-ȚD$R@Uj{r&c':Tl8v{!1s _6b1mG`7XT>`D_'Zs` eʏХ`E!b6u^hM15t{aHi[(LNX.%鎶Z iOxiqx[?=^䢸ŵS]rm"b\{8eUxF}2W*U|j`,%mIusG0bEl Q}kN}'[] S%XAXMtMV>`ź/9{& \ޟn,?یBG{fhe֘9+vα~AE ѱQUto&^t .9n?^+CV؝F(NMa~vT1k/eKt="UYԯבLyq~%qGbECbbb(*~ey_[.vݐؓAG{B,i҇9"V[烿, De9M+Y*@C /]H~ײȭzA)2EvWs`_;Z'(4S*rF -`֯+a*ZFYOofVtyKJ5 ;"LN e?E@y K FkXP+gC9 KvX!U@A/S&!<8 %7jQ(OIiKQ`U$`<7J L8im򼓀Ye :n__aSRFCMwb&Wz?$ok(Q[ ex=\:Z~#iƒy)m !Yo6`݀ZLhy7q[uÞH##cH(&P+fM/=nj;^vЩo7_ MW^U| p zRgkHWܱZTkeκ# PCS${#X d@!)y'#*k9Ǻ^wG-m^%T >N8H0gzkڔDpxB6-ȍ=P\܋`rs&Z R*xI@kT ֵ0q2S0A@ӋJP^YMF׫pgN?I_ 5*Tmr hMdAW 6ZxU^tzX8>9Cn`h˗^:=1WRA^'1M{$@ko~$5V5&+d:ů?|&v3Mt} ^0J wQ=Ur_v9JhdѾ/Q_{st kx o>OCaø(S`u2V~g.g_IFM|9twVGt SOtV1M^MΞ׿`vGn@$V' nPFB-I_#J`a2%JVOAU\qPFuQMۂV,&M#w(gc KxJC/}* A6: w\ڍ۴c2tMn t*]6.agpF*xyN+rQ=ƟTETsTjڧOCew«})rP+8}UA4۸;Q㦯Kꋃ%n3Lx,9X,{ic zVQ#KcAIgM腨:M'FJ|l g`|N:+ \LlQgy_2Se~&ϋnmf$x MghI;53,_=m1b GrG)j:3C]RYTM!oo8mac0u~-& L'{¥A;߶yY$NAaٹ G2]Jg%MSEᨒؓEaьav(6w 3rV[oCQ!C18`ag_7ddUh@SJLbʳ30}Xנaƌ5ܪDwEJb&bSɿed/z0S0mlw`9eۭXd+"a;"߭( x$'{<gVǁ+tP[pcjibhC]#P+4\ΓcL5N Kt9a.PwG)uᑪ<O)&4.;5(cnpY+M?ãg5l+WvoT7hGcli}(pQLt5oeBzr?nbV*Sk!/+D$GRb 0mibsL)M1U6u߽'m.zAPTY<|' <XC *m#Vb'xۍO}蘱E=}s*&s1M6kyѻY ɭ47i9q3LNޯ`PG%F$#gN'hpe!7q3 +h~R|N~VPFI{$Wl{Mҟ T;7a2moĺ86y8F@"}Pk ޣ&5L05R7_DYu(^/s|hf'1L]5?c7E6G/@5%<'!iJR/rZ%GS4I9:O;#PYњңBcRS7ywLcF7ڊU"^1%`"*3i#?M6]'%o$ni:W=ڮSEYRETqmi ~2glW_;xr.,ȺlF榜+*԰j.5#1LBPvӪmm{%j:cӼ^9bG+au*f#N56M*#fܘ'|C0~ٛMgGd2Wٳu<{<B ofril`SvV@yi<'ʉ=&6MaGx˳l-ZP jX_++m},3BlDK|ٹEi_ÕJ|&KO3"3E}/ʼni\h's/@]F BcA^}65: ~1dAT`v@\W"q4zcq ?&q_Ǹ CqnCM(2͸ (jr⚛xfӃKpR*)U>fVJ7s:i49[5?DC[:sdd {!)ra3c_NǓW5 I h?JfZTOZ8>A9~nCʛ^rVIRf'WNZ^(PoPP 8A#Kunc}EӅ%&FWIbMݝ&U0m9$FD< :-V+E-f*8XiF'f\\5+]O} ɺyEYϿ2kU}6r6%vk~/D<-S ۬&+E*ωW5JZP#gTɼilol>xJ?t,o?A#GO@s-E^XƩWV"aWœ6z6Xs< R&7j!+߷A;kAaR$>'U<ө?IpuE橆DG#"SIhD*%sIym(g?#eA6RhULJZP;q'U M-Hr{9+[縣 V`2FB`̚ԋM gi+@$c dgL쿅@gQ^Dflh܇["ك඼^"v$թqڼP*8q(jI9l>[0|cՉ?(XZfaY:*FZ#bZ֑ٙu&AtYro3[UBiR^ X0E_4&e.(ѢROگEF/Q vbTwF>VQ.I ~'`m1^?W8=R 5 wt\ )dknP&{O/ (5F*=5Z,7@}X)eCQЋݝb"8$3̕"|'%UX<:G0,{T8_W)Y&p#wٛ!a2LK1Ne`#+KEO;"F$40-h3L'O]U-̡0M@FO~r t˶s7Z0q S8#D|[ ݲAZfѕ1|#_&gܹ+FaxI?5-.LGymjR7sYuKH(},lmG0eUb [c"E_h. vu n&y< 9nËQzSWU9&هc)POʽάw۬=9B >A R[0ETߗmjʦB GɆa_~'uq ;=sb9z/=n&>J' .FD47w9'=d"DK9ZydMN0 R3o 7A$jcKV lXo.M T[qN`s$Nn6Y}ü\(k"S3_/PDȩ!Sp.I6MUHvtWkF k]%<5`;ށ1ҙ8{HOt_ g(ϊqF$hl<:17D5k]{V}9@ snIy'x1MX~в@iM.XK|!h 쯑̄"2a)) y~E O,'X .5iVTFQz(@fܡa'!|W_*sMK!oPU CzD,i.KY( ncy`0F _j姿4"Ww )\J#FCit@^m0s!/:cdŵ1+ Ӌ}k`dC ʸ41@h60hHTe0!+GI,iSd&ʰ GX'Z.H iָ€ 7f/ iux=}.AdOJ ~b YZ