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
import types import zipfile from _typeshed import ( StrOrBytesPath, StrPath, SupportsKeysAndGetItem, SupportsRead, SupportsWrite, ) from collections.abc import Callable, Collection, Iterable, Iterator, Mapping, Sequence from re import Pattern from typing import ( IO, Any, ClassVar, Generic, Literal as L, Protocol, Self, TypeAlias, overload, type_check_only, ) from typing_extensions import TypeVar, override import numpy as np from numpy._core.multiarray import packbits, unpackbits from numpy._typing import ArrayLike, DTypeLike, NDArray, _DTypeLike, _SupportsArrayFunc from numpy.ma.mrecords import MaskedRecords from ._datasource import DataSource as DataSource __all__ = [ "fromregex", "genfromtxt", "load", "loadtxt", "packbits", "save", "savetxt", "savez", "savez_compressed", "unpackbits", ] _T = TypeVar("_T") _T_co = TypeVar("_T_co", covariant=True) _ScalarT = TypeVar("_ScalarT", bound=np.generic) _ScalarT_co = TypeVar("_ScalarT_co", bound=np.generic, default=Any, covariant=True) _FName: TypeAlias = StrPath | Iterable[str] | Iterable[bytes] _FNameRead: TypeAlias = StrPath | SupportsRead[str] | SupportsRead[bytes] _FNameWriteBytes: TypeAlias = StrPath | SupportsWrite[bytes] _FNameWrite: TypeAlias = _FNameWriteBytes | SupportsWrite[str] @type_check_only class _SupportsReadSeek(SupportsRead[_T_co], Protocol[_T_co]): def seek(self, offset: int, whence: int, /) -> object: ... class BagObj(Generic[_T_co]): def __init__(self, /, obj: SupportsKeysAndGetItem[str, _T_co]) -> None: ... def __getattribute__(self, key: str, /) -> _T_co: ... def __dir__(self) -> list[str]: ... class NpzFile(Mapping[str, NDArray[_ScalarT_co]]): _MAX_REPR_ARRAY_COUNT: ClassVar[int] = 5 zip: zipfile.ZipFile | None = None fid: IO[str] | None = None files: list[str] allow_pickle: bool pickle_kwargs: Mapping[str, Any] | None f: BagObj[NpzFile[_ScalarT_co]] # def __init__( self, /, fid: IO[Any], own_fid: bool = False, allow_pickle: bool = False, pickle_kwargs: Mapping[str, object] | None = None, *, max_header_size: int = 10_000, ) -> None: ... def __del__(self) -> None: ... def __enter__(self) -> Self: ... def __exit__(self, cls: type[BaseException] | None, e: BaseException | None, tb: types.TracebackType | None, /) -> None: ... @override def __len__(self) -> int: ... @override def __iter__(self) -> Iterator[str]: ... @override def __getitem__(self, key: str, /) -> NDArray[_ScalarT_co]: ... # @override @overload def get(self, key: str, default: None = None, /) -> NDArray[_ScalarT_co] | None: ... @overload def get(self, key: str, default: NDArray[_ScalarT_co] | _T, /) -> NDArray[_ScalarT_co] | _T: ... # pyright: ignore[reportIncompatibleMethodOverride] # def close(self) -> None: ... # NOTE: Returns a `NpzFile` if file is a zip file; # returns an `ndarray`/`memmap` otherwise def load( file: StrOrBytesPath | _SupportsReadSeek[bytes], mmap_mode: L["r+", "r", "w+", "c"] | None = None, allow_pickle: bool = False, fix_imports: bool = True, encoding: L["ASCII", "latin1", "bytes"] = "ASCII", *, max_header_size: int = 10_000, ) -> Any: ... def save(file: _FNameWriteBytes, arr: ArrayLike, allow_pickle: bool = True) -> None: ... def savez(file: _FNameWriteBytes, *args: ArrayLike, allow_pickle: bool = True, **kwds: ArrayLike) -> None: ... def savez_compressed(file: _FNameWriteBytes, *args: ArrayLike, allow_pickle: bool = True, **kwds: ArrayLike) -> None: ... # File-like objects only have to implement `__iter__` and, # optionally, `encoding` @overload def loadtxt( fname: _FName, dtype: None = None, comments: str | Sequence[str] | None = "#", delimiter: str | None = None, converters: Mapping[int | str, Callable[[str], Any]] | Callable[[str], Any] | None = None, skiprows: int = 0, usecols: int | Sequence[int] | None = None, unpack: bool = False, ndmin: L[0, 1, 2] = 0, encoding: str | None = None, max_rows: int | None = None, *, quotechar: str | None = None, like: _SupportsArrayFunc | None = None, ) -> NDArray[np.float64]: ... @overload def loadtxt( fname: _FName, dtype: _DTypeLike[_ScalarT], comments: str | Sequence[str] | None = "#", delimiter: str | None = None, converters: Mapping[int | str, Callable[[str], Any]] | Callable[[str], Any] | None = None, skiprows: int = 0, usecols: int | Sequence[int] | None = None, unpack: bool = False, ndmin: L[0, 1, 2] = 0, encoding: str | None = None, max_rows: int | None = None, *, quotechar: str | None = None, like: _SupportsArrayFunc | None = None, ) -> NDArray[_ScalarT]: ... @overload def loadtxt( fname: _FName, dtype: DTypeLike | None, comments: str | Sequence[str] | None = "#", delimiter: str | None = None, converters: Mapping[int | str, Callable[[str], Any]] | Callable[[str], Any] | None = None, skiprows: int = 0, usecols: int | Sequence[int] | None = None, unpack: bool = False, ndmin: L[0, 1, 2] = 0, encoding: str | None = None, max_rows: int | None = None, *, quotechar: str | None = None, like: _SupportsArrayFunc | None = None, ) -> NDArray[Any]: ... def savetxt( fname: _FNameWrite, X: ArrayLike, fmt: str | Sequence[str] = "%.18e", delimiter: str = " ", newline: str = "\n", header: str = "", footer: str = "", comments: str = "# ", encoding: str | None = None, ) -> None: ... @overload def fromregex( file: _FNameRead, regexp: str | bytes | Pattern[Any], dtype: _DTypeLike[_ScalarT], encoding: str | None = None, ) -> NDArray[_ScalarT]: ... @overload def fromregex( file: _FNameRead, regexp: str | bytes | Pattern[Any], dtype: DTypeLike | None, encoding: str | None = None, ) -> NDArray[Any]: ... @overload def genfromtxt( fname: _FName, dtype: None = None, comments: str = "#", delimiter: str | int | Iterable[int] | None = None, skip_header: int = 0, skip_footer: int = 0, converters: Mapping[int | str, Callable[[str], Any]] | None = None, missing_values: Any = None, filling_values: Any = None, usecols: Sequence[int] | None = None, names: L[True] | str | Collection[str] | None = None, excludelist: Sequence[str] | None = None, deletechars: str = " !#$%&'()*+,-./:;<=>?@[\\]^{|}~", replace_space: str = "_", autostrip: bool = False, case_sensitive: bool | L["upper", "lower"] = True, defaultfmt: str = "f%i", unpack: bool | None = None, usemask: bool = False, loose: bool = True, invalid_raise: bool = True, max_rows: int | None = None, encoding: str | None = None, *, ndmin: L[0, 1, 2] = 0, like: _SupportsArrayFunc | None = None, ) -> NDArray[Any]: ... @overload def genfromtxt( fname: _FName, dtype: _DTypeLike[_ScalarT], comments: str = "#", delimiter: str | int | Iterable[int] | None = None, skip_header: int = 0, skip_footer: int = 0, converters: Mapping[int | str, Callable[[str], Any]] | None = None, missing_values: Any = None, filling_values: Any = None, usecols: Sequence[int] | None = None, names: L[True] | str | Collection[str] | None = None, excludelist: Sequence[str] | None = None, deletechars: str = " !#$%&'()*+,-./:;<=>?@[\\]^{|}~", replace_space: str = "_", autostrip: bool = False, case_sensitive: bool | L["upper", "lower"] = True, defaultfmt: str = "f%i", unpack: bool | None = None, usemask: bool = False, loose: bool = True, invalid_raise: bool = True, max_rows: int | None = None, encoding: str | None = None, *, ndmin: L[0, 1, 2] = 0, like: _SupportsArrayFunc | None = None, ) -> NDArray[_ScalarT]: ... @overload def genfromtxt( fname: _FName, dtype: DTypeLike | None, comments: str = "#", delimiter: str | int | Iterable[int] | None = None, skip_header: int = 0, skip_footer: int = 0, converters: Mapping[int | str, Callable[[str], Any]] | None = None, missing_values: Any = None, filling_values: Any = None, usecols: Sequence[int] | None = None, names: L[True] | str | Collection[str] | None = None, excludelist: Sequence[str] | None = None, deletechars: str = " !#$%&'()*+,-./:;<=>?@[\\]^{|}~", replace_space: str = "_", autostrip: bool = False, case_sensitive: bool | L["upper", "lower"] = True, defaultfmt: str = "f%i", unpack: bool | None = None, usemask: bool = False, loose: bool = True, invalid_raise: bool = True, max_rows: int | None = None, encoding: str | None = None, *, ndmin: L[0, 1, 2] = 0, like: _SupportsArrayFunc | None = None, ) -> NDArray[Any]: ... @overload def recfromtxt(fname: _FName, *, usemask: L[False] = False, **kwargs: object) -> np.recarray[Any, np.dtype[np.record]]: ... @overload def recfromtxt(fname: _FName, *, usemask: L[True], **kwargs: object) -> MaskedRecords[Any, np.dtype[np.void]]: ... @overload def recfromcsv(fname: _FName, *, usemask: L[False] = False, **kwargs: object) -> np.recarray[Any, np.dtype[np.record]]: ... @overload def recfromcsv(fname: _FName, *, usemask: L[True], **kwargs: object) -> MaskedRecords[Any, np.dtype[np.void]]: ...