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
// Boost.Range library // // Copyright Neil Groves 2010. Use, modification and // distribution is subject to 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) // // For more information, see http://www.boost.org/libs/range/ // #ifndef BOOST_RANGE_DETAIL_ANY_ITERATOR_WRAPPER_HPP_INCLUDED #define BOOST_RANGE_DETAIL_ANY_ITERATOR_WRAPPER_HPP_INCLUDED #include #include #include #include namespace boost { namespace range_detail { template TargetT& polymorphic_ref_downcast(SourceT& source) { #ifdef BOOST_NO_RTTI return static_cast(source); #else return *boost::polymorphic_downcast(&source); #endif } template Reference dereference_cast(T& x) { return static_cast(x); } template Reference dereference_cast(const T& x) { return static_cast(const_cast(x)); } template< class WrappedIterator , class Reference , class Buffer > class any_incrementable_iterator_wrapper : public any_incrementable_iterator_interface< Reference , Buffer > { BOOST_RANGE_CONCEPT_ASSERT(( IncrementableIteratorConcept )); public: typedef WrappedIterator wrapped_type; BOOST_STATIC_ASSERT(( is_convertible< typename iterator_reference::type , Reference >::value )); any_incrementable_iterator_wrapper() : m_it() {} explicit any_incrementable_iterator_wrapper(wrapped_type it) : m_it(it) {} // any_incrementable_iterator implementation virtual any_incrementable_iterator_wrapper* clone( typename any_incrementable_iterator_wrapper::buffer_type& buffer ) const { return new (buffer.allocate(sizeof(*this))) any_incrementable_iterator_wrapper(m_it); } virtual any_incrementable_iterator_wrapper< WrappedIterator , typename any_incrementable_iterator_wrapper::const_reference , Buffer >* clone_const_ref( typename any_incrementable_iterator_wrapper::buffer_type& buffer ) const { typedef any_incrementable_iterator_wrapper< WrappedIterator , typename any_incrementable_iterator_wrapper::const_reference , Buffer > result_type; return new (buffer.allocate(sizeof(result_type))) result_type(m_it); } virtual any_incrementable_iterator_wrapper< WrappedIterator , typename any_incrementable_iterator_wrapper::reference_as_value_type , Buffer >* clone_reference_as_value( typename any_incrementable_iterator_wrapper::buffer_type& buffer ) const { typedef any_incrementable_iterator_wrapper< WrappedIterator , typename any_incrementable_iterator_wrapper::reference_as_value_type , Buffer > result_type; return new (buffer.allocate(sizeof(result_type))) result_type(m_it); } virtual void increment() { ++m_it; } private: wrapped_type m_it; }; template< class WrappedIterator , class Reference , class Buffer > class any_single_pass_iterator_wrapper : public any_single_pass_iterator_interface< Reference , Buffer > { struct disabler {}; BOOST_RANGE_CONCEPT_ASSERT(( SinglePassIteratorConcept )); typedef any_single_pass_iterator_interface< Reference, Buffer > base_type; public: typedef typename base_type::reference reference; any_single_pass_iterator_wrapper() : m_it() {} explicit any_single_pass_iterator_wrapper(const WrappedIterator& it) : m_it(it) {} // any_single_pass_iterator_interface implementation virtual any_single_pass_iterator_wrapper* clone( typename any_single_pass_iterator_wrapper::buffer_type& buffer ) const { return new (buffer.allocate(sizeof(*this))) any_single_pass_iterator_wrapper(m_it); } virtual any_single_pass_iterator_wrapper< WrappedIterator , typename any_single_pass_iterator_wrapper::const_reference , Buffer >* clone_const_ref( typename any_single_pass_iterator_wrapper::buffer_type& buffer ) const { typedef any_single_pass_iterator_wrapper< WrappedIterator , typename any_single_pass_iterator_wrapper::const_reference , Buffer > result_type; return new (buffer.allocate(sizeof(result_type))) result_type(m_it); } virtual any_single_pass_iterator_wrapper< WrappedIterator , typename any_single_pass_iterator_wrapper::reference_as_value_type , Buffer >* clone_reference_as_value( typename any_single_pass_iterator_wrapper::buffer_type& buffer ) const { typedef any_single_pass_iterator_wrapper< WrappedIterator , typename any_single_pass_iterator_wrapper::reference_as_value_type , Buffer > result_type; return new (buffer.allocate(sizeof(result_type))) result_type(m_it); } virtual void increment() { ++m_it; } virtual bool equal(const any_single_pass_iterator_interface& other) const { return m_it == range_detail::polymorphic_ref_downcast(other).m_it; } virtual reference dereference() const { return dereference_cast(*m_it); } private: WrappedIterator m_it; }; template< class WrappedIterator , class Reference , class Buffer > class any_forward_iterator_wrapper : public any_forward_iterator_interface< Reference , Buffer > { BOOST_RANGE_CONCEPT_ASSERT(( ForwardIteratorConcept )); typedef any_forward_iterator_interface< Reference, Buffer > base_type; public: typedef typename base_type::reference reference; any_forward_iterator_wrapper() : m_it() {} explicit any_forward_iterator_wrapper(const WrappedIterator& it) : m_it(it) {} // any_forward_iterator_interface implementation virtual any_forward_iterator_wrapper* clone( typename any_forward_iterator_wrapper::buffer_type& buffer ) const { return new (buffer.allocate(sizeof(*this))) any_forward_iterator_wrapper(m_it); } virtual any_forward_iterator_wrapper< WrappedIterator , typename any_forward_iterator_wrapper::const_reference , Buffer >* clone_const_ref( typename any_forward_iterator_wrapper::buffer_type& buffer ) const { typedef any_forward_iterator_wrapper< WrappedIterator , typename any_forward_iterator_wrapper::const_reference , Buffer > result_type; return new (buffer.allocate(sizeof(result_type))) result_type(m_it); } virtual any_forward_iterator_wrapper< WrappedIterator , typename any_forward_iterator_wrapper::reference_as_value_type , Buffer >* clone_reference_as_value( typename any_forward_iterator_wrapper::buffer_type& buffer ) const { typedef any_forward_iterator_wrapper< WrappedIterator , typename any_forward_iterator_wrapper::reference_as_value_type , Buffer > result_type; return new (buffer.allocate(sizeof(result_type))) result_type(m_it); } virtual void increment() { ++m_it; } virtual bool equal(const any_single_pass_iterator_interface& other) const { return m_it == range_detail::polymorphic_ref_downcast(other).m_it; } virtual reference dereference() const { return dereference_cast(*m_it); } private: WrappedIterator m_it; }; template< class WrappedIterator , class Reference , class Buffer > class any_bidirectional_iterator_wrapper : public any_bidirectional_iterator_interface< Reference , Buffer > { BOOST_RANGE_CONCEPT_ASSERT(( BidirectionalIteratorConcept )); typedef any_bidirectional_iterator_interface< Reference, Buffer > base_type; public: typedef typename base_type::reference reference; any_bidirectional_iterator_wrapper() : m_it() { } explicit any_bidirectional_iterator_wrapper(const WrappedIterator& it) : m_it(it) { } virtual any_bidirectional_iterator_wrapper* clone( typename any_bidirectional_iterator_wrapper::buffer_type& buffer ) const { return new (buffer.allocate(sizeof(*this))) any_bidirectional_iterator_wrapper(*this); } virtual any_bidirectional_iterator_wrapper< WrappedIterator , typename any_bidirectional_iterator_wrapper::const_reference , Buffer >* clone_const_ref( typename any_bidirectional_iterator_wrapper::buffer_type& buffer ) const { typedef any_bidirectional_iterator_wrapper< WrappedIterator , typename any_bidirectional_iterator_wrapper::const_reference , Buffer > result_type; return new (buffer.allocate(sizeof(result_type))) result_type(m_it); } virtual any_bidirectional_iterator_wrapper< WrappedIterator , typename any_bidirectional_iterator_wrapper::reference_as_value_type , Buffer >* clone_reference_as_value( typename any_bidirectional_iterator_wrapper::buffer_type& buffer ) const { typedef any_bidirectional_iterator_wrapper< WrappedIterator , typename any_bidirectional_iterator_wrapper::reference_as_value_type , Buffer > result_type; return new (buffer.allocate(sizeof(result_type))) result_type(m_it); } virtual void increment() { ++m_it; } virtual void decrement() { --m_it; } virtual bool equal(const any_single_pass_iterator_interface& other) const { return m_it == range_detail::polymorphic_ref_downcast(other).m_it; } virtual reference dereference() const { return dereference_cast(*m_it); } private: WrappedIterator m_it; }; template< class WrappedIterator , class Reference , class Difference , class Buffer > class any_random_access_iterator_wrapper : public any_random_access_iterator_interface< Reference , Difference , Buffer > { BOOST_RANGE_CONCEPT_ASSERT(( RandomAccessIteratorConcept )); typedef any_random_access_iterator_interface< Reference, Difference, Buffer > base_type; public: typedef typename base_type::reference reference; typedef Difference difference_type; any_random_access_iterator_wrapper() : m_it() { } explicit any_random_access_iterator_wrapper(const WrappedIterator& other) : m_it(other) { } virtual any_random_access_iterator_wrapper* clone( typename any_random_access_iterator_wrapper::buffer_type& buffer ) const { return new (buffer.allocate(sizeof(*this))) any_random_access_iterator_wrapper(*this); } virtual any_random_access_iterator_wrapper< WrappedIterator , typename any_random_access_iterator_wrapper::const_reference , Difference , Buffer >* clone_const_ref( typename any_random_access_iterator_wrapper::buffer_type& buffer ) const { typedef any_random_access_iterator_wrapper< WrappedIterator , typename any_random_access_iterator_wrapper::const_reference , Difference , Buffer > result_type; return new (buffer.allocate(sizeof(result_type))) result_type(m_it); } virtual any_random_access_iterator_wrapper< WrappedIterator , typename any_random_access_iterator_wrapper::reference_as_value_type , Difference , Buffer >* clone_reference_as_value( typename any_random_access_iterator_wrapper::buffer_type& buffer ) const { typedef any_random_access_iterator_wrapper< WrappedIterator , typename any_random_access_iterator_wrapper::reference_as_value_type , Difference , Buffer > result_type; return new (buffer.allocate(sizeof(result_type))) result_type(m_it); } virtual void increment() { ++m_it; } virtual bool equal(const any_single_pass_iterator_interface& other) const { return m_it == range_detail::polymorphic_ref_downcast(other).m_it; } virtual void decrement() { --m_it; } virtual void advance(Difference offset) { m_it += offset; } virtual reference dereference() const { return dereference_cast(*m_it); } virtual Difference distance_to(const any_random_access_iterator_interface& other) const { return range_detail::polymorphic_ref_downcast(other).m_it - m_it; } private: WrappedIterator m_it; }; template< class WrappedIterator , class Traversal , class Reference , class Difference , class Buffer > struct any_iterator_wrapper_type_generator; template< class WrappedIterator , class Reference , class Difference , class Buffer > struct any_iterator_wrapper_type_generator< WrappedIterator , incrementable_traversal_tag , Reference , Difference , Buffer > { typedef any_incrementable_iterator_wrapper< WrappedIterator , Reference , Buffer > type; }; template< class WrappedIterator , class Reference , class Difference , class Buffer > struct any_iterator_wrapper_type_generator< WrappedIterator , single_pass_traversal_tag , Reference , Difference , Buffer > { typedef any_single_pass_iterator_wrapper< WrappedIterator , Reference , Buffer > type; }; template< class WrappedIterator , class Reference , class Difference , class Buffer > struct any_iterator_wrapper_type_generator< WrappedIterator , forward_traversal_tag , Reference , Difference , Buffer > { typedef any_forward_iterator_wrapper< WrappedIterator , Reference , Buffer > type; }; template< class WrappedIterator , class Reference , class Difference , class Buffer > struct any_iterator_wrapper_type_generator< WrappedIterator , bidirectional_traversal_tag , Reference , Difference , Buffer > { typedef any_bidirectional_iterator_wrapper< WrappedIterator , Reference , Buffer > type; }; template< class WrappedIterator , class Reference , class Difference , class Buffer > struct any_iterator_wrapper_type_generator< WrappedIterator , random_access_traversal_tag , Reference , Difference , Buffer > { typedef any_random_access_iterator_wrapper< WrappedIterator , Reference , Difference , Buffer > type; }; } // namespace range_detail } // namespace boost #endif // include guard