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) 2014 Paul Fultz II returns.h 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_HOF_GUARD_RETURNS_H #define BOOST_HOF_GUARD_RETURNS_H /// BOOST_HOF_RETURNS /// =========== /// /// Description /// ----------- /// /// The `BOOST_HOF_RETURNS` macro defines the function as the expression /// equivalence. It does this by deducing `noexcept` and the return type by /// using a trailing `decltype`. Instead of repeating the expression for the /// return type, `noexcept` clause and the function body, this macro will /// reduce the code duplication from that. /// /// Note: The expression used to deduce the return the type will also /// constrain the template function and deduce `noexcept` as well, which is /// different behaviour than using C++14's return type deduction. /// /// Synopsis /// -------- /// /// #define BOOST_HOF_RETURNS(...) /// /// /// Example /// ------- /// /// #include /// #include /// /// template /// auto sum(T x, U y) BOOST_HOF_RETURNS(x+y); /// /// int main() { /// assert(3 == sum(1, 2)); /// } /// /// /// Incomplete this /// --------------- /// /// Description /// ----------- /// /// On some non-conformant compilers, such as gcc, the `this` variable cannot /// be used inside the `BOOST_HOF_RETURNS` macro because it is considered an /// incomplete type. So the following macros are provided to help workaround /// the issue. /// /// /// Synopsis /// -------- /// /// // Declares the type of the `this` variable /// #define BOOST_HOF_RETURNS_CLASS(...) /// // Used to refer to the `this` variable in the BOOST_HOF_RETURNS macro /// #define BOOST_HOF_THIS /// // Used to refer to the const `this` variable in the BOOST_HOF_RETURNS macro /// #define BOOST_HOF_CONST_THIS /// /// /// Example /// ------- /// /// #include /// #include /// /// struct add_1 /// { /// int a; /// add_1() : a(1) {} /// /// BOOST_HOF_RETURNS_CLASS(add_1); /// /// template /// auto operator()(T x) const /// BOOST_HOF_RETURNS(x+BOOST_HOF_CONST_THIS->a); /// }; /// /// int main() { /// assert(3 == add_1()(2)); /// } /// /// /// Mangling overloads /// ------------------ /// /// Description /// ----------- /// /// On older compilers some operations done in the expressions cannot be /// properly mangled. These macros help provide workarounds for these /// operations on older compilers. /// /// /// Synopsis /// -------- /// /// // Explicitly defines the type for name mangling /// #define BOOST_HOF_MANGLE_CAST(...) /// // C cast for name mangling /// #define BOOST_HOF_RETURNS_C_CAST(...) /// // Reinterpret cast for name mangling /// #define BOOST_HOF_RETURNS_REINTERPRET_CAST(...) /// // Static cast for name mangling /// #define BOOST_HOF_RETURNS_STATIC_CAST(...) /// // Construction for name mangling /// #define BOOST_HOF_RETURNS_CONSTRUCT(...) /// #include #include #include #include #define BOOST_HOF_EAT(...) #define BOOST_HOF_REM(...) __VA_ARGS__ #if BOOST_HOF_HAS_COMPLETE_DECLTYPE && BOOST_HOF_HAS_MANGLE_OVERLOAD #ifdef _MSC_VER // Since decltype can't be used in noexcept on MSVC, we can't check for noexcept // move constructors. #define BOOST_HOF_RETURNS_DEDUCE_NOEXCEPT(...) BOOST_HOF_NOEXCEPT(noexcept(__VA_ARGS__)) #else #define BOOST_HOF_RETURNS_DEDUCE_NOEXCEPT(...) BOOST_HOF_NOEXCEPT(noexcept(static_cast(__VA_ARGS__))) #endif #define BOOST_HOF_RETURNS(...) \ BOOST_HOF_RETURNS_DEDUCE_NOEXCEPT(__VA_ARGS__) \ -> decltype(__VA_ARGS__) { return __VA_ARGS__; } #define BOOST_HOF_THIS this #define BOOST_HOF_CONST_THIS this #define BOOST_HOF_RETURNS_CLASS(...) \ void fit_returns_class_check() \ { \ static_assert(std::is_same<__VA_ARGS__*, decltype(this)>::value, \ "Returns class " #__VA_ARGS__ " type doesn't match"); \ } #define BOOST_HOF_MANGLE_CAST(...) BOOST_HOF_REM #define BOOST_HOF_RETURNS_C_CAST(...) (__VA_ARGS__) BOOST_HOF_REM #define BOOST_HOF_RETURNS_REINTERPRET_CAST(...) reinterpret_cast<__VA_ARGS__> #define BOOST_HOF_RETURNS_STATIC_CAST(...) static_cast<__VA_ARGS__> #define BOOST_HOF_RETURNS_CONSTRUCT(...) __VA_ARGS__ #else #include #define BOOST_HOF_RETURNS_RETURN(...) return BOOST_HOF_RETURNS_RETURN_X(BOOST_HOF_PP_WALL(__VA_ARGS__)) #define BOOST_HOF_RETURNS_RETURN_X(...) __VA_ARGS__ #ifdef _MSC_VER // Since decltype can't be used in noexcept on MSVC, we can't check for noexcept // move constructors. #define BOOST_HOF_RETURNS_DEDUCE_NOEXCEPT(...) BOOST_HOF_NOEXCEPT(noexcept(BOOST_HOF_RETURNS_DECLTYPE_CONTEXT(__VA_ARGS__))) #else #define BOOST_HOF_RETURNS_DEDUCE_NOEXCEPT(...) BOOST_HOF_NOEXCEPT(noexcept(static_cast(BOOST_HOF_RETURNS_DECLTYPE_CONTEXT(__VA_ARGS__)))) #endif #define BOOST_HOF_RETURNS_DECLTYPE(...) \ -> decltype(BOOST_HOF_RETURNS_DECLTYPE_CONTEXT(__VA_ARGS__)) #define BOOST_HOF_RETURNS_DECLTYPE_CONTEXT(...) BOOST_HOF_RETURNS_DECLTYPE_CONTEXT_X(BOOST_HOF_PP_WALL(__VA_ARGS__)) #define BOOST_HOF_RETURNS_DECLTYPE_CONTEXT_X(...) __VA_ARGS__ #define BOOST_HOF_RETURNS_THAT(...) BOOST_HOF_PP_IIF(BOOST_HOF_PP_IS_PAREN(BOOST_HOF_RETURNS_DECLTYPE_CONTEXT(())))(\ (boost::hof::detail::check_this<__VA_ARGS__, decltype(this)>(), this), \ std::declval<__VA_ARGS__>() \ ) #define BOOST_HOF_THIS BOOST_HOF_PP_RAIL(BOOST_HOF_RETURNS_THAT)(fit_this_type) #define BOOST_HOF_CONST_THIS BOOST_HOF_PP_RAIL(BOOST_HOF_RETURNS_THAT)(fit_const_this_type) #define BOOST_HOF_RETURNS_CLASS(...) typedef __VA_ARGS__* fit_this_type; typedef const __VA_ARGS__* fit_const_this_type #define BOOST_HOF_RETURNS(...) \ BOOST_HOF_RETURNS_DEDUCE_NOEXCEPT(__VA_ARGS__) \ BOOST_HOF_RETURNS_DECLTYPE(__VA_ARGS__) \ { BOOST_HOF_RETURNS_RETURN(__VA_ARGS__); } namespace boost { namespace hof { namespace detail { template struct check_this { static_assert(std::is_same::value, "Incorret BOOST_HOF_THIS or BOOST_HOF_CONST_THIS used."); }; }}} // namespace boost::hof #endif #if BOOST_HOF_HAS_MANGLE_OVERLOAD #define BOOST_HOF_MANGLE_CAST(...) BOOST_HOF_REM #define BOOST_HOF_RETURNS_C_CAST(...) (__VA_ARGS__) BOOST_HOF_REM #define BOOST_HOF_RETURNS_REINTERPRET_CAST(...) reinterpret_cast<__VA_ARGS__> #define BOOST_HOF_RETURNS_STATIC_CAST(...) static_cast<__VA_ARGS__> #define BOOST_HOF_RETURNS_CONSTRUCT(...) __VA_ARGS__ #else #define BOOST_HOF_RETURNS_DERAIL_MANGLE_CAST(...) BOOST_HOF_PP_IIF(BOOST_HOF_PP_IS_PAREN(BOOST_HOF_RETURNS_DECLTYPE_CONTEXT(())))(\ BOOST_HOF_REM, \ std::declval<__VA_ARGS__>() BOOST_HOF_EAT \ ) #define BOOST_HOF_MANGLE_CAST BOOST_HOF_PP_RAIL(BOOST_HOF_RETURNS_DERAIL_MANGLE_CAST) #define BOOST_HOF_RETURNS_DERAIL_C_CAST(...) BOOST_HOF_PP_IIF(BOOST_HOF_PP_IS_PAREN(BOOST_HOF_RETURNS_DECLTYPE_CONTEXT(())))(\ (__VA_ARGS__) BOOST_HOF_REM, \ std::declval<__VA_ARGS__>() BOOST_HOF_EAT \ ) #define BOOST_HOF_RETURNS_C_CAST BOOST_HOF_PP_RAIL(BOOST_HOF_RETURNS_DERAIL_C_CAST) #define BOOST_HOF_RETURNS_DERAIL_REINTERPRET_CAST(...) BOOST_HOF_PP_IIF(BOOST_HOF_PP_IS_PAREN(BOOST_HOF_RETURNS_DECLTYPE_CONTEXT(())))(\ reinterpret_cast<__VA_ARGS__>, \ std::declval<__VA_ARGS__>() BOOST_HOF_EAT \ ) #define BOOST_HOF_RETURNS_REINTERPRET_CAST BOOST_HOF_PP_RAIL(BOOST_HOF_RETURNS_DERAIL_REINTERPRET_CAST) #define BOOST_HOF_RETURNS_DERAIL_STATIC_CAST(...) BOOST_HOF_PP_IIF(BOOST_HOF_PP_IS_PAREN(BOOST_HOF_RETURNS_DECLTYPE_CONTEXT(())))(\ static_cast<__VA_ARGS__>, \ std::declval<__VA_ARGS__>() BOOST_HOF_EAT \ ) #define BOOST_HOF_RETURNS_STATIC_CAST BOOST_HOF_PP_RAIL(BOOST_HOF_RETURNS_DERAIL_STATIC_CAST) #define BOOST_HOF_RETURNS_DERAIL_CONSTRUCT(...) BOOST_HOF_PP_IIF(BOOST_HOF_PP_IS_PAREN(BOOST_HOF_RETURNS_DECLTYPE_CONTEXT(())))(\ __VA_ARGS__, \ std::declval<__VA_ARGS__>() BOOST_HOF_EAT \ ) #define BOOST_HOF_RETURNS_CONSTRUCT BOOST_HOF_PP_RAIL(BOOST_HOF_RETURNS_DERAIL_CONSTRUCT) #endif #define BOOST_HOF_AUTO_FORWARD(...) BOOST_HOF_RETURNS_STATIC_CAST(decltype(__VA_ARGS__))(__VA_ARGS__) #endif