ruby2.5-rubygem-webmock-testsuite-2_3-2.3.2-bp153.1.16 >  A `o!M@eeeSpkwdJR\N}dbE0UG u?+d΋cX  ܙ|slz`Q>*R|*,,(Um:&t§2#7krtwyOBĨDd1e2275c5a31870085516b991c3eeef34af5daf631998071002b1d909342ec0555d5b4e14d3bc26566b4d0b05a036373548aeb407`o!M@eeeYZP5ɂ63[ w;@ۺsMlyuyzc#>OCG%WZ3'є+6}ްP ՄkQ:p/ےhF0R _Һgrkz3;C bFC*&nU𚇕B<ǃ%p[CZn)5Ei` %ZJ;, SĖb@>p;O?Od(. 9 P (TxT  T T T T TPTTTp(%8,9l:vF= 2.3.0 Thanks to [Alex Kestner](https://github.com/akestner) * Fixed the issue with parsing query to a hash with nested array i.e. `a[][b][]=one&a[][c][]=two` Thanks to [Tim Diggins](https://github.com/timdiggins) for reporting the issue. Thanks to [Cedric Pimenta](https://github.com/cedricpim) for finding the solution. * Added a clear message on an attept to match a multipart encoded request body. WebMock does't support requests with multipart body... yet. * `WebMock.disable_net_connect` `:allow` option, provided as regexp, matches https URIs correctly. * `WebMock.disable_net_connect` `:allow` option can be set as a url string with scheme, host and port. WebMock.disable_net_connect!(:allow => 'https://www.google.pl') Thanks to [Gabriel Chaney](https://github.com/gabrieljoelc) for reporting the issue.- updated to version 1.24.2 see installed CHANGELOG.md [#]# 1.24.2 * Improve parsing of params on request Thanks to [Cedric Pimenta](https://github.com/cedricpim)- updated to version 1.24.1 see installed CHANGELOG.md [#]# 1.24.1 * HTTPClient adapter supports reading basic authentication credentials directly from Authorization header. Thanks to [Michiel Karnebeek](https://github.com/mkarnebeek) [#]# 1.24.0 * Enabled support for Curb > 0.8.6- updated to version 1.23.0 see installed CHANGELOG.md [#]# 1.23.0 * `WebMock.disable_net_connect` accepts `:allow` option with an object that responds to `#call`, receiving a `URI` object and returning a boolean: blacklist = ['google.com', 'facebook.com', 'apple.com'] allowed_sites = lambda{|uri| blacklist.none?{|site| uri.host.include?(site) } } WebMock.disable_net_connect!(:allow => allowed_sites) RestClient.get('www.example.org', '/') # ===> Allowed RestClient.get('www.facebook.com', '/') # ===> Failure RestClient.get('apple.com', '/') # ===> Failure Thanks to [Pablo Brasero](https://github.com/pablobm) * Support for HTTPClient stream responses with body chunks Thanks to [Cedric Pimenta](https://github.com/cedricpim)- updated to version 1.22.6 see installed CHANGELOG.md [#]# 1.22.6 * Fixes [issue](https://github.com/bblimke/webmock/issues/568) around WebMock restricting [Addressable](https://github.com/sporkmonger/addressable) version, based on Ruby 1.8.7 for all versions of Ruby. This change inverts that, and forces Ruby 1.8.7 users to specify in thier Gemfile an Addressable version < 2.4.0. Thanks to [PikachuEXE](https://github.com/PikachuEXE) and [Matthew Rudy Jacobs](https://github.com/matthewrudy). [#]# 1.22.5 * Fixes [bug](https://github.com/bblimke/webmock/issues/565) where WebMock tries to alias a method that is deprecated in Ruby Versions > 1.9.2 ('sysread' for class 'StringIO') Thanks to [Marcos Acosta](https://github.com/mmaa) for discovering this bug. [#]# 1.22.4 * Adds support for JSONClient (a subclass of HTTPClient) Thanks to [Andrew Kozin](https://github.com/nepalez) * Adds support for Ruby 2.3.0 Thanks to [Charles Pence](https://github.com/cpence) * Adds support for [http](https://github.com/httprb/http) versions >= 1.0.0 Thanks to [Alexey Zapparov](https://github.com/ixti) * Fixes support for Ruby 1.8.7 by restrciting Addressable version < 2.4.0 Thanks to [Matthew Rudy Jacobs](https://github.com/matthewrudy)- updated to version 1.22.3 see installed CHANGELOG.md [#]# 1.22.3 * Return "effective_url" attribute in Typhoeus::Response Thanks to [Senya](https://github.com/cmrd-senya)- updated to version 1.22.2 see installed CHANGELOG.md [#]# 1.22.2 * Fix: prevents adding an extra =true to urls with parameters without values Thanks to [David Begin](https://github.com/davidbegin)- updated to version 1.22.1 see installed CHANGELOG.md [#]# 1.22.1 * Adds Rack as a development dependency and removes require rack/utils in main lib. Thanks to [Keenan Brock](https://github.com/kbrock) [#]# 1.22.0 All the credit for preparing this release go to [David Begin](https://github.com/davidbegin)! * Adds [Manticore](https://github.com/cheald/manticore) support. Thanks to [Mike Knepper](https://github.com/mikeknep), [David Abdemoulaie](https://github.com/hobodave) * Update to Show a hash diff for requests that have stubs with a body. Thanks to [yurivm](https://github.com/yurivm) * Update to mirror Net::HTTP handling of headers as symbols * Update to ignore non-comparable-values error when sorting query values, because sorting is just a convience. Thanks to [Magne Land](https://github.com/magneland) * Covert Boolean values to Strings when using them to define the body of a request. Thanks to [Krzysztof Rygielski](https://github.com/riggy) * Fixes WebMock's parsing Multibyte characters Thanks to [Zhao Wen](https://github.com/VincentZhao) * Updates to be compatible with httpclient 2.6.0 * Converts keys from symbols to strings when for QueryMapper.to_query Thanks to [Ramon Tayag](https://github.com/ramontayag) * Restricts http.rb version to 0.7.3 for Ruby 1.8.7 * Fixes issue emulating em-http-request's handling of multiple requests. Thanks to [Matt Palmer](https://github.com/mpalmer) * WebMock requires only the necessary parts of crack to avoid pulling in safe_yaml Thanks to [Johannes Schlumberger](https://github.com/spjsschl)- updated to version 1.21.0- updated to version 1.20.4 * Fixed support for `hash_including` matcher in RSpec 3 [#]# 1.20.3 * `with` method raises error if provided without options hash and without block * `with` and `to_return` raise an error if invoked with invalid keys in options hash. [#]# 1.20.2 * WebMock provides a helpful error message if an incompatible object is given as response body. [#]# 1.20.1 * `assert_requested` and `assert_not_requested` accept `at_least_times` and `at_most_times` options * Silenced `instance variable undefined` warnings in Curb adapted. [#]# 1.20.0 * Add support for on_missing callback of Curb::Easy * Add at_least_times and at_most_times matchersobs-arm-9 1620668358  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST2.3.2-bp153.1.162.3.2-bp153.1.16     specacceptancecurbcurb_spec.rbcurb_spec_helper.rbem_http_requestem_http_request_spec.rbem_http_request_spec_helper.rbexconexcon_spec.rbexcon_spec_helper.rbhttp_rbhttp_rb_spec.rbhttp_rb_spec_helper.rbhttpclienthttpclient_spec.rbhttpclient_spec_helper.rbmanticoremanticore_spec.rbmanticore_spec_helper.rbnet_httpnet_http_shared.rbnet_http_spec.rbnet_http_spec_helper.rbreal_net_http_spec.rbpatronpatron_spec.rbpatron_spec_helper.rbsharedallowing_and_disabling_net_connect.rbcallbacks.rbcomplex_cross_concern_behaviors.rbenabling_and_disabling_webmock.rbprecedence_of_stubs.rbrequest_expectations.rbreturning_declared_responses.rbstubbing_requests.rbtyphoeustyphoeus_hydra_spec.rbtyphoeus_hydra_spec_helper.rbwebmock_shared.rbfixturestest.txtquality_spec.rbspec_helper.rbsupportexample_curl_output.txtfailures.rbmy_rack_app.rbnetwork_connection.rbwebmock_server.rbunitapi_spec.rberrors_spec.rbhttp_lib_adaptershttp_lib_adapter_registry_spec.rbhttp_lib_adapter_spec.rbmatchershash_including_matcher_spec.rbrack_response_spec.rbrequest_body_diff_spec.rbrequest_execution_verifier_spec.rbrequest_pattern_spec.rbrequest_registry_spec.rbrequest_signature_snippet_spec.rbrequest_signature_spec.rbrequest_stub_spec.rbresponse_spec.rbstub_registry_spec.rbstub_request_snippet_spec.rbutilhash_counter_spec.rbhash_keys_stringifier_spec.rbheaders_spec.rbjson_spec.rbquery_mapper_spec.rburi_spec.rbversion_checker_spec.rbwebmock_spec.rbtesthttp_request.rbshared_test.rbtest_helper.rbtest_webmock.rb/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/curb//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/em_http_request//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/excon//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/http_rb//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/httpclient//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/manticore//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/net_http//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/patron//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/shared//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/typhoeus//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/fixtures//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/support//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/http_lib_adapters//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/matchers//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/util//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/test/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/cf33817a010abd93547babe2070d9bbc-rubygem-webmock-2_3cpioxz5aarch64-suse-linuxdirectoryRuby script, ASCII textRuby script, UTF-8 Unicode textASCII textUTF-8 Unicode textHTML document, ASCII text%[{r˕utf-8f34d805f008a729d4ed82c138ee17abe079550fc55bcc4931326f3bc4790615f?P7zXZ !t/?] crt:bLL ;z}pj=7g!Vf^~-` L%*tΞ,K IKT*wDX>v |@ ЉP%F~}%dxG12LCp|ݙ}Ibp- }ث3>i?ghR~C`I,}Q5Nۮ"qRh$[&MԺ}>0 ţuT(|_dZ 3+F'Jid6Fq"߆D8Jľ3Ga@qF?S`h8S9NvLUd}сZ~H tݣdI ?cQ*p£GQ!lb"i؝) -_m<5O\cBl`UF“hl 1iCs+RY %lKau+T}OqrMIJBckVY69*khq6"2%Wu.b&jǷ7/_Q/%~%sU^D gDqMɥLDH|ƪq{_X&q1emtE㯥%R>^ 6:?: `\lIp!qY*$ 7?'8v*q%8bSM$:}NRߣBM{GkTD/,]Ҏw|@A2u:\Əu]6Δ_Eɏ(SFx`d}Utr(>\U%@C[4j;NU Sr ̐LUtTxRrft2 R7HS4Tٍ,HfOү˩@}w>a Ga%̯Apv`[()ǜbLŽ~S;91cE*FJZ/wǝ5Ue&U4 KnK,+2!_DU lEwE= gl ~I-1j0yvi8H:j̀絓.4tяȴJVd6 R@ͷDB\ $ *W[:xGzȆҖT<"E_|wý mGu guZ@j_˂/P.>"-_1-uGvFd& L`aj [4xs1BnT|Vaau@71^N\sJ+aƯ0N`J;Bw{ [.!MI 6eInY>iiQ2鮵dJ{ñ9Ԙ*:-96暁FSN ?eFrpgD`Y޺hD emtwH ̮)Ѵ,ڜ*qN ;0 jf^Mm2s]wZ+!#GHMl)oΖMEr)E﹐:aY[GR|KOӋB3AhT|RڠyL+MXڍs'cˑz/֌5bW{(N8>/h87Rw:8џKYwÔ JB}B:Ri@)04 7o grl̤f=]'إ5O}O6K:xeb ek*jYo:/ETIt'Lzv@ 0kh-l8@*UٖAשؑh"1;P}ÎOBؙ;ҹ*Qc+AA-7 6,o]NT`AL˔)yn#嫇[ȸj=Ru>[ H 1Ϙx͏ӉF U ypLwO8M<Ā8QE4oM ?1")#_M3N.tD7uk&գ]$]]'݃pŒoZ4o+t@, Zp7 #ȴXD|N0|G1y!Pj%*+׮ϡu)ärasO {]<aa󾙵8`ZށYY\YiGс6 BULxJ)2{ȱw6N#2pgCe|ǤwۈGZцQ*3^g T='BÆ#-LLD)DiD;\>nԓ3-g#;G":#n("V; !Wnal{9"롟Vp5>=բm9Fk],>$;]%Y"Q=n;kػŮ2&cx]60Ks;@yb) 9,SWgdvh*JлhL?Vw3t#[1%ϸhr[c^w3֊Z {`V?Od!.#tDXfqx`a=>c:.r3:b0"8J TB;]Rcm*9I#7-#*\v=qv1`_݀Z]i؞FC-AU"'%zȻme&Ciag^-7!p17 U֚_tT-X!L_aOGExBV}k=ˆWIYsh"m?>eIIR'©0Q@k=| '|ڌ9,C/'^үt%O:}?ۯDq'Y'UνEu$J;al/CT9h#5TJ&"Uu)"br/5zQG\aI$ W_W^@ W`8ȼwahxϬiI!#S.4jg{`E{MF(CcTWJ*xَTL`Fc8)ڕjYtù#(_߰%#`y)٭6a6"QSY!LPFɄ_ 6fհt.R%Q9v!$K~KH1v೗<}I1=IP Б/ $dΣp̆Z^7V[mC=NF=ئ;2!w#/trߠ@A:{ +:%# <Ѹ[m 4OQ*ׇhhr !7"9QS8ipMcwX8éVz=Y(%{p+wFF`bH7 ٙA!J:FE/j`8'&>O4\|UY j7Ieq=xZc#\M;]ӼHi*ղhh'5 *Q|1ثo^@p]۹ Y$(KeēXhƶmd!f;)\6Rmw.ٞخ&Y3ɚt𚅂]]e4? 2QCӜ]]UK)&4&kIxR)ZcTBc򄂊G8$EO.`*;C`N 6-9!*7&ڂT?s}}2GAفc xEY@um)^V{5fɔ KBnjscBSf ^/֗+WΟ;u1W>= k=f㇛&SaM>}9-,`IbL~V\:Tn[#2Νb~Zѐs?~At]:`3uBL6T`huR 8ٚhgLftjO?V23/յ9tkD;g d lW.ƗXh@| qU YP$.B⠏ fCopFH-_' NWx.-iow#BoJ=Go?] EP\o9sZYfޚPc)[59+ ͼ !v|ŗ\o?d,B߸i`[Sm,]ʁpWQ"M]UL؅ThQFENj-a}%X۹ 2`J 5hHF/D!6^=YWxlQ7m_~c9sL(emsj|z$:uZߪ.՗w:`ܠD.E!LN R݂go< f&?½hngվ~ae VmLE ZE&L.^Zmȣ@rM@+l@ksSZYx@`Muit[I\[A]VmwuWiORp:mQ:&·׮DLjHT":%cNo0~#g<+81B}KK+FH~5"#;{W[eK;,LsT#V)͘Eavӈ9MVYUUa`8*ܥ[IjB. ?4g M`f4!2áfVFQ-#R1X&^VpdG`x`Dӈww,9W=#,=[S3y*e'_?MEt{h-B[t"^O%Lf&p<E#zژQdWVO$uy\G̕09yA߷Ϥ˗ *s 5fsCADݻ2Xcw~X RӰiJgD".7~\}Y {'7O4>2S4v[ -*Q"5^NKÙRp3}BML{B3YC3 ?йSܪDw`m\QQŽa ;g:3VQ ,BɧnM*-^羝)4 sD*lYIϘ6Ju/smC:W6տEps >g}kU0/*^EA.6s2JLbE ;XwJ[`==}aoר]jl[낔K{EogdeIO+&5pl͏8SNb$+֡5uWƫ,FLit ~1$ḲwZ_t}@v?0vAM@ւLB-"S1w ٣%6`; xw_j~.\tj1!cʕ?$Mo 񫲔2.d8j;+[H⫝', LFDr ϗ"x! ~9+Wb 3:h#]IsM>ύ'D@i}=aRp6F\0\C_A_ Ǹ%@3HtE5QJt*eqk#Bj'WA-5]Qҕ&􆶄DaG쒗',c|n[GS&i~JO$B@^y`R -RxA 9 :웢'@Xa{ffSI+MPA^OJJC6isn5=W^|ۀ)q>Mz[BۛV&.3M9GdA&N'0Y4 -EXBbmFǸP#y糜#ZIFH3QYLzEN1Iz▩2jʱŏ )NiM ?txWC?Lʣol%S̘&-TV7 aO"V]ewaW%1Jзh:ʞ[54 O@tZZD(uasuNJ1:һe"OrDtR&$( QK=DBȒ$bp6m^ )fΓ&I,m% kև,IQlΫ]ݏT1IJdFJ:s$#m%6R&vFȊK;u`#ݝ2#թ,'j)X3 DQZ/X`(py&e>;wG(J (^qOn;rt/4@y^H N^肐Sן;JU>b8hR-び8q[z<~J =sMr֐P$ٹGlKحn)R]Ƿ-FxO&_ ك݉ԡZS)XEd!<՚ Ae78Tn)t&t8^sTST 3 D7!ub#: "? `oj[ƈ?(ezҽd`#wNӞDiݚfwC0XA5cpx!grK2; V iK@7i$Dl ihXԀ?L1Fu) Gn*he~Ep1UMcIGC0ֵYO&3&a^K MտΫAn|Q)i;VѤoop<3DO8nM4KuǮLH;$j iUjPgt4燡+uaZ{hnXt8 ˦deq#|Iq\ϼ|5_X0qez ^lZXItլ&?F(Cm3z8BZz2nQ]bGƹQ4?]arx:X<>+,0GQV} H0td-1:GZ)s)^MW^jxa_#u;An0^JxNqS-ǜ`݀d6}?w5W좬[*8UT5x F0~I?o]9hTq &&J8lBP~O_gCf4D5 zHUZD1rD9,!Fvuuή-=dW 1)O+A~"r$Yk)jy7&f\O0pk]T롌8U+`&_vTmd(kY`3q'^w p[姶moe]vj6"iDcA-q>kƜ$ά&(Ĩ_ԙ-`ӺڨO».IIa{7g׾4}M+/*vucwPͪ)gYb_KZ z5-كS0.{Tvs6kmFD񋘼01Or*^l_1yP􃔴P#qxˮKў[gLXyY꫇(zJ[Q#D{a@U˂r;I8)̪fag O+~sO Vf(#g}Yͷm[Lɨ>ny :AR6hƃڮ'a[QqV T?_Xe[2X{[e8_NzRɢOUD޺o(LP1szwԥtH̼MiҺ(u)=+h:huu0 ,+|:mC, `U[5vEe(tj͙=wقgz. ^X*itÚpGJ+#meGo7PHl#DtPv^ZVKE|ICZPo!)/W RTO>qUQǜaYݷ>f>Giv^>a.`ח c  Ļq1/C] Æ Mid#ΘoFrw8ϵn` r ӣ''Lo0($mQST%ts@CS `vgɎ0~țcSwH}mB-~i*3e6ʊ5[#i&)Qo 8H l ј1q !rX{i[N_}qǖғ!ߧ[迟4) 6D|^,CtOn; ܂[_ބ>\wՒDDM3p5!SC7_Qx-=D r%V,B`N|"y_IlTwW#'>f${ŶYKːooHvLW"p@ FddNj3U5+xD1|QZM8XF %GD`U1nİdXX:`aU9}ne;crʳOSj[IJQ#?+q@D_0+ bQhmX TGI ir=sRŀrZ+欿C9lVJ[67O,x ZU8h}R9j/d!gKFznx3A̼WɴLxLTvJLP%ˑy ʠ_nh𱱅aLISd[f!ך듟e͞zMU)8?4{؅%u#~4 Ĉ{L`.}8 ] ;< r[PnnsrtOd8: Wqr@A($JBWANH]$uAw>-?qC,#7:̓WlZ0z{aRan=vPq x biG1ٕWl"pUb:q#$M߁jL CxW^A"@+G/$ wN(2etae3w!p 9T۝QJYv댘Hq1?qLY"Z@;Μs;ެP9x@Q a3{Aٵ6I)jd=D0jW_鵏5%cbR_8TՋ{AZR8;HZr@Kx)D9y"j!R;GoNҬu0NjSL-fm Ѻ"HϢጿq2Z(WVkPr᝖\m- A:(ҁ5w>+bY[ٲc5.$ r2ކav&VP1۠1 jRE3%p xORT'\b y~ʚPa;by8ЀyY(Ѕ!!s9e􊒛ÌkRt;; 3d@%g}9ڻV!GqITkz/b|04qi#c삍O}aQW9.}/o+ѯ[6K1#ee6ʁrLq`rThEA^PU*3 R聽jXhK $WCU$ّXPIPKc,J?5&8 \xSJXg[-;!l'+̹q;}6 ,9\p+IڗˆDfBX솓Q &XASݪKR"z}fkh0tzI&%SM8 8Xu˒EhIǦQbM;GM#틓Ϧ6RydO`W\}ם :GʮzTlSU@SoFaz= @=.Ozv/M>s p-h#BrE~̌24kVo )/_$JBxB%e_Ml mԴ]$Nes>3Al).2RA&Z~fȉэzK۶mMF>K@6lok>eWȊzQ.iن@~TW[4WɸQ0/Q얞;̪ wT18E  ȋtS_1zO `Og o:ӿ9 oj ah&e1bĔkA’&yYh0jE`DLL_4EÜ̪Ń+- Rhǀ gәXz1x=Ki L o?5˦MMzw?d׽_rf˃6+3OIy#1o#P/?AA*1/b"ّ 7% mőG fPȦլlJw6(_ZC!lỈ4d~$O[VՂn|*x-oҡ gusiZE!>yB Χ̴+)ZDhcgH-tpd6R{JzF'Ǜtg%c9Yvq%V'^*Og=rJoՅ|~ZDݵ i#Xȃ,bcT`/~^H-*|bv9#ޔ̏}赈qd)ϓfƷeZm"ܽZ9Zޝ*9u<֎"8 R^*ZMu5qir~/4F@Wؼ9̪qTBxlkl}bpdUی}#J9z˘Y/Lm{&jk"5\7s[VU.aA6[AZk] zKɨFE#R"͵Q~ϛȭ. v4~ 3 ڬS!XVzSH5/fZZ5}W9qGHq\'d?KR|Fo2[)‘+ͩIލK ='-ir%d6ɮWCQҮ&M N5zr_%_ ؁M_G/ oQ" 8 Y&ݵz/1ᙜԎyτ3 i؎\Sj:\֕Tʹ8jڷ)Jy0u^Kua<#51=2eO냛a2Χengd< x)n!AD P#Wg=:ߺj EV˨2(? >Wx X#JMQ?big_4"OFB>bZ$Ao`DGn%sl9%$;fîͫ Wfqqg.5HxKRY>g3}IB1"ݽ0|3%lc6Q}L\k i))? V /+Ŀ +GQA@ 0l-xvŊcStdgDZζ7%8V+"YZk1]콕G@0^`a1"&?AvB}z~plER9$n6X,#lH))B }ymD MX(ćαoށCY'63טҒuSʟ"2|D@c"-!uK,>y-3%^)oC2ӶdlqS,aHad9KŠi~WL%[8t 7n$?q.^Ϳz%oԣxo 'XM$Drs/ow+%N]jȃn>X:j@9lu戱uزɿtxf-8MvI4i r`?n!GKD֔ Xy}ht a軴k FCf ]`Ꞛ.C{2 ݃pp^)4L{kU]٩f$e%>F]!a lzk22ɭ:7Qr?z)dߴ|3Wջ9IR{-93]xh&ԲǪBڡL¯ ӅF ,{&|kb5rΦ8"l`kXU--w  V2T2!Qd@R¥ZbB\Q6䑓 %#*_[7(L¥<(V-rZm7WȺ)<|hJ C t"Fa].( Ueb(r#I#2zh!9r l^>|\~ Ouq.AR)8I9!bd:Whk) #@@u`%nKJl-z ĝ7-P,hzn=UKďj9TVAŝv"ۦ;r1ޤ^\[rr!TqS&~eܚSbcCL\aeP 61Z&O  3b4fzM(Wڃ#K4G|r~on*-pQ+goEվ6o :u@[_ѕ)WoZ*՗!o/ /ghgM-Sv'Mc0{`79b_-N/Hī:&B$IL]]8eB]!U9LG:n*Ro+cgl̐xd:w^}PF~ߎ;h)LTkU-qAqh튁A(Esaٗsd6ꏸg"T@|i.p߫vsq{O#D2"\xˑ5jD$)x'u;X]M ӷV[;/Y2E <8-ZmlRd{,1I=O#Y-_b|rFyQ#ܳK=9`r͵[+f!jrA+-@!:8sEu2uݐaZ݉T% sd4>819O[)`vһL:,NGjLMPa{dT26q͘u+MyoviQGdHNU{"%0&bb_׀>X6 `)u 7n)Y-0#[grѽ";mGZEWaI,/}ئ |򁔺5\-aAf6Qys2% ?)vDBM~'8.ׄXюJ5q&ΫyMS?>E{Xbarh%HP,g})_h7Okkv$j 9G:K =|*-WFPo#÷ !ROFƬ,\ sp$?JrX^J(T#iD`} C+D? J5 *q"U exmOky߇_jl9c5W0B|opQe?sy=l:O30 22d;~pN 7*1Ȍ-ƿ ^>EHainޤB,o{x+*0 ٴXpix=mcRd~fĀS+ W"EOi9N7U#j܌Т䴍:Z\tsN,D07Ka.;&%kA y큃i-`9<=N~tisUʘBB]ޫGok>hCzG[p֝leIld$>'N w,kH`??>56 2Uj]V2 ?7cPU9MշM'][%I~!cP+<[ĝKӂ_T),Q;`ޢ :\ڠ٣YClUv{{a m#t K磚-]\\I@B]Yh{dF9mq9S/Ե{Q )y1&z%χ3_q1?bѓ5]m:{?P<`l1Іi'_;fl;wO,Xˎp P6YW~śS~R]$P1FM$:Uĉ|:$z) ]]Wco=q۱ ȲΜ(*qGbT-]%^0οރ&ɴWԠDS ,E@#)5 <{IR (ÃDxQMtH5Z 1DKܿæB-" f@(sV-z 6?!>:C>G0h8;3P6Mѿn"FFA6rup_7\L1g~?[ޓHGp Y-)্-Qdy7<1W^Hv9#pmB:+YólwV_;(j{ke#")%3?p맜Llψ?=VN`x[?8Zg*%##ZIF'>H0&'Y >g_Wq݋0{Ci<9ry! A^F copCq}5 _&P<5 ؐ'z ^ɇ+?v/CiS (@C87;#\:(V=I<~@QQLSyimWw^abZ~ rWRΜIi)Ͻ0/j5)'X$.4m.rЃ5}rBGNuD.M{u?;E8Dg]9/pO6̰q=bf%" lX [a+{jQ"SOza4PAMA$INWG1Fct/U [U#!q[/] {̉ DS^$Օx(*UNH&;2=9ꭚgpJb'XE0Q|{aTGcQ1*eI W bGɲ 84Ȼݥ_wc= Pga"h r7 5+q~"Ѥxs WU>~̐Ш!l#Ma% ^ ]{auyu_yީonԃX>G*+,@|i&Pl-o-ӀNOIJV{WvȥniZ(& y#ehbeq+ORAHL.ӣmXK̙;GJipI+YafKdn eWnIe\}:spJ&?~h|6q[<7 ݯ|63z#eXC I>B97HRGFO'PAN8;f`4. 6kJ%Zg'<TlJJ8;zu\3;t8{ҸpKUȃ|grfxk&@Dبyynq>̞͐|22 B=c"¼ZӢ3 O6^bҁ͞RƾbMݔ-DqX#v%6b~"f i^y->ٽ)acwB,oIU3SWrYصF$|cy8޷Pk=PD m( J_q첋FN+_8}O'!JGY+d@F:Iy|BcP^?l*w51mԪQbbUh rOKG/Y@B<<73پ#9GXG}XoD&8 ;"]_,5fl"j?IkBѽ<@U5';1=}IhYZzwޔ+.ãf'ӹHM[_N3)4/٪bu] Tp|)|h) Tc~Vw F'ˆ rVR ˋ[/JK)ІH`9쳦2pseP^v/DD_SWkF s WogADiQvz kfNX#[+4m)'VW'؈Dn.~6&nDfHȎ4klXL҅g蚘c{=j㟾jQd8&|?xީ9$L#KJ@p"Zŭqqۇ l<4pr07Q V~UJfG}I7 k_9k%r˜&*,),TN@W) Y[LaWojoF9!5+lFB!r)tdLsIZ{-N`م1m36`ZPD0"xnACly[ts:v&DպZTBc{9U%G~Ȇ18!D$VXS&HsTev,UJ|9ih?aK ݓV{\9pw8n؄G.Kz a_(faEUA b:hR z P%8yuM-ኆ4 92DK\ESR<\*/y![nk*)Sa@t H٩N潃=64C²l8ycf=O_9i}w; 6V0>+uC!#4*C_u<[U.rH`ED/^}ewN޶>*CLhs++ @{E5BGBdlѼU!g"=c5Z//Pr N>}~8ceW)+Lu8ۿ?Xݟe}-jEF H#G,M^0M[6dҠ!'`I}!gLnȸ3 ,۱ٴE>4n1@]o̾1n bbĬmMn2K~GE ¦:=t҈Skg1TDN |[2&ҳCɇɹ[kRmv Vj5 H]$rYx[j?4]z#{+Oy=~ . Ŋm{nvJq=d OMBG1`E;hYkjX+SxnP .wF}cLG; PŋV8ۧ^2PBH3z.6Q6[ăMe-%(Rɷ+(?_x5}M{4/Woۇ=<"hxL7O5yhB\T0vlχ3{ N P_Q Z؟_$U>dm]ۣ$KY] % Cխ MX;TPBOm#Agro UgjWwT--1 ~Hʀk! \(~c &˧n֨ y7a>ȫ/<"ޢ{!Ńʙ_FH ނ1: X ɂU^5 c48s|: vo{P0 7)7'>'n'$4uz;|#y*]tE QxXJ*iUzՍXVUչ:cH9vI!P=jPd/z2˷k8}JwP_yRx3v"n,u9o.?wrw7+$eRǶED4Ll@-/5'.>ie.:ǜ C 3hjWdlCU?eeZκS$ ꛵akkK->i}fC[S բ'KkF>߿Tzk zQd/`* }˭'ùExL<\!mViTsN_T`e#@nh +a WC7.{{j/Jn/ya3.=Dzv#AmnC:Uk KQ I2 SG"NAx\u_ƣi!-eov"dtnXU]Pcm]XVXC2ߚ tg|g:7$?H–PP h(u,`o5 9Լ#_)>n;912"$cR |+| +K8 )Lv󶦑 xuE  p,!S Xjqԭԓ\ݷ^%<~Zxr"#"ieMnUa{%p'C3x\+ ɫ>sm0tЉ3 Q*?cQ>4F{IKṝFzhHQ RkS1 @OHAghѹTJ [ƯCj0,966pKtͿ/mCr}ʷQ/d0 27/'{q,l "D =.qN;ijěZښDk%w/j?yڰFɃfQ],8QMWɔnK?zǸMp~(~,堾_^3>*}()|gyo<>JrT'm}Z򑃾{i=m̄Z_j䏴}"yh`tyԽXQcHXx1_h+GuQa.cdptXAm/ERo/$#-|_\CӋs9|IAD31}Rej k" ̨ 67fL5_.Bю+O%r` ]Ck^L>-03$Y8I:n""4A Xԅ{?G$,1?TC)ݫ"vh'?:b״j_qq9 8g[/\?MV`=|"d:4-|*@>S%!l5~ _8ȓgeD*8=7-K3e? 矼mpdƾV_PEA0qe 7 +$O[38J_̢x;4??Z6#U[I'\6>;h4n̢Z{CSY+0; ^mro;}8aPHOb66WA{P@6`o!ͻOʹbLwQ ~6ؤ1͏\АV^[ E4)4hiT$Js0hnӖ^Mlj$<|,UJAPhhl$BƪVҐ[7xvye<ՅNn1jQpNy|Lwnc:|f{7`C'iV`Hýc̨0qbeT56G/o[Lp5v(c48?\%,--qrI{ }*sAvhS)5˷`; r|^own{4bDjSPZpfgR}Zь!c&N7Do&w`^E:d lǒ騑1b%FoHY$47U 0mCvq9O;;gLz9ʪԝ <ze< s4["kQh[{*4@ܕK>I{t =3 w|h̛i2ZIK\ʝS$ ('!X/Ătِ3a9AILa %Pc(mmۜu"-4^](cjGZN=MѬܟnlOZKHe@0'/ "#!q1sU-A7f_j)No"a$S:'#=Ԛžnq) S6*wqKkDƓG&խ-&]`1=a?4}Xkބ2.`(~mRpT*dCۊg3! >-z{?v/LB.\MQGCgu.`>4e:MpGdK֚/_r ʥUu;; .=QH/ ^~}b^J|<>GDҧ00r,u N[6,< @;zJ"@Ge~KRu3;]v*NjZQsϜ[d%%ȑqSTcVW{`de>*q)Dn-V%=փ77R9R$n&CGv$."0[?rS%}3\˲ɿʨF (1=hN]$4 `q"{){D8iG1:>̘y!bX/h*~.{z6M"E9{I:QC}kokP,0c #9)aѭb[aH4F.[7xu( ^Jif4(v( vS,!?6̤Jr,m#IYvlP|z*%T m 靻=c.xG4@)W`mcɥ1O/5"{v`AI"k^nL!wŀoVFCLkwYs+||F[xX O,{u){j!zl cןDV/. t?XmeneEJ Lf2DC^|Ms^Hd0.tfNL!˅Qi!E_8-i Vڟem\J O1MʵL`Lo촴njTP}%I+DA5՗gT6hJRhU=NEq'}R߫鹏`Y0Pr mvL{I=TOlN 5F"v4+!y|& t̷SaUU7XMn2 E(g퉐Rl=b2Qغ&zDYz*/? K#H Vl=զNp[eM t!eI|,Ie)"-dJnW#(sB; < z1Td3 4iӂGfv3;З~AQOII[3x~G -]KHsy ^w*v4xU5J'Kwٿ\|M ߙ$þ՛}U5T!zq212zzoIU} PeP9+Y+5JyL[HQN QRdh ̟0H\fXdra-DRΤ^߂%GLvH%uF-|؄ \0OM^Qr,9 A;o!*HP5'WY۞MPCB&v\wf ¿žM/Dg xioXxLzw1= B&㺇 X˷ CcEi?ceu gӆ=輇krzBq)[VD릃Xo[@1?N,v0yn~ZaƄ0m|΅F^ĞZbc,I)&Rʹ_Iu͔ p[61?.V?^4ˠ՗XUaE.=80Ȝ2E,o5U2JO )m[+zcD34ȹ"݃ baG_SK.}~VJ/l湦6mTWeRDgfifg5gP ~xݓ[7Mrv)}&qkuAү閡İ֧W(yCq& iئMC .ôA( J ЏMct@eV&fVE1!AFi $~ n濫S0K"N P_ |aƑ1W̝q#'~7>>{2\k}$ 5=.f7!{yx y8_%\7h@,W>~cfYδ)Zc_C:5+Ab֫_IN _ [%d>/ Es#HqcQ4"R\d4!~T CjCo5e\F>)"F,coy϶f0T oȍV( 쪖3XF4oW{6盵I0Sr4>KQ XUҤFAŽ18/ĴF&Wry Ov_eK U}Ok9q,-ROgձ \LϞcV!䡀%ZI ?!J#帚WUfvݒŶ-f[{ L0ոD5ܼ3o*g㟓JyR4[n%ZmY[4.$.[k"|;]bN:˾P m-rH4&pmpp5rP;ɔL*,ΦOƆ9w7"'YXY8j2pJPA'[_A :touǷtcg 0aDº/a|غ#|瞻5H=uwYSpKw82IrH}a<7!ѧVUcj_9*;[z1puH7+[=" 4~ >G! 7 N0yeTflfݖ;C-;{yO0Y'2q:pwwB '3P bAܑԻ^% T ϛ%|l穷I:rF0J@fƃJB:j &5 * 3?zhI:$IRod]u+ >b 9Zj`N 2!;iT,ז{Kϩ#!R%P+ P;-/you6BvhpF ;{<8-0 j߫_ ~*"Cq dzaQb0{˦FFBPZ)m&E`Anɸԩś W _b/N̻ ֶ%#}k-~E'_~kZTj'_884'.O_Rxϵ82zg}اAX|/PY+%s9@S =X%hs4'?2E3&0Ɣjfa3htzjoYX>>=f} ̟aQ;DAerhFh"ު t'9= &PdFjO^r-館AF)Pa}~%53$ɹsP9Gu(~@;F /bw[:V8Y 4[ەɦ#Yt[nEpBF.;'$YiG7Uy];8CAXy.`VC 2F"8')w걣Mn*n.N^j{mCG04 ) ,w_ee@=Kv݊˥y\l`ЕĿ#=/Q'Y3rd A(-S&%l$,mI噴p\a_t,7)yd 8P*w\@ n)a' tdHP6j,Da#_bXKo@F| ]7:j%~vG +x(HȚq+PI֬AU ?=;T-Kxhj2cܟ̬`m({S= VeQS2ϕ}Vh4>DC6饦vUe'vT֊QҿV"9b1*SHHZג8R]VBU\[YO=N f C9LLch|xt@u  %BN]ilpjxى+?J&b<09O~2kI6탞b8+jz+;(UߚI,r jڜ8RX=V yL[6Eb\=xx+ 1.tm5{Ux7#Z& ZdH剬; 4&A:BlJUoII=#8V_MUW!*<k;0|K̓FG2S9A(*cތPҳw^~Fv:,&o`>xT؉diR%]Ŧ&CO]oM/t (ލmxLXr6 zg^ w\4NQEYYـJ}na[ :X )*W*MΎATPx>!OAq_Z_ˍk ʓ>k/zJcx&ɬYVzmd}OWu2/9{xx̱k 4I J%ё )FUx%P^8H*$M(lOREjJJadr?,|ΦߡFϝ<[l 0h->(ghCr:RejRXԡ PKq&TOM*Yv Rri]~E!+iT1>pÖO~B\ڌjcOzDB0!,+Y@}A_ w/71}7F?PH_%X:A,jm=* nE),Qj_OPy3bX0H_qmXk!J*bփzv*ϰ˧ZIik/5dAMVO\ |6c?<;8~ р=ɚvRkh-& ʤ9֔[ Y'T/wxe%9ֆ v|ycyfDψXŠ)H30<_2h:hLް m$cY=IQ&*| [Y$ ^Eu.Y\8+1KIfز39:4CҙRJ 6؅78SKM=4[Xȿݥjgd4W@ dnXxh-O|OT/|܄/8d:n1hF4h\_H3V\S*WDaNQ=O`_ *ZtCuĴҗY}M E ]jҩɑ x aVzO朧]tWrok !U61̚b9\۾E6FA5LH&tg̼[Q/ 9%1aDxBbp-K'xq^vۭ$VV=!QJ%xqƬpΟt7`(~Cf40%q);Dt.7*L-g8u"b{EMNڡ/?mcZvn _񸪭eq6-UftQtp'g$Yֲ_> Q:?7j^TРv)C}?+' H0&SS*3/ bes[uS$:?G.h[RFͥҌ }/Ei]44,*&'ݑF!xǨ,*# Mbm>T _"IQAH((  {6$#׈mkuu=Jl^Om$^U 5`'hpi!fHnS&h6Cȴipsl{q.N-P(ꀖ7FA'߫,B6%O,㼳a(d#m- ^2sq`ĤqAE'@2p@x$^2*˛_s 3Ġ^Xufp17<'6ץWu[ƿ 0@;ڪq9_@.Ep E&|ia1$+(w]r;\t1%c` ³aF&I.9'EF?UW Yu`IԙvNsiUnqeVn3+rEm_TbAKP<_C4!^bܫ_?43}EL)N%0~E$h%d_iI]˶VѱA˽hHk|r8:D TT6|%GբfGPA|BLF<6_(&΢E 8B;٭K* r#/I0A7iޅL6k.lsArR͗f0~f(*5ݗ\m8]y@)>_f؞\4fnG.7ըo홚9kA883V=[cRup URlZ!1yc52k\f'|?V'l@B0f;I5eՉ9Yu l{uc.XIA8Ū,q,}FxmlxX' \!H^TH_p~hLTBV';圷F)/SM. 턹%"^E#,lAF }L𫢚RP=k=}_t$]~"Xf@ykPhpS0M) =#}4CJ=maY]biXXp2d_;:3ghLl o@g"#70'0[^99PI-ųGcgw;7G]P:Ǟ1wJo"g}ވ{;2tk$o *sى?-'RΒ]LMбt䀙]l+00L g@1bks&Bӹ) 41y X ~uU.Y;3QRLOR%=SF>vY6}H~*7JZ90' Zrs .]PbNf^C/R]S`tFM6gx 3L#xQJؿPÊ Ho͈^)@8gP__O5@CT}"#W5cJ=v`)ğCjCmOˎP~ƙHrJ-юqnm̽P㵘-7to> \qSw= :d86];u/]6d /-V)< $(50g~v֝C +VqZ ~kkL&?1Zꨜ,V>r?RjӉuݞ{z% ^Qe4y۩ĥ`IcݗDwJ!r@*hx`pa-)^ ͞pAqx8;t ˯;+mZ2NbMwN֔LG50*bi< zgeı xK@*Ny-gzaz`:,Z\,zX ux硊)t0*Z' }mRzE-:MfZ]:@~_koxg>C@u&n&Y1z aF!ƗD I=ӲX3m +*ɓ!MOp{u]#tv*&yT5Yll'2=NJf((V,S=B5ͻ[Ӻ*M? | ĮSC{zr bGd\PI㷻]ubT'ː +ÚW|EfYdi-i:pO-c7q@ajߙ<'Qi(7f\IĴ+Pa??@t7' )Fv:vsѤlѶUd߻hI=;izE0xZ)v#l}/tlazR.@LZ؃3F׶)av e!;>^|,'̾`e7]EGROs, <nۋn"6TZyX%Ol1nsb9*U9YE,,b 3z^l k/YpARzz`QnURkLZow5R/1{A/Ue1Q6ҭjUIGV pJ 횕#wYv%=;pGiQ^єt>'vNs[>xe#s;.SM=lt^'vY_4)yۤ Ϸř~Ÿ!%ĵȱ-ZԬV`3.'݂m?0H`%v>ngTÒXrmS`UC|TuyjQq,J [Z&px=B`dM lyd5DZkj2YM[Y YZ