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) 2016-2018 T. Zachary Laine // // 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_YAP_EXPRESSION_HPP_INCLUDED #define BOOST_YAP_EXPRESSION_HPP_INCLUDED #include namespace boost { namespace yap { /** Reference expression template that provides all operator overloads. \note Due to a limitation of Doxygen, each of the value(), left(), right(), and operator overloads listed here is a stand-in for three member functions. For each function f, the listing here is: \code return_type f (); \endcode However, there are actually three functions: \code return_type f () const &; return_type f () &; return_type f () &&; \endcode */ template struct expression { using tuple_type = Tuple; static const expr_kind kind = Kind; /** Default constructor. Does nothing. */ constexpr expression() {} /** Moves \a rhs into the only data mamber, \c elements. */ constexpr expression(tuple_type && rhs) : elements(static_cast(rhs)) {} tuple_type elements; /** A convenience member function that dispatches to the free function value(). */ constexpr decltype(auto) value() & { return ::boost::yap::value(*this); } #ifndef BOOST_YAP_DOXYGEN constexpr decltype(auto) value() const & { return ::boost::yap::value(*this); } constexpr decltype(auto) value() && { return ::boost::yap::value(std::move(*this)); } #endif /** A convenience member function that dispatches to the free function left(). */ constexpr decltype(auto) left() & { return ::boost::yap::left(*this); } #ifndef BOOST_YAP_DOXYGEN constexpr decltype(auto) left() const & { return ::boost::yap::left(*this); } constexpr decltype(auto) left() && { return ::boost::yap::left(std::move(*this)); } #endif /** A convenience member function that dispatches to the free function right(). */ constexpr decltype(auto) right() & { return ::boost::yap::right(*this); } #ifndef BOOST_YAP_DOXYGEN constexpr decltype(auto) right() const & { return ::boost::yap::right(*this); } constexpr decltype(auto) right() && { return ::boost::yap::right(std::move(*this)); } #endif BOOST_YAP_USER_ASSIGN_OPERATOR( expression, ::boost::yap::expression) // = BOOST_YAP_USER_SUBSCRIPT_OPERATOR(::boost::yap::expression) // [] BOOST_YAP_USER_CALL_OPERATOR(::boost::yap::expression) // () }; /** Terminal expression specialization of the reference expression template. \note Due to a limitation of Doxygen, the value() member and each of the operator overloads listed here is a stand-in for three member functions. For each function f, the listing here is: \code return_type f (); \endcode However, there are actually three functions: \code return_type f () const &; return_type f () &; return_type f () &&; \endcode */ template struct expression> { using tuple_type = hana::tuple; static const expr_kind kind = expr_kind::terminal; /** Default constructor. Does nothing. */ constexpr expression() {} /** Forwards \a t into \c elements. */ constexpr expression(T && t) : elements(static_cast(t)) {} /** Copies \a rhs into the only data mamber, \c elements. */ constexpr expression(hana::tuple const & rhs) : elements(rhs) {} /** Moves \a rhs into the only data mamber, \c elements. */ constexpr expression(hana::tuple && rhs) : elements(std::move(rhs)) {} tuple_type elements; /** A convenience member function that dispatches to the free function value(). */ constexpr decltype(auto) value() & { return ::boost::yap::value(*this); } #ifndef BOOST_YAP_DOXYGEN constexpr decltype(auto) value() const & { return ::boost::yap::value(*this); } constexpr decltype(auto) value() && { return ::boost::yap::value(std::move(*this)); } #endif BOOST_YAP_USER_ASSIGN_OPERATOR( expression, ::boost::yap::expression) // = BOOST_YAP_USER_SUBSCRIPT_OPERATOR(::boost::yap::expression) // [] BOOST_YAP_USER_CALL_OPERATOR(::boost::yap::expression) // () }; #ifndef BOOST_YAP_DOXYGEN BOOST_YAP_USER_UNARY_OPERATOR(unary_plus, expression, expression) // + BOOST_YAP_USER_UNARY_OPERATOR(negate, expression, expression) // - BOOST_YAP_USER_UNARY_OPERATOR(dereference, expression, expression) // * BOOST_YAP_USER_UNARY_OPERATOR(complement, expression, expression) // ~ BOOST_YAP_USER_UNARY_OPERATOR(address_of, expression, expression) // & BOOST_YAP_USER_UNARY_OPERATOR(logical_not, expression, expression) // ! BOOST_YAP_USER_UNARY_OPERATOR(pre_inc, expression, expression) // ++ BOOST_YAP_USER_UNARY_OPERATOR(pre_dec, expression, expression) // -- BOOST_YAP_USER_UNARY_OPERATOR(post_inc, expression, expression) // ++(int) BOOST_YAP_USER_UNARY_OPERATOR(post_dec, expression, expression) // --(int) BOOST_YAP_USER_BINARY_OPERATOR(shift_left, expression, expression) // << BOOST_YAP_USER_BINARY_OPERATOR(shift_right, expression, expression) // >> BOOST_YAP_USER_BINARY_OPERATOR(multiplies, expression, expression) // * BOOST_YAP_USER_BINARY_OPERATOR(divides, expression, expression) // / BOOST_YAP_USER_BINARY_OPERATOR(modulus, expression, expression) // % BOOST_YAP_USER_BINARY_OPERATOR(plus, expression, expression) // + BOOST_YAP_USER_BINARY_OPERATOR(minus, expression, expression) // - BOOST_YAP_USER_BINARY_OPERATOR(less, expression, expression) // < BOOST_YAP_USER_BINARY_OPERATOR(greater, expression, expression) // > BOOST_YAP_USER_BINARY_OPERATOR(less_equal, expression, expression) // <= BOOST_YAP_USER_BINARY_OPERATOR(greater_equal, expression, expression) // >= BOOST_YAP_USER_BINARY_OPERATOR(equal_to, expression, expression) // == BOOST_YAP_USER_BINARY_OPERATOR(not_equal_to, expression, expression) // != BOOST_YAP_USER_BINARY_OPERATOR(logical_or, expression, expression) // || BOOST_YAP_USER_BINARY_OPERATOR(logical_and, expression, expression) // && BOOST_YAP_USER_BINARY_OPERATOR(bitwise_and, expression, expression) // & BOOST_YAP_USER_BINARY_OPERATOR(bitwise_or, expression, expression) // | BOOST_YAP_USER_BINARY_OPERATOR(bitwise_xor, expression, expression) // ^ BOOST_YAP_USER_BINARY_OPERATOR(comma, expression, expression) // , BOOST_YAP_USER_BINARY_OPERATOR(mem_ptr, expression, expression) // ->* BOOST_YAP_USER_BINARY_OPERATOR(shift_left_assign, expression, expression) // <<= BOOST_YAP_USER_BINARY_OPERATOR(shift_right_assign, expression, expression) // >>= BOOST_YAP_USER_BINARY_OPERATOR(multiplies_assign, expression, expression) // *= BOOST_YAP_USER_BINARY_OPERATOR(divides_assign, expression, expression) // /= BOOST_YAP_USER_BINARY_OPERATOR(modulus_assign, expression, expression) // %= BOOST_YAP_USER_BINARY_OPERATOR(plus_assign, expression, expression) // += BOOST_YAP_USER_BINARY_OPERATOR(minus_assign, expression, expression) // -= BOOST_YAP_USER_BINARY_OPERATOR(bitwise_and_assign, expression, expression) // &= BOOST_YAP_USER_BINARY_OPERATOR(bitwise_or_assign, expression, expression) // |= BOOST_YAP_USER_BINARY_OPERATOR(bitwise_xor_assign, expression, expression) // ^= BOOST_YAP_USER_EXPR_IF_ELSE(expression) #else /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */ template constexpr auto operator+(Expr &&); /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */ template constexpr auto operator-(Expr &&); /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */ template constexpr auto operator*(Expr &&); /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */ template constexpr auto operator~(Expr &&); /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */ template constexpr auto operator&(Expr &&); /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */ template constexpr auto operator!(Expr &&); /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */ template constexpr auto operator++(Expr &&); /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */ template constexpr auto operator--(Expr &&); /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */ template constexpr auto operator++(Expr &&, int); /** \see BOOST_YAP_USER_UNARY_OPERATOR for full semantics. */ template constexpr auto operator--(Expr &&, int); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator<<(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator>>(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator*(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator/(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator%(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator+(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator-(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator<(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator>(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator<=(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator>=(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator==(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator!=(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator||(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator&&(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator&(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator|(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_BINARY_OPERATOR for full semantics. */ template constexpr auto operator^(LExpr && lhs, RExpr && rhs); /** \see BOOST_YAP_USER_EXPR_IF_ELSE for full semantics. */ template constexpr auto if_else(Expr1 && expr1, Expr2 && expr2, Expr3 && expr3); #endif /** Returns make_expression(...). */ template constexpr auto make_expression(T &&... t) { return make_expression(static_cast(t)...); } /** Returns make_terminal(t). */ template constexpr auto make_terminal(T && t) { return make_terminal(static_cast(t)); } /** Returns as_expr(t). */ template constexpr decltype(auto) as_expr(T && t) { return as_expr(static_cast(t)); } }} #endif