+
     BiP+                       R t ^ RIt^ RIt^ RIt^ RIt^ RIt^ RIt^ RIt^ RI	t	^ RI
t
^ RIt^ RIt^ RIt^ RIt^ RIt^ RIHtHtHt ^ RIHtHtHtHtHtHtHtHtHtHtHtH t H!t!H"t"H#t#H$t$ ^ RI%H&t&H't'  ^ RI(t(Rt). RNRNR	NR
NRNRNRNRNRNRNRNRNRNRNRNRNRNRNRNRNRNRNRNRNRNR NR!NR"NR#NR$NR%Nt+R&]PX                  R',          ,          t-Rs.R]P^                  3R(R/R) llt0R* t1. t2RjR+ lt3R, t4]
Pj                  ! R-]
Pl                  4      t7R. t8 ! R/ R4      t9 ! R0 R4      t:R1 t; ! R2 R	4      t< ! R3 R]<4      t= ! R4 R
]<4      t> ! R5 R]<4      t?R6 t@ ! R7 R]<4      tA ! R8 R4      tB ! R9 R]B4      tC ! R: R]C4      tD ! R; R4      tE ! R< R]E]<4      tF ! R= R]E]<4      tG]	P                  tI ! R> R4      tJ ! R? R]<]J4      tK ! R@ R]<]J4      tL ! RA RB]<4      tM ! RC R]M4      tN]O! ]P                  RD4      '       d    ! RE RF]M4      tQ]+P                  RF4        ! RG R]<4      tS ! RH R]<4      tTRI tURJ tV ! RK R]<4      tWRL tX ! RM R]<4      tY ! RN R]Y4      tZ ! RO R]<4      t[RPRRQR/RR lt\RSR/RT lt]Rs^RU t_Rs`RV taRsbRW tcRsdRX te ! RY RZ4      tfR[ tgRkR\ lthR] tiR^ tj]P                  R_8X  d   ^ R`IlHmtmHntn Ra toRb tpRc tqRd trR# ]	P                  Re8X  d   Rf ttRg trRh tuRi tqR# ]gtr]htqR#   ]* d    Rt) ELi ; i)la
  An extensible library for opening URLs using a variety of protocols

The simplest way to use this module is to call the urlopen function,
which accepts a string containing a URL or a Request object (described
below).  It opens the URL and returns the results as file-like
object; the returned object has some extra methods described below.

The OpenerDirector manages a collection of Handler objects that do
all the actual work.  Each Handler implements a particular protocol or
option.  The OpenerDirector is a composite object that invokes the
Handlers needed to open the requested URL.  For example, the
HTTPHandler performs HTTP GET and POST requests and deals with
non-error returns.  The HTTPRedirectHandler automatically deals with
HTTP 301, 302, 303, 307, and 308 redirect errors, and the
HTTPDigestAuthHandler deals with digest authentication.

urlopen(url, data=None) -- Basic usage is the same as original
urllib.  pass the url and optionally data to post to an HTTP URL, and
get a file-like object back.  One difference is that you can also pass
a Request instance instead of URL.  Raises a URLError (subclass of
OSError); for HTTP errors, raises an HTTPError, which can also be
treated as a valid response.

build_opener -- Function that creates a new OpenerDirector instance.
Will install the default handlers.  Accepts one or more Handlers as
arguments, either instances or Handler classes that it will
instantiate.  If one of the argument is a subclass of the default
handler, the argument will be installed instead of the default.

install_opener -- Installs a new opener as the default opener.

objects of interest:

OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages
the Handler classes, while dealing with requests and responses.

Request -- An object that encapsulates the state of a request.  The
state can be as simple as the URL.  It can also include extra HTTP
headers, e.g. a User-Agent.

BaseHandler --

internals:
BaseHandler and parent
_call_chain conventions

Example usage:

import urllib.request

# set up authentication info
authinfo = urllib.request.HTTPBasicAuthHandler()
authinfo.add_password(realm='PDQ Application',
                      uri='https://mahler:8092/site-updates.py',
                      user='klem',
                      passwd='geheim$parole')

proxy_support = urllib.request.ProxyHandler({"http" : "http://ahad-haam:3128"})

# build a new opener that adds authentication and caching FTP handlers
opener = urllib.request.build_opener(proxy_support, authinfo,
                                     urllib.request.CacheFTPHandler)

# install it
urllib.request.install_opener(opener)

f = urllib.request.urlopen('https://www.python.org/')
N)URLError	HTTPErrorContentTooShortError)urlparseurlspliturljoinunwrapquoteunquote
_splittype
_splithost
_splitport
_splituser_splitpasswd
_splitattr_splitvalue	_splittagunquote_to_bytes
urlunparse)
addinfourladdclosehookTFRequestOpenerDirectorBaseHandlerHTTPDefaultErrorHandlerHTTPRedirectHandlerHTTPCookieProcessorProxyHandlerHTTPPasswordMgrHTTPPasswordMgrWithDefaultRealmHTTPPasswordMgrWithPriorAuthAbstractBasicAuthHandlerHTTPBasicAuthHandlerProxyBasicAuthHandlerAbstractDigestAuthHandlerHTTPDigestAuthHandlerProxyDigestAuthHandlerHTTPHandlerFileHandler
FTPHandlerCacheFTPHandlerDataHandlerUnknownHandlerHTTPErrorProcessorurlopeninstall_openerbuild_openerpathname2urlurl2pathname
getproxiesurlretrieve
urlcleanupz%d.%d:N   Ncontextc                   V'       d   \        VR7      p\        V4      pM\        f   \        4       ;spM\        pVP                  WV4      # )a  Open the URL url, which can be either a string or a Request object.

*data* must be an object specifying additional data to be sent to
the server, or None if no such data is needed.  See Request for
details.

urllib.request module uses HTTP/1.1 and includes a "Connection:close"
header in its HTTP requests.

The optional *timeout* parameter specifies a timeout in seconds for
blocking operations like the connection attempt (if not specified, the
global default timeout setting will be used). This only works for HTTP,
HTTPS and FTP connections.

If *context* is specified, it must be a ssl.SSLContext instance describing
the various SSL options. See HTTPSConnection for more details.


This function always returns an object which can work as a
context manager and has the properties url, headers, and status.
See urllib.response.addinfourl for more detail on these properties.

For HTTP and HTTPS URLs, this function returns a http.client.HTTPResponse
object slightly modified. In addition to the three new methods above, the
msg attribute contains the same information as the reason attribute ---
the reason phrase returned by the server --- instead of the response
headers as it is specified in the documentation for HTTPResponse.

For FTP, file, and data URLs, this function returns a
urllib.response.addinfourl object.

Note that None may be returned if no handler handles the request (though
the default installed global OpenerDirector uses UnknownHandler to ensure
this never happens).

In addition, if proxy settings are detected (for example, when a *_proxy
environment variable like http_proxy is set), ProxyHandler is default
installed and makes sure the requests are handled through the proxy.

r7   )HTTPSHandlerr0   _openeropen)urldatatimeoutr7   https_handleropeners   &&&$  %/usr/lib/python3.14/urllib/request.pyr.   r.      sC    V $W5m,	'>)&;;s'**    c                 
    V s R # N)r;   )rA   s   &rB   r/   r/      s    GrC   c           	        \        V 4      w  rE\        P                  ! \        W4      4      ;_uu_ 4       pVP	                  4       pVR8X  d4   V'       g,   \
        P                  P                  V4      V3uuRRR4       # V'       d   \        VR4      pM8\        P                  ! RR7      pVP                  p\        P                  V4       T;_uu_ 4        W3p	R	p
R
p^ p^ pRV9   d   \        VR,          4      pV'       d
   V! WV4       VP                  V
4      ;p'       dB   V\!        V4      ,          pVP#                  V4       V^,          pV'       g   KO  V! WV4       KZ   RRR4       RRR4       X^ 8  d   XV8  d   \%        RW3,          X	4      hX	#   + '       g   i     L<; i  + '       g   i     LG; i)a+  
Retrieve a URL into a temporary location on disk.

Requires a URL argument. If a filename is passed, it is used as
the temporary file location. The reporthook argument should be
a callable that accepts a block number, a read size, and the
total file size of the URL target. The data argument should be
valid URL encoded data.

If a filename is passed and the URL points to a local resource,
the result is a copy from local file to new file.

