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-FileCopyrightText: (C) 2007 Dominik Seichter * SPDX-FileCopyrightText: (C) 2020 Francesco Pretto * SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef PDF_XREF_H #define PDF_XREF_H #include "PdfDeclarations.h" #include "PdfReference.h" #include "PdfXRefEntry.h" namespace PoDoFo { class PdfWriter; class OutputStreamDevice; /** * Creates an XRef table. * * This is an internal class of PoDoFo used by PdfWriter. */ class PdfXRef { protected: struct XRefItem { XRefItem(const PdfReference& ref, uint64_t off) : Reference(ref), Offset(off) { } PdfReference Reference; uint64_t Offset; bool operator<(const XRefItem& rhs) const { return this->Reference < rhs.Reference; } }; using XRefItemList = std::vector; using ReferenceList = std::vector; struct PdfXRefBlock { PdfXRefBlock() : First(0), Count(0) { } PdfXRefBlock(const PdfXRefBlock& rhs) = default; bool InsertItem(const PdfReference& ref, nullable offset, bool bUsed); bool operator<(const PdfXRefBlock& rhs) const { return First < rhs.First; } PdfXRefBlock& operator=(const PdfXRefBlock& rhs) = default; uint32_t First; uint32_t Count; XRefItemList Items; ReferenceList FreeItems; }; using XRefBlockList = std::vector; public: PdfXRef(PdfWriter& pWriter); virtual ~PdfXRef(); public: /** Add an used object to the XRef table. * The object should have been written to an output device already. * * \param ref reference of this object * \param offset the offset where on the device the object was written * if std::nullopt, the object will be accounted for * trailer's /Size but not written in the entries list */ void AddInUseObject(const PdfReference& ref, nullable offset); /** Add a free object to the XRef table. * * \param ref reference of this object * \param offset the offset where on the device the object was written * \param bUsed specifies whether this is an used or free object. * Set this value to true for all normal objects and to false * for free object references. */ void AddFreeObject(const PdfReference& ref); /** Write the XRef table to an output device. * * \param device an output device (usually a PDF file) * */ void Write(OutputStreamDevice& device, charbuff& buffer); /** Get the size of the XRef table. * I.e. the highest object number + 1. * * \returns the size of the xref table */ uint32_t GetSize() const; /** * Mark as empty block. */ void SetFirstEmptyBlock(); /** Should skip writing for this object * \param ref reference of the object */ virtual bool ShouldSkipWrite(const PdfReference& ref); public: inline PdfWriter& GetWriter() const { return *m_writer; } /** * \returns the offset in the file at which the XRef table * starts after it was written */ inline virtual uint64_t GetOffset() const { return m_offset; } protected: /** Called at the start of writing the XRef table. * This method can be overwritten in subclasses * to write a general header for the XRef table. * * \param device the output device to which the XRef table * should be written. */ virtual void BeginWrite(OutputStreamDevice& device, charbuff& buffer); /** Begin an XRef subsection. * All following calls of WriteXRefEntry belong to this XRef subsection. * * \param device the output device to which the XRef table * should be written. * \param first the object number of the first object in this subsection * \param count the number of entries in this subsection */ virtual void WriteSubSection(OutputStreamDevice& device, uint32_t first, uint32_t count, charbuff& buffer); /** Write a single entry to the XRef table * * \param device the output device to which the XRef table * should be written. * \param ref the reference of object of the entry * \param entry the XRefEntry of this object */ virtual void WriteXRefEntry(OutputStreamDevice& device, const PdfReference& ref, const PdfXRefEntry& entry, charbuff& buffer); /** Sub classes can overload this method to finish a XRef table. * * \param device the output device to which the XRef table * should be written. */ virtual void EndWriteImpl(OutputStreamDevice& device, charbuff& buffer); private: void addObject(const PdfReference& ref, nullable offset, bool inUse); /** Called at the end of writing the XRef table. * Sub classes can overload this method to finish a XRef table. * * \param device the output device to which the XRef table * should be written. */ void endWrite(OutputStreamDevice& device, charbuff& buffer); const PdfReference* getFirstFreeObject(XRefBlockList::const_iterator itBlock, ReferenceList::const_iterator itFree) const; const PdfReference* getNextFreeObject(XRefBlockList::const_iterator itBlock, ReferenceList::const_iterator itFree) const; /** Merge all xref blocks that follow immediately after each other * into a single block. * * This results in slightly smaller PDF files which are easier to parse * for other applications. */ void mergeBlocks(); private: uint32_t m_maxObjCount; XRefBlockList m_blocks; PdfWriter* m_writer; uint64_t m_offset; }; }; #endif // PDF_XREF_H