
    ,hN                     8   d Z dZddlZddlmZ ddlZddlZddlZdZ	 ddl	Z	d Z
	 ddlZdZd	Z e       Z ej$                  ej'                  d
      ej(                         ej$                  ej'                  d
      ej(                        dee<    ej$                  eej(                         ej$                  eej(                        dee<    G d de      Z G d d      Z G d d      Zy# e$ r 	 ddlZd Z
n# e$ r d Z
Y nw xY wY w xY w# e$ r Y w xY w)aB  Beautiful Soup bonus library: Unicode, Dammit

This library converts a bytestream to Unicode through any means
necessary. It is heavily based on code from Mark Pilgrim's Universal
Feed Parser. It works best on XML and HTML, but it does not rewrite the
XML or HTML to reflect a new encoding; that's the tree builder's job.
MIT    N)codepoint2namec                 T    t        | t              ry t        j                  |       d   S Nencoding)
isinstancestrcchardetdetectss    L/var/www/html/Resume-Scraper/venv/lib/python3.12/site-packages/bs4/dammit.pychardet_dammitr      s#    aq!*--    c                 T    t        | t              ry t        j                  |       d   S r   )r   r	   chardetr   r   s    r   r   r   "   s#    !S!>>!$Z00r   c                      y N r   s    r   r   r   *   s    r   z$^\s*<\?.*encoding=['"](.*?)['"].*\?>z0<\s*meta[^>]+charset\s*=\s*["']?([^>]*?)[ /;'">]ascii)htmlxmlc                       e Zd ZdZd Z e       \  ZZZddddddZ e	j                  d	      Z e	j                  d
      Zed        Zed        Zed        Zedd       Ze	 dd       Zed        Zy)EntitySubstitutionzFThe ability to substitute XML or HTML entities for certain characters.c                     i } i }g }dg}t        t        j                               |z   D ]/  \  }}t        |      }|dvr|j	                  |       || |<   |||<   1 ddj                  |      z  }| |t        j                  |      fS )N)'   apos)"   r   z[%s] )listr   itemschrappendjoinrecompile)lookupreverse_lookupcharacters_for_reextra	codepointname	characterre_definitions           r   _populate_class_variablesz,EntitySubstitution._populate_class_variablesG   s     #N$8$8$:;eC 	-OItII(
 "((3$(y! $-N4 	- ):!;;~rzz-'@@@r   r   quotampltgt)'"&<>z&([<>]|&(?!#\d+;|#x[0-9a-fA-F]+;|\w+;))z([<>&])c                 `    | j                   j                  |j                  d            }d|z  S )ziUsed with a regular expression to substitute the
        appropriate HTML entity for a special character.r   &%s;)CHARACTER_TO_HTML_ENTITYgetgroupclsmatchobjentitys      r   _substitute_html_entityz*EntitySubstitution._substitute_html_entityq   s-     --11(..2CDr   c                 H    | j                   |j                  d         }d|z  S )zhUsed with a regular expression to substitute the
        appropriate XML entity for a special character.r   r:   )CHARACTER_TO_XML_ENTITYr=   r>   s      r   _substitute_xml_entityz)EntitySubstitution._substitute_xml_entityx   s'     ,,X^^A->?r   c                 T    d}d|v rd|v rd}|j                  d|      }nd}||z   |z   S )a*  Make a value into a quoted XML attribute, possibly escaping it.

         Most strings will be quoted using double quotes.

          Bob's Bar -> "Bob's Bar"

         If a string contains double quotes, it will be quoted using
         single quotes.

          Welcome to "my bar" -> 'Welcome to "my bar"'

         If a string contains both single and double quotes, the
         double quotes will be escaped, and the string will be quoted
         using double quotes.

          Welcome to "Bob's Bar" -> "Welcome to &quot;Bob's bar&quot;
        r5   r4   z&quot;)replace)selfvalue