Returns a tuple containing the path to the newly created
data file as well as the resulting HTTPMessage object.
fileNwbF)deletecontent-lengthzContent-Lengthz1retrieval incomplete: got only %i out of %i bytesi    )r   
contextlibclosingr.   infoospathnormpathr<   tempfileNamedTemporaryFilename_url_tempfilesappendintreadlenwriter   )r=   filename
reporthookr>   url_typerP   fpheaderstfpresultbssizerX   blocknumblocks   &&&&           rB   r4   r4      st      _NH			GC.	/	/2'') vh77##D)72 
0	/ x&C--U;CxxH!!(+S&FBDDH7*7#3458.772;&%&E
"		% A:xT2 ' ! 
0F qyTD["?l"$ 	$ M1 S! 
0	/sH   F/ F/ F/AF/,F	!F	&1F	F	(F/F,'F//F?	c                     \          F  p  \        P                  ! V 4       K  	  \         R \        '       d   RsR# R#   \         d     KE  i ; i)z0Clean up temporary files from urlretrieve calls.:NNNN)rU   rO   unlinkOSErrorr;   )	temp_files    rB   r5   r5      sJ    #		IIi  $ 	qw   		s   >AAz:\d+$c                    V P                   p\        V4      ^,          pVR8X  d   V P                  RR4      p\        P	                  RV^4      pVP                  4       # )z|Return request-host, as defined by RFC 2965.

Variation from RFC: returned value is lowercased, for convenient
comparison.

 Host)full_urlr   
get_header_cut_port_resublower)requestr=   hosts   &  rB   request_hostrt     sX     

CC=Drz!!&"- Ba(D::<rC   c                   *  a  ] tR tRt o R/ RRR3R lt]R 4       t]P                  R 4       t]P                  R 4       t]R 4       t	]	P                  R	 4       t	]	P                  R
 4       t	R t
R tR tR tR tR tR tR tRR ltR tR tRtV tR# )r   i  NFc                    Wn         / V n        / V n        R V n        W n        R V n        VP                  4        F  w  rxV P                  Wx4       K  	  Vf   \        V 4      pW@n	        WPn
        V'       d	   W`n        R # R # rE   )rm   r_   unredirected_hdrs_datar>   _tunnel_hostitems
add_headerrt   origin_req_hostunverifiablemethod)	selfr=   r>   r_   r|   r}   r~   keyvalues	   &&&&&&&  rB   __init__Request.__init__  ss     !#
	 !--/JCOOC' *"*40O.( K rC   c                    V P                   '       d'   R P                  V P                  V P                   4      # V P                  # )z{}#{})fragmentformat	_full_urlr   s   &rB   rm   Request.full_url1  s.    ===>>$..$--@@~~rC   c                    \        V4      V n        \        V P                  4      w  V n        V n        V P	                  4        R # rE   )r   r   r   r   _parse)r   r=   s   &&rB   rm   r   7  s/      (1$..(A%rC   c                0    R V n         R V n        RV n        R # )Nrk   )r   r   selectorr   s   &rB   rm   r   >  s    rC   c                    V P                   # rE   )rx   r   s   &rB   r>   Request.dataD  s    zzrC   c                    WP                   8w  d3   Wn         V P                  R 4      '       d   V P                  R 4       R# R# R# )Content-lengthN)rx   
has_headerremove_header)r   r>   s   &&rB   r>   r   H  s<    ::J /00""#34 1 rC   c                    R V n         R # rE   )r>   r   s   &rB   r>   r   R  s	    	rC   c                    \        V P                  4      w  V n        pV P                  f   \        RV P                  ,          4      h\        V4      w  V n        V n        V P                  '       d   \        V P                  4      V n        R # R # )Nzunknown url type: %r)	r   r   type
ValueErrorrm   r   rs   r   r
   )r   rests   & rB   r   Request._parseV  sf    $T^^4	4993dmmCDD#-d#3 	4=999		*DI rC   c                @    V P                   e   RMRp\        V RV4      # )z3Return a string indicating the HTTP request method.POSTGETr~   )r>   getattr)r   default_methods   & rB   
get_methodRequest.get_method^  s!    #'99#8etX~66rC   c                    V P                   # rE   )rm   r   s   &rB   get_full_urlRequest.get_full_urlc  s    }}rC   c                    V P                   R 8X  d%   V P                  '       g   V P                  V n        MW n         V P                  V n        Wn        R# )httpsN)r   ry   rs   rm   r   )r   rs   r   s   &&&rB   	set_proxyRequest.set_proxyf  s:    99(9(9(9 $		DI MMDM	rC   c                4    V P                   V P                  8H  # rE   )r   rm   r   s   &rB   	has_proxyRequest.has_proxyn  s    }}--rC   c                >    W P                   VP                  4       &   R # rE   )r_   
capitalizer   r   vals   &&&rB   r{   Request.add_headerq  s    ),S^^%&rC   c                >    W P                   VP                  4       &   R # rE   )rw   r   r   s   &&&rB   add_unredirected_headerRequest.add_unredirected_headeru  s    36s~~/0rC   c                J    WP                   9   ;'       g    WP                  9   # rE   )r_   rw   r   header_names   &&rB   r   Request.has_headery  s'    ||+ 6 6555	7rC   c                l    V P                   P                  VV P                  P                  W4      4      # rE   )r_   getrw   )r   r   defaults   &&&rB   rn   Request.get_header}  s0    ||""&&{<> 	>rC   c                v    V P                   P                  VR 4       V P                  P                  VR 4       R # rE   )r_   poprw   r   s   &&rB   r   Request.remove_header  s,    d+"";5rC   c                h    / V P                   CV P                  Cp\        VP                  4       4      # rE   )rw   r_   listrz   )r   hdrss   & rB   header_itemsRequest.header_items  s,    9$((9DLL9DJJL!!rC   )rx   r   ry   r>   r   rm   r_   rs   r~   r|   r   r   rw   r}   rE   )__name__
__module____qualname____firstlineno__r   propertyrm   setterdeleterr>   r   r   r   r   r   r{   r   r   rn   r   r   __static_attributes____classdictcell____classdict__s   @rB   r   r     s     !%r!%E!$  
 __   
   
[[5 5 
\\ +7
.-77>
6" "rC   c                   j   a  ] tR tRt o R tR tR tR tR]P                  3R lt
RR ltR	 tR
tV tR# )r   i  c                z    R \         ,          pRV3.V n        . V n        / V n        / V n        / V n        / V n        R# )zPython-urllib/%sz
User-agentN)__version__
addheadershandlershandle_openhandle_errorprocess_responseprocess_request)r   client_versions   & rB   r   OpenerDirector.__init__  sB    +k9(.9: "!rC   c                |   \        VR 4      '       g   \        R\        V4      ,          4      hRp\        V4       EF.  pVR
9   d   K  VP	                  R4      pVRV pW4^,           R pVP                  R4      '       db   VP	                  R4      V,           ^,           pW7^,           R p \        V4      pV P                  P                  V/ 4      p	WP                  V&   MDVR8X  d   TpV P                  p	M.VR8X  d   TpV P                  p	MVR8X  d   TpV P                  p	MK  V	P                  V. 4      p
V
'       d   \        P                  ! W4       MV
P!                  V4       R	pEK1  	  V'       d5   \        P                  ! V P"                  V4       VP%                  V 4       R# R#   \         d     ELi ; i)
add_parentz%expected BaseHandler instance, got %rF_Nerrorr<   responserr   T)redirect_requestdo_open
proxy_open)hasattr	TypeErrorr   dirfind
startswithrW   r   r   r   r   r   r   
setdefaultbisectinsortrV   r   r   )r   handleraddedmethiprotocol	conditionjkindlookupr   s   &&         rB   add_handlerOpenerDirector.add_handler  s   w--C M* + + LDDD		#ABQxHqST
I##G,,NN3'!+a/aCDzt9D **..x<.4!!(+f$))j(..i'--((r2Hh0(EG !J MM$--1t$ / " s   +F,,F;:F;c                    R # rE    r   s   &rB   closeOpenerDirector.close      rC   c                n    VP                  VR4      pV F  p\        Wc4      pV! V!  pVf   K  Vu # 	  R # )Nr   )r   r   )	r   chainr   	meth_nameargsr   r   funcra   s	   &&&&*    rB   _call_chainOpenerDirector._call_chain  s<     99T2&G7.D4[F!	  rC   Nc                0   \        V\        4      '       d   \        W4      pMTpVe   W$n        W4n        VP
                  pVR,           pV P                  P                  V. 4       F  p\        Wv4      pV! V4      pK  	  \        P                  ! RVP                  VP                  VP                  VP                  4       4       V P                  WB4      p	VR,           pV P                  P                  V. 4       F  p\        Wv4      pV! WI4      p	K  	  V	# )N_requestzurllib.Request	_response)
isinstancestrr   r>   r?   r   r   r   r   sysauditrm   r_   r   _openr   )
r   fullurlr>   r?   reqr   r   	processorr   r   s
   &&&&      rB   r<   OpenerDirector.open  s    gs##'(CC88 Z'	--11(B?I90Ds)C @ 			"CLL#((CKKIYZ::c( [(	..228R@I90DC*H A rC   c                   V P                  V P                  R RV4      pV'       d   V# VP                  pV P                  V P                  WDR,           V4      pV'       d   V# V P                  V P                  RRV4      # )r   default_openr  unknownunknown_open)r   r   r   )r   r	  r>   ra   r   s   &&&  rB   r  OpenerDirector._open  s    !!$"2"2I"0#7M88!!$"2"2H")?*+.0M 0 0) .5 	5rC   c                (   VR9   d+   V P                   R ,          pV^,          pRV,          p^pTpMV P                   pVR,           p^ pW1V3V,           pV P                  ! V!  pV'       d   V# V'       d   VRR3X,           pV P                  ! V!  # R# )httpzhttp_error_%s_errorr   http_error_defaultN)r  r   )r   r   )r   protor   dictr   http_err	orig_argsra   s   &&*     rB   r   OpenerDirector.error   s    %%$$V,DGE'%/IHI$$D(IHY'$.!!4(M)%9:YFD##T** rC   )r   r   r   r   r   r   rE   )r   r   r   r   r   r   r   r   socket_GLOBAL_DEFAULT_TIMEOUTr<   r  r   r   r   r   s   @rB   r   r     s;     	"-%^	 "&v/M/M :5+ +rC   c            	        \        4       p\        \        \        \        \
        \        \        \        \        .	p\        \        P                  R4      '       d   VP                  \        4       \        4       pV Fl  pV  Fc  p\!        V\"        4      '       d'   \%        WT4      '       d   VP'                  V4       K=  K?  \!        WT4      '       g   KR  VP'                  V4       Ke  	  Kn  	  V F  pVP)                  V4       K  	  V F  pVP+                  V! 4       4       K  	  V  F1  p\!        V\"        4      '       d   V! 4       pVP+                  V4       K3  	  V# )a  Create an opener object from a list of handlers.

