perl-Want-0.29-bp155.2.11 >  A dd8I%z '6'wUU.W\("W3[ހo'?,w{u"|2xz1ʆ6 $M͐HH2.ﰵAJǂ闋8st `Slˈ' csÐ2gJ2\+9Sm/^ܫ_@\]kqfҩwdON{5)='Eyjh X.q?fJ °_ 2360_6aXUg]L(ڔK0].s <Yi#!auH@R;Lhn=܉æxo6Q'!#_96[PPqzBc4#jT: ԙ@9hsR)1poAF*m`<%.ANw̥`)WUlh X"/eI*U N^K`p>,?d   ;7 Ql              < `   (8 9 : F[Gp H I XY\ ] ^vbc\deflu vw` x yzCperl-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.dd,obs-arm-8SUSE Linux Enterprise 15 SP5openSUSEGPL-1.0+ or Artistic-1.0https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Want/linuxaarch64GP UA$AmA큤$dd+Vdd+dd+dd,V׹V?@dd*499626f58f37590028bcaf56987763d41f218c50910a74508ef4dc00df779d7c2eff12464d6a8c181ef6df9b84baf742687ba7e97258ef0d02c36a94f998de07d6840e860a31dc4a088aba874aaff3b53545fd39b3441388af9d573306f7edbecbc2fcdb4e00e1f301072f80dc850c87e0ddb73bebb1e71dce276f221acc5a7a9a7a76dfb9151e91c4bfc1ba7ae38cb064305e267c1bd83868d3134580853564cdc051e3d2242a86ab69822cf22d52e30ec9e6b7c8322d4b1bb4c3b8c030f79drootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Want-0.29-bp155.2.11.src.rpmperl(Want)perl-Wantperl-Want(aarch-64)@@@@    ld-linux-aarch64.so.1()(64bit)ld-linux-aarch64.so.1(GLIBC_2.17)(64bit)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-arm-8 1684333612 0.290.29-bp155.2.110.29-bp155.2.11aarch64-linux-thread-multiWant.pmWantWant.soperl-WantChangesREADMETODOWant.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/auto//usr/lib/perl5/vendor_perl/5.26.1/aarch64-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-Wantcpioxz5aarch64-suse-linuxdirectoryPerl5 module source textELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=237bbd6389e4bf465d8483739a0bd7c987db059c, strippedAlgol 68 source, UTF-8 Unicode text, with very long linesASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PRRRRLVr]&Tʩ 'ĈpXsqw0 s1v6pIEd0XV*a[8+%#`mm⢙kEJu9ڞM`q:<-z%l* > mz[sHkB.2xݱj\̾u*l?FMqzJad\ҥ(TA_ѣhH4}6 #{hkc]4S*e 5s26K?6|6ARxAiWJwA -Z,^<͖;;ዟ8K!nӭ9c஫+)7{p*i/6 5g1i5:g.NDxBZԤ6(Z!i95ka R \x.\c~my[++X~@p<6u1뉎T"v. GcjY4kj7 RࠁuY-8+jZ9u/sm5:,kєd ]3`b?SyWI@b`(￘@ X]ý]H_bo9lhRԑE" ssD}W05yWC~cKKM࿁]ϳR :ё֞z*̶gNRmn^ZCiU(kOҞn) XnKWM`n',?w+"k4Da:?бμ9!ټWKT* :=Hv!$kJe9RK'^?YqV[Tmjݠ9p18EV']י5YL J/Θݿi-ș`=B Px+M7oXq8BZ?b\fʬC$7UL&e2ӗVѩTXWJDmU={Ns"q1C8|PuM"ej (ri! ҘȜAcR=q= Q5p3XsEVxb/sAyҩMLP繂V1=28d`'r3e?NsnJ:yl@p05uC^EGĝ 6O6&6=Id:j¾=m`9)Fi ꟦ӓM  ~O.{ pocy8ɷ@&Z\ )hEShɚ6Y(8߅ /@&t6+Cqp6pz ۙ4]QUu7%)Pʽ[m{$NGLh2z/AECaMn'MUJͳt\%`g,.$ cyjQm`4+ g#\ȕZbKꁡLh0zx*h%_nxG/4(€z-] t|hj|bMBK?-L a/vdB@xAAHr?bkrʡz_X~r*ȕ#Ԝ)$y~HѰ gO޷/cUL#4NUhG0{HpۘiOZcEzeSFUOkq&SpVjaʂ1w(Ztlt/SiO)Rv/~؀@15_rRM'"[*n&p  FZ2f'fT;/3(<ӗe/ʎ'&/.3">h^xJ&>Y y?xY)XυOl3?OV} ͯ. ZķF2\huwҟKhցbR_P4R;oZ( 9S]H}xYDɭrj6y5jZDQ9pj(m O9g'6,˿YB "CDC6%YD25̲e!t@THy1k/g!>SPHdS1+ᕀo@N'r YDqǝ_yTt:'}BA̿WA:J )@8`~yTU࿴AeBo~Ձ>k$Rw I_u?"pD< Ra` K%J }y+ҹarB/bv= <үo'$U{47i^< >KJwjKB!w24N׼ѕW~k6t866 ,֩bA<$ |~<.C,04ϝ݅Zoc t孠DZs ls;`Ni:)hBe =JWpwпZ9 ǣE貉,\zVE.V_qnހ (Mq蒵bJ@Yj2#j=>B61 {0FEa!:}RQ k?bOyVf.7c@\iN*ұUMxOVSxk,&%1 !Z}(|k2#N7G>湁rH qs`WTE~""}fՑYP,ng>+txLJl65[hP_e߻t֕bqd_9ѠjF*M'$Akӣ5z2оj(5۫h4 8f )oj8ޒG[@ 5{湗Y6Q5h?r[~hxσWId݁΍WH\ro0Ei.d$o2 Dt`ώ[3 z8NA&n^eW-l󡦈+[O56j t߽j6^;EsUC:I*=oM47,&;ÍC}7gx]cFU󍗸&~2 7S|XOA@[_T4UWTa51P8Cf2w.uiܷ&k2y}X?Pi {^u` ڑJ^ Ooȳpuɲto،T`EhW!#TOv" G>WVW)w8k]D0LMW'~xY>ϐvqꃔg0 :2h,(;a"ݲ$:CL#c7_GpFz\V ^r˖mrI 4u Ra}}zMJ2x.[;;Yw12¦xZ"3)gyٓealV?e<ǺM%.?/ϻ`yp@jv+> b=nJ%+7Pq( RkGF94&*m˴4*s ZG([5)i$7C#Q:_^0yo]o ߑ0Yvv0yZnibd'Vp(/Aj񝔬#!IUW}>7Y䓹 ALHk3TV*Å~ǫUUCyubNItQ/ @$S%<ĕ3kӯ0z6T5̜1Ԧ X0OLekg _a&lv.2F+sIƹ WSӪI:Q~{a bZaJS6}i~uEH{ [uO2`ݡo[x4fl͟!];8v][0&>+~(rcL/KRs!i5 PS4Cqfo"} 0sJhC}Nm+6! k&vV$Zl͍I'{eowm. :bp:uL|ox V4.1a_RD!C_:pOiS[[ G=x3{v})~s O dYnh[S~K!RㄨPanI(n|B1*Ī3-GPėY|(<{Iѕ9WCG!B}HsIk©A VTvX.+D9.7 w5{lj=倯TSϿ_M>sj/o :0=I.nsQ@4DG5gIl2קzQѣ-H{%ОiApqS&r |A9핤ȧRv5r 2P1!0C=8~(" λ)FKX0i IE+RVDy"o4c梨j!A;ȷׅؗWIXII9La)vfQy[ ?]ʕk%QޜY"c )s(@)Zq[ʻIl멙7}Lݿ]lmU`FϒIXrR*"Ij}g#zbf2ֺŨ{PꞴ-R ɀN. Kunbk/K\FX1_ni .?b ;.? `82 /ųJE}:b>/fX,7*܎HC& HA5%R翊bB @GjUmeQ_XMQrK/| a7s7z2OQ#1&"𭻥RVf Ec&mCB|.KnIr'2:8a'  G^)tFD ~ylqg|а ^[dE+?:q!`ժrLN)TamayZjhK;<&'!gй3K^!}\UxἾ$m!9_HaxyppٌƣoD/K X?Q9gW*gXDq>'a.޵}DAjS.9{cƼ#8TLѮ1N(lˍ6 Ʈ_䀷5]u!h yk!%ЙdYQZ ד)RLw_ț xMl.; *U6*aGɊ: r8d+h{?QjN$)m[B-UwE! >S3gڷAV6ך5l'yfٱ(hh:74 :urKŝrRۃy9ţBf4kkN4 LI\I0h}(7):ԕFTMd\P%QSoŤ%L ['ۨ#72&2_KV9":\22JևHv bCVPryP?!4ªYYa腡pxܔN{uN$}8:Q3H詻15_5'dL&(0I42zI-7[v >ﲪۏK)jx.52&]%ΑTgDU I[oz3mp=WYTôJ`}=dHL;kJ薎q7fzrCϞCM!ˠm}) YpYh=q/t2_hP9*T]Wr(71KqCr1l\>4Ub+" ɤSKQ6#biSL={G{zj4Z,s0˃Z}4zVWtZw-F;w|IpG2U0Y'/Ϲ qMO9/'`sR{ Q`5@ Rs4WSގv w2y=>yP>f]kQY*AEs _HoH?`LOJP@GXSxmPJ NŖVOA5ڹOHcxʒ!+Gr"0X%iY-5p#=$V 6߻11_⃋pU_-)d,;(AK42r61cf"xjY&aܖK7C@-?v^`M *'qfcDI%[B%gFqOxY(V7i?"=4ެ \->OD;HzR6uFc48.v'o}Iw-z,@t=  j&j ^bvޛ۪ c]"翯,TlqD"Imd: E29Om˚+PSy0|< KʁKnn m{Jls]3u2khh}BfA=QD:>D͚}6aFQ"%9EH}!8OS.At>n&;q_JZl5@ Z` =.lvMb87P"uO5V5)P+I)J v|X:Pc 3iv`2.(TARF\FU`%O!ժMjT(K)%#toxI[Ȃ٧q>{N(n;QN{˴MӨ+7T`* ɚWHk=!Ʒ`Xt%;b}l&HQz5R9D3hZb#Wz4,L['0|׆ԓ=4}^)4`1$TVA2oL{7vwēx zA]nALM<_^~vuȺi]39Y;7T>z'>b@QgI ٵNHF>Fm6e@_e]i7K )MEh-9ހhX,GV>T̺[CFgc Uڠ_N,}I|;hmTW(?.>l4J(8}ׂlP`Z=j xԏ֒FtD=F07Prԅg>ԅGaUß ݀lo 7(#]a~QL(Ej} ?Kp(fx'1B%2ƍb>_y?;֍AF 74 {4КZC_$#QM:(L&76?UX{ H.uBGu׸ S.jTFyJeyKu,%$35.1߶% Hv4z;C!= ?+: @yUEAqea_*UMc㈲-J[y"4s}uQpf}"&ˊRKXHV=R`sd D6-&QAåhm"6ά(7qPv!]X\+U؉UzVɀF㜑43%׈QWT?XzH|- j+q.{Jm}d9A!r D~;vH$}V,gu\9LY>7 d((vsŊ+VB:_Ga+?^U~ioJci+y˰G#^1͍^tCXB꟎++"w3L`teq&#`l,YzM"BVmD?L#Byu5l~ eX#u&qf 0HRC|_Mvka.dHQk+ǨMsKUCl2m>p-є,_SR *y֢HO'b(xalB5\lRkd7S^ }lqw=臍B݌@BdwPo%ܛz۸E{'b^|4ߚruO%z.鋃A9;ߛ:domarLX|aG\(Z^٬ڒB1!z6鯻.cV# |V[?neWŋ?iؖyB!,{]UN3?^&`Yr)$=^,R6'Zpݲ G@Z\axLv1M9>d9ѯ/71Kkc=; >F_$V}˱eK CsdX.8M%w|ctqkd8xP>s^tep)zΎ@pyN&+/a /K`H1)n!Q㞲Hb;#gW[Ϸ$qmv7D.Wpߞ҆Gn˝@Vtܐ#if"sZ#SZjw-\N'٧X:w^F_3^*P$֓Fbo*:xMp*7|xYZ^4'C^ECܾ+ JNP촸7?S(ن`Q9S: %{qjT%dQ†zo/M{Ə3#v@AqyPF|A]Kh1Q|·;퓛hv D;Qrux*n[p ogMS4db9KvRe_Ai =c{0h}jИP%!#TO"+:󉁐<^'b/pWxbe}FzG؏[ rurqWtvoG+ӽuxv&۽h.y!7ؗ7HCJ~ t3[͹) ^ xM;Q/JېOڌl:2+5QH ??NŨdjuzdd,ەvH$B!kRE =[U[l|!9<#2\@#RS^ BZoժ#**!hv 6Vi&vjXH_t˼:5/QD.9(*>Q&ʲ9}/CKB}tH؊DžG\fJCݩV vr* ,6`z*89%pdCryAك FQ lRϗ`O.PCIc@,C$=4+O <_SICN`8uu$K8c`Z(FưIUIo^2^$"5]uHO01w^ h Zn[zEu%x&՚+N*f-.$/ ps6 Ȑ:oAfA]g}6?̫̍ C҆pO*Y0eMg"˥l rdV{ y[^t"PӠO)r/! g;Y4ؤ $T18s Ez܅al\/ 9Lr/Ȳ b'Xlf;d܃q sN7lj{TM\ kճ6ٟMof3oH?o*+UݶHXMݍ͹<7ȥ |]N M'g"w >[ؘwz`2W)| eR2*=Ld,ڊ#⪷P L>@-)v1[xq8ZYs|y/7HCFg)$+](k(u`.%,q:)Ð禡M<ߚ8D20*ɩ#p'Aɥلu#m}ĩQdYy!abĽي!VnXm:;r mrZ;`7U8'h3#GcAvʻ&;[A[ƀ㐧&}]?@lT&u=(=$}iҗp؜:9Œ oкW5JdٻUfbH㭍vs{C{Dq}ي ΍4upM$O 9pouTb_bЙ؜;[c+˪8\^=褬V'H Ĩ6Q^O)@mPCGg  Νs*zlH#l0[1Sz@,M/Z8E_^rd,i$$BGw rK5-J(KLvTi􊀋w\.5JlFC`^}Z*@vqbC BUu;5#/8kH+t58nA'6g8&-VR.AZ>}p\kb>_|-z?B0F[{#$Ą Ul`3^E a%Y2jq jKsctznEy].t&"[:FxŻ#`P[&7MpCa~dy1#$~Ee_>:nbj0rc\nV~H(VGZbDRrdϵv R?Ϡ2B"Kո$({U6v.\*>)צFp>F>GRq]% %9$eM!~Nz '{|h_UmCfQ%6a[|FK@r05Px45ώ#l{oT_>W͑*&̂Jc۝Mԏ=ǼH03f|tMwƦM2R)<ݨ*|UhH a#m~xcz{n5g@D$Wtωh=3Y6r&)w GKvVhyrj.s .,%Б#5雔~>(>nwaW:a P[Eu/ }MDRgTd|%^{.Tery2ݒf 8f|Vfeݶ(,&`w9Jkz0Q\;/'|CS)u@c*N]0 vOh\I˧g3dy9uDb!'-߄4{Zk@.Xռ= @Rؽޟ+>+,Ui٭XJu+\ @R w,,ehQ*X($̮jW2_̬qs |e a|-lwMNԵs3.PSH11:J"3lMel˘?DA3dJVcq&Y[\p _x :ă|MU ]V09gԧt2)Ply1z3恃C HS~C|ȊC9|Rb .a&YXۤr"^[+8ߓ⣿6|c OHᾰd[&oiճBuo8ܘ2 ̞^ͥқGeož[k:xlKǔw<З LN&$L 6Y)O:̳9r*gHqVYQY43UZ(5.޲Jͦ N%E "(9MDMKb@9V罚3 "+o dXܾ?X!yo\cr<%h:$2ʐvx:Y\Z ~a(&^” A뿵H@/^M|tY42.' A;0DXRp ]y5"Ga˩GM?\8Mh4hB.oƎ =wèz-&y!IXx#§pAގ;nv:͆l~yb^P-'(غcF@*@Z?M7\3.r빷a@."T[X  ; N N+l1`ĭ} ?4,_j*Pj&~9J5׻f\idpm*s~jٝ'5nyQ]n]p{gRO+psDZl?"tØj͎&~q:",ƪϥB`gHkbCSs"w{Z~d, ~|ml,!6 3.8X 05K)B/R)D4'*}tr Bz3/Zjͣ9Gs"kA (B' `: d 2۸G{.̷t6@q:=05? 'Ūٖ9DSP7/nu-nDJ kJ}v,k!L ƥ~s8܈-<\GmDBw6rm55sh;o{؄I3֮BP%wX =֨7P;Hݐ1 npN>fŀg ,vvnOpr.u=S. +x?Tq̭IT.hdbbx[%)uӻ[o+"'c~d$)"G-bD-n>D3xk.gONZy)j~^`l6x]2bn#U-TLlHWEc{>,ځ(ڿj~*:`SKvC2:pۻ[: >IZ\?qrIb) yVf n,e=ouAp; X؊eD>%}6g9eQ{_#w+ܲ kL3& (>I/jfn&n0b"R`e |=BM!&r|ߥjf mYÃ$_\LQEN3vb$7H+W6L{샢;}sKW5J$HE{]{jZr0맭w#mhhȜHoL摧{{wMs =;e=BH=a& sfBv)geotELi>IG VVs7>Looբ[kJLg@`+/%y}&Ċۑnנ2ȥC6#1AvG^17HzjL>ԑ/]yÇKnLv 56bR Gx9t*)g̈́VZm\L&;Bs{XEƼ^H[N;6`{R+TG'N֐,o Dt(d/!Q8I@FzgQ 8lQ/6%ͱ.fVVqY.Uk6?iSk,xaź +m"N- )n^kC_?ް OS mTeZy<9yᗠ*͊&:#+5Gh+И"|r7g<͖LZ{0{Un$ӡ9fB&P|FayT (FQ;ސȊh:te_+؄^uME԰I"cB6{>.#orxoUꔦXSNw76C}" xb䓱ru4F9oSʧ=K yYDi%9>|B]%cY*V_9 R}.gq'iIf{S!W69tBj>Q(loB[On\Ɖ; mti ,gC e` A18- &DZyUS+%9V dmUĝmqE$fCpp\iF2:[DD[ O[5;B\I:H\_Ԙ.R{ғkLv>݌aGݰ-q!&4ubdP^P5 GCT,ݳ7(C2V_W M>40=mi4b"a=P->`+!gB+L~E!eeo3\Y^=Kpd:&.m|OK+E`1qAG+CT4MnQa9)vr%~tZ O -ˆ.•:8@PvA5u19"'|p-IBdI6ӽԗu<TŘQû1,UoVB$Ŕol )v|aV#QDukG4n}4j Gށ+dQշa4[v FRu$ 2F{[9W;3 ] A C⦋>5+YW0mbXAΚ:p݆IZg#`EO GpoQD9l)b N ҈ qNڲDX"0F խʱdIO]*}A;>|H݊,你1~ji4/+vz9y{Z#_Tg 3:=4 X˻`Vșu&zR $7 o -#)׌Ak9OY-Ә6JnBD(FENnH_9kh w?טEz LP:iw!Np L-E=o|@zLA@d<ݡE_\y4;^YBKB_4)9˙ #-Y y$2^\lmBByE{¤-Q{~Q!ʾ*4k=^u7օ;ՂT "Cf^H2) me`c<ܡ1يmЀcQKv4b9(ڷj F|vtS^8zO\՟i+sy4,1:ԟ`+K`fe4$S@^ [c-6?+CA B)}؉"8qMRx8DH4Bẇ#h[a\LK:.o8sE /!cy@0^K[ٷ teP}I%)}MD4F[$"D]l ):ImF8prAU~/q,nRcz\5y.es[g,='5X ΄' C~Tx"*5nC_bR uqIb%̂.?ӟ3Ô|h EP$~gdʕĐ8D1x&V5)H"#Y-8 Hͦz\U{`dA> ZZtc7iezب۞IQ{ <5[J%xƣ=kE>RJDqųfX}%(tТ? b0 fT< /IJ4RZEy6&`3hF:6}8`AXw">5^}q1 )JG@uھuAXj<@B)qc2′1QQ~J>ΩS!BNZ];}ӗ0[N"* ?tCSJh'Һ{jW1>c-/GsҤV!hvMT7$6##NlqѷK`m@`:n?bHu?x