
    Mhy                       U d dl mZ dZd dlmZ d dlZd dlmZ d dlm	Z	m
Z
mZmZmZmZmZmZmZmZmZ d dlZd dlZd dlmZmZmZmZmZmZmZmZmZm Z  d dl!m"Z" d d	l#m$Z$m%Z% d d
l&m'Z' erd dl(m)Z) d dlm*Z*m+Z+ d dl#m,Z,m-Z-m.Z.m/Z/m0Z0 g dZ1dZ2dZ3dZ4dZ5dZ6dZ7g dZ1 G d de8          Z9 e9            Z:de;d<    G d de8          Z< G d de<          Z= G d de<          Z> G d d e8          Z?d*d%Z@d&d'lAmBZB  e@eB           	 d&d(lAmCZC  e@eC           n# eD$ r Y nw xY w	 d&d)lAmEZE  e@eE           dS # eD$ r Y dS w xY w)+    )annotationsMIT)defaultdictN)
ModuleType)AnycastDictIterableListOptionalPatternSetTupleTypeTYPE_CHECKING)
AttributeDictAttributeValueListCharsetMetaAttributeValueContentMetaAttributeValueRubyParenthesisStringRubyTextString
StylesheetScriptTemplateStringnonwhitespace_re)ParserRejectedMarkup)_AttributeValues_RawAttributeValue)XMLParsedAsHTMLWarning)BeautifulSoup)NavigableStringTag)_AttributeValue	_Encoding
_Encodings_RawOrProcessedAttributeValues
_RawMarkup)HTMLTreeBuilderSAXTreeBuilderTreeBuilderTreeBuilderRegistryfast
permissivestrictxmlhtmlhtml5)r+   r*   r(   DetectsXMLParsedAsHTMLr   c                  @    e Zd ZU dZded<   ded<   ddZddZddZdS )r+   zYA way of looking up TreeBuilder subclasses by their name or by desired
    features.
    z"Dict[str, List[Type[TreeBuilder]]]builders_for_featurezList[Type[TreeBuilder]]buildersreturnNonec                F    t          t                    | _        g | _        d S N)r   listr4   r5   selfs    T/var/www/html/test/jupyter/venv/lib/python3.11/site-packages/bs4/builder/__init__.py__init__zTreeBuilderRegistry.__init__^   s    $/$5$5!    treebuilder_classtype[TreeBuilder]c                    |j         D ]#}| j        |                             d|           $| j                            d|           dS )zRegister a treebuilder based on its advertised features.

        :param treebuilder_class: A subclass of `TreeBuilder`. its
           `TreeBuilder.features` attribute should list its features.
        r   N)featuresr4   insertr5   )r<   r@   features      r=   registerzTreeBuilderRegistry.registerb   sY     )1 	L 	LG%g.55a9JKKKKQ 122222r?   rC   strOptional[Type[TreeBuilder]]c                *   t          | j                  dk    rdS t          |          dk    r| j        d         S t          |          }|                                 d}d}t          |          dk    r|                                }| j                            |g           }t          |          dk    r6||}t          |          }n"|                    t          |                    }t          |          dk    ||dS |D ]
}||v r|c S dS )aj  Look up a TreeBuilder subclass with the desired features.

        :param features: A list of features to look for. If none are
            provided, the most recently registered TreeBuilder subclass
            will be used.
        :return: A TreeBuilder subclass, or None if there's no
            registered subclass with all the requested features.
        r   N)	lenr5   r:   reversepopr4   getsetintersection)r<   rC   feature_list
