perl-Want-0.29-lp150.1.3 >  A Zy/=„~բ@%o ;!M}!flE31~@"*$$uz:)2?H<sXQXsI` ys M3Ccrk <șOdUf3޴N6%} b0A[iAyiHǦ i ?#0ɼ?L`?ޔI`{@` U9ͯNqtje/Ɉv7cx@mÉ8uJ<{g`_% U#׆S`$lo,׳@&HO@&۱j"w-n_~3+ѫmgos:R9-FY@r gikKBk9,Rd`{MV3}R9>p>?d   :) C^              0 T|h(8 9 :b FG0 HT Ix XY\ ] ^1bkcdteyf|l~u vw x( yLz\lpvCperl-Want0.29lp150.1.3Generalisation 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.V޾lamb59openSUSE Leap 15.0openSUSEGPL-1.0+ or Artistic-1.0https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Want/linuxx86_64GY@ UA$AmA큤$ZoVZpZpZqV׹V?@Zo499626f58f37590028bcaf56987763d41f218c50910a74508ef4dc00df779d7ce4b75c26b411e875089fedf85ac02f757d96de9d918a5bbe4afc1635becd34f2d6840e860a31dc4a088aba874aaff3b53545fd39b3441388af9d573306f7edbecbc2fcdb4e00e1f301072f80dc850c87e0ddb73bebb1e71dce276f221acc5a7a9a7a76dfb9151e91c4bfc1ba7ae38cb064305e267c1bd83868d3134580853564cdc051e3d2242a86ab69822cf22d52e30ec9e6b7c8322d4b1bb4c3b8c030f79drootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Want-0.29-lp150.1.3.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.18lamb59 1457438400 0.290.29-lp150.1.30.29-lp150.1.3x86_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.0/standard/ba16ff417532d389277b530a0750e233-perl-Wantcpioxz5x86_64-suse-linuxdirectoryPerl5 module source textELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=25747bb5ab4bef8ae0c44aba16aa42e86a9a6ff5, 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;0ER.kutf-84837b23cd8a7e0473f0c88d00124373694fca2e112239a5172c2b04bb14eda7b? 7zXZ !t/a] crt:bLL ~52#WL_FSe+Rعiч#;dr,oΦ0^hś36iÛ:sÌ="Ɩ?4C"H2Z kD#^>jW/XUXcOJb;#v/ѱΞ}1S.Ѽ 0F G,펈Ag3"cҢ!в<` afrDM^?`_7_Yn_1"UEYU9=Q: 2Op_bg[%A}6DB-Bf‘V2SwǪ :Oε#U* ȵpR ^n JcAKoxNDT롞r^r :&PӬWIsŖnxeޫ\Y[< D'ܕ6?]]Ad>GS'6K0D)‡zӦ ,C~-Ke Q/L,0^#bB$)˅ԤK[gSA4\I=+!czRxQp= s0ʦfoj~"avmu%n3_ށVK`Ff6%7QyY=~ u6tȞQ[MK9X3WGc+Lpe6bR{2]5ѧ|)^Y kE^4%OLx!BWs>caT'r$]ڦj~]B io%>!'!i5n_~>)4zIY4Nsy髟[!AE=e4WSyyUaԸp9Ԕz,G:$67^*b$ftkoH6f$tD{jn 0dtŨtytoh[q

CV][&c FlCUGP7\ ɚ\m#$E;_ಎ ;0i%񴳼ڳb5n- IL-BP(QM!?*Hu}Q~ٓ隙tR?PQ8̪.8?Œ63nr w|o<8"V@]ij)g2hЩ06jq@:O.r"Β{VQ"xe~u$5:x~`2;|ggJgC/5hV4t-5Z-e#p #Ʉ]"eOt7*MqH HVhwx+p!s&/ 5L6q4/^NACfouq~ujC섾*~U^mV[YN5.Vp:w$(MQlV4W,f~_9"rv|_$͕n<0Zh5u mG`*%7gNAaZΥo}+' +?̳0@"V\,l xEQXdj6hM>hSRs|O.}tPYᙬ$}O ݣ\Nu5ZyR}rnXNBMߤ<4oQ'Iz(a?9_Hl 'xir>g7{1 E҄UIdBŵD∳y~.(PMЄk=hyVʕ8 @k"|lQȾN4XGIL.] ,Kyw%]L+:q !=_$냕hm9MHo=9Y.:~IeqU4QrÓp:(0鍷[X'hSp29"M_EGɩkX@RY0"!+*dL9U߽gwZHNƾ߳k B 6؉+ YII\h Zƶ=WCKu /$M*D 7]X6NDmKGObP/^f xӴz5ɶ9>϶V ׍vB=2x+S%`;!˔QJ(IϛF9p׶Eؙ/v>+K8?-a@Ij;siSVx EC ̹'HH2_NbP5yU@)hXe)5D[$=w+x6( ]G jp*2!_bٗدdfL)N>ojϗM( J6k_y$t&yk4EQȇ1䰘6[mX~YދO($5}8sAmbu$1fgs B>Vp"fQv&?_},W#X'}{I,d̦E[Ôz>-"P!5Z0UJj8N8w QwJɆR&Z[t z Fr*"Uy^`؇&/STF.;X5[Wecܖ)7 b5XTDcHFu}uFBN0Errn)##CKo₢}^j$Ȕdn#BR=2<εL;& ƇgD "F#ܵgZSMe@6+Fa'Aƍ>.+mDm{WuObQ .{W $}Q;4qP̙I5yO#ǟӁ+.1 yseKԙ-ak8d3?ŦkX<^Uu'hk99Rv' fqc7/hf1s1 / 񰓩Bj&Fwczy0΋LBg`ը8#hAF)z'{Ux~$0 ~]0S&#P>^q_S/ɠl)(G rWl'o`@~$hۘ7du}QF;]SdŽ&noOvNv 1pWVN!3J'm68rט QZ #牋JD4+CnšLV#/]؉EP_ &Em7({i6v? 8K,5rWemw5u3҃׋vθF'9#; /5 !VPXjcrʐFFmX]u~ n]7~o[ j-GrFGYsgtQ!2O^wchkisnnm.#[e;UP?__Q5bVfSHbIR@fD è+I3 x S8O.JN^V;+5O[Z2)trZfr8]ulN]~ϔ)GfEzq<8<u+}4.3x;\rL q=@31} +ft޲HHv ZP#iֱKWRjk*"1U=wؒG鱩c@aRXgVP2JT4A:T۞NQeAps&׷rd+ˤ@w[俵lt^)6rxc/C&1*OyUKrpoR+p뉬FGBdʳu$[V6d'aI+5Dgz0x kKVEp,hwiu)(#l٩zswaElz+P>v q$bĚ!n? z\nkZmn8 JmJÆT(H7 CfO;=MI-_'_MTds8ZDŽt>q{TĄ!LQ> !-l O. }׭ݑ$P~ >U2RYR05[Iy}VN>_ {dII Oso>" cW4NBa_P\pgl2{&1t$gC^6BFVlbCDnkm. fx$JeLJC Y6˥o*T=Կܝp|}Ƞ$c| B!VZ!! 'G1k\pMAnzPXR:5l}kQ220^N^A:(?ËU/׃ydLqXg9Nw\' I*賒fwoY1>QU`Xn@؊5@۾M]-"v"N%";Lf7~?/6>ǵ`NeS`O:6xYE[-9B IL!WśN!߮; /';['H0&& t3j8IuP}&CsIwp.tTq]sj d!`tg0d3u\DM>Gg&oO}zyè&JY FIG\8rhF ,$Lqh9<; ĺ(+3x0O ;AiTWĒpdŽC5dcѿ?Ps)J*A 9oD.u`-QnJ䠳j1GRt'.+U'^`kGpbqMA^-+Л4"{4 c~ ^ƧR|# u<v%~ҬRAV3y8f 9QOKbKc}Qr #? R.{?_*ƘoW ,GiAaДUb%6X4)40?Sy?+0{KGËtoYO8낂:XDJ :Q_b.aVIZN$\@GT8paB}x$ڲ-Hc94㔤5cM&_"Ռ.OyHϚj ~i!֏B2?y3@4&aqjP2pcR{{I0cPhT0˕evO[&IP(s%U$s-W;w+f/ex2kHw^#Ucͯ8w@9uXPG"Nh6!fʉ ˞{mada@xG/h1rpEv<'ՔZR?9-uyȈ͋SrHm'~&Ncg銟?ʦ*ܵ*5,L 6GƞN?vUԇ&ƼV2ӟHj/bmCp>$Q|G5 )[7$],--(bd\M0"G%aІ>,o,~ü. JGdٕO/I`2&brMNIJ A_rj8ظԬ^+X Q9;^;{3p/Rc>c}6X/> ~ϠmEvyBOZEޢ؏52@:4hR!&0&WD*nb QG{C+(|Q?F 6{Bg +ܡ;.6ҫ|@+А€([GV$$+t0F6^_N*Ş(i[2A!y,{{y(/z@(l0HW?M:aKˆLj HAAHcF (g o!o֌I{ܶ}&FItZUhv[h'=|aFx h'+NådӚ'AVXՄ+b?bu2 H#%,kl&1)a*Wu՞(_&@m?A>/e 5LWt'Mv#_.?l+E'3};#|[U`vn }BeU+ SJ,V1Cg 9(%׀I߻/79#6}_V:Mi-Y X7?E9b:H% gœ[±2lwǁSuh")hz+ZUv7# hbŌSОfrc rƯw{]姉_"h4JdvM! Y'*8*YmI*QK eEE&e!gh{) Z BI*f֠“ȍ^0%zث;9Sq"?#qV"t?7`\hMդ"TԒju  .<*OBsrtTψaR)ur=ޑZ;>ae;s]Ng#9x|=a / UJØY@zmlГ8^F5Rz bBmRZm$U@&yl zXJ^uoI-o(GZDv>JS!de>tw #Xn%9"Z0?4uHaYjA"Nt188eRԈ,G /ȕѯr56o!,N,挽h1%gV`'0G{>ί/ ~bdv*dXx$3/`A={EQW'OR$'ɷ?֑+"b{r4wtIS`COӤ$ !?  wê+QF') ,eE#?g>Y\DFx7 aDJjte`cH#R)obwճv4O,XX<{VRbmz|/ettyGM^|; LLFkOLd2H:hr$?lο  _tw`MރxKQ|ٻh"}y9MJ߰O OD0 X۩_,4`SY0Z/j}"kL(9&FdT6ה K*lax'D!G/.Uky\i@l:Zk_bT-)'l44GqDq |38BbU I^ HJȔgUė+z>6/O wޑ[͇jM n8Pg9:WYgݽ'u.鳢6 Њ}aWU!?uOiF\n0ݜJuc|qj~, tF7,'Oqti͍/De2MCnBZ(b2kuÔdzSR17@IZcC7-8=%Nn_!sM-aγ#OIA\ΝiO]ʘ0-Tȟo؁^̗7ѓf7s? {f^ӭ4oyW?1c\75K)>e0م{8rL׀  @ ¹T_k|T*kVp}O1k5OCśFN0 = #_G\hrEX?]w~7g~E2C<һ7X&p6OGLlXm<-0/ E"a//P &b*zwƴ/n=_p׏(~8:ȅ92J8wO!7td[M5H+֔g= Lc"=ϟe+͍Ҕ/|MDn~:'5 ]ZϔAr,+MZ0-4I~iMW޷]1 Ծ zxD0vMF-l7aH\2͆ R#*6J[dW%db'h4l׋%PGR ߐ}U+Oo-&$R&ǟ(Pn~1` &Ԋoԭw< 4АF%<4N?fv9#pԊc%AI>-:S1jZ8ZʐM+u >t$~S0vP ~f` %ʞc)q7Y_|KUgƝK'4FBrȸI&ϋXLPOĖrY-YG:^܍8Hb" }샐1}6 `ˑ~Ļɀ~?[t `C$[cOKzΧj nFeܧ*\!dpœ:byϟk@;nY83Rm:$/7۪<{ F_s[X V|((v@r#~ es3Iʡ=n[nIJ"jvs%ݿ:ہ~Y߽ɇ"R˙7581(oEx KË&Uss>>jú|f@G|kkv]fAtm8Qy)ՀTi-kʯO uA]>!N3z\3[,ag!qj۔@aݳ­/a˹OY3G:e}rgQD$ƺ3\9iݘHF>wyЮlc_-@@6~"lly_!])s*-"ܥR4Ki T]=(z-]0VQ1yLrw+)lnJ%4Ow@Yca=a=WI@}$U{lc`//ɄН|bɗ K9#ź~UtaS{D֢T.xhT`+u4.n%*4XGW =ab/!ZJHgXDB-]ʒ|@tP;|:bDmW~ \ʦO\Ӕaa{mxqZs3#oyV@+Z]t }^޼/Q;qNa.@N12. lÄvG-gZ=| 3򗰖3ɛ'6 ){Q"Gnޞل58ybˮ~:~ؤ5-8(fF#AREeG\Uq[G$q ,g*}w_݊L\Gf#s4r_} m )pF`bE4k=Oy+̮P?&òdl`[?Bѹafr(,*٨4п09 Y\\ ?IQkIC,S_Ȅ[IKW/Qj葥{Yfe`~-KefӅ֚UXusj)Tz(tSd'%@pdy y&NӅ1v8GdL)SZw P ,K嫶nlXmU>@Q`=ragP2f!qEËc(ϸt}'^btMLqy#T4;A-+^R]\*[>gK~>Kؕo C[]oq|$OXhFDkxRa %-2uv򣊉WGrXVX|hQ3#-|h3YR/F9\n=EOvmͿ2m,u&5𞈽8p0 M,SZ~`vx :'q=]#VyPo/t+ɻQ,NFjQRI;u;4(l%}$o1J |DfoŖCLK-os#_W |j)Jugt[H#j1]M#r _Œ#سX!0ͬ.6B_ ~E$%Ӑn-Mm~7-x+EͨmK8kZطW$pY'ڃ&ZyΈ&@4 b`,gY:[v^jRX)Jlnt"eTWd62#sb" NfJq{AsNxns~[+O~ ^*)kUsGbT~7iSCYvWe>|kO,,Ht0盧,6Y'CdT]}{sb)ѲnQ8[01p)ˮbHD8e)9zYpAk5 dliKC<^_/n?\rn .`kt/,iKgg*+_DXmFz;&Nfբf$j&(?JKpރМ|̦HUmf"%E B{(T<rO{z\ψ>jĜ-(QD*_x<5^/.30]>Xn|X=pʯ@'"mH,*E}d{}DdŀƖ?&wiß- oǸcEEꁓH\CYY{Qu6l/{Aْ }k? )),q%ilUM,Ĥ{p1Nw1D8O3nqPbdKݲ_f)e#R3amݤ\< 4!nٳ %SV 5) U.Lno?1>mvci·wX}]o/СXyd{ʔ[`4OTp!R^*bF6LNPڭϙ,ӢIL͋q7/>kf:Ċκet^`Kc!Ժ" ގFVLc<ĐJF0[]_K^_[#98 2GΖ2 0cPzӱZnn 6&(,٦|%$ P=+䒄łr{[+\)9^X4-ab*HnsWIyoJ+d'`ڪ$Q R$WEᢀo^پSs=^F Z$I’\Zr L{]'r2B~s*BXأIhŜXq8WZ_C w'wx ufH: ʪK5݄~_~& ͮ1S0ƤEJxM=F)taPq6fɥ<+*[ǽXI67`Qzz"PA|:E;TSf"eׄAIuAll)`L窮3Ec"]ext`PU#?n߁n@_^[Yn#"C8@8) rMӹwcV&DD"[1-YE JyEs0OGw+SH[ *ذz9 h OSE*A.Ht:!ri"MĹaȍth*2BYXswIk/yFg7T>Q?@{,NuV|nn{SHFf `~2z+3J3O:> z8 .=c -;FQ;^W<ڍg rumLrW{\ [ғKBpQ -rDԚ&{)*n3]dk^X[*Ո9ol~)% BmopGLCﴎs Z huUBv4N>@C?O$ |4eC K,z:ٽu> nF> sL/$2Y(tB ޖ<`R HzuhL ԧ#wV.(?&<ޘ?='Gs-A4@sME=;ONqWSΏ]=6:PK ɹwCimݡR_{9;#1k=.'Jb0r*MhvW-Cdt$LbLU+Χ k@kPrl rਰvXI̺l 'b" U4 JT#>ZlM5?ѫ1ِ0={^fJp$f( <=q'^HR%آ6#T7Oo@$"p zԇv5?FvdQL{nWCM1bȒgCx~? ~G`L!:JK/W (@`"E`nOFDk~um8\a okS]DZf؎IR4Pxkr_On'U_ O R ¦*cw Ot_؎߃@Э>a!1,J@ f6ʀ}#Sl)X0_Bo~7M ȽaڢT96`[A=,J:_)'h ]U#%>?/\ dm Jhle&(ղȘGG`Kc>l;EɖEh(άlbmAg-?,=g^՘%Wx弽n2,1I;>$viw RQIv4[KdT t)&]a.m~GJpZ2X4]v`@dP?g"-WC'҆POV8MͱNLE('G9lǐɚo+D I >F:GVpjHqP#L9u7Nӑ˯U_*755VO$}x UՋ qy['GbC(|B?|YΖ$2P{iҠ0 /~9[vB+ޔza&-&SrPg%G#rADX҆_t7ŀ}އHn32N&n23*bPiڽHwINxsr9W Y<ӯJԝRO8uNJ:!&t:s٤j߱FzF*#EM]}#Hޤޠ*6,%`{@Z3iVT<~7O6j+Q!SZ3-xOB&1?wѠyff^IcASM 7LFз ˛@[Xnub!t$+I^uR1&i|_cBѯ![L3Md z?YXT`ttKy<,/z=f–ZM@o}췜4; G{DC/Xgm4yJS!ܠ2R3{[29  xU{\l݀2ַ=>s;yk534Utxb"ɫ7UO4Rbט7ڮrLOV0WO}vI≝w0a};ׇDvP6&=Y0 iŝ'z?\_FVdWT& r=QD3nkrhMO;'YH3a{ae@haKzy,KS8J68uR`D!m%̮ [tv+HÅ;ݞz^'ˋBapu@1gfXP;R$Ӗt5 #%h7@^"(r9f7.'zM^II3ThQ8_ƇI4Nԃ dB"|#@MC%>]jxF*y!9yn?Y CDH)٥Kz= ߾$캎=*&o0ΜQ\aB؋OktjEjn x%Lе/&78=y$[O_j UC4k:yR)oڦB2u4mɹ-%FL*w !"a#2z/:^74qZQ&̶cl 4C^ٚ bra5ZÙ0aɧD[IB;SG?jwغ+x}X-SnZ}byB1N&AUF ݫ AgEaQý:u]gF;g e=# 1eSy2P_2c\0'dG%݇k֢پe-nQҥcXYH#<־7`#}Э( S•@-A>F.hôbotYHZ Ì8Oa萧чh{xy -B$B%S1ۮ"2 3i~GeTbE78x93jiH%۲ wP%!e;?y@L)X~S u O5k{a(Y`M&@D/A)58ѐbTg@N ,H\U%8|67 !8D'2X"d D9 Vzt4@_dC&&׌cE]]A|\,]T5TO=+N|pg1QmFjɴRL;fp>wU S>?`>T]ǣjk1[+-xt`_}żʡI-~J&3-dYK< -{&e]uH?Xڰ~gОtgɽ6>".{<ǽkU8pkRU -lɲR`BjD EPx>[ 輐Qij7JGc6tiy CR by]KbGq9g֣FO?F,knN7? #l漞D#%m4 MDNVMѭbF^i͵