libcheck0-0.11.0-lp152.3.7 >  A ^G/=„4pF{ik#Q!HH10͹{b6`3lRc89xqw_Eg~p ŭIļ˜dy04ԍ5061u2Bt9s Mo`nFmNIhlKYZ?E]=>}'ttTH*HϚyqBǫ}yu.QسfA' X1ETg}A&-[qɱ ݆Xjb2B1fMtʞGh634b54830950d2720840802dd86552c29a0fe93e319347374d3cab26915cd001be841bc4b1d19f622a7a2b4a125c79fc66878fb6t^G/=„:hԪ ]:-Lmu!.(Bwտ)DB0 yf<L0@ɉ Dj "(^n8b N6E=n$1]̚M[nol؈O6i >>3$>Siݲg/nIDgsisAjEқ}JǬ $3;o#V-)\ٜ>pC/(?/d   7 '-4D L T d  $8Xh(*84 9\ :% >+;@+JB+YF+_G+tH+I+X+Y+Z+[+\+],^,=b,c-.d-e-f-l-u-v-w.\x.ly.|z..../Clibcheck00.11.0lp152.3.7Unit Test Framework for CCheck is a unit test framework for C. It features a simple interface for defining unit tests, limitating the developer the less possible. Tests are run in a separate address space, so Check cancatch both, assertion failures and code errors that cause segmentationfaults or other signals. The output of unit tests can be used within source code editors and IDEs.^?lamb21openSUSE Leap 15.2openSUSELGPL-2.1+https://bugs.opensuse.orgSystem/Librarieshttps://libcheck.github.io/check/linuxx86_64xgA큤^=^=^>XU6af7c36ef1f0a37fb488528c6d2ff60914dc245fb2403f539a0c3765db9c438da9bdde5616ecdd1e980b44f360600ee8783b1f99b8cc83a2beb163a0a390e861libcheck.so.0.0.0rootrootrootrootrootrootrootrootcheck-0.11.0-lp152.3.7.src.rpmchecklibcheck.so.0()(64bit)libcheck0libcheck0(x86-64)@@@@@@@@@@@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.11)(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.2.5)(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.2.5)(64bit)libpthread.so.0(GLIBC_2.3.3)(64bit)librt.so.1()(64bit)librt.so.1(GLIBC_2.2.5)(64bit)librt.so.1(GLIBC_2.3.3)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1YX@U@TS@SR3@Rz/@Qo@PNavvissu@yandex.byzaitor@opensuse.orgjengelh@inai.dedimstar@opensuse.orgdimstar@opensuse.orgdimstar@opensuse.orgdimstar@opensuse.orgdimstar@opensuse.orgdimstar@opensuse.orgdimstar@opensuse.org- Update to version 0.11.0: + Avoid issue in unit test output checking where a shell's built-in printf command does not work properly, but the printf program itself is correct. + Emit only valid XML characters in XML logging. + Add LGPL header to files where it was missing. + Strip timestamps from examples using filterdiff if available. + Fix potential SIGSEGV in Check related to the disk filling up during a test. + Support added for applying tags to test cases and selectively running test cases based on tags. + Macros for comparing memory regions (ck_assert_mem_eq, ck_assert_mem_ne) have been added. + Macros for comparing floating point numbers have been added. + Macros for comparing string, but allowing for NULL (ck_assert_pstr_eq,ck_assert_pstr_ne) have been added. + Macros for checking if a pointer is NULL or not have been added. - Update the homepage and source Url to current location. - Add libtool and makeinfo BuildRequires and use autoreconf when building, needed as package is not bootstraped. - Add NEWS file.- Update to version 0.10.0: + CMake on MinGW and MSVC was unable to find time related types because time.h was not included. This header is now included for the checks. + If the test runner process catches a SIGTERM or SIGINT signal the running tests are now also killed. + If Check is compiled without support for fork(), the behavior of functions which require fork() to be useful have been changed. Functions that attempt to set CK_FORK mode are no-ops, check_fork() returns in failure, and check_waitpid_and_exit() exits in failure. + Add space around operators in assert messages for readability. + Use mkstemp() if available instead of tmpfile() or tempnam(). + Fix issue with string formatting in ck_assert(), where using the % operator would be interpreted as a string formatter. + In nofork mode, the location of a failed assertion within a test case was lost if that test case has a checked teardown fixture (even if that fixture function is empty). This is now fixed.- Implement shared library naming guidelines: move the library to libcheck0. The new package obsoletes 'check', as there is no other content. - Do not pass --enable-pic to configure: only static libs profit from this. - Add fdupes BuildRequires to eliminate the couple duplicates. - Move %install_info_delete from postun to preun: access to the .info files is required for successful execution.- Update to version 0.9.14: + Changes to (unofficially for now) support Solaris and AIX platforms. + Fix issue with checked teardown functions in CK_NOFORK mode. + Allow checked fixtures when compiled without fork(). + Various code cleanup, including changes for compiling Check on c++ compilers Clang and g++. + Re-enable internal unit tests.- Update to version 0.9.13: + When a test assertion fails, exit() was invoked. This results in any registered exit handlers being invoked. A test should not be relied upon to clean up if it fails. Instead, _exit() will be used to signal a test failure, to prevent exit handlers from being invoked. + Fix issue with string formatting in ck_assert_(u)int_* calls, where using the % operator would be interpreted as a string formatter. + If the LOG/XML/TAP file name is set to "-" either through the srunner_set_log() srunner_set_xml() or srunner_set_tap() calls or through the related environment variables, the logged data will be printed to stdout instead of a file. This is mainly to support using TAP for fixtures which expect the results to be reported via stdout. However, it is available via all of Check's logging modalities. + For CMake builds, check_stdint.h was not being installed. This is now fixed. + Check's example under doc/example now also works for CMake projects using Visual Studios and MSVC. This includes an example CMake configuration. - Drop check-missing-includes.patch: fixed upstream.- Update to version 0.9.12: + Additional unit tests created for internal and external Check APIs. + Check now compiled on Windows using MSVC when using CMake and NMake. All unit tests pass, though shell script based ones need to be run in the MSYS environment. + Check now compiles on Windows using Visual Studio 10 when using CMake. check_check passes when run from Visual Studios. + Always capture the start and end times of tests when using NO_FORK mode. Previously the end time was not captured, resulting in arbitrary durations being recorded when tests failed. Bug#87. + Added additional configure script checks for support of timer_create() on the target system. This allows for OpenBSD to compile and run all Check's unit tests successfully. + Added a unit test, check_mem_leaks, which can be used against valgrind to test for memory leaks. No memory leaks were found. + Added tcase_add_loop_test support in checkm. + Add support for logging in Test Anything Protocol (TAP) format. + Refactor Check's assertions to be more like the assert() call in assert.h, in that static source code analyzers can use gcc attributes in the header to make assumptions about the flow of the code. See feature request #29. + Fix ck_assert_ptr_* causing const compilation warnings. - Add check-missing-includes.patch: Add missing include in order to fix the build.- Update to version 0.9.11: + Check's unit tests pass when compiled out of the source tree. + Check compiles for Windows using the MinGW/msys environment (without using fork), and all unit tests pass. + Check compiles for Windows using the Cygwin environment, and all unit tests pass. + Check compiles for Windows using MinGW in Linux (without using fork), and all unit tests pass using wine 1.4.- Update to version 0.9.10: + Support 64bit int for __ck_assert_int (sf#3599471). + Add equivalent uint variants for __ck_assert_int (sf #3600433). + Detect if the system has a C99 compliant version of the printf related functions for check to use, and if not use an implementation provided by check. + Updated HACKING and release procedure in Makefile.am. + Detect if the system has clock_gettime() available, and if not use an implementation provided by check. clock_gettime() is used to measure test durations. The implementation for OSX uses OSX specific system calls to get the time. For all other systems, clock_gettime() does nothing. + Updated documentation in check.h to reference new check API. + Remove usage of deprecated fail(), fail_if(), and fail_unless() calls from check's unit tests. + Fix implementation of putenv in check's libcompat for systems that do not provide it. + Fix implementation of unsettenv in check's libcompat for systems that do not provide it. + mprovements to the new Check API: new comparison functions for pointers: ck_assert_ptr_(eq|ne). + Test timeouts can now be in nanosecond precision. + Cleanup compile warnings (sf#3579199). + Renamed Check's internal list functions to start with check_ (sf#3448601).- Update to version 0.9.9: + Measure test duration and print in XML output (sf#3521371) + Added contrib/XML_for_JUnit.xsl (sf#3521371) + Added support for setting log files via environment variables. (sf#3576713) + Added better pkg-config and subunit support (sf#3417041) + Make tests/test_vars.in bourne shell compatible (sf#3472578) + Added ck_ prefix to mutex_lock variable, to avoid name clash on Solaris (sf#3472574) + In autoconf, request system extensions to generate 64-bit safe code (sf#2803433) + Fix for mutex deadlock when killing threads (sf#3564640) + Make XML output well-formed (sf#3575642, sf#3485651) + Fix buggy duration calculation (sf#3575451) + A more complete CMake / MSVC patch for those interested in pursuing Windows development with Check and Visual Studio. + Added instructions for improving the speed and output of `make check' when using Automake. + Added a chapter in the documentation for selective running of tests. + Changed how the message pipe is read. Before, the whole file was copied to RAM with realloc, giving problems with huge allocations for repetetive tests, the problem was visible for a specific GStreamer test case. + Improvements to the new Check API: documentation, macros that allow multiple evaluation, unit tests, and new ck_assert_(str|int)_(lt|le|gt|ge) comparison functions. + Made the new Check API primary and use it to define macros from old Check API + Added checkmk, a tool for reducing "boilerplate coding" when writing unit tests with check. + Added xslt link to xml output, added display of iteration field into xslt stylesheet and moved it to directory accessible from web page root + Added longjmp to fail function to ensure that no code will be executed in test function after failed assertion + Fix dead assignments and several possible NULL pointer dereferences.- Own %{_datadir}/aclocal to fix build without automake/autoconf./sbin/ldconfig/sbin/ldconfigchecklamb21 15896295030.11.0-lp152.3.70.11.0-lp152.3.70.11.0-lp152.3.70.11.0-lp152.3.7libcheck.so.0libcheck.so.0.0.0libcheck0COPYING.LESSER/usr/lib64//usr/share/doc/packages//usr/share/doc/packages/libcheck0/-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/standard/6d8a387974976c088b8bdea2adf48cb7-checkcpioxz5x86_64-suse-linuxELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=f7d013cb75be4bb12f99d6a917ee95a8ebbe06eb, strippeddirectoryASCII textPR RRR R RRRRRR RR Re+][+ς'utf-8574668c816211e9448f647b7d5b25f955499ba404970ec33d63d144ffdfcaf75?7zXZ !t/]] cr$x#*ʺ΀k7lG=Ż9.ڨl MT&(흷+t0kyՋAvOyשȕpӅqeE58.w9:ZʛGḽ›=$Ũ_A7ȃ7革`<3#ꞕ #V 7y,+<Eе#VÂ_9B)cmKVi1^).!ia hPS"&_֖Y;'6@+2T-݅U'DPhY.%j}.J rO$.By|z3-DvW&z}]lgagԤ Q>@C[j ~u˫^ "O4!hP&Ү |">a/xuL%_"8!:SbD34`b$ uQt71.<"f z>4+MdO'`M\FAsM1ⰂzVȋ9e׭{ӈ-l~o f2`!9QZ#CʵZqzn@VGBdr[O;CT/ YjRjZ\_0\ ѓ]{MI]K`*C\ 7Y!UsΣ'J0Vm{*=R٢=vt(ϠW;NDW]QG!gIC~%&6Èk(>8鈼\ǮNXN9SE?gd)*$Qb m|P<^3=oueS7ˊ=Nⱑ|*"4\t%Gk^Jo9X@H>gS Ȣ}X䁤P#Ut̖ĬkI:ym VӺ7+X|>aVǷo>dTEӔ&߂;`A8|)v: IvǤ'8#XOIputol1SG"rL59CkX۩/ ~ |f^ lt/~jICyBW . C_GLQdvi?wEW{3,MB-y(Tp'uwWR|h~qi*茥KjȈ:k2 Y`['j,xrz)&^l2rFʗxqL̄W il)xŴyMʽXP83}j3𴿲 -ZZ8?-LUX*G7ƛbv+l, DF?,~—E?//=KT"kvoU$泱PR~E]~hYnd\/as&2[m[a,!ޕSx4`LƃP9Q/duxzӓ6{D=7R`Lvfpa$d($gB<Ύ']V#|i%AˣL{L <>h\J*R\>\,]iXݤ!C1Қ"OvG-~Zpv ʊae"Qܿb&K%v`?b2emwܩf&ᡱ2r\$0T^.wTWK.#'nV\yۊ`qUM^O~G/9v/y`Ѹng@E`ǓP'9>3 P=#MW -(Fܪ>eWy_ZNXENuҜNΤ`^If]xyd I?j]G`| nn dw,[ؤjTƚ^H]` ܝF2Jzq߭^`#-W䞋.\]~{I_ ys+?5r8*WYP]3eYMB1K&\2%!EH־u }R7&myw(Sn OхR^ )lF*ͅ;jӁ@i]Ҏmk‚m]֯)*ͦ&qm;dp(+R%G#e/y5+*;Qai#;Er )4RbZUeR?vZPj%m",(?nDw*זTsgBepPn0"WrJ ~:Șwi球ctV[:x_mت ZhQP@ i" vI?) GX̑u0 DI߅*F*G'le6PgHcِ)8X,Yɕgf4ܰՆDWUe$0viЛ#8(꺛~C`=jGr`iSc¿Ϊ:ZMm֑('ylu_<5Rai }G7;^j( PʝE1 p ׌%?TiaS9U44f!mqWm#- 9헁rv$DRm=jVbe0jHhW8$(@ A[@P_d]y]ԯW1(hʁsCAtr&p8j-ܪݢ+Q((RآhgqW۴J%g ̡/rU^ p@֡-x5Y{ITcda4S)';NZIfո_W 8R Yb^H 9x.`M\_ [[Z_b)WvJ)Ր.&~ʱ_ f ︾B%bQ.r7?=uOAFC&ꂁc:$ ?256{Va-q{Μą}ҕt"_hM ;c2p ,KeYsŗج2d^ʏU\NCyy5$UoQh@zh~qS̥*ɔ=E1O)KQUTcr/i6a(`jGPB'Tϖ$>k2cVGΆ6r>Ce_23,Q xYʾHSq5dvZpkV8g<&v;&-uD<d&5ɓ4#B+ƹ%"٠?9˰$oI׆ovOuka,Ay5vX>mZ"'/IpUOO]9vR~ cN~̟d.@_-gǐ1&e'Xzs>ȇN*2h`[z> Qg1AkNc{OAx05GC3 .hej1{j!."wua 0e*-k F#88 yzv-aIVgCˠN55u85^N>\ OESXi8~/~-ҮN5//Q^9Q]tR(b38%ND:)س֥i cAZCDŽ;\$x3T;-maY΢73Q#275Lz;)q!9ͮ# *^LQvzKq=` /z_l MZ{Z^ɉ8%W$\BmhN7Z\bÿ>0ŭ%6,9wЀZEaEb:֚-nvobv47=X: Y(/z.;3vv!orG|*e b2L`=w]dST>Dh/ٶrrp$M^ 򵘴_V=V"Km:{D;퓏c&yW_o{zu\h<?Iɐ^ywV+& ~fkR us|U|  bDVU-ISw~ӑ*e+^ ۬ #\)8kjiyE5R7`-^vw{/)NcHQN%D B㝟ٌzZ]I>oY}7y%%hrj0J=V|YZ~׬?Z\ tJr*~Xxݭ65QJ75sg 053wuӏ9҅A;P.t|݋ y\߄%dЈOTPϧmpAcz{p胛n]ZqxU*e 6+:z@7 \;=EcJdFwsE"l;S*4F):}chBdn>`5Pŏ;ҐmFP\Φڠ,Agd[ lncO wBb<%Т"O(¿d576I8FT^@[Y(+9:!ԆfPC@3u@et"8LߓC !R +bD*M ]k[SluULr,ڪG"l I5po|κpLJ#VO$U O`JV'w/KGՙCbq.n!Fw $b\?LW`o*rܻbl/ρ,*X!֠[l/פczH9O`LD9M׼ q+>PĦxa%*kJc(zW˾"WiUwG/txhB*K)JYufɋX\dz]u~ !,X6/γBBv%BjZWjW⁎MV uɛߤ(E K!i W^c#˳WE>@]()DtY}LuWq- ]c}eb,VS`\=?B`m~l_^RRhlR(yl ;X\#Z<)deP2L4gSX'cYvF[J%fL Gx+5S[+C\p䨝z#8RGu^&Y7?6'2"r߉u쳙j˴UrN/[d3⛘+ELg$/ @EϜF$jx y;rcv$PuDKY2آXnʫew ~aVLÂ+|U;ze l3< kAvX)`s^mubs+H&}\^jAsaʀbN5n.=YQʧFfTgdƉZ&R:D 8dæ lMy7@ûscz Z_0_)C _3ߥ9E-iWJ3Y>JHi!i(Y9&`@99SP!4"j!f7y#5Ιp?Pi{ xS>R*I%sETH8HQMmVT4ߋx5+H)jŸ́UG>*%zWEu/6۴/.$j P@Ȩc8 aroB0žX7pB8N]ܭN""4-O~yld xvxh0xe'6ñEM>'j C*\[ƛbFK%roŒUa}-_c_GP4RaD!ho%s;`KD+,ŪuR+uP SAXwynmWݡ Xs,vG`2dx$Uܠ F䜚}+w 4~y<=8RʟQcd`!pJq%& դ ir2[>zffvk]!j`Q{-p 4%F+}!iwm4 %?W[ak|P.rTK>k&-MYq2|L7!y(&bDEuR  o%ٶl2&ޚWV.TT_61A@L.3E+-#ͭJoD dDRR_p1hAVҌa3 :Z>U$a\,wۗMgfJRRwcw*.hL^Bn3Li7Evn%J5>y[Zf!UIBt-Gf~c~u-Z{a<.[ 8WDJ|5MS&S tGPsdj7s~f>t R^a i-fp!77W-kCP>fV[7m[R HTO^ɺt͓‚r8 d~8/|ѵ|PYmUdO*m AScQFZAC~~q㛠O]3`LSU s R4b D |sx^Q|.4 `;;BY]_600Cds9}0]ez+p[>~ZjoP"gݹ(u_A|ӬݎڛGO);FO@ev=]!1$^,k5QƩCF$ھ.߉Jd3 lDa mVv" OsQx:p2xG3dVQ#jdJ'Y: .U캈1^DSIbIf@Q^ $w\wyt?#t8w{N̅>V|<;(bMӓ0>@,DiQUMW,nsI vtce ޅI'JZU᪩?; Z*_xEB߂6U=|߀Wd ,+D<З_/Fb3Satzx0 W} aՃ<-rFu;Yr"@¸a J 9\D5,$2{咴|9A+^PLVE{pfVt B2nNAѓj.rrKqByo©4u=ȋؙl6-[ y?m Tq` +Ww2#2WFPcycu-PYqoa^Y3u\PUdA$`x(V'N), o A-wmFF'/Q)Q$[N3GfψlA>ۘȺIֆA*efT45?}>E+pBXbX>Ͼs z0fǜ|B)KJYĮ5J0vlqG`/|yup_¯^ʞ272Azz(9aNI!>Smܳ|ddrDM-ԖWf2Hm [ Ke=f89ƋFxJXbeӽL{qn:.1W Wuvl@n6k>bI=F,b0nmtDDz`4_y? ;e7h^%2ݢx[ Lɧ }$6{cX贂_r6=xz1 e;\+|EQcx1LpLQ@^i=aV1>dVX-faF&3[[x<e|W ¾\Qߐŗ Pz[0f\G#% H)$VÈ-hsx|fSPwY<4Rǣ?\/go:?1jI_BtgrkٿɁwFcTNձ^I=續CG]ȱ18G}Z<~LiqsP&1yibg}`ܐ7@ჟc$h]TJU灻~VX-)g10zCM83KsTv dqTe|88eŞ&n[c4WUg@ +qt"4VGpVT;6B T  * VO:7 tb0ȍ2paDȴDTu/$(48+ZT2 pm!9cD߰33DFļj~N7<+~Vpev""#a%_n\G>=]AMDf `.ھK~!^8pLw1{ xBNl PFBe)6Ѭl6X ѬzJ dG{;s<1(Jf/& pB+LU6(?y.ey<~n:w)%u RQ\C.hoF9bUd /iyS_~Rܞ7Wc]/mHNOe[ R#m;t?.Yk`uRjcX.H(vN 0ܰrR3r;6OA>D$l4_}R/UQS%peo.5mLP \ ʇ"Q5wkK.E=7qx]AV 4 !yR c 4L2Og!܌ s0lu?t]Ȣ,=aA!uK1M 8(d꟫LS'Qy'04܅{NŚz= /#$!B1ZHruê_]<$1RI~_g=t!wp?Z'Jl OTZ& AsWsU@ۂ7:AyA@Η |Ն5#u!?'f guҏV] __dv}BT9X+@p+DL8T8)=aNN L=LϞɥ~+:+*s(8iN$KJdGǾn3xKcdoqLYd2>8&tح<[RJcV, RuXJG^(.o[KOgʡط$|$=+' kǕ=:NUO1͕5^X'Od5YH!Wh+\.e ]v,' eʥnke~/7P4Yow%/[+q4/[IO璱 dOf "uK bG 3dJ ]kR0B,\wG@e IveM:lQCU}ԬS$9/Q4{v>`E818W^^T I[51Vޥĺٽe,ru!a#FϑsW5ze4"bOSD)A#Ƌ?٢> `xa˕YX(ieC'OB|Q$&>r]ee`1gTj^SW‚l@`GP3J"7bfH0,zF_Qs`(UZ!u공HxZhL'z6LX1Lf Y4Kz%*&v-UfWKleofvJ||]tc!턎dyDkmk:јDY Y^ved}m_0TQ;c{40; $wf&y>ȗK-t!Fcŋ*z4I^O@ֳ ,,ܺb"}n vd,adV7@)"3y9}h`6 ^Qzk{<>U>1iKI"/jG'n*m ByG{s_| [ !mqϛ0"+3Wɛ خ 5}=A,2Bv4w wr1g{GwOcܖ8\W{SdíƶhS8")9뾶?kB;6sAζ`ŮT#p̈P ! ESaxNuI4ͷe ^Wv*7\yûD4)[Cͻڲ?yhw徑q8#WKaAK A$9Z*2Kqf+Ub{SҞl j=^ќ%QSbFG<|nF2`豉ͥs qL,$v8)G M2\ <`wx(̕3ݬK1@'cIp"z%;Y`ǀ]MHw'z!4tر7SUG$GOuX1 uHc误Y i\FnO۽6n!=,0Wy}gVV"yEnoyU,P11[Q>Eb/Rު Cj4:Lx i\=tZ1S'h)Q0\؋Upv#'yJ:,XA`bmK6 .17,컆cȚ+$ }߀́HWR=vI&})8ԃXn>{]/Y`M.BQ+ +@/k&#hJ}hZ M`LbAsۘɹMXm-?BXe_6 }K5I}a Udb\N7y!}@ q*E2k^";_Ë50Oy|xb$ٺJ7ɎbƲm>phY%}^ΑbAY$93*fi:R[ffss'7 j(DLIn]~fOwbkrh}k#fT`@},YV3#1ԉ407>'fWYJ.xLe@lEHta񯩂:>\U!Tv!Q{f>` n{mu9iP>'e"&V6ҫ5+dAΜ.@I[Vl2DQP\d51&O0W1jSQmEj~Jҿ`22BiiRWEg5>"+ *b_FI F_!hTV}M~&5ߡNv][A>#E wMx6wie+-q9(Qә{L"tE@&jiħ+mu̴bew U uMV,Y@CM߉,X Ѩn׀G7Ab}:<rѺP  %89ݼ@>݉˝l0 mwéZ߭;&L˰+o]MKW?).Ȍ[yĐB+/԰Ɨb=Z2 tYc mcj~5Q1)WzZ+١Ud:[ގ[ƒ<rG "'lA!DB$R7zekrl_[93De$,QY78,.L0Ҕζpv0ceP`I$Wp$ijRhwynE].$Ymʺ0s=dǼ^29ha[v:;uxS9e<-!iYqK&Q8,,_PMHoRjkT>+gyMg 6flva_45*!4YZƺG1`GϜI v3by[~)XXBFk!N6, +1m{KdJf  w/7rbЭ_TmAj⽊$\U~ʪ*ǮV!.Kqōn@$gޥDQIDS-8g@+RiF(VK8 Ƌ&PQ+̙Țb.2QYYؼ2݃QKk*`+ ~aXҢnͿ0w(o)̲*g]}V&52%-EhC֥/[pԺC}4b&[פ@\0Wa'a=ldvp/&5wݷ\{SPkHJ^,0ZhQII8p"im>''<7RG#,eۚ9|40JJKՈnm:q]ڿXuo:Ah3IVv12<^dV? N#~-gPsu @2F3zC3W58x\aR HX`i^_^>N I=ٰd m݀*VЗ&l_^|Moj~KAQ ˯/e|kpi?!Tkܔd14;? 5ґhk^vTpA.w*XGI~@՚`aK%lmG0ŏӿ (-׫\/)i:c L/=$r0 v~amzRVWv^X{˔S@0ݹLrho[.̷=4wl]thτViY60_y P֦qS(/ xnu>ӫKz9[躼0# pϿ1Ĺ^8>(Nxs'ox$*t=|°.Wdbe`N3ךz ;Ek,~pǩjՒ_5%oS jarPnmvm5Sf bsGnՃ6p^V.#HKw%c=҂rkg=Q؝ 'a;' `J4o}.El2~P΃6Њ2{!B6`~ܦ NlbP[`}1Žꏯ_tJJJ &6PK2-lS 3^7!h$_22n6;+pwE%E&%  H,q85LYEmmAbyޘiDߠSטȠ`Rs25 +84BNUz/dK$|eþpmNAob[.E~s}sD_ zL"m1f5$TJ㌖P{9 eSs]ۄ}[Eau ߉ uTAK=$Q {S|a#"/L1slo攌A'g/>K-|ȨLA!G4h9(@,=8mǃxli 0t$]l= A{U&d8MJFѪjd@zz1t6obi1 ݢad6JHҩ\ןmyI ɑ ?BYT^MzgM5)&Ulnbm!sRQwQO}6R$"NPS]լ#4dCϛ@FA #k9r] $o#\&<( 3||mc{x|L<-M1`{U/r wq2=PnFͤdD)2KcfBV`Rֿ2gn]/wcrRn͓[@na'L( H\>Z }!hy0RNJ D{Zu*v8b]?Ԧ5{Nzdķ82(,=;|Ss25ZOqK5=p%I=!:7Lv}UpڛSƃb|cgCANŎ";^Y~v_9iw݇(GâlliZ+',kx3<%PT1~ >0nXKy[m]H6rqZqKL;&c.]~6yB~f&)/IXHzRʐ_F EڢITR<%nqZ>:;yמ"\Q>'Xs 5;Z@#]{b8К@,H0$wwHBi&e=| nJߩ[.^Վ,ZՖzj>.1G"HP*OrעT^:Y*͠Zr)uZobj;e{E, =Y]X`{~k+Fy,N{Wع%BpxA^ıy.۱`tIN Pjrܘ7~?<=0u!yi6|QSkDb[bKѣ'ot~Htj԰ƅ@AuP֟Tܯ yVlGDyr ^Ğy%z~è6I .NϚ|o%^" ,#YX rK{o[ 5S 5_}7aMpq+ϟ89|[1AqYіz:1Nz^dD?p$ӴC fqkw7f:5Rn\bgjŇǩkj0C.=v9c$fsyR,]vz9weQ) "8H@N*9}FQ}EM$y-Be:?K;Bn k{f,'I^RL aM 06ai__aY[vyfe(8 $mESPK< :n.t!Ƞf1U5z<P39jUs}8"'I*$H:DcY gBG93>먴ÜgtS Y]ӋU^ ƠJoP# +[m6|]UdoG{@0;B-rWtJ( XPT&,{ؚi(p̘)M1b#z}Y{.܅Qpc?ڠPCӲ~ܹѫ鉇kFD3EB)?1#wM}蟟MU:>rNߒv xla/I.L$vx&.[DN2NwF3|5܏(w Wɰ|lVR ; P B5j+jٺP/XɾB>cApްij4.[sGg$]y*Jq ٕ @r)G[xN.-.= y#a-]S_u!*Mė\`$heiʄc> |Q{qvCygg_)6y2mhUD` 4J=1?MD{ Tyot1pN>>*P-ҲVuyu<2/~,VT*D*yڣ#D%za˱j Y K/ ЪN,!gŞ!>7^'61l+I$=ZqN:ǔ@ ,%稒k5\uD[g\ 沢Ǒ̼C-o%iZb@{6ȲSM|^ϞJV4h:<cY^>GA J:] dˉQ߲c5P~&Ac[2R8ì>ɳi`B8o3BdGz)Bɧb“MNFBl(qo 4`i 5edrE%NW?f7tθM-%3K!dEi+P&f:T|qY~`D.;]VsToEA#9NB?YYP\RNxJ//h?d;gܹ)N“ .-"ܜyFD?9?m<,Q]~Onv0Rt'T"Ǖ`Q_ 3̫ ,A!p&JA(㙸&AhoGxT% F@1lx:QXʻk6CRClCI"'T6w^/ϊL5, A95~$ݝϨХk207"3EGB)h7-twwP,Ըl%`5=DvQtl+UDeҠ/^`_.cˈ!aa*ۢХY.l+uzbԦ,ek#E^ \|JM 'ilH/ ^/9NV;!e<}-%e /S`~ᙡ"O/ ?<@9t mI5صܔ${Ok8Ə*Qr7 }ҥ+X)9ߧ&h)dt%jM#PXOpQCBIp^Yd0pLI ̓|5̓]'j@6'On>f8FnΠ~y-A`SgϮ\ծMXf+ӱNN el#ʌQH!q *ʺgޏs^d%'Q7w.aEMS)R2i\xL;TfێEV U>!H=<,Z-tjZkdep|%xp'b,ÌcJR4?ܵ鲖ͨMQBY|ԂZ,vmvnpal2k  #DN8wM&JDONs:> 6} fY_CC21ecPClۧ$CcoX*MF>" B? g, =ՍN8bMZ#t''WBnc)`"1׉+nJoZ^w<$GuǴ\b0HJg>1ɈQ ( $U=@:N f\X`2/T8TzVǯMd*wsN~SoA2I1K*|:jZi!?(dH+EXRn"M:rEL).j7hc&5W+* AvC 6̙$YCE4-aRgGAR]\F9>CqOe{m;Ƕ)gG0  iGJ7 h|L^VtFCH!5l¦1'J#a2ht7 "@6hF, { AQ79i ]P? {H(ʠf_ߙ1A{ P@c)Ba3d Y<ȾE')*#W[Ɠ%$=;&Q?i)Lu1_H-y)ԘeO 1-:Gc(>|YV8/>jlRicT=>9 GZ4{"4̸V _C|ŗŜ_ d=FMd.# i7]v;܆ʾ-x-]"RX35+Uf=>XO5< #FJO9;??4bn29`dtީ^a sD.GxpS8mQ-+Fdkb=+-Oj3 ~?RڝGlPGIO164}ϊx'e1æ`ؐVg ;"O AYB!Mk"o]v2N<&?4rEE+cp"ը׋eÙFccPm Wrw4$#`9&ua=z7` +oU5& n,J6\}W8I_8Y3SӟDT.M iJ3wvk9C3 NQ0{PTWy>1R5 1ݠQ—)*k> omJ}ȝopj)\bCA(QA-,(h|ttđxQJ3F $̵.=ZAy߅QػޢjSE|Sj̯-5 >a)^L使'V=m};_]o k*\x7W5"7 艐jZ"{nGfճ AM&y+UϩwF20w%fQ"6+ YZ