
    ]f^                       U d Z ddlmZ ddlZddlZddlmZ ddlm	Z	 ddl
mZmZmZmZmZ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 d	dlmZmZmZm Z  d	d
l!mZ d	dl"m#Z# ej$        dk     rddlm%Z% nddl
m%Z% ej&        Z' ej(        dYddie j)         G d d                      Z* ej(        dYddie j)         G d d                      Z+ ej(        dYddie j)         G d d                      Z, ej(        dYddie j)         G d d                      Z-er G d de%          Z. G d de%          Z/ G d de%          Z0ee/ej1        e.ej2        f         Z3ee0ej4        f         Z5ee6eeef         e7eef         ee         f         Z8de9d <    ed!e3e8          Z: ed"e5e8          Z;ed#d#d$dZd.            Z<ed#d/d[d2            Z<ed3         Z=de9d4<   d5dd$d\d7Z< ed8          Z> ed9d:          Z? G d; d<ej@        e%e?                   ZA G d= d>e%e>                   ZB G d? d@e%e>                   ZC G dA dBe%          ZD G dC dDe%          ZE G dE dFe%          ZF G dG dHe%          ZGee>ge>f         ZH	 ee>ejI        ge>f         ZJ	 eeCe>         eBe>         f         ZKeeFeGeDeEf         ZLeeJe>         eHe>         f         ZMed]dJ            ZNed^dM            ZNed_dP            ZNd`dSZN edT          ZOereeOd#f         ZPn% ej(        dYi e j)         G dU dV                      ZPereeOd#f         ZQdS  ej(        dYi e j)         G dW dX                      ZQdS )azBThis module contains related classes and functions for validation.    )annotationsN)partialmethod)FunctionType)TYPE_CHECKINGAnyCallableTypeVarUnioncastoverload)core_schema)	AnnotatedLiteral	TypeAlias   )GetCoreSchemaHandler)_core_metadata_decorators	_generics_internal_dataclass)PydanticUserError)      )ProtocolfrozenTc                  &    e Zd ZU dZded<   dd
ZdS )AfterValidatora8  Usage docs: https://docs.pydantic.dev/2.8/concepts/validators/#annotated-validators

    A metadata class that indicates that a validation should be applied **after** the inner validation logic.

    Attributes:
        func: The validator function.

    Example:
        ```py
        from typing_extensions import Annotated

        from pydantic import AfterValidator, BaseModel, ValidationError

        MyInt = Annotated[int, AfterValidator(lambda v: v + 1)]

        class Model(BaseModel):
            a: MyInt

        print(Model(a=1).a)
        #> 2

        try:
            Model(a='a')
        except ValidationError as e:
            print(e.json(indent=2))
            '''
            [
              {
                "type": "int_parsing",
                "loc": [
                  "a"
                ],
                "msg": "Input should be a valid integer, unable to parse string as an integer",
                "input": "a",
                "url": "https://errors.pydantic.dev/2/v/int_parsing"
              }
            ]
            '''
        ```
    Kcore_schema.NoInfoValidatorFunction | core_schema.WithInfoValidatorFunctionfuncsource_typer   handler_GetCoreSchemaHandlerreturncore_schema.CoreSchemac                &    ||          }t          | j        d          }|r;t          t          j        | j                  }t          j        |||j                  S t          t          j        | j                  }t          j        ||          S )Nafterschema
