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) 2022 Klemens D. Morgenstern // // 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_HANDLER_HPP #define BOOST_COBALT_HANDLER_HPP #include #include #include #include #include #include #include #include #include namespace boost::cobalt { namespace detail { template struct composition_promise; enum class completed_immediately_t { no, maybe, yes, initiating }; struct completion_handler_noop_executor { executor exec; completed_immediately_t * completed_immediately = nullptr; template void execute(Fn && fn) const { // only allow it when we're still initializing if (completed_immediately && ((*completed_immediately == completed_immediately_t::initiating) || (*completed_immediately == completed_immediately_t::maybe))) { // only use this indicator if the fn will actually call our completion-handler // otherwise this was a single op in a composed operation *completed_immediately = completed_immediately_t::maybe; fn(); // yes means completion_handler::operator() was called, so we're good. if (*completed_immediately != completed_immediately_t::yes) *completed_immediately = completed_immediately_t::initiating; } else { asio::post(exec, std::forward(fn)); } } friend bool operator==(const completion_handler_noop_executor&, const completion_handler_noop_executor&) noexcept { return true; } friend bool operator!=(const completion_handler_noop_executor&, const completion_handler_noop_executor&) noexcept { return false; } completion_handler_noop_executor(const completion_handler_noop_executor & rhs) noexcept = default; completion_handler_noop_executor(cobalt::executor inner, completed_immediately_t * completed_immediately) : exec(std::move(inner)), completed_immediately(completed_immediately) { } }; template executor get_executor(std::coroutine_handle h) { if constexpr (requires {h.promise().get_executor();}) { return h.promise().get_executor(); } else return this_thread::get_executor(); } inline executor get_executor(std::coroutine_handle<>) { return this_thread::get_executor(); } struct completion_handler_base { using cancellation_slot_type = asio::cancellation_slot; cancellation_slot_type cancellation_slot ; cancellation_slot_type get_cancellation_slot() const noexcept { return cancellation_slot ; } using executor_type = executor; executor_type executor_ ; const executor_type & get_executor() const noexcept { return executor_ ; } #if !defined(BOOST_COBALT_NO_PMR) using allocator_type = pmr::polymorphic_allocator; pmr::polymorphic_allocator allocator ; allocator_type get_allocator() const noexcept { return allocator ; } #else using allocator_type = detail::sbo_allocator; detail::sbo_allocator allocator ; allocator_type get_allocator() const noexcept { return allocator ; } #endif using immediate_executor_type = completion_handler_noop_executor; completed_immediately_t * completed_immediately = nullptr; immediate_executor_type get_immediate_executor() const noexcept { return {get_executor(), completed_immediately}; } template completion_handler_base(std::coroutine_handle h, completed_immediately_t * completed_immediately = nullptr) : cancellation_slot(asio::get_associated_cancellation_slot(h.promise())), executor_(cobalt::detail::get_executor(h)), #if !defined(BOOST_COBALT_NO_PMR) allocator(asio::get_associated_allocator(h.promise(), this_thread::get_allocator())), #else allocator(detail::get_null_sbo_resource()), #endif completed_immediately(completed_immediately) { } #if !defined(BOOST_COBALT_NO_PMR) template completion_handler_base(std::coroutine_handle h, pmr::memory_resource * resource, completed_immediately_t * completed_immediately = nullptr) : cancellation_slot(asio::get_associated_cancellation_slot(h.promise())), executor_(cobalt::detail::get_executor(h)), allocator(resource), completed_immediately(completed_immediately) { } #else template completion_handler_base(std::coroutine_handle h, detail::sbo_resource * resource, completed_immediately_t * completed_immediately = nullptr) : cancellation_slot(asio::get_associated_cancellation_slot(h.promise())), executor_(cobalt::detail::get_executor(h)), allocator(resource), completed_immediately(completed_immediately) { } #endif }; template void assign_cancellation(std::coroutine_handle, Handler &&) {} template void assign_cancellation(std::coroutine_handle h, Handler && func) { if constexpr (requires {h.promise().get_cancellation_slot();}) if (h.promise().get_cancellation_slot().is_connected()) h.promise().get_cancellation_slot().assign(std::forward(func)); } } template struct handler { void operator()(Args ... args) { result.emplace(static_cast(args)...); } handler(std::optional> &result) : result(result) {} private: std::optional> &result; }; template handler(std::optional> &result) -> handler; template struct completion_handler : detail::completion_handler_base { completion_handler(completion_handler && ) = default; template completion_handler(std::coroutine_handle h, std::optional> &result, detail::completed_immediately_t * completed_immediately = nullptr #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) , const boost::source_location & loc = BOOST_CURRENT_LOCATION #endif ) : completion_handler_base(h, completed_immediately), self(h.address()), result(result) #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) , loc_(loc) #endif { } #if !defined(BOOST_COBALT_NO_PMR) template completion_handler(std::coroutine_handle h, std::optional> &result, pmr::memory_resource * resource, detail::completed_immediately_t * completed_immediately = nullptr #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) , const boost::source_location & loc = BOOST_CURRENT_LOCATION #endif ) : completion_handler_base(h, resource, completed_immediately), self(h.address()), result(result) #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) , loc_(loc) #endif { } #else template completion_handler(std::coroutine_handle h, std::optional> &result, detail::sbo_resource * resource, detail::completed_immediately_t * completed_immediately = nullptr) : completion_handler_base(h, resource, completed_immediately), self(h.address()), result(result) { } #endif void operator()(Args ... args) { #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) BOOST_ASIO_HANDLER_LOCATION((loc_.file_name(), loc_.line(), loc_.function_name())); #endif result.emplace(std::move(args)...); BOOST_ASSERT(this->self != nullptr); auto p = this->self.release(); if (completed_immediately != nullptr && *completed_immediately == detail::completed_immediately_t::maybe) { *completed_immediately = detail::completed_immediately_t::yes; return; } std::move(p)(); } using result_type = std::optional>; ~completion_handler() { if (self && completed_immediately && *completed_immediately == detail::completed_immediately_t::initiating && std::uncaught_exceptions() > 0) self.release(); } private: unique_handle self; std::optional> &result; #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) boost::source_location loc_; #endif template friend struct detail::composition_promise; }; }; #endif //BOOST_COBALT_HANDLER_HPP