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 Paul Fultz II alias.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_ALIAS_H #define BOOST_HOF_GUARD_ALIAS_H #include #include #include #include #include /// alias /// ===== /// /// Description /// ----------- /// /// The `alias` class wraps a type with a new type that can be tagged by the /// user. This allows defining extra attributes about the type outside of the /// type itself. There are three different ways the value can be stored: as a /// member variable, by inheritance, or as a static member variable. The value /// can be retrieved uniformily using the `alias_value` function. /// /// Synopsis /// -------- /// /// // Alias the type using a member variable /// template /// class alias; /// /// // Alias the type by inheriting /// template /// class alias_inherit; /// /// // Alias the type using a static variable /// template /// class alias_static; /// /// // Retrieve tag from alias /// template /// class alias_tag; /// /// // Check if type has a certian tag /// template /// class has_tag; /// /// // Retrieve value from alias /// template /// constexpr auto alias_value(Alias&&); /// #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable: 4579) #endif namespace boost { namespace hof { template struct alias_tag; template struct has_tag : std::false_type {}; template struct has_tag::type >::type> : std::is_same::type, Tag> {}; namespace detail { template constexpr T& lvalue(T& x) noexcept { return x; } template constexpr const T& lvalue(const T& x) noexcept { return x; } } #define BOOST_HOF_UNARY_PERFECT_FOREACH(m) \ m(const&, boost::hof::detail::lvalue) \ m(&, boost::hof::detail::lvalue) \ m(&&, boost::hof::move) \ template struct alias { T value; BOOST_HOF_DELEGATE_CONSTRUCTOR(alias, T, value) }; #define BOOST_HOF_DETAIL_ALIAS_GET_VALUE(ref, move) \ template \ constexpr auto alias_value(alias ref a, Ts&&...) BOOST_HOF_RETURNS(move(a.value)) BOOST_HOF_UNARY_PERFECT_FOREACH(BOOST_HOF_DETAIL_ALIAS_GET_VALUE) template struct alias_tag> { typedef Tag type; }; template struct alias_inherit #if (defined(__GNUC__) && !defined (__clang__)) : std::conditional<(std::is_class::value), T, alias>::type #else : T #endif { BOOST_HOF_INHERIT_CONSTRUCTOR(alias_inherit, T) }; #define BOOST_HOF_DETAIL_ALIAS_INHERIT_GET_VALUE(ref, move) \ template::type> \ constexpr T ref alias_value(alias_inherit ref a, Ts&&...) BOOST_HOF_RETURNS_DEDUCE_NOEXCEPT(move(a)) \ { \ return move(a); \ } BOOST_HOF_UNARY_PERFECT_FOREACH(BOOST_HOF_DETAIL_ALIAS_INHERIT_GET_VALUE) template struct alias_tag> { typedef Tag type; }; namespace detail { template struct alias_static_storage { #ifdef _MSC_VER // Since we disable the error for 4579 on MSVC, which leaves the static // member unitialized at runtime, it is, therefore, only safe to use this // class on types that are empty with constructors that have no possible // side effects. static_assert(BOOST_HOF_IS_EMPTY(T) && BOOST_HOF_IS_LITERAL(T) && BOOST_HOF_IS_DEFAULT_CONSTRUCTIBLE(T), "In-class initialization is not yet implemented on MSVC"); #endif static constexpr T value = T(); }; template constexpr T alias_static_storage::value; } template struct alias_static { template constexpr alias_static(Ts&&...) noexcept {} }; template constexpr const T& alias_value(const alias_static&, Ts&&...) noexcept { return detail::alias_static_storage::value; } template struct alias_tag> { typedef Tag type; }; namespace detail { template struct alias_try_inherit : std::conditional<(BOOST_HOF_IS_CLASS(T) && !BOOST_HOF_IS_FINAL(T) && !BOOST_HOF_IS_POLYMORPHIC(T)), alias_inherit, alias > {}; #if BOOST_HOF_HAS_EBO template struct alias_empty : std::conditional<(BOOST_HOF_IS_EMPTY(T)), typename alias_try_inherit::type, alias > {}; #else template struct alias_empty : std::conditional< BOOST_HOF_IS_EMPTY(T) && BOOST_HOF_IS_LITERAL(T) && BOOST_HOF_IS_DEFAULT_CONSTRUCTIBLE(T), alias_static, alias > {}; #endif } }} // namespace boost::hof #ifdef _MSC_VER #pragma warning(pop) #endif #endif