shell bypass 403

GrazzMean-Shell Shell

Uname: Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.213.251.212
Your Ip: 52.15.164.56
User: allssztx (535) | Group: allssztx (533)
Safe Mode: OFF
Disable Function:
NONE

name : codecs.cpython-313.pyc
�

*}g@����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 (mal@lemburg.com).

(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
          �-/opt/alt/python313/lib64/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

© 2025 GrazzMean-Shell