Файловый менеджер - Редактировать - /var/www/html/architecture.zip
Ðазад
PK ! Z���I I index.rstnu �[��� .. _architecture-pip-internals: =============================== Architecture of pip's internals =============================== .. note:: This section of the documentation is currently being written. pip developers welcome your help to complete this documentation. If you're interested in helping out, please let us know in the `tracking issue`_, or just go ahead and submit a pull request and mention it in that tracking issue. .. note:: Direct use of pip's internals is *not supported*, and these internals can change at any time. For more details, see :ref:`Using pip from your program`. .. toctree:: :maxdepth: 2 overview anatomy configuration-files package-finding command-line-interface upgrade-options .. _`tracking issue`: https://github.com/pypa/pip/issues/6831 PK ! �{�ɜ � configuration-files.rst.gznu �[��� � �X�����+ }�F ��f';��ݙ���mZ�m�%R!){�_�WEɖmٙH|�EV�^�z�w7?�g�f�z����T���lY����ٗ}�jZ.��c��VUy14�\R��M �C�l0+<���m��Qor��*�@k�j� j��;U�:PtOtf�ֈ�oU$�5�A��:d q`��w�֭-x��L<p ��]H��8����x-��C�d- -�.WT*�<�z6�2���^�����VJW���1��E�=��J�A��ĨmN8�X)�NW��>�^W��5\���A>j�T:j���3�9��;�ŔTG>��b�=�6N&T�CH!�Y��%�X6.�W�/6!����������m�B���Ш�"K�˟��?��\ -���Yզn����=2���7; V(D�PG���BD��/��S�4�5ޠX�O!+Ä�[SlY���X�%ʇ ��a�����,�'����͚A4��(t N�=�+_�>��U��=������aǽ#.e�������ڙ�z���5;F_hl��9�꙾�A�<��z�p �b��5�G�(�٭d�&��M^����i+��E2:���Y��C�����h*�hI�`gJiD}�d�[����U�B5����U�l���g�2Z��:g�laA�:O��u��-�O'tr�ba<���R�P��рl4�¡c��Z��4U��o1��p��$�� L����hU ���n�*�vg��|�� ܬ�;F��]��&Ȟ8�T(�K<�u��U�����wX�k:�p4,q�;�o&X1Ri�k�$@P��q����AIL���:s��V�R��ͪ���cw�O��g^7`/����P���Y�)�)?���X����}���t����'_�#Ʌ.���ǩ���|ef?s*��̶�Q�շz���? �.�-6R��f�%�E��8c)�p_6�����5FP���Q"�gە�D�S� }hft�N�����|�(&C�9��)Jz=-�k� t���|2: �x2F0�(i�ڪ�,,��A�L "�Eǭ+C�n�LȦ9����� ���:m�{v�������PE"w��� ��[跈��Ҕ**�� )L/E�u�!��D]�>�מ���a*5��È��ʼqNJSļ۲\> �Da�L��&W�NJ�aMN��C�ڕ勇C�:&�(�Ź�q!="��p�� o�M����'+���[0�a�.I��OhG;��P��Ajy�U>Z������ǜʼ�]UAB��.�^Kc���O�M-ic��0S��� 'R-��U�����U��,N��hpP����^� ���m���؍-��� �`N�+�3u�'YI�:Ti��ʣ ���~���#C�ݺ�Ψa ���%�>�<GJ�Y�M��� 4}�l�<N�в������q# �DC#R�}�T��{��o8��q���D���CY���u��^���θ�(D'���D3�X�6��X�"��Fl�c���5h��Є����T����������)�A��DR^��5|/<{)�$�b�>XR�$����A� k/Ԏ�<Gؤ/�y�bO�?g��ʕ�*�ֆ{#�`���opS��ï�?t|/�i�%0���'��9�X`��LWB1Xc����#�Z��-Ʉ�m`�4��%*!�����* ��Eq�� (C�x-<��D��W�����R>'�i"�[J�O����hU��%�qS����0أ�N2|qz<�sP��u����->�� J�Y0]8�.�s�pf��{���ߨm��qS�H��4��/�� XϸR�g� �{�jʯ�Q�:��M��^���s�h���#/"�_gl���B��$�n�{��RV?��w�_,(���#ĥ{U���;7q_ PK ! uP��� � upgrade-options.rstnu �[��� ============================================= Options that control the installation process ============================================= When installing packages, pip chooses a distribution file, and installs it in the user's environment. There are many choices (which are `still evolving`_) involved in deciding which file to install, and these are controlled by a variety of options. .. note:: This section of the documentation needs to be updated per :ref:`Resolver changes 2020`. Controlling what gets installed =============================== These options directly affect how the resolver uses the list of available distribution files to decide which one to install. So these modify the resolution algorithm itself, rather than the input to that algorithm. ``--upgrade`` Allow installing a newer version of an installed package. In principle, this option actually affects "what gets considered", in the sense that it allows the resolver to see other versions of installed packages. Without ``--upgrade``, the resolver will only see the installed version as a candidate. ``--upgrade-strategy`` This option affects which packages are allowed to be installed. It is only relevant if ``--upgrade`` is specified (except for the ``to-satisfy-only`` option mentioned below). The base behaviour is to allow packages specified on pip's command line to be upgraded. This option controls what *other* packages can be upgraded: * ``eager`` - all packages will be upgraded to the latest possible version. It should be noted here that pip's current resolution algorithm isn't even aware of packages other than those specified on the command line, and those identified as dependencies. This may or may not be true of the new resolver. * ``only-if-needed`` - packages are only upgraded if they are named in the pip command or a requirement file (i.e, they are direct requirements), or an upgraded parent needs a later version of the dependency than is currently installed. * ``to-satisfy-only`` (**undocumented, please avoid**) - packages are not upgraded (not even direct requirements) unless the currently installed version fails to satisfy a requirement (either explicitly specified or a dependency). * This is actually the "default" upgrade strategy when ``--upgrade`` is *not set*, i.e. ``pip install AlreadyInstalled`` and ``pip install --upgrade --upgrade-strategy=to-satisfy-only AlreadyInstalled`` yield the same behavior. ``--force-reinstall`` Doesn't affect resolution, but if the resolved result is the same as what is currently installed, uninstall and reinstall it rather than leaving the current version in place. This occurs even if ``--upgrade`` is not set. ``--ignore-installed`` Act as if the currently installed version isn't there - so don't care about ``--upgrade``, and don't uninstall before (re-)installing. Controlling what gets considered ================================ These options affect the list of distribution files that the resolver will consider as candidates for installation. As such, they affect the data that the resolver has to work with, rather than influencing what pip does with the resolution result. Prereleases ``--pre`` Source vs Binary ``--no-binary`` ``--only-binary`` ``--prefer-binary`` Wheel tag specification ``--platform`` ``--implementation`` ``--abi`` Index options ``--index-url`` ``--extra-index-url`` ``--no-index`` ``--find-links`` Controlling dependency data =========================== These options control what dependency data the resolver sees for any given package (or, in the case of ``--python-version``, the environment information the resolver uses to *check* the dependency). ``--no-deps`` ``--python-version`` ``--ignore-requires-python`` Special cases ============= These need further investigation. They affect the install process, but not necessarily resolution or what gets installed. ``--require-hashes`` ``--constraint`` ``--editable <LOCATION>`` .. _still evolving: https://github.com/pypa/pip/issues/8115 PK ! ��a� � command-line-interface.rstnu �[��� ====================== Command Line Interface ====================== The ``pip._internal.cli`` package is responsible for processing and providing pip's command line interface. This package handles: * CLI option definition and parsing * autocompletion * dispatching to the various commands * utilities like progress bars and spinners .. note:: This section of the documentation is currently being written. pip developers welcome your help to complete this documentation. If you're interested in helping out, please let us know in the `tracking issue <https://github.com/pypa/pip/issues/6831>`_. .. _cli-overview: Overview ======== A ``ConfigOptionParser`` instance is used as the "main parser", for parsing top level args. ``Command`` then uses another ``ConfigOptionParser`` instance, to parse command-specific args. * TODO: How & where options are defined (cmdoptions, command-specific files). * TODO: How & where arguments are processed. (main_parser, command-specific parser) * TODO: How processed arguments are accessed. (attributes on argument to ``Command.run()``) * TODO: How configuration and CLI "blend". (implemented in ``ConfigOptionParser``) * TODO: progress bars and spinners * TODO: quirks / standard practices / broad ideas. (avoiding lists in option def'n, special cased option value types, ) Future Refactoring Ideas ======================== * Change option definition to be a more declarative, consistent, static data-structure, replacing the current ``partial(Option, ...)`` form * Move progress bar and spinner to a ``cli.ui`` subpackage * Move all ``Command`` classes into a ``cli.commands`` subpackage (including base classes) PK ! C�j� � package-finding.rst.gznu �[��� � �Z[��6~� ����^�� (Ц-��I}�i���#�Z���;3���e�${[��p.�|3�o��T�碩xy��◝�����n�ϛ ��l>��I��ox�l6������ An��b�'M#�"�i��+r�px�+ˍ��n��֒��,n����i^�sSkQ��;���|�F.�^�d���O��<�Ƒ�[����+8��º/,�uM�Ŕ���0{Y_���j++�Fw��7����o/p+�te?^��ڂ1V|M�^�4'%�o�3|d߄?�~�=��?�YI[բ~\�p=�F)���`�Yg��`r��h&ve�`�ߤ�@�� �N�5 ��KX�В'a��,o�;k��m�+؋u��k] Tт}'T���<Z<.룎�z�/ �3�T�����,�m j�ca�/,�{c���f���L�ߪ�:Q����>?+��ۉ�v��־y������f��*\�%_p+���!��`����U���쌘^xt�O;+���<� ���? h�� ������âW^���.����@ĩ�l>��������zIޙ}����U9m.�����5Q���`[��: ��q��0��9�<P.��V��e�p�%��(ZH7�<L�������Ey�2^ZQ��Re*���B���!�\��(q�S�&}�Z� ���9�!=Tr����SGp�֯�I4n ������$�N��a/2~�� Inۼ�1C���W��m8O���:�=D��g�y�QQS����w��2�3Sy��6.��s�ޓ���@ 8f�mkU p��/���io��I�\��2�j���e&D�ڸ^�#uxԻ��(6��% S�{o@�ڰA� #�__"*]v����Gр�p��U�w�W�Ӡ:�ف�E@������J� J$�v�}��ex{"C���̅�_M7D|��/ ��\H�_�A���b(��(-��kՋ3ty�ߡ�OY�M$>�� ����/bpy$��?�Kb'�J]E.ňo Li*�W���B��[ �Z�e�Z��D�Ƥ#��a��� ��� �-sBU<������1�`�r�D�-�,��i /�E ]��^[=��h� �9j <و�I��,�:,����pq�0ٜ�� &��CY ['U���v6�Q �(�}|��mW��ke�� c ]+��Z5 %�R{�@4A�d�, "�Ӻ���>di�x>�گ��S�F{ �Ap.�JT(�G�k�~�E�7��\-�K�Nt� � �A~.eb�##-a�[ �m�eĪЛ ���y�o���@"(�vb@��ǞP���<#�S^���W�����&1�]�NJ&Qޚ$��E3��� u/�m��*���|�!�uU�N����|�g�&48��%�g�L����]Wn/,S���2� >��UjR�!0 �����PF�AԔ�x�юC�u��/�K��2�n�P ��M֝�@�Nefe�[�Y>-g|� @Zj��F0�K�֭�Q���$T�\g��A� �rɿ���Ѩ�x<�jM+������*������������+M�A]Ǵr��:�@g| ����3��T��dO�c����7A��H�R���)��@'�}����M��,{�^#���u$�y��+�n@���,pPtG_.<O46��j Bܡ_�b�l�'�#G�#�:ݮ�Y�L%��l0W�He�ia�8�7�QpY��dB� �CP2&4��η�K�`�@�`���j�c$�g�-v[������-2���hfO@�c�Sm�s��M'eC����3�`K���/�Cs z2l�C#�lfb��� j���38�̹ӸY�Gj�&�k�]j㳵�i6і��!O<�K*��e&��xE�7�S�!�،�&s��/ Q�쨊�X���9��vNN�~�P���9ʉ����j�:^�d�5nR)92y�0�Yw��U��)�og2��q (���]���3�!�z��I���)�J��q��A �0����\�K��n44�$��1���A�Aʌ�kM�q�Y��^닻�y�� g!\�8���^f�|"���%�����P�ɑ+ �м�T�� �7R^�=讆�K���E��y��Nw�Rw���81ň]цY6,��k��K���O�|cۺX�S�@��ھ�9�9@ *�!Tdz��B>�ؒݝ�P��-,'B���c�-{Tl b�>@�ݟ#֢����8��$�Ӭkp� h�y�<`7/BF����R�4���@�QX~H�k�#�_� %X�@sS�X�J+��w0�u�����1�퍏"l!`=���p@��2q>g���`Tl ]#z0���r>{L4�b<�������C����_��$6$�!��b_����ƸXp��;F Cs�U*��U7��|�ih\�a���@^���F�����+��� �ڣ�YA���{ jM��� #E���e6��G�mA��?M��� �ЈK&�"�aЧ�i��h}Y��w�����R�d)�(�#I���'�J�v�ip�fN�6�V�� ���Z��&�4N���n�U)nzS2Lrɇ1H��"�F�/�����P<���y$��ŭd��i�=� �f�7���j�����{�ɐ!�"�:Uv�0�;\9"M4�|�J�(��n�Y>bK8ؐ�#���s`����B�q�p��ʼn��bM�3L�N������|-������͐�y��^��h%��!�,@P-��3E�S1e�5F.%ψ��X��<$o���Y3'���E��q�9�-��֒v%��c� �)��ՍA�6Bex[�e���-RB��L�u�H=���,����^L�I��O]�-�\���R�A��=%�>��£6����z@�p t��y��px �Ⱥd� �oy�qL�����;���\��f�p:/�������A E��[ �z�E����ll�(%*6��1u��SYoT���B���]��,�+bv��8Q'�x�(_�� �y�?�c�/;̾fI7���S%�j�GG��OJ<���w��to�'���A���B6q_:hZ��h�5�i�[�O �_��l���F0c�#�ZQ�Ɏ�B��W����n�A��T'��#��6�9� +d����F�}��Ҷ=9l�ĊB���i�1���v�� Px~P?CH º9�F�~�{�E6�t�� !x%�iO����.�����8K?��N�#� Ub� N��1&�F��v��h���C~?'����^���,�eX��w��L���&vR Ƴ�-B�t�ax�.-�@��{u��qq ��Yc$��F(�z�~x>����������l-���}ٿ�c�g���d���?l+ PK ! ��|�� � overview.rst.gznu �[��� � }X�n�}ﯨl�,eP��:���`���R$F^"6�������RD��~#@��/ɩ깑�w`��tuu]N���,��E3�(Exޯl�`�Ѻ�\Nqeh��ƔQ�K��k��w�����v��hʌ*[���ٚ�U�ڙb�6�����2EE��T����@FW9鍨�e4ބh�) �DW�1A�����@���X�-�F��k�!�fz�)���£.����R<ׅ�{r[���~y���M��K#B�Ea|���r�"m�g�u� �� I��J��\�WfL�\�ީ�+s����W ���v+;_��]I?�֯CF5�ն,�H1�[.�V��ӌ�Eou Ã�nV�b!1�[��\��P��ĐN-���L�8�1�����*�܄���F�`0�l���jAT���4�P�p9�l� ��8�'�@W��{���;i ���tv��&�Ut�cʝO�S��N{8�XE�gV0�9W6a�+A������PM��t*�Y��N)��@ rm�uk����?�- ��ݹR_g�����p���Z�P�u�gt]��qX�C���A` ۣ}���G^����\U�=*l�士ʻ�[ ��&�Ie���ϧJj;�%L�N@�ĝ�N m���A��j+��<�ԟ>�(uU"�?��1�,)��������9�1�ߧ�����-���^r�*�! {��2�p�_s]f�$%��]� ��4�,�t�g˄�bA6e(8`\ *��9�Y�����ZH�� 3_8Q�2zy}{Iׯ�����7�ts{����nLo_����<��\m ��8��(�n���ES���^G���)#�\0)� W�=s����D=�>>��u���_x��lo�h��x�.Y��ei� �pW"��{hވ��u�� �C�u���%�-�V�]�c)�b�,L�:��Q���>�xj�s���b��15�S`5`C�hت��zV�q���[��o��Z8��L�s�9�@����l��i�>1� �r炮��6��雐x3��2��$"o�D6{�|���� c�~���䖏FUԺ�������@�>���R ���D'�A�4����կ�J9��֠cl9;>@�P�Z����}��KO���;zqs��sn���s��3�S",�酎:�j��JKeʫZ&7��বe�H�Mh���Zȃ5�S%j�p>muL���,�P�E0 '�w��H��������0>�R8'�O[��h�h '�M���}� ��!��9�/��@iQ1ō�w�ul6QN��b����{�6�K�L��ޕb��?Q5�4`x�@$�v��]�bZ?I) }�9�ف�Shߋ�x74���+6U�c/�|�d���Z���»e k�����Tuz�p�hf� I'���>��s�Y���Y�Ny�U�eVT#ڔ��E-����A �&$h:m��Id�E�:BkyP��N��ě|2Mm�����"�/���j�$ W��n._��Gdžd���'�rO�)4����=5�@/�Oi>`ߦ{��l�b� b��ͥ��&h�(}`�9��\����^�� =*`%]<45h��N��|ӧ1+��t}�&��ͬ��z6�'.��N�-���: ������?��'gU�.��w~��FR.�*�$s��~)�pN�əέ �|���#��D��OP]�-m��M���7�� #� ��N8*n�b�VEt�Y0���@TB��;��TuK�o_�q�x�bR`b=�uHakc3��+ 頉����.�)��>��Զ�q���*�jrv��j_�{���,Xf.�K!�go菍$f�/[��<��yz��9�h��M���xlݴ䔕%b^�;ܖ�t��U��)06�NQ��x@�����a�M�� �15S�`�ߪ��,�@ѣ�C�ƌ��Hb"I��Y�`r�]i��:u�|8w2 y�]KI�3�l[�tb������(�/��D�j�tū_���\�=jҖ�V/���`H3��C�\�ľ�?��Ǜ�̷8�k5Ч�r�^qmJ�>��w��Υ�h�}����,����I�����ChW�X�N��џ��H^��x��|��a���.�`����t�L�m�}S�b��&��,��\�V\͙s�����B�����S�m0�BХ�Co;���z-�맦�=� �X�,ވKQ�C�7O�@��=���J��^�x����t�����;<��M��_�.'���J�Ō����k�!�d*[����+>e� ����,�\�kP�T��y{�+�4�f�i�H4s;����s�^�ag<l��b��}��uh���sB���Vx$�jd�EW���H�X�RYF���'��@�K ��e�����y&2����?{*���~GG��� ̽�U������ �!��LW��� ��'����ש;�bR�8�����+ � PK ! ;�Ċ" " anatomy.rst.gznu �[��� � �Y�r7}�W@/��"G�l��vU*Y�Ue;.I�T�I��H�fR̓c�v_��%{���I�z���������,S���t4R��]Y��Ƀu�rVF.oצ ��}�6 ��;57�Z�mcC0U�j[���lL�j�x�5e��F�\ۨ�)k��4�@<� �g�jA��i��U0�����D׆��퍂 �zuW�--!�g��-�f6�F��]��y\�S���w�*l��3�6-�j������>�7�� 3'�g�lx��U�8��}�# �����B7�z�+�������R�k��,`UW�����-cv}y����l6V��M���]ݸ��T�+��r6�&�uV�� �N�8ݘd��j��%�b��������}��ɛ���w7��'o��]�����l�����&k|Z�P~(:�V�n�b9�N�����q����d���ƫ[wO�Q��x�a2���v�f��$;1S��������� �da��T۸�B��,چ�/�-P�(o�v��w+Dk@\{6o�Vꐳ��b��F]W���L]�kJ�SQIM��Իg��f��ɨ$!"�+�ba(M�yI��9Ft�$M>�ϳ�>�/%&>?��>����M���r1�&�ϖ`����e����-N_��)�]�l�z�`�X�[[��a�nꕭ�=&��=��.e���:�}�����h�!�K[l��k]����QK@`g�}γA�K��Z��x�b7G)�<�����Pk� iF�#�h�k�ۅ́Y-�κʅp�P�PX���#��<�ti:�2�h&�*��^�C��k8?����� �ui�Z�q��6�d�s� ;0�9� stQB������%��\�Z �[�ءU2�#qٲ��U�㑪4��ؠ��j��l�vѩtK�!S7N�Gc�I � n���زD�A�� pM(������L���#�� ٶB6��\�Z��ĭ�X��!���i���],2TLd#��Pz��$�G��H�PR�C�`� �q���p*w��p�>�nB6ݕ�Em�Q��+�ZA��%��2�]o%_�0���� R Go���.Ơ�6�Nb�� �e�hxl���J���A�.���[��+���"dph ���}@E�@��!0 %27o��PX� '� n����#�4'�S)�)P%ƲtI�)%�=��� f��6�>�G���P�F=�e� ��N����>˒ǧS�0�J�gT���B}C���1�@I�"���D̀��'Ul8P��~�\�peoh�R�� ا��������ϔ��K�\�_U�r|�����Å�B��ś+R�T�y���*F���<��!A5�RĘ{���K�O��l��ˢL��. m�tSAB��o-��K`��_њH&!�yx�.�5�io�����ľ��:Hi�����0�nQ�5���(���.�,$������@CwÖ�瞧�R���?$�>�F╀T�8�⢱�����>���,h�@�ZP� ��V,:b9eり.�'?Ӯ�!��6�"L�V���A����بè05�*�0�!�C5t�%��7�m6;�@Jf�ˉ�.��� �tա�\��Ry:%�>�w�F$O�r����`�����?lxj};"v61�9�؞�-��x�ZM.m�J��Bҁ:vX�P+bT��\q��G��������$tjK/��Ÿ WQ�LjV�Em��S�NW�R��.-J�$�2����jP��qJ��}��S"���^��C�O�����(��C(�8b��;|U�������t]*0$e�K�ed?Ra�WL\)AMuv�$�4B:�p�D�J+8�3ւ���vD�xD��Fl�����^��8�2;��D�t��u�c�� ��}-b)UJ`m�$x�;u���aJ' �Hi{�B��K��Vy�},\� ���1�Ģ9$���cA��5H�@Ci�d�0��Ԩt�>5������s�>*]�g�f.;�4I� \Z������)�Q�~��G��� ,(Bhf�:����˒}��#�����2���m���C�� >�h�"��~��Ԩ�̍k�+b�ilAqG�0CK���'=�/�]%X,^g��� ���a_J�}�ֆ����L�2������ �<P œ��XɾO�R9)��ʄ<���.v�#���61�����ɜ]��z!B,���Vs����Iئ�o#�а�ec�o���y��4��,`�\�l��V�l!" �*��a d��&}I�}�!��^�,^F�ժ�[�0�n�&��ȌD�d����Y���C�e{��u=S��-��^s˸ ��i��dS!!�y���p�O�C��t����>hx��'$Wx ��V�0qD��M�Z8E�'�E�G@%�K��mw��FXr�v���K�Wo5�f�nSf'�ާ�?�ܷi�l>�>|����)j�S��S��B:�� S?؈\ i�Dɍ����%=�U*b�26]w��h�s�C�ԾrS�Ĺ�u�hs4� �$TĂ��RL�k\��W܈D�]�"�hO�f�RD=xKg���Y�Z g�B���M�p���<S$�+��D����6���'�����۠���1v~_��7-W�{�5;� 4��� 爔yu8oþ��Cf����% �Ti܇�el����}A�����[T��c��č�`4�`d��C�l���],Z��1�q�����_y�)���ۇr�o�<��O_����!炭��Z�8���.4[��[��}!��2%n Ul?5��;����gd#��BSecg�rR�Q����������?��������u}��^�{�#՛n�i�/����h�s`�M0�zv�^tu�n�J�� gb)���@�S4^��d�7¡��Lq' �r�2n�u��5[X�]�Ɋ�;�4��xd-�P�����L)=#� �:IOLsvp�G$�1_a F-�~^B��_k�����op�L��rF�S<0Bw6%�=}��1�$Q�� v��y�0p�Ky@Vr �4M@�Щ�Q�% �$�� @�x�#���v]����p�s�RW�7��.��~GH�M,.�Adx@.3���xI]�~іc�� ;�@�< ߃/�8�;�N E$1D�@Xp���@��y�w� �g���a�+���#b|�}7l�/r�?� m�2����L��J�R!��K�K:Q������[}�gh{Z�ʤA r�CqD����.��f?�L0~��!l7V�^4m��%���Vf�6 �<����bû#�������`���� �-O{?�0�E����U�4ӅxP���"�&k(:t�x�B���酘q�z�A��ʯa�����C����t�7�9��G��S�8՟10����Z���(ή��^e���[B��ʯ�1Lצ����y��O���Ӈ�B��U�?=9�A]����i�I؟|����ŏ������*�|�t����� �n����G�F,��V PK ! Z���I I index.rstnu �[��� PK ! �{�ɜ � � configuration-files.rst.gznu �[��� PK ! uP��� � h upgrade-options.rstnu �[��� PK ! ��a� � � command-line-interface.rstnu �[��� PK ! C�j� � |"