1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
#pragma once /** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include namespace Aws { namespace Crt { namespace Io { using StreamStatus = aws_stream_status; /** * @deprecated Use int64_t instead for offsets in public APIs. */ using OffsetType = aws_off_t; /** * Controls the direction to seek from */ enum class StreamSeekBasis { Begin = AWS_SSB_BEGIN, End = AWS_SSB_END, }; /*** * Interface for building an Object oriented stream that will be honored by the CRT's low-level * aws_input_stream interface. To use, create a subclass of InputStream and define the abstract * functions. */ class AWS_CRT_CPP_API InputStream : public std::enable_shared_from_this, public RefCounted { public: virtual ~InputStream(); InputStream(const InputStream &) = delete; InputStream &operator=(const InputStream &) = delete; InputStream(InputStream &&) = delete; InputStream &operator=(InputStream &&) = delete; explicit operator bool() const noexcept { return IsValid(); } /** * @return true/false if this object is in a valid state */ virtual bool IsValid() const noexcept = 0; /// @private aws_input_stream *GetUnderlyingStream() noexcept { return &m_underlying_stream; } /** * Reads data from the stream into a buffer * @param dest buffer to add the read data into * @return success/failure */ bool Read(ByteBuf &dest) { return aws_input_stream_read(&m_underlying_stream, &dest) == 0; } /** * Moves the head of the stream to a new location * @param offset how far to move, in bytes * @param seekBasis what direction to move the head of stream * @return success/failure */ bool Seek(int64_t offset, StreamSeekBasis seekBasis) { return aws_input_stream_seek(&m_underlying_stream, offset, (aws_stream_seek_basis)seekBasis) == 0; } /** * Gets the stream's current status * @param status output parameter for the stream's status * @return success/failure */ bool GetStatus(StreamStatus &status) { return aws_input_stream_get_status(&m_underlying_stream, &status) == 0; } /** * Gets the stream's length. Some streams may not be able to answer this. * @param length output parameter for the length of the stream * @return success/failure */ bool GetLength(int64_t &length) { return aws_input_stream_get_length(&m_underlying_stream, &length) == 0; } protected: Allocator *m_allocator; aws_input_stream m_underlying_stream; InputStream(Aws::Crt::Allocator *allocator = ApiAllocator()); /*** * Read up-to buffer::capacity - buffer::len into buffer::buffer * Increment buffer::len by the amount you read in. * * @return true if nothing went wrong. * Return true even if you read 0 bytes because the end-of-file has been reached. * Return true even if you read 0 bytes because data is not currently available. * * Return false if an actual failure condition occurs, * you SHOULD also raise an error via aws_raise_error(). */ virtual bool ReadImpl(ByteBuf &buffer) noexcept = 0; /*** * Read up-to buffer::capacity - buffer::len immediately available bytes into buffer::buffer * Increment buffer::len by the amount you read in. * * @return true if nothing went wrong. * Return true even if you read 0 bytes because the end-of-file has been reached. * Return true even if you read 0 bytes because data is not currently available. * * Return false if an actual failure condition occurs, * you SHOULD also raise an error via aws_raise_error(). */ virtual bool ReadSomeImpl(ByteBuf &buffer) noexcept = 0; /** * @return the current status of the stream. */ virtual StreamStatus GetStatusImpl() const noexcept = 0; /** * @return the total length of the available data for the stream. * @return -1 if not available. */ virtual int64_t GetLengthImpl() const noexcept = 0; /** * Seek's the stream to seekBasis based offset bytes. * * It is expected, that if seeking to the beginning of a stream, * all error's are cleared if possible. * * @return true on success, false otherwise. You SHOULD raise an error via aws_raise_error() * if a failure occurs. */ virtual bool SeekImpl(int64_t offset, StreamSeekBasis seekBasis) noexcept = 0; /** * Peeks the stream * * Essentially calls peek on the underlying istream * * @return return value of the underlying istream::peek */ virtual int64_t PeekImpl() const noexcept = 0; private: static int s_Seek(aws_input_stream *stream, int64_t offset, enum aws_stream_seek_basis basis); static int s_Read(aws_input_stream *stream, aws_byte_buf *dest); static int s_GetStatus(aws_input_stream *stream, aws_stream_status *status); static int s_GetLength(struct aws_input_stream *stream, int64_t *out_length); static void s_Acquire(aws_input_stream *stream); static void s_Release(aws_input_stream *stream); static aws_input_stream_vtable s_vtable; }; /*** * Implementation of Aws::Crt::Io::InputStream that wraps a std::input_stream. */ class AWS_CRT_CPP_API StdIOStreamInputStream : public InputStream { public: StdIOStreamInputStream( std::shared_ptr stream, Aws::Crt::Allocator *allocator = ApiAllocator()) noexcept; bool IsValid() const noexcept override; protected: bool ReadImpl(ByteBuf &buffer) noexcept override; bool ReadSomeImpl(ByteBuf &buffer) noexcept override; StreamStatus GetStatusImpl() const noexcept override; int64_t GetLengthImpl() const noexcept override; bool SeekImpl(OffsetType offsetType, StreamSeekBasis seekBasis) noexcept override; int64_t PeekImpl() const noexcept override; private: std::shared_ptr m_stream; }; } // namespace Io } // namespace Crt } // namespace Aws