quote_withreplace_withs       r   quoted_attribute_valuez)EntitySubstitution.quoted_attribute_value   sE    & 
%<e|  (c<8 !
E!J..r   c                 x    | j                   j                  | j                  |      }|r| j                  |      }|S )a  Substitute XML entities for special XML characters.

        :param value: A string to be substituted. The less-than sign
          will become &lt;, the greater-than sign will become &gt;,
          and any ampersands will become &amp;. If you want ampersands
          that appear to be part of an entity definition to be left
          alone, use substitute_xml_containing_entities() instead.

        :param make_quoted_attribute: If True, then the string will be
         quoted, as befits an attribute value.
        )AMPERSAND_OR_BRACKETsubrE   rL   r?   rI   make_quoted_attributes      r   substitute_xmlz!EntitySubstitution.substitute_xml   s?     ((,,&&/ !..u5Er   c                 x    | j                   j                  | j                  |      }|r| j                  |      }|S )a  Substitute XML entities for special XML characters.

        :param value: A string to be substituted. The less-than sign will
          become &lt;, the greater-than sign will become &gt;, and any
          ampersands that are not part of an entity defition will
          become &amp;.

        :param make_quoted_attribute: If True, then the string will be
         quoted, as befits an attribute value.
        )BARE_AMPERSAND_OR_BRACKETrO   rE   rL   rP   s      r   "substitute_xml_containing_entitiesz5EntitySubstitution.substitute_xml_containing_entities   s?     --11&&/ !..u5Er   c                 N    | j                   j                  | j                  |      S )a  Replace certain Unicode characters with named HTML entities.

        This differs from data.encode(encoding, 'xmlcharrefreplace')
        in that the goal is to make the result more readable (to those
        with ASCII displays) rather than to recover from
        errors. There's absolutely nothing wrong with a UTF-8 string
        containg a LATIN SMALL LETTER E WITH ACUTE, but replacing that
        character with "&eacute;" will make it more readable to some
        people.

        :param s: A Unicode string.
        )CHARACTER_TO_HTML_ENTITY_RErO   rB   )r?   r   s     r   substitute_htmlz"EntitySubstitution.substitute_html   s(     ..22'', 	,r   N)F)__name__
__module____qualname____doc__r/   r;   HTML_ENTITY_TO_CHARACTERrW   rD   r%   r&   rT   rN   classmethodrB   rE   rL   rR   rU   rX   r   r   r   r   r   D   s    PA4 %>$?"7  
 !+

 ,/ !0 &2::i0    "/ "/H  ( */ * , ,r   r   c                   T    e Zd ZdZ	 	 ddZd Zed        Zed        Z	ed	d       Z
y)
EncodingDetectora^  Suggests a number of possible encodings for a bytestring.

    Order of precedence:

    1. Encodings you specifically tell EncodingDetector to try first
    (the override_encodings argument to the constructor).

    2. An encoding declared within the bytestring itself, either in an
    XML declaration (if the bytestring is to be interpreted as an XML
    document), or in a <meta> tag (if the bytestring is to be
    interpreted as an HTML document.)

    3. An encoding detected through textual analysis by chardet,
    cchardet, or a similar external library.

    4. UTF-8.

    5. Windows-1252.
    Nc                     |xs g | _         |xs g }t        |D cg c]  }|j                          c}      | _        d| _        || _        d| _        | j                  |      \  | _        | _	        yc c}w )a  Constructor.

        :param markup: Some markup in an unknown encoding.
        :param override_encodings: These encodings will be tried first.
        :param is_html: If True, this markup is considered to be HTML. Otherwise
            it's assumed to be XML.
        :param exclude_encodings: These encodings will not be tried, even
            if they otherwise would be.
        N)
