libjson-c3-debuginfo-0.13-lp152.3.2 >  A ]4/=„B%7q,vGUC_5(gQdCfyӿslF{L,]o(YڷCe6;Edݩ$J i`tuB?`K>.2 ,q3|"hzjp@-?- $ M #,0 J\    8  4Tt/(K8T 9| :3 F(G(H) I),X)4Y)@\)])^*Ib*c+qd+e+f+l+u+v, w,x,y-z----5-D-H-N-libjson-c3-debuginfo0.13lp152.3.2Debug information for package libjson-c3This package provides debug information for package libjson-c3. Debug information is useful when developing applications that use this package or when debugging this package.]3obs-arm-3openSUSE Leap 15.2openSUSEMIThttps://bugs.opensuse.orgDevelopment/Debughttps://github.com/json-c/json-c/wikilinuxaarch64+VAAAAA큤]3]3]3]3]3]3]3]3075238ff26b0d1fe5a86806b19f251e1e0c74c1dac3e600135922771651ced57../../../../../usr/lib64/libjson-c.so.3.0.1../../../../../usr/lib/debug/usr/lib64/libjson-c.so.3.0.1-0.13-lp152.3.2.aarch64.debugrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootjson-c-0.13-lp152.3.2.src.rpmdebuginfo(build-id)libjson-c3-debuginfolibjson-c3-debuginfo(aarch-64)    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1ZDXӸ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- Fix LFS support in x86. - Do not build with -Werror - Remove "la" files - tune up autotools scripts as well ensure config.h is included everywhereobs-arm-3 1573139453480494f9a2653f635bb90a2f3a4287b9354c60af0.13-lp152.3.20.13-lp152.3.2debug.build-id480494f9a2653f635bb90a2f3a4287b9354c60af0494f9a2653f635bb90a2f3a4287b9354c60af.debugusrlib64libjson-c.so.3.0.1-0.13-lp152.3.2.aarch64.debug/usr/lib//usr/lib/debug//usr/lib/debug/.build-id//usr/lib/debug/.build-id/48//usr/lib/debug/usr//usr/lib/debug/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.opensuse.org/openSUSE:Leap:15.2:ARM/ports/f3f3193432f450c43920cbf2903b4701-json-ccpioxz5aarch64-suse-linuxdirectoryELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=480494f9a2653f635bb90a2f3a4287b9354c60af, with debug_info, not strippedPqۭh9kjson-c-debugsource(aarch-64)0.13-lp152.3.2utf-86f71d97675e5c3b1a5301f220a5ff57241130d61a99ddfa0bb75528b19014b33?7zXZ !t/۴a] crt:bLL F7dѭdV—+ow[xʁ2[Rh٨-Gw*@8. 6>=a Rua_j)p~Iɪ@u4_UsdNGHldtY8~]Z닫]ɢhfߔx+#o,dAsOAE1ez]>LFV߱5il;G;4.]-̡@|A.4Enݡk<)a~uTGnH pnaepɒϳ.298@;C3߽nh(V͝!Z%icQ'C@kR.-̾)__<[R,uy41Y!鎙̓j=<Υ9/Q[8JmhPq~ߊ7/N׻>A?o޽ěvG.yJk.T҆`z~.eX D:@G[G(˂I}=V:1`_b n;1lz6~wBBSѸJ7mz=wBRp 9a~]K|zm~ǫk7D^s+X NL^_^zNUuGAZhznh~p'gԏ7IV`uLFpvS_tC6= @?$JC'JlJ Ыd#E 9pD]('Nwk A&sqp3*GcFFH8-~yP)K-1*&oX"(=&b\]bJf/l9&W~ctV:ỏ'akfA}YBw6^O@Yx!<=]o Q{8:NJ4{HoB;qt&sW\CЌ̓AC紘2nlW7/wN%CpXiIh׊e ;/^m9Ό ] ?TǹDi)h*Z^&VTf`"@iû?/?C4mAMF74{ z!Ξ7"4oWLϱ>RsͷIfrn&_՞W:Y: ݺN$j g-r&=_5TBt5/ʐ<>9f=:]G ̑ [ J2g J9<0SNBoΆA(eh\8{T n8S=042or9(h3'sƏx8a^pߙ$Gr3'a 8H(>,㈒H셒 sU 0xUF 3bz 츄ei<B! =aҰ:҆ov9Bs(PYvCq3)Nr$}/ҍ]62#<e'ܴV#_N׍ U 7FjYJ~<-+]N< n]˿]c %"]%d QYQm|9P#,I0LJʐMB^r DYi]ɧfobZ&LNwr4· %VPj-+LsTCaJƚ0U C(y {0cEcŰr/$i`]Mi wa$瑒AzZ)ƻYiM8rVG r bVࢶDmFTX}jC荵ҠлD[@SQ5;"f1! gݭ ?А@,Hj ꝟ+ 3^WS.-F<,%<b1)MZUh~OJefOi؉x\$ù3[o8)ru\ {>׹!-s =qm|c0Fxby@\vP'$F69X8:j!VOG$VIMx\lx8ڭ"1h{q98qr%6T4SkhL%g9x0vݚoj ꉂ+12zLFqɩ^δ4VaJT~<"̑(R+1&rz^n9^{I#uPZ]'!R8y F7Ƅ_63EA%C]Ilq_Vayd$p"3j[x)VMPWf3 Z^H*o?FXJQEW2>%RLhhJYeƏL^M4EXΠe@]~a8%o|ԼL n.j㞔AK9چ, e>4cǢvW ܕ@f7gP+ugWfID=\L)Uʏ;J֧,8XWR񔌰q {v~}Ep3:xӹ7 $<#/)z`|*⌵&툃@L9%!Grr+b^=aVu eC-ZU"͔S++fԲEywttu 2keώ ӘP6,b7MarN*Hxq&-w7bЃeEgZ\'OA,ԐWH^e팳wy.JGfT(Jp f@O&^as1 i+@h}**^1'Yŀ ٝA~VK~<*>=QytkAڿh]-TMq]wW-Twi-yyC h)rPm-TyH) C^6sOZA_ Ε+g`XltHt vqJ[ ͆ﵡt ?X TĨWZJoG|1EqV^[7F |æwPO `-KwˏAPpChc#| WJ(/*$ 4ﱋB}$Z]:b#HD=ގ߾XKzy^= ͓^01K?3i4:eBӌbbh1uJvbKar*bӆ(eW5͈piJg9bj|Y X._\B(o͉B= ZAQϷQ9 ~@H l E,?ɺPS([b/PGffG̿Lk=Z?Gcv }Fi 6k~e-OYV9QB|*.QHj'=IlE9w>Y/ncZs!cp;B)C=%o./A4搮wICk$àacSlx+'$OLEWKRxCrB^]E\؞e}@.@ԓ4%p}f;HȚK6S2~ g4 X%[c~zG/"kz_Ibr\5C!Pf:?Gн)܂,c}>jqEwSkbMx;J1hmuSG'}JQ gq4K]1'RU?&/9b#2]Ugh]H- c,v1JEZUAW4)z O{T{.x()N-AGݸm}yHK TԈM띦)%V* z#?Ne@έ23 olzz8CwrLj@a7 /;R1YLvVFp!ogMQ)+.o߿0MFiZɽW&iĐq(Fs׻Cb lXJWYl@rʥ4y9 =[n;p~'1|DIg՝&"Vnf╲B b4;(-!qf6+ (WMVilhL .^ uk%pѶ]lEZý& [mf JGh )L ?J$ jSGFg4Vr,@Gep2-On dPw, Yo&0rDǞmH2]3 $8=&AlP;dB L~*@7$PqQ@հ#'G1-M7uڮ(M)|lOh9q w0r@ّ5 Mp DzVRj:J>m"/J=# N=z+I|2v¸٨giRAoA9ITFMZ2 blPN[~&Gc`. @̸'e%mł3filTAl_ICi@ a w9Fht(:!+&_\-W׳T楞EZP&Uֹae dWۛ8"A4͏@ yDnJj$*78F@-!4},vԯ4gt>~6#;wnt5ˣT^kdÿ ۃ %NKSJ7jTJVwX5Ih_Mx ˮMpjLDuE`Lbc'zᗧ7 +wgi4CF/wQVJW'1J̋z`N u!w$(eY96jMqyۋQM=ᣏіy\\ts;+_X0,>pla.L MS ;V^հ#FO&Q+;K0 /,Qu ʤl%@[w[gu5= %hۘ\|al^j[BL1kodZ#ןeebW;8*IbUD$LhNʜQ>_A  HZ,3!bIAC)pi}zp qrchbP06'n=+ں8a370P=ggZF1?m%ب9q›.&`9kP%D:+_ 'm@Y nnPy]gܻtQ23_UڲRfKS%R4ڸBnrhpWUi*Ȅ)4ƞ5jaVږSvIxvK<TTCJZU5x4v{FDAnsP)X[k܇({:X/:/էkRFnRt0~tpc>ݟjC&WSKj{h9% )ŕ~ e1n7Hݏ/;*?#N !2=FN|ZInӫ +pz8]X&bqLSa2ޏb)ip܃GJ͕;fw%2g܊Ydw* R؎!OǏֻwڑs=NZ>{G<*$!$M%_pZ;jiz~@Pajv_*5:i"p tϻ/_ń0.*1WVU61ݓ+;?' Mecw2s r鹿iϣy" RR#&]) *Չ=VԆګZ !}]_ڜU~+0{S^*4V@32,'x,U|$0Do_Wk&Hax}z3A r&L7-J!Lhbo|ę[? e&@NۘwD3+-wc?X@ Ul9%K.j褺b5(@0B>8dHC:d (-'Ik `q&X[n NJۨX6r1U6GUcxuQN-Hfw&<nj@5ϟBD Z;P?\ ԰i f+JiX%]QYZK'p%G, ML~ys9pȎbj ݈p \bfP9^:0tGN{W&wTm1H 䴟EOh,$TIPMYfho/SwuRB5?W n+^ݶkLcPd@[СP!fV= ͨP *'@Ww iО$"< 7/6h kpœ;' <Yq+DDe?B<&&_>XB@tBYF\* ^hܕ:$2,eOTBureEP s9"2Rв:rp9o{<3b%eM֔Sw=.tac/8 eg֢''Kf,j8tp*e-uv,Ȓ ph+v:Yaňhcv= )mW÷tٓ䰫yO.6$H@ Bb c+_a})j2oXr,wХr*H瞅ԲuEr0lcsSdèֽ>:0t,6\}?uhECTn'gRn,$?jiBf#$3߲41qsZ8wEAO69 0& vxM1|ګWS2`v9r1S]>)]:JTGGKWZ4 QyxK߀4w2C/ځh4m>A E.߿x"LR\ȾzkV*T2L<;\:$ȧvIeS4.c6ׄe a|+W_\P; X޺88dH~4he 8Fm%gKd-F=pྜྷvy&_ c6st(~Loq҃լp:i3)8PfH[x&f7F .ZlTA kze9Dg+ytm 4*,vN"$ԙ$@#-m^|u S.xDtYRO I#IeCdG#Fum]Jw/K/pL7wkb$ K`=J!|n4j "&nUPO.FWrl8Y#]҅T"bt`A'zo= ַbR''KpJdkA6cj7_i{贉@A9<M!H zc 3Fsj_S"@EnHBE'UkLva5xQ?VA.zmd#;6)( \g_Fu|WU^(L9rq0W޿M6seK[jE n@k!2OM±cӁ|ESiMԣѤH~q:Oq<0v&7;5Y?_Y8/ƆZTe|J Eg2Ɉ<_r~F1|s=/nb~-GoM) /m΍- 3Vl\Xf"m FB 1/Z?$꣹||ǩҥ/9TM"y!Z\DDg ƒ!UD38KOEpKGzK1&"90X!Sn{}{]mW*Qre~1q] L5r  pو9zӕpTw /s+uN%պiœUuHSs,2s"QR Q)>)I#ܷ;ZƥN|uPW;gECܡmVʎD KIh9jρEQ/Fx-ȉӟMuB}o{Eu:7JAg]QUޅK d}\O50Jy>1/j IL*z#R: yM~YjOjޣ̝y Zp_dL5ux(HT}|*AwiX𫾴icqU1ɉ;JA1~L]U1:#Rݕ5XS;`FtUxqLhmWRNL{ķb/k*?UI 㶇zJodL~. =!)D¼-L:fг8JGt5@.r(ܳ&/ݹl'rFR7N;ODG(_s 'tE+O?(ن$wpZMpV H-VC"NbcwB<8f H^L?73aLy۪u! $B"")/5Q{tʕnPdrV!Z o9Rdp&mWlt6BȍF`ϕBڀ˵ bxGɹ@Rkd/(QZC}$`B0P˯'#9=E1whw8# &hMÀ A WGDxI׊'."~jlT{sPn:Btg>`8m/h\:mkȜZO7^Q򲳰(:G?HTHsI <Dם۬լ j{9vߪQm7v?PT+6V+7x=AG0+UdfK# egCϯ. U'L\<3r&z0PMqBV,L9ːqu9yT!#ۖj5icNsD ?)'=j%_X(#~ R]}ar |{80'1"̐fZہ(2ʢxcd#pq>Hr#X׈:tԍ"ËK s,=Ng#co4↽hztz=nہ$EeLv6"R(U{L7$Hm;1$|4ǻsSE 4e@n2ʅ1x Z,H$JʅG.(BBa3?nz$KvZg Mgݘ~az:U90D*MGV JŞٜ(bح3mCQ% P> #K4<[4y&G5 V[gcC!0Mx_Y!Kӊs1⠜DBF!NU9' de#P*q875=k:"1-,{Hƨb'NMcCsJ:GiiaH JLbH;I٦Ene% "x07U%t[x P)rbN-nGX(W,(_4.": ~~Y 1W jiO0V30H>J3q/۳e֤o&Zw2cF 4]\6xc>D7Y!ϤA%7c{7נ0i0y1}-\ s<߆s'k0ywF!/U4Ь/\2{F&X>H3ډ4r¨ a )0`MW)oaހ2NFV:+A$9*QbFmS )c"5!SScd_ڔ$K_ofM \MPŭE XT[$E!Gл^n7L?' $X W Gda]W&Y] OWzQҁ1"&ECCnl{Dao _o a\0-\|".vA,fot_>@K$ p_{%eQfKPMY{춥I%IT< @'5fc6n5C̰Jܪlp2Pa<8 >jпD#?%Ntу WCp!pyכ0Yg5U*b,8 1790y~W0&jn >#\6jG ĜCPbHsڷ\XZ b=%_A &L'Ǣ ǝidžɛ"6widq.ڼ:sNƃgj>= 7nh6X].ei` h/:詈Hض%BOh#dIP@V?E%?!J!W+`T#lt ,Nov3)v($Т:] ixǀ2$C(#hY#ffajZkbS&:9"X5jEQ7Y b@jׅ!قhR Bގ~%̓!{J]:z ZgN7VÛyó-pyK0UY/y@6\@AٰRn1#:)1F³ԧV.F3Ȁ+2+9Ae1=jϙ#*fX#DpCS>).JσgtLg(df0W=ީ#eڿ%\p.T n&HK6DQ1"d gl᡾SU`|~^RU"{\ v[QI Ys? h~$á+#S;K-J6ean$ 8|:J*J &/HJ~*ycNXJ,fmn6řLSH'c}y|emdJ|$[#)qk <h,|݋ԝ5V 7MY#4a#̑ }qk) tVp$3S*iWa=p+*h#ͭ?psP|P4X*(nΎ ֪ (sw3+83n1BrjLzLT4Gt UYKfC9BW. aw*5nvՋ`rnKdH$xʩ8::'&dfzP^Gxv⃰5R)pىQDBPq7r+ ୘$F؈-X_zb {&eQ{J0jޙ'S٫D1C5 z_]VK%xAtaTCS?nCCZ`R粚~<:ռ'^/~u>[8dg8Tnw6ە{͍mBƸX/yIa:~պ՛GZdqG6DQ EnaB~?0eJAZ#dI Ke=MꮋsQϻ:OQ DCxFNz7r:i-7O2Wa(jP av c"rSLq] ySrd!>Jvn4?liT|z2 bY}{I1ºO;>)Gb 3,I|jM~,K?ob_Kb`I۫nKg˛=(1JWEw[W6FQj ^c-GJPi~kvBkxkc-zb~11+cOCMgX0sD4m +x+{k>7 @ 4;#p ՖF+&N[ui$hTȼ,8 T*- _$P54X<XЀR.E2\E1_3UqE35={CɈg^#7T>8g?aJ*zI[57z뫃mՆ[ѯUSK~DO5 Ͽlb㌯fyY+0 3q Zt[K=z4Amt~n# LWt@r̈="B!}dŶ-2s5 jȁKWFܲlpxb? W4*c)Jgn(bny.l) 0M>6$1d{|xvW?_Վ6!KiDt*jb#zjO&`sH&j] KK/`3L3h<1BII1.'/烞0(cE8ՁWDCg„f)Qm~c Ó$I) z-}L$')87Ig7'gOTr(YBL5 ^LWesÌ:LB.i#jL{Tfn\YyqY0Nҭn,c~9}B~vjS&9}Nc;eH,D>o?GUYT!(XzKu>aCu_N=1z]^(-}[yC筠fݜK]$ϓ;2M u, hT0`J4>$3蘸[LnF$ 찻Ke ear+0D==6γ~x' K.p)-hPe`8ʙiy4~Ŗ.7+FLt+VMiBz/o5u$\|5n!RUo` z3]Hʓwì&֡:6=(*[obԳ4!6YܓP M&hFU~9eB`kr'Jw(ߢn:E)Z$)eʠ743i6Dp-JorxK*G¸"6=F\Hy860^(^|%fnQ /.VM=uQrw'ܒb>"{Dч#IۚRwk2iR"e@n bN=kZ+ܢuY` it/w=fo}cCfn;eY$Ogy5m#Mx6R520gyx'd,25eBۛ0ٲE_A"E)]wO* 3ɬ sK=R'wdl  vU?f_} CrQ;`OX;RaWB,K=ESe 6CݿU9ZSjPa}? MBScN⇯+Y$g!F $hoIí3Vx5simя6kK>smyd>G";2! zZ;=A|q{Xm7YaG6^@Cu6,_\{ũka 9mzn$W/Ú/ZRc4*I*_170|cEv ihmm )ioj~ ^ /48XE6UH C٩?~%w-F]d0{X`J$,V p`t}6sܹ2jf4o5a7o"wMz4fZW*KDeE7ZىԠ >D_w0a󚟎hnV:sɩ =\4[D {UJyXBt㩲;0zrC֜9%WX Ës*Pw dĖC`;Q,%5}Ivtٺ!^Ж O1.p * <_2=Ġ88x[ۑPw%ủYYifP mn pU9h OgUm(adS=FCAG) yE{ Ɂeϱ]c0a \Ǣ.ێhO!8=Ʌ4ϵ͗}OR om+:q$=hIߏ3FiD1?b:Wړ= d, 4l15|݂t+SY1kɹHo$!1 2ɏ@Ffl.inV6qΑ"G<1 `*9j5-gT:t)ΑZ҂uɭII)@.b^ ^'1tm؞nΟ:`z=)4m~Ygm+KmȨ1q_:?!&e}f(ln{]հ^cTprxSpBqVP- 8U,>;1\] /,.c>J+t=ٖ=*Šc碃ז*+reg#|=K'>úqX8݋C˭9p1pihHO=G g+ +yYj\-ɣq|9CIXmWadcuE".时A dڦ0ynQPk?Pͯ|uCSxꉸL)\&ld/دh D^5]ig xUc6v5j\=UU㩳D +2'V9~|B97a^.G2ʓ]}gڰ%ЁJ4#AvmMrIٺW%Y+Ku< Ro<'n\82D&:f ٟߺtrD~u,֞H$hQv,4*t_'qxH;&/Gk6hA0,!0 ;b ϡSfwr* /RMN,H.^(u!KſY:.5C@I89wꏺ.)|5ve6ji3_@yF$ =l;XXAv##-2FԀހ)ly%_8;*W;3O[ؘob fp S:͗32PLzý;ϑ[S,Gg]m9ol4j ܣS ۹N\q@ƕxg(3Ό|߷O @e:۠oU{PeԷN)<<pȟ=4eX~)$YK)F(QkF!94褃 # PO<ϳd2ϽΉ[9t#ߨcyGpq{55G9̑yKWE_P.X 3Y%׳.Q5@CЏᗽM}~y" oC3 /]bt%Mʴn_rfT sg#EW4Q%= kqL056Yh&JF@`T؝ nZ*^ ,r]{Ke (4c a\a*:>[%f*1yX7Q EΣZ]k谑.t hmbIUR+ 7([HiYOKJ ]<ҬҨ7.-%Kh6ǃB<؁ffˇG?"E iA*Vo(9Na*J9ެ=GIcCbrGKDl7>.$ y_?z~gCE"mݾ"$ i|>]dU;EH |P*h>A\OmX" !j\m\">`2jHFXKFH#&a{a w&gʹ["z}q{U _l]5 9睚OMTK`; ?Ģr '^"KCs1~ 9UT{ABÓ}P!Adl"'arbB%^ʆ4cR7Ѝ-X%Ոw6] }-Wj~Fn0ifoKYC74 ȡ"WkS)&0.tyOX+xwo6,x-DxW)^x\:(y(/*7yu)?=0 CkR1̣P#=4ll)RlRta'E8F6N8y/Fuߐ% ZYe\sJJVdrz<\^)aEdv/1}THַn-'v]_e1Hh i:؅ܥ=HOXx ,@dI4^&Py\s=#`K".02-2M; W küU[OVP01qLt?u$MCLS! I3(\[sZ~D!uZܗ* "~˪uE`{ȍo݂Oeo]N<m}x83VO68^YA d-oRs=e|T^N#HEߺg_+2dOdKHhZR4@9k[[$|uafD )=gdvp-5 :y@$*=\J >75}/G_Há&jys"ryK|6r %.ΜWS\_Go98᭕ Bٱ''m<ߎD$L̺ qcB϶Q߫G>kpkj5sɌ$@I$1q#6JӖAk4-^mGM+MFvTT(Ǿ5ȟWɰ^؀!|/CfB6:: {SSRFbR߉UgubH"X aoX]%. ,'ss:EQȍPdT2+$8xѨc_+c/Q:@җC c%X^6zNWtBT%tL y~`mHH'i8S;tҰ et5wL/6e է~W޳0&=dc6 t'mE$qOXv#>gcژ[dKYXR&#GO}fZ+˸ڎNq~WĦZMGH+g呠7d6+ܫuոmgwIJm]%F35eo܆ |#B$ht&Nѯ|Y^3p>gEY{Q83{HjJ6NI˗7@Ȏ=3lqRѰiKkA+eP=M6u1|}œ'}MankDdK>]3R Om :;,ܐsWes(337c3\10G؀|^ߖ{G;P}\0nzXɱԨ& kARK`3PR${YwFĨTV/`b#?ϴ볷vp|(? "RB*v*I#2A1 _4blWo e?nEš'Qak1l!7M_ZVm=mbc^>BJ 9Bcf4/Cڍ8DʛSi}:Mggudz> =r ~ 6uD GH,u{9߻RӼurd3P?ꑭ!᪾{~lr_k̲B`Xk5Vg(Wq֙>sk0VVWr-%C>zg_%x&Bw_to+Id"ʮthp]W-:Ƙ=I~ݵ,…pW燧mIO乮㮺hSsJ%|~^R~h S6zxn)+s<aJZY^\9'rS,;CAޤslj^E1T[fH,[J=c-Ov*8]n(#Ήh'^q`4GĸRŌnm]\+0(JmJlzl>-AeKL Z)^~/&v>)=vÂjg^n{( ;_wj&">W xϊ\n~R3mE28'^A帷^7En^sQEKd7zW`nQ*bY&rri`}M Z{ *MA1{׼]-.+h۲z?dcex3<1jZdPokT}w˹LOBT~H0خǟP3RX(ǒ z%L,WO8=$А?~Lt,npyn'Y 1v_խEEKg՞"&Fc3rI:: CZ*H#݆H`T6'~"j.:)Zy(mp< ;OKxin<6@jn^(HL&`4́/Iܷu — Mgtc_#ɆBQ9 v'] *H]U,jQݟO>p~4?dt'Yq)P; 3XTO_2E|A䫮sK9aTlo1kdG+iD2biňKypܞ2sMjzq唰VRԏ*O>4dLQ|a:2o'ǫgRԬo[~wʣw)NoҎ9ONABMp[Ow4Ņmr6?δ @GGJA¬p#R 6lc+ ʾnN@s{SJ@MH5{RnC4*Iʳ,{}?)?C,"w*h\f/|@7}QY C?Ea4t"b= A.n՞F-/zRޛ~x(2^ b=H?@Ut "1c݉/ e-8E17G8=M! Ϻ5hO2SLwGɘkEfA VM7yNsC觿FO3+E=R)#Y,ZJ9)o g I^aŷV|Sw/c>{E<e87 ?NJ&[ tC}gbCscܦuM ㎴tb :.c\e'fR(V+e}6Ӹ=VT]P=d՜K#uxHDF#[@m` 5E$v0py :d>rd{s ڜh>pnEC^ۯiخmyǻˉzѠ`kȍt+Mee Izωh'Ip'*zpnޗ%v8K=칺ё_ !9(*u%-}U~iSW_~SaR#Y \>tan+ɱ❑F GpwRd0Sx) kqP|82:`]Z!*V‡(ݴ"IizcHV7"Iʛ[R'QN$㰷Fq[Bk0:#Uw#`e" + y<}Ơܦ*^(` S偘0pCd))GsP9'+-D :_/"\O-Rh5FlL-/XpFN;x}L=D%.DEG0)O.8,nF470żoCUI܊NƛjZ=@R+^6Ef˛[汴Ci|+h+AvMHPU1"Or QՀa8π3pO%;-ZN{U0 QţY]]VjLt:HmCգ嵐߰$~ke㦶6Áք+h(E\dl؀|q4u}%p0zm%7Sg K5+w_s5`ꨏ&5o0Iӽ}!Rݚ%ӈu{2,)j(iBl,`KB_ZѪPߝ B@wn>˕>گ @]B.|HYSPMk[b`U't3ȾHhbN'GE=@x6@vס$杆_#o`N臮Y )#>mL -(I" #-M9U_.wzI=$XZdEk]|~" h4!^-h$z3I+|$ɪ@>A8i&@s\8T-A@+ZYd d }1Q/|Zg֪VM+ؕP >xkJ*Q|!kY06'i7LcUK|A&fp/<7Q8ҒwkGьY}}?N Gv1hͭegmvMvP}66筣 ;A D?Ĝ{esfQPc%f::#nrN˭,Gĩt HJIwh 6[Q1HX~+LdlUg*,'4%b% \J(/B.cvsV֙>3~B1gbLN{N?Y{Sg"8"C2>3Z|&`c5Dq PgSу=H6@WwOlԌf-ҳ@VF8ы]KR$j4{Z y|^8-(ƖGFJ[nP5͓Ț%p 墦`NvD]ꌬ|] V'RQ->ŤO)%u􊼟hZّ)%:&\\YތtmJEX TiTXz:Bu,`9s3_Mܤi /{M;[\4|Xe[D9caGXSq$R9Z_.r.!g,ujIH&5 _R{H빣Ii_Vw0??SiV7wxn btB%*:٬fܫY6\ H yK}w#w{!}aRѦ=qᑗZ:Q5rb@~53SNJ}Ew<}\oZ!ɈEO^Ģ9 |&-lJĀw5-lE:{GقFV!qh 7|Cc)_ 4vrק33e\$|s?!)[c[!jjVNF*?Xe,,}qf"[ V%N$\RSgGVZl˄ pZ) %,]nO "\sjn;)y`/Rְ\[[sy-,ӟcM%N}vZ"Mr(+-3N\kQvw&,kJ V!]z3te.5^hZEBRA'ܿB}tO `(R7{h-|4c581='6׶Y֖̒ 2#wly 'RfNX[oH?j%omTVH48򩶭ox(}7['v w/OD!FMTM\2zwDS_| )wey gw⪠2#12af`=e ttf\\ aCL0UHvb*ѩ,sq=!kUk J6aˌ%DRJhȡ(iJXr01݃p=`w[Հm=ʔ+1Ho31ѺfFDUɒsP04TkD8Lrwc:es('Fi@R͓jrʲbB  ]Ѵ1hSᇶ<Y0=yF7my=`Tp[̑qҟOX禜urpFH?El`cJh{B #re#pi>q@LJT[؉%c汥1Q5[1^\NCU/iQ mcj܁c/XB 7#9j5ϾWzG> mI"y04LKw #yPJ@Ȗ]F{F,j Ї?8xrZ\ O$'`>m<=gԑ>@ē4+{4C]i =xLᨘaw$x>F=߅ ,K>鸀7p[& B|V|Y N@,r`_!HAhE%C܊J:x!Տm Q)rj<(Hq]Зmݯ$k~/%1oFH ALVo:i6y #Yd7VhP{,&Hhdc|Ҏ:`"F$I(% }refk|:)Kfp$4-e#!l.7Azn%ȸ2IS4Īa] )!VV[׉Uc"ԳB_rU*JXL({ |XÀ"- 2';G vP;ԞEFq/*?:KHyss: :wob$': sK?mCME[wt{M~-N^x,c 'EGlCT=pה?{ )ի2O v+]sHT!>^93|fR`;2d8;Hu^X^% "D3:jϝߣB󀷭^pLZU+ h˥[?=X] N!dj *>^ׂ:ѶECh~LWw*dؑhJ[:@,HԆ;=[3rs<)[MY[ki1;Jj`l(z V-ZK騫%Sfsˣ& Z0_tځ|z¡8Ǥ$03Ov[tE* z(zOE>KV8rH5t&aHL1H]3!6o/#mk`_Cbھ2 LJ:&wR׫PfwZHOK*Pmh\i?yۼ9RpHb, @ v$) +9=_+[z{!`` ^p3( @s-#u OaoGkn mbBV'ARt8聿/0{}o ' jz ,su %;TPභ Ǟ=G"*¾h>t!ox> + TV^WX H!L2GHN^][aM%^dvA4/4q &: ʹlp{ f0'ۗXQp#oo E/Fmhp%zيKqٴ ^UZܮ;0S)κ \ЩD W^H4MgҲrwTgafjfnyJO֎N2!1`˪ȸ\͌Re4חabh?'8d_͒d %>BD'Ū+mv1&X/Ўw},/u;XהD"ɆOhG!–]W'!BK8H4^^9y]Ǚn9 Ώcq%OJm 3f)\ 17F 313ήLUBY|J>Se߬ 1ųI^KMZޗ8l+dYm:YحANoitT.9 W_3[;*\U蠩qJJ6*6P~ܬl)l_řx*O"MwKLE;ÍRi=H|{=b8AOy-R[w2iv'+rts͌^r"نz!!Kh>(ey7CZ8͑& Nȣت@*\ͫ?W5>jj`Y?wzoǗF;ίmMIӶF:pȔh[ڢ9OL&靫 г4m>*QO#w9yp׸b+Gb[۲]inADvL^A+!SdDULtS$ZEBV5e4e04Sw"+ d ;A0A9bu,B 3 TQ!fA7(({x G~7#鲙lؒ\LB/FVݴ-:7kjq?ZA0DTMÉ3Bɾz~m}/l1  OHX^_#g~:鳖άDݭ=Sa@i5M#,|?NnPaPw.la&I*xPE _5MY0Y(VIUbkjfQꖋkϪʆ*O?zɚqR+^K"$,I~3Z7^Lv/.;P? sCj NPIO H!`y6_&|PiZ(1f$~װ3i*-Spa\g^/.jBFUSh5Dd֚6>BB;X1/'!ƻT-KT=?ҪH&>QtW $ׄcϬfAO&aI+B oCۤ_} e Py^ R!; ;x^.:|Sf=*(Yx:# a؆AJCu"NOuRk;ȉ6=>]Dz, O))E60-/9bz b(u}f|^]_v7YӨ}Jq"M]oՋwN~ 6K~{h/RҨa0* ༺@By1$Aق^ZFVp@=X1XsW>ÑP^&I2*8L_K?ED#33Ja)hv/2O,Ηp?Smxzю%`6z] :Upmf류NNsJA& qJ VHg]q?C^K;U2scqImDNh6( wm0VsJUor1aOE0L >ܾm~tv5@jݞbm->Joy#QҲQ)*yb)Ɔ7a[tzMf_OOMxJo7Z 8ӥ&%3#WUc.N2PWT;|':G 8Fi $dV#JKO! z3 HrLLjt@>4* gZW=VK)3ApRb"q'bݟ70|g^yz7 ]sV."'Hg[ީAb$R,H40Bjfw?ؑx$Y qz3^q 1f_W-'R?.YCW޴t\,JW屢AO?p>$"{rzo9gz &PE"JH_o@?@dsq~cg߀·z%OM k9Z "eZ;jf+OB'+S},3vy#1Q}PZ0&#9Apq 쫸MSEKс鯙 cy= kjwM2maYH(oJlh\%eRˢrjHtiEר\zº$F_|u[S"s.Une]ެZ8K\lxQp yI-M:T||}Q„%G&299ג'g*.A ƕ )W<al=k&JFAZ GuX+UO |A &’ُhUs.Nlr9f~;gAl*kh49^t+hȡ=~ՌS2<6)kuyi]q㪢V^ JUvh ɜYIe%M~ИS*>`5Y_g,o-z| Y h><yr=i)^(wh}_ }UL$Ҹۇ72q F@z\*)_2gmk早G!aL \ZݠKzDi;yؼz9_lb0_?Vܨq΍v*5'f3pP&_Fl*e4-3[nb=ٜ;,9b@bXRT)>fH/P-*=AmiZA!MڪEFG-ߩXI4`;w?肺рL"`R;:~w;!0`Ri+ޔ~#ԪP@% Zԫ){xO8݃1CZ3IAw(Oym7c\U2R 9I()éz^!#O"*f/p] Q@i 6mCce& AТqض?<K24ˢ\akIY[כj%CD&Wpy"(o%㣝A7MuR}A-8h,7:xo&1[tmR! ngH=$QeF Oa]4Y- r5;{ln=1Ȕ[@'ݴ#V씚9}>~_CR#t/NO!ׇo>&/.(uczg۸V#%IJ9#?$+R3,m O^/r]γ|¥}7Jź㣼)BICjga`ٔ~Z-fҌdOޝBcsq[ymxԣe y@aL}{KǴu΍կ44V+#8*96FZ8>u'CO(5^W܇_-Ps@ EU91:EeWQ@oh-w^DE ?'R;}KFZ/ &eˌVFP)'BY(rfL$pYxwt^Ntޭ=}zfDݢuf[5 ɚBaO8yE|(3F^R~!n1ss0ϹJp*@Bv0Vo b>n 6ᇿu@~^<ʑ9`sPZ3HOZu+<`hG .vJ"Ac4S1mQbjnUS4nuDÅQ.ucQ;z`FF,>j\8{,"\ h.WL'(U\ +-8"Ig>6ӡMn$䴿]}X+z~)aq{_g1g~,s9nP4}"s=sS%c\gUt7md l=<8ֿvPl[=2|(xNf>b/žv0_h9U, a8kS4-VzTU~+T~)Wj+KTVenÊqS ܠ,_i9Y' JC.pUP`&wn"X=-1_ ͭ!%q_k\ky4YDOw]vl-rޣ,S]v)DFK? üVT5({PļGOZT/s$/$LY;:־(G,ìru"LEmK'm|#lYMÌꋑ`}]!.1(^i qoMAtOkM+8Y(4̥N'{A^T8'6uĀ w'K6F0jF#H0\![A%&D̞iDi7B>=3ӌɇDK21: ըӠ3~1.LkX QT +Xӽ9%JXUnߪ$~.PQ D9Q? |/B/(ڟo 7b8*y<=#=|&Iw띅2:f=;ХZ ,*s-Eه$ba٣6/cbBzat V_rM`+뛅HA'YkȖc^( U f ,-{$lB_O9'q> Upyތ2\dg 3E{۹VUj~׺aFbmL80MFC)̠s?w!0pR5$@]Go棯6=%z}9=˅f^=-źIc~TsQ-x,s kEl9q~W'fE -g^Yb~Oڥ˜֍{Үd@p ٬k e1ض YZ