The opener will use several default handlers, including support
for HTTP, FTP and when applicable HTTPS.

If any of the handlers passed as arguments are subclasses of the
default handlers, the default handlers will not be used.
HTTPSConnection)r   r   r,   r'   r   r   r)   r(   r-   r+   r   r  clientrV   r:   setr  r   
issubclassaddremover   )r   rA   default_classesskipklasscheckhs   *      rB   r0   r0     s    F#^[.0C!;0B"$O t{{-..|,5D E%&&e++HHUO ,E))  ! u%  !57# ! aA1  MrC   c                   6   a  ] tR tRt o RtR tR tR tRtV t	R# )r   i=  i  c                    Wn         R # rE   parent)r   r+  s   &&rB   r   BaseHandler.add_parent@  s    rC   c                    R # rE   r   r   s   &rB   r   BaseHandler.closeC  r   rC   c                \    \        VR 4      '       g   R# V P                  VP                  8  # )handler_orderT)r   r0  )r   others   &&rB   __lt__BaseHandler.__lt__G  s+    uo.. !!E$7$777rC   r*  N)
r   r   r   r   r0  r   r   r2  r   r   r   s   @rB   r   r   =  s     M8 8rC   c                   2   a  ] tR tRt o RtRtR t]tRtV t	R# )r-   iP  zProcess HTTP error responses.i  c                    VP                   VP                  VP                  4       rTp^Tu;8:  d   R8  g!   M V P                  P	                  RWW4V4      pV# )   ,  r  )codemsgrN   r+  r   )r   rr   r   r8  r9  r   s   &&&   rB   http_response HTTPErrorProcessor.http_responseT  sN    "--x}}4 t!c!{{((4d<H rC   r   N)
r   r   r   r   __doc__r0  r:  https_responser   r   r   s   @rB   r-   r-   P  s     'M	 #NrC   c                   &   a  ] tR tRt o R tRtV tR# )r   ia  c                0    \        VP                  W4WR4      hrE   )r   rm   )r   r	  r^   r8  r9  r   s   &&&&&&rB   r  *HTTPDefaultErrorHandler.http_error_defaultb  s    d::rC   r   N)r   r   r   r   r  r   r   r   s   @rB   r   r   a  s     ; ;rC   c                   H   a  ] tR tRt o ^t^
tR tR t];t;t	;t
tRtRtV tR# )r   ie  c                   VP                  4       pVR9   d   VR	9   g&   VR
9   d   VR8X  g   \        VP                  W4WR4      hVP                  RR4      pRpVP                  P                  4        U	U
u/ uF  w  rV	P                  4       V9  g   K  WbK   	  pp	p
\        TVR8X  d   RMRVVP                  RR7      # u up
p	i )au  Return a Request or None in response to a redirect.

This is called by the http_error_30x methods when a
redirection response is received.  If a redirection should
take place, return a new Request to allow http_error_30x to
perform the redirect.  Otherwise, raise HTTPError if no-one
else should try to handle this url.  Return None if you can't
but another Handler might.
r   HEADr    z%20T)r~   r_   r|   r}   )-  .  /  i3  i4  )r   rC  )rE  rF  rG  )rJ   zcontent-type)	r   r   rm   replacer_   rz   rq   r   r|   )r   r	  r^   r8  r9  r_   newurlmCONTENT_HEADERSkv
newheaderss   &&&&&&&     rB   r   $HTTPRedirectHandler.redirect_requestm  s     NN22qO7K&1;CLL$WAA U+<'*{{'8'8': ;':tq/9 ad':
 ;v()Vf)'*':':$(	* 	*;s   5B?B?c                   R V9   d   VR ,          pMRV9   d   VR,          pMR# \        V4      pVP                  R
9  d   \        WcV: RV: R2WR4      hVP                  '       g#   VP                  '       d   \        V4      pRV^&   \        V4      p\        VR\        P                  R7      p\        VP                  V4      pV P                  WW4WV4      pVf   R# \        VR4      '       dx   VP                  ;qn        V	P                  V^ 4      V P                   8  g   \#        V	4      V P$                  8  d*   \        VP                  VV P&                  V,           WR4      hM/ ;p	;Vn        Vn        V	P                  V^ 4      ^,           W&   VP)                  4        VP+                  4        V P,                  P/                  WP0                  R	7      # )locationuriNz - Redirection to url 'z' is not allowed/z
iso-8859-1)encodingsaferedirect_dictr?   )r  r   ftprk   )r   schemer   rP   netlocr   r   r	   stringpunctuationr   rm   r   r   rV  r   max_repeatsrY   max_redirectionsinf_msgrX   r   r+  r<   r?   )
r   r	  r^   r8  r9  r_   rI  urlpartsnewvisiteds
   &&&&&&    rB   http_error_302"HTTPRedirectHandler.http_error_302  s     Z(FgU^F F#
 ??">>ADfM 
 }}}H~HHQKH%
 \0B0BDv.
 ##CTH; 3((*-*;*;;G'FA&$*:*::G 5 55d $s 2GA A 6 ?A@G@c'#*;!++fa014 		

{{[[99rC   zoThe HTTP server returned a redirect error that would lead to an infinite loop.
The last 30x error message was:
r   N)r   r   r   r   r]  r^  r   rc  http_error_301http_error_303http_error_307http_error_308r_  r   r   r   s   @rB   r   r   e  s?      K !*N::x IWVNV^Vn~2GrC   c                   \        V 4      w  rVP                  R4      '       g   RpT pMtVP                  R4      '       g   \        RV ,          4      hRV9   d%   VP                  R4      pVP                  RV4      pMVP                  R^4      pVR8X  d   RpV^V p\	        V4      w  rgVe   \        V4      w  rMR;rWW3# )zReturn (scheme, user, password, host/port) given a URL or an authority.

If a URL is supplied, it must have an authority (host:port) component.
According to RFC 3986, having an authority component means the URL must
have two slashes after the scheme.
rS  N//zproxy URL with no authority: %r@rK   )r   r   r   r   r   r   )
proxyrY  r_scheme	authorityhost_separatorenduserinfohostportuserpasswords
   &         rB   _parse_proxyru    s     "%(Fs##	 ""4((>FGG (?%]]3/N--^4C--Q'C"9CQsO	#I.H%h/h++rC   c                   4   a  ] tR tRt o ^dtRR ltR tRtV tR# )r   i  Nc                    Vf   \        4       p\        VR4      '       g   Q R4       hWn        VP                  4        F8  w  r#VP	                  4       p\        V RV,          W2V P                  3R l4       K:  	  R # )Nkeyszproxies must be a mappingz%s_openc                     V! WV4      # rE   r   )rrl  r   r   s   &&&&rB   <lambda>'ProxyHandler.__init__.<locals>.<lambda>  s    Qt,rC   )r3   r   proxiesrz   rq   setattrr   )r   r}  r   r=   s   &&  rB   r   ProxyHandler.__init__  sh    ? lGw''D)DD' ID::<DD)d*$' -. )rC   c                0   VP                   p\        V4      w  rVrxVf   TpVP                  '       d   \        VP                  4      '       d   R # V'       dp   V'       dh   \	        V4      : R\	        V4      : 2p	\
        P                  ! V	P                  4       4      P                  R4      p
VP                  RRV
,           4       \	        V4      pVP                  W4       WE8X  g   VR8X  d   R # V P                  P                  WP                  R7      # )N:asciiProxy-authorizationBasic r   rW  )r   ru  rs   proxy_bypassr
   base64	b64encodeencodedecoder{   r   r+  r<   r?   )r   r	  rl  r   	orig_type
proxy_typers  rt  rr  	user_passcredss   &&&&       rB   r   ProxyHandler.proxy_open  s    HH	/;E/B,
("J888SXX..H#*4=#*8#46I$$Y%5%5%78??HENN0(U2BC8$h+"i7&: ;;##C#==rC   )r}  rE   )	r   r   r   r   r0  r   r   r   r   r   s   @rB   r   r     s     M	.> >rC   c                   B   a  ] tR tRt o R tR tR tR	R ltR tRt	V t
R# )
r   i#  c                    / V n         R # rE   passwdr   s   &rB   r   HTTPPasswordMgr.__init__%  s	    rC   c                $  a a \        V\        4      '       d   V.pVS P                  9  d   / S P                  V&   R FN  o\        ;QJ d    . VV 3R lV 4       F  NK  	  5M! VV 3R lV 4       4      pW43S P                  V,          V&   KP  	  R# )Tc              3   H   <"   T F  pSP                  VS4      x  K  	  R # 5irE   )
reduce_uri).0udefault_portr   s   & rB   	<genexpr>/HTTPPasswordMgr.add_password.<locals>.<genexpr>/  s"       ?:=Q<00#s   "NTF)r  r  r  tuple)r   realmrR  rs  r  reduced_urir  s   f&&&& @rB   add_passwordHTTPPasswordMgr.add_password(  sz    c3%C#!#DKK'L%  ?:= ?%%  ?:= ? ?K/3nDKK{+ (rC   c                    V P                   P                  V/ 4      pR FU  pV P                  W$4      pVP                  4        F-  w  rgV F"  pV P	                  W4      '       g   K  Vu u u # 	  K/  	  KW  	  R# )Tr  )NN)r  r   r  rz   	is_suburi)	r   r  authuridomainsr  reduced_authuriurisauthinforR  s	   &&&      rB   find_user_password"HTTPPasswordMgr.find_user_password3  sf    ++//%,'L"oogDO")--/C~~c;;'   #2 ( rC   c                   \        V4      pV^,          '       d'   V^ ,          pV^,          pV^,          ;'       g    RpMRpTpRp\        V4      w  rxV'       d,   Vf(   Ve$   R^PRR/P                  V4      p	V	e   RWy3,          pWV3# )z@Accept authority or URI and extract only the authority and path.rS  Nr  r   i  z%s:%d)r   r   r   )
r   rR  r  partsrY  rn  rP   rs   portdports
   &&&       rB   r  HTTPPasswordMgr.reduce_uri=  s     881XFaI8??sD FID	*
DLV-?Rcs6{   #tm3	rC   c                    W8X  d   R# V^ ,          V^ ,          8w  d   R# V^,          pVRR R8w  d
   VR,          pV^,          P                  V4      # )zSCheck if test is below base in a URI tree

Both args must be URIs in reduced form.
TFNrS  rK   )r   )r   basetestprefixs   &&& rB   r  HTTPPasswordMgr.is_suburiT  sT    
 <7d1ga"#;#cMFAw!!&))rC   r  N)T)r   r   r   r   r   r  r  r  r  r   r   r   s   @rB   r   r   #  s#     	=.* *rC   c                   &   a  ] tR tRt o R tRtV tR# )r   ic  c                n    \         P                  WV4      w  r4Ve   W43# \         P                  V R V4      # rE   )r   r  )r   r  r  rs  rt  s   &&&  rB   r  2HTTPPasswordMgrWithDefaultRealm.find_user_passworde  s=    (;;D<CE>!11$gFFrC   r   N)r   r   r   r   r  r   r   r   s   @rB   r   r   c  s     G GrC   c                   R   a a ] tR tRt oV 3R ltRV 3R lltRR ltR tRtVt	V ;t
