£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyÊ¦•êŽ…È®FÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~èŠ©ÊÇí`ÔÑ©úë™µ'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ó¼ãžªéUWŸÈË%DÒÕ¬ï‘]/Åcx  ‰ï2ß]ä6G[]S£ÔÏ¯rs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ                  ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<html>

Req                 @   s  d  Z  d d l m Z d d l m Z d d l Z d d l m Z d d   Z d	 d
   Z y e e j	 e j	  Wn: e
 e f k
 r e j d j e j	 e j	  e  Yn Xy d d l m Z e s e d   y d d l Z Wn e k
 r d Z Yn Xe e d d  sDd d l m Z e j   d d l m	 Z e e  Wn e k
 rYYn Xd d l m Z e j d e  d d l	 m Z m Z m Z m	 Z	 d d l	 m Z m Z m  Z  m! Z! d d l	 m" Z" m# Z# d d l$ m% Z% d d l$ m& Z& d d l' m( Z( m) Z) m* Z* d d l+ m, Z, m- Z- m. Z. m/ Z/ m0 Z0 m1 Z1 m2 Z2 m3 Z3 d d l4 m5 Z5 m6 Z6 d d l7 m8 Z8 d d l m9 Z9 m: Z: m; Z; m< Z< m= Z= m> Z> m? Z? m@ Z@ mA ZA d d lB ZB d d lB mC ZC eB jD eE  jF eC    e j d e? d  d! d S)"a  
Requests HTTP Library
~~~~~~~~~~~~~~~~~~~~~

Requests is an HTTP library, written in Python, for human beings.
Basic GET usage:

   >>> import requests
   >>> r = requests.get('https://www.python.org')
   >>> r.status_code
   200
   >>> b'Python is a programming language' in r.content
   True

... or POST:

   >>> payload = dict(key1='value1', key2='value2')
   >>> r = requests.post('https://httpbin.org/post', data=payload)
   >>> print(r.text)
   {
     ...
     "form": {
       "key1": "value1",
       "key2": "value2"
     },
     ...
   }

The other HTTP methods are supported - see `requests.api`. Full documentation
is at <https://requests.readthedocs.io>.

:copyright: (c) 2017 by Kenneth Reitz.
:license: Apache 2.0, see LICENSE for more details.
    )urllib3)chardetN   )RequestsDependencyWarningc             C   s0  |  j  d  }  |  d g k s$ t  t |   d k rC |  j d  |  \ } } } t |  t |  t |  } } } | d k s t  | d k s t  | d k s t  | j  d  d  d  \ } } } t |  t |  t |  } } } | d k st  | d k  st  | d k s,t  d  S)	N.dev   0r            )splitAssertionErrorlenappendint)urllib3_versionchardet_versionmajorminorpatch r   /builddir/build/BUILDROOT/alt-python35-pip-20.2.4-5.el8.x86_64/opt/alt/python35/lib/python3.5/site-packages/pip/_vendor/requests/__init__.pycheck_compatibility1   s    &"&r   c             C   ss   y" t  t t |  j d    }  Wn t k
 r: d  SYn X|  d d d g k  ro d j |   } t j | t  d  S)Nr   r   r      z4Old version of cryptography ({}) may cause slowdown.)	listmapr   r   
ValueErrorformatwarningswarnr   )cryptography_versionwarningr   r   r   _check_cryptographyJ   s    "	r#   z?urllib3 ({}) or chardet ({}) doesn't match a supported version!)WINDOWSz3pip internals: don't import cryptography on WindowsHAS_SNIF)	pyopenssl)__version__)DependencyWarningignore)	__title____description____url__r'   )	__build__
__author____author_email____license__)__copyright____cake__)utils)packages)RequestResponsePreparedRequest)requestgetheadpostr   putdeleteoptions)sessionSession)codes)	RequestExceptionTimeoutURLRequiredTooManyRedirects	HTTPErrorConnectionErrorFileModeWarningConnectTimeoutReadTimeout)NullHandlerdefaultr   T)G__doc__pip._vendorr   r   r   
exceptionsr   r   r#   r'   r   r   r    r   pip._internal.utils.compatr$   ImportErrorsslgetattrpip._vendor.urllib3.contribr&   inject_into_urllib3Zcryptographyr!   Zpip._vendor.urllib3.exceptionsr(   simplefilterr*   r+   r,   r-   r.   r/   r0   r1   r2    r3   r4   modelsr5   r6   r7   apir8   r9   r:   r;   r   r<   r=   r>   sessionsr?   r@   status_codesrA   rB   rC   rD   rE   rF   rG   rH   rI   rJ   loggingrK   	getLogger__name__
addHandlerr   r   r   r   <module>)   sV   
"":@