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) 2023 Klemens Morgenstern (klemens.morgenstern@gmx.net) // // 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) // #ifndef BOOST_COBALT_HANDLE_HPP #define BOOST_COBALT_HANDLE_HPP #include #include #include namespace boost::cobalt { template struct unique_handle { unique_handle() noexcept = default; #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) explicit unique_handle(T * promise, const boost::source_location & loc = BOOST_CURRENT_LOCATION) noexcept : handle_(promise), loc_(loc) {} #else explicit unique_handle(T * promise) noexcept : handle_(promise) {} #endif unique_handle(std::nullptr_t) noexcept {} std::coroutine_handle release() { return std::coroutine_handle::from_promise(*handle_.release()); } void* address() const noexcept { return get_handle_().address(); } #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) static unique_handle from_address( void* a, const boost::source_location & loc = BOOST_CURRENT_LOCATION) noexcept { unique_handle res; res.loc_ = loc; res.handle_.reset(&std::coroutine_handle::from_address(a).promise()); return res; } #else static unique_handle from_address(void* a) noexcept { unique_handle res; res.handle_.reset(&std::coroutine_handle::from_address(a).promise()); return res; } #endif bool done() const noexcept { return get_handle_().done(); } explicit operator bool() const { return static_cast(handle_); } void destroy() { handle_.reset(); } void operator()() const & { #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) BOOST_ASIO_HANDLER_LOCATION((loc_.file_name(), loc_.line(), loc_.function_name())); #endif resume(); } void resume() const & { get_handle_().resume(); } void operator()() && { #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) BOOST_ASIO_HANDLER_LOCATION((loc_.file_name(), loc_.line(), loc_.function_name())); #endif release().resume(); } void resume() && { release().resume(); } T & promise() {return *handle_;} #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) constexpr static unique_handle from_promise( T &p, const boost::source_location & loc = BOOST_CURRENT_LOCATION) noexcept { unique_handle res; res.loc_ = loc; res.handle_.reset(&p); return res; } #else constexpr static unique_handle from_promise(T &p) noexcept { unique_handle res; res.handle_.reset(&p); return res; } #endif T & operator*() {return *handle_;} const T & operator*() const {return *handle_;} T * operator->() {return handle_.get();} const T * operator->() const {return handle_.get();} T * get() {return handle_.get();} const T * get() const {return handle_.get();} #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) void reset(T * handle = nullptr, const boost::source_location & loc = BOOST_CURRENT_LOCATION) { loc_ = loc; handle_.reset(handle); } #else void reset(T * handle = nullptr) {handle_.reset(handle);} #endif friend auto operator==(const unique_handle & h, std::nullptr_t) {return h.handle_ == nullptr;} friend auto operator!=(const unique_handle & h, std::nullptr_t) {return h.handle_ != nullptr;} private: struct deleter_ { void operator()(T * p) { std::coroutine_handle::from_promise(*p).destroy(); } }; std::coroutine_handle get_handle_() const { return std::coroutine_handle::from_promise(*handle_); } std::unique_ptr handle_; #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) boost::source_location loc_; #endif }; template<> struct unique_handle { unique_handle() noexcept = default; unique_handle(std::nullptr_t) noexcept {} #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) explicit unique_handle(void * handle, const boost::source_location & loc = BOOST_CURRENT_LOCATION) noexcept : handle_(handle), loc_(loc) {} #else explicit unique_handle(void * handle) noexcept : handle_(handle) {} #endif std::coroutine_handle release() { return std::coroutine_handle::from_address(handle_.release()); } void* address() const noexcept { return get_handle_().address(); } #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) static unique_handle from_address(void* a, const boost::source_location & loc = BOOST_CURRENT_LOCATION) noexcept { unique_handle res; res.loc_ = loc; res.handle_.reset(std::coroutine_handle::from_address(a).address()); return res; } #else static unique_handle from_address(void* a) noexcept { unique_handle res; res.handle_.reset(std::coroutine_handle::from_address(a).address()); return res; } #endif explicit operator bool() const { return static_cast(handle_); } bool done() const noexcept { return get_handle_().done(); } void operator()() const & { #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) BOOST_ASIO_HANDLER_LOCATION((loc_.file_name(), loc_.line(), loc_.function_name())); #endif resume(); } void resume() const & { get_handle_().resume(); } void operator()() && { #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) BOOST_ASIO_HANDLER_LOCATION((loc_.file_name(), loc_.line(), loc_.function_name())); #endif release().resume(); } void resume() && { release().resume(); } void destroy() { handle_.reset(); } void * get() { return handle_.get(); } const void * get() const { return handle_.get(); } #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) void reset(void * handle = nullptr, const boost::source_location & loc = BOOST_CURRENT_LOCATION) { loc_ = loc; handle_.reset(handle); } #else void reset(void * handle = nullptr) {handle_.reset(handle);} #endif friend auto operator==(const unique_handle & h, std::nullptr_t) {return h.handle_ == nullptr;} friend auto operator!=(const unique_handle & h, std::nullptr_t) {return h.handle_ != nullptr;} private: struct deleter_ { void operator()(void * p) { std::coroutine_handle::from_address(p).destroy(); } }; std::coroutine_handle get_handle_() const { return std::coroutine_handle::from_address(handle_.get()); } std::unique_ptr handle_; #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) boost::source_location loc_; #endif }; template<> struct unique_handle { unique_handle() noexcept = default; unique_handle(std::nullptr_t) noexcept {} std::coroutine_handle release() { return std::noop_coroutine(); } void* address() const noexcept { return std::noop_coroutine().address(); } bool done() const noexcept { return true;} void operator()() const {} void resume() const {} void destroy() {} explicit operator bool() const { return true; } struct executor_type { template void execute(Fn &&) const {} }; executor_type get_executor() const {return {}; } friend auto operator==(const unique_handle &, std::nullptr_t) {return false;} friend auto operator!=(const unique_handle &, std::nullptr_t) {return true;} }; } namespace boost::asio { template