# )r    im  c                2   < / V n         \        SV `	  4        R # rE   )authenticatedsuperr   )r   	__class__s   &rB   r   %HTTPPasswordMgrWithPriorAuth.__init__o  s    rC   c                t   < V P                  W%4       Ve   \        SV `	  R W#V4       \        SV `	  WW44       R # rE   )update_authenticatedr  r  )r   r  rR  rs  r  is_authenticatedr  s   &&&&&&rB   r  )HTTPPasswordMgrWithPriorAuth.add_passwords  s7    !!#8G s&9U6rC   c                    \        V\        4      '       d   V.pR F+  pV F"  pV P                  WC4      pW P                  V&   K$  	  K-  	  R# TNr  )r  r  r  r  )r   rR  r  r  r  r  s   &&&   rB   r  1HTTPPasswordMgrWithPriorAuth.update_authenticatedz  sF    c3%C'L"ooa>2B"";/  (rC   c                    R FU  pV P                  W4      pV P                   F1  pV P                  WC4      '       g   K  V P                  V,          u u # 	  KW  	  R# r  )r  r  r  )r   r  r  r  rR  s   &&   rB   r  -HTTPPasswordMgrWithPriorAuth.is_authenticated  sJ    'L"oogDO))>>#77--c22 * (rC   )r  )F)r   r   r   r   r   r  r  r  r   r   __classcell__)r  r   s   @@rB   r    r    m  s     7C3 3rC   c                      a  ] tR tRt o ]P
                  ! R]P                  4      tRR ltR t	R t
R tR tR	 t]t]tR
tV tR# )r!   i  z1(?:^|,)[ 	]*([^ 	,]+)[ 	]+realm=(["']?)([^"']*)\2Nc                d    Vf   \        4       pWn        V P                  P                  V n        R # rE   )r   r  r  )r   password_mgrs   &&rB   r   !AbstractBasicAuthHandler.__init__  s'    *,L" KK44rC   c              #  :  "   R p\         P                  P                  V4       F?  pVP                  4       w  rEpVR9  d   ^ RIpVP                  R\        ^4       WF3x  RpKA  	  V'       g+   V'       d   VP                  4       ^ ,          pMRpVR3x  R# R# 5i)FNzBasic Auth Realm was unquotedTrk   )"')r!   rxfinditergroupswarningswarnUserWarningsplit)r   headerfound_challengemorY  r	   r  r  s   &&      rB   _parse_realm%AbstractBasicAuthHandler._parse_realm  s     *--66v>B#%99; F5J&=)1. /!"O ? *4.  s   A,B/B7$Bc                   VP                  V4      pV'       g   R # R pV FP  pV P                  V4       F8  w  rxVP                  4       R8w  d   TpK  Vf   K$  V P                  W#V4      u u # 	  KR  	  Ve   \	        RX: 24      hR # )Nbasicz@AbstractBasicAuthHandler does not support the following scheme: )get_allr  rq   retry_http_basic_authr   )	r   authreqrs   r	  r_   unsupportedr  rY  r  s	   &&&&&    rB   http_error_auth_reqed.AbstractBasicAuthHandler.http_error_auth_reqed  s     //'*F!%!2!26!:<<>W,"(K$  55dGG ";  " &) * * #rC   c                   V P                   P                  W14      w  rEVe   V: RV: 2pR\        P                  ! VP	                  4       4      P                  R4      ,           pVP                  V P                  R 4      V8X  d   R # VP                  V P                  V4       V P                  P                  W"P                  R7      # R # )Nr  r  r  rW  )r  r  r  r  r  r  rn   auth_headerr   r+  r<   r?   )r   rs   r	  r  rs  pwrawauths   &&&&    rB   r  .AbstractBasicAuthHandler.retry_http_basic_auth  s    ;;11%>>!2&Cf..szz|<CCGLLD~~d..5=''(8(8$?;;##C#==rC   c                   \        V P                  R 4      '       d,   V P                  P                  VP                  4      '       g   V# VP	                  R4      '       g   V P                  P                  RVP                  4      w  r#RP                  W#4      P                  4       p\        P                  ! V4      P                  4       pVP                  RRP                  VP                  4       4      4       V# )r  AuthorizationNz{0}:{1}zBasic {})r   r  r  rm   r   r  r   r  r  standard_b64encoder  r   strip)r   r	  rs  r  credentialsauth_strs   &&    rB   http_request%AbstractBasicAuthHandler.http_request  s    %788{{++CLL99J~~o..;;99$MLD#**48??AK00=DDFH''(2(9(9(..:J(KM
rC   c                   \        V P                  R 4      '       dk   ^VP                  u;8:  d   R8  d,   M M(V P                  P                  VP                  R4       V# V P                  P                  VP                  R4       V# )r  r7  TF)r   r  r8  r  rm   )r   r	  r   s   &&&rB   r:  &AbstractBasicAuthHandler.http_response  sc    4;; 233hmm)c)00tD  00uErC   )r  r  rE   )r   r   r   r   recompileIr  r   r  r  r  r  r:  https_requestr=  r   r   r   s   @rB   r!   r!     sM      
 1 DD
B5!**4
 !M"NrC   c                   *   a  ] tR tRt o RtR tRtV tR# )r"   i  r  c                D    VP                   pV P                  R WaV4      pV# )www-authenticate)rm   r  )r   r	  r^   r8  r9  r_   r=   r   s   &&&&&&  rB   http_error_401#HTTPBasicAuthHandler.http_error_401   s(    ll--.@*-G=rC   r   N)r   r   r   r   r  r  r   r   r   s   @rB   r"   r"     s     !K rC   c                   *   a  ] tR tRt o RtR tRtV tR# )r#   i  r  c                D    VP                   pV P                  R WaV4      pV# zproxy-authenticate)rs   r  )r   r	  r^   r8  r9  r_   rn  r   s   &&&&&&  rB   http_error_407$ProxyBasicAuthHandler.http_error_407  s+    
 HH	--.B*3'CrC   r   N)r   r   r   r   r  r  r   r   r   s   @rB   r#   r#     s     'K rC   c                   T   a  ] tR tRt o RR ltR tR tR tR tR t	R	 t
R
 tRtV tR# )r$   i  Nc                    Vf   \        4       pWn        V P                  P                  V n        ^ V n        ^ V n        R V n        R # rE   )r   r  r  retriednonce_count
last_nonce)r   r  s   &&rB   r   "AbstractDigestAuthHandler.__init__%  s<    >$&F KK44rC   c                    ^ V n         R#     N)r  r   s   &rB   reset_retry_count+AbstractDigestAuthHandler.reset_retry_count.  s	    rC   c                   VP                  VR 4      pV P                  ^8  d   \        VP                  RRVR 4      hV ;P                  ^,          un        V'       dg   VP	                  4       ^ ,          pVP                  4       R8X  d   V P                  W54      # VP                  4       R8w  d   \        RV,          4      hR # R # )Ni  zdigest auth faileddigestr  zEAbstractDigestAuthHandler does not support the following scheme: '%s')r   r  r   rm   r  rq   retry_http_digest_authr   )r   r  rs   r	  r_   r  rY  s   &&&&&  rB   r  /AbstractDigestAuthHandler.http_error_auth_reqed1  s    ++k40<<! CLL#/C#T+ + LLAL]]_Q'F||~)223@@7*  "?AG"H I I +	 rC   c                   VP                  R ^4      w  r4\        \        R\        V4      4      4      pV P	                  W4      pV'       d{   RV,          pVP
                  P                  V P                  R4      V8X  d   R# VP                  V P                  V4       V P                  P                  WP                  R7      pV# R# )rD  Nz	Digest %srW  )r  parse_keqv_listfilterparse_http_listget_authorizationr_   r   r  r   r+  r<   r?   )r   r	  r  token	challengechalauth_valresps   &&&     rB   r  0AbstractDigestAuthHandler.retry_http_digest_authE  s    ::c1-vdOI,FGH%%c0"T)H{{t//6(B''(8(8(C;;##C#=DK rC   c                    V P                   : R V: R \        P                  ! 4       : R 2pVP                  R4      \	        ^4      ,           p\
        P                  ! V4      P                  4       pVR,          # )r  r  :N   N)r  timectimer  _randombyteshashlibsha1	hexdigest)r   noncesbdigs   &&   rB   