field_namer(   )	_inspect_validatorr   r   r   WithInfoValidatorFunction"with_info_after_validator_functionr)   NoInfoValidatorFunction no_info_after_validator_functionselfr    r!   r(   info_argr   s         P/var/www/html/env/lib/python3.11/site-packages/pydantic/functional_validators.py__get_pydantic_core_schema__z+AfterValidator.__get_pydantic_core_schema__I   s    %%%di99 	U=tyIIDA$vbibtuuuu;TYGGD?VTTTT    Nr    r   r!   r"   r#   r$   __name__
__module____qualname____doc____annotations__r4    r5   r3   r   r      sJ         ' 'R VUUUU U U U U Ur5   r   c                  &    e Zd ZU dZded<   dd
ZdS )BeforeValidatora  Usage docs: https://docs.pydantic.dev/2.8/concepts/validators/#annotated-validators

    A metadata class that indicates that a validation should be applied **before** the inner validation logic.

    Attributes:
        func: The validator function.

    Example:
        ```py
        from typing_extensions import Annotated

        from pydantic import BaseModel, BeforeValidator

        MyInt = Annotated[int, BeforeValidator(lambda v: v + 1)]

        class Model(BaseModel):
            a: MyInt

        print(Model(a=1).a)
        #> 2

        try:
            Model(a='a')
        except TypeError as e:
            print(e)
            #> can only concatenate str (not "int") to str
        ```
    r   r   r    r   r!   r"   r#   r$   c                &    ||          }t          | j        d          }|r;t          t          j        | j                  }t          j        |||j                  S t          t          j        | j                  }t          j        ||          S )Nbeforer'   r*   )	r+   r   r   r   r,   #with_info_before_validator_functionr)   r.   !no_info_before_validator_functionr0   s         r3   r4   z,BeforeValidator.__get_pydantic_core_schema__u   s    %%%di:: 	V=tyIIDB4PVcjcuvvvv;TYGGD@fUUUUr5   Nr6   r7   r=   r5   r3   r?   r?   T   sI          : VUUUV V V V V Vr5   r?   c                  &    e Zd ZU dZded<   dd
ZdS )PlainValidatora;  Usage docs: https://docs.pydantic.dev/2.8/concepts/validators/#annotated-validators

    A metadata class that indicates that a validation should be applied **instead** of the inner validation logic.

    Attributes:
        func: The validator function.

    Example:
        ```py
        from typing_extensions import Annotated

        from pydantic import BaseModel, PlainValidator

        MyInt = Annotated[int, PlainValidator(lambda v: int(v) + 1)]

        class Model(BaseModel):
            a: MyInt

        print(Model(a='1').a)
        #> 2
        ```
    r   r   r    r   r!   r"   r#   r$   c                ~   ddl m} 	  ||          }t          j        d |          }n# |$ r d }Y nw xY wt	          | j        d          }|r;t          t          j        | j                  }t          j        ||j	        |          S t          t          j
        | j                  }t          j        ||          S )Nr   PydanticSchemaGenerationErrorc                     ||           S Nr=   vhs     r3   <lambda>z=PlainValidator.__get_pydantic_core_schema__.<locals>.<lambda>   s    bcbcdebfbf r5   functionr(   plain)r)   serialization)rR   )pydanticrH   r   #wrap_serializer_function_ser_schemar+   r   r   r,   "with_info_plain_validator_functionr)   r.    no_info_plain_validator_function)r1   r    r!   rH   r(   rR   r2   r   s           r3   r4   z+PlainValidator.__get_pydantic_core_schema__   s     	;:::::	!W[))F'KUfUfouvvvMM, 	! 	! 	! MMM	! &di99 	c=tyIIDA!3=    ;TYGGD?Tabbbbs   "+ 55Nr6   r7   r=   r5   r3   rE   rE      sI          . VUUUc c c c c cr5   rE   c                  &    e Zd ZU dZded<   dd
ZdS )WrapValidatora  Usage docs: https://docs.pydantic.dev/2.8/concepts/validators/#annotated-validators

    A metadata class that indicates that a validation should be applied **around** the inner validation logic.

    Attributes:
        func: The validator function.

    ```py
    from datetime import datetime

    from typing_extensions import Annotated

    from pydantic import BaseModel, ValidationError, WrapValidator

    def validate_timestamp(v, handler):
        if v == 'now':
            # we don't want to bother with further validation, just return the new value
            return datetime.now()
        try:
            return handler(v)
        except ValidationError:
            # validation failed, in this case we want to return a default value
            return datetime(2000, 1, 1)

    MyTimestamp = Annotated[datetime, WrapValidator(validate_timestamp)]

    class Model(BaseModel):
        a: MyTimestamp

    print(Model(a='now').a)
    #> 2032-01-02 03:04:05.000006
    print(Model(a='invalid').a)
    #> 2000-01-01 00:00:00
    ```
    zScore_schema.NoInfoWrapValidatorFunction | core_schema.WithInfoWrapValidatorFunctionr   r    r   r!   r"   r#   r$   c                &    ||          }t          | j        d          }|r;t          t          j        | j                  }t          j        |||j                  S t          t          j        | j                  }t          j        ||          S )Nwrapr'   r*   )	r+   r   r   r   WithInfoWrapValidatorFunction!with_info_wrap_validator_functionr)   NoInfoWrapValidatorFunctionno_info_wrap_validator_functionr0   s         r3   r4   z*WrapValidator.__get_pydantic_core_schema__   s    %%%di88 	TA49MMD@fahastttt?KKD>tFSSSSr5   Nr6   r7   r=   r5   r3   rX   rX      sJ         " "H ^]]]T T T T T Tr5   rX   c                      e Zd ZddZdS )_OnlyValueValidatorClsMethodclsr   valuer#   c                   d S rJ   r=   r1   ra   rb   s      r3   __call__z%_OnlyValueValidatorClsMethod.__call__         r5   Nra   r   rb   r   r#   r   r8   r9   r:   re   r=   r5   r3   r`   r`      s        ??????r5   r`   c                      e Zd Zd	dZdS )