override_encodingssetlowerexclude_encodingschardet_encodingis_htmldeclared_encodingstrip_byte_order_markmarkupsniffed_encoding)rH   rj   rb   rg   re   xs         r   __init__zEncodingDetector.__init__   st     #5":-3!$9J%KAaggi%K!L $!% .2-G-G-O*T* &Ls   A2c                 r    |5|j                         }|| j                  v ry||vr|j                  |       yy)zShould we even bother to try this encoding?

        :param encoding: Name of an encoding.
        :param tried: Encodings that have already been tried. This will be modified
            as a side effect.
        FT)rd   re   add)rH   r   trieds      r   _usablezEncodingDetector._usable
  sA     ~~'H4111u$		(#r   c              #   b  K   t               }| j                  D ]  }| j                  ||      s|  | j                  | j                  |      r| j                   | j                  +| j                  | j                  | j                        | _        | j                  | j                  |      r| j                   | j                  t        | j                        | _        | j                  | j                  |      r| j                   dD ]  }| j                  ||      s|  yw)zmYield a number of encodings that might work for this markup.

        :yield: A sequence of strings.
        N)utf-8windows-1252)
rc   rb   rq   rk   rh   find_declared_encodingrj   rg   rf   r   )rH   rp   es      r   	encodingszEncodingDetector.encodings  s
     (( 	A||Au%	 <<--u5''' !!)%)%@%@T\\&+D"<<..6(((   ($24;;$?D!<<--u5''' + 	A||Au%	s   ,D/C8D/(D/c                 D   d}t        |t              r||fS t        |      dk\  r|dd dk(  r|dd dk7  rd}|dd }||fS t        |      dk\  r|dd dk(  r|dd dk7  rd}|dd }||fS |dd	 d
k(  rd}|d	d }||fS |dd dk(  rd}|dd }||fS |dd dk(  rd}|dd }||fS )zIf a byte-order mark is present, strip it and return the encoding it implies.

        :param data: Some markup.
        :return: A 2-tuple (modified data, implied encoding)
        N      s   z  zutf-16bes   zutf-16le   s   ﻿rs   s     zutf-32bes     zutf-32le)r   r	   len)r?   datar   s      r   ri   z&EncodingDetector.strip_byte_order_mark>  s'    dC >!INbq[!81I+!H8D X~ $i1n48{#:1Qi:-!H8D X~ "1X(H8D X~ "1X,,!H8D X~ "1X,,!H8DX~r   c                    |rt        |      x}}n#d}t        dt        t        |      dz              }t        |t              rt
        t           }nt
        t           }|d   }|d   }d}	|j                  ||      }
|
s|r|j                  ||      }
|
|
j                         d   }	|	r2t        |	t              r|	j                  d	d
      }	|	j                         S y)a  Given a document, tries to find its declared encoding.

        An XML encoding is declared at the beginning of the document.

        An HTML encoding is declared in a <meta> tag, hopefully near the
        beginning of the document.

        :param markup: Some markup.
        :param is_html: If True, this markup is considered to be HTML. Otherwise
            it's assumed to be XML.
        :param search_entire_document: Since an encoding is supposed to declared near the beginning
            of the document, most of the time it's only necessary to search a few kilobytes of data.
            Set this to True to force this method to search the entire document.
        i   i   g?r   r   N)endposr   r   rG   )r|   maxintr   bytesencoding_resr	   searchgroupsdecoderd   )r?   rj   rg   search_entire_document