get_cnonce$AbstractDigestAuthHandler.get_cnonceQ  sR      ++UDJJLAHHWQ/ll1o'')3xrC   c                    VR ,          pVR,          pVP                  R4      pVP                  RR4      pVP                  RR4      pT P                  T4      w  rTf   R# T P                  P	                  Y1P
                  4      w  rT
f   R# TP                  e   T P                  TP                  T4      pMRpT
: RT: RT: 2pTP                  4       : RTP                  : 2pTf   T	! T! T4      T: RT! T4      : 24      pMRTP                  R	4      9   d   Y@P                  8X  d   T ;P                  ^,          un        M^T n        Y@n        R
T P                  ,          pT P                  T4      pT: RT: RT: RR: RT! T4      : 2	pT	! T! T4      T4      pM\        RT,          4      hRT
: RT: RT: RTP                  : RT: R2pT'       d   TRT,          ,          pT'       d   TRT,          ,          pTRT,          ,          pT'       d   TRX: RX: R2,          pT#   \         d     R# i ; i)r  r#  qop	algorithmMD5opaqueNr  r  ,z%08xzqop '%s' is not supported.z
username="z
", realm="z
", nonce="z", uri="z", response="r  z, opaque="%s"z, digest="%s"z, algorithm="%s"z, qop=auth, nc=z
, cnonce=")r   KeyErrorget_algorithm_implsr  r  rm   r>   get_entity_digestr   r   r  r  r  r'  r   )r   r	  r  r  r#  r*  r+  r-  HKDrs  r  entdigA1A2respdigncvaluecnoncenoncebitr  s   &&&                 rB   r  +AbstractDigestAuthHandler.get_authorization\  s   		MEME((5/Ce4I XXh-F ((39;;11%F< 88++CHHd;FF+(&
 ;25!B% 89Gsyy~%'  A% #$ "'t///G__U+F+0'661R5QH2)G 7#=>>
 #'ucll")+ Of,,DOf,,D"Y..HHDg  		s   AH6 6IIc                ~   a VR 8X  d   R oM(VR8X  d   R oMVR8X  d   R oM\        RV,          4      hV3R lpSV3# )r,  c                 h    \         P                  ! V P                  R 4      4      P                  4       # r  )r   md5r  r"  xs   &rB   r{  ?AbstractDigestAuthHandler.get_algorithm_impls.<locals>.<lambda>  s    '++ahhw&78BBDrC   SHAc                 h    \         P                  ! V P                  R 4      4      P                  4       # r>  )r   r!  r  r"  r@  s   &rB   r{  rB    s    ',,qxx'89CCErC   zSHA-256c                 h    \         P                  ! V P                  R 4      4      P                  4       # r>  )r   sha256r  r"  r@  s   &rB   r{  rB    s    '..'):;EEGrC   z.Unsupported digest authentication algorithm %rc                 "   < S! V : R V: 24      # )r  r   )r$  dr2  s   &&rB   r{  rB    s    !q!,-rC   )r   )r   r+  r3  r2  s   && @rB   r0  -AbstractDigestAuthHandler.get_algorithm_impls  sV     DA%EA)#GA  ,.78 9 9-"urC   c                    R # rE   r   )r   r>   r  s   &&&rB   r1  +AbstractDigestAuthHandler.get_entity_digest  s    rC   )r  r  r  r  r  rE   )r   r   r   r   r   r
  r  r  r'  r  r0  r1  r   r   r   s   @rB   r$   r$     s4     I(
	<|  rC   c                   2   a  ] tR tRt o RtRtRtR tRtV t	R# )r%   i  zAn authentication protocol defined by RFC 2069

Digest authentication improves on basic authentication because it
does not transmit passwords in the clear.
r    c                    \        VP                  4      ^,          pV P                  RWaV4      pV P                  4        V# )   r  )r   rm   r  r
  r   r	  r^   r8  r9  r_   rs   retrys   &&&&&&  rB   r  $HTTPDigestAuthHandler.http_error_401  s>    %a(**+=+/g? rC   r   N)
r   r   r   r   r<  r  r0  r  r   r   r   s   @rB   r%   r%     s       "KM rC   c                   .   a  ] tR tRt o RtRtR tRtV tR# )r&   i  Proxy-AuthorizationrM  c                d    VP                   pV P                  R WaV4      pV P                  4        V# r  )rs   r  r
  rP  s   &&&&&&  rB   r  %ProxyDigestAuthHandler.http_error_407  s4    xx**+?+/g? rC   r   N)	r   r   r   r   r  r0  r  r   r   r   s   @rB   r&   r&     s     'KM rC   c                   B   a  ] tR tRt o R	R ltR tR tR tR tRt	V t
R# )
AbstractHTTPHandleri  Nc                p    Ve	   Wn        R # \         P                  P                  P                  V n        R # rE   )r  r  HTTPConnection
debuglevel_debuglevel)r   r[  s   &&rB   r   AbstractHTTPHandler.__init__  s$    )3)?:T[[E_E_EjEjrC   c                    Wn         R # rE   r\  )r   levels   &&rB   set_http_debuglevel'AbstractHTTPHandler.set_http_debuglevel  s     rC   c                    \         P                  P                  P                  VP                  VP                  4       4      # rE   )r  r  rZ  _get_content_lengthr>   r   r   rr   s   &&rB   rd  'AbstractHTTPHandler._get_content_length  s2    {{))==LL " 	"rC   c                n   VP                   pV'       g   \        R 4      hVP                  e   VP                  p\        V\        4      '       d   Rp\        V4      hVP                  R4      '       g   VP                  RR4       VP                  R4      '       g[   VP                  R4      '       gD   V P                  V4      pVe   VP                  R\	        V4      4       MVP                  RR4       TpVP                  4       '       d%   \        VP                  4      w  rx\        V4      w  riVP                  R4      '       g   VP                  RV4       V P                  P                   F?  w  rV
P                  4       p
VP                  V
4      '       d   K.  VP                  W4       KA  	  V# )no host givenz\POST data should be bytes, an iterable of bytes, or a file object. It cannot be of type str.zContent-typez!application/x-www-form-urlencodedr   Transfer-encodingchunkedrl   )rs   r   r>   r  r  r   r   r   rd  r   r   r   r   r+  r   r   )r   rr   rs   r>   r9  content_lengthsel_hostrY  selsel_pathrT   r   s   &&          rB   do_request_AbstractHTTPHandler.do_request_  sw   ||?++<<#<<D$$$Dn$%%n55//"79 &&'788#../BCC!%!9!9'!B!-33,c..AC 33/< $W%5%56KF!+CH!!&))++FH=;;11KD??$D%%d++//< 2
 rC   c           	     4   VP                   pV'       g   \        R4      hV! V3RVP                  /VB pVP                  V P                  4       \        VP                  4      pTP                  VP                  P                  4        UUu/ uF  w  rxWv9  g   K  WxbK  	  upp4       RVR&   VP                  4        U	U
u/ uF  w  rV	P                  4       V
bK  	  pp	p
VP                  '       d4   / pRpW9   d   Wl,          W&   Wl VP                  VP                  VR7         VP                  VP                  4       VP                  VP                   VVP#                  R4      R7       TP'                  4       pTP*                  '       d"   TP*                  P)                  4        R	Tn        TP-                  4       Tn        TP0                  Tn        T# u uppi u up
p	i   \$         d   p\        T4      hR	p?ii ; i   TP)                  4        h ; i)
zReturn an HTTPResponse object for the request, using http_class.

http_class must implement the HTTPConnection API from http.client.
rh  r?   r   
ConnectionrT  )r_   ri  )encode_chunkedN)rs   r   r?   set_debuglevelr\  r  rw   updater_   rz   titlery   
set_tunnelrr   r   r   r>   r   rh   getresponser   sockr   r=   reasonr9  )r   
http_classr	  http_conn_argsrs   r'  r_   rL  rM  rT   r   tunnel_headersproxy_auth_hdrerrrz  s   &&&,           rB   r   AbstractHTTPHandler.do_open   s   
 xx?++ tCS[[CNC	))*s,,-):):)< -)<+ )< - 	. !(6=mmoFo4::<$oFN2N(181H. +LL))>LB		$		#..*CLL#((G),8K)L  N A 666FFLLNAF  " e- G   $sm#$	GGIs=   
