libjansson4-32bit-2.14-150000.3.5.1 >  A e9up9|5πh l0"J#[fwOq;z ѡM7!$&l-V!pUn".Gޖqg<ZʅA,)a5 Mddθq^w6y7q0V3e3^*<8^ښt!jS{wA n0P+RۉrsoVnPeGjF ,!Тn@b:_ƚPWL$|34837dfa7d55c07221a3a30efefbb6cb3aabb9c12d645c620a22479e33fbc60217f0db3d476c8101d1b7c035f65881057f418a1b؉e9up9|BFsI4VDk^7US9)Xq|ܮrḤ$i$gZ),%11 h:|UMm؃ 7ԟCJNp>?d & bdhtx  $, 0 4 < ~ @ p g (8 9 :r >GHIXY\]^bcdVe[f^l`utv|wxy DHNClibjansson4-32bit2.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 suitee9mh04-ch1cXSUSE Linux Enterprise 15SUSE LLC MIThttps://www.suse.com/Development/Libraries/C and C++http://digip.org/jansson/linuxx86_64/sbin/ldconfigXe9me9m87b503a6f3509104d77445011a321d860ff3d22c25d8f8cb910ded2b0fbddcd2libjansson.so.4.14.0rootrootrootrootlibjansson-2.14-150000.3.5.1.src.rpmlibjansson.so.4libjansson.so.4(libjansson.so.4)libjansson4-32bitlibjansson4-32bit(x86-32)@@@@@@@    /bin/shlibc.so.6libc.so.6(GLIBC_2.0)libc.so.6(GLIBC_2.1)libc.so.6(GLIBC_2.1.3)libc.so.6(GLIBC_2.2)libc.so.6(GLIBC_2.3.4)libc.so.6(GLIBC_2.4)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)/bin/sh2.14-150000.3.5.12.14-150000.3.5.1libjansson.so.4libjansson.so.4.14.0/usr/lib/-fomit-frame-pointer -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_Updatecpioxz5x86_64-suse-linuxELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, BuildID[sha1]=f9caa042022f5e78c63b07448659c15244eb05d0, stripped PPRRRRRRRutf-8d53aed83710bf9fc073e1acef5bc8bca90bd4e4bf45fa6e26407c702a28cfe5c? 7zXZ !t/`] cr$x#I6y L$Qcf  묕s.dV!cS7vC# '萸VLyNW~J${>X:WFZVo7 6qJ頋sڑ=5 $xJYˮOU礴JP5 0lgU{`%)ah^!K^P ÍB)zq# Յ2kFҟH>e -0p?_]љZ/y!$ b"Ǖct ZɳRN@ZH~~J;`Y4&|Lb0]<⫊E^`L] ~ ~QT$at"3&1׆Rup 4[1.TnkacXJ)?z pߦ yw:&z"VBq*bYn1ORd/ \Ƽ{wP|ReljN߰8a>"Fq:P_@6gc-إL1S%4˒rZt]~kp*oUcy?}i"Y+~rRkZ*"h6|t*7Y|#` qQyBxvf~#lp:FGSU/+',Y>o/IjqU&e .3F"T;9$yzli7C>q1G"0cWn2mӿFF|%J ^.u*JXׯuǠl܍ɓX+@Ku_7`h3Hn7CD S۷r Lk9Jgl2ٺ*vY:'# $kdQ{ ܹ8ASe<B[Qt0.Hu7Z.\~]&YRAB,UZq5y"\պ#XL4'="YS[=,yMTf"j <)An*Ȗ 1I}- V6?gO(Ը}4V*Tʜf 7n-gmg 6iB!E$ےyOGњX{*Foߌ\D>vחB]_=5LHv=`#sm`6Nrn ş.%1~l>e PetSQ6oO`MFy=RSmK3g Y= Q /o.r2\ /^EooHQt(%NPc8'Gۇ{oX#Wq#͠lCsH()I(0d,ZBq-!/ ÔW'<>< 'ʳRc]el(L?d8:Dlt пNeiw0cJ"V $3u&OKu 0RX1JWvaiCY#"޴&_wZM ͭ_{[ ;03GZ&PUsFw뚞^۔ ZLR2Elȴr '!&p4Al=]0 ٌG#=EZ ,Cђ70qMn2?@ck, 'hAq3=mn5r7/g^~XjiRcgdf ILam1Ƞ +:' clb{rnq-ȜvhۅR_LW69sp9/CQbڹ +>.VM}tb\i̷0BݜN[,hb2[Ux˔-;-4xe@!C&\>߮鬶Gt9it?i7Y_k6i$04(M8}uN%`'`B众QKמNE*$B)iFA/QK 6ʅENھ2r6xd^Njɍ|72Yg^`sWE sA`痠Cy,HZfضg۲Mq)\7{E s735ttOvU Q$ʋ6Pd!;iCO L$~;(;^#}<&;ӼRa`т*T&|İǜ܊L(,#EC_0\ z:+d)p򩙌˚@ʟ>U/i0u1(\5 8eY/ZaRB&Ar&ZeQxEhMY ψfK\ ~hЧ/[0!}P=nWnky|) >LpH4m:`:&ʽh&C/y,Oܳi/Jlk3 2Gn255 $c|e'RåAXE h'{l h:7P Kw3QXv|X [5͘o'93RG5\9%Ȋ 1K9>0Xg4#fo(+uXaT̢k;dfY_> :^84I=7)V( %N.ShnH[8v] AKԶ$ n*U+5Qݗe 24sd;@%Ce-t̃ǬKP|h ep*G"%I?ݭ"ae18@b 6kF0G Y1GVľ{DY J}J3d'}l-6U7$?3Ѳn$dy!H')HԄChO)\m|yk;ϡcƶZE~<1(\|`PM9bFt3k5d_v((Ep$QȰF?ᇋ0f< IuY9aҾpw2k/"t!s_ղ@0*Ʌ#>@R`:``کYI/j ۓ(eVDDq0QqSYy1TXf~{}a:4/`C .&yu~e wZWyf(m*\OZ}Ik/w 0+GhP62%*B]~nG)U_ se#BNϡ 6ֆLqG0[w&%^td{FYA*q[v:jz;*~8|^fV5ҨHgۗd w)Fqf|OЬ拐Cy˘7@v_G"W%FubBnͧOVjv-|jsO?RdEC+J h $iW@Sd:Hȁr6Ex@_/ 6T>ewq7ZVxZ?0o׍L~JL>|R&\\xpMDqs+i`ł+Y%ɜ!Ĵ*mưS7e p̼M!:"Hl|a0hGR{w̲ے%xDaL6A,Et^AC&qVo59'!ZCnF74LHiԮR/!Wd J*dy"!k3#ckFj~067p}~xir.ff*~Vuڕs1'-]0GpAl1dx&b `e#~Dž~*BJgQс2vϐLjaFt]%i̲ Pr-CG0* jk?G4eaM-/"L5곑H>GQ$ kI7u6"V8I E2fPB>q TC}:9Ҵƍb K:=65 OfYmz/#r,#B0"JߤME=/TOcf]m(3;b_`cqyMm΋Sy[g峦ՆBˠ(Ax} zqc^ӫs%* AH⁷(+ 8;=&LIE3 I(S ot0[>5hi!EvP91AKq{AM؏w}XD$\Y ,c!(RkrzJ gޑ#a!67 I)U@&G^y#1fNS4yan[[Կ 1'\i`(nKI9F+yXYb&XćnJS][{Ns҉h#z.A|4FQKdO# ޷*GA/P/ JjFw9:KkemO@69`l22 0UA*Rmto>^`Ҧua(A5uI(H( L8.oˆj}(Bރ$#=9dp`yW47I(5q8(;M; ;jjK#"x=XZ ŌB쌥јJL1qʤc|\=HU :DE$U]q(-ٖb# yN%3b.^۱Ð6r0W5"[.t!UZ'1D7UZvbjөn3y[K G|v Uz @!7oy`#jNl3 ;GH3}M=$T]ob,4>f_h0N}TSz:H\J=lY1 lxIqu*%Ş"zBMOOMivClh5N_<:RS-Bi4}\t rX yQg%ᚸb,;$\\A]nw~@i +p\դ cWgX  8i#g$?Ď X{ƦpCDU/|HC!ieI:j#D1jZ+TjM1}V4Z(iZ9>ٰL Z sY~L2%crEVy\]Z,F(E7%>%AS5qVF5T%ML{d-%,{bwus Fp1u\p]ea27~ɑ_wviىa %s-N͛`9l2Z9]2rE v}s V_]~YAu} c!nJ/b| Uq >)5RUw#77';8:{#&pU`ŀ[6 5jVb E/R0݌pٮ9ϨӤ27xG [QGAo QAE\#q@/2ɁQ(bX\N{-stI+obcH7ʛ ѽ k3x١ĕ8'c~#c4oْlBwô9N h&Ld'qxtNQpw_MQ: I2f'* d}r[;lq75>;hW0F kkM sww7YvW7\0$lw`U-_AI+ վiD6bq)޳9C=\ vEܐAfB#niݾp]_Γ2)tE!X^~b>{` #0biMvXN"mOR ZmObv l* , '*G+ ̟;﹠nE•Ŷ T +,bj7;l? >DW"N<9]0 {$Ubao;D}Ӡ?q1ZYMݧ4I!Yʴqf7ݹw&CF9`Q*q7^Ƃ#$͂9ٔȏk8GyE7+g;\sC+-0dTCoqtI`xl\?75ڵ]V _'[6G>CM ID=rT( mI3>ufxt0`Rs.N.!G]TW~jb 1`aUm@!!{F g"뽛NS?d:#3{O6`ssK -2!7xqU ]"~!)ZlV3G6BŏC/ ps?}LC}cV(dtf&#̂鿾-ڏ?qKG #iW2#42H!OoH>> 7&%{36 k8D;z择O\bK%Gz{]%JmQ#%0vDھğ"xV84.QIKj&yma WułBuչ""`HrJDfq^-@-e/&47jڎPaji(|!Y'c;N 2*07 Z hJoYnrG@Ws@Eom&{!/Y.i `:;">le@|TƆ /q˪n۳bEQڥ0\KrPA,i)%Ij_]fT'IKPtZ ݼ1ei3A;`\taLJ*ؿEAx2ӿNycME]NO5@qE.a/N^3=g<w.sHZy \8B+(HX`OY㧻h{M}'Fan΃E)VWG!_d'm~U}?)UvXL_sk5rq }i ,ɴ[wx71=6ȎD:A(F e[_1 .S6=,P LN"}iD콚3jX9?#h{Γ6wo/$O4N_!4(dWEwq{.TVp:ԑ ,rYV\g3@~>nF'Ǝ[IZ=oVW8<<{$;1lKGyËfM݈׳r!] D-ArN";rŕ)o~-[*۞>NY+X7g9` ğ5:ny Y0^k#5JcӿޗJ||pIUV'D5ɑ~ڍi3<JC?ś1pW=RoN7w:Dʯd~J|X^&b4a7xn ii_E4Qذ53aW;E67ɮƉgqlP<>jPP&jM8 ř]GrgHSoy"A%,R4=6 w&'0vEZIўfFk$'inOa*@- a''a;KE3gr4xKմC9"%Ӹ6p !< X<ıGfw)݇=#^*Fo]k{Ρ7/la/`p;9yIr& p? N6F}QɬiI Xb26z|mndBCTsYGB.sCfd.sA6VsdR|u|>ܕI+8chU_vjaO/*4y%Y4n^jNw,~}e "Ll||-k5Jv&[rs<ܻra8#?Oǽ·sqTWkl1QmмLM5Ib ##يD7MGo ʺ@t@ lqבߦ慑8:&fBn[6--)^1%`BfY ԲU|H֭>{_{~}O4x4*YsCfGXrO$`4ND巺1o9-Sga  ˖3yI!):ziT_ ߰c؀9=/Õ~@C̀m v-ږ#ld#r鴄. <CNsN =(Mʳ՗F!/05|]De7XFB5$W;<ܠaO)UË]Д{ h.7s֨¢Ku_,6_5f9yۊ1[?N;ȷ=TMyŜ@I?am4>Ps΄Ժ<|X!͇V%ʿ s^ϧHX|TB~9"ˀ=kmڡ3F~LQX>%{ʕ+{_f1OƫC OJ݈S( !pyTiܛ x#jCT{|Q>`Q[?Nq&y8îխۣm7XR sح}F2jMLxU͒?*^/,A԰0%CdcmCtNƙ|5,9~ 9X2y/Gz'GZ2Y$wzr%?4;'Tpڸ*x5+4Nbǯ}NfX: ]-Lqn@Nг?HiU"`dNVTՂ(Ta%{kJŪJuz܂Nό 0SA.: ,Ty%Tn2 8l>$Z*kؿSK4m|ңn)BG0& f؆xnxaeeMНoW]x6DH¶$Wɫ_*F"s!]l([ˑ#;(cLy#/m'VjRp B>##k7ުV`q2ɲ]*FUPF[_VYؒQ=~d߉%|paahc**"2 r-pT !?ܙDop|:C}߻ Ʀ| ϪwrWgݏRK %nh \QR d<1VϪ>i7ͨ`KÚXЍ|+LNeEbݾ{ CJMd UԲ)ȉJAC|y)ýU<'1AD^qթCu<'/Q&@]Z7mS$MՈ7jנblLٺȮs -Y?`DI*xkO$}VyFQinlGT $Q*[tSͅCo=b^n_<*l1=\X<ثJv굃"C6f""JE]hPZ=?gNq[\ti;>_Oo >XGc׵n+e[>HKkND;dx7FCz*1F1xt&ʥ G 2mÁs> :jcK:VYA!,PJ;Y Bic>UNt弹2LiqvBx YsI=cB'Tgd/O)lH^CKEbdӄ o<)+~ƢU^q# AcE9](E^D7/s^2 ane1D|*/iIJO:|*{+9XvD5\ެ";`8]4u)ebbE==IVEfPI u Q |c)!*g }ΎerJ =\kfvEm "hp0z| 8ȲLsLC IeJX/B,d3L 'BѪp\uJ7-N#֙\zz_e`z\/}b sW~_0Cv31+Le CMgd3)Ÿ64iȲˍeTg}YArξb:-=QJ-t&?@+0 6L4S5 U(~߇Ɵd;lh4)WNV@_mCZ>F cw6OZ9yZoLq<vrl`;*ir-?[&x:kJMM!$<W?QE|9NИ5;qŘCx@jJbOL%4_ p|THJ(u\P{Y|\YEqp_ J񁁭![[λwL+u=9kh(yI L8*rDN݈Dwmt,1DXf<S Y^o>|YK{E{`fЇM/z8 тZ[D/Lb}x$늊9}-V.1tS\p$X` 10p[~<&K2 a?ri]jTqgE߭ {I,G,ل  LˮM[?-p9bjO=P!#K? X<DoƘq_.OU+7T%>#\G.V0HYF`# XdrS9!nzTQv,+ty>Imy`-|B66:$Ს4j^Vƾ&:rdYPud.ۥmF0`uDx =cn2VK6o2xZ=3I}ߴ"|Զ9dhi┏Rk%m0wN5.Ȫ'Ng rW4'Ub t̳(NoN.}nX0ehOJ(ėeb8ZC]9AO re[ro$)LNr{}UW ^66S;Վ7m~hC7Һ\F*h& \] ?S>w5VY^W:wT"Kǣ 2p*Wo6X^^fk+ک;ߓme7ST/0>☝Ra~ e,1{j4 82!4`d@IanmV7XڟZ7s3\%i;K4馚LS|<((9wY%#w(᧤)9IVeT0m۰!Qfyv70yUGNw}/Zp@ick2'c%F;':Ap:&={,_oٳ|y~iy)_դz=Dsuf#HGfWgpeMDžTUl&kW =!id$N\JDs%pRȐڭ(&F^b:Gd\MK`_qkQ =o/8)4¹3]_re ̆#Fքb*5x^RKAI6'{>YrA8; .Fi @ yT)Q+@E:K9w%0jC&\?!#ėo^2, K?3y4 gԇ{3Lo+^:FU}dlP!;Bg@Vw4e ox<q qU~[6+ k `9(ndzpc!W{b(LhMhe\...s$ HYTsN:X F,1VqGЩeƆUQwL?arQTD?* -m `I ]r1)_5xT ]-EtkGzFb}s؈W+~e}m6x6JjdʇjHAZq~rk':oUZv:T: ɘ`Lզr0=U(>V'!prss!p^S'Pu۪x8,A_pi=&.V N+hM'l~lmd( uz/ {GNoJY!YK1y'}!oNL}H#oUux,ml-{yyQ=Й܇yf'>|s[+2i6=dXg+"|Vc\B=N(*LjC#k/< q 39= ~W7vݒ [Ф2W1+lM/ R%}3U[3Hmǘ@~ǙM}v@hǃ $ [2eRe(wo{B4S)"z}?_ d|ovNC$d-/e>˿MN$=)ⴷ'elumgrˉWR$ Ďu-2 fUC|.UJJ|w&LD4f8clnYB¥@vJn  pZޛ!҃1mxR`2'BFh`L\jn5G͜>PIDqPW%qw[ATB ӗ\1C/o2>&Dn׊1${"-EmGU@Vbrq&EW7 #ͤFފgd8Tt IBMTʵvC A[|;ZƒbHIY^R?R# "@պM,X\r13TABD ؂\zbAش@ 7h ?i5mNi* LJWm0NNc6ꎹEI ct`!!yq$o <ݫa9G6(>n}MzpĴSF_a@M\U}s̒2SvڴE@-գl5[u adz)gh<UZ|g7]BjZ#:{g .j]e.WC7g? i߹/6I-| %r_Ѱ^=&ߨT5RPrfT.TLbڻqy׼L^ߊ[E}F>,08H`wq,Xq@tHU@$>$oV@ߍΛfjIuӝzv~S)^Lי^6]bZ΅.6;[6o)X~/ڄ [{qF)r8큪Z'@QSAZ9$c %X6N=K`nJQًԻI (j"e]{REw6-35LrcF%] dO+$%;$( M\ٻ"٥NF>zcF19!?J,'\\]@؊c8pBi=8:S+JP{d[JܻY!::C0fz6 ̌C(,\o\C,/n<7E>z6h ,:3 $nPb(B '9BN&-'I@F~# ;R{Pzܗn?7^!kx+wVԴdQ`DlHhՌKOYq7:ƪ–Q2NC3f=>9:]vfzne+^EW+T{V3P[^mV1n0Z{'l %$U DT;㺳z\DK{gPΨTԯވ9I  05'z;;_sԱBIѶwCAo#/i:&ڽLQOY*LOghIgQ4nVmp||Y] )(@c[kŻ--e(ҀtK).N?߸eU2?>H5Qi7`؛~S+ =fm/U |F^,w"mX<-=}#VW*ei9^o!9~x:Bd^̱\Q zin<I3 xfN7&?4-x4/x6$n_RtJi'lLȻU$ڑmx`{2ԮHp@`fh[蓵Xf<@Vt^bT46]8F7`ƅ~l`Ϛ{)E0P}{5bdւQ.HI\\|~I]4Te̍IVsS=x|g4? Y#ϓRqpҭdO?p|EJOا6͍VUK[EPT +KÞpbR"ZG@OI^1~CĴ)$2psybۄ-Ua0NcݠqN< 6PJllh ŶHAtۢLw 'xPu75,!ɟ_ ePqn - C+ޣo=%砌m 3QobmnS UPM\<@pv7^ߨ',rQVE ̍1>L-i-1R^ ٥k LNz|(8 Fʤ9VQcv'p1btX_fdl$lUWj !&Z6BʀaXSCh3f\y88rLέpI)g-e]ux:y[|cbՠ>^xV5K|Yak.<2Q80|ȿcJ0b$8SN_y sgNbD.d@b(wFUqw(9Ry+p:I?J@d NLE|P(i2~;]@m.M_xǭFQQ8eҟ2{̨B,)զ*oR tZ :7楻FIDm@ 'ũ85EZ+JYyuu4[4NZ-&8/gu<V 9N'1oRm\pj-ϯJ$Sop<P XGZux 0GY7 ~;B?烞h'jn:`~.B??s]mۚv$-d\Qf*G J#fcRtn O&Yp*D];^i&|U_|W;ZlJn ~3LNEmWg֊eX Zܱo翚g9HXxongDX+ ܃; An]Bxi6Q}S,^Fj}X춢%}hoq.p`2,:r*mζƒxkp581/rJfֈxm{M?#| wU~,Uvﴽ痣xQavf P)oZ!4bzδ RzE-6?Y̟_@J-mHz@%ox:V[vdxD|r6s"!xC<n0)p1'`0)}۶'v}\nP45h {1Ѹ(iec@Qnw֯;(Gh|%OxB!6}5Ȯy_nF7l $>ӂQvŬe8[&V#!F6BIBn?Gj:i 4?HRnV,A:roң"] cGq YTU8]?0Sq=D\ZQBIWkiG0WQ<.S1ڀ?V)pIeJA4jvV* + m>7%@w83d~kQ ՗#l'(ΌSA>EB3̙waǚ / {dZa6@(U۰VbcrK L6ւlT`f h##f P2|'W#^vWO3{>t5q^jBj ,Btd ;OS}~K[CjN~aW+.PH] HcƷGn1.A+Tsmhedu/u y cQ&RO UY'̷98VMՖ{6 ya(X[ ~ҳ~+CvS5^v8N֬d&\M|iZ?# zψ7%^J)1tM/tJj}P.v0JXÙfauP@Fy}.?eij*MLKKV"\EHl [ 5Rf az:{="9<=/|kTIAR_y"%<ʼnuPVx07QJKaꞫ^–em 7we~[LfSΗQoW(Al0l+$ h]4RRҴv3޾TW_H\`h6/@ 'Q_|v1 JhzkԣI-J NkeXůdHKOƀB&UeT>a9+3Ah,|U9`ڸP+ uB(A~5#f6or J_'8y+Lgp%h/[K=r/?dQ@D .ě)U'Q\8mO*dEiRB+Q-ԴVjsRF`aC3u#{U}ΨU*f0"f}DYq1;IGoF| Z0"70UDD]gYu]K=(20w 8II|sg C:Ru{ߦuNDhGV4)O;rq2G~%2ܦx}Lm48ke&hf̶O'ۥyηD4Yt@X:)TkTߴ pLTp}:9=uJc Ibn>:85f:*hCZEmȱ7<Ѱm~vgpD#4$x_~3cmZ%n؜ yOm1[vף5xRUS8SqEW}p-;gzȈ3Sj|Cc.->.Ɋ.S%Ug.ZUcFyݲ Zw>2oi|DLȦDY!yQ0ڑɥ`KtNt~uKBf>iaF# BE@y%1Eҭ2{߻egĦnPZIthIYM_ (G)rmrOd_8GNo&Vt@ !QuyMٽh_FJMIǗ#hqS b7a0%O^- |aOehʔX^-J0Y >XCx^{~,/v^Zctqe괯ۻ;ύ~G$w#b QbSD\0i@.qS VI }`(ױ vRWHXZBN2aES?S.(6wMj)#_o燃@҄5LjקTN~Oޟԅiۊa>btƃ#D^?pǖpYׂCџ_f"O}NTk}W[,tdso8u]: K>ƫdL"@ XiW1@:K>[YTNkKfm5()]T7|i!-"n^y&3lah"*D#eA͊/߰_T| d]}kj YZ