xml_endposhtml_endposresxml_rehtml_rerh   declared_encoding_matchs              r   ru   z'EncodingDetector.find_declared_encoding\  s      "'*6{2JJdCFd(:$;<Kfe$u%Cs#CUf+ "(--z-"J&7&-nnVKn&P#". 7 > > @ C+U3$5$<$<Wi$P!$**,,r   )NFN)FF)rY   rZ   r[   r\   rm   rq   propertyrw   r^   ri   ru   r   r   r   r`   r`      sY    & AF#'P*  ! !F  : & &r   r`   c                      e Zd ZdZdddZg dZg ddg fdZd	 Zdd
ZddZ	e
d        Zd Zd Zi dddddddddddddddddd d!d"d#d$d%d&d'd(d)d*d+d,d-d*d.d*d/d0d1d2d3d4d5d6d7d8d9d:d*d;d<d=Zi dd>dddd?dd@ddAddBddCddDddEd!dFd#dGd%dHd'dId)d*d+dJd-d*d.d*i dKdLdMdLdNdOdPdOdQdRdSdTdUdVdWdXdYdZd[d\d]d^d_d`dad*dbdcdddedfddgdhi didjdkdldmdndodpdqdrdsdGdtdudvdwdxdydzd{d|dhd}dd~dddTddddddi ddddddddddRdd?ddddydddddddddd*ddddddddi ddddddddddddddddddddddddddddddddddi ddddddRddddddddddddeddœddǓddɓddɓddɓddɓddɓddɓi ddГddjddӓddӓddӓddӓddؓddؓddؓddؓddddޓdddddddddddddddddddd	Zi dddddddddddddddddddddddddd ddddddddi d	d
dddddddddddddddddddddd d!d"d#d$d%d&d'd(d)d*i d+d,d-d.d/d0d1d2d3d4d5d6d7d8d9d:d;d<d=d>d?d@dAdBdCdDdEdFdGdHdIdJdKdLi dMdNdOdPdQdRdSdTdUdVdWdXdYdZd[d\d]d^d_d`dadbdcdddedfdgdhdidjdkdldmdni dodpdqdrdsdtdudvdwdxdydzd{d|d}d~ddddddddddddddddddi ddddddddddddddddgddddddddddddddddddi ddddddddddddddddddÓdĐdœdƐdǓdȐdɓdʐd˓d̐d͓dΐdϓdАdѓdҐdӓdԐdՐd֐dלZg dآZed   d   Zed   d   Ze	 	 dސd܄       Zy(  UnicodeDammitzA class for detecting the encoding of a *ML document and
    converting it to a Unicode string. If the source encoding is
    windows-1252, can replace MS smart quotes with their HTML or XML
    equivalents.z	mac-romanz	shift-jis)	macintoshzx-sjis)rt   z