G
G
G (AG& /H &H1G<<HH Hr_  rE   )r   r   r   r   r   ra  rd  ro  r   r   r   r   s   @rB   rX  rX    s'     k!"
$L@ @rC   rX  c                   >   a  ] tR tRt o R t]P                  tRtV t	R# )r'   iC  c                V    V P                  \        P                  P                  V4      # rE   )r   r  r  rZ  r   r	  s   &&rB   	http_openHTTPHandler.http_openE  s    ||DKK66<<rC   r   N)
r   r   r   r   r  rX  ro  r  r   r   r   s   @rB   r'   r'   C  s     = '22LrC   r  c                   H   a  ] tR tRt o RR ltR t]P                  tRt	V t
R# )r:   iL  Nc                2   Ve   TM#\         P                  P                  P                  p\        P                  W4       VfD   \         P                  P                  P                  p\         P                  P                  V4      pVe   W2n        W n	        R # rE   )
r  r  r  r[  rX  r   	_http_vsn_create_https_contextcheck_hostname_context)r   r[  r7   r  http_versions   &&&& rB   r   HTTPSHandler.__init__N  sk    '1'=4;;C^C^CiCiJ((:#{{::DD++;;LI))7&#MrC   c                n    V P                  \        P                  P                  VV P                  R 7      # )r9   )r   r  r  r  r  r  s   &&rB   
https_openHTTPSHandler.https_openX  s-    << ; ;S(,   7 7rC   )r  NNN)r   r   r   r   r   r  rX  ro  r  r   r   r   s   @rB   r:   r:   L  s     	$	7 ,77rC   r:   c                   >   a  ] tR tRt o RR ltR tR t]t]tRt	V t
R# )r   i`  Nc                V    ^ RI pVf   VP                  P                  4       pWn        R# r  )http.cookiejar	cookiejar	CookieJar)r   r  r  s   && rB   r   HTTPCookieProcessor.__init__a  s"    002I"rC   c                <    V P                   P                  V4       V# rE   )r  add_cookie_headerre  s   &&rB   r   HTTPCookieProcessor.http_requestg  s    ((1rC   c                <    V P                   P                  W!4       V# rE   )r  extract_cookies)r   rr   r   s   &&&rB   r:  !HTTPCookieProcessor.http_responsek  s    &&x9rC   )r  rE   )r   r   r   r   r   r  r:  r  r=  r   r   r   s   @rB   r   r   `  s      # !M"NrC   c                   &   a  ] tR tRt o R tRtV tR# )r,   ir  c                >    VP                   p\        R V,          4      h)zunknown url type: %s)r   r   )r   r	  r   s   && rB   r  UnknownHandler.unknown_opens  s    xx-455rC   r   N)r   r   r   r   r  r   r   r   s   @rB   r,   r,   r  s     6 6rC   c                    / pV  F<  pVP                  R^4      w  r4V^ ,          R8X  d   VR,          R8X  d   V^R pWAV&   K>  	  V# )z>Parse list of key=value strings where keys are not duplicated.=r  rK   )r  )lparsedeltrL  rM  s   &    rB   r  r  w  sQ    Fyya Q43;1R5C<!BAq		 
 MrC   c                j   . pRpR;r4V  Fj  pV'       d   W%,          pRpK  V'       d   VR8X  d   RpK*  VR8X  d   RpW%,          pK=  VR8X  d   VP                  V4       RpKY  VR8X  d   RpW%,          pKl  	  V'       d   VP                  V4       V Uu. uF  q"P                  4       NK  	  up# u upi )aX  Parse lists as described by RFC 2068 Section 2.

In particular, parse comma-separated lists where the elements of
the list may include quoted-strings.  A quoted-string could
contain a comma.  A non-quoted string could have quotes in the
middle.  Neither commas nor quotes count if they are escaped.
Only double-quotes count, not single-quotes.
rk   F\Tr  r.  )rV   r  )r$  respartescaper	   curs   &     rB   r  r    s     CDFKDFd{KD#:JJtD#:E- 2 

4%()STJJLS)))s   B0c                   4   a  ] tR tRt o RtR tR t]tRtV t	R# )r(   i  Nc                   \         P                  fv    \        \        P                  ! R4      ^,          \        P                  ! \        P
                  ! 4       4      ^,          ,           4      \         n        \         P                  # \         P                  #   \        P                   d3    \        P                  ! R4      3\         n         \         P                  # i ; i)N	localhost)r(   namesr  r  gethostbyname_exgethostnamegaierrorgethostbynamer   s   &rB   	get_namesFileHandler.get_names  s    $I$)++K8;++F,>,>,@A!DE%F!
    {    ?? I%+%9%9+%F$H!   Is   A$B 5CCc                   ^ RI p^ RIp\        VP                  RRR7      p \        P
                  ! V4      pVP                  pVP                  P                  VP                  RR7      pVP                  V4      ^ ,          pVP                  ! RT;'       g    RWg3,          4      p	\        VRR7      p
\        \        VR4      W4      #   \         d   p\!        YP"                  4      hRp?ii ; i)	r	  NT)require_schemeresolve_host)usegmtz6Content-type: %s
Content-length: %d
Last-modified: %s
z
text/plain)
add_schemerb)email.utils	mimetypesr2   rm   rO   statst_sizeutils
formatdatest_mtimeguess_file_typemessage_from_stringr1   r   r<   rh   r   r[   )r   r	  emailr  	localfilestatsrc   modifiedmtyper_   origurlexps   &&          rB   open_local_fileFileHandler.open_local_file  s     dQUV		.GGI&E==D{{--ennT-JH--i8;E//K&&,789G #9>Gd9d3WFF 	.3--	.s   A6C 1C C0C++C0r   )
r   r   r   r   r  r  r  	file_openr   r   r   s   @rB   r(   r(     s     E!."  IrC   c                 j   V '       d   V R 8X  d   R#  \         P                  ! 4       pW8X  d   R#  V'       g   R#  \         P                  ! V 4      pT\        4       P                  4       9   #   \         P                  \        3 d     LYi ; i  \         P                  \        \
        3 d     R# i ; i)r  TF)r  r  r  AttributeErrorr  UnicodeEncodeErrorr(   r  )rn  resolvehostnameaddresss   &&  rB   _is_local_authorityr    s    	[0%%'   ! &&y1 km--/// OO^,  OO^-?@ s"   A- B -B
B B21B2c                   ,   a  ] tR tRt o R tR tRtV tR# )r)   i  c                   ^ RI p^ RIpVP                  pV'       g   \        R4      h\	        V4      w  rEVf   VP
                  pM\        V4      p\        V4      w  rdV'       d   \        V4      w  rgMRp\        V4      pT;'       g    RpT;'       g    Rp \        P                  ! V4      p\        TP                  4      w  rT	P                  R4      p\!        \#        \        T4      4      pTRR TR,          rT'       d   T^ ,          '       g
   TR,          p T P%                  YgYEYP&                  4      pT;'       d    R;'       g    RpT
 FA  p\)        T4      w  ppTP+                  4       R8X  g   K(  TR9   g   K1  TP-                  4       pKC  	  TP/                  Y4      w  ppRpTP1                  TP2                  4      ^ ,          pT'       d   TR	T,          ,          pTe   T^ 8  d   TR
T,          ,          p\4        P6                  ! T4      p\9        TTTP2                  4      #   \         d   p\        T4      hRp?ii ; i  TP:                   d   p\        RT 24      ThRp?ii ; i)r	  Nzftp error: no host givenrk   rS  rO  NNr  Dr   zContent-type: %s
zContent-length: %d
ftp error: rK   )aAr   r  rH  r  )ftplibr  rs   r   r   FTP_PORTrW   r   r   r
   r  r  rh   r   r   r  r   mapconnect_ftpr?   r   rq   upperretrfile
guess_typerm   r  r  r   
all_errors)r   r	  r  r  rs   r  rs  r  r9  rP   attrsdirsrG   fwr   attrr   r^   retrlenr_   r  r  s   &&                    rB   ftp_openFTPHandler.ftp_open  s%   xx566%
<??Dt9D  %
'-LD&Ft}zzr2	 ''-D !.zz#C&'#2YRdQ8D	9!!$D++NB<<C&&3D)$/e::<6):: ;;=D	 
 ++d1KBG((6q9E/%77"w!|1G;;//8Gb'3<<881  	 3-	 2    	9[./S8	9sC   H1 /I (I <I B+I 1I<III4 I//I4c           
          \        WW4WVR R7      # )F)
persistent)
ftpwrapper)r   rs  r  rs   r  r  r?   s   &&&&&&&rB   r  FTPHandler.connect_ftp  s    $D%*, 	,rC   r   N)r   r   r   r   r  r  r   r   r   s   @rB   r)   r)     s     29h, ,rC   c                   D   a  ] tR tRt o R tR tR tR tR tR t	Rt
V tR	# )
r*   i  c                L    / V n         / V n        ^ V n        ^<V n        ^V n        R# r  )cacher?   soonestdelay	max_connsr   s   &rB   r   CacheFTPHandler.__init__  s%    

rC   c                    Wn         R # rE   )r  )r   ts   &&rB   
setTimeoutCacheFTPHandler.setTimeout$  s    
rC   c                    Wn         R # rE   )r  )r   rJ  s   &&rB   setMaxConnsCacheFTPHandler.setMaxConns'  s    rC   c                   WVR P                  V4      V3pWpP                  9   d5   \        P                  ! 4       V P                  ,           V P                  V&   MM\        WW4WV4      V P                  V&   \        P                  ! 4       V P                  ,           V P                  V&   V P                  4        V P                  V,          # )rS  )joinr  r  r  r?   r  check_cache)r   rs  r  rs   r  r  r?   r   s   &&&&&&& rB   r  CacheFTPHandler.connect_ftp*  s    $7** $		djj 8DLL(t)-8DJJsO $		djj 8DLLzz#rC   c                   \         P                   ! 4       pV P                  V8:  dp   \        V P                  P	                  4       4       FH  w  r#W18  g   K  V P
                  V,          P                  4        V P
                  V V P                  V KJ  	  \        \        V P                  P                  4       4      4      V n        \        V P
                  4      V P                  8X  d   \        V P                  P	                  4       4       F1  w  r#W0P                  8X  g   K  V P
                  V V P                  V  M	  \        \        V P                  P                  4       4      4      V n        R # R # rE   )r  r  r   r?   rz   r  r   minvaluesrY   r  )r   r  rL  rM  s   &   rB   r   CacheFTPHandler.check_cache5  s   IIK<<1T\\//125JJqM'')

