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 _PyImathFixedMatrix_h_ #define _PyImathFixedMatrix_h_ #define BOOST_BIND_GLOBAL_PLACEHOLDERS #include #include #include "PyImathFixedArray.h" #include "PyImathOperators.h" namespace PyImath { // // Utility class for a runtime-specified fixed sized matrix type in python // template class FixedMatrix { T * _ptr; int _rows; int _cols; int _rowStride; int _colStride; int * _refcount; // refcount if allocated, null if externally allocated public: FixedMatrix(T *ptr, int rows, int cols, int rowStride = 1, int colStride = 1) : _ptr(ptr), _rows(rows), _cols(cols), _rowStride(rowStride), _colStride(colStride), _refcount(0) { // nothing } FixedMatrix(int rows, int cols) : _ptr(new T[rows*cols]), _rows(rows), _cols(cols), _rowStride(1), _colStride(1), _refcount(new int(1)) { // nothing } FixedMatrix(const FixedMatrix &other) : _ptr(other._ptr), _rows(other._rows), _cols(other._cols), _rowStride(other._rowStride), _colStride(other._colStride), _refcount(other._refcount) { if (_refcount) *_refcount += 1; } const FixedMatrix & operator = (const FixedMatrix &other) { if (&other == this) return *this; unref(); _ptr = other._ptr; _rows = other._rows; _cols = other._cols; _rowStride = other._rowStride; _colStride = other._colStride; _refcount = other._refcount; if (_refcount) *_refcount += 1; return *this; } void unref() { if (_refcount) { *_refcount -= 1; if (*_refcount == 0) { delete [] _ptr; delete _refcount; } } _ptr = 0; _rows = 0; _cols = 0; _rowStride = 0; _colStride = 0; _refcount = 0; } ~FixedMatrix() { unref(); } Py_ssize_t convert_index(int index) const { if (index < 0) index += _rows; if (index >= _rows || index < 0) { PyErr_SetString(PyExc_IndexError, "Index out of range"); boost::python::throw_error_already_set(); } return index; } void extract_slice_indices(PyObject *index, Py_ssize_t &start, Py_ssize_t &end, Py_ssize_t &step, Py_ssize_t &slicelength) const { slicelength = 0; if (PySlice_Check(index)) { #if PY_MAJOR_VERSION > 2 PyObject *slice = index; #else PySliceObject *slice = reinterpret_cast(index); #endif if (PySlice_GetIndicesEx(slice,_rows,&start,&end,&step,&slicelength) == -1) { boost::python::throw_error_already_set(); } } else if (PyInt_Check(index)) { Py_ssize_t i = convert_index(PyInt_AS_LONG(index)); start = i; end = i+1; step = 1; slicelength = 1; } else { PyErr_SetString(PyExc_TypeError, "Object is not a slice"); boost::python::throw_error_already_set(); } //std::cout << "Slice indices are " << start << " " << end << " " << step << " " << slicelength << std::endl; } const FixedArray * getitem(int index) const { return new FixedArray(const_cast(&_ptr[convert_index(index)*_rowStride*_cols*_colStride]),_cols,_colStride); } FixedMatrix getslice(PyObject *index) const { Py_ssize_t start, end, step, slicelength; extract_slice_indices(index,start,end,step,slicelength); FixedMatrix f(slicelength,_cols); for (int i=0; i &data) { Py_ssize_t start, end, step, slicelength; extract_slice_indices(index,start,end,step,slicelength); if (data.len() != _cols) { PyErr_SetString(PyExc_IndexError, "Dimensions of source do not match destination"); boost::python::throw_error_already_set(); } for (int i=0; i operator [] (int i) { return FixedArray(&_ptr[i*_rowStride*_cols*_colStride],_cols,_colStride); } const FixedArray operator [] (int i) const { return FixedArray(const_cast(&_ptr[i*_rowStride*_cols*_colStride]),_cols,_colStride); } static boost::python::class_ > register_(const char *name, const char *doc) { boost::python::class_ > c(name,doc, boost::python::init("return an uninitialized array of the specified rows and cols")); c .def("__getitem__", &FixedMatrix::getslice) .def("__getitem__", &FixedMatrix::getitem, boost::python::return_internal_reference<>()) .def("__setitem__", &FixedMatrix::setitem_scalar) .def("__setitem__", &FixedMatrix::setitem_vector) .def("__setitem__", &FixedMatrix::setitem_matrix) .def("__len__",&FixedMatrix::rows) .def("rows",&FixedMatrix::rows) .def("columns",&FixedMatrix::cols) ; return c; } template int match_dimension(const FixedMatrix &a1) const { if (rows() != a1.rows() || cols() != a1.cols()) { PyErr_SetString(PyExc_IndexError, "Dimensions of source do not match destination"); boost::python::throw_error_already_set(); } return rows(); } }; // unary operation application template