libjansson4-2.14-150000.3.5.1 >  A e9gp9|;06+MF۲ݎ-fNkŇopʼsr<2*CSTNf&UXy)VwGzmGcg\e܈s=?$X$ {.F{\2&V{U]_T1иݡLAV<"RNG\}7 r\ O kto{Rݠ/tTwpCswߪ?eC1.Gl*k"Gc07c7ed30ba7c96dfc522b075ecde11def91ea3684feed6ea565f1bf7a7f50dca60ffaa8a999e022c8336cf5c80e043c03538bb5e9gp9| ꂻiKS2u\H*_Cѕ{>|q;y9K6x@0O1I凤]7Z>eXGJ.,Q &H`l(# khoѯ|6co,D O&~HQdlm!ͪQC:f6[RZ|H_Z&:kIL> JUrkzYRvn>QLt) !My+DZEŒB_l7ǧ]Hˠ4pҹ D>p@?d  \\`lp     $ f |, T M (o8x 9 :V >r@FGHIXY\]^!b-cdSeXf[l]upvxw xyz4DHNClibjansson42.14150000.3.5.1C library for encoding, decoding and manipulating JSON dataJansson is a C library for encoding, decoding and manipulating JSON data. It features: * Simple and intuitive API and data model * Comprehensive documentation * No dependencies on other libraries * Full Unicode support (UTF-8) * Extensive test suitee9Hh02-armsrv2 SUSE Linux Enterprise 15SUSE LLC MIThttps://www.suse.com/Development/Libraries/C and C++http://digip.org/jansson/linuxaarch64 e9>e9>becf8d3a979a7ee8ea1cbe7a6466c0638614b741a99d4bd376cc409d67520b0elibjansson.so.4.14.0rootrootrootrootlibjansson-2.14-150000.3.5.1.src.rpmlibjansson.so.4()(64bit)libjansson.so.4(libjansson.so.4)(64bit)libjansson4libjansson4(aarch-64)@@@@    /sbin/ldconfig/sbin/ldconfigld-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)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1cXTZ@TS˯@POPO'N^Npstivanin@suse.comcoolo@suse.comefimovov@gmail.comhrvoje.senjan@gmail.comjengelh@inai.desbrabec@suse.czjengelh@inai.dejengelh@medozas.dejengelh@medozas.defcastelli@suse.com- Update to 2.14 (boo#1201817): * New Features: + Add `json_object_getn`, `json_object_setn`, `json_object_deln`, and the corresponding `nocheck` functions. + Add jansson_version_str() and jansson_version_cmp() for runtime version checking + Add json_object_update_new(), json_object_update_existing_new() and json_object_update_missing_new() functions + Add json_object_update_recursive() + Add `json_pack()` format specifiers s*, o* and O* for values that can be omitted if null (#339). + Add `json_error_code()` to retrieve numeric error codes (#365, #380, #381). + Enable thread safety for `json_dump()` on all systems. Enable thread safe `json_decref()` and `json_incref()` for modern compilers (#389). + Add `json_sprintf()` and `json_vsprintf()` (#393). * Fixes: + Handle `sprintf` corner cases. + Add infinite loop check in json_deep_copy() + Enhance JANSSON_ATTRS macro to support earlier C standard(C89) + Update version detection for sphinx-build + Fix error message in `json_pack()` for NULL object (#409). + Avoid invalid memory read in `json_pack()` (#421). + Call va_end after va_copy in `json_vsprintf()` (#427). + Improve handling of formats with '?' and '*' in `json_pack()` (#438). + Remove inappropriate `jsonp_free()` which caused segmentation fault in error handling (#444). + Fix incorrect report of success from `json_dump_file()` when an error is returned by `fclose()` (#359). + Make json_equal() const-correct (#344). + Fix incomplete stealing of references by `json_pack()` (#374) - Use GitHub as source URLs: Release hasn't been uploaded to digip.org. - Add check section.- update to new upstream release 2.9 * New features: Add json_auto_t to automatically decref a value that goes out of scope. Available only on GCC and Clang. (#301) * Small documentation fixes. - changelog from 2.8 * New features: - Always preserve insertion order of object items. json_object_iter() and friends, json_object_foreach() and json_dumps() and friends now always work in the insertion order of object items (#293). - Add json_object_foreach_safe() macro that allows json_object_del() calls during iteration (#230). - Add json_get_alloc_funcs() to allow reading the allocation functions set by json_set_alloc_funcs() (#262, #264). - Add json_pack() format specifiers s?, o? and O? for values that can be null (#261, #270). * Bug fixes: - Fix a crash when parsing inputs consisting of very deeply nested arrays or objects (#282, #284). - Never convert numbers to integers in the parser when JSON_DECODE_INT_AS_REAL is set. - Fix a use-after-free in json_pack() error handling. - Fix subnormal number parsing on mingw32. - Handle out-of-memory situations gracefully in the hashtable implementation- Update to new upstream release 2.7 * The json_pack et al functions recognize the specifiers "s%", "+%" and "+#" * Add length-aware string constructors "json_stringn()" and "json_stringn_nocheck()", length-aware string mutators "json_string_setn()" and "json_string_setn_nocheck()", and a function for getting string's length "json_string_length()" * Support ""\u0000"" escapes in the decoder. The support can be enabled by using the ""JSON_ALLOW_NUL"" decoding flag * Add "json_boolean_value()" as an alias for "json_is_true()" * Add JSON_REAL_PRECISION encoding flag/macro for controlling real number precision * Define the maximum indentation as JSON_MAX_INDENT. * Fix cases when some malformed ""\uNNNN"" escapes could crash the decoder with an assertion failure * Avoid integer overflows with very long strings in UTF-8 decoder and hashtable * Check for *NULL* key in "json_object_get()" and "json_object_del()" * "json_unpack()": Allow mixing JSON_STRICT with optional keys. * Fix int/int32 mismatch * Parse subnormal numbers correctly- Add baselibs.conf- Update to new upstream release 2.6 * Fixed CVE-2013-6401: avoid bad performance in large JSON objects * The json_pack et al functions recognize the specifiers "s#", "+" and "+#" * Add the "JSON_DECODE_INT_AS_REAL" flag * Add "json_array_foreach()" function * Add the "json_boolean()" macro that returns the JSON true or false value based on its argument * Add "json_load_callback()" that calls a callback function repeatedly to read the JSON input. * Add JSON_ESCAPE_SLASH encoding flag to escape all occurences of '/' with '\/'. - Drop defunct gpg-offline and use local source_validator instead- Verify GPG signature.- Update to new upstream release 2.3.1 * Add support for optional object keys with the "{s?o}" syntax in json_unpack and the like * Add json_object_update_existing() and json_object_update_missing() for updating only existing keys or only adding missing keys to an object. * Add json_object_foreach() for more convenient iteration over objects. * When decoding JSON, write the number of bytes that were read from input to "error.position" also on success. This is handy with JSON_DISABLE_EOF_CHECK. * Add support for decoding any JSON value, not just arrays or objects. The support is enabled with the new "JSON_DECODE_ANY" flag. * Avoid problems with object's serial number growing too big. * Remove "+" and leading zeros from exponents in the encoder. * Decoding functions now return NULL if the first argument is NULL.- Provide pkgconfig symbols- Remove redundant tags/sections (cf. specfile guidelines) - Centralize the shlib package name- Create initial package (v2.2.1)/sbin/ldconfig/sbin/ldconfigh02-armsrv2 16982357202.14-150000.3.5.12.14-150000.3.5.1libjansson.so.4libjansson.so.4.14.0/usr/lib64/-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.suse.de/SUSE:Maintenance:30918/SUSE_SLE-15_Update/a1ced0fb55d576ce4a58a9c69fe0f3f6-libjansson.SUSE_SLE-15_Updatecpioxz5aarch64-suse-linuxELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=593c0a6fd55084a978e844547ba381e0b5ea8bcd, strippedPPRRRRSVz}"|utf-88d81229d90b0635b2d8ddfb065ede4d8ed4dd00b1ee09bf87034b57a43c72a61?7zXZ !t/ C\] cr$x#I6yL.HZ׆Q>\S4t_#L$!^+EK#YNZ_5ƱT:zO`b/:7 |b'!Zؽ;8_.V!: N *X@_*KO#;xjb!v:ib~Hv\WYCd@yڅ@;At\ߝEK ~:CmK-2Jpq]^ykSiq{UqR4=>%kG 6"@n>܈ӽ?:r8œ9=oG'4MvLw 8yHHC 3`vI|JXh|]u7ne]HuT=0ԳZNi dpNNB! Gzs"ZO}!@@) R=ҁlt}Mg!qrw\E]gЛI>}  _'y~HgKgU(pQgYM8r0\ Cg:첯OǹS,Kl|}P'm}^PJyBIPCEq]?X%,H CYGe*Q(%Y8CEX5ᤄ^?"2Կ%T?aTAkfX]E%V!pҍƈ-y5\׶M^:DGI nkd-Me'ۺp=r8(38O.gFjSX̏ 7qFCUbgURpE`s5ɤ ֖ꛃ(FH_*3S'YU>@,m@4ȋNshtEJ awcq΁4X'ANMp9?ovj7ϭe``V1=0r )ʫCF;@qC8[ݯ*|-?GdӰBmuPxݐz`Á^dWYc[/HcN҈eo<5ށQyY{)qM;kSK?m+  3a:`@08@2ȫY[9m`8PҪsdxxQWFPhp0Oj)Yku*NRlev&MQe)C08c_B4۰DP~L窷r8]8:hޟ1!B;ϕ/פK]:Zph|*\kqd~%,Tӷ=o{On,:lڔh|E#G%ql ;&ȴ Mw{/k<P\pI.U'$5g&F`1- 趩Qz%DI.跩Z'RVةxTc{oPgWn~ uD)6B9 sF![`t1:e ѣzZS.rT|6eseeȃ6JjȂlbRKB?% yɑPQ~нv'6ާp6AC+)A7ڎu6.%GNDj xj=6QwYꉈJB+!,r/8bP$hQ6xgeMh6U},K(6nd+Q)Xg$Sft;>~u1vI"6O4Ǖa]&Tc~ˡ%! -Z45Ȏ$GnÈS\ݐ QL4g$O籸s ~@ݰ#C Љnn87H|DpHt<]ԕpc N±*+zY ~MOcJ?!&V] Y`.`GFǬ??EP$GnI&~tF"t˒Knf'ÃF1gdi7) ]D7pa, I=~kF+Y`S}2kUgݦ1rExvRFШrJE-7iG4[Z7ܴy{;cx0/LGFhA\5ʀ(Nxu~NV9`ݵW~r$08:l^rg{5d qYD5yȫ6 o)5B1닍Ik:  |EX ~QNm]Nӱ"3o>M)ty})'N6a0-xh2P*% Cv![ߒx=5+P;z\%5j z9kpS<#]gX(ѩгɱ^qpU2\.JQ1*%l*TQo _.`Q LiPC$GkܔQFxhsL;i:{k[OΏ ',; EO71x۬ l+DFΰު] dx_` $ObxYKr'i3e#KWd2O`h@8ÃkK.GC. #xEfˤZ-a6.0({ZT3b ͨ67$Ga=_TYnHgK2īK "0U~îFW4HrA|*\ 4 1bsT=RCD<=Y3충  hZ(;Ǩz7ӭ;H+JeY.(C@D<]å MU~z _i>2ȉ˞h͗2oحѤ6_8]S-&j XR?g -0>A>m#IDx8)ζ]]_25<7yM)fPk?Qzx:w,abN 'SZ,d8k+{jD*U~ !߰4uF}M;D`Z >wrd(\h&1J5nM)uKΨ/1bzLʲ Ѕn T= +e5p`%EfAH'$xejY+˥p6=cxC|&vj$iA9Ԑg9ݡ}t9i;DεLd-{'~f$mt!xo̠sGd?iYtD&x>œ1ȿ.5R!L͢ɼeͫ5j@8Qbn 'C#UF/I+{ߍNRم ]f^9O m:N{ROV4E(lj2:]&GRi*Vm \txd|Ogӯw>ոA݆R6`SM|ϔ\&@MQ(Qbw(!o/ʳduJn٭+y)G$p"{'+>3TwW,5)yռA f[<\]Wj6(Q׺y)]+*H*W=b~5R=3AZ[JwZSr2Fy,*)Kzrfh`*+~Bm71Ig!8(f`#F' (/+'i,^˰ʱ w _ZdxrDGD]3Gd^EyOl-O^vg $9hd4sVY/m!%E1c*l &f4-aX?@D15$P0SDRvY%UpzW\ B0avieқB]3nV5'1z/QֺE zn#J%C JkȪ'{ۥj Ceyըw5OE5 @5zq#pcͷx=e3#$LZ^!`3F$Zg+s@7((01lo{'w-/z٥#V^%#RcJS 2׷BI:3p< ohukAtRG[<=Ckܰ5 %+UL0lq Ñz HKBAƂ1NC;9.75M&:ӞUqw4^oZ;~wAٍqc  dܼmqIp 'ǿw\? =B p2X aK#;EqIOgܼK2C(zӯ$3 toKb( mXIRFcA*N^FB;л%+!S)mCEJDXR56awWkNv997#g"x¤fo}Y-grfFÜi3>p]̿TH &;i/{јI"fn̴(rF[n]G;Ѭ̣}S4'^tu'jV}5dl y|DQݾ |%e;jnV,ktN&ZŢľ$m>aƶ@we)00n:+B!eHYB{w7VjME{qId+n |FС5 DcBP<$jiHo6۟#&"x&휤:L0WBcK^P׬Q6i+YZK +SMIZ/ (\RosΧb$sVy\_@pfQgXX:G3uZSjZ͢XzIǵf3.SʪA@ Zt֗a0p16\R~nNMe`&z'JM(`9qRVRI7 u;ן;~w~ET,to7&"g$aIȤk Be!d4*B\='&u6yzoKp/ FJ!EeC1*0/LA-V !n=`ӳ"ڗۙ5vjmoG G*fUq)ӯKoq+̩\})^N s%JbsƅZzakq Ǥݻg!uo J9fVBM59~b9~W7Em zx;5k5[_äfWn,Aiw !R}4RJt\&@;ݶh)_or'#w'Yw1'fG5KQwB`QrdkI'qf^) vxeisXd3>ȔU0-OgFuh7fWc 4~$@bZ[/uR̾F14⻊K4QE ײGA~1)a1{1Ǝ>ğz攡\|,HNRZ6]zz%J#-^ŋѝxMxF OZjAEZC^y. t˶Bq*/Uhs[VE&^q1k'[؁STJ2ӕO\ (5j#/Pf˥VΞt&Y("D_ %]r("SAk̅6U {]*@:fBo; \^_kԉtu#dwj$;1ʅ 47൜UFHpVUfS,{#ߦ$)Ĺ:C9H9u>ѵPH< rVTKF m60Aфau 8.2|cu<ܝ_[6<ɵwg^AbA?fʌĜMZN,Hˤɜᶮ++MtLju(08f;2zW$bA S$%|+̘L|ѽܭ}m&49ܗIXL;P> :vzCUxֽ7s3l~NqZ%T }y5j+ҡ,cG_JS0igԥzվF 0Xiח&ekZ?^E&Ynw΋Qi"Q/(>JV"nE2-lJ)5rBdctѤȨcZԤǯhe+*.MZkow07B@]7 p ȧ:p3&cݦU9" )붜TD˘}|u^`{?㘮NXg҂-sfH8BeGթ{Ծ h] CE Ӌ5fyK4jgxHM߽qZKEU'yߪ?O˼td*#B.^zHNɲj,3oc\p7Wo6A62Ҙ7wU3i> 0 q\٦A$'dȯL&^HdjTHF}6znF}\lY7.@.51^à%Oc;=+VpQI PfVS+}9_su<7 ٺ2/\co_9ZxǤoZ4/g,S?)P(TY&P{422HLx?i-MKP&ߨJl }I@AP6W ۇޔW8N6Rݏ3~^} cѰ/79Bt(tcju7ԦC^M(Mq1[ $PfXх`r$Җv-8[LCh'`/01*`(q2HukfGV͹A״xubPeY Bh0P526uzX袠`f#7gvx1iCb\qwӍk1k&G`;]Y[1w!4U@Zg5 ;e /n7 IAb&Йdyɻemw'[PK?ef}{sOFHՋ?)kS@g?`J3 gHyț[Œ40 acoK$՝XAQ*3R>ؼ$@y:[%HLb9t]?{#8m҆F3]+?*z#RnF=Ag:ܖi9A{bDٍMU/z .m4e?vW.8\>1OLjx0ФQ cs( ayB^4߬Y5*d +3B p5LdJΜ qrc[۴<ԬkKG uyݖ`T~8Bi/:mUY+1Gc 1L/JBhSY.])-O ftL: '61&mTdw#j/'[C~fSۃk) "̳U8+͡p/'0dc˖UI<:0^`KZ hw){yQ"{Z>|Trx<?{쒺lb zHbHIQ&/70X*3nt zwנ;V1ӗX/+N`(#n!mXgrcq MvuDN.):pj"COL訳2kHE<׷W4 P]Le!6vzpI А]U;[Je`䆞l\O,U %^xwI4`X c0a d%CX,&FOm& j4;܉-BzA&z)wL.%\+,a,|=R"D:>L+<b҄!__ X,u6-?i ҧ֩9d ˺\zC%h ۛZBqYP50[a1, oMU7[hE"ցAT==~.%g3;{-jzx;  d~ [GZ[ >I/RA̐-IƧo1)S` YC&[ !f21=ҽEJ跆 'ck~y=ju68qq3%0_TAIGxQ>Nڇ*sh_" Vpv*opt:l#µ'3vP<,@Ur1e%JN6Dcchn$--_7 %{ȽIC?_ vW̸G_cӁ{~-4qy'kYKKA½3b>mP?} `i QpL {܅ʅVp,HPX3x6=kB0j 0Wzdan󝶹Йbƴ5+:eUlvdX!ujLF+xĘYm"Ns!{g(x1půl[l>DJp|m`{6+b(9̡ik,uF痎'/+6s7VY:{SSB!hj*|ϝ"gСQl{ WK|o7çOQJ${^?܋+y݄( GmOaƉ_»Drڑ.Mb8:ѡ5Y"<m_# l2tNA  Qm2 u6B-[D\F3۲zP:d]Aݻ9X݄3b/ ˸o)jVbD+5- fcA;SgtΔh˨W=6+A+N{Xm x5 `JwoSPNOYHI#H{,@PhAE4+w꒏%),-cȗ/Hxfw! C!smwr#TYt))g5Z.񷪓ds"qVGa% x?].x/YG'Eyb6NhSO&]""%J$%y.Brm9Y)?)[s7h$\fW?lUeh"줕R%DzC;rq5vgiA3%䎨%)Zg2 7$/ bׅV:=W)1 ' U?Ѩ 56}81p[׈J[ѶC@*~-*|֙"8ͣ$mVk=$|%R ta_=^3[FACYrȴy\gF9!KY+`.Z6ALI""Q0;m6x7HMt7#؇P6Wf.8Y`Ea^Odf2TkDEu _|`V5ma7$ 9q6z|H[kλ79xaNE3WΛdyW-FmdY)fb:<*T zZgrΓ{S&DdiM Iw E΀Л$[VtLFBѪfD'H4HqoGp^e UoDPgB+@59Pŕj7Dǯ# 74TK'@Ύmcvŭ1 CLu2XƬ:56}Kgko`gOw h$|}$dOU#Xio6`i<$]~ 6HV~u=}E!ۧJ?jE7Ey*o/V 7N (qWw&B D{T"(ɏ$}3 PW7r)M! tLbO=!@U`s5%W+o>,+z eZbbVUK-K%azrMGV/3YС@aV>rW6Px|BimfGEdV,v\@M Χ0{ePhVi<(S2\H#[ n64h3v ;@pċd $]N'q)|C-Pnp N}FXz*c>mLr`C{Xj& FTBv^%r 4;DTUT<|QŤaC@|.xxim$|Lc9W='d1{R?Ʈu1`T-;.L=! ,4OC!pvG[vYpIZv' ؏꾇ꎊXjFL."CXGh2tDXP*h]zD&E`d͞եMC ,¨Y"vw/1;v2Y7˃-8QENV.SD `:_3y"!޺iˢ/r-&ߚ|-Wa3 .HGS-T6ܛd Q[8\|5VtN݁6PL}b^(!M@|k{z@^jHU,6 ?@/i>ѿF.$:H3PbX G]gGaUkHZ4gkjVlx ]4ccRZ$\?hГL&Ӊ"9ankI5oؐwCo<@ W4k@\ږࣖ (jbЩ^ugIuĉQU}n] |T;( mSyp[ v}^&z]P)epٚV[Nqc:4-I"۞Ƀ$Y_v~n6b ܎߯&)_aå<dD (]USLj;ucvI]z~9M7f^e@ZHiUK?ķ;chuz-ӷ~ć/yJl5ePiy(_xs/vT>a05/>:V:&~LEv(ÝQn/Bo<IxFI /*Me+N)u+9[[X܀NĠgUI׾jv qf]lW#oDy<-^6%"z'IC(W F"7! BŷdY/傹8NHKrsb4ܻ,Jn=v:+C0)H V6oߏQs;Yf'1][clȜu-X샮/\顬*xJߐPً;Xn=CqT`AC`0]!QL uŽr؍Ѭ⥡2m**7r籱9ɿjAgL}ArZ4+9Jn~p꺌 )d]ص `,F`z7~&0h 2]BUluJim+( nOy"qA#llټ-ͫi, |O-z5 'M;ZUjNRrRPii3]7~ 6a!d %*u D۫+4̈́_I)aO#$|du`=ߒdo˷n Qx*?4U/vqKOȑBiDpb"{R|[u^;i;t@!&q1{tp2rRr|ݼ@pЫb D>2ryE *VLH3H'&pΖO>26EG%t?Hw=^.SYj+Fq=zSh63Pi迮~q臢4О><#Rv fνŤd7RdOߔ% JbۗmdP0wǩǷrѹt(9L:6*Opͻr"]&(`)dj~}o!9]3x$l-E=Բtx8 Ƣ)lݛzWZJmƚeGZrSN-T ėa;V@}igmk$J>`]m ?Fc?puN>:0nPvTA>PW%pGAkKa۳]] #NQ\ 1nQy!p)ܽDzp#fi/!~w~u]nQ#/j1i"š"! ""ePj:tMmrSEj}ޕ'S6̚Q.b" fe,11kS \TdjDoW/ß}1҇j-·Pޠ8lД4?tva4vrEY-)4. jpLבgD{ $_C})ǀ/WHp}QMP#SOqgLPHx[TZVlc+Y,1Nҁ!2 ̦F*<,3;@#- iʨ`ee/rfb3hAuf`v }>K}K)ޏ& אhɨaz/2 '0Fgn%:]N-|dBRF 7pꌁ:;Z>A DIIo; h[hyMd|~mUxre!kht\+rTؙ gPRcq:D~V"~s&NBa/ER8܌.Ͻg Q8pn qƕ%<~I{O igVj %6t'*'VD0)PGΥ: F9Qxm?˚hV9(eINÄxv' 3{,FRdx8R$eZիȸxDSL ,osK\ͤgW7x f3ocQ ŚiQ},Vw8<6,5dHA'<q*'|4 /j/Qhbڳs8pp=eRʮ 1N9~(teb{64ҫ5Ag>r h~):x1Pz[ M ;AϱT g%3)̌7RVYQD!"P.JUʴCQTҐ @bg`NfJp-M/s`R6|]ur`A#r&X<*L~051/S˘[o7~7bL5߃RWF{e!Vov)lۗ`IP*B6co~qc2cwHEGqst> D"r8Q-/j-ٶǐ+k]RRx`u-_H/oiT^("5C}vJdmMӿ93 Vفģp acBKk6r|kړHY{Ky?0-8~+Q~KMp}M\JK|J;Y%c.1)jֳqz9`pVk,Աl׀z **&DiPx23f Mߑ?'Nٓ?^Ƴ]+(kd}WֳarX0:n& 8hRM..vv`zAc/@'[+-3>Pek+#WjM,bO4n27لIϢ=է;TUa]mlz%Υ: a5.>nAvT,3?g6In7 ӔNkڵ?gȶFQ!ֶ8i+PAB65U5XDk:uq ǝ i+%5CU` bx]4_b-Cpq a_ߣc?F!Oh$vMNB_94\ #83)*kj8X?Qax}=×;c[TYfc6I֪`i$?`{n5s~4!qST@*+qKj#(]E^-H1#>ԯ$\^?,/9O|^d8邑(پ Qtw.A/IצGy%< ~#M)-Gwp/^kQuM d;~󕄁r<ԯ5hct- *!ڪ6(4HcrR'aÔU23SdqTJqA6w2TJg^tvaI'q 3,h=\m m#70WEV8sv9op~#ޝNОHcFJ+zl+𛗝 IPA3;A.BI6NLaC7vD?]SPl |K;OfsĖ[ YZ