1Q	 3
 4 3 3 567 tzz?dnn,T\\//12$

1Q	 3
 tDLL$7$7$9:;DL -rC   c                    V P                   P                  4        F  pVP                  4        K  	  V P                   P                  4        V P                  P                  4        R # rE   )r  r  r   clearr?   )r   conns   & rB   clear_cacheCacheFTPHandler.clear_cacheI  sB    JJ%%'DJJL (

rC   )r  r  r  r  r?   N)r   r   r   r   r   r  r  r  r   r	  r   r   r   s   @rB   r*   r*     s(     	<( rC   c                   &   a  ] tR tRt o R tRtV tR# )r+   iO  c                   VP                   pVP                  R ^4      w  r4VP                  R^4      w  rT\        V4      pVP                  R4      '       d   \        P
                  ! V4      pVRR pV'       g   Rp\        P                  ! RV\        V4      3,          4      p\        \        P                  ! V4      Wb4      # )r  r.  z;base64Nztext/plain;charset=US-ASCIIz$Content-type: %s
Content-length: %d
i)rm   r  r   endswithr  decodebytesr  r  rY   r   ioBytesIO)r   r	  r=   rY  r>   	mediatyper_   s   &&     rB   	data_openDataHandler.data_openP  s     llyyQ'**S+	  %i((%%d+D!#2I5I++,TD	"-# $ "**T*G99rC   r   N)r   r   r   r   r  r   r   r   s   @rB   r+   r+   O  s     : :rC   r  r  c                  V'       g
   RV ,           p \        V 4      R,          w  r4p VR8w  d   \        R4      h\        P                  R8X  d   VR,          R8X  d
   W@,           p M\	        WB4      '       g   RV,           V ,           p MiV R,          R	8X  d   V R
,          p MQV R,          R8X  d   V R,          R9   d
   V R
,          p V R,          R8X  d   V R,          R,           V R,          ,           p V P                  RR4      p M\	        WB4      '       g   \        R4      h\        P                  ! 4       p\        P                  ! 4       p\        WVR7      # )zConvert the given file URL to a local file system path.

The 'file:' scheme prefix must be omitted unless *require_scheme*
is set to true.

The URL authority may be resolved with gethostbyname() if
*resolve_host* is set to true.
file:N   NrG   zURL is missing a 'file:' schement:rO  r6   Nr  rj  ///r  :NrO  NrS  :r6   r  N|:r6   NNr  z-file:// scheme is supported only on localhostrT  errors)r  r  )
r   r   rO   rT   r  rH  r  getfilesystemencodinggetfilesystemencodeerrorsr
   )r=   r  r  rY  rn  rT  r  s   &$$    rB   r2   r2   p  s    m%c]2.Fs899	ww$S>S /C$Y=="S(CWb'C2w#~#c(j"8"g3x3"gmc"g-kk#t$ 99FGG((*H**,F3&99rC   r  c               J   \         P                  R8X  d   V P                  RR4      p \        P                  ! 4       p\        P
                  ! 4       pV'       d   RMRp\         P                  P                  V 4      w  rVpV'       dj   VR,          R8X  d6   VR,          pVR,          P                  4       R	8X  d   R
VR,          ,           pVR,          R8X  d
   RV,           p\        WRVRR7      pMV'       d
   R
V,           p\        WrVR7      pWE,           V,           V,           # )zConvert the given local file system path to a file URL.

The 'file:' scheme prefix is omitted unless *add_scheme*
is set to true.
r  r  rS  r  rk   N   Nz//?/:r!  NNzUNC/rj  r  r  r  z/:)rT  r  rU  r  )
rO   rT   rH  r  r  r  rP   	splitrootr  r	   )pathnamer  rT  r  rY  driveroottails   &$      rB   r1   r1     s     
ww$##D#.((*H**,F"WF))(3E 9"IERy F*uRy(9 EMEevDI	
 d{8D>D 4''rC   c                 J    \         f   \        P                  ! R4      s \         # )z8Return the IP address of the magic hostname 'localhost'.r  )
_localhostr  r  r   rC   rB   r  r    s      ))+6
rC   c                 *   \         fA    \        \        P                  ! \        P                  ! 4       4      ^,          4      s \         # \         #   \        P
                   d/    \        \        P                  ! R4      ^,          4      s  \         # i ; i)z,Return the IP addresses of the current host.r  )	_thishostr  r  r  r  r  r   rC   rB   thishostr+    sw     	Gf55f6H6H6JKANOI 9  	Gf55kB1EFI	Gs   9A ;BBc                 >    \         f   ^ RIp V P                  s \         # )z1Return the set of errors raised by the FTP class.N)
_ftperrorsr  r  )r  s    rB   	ftperrorsr.    s     &&
rC   c                 J    \         f   \        P                  ! R4      s \         # )z%Return an empty email Message object.rk   )
_noheadersr  r  r   rC   rB   	noheadersr1    s      ..r2
rC   c                   R   a  ] tR tRt o RtRR ltR tR tR tR t	R	 t
R
 tRtV tR# )r  i  z;Class used by open_ftp() for cache of open FTP connections.Nc                    Wn         W n        W0n        W@n        WPn        W`n        ^ V n        Wpn         V P                  4        R#    T P                  4        h ; ir  )
rs  r  rs   r  r  r?   refcount	keepaliveinitr   )r   rs  r  rs   r  r  r?   r  s   &&&&&&&&rB   r   ftpwrapper.__init__  sM    				#	IIK	JJLs   A Ac                   ^ RI p^ V n        VP                  4       V n        V P                  P	                  V P
                  V P                  V P                  4       V P                  P                  V P                  V P                  4       RP                  V P                  4      pV P                  P                  V4       R# )r	  NrS  )r  busyFTPrX  connectrs   r  r?   loginrs  r  r  r  cwd)r   r  _targets   &  rB   r6  ftpwrapper.init  sw    	::<DIIt||<tyy$++.((499%WrC   c                   ^ RI pV P                  4        VR9   d   Rp^pMRV,           p^ p V P                  P                  V4       RpV'       d0   V'       g(    RV,           pV P                  P                  V4      w  rgV'       g   V P                  P                  R4       V'       d^   V P                  P                  4       p	  V P                  P                  V4        T P                  P                  T	4       R	T,           pMR
pV P                  P                  V4      w  rg^V n        \        VP                  R4      V P                  4      p
V ;P                   ^,          un        VP#                  4        V
X3#   TP                   d0    T P                  4        T P                  P                  T4        ELxi ; i  TP                   d2   p\        T4      R,          R8w  d   \        RT 24      Th Rp?ELRp?ii ; i  TP                   d   p\        RT,          4      ThRp?ii ; i  T P                  P                  T	4       i ; i)r	  NzTYPE AzTYPE zRETR r  550r  zftp error: %rzLIST LISTr  )rH  r  )r  endtransferrX  voidcmdr  r6  ntransfercmd
error_permr  r   pwdr=  r9  r   makefile
file_closer4  r   )r   rG   r   r  cmdisdirr  r  rz  rG  ftpobjs   &&&        rB   r  ftpwrapper.retrfile  s   :XsqudNcAE	"HHS! Gn $ 5 5c : HHX&hhlln&MT* HHLL%n HH11#6MD	dmmD14??C

  G    	"IIKHHS!	" $$ Gv;r?e+"[#9:F ,G ",, M&'?@fLM HHLL%sM   F &G H	 <G GH&HH	H2H--H22H5 5Ic                    V P                   '       g   R # ^ V n          V P                  P                  4        R #   \        4        d     R # i ; irE   )r9  rX  voidrespr.  r   s   &rB   rC  ftpwrapper.endtransfer+  s>    yyy		HH{ 		s   9 AAc                Z    R V n         V P                  ^ 8:  d   V P                  4        R# R# )FN)r5  r4  
real_closer   s   &rB   r   ftpwrapper.close4  s$    ==AOO rC   c                    V P                  4        V ;P                  ^,          un        V P                  ^ 8:  d'   V P                  '       g   V P                  4        R# R# R# )rO  N)rC  r4  r5  rR  r   s   &rB   rI  ftpwrapper.file_close9  sB    ==AdnnnOO '5rC   c                    V P                  4         V P                  P                  4        R #   \        4        d     R # i ; irE   )rC  rX  r   r.  r   s   &rB   rR  ftpwrapper.real_close?  s5    	HHNN{ 		s   . A A)
r9  r  rX  rs   r5  r  r  r4  r?   rs  )NT)r   r   r   r   r<  r   r6  r  rC  r   rI  rR  r   r   r   s   @rB   r  r    s1     E *!X
 rC   r  c                    / p . p\         P                   F  p\        V4      ^8  g   K  VR,          R8X  g   K%  VRR P                  4       R8X  g   K?  \         P                  V,          pVRR P                  4       pVP	                  W#V34       V'       g   K  W0V&   K  	  R\         P                  9   d   V P                  RR4       V F2  w  r#pVRR R8X  g   K  V'       d   W0V&   K   V P                  VR4       K4  	  V # )	zReturn a dictionary of scheme -> proxy server URL mappings.

