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
// // SPDX-License-Identifier: BSD-3-Clause // Copyright Contributors to the OpenEXR Project. // // clang-format off #ifndef _PyImathFixedVArray_h_ #define _PyImathFixedVArray_h_ #define BOOST_BIND_GLOBAL_PLACEHOLDERS #include #include #include #include "PyImathFixedArray.h" namespace PyImath { template class FixedVArray { // This class (at least for now) holds a std::vector of 'T' types. // This will give us the 'variable' part of the array. Generally, // we will initially support only a very small subset of accessor // methods before the semantics are fully defined. Currently, the // VArray semantics are defined in the 'varraySemantics.txt' file. std::vector * _ptr; size_t _length; size_t _stride; bool _writable; // This handle optionally stores a shared_array to allocated array data // so that everything is freed properly on exit. boost::any _handle; boost::shared_array _indices; // non-NULL if we're a masked reference size_t _unmaskedLength; public: typedef T BaseType; FixedVArray (std::vector* ptr, Py_ssize_t length, Py_ssize_t stride = 1, bool writable = true); FixedVArray (std::vector* ptr, Py_ssize_t length, Py_ssize_t stride, boost::any handle, bool writable = true); FixedVArray (const std::vector* ptr, Py_ssize_t length, Py_ssize_t stride = 1); FixedVArray (const std::vector* ptr, Py_ssize_t length, Py_ssize_t stride, boost::any handle); explicit FixedVArray (Py_ssize_t length); FixedVArray (const T& initialValue, Py_ssize_t length); FixedVArray (FixedVArray& f, const FixedArray& mask); FixedVArray (const FixedArray& size, const T& initialValue); FixedVArray (const FixedVArray& other); const FixedVArray& operator = (const FixedVArray& other); ~FixedVArray(); // ---------------- const boost::any& handle() { return _handle; } Py_ssize_t len() const { return _length; } size_t stride() const { return _stride; } bool writable() const { return _writable; } // This method is mainly here for use in confidence tests, but there may // be other use-cases where a writable array needs to be made read-only. // Note that we do not provide a 'makeWritable' method here, because that // type of operation shouldn't be allowed. void makeReadOnly() { _writable = false; } bool isMaskedReference() const { return _indices.get() != 0; } size_t unmaskedLength() const { return _unmaskedLength; } std::vector& operator [] (size_t i); const std::vector& operator [] (size_t i) const; // ---------------- FixedArray getitem (Py_ssize_t index); FixedVArray getslice (PyObject* index) const; FixedVArray getslice_mask (const FixedArray& mask); void setitem_scalar (PyObject* index, const FixedArray& data); void setitem_scalar_mask (const FixedArray& mask, const FixedArray& data); void setitem_vector (PyObject* index, const FixedVArray& data); void setitem_vector_mask (const FixedArray& mask, const FixedVArray& data); struct SizeHelper { SizeHelper(FixedVArray &a) : _a(a) {} int getitem(Py_ssize_t index) const; FixedArray getitem_slice(PyObject* index) const; FixedArray getitem_mask(const FixedArray& mask) const; void setitem_scalar (PyObject* index, size_t size); void setitem_scalar_mask (const FixedArray& mask, size_t size); void setitem_vector (PyObject* index, const FixedArray& size); void setitem_vector_mask (const FixedArray& mask, const FixedArray& size); private: FixedVArray &_a; }; boost::shared_ptr getSizeHelper(); friend struct SizeHelper; // ---------------- static boost::python::class_ > register_(const char* doc); // Instantiations of fixed variable arrays must implement this static member. static const char* name(); template size_t match_dimension (const FixedArray& mask, bool strictComparison = true) const { if (len() == mask.len()) { return len(); } bool throwExc = false; if (strictComparison) { throwExc = true; } else if (_indices) { if (_unmaskedLength != (size_t) mask.len()) { throwExc = true; } } else { throwExc = true; } if (throwExc) { throw std::invalid_argument("Dimensions of source do not match destination"); } return len(); } size_t match_dimension (const FixedVArray& other, bool strictComparison = true) const { if (len() == other.len()) { return len(); } bool throwExc = false; if (strictComparison) { throwExc = true; } else if (_indices) { if (_unmaskedLength != (size_t) other.len()) { throwExc = true; } } else { throwExc = true; } if (throwExc) { throw std::invalid_argument("Dimensions of source do not match destination"); } return len(); } protected: size_t raw_ptr_index (size_t i) const; }; } // namespace PyImath #endif // _PyImathFixedVArray_h_