iso-8859-1z
iso-8859-2NFc                    || _         g | _        d| _        || _        t	        j
                  t              | _        t        ||||      | _	        t        |t              s|dk(  r|| _        t        |      | _        d| _        y| j                  j                  | _        d}| j                  j                  D ]-  }| j                  j                  }| j!                  |      }|- n |sX| j                  j                  D ]?  }|dk7  r| j!                  |d      }|| j                  j#                  d       d| _         n || _        |sd| _        yy)aP  Constructor.

        :param markup: A bytestring representing markup in an unknown encoding.
        :param override_encodings: These encodings will be tried first,
           before any sniffing code is run.

        :param smart_quotes_to: By default, Microsoft smart quotes will, like all other characters, be converted
           to Unicode characters. Setting this to 'ascii' will convert them to ASCII quotes instead.
           Setting it to 'xml' will convert them to XML entity references, and setting it to 'html'
           will convert them to HTML entity references.
        :param is_html: If True, this markup is considered to be HTML. Otherwise
            it's assumed to be XML.
        :param exclude_encodings: These encodings will not be considered, even
            if the sniffing code thinks they might make sense.
        Fr   Nr   rG   zSSome characters could not be decoded, and were replaced with REPLACEMENT CHARACTER.T)smart_quotes_totried_encodingscontains_replacement_charactersrg   logging	getLoggerrY   logr`   detectorr   r	   rj   unicode_markuporiginal_encodingrw   _convert_fromwarning)rH   rj   rb   r   rg   re   ur   s           r   rm   zUnicodeDammit.__init__  sT   "  /!/4,$$X.(&1BD fc"fl DK"%f+D%)D" mm**// 	H]]))F""8,A}		  !MM33 	w&**8Y?A=HH$$C <@D8	  %)D" r   c                    |j                  d      }| j                  dk(  r+| j                  j                  |      j	                         }|S | j
                  j                  |      }t        |      t        k(  r}| j                  dk(  r7dj	                         |d   j	                         z   dj	                         z   }|S dj	                         |d   j	                         z   dj	                         z   }|S |j	                         }|S )z[Changes a MS smart quote character to an XML or HTML
        entity, or an ASCII character.   r   r   z&#x;r6   r   )r=   r   MS_CHARS_TO_ASCIIr<   encodeMS_CHARStypetuple)rH   matchorigrO   s       r   _sub_ms_charzUnicodeDammit._sub_ms_char  s     {{1~7*((,,T299;C 
 --##D)CCyE!''50,,.3q6==?:SZZ\IC
 
 **,Q83::<GC 
 jjl
r   c                    | j                  |      }|r||f| j                  v ry| j                  j                  ||f       | j                  }| j                  A|| j
                  v r3d}t        j                  |      }|j                  | j                  |      }	 | j                  |||      }|| _        || _        | j                  S # t        $ r
}Y d}~yd}~ww xY w)z|Attempt to convert the markup to the proposed encoding.

        :param proposed: The name of a character encoding.
        Ns   ([-]))
find_codecr   r#   rj   r   ENCODINGS_WITH_SMART_QUOTESr%   r&   rO   r   _to_unicoder   	Exception)rH   proposederrorsrj   smart_quotes_resmart_quotes_compiledr   rv   s           r   r   zUnicodeDammit._convert_from  s    
 ??8,Hf-1E1EE##Xv$67   ,D<<<.O$&JJ$?!*..t/@/@&IF		   6:ADK%-D" {{  	 	s   !C	 		CCc                     t        |||      S )z}Given a string and its encoding, decodes the string into Unicode.

        :param encoding: The name of an encoding.
        )r	   )rH   r}   r   r   s       r   r   zUnicodeDammit._to_unicode	  s    
 46**r   c                 H    | j                   sy| j                  j                  S )zhIf the markup is an HTML document, returns the encoding declared _within_
        the document.
        N)rg   r   rh   )rH   s    r   declared_html_encodingz$UnicodeDammit.declared_html_encoding  s    
 ||}}...r   c                 N   | j                  | j                  j                  ||            xsf |xr! | j                  |j                  dd            xs? |xr! | j                  |j                  dd            xs |xr |j	                         xs |}|r|j	                         S y)zConvert the name of a character set to a codec name.

        :param charset: The name of a character set.
        :return: The name of a codec.
        -r   _N)_codecCHARSET_ALIASESr<   rG   rd   )rH   charsetrI   s      r   r   zUnicodeDammit.find_codec  s     T1155gwGH Dt{{7??3+CDEt{{7??3+DE .w}} 	 	 ;;= r   c                 n    |s|S d }	 t        j                  |       |}|S # t        t        f$ r Y |S w xY wr   )codecsr'   LookupError
ValueError)rH   r   codecs      r   r   zUnicodeDammit._codec)  sJ    N	MM'"E  Z( 		s   ! 44   )euro20AC       )sbquo201A   )fnof192   )bdquo201E   )hellip2026   )dagger2020   )Dagger2021   )circ2C6   )permil2030   )Scaron160   )lsaquo2039   )OElig152   ?   )z#x17D17D      )lsquo2018)rsquo2019)ldquo201C)rdquo201D)bull2022)ndash2013)mdash2014)tilde2DC)trade2122)scaron161)rsaquo203A)oelig153)z#x17E17E)Yumlr   )                                             EUR,fz,,z...+z++^%Sr7   OEZr  r4   r  r	  r5   r
  r  *r  r   r  z--r  ~r  z(TM)r  r   r  r8   r  oer  r  zr  Y      !   c   GBP   $   YEN   |      z..   r      z(th)   z<<         z(R)      o   z+-   2   3   )r4   acute   r      P         1      z>>   z1/4   z1/2   z3/4      A                  AE   C   E            I            D   N   O                     U               b   B   a                  ae      rv               i               n               /y)	                              s   €   s   ‚   s   ƒ   s   „   s   …   s   †   s   ‡   s   ˆ   s   ‰   s   Š   s   ‹   s   Œ   s   Ž   s   ‘   s   ’   s   “   s   ”   s   •   s   –   s   —   s   ˜   s   ™   s   š   s   ›   s   œ   s   ž   s   Ÿ   s       s   ¡   s   ¢   s   £   s   ¤   s   ¥   s   ¦   s   §   s   ¨   s   ©   s   ª   s   «   s   ¬   s   ­   s   ®   s   ¯   s   °   s   ±   s   ²   s   ³   s   ´   s   µ   s   ¶   s   ·   s   ¸   s   ¹   s   º   s   »   s   ¼   s   ½   s   ¾   s   ¿   s   À   s   Á   s   Â   s   Ã   s   Ä   s   Å   s   Æ   s   Ç   s   È   s   É   s   Ê   s   Ë   s   Ì   s   Í   s   Î   s   Ï   s   Ð   s   Ñ   s   Ò   s   Ó   s   Ô   s   Õ   s   Ö   s   ×   s   Ø   s   Ù   s   Ú   s   Û   s   Ü   s   Ý   s   Þ   s   ß   s   à      s   â   s   ã   s   ä   s   å   s   æ   s   ç   s   è   s   é   s   ê   s   ë   s   ì   s   í   s   î   s   ï   s   ð   s   ñ   s   ò   s   ó   s   ô   s   õ   s   ö   s   ÷   s   ø   s   ù   s   ú   s   ûs   üs   ýs   þ)         ))r  r  rz   )r  r  r{   )r  r  ry   r   r   c                    |j                  dd      j                         dvrt        d      |j                         dvrt        d      g }d}d}|t        |      k  r||   }t	        |t
              st        |      }|| j                  k\  r7|| j                  k  r(| j                  D ]  \  }}	}
||k\  s||	k  s||
z  } nT nR|dk\  rH|| j                  v r:|j                  |||        |j                  | j                  |          |d	z  }|}n|d	z  }|t        |      k  r|dk(  r|S |j                  ||d
        dj                  |      S )a   Fix characters from one encoding embedded in some other encoding.

        Currently the only situation supported is Windows-1252 (or its
        subset ISO-8859-1), embedded in UTF-8.

        :param in_bytes: A bytestring that you suspect contains
            characters from multiple encodings. Note that this _must_
            be a bytestring. If you've already converted the document
            to Unicode, you're too late.
        :param main_encoding: The primary encoding of `in_bytes`.
        :param embedded_encoding: The encoding that was used to embed characters
            in the main document.
        :return: A bytestring in which `embedded_encoding`
          characters have been converted to their `main_encoding`
          equivalents.
        r   r   )rt   windows_1252zPWindows-1252 and ISO-8859-1 are the only currently supported embedded encodings.)utf8rs   z4UTF-8 is the only currently supported main encoding.r   r  r   Nr   )rG   rd   NotImplementedErrorr|   r   r   ordFIRST_MULTIBYTE_MARKERLAST_MULTIBYTE_MARKERMULTIBYTE_MARKERS_AND_SIZESWINDOWS_1252_TO_UTF8r#   r$   )r?   in_bytesmain_encodingembedded_encodingbyte_chunkschunk_startposbytestartendsizes              r   	detwinglezUnicodeDammit.detwinglei  s   & $$S#.446 ?, ,%&' '  (99%FH H CM!C=DdC(4y222C555 ),(G(G $E3u}t $#*B*B"B ""8K#<= ""3#;#;D#ABq! q3 CM!4 !O x56xx$$r   )strict)r  rt   )rY   rZ   r[   r\   r   r   rm   r   r   r   r   r   r   r   r   r   r$  r#  r!  r"  r^   r/  r   r   r   r   r     sg    %0!,.O#
 35!%u?*B">+ / / 	() ((*( ( *	(
 +( +( +( ( +( *( +( )( ( )( (  !(" +***)**)**+))%?(HHB
%B
#B
 	#B
 	#	B

 	$B
 	%B
 	#B
 	$B
 	#B
 	#B
 	#B
 	#B
 	$B
 	#B
 	#B
  	#!B
" 	##B
$ 	#%B
& 	#'B
( 	#)B
* 	#+B
, 	#-B
. 	#/B
0 	$1B
2 	#3B
4 	&5B
6 	#7B
8 	#9B
: 	$;B
< 	#=B
> 	#?B
@ 	#AB
B 	#CB
D 	#EB
F 	#GB
H 	%IB
J 	#KB
N 	%OB
P 	#QB
R 	#SB
T 	$UB
V 	"WB
X 	&YB
Z 	$[B
\ 	#]B
^ 	#_B
` 	%aB
b 	#cB
d 	#eB
f 	$gB
h 	#iB
j 	#kB
l 	.mB
n 	#oB
p 	#qB
r 	#sB
t 	#uB
v 	#wB
x 	&yB
z 	${B
| 	%}B
~ 	%B
@ 	%AB
B 	#CB
D 	#EB
F 	#GB
H 	#IB
J 	#KB
L 	#MB
N 	#OB
P 	$QB
R 	#SB
T 	#UB
V 	#WB
X 	#YB
Z 	#[B
\ 	#]B
^ 	#_B
` 	#aB
b 	#cB
d 	#eB
f 	#gB
h 	#iB
j 	#kB
l 	#mB
n 	#oB
p 	#qB
r 	#sB
t 	#uB
v 	#wB
x 	#yB
z 	#{B
| 	#}B
~ 	#B
@ 	#AB
B 	#CB
D 	#EB
F 	#GB
H 	#IB
J 	#KB
L 	#MB
N 	#OB
P 	$QB
R 	#SB
T 	#UB
V 	#WB
X 	#YB
Z 	#[B
\ 	#]B
^ 	#_B
` 	#aB
b 	#cB
d 	#eB
f 	#gB
h 	#iB
j 	#kB
l 	#mB
n 	#oB
p 	#qB
r CB
R{
{
{
 	{{
 		{

 	{
 	{
 	{
 	{{
 	{
 	{{
 	{
 	{{
 	{{
 	{
 	{
  	!{
" 	#{
$ 	%{
& 	'{
( 	){
* 	{+{
, 	-{
. 	{/{
0 	1{
2 	{3{
4 	{5{
6 	{7{
8 	{9{
: 	{;{
< 	{={
> 	{?{
@ 	{A{
B 	{C{
D 	{E{
F 	{G{
H 	{I{
J 	{K{
L 	{M{
N 	{O{
P 	{Q{
R 	{S{
T 	{U{
V 	{W{
X 	{Y{
Z 	{[{
\ 	{]{
^ 	{_{
` 	{a{
b 	{c{
d 	{e{
f 	{g{
h 	{i{
j 	{k{
l 	{m{
n 	{o{
p 	{q{
r 	{s{
t 	{u{
v 	{w{
x 	{y{
z 	{{{
| 	{}{
~ 	{{
@ 	{A{
B 	{C{
D 	{E{
F 	{G{
H 	{I{
J 	{K{
L 	{M{
N 	{O{
P 	{Q{
R 	{S{
T 	{U{
V 	{W{
X 	{Y{
Z 	{[{
\ 	{]{
^ 	{_{
` 	{a{
b 	{c{
d 	{e{
f 	{g{
h 	{i{
j 	{k{
l 	{m{
n 	{o{
p 	{q{
r 	{s{
t 	{u{
v 	{w{
x 	{y{
z 	w{{
| 	{}{
~ 	{{
@ 	{A{
B 	{C{
D 	{E{
F 	{G{
H 	{I{
J 	{K{
L 	{M{
N 	{O{
P 	{Q{
R 	{S{
T 	{U{
V 	{W{
X 	{Y{
Z 	{[{
\ 	{]{
^ 	{_{
` 	{a{
b 	{c{
d 	{e{
f 	{g{
h 	{i{
j 	{k{
l 	{m{
n 	{o{
p u{
z#
 9;A>7;A>/5$2@% @%r   r   )r\   __license__r   html.entitiesr   r%   r   stringchardet_typer
   r   ImportErrorr   iconv_codecxml_encoding	html_metadictr   r&   r   ra  r   r	   objectr   r`   r   r   r   r   <module>r;     sC     ( 	    .2	 ;C	vRZZ	((12448BJJ|**73RTT:U 
 RZZ	244(BJJ|RTT*S 
Z, Z,zb bHe% e%S   		1  	.  		sF   C/ D /D5C=<D=DDDDDDD