Scan the environment for variables named <scheme>_proxy;
this seems to be the standard convention.
r   Nrl  REQUEST_METHODr  _proxyi)rO   environrY   rq   rV   r   )r}  environmentrT   r   
proxy_names        rB   getproxies_environmentr_  G  s     GK

t9q=T"X_bc1Bg1MJJt$Ecr*JZ89u&+
#  2::%FD!#.Z9 &+
#J- $/ NrC   c                   Vf   \        4       p VR,          pTR8X  d   R# T P                  4       p \        T 4      w  r4TP	                  R4       F  pTP                  4       pT'       g   K  TP                  R4      pTP                  4       pY58X  g   Y8X  d    R# RT,           pTP                  T4      '       g   T P                  T4      '       g   K   R# 	  R#   \         d     R# i ; i)zTest if proxies should not be used for a particular host.

Checks the proxy dict for the value of no_proxy, which should
be a list of comma separated DNS suffixes, or '*' for all hosts.

noF*Tr.  .)r_  r/  rq   r   r  r  lstripr  )rs   r}  no_proxyhostonlyr  rT   s   &&    rB   proxy_bypass_environmentrg  j  s     (*4= 3::<D%NHs#zz|4;;s#D::<D4<:D  &&$--*=*= $ )  s   	C C,+C,c                   ^ RI H p ^ RIHpHp \	        V 4      w  rVR pRV 9  d   VR,          '       d   R# Rp \        V! V4      4      pVP                  RR4       F  p	V	'       g   K  \        P                  ! R	V	4      p
V
e   Ve   V! V
P                  ^4      4      pV
P                  ^4      pVf0   ^V
P                  ^4      P                  R4      ^,           ,          pM\        VR
,          4      pV^ 8  g   V^ 8  d   K  ^ V,
          pW,	          W,	          8X  d    R# K  V! W	4      '       g   K   R# 	  R#   T d     Li ; i)aJ  
Return True iff this host shouldn't be accessed using a proxy

This function uses the MacOSX framework SystemConfiguration
to fetch the proxy information.

proxy_settings come from _scproxy._get_proxy_settings or get mocked ie:
{ 'exclude_simple': bool,
  'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.1', '10.0/16']
}
fnmatch)AddressValueErrorIPv4Addressc                 *   V P                  R 4      p\        \        \        V4      4      p\	        V4      ^8w  d   V. RO,           R,          pV^ ,          ^,          V^,          ^,          ,          V^,          ^,          ,          V^,          ,          # )rc  r   )r	  r	  r	  r	  )r  r   r  rW   rY   )ipAddrr  s   & rB   ip2num,_proxy_bypass_macosx_sysconf.<locals>.ip2num  sk    S!Se_%u:?\)2.EaB58r>2eAh!mDuQxOOrC   rc  exclude_simpleTN
exceptionsz(\d+(?:\.\d+)*)(/\d+)?r  Fr   )rj  	ipaddressrk  rl  r   rW   r   r  matchgroupcount)rs   proxy_settingsrj  rk  rl  rf  r  ro  hostIPr   rJ  r  masks   &&           rB   _proxy_bypass_macosx_sysconfrz    s/     8%NHP $*++F[*+  ##L"5hHH.6=V/!''!*%D771:D|AGGAJ,,S1A5648}ax4"99DDL1 2 T!!/ 62 9  s   D> >EEc                    ^ RI H p \        V 4      w  rVP                  R4      pV F7  pVP                  4       pVR8X  d   RV 9  d    R# K&  V! W4      '       g   K6   R# 	  R# )zReturn True if the host should bypass the proxy server.

The proxy override list is obtained from the Windows
Internet settings proxy override registry value.

An example of a proxy override value is:
"www.example.com;*.example.net; 192.168.0.1"
ri  ;z<local>rc  TF)rj  r   r  r  )rs   overriderj  r   proxy_overrider  s   &&    rB   _proxy_bypass_winreg_overrider    s`      GD^^C(Nzz|9$ T    rC   darwin)_get_proxy_settings_get_proxiesc                 ,    \        4       p\        W4      # rE   )r  rz  )rs   rw  s   & rB   proxy_bypass_macosx_sysconfr    s    ,.+DAArC   c                     \        4       # )zReturn a dictionary of scheme -> proxy server URL mappings.

This function uses the MacOSX framework SystemConfiguration
to fetch the proxy information.
)r  r   rC   rB   getproxies_macosx_sysconfr    s     ~rC   c                R    \        4       pV'       d   \        W4      # \        V 4      # )zReturn True, if host should be bypassed.

Checks proxy settings gathered from the environment, if specified,
or from the MacOSX framework SystemConfiguration.

)r_  rg  r  rs   r}  s   & rB   r  r    s%     )*+D::.t44rC   c                  :    \        4       ;'       g    \        4       # rE   )r_  r  r   rC   rB   r3   r3     s    %'FF+D+FFrC   r  c                 T   / p  ^ RI p TP                  TP                  R4      pTP	                  TR4      ^ ,          pT'       Ed"   \        TP	                  TR4      ^ ,          4      pRT9  d   RT9  d   RP                  T4      pTP                  R4       FY  pTP                  R^4      w  rg\        P                  ! RT4      '       g"   TR9   d   RT,           pMTR8X  d
   RT,           pYpT&   K[  	  T P                  R4      '       d\   \        P                  ! RRT R,          4      pT P                  R	4      ;'       g    TT R	&   T P                  R
4      ;'       g    TT R
&   TP                  4        T #   \         d    T u # i ; i  \        \        \        3 d     T # i ; i)zhReturn a dictionary of scheme -> proxy server URL mappings.

Win32 uses the registry to store proxies.

N;Software\Microsoft\Windows\CurrentVersion\Internet SettingsProxyEnableProxyServerr  r|  zhttp={0};https={0};ftp={0}z(?:[^/:]+)://r  r   zhttp://sockszsocks://z	^socks://z	socks4://)r  r   rX  )winregImportErrorOpenKeyHKEY_CURRENT_USERQueryValueExr  r   r  r  rt  r   rp   Closerh   r   r   )r}  r  internetSettingsproxyEnableproxyServerpr   r  s           rB   getproxies_registryr  
  s    	"	%~~f.F.FN P --.>/<>>?AK{!&"5"56F7D#FFG#I Jk)c.D">"E"Ek"RK$**3/A()Q%H88OW==#'??&/'&9G%0&07&:G(/H% 0 ;;w'' ff\;@PQG&-kk&&9&D&DWGFO'.{{7';'F'FwGG$""$ M  	N	B Y/ 	 	s;   E: =F CF 6F F "F :F
	F
F'&F'c                 :    \        4       ;'       g    \        4       # )zReturn a dictionary of scheme -> proxy server URL mappings.

Returns settings gathered from the environment, if specified,
or the registry.

)r_  r  r   rC   rB   r3   r3   ;  s     &'@@+>+@@rC   c                 >    ^ RI p TP                  TP                  R4      pTP	                  TR4      ^ ,          p\        TP	                  TR4      ^ ,          4      pT'       d	   T'       g   R# \        Y4      #   \         d     R# i ; i  \         d     R# i ; i)r	  NFr  r  ProxyOverride)r  r  r  r  r  r  rh   r  )rs   r  r  r  proxyOverrides   &    rB   proxy_bypass_registryr  D  s    			%~~f.F.FN P --.>/<>>?AK 3 34D5D!FFG!I JM
 -,TAA  		  		s#   A; AB ;B
	B
BBc                R    \        4       pV'       d   \        W4      # \        V 4      # )zReturn True, if host should be bypassed.

Checks proxy settings gathered from the environment, if specified,
or the registry.

)r_  rg  r  r  s   & rB   r  r  X  s%     )*+D::(..rC   r  rE   )vr<  r  r   rL   r  r   http.clientr  r  rO   r  r  r[  r  r  rR   urllib.errorr   r   r   urllib.parser   r   r   r   r	   r
   r   r   r   r   r   r   r   r   r   r   urllib.responser   r   ssl	_have_sslr  __all__version_infor   r;   r  r.   r/   rU   r4   r5   r  ASCIIro   rt   r   r   r0   r   r-   r   r   ru  r   r   r   r    r!   r"   r#   urandomr  r$   r%   r&   rX  r'   r   r  r:   rV   r   r,   r  r  r(   r  r)   r*   r+   r2   r1   r(  r  r*  r+  r-  r.  r0  r1  r  r_  rg  rz  r  platform_scproxyr  r  r  r  r  r3   rT   r  r  r   rC   rB   <module>r     s  Cf       	 	 	   
   C B" " " " "
 5 I!.0I  1 3A 	 9	
 #
 %?  4 6Q  6 8E    "3 5B  +    "0  # %1   $ ((,,
F$B$B 2+2+h :x zz(BHH- k" k"ZI+ I+^"H8 8&# #";k ;o2+ o2d,B)>; )>V=* =*@Go G3#B 3>l# l#`3[ 4k   zzR RjK)B $
[*C 
s+ sl3% 3 4;;)**8* 8$ NN>"#+ #$6[ 6
)*V +  B0(7, 7,r3j 3j:+ :B$: $:E $:N (  (J 
 	 
 
a aH!F J<@0 <<8:B5G WW_/bAB(/ (J+Ls?  Is   2K4 4	L L