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
// // Copyright (c) 2015-2019 Vinnie Falco (vinnie dot falco at gmail dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // Official repository: https://github.com/boostorg/beast // #ifndef BOOST_BEAST_CORE_IMPL_FILE_STDIO_IPP #define BOOST_BEAST_CORE_IMPL_FILE_STDIO_IPP #include #include #include #include #include namespace boost { namespace beast { file_stdio:: ~file_stdio() { if(f_) fclose(f_); } file_stdio:: file_stdio(file_stdio&& other) : f_(boost::exchange(other.f_, nullptr)) { } file_stdio& file_stdio:: operator=(file_stdio&& other) { if(&other == this) return *this; if(f_) fclose(f_); f_ = other.f_; other.f_ = nullptr; return *this; } void file_stdio:: native_handle(std::FILE* f) { if(f_) fclose(f_); f_ = f; } void file_stdio:: close(error_code& ec) { if(f_) { int failed = fclose(f_); f_ = nullptr; if(failed) { ec.assign(errno, generic_category()); return; } } ec = {}; } void file_stdio:: open(char const* path, file_mode mode, error_code& ec) { if(f_) { fclose(f_); f_ = nullptr; } ec = {}; #if defined(BOOST_MSVC) || defined(_MSVC_STL_VERSION) boost::winapi::WCHAR_ const* s; detail::win32_unicode_path unicode_path(path, ec); if (ec) return; #else char const* s; #endif switch(mode) { default: case file_mode::read: #if defined(BOOST_MSVC) || defined(_MSVC_STL_VERSION) s = L"rb"; #else s = "rb"; #endif break; case file_mode::scan: #if defined(BOOST_MSVC) || defined(_MSVC_STL_VERSION) s = L"rbS"; #else s = "rb"; #endif break; case file_mode::write: #if defined(BOOST_MSVC) || defined(_MSVC_STL_VERSION) s = L"wb+"; #else s = "wb+"; #endif break; case file_mode::write_new: { #if defined(BOOST_MSVC) || defined(_MSVC_STL_VERSION) # if (defined(BOOST_MSVC) && BOOST_MSVC >= 1910) || (defined(_MSVC_STL_VERSION) && _MSVC_STL_VERSION >= 141) s = L"wbx"; # else std::FILE* f0; auto const ev = ::_wfopen_s(&f0, unicode_path.c_str(), L"rb"); if(! ev) { std::fclose(f0); ec = make_error_code(errc::file_exists); return; } else if(ev != errc::no_such_file_or_directory) { ec.assign(ev, generic_category()); return; } s = L"wb"; # endif #else s = "wbx"; #endif break; } case file_mode::write_existing: #if defined(BOOST_MSVC) || defined(_MSVC_STL_VERSION) s = L"rb+"; #else s = "rb+"; #endif break; case file_mode::append: #if defined(BOOST_MSVC) || defined(_MSVC_STL_VERSION) s = L"ab"; #else s = "ab"; #endif break; case file_mode::append_existing: { #if defined(BOOST_MSVC) || defined(_MSVC_STL_VERSION) std::FILE* f0; auto const ev = ::_wfopen_s(&f0, unicode_path.c_str(), L"rb+"); if(ev) { ec.assign(ev, generic_category()); return; } #else auto const f0 = std::fopen(path, "rb+"); if(! f0) { ec.assign(errno, generic_category()); return; } #endif std::fclose(f0); #if defined(BOOST_MSVC) || defined(_MSVC_STL_VERSION) s = L"ab"; #else s = "ab"; #endif break; } } #if defined(BOOST_MSVC) || defined(_MSVC_STL_VERSION) auto const ev = ::_wfopen_s(&f_, unicode_path.c_str(), s); if(ev) { f_ = nullptr; ec.assign(ev, generic_category()); return; } #else f_ = std::fopen(path, s); if(! f_) { ec.assign(errno, generic_category()); return; } #endif } std::uint64_t file_stdio:: size(error_code& ec) const { if(! f_) { ec = make_error_code(errc::bad_file_descriptor); return 0; } long pos = std::ftell(f_); if(pos == -1L) { ec.assign(errno, generic_category()); return 0; } int result = std::fseek(f_, 0, SEEK_END); if(result != 0) { ec.assign(errno, generic_category()); return 0; } long size = std::ftell(f_); if(size == -1L) { ec.assign(errno, generic_category()); std::fseek(f_, pos, SEEK_SET); return 0; } result = std::fseek(f_, pos, SEEK_SET); if(result != 0) ec.assign(errno, generic_category()); else ec = {}; return size; } std::uint64_t file_stdio:: pos(error_code& ec) const { if(! f_) { ec = make_error_code(errc::bad_file_descriptor); return 0; } long pos = std::ftell(f_); if(pos == -1L) { ec.assign(errno, generic_category()); return 0; } ec = {}; return pos; } void file_stdio:: seek(std::uint64_t offset, error_code& ec) { if(! f_) { ec = make_error_code(errc::bad_file_descriptor); return; } if(offset > static_cast((std::numeric_limits::max)())) { ec = make_error_code(errc::invalid_seek); return; } int result = std::fseek(f_, static_cast(offset), SEEK_SET); if(result != 0) ec.assign(errno, generic_category()); else ec = {}; } std::size_t file_stdio:: read(void* buffer, std::size_t n, error_code& ec) const { if(! f_) { ec = make_error_code(errc::bad_file_descriptor); return 0; } auto nread = std::fread(buffer, 1, n, f_); if(std::ferror(f_)) { ec.assign(errno, generic_category()); return 0; } return nread; } std::size_t file_stdio:: write(void const* buffer, std::size_t n, error_code& ec) { if(! f_) { ec = make_error_code(errc::bad_file_descriptor); return 0; } auto nwritten = std::fwrite(buffer, 1, n, f_); if(std::ferror(f_)) { ec.assign(errno, generic_category()); return 0; } return nwritten; } } // beast } // boost #endif