candidatescandidate_setrE   we_have_the_feature	candidates           r=   lookupzTreeBuilderRegistry.lookupl   sE    t}""4x==A =## H~~
,!##"&&((G"&";"?"?"L"L&''!++%!4J$'
OOMM %2$>$>sCV?W?W$X$XM ,!##  J$64# 	! 	!IM))     *tr?   Nr6   r7   )r@   rA   r6   r7   )rC   rG   r6   rH   )__name__
__module____qualname____doc____annotations__r>   rF   rU    r?   r=   r+   r+   V   sv           =<<<%%%%   3 3 3 3+ + + + + +r?   r+   builder_registryc                     e Zd ZU dZ e            Zded<   eeeeeeefdAdZ	dZ
ded<   g Zded<   g Zded<   dZd	ed<   dZd	ed<   ded<   dZded<   ded<   ded<   ded
<   d	ed <    ee          Zded!<    e            Zded"<   i Zd#ed$<   dZded%<   dZd	ed&<   dBd*ZdCd+ZdDd-ZdEd0Z	 	 	 dFdGd7ZdHd9ZdId<ZdJd@ZdS )Kr*   a  Turn a textual document into a Beautiful Soup object tree.

    This is an abstract superclass which smooths out the behavior of
    different parser libraries into a single, unified interface.

    :param multi_valued_attributes: If this is set to None, the
     TreeBuilder will not turn any values for attributes like
     'class' into lists. Setting this to a dictionary will
     customize this behavior; look at :py:attr:`bs4.builder.HTMLTreeBuilder.DEFAULT_CDATA_LIST_ATTRIBUTES`
     for an example.

     Internally, these are called "CDATA list attributes", but that
     probably doesn't make sense to an end-user, so the argument name
     is ``multi_valued_attributes``.

    :param preserve_whitespace_tags: A set of tags to treat
     the way <pre> tags are treated in HTML. Tags in this set
     are immune from pretty-printing; their contents will always be
     output as-is.

    :param string_containers: A dictionary mapping tag names to
     the classes that should be instantiated to contain the textual
     contents of those tags. The default is to use NavigableString
     for every tag, no matter what the name. You can override the
     default by changing :py:attr:`DEFAULT_STRING_CONTAINERS`.

    :param store_line_numbers: If the parser keeps track of the line
     numbers and positions of the original markup, that information
     will, by default, be stored in each corresponding
     :py:class:`bs4.element.Tag` object. You can turn this off by
     passing store_line_numbers=False; then Tag.sourcepos and
     Tag.sourceline will always be None. If the parser you're using
     doesn't keep track of this information, then store_line_numbers
     is irrelevant.

    :param attribute_dict_class: The value of a multi-valued attribute
      (such as HTML's 'class') willl be stored in an instance of this
      class.  The default is Beautiful Soup's built-in
      `AttributeValueList`, which is a normal Python list, and you
      will probably never need to change it.
    r   USE_DEFAULTmulti_valued_attributesDict[str, Set[str]]preserve_whitespace_tagsSet[str]store_line_numbersboolstring_containers Dict[str, Type[NavigableString]]empty_element_tagsattribute_dict_classType[AttributeDict]attribute_value_list_classType[AttributeValueList]c                *   d | _         || j        u r| j        }|| _        || j        u r| j        }|| _        || j        u r| j        | _        n|| _        || j        k    r| j        }|| _	        || j        k    r| j
        }|| _        || _        || _        d S r9   )soupr_   DEFAULT_CDATA_LIST_ATTRIBUTEScdata_list_attributes DEFAULT_PRESERVE_WHITESPACE_TAGSrb   DEFAULT_EMPTY_ELEMENT_TAGSrh   TRACKS_LINE_NUMBERSrd   DEFAULT_STRING_CONTAINERSrf   ri   rk   )r<   r`   rb   rd   rf   rh   ri   rk   s           r=   r>   zTreeBuilder.__init__   s     	"d&666&*&H#%<"#t'777'+'L$(@%!111&*&ED##&8D# !111!%!9"4 000 $ >!2$8!*D'''r?   z[Unknown tree builder]rG   NAMEzIterable[str]ALTERNATE_NAMESrC   Fis_xml	picklablezOptional[BeautifulSoup]rn   NzOptional[Set[str]]rp   tracks_line_numbersro   rq   ,Dict[str, Type[bs4.element.NavigableString]]rt   rr   rs   r    r6   r7   c                    || _         dS )zThe BeautifulSoup object has been initialized and is now
        being associated with the TreeBuilder.

        :param soup: A BeautifulSoup object.
        N)rn   )r<   rn   s     r=   initialize_soupzTreeBuilder.initialize_soup  s     			r?   c                    dS )zDo any work necessary to reset the underlying parser
        for a new document.

        By default, this does nothing.
        Nr\   r;   s    r=   resetzTreeBuilder.reset  s	     	r?   tag_namec                &    | j         dS || j         v S )a  Might a tag with this name be an empty-element tag?

        The final markup may or may not actually present this tag as
        self-closing.

        For instance: an HTMLBuilder does not consider a <p> tag to be
        an empty-element tag (it's not in
        HTMLBuilder.empty_element_tags). This means an empty <p> tag
        will be presented as "<p></p>", not "<p/>" or "<p>".

        The default implementation has no opinion about which tags are
        empty-element tags, so a tag will be presented as an
        empty-element tag if and only if it has no children.
        "<foo></foo>" will become "<foo/>", and "<foo>bar</foo>" will
        be left alone.

        :param tag_name: The name of a markup tag.
        NT)rh   )r<   r   s     r=   can_be_empty_elementz TreeBuilder.can_be_empty_element"  s     & "*44222r?   markupr'   c                    t                      )z1Run incoming markup through some parsing process.NotImplementedErrorr<   r   s     r=   feedzTreeBuilder.feed9  s    !###r?   user_specified_encodingOptional[_Encoding]document_declared_encodingexclude_encodingsOptional[_Encodings]KIterable[Tuple[_RawMarkup, Optional[_Encoding], Optional[_Encoding], bool]]c              #     K   |dddfV  dS )a  Run any preliminary steps necessary to make incoming markup
        acceptable to the parser.

        :param markup: The markup that's about to be parsed.
        :param user_specified_encoding: The user asked to try this encoding
           to convert the markup into a Unicode string.
        :param document_declared_encoding: The markup itself claims to be
            in this encoding. NOTE: This argument is not used by the
            calling code and can probably be removed.
        :param exclude_encodings: The user asked *not* to try any of
            these encodings.

        :yield: A series of 4-tuples: (markup, encoding, declared encoding,
            has undergone character replacement)

            Each 4-tuple represents a strategy that the parser can try
            to convert the document to Unicode and parse it. Each
            strategy will be tried in turn.

         By default, the only strategy is to parse the markup
         as-is. See `LXMLTreeBuilderForXML` and
         `HTMLParserTreeBuilder` for implementations that take into
         account the quirks of particular parsers.

        :meta private:

        NFr\   )r<   r   r   r   r   s        r=   prepare_markupzTreeBuilder.prepare_markup=  s$      D dD%''''''r?   fragmentc                    |S )a  Wrap an HTML fragment to make it look like a document.

        Different parsers do this differently. For instance, lxml
        introduces an empty <head> tag, and html5lib
        doesn't. Abstracting this away lets us write simple tests
        which run HTML fragments through the parser and compare the
        results against other HTML fragments.

        This method should not be used outside of unit tests.

        :param fragment: A fragment of HTML.
        :return: A full HTML document.
        :meta private:
        r\   )r<   r   s     r=   test_fragment_to_documentz%TreeBuilder.test_fragment_to_documenta  s	     r?   tagr"   c                    dS )a,  Set up any substitutions that will need to be performed on
        a `Tag` when it's output as a string.

        By default, this does nothing. See `HTMLTreeBuilder` for a
        case where this is used.

        :return: Whether or not a substitution was performed.
        :meta private:
        Fr\   )r<   r   s     r=   set_up_substitutionsz TreeBuilder.set_up_substitutionsr  s	     ur?   attrsr&   r   c                   t          t          |          }|r| j        s|S | j                            dt	                                }| j                            |                                d          }t          |                                          D ]X}||v s|rP||v rL||         }t          |t                    r(| 
                    t          j        |                    }n|}|||<   Y|S )a)  When an attribute value is associated with a tag that can
        have multiple values for that attribute, convert the string
        value to a list of strings.

        Basically, replaces class="foo bar" with class=["foo", "bar"]

        NOTE: This method modifies its input in place.

        :param tag_name: The name of a tag.
        :param attrs: A dictionary containing the tag's attributes.
           Any appropriate attribute values will be modified in place.
        :return: The modified dictionary that was originally passed in.
        *N)r   r   rp   rM   rN   lowerr:   keys
isinstancer   rk   r   findall)	r<   r   r   modified_attrs	universaltag_specificattroriginal_valuemodified_values	            r=   $_replace_cdata_list_attribute_valuesz0TreeBuilder._replace_cdata_list_attribute_values~  s   ( .66 	"T%? 	"!! #8<<S#%%HH	155hnn6F6FMM,,..// 	6 	6Dy  \ dl6J6J 3A2Fn.@AA 4
 &*%D%D(0@@& &NN &4N'5t$r?   )r`   ra   rb   rc   rd   re   rf   rg   rh   rc   ri   rj   rk   rl   )rn   r    r6   r7   rV   )r   rG   r6   re   r   r'   r6   r7   )NNN)