_V2ValidatorClsMethodra   r   rb   info_core_schema.ValidationInfor#   c                   d S rJ   r=   r1   ra   rb   rk   s       r3   re   z_V2ValidatorClsMethod.__call__   rf   r5   Nra   r   rb   r   rk   rl   r#   r   rh   r=   r5   r3   rj   rj      s        bbbbbbr5   rj   c                      e Zd Zdd	Zd
S )_V2WrapValidatorClsMethodra   r   rb   r!   )_core_schema.ValidatorFunctionWrapHandlerrk   rl   r#   c                   d S rJ   r=   r1   ra   rb   r!   rk   s        r3   re   z"_V2WrapValidatorClsMethod.__call__   s	     #r5   N)
ra   r   rb   r   r!   rr   rk   rl   r#   r   rh   r=   r5   r3   rq   rq      s(        	 	 	 	 	 	r5   rq   r   _PartialClsOrStaticMethod"_V2BeforeAfterOrPlainValidatorType_V2WrapValidatorType.)modecheck_fieldsfieldstrfieldsrx   #Literal['before', 'after', 'plain']ry   bool | Noner#   RCallable[[_V2BeforeAfterOrPlainValidatorType], _V2BeforeAfterOrPlainValidatorType]c                  d S rJ   r=   rz   rx   ry   r|   s       r3   field_validatorr     s     Z]Y\r5   )ry   Literal['wrap']6Callable[[_V2WrapValidatorType], _V2WrapValidatorType]c                  d S rJ   r=   r   s       r3   r   r     s
     >ASr5   )rA   r&   rZ   rQ   FieldValidatorModesr&   Callable[[Any], Any]c                  t          | t                    rt          dd          | gR t          d D                       st          dd          dfd}|S )a:  Usage docs: https://docs.pydantic.dev/2.8/concepts/validators/#field-validators

    Decorate methods on the class indicating that they should be used to validate fields.

    Example usage:
    ```py
    from typing import Any

    from pydantic import (
        BaseModel,
        ValidationError,
        field_validator,
    )

    class Model(BaseModel):
        a: str

        @field_validator('a')
        @classmethod
        def ensure_foobar(cls, v: Any):
            if 'foobar' not in v:
                raise ValueError('"foobar" not found in a')
            return v

    print(repr(Model(a='this is foobar good')))
    #> Model(a='this is foobar good')

    try:
        Model(a='snap')
    except ValidationError as exc_info:
        print(exc_info)
        '''
        1 validation error for Model
        a
          Value error, "foobar" not found in a [type=value_error, input_value='snap', input_type=str]
        '''
    ```

    For more in depth examples, see [Field Validators](../concepts/validators.md#field-validators).

    Args:
        field: The first field the `field_validator` should be called on; this is separate
            from `fields` to ensure an error is raised if you don't pass at least one.
        *fields: Additional field(s) the `field_validator` should be called on.
        mode: Specifies whether to validate the fields before or after validation.
        check_fields: Whether to check that the fields actually exist on the model.

    Returns:
        A decorator that can be used to decorate a function to be used as a field_validator.

    Raises:
        PydanticUserError:
            - If `@field_validator` is used bare (with no fields).
            - If the args passed to `@field_validator` as fields are not strings.
            - If `@field_validator` applied to instance methods.
    z`@field_validator` should be used with fields and keyword arguments, not bare. E.g. usage should be `@validator('<field_name>', ...)`zvalidator-no-fieldscodec              3  @   K   | ]}t          |t                    V  d S rJ   )
