libjson-c3-0.13-3.3.1 >  A aywp9|ǝf}f$\Iǣ([=*q)w(JN 5 >o1WzfM8 GYEh7!D#p)ٯ\} 9C;B1ʹ'<:/yKw\%a>#E։ Sb-"^7RWUA^ ~P3^(u*O@ɗ/R}vK6)5Q`E[r{"Ѕ|YDa9dD' $7nJ >p@- ?,d   .<@LPi      P(8 90 : >)W@)fF)uG)H)I)X)Y)\)])^*b*bc+ d+e+f+l+u+v+w,Xx,hy,x z,,,,,Clibjson-c30.133.3.1JSON-C shared libraryJSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects. This package includes the JSON library.az s390zp34SUSE Linux Enterprise 15SUSE LLC MIThttps://www.suse.com/System/Librarieshttps://github.com/json-c/json-c/wikilinuxs390x 8A큤azazaz Z69687e7f4cdbbbb6b1cbedf14012c6db0ce133784cccf083179b369e8cf85bc674c1e6ca5eba76b54d0ad00d4815c8315c1b3bc45ff99de61d103dc92486284clibjson-c.so.3.0.1rootrootrootrootrootrootrootrootjson-c-0.13-3.3.1.src.rpmlibjson-c.so.3()(64bit)libjson-c3libjson-c3(s390-64)@@@@@@@@    /sbin/ldconfig/sbin/ldconfigld64.so.1()(64bit)ld64.so.1(GLIBC_2.3)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.2)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.8)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1aeZDXӸWTl@SB@R@RʚQ() - modify the value of existing json_object's without the need to recreate them. Also add a json_object_int_inc function to adjust an int's' value. - json_util_get_last_err() - retrieve the string describing the cause of errors, instead of printing to stderr. - perllike hash function for strings * json_global_set_string_hash() * json_c_visit() - a way to iterate over a tree of json-c objects. + Notable bug fixes and other improvements: * Make reference increment and decrement atomic to allow passing json objects between threads. * Fix json_object_object_foreach to avoid uninitialized variable warnings. * Improve performance by removing unneeded data items from hashtable code and reducing duplicate hash computation. * Performance: store small strings inside json_object * Performance: of json_object_to_json_string by removing variadic printf * Fix parsing of "-Infinity", and avoid needlessly copying the input when doing so. * Fix stack buffer overflow in json_object_double_to_json_string_format() * Fix various potential null ptr deref and int32 overflows * Fix a long-standing bug in array_list_put_idx() where it would attempt to free previously free'd entries due to not checking the current array length. * use uselocale() instead of setlocale() in json_tokener to behave better in threaded environments. * Fix out of bounds read when handling unicode surrogate pairs. * Ensure doubles that happen to be a whole number are emitted with ".0" * Visual Studio: use a snprintf/vsnprintf wrapper that ensures the string is terminated. * Fix double to int cast overflow in json_object_get_int64. * Clamp double to int32 when narrowing in json_object_get_int. * Use strtoll() to parse ints - instead of sscanf * usual code linting + Build changes: * Add Appveyor and Travis build support * Support for MacOS and Windows through CMake * Silent build by default * Link against libm when needed * Add support for building with AddressSanitizer * Add support for building with Clang * Add a --enable-threading configure option, and only use the (slower) __sync_add_and_fetch()/__sync_sub_and_fetch() function when it is specified. - cleanup with spec-cleaner - remove fix-set-but-not-used.patch + fixed: https://github.com/json-c/json-c/issues/240 - remove gcc7-fix.patch + fixed in 014924ba899f659917bb64392bbff7d3c803afc2- Added gcc7-fix.patch- Update to upstream release 0.12.1 - Removed upstream fixed json-c-0.12-unused_variable_size.patch - Added fix-set-but-not-used.patch- json-c 0.12 Fixes for security issues contained in this release have been previously patched into this package, but listed for completeness: * Address security issues: * CVE-2013-6371: hash collision denial of service * CVE-2013-6370: buffer overflow if size_t is larger than int - Further changes: * Avoid potential overflow in json_object_get_double * Eliminate the mc_abort() function and MC_ABORT macro. * Make the json_tokener_errors array local. It has been deprecated for a while, and json_tokener_error_desc() should be used instead. * change the floating point output format to %.17g so values with more than 6 digits show up in the output. * Remove the old libjson.so name compatibility support. The library is only created as libjson-c.so now and headers are only installed into the ${prefix}/json-c directory. * When supported by the linker, add the -Bsymbolic-functions flag. * Make strict mode more strict: * number must not start with 0 * no single-quote strings * no comments * trailing char not allowed * only allow lowercase literals * Added a json_object_new_double_s() convenience function to allow an exact string representation of a double to be specified when creating the object and use it in json_tokener_parse_ex() so a re-serialized object more exactly matches the input. * Add support NaN and Infinity - packaging changes: * json-c-hash-dos-and-overflow-random-seed-4e.patch is upstream * Move from json-c-lfs.patch which removed warning errors and autoconf call to json-c-0.12-unused_variable_size.patch from upstream which fixes the warning * except for SLE 11 where autoreconf call is required * add licence file to main package- Add json-c-hash-dos-and-overflow-random-seed-4e.patch to fix CVE-2013-6370 and CVE-2013-6371 (bnc#870147)- Update metadata (description, RPM groups), and remove .la file in %install, not %check.- Upgrade to 0.11 version: - SONAME change. - Fix provides and obsoletes accordingly - symlink the .pc file to the oldname for software that needs it - Remove json-c-fix-headers.patch integrated upstream- add json-c-fix-headers.patch from master branch to fix compilation of apps using the lib- Update to 0.10 version : * Add a json_object_to_json_string_ext() function to allow output to be formatted in a more human readable form. * Add json_object_object_get_ex(), a NULL-safe get object method, to be able to distinguish between a key not present and the value being NULL. * Add an alternative iterator implementation, see json_object_iterator.h * Make json_object_iter public to enable external use of the json_object_object_foreachC macro. * Add a printbuf_memset() function to provide an effecient way to set and append things like whitespace indentation. * Adjust json_object_is_type and json_object_get_type so they return json_type_null for NULL objects and handle NULL passed to json_objct_object_get(). * Rename boolean type to json_bool. * Fix various compile issues for Visual Studio and MinGW. * Allow json_tokener_parse_ex() to be re-used to parse multiple object. Also, fix some parsing issues with capitalized hexadecimal numbers and number in E notation. * Add json_tokener_get_error() and json_tokener_error_desc() to better encapsulate the process of retrieving errors while parsing. * Various improvements to the documentation of many functions. * Add new json_object_array_sort() function. * Fix a bug in json_object_get_int(), which would incorrectly return 0 when called on a string type object. Eric Haszlakiewicz * Add a json_type_to_name() function. Eric Haszlakiewicz * Add a json_tokener_parse_verbose() function. Jehiah Czebotar * Improve support for null bytes within JSON strings. Jehiah Czebotar * Fix file descriptor leak if memory allocation fails in json_util Zachary Blair, zack_blair at hotmail dot com * Add int64 support. Two new functions json_object_net_int64 and json_object_get_int64. Binary compatibility preserved. Eric Haszlakiewicz, EHASZLA at transunion com Rui Miguel Silva Seabra, rms at 1407 dot org * Fix subtle bug in linkhash where lookup could hang after all slots were filled then successively freed. Spotted by Jean-Marc Naud, j dash m at newtraxtech dot com * Make json_object_from_file take const char *filename Spotted by Vikram Raj V, vsagar at attinteractive dot com * Add handling of surrogate pairs (json_tokener.c, test4.c, Makefile.am) Brent Miller, bdmiller at yahoo dash inc dot com * Correction to comment describing printbuf_memappend in printbuf.h Brent Miller, bdmiller at yahoo dash inc dot com - Packaging : * upgrade upstream location https://gitub.com/json-c/json-c/wiki * cleanup old patches included now upstream . json-c-0.9-linkhash.patch . json-c-0.9-json_tokener.patch . json-c-0.9-json_object_from_file.patch . json-c-0.9-base.patch * Redone lfs patch against new 0.10 release * Removed empty NEWS file/sbin/ldconfig/sbin/ldconfigs390zp34 16421667950.13-3.3.10.13-3.3.1libjson-c.so.3libjson-c.so.3.0.1libjson-c3COPYING/usr/lib64//usr/share/doc/packages//usr/share/doc/packages/libjson-c3/-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:22394/SUSE_SLE-15_Update/250492947f66b335d25edea32831c6d8-json-c.SUSE_SLE-15_Updatecpioxz5s390x-suse-linuxELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=b4c03c67ab3fa16612f534a001d9b2b2ce1bccab, strippeddirectoryASCII text PRR RRRRRR)bI*utf-86012983492baec765f6b47121731ea3384ea6969edd2e4dfb44c8627037175b8?7zXZ !t/W] cr$x#Ez&I aheE*2̝]5 u44cqI>gw L}͸}D(ȷc6ϰ|_}DsOe:a>; LX{-^Dln7[Wj}\";ErQuuHb-ܓ&!Tp -YyP5Xg҂紆UFM\kV-MLkLPMB#Z~F ܆RS$˚b` gNVVN2;\sna^.=X/<~xѻm6&Ȣ9ou[ j t9+lglT!.ֵE}a^>+QgŠJ+lr_e}f[D.*ɑ)&_Azu

qѽ  /tM%ѩk:?ɖ9D`L8RKC[A;0eDrgZQHiFIز*_wa*aMu+\ ;J駨͒3}LdBîoK \ iy 8:+o0 }u8MES4+n25c> :6.$.](ݺ)KMa0@3=-ƃeBV1(`rBhU bm]a1<`³B"CCKכ`)zj,ڤ١558?@\OuOkM} ?.Uv-'dn-~#@.zNF)Ur.-pC[ЄՐqKKдHW.J82Y*gTYR2t8ۦQoz'k\6[%*ώu vfՊ."zVM-nM|C\5.bƀ˥)Kw)x/d#Pt#yBpr8ěOp*y00)g\㧲qOj!1KHȆ }z͹{udo!$3s~do[YJ_ɟi+z'eb}K*~ p H` +ŔwQgu)vitJ"1ڱO͝ul>z(-P׆z(ؒ..v&7ˤ~Lo=M!'UAW0P4Jq,A)h+ŠIKn8Sɷ|(=1KԵ᭎s+nm]A ZHJGPJ.z ^#^H1~Zx5yýמQfC2+fcc7`]\C\c0;`5^x=х[s-ϊW2tc>+9:dxu-9BnWfg( YǛ_CJ(6JyS'5)8wCBuev8PuN3ςD;j!&ꬷ]MMSIacg gS^X ?[6%VqfcOEK} ';r/([9#'2q놝~ 5.)J ?;ovODTUˮp\9͆M#ʿj!髴XE#H\xA]7>Jj$g3uc74C&A D0zgKS%v|Hėq2TH/x8/ˑ uLӜn݂\º䃻G:V<sd'2K" *:2!! ^1"̅?$+/hxyز .R}GjV/ r~iM3ۭL#'Qڕ$I R’uՃ1^+n6VXWm'cI,9]KM)BQ19q%@w-v ?s>?*bPD#D ܡ%/?oUm1E!a|$FL8+y? AS<@= yr=>!MiC¨B dn.K8tEI*i?p5ѷhne:~3≭:hk\Q#o"o/y":B= !VNh'Nmׁw/-@?X=.Oһ VɖEˮ$L}"fYX*(%6D =ҚG#mhc- 6 %Ss>hDTx,v\hMM#ZwNh=F`B1-!+{^%B~{*.g:xaݟC6V|pnKLǪFEƑRfx{acG{Zc[5K*4xN&fP.{bz-ũhr|SREV~+30J ;Y0|&$ѓ;ǯoH> }QȐN&j.`g`Cfq3"Q]X?,^h` DTf?Ḡ3~z%NkdcKÝ ϔ%a?/J$Pa&<;W=osaz"H:+=]EX {SsoMs8>xcod68-IUT(w&Q&{Y [>j4+jف(w˗PbՒ$3GGIi7zdx4< _{@y7.wd.~!L:89afñGM&Le Rfh<[!Vrѻj᷼vCMWy"4\׵Sޡଌ8(N MT"qyhHUዊ[~ }ewl[o1#Yx(d~#@{WofD%dX ~O)1/8ܡ[ZD~ ǎUNoD>%-R^?7DK ?#z$;ռat'1,lI5e)w<IJd1kWÂɤBIeӁΠb%ޘ! @dҤ(͸6%fH OM _bQX :*ԘJRH _)>N P.7ZLFP#Os%MY/noШ6ctD-JY)r~єpMpպ,DPEXұ$Jp>0M8V%] βe=+G ԝz\Q)&[`{9m+U$~ xZg&U\kLCLw=[ ..1Ag?mr[iX_gF62C $v< 9ڣ`Բ{3LY@c#a/V>pQxE D-qJ ayJgXIF+bݣLqSv@3ɴ+̽dl /FI7oJח 9d)q}T4ZYi h{O< տ_VP=ԯo?+cȟѓnj&:[DecpfH-Lpx),:k W!Gƭex$5Θ _n"A0ݗ_`xG?/Zr>*r Zmee&ز U6?'Gx c`rnwȯIa&'ˠ9=JB:wqQO:]eq;@Ug:ӼL.|\EM8JsEcCR=φjw6!(=3iؓ^ҏ`Qek6 !;o|t7-QÈT֎hgy+f%3 3x.5Ɖq- *U`6JɯzM`cI-e$$hILe0') K]x1hS\t "5Aukc BK: c[U>0p*ޞ/7z 8mP&f<[#">W4;/ A*V[#P9Rgg\N}IN^y!X%4 z ]#d9VrdzI/g&sޒ `϶'dm6C$@dt3Np@3ƉW[,s9(),kj`OWS硥}f>Nuyp]X8bϏ9C3ezcq "[|j!vR-HA| >1棚22¸h2TM0O9I֡!Y5,K`\ Ԝq x[n֟FO$JWm 6kca'].ů^ۯub`i Ք^GQ_|ȵV?S7ͨN# 5X0F뺼.9ଇuƣIr@EຳJJq5z&8L? F*S˟R[ `R;I)s%<}S93cbo/>R`Y786%qME7>ų'j$`PV2LYPo; 籅WMLpoRgzcIWΚ1[0/ er#)m͵tJL(@$֣E$5pF!޹=n3J+=i) doaZU C&%i^Y+,$dƔJed($"Q?A[m蹌D_KRN?J%&–u4Гp4 WX_1g5krNkCS5*`هVӍ'~x8wI?7bqy,KU{nsU%B2#'COzbKo{;pB $ApArϽ^χTD?_|!诇&cpTx`F*FQw1#JӈKsZIX3*.nZfkiu.b?Umj i/:e,7G3gB o͢v< In=i\?t'ͮ،.*9[f{/r(SjIiǍU@'0f"P'brmj̎V.v'$Έ&=>g @\8]Ju)FN; 6&]NjI(*J}sHU`}?y=fR|αB!l! N*S\e`ȭAej.ujLmA?z??򩌮/'WlU*.m`t\P-ebVDW-n㇎LfS xPeuZZr#A}B 6^7B4YfkNi{C輖qFv.s=ltJr}e&ȩO|ڐħUeM oq,!Kp:K5,dlFU{iyq!w\2+*kLCLY~8-J,qB{-k5.>'t{)}Ʀ_]E,l`-<o=ͧ٭z,zNx$rn;xcG(0|w4C@C ӧWNCes{V>bxKfi1Z"XfbX3ҥ|C1eX SB U:V|^38G7  f4~9tƅ Œ87Z׺|4,1>)kP_Vlaic' ̠/ʓ3RYe73?Jah4=Pg 8l/N.vMp45#իG x`]h *R8t~* 5H%lҡ„ kwe"Zxt `V q,n CsS1iAUK:I#jJR-:h@_꩸aGő!G[$nT!F{1M ¼Qr iu{@]VT Lo!MQXctrAdOFϳ>8ܨ$ʽ*>c3<7)JͭcVߝҥZE -*z6f6DɟNFIWWBT@ 99)K!e9{Ua0* !Q wCƺrN/mn7';q;*~aS_8d!߯`+~U:tS$ <$pEܺ=݃8k9w9A ]ǟ͙7b*iFE*Oj_14b!;z%3Y+ޏ22_8. L[|u+c@.jp ԃDIZs?|s;RXO+#ɪ?ݶ"BI@V C S6-Cm1:U]_ۘr&KL,cFГLGJ[#BqÄi <]& Ҏgɀ2˩1~|@,\~R 4oGžHקw$>%2/JNLSq+DrƯIڌK(bBԩ £0%zaTG2 Ni+qd_8j52γ!՞A=?t2К2c\Ϣdgoqq>忙ѵ+8Kp̴spRpB!K1Pw5o{T%!4%)$*J6C\Sl8jɩ0ܨa| Lg z23~?YoW[FV[hySMؽj3<v-3tu U .HzF† ?o3ȯnaӮA5)}-gRSQG%_Ůs<>DRR~\ х9C鎾J~Y} Q(5Y=NNjn kܙ撑bwrP|Z\#oW3`Δ9ؙ(n4a *\. vMQ!9rGd鹦/y }tv,̐x_ug>F+މ&rxdkPPlvqVem:A-OMVk FoJOI$@K'^=6:X!ҥQDEaٱd7HURDOsePP7LJ6y0B@RǓ:&ttۙus8 x@N{mWB̸DncNd6";QõbR.ܕ)GH?ĨN=$?h<^Yey檭{# j{\\gM cӐ&_̝LLzX,iLFOb˕IlFj4]RpO3OwNWBt6{ˠs/tWObE'V#Y>ub!91Aݝ~ͥR)fNIShw ܚSzeˎ`DazwW68u8[c+Kq@x(hv#/ ͋H[ (QĆ6N3d^TX#"`5?N=umD4g}c_p p> XX48R7)Bglսp2Y8uH>t脦)t7w@j׿xNc\(T&i =9jpQcT/I@v2(}_sE۹LkGI.<織J:< gБ?Ȉ7VyxFěVj P^[SԴ7/0+RyrV$];,AWh5m|fa~{m8(gzz]Npk%[W,ZaJh~>C=k̭mq'v>Q t?G%DЌsnjܒ̵MkG?~NDhΣ4'ν[Pm[{([}%nrgb*1!PF7ZRx0u1G[߷c@2@  3Cʠ/nFKKT$|C4tpjypcFJNWֵ=9K'KJMg;7%oEQ"d5!u|.wpv}sWSsH|@KluFb{ga)ଋ<CdN:x7@gOz{Z߾ݶY9苿AE^ݛi;c7FaИGr?%Qy.3}2dylaF}^H'(`'kdҙ" >AI\ጕ4 1cP|YY}9, Vq>mGadkjcW[ ?y]'Jhjϻtӟ~9oJac *ds Gz&Fū z>}ǕTW"L j1JEBzI&, ֐glrөs:B\Q_$!wF?3+Scx;nS0cZ18 ̿N!gDih>̡i ,=gͽ_EsPZ-u|ɤC@sK^x}s>c=|ʕIi}a",7`)mr|#E>i܉-w!5DvU us DXѽfJمִV:TE }E9' <~Kbܙ_"SrpTI[ɒRI]l<>K}yq/F/H 6g(}:DN2M #Ixxc@850T{"f b DsAwJ!)RzWmH᪠S(ܮ.P Es^[,0 k |}q!i'a `q*CWn+ZT2&G$$DwY1$\b/h,zr#u&"ܰ-s#!oBrGH 6 "0fA:!-Rw>qQ%eM~,}ȹ0ruYH(*Oe820=蜾ehm/韛X BV/39b F,(izԺEAr|s ~8,]xaYղ8OzυXb\C9_)5wb5ǁml6-ajCc沏&&SWc pAU>y%D1wEdL~M^cF_ӲҨM< [XNx_uHQajJZzN-^|"XO+H6m}#D9!= (2t Rc "z|=FRl8D )*@ 51V] >F*iC3v]Sw[\X$=Pw[i"M+ν lWtT<t#k AT|l!-]*Pb1Eh{Le0aσ `%PqRDO?ւ5*$ hi<69$쐛mJpi!l53Fg 텀s1{:EyV V4ZWRn.(7%m4QL V/QOfJ_<^&h"ȴ>Fyk@R5MJկ 8{C KmP/ %f o $S8OSQq d["kb:BcrM)V[ D3-ϗbْ\v1/%[QsR r2vzpDU K IR;M>Ib8lۏ1ޏp5" »S EUG9d]s(\ύ`ۢ :$HLkc8 $PIl@OXĽ8.%ÁCyſM } r~kx؜L۔]eUɷb6y?șj0[|6"8Cf𧋀C &ajLM'˱d1X 7(Fd@PvBC"~$WiKq{gU+E=Çwg*dNhˢO.<6w90I@4Luv5WU"o#r`3^s_܁e5tqr@7&t#r5I!+rm7xy\(;]Czb*!~w¥-e5sCjkYi P8&-Jm{]M."NR{? O`f}OHKh‘~Wk {U(kO|KjiO9wފ8E) 8WN#FM(cXI ;Z0a>Ýx ԭ륧qB{)C1TRPyg#fjwWgpiU]y5?P7Hsi(mId?=jkgU`"맫tKtLik<~I>l#}Nbv /puq^o4?Oi~1m%c󁍍"#Zn4%+F͋==panA_{,ЄZ4$k姫0B)a8AW|5cw(yN`J^]"xAaoS\?(h0q\W5!"8(:TM7I+ȣl+"P_C0Ζ"4:'*3fU0hߝqj1CnQ4~rdnr\y!3|𔕣?/Qa 2UojϢuAF4d;C9+>--Ǵw*~v_381*_}nIMX9r= b<{~mn_DWW^C' 5[Ư3..zҮgðGOL %L?N d aqt)=74u/ ?R͚gNY4xȧw"ӗPX$Wa`C$}YTT$2Tզe-=^47V)jfaIx[e 5?4Et򃭐I|!noser1rHJΌ3ƏL $tx| ;;jt>XM8^+j.9L5a7UBv0~&Դ1gzq¼}o hλ;(!VUj2o+̐%׾15>PuKmGHN!t41DAZBCWbncq GdKI1j n`%vPPwy D _7I*1n$ܙ> 2f$C}:YK'a;' Ms.`*:{>C/ R"G/9hi7ynwzU!\.@ &bvדib&5;Hѣr 78FF (aӳ u^O&Lh|&,KP<$Jo7E!VZtBE%lXDZѤ %~ѥQbvj!R"|Ϫ`ug]>h _{P[1T++eM3@8P u[X+~2,t1Prn&] IFdꪉȒ\9ۥo82;Bh4$"ev%mJ#j7T:ʱ> KO&,\?ryV!Bf۾K@qW 4J7XTh(Նscc4Dg1ey(hcp&R<耐Jwpvs߻Ё}Hroݝ wq9HU`3%=^mRJΤ2SNB}W^trqe#lNз>e=37EȂrQӒO0&TDDZn":"٢)`O VG56:Y i#ڦYc-6[oaLM)OHJCJ2 UTy+g4FJW-vLxK3-06˃^zQN)TOD9]QELVDs}Ģ|&dGaZDA+]_(k([/R`(nJ|IT\,)`CTHp g2Uu_6/'8oS@'Ykvn!7vD@ۯ5/FhvT /+y0eEOj O>|т/(&暖;\ ?$24"9&G<_ou6c#R4.?* ȐtykyN\ތ(pgδlB|g96lSd4tֵŘutǡMTK|.%Sll$ah[2QwpN,NaEPta q1~U q4*u 5Z}6>4{!"QB[۲WavM#XLjZ< ɿ{X|vQxl9K7[7I($N?Ej}b_? f5 $͹Akl= 0Ɲg{#9xbq3i͉bt$k*|IFVAkr#YGQYk hO|߸ޖ95!Ġ.a0޻#b,:2 {bcR&%7yoDU!\]'ìz737o?~e~By2Qdž KRq摧w hyV9 2p|{V|PO0N#0Mci'{쥱2_4cɗL8?-}'M]D}ıeo]̚e{ RxU5 ͙Ӕj 32/Svyk.d@ym q۬P_][tN] ;lj3<0lZCB_^h-a.S)T³z 4h};sdA/9[3?Yh dQmkJሊh i5+d}_r&+HR2S4<6ei !Qf@)1'$OVh< H&1a{s-PQ3P_+Z| ]ՙ~dC,HL;]fᯂ0*Wj;ECxo\/3q^#\yG''nOfNL(*K}1ϥzC8FڠxvIrC<-_,g݁6ۖ% 5r-nfӾJ/C%e7ꌔ|qcg^v5)pnpV((3®tEaŚV*r޼s1^zCdH+%@~Fɾ,raO1\=DRfGi;9w*Y#_tɎ%A+5Kl-l3lWLͺYŕ$xwRʁ{CB-oΊ/Jmt8g[K,KE)!Je% QxV:_OZPs~{|.SHkD3}T W%f``e* ^@n6q!-a+X=oAjX#\&N]=cGjp+ ŀhZ8OV`zl[ gC Ȩ: (O@\,vh9T J BG4#a" GV7mPmr >Ž"3d9(FrxA'Ƀm[ecYџJPr9Q tl(;e&C9x>u"uaj~,&)ݣUIcmG\عB^kux}ljH…s7Vjx@,o(y"Ht/\͠> -̶H:-k~+#g 滵ي E;Nd=Yҁ,! dǰL[ bQC0 BX!]5Rף]g3amkEfۛf/wg{)1숍b4;GRtQj<#JƊr .@H\ԐU̸ oӴ]X0/dQLsV]o$ vr<bϮɉܶ YZ