perl-indirect-0.38-lp152.3.4 >  A ^/=„Yy|~KlN.{!$%[]ۂ1F+.FoԪV @7ES-ԉ`?ZJbDd<ä֗ S=(=F4ϓwx ڹ#bw)[pH[ިhDL`~ԞrD*Yk.61v tWҌ;lf;z~%( zTäz"㯔2_ptqb.X>p> $? d  Z,08<OXq      ,  T      B t    (&809H:FG H( IP X\Yh\ ] ^0bcJdeflu vwP xx yz Cperl-indirect0.38lp152.3.4Lexically warn about using the indirect method call syntaxWhen enabled, this pragma warns about indirect method calls that are present in your code. The indirect syntax is now considered harmful, since its parsing has many quirks and its use is error prone : when the subroutine 'foo' has not been declared in the current package, 'foo $x' actually compiles to '$x->foo', and 'foo { key => 1 }' to ''key'->foo(1)'. Please refer to the REFERENCES section for a more complete list of reasons for avoiding this construct. This pragma currently does not warn for core functions ('print', 'say', 'exec' or 'system'). This may change in the future, or may be added as optional features that would be enabled by passing options to 'unimport'. This module is *not* a source filter.^ lamb55 9openSUSE Leap 15.2openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/indirect/linuxx86_64i&=#XAAm$A큤A$^^^Y&^ YWYd^W^44859385eb6db8733fa2259ceeb39ffdbf9fe92dffbc978a1a35428667d38c46aa00644b092d81afdeda27ac4157575ae73d0ce814a2ac5c26c7f284527df3eb31b4b363da58efacaeee2aceb3bc4e5b3f1c56bdeaef285bbf3c4ad1f6240cb0f54637db729fe7b9b49076261df3bf40fe29d266f4e61c39ebebcc7142761fd870e7b5371b7dc6ce598abda77245ae9d19e7c221fc19c00c77f204c68f2faa9fffa9b75a99e1e06ef80983d551b6ac6e2edacdb2fb1e9632a717997b5d7ad5darootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-indirect-0.38-lp152.3.4.src.rpmperl(indirect)perl-indirectperl-indirect(x86-64)@@@@    libc.so.6()(64bit)libc.so.6(GLIBC_2.14)(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.1Y@W-@U?U+SN@coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.com- updated to 0.38 see /usr/share/doc/packages/perl-indirect/Changes 0.38 2017-11-04 15:40 UTC + Fix : [RT #123374] : Compatibility with CV-in-stash optimisation Thanks Father Chrysostomos for reporting and contributing a patch.- updated to 0.37 see /usr/share/doc/packages/perl-indirect/Changes 0.37 2016-07-12 16:40 UTC + Chg : A large chunk of boilerplate XS code, which is also used in other XS modules, has been factored out of the main .xs file to a collection of .h files in the xsh subdirectory. + Fix : [RT #115392] : Intermittent segfaults with heredocs Heredocs should now be handled correctly. Thanks Graham Knop for reporting.- updated to 0.36 see /usr/share/doc/packages/perl-indirect/Changes 0.36 2015-07-17 22:15 UTC + Fix : [RT #104312] : fatal hides perl errors in modules no indirect 'fatal' will no longer hide compilation errors occurring before indirect constructs. Thanks Lukas Mai for reporting.- updated to 0.35 see /usr/share/doc/packages/perl-indirect/Changes 0.35 2015-04-06 22:20 UTC + Fix : The module could end being disabled in one thread if it was first loaded in another thread and that thread was immediately terminated. This is now fixed and should address test failures of t//09-load-threads.t and t/42-threads-global.t. 0.34 2015-04-02 19:50 UTC + Chg : The new environment variable to enable thread tests on older perls is PERL_FORCE_TEST_THREADS. Note that this variable should only be turned on by authors. + Fix : [RT #100068] : add link to historical tchrist post The link has been added to the documentation. Thanks Olivier Mengué for reporting. + Fix : Segfaults when the module is loaded by several threads (or Windows emulated processes) ran in parallel. + Fix : Update the Windows ActivePerl + gcc 3.4 workaround for ExtUtils::MakeMaker 7.04. Thanks Christian Walde for reporting and feedback on this issue. + Fix : Be really compatible with the optional OP_PARENT feature. + Tst : $ENV{$Config{ldlibpthname}} is now preserved on all platforms, which will address failures of t/41-threads-teardown.t and t/50-external.t with unusual compilers (like icc) that link all their compiled objects to their own libraries. 0.33 2014-09-29 20:20 UTC + Fix : [RT #99083] : Breaks eval in an END block in Win32 pseudo-forks. Thanks Graham Knop for reporting. + Fix : Segfaults during global destruction of a thread or a pseudo-fork. 0.32 2014-09-21 20:15 UTC + Add : Support for the PERL_OP_PARENT optional feature introduced in perl 5.21.2. + Fix : [RT #92806] : Tests that use run_perl() fail on Android Thanks Brian Fraser for the patch. + Fix : indirect constructs will no longer segfault while inside the empty package on perl 5.8.x. This fix may also prevent some segfaults during global destruction.- updated to 0.31 + Fix : [RT #88428] : no indirect in eval can trigger for direct calls on __PACKAGE__ Thanks Graham Knop for reporting. + Tst : Author tests are no longer bundled with this distribution. They are only made available to authors in the git repository. + Fix : [RT #83806] : false positives with Devel::Declare [RT #83839] : false positive using ? : syntax Thanks Andrew Main for the patch. However, please note that the reason this patch seems to fix thinks has not been explained. + Fix : [RT #84649] : incorrect RT link in metadata Thanks Karen Etheridge for reporting. + Fix : [RT #83659] : false positives Proper method calls in string-like environments (like "@{[ $x->new ]}" will no longer be reported as indirect. This was a regression in 0.28. Thanks Andrew Main for reporting. + Fix : Broken linkage on Windows with gcc 3.4, which appears in particular when using ActivePerl's default compiler suite. For those setups, the indirect shared library will now be linked against the perl dll directly (instead of the import library). + Fix : [RT #83450] : newlines confuse indirect Perl sometimes resets the line buffer between the object and the method name (e.g. for "sort Class\n->method" outside of eval), and this could cause direct method calls to be reported as indirect.- initial package 0.26 * created by cpanspec 1.78.06lamb55 1589629706 0.380.38-lp152.3.40.38-lp152.3.4x86_64-linux-thread-multiindirectindirect.soindirect.pmperl-indirectChangesREADMEsamplesindirect.plindirect.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//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/indirect//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi//usr/share/doc/packages//usr/share/doc/packages/perl-indirect//usr/share/doc/packages/perl-indirect/samples//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.2/standard/014dbde429fdb3c904ba86222a027895-perl-indirectcpioxz5x86_64-suse-linuxdirectoryELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=1c006f9aefc83ea7090262a701df5e4123f6a084, strippedPerl5 module source textUTF-8 Unicode textASCII textPerl script text executabletroff or preprocessor input, ASCII text, with very long lines (gzip compressed data, max compression, from Unix)RRRRPr9,XcWH|utf-822e864699d1a9d54f2239c6790b0a0f1620362c61a775d9ee636a33466685068? 7zXZ !t/W_&] crt:bLL 4iݚ;Je}3j(JwӍ2HWQ hAZuR#WƏ8$wowS|&P1!X[5d5 A2P%h}ʟk A;eo|aK2?!3\.HWK8Ho]ȑ7lE3 [>B ;iO.gE5UGZZͳHnB=x㳉RM0<]фƍYB&⡯t nȮɎ;]S罾[cqU_@K9eg>iزhtI935H=Bfu-?5 LJG/<@8 KJJ_%M6FP;y^3H/lvnߠ.Q`S[^{ Oh8& C!ditaD@ư|>1xFݭ^sRZݚĒ`"&O"}"M0Ȱt"Za1`ƔyxC}loO<=yj;&`pgwȨ%/l`7Ig4ކP2û:]wumDtYR!!請,P٣-hPy+"gM 38+ېޏ\urkH gғha4ZQuE⶯*r'_$UN-OU_b/ UDIQ gxp>Z>#A{]Cz=#NNX?Qb>{(rB2N`_Ke3-ZvHu\bmGCř6kQ;r9zFW fx@;UNrvrNE>ց8P7M:zE*(FpsvYo}i'[(`48[?2o^NewmFX2F$\u+"I^/7 '2G<-VLkmd'qqE6b!w o .JtMnq_J>RQKc6V9j6$,A+ਏ5<=nO7LCQj*tOAGD{Âr dPKm啂h*#FkA~;qӎ>w]q#h_9ڛaӗvK,T`l' &uٱ Wi.۴C(`*ְK)? ݴPt !6 -3v͝eewfz ƽURxL1qX{CEXE=C1F:rFT{[aueX@8/cEߤ>oU뱕b-$B :N#^z¢,p"3Ʌrئ3M>8o$ tU^o? چǭkyЍԉJb5X;H7VOݺqRk mc\S+=ځd."ݵ^=YYJg꣉z% gtˡ>(L袦u \3DXmˇ^Y%Y#:9i)CyF,Ԝss0NJQIH@԰hmxtLAU<3S(&䗙8(>W|{;B! L?Yq gyX / ãS\cjy8%%t-yXB:+?B#1 _)n&ҋZ&iɩjI mkG˦SI:lY[E&Hv{&.UA&e7H4J̤m@M­☝hJ^ڲ\rq" xڙr٘luyBx g4j-^? `4'ڦI@nX&O숷 "hs}v]/6$0+S{Cn3i!~6 c#nkcip27`3TC*%? E.$"7$\!Mu_p@-i Cw75!vfى5nJ&dVWBi` qkڕ yÆ HPLF6"_LSqwk I0Lhx,xI"W[W36%jb3Ž5KΉkƠkA͞c PNPޙv#h&bdǓ\~ve[M#`Nrs+m2ƞ*z.kHӎ>C?||wa؉uDjk Bp$8$ uX-F9 yF pzbU \VIMЀ3vs: &myfnJFȏS5Iؘ6!Nomt3h 0/Һ۞QR. L]o0ԁ2ڎ ߠ>paMP'(19]1P yAJÔs# >޴d5UL}{!CӸɏ}3X6FѼu/:9ߡ\d"`.R!T=o ,htH5,*+UoTO!S(-)5; TYYf\AaL) bK$KaQZrZz1|jϋnB7=Fb&q!ilw% m`,x[T vLhK0]R-[#^W<.%K (2 -t⑩Xx^/=`0n v2^ "ZEv j>Dfl-Z#OyCe)ҒU^c p=SV:ӡKGC:oVJaZ, l=}K`E:S˕uݚlJ-҈\8@1U$ G:3xWHbR; k*l?:G)Y~|^ 90rTeBxmGR$ qy-_j"i73.:AQ뛖<ߛy}N)d5e0Y!(:Oռz?{i"5P-'~vԞ0yD]JIYI}z~X0YӼ32Z#BL &&{oF6pTsS:F&_ VU>˖8_/+uɿq΂#&#Ȉ}#sH;F1@HHBr<o~pc$,A=?Mz=C;J  8wKi6ݗQ.$OS&L~==`.Uvj r/O!{6b;dgf` *AsAP/?>T3V&@o|L :Q`%( E3^jzt^9&@6?%2Z0}Yϴؚb^q3YT$NroxC>PdA'[%Smt-ޮ*tq;:=[AXnZ3Fw"T2!?.(SRX"]8`W(QVp噛2¯L16V.8+U};Q vFV3tZ{dLϗ.7Mۘ7`3Z1LPVr+j&ޱ׉"0 M-%@Da0QaMV-uä&vV4@AFa`"xڠ-] ]2 1FmH`UQxSB@Շeңodzro,ķr"K?ț[KZX}ƅ..bt${57nQ/g^oQo-Ҿc/Vޭ{H\lG%3^yqQ)>#gZf;J1$`c[<>/Ci+Ovew6L T驀gxrPUշ)Iǰ綱cNvMfG T/QvWb>!r5V/=Yz>`|ViWWjYR'Ob<+x….Șa_Ġ8lpdDtDֶĴk;TT%2/ 5g.N^:\mQ'K/rD1j XMcwMB&_&fwilZQ(d'`LmkWHf@vdzs)|y~nWo'g ptKIw24_rWa]K^z9 L<FQ: G}>{ 9KZOY҈/h .. M GBW}zr ʝlݍ {zM]*jzDػũnZâ D>-l}1-Ay&Drzk]hEeW{l`FP۾+p_ʉ D}lwKi">T2;Wq1KZ⦂I3xr4Ӂ- 6O6m ̬TB̿;H򥗖 ַd%$;pU+<%˔ -FF~np} L TF3C Os6qDAKnΚ`QYKLA0͋9cٞ~&t%JȠ{j'u H01G֍~FsjKƥĦo wݤLPoߋKaC܁ Ҩ'VHh*ʘ8 FN<F.2OSԨ t[8 qo-0v]ܳݘ+ ;pɐ-J.;{y;,zCi[9Wc׊>~MhS-u 6sj\c)9k|!ZdiAփ0˄#SоAr[$M|3wTxh6!K&T6[P*֤9^vPR @. +ImOy@6SGebr5\ܒDjv Ψ 3ݚO`@G`:n=@<_gydcq/P֬O Hģ V݀CO*cXQSxJ9kְfk1Ŏ=L+zŪ6m̔7s (4uhqf3DDhV &xa7NDOz=(]fuГtj6GXRWS?5HWNbwPe <`efEyt(+~W38۫s/jp6=V)}څ={@^ sIwYOV124u͇`YQ0}W$MFoi  PEŠUiWd2:v9kEZgpg[Ȓ`= TK8񌷥y1}^dBLJb'O*OAbQPPY=(=,/cG?%E@΁DiZmR5BMۅBM])Z\U)RP(.\9{4MuiPt]ԚmOzlV>~tZjQ Jq::=qr_̰L#ֲm}z+L2(9TPԛw\fayA6)yJ}UXG79G 'tQ(_Efy?Y[].M eSx8=y W,8}wXXoZ]뫶_66ՓBroV3Lg&1R5FӚU8*9*\pFhLzuoHaYGAQ~g, otiI^f,G⛄7}`i@3cSa ,hVõ:QqL{xɹUOTU&?Z8wlzUJx*zn/F UjdQK*KtF[? e ?k*գky%t$ov>{  ?͗`G?rSs4K2dTkJ7?(CT`#)1mogPebC#\re9zK5w  W,Ɉ Xgl4S PChp[$\FxWQ)Ξ8H [*01ɂt#eW,!qg??-N*bE.\7FMnރXA; 3a7 7$OrU<! &H3*_cHDD-PYb ĚO@0\ӎcO_Z;ɒs JKg>q|U47Lf)gJx8 K((;)t_e<·Fe|DXb%NBJ|Ok{PK>#ay+w'!TϺ9U'7߂Jd*hҢA. nY͌bs}L*LϘI` ~b%;xwR$=/3{4 H٪. e!&< 09RG~nlg`8nXD6?e ~ҟൎC࿮9ؼOy_=Vpʃ?7h⪓8YNv\H^d@Z`ŵiH|ޞ!"s@PSO35I!=J_Q5XX;E,ܢVH6/7 >bkՋ M/枳*4#_sGs+i a9HfHhYt'6ȠuLƒu#`gJo6'v2Ei2z_1 IYN `D ixLn|&cX Md-AFT\C."~^6@% WO]Ȫ\ PBDt(۪۴q #K~m`n܏ۥa/dضU>ܪ>+!kn|Ԡ3G0Ft }~bn_MOT$]{[;l#U3Ue<mSScHT~9` ŏeuw)KS qS2n>Wkʩؓ4~>滱X9 1=@>_hqPLxʂ˓b7zҙfNR_q.{h[΀A{g!gi0{׃YO_ޱv[*˶TbЪNZ21a)#|\K9$ {c꘿~@ wkw%ǹb[<Ǫz(YVm!8Kln LcoU"Z蠷` i'T?E[/k)tlTWBs}VO\P;,'9Nt`)[:]pIr r$d`b.|9S%;~HCw2h\A$'N'\g#53bBa2CFq 2T-E8,z,> nfyUvY9ՠkxt3S?]'H(́1;ZHwxN!;>k)22`e!vﴒ?Xj ׬Z?>u]?왟Rl+Z5tu'E2g,P?]VRW hŨF0Q&]RB'N8b*a9>ܿ@hEvP.Ga-_C.䝹OŪ(5S2oY9HAs_ݛ+!?O*H)-qGٓxںG2;n_F*o4q0uQ$ϴfz(L9%{Ǣ e:zL (*-z `@jVOogs"e:[c|Q^z ùAqjnX$m?f^=m"2RwnLWʚ{$+;x8:h5T>*\$Sz}Tsi(X)UIzC[J IdKAOFNQżS `$ YJu0fzJgW3éa{=Y7{vՊ\hkѮz .V1W3 @Ǣ\0l`ryǀK,& ;Kll">b.M=DzCy,@<+Vw1=ӑGq"˘T>Lң ؊v sϗ9mτR8GyR } ~ڕEU*voٷ`;>7Wł֑80=,їtGh]slwl%ƕJ.D*$gM5]Z*_X 35#)T'5V=W}9|א-c2mC4Ui7D>^M/F'X5Zmbn:V'1CUtO=^2[/1w '+\`3ӍHŅv7=#LE棂4O^?4F'wkjɤ:k*a4qTCM8ƛIED&($l|wҵjWԐ}q!O2}>!N=@.i@E32"25|ԫ[B6V4 `oPC#PVYC_,4%Y!{GfIQgXw):4 &K~Syd}@:}_Xikw-%Eh_ Pwf0Úb7|0 kcpZz3[ݩ}(_Ù3n6=I}5٦Ɩ$fq6"|Svx#rG.O BcܾgЭ*]y_v{ 簤Xkh-ݕNHk&OV^I+ZrD|ipYܠ*x;`zhn1RK+ڕi~_Ns4_4%#`gSBn,ƃ(xk$rR ݡc=Wt^"" $mXOQzNgm\S3#Y*|\MU}Wۊʃ!jnFb<|{ cd 9hS&rJ(ե j%CG9wINH:{ۛ\GSÖ? n->BVH<%tZ 6ݼ q "vNn#>8EXtب'l- Ɛ$38gXЖf~*,I&jњŬD].8=4 Wkٚzߏ $Wvd{g§a NYI,H`sghZ(0S_ݝg)SB4%@M{"e pO%}\]O/T,v^FtLY6N(ÒYy.Q`$2H-| iy۞︀NrUps6t @0f8ƞ'o)#듯,\ Q# F Z͵ߠ]˛3[1904  ?Je'>pa_S߀?S7o* 78SQM4FLꃉDM ! L-/؇"9Oe[8ޯ 2$ @!c/ zeTMB꬟tdHq;-呡|u\8>Ƨ' ڮǔ~BL٣D N<^tG0]?ϬPrR}!s4"XTDxK@Yʲ>es (q6WfOϒo ;SZZ !n瓰'HE9U4sVm?|`N&W]_dEOeT!ɼI|6Vmu,< T&nyҷ!ќʠ$)!J|( }4->>`Xr \!|g^3YddYǘWVszpQ5J ug887Q1$t/)bSu%d=b8PQZ# 2&οJgZaPI,E/B[dɓD:0Z(gf2m=403bИ%2p*׸IUQ;DdoA'Rt*ݳz4€ruy)u*Z嫰$.3,Gܯn:K2оΜژ=;\X^ɩ++D7DI yc;~"EOwQCڙ乮|(X`+$+(ZfT8ljuJ3 ju]I|2Nu_ "eqX1QbQ CrB`0צ-b@^q"z~3`ۍ~m&c1(xfϰ;,v /;Nd83A=ȬsWsyC"Reri7Usxض7~4rj?ӀOmܣN5DĦ5s۝MhxRE{[7*mQ2#dW)3vzW!`S7DZ1OV^|!rUeŝ&HSy;(ƅD7y:or1u xie#'`bEuI}3!^ g&٥\'E!Ai^DZKhΓq.8`̽erqbݭ{<l9n:vTU~ ~irF`?'8I+i"N|B*F 1 s+B1Mk75ϖvf[[ߌ?%%lJG+pƃ=!oRsczWI5ԭ̘g}gi>qdhuAwH׀3v]!x!o1 -t6!QwߤīG=I=mB;VWm eWA)c CT@F.zo8cسO7EtBʞLP {:XFIPV]@![-==eAHn u~_iZM\@ί$o\oK.g*4d/^\hRdȒj߀n0CDU|Ʉh`. Y2!΀y>|Xh$:Nqtg6s#|^FUM e0w)POՉ.aQ}ֆgx B/$='S| dIzPFbzq2mS4ȪSbj)U'5MAGTE>|FW#Q^-b%&ODJmMfS0*8ϋր\hp 5ܣCB)] @fIJ4!+RNيrN7[c3$md#.K2Gx-׀7,1]F(lPQbd6?{0NUUƄ`ݾu=Я#WZV5cL)|{LA~#'-¾tQmqҿiK)0?͠GJL.B-.8 (@ 2c}6bI^?mF)-A^P1z8 T7|hMtnmZGY E[WN `DED;aV5>сl OAv+׉mM)Oه=[6" a41yuj{BY3Ğ|մ)֥Y !{Gn|"[Tf\721tfj^0^Ɔkye," _O:mtO 7S4qx"Q%yQ\CPdw(uGrB\3u.#f[yM<O!@ZJP}Dw`wlŊK 6<%IAomJԕօ 1 ]G O+1jf!M?[+1J] vbe6%Ε>W7 P ;ƛBqu@8[aJC"R{q: @c HY<9#X0{]&V1iOPj|/v?bpfZR'/ò ˲4Z -1o8~~ExXc+R2G8mF_PBC͇ VMkfճD)57P_B23Տag5z%$Qy}ӕ.:m̶@LeH_j3˥:+t;Y[-sj^#P:`1-ˉH[d=D܇Ӹh˫զMDy}af؎*ce`}nK_o0ئM|RZ3pLUPvaZ!w3CKM 6L }3) *Kz{TSsbţ]vch1'@ǽ@Yk0 b:!v\ F163V4#m>PPB&QD9 $PqE@A ?BKXNvvBV-'['HGo1/}Sabf2z3+݉B/ ,nB#Ao ԙ]V ?w[;l?I̿D"l37i 3。.1f݀ȋ*-KNZ(pzyD D6!j%G}udD$5#-'_6Jΰ^dK*hp'HdYٛZ Y5 O:{˻r1SY B3,BPLd2P2?l*E><9ęs:Cۑ1ِ7L+0@W|s?gZH2q(W$2im/>T-גG#d@\>-!M&)3ď3(>) Ji?1VkEt<Ӊ k E'bt'4MjtaG2?؞+(\ZBPp3s  b{cR; (If&B$Yħ3a_Ġ߉m2om21|A]K\GϜaRZ=&JAQYm=t/:8%h}t;FwӕC>1.q1\Rz $b%v'nԁA.n`ԯ+k&|ԌsIzboq6M]xP[:_* zU{z4]2w@JP@^@r}h}K ug~D*/3LJa]WyG=m0V_u>#19yj }C^E26N,@" Ovǫin;* WOx TЍ΋2[g4$0} /jd_[hϴ߮BI19SEЍ%D"I8T)2C:tV:҃ոbi9qO`Dk/ XssuNW8mTC-8(} u|wL]-rCefBGk$}*D{M"V9,2Pryl1OL[|#07Ss茌tI莥jU2ٺ͹ v^]g< ޜkZ 웪kE|̟\Ecһ;XZg˟MOwq$]Vvj3DXL)boՠM"KRϿ=}WjS:.4L*ibqk5Ip*uO|I"(׋Vɏ'te RvY'!9plF9}+S!3KX)]ǍZ(:|a*oWŌ% +Qp EVBGݳˡv'Z)Ր`sF;Q1#k^5[%&Jm/ZOK3__>h_L{73nO#VP cQZI.ZKrv~s0zI\BA ^[TG}hK\]ljNUvZi'Ǻَ&/c3:9}pn| 'k;"ٷ#\ՙ@ˍ~ tKa$-(ȉ%X6FvQQsw: ('\M*Kk^:~CU*VX&K]"a) 1=0P]UWSP.W?i}nH0.[+x&%i*UHA$g*/ol~L {jj/hu֌<,_?Q7-<)&g q!i'|GQL`&ef姨LYCxbwrQ19 ո(:H׆˒%G/_Nrȏ>s2frLTz,# B女1I:s=^e0iBn;]̲J Ej(kf(Aԙ6b/{If 7"Mk:JێJ0RL4BdhI#54#Js'=&?_TÃ'Kuh>qsSG?Qq(Ci~`dX~"#S?dLD/DRP!Ḱ'TJio;祝fT1XQ2_ھؠ&KM YZ