isinstancer{   ).0rz   s     r3   	<genexpr>z"field_validator.<locals>.<genexpr>l  s,      ::%z%%%::::::r5   z`@field_validator` fields should be passed as separate string args. E.g. usage should be `@validator('<field_name_1>', '<field_name_2>', ...)`zvalidator-invalid-fieldsfHCallable[..., Any] | staticmethod[Any, Any] | classmethod[Any, Any, Any]r#   (_decorators.PydanticDescriptorProxy[Any]c                    t          j        |           rt          dd          t          j        |           } t          j                  }t          j        | |          S )Nz8`@field_validator` cannot be applied to instance methodszvalidator-instance-methodr   )r|   rx   ry   )r   is_instance_method_from_sigr   %ensure_classmethod_based_on_signatureFieldValidatorDecoratorInfoPydanticDescriptorProxy)r   dec_infory   r|   rx   s     r3   deczfield_validator.<locals>.decs  sr     2155 	#JQl   
 =a@@:&tbnooo21h???r5   )r   r   r#   r   )r   r   r   all)rz   rx   ry   r|   r   s    ``` r3   r   r   &  s    ~ %&& 
E&
 
 
 	

 ^V^^F::6::::: 
Y+
 
 
 	
@ @ @ @ @ @ @ @ Jr5   
_ModelType_ModelTypeCo)	covariantc                      e Zd ZdZ	 d
dd	ZdS )ModelWrapValidatorHandlerz[@model_validator decorated function handler argument type. This is used when `mode='wrap'`.Nrb   r   outer_locationstr | int | Noner#   r   c                   d S rJ   r=   )r1   rb   r   s      r3   re   z"ModelWrapValidatorHandler.__call__  s	     	r5   rJ   )rb   r   r   r   r#   r   r8   r9   r:   r;   re   r=   r5   r3   r   r     s8        ee
 ,0      r5   r   c                      e Zd ZdZdd
ZdS )ModelWrapValidatorWithoutInfozA @model_validator decorated function signature.
    This is used when `mode='wrap'` and the function does not have info argument.
    ra   type[_ModelType]rb   r   r!   %ModelWrapValidatorHandler[_ModelType]r#   r   c                   d S rJ   r=   )r1   ra   rb   r!   s       r3   re   z&ModelWrapValidatorWithoutInfo.__call__  s	     Sr5   N)ra   r   rb   r   r!   r   r#   r   r   r=   r5   r3   r   r     s2         	 	 	 	 	 	r5   r   c                      e Zd ZdZddZdS )ModelWrapValidatorzQA @model_validator decorated function signature. This is used when `mode='wrap'`.ra   r   rb   r   r!   r   rk   rl   r#   r   c                   d S rJ   r=   rt   s        r3   re   zModelWrapValidator.__call__  s	     Sr5   N)
ra   r   rb   r   r!   r   rk   rl   r#   r   r   r=   r5   r3   r   r     s.        [[
 
 
 
 
 
r5   r   c                      e Zd ZdZddZdS )#FreeModelBeforeValidatorWithoutInfoA @model_validator decorated function signature.
    This is used when `mode='before'` and the function does not have info argument.
    rb   r   r#   c                   d S rJ   r=   )r1   rb   s     r3   re   z,FreeModelBeforeValidatorWithoutInfo.__call__  s	     cr5   N)rb   r   r#   r   r   r=   r5   r3   r   r     s2              r5   r   c                      e Zd ZdZddZdS )	ModelBeforeValidatorWithoutInfor   ra   r   rb   r#   c                   d S rJ   r=   rd   s      r3   re   z(ModelBeforeValidatorWithoutInfo.__call__  	     cr5   Nrg   r   r=   r5   r3   r   r     s2              r5   r   c                      e Zd ZdZd	dZdS )
