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. // // // Generators for uniformly distributed pseudo-random numbers and // functions that use those generators to generate numbers with // non-uniform distributions // // Note: class Rand48() calls erand48() and nrand48(), which are not // available on all operating systems. For compatibility we include // our own versions of erand48() and nrand48(). Our functions // have been reverse-engineered from the corresponding Unix/Linux // man page. // #ifndef INCLUDED_IMATHRANDOM_H #define INCLUDED_IMATHRANDOM_H #include "ImathExport.h" #include "ImathNamespace.h" #include #include IMATH_INTERNAL_NAMESPACE_HEADER_ENTER /// Fast random-number generator that generates /// a uniformly distributed sequence with a period /// length of 2^32. class Rand32 { public: /// Constructor, given a seed IMATH_HOSTDEVICE Rand32 (unsigned long int seed = 0); /// Re-initialize with a given seed IMATH_HOSTDEVICE void init (unsigned long int seed); /// Get the next value in the sequence (range: [false, true]) IMATH_HOSTDEVICE bool nextb (); /// Get the next value in the sequence (range: [0 ... 0xffffffff]) IMATH_HOSTDEVICE unsigned long int nexti (); /// Get the next value in the sequence (range: [0 ... 1[) IMATH_HOSTDEVICE IMATH_EXPORT float nextf (); /// Get the next value in the sequence (range [rangeMin ... rangeMax[) IMATH_HOSTDEVICE float nextf (float rangeMin, float rangeMax); private: IMATH_HOSTDEVICE void next (); unsigned long int _state; }; /// Random-number generator based on the C Standard Library /// functions erand48(), nrand48() & company; generates a /// uniformly distributed sequence. class Rand48 { public: /// Constructor IMATH_HOSTDEVICE Rand48 (unsigned long int seed = 0); /// Re-initialize with a given seed IMATH_HOSTDEVICE void init (unsigned long int seed); /// Get the next value in the sequence (range: [false, true]) IMATH_HOSTDEVICE bool nextb (); /// Get the next value in the sequence (range: [0 ... 0x7fffffff]) IMATH_HOSTDEVICE long int nexti (); /// Get the next value in the sequence (range: [0 ... 1[) IMATH_HOSTDEVICE double nextf (); /// Get the next value in the sequence (range [rangeMin ... rangeMax[) IMATH_HOSTDEVICE double nextf (double rangeMin, double rangeMax); private: unsigned short int _state[3]; }; /// Return random points uniformly distributed in a sphere with /// radius 1 around the origin (distance from origin <= 1). template IMATH_HOSTDEVICE Vec solidSphereRand (Rand& rand); /// Return random points uniformly distributed on the surface of /// a sphere with radius 1 around the origin. template IMATH_HOSTDEVICE Vec hollowSphereRand (Rand& rand); /// Return random numbers with a normal (Gaussian) /// distribution with zero mean and unit variance. template IMATH_HOSTDEVICE float gaussRand (Rand& rand); /// Return random points whose distance from the origin /// has a normal (Gaussian) distribution with zero mean /// and unit variance. template IMATH_HOSTDEVICE Vec gaussSphereRand (Rand& rand); //--------------------------------- // erand48(), nrand48() and friends //--------------------------------- /// @cond Doxygen_Suppress IMATH_HOSTDEVICE IMATH_EXPORT double erand48 (unsigned short state[3]); IMATH_HOSTDEVICE IMATH_EXPORT double drand48 (); IMATH_HOSTDEVICE IMATH_EXPORT long int nrand48 (unsigned short state[3]); IMATH_HOSTDEVICE IMATH_EXPORT long int lrand48 (); IMATH_HOSTDEVICE IMATH_EXPORT void srand48 (long int seed); /// @endcond //--------------- // Implementation //--------------- IMATH_HOSTDEVICE inline void Rand32::init (unsigned long int seed) { _state = (seed * 0xa5a573a5L) ^ 0x5a5a5a5aL; } IMATH_HOSTDEVICE inline Rand32::Rand32 (unsigned long int seed) { init (seed); } IMATH_HOSTDEVICE inline void Rand32::next () { _state = 1664525L * _state + 1013904223L; } IMATH_HOSTDEVICE inline bool Rand32::nextb () { next (); // Return the 31st (most significant) bit, by and-ing with 2 ^ 31. return !!(_state & 2147483648UL); } IMATH_HOSTDEVICE inline unsigned long int Rand32::nexti () { next (); return _state & 0xffffffff; } IMATH_HOSTDEVICE inline float Rand32::nextf (float rangeMin, float rangeMax) { float f = nextf (); return rangeMin * (1 - f) + rangeMax * f; } IMATH_HOSTDEVICE inline void Rand48::init (unsigned long int seed) { seed = (seed * 0xa5a573a5L) ^ 0x5a5a5a5aL; _state[0] = (unsigned short int) (seed & 0xFFFF); _state[1] = (unsigned short int) ((seed >> 16) & 0xFFFF); _state[2] = (unsigned short int) (seed & 0xFFFF); } IMATH_HOSTDEVICE inline Rand48::Rand48 (unsigned long int seed) { init (seed); } IMATH_HOSTDEVICE inline bool Rand48::nextb () { return nrand48 (_state) & 1; } IMATH_HOSTDEVICE inline long int Rand48::nexti () { return nrand48 (_state); } IMATH_HOSTDEVICE inline double Rand48::nextf () { return erand48 (_state); } IMATH_HOSTDEVICE inline double Rand48::nextf (double rangeMin, double rangeMax) { double f = nextf (); return rangeMin * (1 - f) + rangeMax * f; } template IMATH_HOSTDEVICE Vec solidSphereRand (Rand& rand) { Vec v; do { for (unsigned int i = 0; i < Vec::dimensions (); i++) v[i] = (typename Vec::BaseType) rand.nextf (-1, 1); } while (v.length2 () > 1); return v; } template IMATH_HOSTDEVICE Vec hollowSphereRand (Rand& rand) { Vec v; typename Vec::BaseType length; do { for (unsigned int i = 0; i < Vec::dimensions (); i++) v[i] = (typename Vec::BaseType) rand.nextf (-1, 1); length = v.length (); } while (length > 1 || length == 0); return v / length; } template IMATH_HOSTDEVICE float gaussRand (Rand& rand) { float x; // Note: to avoid numerical problems with very small float y; // numbers, we make these variables singe-precision float length2; // floats, but later we call the double-precision log() // and sqrt() functions instead of logf() and sqrtf(). do { x = float (rand.nextf (-1, 1)); y = float (rand.nextf (-1, 1)); length2 = x * x + y * y; } while (length2 >= 1 || length2 == 0); return x * sqrt (-2 * log (double (length2)) / length2); } template IMATH_HOSTDEVICE Vec gaussSphereRand (Rand& rand) { return hollowSphereRand (rand) * gaussRand (rand); } IMATH_INTERNAL_NAMESPACE_HEADER_EXIT #endif // INCLUDED_IMATHRANDOM_H