w:@CzbW4O6Jy_f AQB;?{pղugT3R[}pi#kw{v&F%A=IA/z9OLfWk& `-Nσ|P EZR*#JĀLgY-9Z#S{wm6)*N6*jbEdkp"!dv F1> 8L݉ڽ\T,:䍎1](Gs술[J`$f'jTЩ;lr(\Oh}X܀B->5w1wnBcRSGXg4 hSݸފlw,ܡ*f*Xkg?x~!{L``AUKP]"@po0sjt6QŖ-}5ۓ?pPPtُŵl4/ \jA`Fj0 +yTR$Q5E>P(6##P6xA~k*\BnSx`|gA PGg'`_>:[Bv74!pW #Ge]f7&X6Q U#MG?Mf_ȍحma}c,O [Ϯ ]NQ`L.8eFэ_?<4wgFN5K]OÛ'm6^Dzkd ĕxr:008>e3gǧ ;Ht冟XS~+3aAL9G!ph-Suke x>yӪQ.h"m,zA:lwM1@A|s%˵mh(lN#8zt/\>HSL~ꑋ{(qz5+JzAUs5}euʒ4z[ )Zȁr:!Uz'۸u ]WW[- k'Gk/%ỏzaҠBUq,Qn(ZQ:_yӆeIIi{- 苌JP6OSUɀDb9JM3,un+ Rf7x)QDj|;j_..Rt!;;7ǨKl BFPӚjR! y<XR2nlʕZ 'w)/"oA7_ b=ՓAO!rH8?+n6!/>t{7U(AL>@)~lbnP td4Y=l'MrzW=x nUT3y:&+M<]ԾN_Ql}6^җd\*Aj\El>Z ɒ!nSW-K _2dYcԩ:֙yXF$gaˎ#+uU~&ãRB]  Yf1>/ )*Yh"^l4|ed_DrC*bFIIw_(3->+4V=7?٤`2HʥH^csJhGźٳc![aw#Q`26HIa*); ABʛSG6[R`9-.S] b\17M ҤZCQ z>.&4K!=}E4WoNl`@9q8we5(@K@0̟ ECFWleejyzЖ,s/Kck#7lt%̂޼UH:`ߑ0,N);g ufGez CU}OEhGMdA ]q\|/"D ' {$_Ʌ,+|n?-bѴRt%5y&|"}pV6~%>VU(M Z-[³@.>tSڨ}|WE6+‡IPfo Pr[)BWj&ǼRO<_m%-SF [(s ~GOt/=Ӵ ܡf{?Tn񰐁D%O\<&+a|\!R=^`I -ތ@}uKǀ]js䅁2VC 2 ,p9iT'72Y ԭܠ#bw=BbA# Aث愀 \aq6ag'1O^ tt {VE߾T֓^GY0X$P;3_sa'+3~Ws+q5oE\lC+d[V+r[W,]8jjeE'~s-fj6ֽׁ=E?>5USw3O?$[A;@ Hu CuJ)Hyޠ[ XnIA֑ aYvB7U!C88r2[8Chk%:%(~4wE]5z!ΧRjYx̔9OSq,ո -1{4͏CT-|[CРpv a_ B,q*c6nta﫾7>?]@,ǘ0.yT^Iead .F^SJw3/+e q//ZH`ǐ&b[ZH 2"5K쨷 %h*24Q@Z½;F&5ysSȺ_xy instead. */ function is_host_in_noproxy(string $host, array $noProxyArray): bool { return Utils::isHostInNoProxy($host, $noProxyArray); } /** * Wrapper for json_decode that throws when an error occurs. * * @param string $json JSON data to parse * @param bool $assoc When true, returned objects will be converted * into associative arrays. * @param int $depth User specified recursion depth. * @param int $options Bitmask of JSON decode options. * * @return object|array|string|int|float|bool|null * * @throws Exception\InvalidArgumentException if the JSON cannot be decoded. * * @see https://www.php.net/manual/en/function.json-decode.php * @deprecated json_decode will be removed in guzzlehttp/guzzle:8.0. Use Utils::jsonDecode instead. */ function json_decode(string $json, bool $assoc = false, int $depth = 512, int $options = 0) { return Utils::jsonDecode($json, $assoc, $depth, $options); } /** * Wrapper for JSON encoding that throws when an error occurs. * * @param mixed $value The value being encoded * @param int $options JSON encode option bitmask * @param int $depth Set the maximum depth. Must be greater than zero. * * @throws Exception\InvalidArgumentException if the JSON cannot be encoded. * * @see https://www.php.net/manual/en/function.json-encode.php * @deprecated json_encode will be removed in guzzlehttp/guzzle:8.0. Use Utils::jsonEncode instead. */ function json_encode($value, int $options = 0, int $depth = 512): string { return Utils::jsonEncode($value, $options, $depth); }