FreeModelBeforeValidatorUA `@model_validator` decorated function signature. This is used when `mode='before'`.rb   r   rk   rl   r#   c                   d S rJ   r=   )r1   rb   rk   s      r3   re   z!FreeModelBeforeValidator.__call__  r   r5   N)rb   r   rk   rl   r#   r   r   r=   r5   r3   r   r     s.        __     r5   r   c                      e Zd ZdZd
dZd	S )ModelBeforeValidatorr   ra   r   rb   rk   rl   r#   c                   d S rJ   r=   rn   s       r3   re   zModelBeforeValidator.__call__  s	     cr5   Nro   r   r=   r5   r3   r   r     s.        __	 	 	 	 	 	r5   r   |Callable[[_AnyModelWrapValidator[_ModelType]], _decorators.PydanticDescriptorProxy[_decorators.ModelValidatorDecoratorInfo]]c                    d S rJ   r=   rx   s    r3   model_validatorr      	     3r5   Literal['before']qCallable[[_AnyModeBeforeValidator], _decorators.PydanticDescriptorProxy[_decorators.ModelValidatorDecoratorInfo]]c                    d S rJ   r=   r   s    r3   r   r   	  r   r5   Literal['after']}Callable[[_AnyModelAfterValidator[_ModelType]], _decorators.PydanticDescriptorProxy[_decorators.ModelValidatorDecoratorInfo]]c                    d S rJ   r=   r   s    r3   r   r     r   r5   "Literal['wrap', 'before', 'after']r   c                     d fd}|S )a"  Usage docs: https://docs.pydantic.dev/2.8/concepts/validators/#model-validators

    Decorate model methods for validation purposes.

    Example usage:
    ```py
    from typing_extensions import Self

    from pydantic import BaseModel, ValidationError, model_validator

    class Square(BaseModel):
        width: float
        height: float

        @model_validator(mode='after')
        def verify_square(self) -> Self:
            if self.width != self.height:
                raise ValueError('width and height do not match')
            return self

    s = Square(width=1, height=1)
    print(repr(s))
    #> Square(width=1.0, height=1.0)

    try:
        Square(width=1, height=2)
    except ValidationError as e:
        print(e)
        '''
        1 validation error for Square
          Value error, width and height do not match [type=value_error, input_value={'width': 1, 'height': 2}, input_type=dict]
        '''
    ```

    For more in depth examples, see [Model Validators](../concepts/validators.md#model-validators).

    Args:
        mode: A required string literal that specifies the validation mode.
            It can be one of the following: 'wrap', 'before', or 'after'.

    Returns:
        A decorator that can be used to decorate a function to be used as a model validator.
    r   r   r#   r   c                    t          j        |           } t          j                  }t          j        | |          S )Nr   )r   r   ModelValidatorDecoratorInfor   )r   r   rx   s     r3   r   zmodel_validator.<locals>.decK  s9    =a@@:EEE21h???r5   )r   r   r#   r   r=   )rx   r   s   ` r3   r   r     s/    `@ @ @ @ @ @ Jr5   AnyTypec                  P    e Zd ZdZedd            Zedd            Zej        ZdS )
InstanceOfu  Generic type for annotating a type that is an instance of a given class.

        Example:
            ```py
            from pydantic import BaseModel, InstanceOf

            class Foo:
                ...

            class Bar(BaseModel):
                foo: InstanceOf[Foo]

            Bar(foo=Foo())
            try:
                Bar(foo=42)
            except ValidationError as e:
                print(e)
                """
                [
                │   {
                │   │   'type': 'is_instance_of',
                │   │   'loc': ('foo',),
                │   │   'msg': 'Input should be an instance of Foo',
                │   │   'input': 42,
                │   │   'ctx': {'class': 'Foo'},
                │   │   'url': 'https://errors.pydantic.dev/0.38.0/v/is_instance_of'
                │   }
                ]
                """
            ```
        itemr   r#   c                0    t           | |             f         S rJ   )r   ra   r   s     r3   __class_getitem__zInstanceOf.__class_getitem__  s    T3355[))r5   sourcer   r!   r   r$   c                    ddl m} t          j        t	          j        |          p|          }	  ||          }t          j        d |          |d<   t          j        ||          S # |$ r |cY S w xY w)Nr   rG   c                     ||           S rJ   r=   rK   s     r3   rN   z9InstanceOf.__get_pydantic_core_schema__.<locals>.<lambda>      !!A$$ r5   rO   rR   )python_schemajson_schema)rS   rH   r   is_instance_schemar   
get_originrT   json_or_python_schema)ra   r   r!   rH   instance_of_schemaoriginal_schemas         r3   r4   z'InstanceOf.__get_pydantic_core_schema__  s    >>>>>> "-!?	@TU[@\@\@f`f!g!gx")'&// 7B6e..7 7 7"?3 #8GYgvwwww 1 * * *))))*s   A+ +A54A5N)r   r   r#   r   r   r   r!   r   r#   r$   )	r8   r9   r:   r;   classmethodr   r4   object__hash__r=   r5   r3   r   r   ]  sf        	 	@ 
	* 	* 	* 
	* 
	x 	x 	x 
	x& ?r5   r   c                  @    e Zd ZdZddZedd
            Zej        ZdS )SkipValidationa  If this is applied as an annotation (e.g., via `x: Annotated[int, SkipValidation]`), validation will be
            skipped. You can also use `SkipValidation[int]` as a shorthand for `Annotated[int, SkipValidation]`.

        This can be useful if you want to use a type annotation for documentation/IDE/type-checking purposes,
        and know that it is safe to skip validation for one or more of the fields.

        Because this converts the validation schema to `any_schema`, subsequent annotation-applied transformations
        may not have the expected effects. Therefore, when used, this annotation should generally be the final
        annotation applied to a type.
        r   r   r#   c                8    t           |t                      f         S rJ   )r   r   r   s     r3   r   z SkipValidation.__class_getitem__  s    T>#3#3344r5   r   r!   r   r$   c                     ||          t          j        fdg          }t          j        |t          j        d                     S )Nc                     |          S rJ   r=   )_crM   r   s     r3   rN   z=SkipValidation.__get_pydantic_core_schema__.<locals>.<lambda>  s    ababcrasas r5   )js_annotation_functionsc                     ||           S rJ   r=   rK   s     r3   rN   z=SkipValidation.__get_pydantic_core_schema__.<locals>.<lambda>  r   r5   rO   )metadatarR   )r   build_metadata_dictr   
