ruby2.5-rubygem-webmock-testsuite-2_3-2.3.2-bp153.1.16 >  A `!M@eeec'^nQ-l?շ͏'$v|XdÄKE.أAZ`( %~ᬚ'2"$zdFՁ};+ް q)t9EXڥL6}xk>\{K 9ГFw"7s-㐥H'rhuk/tH,y 6'e=XVSjD/Oc2iIO~hf_ pgqzvX#F-z}e88a6b3f31c10e232b1fb9aa92294be28bb25683d05589bc41a24e964fe5ce0455f5ece8bced1eb626b43d27638b44035863b027`!M@eee-wK@ʄUo^nMNuP.-5/N.vد 66oQKBO"'G.c;-+gjRS #խ\Cԡx R)` h52K?ED@>p;O?Od(. 9 P $TtT T T T T TLTTTl(!8(9h:rF= 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 matcherss390p23 1620681749  !"#$%&'()*+,-./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_3cpioxz5s390x-suse-linuxdirectoryRuby script, ASCII textRuby script, UTF-8 Unicode textASCII textUTF-8 Unicode textzlib ERROR: incorrect header check (HTML document, ASCII text))23$upoE\utf-8c544a4d1dae6093e1b933a11bb524dad2502134fc142364a868ac93811b2041d?P7zXZ !t/?] crt:bLL 4 ߁Ԫdrh4E[.Š1ǸE#<7Z,Mm[ 2xI eݲ.') 9\5պPU4e"5?}p-g͹HVwIqy<}̘j5Q2E/ޖBg@ܸt)ijMAAAԦkf[g*t--+вxe$ hW@b=O* $"(;]jxJwS99na 0I?ztoTrtQ Q"G<~_KIMPh\y]Y4 @;վߔqC o"C>'lEx0~H vSW ;sW sv.G6{qyI 1;$ϳ8G tw:fBb}Y>3anwDN- ;2 e8gd_ut$T G?1;aWgW\>_ |g,Vf`E"PZi]ܫ @=>q#n$(66aFvuA1Q5/WESɢ#F)tڜaK%sb%Ac4&M #4 ^?PT4ܰ6\_+bmD/"/x .ĉя! D\\j? FXCE6 r+f`:t@ŊA |<^K,l'ʬ:=hH%'&NuI3BݱT aW@2=ْ8!r 8 al_*!%Pz׽ˎu ) yVl,D&۰oQ6Quy\ifʚFdvl7 hU0XUQDYz` ӯ%#csZҦ7Ч*;.jP=_G\)8N6ViF }/^X_<'貉}Ȟlzjݗ +’{3@ $0\88II֥Ep3:H =1a侬R}P#e<\H*!rw(|tq Vҭhxڗ,42)k}%'W# ޾(y֭ ΠA%qv+q!qsPs4"MFKnw$Uc.N&A U j`&8,{VB`3-{8)  `'?c[,Lw0拏> aak~|hq$A#)%KKx4w)di$Z7@V;rq$nT=}wDue7|qbl?N!SN>+pv3Um(-R;-幽:!ȡicH*uzI:nϛl Iޅ^1)M"m]zUuy1]Ar.2+xn@CUe v VZt'3宱h T TE/,$"x1 @X"wp[h_$t.򴸬^XR^u?\ ^IA:9N 4)nWu񳾐 <,=c.u*zqlC-ușzƑi3u2x}\5AqY~i`i?8l|fc% Њ]b=po+XjUZ.cow<шo*o6=igHthKD#~xSUi,EtDHח6u%_P-ӂ};)һnfCOS8#E Ik)Pw;i23@ń/6`ο 4F+%o9~[9f˩zW>tqTs3qnF I2AV[㭯}蛳2£ yXM/GB9LR/a@Yd-@:i+7 #>-CXbFW1/P,Smd Ͳ(B@OiAj}LJq\I•#\wЩoV,AN_k"]a-!$ܧ}/e"񭘃#Ȗ~g1̆ݶ:utF?w:(* } \k+lGPj0u kV.T2;[NPpI]$N5ڮ(Iۓ7RּEN(Ҙ*y5lT&Qk74Td(a:WT*\O¦Z4j[LhZN3r~4<=0'g"t^0>ci?{N' k6kCxh7AЂ;#3RvhT[S%ԝqqn P?>/3I{a.Y 6QXך!$>ϢZ4،l<7A.X?jL{$MVKK2fB,yҭB y\Cahs=;v;+*bMI2=yA8#oR#k&[NB"?srkiw*~QzeȄZ_e}a~Ӛ8;)ShRb}YF˂_DLڋ+ΪmtU"r|q{84\S6_HN6VBlٵԺɿv2*^үαQ(Tré-u٠ g><˷gj9Wsg<ڛ'u(,omΙZ( c1 D{rI%؃NTuԨ7pť9y06Ƙ·%"I7Bb{EGEvaw1Kg~\`E_ܡZ7@b_a:kҪ>/ߋ+}v͚]LT&n">;ЁtQ[vKot:^6.Z}+ * lW>?"2_pJ}vDDz{_ Wo~n&Ic4\b\lnw0#tnݱ6w,g>2+$Nԑs))b_+s֝+q?wt/C\!ߨ0Lړ8kÅ[h5||vOJ~O HPX őÀPE1?^Y2֪+ XiW$gBYjC7 %\ :@R pYg[u;uP#haI>׆rWAl7W-Ԟt۔ED\pP6Vn7Sq2k d Isz/8; 43Wx:E" *i'H)>$eq{(W.3S>䉗C l1xX(}7rU2۟VJ.#apkFE/^vZQEkM#¬Y9EےhX0Y 6yi80y!Fh]eg_%Pջ>(o6VL> $Vرn ONV2P˔G$.ϫ Ү=(2ÒNx_a9LYaٿ14#E|OyP2)3S_Wig-RN+\4 ,p)~*6cw^:=>T}CBkАj%{դԴfu׃)KjdH[T҈)&qWpiCܥ5 {uG;ҧUG%x8WJOzZZ,#1P7RM.Jq%O36>:V6LT]g"H'q6i%1kuݜ7;}K^iUgkr֖g:4UXIvM)fZe2c a=k1\?hYtR-f54Bo+LL。Hc:8(‹֣d=E* 2'_%l]Ro!^\0s~phX#E!Aj9 TɌ. fbKG 3~14ﯮZp{R4T:G&M XH0"%CK>|V|b_es2O +%Lf3(!XJ']s" ܱ!"LA$3XYk\_pxd`ope*lh)=Zp"z H 1h ݉#ؼRzhd=_ӥ˕ 9tXv*Tp7)^m0F)S*_ۺVFJ])ʎ5|->c'1~6e24 Wtd%yxXDp 6?޺&'ELElxz_g7D-Rg,F%GLpdNݖMn3Eо;蕐һ+=VKAPalL9=U'nn0B=SB}Z!uT'*4-0ESVP܍lrU<e@7v`"ur٥|ln<4jFծhdbwݲ[i.7<’;)9;H\@ (FZ(_YƔ]˽gQljVbe}Pl/zFI5;ƸD9\/X2O` &ѷvfVA#qo7N8%byeWqD9#M!d[&%/ N¼f](3YrIih*ݩƵdᲶ>ٌm\ FseKLR/[Ё[\:ë7R/uFw9-UyQ6uSp y:x]4lgNo\Lu}G͊7OG3ߙ(f,y.˺Oa'[2e(c~}ӻo@Tg֑=2h/<MПKCmvx"YXӣ[]nડhk_6Ҽ[x0V6/q+V8G?]|߁RE%_+ef0IVZ l;.>q$\;u{Ԏŀ=m)0v[N/]:zơtH n/-[O :tEPtR&ʻsU;}ϾE>蒛C?90`.Z[RQ{5Hd~yv>edϙ6tiy.Os3~-H<=leٞi&6ug&>Q)Y4,o<؝y2/xveQ9U᭸a4dsG*yȺkw|smT2T ;b )f]j¦ |r5ť9 @W}HY^ C\)xT^pyC'L?eAbҤZ |,˦ésekœCN }_|G<H ,oK^wp{6j:|tS$TkIȳ@t䷘x?Jl;T-g,ו,ZfaD% 6 pӲ^n@)Zj(Bl8b=qǂoL9~a't8yGKx_P#t-<ُ=d?5auRvT+jJz't?wڢ{n1&aD2hLgfGV9g4"Ɓ2,`e:.jvƑ7JٌY_8~l7g],CQ~V.x QUrȜ;@1>K^M%NUҪKOau5 `pI c@ԩgw(gVag9.F2(05ue1=go۴|A˫%< ßNfό&YL¦IHP35,MA!TnyF]|%apՎ SD8YFjO?x]%IÃlu{/u| 2Ufޒ؇tv:w7dV֑r sPLBIyV"ALTkNhDojIVd Vg@TtfzٶRc Щ {i{PkF*V4qєԚWփ}` N w)jy,2w-J)7  ;}FftK03cg { xRH{Ah(}350n1to?UUUlIzJdsW0O^idA{Vd)MEKnS_ž9IJy޷sVHsPg\[r <%˼:"IFZ>̀,۬q6˗!pMN8(he^*Ccb٩)6*PA j9m/$֕՝uڔ\ɝ!+sgV&!7c!8P߳f[ Dv>!*3?)kh@Ϯo{(U~2fFApq6PBoOq&[VL~(6}\qx@ćbF ڂa8. vfb0S'=3 *PxCw/_P4CW~'bOP>LH+~Aˎ jwk|MIrkecN Bu+9_KiӪjnn^9Y4S<'`5=f`WLe蜏U14rSR\:8wX;c#`9^Yj)Wo{=!LFƶ +uڜJm'!AQmdbwI2MINl殛TNb|abxU2CZx PcA\a۱WGc&tD/"\bmreR:E+ :u;U#.  +eۜҌE I#ʫ_E WU=@g 3ZNc+GTsN{rK)ZdB8Hztaf MPx=C9G* C!H)2 gb|uP&"H*r=[_C+ k Kѓ7ȕs@͟V0qvO&2Y?R!ZD4tΠDxJfSGW{ƹOR՛h0}2 X ~|uGZ%A4N*$}xC*K(Vsgy%o}"u/os՗u,%،F\6=0^eӾm}'ua榁orԕ1mlGl ¿bQ7VHWIr B1 %92*n)< DnۊpQvtjx~ AE25*%2I Jo6Nܢ*q\] YMr諔 \VA5Sġkk Sо AY=췶!{=Ѩ|D3G9 Kw9 J2yosvTS#9*gY$FjJHgcW*G)䋅Kv_TkBtr~d781өI470bVhh4v㿨hU\s 'MY졽r6e 7=tF"- x#pK&R *kqÕ3:5ܜOtXŎIaoa| i{l E+z2LjAuX`K5PvyqB_l,0-M.yI'RnmD!ݐv䬐\pm4B8!C.GQH֩Zӫ9LnkP[څZJNe0Wm;)jǴn|,LEJ?EˢVa`@G#03M~aqBF }gmA8ep(g}NBrog""۲ŗtꮯ]V aL<0hQ2 VVops"[O#]:FWvuaxo7.7C^T?^i3۞O97lg<RZlЩn\eb0kO-7O"R^`+/lwGpek`Gk~crogsuRYkM|k~)B{oiQ=mi.22ܢxuw^[~c9 ZljߦLzZXpg#,PDfC'?rPQúZOQ-lJ+oѿqwj $V%2_ER5(%Ȩ_={`j-۩ 6FC@rS{FLìhJ(B_]5e> 1]JEy}jͱf14$FNO7WIJh&>,2d[|(O1|*7JJgLF v{-gx2H(B( > =tgnanNxL%ȫLe`&Y ut+0`J>w9~,qԶ(p2>|ԙ<{ OP`0,JIjJP"/S>^#}ò5/qǎ Yrv; RdA\(0lGg)}~i*͏PZE_϶+Sx]uፓ H&i#ga{m)o݅&f2EKd`濶MFQ& ^s]t3%0bT5vlF)}W-1םr$V#!*~¬ }E|AhNnV@cjO؊w{CO:#DtanC*1_{!pwU+ X9?N;zͬz8N!2-?rVM[ر_u7~emA'1ӅѫcޯwoQD4ً~FyJLL̾߳A.|wcց{ I8P{7u^̠K+Z UV+>6^6=Ӭ.l XGL*F OT;LE_A٭4|8%kOCp:s`oaN4>iuιk-u:¹pF2[~oFoC=8{*kl|};Hnk`4W[L[{'7]T=fI¼ u+՞J^ (h^d~M||Gb-Kq}`roX@U$͐1NU38 C:m6ޞԭ= UJp .sgI"ԆPwTMW-f?P6:p)lXrN($΀xC[e-2|bTR5Eπ>Z^:WKwxä*K{ؕG7 VIظ\\,ܸR(n[5_ 0p;!j`b~~V);Ba>+:~+AϪv +Yk^zhnw¹Ր#1B6(i-/AQjA"ј#nfoXFl ߭uq6Ũ*F290DV@' ġ3^U$vv`.HSNgӑIYM3Ыњ&C+f oZQLoAwTҀ`4N\=n;#CZvlra "4FU#m$ݠ"A{w^N^.om+>,qvWJJ7pLH2plv sCyKeܗX 8pr,<tc *e% TXe`vM7hj_tP:o=g`MX٢4?dGЭKe7dT%^m0zpI V>!<w9̏p8fLRHC8bxovS[Cze@V6~y]!kJX-FYGci;Ԟ 4N,5Af2ldc5TD?~UkK?Hm9>CTGYkIqhS,,iVJ"?9|D ߋn{jJ+oYEw\#ԥf$QKEQ1 Xhs_8/kKM% *{IOAR";No-f+qǗK^ x欀m(i5@xœqv"!gz|ۣ΅eod=!Mucj^Tl g={hBhLڹxcB+%~EcjOYfhiAm⪄:-68Zy:54 ^8@#Re{3OJ1}'qWa JoGY/Gb|:UN@M:IT]hCg'󰽜ӨA.YSFA<~3hı33ʼ@!XoY5[1B[f{gs3@É$ҶGER, گ:K< fG]/[1hKV>v$49ZKV cs~q4iq$#oRDjml/tsZ-9N;d}eYp_ {&S9i6oW \;kF3RVԒܝ!B<[L[T[h'Ucjx'!wz9Ԫ|4$0QyØIfaCE²ώ֝$ZD g帷O@#L,t g9 F+~Pߺ+ 7pw1AզdDUSUu>+<- q&ޜCrWK&,R_^^"G!啙b%aކGP,9%%o9Fx<M>bZ@d1\O baAR &Qx|Ծ-r!Y#:lz17L;'w QJْ+ ,iE|MZ:^MxvV:tYOMF)d<ͥu8;Qv_RᄀD$y85 1o.$*##{f&-"ॷIM#A\-Vci:qsgW>;3$0kuaGJ nj7W i6 o(^fEn{+Dw,pq)㹄@7XHt72ee[c!wU G)4:?Ne[Ju7I$*Wl ~lͬJMgH~[#Qs) z!C=؛L1ĸgظ[7(1U^ޙ+-WDy*Emܡ8]͇v3 .ɶh&DN4Oqe-aݮ[Q$G]Za?dވuʃ;#Ñxw1lg1Wz.cbHBIY4;# kFC3v, h 5irTsc chhY"g8_yavVSMv&2P3%Eñ>7E2`%U2g\?8Pv *X+4D(=){QaG+I9BdT(D6)Ӄh+[eJk.Z(}rC]&H+_<`0/eZNֆMydJ5HkТMd_.T}. !&GmFJ xywo]MZ&+}%WP0 v31 W׀aQRAxWGexš s^mQn5N/?K Z.&j~ 4bx)D'[XA7a5aHx,&\GK4 I8}o.Z=E!>RbNj60D_a1]ΥC?h _9R?Ur4 [kPRF\>Y&t_[U:ҭM]֋pUo<-x 7$9`'V噘 Ip_ѓQIo0,!B^RIk$e96'pk&Z؜ lYɌ%FNIՂѾgD}Y~ N"L_*h}p}*1/pf!vS7`\784[U7^\sX'l4SAҢe-1P _U[dLF4f!xk}UQs~UdU\4[@2z*2j1yŊ[jB!"sA:b:>Wmq]s0 QR f:=KyWR?8фC6&:=si,g0wީkkv< rwɔV6f&_A}賠Unhb"8&R?w uD`(Ok%|+g jrK aLȾ7/ nʾ[ƻu.k>S'}MyErLN*I:(wud[1"B!ttY>킨,y6.m K|z;BCo!!EOe>FCL,{Q_nqd`[|"Q ;SRGw~`=S{}Ь d#Nl|I`=@6 zI 35nӋs$qZw 81Ԝ_ Rx'^|E?z3xY=4^B$f1s;ĚOX4HFrZ$+Ҧ#yDk\0 :UAծ)pe9mu{J}jiRRũ yBsbO)sGNUtDV66K&FP`. y=⼁TG-\>Ȑ멸"UEf%&'+`2``JGHqQ^W ~iUwrڶ 0 D6Z[FxI]:B((9U1M -02M-eNxdg&kwn2U G&g9`LS+ՊI#]%kU۞N R,f#|Ȑm{kG.[-$>n7I%Vrn7mŎE(K"fB5zm_F8 pTT=X-PO'0TI+nƲcb{=6w2>*Jnnq 6J|L·3!dߍ3MpʫRDi!d*4&_z<:K5jsj$<8åOS~pI+ ,*{I Ѷ7AƌJQ:i3ˆ Gi,bq@TbИ|w5[a~/902 nl\$&Dhׇ{P8c WudXBӆM#f&nדK#NUGۍM֪W7&,DlfFD@ㄷw~!6ƈjbB;`'I P<"h[kwwRJ-a*0Y}Z-T^zɯV@蠯%l,f$3# 4PՋ5c{V1O1{c]8Zm^ Yvܗ}%+Bf#wuCas2HaʓflX/V{2/AzoL\H?ĿbRU|.;bz1}eegU8kϽa)|{p݄`N^ EL{8ZQ'F l-[:)@Ie1O%LIAmn3Rd Ij wiGs{[vTJ=hy^L X*\j!V#nDXNaɟ429|rF% \9Q#_&׶ASg"lcv,fdrbYMYm#4ﯰ]hZ+Њ@ ɦ"_*}P¨:"@`5;<,Cj*̐Qk.,(:h4L R܈Ʈ@y瞡AI!dD " .';dxci(T)hɦjKnkۥ˽ԺA6ox2TWufl3_RD Ņ"1fe5F Ǔ2EI%ˋ[џ-x`Es ɳrxAIICx0>Xf옃-ۂ^9j4M%%CJdڤ~=UћaWx !/![ka KHͩ%Jz{ i[WraU.ͦ5Z.F H8}bT6Ŷgܶ|*BDe#UDX]^;oۓ741]5o+qc@ǾA, #}[q0^JB4Uqɖ4 ^Cz!ĖwV 2V` 7͂N8 6s]DmUdIܛCtřä .{N9\@3,*1ٝS1ka4D/'b,`#fΉbCvŰԺ$0ϒR?k qQ8P6̵̌l ؊' 쉒2ZrAf? LhwȃtrrǫR_樈)jEc)\~;B =Jtk)?Vp1ޕ.P'5t0GJ v /(Q iX{~0~)e6gѻX;B߻ShqIL)/}+'q \Lmj-e`eeoIԧp==UfA>?:2WqՖ?Ta}jQu̙ $(w@B9n"e%^I~wYI`vnS;4[Ӕ4TZ<; 3='!DWxowqEz]qx` 'n@˃[|q\D\I]\3|)zKYFF7_GVwCu\ܦߘ%ZK oZ QTIW)FZH+Zh4N%^ンBC#\!wiϓó M27H *"Kr{"{#D[ݟDH#{ ,x~5kr)ē:n:0f9p+= jw]leA[ 0Ku-! mPW'w e-@gOxe  +늰pum'hMj9>Rll`Y[yOH{9M3FqOd )_0!CqjR|o6:2+\<+) 5føFl}uIei~!cH%嬬ڀh8nb⑩BD)%\Vwri.7?ye-t؞dúʲx$7=-ŬbsFQ_PBgu{6 Ъ!X0;9 K _rPA .98}YDyEǪD} s qh%)ucRVKd6yZ QEf뤴Wѭg s@~ÁѫpXUzz/`;Uڍ#Э3^g ި믇hJp36<6_#{D#H sЈNA#X[+*_KW-7PC9>F ,0VK%TÌp,-Mb蜏 \[53Hc;@Od5LhQ%?eLFBsEEv~iWjRQ#<$ X3CLHsN4`MRBp"M+x?wvt)gtG#߇,k,W+1nRycNt;84+$K!#T @tsn`"uvI.; D+ѓR1V"ݮo DhHgK/xW}Tm>@_qB94tqF?XК9-j_9ny xǽSnȠ"_>G"Mӣ2Y/-NY9kpϐ6ִ߯Tnm-WU t z] ˯upť-6XɕFd>_ƶէmC ~a:<a&jF(ʖTZ+K| 4<`_ctfkt/Z"߲X2ݻ7#ab#;i~U_Z:\Sǯ pkcjBNopj-!2pPܖƻٽJ.5/53v-La[d"mW\`?R-4=<'2ꨙIJXkBc'T۷P%p>2Z^"^71?hif"뛾[^C-5?Np$QN]_q2*O[tj 5C<޴Ҧb`=Ō 64t,(V<WTpћ K'݄\؆_C:+.Hgp S3p4u`s6o@kۑX)g,\)IZ[yenVߡ# Uܪ/~IYDHjW"{l=t? \|wV?qĮ"*S| L^dN42ʔj :VLԽع7wI ~"zotY\]!j=Ep{x,}jAC6k,ۼ)zBQATCxM5k_+Ju2WSQDyQ40~&,R3~p%SQشio,J||ƾ7gDtngqva/pjcB=` L ygsY @[g73J]T ]9`.XS KP$SQM#< |m@J*cϾz)d0;) 38Z`5b짘YIn<Y Z$!f*qP)! iGt( ЎX\N/WJ?jcN]W1C"_oѾj19v`MۄZ*Z[mXI-l2Gs$aHmw)V^%~`8!W]:ˋg[(qqJ@rcUq"rWT¼oH(MW[έ͛Y:_x荦WrZq{2'9Ǩ> ^Ӱ},qUL [֢ 0K7 $Hz? a QVܝd%>y6 D*W@뭉ːBKb5KSpR&EtUỲ NXmA7!RXAku2 (fꮙ揉PRRL|M^EN1СT 1hOt$ DyM֐/ C7 p j4@`"?"i#Lijš8UUh48~AG1#HGD7sѩm7QODa;L.[s'k醧.p ahJ%w٩/tSl1)|gebkŒ!c9GLz[p~״RK %D2$f¶ 7BaPZřLhQry;+{sq%FK Dy 4pL2zנ"s~Q$~U5*y$#<'Η X~36[Ko$΢õj}eN x $!<6qu̯{ ыIسx{&,u/oEjɚh@/.X-s[r1[mS:&S\!wi.qcNNp_Q&3s?K'TD}G!vТ"kvZ)ȵ)ESF!V -⼝x2a|cLG̘U=5 c g!MSb}bT@yqpHX^և=됓r,g*ʖFIwlR"ޜ2A[x)قM*ڟчpR]k7U‹Ò!=^coe_nfks`*{=%4*̞$+{E2.PnӄV:9akb?i( cLJBaI,dDsULf>%ȟ#u_tn32quh,m\OHkIⱠKeO(sTLHc5to%ExzCvr\ lҚԈPip5RheGA.#VqВXa2WiDĉ\n08 *odHl^{ Rq9b .4lOhc^pb*ě4W9{Vwѳ4s-:XgD۳wRf'H|JיZ` ȳi&]=H3tyG;@^".8ЩH&{R^L_{HYnT-H'דK+H>}(SX@7ۏHzgy+򝆀P4NoGRxphn?ާW.I+.~u$.H\~hP|{No<&{P"mWF' # Ә1xك/fo?(ҾilKE_ EC$kw ]ݤۤ@q\Tbr'- |,/uySApޡOfjP~ __- ᆯZq(;Q۶W$،cP(gdQ2(7~O()^)Bj߶ݣ`Lme0AO6K@WGاXs+R!{LDzN8&J+z2$꘯zw.\XD^O孌;Q'@S"ԕHa:F؂ZŌᚖ+1%-J>ļcƊsq6QSԳxy p9eaks9QcavFfUG_ܭ%+/(+H5ӷAZ`vx7ݯبYkսIa.IQ@$C[ {uxp g7YF;U ??Z9~|BX%D9] _<.g\zO}YF0%<1{S̚aЁI-[ Rzk^s4a-v0u(@1r^܈PDNPCvX=\ iҧm IuxQU]M vh6Įެֹ&F}; NJʂFOlEU.` >rCrxc^^}ݽ-Rhc$xaKIu-|kq?BTRn%st^+Ћ>[y4$m V͞Gg +R_j t8ެʂMu%7pFĮ`{rsGaf y?9mDt(q ShH֏дv@óm2.eJ&f:t^Üa:|~N$}QJN& ;sP} }m<.'`*fZo)+/2C@N!A ;3aB3qՊdwoh4[O5dXMC`8݂N5ۘTGSxLcrW&_rohDpe?"-fvb X2Aw(5Aâye]Zb&7s:}e6?"4ttf<?ƿwdlf^|Y906~Q<^&gYL7īs J_tIMIfIO;s^Y~ـx\,nů5bWݱYB@ogzM] OpX"]_vqM'}tcHy2Rijjyw-=Ҥ 7Bpgp1t> 9ԩٹ?}O`?*Ƈ?48!e"LF0U008܍LۈăJ"0şWȞs芊S >fҢށ8T`;9} n 9Ĥ#"5+utIvWٱLlUs`ԛP$H qO"J~D{Em%c~rDu'BCPQ@Pkoן7̨VvN 9,.VH q%՟#c# b.kjuyhiYN8n}R v)PL%wg5u*q}LXS+[)wGK {rsSҮV2ŧce78.rzRsGc}-B @0"Cy~>yNf1ݗKIdbr-H dώp<E, 28Ě i]~%fjH*Yq$O}.] M4Z􃴖a1)}L(bLWbR.ZGhV)MN"z*N6=2Gk菶0MjWbI2_$tb2fSTN JXRܚ&;GKtPEz^1D趒sǫψK.p?b˅y,39m;5WՊˋ}׸20sWm;e((̭I?i$rh+5ɬ:N5Oi 7hƭ4Yr[#,xeyjyU J^vtȋ~M ^'%+Lc<@ C;1ci"8[[Zs9o,rRQ%$OF^hm717BmXcoCXPFmh˭oHhvguE?@@ x^l0P zcY:Fhw  1mT~F 'S]iǞ+O~ʜ4^rO앎ɪ'?p#pF/>_B2]~޼ Fa yN)mIimR닗" 2#V=XU<σV[pu>[2nZ:8/2wm!6t9mD@.+]MxR^]ORkmxW{2/5zD"vΈ6-98C=Ld9B┖R\ZmLIXX>U#AU۸v: G%]",6^G\YyB@11lApzn:}H.dETХv /bR2g8Ihb&|FT| gS2W E#Mօlj|NpqBC[6)6LYƺrݗ`Ҹ j C[o[/@*7s+[vrCW :)oɘ{#(#6/; 2Y$T}]-2&xĆ,m{չJ]70+' Vv?eX/@FycV00)*$7U'ĉ(I?2 lFDB{D@z6YX:~'$6(87Mtolo n#YxR#^@ϲN͐!Jqf$_b i-bX8gmC%\W3ߔ?9֯3sdchֶ HЀQ!y]^y^hez@J۸k_-)d9 炩b ,gp/< 0S$* :=%kā, pS@~/f|m=<l˺R.m@ ) YMA.w/h`H T6 羷T']ŋy!2 {?oX6R$KK{`Vt5jBW-Da-C.2dnl4#ϛ=0?QL0WީwbsUKHj>W6u-WzgQO gm+O?%niG;nȊ["\³>dID[sm{/t6TvnwbLjIaژ=14H˂~%hHs*ZvGLeD!ivx^1 zxJ+iqyfďdFoO1\UBHSPCwuȿJЬɶle_'g)]`Vo A:.iвGVÀCyb%޺YY$GNϥhyj`܂k_EQm n ,0-ulk+.o(}ڐxG"&ќ9ǵ|Q}W]u6ݼk[# 1;&SpBsڻewwzAmXKU!ymxy&?ZeƲo΂xz?BOW5B']mokkCJ !ec@nW4p)^ʦQQoªʼ]V|kA +)D[V/"'럘H q/p"1W@\;-$Pl'sQ/E3KuXWF';\]EamB-g}߾ |>c _YA>oҤJoW7dl.7@5~Ϲi!ؿ/T&m֖MYԷ wGњy4aوzmVv4h ʞMf ̼[;9N%Z&;$cSruY$Rj3z NRNo(5!ӵ-MJuVPz9 j[K%urNq{: t,ѶJo5a!SZ6` Jw䁇 MXXq윔GOY9sIgd.s7e ս{/ɶhNY*s6^%uaDU@qJ CgE厲;R0S!YNoc6\A%n:l<ZFGu|ױ:vAp$}J^l6"_/=@bZIQSG4bΨ(M#vFP"q<[ ݱ-fF^Oǟ u )u"<ڻǴؽ,Z@N|Re YKyhɠޠ2®W'Dm i@al|Zjܣ:qS] P+$X3l&k Ei=>4eLˍ5zEa1x+fcG*ׁi~WUBRNLnUm+&;01DȻkj7c*Or[N ~.We|8rLE:i `Sx(~ n\eP@D&M=|Z엓SFYM.3KO [V3/˖N.d킻߉w0r2_pN:"芧!Ĉ ,z+|Ϡ5Ff3#.`k5H,Bs؇oil7t4LH`JsB/1G1ec{fA}a`mH;;|ˮ"Ɉ,KHj%&F5=Ӗ}= D db3#MaTيm>U UkCV Ղ h9##6}O+=4eN?)ѾէA}ޔl$hҕ0!gྲX G܀^}X xcV͵ ZP}Qs/eTKil ㋿\`^gv/i';. Go,W"6zADha'QY)$]]/!lLٟ͝d=p}фaA#Vͳҗ_E3cDvB KĬ:wdȱՏWan(Kl&ib_ʋ9pe:@KQݍ m%r;_o:spd4܇Pj:!8 #9)W]fլo+H$ SD9Us61RJ|/(FA}vJf'/PEu z/ULPת"VeGs ֭') # >([s' *<@U-ZNՃTs=^ Xf_C?t(5Bnh{Y;Ir^,ٕWTo)}n3cug  %+~6s@ٟӓdO!'0@Dz$kZLǂҋW-{$ >}jK 6pJjRS>QL@|]Ng֗=Ju߸_g[&;tl-A{\s($Ыyq6M5 {c/_P޼ cyD?Dr!YޔUh\C5! g8AuPSTVp_Ov3Uxp{Jݠ+Ij/O5V."rЃÎ6s' )H7Eh^OlK n7K>BT9s"!=֤z)@ϙטd_+(pAg-`ȍ:M,ΰ' C$"څY2 I5$AAdz5,o}9NM yB y]cX>*& 2`\L0 zU2 a*[+v甥f pb{t 3-'/T įh-*r\FQKEl@2G9 8_ͧ(TH_7WB7"W)(ߢJWajygkxkvq 3>A*Уo s6/йTx{uʐ\jB4=W!nfS{8;4nb L,y8(k`B71t|+C9L2C𣑈e<]4h.9V K[oΡ}iՑ ŒǑcDzU n$bsGڡ+ *a&팙|1¥-O: [aqf%F h&@x#`r/n4,ޗ)R>,u1!މH`ЏþOR9C 3xM7 }.#.Ă C1OC3]I` ϩko9 'Wq@ZAc~D#f6R!HRu}OB,NAJ ќ@p:+Uc$T8cca8Lk˸*:Gx $0P2}68ڍwPgYo,t'}ױ΍44noF$ʌ cl\g;D . E@'68kWJG!`guϵڦ0II6;u^Tr|εՈO=)x/naAj|ld6k5z%0MjTB&؍wC מ]γ7SX),D~(44'ZH־0nHYZ9Ϩ2颪N7F#) ڣTX|wZV1ּ! 'qc)Xo 7M/"am6TAT1Gs &=L}\@-_~Ik%$1nOyߚ|3N\h";)&):n -hQ-st'/u~#MSsDEz۸P-5x btvD tN8vD{ ET"R:=&%khe3zmJ!"(IIKI) v&;1TgEXpD1=!7Zl$ǫaj P/XJ,),"˳+jZ^"E-]YըP-msaV6т򊎤n[1aF;\Wlxz ٖWC:YF^xY ܹGnum?Lg) %O4 |-Lz `S7[cN餻`zm ~z܈hyΠD*r97 YZ