libjson-c3-0.13-lp151.2.3 >  A \ซ/=„/>:̃aD?,&C\Gv(YɁҫ*eZ.:182i\'ǻrU圓S3F"K)L~d.wTύ2I=::p@.?.|d   2@DLPclp      <x(%8,9d:e>*@*F+ G+ H+0I+@X+DY+P\+p]+^+b+c,d-e- f- l-u- v-0w-x-y- z..,.0.6.xClibjson-c30.13lp151.2.3JSON-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.\morla5mopenSUSE Leap 15.1openSUSEMIThttps://bugs.opensuse.orgSystem/Librarieshttps://github.com/json-c/json-c/wikilinuxx86_64A큤\\\Z35b00caf60aae45c769f9e872a0efea35baa245476cd2f171f980dc52c19a6a874c1e6ca5eba76b54d0ad00d4815c8315c1b3bc45ff99de61d103dc92486284clibjson-c.so.3.0.1rootrootrootrootrootrootrootrootjson-c-0.13-lp151.2.3.src.rpmlibjson-c.so.3()(64bit)libjson-c3libjson-c3(x86-64)@@@@@@@@@    /sbin/ldconfig/sbin/ldconfigld-linux-x86-64.so.2()(64bit)ld-linux-x86-64.so.2(GLIBC_2.3)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(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.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 everywhere- Remove redundant/unwanted tags/section (cf. specfile guidelines)- add libtool as explicit buildrequire to avoid implicit dependency from prjconf- add baselibs.conf for pulseaudio to use - use original sources- initial pkg 0.9/sbin/ldconfig/sbin/ldconfigmorla5 15450590310.13-lp151.2.30.13-lp151.2.3libjson-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.opensuse.org/openSUSE:Leap:15.1/standard/f3f3193432f450c43920cbf2903b4701-json-ccpioxz5x86_64-suse-linuxELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=083d3b969d573e3cf93e164724a765fded4b0d05, strippeddirectoryASCII text PRR RRR RRRR=aRutf-8cd7ee46d003fbe6f31c80b031240b1eae517905fcae9bd270de7abf347500840?7zXZ !t/K\] cr$x#ru>.R0&D*5 N8#Zm[ .{$džG8wn^yDǂ1ߙ~ɉ& >Cr+:q HA&yǗ&Jv7;!^]0C^hX[r?-dNʖyja%Pz7&%^opMiMGuXJv?`ɣ#Ԥ@ ZksHQIT]HvXlԳ2  5b#$ԩm[s_"Py2jjeSfcnAc=V͠?! ^XnzΔ"2ˁa\Hn[ZUb`НJcml84b5Pqexk۔LXrtf)QS@Hj?ck P)[WI>_DQ16=~v_ttUDm:k$IAh~j|4_-/n\>}Ѕ- T]Ռ?nk }rnL',6^KIj ՇM>.')9zNy. ϟ1 [>^rlk&*Jw; XU]iB8G)/6[߽4V`k/YZ}[eB9?ˆg3;k"Zh)ؒpF%uE㦬2*mIK-\Z'AM&A+Z+ r 8K#l܍{+i /{<-QLt4A1@; bb=H! >dDwja]E7pDP.&t1d^}2rG{hPIq=UwV]ZջW!xjsίu?~|3Q@pUS% z{2@ˍ)Rs;9ZUr弥b5)zQމKicݸ|TUDW=5s6y#>k+YgĊCݍ ʶ5AMsX2#֩&8!C;cnRzÄ/ <F@T~TtΚ"B֌lhdxi[a+(O.#UG 6ߟTL3\Iٲxz5|HPFb\L}|u1,6{Y6y*ANNLJh(HA=f9VޓX5^IV#U8[ ds P%7q0Md7B"dK!NI@E9|e3d&,yS65H|"ٞ9 n<:/!E\(_ۣQ3W >A-:$_赺azDolZc`)n'fdw}uyCuB҃_|B~{=PxvlSb 2]!l?گƺYEzPyWGӖҀ6c~=, IӤ͛1'{X8g0 Y".lșgL0'܍ދj<:_U:4k fj~lc'Omy=gܿJ輦zO9濌N!GY"i2[Wd ͉FxZ|eIL v& zZۤEK&Zس5}ٷZW.hh&(^M,d~ 4%>CJJ {EMe*m$N{nF-5xw3e}d}Cy(Ow}أ'yHSJxzmWvAi#]9}?fmYF;u͊;䱑d"+U JeMlIOÌMܛDN0\^l?; }3-Y+;Q\ܜՖ҆1J> Sܥ<'41avթ\Ffr h;*<vSCڄovC`OyɷW{#Hٚ$\.V=@4mpJ{ASw$~鹗ZXn8(͉&7w =F҄{-+<5&Dօ@ڹ s!U ϗGgyy,1 ߀0XKm O y,`pEG:e@OSܚdzG%v!e +̆?RQz,̊// =%Ƞ UʄWf-ǠfłG=ثE+yI 5a4[I4$—HEBM MQ@;o=Zetf(Ͳ E*bWm Bh{H]g%=9Vy!М)Ҝ]Mwj?68[ &,1჆PizɄա!=12!Y'{;uHXSf X i)wLIJf"gA7jW6tRܐb1FeT_\ |[BО\k2Æ!KS3)S qALVr?e`E7Im-D?="-\59/(U^2SfԶb,zrǠ61оFPnevvO^UFi4¢,/G`}F6&i{QRtC(}cHZF6 ={՘|pjLn~*dӎW/1}AS[[Ǩ1{k V^\"!BcAhAFtFu8>|KWFe7*T=v8Lw&B>)e/^(YsI!t-H͸#3܆êϺHz'62<9`iemKͣ`XT*=KQ _"chߨjʼ;g16l]b)fs9x[~Nd%1&U<'EuA3%*ѭbx}$Z9tݮW!wP"V ࢚3As ƍY9-Cq;{7m D8.HYFSHdRۆ{JnPLٌ鮢^hяG^VRSbGJ`76DZr,j#wZu Q= o| ȿiikS7О9f|$ tpw}4u 8G8Blw7Q0͂LkJׇ5k:2DP6: żXImQ!]JN=3.J5DY2-$m_BM;7wלIW3$9ꨵ#Xjz0PDVGfN}#Dܟ^\^8IÁ~-$9%$(Lжkw{o`E74*$#IW b {:\3&^@xٳ I,z;d| Sɉd-S~c Ts-ĽVΛ2+4ݞ/:7){ymS/0X1w~"iVW$y=v;Rgҕ*y>*􄳚lkg cӔ ɖ6_czFwE^0}m`HB[GYkxЙS7+V 8 |9B69`|'6֬CGddO 'vߤLH|~Ͼ yu/Y/y|~]n_i~m+,K+?Wn"Z$ͅuoMZn_PIKʯC>`4;bX&4]qL9>=o~6Ȑo~BlOM2 0Cfm"#] r5$29e웵& %6, #3 Ȯ*W{Jۜ\)4Op ?Rȓ@EYU؝ |{\{l5+}0R-~+(X/R[2$wg7NIvy8G{"}axrK4yxnj@0膄DdzL؊MW'@3sɏ;%k#s&]m:(X{4noRm%uo845xйNJ3UQ52rAV+rN\;d̝>RYO;َ 'O!AD:Nhe2{ .l.Cu0o._pVYLeu4/nͮnc!AF]v4"C23u'ƍ_P!U=Mަ8u6LAZ@nJJ\}xbe2ӳGϝ3n,2Wx$"H fv\fu{l+ڽ"FC;>fpTjWb f9X)1‘2 ;IrmݛC>43,㈚W^l W NVS'$l ͋$ G] DyTFJ6gcyO4׽UՎ'Yyjr_byEq {K(g>w|쓆6D 1*nQUk ,?DSt3Fvn&m258 2mP%:,Vxp!hOT`ȇ5K 'kʨE^wxlF ?ӝ? ĦlUy0ZgdL6/ mu#%YO: F<)TN_:B;1W"B- K,FbrĂ.آ]#Vˣiݕ*eF$V=ø5ojt>Cj~ԕCq[PTF.ЇjSמ,rX}htaFw|%xTY ]+Ov/< D1Dӡl& 9iML F|kYQO }0Winhͪ ncΎDk Hb(gȤ)x"Y K5- UP\xG0֑f]mnxNԾNVq ;H6D|6b qX܁Ba%Qw':V/6(sa:!fÏq[8: _d#!cJ8 lJ =p犬JWb̡+<90d_R3N+?#"A-/O]+՛ecMkPDz3mڍ!L(7+<^?>-r&M,koQI.O6:`. 7`RWDg{͢`8rǩڦ/MI@V\2NHt©ʡnlpkw$&tw:mZLkArD7(?dσTF9`pYx.6fyBڏ ;&xIS'H.a*yJVƴ#Λƥn [xrUe>s!t{5!02Lq%F*!c94[xB$לJ' evXMJOJFtg@2=dG2˔?)~b.NƲJ6ˑfXX'sMVC)y}F9`XMꚑIlR)i?8 aE m@x/#Pxoh EݑfOA7N@SbQ K! #G7+˦.j ԰5Џξqi F=^ e{VS )VOvsY|oBJSx>+D&,TeO0GEuCKsN}ډnT\i_-L>|/Ґi 2Da]7;=E-~Ǹ%w~iV`ni59dݶ Q0^+l9U%S,nVUj+lxjϸ ON q?Ę ~@ޟq:^S-M]BMbOVMn' $M%Chgb/?,Dtx at@U6o$ N'j<]p'>~ѝ2R Hͧ^U`^=YMla}C6tfDOZ@H\K~B0t]PQ:\rM0"XoWs5E0SՎ~6&tZv/WOb" oOelt ;f`14s63p؝b>ƀ44[$jvTt= N5G :#H '1~#K RCR/¯Vy):ݡL(|DVvfc'.x+Gmp՜ z&ɝ70'%vۯZ-9u/VhG=Th%&Ax\|NmIbrlCLv48p5LpfaDmt l+3bd 'YTj [c~d z{5 x|vHr,,2|v:č1I:wwm BE9K'gA tMcWy&_CTMwQn:*AuˋBAgȎK݊8bilv tK뎩G`n GyU*"|[uvwI8f=q#\P#?]! ؿ1 :5IX,͔|?H1x$D]CO{ZY=4(6vv$V55{j/^lsO0޶vFM'Ses\y@j榜VeP/*R(dЈ]'??qF>v'3ڟtKxO+)=)?1o]U .SAmF2|t{u-#nQ|J IOG I3끪`S 9C[V9InoĀ0 o{mj(=/:P|h0T|$t;dpA ^?LDiK}k?kY,&~ ZY pKs5L%%ByRm>2iGx2[B=!M9 |XaھDm^ kG%H" %MļnZH/2b"n=Ya.y:u|f,w7)ylk`9yqWneG8O.p7Y C9k˸v6LH^ʼn3E{Ƕ2ңwdZj@5PBaFwf)r]VU$` ɇGmA0A~mX (D"2yt  Z~pZٝj3ݑ?9 x`C |'D*IqOV[3ω"{x;1UM&k\A+6oɓ'_l 3 .~Xx]'y kqZDBh9GX 4*MA^  Sd8(1b"XA9Ȼ{K?02t?=a7> ix]Pj!Zԓ^ 9b%Q{iSgX4E1,칚@Xf ILmgv1 6XU9C@rl`V>!pz2 mtЎvbf~U|UԸ<CFJzq:͵tdzAc 0g/_ ULenTGNNx[* 6"`®mZ)+(`}rvBOk$~UsojEmuEUJ~tBYcl՝!<\ytYVv"Wg{`qN;ڳt0ǨCnHov-~hݵnPJt#LZ͎'LES.ke#~:{OOW0KJ~<@Jyt"b g D!SDr459tWDY C翸uY.JKGžLSa]<  ֋DHk6[XD= D9~q+ Ws俌;ciBwH\ biV+hsto݂p $v8 M 8G3kꍔuypXe X0O/\`8g|5n7wR kV1?CG,\ku/d,n[dWUn^-̬H"|0Drq)GBKd+\;:ӹ6IL8r~We}PAR#0:Wsrnv$>-?@6,b(4&xU5LWu|yw,Mz<~}`QvtQ vj ڡuRKձ&%bwy;OȐP خ2̇b˓%I>S(_@:S_{c:Bv}>z$nc˖ӰeU6LMu1PgnYh~Hﱲ=`SI;AVzw7L5"5RXI^I=bqjvªNQ `<~*mdZyZܚZNvoI ^ 󱼲ǞwUeo\Jn"Bs0Eo.tZ3ιx6c0)0`B;QQ hQca/*OFO:$m  V(n(7 xV¹ YN[,MOwU5,#\塈q3l@P3{UgҴQ;)y񨟭TVs4acK`c*m!m^kv5M>}K`z0bX~EGWu_Iro_PjE@+:K%5jT ?1JG-)"n,w(ZZl{x7^!ols1p{[ #C}$zFwSW _ (¬T6Zׁ5'l@5|9i o\soYjY ӆ B TMcY; SV$%9[).wK6 9(0aöEn{NlqR|W9[ ֆH9UXwy,pE{=[ BFǰMB'c}~ld5gJ_*=T V,DELyV<dž+6ϙ;ig[CxpYx-T:>X1qM<;ߓjهb-O#J?Q&v~0mL-Z~>T5C{52nqM\3L+v8 "tHA]8K@3h60ϓ$, v"5+wɷ99b|G#G{ӀYN[$h&D8ql(R~{w(27ɇ(>{;颭0iED䠴qXBit^!sw ېnE3o!^sI붲e*8赼=Gn$`7Fa1[4cQ 'h,ƟPe@ "ƒ׹݃A;* y-#'6]eT8 *T\hE[%'yND[#?\yh|C' d/vE3vP vѡLLX?+^s3ʜ B5,*)"0 <9}9? uFj{KRT/G#΀t>M'XC*}Yyc]W=VHc|D-ݞ+^HGfE~ugosR+CMF"D̓uS Iz8hI!>Fiq, :c]\@K'UY}7 KO .f3@2FWn1%NnYk0R4+{Z܉'L}'}s,8DIV+\.dĨo"K}i@k#gqn+NnD~s$}ouƎԔ.7 WaT4^ \N^Kl"(~lh{)M::! ]}!ߘ7: XqWƧFFЍ,AL,5&x(>)#E[J$߷Xz4| _+x/.~tP# (қÕk&NGX{8w͸o(o 3,v*LW tZ+eDŽ 9sg3!{7'm_PXCxB8Z0z^ia|?W8VIW?B9b T6!6Xgɒiyh.Uu8pGxvmzƃnn1)3%%K̴!9xHRDǢ2&b~6, '=Q&8{ЧUn|E'm5tۑ?gD˔5W!Ъ>BmuI)ςLw'cMK^!jG3 O,)[ 7&&.>u,ؚn;-mUR((:1E=(4v=eL˵\RhEJ7%`O(?_w* 'ݦJ#wF&6 V56F(43xӄ$mV h㄰:|? 3}Y7$̙%NiNRC ) z]JÑh/`j sf0k[P~*=N-e'88B 4Cwɡjy,H>{,ۈ[: L a#=ʭP\q&xuK#+TP>mk5}?_x Ҟ| tWgx@DѨ! ]=Q\,cR[Q#}gOڍ.+Mih ?3W;|W$|],uM|r6XR & <~6L} _n1~U0#B֌k\t,d)Y$QG6XKB *TU|=2>m4:K'>K6.`O> yRS* ? r;M=`o~fޥ` uKՑJ@|e\qklBy:v]9 ;W:d#M:sC5iN(Q~ՕˌAZ jUsArm[>Stf/3r?Z7RG^,}T5ndzi󺁟G^2|VO$Fv_S Eלp?K( \77sÈ6yKpḆ$l3լ7u/y#,/$-܉Uϙq~*}(Xߟ29fLj};:[ς!^Keƒ;:OsjG?NuiCi"̖=<']1,9ǁexW8'JsP 竄 Lef9 !䶪[+VL):NnpU0uT/1-NĥuIQoV7XP4e,@inX ,rb ]K^aBN#*C\ng,wRC\gLdU>#!V|6 g> tp/UBdKdXt7, C5:T/֯\$W6bh"'<`7 ,c:d F2ȷ2['d# z{5_ mA.AtX^m `.e՝pcu}L\9Pw!)KsMTR?k-cvB%Tٟɂg.!QYY\'`p8g&j#x{+ܺrXϬi\%}7:҇Q[O5iklç2Eԗ3%ԏ1KvvjUӛ_.k}*DCy+#SI qV86Ό{|%p7HܸB\؉<$ ѣDUtJo)<[ZVǤ39W)(SEqvA&3D$XkZcS]ݍsޭDNúdjN rs B[6x\$t0 <⚡l괡bཥ[G 6SSJ₯$ZaRdc\.nZm\oaZ'-jZy!O-62h.Czz++Mes)Eh\]óW7V wU}U8bY8^B7Ʀ]Xg`i TYKt(R1&K(W{W10*,eW@_iLU~GKǼwTWGUї;((6CcAw/fJ I(F#$JdibƳ+ʫ̼(Swڌ \%^jF;a$w31@*j6xI~j%8!^5 o_4nh}20$/܀d%ScC_#W++\tiZ x2\y鱖$/iVvTfTzHxPi*~qsLʳo 2FaC#. r EȞ΅L1|1qzz^;^/<:zFg(;Z?SB"x%Յ^ѩ9*c< mxD"Vk(Hz.-SaZo7W8yv0l׿/ %rB"y=mPȑ(R!L2z/GG.2#)ZrF^ar3݄_wjP8[<{!H ɝق|ڿG1/ EZͨtw\FoFʾOھʀ0#~0;ӌ a&~jHV&ط30N]̩)Y:E6sCC4@Z;ɟ3NzEݝPo폽g 噙˒m5sJQ|-n ~C-QП[Pع %NպblmZ!aRe"rMU'''_׮ƴ@l^޳L{c Jap1Pa|WkQXCt$}n<%rQk0Su@. ^D% t9l31#4ƷEW\mK!4Dq?i(܂~6fO;2"M_IߙUڃT >x1jqbQtѠ0L-jf91O]+] ex¬ҿR@!wLZr&[Xz8'Y1+IZނ$~͠@{B n $fyʹK"zY'M&ɟMvDU4O9~eB3+RvGڨؿE 2_r"RSlUIS )u\rXF~ҸUN}7# 1o6Me3`0h_eGt]j %RWM6"Nyc]~dQڱA,F^&+/U{)3Vw[L%*AmgVIUCa͊!el vq|6Cy Wƛ=xְin71v8|=!ͺ3d%&5)sqZC wRfk QҾZi #(Me{RoxՏ]q>E^ 1GoMAKƾqLxKgC+蕖7+DR8j@+ әA"o2E'lF$͈^#dUAql&El.bxzT E)V rIh@[{9 !91? nqaARo63 lPZsPJbD򑠡K-ۤB"nL>܂BĦsygAkܗ4AvZ0eT6+KAN&мt&K!m7mjߐ߮MbS%;seV>]i{a0:;yjLoI"hTLm,'c+ N! abz? {'&] &AA˞=BTP]rQR/?3sԹ3?tv< 0SxG{@Җ!MJoj>bLv?5b %d73*  z "%˵6X-MmeOTe `?2f9)!4szDP q&5kq>3ąFS/,;\JtPմ儑)\z0NJ/x4ssUD齣kPBVVF%k)R{Q:dwZCwD&W?9@۫#F :wMֽ^aE/[As0)~ϲ7B8nٱ ǁSeD7f?5Zz`-$ "P;"<߸qo zT+XN\NVdj}<%G\m'DpӴ^*avXA(37\Q=`b4#qh>RTҕa1[X\f:2t c;"ܛROIpߐn4:I U9qU|mnj'D̍!ԃϓ;ی{NC\!Z˖ D yO}epCƊNj8 Ew!R+vAC.!.pkX\Sy/W}iju}p=WĒEcԚCp%! 7ͩIJ&mAqCM\bg]fr [U|-}0e'xk ;A*}×b9Mw5E|ko: @ʔ!f78D^[iӣކ{AwQòX2!mH&>H&c"*fпx} wՒN;gw1\R38\|lSV .Kut wCxvՍ 1?1$t9,zWQ` xt-9_DOoI~@Lޛ~7\Wrn[ff2S0g)GOC?|?MPMŰ*s&%;Sd 8JV0d[}IBʹ"ex 1NՖҪI)g5i*;LwXRrFʣaȯDlAڳŻB&(`* vE=Xr٘5"sE77 b? 2 BF2/m**ܚN+rGc k t!5} Z=ixMQW.,zɋ}jI) d0+=}Du:]đB ÐizEAKȩ;TOνQ7Ga"4z/PAOfdPOU404p |°pt*;]R zlkjJ.#;5Bl杤?+:y4kݒ;K?sr`/:j+bv.QtۀQKpmw` ϛpLzwSeȦR:̦ \ֈGa)CfM+8'i%+,c'!aFa_!%"(p 5TL&19+ղy3 qXh :!<]1R^!oLKaְGE#LwB XTX{Fr!&:vA+pW~`EY)E$a&NQ}ЎQv-E_-@Y~*cvkAʽZԘ^I~^ͧ@ ~nŪ7?3*OnW_Awf E90;7w=u;2 Htx8Y.P/: TXp ٺm~ho!A3jsAb~z)3Jr͚ePA}EP(@3wWng^>M͋Q)T ~_U J&gC^;Laj bg9-v#jD x'!.xc'UqW8[eKKBkhXZu' ͳ=t0w7.ЕF/NJX蠈_PҠH^=laBals