any_schemarT   )ra   r   r!   r   r   s       @r3   r4   z+SkipValidation.__get_pydantic_core_schema__  sj    %gfooO%9SsSsSsSsRtuuuH)!)M..     r5   N)r   r   r#   r   r   )	r8   r9   r:   r;   r   r   r4   r   r   r=   r5   r3   r   r     sU        		 			5 	5 	5 	5 
	 	 	 
	 ?r5   r   r=   )
rz   r{   r|   r{   rx   r}   ry   r~   r#   r   )
rz   r{   r|   r{   rx   r   ry   r~   r#   r   )
rz   r{   r|   r{   rx   r   ry   r~   r#   r   )rx   r   r#   r   )rx   r   r#   r   )rx   r   r#   r   )rx   r   r#   r   )Rr;   
__future__r   _annotationsdataclassessys	functoolsr   typesr   typingr   r   r   r	   r
   r   r   pydantic_corer   _core_schematyping_extensionsr   r   r    r   r"   	_internalr   r   r   r   annotated_handlerserrorsr   version_infor   inspect_validatorr+   	dataclass
slots_truer   r?   rE   rX   r`   rj   rq   r,   r.   _V2Validatorr[   _V2WrapValidatorr   staticmethodru   r<   rv   rw   r   r   r   r   ValidatorFunctionWrapHandlerr   r   r   r   r   r   r   ModelAfterValidatorWithoutInfoValidationInfoModelAfterValidator_AnyModelWrapValidator_AnyModeBeforeValidator_AnyModelAfterValidatorr   r   r   r   r=   r5   r3   <module>r     s   H H H 2 2 2 2 2 2     



 # # # # # #       O O O O O O O O O O O O O O O O O O % % % % % % 5 5 5 5 5 5 ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; R R R R R R R R R R R R 4 4 4 4 4 4 % % % % % %g******* 2  EEdE&9&DEE4U 4U 4U 4U 4U 4U 4U FE4Un EEdE&9&DEE(V (V (V (V (V (V (V FE(VV EEdE&9&DEE0c 0c 0c 0c 0c 0c 0c FE0cf EEdE&9&DEE/T /T /T /T /T /T /T FE/Td  %h@ @ @ @ @x @ @ @c c c c c c c c    H    .$,	.L !2	4
 ,1S#s]1K\Z]_bZbMcersvew1w+xxxxx)0,!* *&
 #7#9;KMfgg 

 14 #] ] ] ] ] 
] 
 !$A A A A A 
A "))K!L  L L L L !( $[ [ [ [ [ [| W\""
w~666	 	 	 	 	 I8T`Ka 	 	 	    HZ$8   "    *-        (       h        x       8    "*:,
*B!C  
L,GH*TU  Z1*=?\]g?hhi 24WYxx    3J ?A_`jAk kl  
   
 
   
 
   
6 6 6 6r ')

  @#7C<(JJ [<<0;<<9# 9# 9# 9# 9# 9# 9# =<9#x  #w|,NNN [<<0;<<# # # # # # # =<# # #r5   