r   r'   r   r   r   r   r   r   r6   r   )r   rG   r6   rG   r   r"   r6   re   )r   rG   r   r&   r6   r   )rW   rX   rY   rZ   objectr_   r[   r   r   r>   ru   rv   rC   rw   rx   rh   r   rN   ro   rq   rt   rr   rs   r|   r~   r   r   r   r   r   r   r\   r?   r=   r*   r*      s@        ( (T vxxK 8C-8#.>I'24A?QE E E E EB )D((((%'O'''' H    FI!!!! .21111....&&&&7777 :ES9I9I!IIII 25$6666 OQPPPP 6:9999 !&%%%%      3 3 3 3.$ $ $ $ 8<:>26"( "( "( "( "(H   "
 
 
 
6 6 6 6 6 6r?   r*   c                  |     e Zd ZdZd fdZd d
Zd!dZd"dZd#dZd$dZ	d%dZ
d&dZd'dZd(dZd!dZd!dZ xZS ))r)   a/  A Beautiful Soup treebuilder that listens for SAX events.

    This is not currently used for anything, and it will be removed
    soon. It was a good idea, but it wasn't properly integrated into the
    rest of Beautiful Soup, so there have been long stretches where it
    hasn't worked properly.
    argsr   kwargsr6   r7   c                    t          j        dt          d            t          t          |           j        |i | d S )NzThe SAXTreeBuilder class was deprecated in 4.13.0 and will be removed soon thereafter. It is completely untested and probably doesn't work; do not use it.   
stacklevel)warningswarnDeprecationWarningsuperr)   r>   )r<   r   r   	__class__s      r=   r>   zSAXTreeBuilder.__init__  sR     i	
 	
 	
 	

 	-nd##,d=f=====r?   r   r'   c                    t                      r9   r   r   s     r=   r   zSAXTreeBuilder.feed  s    !###r?   c                    d S r9   r\   r;   s    r=   closezSAXTreeBuilder.close      r?   namerG   r   Dict[str, str]c                    t          d t          |                                          D                       }| j        J | j                            |d d |           d S )Nc              3  0   K   | ]\  }}|d          |fV  dS )   Nr\   ).0keyvalues      r=   	<genexpr>z.SAXTreeBuilder.startElement.<locals>.<genexpr>  s.      TT*#us1vuoTTTTTTr?   )r   r:   itemsrn   handle_starttag)r<   r   r   s      r=   startElementzSAXTreeBuilder.startElement  s^    TTU[[]]@S@STTTTTy$$$	!!$dE:::::r?   c                L    | j         J | j                             |           d S r9   )rn   handle_endtagr<   r   s     r=   
endElementzSAXTreeBuilder.endElement  s,    y$$$	%%%%%r?   nsTupleTuple[str, str]nodeNamec                2    |                      ||           d S r9   )r   )r<   r   r   r   s       r=   startElementNSzSAXTreeBuilder.startElementNS  s      	(E*****r?   c                0    |                      |           d S r9   )r   )r<   r   r   s      r=   endElementNSzSAXTreeBuilder.endElementNS  s    !!!!!r?   prefix	nodeValuec                    d S r9   r\   )r<   r   r   s      r=   startPrefixMappingz!SAXTreeBuilder.startPrefixMapping  s    r?   c                    d S r9   r\   )r<   r   s     r=   endPrefixMappingzSAXTreeBuilder.endPrefixMapping  s	     	r?   contentc                L    | j         J | j                             |           d S r9   )rn   handle_data)r<   r   s     r=   
characterszSAXTreeBuilder.characters  s,    y$$$	g&&&&&r?   c                    d S r9   r\   r;   s    r=   startDocumentzSAXTreeBuilder.startDocument  r   r?   c                    d S r9   r\   r;   s    r=   endDocumentzSAXTreeBuilder.endDocument  r   r?   )r   r   r   r   r6   r7   r   rV   )r   rG   r   r   r6   r7   r   rG   r6   r7   )r   r   r   rG   r   r   r6   r7   )r   r   r   rG   r6   r7   )r   rG   r   rG   r6   r7   )r   rG   r6   r7   )r   rG   r6   r7   )rW   rX   rY   rZ   r>   r   r   r   r   r   r   r   r   r   r   r   __classcell__)r   s   @r=   r)   r)     s#        > > > > > >$ $ $ $   ; ; ; ;& & & &
+ + + +" " " "
      
' ' ' '          r?   r)   c                      e Zd ZU dZ eg d          Zded<    eg d          Zded<   ee	e
eedZded	<   h d
ddhddhdhdhdhdhdhdhdhdhdZded<    eddg          Zded<   d dZdS )!r(   zpThis TreeBuilder knows facts about HTML, such as which tags are treated
    specially by the HTML standard.
    )areabasebrcolembedhrimginputkeygenlinkmenuitemmetaparamsourcetrackwbrbasefontbgsoundcommandframeimageisindexnextidspacerrc   rr   )#addressarticleaside
blockquotecanvasdddivdldtfieldset
figcaptionfigurefooterformh1h2h3h4h5h6headerr   limainnavnoscriptoloutputppresectiontabletfootulvideoDEFAULT_BLOCK_ELEMENTS)rtrpstylescripttemplaterz   rt   >   classdropzone	accesskeyrelrevheaderszaccept-charsetarchivesizessandboxfor)r   ar   tdthr  r   r   iconiframer  ra   ro   r  textareazset[str]rq   r   r"   r6   re   c                   |j         dk    rdS t          t          t                   |                    d                    }t          t          t                   |                    d                    }|                    d          }d}|t          |          |d<   d}n/|-t          d |D                       rt          |          |d<   d}|S )	a  Replace the declared encoding in a <meta> tag with a placeholder,
        to be substituted when the tag is output to a string.

        An HTML document may come in to Beautiful Soup as one
        encoding, but exit in a different encoding, and the <meta> tag
        needs to be changed to reflect this.

        :return: Whether or not a substitution was performed.

        :meta private:
        r   Fr   charsetz
http-equivNTc              3  F   K   | ]}|                                 d k    V  dS )zcontent-typeN)r   )r   xs     r=   r   z7HTMLTreeBuilder.set_up_substitutions.<locals>.<genexpr>  s@       )
 )
,-AGGII')
 )
 )
 )
 )
 )
r?   )	r   r   r   rG   rM   get_attribute_listr   anyr   )r<   r   r   r0  
http_equivsubstituteds         r=   r   z$HTMLTreeBuilder.set_up_substitutions|  s     8v5 "&hsmSWWY5G5G!H!H!%hsmSWWY5G5G!H!H
 !$ 6 6| D D
  7w??C	NKK S )
 )
1;)
 )
 )
 &
 &
 
 7w??C	NKr?   Nr   )rW   rX   rY   rZ   rN   rr   r[   r  r   r   r   r   r   rt   ro   rq   r   r\   r?   r=   r(   r(     s^          ,/3	
 	
 	
, ,    F (+s$	
 $	
 $	
&( &( & & & &r #"O O      0//U^kk!"+	+': :!    " 25eZ5H1I1I$IIII4 4 4 4 4 4r?   r(   c                      e Zd ZU dZ ej        dej                  Zded<    ej        dej                  Z	ded<   dZ
d	ed
<   dZded<   ded<   ded<   e	 d"d#d            Zed$d%d            Zd&dZd'dZd(d Zd!S ))r2   a  A mixin class for any class (a TreeBuilder, or some class used by a
    TreeBuilder) that's in a position to detect whether an XML
    document is being incorrectly parsed as HTML, and issue an
    appropriate warning.

    This requires being able to observe an incoming processing
    instruction that might be an XML declaration, and also able to
    observe tags as they're opened. If you can't do that for a given
    `TreeBuilder`, there's a less reliable implementation based on
    examining the raw markup.
    z
<[^ +]htmlzPattern[str]LOOKS_LIKE_HTMLs
   <[^ +]htmlzPattern[bytes]LOOKS_LIKE_HTML_Bz<?xmlrG   
XML_PREFIXs   <?xmlbytesXML_PREFIX_BzOptional[str]_first_processing_instruction_root_tag_name   r   Optional[_RawMarkup]r   intr6   re   c                d   |dS |dd         }t          |t                    r8|}|                    | j                  o| j                            |           }n7|}|                    | j                  o| j                            |           }|r|                     |dz              dS dS )a  Perform a check on some markup to see if it looks like XML
        that's not XHTML. If so, issue a warning.

        This is much less reliable than doing the check while parsing,
        but some of the tree builders can't do that.

        :param stacklevel: The stacklevel of the code calling this         function.

        :return: True if the markup looks like non-XHTML XML, False
         otherwise.
        NFi  r   r   T)	r   r;  
startswithr<  r9  searchr:  r8  _warn)clsr   r   markup_blooks_like_xmlmarkup_ss         r=   warn_if_markup_looks_like_xmlz4DetectsXMLParsedAsHTML.warn_if_markup_looks_like_xml  s      >5fe$$ 		9$H%00   ;+226::: N #H%00  9)00888   	IIaI0004ur?      r7   c                R    t          j        t          j        t          |           dS )z/Issue a warning about XML being parsed as HTML.r   N)r   r   r   MESSAGE)rF  r   s     r=   rE  zDetectsXMLParsedAsHTML._warn  s3     	"*"!	
 	
 	
 	
 	
 	
r?   c                "    d| _         d| _        dS )z+Call this method before parsing a document.Nr=  r>  r;   s    r=   _initialize_xml_detectorz/DetectsXMLParsedAsHTML._initialize_xml_detector  s    -1*"r?   processing_instructionc                4    | j         | j        dS || _         dS )a.  Call this method when encountering an XML declaration, or a
        "processing instruction" that might be an XML declaration.

        This helps Beautiful Soup detect potential issues later, if
        the XML document turns out to be a non-XHTML document that's
        being parsed as XML.
        NrO  )r<   rQ  s     r=   _document_might_be_xmlz-DetectsXMLParsedAsHTML._document_might_be_xml  s+     .:". F-C***r?   r   c                    | j         dS || _         |dk    rK| j        F| j                                                            d          r|                     d           dS dS dS dS )zCall this when you encounter the document's root tag.

        This is where we actually check whether an XML document is
        being incorrectly parsed as HTML, and issue the warning.
        Nr0   zxml 
   r   )r>  r=  r   rC  rE  r   s     r=   _root_tag_encounteredz,DetectsXMLParsedAsHTML._root_tag_encountered  s     * F" FNN2>288::EEfMM ? JJ"J%%%%% N>>>>r?   N)r?  )r   r@  r   rA  r6   re   )rK  )r   rA  r6   r7   rV   )rQ  rG   r6   r7   r   )rW   rX   rY   rZ   recompileIr8  r[   r9  r:  r<  classmethodrJ  rE  rP  rS  rV  r\   r?   r=   r2   r2     s3        
 
 %/BJ|RT$B$BOBBBB )3
="$(G(GGGGG J #L"""" 1000!!!!=>        [ D 
 
 
 
 [
# # # #
D D D D*& & & & & &r?   r2   moduler   r6   r7   c                   t           j        t                   }| j        D ]l}t	          | |          }t          |t                    rEt          |||           |j                            |           |j	        
                    |           mdS )z9Copy TreeBuilders from the given module into this module.N)sysmodulesrW   __all__getattr
issubclassr*   setattrappendr]   rF   )r[  this_moduler   objs       r=   register_treebuilders_fromrf  /  s    +h'K 7 7fd##c;'' 	7Ks+++&&t,,,(11#6667 7r?   r   )_htmlparser)	_html5lib)_lxml)r[  r   r6   r7   )F
__future__r   __license__collectionsr   rW  typesr   typingr   r   r	   r
   r   r   r   r   r   r   r   r   r]  bs4.elementr   r   r   r   r   r   r   r   r   r   bs4.exceptionsr   bs4._typingr   r   bs4._warningsr   bs4r    r!   r"   r#   r$   r%   r&   r'   r_  FAST
PERMISSIVESTRICTXMLHTMLHTML_5r   r+   r]   r[   r*   r)   r(   r2   rf   rg  rh  ImportErrorri  r\   r?   r=   <module>r|     s^   " " " " " " "  # # # # # # 				                                 



                        0 / / / / /       
 1 0 0 0 0 0 !!!!!!                       
		  A A A A A& A A AL )<(;(=(=  = = = =U U U U U& U U Up> > > > >[ > > >Bx x x x xk x x xvy& y& y& y& y&V y& y& y&x
7 
7 
7 
7"        ; ' ' '	y)))) 	 	 	D		u%%%%% 	 	 	DD	s$   D DD#D6 6D?>D?