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 2017-2021 Glen Joseph Fernandes (glenjofe@gmail.com) Distributed under the Boost Software License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_CORE_POINTER_TRAITS_HPP #define BOOST_CORE_POINTER_TRAITS_HPP #include #include #include namespace boost { namespace detail { struct ptr_none { }; template struct ptr_valid { typedef void type; }; template struct ptr_first { typedef ptr_none type; }; #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) template class T, class U, class... Args> struct ptr_first > { typedef U type; }; #else template class T, class U> struct ptr_first > { typedef U type; }; template class T, class U1, class U2> struct ptr_first > { typedef U1 type; }; template class T, class U1, class U2, class U3> struct ptr_first > { typedef U1 type; }; #endif template struct ptr_element { typedef typename ptr_first::type type; }; template struct ptr_element::type> { typedef typename T::element_type type; }; template struct ptr_difference { typedef std::ptrdiff_t type; }; template struct ptr_difference::type> { typedef typename T::difference_type type; }; template struct ptr_transform { }; #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) template class T, class U, class... Args, class V> struct ptr_transform, V> { typedef T type; }; #else template class T, class U, class V> struct ptr_transform, V> { typedef T type; }; template class T, class U1, class U2, class V> struct ptr_transform, V> { typedef T type; }; template class T, class U1, class U2, class U3, class V> struct ptr_transform, V> { typedef T type; }; #endif template struct ptr_rebind : ptr_transform { }; #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) template struct ptr_rebind >::type> { typedef typename T::template rebind type; }; #else template struct ptr_rebind::other>::type> { typedef typename T::template rebind::other type; }; #endif #if !defined(BOOST_NO_CXX11_DECLTYPE_N3276) template class ptr_to_expr { template struct result { char x, y; }; static E& source(); template static auto check(int) -> result; template static char check(long); public: BOOST_STATIC_CONSTEXPR bool value = sizeof(check(0)) > 1; }; template struct ptr_to_expr { BOOST_STATIC_CONSTEXPR bool value = true; }; template struct ptr_has_to { BOOST_STATIC_CONSTEXPR bool value = ptr_to_expr::value; }; #else template struct ptr_has_to { BOOST_STATIC_CONSTEXPR bool value = true; }; #endif template struct ptr_has_to { BOOST_STATIC_CONSTEXPR bool value = false; }; template struct ptr_has_to { BOOST_STATIC_CONSTEXPR bool value = false; }; template struct ptr_has_to { BOOST_STATIC_CONSTEXPR bool value = false; }; template struct ptr_has_to { BOOST_STATIC_CONSTEXPR bool value = false; }; template::value> struct ptr_to { }; template struct ptr_to { static T pointer_to(E& v) { return T::pointer_to(v); } }; template struct ptr_to { static T* pointer_to(T& v) BOOST_NOEXCEPT { return boost::addressof(v); } }; template struct ptr_traits : ptr_to { typedef T pointer; typedef E element_type; typedef typename ptr_difference::type difference_type; template struct rebind_to : ptr_rebind { }; #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) template using rebind = typename rebind_to::type; #endif }; template struct ptr_traits { }; } /* detail */ template struct pointer_traits : detail::ptr_traits::type> { }; template struct pointer_traits : detail::ptr_to { typedef T* pointer; typedef T element_type; typedef std::ptrdiff_t difference_type; template struct rebind_to { typedef U* type; }; #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) template using rebind = typename rebind_to::type; #endif }; template BOOST_CONSTEXPR inline T* to_address(T* v) BOOST_NOEXCEPT { return v; } #if !defined(BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION) namespace detail { template inline T* ptr_address(T* v, int) BOOST_NOEXCEPT { return v; } template inline auto ptr_address(const T& v, int) BOOST_NOEXCEPT -> decltype(boost::pointer_traits::to_address(v)) { return boost::pointer_traits::to_address(v); } template inline auto ptr_address(const T& v, long) BOOST_NOEXCEPT { return boost::detail::ptr_address(v.operator->(), 0); } } /* detail */ template inline auto to_address(const T& v) BOOST_NOEXCEPT { return boost::detail::ptr_address(v, 0); } #else template inline typename pointer_traits::element_type* to_address(const T& v) BOOST_NOEXCEPT { return boost::to_address(v.operator->()); } #endif } /* boost */ #endif