python-pycurl-doc-7.43.0.2-lp151.1.1 >  A \̭ٸ/=„hLW`bw#9EN * HG2Lft"u1ki6&#pr\4=3zeoNL1_L5Qop;F|?Fld ' E -LR\1 1 1 1 1 1 L111$1 4(890:F=G=1H=1I>1X>Y>\?1]?1^BbCcDVdDeDfDlDuD1vEzF FF F&FhCpython-pycurl-doc7.43.0.2lp151.1.1Documentation for python-curlThis module provides bindings for the cURL library. This package contains documentation and examples.\̭cloud135alarrosa@suse.commcepl@suse.comVítězslav Čížek Matěj Cepl Tomáš Chvátal tchvatal@suse.comtchvatal@suse.commcepl@suse.comtchvatal@suse.comtchvatal@suse.comvcizek@suse.comarun@gmx.detbechtold@suse.comalarrosa@suse.comlnussel@suse.dejmatejek@suse.comarun@gmx.dearun@gmx.dearun@gmx.dearun@gmx.demcihar@suse.czmcihar@suse.cz- bsc#1128355: update to the Factory package to get multibuild and better working tests. - Refreshed patch against the new minor release tarball: - pycurl-libssh.patch - Added patches: - disable_randomly_failing_tests.patch - python-pycurl-7.43.0-tls-backend.patch (from https://src.fedoraproject.org/rpms/python-pycurl/blob/master/f/0002-python-pycurl-7.43.0-tls-backend.patch)- Set LANG to en_US.UTF8 to fix the tests- Add missing setuptools BR- Don't run tests that fail randomly or under load * add disable_randomly_failing_tests.patch- Switch to multibuild, so that we don't need testing BuildRequires always.- Add patch to match up Fedora on how we detect tls backend on runtime * python-pycurl-7.43.0-tls-backend.patch- Make sure we build on Leap 42.3- Start excluding flaky tests- Update to 7.43.0.2: * Added perform_rb and perform_rs methods to Curl objects to return response body as byte string and string, respectively. * Added OPT_COOKIELIST constant for consistency with other option constants. * PycURL is now able to report errors triggered by libcurl via CURLOPT_FAILONERROR mechanism when the error messages are not decodable in Python's default encoding (GitHub issue #259). * Added getinfo_raw method to Curl objects to return byte strings as is from libcurl without attempting to decode them (GitHub issue #493). * When adding a Curl easy object to CurlMulti via add_handle, the easy objects now have their reference counts increased so that the application is no longer required to keep references to them to keep them from being garbage collected (GitHub issue #171). * PycURL easy, multi and share objects can now be weak referenced. * set_ca_certs now accepts byte strings as it should have been all along. * Use OpenSSL 1.1 and 1.0 specific APIs for controlling thread locks depending on OpenSSL version (patch by Vitaly Murashev). * Fixed a crash when closesocket callback failed (patch by Gisle Vanem and toddrme2178). * Added CURLOPT_PROXY_SSLCERT, CURLOPT_PROXY_SSLCERTTYPE, CURLOPT_PROXY_SSLKEY, CURLOPT_PROXY_SSLKEYTYPE, CURLOPT_PROXY_SSL_VERIFYPEER (libcurl 7.52.0+, patch by Casey Miller). * Added CURLOPT_PRE_PROXY (libcurl 7.52.0+, patch by ziggy). * Added SOCKET_BAD constant and it is now recognized as a valid return value from OPENSOCKET callback.- Disable tests on arm platforms as they are very flaky there, on multiple runs always different failures- Disable strict aliasing as reported by the rpm checks- Since version 7.58.0, curl may be compiled with libssh instead of libssh2 which differ in supported functionality (bsc#1078329) * add pycurl-libssh.patch - update license- refreshed patch increase_test_timeout.diff (updated line number) - removed patch pycurl-no-runtime-curlvercheck.patch (included upstream) - update to version 7.43.0.1: * This release collects fixes and improvements made over the past two years,notably updating Windows dependencies to address DNS resolution andTLS connection issues.- Cleanup Requires and BuildRequires- Add increase_test_timeout.diff so tests don't fail when obs is overloaded and it takes more than 1 second to start a service.- exclude http2 and ssh tests if curl(-mini) doesn't support it- update for multipython build - merge python3 project - update and apply pycurl-no-runtime-curlvercheck.patch - run test suite - single doc package for all pythons- update to version 7.43.0: * Highlights of this release: + Binary wheels are now built for Windows systems. + setopt_string method added to Curl objects to permit setting string libcurl options that PycURL does not know about. + curl module can now be imported on Windows again. + OPENSOCKETFUNCTION callback is now invoked with the address as bytes on Python 3 as was documented. + Support for many libcurl options and constants was added.- specfile: * update copyright year * update patch - update to version 7.21.5: * Highlights of this release: + Socket callbacks are now fully implemented ("CURLOPT_OPENSOCKETFUNCTION", "CURLOPT_SOCKOPTFUNCTION", "CURLOPT_CLOSESOCKETFUNCTION"). Unfortunately this required changing "OPENSOCKETFUNCTION" API once again in a backwards-incompatible manner. Support for "SOCKOPTFUNCTION" and "CLOSESOCKETFUNCTION" was added in this release. "OPENSOCKETFUNCTION" now supports Unix sockets. + Many other libcurl options and constants have been added to PycURL. + When "pycurl" module initialization fails, "ImportError" is raised instead of a fatal error terminating the process. + Usability of official Windows builds has been greatly improved- update to version 7.19.5.3: * python and nosetests binaries can now be overridden when running the test suite (patch by Kamil Dudka). * Files needed to run the test suite are distributed in sdist (patch by Kamil Dudka).- update to version 7.19.5.2: * C sources made 64-bit clean on Windows. * Support for building against Python 3.5 added to winbuild.py. * Fixed build on Windows when using MS SDK 8.1+ or MSVC 14/2015 (patch by Gisle Vanem). * Added automatic SSL library detection on CentOS 6 by loading libcurl shared library in setup.py. This automatic detection is meant to permit installing pycurl seamlessly via `pip install pycurl` on CentOS; as such, it is only employed when no other configuration options or configuration environment variables are given to setup.py (original patch by Francisco Alves). * Added --libcurl-dll option to setup.py to take SSL library information out of libcurl shared library (original patch by Francisco Alves). This option is only usable with Python 2.5 or higher. * --with-ssl, --with-gnutls and --with-nss options to setup.py now result in PycURL explicitly linking against the respective SSL library. Previously setup.py relied on curl-config to supply the needed libraries in this case. * List and tuples are now accepted in all positions of HTTPPOST option values. * Tuples are now accepted for options taking list values (e.g. HTTPHEADER). * Fixed a use after free in HTTPPOST when using FORM_BUFFERPTR with a Unicode string (patch by Clint Clayton). * Fixed a memory leak in HTTPPOST for multiple FORM_BUFFERPTR (patch by Clint Clayton). * CURLMOPT_* option constants were mistakenly defined on Curl instances but not on CurlMulti instances. These option constants are now defined on CurlMulti instances and on pycurl module, but not on Curl instances. * Fixed several memory leaks when setting string options to Unicode values failed. * Fixed a memory leak when using POSTFIELDS with unicode objects on Python 2 (patch by Clint Clayton). * Official support for Python 2.4 and 2.5 dropped. PycURL is no longer tested against these Python versions on Travis. * Added CURLAUTH_NEGOTIATE (libcurl 7.38.0+), CURLAUTH_NTLM_WB (libcurl 7.22.0+), CURLAUTH_ONLY (libcurl 7.21.3+), * Added CURLOPT_SERVICE_NAME (libcurl 7.43.0+). * Added CURLOPT_PROXY_SERVICE_NAME (libcurl 7.43.0+). * Added CURLE_SSL_CRL_BADFILE, CURLE_SSL_INVALIDCERTSTATUS (libcurl 7.41.0+), CURLE_SSL_ISSUER_ERROR and CURLE_SSL_PINNEDPUBKEYNOTMATCH (libcurl 7.39.0+). * Added CURLOPT_SSL_VERIFYSTATUS (libcurl 7.41.0+). * Added CURL_SSLVERSION_TLSv1_0, CURL_SSLVERSION_TLSv1_1 and CURL_SSLVERSION_TLSv1_2 (libcurl 7.34.0+). * The second argument of DEBUGFUNCTION callback is now of type bytes on Python 3. When response body contains non-ASCII data and DEBUGFUNCTION is enabled, this argument would receive non-ASCII data. Which encoding this data is in is unknown by PycURL, and e.g. in the case of HTTP requires parsing response headers. GitHub issue [#210], patch by Barry Warsaw with help from Gregory Petukhov. * Fixed build on GCC 4.4.5 (patch by Travis Jensen). * Added CURLOPT_GSSAPI_DELEGATION, CURLGSSAPI_DELEGATION_FLAG, CURLGSSAPI_DELEGATION_NONE and CURLGSSAPI_DELEGATION_POLICY_FLAG (libcurl 7.22.0+, patch by Dmitry Ketov).- Run testsuite during build- Update to 7.19.5.1: * Added CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5_HOSTNAME. * setup.py now prints PycURL-specific option help when -h is used. * LibreSSL is now supported (patch by JiCiT.) * Fixed an oversight that broke PycURL building against libcurl 7.19.4 through 7.21.1. The bug was introduced in PycURL 7.19.5. * Tests are now included in source distributions again, thanks to Kamil Dudka and Johan Bergstroem. * Added CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPT (libcurl 7.20.0+) and CURLOPT_MAIL_AUTH (libcurl 7.25.0+). * Tests removed from source and binary distributions. * Documentation greatly improved. Quickstart guide added. * pycurl.Curl, pycurl.CurlMulti and pycurl.CurlShare are now classes rather than factory functions. Previously, the classes were "hidden" (they were accessible as e.g. type(pycurl.Curl()), but could not be instantiated, nor could class methods be obtained from the classes. Please see this mailing list post for further information: http://curl.haxx.se/mail/curlpython-2014-06/0004.html * When passing a file-like object to READDATA option, PycURL was mistakenly looking for write method on this object. Now read method is looked up, as would be expected. * Python 3.4 is now officially supported. * Windows packages now build libcurl against zlib. * CherryPy is no longer required for the test suite, ssl module from the Python standard library is used instead. * Fixed a reference leak of SOCKET and TIMER callbacks on CurlMulti instances, thanks to Ben Darnell. * Fixed build against openssl on cygwin, where pycurl needs to link against libcrypto rather than libssl. * Added CURLOPT_SSH_KNOWNHOSTS (libcurl 7.19.6+). * Added CURLE_FTP_ACCEPT_FAILED (libcurl 7.24.0+).cloud135 1556917710  !"#$%&'()*+,-./017.43.0.2-lp151.1.17.43.0.27.43.0.2python-pycurl-doccallbacks.rstcurl.rstcurlmultiobject.rstcurlobject.rstcurlshareobject.rstexamplesbasicfirst.pyfile_upload.pylinksys.pyopensocketexception.pyquickstartfile_upload_buffer.pyfile_upload_real.pyfile_upload_real_fancy.pyfollow_redirect.pyform_post.pyget.pyget_python2.pyget_python2_https.pyget_python3.pyget_python3_https.pyput_buffer.pyput_file.pyresponse_headers.pyresponse_info.pywrite_file.pyretriever-multi.pyretriever.pysfquery.pysmtp.pyssh_keyfunction.pyteststest_build_config.pytest_gtk.pytest_xmlrpc.pyxmlrpc_curl.pyfiles.rstindex.rstinstall.rstinternals.rstpycurl.rstquickstart.rstrelease-notes.rstrelease-process.rstthread-safety.rsttroubleshooting.rstunicode.rstunimplemented.rst/usr/share/doc/packages//usr/share/doc/packages/python-pycurl-doc//usr/share/doc/packages/python-pycurl-doc/examples//usr/share/doc/packages/python-pycurl-doc/examples/quickstart//usr/share/doc/packages/python-pycurl-doc/examples/tests/-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/134df03fc3daeb4f026cf0c2a4df300f-python-pycurlcpioxz5x86_64-suse-linuxdirectoryPython script, ASCII text executableASCII texta /usr/bin/env python script, ASCII text executable ceϣ)"jutf-889c4975023549e5b4cbd22da53e73ba2fef7f2013485537a1d44bc84786ec357?P7zXZ !t/3j] crt:bLL '#Y`z3pfi QR3+tls$6rK1~FQYQ:&x^:~ד䀗u!+P%*T)BT,suƒGZS dm㮿>BW5:# |R*+/}5 IiަP"L97=n}bm̺PDwL( J`Gvf#pb;#|x#ϙK .}\x5h}QUBvzLP<"o6az4v%;1a`%ҝ(C3\).)i=7#uˊR62uń!pyx2MIX$-.1do)r$@Eo6:d &/ӳYRNz&gQdfd4mN_6nX>'&AM4j%d_r#uʕ"_=Z\}M0 :Kp@KbnJ`.gp A%FΪ6ݫT7Vr4 ёɳrA¦[Qmd;YQF\,7<0ن(iZS!$Mڛ>DY; Mނ'P:[{,aY>*!S9ޟNsT)86V&mdLcX1vkㇲ2)f֎! &0Ei~J*%w@P- T(9q-k RuɃutn8?5Fnm>gfu)U}N gM.X>(gOcok )2St-͜b}SdO;/~7 SHko2_<m͚D 8s[_ C(W-beNA#Q89cnVx,sexOB5f˪rg~x)gƿ5aWy{֞xX)q aAT()0@!`S0]?m[s~醁? By)tܪuz5D7$ xK%nΙWJ4(}d؊m6rP( ~s<$|Fc-c/=_Q'`?4\# G2}TVčAݭN 1SOc|_Q+2Tūt&dOA@oh&sb̓bE,O S_шVc0 s}BܭjvLm6,+,ߪ5 Z&=-<w'v5߻ڧJEVfbB\QU."0]FޚbEӪ\߆2(O{AH1m?yMK4F7o?hڤ`b`^'mgVrTx*,4,ED2:R%u sҶxEjl뛊k虨tцO5'r]bKh:43=?-TI)j+.0zWǮC a|0@X(aSo\~=*LYRwAf$Ǿل^Nhtcp+Yo! ?^7cq^}?OM6!.ns"pCHH]s!M3<v$oߨ-llCƵb6"(r!:uT7ԸiRY{gP oHZaZFJe'e&ZA GMbV%ws}Q-'J%c3rRQEPaQ0/ Q8 8)Z7n~ߔpN z#:cV{wIH[\+x^#KE%ۈQaY|%KV.^ƵI!c,x l1zHlNh 0j"5 wwN0tz+Xm >8*:Rx\&XBy}_&W7=\^MvT%CGgu2!mo.A: ֿbW(vOB$3AU{ٍkx$3HL-ơuBoY; nȱ< qxu9T=jz=bO8Eskw%uJ9A3+.},X-E,m})ƑT0e2;衎'A j6zl쿀UMX#,דHat$]2hgEN>}7"Z2@)Ѣ;gj!}Bj:W8瘝kFqbbPuÌ9$'3QCQP=yK O ڳn!M8渠}놨,*XZjZŅMY$l +]Xx[hy\q^r*O"_/;eh"'2t}jH̓:PB  !{`Ӑ0{K Yj;e_p,ъvxLd2y(h`DN]RĹ >w_1)qNpTMN1bJhZcgm_䚹Oa"Fm Nn$R3?Qt],B(Xz̧~uԻt#O:?q*i['K ȹh7\Z =A'xf5uN*KO:#Ai rT{U]6ZJyq๱ 2A vmΪSdGSAʼ7!9J78,??˙"+\5a(T151# 8(3Ґ'ɓZFo/L4{rOʂBt DK,%ݯj K !=mȑVr |`O+An_e!#CQoHb`S( =4ɗ)Ćm-f=g68@0K*N$i{ףOCN!~dE2u?#B+ %R>G%Q-lI6M^;WPYpRߩv#4*;LÆ[0gTqu0LC <%9.! ].]ID^M)s8崃im]F-O^b[PQtZB5F*uTg1%fΊ`'=1E_cϺ٥q3R3:bi>=lkC.\.y %#-񑡕BLd&y:ku1Ч^7"Ҫ2ިRĿ%6վ&@m)̛*yLY K> * `Eڮ>V]B_|OT{Viw,{ Y\N{/pDǥِ\Gz `^ursΥ F}|%)0^~aFI>E`29i/sf5ߏSqmf[0|)вGgx)bf.,TaXTpآ Yc 7u^?{K\**RaufP9uzQ q#@q= 9P)R3uE!xjQvbR$l "ʑ=c+Z^Btv-Hpm uIx54` ob G n/NE85Qo(.De+9\y8sܤV+ d!C83Hר{#nW^EN\ʐx.UI˵< o49[9U`t>3\6 ߊ^`k `;Vݝ|8!GG>ą B̐>{z^J-$9IP|,4@ j~:Z.A戸w,pi^҃9{Q܃{\6YeMOO x&,!NGɫZւ *m脮/WDdφ^; ݁$-chzցu̲~#GH"! =5T$G\ZH %B@T[X+1F+{34%lgDČd8A}˃,+x<b<L@)x8h"3xΘ~ff;6^0kWwiQfNLm KR,CGs+.ͷ؈7N;! Ț#*\ Qd> ӫa> һ-qX#ÛWDӨʁ2O[3'|>KpϺܼ4t7 _O2 Z&p[Q[CU E\ݘKȆWveT g 99rQ`y]0VVܜ\w@K[c~0~j)\G teҡCfk>\Oԃ6 (i3ߓ1& )y+$OZd ) +O/k+e"X-kF22};/%{ 򟎥GO=3ҭ 82xS"M }q scao騩}sY  {*r*DSpLh1R=g&>*pΜ)q~O}| QsR"DF1'y](+c Ǻ®E;n hqvo~Lr-H3r/%O]<.=5$)I eC߫zCdP$?׻s%eWx _RN ޱ<*ӋV6]N嬋'ۼE>p;菠X4^#o3j$x|8iWhwQ}G@]w+Ǎ̱P0B0u>f#+ί&fR# \߼ڗz>TSjVE/^*b"qS31| tKIͪ CF.AHw,19|kz*3ө<3qw<#1 Xq/pzrI̧W )} ) }teοJ]l#/ gd 8Wlpe>kЧZ: 3=WuIdޟ fz {ǫfE f}];%Z>— נbaɟ*LrWd|cP6o\^. V]/!('-i=,5&)KkKq @} ,2.k| pi޳eP~n@ 6iEe(x1CR[ܱ&_qc :i ~}M"x&%e{$%-8|Ys)]2 LQHOkx} `w1y!4E$y h b@@-6gT](.<6{4HBSC$!WTd$e ~'T;ι[TWY)slEƒ/y*k8afc}xaQh%v^RӚ%f2ӆd4;ZD:Wȁ Y<_eDHD^FؽR|F-3=i4[ByO5!UjmUM471yh;JȈ&lUⵈ24a4;c!$". X +O0kfIZӽՌEr|VM>=Y)=>t 'ĚjEöb~".Z.oXIZӍzgpg:nV'/2F&"ij7 8@ +FìTfݒlYۇ9ֳwOk8% [(g#-ز*Som[`#ye3FE9xE$#XRIUFoeS<ck~Tnc1lRX|bdL<#䡞שA fsFQ5pqD7t{^ !GvmGa5&AڶM!YY뗵sX o2H׮x>=GPn~_(fgÛ@֘x"0%ݑQ9?<}HȦPƺ)^):__^H#ůZPVO@X4{qgP^W!{4L+ &4]&FFԓѕ ҉f8h'.Ѕ63*k)fy@\E!AU.䙩CQʭ ^;"nÍlS x0d:I\#C8i;֮s r"5k5|ξ<6 g½wUfO1FJGYS}S(z]bjHۇ_( OJ >#Rb% QM2$Wh(֤0jX(^z?T\d!t(hwMĦNՄ1w0|OJٚo{ Y?`w(#x|w[!x4@3ZjICNh.'\#W?Ufa`BzJ! ){TѝZaʹPǟ:U5ض,5l 8LC|Kv}#"',ORxļ0ΖnjnPDDyN~;"DIWt<1Zq9+T(>Ob$i`ozLqjMI_6VzyZ=3sCwgWȳێ2҇.(_iV76}|NŢ{nZ阛>3zk`_EWKboCA5NإFճ?Dus|*%ކO1 `诀|*$J7Pz4/;Zߎ5&liǡa!T1[ب%@A: } 5$;Ml$нe 6Х 76&# G{7 9;3kćqc۰ADJ9` 9fO@A2zކҵ6*]_`EWWTHϗ2ϝ"pFV )O|u^D[`pN~?W@Am}^`enpvnx΃WLÁLjs!97 4| ըvV8ʨ|9GaCtGoО%y`]Y3&dc^rG?c-tWՓyO&u{'`9q#A\яcR,`RSHgR;ӉTI]@iDxG4Mg5ՓপdJT4%aA1N_IJ~f'ev;G\%n^A wMVEU_)wS/*q>lS;^4^|o!S¦½osB4. mxk|p$ѮZNߜ,S?.!~rf% %|Wa*xSd^|ifK.z82,5t Z]a!N]HqB'쇧o3L ŒŎP&2/94mL%뙤O@9Qj]*bt<:v@Xqzߑ8s0lkQk`%T[b21iB$=* <]q]śL)hԇ {{ĪTO$`$ZV9iUi j=ywJN,)~T"od$#cW ߨЬ|>lhN%F%V!4<4CHw¯3Xi \ H.zw}tC$$83 $d$tE&1mD`b "hOQ #Y$7B>AV&`q珢ZBN;'"a6Ik!50#Se씎rO4C ^EyA_MlE' |SE؁)譒wwic75N+ߨ_Jf=~F_&7Ӿ+Hµjn8/K03ϯ(RQثt  E\56p\b!]l⠷Q Mف(?tFw?B.^2GE\rE\V[@} I!Gk3uc \5hij$k_簀8 ,moˆ)aƂƽ%@e[XJ8FFc# ws@8X8](3{õUT?(~[,dǖ֦/go,_8,lRPg2Nr/kQl,R03G4^.= !K{ AvG:Qt쌹AW28ɂIZ;rRIT5hwX6ӸtvWlRjM3SmhT|ňBl]- (NwH֮urn1aa׷f]';>9ނ{cO sW9͕D 5]oHFe!ڬ|g]l75! z6'qW`d'U{0Lkl<:A+s0l#)#p;&mW$Idw[^~p6_gVV A}PSd 9j< Y8[-`yJv~9R;5h Mo  +.B>ՃH2P&!M(m]իL113uz/:fk2RMܼuw&.)X{749D!E-?!9eCz4׏Hz*~Y.m#MTCšՎ]*e);&H+] 0p[f) %h;Hb`caHpN/%LzFlz}8Zg${N= Ϩj#cP OD_UT/Tr?5o(a`Nr8V<,TTM䰢%aX3[SZ۔W,4-ޚG-L /pm3ؕt |atKWPF)h'fT?]Xi.q7dNV;P84|PV#+LsXrtQFވa/jq7=╣zB6́#4!  (vҲƘa:6t9 b3#L?D]8Wy[IAz ? Qu7w{U5P$/y"+友/JCO-djedadx zpy+Y;X:h~|<1-.s$>`} ]7POŏU8_loÎuj@XwO@:ؐJsDAg~QK]RB S*JY\1VBʮL=~5zVŐ@l#F8TQcQ]a$nfԢwk⤽E[zրRuez-"^0]$5AicPpv캕fidN`Ug!0CuI#Ưj 7hdoŕ @p(LءjO9K ;Y l<ǂ2I,䥾Rr~A.׭1biKhj'u%35n`h )dy,oSC#_ !uQ{ !ՈLX pzeVÞ`5:)Qfw>éW'>gJ]9v s@/ FV`~f3>pRj*V@w65I-h =UA\CauIB}'Pd`EuiX5 VJ-~L"/ ?L~XѠ%<'񹯶!6Aɍ;i#\+zf>tPgVOcʊ ?3Y1a}:sI~|kʕK(y$ {\&r&{oeULM:̷ ,y$Ax56{g-\-dV%g!Kܻ]wi<׷|a%K˴]zB@/ᙰj6 wF pjSYwz@ZOt`p)2UiK,&C!گ?4un`f` N+V_r̿"νȌ$p12ڇ#-KvrqbcيDI@!, GWTVGeL.ؔ+VC۶\1P'lD}9c<#KNJ!P .j|nJI^.;I%XfdDU1lB}䧋H! e:Wz˷tuŒ*'VF.?:~cKr3cݶ+-BFtny[%w{ZYg‘f|AG3˛C5$SlG35+~i#cQ86s.u W,O"mMj`_`daw6M3r}&k&$ m:sXfSF%-rr)=Ak.5(}g*m s1Y,3d9wI ڢLEIٷMXGnx9u42ʅ󇫡/^K5DQ&xp4eg5yW᫷0VX CHZmÓAtpٳQ3I-vWWŊ迬v~O٤CӪbɶӭV ;&V5A+D1 aD*h|^3G /Ppf]@ [ Lg%Yr4xWyՆiE.T~]T.Gan bò<b/^'r{>UUH1[V.%\ØRaf\_9p.jioȢ%, R!VBO?Fv:۹wB8i<>L D Bbu1Jy 8F,w׷%q(@,QC ޞ?m/8r8`JF\G ?1UkON(拤 J'-ܿ_  /~?r{9gRwxQi0Foc#귵;cTi(G,5U*sj :DvϝAS3#dr$O%j=St |mK]a ^赶͂ }U?QcpqzvNoFO^VءRߘ8N_ q vS6!柜zAn8x%bo4Ϗz⡼\Ԁ~25V~`8|z Mc*-|Lv!^x8Ty{f"*( M7zV溜N&$)I{"%-ari-2AUNb>)rʕJ,:y!v#/tELKZN0Y4vkl7Ld⥃9XBh]U#*o}I1nk5msP`e')ẖ8k]e*9RzI-$j/ 0L%Fߕƒ$ 3C#Bk?]W< 8'wcͳA*5>M/^)Ff"). Il-B%n#iPܘi+RI/Eu5[*qp%3AMFTdُu/Β{?R l?zc*̑B`gMF qr\)>i^ZAf@ӂp M^9iZ}Wیw +nc JCX@#DbhP<0U7jw7qLZ2 g5qK>n@Gd}l )@LOBCe,boonL>.8="eYfwLMAJltVnH9lm6n{}(d tuxDGm,{ߝAgfeTܒxFӘN}ڤ``޳ >=g\yX-5$7<ہnk#cY;'N}uvݱ( 9s}OfYMLHBAVӒ[Sv-[ynWwA_Z/qZ ;C>/@R[ьY Ua~mޘq+.~if4-F=dvT5fvR4"А:B{spt#ƍ_FxMXobJض4 +5sb# M۫*HS:wHG}1sw=fr`R18sP9Y( ;%oܖcxVʰgkYez4 >԰oQ! mDfrM]ze*ʣn3tܡ/KÕ픾 TR3b/z(Lk!BY*̼ƥxrxeyDJdxx@Eг#t8= ~#VCK]NJHT}oy oK:<0!$'ۙ.pn[He аMJLfH?*=^|n2ZӲKm gD;7ܰnGᬑE/v}Wc~`8rvÅю5(h񴙍i6B5N k%R@@L@F/)3zD2kR9՝*3,`֑J6[<8.Ӓn"/~ 5@l${J@%\ Epb <8$8_BIҜ}g>OO+Q{?T@B3 -&;.OKs.ZeKJWzrƆ=<7ht?_Ŭ[9+ẓ*mW޹T];#"רi:޸W5 8L- rNv0-WikWֺ9QF ,YAa:6R6˜Qۡ{N1_F v^3ճS4e7S1L2Lt(fid8A v3BU'.n΀m(<Ѯ<.&x.rPY 98<"v~:PTnߡ3>ƵR84,!TNv)yX0~ Z%%`mxhٞ [2H95gc5W~'O3ɾVj|m!nBmK l5/tZ j˿ JKqfʍѓ_B,|)Ό}!׀N,7o>ٗq&C֤ɪo7!¦ " ։Go]Ȯ,R<dNOm/#=&Lq@ό1ߛ2͊.w89?_e_X D+쥻n:xwC^ylkP}NQ;E2qZH)Gq_z2,U6Ko)aB j"mRIWf3漇C{U{D5O!o8u~ߞ_n}TS){-eU6FtP#p`?5>-cGJ)ɜ.S3 M,9t*:xBABsjS:>nP\F͒ӽR ^jtQxر@HV o+sIUV~- /3UNl9?4?e$sA d6Gk D1G>1GpB#ԺZHZ b%ci^nk4e5HCCk eԓ8MƇCiw gvDŽs\'!M,XFUQ&t iX6kkߛ`3I$Āa 5Rmr4ch]^i AppВQa~8DJ| ZYAfiWN. e)#/l&`%W<#jn$'GӖ@%jF-NȻUbu\zK2ظ`!ho@~Iefk]nT>dCLء8KOM8@ x`N0VH|M u )S&']~GCR`20/|D+(0੒KưZB4fC,e]&|Ĉ.p^:Sv!XLqN+u1nxƕcnQ=S7`"s ӫ2 $US N[}bX`?z YZs #'@\)%n0: Бo9+roSWR{{uxOb+!6<쭐B$C:Xl\jf&cEmnZMg y,j?{țRs0#~" w4RvzyTht1@Jl!]_h- _`DbBa$[!#XvrAw 2ۮ~_F(ĝdG8Ū7'0"ei1|;p1wm~#9/hg#i]RU Ctiś} ^.v<o:EƷlauKz51m =Y*uUP4!e&!٢)^IQޡ#H/9X%B:t_|\Z/:}0dv}b.ˇO%vʌ13:FIK@9v1VHc_lfr#;)CC_& fװ7%]AsCn2$f-q=PƕcZ!^EqSXS0L%e~u)k+;,JտS2AU-LlH.3폙j+X>,8D6lm<>(X QC,N 1] cfoܾAO}?\SL чRsŏ8TS|_G2Ě wJ)-\U{9w4C‚[Kw,+5S +v x_:Ek:*}m˼5]h`w0&S R=(FLjM]:̒-$KEJ@dVFt$݉1]j $Cf _bn`_Z=xuP~Nğlq}tw1rijuj4ҳX(-uaWi|Y jӥ29Dd@ueրg^@Ѯ~K-Q%ѶC66[V"O:Ȃ6NQeKw qmi쟒];*Nz0F p2volQ0K8Wg _}#W[-#^S[[f^S*zn q5뎟>Uh=-BtC^͋e [Z mIhHҟ!6u-Y' 474:tt^< 5 ZmqE$BkopqJ_D(Q?mP\u}{ 8#ú`&^.>\Zsh&~Y9|@U Me"PFEָ͑"41Mu 2W jŠ6k 8\aSFZFkl`n`3XIAU @6lCayՌ25uO-ѯUf&ZfC89Xgm׃unop2[K ߁} }hFiʨS+C 3ӷA#UEsBߦ3j;:Su 3wfpDYsU_'[.Xg4$ۆQ<-GN&]Dzgi6K*ɱl_N5kƆLRw#J#Kbu;` /-<^ ` RՂHQ (@lb=[a!r[qq ^_ۺuVW viNd*9"^x ٽA53eFM(=AUi6A٦:6c8ij *t%.uW>,ݮm̀89aӱ }:Y 6AU ؊Y;h@~+8Az{C0&+4q|Iל{9=9Ofygq J.&oLP[/|*1౺NY <ԯ;n6RNor( %Qh8x J_jMa`Qfwz=~%}$}y,GQŢ4''/ҨvT2Ѯԧ~9iv{MHa#ʑ8p%ofZ21#(g4RUwz}IWB[ E('ͧ]wf9(0̌c-tr_b΋%Qyg˿˂2jd) HvesL|Dś5N u Y oyL]ګ t)anեI6@ a9rP>s }r)R fyՇ3bƝ\J[lIJR_G|N$)q D]`m"JW k۲I^抲Tuz6r YbAW:V4iTLc.xǀڐx73yB5lW@U(վ?zp/ ca8waxaX׹S3%.ݳKf m}$:gnwqQiڋ٨ݫv9Tk4EX@-IgTp-]vkInzUId9b 8푰uV.n.:!?yZ 6[Hجcl,W}dM vcL ȐFxiI=.9HrH%G->YG> PAu;`xBD9m MabpMRH$52Uz՗5&˜MXXAϵbu @Kmm_ ]$IKGolil(j}#bT͈NngQY $^_7,]kP)BQ+ jPa z=c!0a @ã 4`j|lOs r|?j->5 םEaMb\|\ߧMnL'oҵJq}aI2邏kF'=Koj^QbY!j'P-3 z}bim r|. ;`bKI SЍ'ebލ G;@TăN7b ~ɞVOs":7;_A`~}F8qBz9~jJ!6;O"_:@N+G-xJ7ChҤP/R_u v% 0RWU۽.р9bha>8bS9eHsx 3ct_,nRᠠK.-4hQ(v VPF`W6)9Lvd誜]'U >۵l584M[aPZKj(IH@Y^;pLO>ndtps \_JWm+$W_3 b;H5w?ZN>OnP]OL+ՙt7l{L\0V񀠚X<BbmqMD&-6ґ=H=7}4E[c롁hC AB^f}i\vCXZ MxKn9%_ YZ