From 3f26943608215b95778a8a4909a0d7291b844748 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Sun, 3 Aug 2025 23:39:44 +0100 Subject: [PATCH 1/2] West Midlands | SDC-July | Gabriel Deng | Sprint 4 | Implement shell tools in python Having people write `s/s/S/` is a little more confusing than `s/i/I/` for their first exercise. ## Learners, PR Template Self checklist - [ ] I have committed my files one by one, on purpose, and for a reason - [ ] I have titled my PR with COHORT_NAME | FIRST_NAME LAST_NAME | REPO_NAME | WEEK - [ ] I have tested my changes - [ ] My changes follow the [style guide](https://curriculum.codeyourfuture.io/guides/contributing/) - [ ] My changes meet the [requirements](./README.md) of this task ## Changelist Briefly explain your PR. ## Questions Ask any questions you have for your reviewer. --- implement-cowsay/.venv/bin/Activate.ps1 | 247 + implement-cowsay/.venv/bin/activate | 70 + implement-cowsay/.venv/bin/activate.csh | 27 + implement-cowsay/.venv/bin/activate.fish | 69 + implement-cowsay/.venv/bin/cowsay | 10 + implement-cowsay/.venv/bin/pip | 10 + implement-cowsay/.venv/bin/pip3 | 10 + implement-cowsay/.venv/bin/pip3.12 | 10 + implement-cowsay/.venv/bin/python | 1 + implement-cowsay/.venv/bin/python3 | 1 + implement-cowsay/.venv/bin/python3.12 | 1 + .../cowsay-6.1.dist-info/INSTALLER | 1 + .../cowsay-6.1.dist-info/LICENSE.txt | 674 ++ .../cowsay-6.1.dist-info/METADATA | 179 + .../site-packages/cowsay-6.1.dist-info/RECORD | 25 + .../cowsay-6.1.dist-info/REQUESTED | 0 .../site-packages/cowsay-6.1.dist-info/WHEEL | 5 + .../cowsay-6.1.dist-info/entry_points.txt | 2 + .../cowsay-6.1.dist-info/top_level.txt | 1 + .../site-packages/cowsay/__init__.py | 28 + .../site-packages/cowsay/__main__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 809 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1380 bytes .../__pycache__/characters.cpython-312.pyc | Bin 0 -> 12703 bytes .../cowsay/__pycache__/main.cpython-312.pyc | Bin 0 -> 3916 bytes .../site-packages/cowsay/characters.py | 404 + .../python3.12/site-packages/cowsay/main.py | 74 + .../site-packages/cowsay/tests/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 236 bytes .../__pycache__/solutions.cpython-312.pyc | Bin 0 -> 38512 bytes .../__pycache__/test_api.cpython-312.pyc | Bin 0 -> 2141 bytes .../__pycache__/test_output.cpython-312.pyc | Bin 0 -> 2089 bytes .../site-packages/cowsay/tests/solutions.py | 591 ++ .../site-packages/cowsay/tests/test_api.py | 35 + .../site-packages/cowsay/tests/test_output.py | 40 + .../pip-24.0.dist-info/AUTHORS.txt | 760 ++ .../pip-24.0.dist-info/INSTALLER | 1 + .../pip-24.0.dist-info/LICENSE.txt | 20 + .../site-packages/pip-24.0.dist-info/METADATA | 88 + .../site-packages/pip-24.0.dist-info/RECORD | 1005 ++ .../pip-24.0.dist-info/REQUESTED | 0 .../site-packages/pip-24.0.dist-info/WHEEL | 5 + .../pip-24.0.dist-info/entry_points.txt | 4 + .../pip-24.0.dist-info/top_level.txt | 1 + .../python3.12/site-packages/pip/__init__.py | 13 + .../python3.12/site-packages/pip/__main__.py | 24 + .../site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 736 bytes .../pip/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 892 bytes .../__pip-runner__.cpython-312.pyc | Bin 0 -> 2255 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 838 bytes .../__pycache__/build_env.cpython-312.pyc | Bin 0 -> 14345 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 12716 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 17717 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 33335 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 721 bytes .../__pycache__/pyproject.cpython-312.pyc | Bin 0 -> 5022 bytes .../self_outdated_check.cpython-312.pyc | Bin 0 -> 10603 bytes .../__pycache__/wheel_builder.cpython-312.pyc | Bin 0 -> 13700 bytes .../site-packages/pip/_internal/build_env.py | 311 + .../site-packages/pip/_internal/cache.py | 290 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 329 bytes .../autocompletion.cpython-312.pyc | Bin 0 -> 8516 bytes .../__pycache__/base_command.cpython-312.pyc | Bin 0 -> 10506 bytes .../__pycache__/cmdoptions.cpython-312.pyc | Bin 0 -> 30425 bytes .../command_context.cpython-312.pyc | Bin 0 -> 1832 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 2349 bytes .../__pycache__/main_parser.cpython-312.pyc | Bin 0 -> 4956 bytes .../cli/__pycache__/parser.cpython-312.pyc | Bin 0 -> 15073 bytes .../__pycache__/progress_bars.cpython-312.pyc | Bin 0 -> 2671 bytes .../__pycache__/req_command.cpython-312.pyc | Bin 0 -> 18903 bytes .../cli/__pycache__/spinners.cpython-312.pyc | Bin 0 -> 7891 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 426 bytes .../pip/_internal/cli/autocompletion.py | 172 + .../pip/_internal/cli/base_command.py | 236 + .../pip/_internal/cli/cmdoptions.py | 1074 ++ .../pip/_internal/cli/command_context.py | 27 + .../site-packages/pip/_internal/cli/main.py | 79 + .../pip/_internal/cli/main_parser.py | 134 + .../site-packages/pip/_internal/cli/parser.py | 294 + .../pip/_internal/cli/progress_bars.py | 68 + .../pip/_internal/cli/req_command.py | 505 + .../pip/_internal/cli/spinners.py | 159 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 132 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4053 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 9762 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 2141 bytes .../__pycache__/completion.cpython-312.pyc | Bin 0 -> 5243 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 13263 bytes .../__pycache__/debug.cpython-312.pyc | Bin 0 -> 10212 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 7640 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 4467 bytes .../commands/__pycache__/hash.cpython-312.pyc | Bin 0 -> 3034 bytes .../commands/__pycache__/help.cpython-312.pyc | Bin 0 -> 1724 bytes .../__pycache__/index.cpython-312.pyc | Bin 0 -> 6771 bytes .../__pycache__/inspect.cpython-312.pyc | Bin 0 -> 4026 bytes .../__pycache__/install.cpython-312.pyc | Bin 0 -> 28964 bytes .../commands/__pycache__/list.cpython-312.pyc | Bin 0 -> 15707 bytes .../__pycache__/search.cpython-312.pyc | Bin 0 -> 7672 bytes .../commands/__pycache__/show.cpython-312.pyc | Bin 0 -> 9779 bytes .../__pycache__/uninstall.cpython-312.pyc | Bin 0 -> 4777 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 9007 bytes .../pip/_internal/commands/cache.py | 225 + .../pip/_internal/commands/check.py | 54 + .../pip/_internal/commands/completion.py | 130 + .../pip/_internal/commands/configuration.py | 280 + .../pip/_internal/commands/debug.py | 201 + .../pip/_internal/commands/download.py | 147 + .../pip/_internal/commands/freeze.py | 109 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/inspect.py | 92 + .../pip/_internal/commands/install.py | 774 ++ .../pip/_internal/commands/list.py | 370 + .../pip/_internal/commands/search.py | 174 + .../pip/_internal/commands/show.py | 189 + .../pip/_internal/commands/uninstall.py | 113 + .../pip/_internal/commands/wheel.py | 183 + .../pip/_internal/configuration.py | 383 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 992 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 2913 bytes .../__pycache__/installed.cpython-312.pyc | Bin 0 -> 1751 bytes .../__pycache__/sdist.cpython-312.pyc | Bin 0 -> 8539 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 2299 bytes .../pip/_internal/distributions/base.py | 51 + .../pip/_internal/distributions/installed.py | 29 + .../pip/_internal/distributions/sdist.py | 156 + .../pip/_internal/distributions/wheel.py | 40 + .../site-packages/pip/_internal/exceptions.py | 728 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 283 bytes .../__pycache__/collector.cpython-312.pyc | Bin 0 -> 21937 bytes .../package_finder.cpython-312.pyc | Bin 0 -> 40786 bytes .../index/__pycache__/sources.cpython-312.pyc | Bin 0 -> 12655 bytes .../pip/_internal/index/collector.py | 507 + .../pip/_internal/index/package_finder.py | 1027 ++ .../pip/_internal/index/sources.py | 285 + .../pip/_internal/locations/__init__.py | 467 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 16827 bytes .../__pycache__/_distutils.cpython-312.pyc | Bin 0 -> 6907 bytes .../__pycache__/_sysconfig.cpython-312.pyc | Bin 0 -> 8062 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 3832 bytes .../pip/_internal/locations/_distutils.py | 172 + .../pip/_internal/locations/_sysconfig.py | 213 + .../pip/_internal/locations/base.py | 81 + .../site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 128 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5933 bytes .../__pycache__/_json.cpython-312.pyc | Bin 0 -> 2926 bytes .../metadata/__pycache__/base.cpython-312.pyc | Bin 0 -> 35763 bytes .../__pycache__/pkg_resources.cpython-312.pyc | Bin 0 -> 15841 bytes .../pip/_internal/metadata/_json.py | 84 + .../pip/_internal/metadata/base.py | 702 ++ .../_internal/metadata/importlib/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 409 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 3384 bytes .../__pycache__/_dists.cpython-312.pyc | Bin 0 -> 13476 bytes .../__pycache__/_envs.cpython-312.pyc | Bin 0 -> 11231 bytes .../_internal/metadata/importlib/_compat.py | 55 + .../_internal/metadata/importlib/_dists.py | 227 + .../pip/_internal/metadata/importlib/_envs.py | 189 + .../pip/_internal/metadata/pkg_resources.py | 278 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 317 bytes .../__pycache__/candidate.cpython-312.pyc | Bin 0 -> 1956 bytes .../__pycache__/direct_url.cpython-312.pyc | Bin 0 -> 11250 bytes .../format_control.cpython-312.pyc | Bin 0 -> 4278 bytes .../models/__pycache__/index.cpython-312.pyc | Bin 0 -> 1745 bytes .../installation_report.cpython-312.pyc | Bin 0 -> 2323 bytes .../models/__pycache__/link.cpython-312.pyc | Bin 0 -> 26053 bytes .../models/__pycache__/scheme.cpython-312.pyc | Bin 0 -> 1220 bytes .../__pycache__/search_scope.cpython-312.pyc | Bin 0 -> 5139 bytes .../selection_prefs.cpython-312.pyc | Bin 0 -> 1902 bytes .../__pycache__/target_python.cpython-312.pyc | Bin 0 -> 5005 bytes .../models/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5831 bytes .../pip/_internal/models/candidate.py | 30 + .../pip/_internal/models/direct_url.py | 235 + .../pip/_internal/models/format_control.py | 78 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 56 + .../pip/_internal/models/link.py | 579 ++ .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 132 + .../pip/_internal/models/selection_prefs.py | 51 + .../pip/_internal/models/target_python.py | 122 + .../pip/_internal/models/wheel.py | 92 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 305 bytes .../network/__pycache__/auth.cpython-312.pyc | Bin 0 -> 22047 bytes .../network/__pycache__/cache.cpython-312.pyc | Bin 0 -> 6569 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 8604 bytes .../__pycache__/lazy_wheel.cpython-312.pyc | Bin 0 -> 11714 bytes .../__pycache__/session.cpython-312.pyc | Bin 0 -> 18825 bytes .../network/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2304 bytes .../__pycache__/xmlrpc.cpython-312.pyc | Bin 0 -> 3000 bytes .../pip/_internal/network/auth.py | 561 ++ .../pip/_internal/network/cache.py | 106 + .../pip/_internal/network/download.py | 186 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 520 + .../pip/_internal/network/utils.py | 96 + .../pip/_internal/network/xmlrpc.py | 62 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 248 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 7630 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 10168 bytes .../__pycache__/prepare.cpython-312.pyc | Bin 0 -> 25798 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 254 bytes .../__pycache__/build_tracker.cpython-312.pyc | Bin 0 -> 7874 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 1931 bytes .../metadata_editable.cpython-312.pyc | Bin 0 -> 1965 bytes .../metadata_legacy.cpython-312.pyc | Bin 0 -> 3116 bytes .../build/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 1735 bytes .../wheel_editable.cpython-312.pyc | Bin 0 -> 2076 bytes .../__pycache__/wheel_legacy.cpython-312.pyc | Bin 0 -> 3980 bytes .../operations/build/build_tracker.py | 139 + .../_internal/operations/build/metadata.py | 39 + .../operations/build/metadata_editable.py | 41 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 37 + .../operations/build/wheel_editable.py | 46 + .../operations/build/wheel_legacy.py | 102 + .../pip/_internal/operations/check.py | 187 + .../pip/_internal/operations/freeze.py | 255 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 317 bytes .../editable_legacy.cpython-312.pyc | Bin 0 -> 1868 bytes .../install/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 33910 bytes .../operations/install/editable_legacy.py | 46 + .../pip/_internal/operations/install/wheel.py | 734 ++ .../pip/_internal/operations/prepare.py | 730 ++ .../site-packages/pip/_internal/pyproject.py | 179 + .../pip/_internal/req/__init__.py | 92 + .../req/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3794 bytes .../__pycache__/constructors.cpython-312.pyc | Bin 0 -> 21633 bytes .../req/__pycache__/req_file.cpython-312.pyc | Bin 0 -> 21512 bytes .../__pycache__/req_install.cpython-312.pyc | Bin 0 -> 38465 bytes .../req/__pycache__/req_set.cpython-312.pyc | Bin 0 -> 7269 bytes .../__pycache__/req_uninstall.cpython-312.pyc | Bin 0 -> 33028 bytes .../pip/_internal/req/constructors.py | 576 ++ .../pip/_internal/req/req_file.py | 554 ++ .../pip/_internal/req/req_install.py | 923 ++ .../pip/_internal/req/req_set.py | 119 + .../pip/_internal/req/req_uninstall.py | 649 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 248 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 1236 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 255 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 22490 bytes .../_internal/resolution/legacy/resolver.py | 598 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 259 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 8388 bytes .../__pycache__/candidates.cpython-312.pyc | Bin 0 -> 30449 bytes .../__pycache__/factory.cpython-312.pyc | Bin 0 -> 32165 bytes .../found_candidates.cpython-312.pyc | Bin 0 -> 6259 bytes .../__pycache__/provider.cpython-312.pyc | Bin 0 -> 10429 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 4986 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 11480 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 12402 bytes .../_internal/resolution/resolvelib/base.py | 141 + .../resolution/resolvelib/candidates.py | 597 ++ .../resolution/resolvelib/factory.py | 812 ++ .../resolution/resolvelib/found_candidates.py | 155 + .../resolution/resolvelib/provider.py | 255 + .../resolution/resolvelib/reporter.py | 80 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 317 + .../pip/_internal/self_outdated_check.py | 248 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 243 bytes .../__pycache__/_jaraco_text.cpython-312.pyc | Bin 0 -> 4584 bytes .../utils/__pycache__/_log.cpython-312.pyc | Bin 0 -> 1914 bytes .../utils/__pycache__/appdirs.cpython-312.pyc | Bin 0 -> 2458 bytes .../utils/__pycache__/compat.cpython-312.pyc | Bin 0 -> 2261 bytes .../compatibility_tags.cpython-312.pyc | Bin 0 -> 5609 bytes .../__pycache__/datetime.cpython-312.pyc | Bin 0 -> 732 bytes .../__pycache__/deprecation.cpython-312.pyc | Bin 0 -> 4234 bytes .../direct_url_helpers.cpython-312.pyc | Bin 0 -> 3611 bytes .../__pycache__/egg_link.cpython-312.pyc | Bin 0 -> 3274 bytes .../__pycache__/encoding.cpython-312.pyc | Bin 0 -> 2206 bytes .../__pycache__/entrypoints.cpython-312.pyc | Bin 0 -> 4041 bytes .../__pycache__/filesystem.cpython-312.pyc | Bin 0 -> 7506 bytes .../__pycache__/filetypes.cpython-312.pyc | Bin 0 -> 1212 bytes .../utils/__pycache__/glibc.cpython-312.pyc | Bin 0 -> 2390 bytes .../utils/__pycache__/hashes.cpython-312.pyc | Bin 0 -> 7602 bytes .../utils/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13605 bytes .../utils/__pycache__/misc.cpython-312.pyc | Bin 0 -> 34169 bytes .../utils/__pycache__/models.cpython-312.pyc | Bin 0 -> 2760 bytes .../__pycache__/packaging.cpython-312.pyc | Bin 0 -> 2631 bytes .../setuptools_build.cpython-312.pyc | Bin 0 -> 4598 bytes .../__pycache__/subprocess.cpython-312.pyc | Bin 0 -> 8766 bytes .../__pycache__/temp_dir.cpython-312.pyc | Bin 0 -> 12110 bytes .../__pycache__/unpacking.cpython-312.pyc | Bin 0 -> 11156 bytes .../utils/__pycache__/urls.cpython-312.pyc | Bin 0 -> 2453 bytes .../__pycache__/virtualenv.cpython-312.pyc | Bin 0 -> 4528 bytes .../utils/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5974 bytes .../pip/_internal/utils/_jaraco_text.py | 109 + .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 63 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 120 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/egg_link.py | 80 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 84 + .../pip/_internal/utils/filesystem.py | 153 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 88 + .../pip/_internal/utils/hashes.py | 151 + .../pip/_internal/utils/logging.py | 348 + .../site-packages/pip/_internal/utils/misc.py | 783 ++ .../pip/_internal/utils/models.py | 39 + .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/setuptools_build.py | 146 + .../pip/_internal/utils/subprocess.py | 260 + .../pip/_internal/utils/temp_dir.py | 296 + .../pip/_internal/utils/unpacking.py | 257 + .../site-packages/pip/_internal/utils/urls.py | 62 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 134 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 582 bytes .../vcs/__pycache__/bazaar.cpython-312.pyc | Bin 0 -> 5074 bytes .../vcs/__pycache__/git.cpython-312.pyc | Bin 0 -> 19043 bytes .../vcs/__pycache__/mercurial.cpython-312.pyc | Bin 0 -> 7663 bytes .../__pycache__/subversion.cpython-312.pyc | Bin 0 -> 12535 bytes .../versioncontrol.cpython-312.pyc | Bin 0 -> 29061 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 112 + .../site-packages/pip/_internal/vcs/git.py | 526 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 705 ++ .../pip/_internal/wheel_builder.py | 354 + .../site-packages/pip/_vendor/__init__.py | 121 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4744 bytes .../_vendor/__pycache__/six.cpython-312.pyc | Bin 0 -> 41321 bytes .../typing_extensions.cpython-312.pyc | Bin 0 -> 122101 bytes .../pip/_vendor/cachecontrol/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 954 bytes .../__pycache__/_cmd.cpython-312.pyc | Bin 0 -> 2698 bytes .../__pycache__/adapter.cpython-312.pyc | Bin 0 -> 6516 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 3861 bytes .../__pycache__/controller.cpython-312.pyc | Bin 0 -> 16219 bytes .../__pycache__/filewrapper.cpython-312.pyc | Bin 0 -> 4399 bytes .../__pycache__/heuristics.cpython-312.pyc | Bin 0 -> 6746 bytes .../__pycache__/serialize.cpython-312.pyc | Bin 0 -> 6457 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 1726 bytes .../pip/_vendor/cachecontrol/_cmd.py | 70 + .../pip/_vendor/cachecontrol/adapter.py | 161 + .../pip/_vendor/cachecontrol/cache.py | 74 + .../_vendor/cachecontrol/caches/__init__.py | 8 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 487 bytes .../__pycache__/file_cache.cpython-312.pyc | Bin 0 -> 7762 bytes .../__pycache__/redis_cache.cpython-312.pyc | Bin 0 -> 2790 bytes .../_vendor/cachecontrol/caches/file_cache.py | 181 + .../cachecontrol/caches/redis_cache.py | 48 + .../pip/_vendor/cachecontrol/controller.py | 494 + .../pip/_vendor/cachecontrol/filewrapper.py | 119 + .../pip/_vendor/cachecontrol/heuristics.py | 154 + .../pip/_vendor/cachecontrol/serialize.py | 206 + .../pip/_vendor/cachecontrol/wrapper.py | 43 + .../pip/_vendor/certifi/__init__.py | 4 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 370 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 697 bytes .../certifi/__pycache__/core.cpython-312.pyc | Bin 0 -> 3379 bytes .../pip/_vendor/certifi/cacert.pem | 4635 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 119 + .../pip/_vendor/chardet/__init__.py | 115 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4620 bytes .../__pycache__/big5freq.cpython-312.pyc | Bin 0 -> 27251 bytes .../__pycache__/big5prober.cpython-312.pyc | Bin 0 -> 1439 bytes .../chardistribution.cpython-312.pyc | Bin 0 -> 9690 bytes .../charsetgroupprober.cpython-312.pyc | Bin 0 -> 4174 bytes .../__pycache__/charsetprober.cpython-312.pyc | Bin 0 -> 5070 bytes .../codingstatemachine.cpython-312.pyc | Bin 0 -> 3930 bytes .../codingstatemachinedict.cpython-312.pyc | Bin 0 -> 841 bytes .../__pycache__/cp949prober.cpython-312.pyc | Bin 0 -> 1448 bytes .../chardet/__pycache__/enums.cpython-312.pyc | Bin 0 -> 3048 bytes .../__pycache__/escprober.cpython-312.pyc | Bin 0 -> 4618 bytes .../chardet/__pycache__/escsm.cpython-312.pyc | Bin 0 -> 15362 bytes .../__pycache__/eucjpprober.cpython-312.pyc | Bin 0 -> 4435 bytes .../__pycache__/euckrfreq.cpython-312.pyc | Bin 0 -> 12134 bytes .../__pycache__/euckrprober.cpython-312.pyc | Bin 0 -> 1442 bytes .../__pycache__/euctwfreq.cpython-312.pyc | Bin 0 -> 27256 bytes .../__pycache__/euctwprober.cpython-312.pyc | Bin 0 -> 1442 bytes .../__pycache__/gb2312freq.cpython-312.pyc | Bin 0 -> 19178 bytes .../__pycache__/gb2312prober.cpython-312.pyc | Bin 0 -> 1455 bytes .../__pycache__/hebrewprober.cpython-312.pyc | Bin 0 -> 5874 bytes .../__pycache__/jisfreq.cpython-312.pyc | Bin 0 -> 22207 bytes .../__pycache__/johabfreq.cpython-312.pyc | Bin 0 -> 83055 bytes .../__pycache__/johabprober.cpython-312.pyc | Bin 0 -> 1446 bytes .../__pycache__/jpcntx.cpython-312.pyc | Bin 0 -> 39601 bytes .../langbulgarianmodel.cpython-312.pyc | Bin 0 -> 83174 bytes .../langgreekmodel.cpython-312.pyc | Bin 0 -> 77040 bytes .../langhebrewmodel.cpython-312.pyc | Bin 0 -> 77551 bytes .../langhungarianmodel.cpython-312.pyc | Bin 0 -> 83128 bytes .../langrussianmodel.cpython-312.pyc | Bin 0 -> 105303 bytes .../__pycache__/langthaimodel.cpython-312.pyc | Bin 0 -> 77729 bytes .../langturkishmodel.cpython-312.pyc | Bin 0 -> 77568 bytes .../__pycache__/latin1prober.cpython-312.pyc | Bin 0 -> 7054 bytes .../macromanprober.cpython-312.pyc | Bin 0 -> 7234 bytes .../mbcharsetprober.cpython-312.pyc | Bin 0 -> 3955 bytes .../mbcsgroupprober.cpython-312.pyc | Bin 0 -> 1640 bytes .../__pycache__/mbcssm.cpython-312.pyc | Bin 0 -> 38697 bytes .../__pycache__/resultdict.cpython-312.pyc | Bin 0 -> 684 bytes .../sbcharsetprober.cpython-312.pyc | Bin 0 -> 6439 bytes .../sbcsgroupprober.cpython-312.pyc | Bin 0 -> 2409 bytes .../__pycache__/sjisprober.cpython-312.pyc | Bin 0 -> 4547 bytes .../universaldetector.cpython-312.pyc | Bin 0 -> 12321 bytes .../__pycache__/utf1632prober.cpython-312.pyc | Bin 0 -> 10031 bytes .../__pycache__/utf8prober.cpython-312.pyc | Bin 0 -> 3227 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 540 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 261 + .../pip/_vendor/chardet/charsetgroupprober.py | 106 + .../pip/_vendor/chardet/charsetprober.py | 147 + .../pip/_vendor/chardet/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 247 bytes .../__pycache__/chardetect.cpython-312.pyc | Bin 0 -> 4064 bytes .../pip/_vendor/chardet/cli/chardetect.py | 112 + .../pip/_vendor/chardet/codingstatemachine.py | 90 + .../_vendor/chardet/codingstatemachinedict.py | 19 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 85 + .../pip/_vendor/chardet/escprober.py | 102 + .../pip/_vendor/chardet/escsm.py | 261 + .../pip/_vendor/chardet/eucjpprober.py | 102 + .../pip/_vendor/chardet/euckrfreq.py | 196 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 388 + .../pip/_vendor/chardet/euctwprober.py | 47 + .../pip/_vendor/chardet/gb2312freq.py | 284 + .../pip/_vendor/chardet/gb2312prober.py | 47 + .../pip/_vendor/chardet/hebrewprober.py | 316 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/johabfreq.py | 2382 +++++ .../pip/_vendor/chardet/johabprober.py | 47 + .../pip/_vendor/chardet/jpcntx.py | 238 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4397 +++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4380 +++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5725 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4380 +++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4380 +++++++++ .../pip/_vendor/chardet/latin1prober.py | 147 + .../pip/_vendor/chardet/macromanprober.py | 162 + .../pip/_vendor/chardet/mbcharsetprober.py | 95 + .../pip/_vendor/chardet/mbcsgroupprober.py | 57 + .../pip/_vendor/chardet/mbcssm.py | 661 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 252 bytes .../__pycache__/languages.cpython-312.pyc | Bin 0 -> 9807 bytes .../pip/_vendor/chardet/metadata/languages.py | 352 + .../pip/_vendor/chardet/resultdict.py | 16 + .../pip/_vendor/chardet/sbcharsetprober.py | 162 + .../pip/_vendor/chardet/sbcsgroupprober.py | 88 + .../pip/_vendor/chardet/sjisprober.py | 105 + .../pip/_vendor/chardet/universaldetector.py | 362 + .../pip/_vendor/chardet/utf1632prober.py | 225 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 7 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 544 bytes .../colorama/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 4002 bytes .../__pycache__/ansitowin32.cpython-312.pyc | Bin 0 -> 16473 bytes .../__pycache__/initialise.cpython-312.pyc | Bin 0 -> 3602 bytes .../__pycache__/win32.cpython-312.pyc | Bin 0 -> 8178 bytes .../__pycache__/winterm.cpython-312.pyc | Bin 0 -> 9140 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 277 + .../pip/_vendor/colorama/initialise.py | 121 + .../pip/_vendor/colorama/tests/__init__.py | 1 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 250 bytes .../__pycache__/ansi_test.cpython-312.pyc | Bin 0 -> 5519 bytes .../ansitowin32_test.cpython-312.pyc | Bin 0 -> 18155 bytes .../initialise_test.cpython-312.pyc | Bin 0 -> 11800 bytes .../__pycache__/isatty_test.cpython-312.pyc | Bin 0 -> 4956 bytes .../tests/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2540 bytes .../__pycache__/winterm_test.cpython-312.pyc | Bin 0 -> 6664 bytes .../pip/_vendor/colorama/tests/ansi_test.py | 76 + .../colorama/tests/ansitowin32_test.py | 294 + .../_vendor/colorama/tests/initialise_test.py | 189 + .../pip/_vendor/colorama/tests/isatty_test.py | 57 + .../pip/_vendor/colorama/tests/utils.py | 49 + .../_vendor/colorama/tests/winterm_test.py | 131 + .../pip/_vendor/colorama/win32.py | 180 + .../pip/_vendor/colorama/winterm.py | 195 + .../pip/_vendor/distlib/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1321 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 45657 bytes .../__pycache__/database.cpython-312.pyc | Bin 0 -> 66079 bytes .../distlib/__pycache__/index.cpython-312.pyc | Bin 0 -> 24418 bytes .../__pycache__/locators.cpython-312.pyc | Bin 0 -> 60210 bytes .../__pycache__/manifest.cpython-312.pyc | Bin 0 -> 15177 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 7734 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 41851 bytes .../__pycache__/resources.cpython-312.pyc | Bin 0 -> 17377 bytes .../__pycache__/scripts.cpython-312.pyc | Bin 0 -> 19632 bytes .../distlib/__pycache__/util.cpython-312.pyc | Bin 0 -> 88308 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 30418 bytes .../distlib/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 51913 bytes .../pip/_vendor/distlib/compat.py | 1138 +++ .../pip/_vendor/distlib/database.py | 1359 +++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1303 +++ .../pip/_vendor/distlib/manifest.py | 384 + .../pip/_vendor/distlib/markers.py | 167 + .../pip/_vendor/distlib/metadata.py | 1068 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 452 + .../site-packages/pip/_vendor/distlib/util.py | 2025 ++++ .../pip/_vendor/distlib/version.py | 751 ++ .../pip/_vendor/distlib/wheel.py | 1099 +++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1012 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 344 bytes .../distro/__pycache__/distro.cpython-312.pyc | Bin 0 -> 53806 bytes .../pip/_vendor/distro/distro.py | 1399 +++ .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 933 bytes .../idna/__pycache__/codec.cpython-312.pyc | Bin 0 -> 4685 bytes .../idna/__pycache__/compat.cpython-312.pyc | Bin 0 -> 939 bytes .../idna/__pycache__/core.cpython-312.pyc | Bin 0 -> 16334 bytes .../idna/__pycache__/idnadata.cpython-312.pyc | Bin 0 -> 38434 bytes .../__pycache__/intranges.cpython-312.pyc | Bin 0 -> 2690 bytes .../__pycache__/package_data.cpython-312.pyc | Bin 0 -> 268 bytes .../__pycache__/uts46data.cpython-312.pyc | Bin 0 -> 158922 bytes .../site-packages/pip/_vendor/idna/codec.py | 112 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 400 + .../pip/_vendor/idna/idnadata.py | 2151 +++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8600 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 57 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1883 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2077 bytes .../msgpack/__pycache__/ext.cpython-312.pyc | Bin 0 -> 8720 bytes .../__pycache__/fallback.cpython-312.pyc | Bin 0 -> 43628 bytes .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1010 ++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-312.pyc | Bin 0 -> 682 bytes .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 518 bytes .../__pycache__/_manylinux.cpython-312.pyc | Bin 0 -> 12128 bytes .../__pycache__/_musllinux.cpython-312.pyc | Bin 0 -> 6962 bytes .../__pycache__/_structures.cpython-312.pyc | Bin 0 -> 3293 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 14110 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 6998 bytes .../__pycache__/specifiers.cpython-312.pyc | Bin 0 -> 31299 bytes .../__pycache__/tags.cpython-312.pyc | Bin 0 -> 19008 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 5920 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 19991 bytes .../pip/_vendor/packaging/_manylinux.py | 301 + .../pip/_vendor/packaging/_musllinux.py | 136 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/markers.py | 304 + .../pip/_vendor/packaging/requirements.py | 146 + .../pip/_vendor/packaging/specifiers.py | 802 ++ .../pip/_vendor/packaging/tags.py | 487 + .../pip/_vendor/packaging/utils.py | 136 + .../pip/_vendor/packaging/version.py | 504 + .../pip/_vendor/pkg_resources/__init__.py | 3361 +++++++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 146526 bytes .../pip/_vendor/platformdirs/__init__.py | 566 ++ .../pip/_vendor/platformdirs/__main__.py | 53 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 18081 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1998 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 9496 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 9724 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 5689 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 12493 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 363 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 13051 bytes .../pip/_vendor/platformdirs/android.py | 210 + .../pip/_vendor/platformdirs/api.py | 223 + .../pip/_vendor/platformdirs/macos.py | 91 + .../pip/_vendor/platformdirs/unix.py | 223 + .../pip/_vendor/platformdirs/version.py | 4 + .../pip/_vendor/platformdirs/windows.py | 255 + .../pip/_vendor/pygments/__init__.py | 82 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3541 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 787 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26658 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2679 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3285 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4622 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38382 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1621 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 3449 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4134 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4809 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 11099 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6727 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8195 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 33041 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14034 bytes .../pip/_vendor/pygments/cmdline.py | 668 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 71 + .../pip/_vendor/pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 37989 bytes .../pip/_vendor/pygments/formatter.py | 124 + .../_vendor/pygments/formatters/__init__.py | 158 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6979 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4268 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4247 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7317 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 40625 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 27096 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6118 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 20007 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6937 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 2983 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 6179 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9119 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5882 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15210 bytes .../_vendor/pygments/formatters/_mapping.py | 23 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 170 + .../pip/_vendor/pygments/formatters/html.py | 989 ++ .../pip/_vendor/pygments/formatters/img.py | 645 ++ .../pip/_vendor/pygments/formatters/irc.py | 154 + .../pip/_vendor/pygments/formatters/latex.py | 521 + .../pip/_vendor/pygments/formatters/other.py | 161 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 146 + .../pip/_vendor/pygments/formatters/svg.py | 188 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 943 ++ .../pip/_vendor/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 14705 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 64457 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42692 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 559 ++ .../pip/_vendor/pygments/lexers/python.py | 1198 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 88 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 217 + .../pip/_vendor/pygments/style.py | 197 + .../pip/_vendor/pygments/styles/__init__.py | 103 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4501 bytes .../pip/_vendor/pygments/token.py | 213 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 330 + .../pip/_vendor/pyparsing/__init__.py | 322 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7964 bytes .../__pycache__/actions.cpython-312.pyc | Bin 0 -> 8448 bytes .../__pycache__/common.cpython-312.pyc | Bin 0 -> 13467 bytes .../__pycache__/core.cpython-312.pyc | Bin 0 -> 267761 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13047 bytes .../__pycache__/helpers.cpython-312.pyc | Bin 0 -> 48554 bytes .../__pycache__/results.cpython-312.pyc | Bin 0 -> 34163 bytes .../__pycache__/testing.cpython-312.pyc | Bin 0 -> 17241 bytes .../__pycache__/unicode.cpython-312.pyc | Bin 0 -> 13237 bytes .../__pycache__/util.cpython-312.pyc | Bin 0 -> 14957 bytes .../pip/_vendor/pyparsing/actions.py | 217 + .../pip/_vendor/pyparsing/common.py | 432 + .../pip/_vendor/pyparsing/core.py | 6115 ++++++++++++ .../pip/_vendor/pyparsing/diagram/__init__.py | 656 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 26866 bytes .../pip/_vendor/pyparsing/exceptions.py | 299 + .../pip/_vendor/pyparsing/helpers.py | 1100 +++ .../pip/_vendor/pyparsing/results.py | 796 ++ .../pip/_vendor/pyparsing/testing.py | 331 + .../pip/_vendor/pyparsing/unicode.py | 361 + .../pip/_vendor/pyparsing/util.py | 284 + .../pip/_vendor/pyproject_hooks/__init__.py | 23 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 666 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 427 bytes .../__pycache__/_impl.cpython-312.pyc | Bin 0 -> 14778 bytes .../pip/_vendor/pyproject_hooks/_compat.py | 8 + .../pip/_vendor/pyproject_hooks/_impl.py | 330 + .../pyproject_hooks/_in_process/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1133 bytes .../__pycache__/_in_process.cpython-312.pyc | Bin 0 -> 14450 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 182 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5506 bytes .../__pycache__/__version__.cpython-312.pyc | Bin 0 -> 637 bytes .../_internal_utils.cpython-312.pyc | Bin 0 -> 2077 bytes .../__pycache__/adapters.cpython-312.pyc | Bin 0 -> 21333 bytes .../requests/__pycache__/api.cpython-312.pyc | Bin 0 -> 7257 bytes .../requests/__pycache__/auth.cpython-312.pyc | Bin 0 -> 13976 bytes .../__pycache__/certs.cpython-312.pyc | Bin 0 -> 975 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 1560 bytes .../__pycache__/cookies.cpython-312.pyc | Bin 0 -> 25299 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 7100 bytes .../requests/__pycache__/help.cpython-312.pyc | Bin 0 -> 4365 bytes .../__pycache__/hooks.cpython-312.pyc | Bin 0 -> 1105 bytes .../__pycache__/models.cpython-312.pyc | Bin 0 -> 35501 bytes .../__pycache__/packages.cpython-312.pyc | Bin 0 -> 825 bytes .../__pycache__/sessions.cpython-312.pyc | Bin 0 -> 27810 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 6012 bytes .../__pycache__/structures.cpython-312.pyc | Bin 0 -> 5670 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 36322 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 50 + .../pip/_vendor/requests/adapters.py | 538 ++ .../site-packages/pip/_vendor/requests/api.py | 157 + .../pip/_vendor/requests/auth.py | 315 + .../pip/_vendor/requests/certs.py | 24 + .../pip/_vendor/requests/compat.py | 67 + .../pip/_vendor/requests/cookies.py | 561 ++ .../pip/_vendor/requests/exceptions.py | 141 + .../pip/_vendor/requests/help.py | 131 + .../pip/_vendor/requests/hooks.py | 33 + .../pip/_vendor/requests/models.py | 1034 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 833 ++ .../pip/_vendor/requests/status_codes.py | 128 + .../pip/_vendor/requests/structures.py | 99 + .../pip/_vendor/requests/utils.py | 1094 +++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 687 bytes .../__pycache__/providers.cpython-312.pyc | Bin 0 -> 6904 bytes .../__pycache__/reporters.cpython-312.pyc | Bin 0 -> 2707 bytes .../__pycache__/resolvers.cpython-312.pyc | Bin 0 -> 25950 bytes .../__pycache__/structs.cpython-312.pyc | Bin 0 -> 10559 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 253 bytes .../collections_abc.cpython-312.pyc | Bin 0 -> 473 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 547 ++ .../pip/_vendor/resolvelib/structs.py | 170 + .../pip/_vendor/rich/__init__.py | 177 + .../pip/_vendor/rich/__main__.py | 274 + .../rich/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7068 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 10357 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7874 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 206029 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1782 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2374 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 590 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 908 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12130 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4200 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1938 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3673 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5213 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 779 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6632 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13232 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 1018 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 918 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 29029 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2543 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3626 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 2413 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1661 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12375 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9159 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4325 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11911 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5671 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26623 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1754 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8640 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 113846 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2311 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9279 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10982 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10426 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1540 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4262 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1898 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3630 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3135 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9951 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6088 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5262 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20273 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 19196 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4947 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13607 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9351 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6429 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 7187 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1873 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5367 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12150 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40109 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 75131 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10442 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 14834 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1845 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 620 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6679 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6621 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3883 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2537 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28214 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 6117 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6121 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33567 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2192 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 39665 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43637 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3401 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 59016 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6393 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 367 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 31601 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11492 bytes .../pip/_vendor/rich/_cell_widths.py | 451 + .../pip/_vendor/rich/_emoji_codes.py | 3610 +++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_export_format.py | 76 + .../pip/_vendor/rich/_extension.py | 10 + .../site-packages/pip/_vendor/rich/_fileno.py | 24 + .../pip/_vendor/rich/_inspect.py | 270 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_null_file.py | 69 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 160 + .../pip/_vendor/rich/_spinners.py | 482 + .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_win32_console.py | 662 ++ .../pip/_vendor/rich/_windows.py | 72 + .../pip/_vendor/rich/_windows_renderer.py | 56 + .../site-packages/pip/_vendor/rich/_wrap.py | 56 + .../site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 311 + .../site-packages/pip/_vendor/rich/ansi.py | 240 + .../site-packages/pip/_vendor/rich/bar.py | 94 + .../site-packages/pip/_vendor/rich/box.py | 517 + .../site-packages/pip/_vendor/rich/cells.py | 154 + .../site-packages/pip/_vendor/rich/color.py | 622 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2633 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 225 + .../pip/_vendor/rich/default_styles.py | 190 + .../pip/_vendor/rich/diagnose.py | 37 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 57 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 232 + .../site-packages/pip/_vendor/rich/json.py | 140 + .../site-packages/pip/_vendor/rich/jupyter.py | 101 + .../site-packages/pip/_vendor/rich/layout.py | 443 + .../site-packages/pip/_vendor/rich/live.py | 375 + .../pip/_vendor/rich/live_render.py | 113 + .../site-packages/pip/_vendor/rich/logging.py | 289 + .../site-packages/pip/_vendor/rich/markup.py | 246 + .../site-packages/pip/_vendor/rich/measure.py | 151 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 308 + .../site-packages/pip/_vendor/rich/pretty.py | 994 ++ .../pip/_vendor/rich/progress.py | 1702 ++++ .../pip/_vendor/rich/progress_bar.py | 224 + .../site-packages/pip/_vendor/rich/prompt.py | 376 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 149 + .../site-packages/pip/_vendor/rich/rule.py | 130 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 739 ++ .../site-packages/pip/_vendor/rich/spinner.py | 137 + .../site-packages/pip/_vendor/rich/status.py | 132 + .../site-packages/pip/_vendor/rich/style.py | 796 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 948 ++ .../site-packages/pip/_vendor/rich/table.py | 1002 ++ .../pip/_vendor/rich/terminal_theme.py | 153 + .../site-packages/pip/_vendor/rich/text.py | 1307 +++ .../site-packages/pip/_vendor/rich/theme.py | 115 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 756 ++ .../site-packages/pip/_vendor/rich/tree.py | 251 + .../site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 608 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 27139 bytes .../__pycache__/_asyncio.cpython-312.pyc | Bin 0 -> 4859 bytes .../__pycache__/_utils.cpython-312.pyc | Bin 0 -> 2368 bytes .../__pycache__/after.cpython-312.pyc | Bin 0 -> 1677 bytes .../__pycache__/before.cpython-312.pyc | Bin 0 -> 1517 bytes .../__pycache__/before_sleep.cpython-312.pyc | Bin 0 -> 2355 bytes .../tenacity/__pycache__/nap.cpython-312.pyc | Bin 0 -> 1465 bytes .../__pycache__/retry.cpython-312.pyc | Bin 0 -> 14334 bytes .../tenacity/__pycache__/stop.cpython-312.pyc | Bin 0 -> 5621 bytes .../__pycache__/tornadoweb.cpython-312.pyc | Bin 0 -> 2639 bytes .../tenacity/__pycache__/wait.cpython-312.pyc | Bin 0 -> 12466 bytes .../pip/_vendor/tenacity/_asyncio.py | 94 + .../pip/_vendor/tenacity/_utils.py | 76 + .../pip/_vendor/tenacity/after.py | 51 + .../pip/_vendor/tenacity/before.py | 46 + .../pip/_vendor/tenacity/before_sleep.py | 71 + .../site-packages/pip/_vendor/tenacity/nap.py | 43 + .../pip/_vendor/tenacity/retry.py | 272 + .../pip/_vendor/tenacity/stop.py | 103 + .../pip/_vendor/tenacity/tornadoweb.py | 59 + .../pip/_vendor/tenacity/wait.py | 228 + .../pip/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 437 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 26980 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 3961 bytes .../tomli/__pycache__/_types.cpython-312.pyc | Bin 0 -> 419 bytes .../pip/_vendor/tomli/_parser.py | 691 ++ .../site-packages/pip/_vendor/tomli/_re.py | 107 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../pip/_vendor/truststore/__init__.py | 13 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 671 bytes .../__pycache__/_api.cpython-312.pyc | Bin 0 -> 15850 bytes .../__pycache__/_macos.cpython-312.pyc | Bin 0 -> 16715 bytes .../__pycache__/_openssl.cpython-312.pyc | Bin 0 -> 2268 bytes .../_ssl_constants.cpython-312.pyc | Bin 0 -> 1152 bytes .../__pycache__/_windows.cpython-312.pyc | Bin 0 -> 15559 bytes .../pip/_vendor/truststore/_api.py | 302 + .../pip/_vendor/truststore/_macos.py | 501 + .../pip/_vendor/truststore/_openssl.py | 66 + .../pip/_vendor/truststore/_ssl_constants.py | 31 + .../pip/_vendor/truststore/_windows.py | 554 ++ .../pip/_vendor/typing_extensions.py | 3072 ++++++ .../pip/_vendor/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3458 bytes .../__pycache__/_collections.cpython-312.pyc | Bin 0 -> 15984 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 271 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 20460 bytes .../connectionpool.cpython-312.pyc | Bin 0 -> 36332 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13546 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 10466 bytes .../__pycache__/filepost.cpython-312.pyc | Bin 0 -> 4071 bytes .../__pycache__/poolmanager.cpython-312.pyc | Bin 0 -> 20683 bytes .../__pycache__/request.cpython-312.pyc | Bin 0 -> 7347 bytes .../__pycache__/response.cpython-312.pyc | Bin 0 -> 34021 bytes .../pip/_vendor/urllib3/_collections.py | 337 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1132 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 251 bytes .../_appengine_environ.cpython-312.pyc | Bin 0 -> 1901 bytes .../__pycache__/appengine.cpython-312.pyc | Bin 0 -> 11617 bytes .../__pycache__/ntlmpool.cpython-312.pyc | Bin 0 -> 5772 bytes .../__pycache__/pyopenssl.cpython-312.pyc | Bin 0 -> 24503 bytes .../securetransport.cpython-312.pyc | Bin 0 -> 35609 bytes .../contrib/__pycache__/socks.cpython-312.pyc | Bin 0 -> 7564 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 268 bytes .../__pycache__/bindings.cpython-312.pyc | Bin 0 -> 17480 bytes .../__pycache__/low_level.cpython-312.pyc | Bin 0 -> 14854 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 518 + .../urllib3/contrib/securetransport.py | 921 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 252 bytes .../packages/__pycache__/six.cpython-312.pyc | Bin 0 -> 41372 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 262 bytes .../__pycache__/makefile.cpython-312.pyc | Bin 0 -> 1878 bytes .../weakref_finalize.cpython-312.pyc | Bin 0 -> 7384 bytes .../urllib3/packages/backports/makefile.py | 51 + .../packages/backports/weakref_finalize.py | 155 + .../pip/_vendor/urllib3/packages/six.py | 1076 +++ .../pip/_vendor/urllib3/poolmanager.py | 553 ++ .../pip/_vendor/urllib3/request.py | 191 + .../pip/_vendor/urllib3/response.py | 879 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1199 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 4809 bytes .../util/__pycache__/proxy.cpython-312.pyc | Bin 0 -> 1605 bytes .../util/__pycache__/queue.cpython-312.pyc | Bin 0 -> 1405 bytes .../util/__pycache__/request.cpython-312.pyc | Bin 0 -> 4236 bytes .../util/__pycache__/response.cpython-312.pyc | Bin 0 -> 3042 bytes .../util/__pycache__/retry.cpython-312.pyc | Bin 0 -> 21771 bytes .../util/__pycache__/ssl_.cpython-312.pyc | Bin 0 -> 15156 bytes .../ssl_match_hostname.cpython-312.pyc | Bin 0 -> 5124 bytes .../__pycache__/ssltransport.cpython-312.pyc | Bin 0 -> 10825 bytes .../util/__pycache__/timeout.cpython-312.pyc | Bin 0 -> 11192 bytes .../util/__pycache__/url.cpython-312.pyc | Bin 0 -> 15848 bytes .../util/__pycache__/wait.cpython-312.pyc | Bin 0 -> 4456 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 137 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 622 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 159 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 271 + .../pip/_vendor/urllib3/util/url.py | 435 + .../pip/_vendor/urllib3/util/wait.py | 152 + .../site-packages/pip/_vendor/vendor.txt | 24 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 12054 bytes .../__pycache__/labels.cpython-312.pyc | Bin 0 -> 7185 bytes .../__pycache__/mklabels.cpython-312.pyc | Bin 0 -> 2752 bytes .../__pycache__/tests.cpython-312.pyc | Bin 0 -> 9304 bytes .../x_user_defined.cpython-312.pyc | Bin 0 -> 3348 bytes .../pip/_vendor/webencodings/labels.py | 231 + .../pip/_vendor/webencodings/mklabels.py | 59 + .../pip/_vendor/webencodings/tests.py | 153 + .../_vendor/webencodings/x_user_defined.py | 325 + .../lib/python3.12/site-packages/pip/py.typed | 4 + implement-cowsay/.venv/lib64 | 1 + implement-cowsay/.venv/pyvenv.cfg | 5 + implement-cowsay/cow_script.py | 4 + implement-cowsay/requirements.txt | 1 + implement-shell-tools/.venv/bin/Activate.ps1 | 247 + implement-shell-tools/.venv/bin/activate | 70 + implement-shell-tools/.venv/bin/activate.csh | 27 + implement-shell-tools/.venv/bin/activate.fish | 69 + implement-shell-tools/.venv/bin/cowsay | 10 + implement-shell-tools/.venv/bin/pip | 10 + implement-shell-tools/.venv/bin/pip3 | 10 + implement-shell-tools/.venv/bin/pip3.12 | 10 + implement-shell-tools/.venv/bin/python | 1 + implement-shell-tools/.venv/bin/python3 | 1 + implement-shell-tools/.venv/bin/python3.12 | 1 + .../cowsay-6.1.dist-info/INSTALLER | 1 + .../cowsay-6.1.dist-info/LICENSE.txt | 674 ++ .../cowsay-6.1.dist-info/METADATA | 179 + .../site-packages/cowsay-6.1.dist-info/RECORD | 25 + .../cowsay-6.1.dist-info/REQUESTED | 0 .../site-packages/cowsay-6.1.dist-info/WHEEL | 5 + .../cowsay-6.1.dist-info/entry_points.txt | 2 + .../cowsay-6.1.dist-info/top_level.txt | 1 + .../site-packages/cowsay/__init__.py | 28 + .../site-packages/cowsay/__main__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 809 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1380 bytes .../__pycache__/characters.cpython-312.pyc | Bin 0 -> 12703 bytes .../cowsay/__pycache__/main.cpython-312.pyc | Bin 0 -> 3916 bytes .../site-packages/cowsay/characters.py | 404 + .../python3.12/site-packages/cowsay/main.py | 74 + .../site-packages/cowsay/tests/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 236 bytes .../__pycache__/solutions.cpython-312.pyc | Bin 0 -> 38512 bytes .../__pycache__/test_api.cpython-312.pyc | Bin 0 -> 2141 bytes .../__pycache__/test_output.cpython-312.pyc | Bin 0 -> 2089 bytes .../site-packages/cowsay/tests/solutions.py | 591 ++ .../site-packages/cowsay/tests/test_api.py | 35 + .../site-packages/cowsay/tests/test_output.py | 40 + .../pip-24.0.dist-info/AUTHORS.txt | 760 ++ .../pip-24.0.dist-info/INSTALLER | 1 + .../pip-24.0.dist-info/LICENSE.txt | 20 + .../site-packages/pip-24.0.dist-info/METADATA | 88 + .../site-packages/pip-24.0.dist-info/RECORD | 1005 ++ .../pip-24.0.dist-info/REQUESTED | 0 .../site-packages/pip-24.0.dist-info/WHEEL | 5 + .../pip-24.0.dist-info/entry_points.txt | 4 + .../pip-24.0.dist-info/top_level.txt | 1 + .../python3.12/site-packages/pip/__init__.py | 13 + .../python3.12/site-packages/pip/__main__.py | 24 + .../site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 736 bytes .../pip/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 892 bytes .../__pip-runner__.cpython-312.pyc | Bin 0 -> 2255 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 838 bytes .../__pycache__/build_env.cpython-312.pyc | Bin 0 -> 14345 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 12716 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 17717 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 33335 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 721 bytes .../__pycache__/pyproject.cpython-312.pyc | Bin 0 -> 5022 bytes .../self_outdated_check.cpython-312.pyc | Bin 0 -> 10603 bytes .../__pycache__/wheel_builder.cpython-312.pyc | Bin 0 -> 13700 bytes .../site-packages/pip/_internal/build_env.py | 311 + .../site-packages/pip/_internal/cache.py | 290 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 329 bytes .../autocompletion.cpython-312.pyc | Bin 0 -> 8516 bytes .../__pycache__/base_command.cpython-312.pyc | Bin 0 -> 10506 bytes .../__pycache__/cmdoptions.cpython-312.pyc | Bin 0 -> 30425 bytes .../command_context.cpython-312.pyc | Bin 0 -> 1832 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 2349 bytes .../__pycache__/main_parser.cpython-312.pyc | Bin 0 -> 4956 bytes .../cli/__pycache__/parser.cpython-312.pyc | Bin 0 -> 15073 bytes .../__pycache__/progress_bars.cpython-312.pyc | Bin 0 -> 2671 bytes .../__pycache__/req_command.cpython-312.pyc | Bin 0 -> 18903 bytes .../cli/__pycache__/spinners.cpython-312.pyc | Bin 0 -> 7891 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 426 bytes .../pip/_internal/cli/autocompletion.py | 172 + .../pip/_internal/cli/base_command.py | 236 + .../pip/_internal/cli/cmdoptions.py | 1074 ++ .../pip/_internal/cli/command_context.py | 27 + .../site-packages/pip/_internal/cli/main.py | 79 + .../pip/_internal/cli/main_parser.py | 134 + .../site-packages/pip/_internal/cli/parser.py | 294 + .../pip/_internal/cli/progress_bars.py | 68 + .../pip/_internal/cli/req_command.py | 505 + .../pip/_internal/cli/spinners.py | 159 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 132 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4053 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 9762 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 2141 bytes .../__pycache__/completion.cpython-312.pyc | Bin 0 -> 5243 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 13263 bytes .../__pycache__/debug.cpython-312.pyc | Bin 0 -> 10212 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 7640 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 4467 bytes .../commands/__pycache__/hash.cpython-312.pyc | Bin 0 -> 3034 bytes .../commands/__pycache__/help.cpython-312.pyc | Bin 0 -> 1724 bytes .../__pycache__/index.cpython-312.pyc | Bin 0 -> 6771 bytes .../__pycache__/inspect.cpython-312.pyc | Bin 0 -> 4026 bytes .../__pycache__/install.cpython-312.pyc | Bin 0 -> 28964 bytes .../commands/__pycache__/list.cpython-312.pyc | Bin 0 -> 15707 bytes .../__pycache__/search.cpython-312.pyc | Bin 0 -> 7672 bytes .../commands/__pycache__/show.cpython-312.pyc | Bin 0 -> 9779 bytes .../__pycache__/uninstall.cpython-312.pyc | Bin 0 -> 4777 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 9007 bytes .../pip/_internal/commands/cache.py | 225 + .../pip/_internal/commands/check.py | 54 + .../pip/_internal/commands/completion.py | 130 + .../pip/_internal/commands/configuration.py | 280 + .../pip/_internal/commands/debug.py | 201 + .../pip/_internal/commands/download.py | 147 + .../pip/_internal/commands/freeze.py | 109 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/inspect.py | 92 + .../pip/_internal/commands/install.py | 774 ++ .../pip/_internal/commands/list.py | 370 + .../pip/_internal/commands/search.py | 174 + .../pip/_internal/commands/show.py | 189 + .../pip/_internal/commands/uninstall.py | 113 + .../pip/_internal/commands/wheel.py | 183 + .../pip/_internal/configuration.py | 383 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 992 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 2913 bytes .../__pycache__/installed.cpython-312.pyc | Bin 0 -> 1751 bytes .../__pycache__/sdist.cpython-312.pyc | Bin 0 -> 8539 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 2299 bytes .../pip/_internal/distributions/base.py | 51 + .../pip/_internal/distributions/installed.py | 29 + .../pip/_internal/distributions/sdist.py | 156 + .../pip/_internal/distributions/wheel.py | 40 + .../site-packages/pip/_internal/exceptions.py | 728 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 283 bytes .../__pycache__/collector.cpython-312.pyc | Bin 0 -> 21937 bytes .../package_finder.cpython-312.pyc | Bin 0 -> 40786 bytes .../index/__pycache__/sources.cpython-312.pyc | Bin 0 -> 12655 bytes .../pip/_internal/index/collector.py | 507 + .../pip/_internal/index/package_finder.py | 1027 ++ .../pip/_internal/index/sources.py | 285 + .../pip/_internal/locations/__init__.py | 467 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 16827 bytes .../__pycache__/_distutils.cpython-312.pyc | Bin 0 -> 6907 bytes .../__pycache__/_sysconfig.cpython-312.pyc | Bin 0 -> 8062 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 3832 bytes .../pip/_internal/locations/_distutils.py | 172 + .../pip/_internal/locations/_sysconfig.py | 213 + .../pip/_internal/locations/base.py | 81 + .../site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 128 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5933 bytes .../__pycache__/_json.cpython-312.pyc | Bin 0 -> 2926 bytes .../metadata/__pycache__/base.cpython-312.pyc | Bin 0 -> 35763 bytes .../__pycache__/pkg_resources.cpython-312.pyc | Bin 0 -> 15841 bytes .../pip/_internal/metadata/_json.py | 84 + .../pip/_internal/metadata/base.py | 702 ++ .../_internal/metadata/importlib/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 409 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 3384 bytes .../__pycache__/_dists.cpython-312.pyc | Bin 0 -> 13476 bytes .../__pycache__/_envs.cpython-312.pyc | Bin 0 -> 11231 bytes .../_internal/metadata/importlib/_compat.py | 55 + .../_internal/metadata/importlib/_dists.py | 227 + .../pip/_internal/metadata/importlib/_envs.py | 189 + .../pip/_internal/metadata/pkg_resources.py | 278 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 317 bytes .../__pycache__/candidate.cpython-312.pyc | Bin 0 -> 1956 bytes .../__pycache__/direct_url.cpython-312.pyc | Bin 0 -> 11250 bytes .../format_control.cpython-312.pyc | Bin 0 -> 4278 bytes .../models/__pycache__/index.cpython-312.pyc | Bin 0 -> 1745 bytes .../installation_report.cpython-312.pyc | Bin 0 -> 2323 bytes .../models/__pycache__/link.cpython-312.pyc | Bin 0 -> 26053 bytes .../models/__pycache__/scheme.cpython-312.pyc | Bin 0 -> 1220 bytes .../__pycache__/search_scope.cpython-312.pyc | Bin 0 -> 5139 bytes .../selection_prefs.cpython-312.pyc | Bin 0 -> 1902 bytes .../__pycache__/target_python.cpython-312.pyc | Bin 0 -> 5005 bytes .../models/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5831 bytes .../pip/_internal/models/candidate.py | 30 + .../pip/_internal/models/direct_url.py | 235 + .../pip/_internal/models/format_control.py | 78 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 56 + .../pip/_internal/models/link.py | 579 ++ .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 132 + .../pip/_internal/models/selection_prefs.py | 51 + .../pip/_internal/models/target_python.py | 122 + .../pip/_internal/models/wheel.py | 92 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 305 bytes .../network/__pycache__/auth.cpython-312.pyc | Bin 0 -> 22047 bytes .../network/__pycache__/cache.cpython-312.pyc | Bin 0 -> 6569 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 8604 bytes .../__pycache__/lazy_wheel.cpython-312.pyc | Bin 0 -> 11714 bytes .../__pycache__/session.cpython-312.pyc | Bin 0 -> 18825 bytes .../network/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2304 bytes .../__pycache__/xmlrpc.cpython-312.pyc | Bin 0 -> 3000 bytes .../pip/_internal/network/auth.py | 561 ++ .../pip/_internal/network/cache.py | 106 + .../pip/_internal/network/download.py | 186 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 520 + .../pip/_internal/network/utils.py | 96 + .../pip/_internal/network/xmlrpc.py | 62 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 248 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 7630 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 10168 bytes .../__pycache__/prepare.cpython-312.pyc | Bin 0 -> 25798 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 254 bytes .../__pycache__/build_tracker.cpython-312.pyc | Bin 0 -> 7874 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 1931 bytes .../metadata_editable.cpython-312.pyc | Bin 0 -> 1965 bytes .../metadata_legacy.cpython-312.pyc | Bin 0 -> 3116 bytes .../build/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 1735 bytes .../wheel_editable.cpython-312.pyc | Bin 0 -> 2076 bytes .../__pycache__/wheel_legacy.cpython-312.pyc | Bin 0 -> 3980 bytes .../operations/build/build_tracker.py | 139 + .../_internal/operations/build/metadata.py | 39 + .../operations/build/metadata_editable.py | 41 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 37 + .../operations/build/wheel_editable.py | 46 + .../operations/build/wheel_legacy.py | 102 + .../pip/_internal/operations/check.py | 187 + .../pip/_internal/operations/freeze.py | 255 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 317 bytes .../editable_legacy.cpython-312.pyc | Bin 0 -> 1868 bytes .../install/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 33910 bytes .../operations/install/editable_legacy.py | 46 + .../pip/_internal/operations/install/wheel.py | 734 ++ .../pip/_internal/operations/prepare.py | 730 ++ .../site-packages/pip/_internal/pyproject.py | 179 + .../pip/_internal/req/__init__.py | 92 + .../req/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3794 bytes .../__pycache__/constructors.cpython-312.pyc | Bin 0 -> 21633 bytes .../req/__pycache__/req_file.cpython-312.pyc | Bin 0 -> 21512 bytes .../__pycache__/req_install.cpython-312.pyc | Bin 0 -> 38465 bytes .../req/__pycache__/req_set.cpython-312.pyc | Bin 0 -> 7269 bytes .../__pycache__/req_uninstall.cpython-312.pyc | Bin 0 -> 33028 bytes .../pip/_internal/req/constructors.py | 576 ++ .../pip/_internal/req/req_file.py | 554 ++ .../pip/_internal/req/req_install.py | 923 ++ .../pip/_internal/req/req_set.py | 119 + .../pip/_internal/req/req_uninstall.py | 649 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 248 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 1236 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 255 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 22490 bytes .../_internal/resolution/legacy/resolver.py | 598 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 259 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 8388 bytes .../__pycache__/candidates.cpython-312.pyc | Bin 0 -> 30449 bytes .../__pycache__/factory.cpython-312.pyc | Bin 0 -> 32165 bytes .../found_candidates.cpython-312.pyc | Bin 0 -> 6259 bytes .../__pycache__/provider.cpython-312.pyc | Bin 0 -> 10429 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 4986 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 11480 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 12402 bytes .../_internal/resolution/resolvelib/base.py | 141 + .../resolution/resolvelib/candidates.py | 597 ++ .../resolution/resolvelib/factory.py | 812 ++ .../resolution/resolvelib/found_candidates.py | 155 + .../resolution/resolvelib/provider.py | 255 + .../resolution/resolvelib/reporter.py | 80 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 317 + .../pip/_internal/self_outdated_check.py | 248 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 243 bytes .../__pycache__/_jaraco_text.cpython-312.pyc | Bin 0 -> 4584 bytes .../utils/__pycache__/_log.cpython-312.pyc | Bin 0 -> 1914 bytes .../utils/__pycache__/appdirs.cpython-312.pyc | Bin 0 -> 2458 bytes .../utils/__pycache__/compat.cpython-312.pyc | Bin 0 -> 2261 bytes .../compatibility_tags.cpython-312.pyc | Bin 0 -> 5609 bytes .../__pycache__/datetime.cpython-312.pyc | Bin 0 -> 732 bytes .../__pycache__/deprecation.cpython-312.pyc | Bin 0 -> 4234 bytes .../direct_url_helpers.cpython-312.pyc | Bin 0 -> 3611 bytes .../__pycache__/egg_link.cpython-312.pyc | Bin 0 -> 3274 bytes .../__pycache__/encoding.cpython-312.pyc | Bin 0 -> 2206 bytes .../__pycache__/entrypoints.cpython-312.pyc | Bin 0 -> 4041 bytes .../__pycache__/filesystem.cpython-312.pyc | Bin 0 -> 7506 bytes .../__pycache__/filetypes.cpython-312.pyc | Bin 0 -> 1212 bytes .../utils/__pycache__/glibc.cpython-312.pyc | Bin 0 -> 2390 bytes .../utils/__pycache__/hashes.cpython-312.pyc | Bin 0 -> 7602 bytes .../utils/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13605 bytes .../utils/__pycache__/misc.cpython-312.pyc | Bin 0 -> 34169 bytes .../utils/__pycache__/models.cpython-312.pyc | Bin 0 -> 2760 bytes .../__pycache__/packaging.cpython-312.pyc | Bin 0 -> 2631 bytes .../setuptools_build.cpython-312.pyc | Bin 0 -> 4598 bytes .../__pycache__/subprocess.cpython-312.pyc | Bin 0 -> 8766 bytes .../__pycache__/temp_dir.cpython-312.pyc | Bin 0 -> 12110 bytes .../__pycache__/unpacking.cpython-312.pyc | Bin 0 -> 11156 bytes .../utils/__pycache__/urls.cpython-312.pyc | Bin 0 -> 2453 bytes .../__pycache__/virtualenv.cpython-312.pyc | Bin 0 -> 4528 bytes .../utils/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5974 bytes .../pip/_internal/utils/_jaraco_text.py | 109 + .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 63 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 120 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/egg_link.py | 80 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 84 + .../pip/_internal/utils/filesystem.py | 153 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 88 + .../pip/_internal/utils/hashes.py | 151 + .../pip/_internal/utils/logging.py | 348 + .../site-packages/pip/_internal/utils/misc.py | 783 ++ .../pip/_internal/utils/models.py | 39 + .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/setuptools_build.py | 146 + .../pip/_internal/utils/subprocess.py | 260 + .../pip/_internal/utils/temp_dir.py | 296 + .../pip/_internal/utils/unpacking.py | 257 + .../site-packages/pip/_internal/utils/urls.py | 62 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 134 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 582 bytes .../vcs/__pycache__/bazaar.cpython-312.pyc | Bin 0 -> 5074 bytes .../vcs/__pycache__/git.cpython-312.pyc | Bin 0 -> 19043 bytes .../vcs/__pycache__/mercurial.cpython-312.pyc | Bin 0 -> 7663 bytes .../__pycache__/subversion.cpython-312.pyc | Bin 0 -> 12535 bytes .../versioncontrol.cpython-312.pyc | Bin 0 -> 29061 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 112 + .../site-packages/pip/_internal/vcs/git.py | 526 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 705 ++ .../pip/_internal/wheel_builder.py | 354 + .../site-packages/pip/_vendor/__init__.py | 121 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4744 bytes .../_vendor/__pycache__/six.cpython-312.pyc | Bin 0 -> 41321 bytes .../typing_extensions.cpython-312.pyc | Bin 0 -> 122101 bytes .../pip/_vendor/cachecontrol/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 954 bytes .../__pycache__/_cmd.cpython-312.pyc | Bin 0 -> 2698 bytes .../__pycache__/adapter.cpython-312.pyc | Bin 0 -> 6516 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 3861 bytes .../__pycache__/controller.cpython-312.pyc | Bin 0 -> 16219 bytes .../__pycache__/filewrapper.cpython-312.pyc | Bin 0 -> 4399 bytes .../__pycache__/heuristics.cpython-312.pyc | Bin 0 -> 6746 bytes .../__pycache__/serialize.cpython-312.pyc | Bin 0 -> 6457 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 1726 bytes .../pip/_vendor/cachecontrol/_cmd.py | 70 + .../pip/_vendor/cachecontrol/adapter.py | 161 + .../pip/_vendor/cachecontrol/cache.py | 74 + .../_vendor/cachecontrol/caches/__init__.py | 8 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 487 bytes .../__pycache__/file_cache.cpython-312.pyc | Bin 0 -> 7762 bytes .../__pycache__/redis_cache.cpython-312.pyc | Bin 0 -> 2790 bytes .../_vendor/cachecontrol/caches/file_cache.py | 181 + .../cachecontrol/caches/redis_cache.py | 48 + .../pip/_vendor/cachecontrol/controller.py | 494 + .../pip/_vendor/cachecontrol/filewrapper.py | 119 + .../pip/_vendor/cachecontrol/heuristics.py | 154 + .../pip/_vendor/cachecontrol/serialize.py | 206 + .../pip/_vendor/cachecontrol/wrapper.py | 43 + .../pip/_vendor/certifi/__init__.py | 4 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 370 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 697 bytes .../certifi/__pycache__/core.cpython-312.pyc | Bin 0 -> 3379 bytes .../pip/_vendor/certifi/cacert.pem | 4635 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 119 + .../pip/_vendor/chardet/__init__.py | 115 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4620 bytes .../__pycache__/big5freq.cpython-312.pyc | Bin 0 -> 27251 bytes .../__pycache__/big5prober.cpython-312.pyc | Bin 0 -> 1439 bytes .../chardistribution.cpython-312.pyc | Bin 0 -> 9690 bytes .../charsetgroupprober.cpython-312.pyc | Bin 0 -> 4174 bytes .../__pycache__/charsetprober.cpython-312.pyc | Bin 0 -> 5070 bytes .../codingstatemachine.cpython-312.pyc | Bin 0 -> 3930 bytes .../codingstatemachinedict.cpython-312.pyc | Bin 0 -> 841 bytes .../__pycache__/cp949prober.cpython-312.pyc | Bin 0 -> 1448 bytes .../chardet/__pycache__/enums.cpython-312.pyc | Bin 0 -> 3048 bytes .../__pycache__/escprober.cpython-312.pyc | Bin 0 -> 4618 bytes .../chardet/__pycache__/escsm.cpython-312.pyc | Bin 0 -> 15362 bytes .../__pycache__/eucjpprober.cpython-312.pyc | Bin 0 -> 4435 bytes .../__pycache__/euckrfreq.cpython-312.pyc | Bin 0 -> 12134 bytes .../__pycache__/euckrprober.cpython-312.pyc | Bin 0 -> 1442 bytes .../__pycache__/euctwfreq.cpython-312.pyc | Bin 0 -> 27256 bytes .../__pycache__/euctwprober.cpython-312.pyc | Bin 0 -> 1442 bytes .../__pycache__/gb2312freq.cpython-312.pyc | Bin 0 -> 19178 bytes .../__pycache__/gb2312prober.cpython-312.pyc | Bin 0 -> 1455 bytes .../__pycache__/hebrewprober.cpython-312.pyc | Bin 0 -> 5874 bytes .../__pycache__/jisfreq.cpython-312.pyc | Bin 0 -> 22207 bytes .../__pycache__/johabfreq.cpython-312.pyc | Bin 0 -> 83055 bytes .../__pycache__/johabprober.cpython-312.pyc | Bin 0 -> 1446 bytes .../__pycache__/jpcntx.cpython-312.pyc | Bin 0 -> 39601 bytes .../langbulgarianmodel.cpython-312.pyc | Bin 0 -> 83174 bytes .../langgreekmodel.cpython-312.pyc | Bin 0 -> 77040 bytes .../langhebrewmodel.cpython-312.pyc | Bin 0 -> 77551 bytes .../langhungarianmodel.cpython-312.pyc | Bin 0 -> 83128 bytes .../langrussianmodel.cpython-312.pyc | Bin 0 -> 105303 bytes .../__pycache__/langthaimodel.cpython-312.pyc | Bin 0 -> 77729 bytes .../langturkishmodel.cpython-312.pyc | Bin 0 -> 77568 bytes .../__pycache__/latin1prober.cpython-312.pyc | Bin 0 -> 7054 bytes .../macromanprober.cpython-312.pyc | Bin 0 -> 7234 bytes .../mbcharsetprober.cpython-312.pyc | Bin 0 -> 3955 bytes .../mbcsgroupprober.cpython-312.pyc | Bin 0 -> 1640 bytes .../__pycache__/mbcssm.cpython-312.pyc | Bin 0 -> 38697 bytes .../__pycache__/resultdict.cpython-312.pyc | Bin 0 -> 684 bytes .../sbcharsetprober.cpython-312.pyc | Bin 0 -> 6439 bytes .../sbcsgroupprober.cpython-312.pyc | Bin 0 -> 2409 bytes .../__pycache__/sjisprober.cpython-312.pyc | Bin 0 -> 4547 bytes .../universaldetector.cpython-312.pyc | Bin 0 -> 12321 bytes .../__pycache__/utf1632prober.cpython-312.pyc | Bin 0 -> 10031 bytes .../__pycache__/utf8prober.cpython-312.pyc | Bin 0 -> 3227 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 540 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 261 + .../pip/_vendor/chardet/charsetgroupprober.py | 106 + .../pip/_vendor/chardet/charsetprober.py | 147 + .../pip/_vendor/chardet/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 247 bytes .../__pycache__/chardetect.cpython-312.pyc | Bin 0 -> 4064 bytes .../pip/_vendor/chardet/cli/chardetect.py | 112 + .../pip/_vendor/chardet/codingstatemachine.py | 90 + .../_vendor/chardet/codingstatemachinedict.py | 19 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 85 + .../pip/_vendor/chardet/escprober.py | 102 + .../pip/_vendor/chardet/escsm.py | 261 + .../pip/_vendor/chardet/eucjpprober.py | 102 + .../pip/_vendor/chardet/euckrfreq.py | 196 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 388 + .../pip/_vendor/chardet/euctwprober.py | 47 + .../pip/_vendor/chardet/gb2312freq.py | 284 + .../pip/_vendor/chardet/gb2312prober.py | 47 + .../pip/_vendor/chardet/hebrewprober.py | 316 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/johabfreq.py | 2382 +++++ .../pip/_vendor/chardet/johabprober.py | 47 + .../pip/_vendor/chardet/jpcntx.py | 238 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4397 +++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4380 +++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5725 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4380 +++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4380 +++++++++ .../pip/_vendor/chardet/latin1prober.py | 147 + .../pip/_vendor/chardet/macromanprober.py | 162 + .../pip/_vendor/chardet/mbcharsetprober.py | 95 + .../pip/_vendor/chardet/mbcsgroupprober.py | 57 + .../pip/_vendor/chardet/mbcssm.py | 661 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 252 bytes .../__pycache__/languages.cpython-312.pyc | Bin 0 -> 9807 bytes .../pip/_vendor/chardet/metadata/languages.py | 352 + .../pip/_vendor/chardet/resultdict.py | 16 + .../pip/_vendor/chardet/sbcharsetprober.py | 162 + .../pip/_vendor/chardet/sbcsgroupprober.py | 88 + .../pip/_vendor/chardet/sjisprober.py | 105 + .../pip/_vendor/chardet/universaldetector.py | 362 + .../pip/_vendor/chardet/utf1632prober.py | 225 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 7 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 544 bytes .../colorama/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 4002 bytes .../__pycache__/ansitowin32.cpython-312.pyc | Bin 0 -> 16473 bytes .../__pycache__/initialise.cpython-312.pyc | Bin 0 -> 3602 bytes .../__pycache__/win32.cpython-312.pyc | Bin 0 -> 8178 bytes .../__pycache__/winterm.cpython-312.pyc | Bin 0 -> 9140 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 277 + .../pip/_vendor/colorama/initialise.py | 121 + .../pip/_vendor/colorama/tests/__init__.py | 1 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 250 bytes .../__pycache__/ansi_test.cpython-312.pyc | Bin 0 -> 5519 bytes .../ansitowin32_test.cpython-312.pyc | Bin 0 -> 18155 bytes .../initialise_test.cpython-312.pyc | Bin 0 -> 11800 bytes .../__pycache__/isatty_test.cpython-312.pyc | Bin 0 -> 4956 bytes .../tests/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2540 bytes .../__pycache__/winterm_test.cpython-312.pyc | Bin 0 -> 6664 bytes .../pip/_vendor/colorama/tests/ansi_test.py | 76 + .../colorama/tests/ansitowin32_test.py | 294 + .../_vendor/colorama/tests/initialise_test.py | 189 + .../pip/_vendor/colorama/tests/isatty_test.py | 57 + .../pip/_vendor/colorama/tests/utils.py | 49 + .../_vendor/colorama/tests/winterm_test.py | 131 + .../pip/_vendor/colorama/win32.py | 180 + .../pip/_vendor/colorama/winterm.py | 195 + .../pip/_vendor/distlib/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1321 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 45657 bytes .../__pycache__/database.cpython-312.pyc | Bin 0 -> 66079 bytes .../distlib/__pycache__/index.cpython-312.pyc | Bin 0 -> 24418 bytes .../__pycache__/locators.cpython-312.pyc | Bin 0 -> 60210 bytes .../__pycache__/manifest.cpython-312.pyc | Bin 0 -> 15177 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 7734 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 41851 bytes .../__pycache__/resources.cpython-312.pyc | Bin 0 -> 17377 bytes .../__pycache__/scripts.cpython-312.pyc | Bin 0 -> 19632 bytes .../distlib/__pycache__/util.cpython-312.pyc | Bin 0 -> 88308 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 30418 bytes .../distlib/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 51913 bytes .../pip/_vendor/distlib/compat.py | 1138 +++ .../pip/_vendor/distlib/database.py | 1359 +++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1303 +++ .../pip/_vendor/distlib/manifest.py | 384 + .../pip/_vendor/distlib/markers.py | 167 + .../pip/_vendor/distlib/metadata.py | 1068 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 452 + .../site-packages/pip/_vendor/distlib/util.py | 2025 ++++ .../pip/_vendor/distlib/version.py | 751 ++ .../pip/_vendor/distlib/wheel.py | 1099 +++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1012 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 344 bytes .../distro/__pycache__/distro.cpython-312.pyc | Bin 0 -> 53806 bytes .../pip/_vendor/distro/distro.py | 1399 +++ .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 933 bytes .../idna/__pycache__/codec.cpython-312.pyc | Bin 0 -> 4685 bytes .../idna/__pycache__/compat.cpython-312.pyc | Bin 0 -> 939 bytes .../idna/__pycache__/core.cpython-312.pyc | Bin 0 -> 16334 bytes .../idna/__pycache__/idnadata.cpython-312.pyc | Bin 0 -> 38434 bytes .../__pycache__/intranges.cpython-312.pyc | Bin 0 -> 2690 bytes .../__pycache__/package_data.cpython-312.pyc | Bin 0 -> 268 bytes .../__pycache__/uts46data.cpython-312.pyc | Bin 0 -> 158922 bytes .../site-packages/pip/_vendor/idna/codec.py | 112 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 400 + .../pip/_vendor/idna/idnadata.py | 2151 +++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8600 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 57 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1883 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2077 bytes .../msgpack/__pycache__/ext.cpython-312.pyc | Bin 0 -> 8720 bytes .../__pycache__/fallback.cpython-312.pyc | Bin 0 -> 43628 bytes .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1010 ++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-312.pyc | Bin 0 -> 682 bytes .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 518 bytes .../__pycache__/_manylinux.cpython-312.pyc | Bin 0 -> 12128 bytes .../__pycache__/_musllinux.cpython-312.pyc | Bin 0 -> 6962 bytes .../__pycache__/_structures.cpython-312.pyc | Bin 0 -> 3293 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 14110 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 6998 bytes .../__pycache__/specifiers.cpython-312.pyc | Bin 0 -> 31299 bytes .../__pycache__/tags.cpython-312.pyc | Bin 0 -> 19008 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 5920 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 19991 bytes .../pip/_vendor/packaging/_manylinux.py | 301 + .../pip/_vendor/packaging/_musllinux.py | 136 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/markers.py | 304 + .../pip/_vendor/packaging/requirements.py | 146 + .../pip/_vendor/packaging/specifiers.py | 802 ++ .../pip/_vendor/packaging/tags.py | 487 + .../pip/_vendor/packaging/utils.py | 136 + .../pip/_vendor/packaging/version.py | 504 + .../pip/_vendor/pkg_resources/__init__.py | 3361 +++++++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 146526 bytes .../pip/_vendor/platformdirs/__init__.py | 566 ++ .../pip/_vendor/platformdirs/__main__.py | 53 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 18081 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1998 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 9496 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 9724 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 5689 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 12493 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 363 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 13051 bytes .../pip/_vendor/platformdirs/android.py | 210 + .../pip/_vendor/platformdirs/api.py | 223 + .../pip/_vendor/platformdirs/macos.py | 91 + .../pip/_vendor/platformdirs/unix.py | 223 + .../pip/_vendor/platformdirs/version.py | 4 + .../pip/_vendor/platformdirs/windows.py | 255 + .../pip/_vendor/pygments/__init__.py | 82 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3541 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 787 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26658 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2679 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3285 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4622 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38382 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1621 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 3449 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4134 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4809 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 11099 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6727 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8195 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 33041 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14034 bytes .../pip/_vendor/pygments/cmdline.py | 668 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 71 + .../pip/_vendor/pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 37989 bytes .../pip/_vendor/pygments/formatter.py | 124 + .../_vendor/pygments/formatters/__init__.py | 158 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6979 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4268 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4247 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7317 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 40625 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 27096 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6118 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 20007 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6937 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 2983 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 6179 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9119 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5882 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15210 bytes .../_vendor/pygments/formatters/_mapping.py | 23 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 170 + .../pip/_vendor/pygments/formatters/html.py | 989 ++ .../pip/_vendor/pygments/formatters/img.py | 645 ++ .../pip/_vendor/pygments/formatters/irc.py | 154 + .../pip/_vendor/pygments/formatters/latex.py | 521 + .../pip/_vendor/pygments/formatters/other.py | 161 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 146 + .../pip/_vendor/pygments/formatters/svg.py | 188 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 943 ++ .../pip/_vendor/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 14705 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 64457 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42692 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 559 ++ .../pip/_vendor/pygments/lexers/python.py | 1198 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 88 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 217 + .../pip/_vendor/pygments/style.py | 197 + .../pip/_vendor/pygments/styles/__init__.py | 103 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4501 bytes .../pip/_vendor/pygments/token.py | 213 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 330 + .../pip/_vendor/pyparsing/__init__.py | 322 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7964 bytes .../__pycache__/actions.cpython-312.pyc | Bin 0 -> 8448 bytes .../__pycache__/common.cpython-312.pyc | Bin 0 -> 13467 bytes .../__pycache__/core.cpython-312.pyc | Bin 0 -> 267761 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13047 bytes .../__pycache__/helpers.cpython-312.pyc | Bin 0 -> 48554 bytes .../__pycache__/results.cpython-312.pyc | Bin 0 -> 34163 bytes .../__pycache__/testing.cpython-312.pyc | Bin 0 -> 17241 bytes .../__pycache__/unicode.cpython-312.pyc | Bin 0 -> 13237 bytes .../__pycache__/util.cpython-312.pyc | Bin 0 -> 14957 bytes .../pip/_vendor/pyparsing/actions.py | 217 + .../pip/_vendor/pyparsing/common.py | 432 + .../pip/_vendor/pyparsing/core.py | 6115 ++++++++++++ .../pip/_vendor/pyparsing/diagram/__init__.py | 656 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 26866 bytes .../pip/_vendor/pyparsing/exceptions.py | 299 + .../pip/_vendor/pyparsing/helpers.py | 1100 +++ .../pip/_vendor/pyparsing/results.py | 796 ++ .../pip/_vendor/pyparsing/testing.py | 331 + .../pip/_vendor/pyparsing/unicode.py | 361 + .../pip/_vendor/pyparsing/util.py | 284 + .../pip/_vendor/pyproject_hooks/__init__.py | 23 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 666 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 427 bytes .../__pycache__/_impl.cpython-312.pyc | Bin 0 -> 14778 bytes .../pip/_vendor/pyproject_hooks/_compat.py | 8 + .../pip/_vendor/pyproject_hooks/_impl.py | 330 + .../pyproject_hooks/_in_process/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1133 bytes .../__pycache__/_in_process.cpython-312.pyc | Bin 0 -> 14450 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 182 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5506 bytes .../__pycache__/__version__.cpython-312.pyc | Bin 0 -> 637 bytes .../_internal_utils.cpython-312.pyc | Bin 0 -> 2077 bytes .../__pycache__/adapters.cpython-312.pyc | Bin 0 -> 21333 bytes .../requests/__pycache__/api.cpython-312.pyc | Bin 0 -> 7257 bytes .../requests/__pycache__/auth.cpython-312.pyc | Bin 0 -> 13976 bytes .../__pycache__/certs.cpython-312.pyc | Bin 0 -> 975 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 1560 bytes .../__pycache__/cookies.cpython-312.pyc | Bin 0 -> 25299 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 7100 bytes .../requests/__pycache__/help.cpython-312.pyc | Bin 0 -> 4365 bytes .../__pycache__/hooks.cpython-312.pyc | Bin 0 -> 1105 bytes .../__pycache__/models.cpython-312.pyc | Bin 0 -> 35501 bytes .../__pycache__/packages.cpython-312.pyc | Bin 0 -> 825 bytes .../__pycache__/sessions.cpython-312.pyc | Bin 0 -> 27810 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 6012 bytes .../__pycache__/structures.cpython-312.pyc | Bin 0 -> 5670 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 36322 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 50 + .../pip/_vendor/requests/adapters.py | 538 ++ .../site-packages/pip/_vendor/requests/api.py | 157 + .../pip/_vendor/requests/auth.py | 315 + .../pip/_vendor/requests/certs.py | 24 + .../pip/_vendor/requests/compat.py | 67 + .../pip/_vendor/requests/cookies.py | 561 ++ .../pip/_vendor/requests/exceptions.py | 141 + .../pip/_vendor/requests/help.py | 131 + .../pip/_vendor/requests/hooks.py | 33 + .../pip/_vendor/requests/models.py | 1034 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 833 ++ .../pip/_vendor/requests/status_codes.py | 128 + .../pip/_vendor/requests/structures.py | 99 + .../pip/_vendor/requests/utils.py | 1094 +++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 687 bytes .../__pycache__/providers.cpython-312.pyc | Bin 0 -> 6904 bytes .../__pycache__/reporters.cpython-312.pyc | Bin 0 -> 2707 bytes .../__pycache__/resolvers.cpython-312.pyc | Bin 0 -> 25950 bytes .../__pycache__/structs.cpython-312.pyc | Bin 0 -> 10559 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 253 bytes .../collections_abc.cpython-312.pyc | Bin 0 -> 473 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 547 ++ .../pip/_vendor/resolvelib/structs.py | 170 + .../pip/_vendor/rich/__init__.py | 177 + .../pip/_vendor/rich/__main__.py | 274 + .../rich/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7068 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 10357 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7874 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 206029 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1782 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2374 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 590 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 908 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12130 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4200 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1938 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3673 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5213 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 779 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6632 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13232 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 1018 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 918 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 29029 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2543 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3626 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 2413 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1661 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12375 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9159 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4325 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11911 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5671 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26623 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1754 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8640 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 113846 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2311 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9279 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10982 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10426 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1540 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4262 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1898 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3630 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3135 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9951 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6088 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5262 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20273 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 19196 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4947 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13607 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9351 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6429 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 7187 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1873 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5367 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12150 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40109 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 75131 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10442 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 14834 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1845 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 620 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6679 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6621 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3883 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2537 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28214 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 6117 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6121 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33567 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2192 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 39665 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43637 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3401 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 59016 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6393 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 367 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 31601 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11492 bytes .../pip/_vendor/rich/_cell_widths.py | 451 + .../pip/_vendor/rich/_emoji_codes.py | 3610 +++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_export_format.py | 76 + .../pip/_vendor/rich/_extension.py | 10 + .../site-packages/pip/_vendor/rich/_fileno.py | 24 + .../pip/_vendor/rich/_inspect.py | 270 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_null_file.py | 69 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 160 + .../pip/_vendor/rich/_spinners.py | 482 + .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_win32_console.py | 662 ++ .../pip/_vendor/rich/_windows.py | 72 + .../pip/_vendor/rich/_windows_renderer.py | 56 + .../site-packages/pip/_vendor/rich/_wrap.py | 56 + .../site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 311 + .../site-packages/pip/_vendor/rich/ansi.py | 240 + .../site-packages/pip/_vendor/rich/bar.py | 94 + .../site-packages/pip/_vendor/rich/box.py | 517 + .../site-packages/pip/_vendor/rich/cells.py | 154 + .../site-packages/pip/_vendor/rich/color.py | 622 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2633 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 225 + .../pip/_vendor/rich/default_styles.py | 190 + .../pip/_vendor/rich/diagnose.py | 37 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 57 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 232 + .../site-packages/pip/_vendor/rich/json.py | 140 + .../site-packages/pip/_vendor/rich/jupyter.py | 101 + .../site-packages/pip/_vendor/rich/layout.py | 443 + .../site-packages/pip/_vendor/rich/live.py | 375 + .../pip/_vendor/rich/live_render.py | 113 + .../site-packages/pip/_vendor/rich/logging.py | 289 + .../site-packages/pip/_vendor/rich/markup.py | 246 + .../site-packages/pip/_vendor/rich/measure.py | 151 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 308 + .../site-packages/pip/_vendor/rich/pretty.py | 994 ++ .../pip/_vendor/rich/progress.py | 1702 ++++ .../pip/_vendor/rich/progress_bar.py | 224 + .../site-packages/pip/_vendor/rich/prompt.py | 376 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 149 + .../site-packages/pip/_vendor/rich/rule.py | 130 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 739 ++ .../site-packages/pip/_vendor/rich/spinner.py | 137 + .../site-packages/pip/_vendor/rich/status.py | 132 + .../site-packages/pip/_vendor/rich/style.py | 796 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 948 ++ .../site-packages/pip/_vendor/rich/table.py | 1002 ++ .../pip/_vendor/rich/terminal_theme.py | 153 + .../site-packages/pip/_vendor/rich/text.py | 1307 +++ .../site-packages/pip/_vendor/rich/theme.py | 115 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 756 ++ .../site-packages/pip/_vendor/rich/tree.py | 251 + .../site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 608 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 27139 bytes .../__pycache__/_asyncio.cpython-312.pyc | Bin 0 -> 4859 bytes .../__pycache__/_utils.cpython-312.pyc | Bin 0 -> 2368 bytes .../__pycache__/after.cpython-312.pyc | Bin 0 -> 1677 bytes .../__pycache__/before.cpython-312.pyc | Bin 0 -> 1517 bytes .../__pycache__/before_sleep.cpython-312.pyc | Bin 0 -> 2355 bytes .../tenacity/__pycache__/nap.cpython-312.pyc | Bin 0 -> 1465 bytes .../__pycache__/retry.cpython-312.pyc | Bin 0 -> 14334 bytes .../tenacity/__pycache__/stop.cpython-312.pyc | Bin 0 -> 5621 bytes .../__pycache__/tornadoweb.cpython-312.pyc | Bin 0 -> 2639 bytes .../tenacity/__pycache__/wait.cpython-312.pyc | Bin 0 -> 12466 bytes .../pip/_vendor/tenacity/_asyncio.py | 94 + .../pip/_vendor/tenacity/_utils.py | 76 + .../pip/_vendor/tenacity/after.py | 51 + .../pip/_vendor/tenacity/before.py | 46 + .../pip/_vendor/tenacity/before_sleep.py | 71 + .../site-packages/pip/_vendor/tenacity/nap.py | 43 + .../pip/_vendor/tenacity/retry.py | 272 + .../pip/_vendor/tenacity/stop.py | 103 + .../pip/_vendor/tenacity/tornadoweb.py | 59 + .../pip/_vendor/tenacity/wait.py | 228 + .../pip/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 437 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 26980 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 3961 bytes .../tomli/__pycache__/_types.cpython-312.pyc | Bin 0 -> 419 bytes .../pip/_vendor/tomli/_parser.py | 691 ++ .../site-packages/pip/_vendor/tomli/_re.py | 107 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../pip/_vendor/truststore/__init__.py | 13 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 671 bytes .../__pycache__/_api.cpython-312.pyc | Bin 0 -> 15850 bytes .../__pycache__/_macos.cpython-312.pyc | Bin 0 -> 16715 bytes .../__pycache__/_openssl.cpython-312.pyc | Bin 0 -> 2268 bytes .../_ssl_constants.cpython-312.pyc | Bin 0 -> 1152 bytes .../__pycache__/_windows.cpython-312.pyc | Bin 0 -> 15559 bytes .../pip/_vendor/truststore/_api.py | 302 + .../pip/_vendor/truststore/_macos.py | 501 + .../pip/_vendor/truststore/_openssl.py | 66 + .../pip/_vendor/truststore/_ssl_constants.py | 31 + .../pip/_vendor/truststore/_windows.py | 554 ++ .../pip/_vendor/typing_extensions.py | 3072 ++++++ .../pip/_vendor/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3458 bytes .../__pycache__/_collections.cpython-312.pyc | Bin 0 -> 15984 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 271 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 20460 bytes .../connectionpool.cpython-312.pyc | Bin 0 -> 36332 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13546 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 10466 bytes .../__pycache__/filepost.cpython-312.pyc | Bin 0 -> 4071 bytes .../__pycache__/poolmanager.cpython-312.pyc | Bin 0 -> 20683 bytes .../__pycache__/request.cpython-312.pyc | Bin 0 -> 7347 bytes .../__pycache__/response.cpython-312.pyc | Bin 0 -> 34021 bytes .../pip/_vendor/urllib3/_collections.py | 337 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1132 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 251 bytes .../_appengine_environ.cpython-312.pyc | Bin 0 -> 1901 bytes .../__pycache__/appengine.cpython-312.pyc | Bin 0 -> 11617 bytes .../__pycache__/ntlmpool.cpython-312.pyc | Bin 0 -> 5772 bytes .../__pycache__/pyopenssl.cpython-312.pyc | Bin 0 -> 24503 bytes .../securetransport.cpython-312.pyc | Bin 0 -> 35609 bytes .../contrib/__pycache__/socks.cpython-312.pyc | Bin 0 -> 7564 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 268 bytes .../__pycache__/bindings.cpython-312.pyc | Bin 0 -> 17480 bytes .../__pycache__/low_level.cpython-312.pyc | Bin 0 -> 14854 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 518 + .../urllib3/contrib/securetransport.py | 921 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 252 bytes .../packages/__pycache__/six.cpython-312.pyc | Bin 0 -> 41372 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 262 bytes .../__pycache__/makefile.cpython-312.pyc | Bin 0 -> 1878 bytes .../weakref_finalize.cpython-312.pyc | Bin 0 -> 7384 bytes .../urllib3/packages/backports/makefile.py | 51 + .../packages/backports/weakref_finalize.py | 155 + .../pip/_vendor/urllib3/packages/six.py | 1076 +++ .../pip/_vendor/urllib3/poolmanager.py | 553 ++ .../pip/_vendor/urllib3/request.py | 191 + .../pip/_vendor/urllib3/response.py | 879 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1199 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 4809 bytes .../util/__pycache__/proxy.cpython-312.pyc | Bin 0 -> 1605 bytes .../util/__pycache__/queue.cpython-312.pyc | Bin 0 -> 1405 bytes .../util/__pycache__/request.cpython-312.pyc | Bin 0 -> 4236 bytes .../util/__pycache__/response.cpython-312.pyc | Bin 0 -> 3042 bytes .../util/__pycache__/retry.cpython-312.pyc | Bin 0 -> 21771 bytes .../util/__pycache__/ssl_.cpython-312.pyc | Bin 0 -> 15156 bytes .../ssl_match_hostname.cpython-312.pyc | Bin 0 -> 5124 bytes .../__pycache__/ssltransport.cpython-312.pyc | Bin 0 -> 10825 bytes .../util/__pycache__/timeout.cpython-312.pyc | Bin 0 -> 11192 bytes .../util/__pycache__/url.cpython-312.pyc | Bin 0 -> 15848 bytes .../util/__pycache__/wait.cpython-312.pyc | Bin 0 -> 4456 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 137 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 622 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 159 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 271 + .../pip/_vendor/urllib3/util/url.py | 435 + .../pip/_vendor/urllib3/util/wait.py | 152 + .../site-packages/pip/_vendor/vendor.txt | 24 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 12054 bytes .../__pycache__/labels.cpython-312.pyc | Bin 0 -> 7185 bytes .../__pycache__/mklabels.cpython-312.pyc | Bin 0 -> 2752 bytes .../__pycache__/tests.cpython-312.pyc | Bin 0 -> 9304 bytes .../x_user_defined.cpython-312.pyc | Bin 0 -> 3348 bytes .../pip/_vendor/webencodings/labels.py | 231 + .../pip/_vendor/webencodings/mklabels.py | 59 + .../pip/_vendor/webencodings/tests.py | 153 + .../_vendor/webencodings/x_user_defined.py | 325 + .../lib/python3.12/site-packages/pip/py.typed | 4 + implement-shell-tools/.venv/lib64 | 1 + implement-shell-tools/.venv/pyvenv.cfg | 5 + implement-shell-tools/cat/cat.py | 30 + implement-shell-tools/ls/ls.py | 31 + implement-shell-tools/requirements.txt | 1 + implement-shell-tools/wc/wc.py | 60 + 2084 files changed, 384301 insertions(+) create mode 100644 implement-cowsay/.venv/bin/Activate.ps1 create mode 100644 implement-cowsay/.venv/bin/activate create mode 100644 implement-cowsay/.venv/bin/activate.csh create mode 100644 implement-cowsay/.venv/bin/activate.fish create mode 100755 implement-cowsay/.venv/bin/cowsay create mode 100755 implement-cowsay/.venv/bin/pip create mode 100755 implement-cowsay/.venv/bin/pip3 create mode 100755 implement-cowsay/.venv/bin/pip3.12 create mode 120000 implement-cowsay/.venv/bin/python create mode 120000 implement-cowsay/.venv/bin/python3 create mode 120000 implement-cowsay/.venv/bin/python3.12 create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/INSTALLER create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/LICENSE.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/METADATA create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/RECORD create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/REQUESTED create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/WHEEL create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/entry_points.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/top_level.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/characters.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/main.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/characters.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/main.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/solutions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/test_api.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/test_output.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/solutions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_api.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_output.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/build_env.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/main.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/auth.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/models.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/token.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/json.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/layout.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/live.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/logging.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/markup.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/measure.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/padding.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/pager.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/palette.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/panel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/progress.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/region.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/repr.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/rule.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/scope.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/screen.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/segment.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/status.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/style.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/styled.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/table.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/text.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/theme.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/themes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/tree.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/six.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/vendor.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/py.typed create mode 120000 implement-cowsay/.venv/lib64 create mode 100644 implement-cowsay/.venv/pyvenv.cfg create mode 100644 implement-cowsay/cow_script.py create mode 100644 implement-cowsay/requirements.txt create mode 100644 implement-shell-tools/.venv/bin/Activate.ps1 create mode 100644 implement-shell-tools/.venv/bin/activate create mode 100644 implement-shell-tools/.venv/bin/activate.csh create mode 100644 implement-shell-tools/.venv/bin/activate.fish create mode 100755 implement-shell-tools/.venv/bin/cowsay create mode 100755 implement-shell-tools/.venv/bin/pip create mode 100755 implement-shell-tools/.venv/bin/pip3 create mode 100755 implement-shell-tools/.venv/bin/pip3.12 create mode 120000 implement-shell-tools/.venv/bin/python create mode 120000 implement-shell-tools/.venv/bin/python3 create mode 120000 implement-shell-tools/.venv/bin/python3.12 create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/INSTALLER create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/LICENSE.txt create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/METADATA create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/RECORD create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/REQUESTED create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/WHEEL create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/entry_points.txt create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/top_level.txt create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/__main__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/__pycache__/characters.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/__pycache__/main.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/characters.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/main.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/tests/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/solutions.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/test_api.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/test_output.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/tests/solutions.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/tests/test_api.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/cowsay/tests/test_output.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/__main__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/build_env.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cache.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/main.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/auth.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/models.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/token.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/json.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/layout.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/live.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/logging.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/markup.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/measure.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/padding.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/pager.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/palette.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/panel.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/progress.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/region.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/repr.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/rule.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/scope.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/screen.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/segment.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/status.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/style.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/styled.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/table.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/text.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/theme.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/themes.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/rich/tree.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/six.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/vendor.txt create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 implement-shell-tools/.venv/lib/python3.12/site-packages/pip/py.typed create mode 120000 implement-shell-tools/.venv/lib64 create mode 100644 implement-shell-tools/.venv/pyvenv.cfg create mode 100644 implement-shell-tools/cat/cat.py create mode 100644 implement-shell-tools/ls/ls.py create mode 100644 implement-shell-tools/requirements.txt create mode 100644 implement-shell-tools/wc/wc.py diff --git a/implement-cowsay/.venv/bin/Activate.ps1 b/implement-cowsay/.venv/bin/Activate.ps1 new file mode 100644 index 00000000..b49d77ba --- /dev/null +++ b/implement-cowsay/.venv/bin/Activate.ps1 @@ -0,0 +1,247 @@ +<# +.Synopsis +Activate a Python virtual environment for the current PowerShell session. + +.Description +Pushes the python executable for a virtual environment to the front of the +$Env:PATH environment variable and sets the prompt to signify that you are +in a Python virtual environment. Makes use of the command line switches as +well as the `pyvenv.cfg` file values present in the virtual environment. + +.Parameter VenvDir +Path to the directory that contains the virtual environment to activate. The +default value for this is the parent of the directory that the Activate.ps1 +script is located within. + +.Parameter Prompt +The prompt prefix to display when this virtual environment is activated. By +default, this prompt is the name of the virtual environment folder (VenvDir) +surrounded by parentheses and followed by a single space (ie. '(.venv) '). + +.Example +Activate.ps1 +Activates the Python virtual environment that contains the Activate.ps1 script. + +.Example +Activate.ps1 -Verbose +Activates the Python virtual environment that contains the Activate.ps1 script, +and shows extra information about the activation as it executes. + +.Example +Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv +Activates the Python virtual environment located in the specified location. + +.Example +Activate.ps1 -Prompt "MyPython" +Activates the Python virtual environment that contains the Activate.ps1 script, +and prefixes the current prompt with the specified string (surrounded in +parentheses) while the virtual environment is active. + +.Notes +On Windows, it may be required to enable this Activate.ps1 script by setting the +execution policy for the user. You can do this by issuing the following PowerShell +command: + +PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + +For more information on Execution Policies: +https://go.microsoft.com/fwlink/?LinkID=135170 + +#> +Param( + [Parameter(Mandatory = $false)] + [String] + $VenvDir, + [Parameter(Mandatory = $false)] + [String] + $Prompt +) + +<# Function declarations --------------------------------------------------- #> + +<# +.Synopsis +Remove all shell session elements added by the Activate script, including the +addition of the virtual environment's Python executable from the beginning of +the PATH variable. + +.Parameter NonDestructive +If present, do not remove this function from the global namespace for the +session. + +#> +function global:deactivate ([switch]$NonDestructive) { + # Revert to original values + + # The prior prompt: + if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { + Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt + Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT + } + + # The prior PYTHONHOME: + if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { + Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME + Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME + } + + # The prior PATH: + if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { + Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH + Remove-Item -Path Env:_OLD_VIRTUAL_PATH + } + + # Just remove the VIRTUAL_ENV altogether: + if (Test-Path -Path Env:VIRTUAL_ENV) { + Remove-Item -Path env:VIRTUAL_ENV + } + + # Just remove VIRTUAL_ENV_PROMPT altogether. + if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { + Remove-Item -Path env:VIRTUAL_ENV_PROMPT + } + + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: + if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { + Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force + } + + # Leave deactivate function in the global namespace if requested: + if (-not $NonDestructive) { + Remove-Item -Path function:deactivate + } +} + +<# +.Description +Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the +given folder, and returns them in a map. + +For each line in the pyvenv.cfg file, if that line can be parsed into exactly +two strings separated by `=` (with any amount of whitespace surrounding the =) +then it is considered a `key = value` line. The left hand string is the key, +the right hand is the value. + +If the value starts with a `'` or a `"` then the first and last character is +stripped from the value before being captured. + +.Parameter ConfigDir +Path to the directory that contains the `pyvenv.cfg` file. +#> +function Get-PyVenvConfig( + [String] + $ConfigDir +) { + Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" + + # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). + $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue + + # An empty map will be returned if no config file is found. + $pyvenvConfig = @{ } + + if ($pyvenvConfigPath) { + + Write-Verbose "File exists, parse `key = value` lines" + $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath + + $pyvenvConfigContent | ForEach-Object { + $keyval = $PSItem -split "\s*=\s*", 2 + if ($keyval[0] -and $keyval[1]) { + $val = $keyval[1] + + # Remove extraneous quotations around a string value. + if ("'""".Contains($val.Substring(0, 1))) { + $val = $val.Substring(1, $val.Length - 2) + } + + $pyvenvConfig[$keyval[0]] = $val + Write-Verbose "Adding Key: '$($keyval[0])'='$val'" + } + } + } + return $pyvenvConfig +} + + +<# Begin Activate script --------------------------------------------------- #> + +# Determine the containing directory of this script +$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition +$VenvExecDir = Get-Item -Path $VenvExecPath + +Write-Verbose "Activation script is located in path: '$VenvExecPath'" +Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" +Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" + +# Set values required in priority: CmdLine, ConfigFile, Default +# First, get the location of the virtual environment, it might not be +# VenvExecDir if specified on the command line. +if ($VenvDir) { + Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" +} +else { + Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." + $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") + Write-Verbose "VenvDir=$VenvDir" +} + +# Next, read the `pyvenv.cfg` file to determine any required value such +# as `prompt`. +$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir + +# Next, set the prompt from the command line, or the config file, or +# just use the name of the virtual environment folder. +if ($Prompt) { + Write-Verbose "Prompt specified as argument, using '$Prompt'" +} +else { + Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" + if ($pyvenvCfg -and $pyvenvCfg['prompt']) { + Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" + $Prompt = $pyvenvCfg['prompt']; + } + else { + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" + Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" + $Prompt = Split-Path -Path $venvDir -Leaf + } +} + +Write-Verbose "Prompt = '$Prompt'" +Write-Verbose "VenvDir='$VenvDir'" + +# Deactivate any currently active virtual environment, but leave the +# deactivate function in place. +deactivate -nondestructive + +# Now set the environment variable VIRTUAL_ENV, used by many tools to determine +# that there is an activated venv. +$env:VIRTUAL_ENV = $VenvDir + +if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { + + Write-Verbose "Setting prompt to '$Prompt'" + + # Set the prompt to include the env name + # Make sure _OLD_VIRTUAL_PROMPT is global + function global:_OLD_VIRTUAL_PROMPT { "" } + Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT + New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt + + function global:prompt { + Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " + _OLD_VIRTUAL_PROMPT + } + $env:VIRTUAL_ENV_PROMPT = $Prompt +} + +# Clear PYTHONHOME +if (Test-Path -Path Env:PYTHONHOME) { + Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME + Remove-Item -Path Env:PYTHONHOME +} + +# Add the venv to the PATH +Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH +$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/implement-cowsay/.venv/bin/activate b/implement-cowsay/.venv/bin/activate new file mode 100644 index 00000000..34ebefa3 --- /dev/null +++ b/implement-cowsay/.venv/bin/activate @@ -0,0 +1,70 @@ +# This file must be used with "source bin/activate" *from bash* +# You cannot run it directly + +deactivate () { + # reset old environment variables + if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then + PATH="${_OLD_VIRTUAL_PATH:-}" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then + PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # Call hash to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + hash -r 2> /dev/null + + if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then + PS1="${_OLD_VIRTUAL_PS1:-}" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + unset VIRTUAL_ENV_PROMPT + if [ ! "${1:-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +# on Windows, a path can contain colons and backslashes and has to be converted: +if [ "${OSTYPE:-}" = "cygwin" ] || [ "${OSTYPE:-}" = "msys" ] ; then + # transform D:\path\to\venv to /d/path/to/venv on MSYS + # and to /cygdrive/d/path/to/venv on Cygwin + export VIRTUAL_ENV=$(cygpath '/home/gabriel/Desktop/Software Development Course/Module-Tools/implement-cowsay/.venv') +else + # use the path as-is + export VIRTUAL_ENV='/home/gabriel/Desktop/Software Development Course/Module-Tools/implement-cowsay/.venv' +fi + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/"bin":$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + PS1='(.venv) '"${PS1:-}" + export PS1 + VIRTUAL_ENV_PROMPT='(.venv) ' + export VIRTUAL_ENV_PROMPT +fi + +# Call hash to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +hash -r 2> /dev/null diff --git a/implement-cowsay/.venv/bin/activate.csh b/implement-cowsay/.venv/bin/activate.csh new file mode 100644 index 00000000..8a96b621 --- /dev/null +++ b/implement-cowsay/.venv/bin/activate.csh @@ -0,0 +1,27 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. + +# Created by Davide Di Blasi . +# Ported to Python 3.3 venv by Andrew Svetlov + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV '/home/gabriel/Desktop/Software Development Course/Module-Tools/implement-cowsay/.venv' + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/"bin":$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + set prompt = '(.venv) '"$prompt" + setenv VIRTUAL_ENV_PROMPT '(.venv) ' +endif + +alias pydoc python -m pydoc + +rehash diff --git a/implement-cowsay/.venv/bin/activate.fish b/implement-cowsay/.venv/bin/activate.fish new file mode 100644 index 00000000..7ce5ace2 --- /dev/null +++ b/implement-cowsay/.venv/bin/activate.fish @@ -0,0 +1,69 @@ +# This file must be used with "source /bin/activate.fish" *from fish* +# (https://fishshell.com/). You cannot run it directly. + +function deactivate -d "Exit virtual environment and return to normal shell environment" + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + set -gx PATH $_OLD_VIRTUAL_PATH + set -e _OLD_VIRTUAL_PATH + end + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + set -e _OLD_FISH_PROMPT_OVERRIDE + # prevents error when using nested fish instances (Issue #93858) + if functions -q _old_fish_prompt + functions -e fish_prompt + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end + end + + set -e VIRTUAL_ENV + set -e VIRTUAL_ENV_PROMPT + if test "$argv[1]" != "nondestructive" + # Self-destruct! + functions -e deactivate + end +end + +# Unset irrelevant variables. +deactivate nondestructive + +set -gx VIRTUAL_ENV '/home/gabriel/Desktop/Software Development Course/Module-Tools/implement-cowsay/.venv' + +set -gx _OLD_VIRTUAL_PATH $PATH +set -gx PATH "$VIRTUAL_ENV/"bin $PATH + +# Unset PYTHONHOME if set. +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # fish uses a function instead of an env var to generate the prompt. + + # Save the current fish_prompt function as the function _old_fish_prompt. + functions -c fish_prompt _old_fish_prompt + + # With the original prompt function renamed, we can override with our own. + function fish_prompt + # Save the return status of the last command. + set -l old_status $status + + # Output the venv prompt; color taken from the blue of the Python logo. + printf "%s%s%s" (set_color 4B8BBE) '(.venv) ' (set_color normal) + + # Restore the return status of the previous command. + echo "exit $old_status" | . + # Output the original/"old" prompt. + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" + set -gx VIRTUAL_ENV_PROMPT '(.venv) ' +end diff --git a/implement-cowsay/.venv/bin/cowsay b/implement-cowsay/.venv/bin/cowsay new file mode 100755 index 00000000..8c3374ce --- /dev/null +++ b/implement-cowsay/.venv/bin/cowsay @@ -0,0 +1,10 @@ +#!/bin/sh +'''exec' "/home/gabriel/Desktop/Software Development Course/Module-Tools/implement-cowsay/.venv/bin/python3" "$0" "$@" +' ''' +# -*- coding: utf-8 -*- +import re +import sys +from cowsay.__main__ import cli +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(cli()) diff --git a/implement-cowsay/.venv/bin/pip b/implement-cowsay/.venv/bin/pip new file mode 100755 index 00000000..53ce033c --- /dev/null +++ b/implement-cowsay/.venv/bin/pip @@ -0,0 +1,10 @@ +#!/bin/sh +'''exec' "/home/gabriel/Desktop/Software Development Course/Module-Tools/implement-cowsay/.venv/bin/python3" "$0" "$@" +' ''' +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/implement-cowsay/.venv/bin/pip3 b/implement-cowsay/.venv/bin/pip3 new file mode 100755 index 00000000..53ce033c --- /dev/null +++ b/implement-cowsay/.venv/bin/pip3 @@ -0,0 +1,10 @@ +#!/bin/sh +'''exec' "/home/gabriel/Desktop/Software Development Course/Module-Tools/implement-cowsay/.venv/bin/python3" "$0" "$@" +' ''' +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/implement-cowsay/.venv/bin/pip3.12 b/implement-cowsay/.venv/bin/pip3.12 new file mode 100755 index 00000000..53ce033c --- /dev/null +++ b/implement-cowsay/.venv/bin/pip3.12 @@ -0,0 +1,10 @@ +#!/bin/sh +'''exec' "/home/gabriel/Desktop/Software Development Course/Module-Tools/implement-cowsay/.venv/bin/python3" "$0" "$@" +' ''' +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/implement-cowsay/.venv/bin/python b/implement-cowsay/.venv/bin/python new file mode 120000 index 00000000..b8a0adbb --- /dev/null +++ b/implement-cowsay/.venv/bin/python @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/implement-cowsay/.venv/bin/python3 b/implement-cowsay/.venv/bin/python3 new file mode 120000 index 00000000..ae65fdaa --- /dev/null +++ b/implement-cowsay/.venv/bin/python3 @@ -0,0 +1 @@ +/usr/bin/python3 \ No newline at end of file diff --git a/implement-cowsay/.venv/bin/python3.12 b/implement-cowsay/.venv/bin/python3.12 new file mode 120000 index 00000000..b8a0adbb --- /dev/null +++ b/implement-cowsay/.venv/bin/python3.12 @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/INSTALLER b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/LICENSE.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/LICENSE.txt new file mode 100644 index 00000000..f288702d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/LICENSE.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/METADATA b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/METADATA new file mode 100644 index 00000000..d8833101 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/METADATA @@ -0,0 +1,179 @@ +Metadata-Version: 2.1 +Name: cowsay +Version: 6.1 +Summary: The famous cowsay for GNU/Linux is now available for python +Home-page: https://github.com/VaasuDevanS/cowsay-python +Author: Vaasudevan Srinivasan +Author-email: vaasuceg.96@gmail.com +License: GNU-GPL +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Requires-Python: >=3.8 +Description-Content-Type: text/markdown +License-File: LICENSE.txt + + +[![cowsay](https://github.com/VaasuDevanS/cowsay-python/actions/workflows/cowsay.yaml/badge.svg?branch=main)](https://github.com/VaasuDevanS/cowsay-python/actions/workflows/cowsay.yaml) +[![codecov](https://codecov.io/gh/VaasuDevanS/cowsay-python/graph/badge.svg?token=GV4ntsCNtd)](https://codecov.io/gh/VaasuDevanS/cowsay-python) +[![Codacy Badge](https://app.codacy.com/project/badge/Grade/d5a358f5dd5c41d68db8c331d65fd0fd)](https://app.codacy.com/gh/VaasuDevanS/cowsay-python/dashboard) +![PyPI - Python Version](https://img.shields.io/pypi/pyversions/cowsay) +[![Github](https://img.shields.io/badge/github-cowsay--python-blue)](https://github.com/VaasuDevanS/cowsay-python) +
+![](https://img.shields.io/badge/Latest%20Release-Sep%2025,%202023-blue) +[![Downloads](https://static.pepy.tech/badge/cowsay)](https://pepy.tech/project/cowsay) +[![Downloads](https://static.pepy.tech/badge/cowsay/month)](https://pepy.tech/project/cowsay) +[![Downloads](https://static.pepy.tech/badge/cowsay/week)](https://pepy.tech/project/cowsay) + + +# Introduction + +A python API / Command-line tool for the famous linux `cowsay`.
+Take a look at [CHANGELOG.md](https://github.com/VaasuDevanS/cowsay-python/blob/main/CHANGELOG.md) for the changes. + + +# Brief History +`cowsay` for GNU/Linux was initially written in perl by Tony Monroe. More info +[here](https://en.wikipedia.org/wiki/Cowsay). + + +# Installation +```console +pip install cowsay +``` + + +# API Usage +```console +>>> import cowsay + +>>> cowsay.cow('Hello World') + ___________ +| Hello World | + =========== + \ + \ + ^__^ + (oo)\_______ + (__)\ )\/\ + ||----w | + || || + + +>>> print(cowsay.get_output_string('cow', 'Hello World')) + ___________ +| Hello World | + =========== + \ + \ + ^__^ + (oo)\_______ + (__)\ )\/\ + ||----w | + || || + + +>>> cowsay.cow('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris blandit rhoncus nibh. Mauris mi mauris, molestie vel metus sit amet, aliquam vulputate nibh.') + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consectetur adipiscin | +| g elit. Mauris blandit rhoncus nibh. Mauris mi ma | +| uris, molestie vel metus sit amet, aliquam vulput | +| ate nibh. | + \ / + ================================================= + \ + \ + ^__^ + (oo)\_______ + (__)\ )\/\ + ||----w | + || || + + +>>> my_fish = r''' +\ + \ + /`·.¸ + /¸...¸`:· + ¸.·´ ¸ `·.¸.·´) +: © ):´; ¸ { + `·.¸ `· ¸.·´\`·¸) + `\\´´\¸.·´ +''' + +>>> cowsay.draw('Sharks are my best friend', my_fish) + _________________________ +| Sharks are my best friend | + ========================= + \ + \ + /`·.¸ + /¸...¸`:· + ¸.·´ ¸ `·.¸.·´) + : © ):´; ¸ { + `·.¸ `· ¸.·´\`·¸) + `\\´´\¸.·´ +``` + + +# Command Line Usage +```console +$ cowsay -t "Hello World" + ___________ +| Hello World | + =========== + \ + \ + ^__^ + (oo)\_______ + (__)\ )\/\ + ||----w | + || || + + +$ cowsay -t "Hello World" -c "tux" + ___________ +| Hello World | + =========== + \ + \ + \ + .--. + |o_o | + |:_/ | + // \ \ + (| | ) + /'\_ _/`\ + \___)=(___/ +``` + + +# More Characters +```console +>>> cowsay.char_names +['beavis', 'cheese', 'cow', 'daemon', 'dragon', 'fox', 'ghostbusters', 'kitty', +'meow', 'miki', 'milk', 'octopus', 'pig', 'stegosaurus', 'stimpy', 'trex', +'turkey', 'turtle', 'tux'] + + +>>> cowsay.char_funcs +{'beavis': , +'cheese': , +... +'tux': } + + +>>> len(cowsay.chars) +19 +``` + +# Contributing + + + + +Guide: [CONTRIBUTING.md](https://github.com/VaasuDevanS/cowsay-python/blob/main/CONTRIBUTING.md) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/RECORD b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/RECORD new file mode 100644 index 00000000..6b08dd16 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/RECORD @@ -0,0 +1,25 @@ +../../../bin/cowsay,sha256=7d_IlZCOgYfHqCRmfxnI8sK_laQWcQVrsB7QRn5nllA,328 +cowsay-6.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +cowsay-6.1.dist-info/LICENSE.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149 +cowsay-6.1.dist-info/METADATA,sha256=ZGNBeztPwPUT1m6Jqx5BqQJcrq5bUunu8sLxSEtQyWA,5581 +cowsay-6.1.dist-info/RECORD,, +cowsay-6.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +cowsay-6.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92 +cowsay-6.1.dist-info/entry_points.txt,sha256=eA4lDJ_wo3_jLsgyh0peu2yWkpFbr4malOVJtMGVJiw,47 +cowsay-6.1.dist-info/top_level.txt,sha256=45zxJRiJFquDz8AIvNLxZWersc80tEFX0iKLKG868Ck,7 +cowsay/__init__.py,sha256=8Vp53KAFMgvd_w8Bh-jGzSPl2xryuQNrQcvhy1vYJhQ,450 +cowsay/__main__.py,sha256=swvEz9wm3O4NBe2vtGq7ddqeQMSKh4ZKX_g7KEIijsM,775 +cowsay/__pycache__/__init__.cpython-312.pyc,, +cowsay/__pycache__/__main__.cpython-312.pyc,, +cowsay/__pycache__/characters.cpython-312.pyc,, +cowsay/__pycache__/main.cpython-312.pyc,, +cowsay/characters.py,sha256=SgA3F9HhmXxW70Eo9U65LHKDHkTNpOPUnpOjKuDMkiI,12259 +cowsay/main.py,sha256=ey_m3cRx03H-h1mzj9VJuSlS571ezpv_guFt5QSiZy8,1949 +cowsay/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +cowsay/tests/__pycache__/__init__.cpython-312.pyc,, +cowsay/tests/__pycache__/solutions.cpython-312.pyc,, +cowsay/tests/__pycache__/test_api.cpython-312.pyc,, +cowsay/tests/__pycache__/test_output.cpython-312.pyc,, +cowsay/tests/solutions.py,sha256=TdLCxGUInzdiVXDGISKIb3Ieo4YvAeuIXgzzQ5EWk4M,38065 +cowsay/tests/test_api.py,sha256=fxd30i-M6J9BD56tMwVTnl5AJ1IDFImzkz5iIFoIAfQ,919 +cowsay/tests/test_output.py,sha256=gmag5R2mvQUBUSIqgM7spNVSRxwIUGo_iZT5SPuMUwM,1118 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/REQUESTED b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/REQUESTED new file mode 100644 index 00000000..e69de29b diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/WHEEL b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/WHEEL new file mode 100644 index 00000000..57e3d840 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.38.4) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/entry_points.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/entry_points.txt new file mode 100644 index 00000000..10b735aa --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/entry_points.txt @@ -0,0 +1,2 @@ +[console_scripts] +cowsay = cowsay.__main__:cli diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/top_level.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/top_level.txt new file mode 100644 index 00000000..c6b9ffd0 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/top_level.txt @@ -0,0 +1 @@ +cowsay diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__init__.py new file mode 100644 index 00000000..842f53e7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__init__.py @@ -0,0 +1,28 @@ +from .main import ( + + __version__, + + # Variables + char_names, + CHARS, + + # Methods + get_output_string, + draw, + + CowsayError, + +) + +# This is where we create functions for each character dynamically + +char_funcs = {} + +for ch_name, ch_lines in CHARS.items(): + + def func(text: str, char_lines=ch_lines): + draw(str(text), char_lines) + + func.__name__ = ch_name + globals()[ch_name] = func + char_funcs[ch_name] = func diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__main__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__main__.py new file mode 100644 index 00000000..5280a248 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__main__.py @@ -0,0 +1,33 @@ +import argparse + +from . import CowsayError, char_names, char_funcs, __version__ + + +def cli(): + + parser = argparse.ArgumentParser( + prog='Cowsay', + description='CLI tool to display text in ASCII art. ' + f'Available Characters: {char_names}' + ) + + parser.add_argument('-c', '--character', + default='cow') + + parser.add_argument('-t', '--text', + required=True) + + parser.add_argument('-v', '--version', + action='version', version=__version__) + + args = parser.parse_args() + + if args.character not in char_names: + raise CowsayError(f'Available Characters: {char_names}') + + char_funcs[args.character](args.text) + + +if __name__ == "__main__": + + cli() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70913bf3928f436ada1c09e4f2308f51676bd8cc GIT binary patch literal 809 zcmYLH%WD%s82@G;c{ivUYc8nVBR8dWcw| zU=KaniU-fq|H7-M7KAc*D0uSLnnR%{XSRucFyH*>b4#lwh@}P8K&$M0w3(O23UVRHVp9p-XFj!yqp1ep#j)g zJBM?1RMT+2uGRES(=OmFE;u7YFIvgUmpYLfVkXSRhxebXic1a59n#`)i#v={KWYf0M%|9cFOm*(yALQOR2Uq; z;hrq-ADI&A^7Jc`?E+Wn65>jl&<5-eq#I~|;ESLOWwcV(Xj<9`U8a;ctMEl}fgfSU zly#|e{@!Ym5L*p*jrusSs+g^F5?iaJ&O0u}r7CXYfW#q=cxjQeD8tq=skH(;_mq%; zS$-G?SZU|Hq#3Ky#!=e}{531?@+OJqD|hZ%%;$J6cD;4CftfY1bR0kOx#Lvgt}yDY z$fHGB(}X-s?Xd?xGllKdoy#Ad@8y1EX8KYFE9FsPgsvY^H3O>t2~~5VDaBO7G$Yxd zQx#OMK_(BGNPEp>FCrsBG6R}d_A05!IEhX!Fx?2qnj5gMKu48YeTwtULYOptk6x8e zHFEY!vJ)L4bfy)Nb_SB2%tCRjmph)E-5dWh^=az!^dCs0n+L{tZ)xk<@yzX0K<4bu rd|zEBDHy-rt8OkIO-{dEdiQ9nabR3Ix^|=Yc&l@0Oq`BN&!mFCXu``3 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__main__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bef63611694c1686edf457caefe7dc2526845d8e GIT binary patch literal 1380 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/characters.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/characters.py new file mode 100644 index 00000000..3db9badb --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/characters.py @@ -0,0 +1,404 @@ +CHARS = { + + "beavis": r''' + \ + \ + \ + _------~~-, + ,' , + / \\ + / : + | ' + | | + | | + | _-- | + _| =-. .-. || + o|/o/ _. | + / ~ \\ | + (____\@) ___~ | + |_===~~~.` | + _______.--~ | + \\________ | + \\ | + __/-___-- -__ + / _ \\ +''', + + "cheese": r''' +\ + \ + \ + \ + / \_/ | + | || + | || + | ###\ /### | | + | 0 \/ 0 | | + /| | | + / | < |\ \ +| /| | | | +| | \_______/ | | | +| | | / / +/|| /||| + ----------------| + | | | | + *** *** + /___\ /___\ +''', + + "daemon": r''' + \ + \ + \ + \ + /- _ `-/ ' + (/\/ \ \ /\ + / / | ` \ + O O ) / | + `-^--'`< ' + (_.) _ ) / + `.___/` / + `-----' / +<----. __ / __ \ +<----|====O)))==) \) /==== +<----' `--' `.__,' \ + | | + \ / + ______( (_ / \______ + ,' ,-----' | \ + `--{__________) \/ +''', + + "cow": r''' +\ + \ + ^__^ + (oo)\_______ + (__)\ )\/\ + ||----w | + || || +''', + + "dragon": r''' + \ + \ + \ + \ + / \\ //\\ + |\\___/| / \\// \\\\ + /0 0 \\__ / // | \\ \\ + / / \\/_/ // | \\ \\ + \@_^_\@'/ \\/_ // | \\ \\ + //_^_/ \\/_ // | \\ \\ + ( //) | \\/// | \\ \\ + ( / /) _|_ / ) // | \\ _\\ + ( // /) '/,_ _ _/ ( ; -. | _ _\\.-~ .-~~~^-. + (( / / )) ,-{ _ `-.|.-~-. .~ `. + (( // / )) '/\\ / ~-. _ .-~ .-~^-. \\ + (( /// )) `. { } / \\ \\ + (( / )) .----~-.\\ \\-' .~ \\ `. \\^-. + ///.----..> \\ _ -~ `. ^-` ^-_ + ///-._ _ _ _ _ _ _}^ - - - - ~ ~-- ,.-~ + /.-~ +''', + + "ghostbusters": r''' + \ + \ + \ + \ + __---__ + _- /--______ + __--( / \ )XXXXXXXXXXX\v. + .-XXX( O O )XXXXXXXXXXXXXXX- + /XXX( U ) XXXXXXX\ + /XXXXX( )--_ XXXXXXXXXXX\ + /XXXXX/ ( O ) XXXXXX \XXXXX\ + XXXXX/ / XXXXXX \__ \XXXXX + XXXXXX__/ XXXXXX \__----> + ---___ XXX__/ XXXXXX \__ / + \- --__/ ___/\ XXXXXX / ___--/= + \-\ ___/ XXXXXX '--- XXXXXX + \-\/XXX\ XXXXXX /XXXXX + \XXXXXXXXX \ /XXXXX/ + \XXXXXX > _/XXXXX/ + \XXXXX--__/ __-- XXXX/ + -XXXXXXXX--------------- XXXXXX- + \XXXXXXXXXXXXXXXXXXXXXXXXXX/ + ""VXXXXXXXXXXXXXXXXXXV"" +''', + + + "kitty": r''' + \ + \ + \ + \ + + ("`-' '-/") .___..--' ' "`-._ + ` *_ * ) `-. ( ) .`-.__. `) + (_Y_.) ' ._ ) `._` ; `` -. .-' + _.. `--'_..-_/ /--' _ .' ,4 + ( i l ),-'' ( l i),' ( ( ! .-' +''', + + + "meow": r""" +\ + \ + \ + \ + _ ___.--'''`--''//-,-_--_. + \\`"' ` || \\\\ \\ \\\\/ / // / ,-\\\\`,_ + /'` \\ \\ || Y | \\|/ / // / - |__ `-, + /\@"\\ ` \\ `\\ | | ||/ // | \\/ \\ `-._`-,_., + / _.-. `.-\\,___/\\ _/|_/_\\_\\/|_/ | `-._._) + `-'``/ / | // \\__/\\__ / \\__/ \\ + `-' /-\\/ | -| \\__ \\ |-' | + __/\\ / _/ \\/ __,-' ) ,' _|' + (((__/(((_.' ((___..-'((__,' +""", + + "milk": r''' +\ + \ + \ + \ + ____________ + |__________| + / /\ + / / \ + /___________/___/| + | | | + | ==\ /== | | + | O O | \ \ | + | < | \ \| + /| | \ \ + / | \_____/ | / / + / /| | / /| +/||\| | /||\/ + -------------| + | | | | + <__/ \__> +''', + + "stegosaurus": r''' + \ + \ + \ + \ + . . + / `. .' \ + .---. < > < > .---. + | \ \ - ~ ~ - / / | + _____ ~-..-~ ~-..-~ + | | \~~~\.' `./~~~/ + --------- \__/ \__/ + .' O \ / / \ " + (_____, `._.' | } \/~~~/ + `----. / } | / \__/ + `-. | / | / `. ,~~| + ~-.__| /_ - ~ ^| /- _ `..-' f: f: + | / | / ~-. `-. _|| _||_ + |_____| |_____| ~ - . _ _ _ _ __> + +''', + + "stimpy": r''' + \ + \ + \ + \ + . _ . + |\_|/__/| + / / \/ \ \ + /__|O||O|__ \ + |/_ \_/\_/ _\ | + | | (____) | || + \/\___/\__/ // + (_/ || + | || + | ||\ + \ //_/ + \______// + __ || __|| + (____(____) +''', + + "turkey": r''' + \ + \ + \ + \ + ,+*^^*+___+++_ + ,*^^^^ ) + _+* ^**+_ + +^ _ _++*+_+++_, ) + _+^^*+_ ( ,+*^ ^ \\+_ ) + { ) ( ,( ,_+--+--, ^) ^\\ + { (\@) } f ,( ,+-^ __*_*_ ^^\\_ ^\\ ) + {:;-/ (_+*-+^^^^^+*+*<_ _++_)_ ) ) / + ( / ( ( ,___ ^*+_+* ) < < \\ + U _/ ) *--< ) ^\\-----++__) ) ) ) + ( ) _(^)^^)) ) )\\^^^^^))^*+/ / / + ( / (_))_^)) ) ) ))^^^^^))^^^)__/ +^^ + ( ,/ (^))^)) ) ) ))^^^^^^^))^^) _) + *+__+* (_))^) ) ) ))^^^^^^))^^^^^)____*^ + \\ \\_)^)_)) ))^^^^^^^^^^))^^^^) + (_ ^\\__^^^^^^^^^^^^))^^^^^^^) + ^\\___ ^\\__^^^^^^))^^^^^^^^)\\\\ + ^^^^^\\uuu/^^\\uuu/^^^^\\^\\^\\^\\^\\^\\^\\^\\ + ___) >____) >___ ^\\_\\_\\_\\_\\_\\_\\) + ^^^//\\\\_^^//\\\\_^ ^(\\_\\_\\_\\) + ^^^ ^^ ^^^ ^ +''', + + "turtle": r''' + \ + \ + \ + \ + ___-------___ + _-~~ ~~-_ + _-~ /~-_ + /^\__/^\ /~ \ / \ + /| O|| O| / \_______________/ \ + | |___||__| / / \ \ + | \ / / \ \ + | (_______) /______/ \_________ \ + | / / \ / \ + \ \^\\ \ / \ / + \ || \______________/ _-_ //\__// + \ ||------_-~~-_ ------------- \ --/~ ~\ || __/ + ~-----||====/~ |==================| |/~~~~~ + (_(__/ ./ / \_\ \. + (_(___/ \_____)_) +''', + + "tux": r''' + \ + \ + \ + .--. + |o_o | + |:_/ | + // \ \ + (| | ) + /'\_ _/`\ + \___)=(___/ +''', + + "pig": r''' +\ + \ + \ + \ + ,. + (_|,. + ,' /, )_______ _ + __j o``-' `.'-)' + (") \' + `-j | + `-._( / + |_\ |--^. / + /_]'|_| /_)_/ + /_]' /_]' +''', + + "trex": r''' + \ + \ + \ + \ + .-=-==--==--. + ..-==" ,'o`) `. + ,' `"' \ + : ( `.__...._ + | ) / `-=-. + : ,vv.-._ / / `---==-._ + \/\/\/VV ^ d88`;' / `. + `` ^/d88P!' / , `._ + ^/ !' ,. , / "-,,__,,--'""""-. + ^/ !' ,' \ . .( ( _ ) ) ) ) ))_,-.\ + ^(__ ,!',"' ;:+.:%:a. \:.. . ,' ) ) ) ) ,"' ' + ',,,'',' /o:::":%:%a. \:.:.: . ) ) _,' + """' ;':::'' `+%%%a._ \%:%| ;.). _,-"" + ,-='_.-' ``:%::) )%:| /:._," + (/(/" ," ,'_,'%%%: (_,' + ( (//(`.___; \ + \ \ ` ` + `. `. `. : + \. . .\ : . . . : + \. . .: `.. . .: + `..:.:\ \:...\ + ;:.:.; ::...: + ):%:: :::::; + __,::%:( ::::: + ,;:%%%%%%%: ;:%:: + ;,--""-.`\ ,=--':%:%:\ + /" "| /-".:%%%%%%%\ + ;,-"'`)%%) + /" "| +''', + + "miki": r''' +\ + \ &************************& + \ &******************************& + \ &**********************************& + &**************************************& + &*****************************************& + &*******************************************& + &*********************************************& + &***********************************************& + &************************************************& + &***#########********#########*******************& + &*## ########## ##################& + &*## O ##@**#### O ##***************& + &***#########@*******#########*****************& + &***********@*********************************& + &**********@*********************************& + &*********@*********************************& + &********@@*********************************& + &*******@@@@@@****************************& + &**************************************& + &**************************************& + &******@@@@@@@@@@@@*********************& + &*************************************& + &************************************& + &*******************************& + &*****************************& +''', + + "fox": r''' + \ + \ + \ + |\_/|,,_____,~~` + (.".)~~ )`~}} + \o/\ /---~\\ ~}} + _// _// ~} +''', + + "octopus": r''' + \ + \ + \ + . . . + . ^ . + . ^ ^ ^ . + . ^ ^ ^ . + . ^ . + . . . + _ _ _ _ _ _ _| |_ _ _ _ _ _ + / _ _ _ _ _ _| o|o |_ _ _ _ _ _ \ + / / _ _ _ _ _| | |_ _ _ _ \ \ + / / / _ _ _ / /| |\ \ _ _ _ \ \ \ + / / / / / / | | \ \ \ \ \ \ + / / / / / / | | \ \ \ \ \ \ + /_/ / / / / | | \ \ \ \ \_\ + | /__/ /_/ |_| \_\ \__\ | + | / | \ | +''', + +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/main.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/main.py new file mode 100644 index 00000000..fbafeec5 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/main.py @@ -0,0 +1,74 @@ +import re + +from .characters import CHARS + +__version__ = '6.1' + +CHARS = dict(sorted(CHARS.items())) +char_names = list(CHARS.keys()) + + +class CowsayError(LookupError): + pass + + +def wrap_lines(lines: list, max_width: int = 49) -> list: + + new_lines = [] + for line in lines: + for line_part in [ + line[i: i+max_width] for i in range(0, len(line), max_width) + ]: + new_lines.append(line_part) + return new_lines + + +def generate_bubble(text: str) -> list: + + lines = [line.strip() for line in text.split('\n')] + lines = wrap_lines([line for line in lines if line]) + text_width = max([len(line) for line in lines]) + + output = [" " + "_" * text_width] + if len(lines) > 1: + output.append(" /" + " " * text_width + "\\") + for line in lines: + output.append("| " + line + " " * (text_width - len(line) + 1) + "|") + if len(lines) > 1: + output.append(" \\" + " " * text_width + "/") + output.append(" " + "=" * text_width) + + return output + + +def generate_char(char_lines: str, text_width: int) -> list: + + output = [] + char_lines = char_lines.split('\n') + char_lines = [i for i in char_lines if len(i) != 0] + for line in char_lines: + output.append(' ' * text_width + line) + return output + + +def draw(text: str, char_lines: str, to_console: bool = True) -> str: + + if len(re.sub(r'\s', '', text)) == 0: + raise CowsayError('Pass something meaningful to cowsay') + + output = generate_bubble(text) + text_width = max([len(line) for line in output]) - 4 # 4 is the frame + output += generate_char(char_lines, text_width) + if to_console: + for line in output: + print(line) + else: + return '\n'.join(output) + + +def get_output_string(char: str, text: str) -> str: + + if char in CHARS: + return draw(text, CHARS[char], to_console=False) + else: + raise CowsayError(f'Available Characters: {char_names}') diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd79ac329e90b9732045253c1c8c0b8805fb0ba5 GIT binary patch literal 236 zcmZ8bJFdb&49xP85E6HwrAREGeR|EKeKgQVOEAfbO}tt!K{*5ToPo2@aRp9*=&0C5 zRE#wC*dAGP84UW7M|M3Hq2EIJ#-rmmr>KcWVt$Tn%TJHsc^;sk5+Ro>t5CxXdF#l) zf;Mh1Ee>Z`qb5^g<%WN>vyAXh>z&4UNu(K6X*7mwoY9_T14)fl4O*?hG_Ig(nv5sF t%3*9|wv{CA%tyv^#ZnXM3w*m literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/solutions.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/solutions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6f20dd8e5d6e495edfa8fb8f5a442be0563e9d3e GIT binary patch literal 38512 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 veF>?r*@NWdmxG@VZb<#>QvcfiTLbq79!UKS>G \\ _ -~ `. ^-` ^-_ + ///-._ _ _ _ _ _ _}^ - - - - ~ ~-- ,.-~ + /.-~ +""", + + + 'ghostbusters': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + __---__ + _- /--______ + __--( / \ )XXXXXXXXXXX\v. + .-XXX( O O )XXXXXXXXXXXXXXX- + /XXX( U ) XXXXXXX\ + /XXXXX( )--_ XXXXXXXXXXX\ + /XXXXX/ ( O ) XXXXXX \XXXXX\ + XXXXX/ / XXXXXX \__ \XXXXX + XXXXXX__/ XXXXXX \__----> + ---___ XXX__/ XXXXXX \__ / + \- --__/ ___/\ XXXXXX / ___--/= + \-\ ___/ XXXXXX '--- XXXXXX + \-\/XXX\ XXXXXX /XXXXX + \XXXXXXXXX \ /XXXXX/ + \XXXXXX > _/XXXXX/ + \XXXXX--__/ __-- XXXX/ + -XXXXXXXX--------------- XXXXXX- + \XXXXXXXXXXXXXXXXXXXXXXXXXX/ + ""VXXXXXXXXXXXXXXXXXXV"" +""", + + + 'kitty': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + + ("`-' '-/") .___..--' ' "`-._ + ` *_ * ) `-. ( ) .`-.__. `) + (_Y_.) ' ._ ) `._` ; `` -. .-' + _.. `--'_..-_/ /--' _ .' ,4 + ( i l ),-'' ( l i),' ( ( ! .-' +""", + + + 'meow': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + _ ___.--'''`--''//-,-_--_. + \\`"' ` || \\\\ \\ \\\\/ / // / ,-\\\\`,_ + /'` \\ \\ || Y | \\|/ / // / - |__ `-, + /\@"\\ ` \\ `\\ | | ||/ // | \\/ \\ `-._`-,_., + / _.-. `.-\\,___/\\ _/|_/_\\_\\/|_/ | `-._._) + `-'``/ / | // \\__/\\__ / \\__/ \\ + `-' /-\\/ | -| \\__ \\ |-' | + __/\\ / _/ \\/ __,-' ) ,' _|' + (((__/(((_.' ((___..-'((__,' +""", + + + 'milk': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + ____________ + |__________| + / /\ + / / \ + /___________/___/| + | | | + | ==\ /== | | + | O O | \ \ | + | < | \ \| + /| | \ \ + / | \_____/ | / / + / /| | / /| + /||\| | /||\/ + -------------| + | | | | + <__/ \__> +""", + + + 'stegosaurus': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + . . + / `. .' \ + .---. < > < > .---. + | \ \ - ~ ~ - / / | + _____ ~-..-~ ~-..-~ + | | \~~~\.' `./~~~/ + --------- \__/ \__/ + .' O \ / / \ " + (_____, `._.' | } \/~~~/ + `----. / } | / \__/ + `-. | / | / `. ,~~| + ~-.__| /_ - ~ ^| /- _ `..-' f: f: + | / | / ~-. `-. _|| _||_ + |_____| |_____| ~ - . _ _ _ _ __> +""", + + + 'stimpy': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + . _ . + |\_|/__/| + / / \/ \ \ + /__|O||O|__ \ + |/_ \_/\_/ _\ | + | | (____) | || + \/\___/\__/ // + (_/ || + | || + | ||\ + \ //_/ + \______// + __ || __|| + (____(____) +""", + + + 'turkey': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + ,+*^^*+___+++_ + ,*^^^^ ) + _+* ^**+_ + +^ _ _++*+_+++_, ) + _+^^*+_ ( ,+*^ ^ \\+_ ) + { ) ( ,( ,_+--+--, ^) ^\\ + { (\@) } f ,( ,+-^ __*_*_ ^^\\_ ^\\ ) + {:;-/ (_+*-+^^^^^+*+*<_ _++_)_ ) ) / + ( / ( ( ,___ ^*+_+* ) < < \\ + U _/ ) *--< ) ^\\-----++__) ) ) ) + ( ) _(^)^^)) ) )\\^^^^^))^*+/ / / + ( / (_))_^)) ) ) ))^^^^^))^^^)__/ +^^ + ( ,/ (^))^)) ) ) ))^^^^^^^))^^) _) + *+__+* (_))^) ) ) ))^^^^^^))^^^^^)____*^ + \\ \\_)^)_)) ))^^^^^^^^^^))^^^^) + (_ ^\\__^^^^^^^^^^^^))^^^^^^^) + ^\\___ ^\\__^^^^^^))^^^^^^^^)\\\\ + ^^^^^\\uuu/^^\\uuu/^^^^\\^\\^\\^\\^\\^\\^\\^\\ + ___) >____) >___ ^\\_\\_\\_\\_\\_\\_\\) + ^^^//\\\\_^^//\\\\_^ ^(\\_\\_\\_\\) + ^^^ ^^ ^^^ ^ +""", + + + 'turtle': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + ___-------___ + _-~~ ~~-_ + _-~ /~-_ + /^\__/^\ /~ \ / \ + /| O|| O| / \_______________/ \ + | |___||__| / / \ \ + | \ / / \ \ + | (_______) /______/ \_________ \ + | / / \ / \ + \ \^\\ \ / \ / + \ || \______________/ _-_ //\__// + \ ||------_-~~-_ ------------- \ --/~ ~\ || __/ + ~-----||====/~ |==================| |/~~~~~ + (_(__/ ./ / \_\ \. + (_(___/ \_____)_) +""", + + + 'tux': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + .--. + |o_o | + |:_/ | + // \ \ + (| | ) + /'\_ _/`\ + \___)=(___/ +""", + + + 'pig': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + ,. + (_|,. + ,' /, )_______ _ + __j o``-' `.'-)' + (") \' + `-j | + `-._( / + |_\ |--^. / + /_]'|_| /_)_/ + /_]' /_]' +""", + + + 'trex': r''' + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + .-=-==--==--. + ..-==" ,'o`) `. + ,' `"' \ + : ( `.__...._ + | ) / `-=-. + : ,vv.-._ / / `---==-._ + \/\/\/VV ^ d88`;' / `. + `` ^/d88P!' / , `._ + ^/ !' ,. , / "-,,__,,--'""""-. + ^/ !' ,' \ . .( ( _ ) ) ) ) ))_,-.\ + ^(__ ,!',"' ;:+.:%:a. \:.. . ,' ) ) ) ) ,"' ' + ',,,'',' /o:::":%:%a. \:.:.: . ) ) _,' + """' ;':::'' `+%%%a._ \%:%| ;.). _,-"" + ,-='_.-' ``:%::) )%:| /:._," + (/(/" ," ,'_,'%%%: (_,' + ( (//(`.___; \ + \ \ ` ` + `. `. `. : + \. . .\ : . . . : + \. . .: `.. . .: + `..:.:\ \:...\ + ;:.:.; ::...: + ):%:: :::::; + __,::%:( ::::: + ,;:%%%%%%%: ;:%:: + ;,--""-.`\ ,=--':%:%:\ + /" "| /-".:%%%%%%%\ + ;,-"'`)%%) + /" "| + +''', + + + 'miki': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ &************************& + \ &******************************& + \ &**********************************& + &**************************************& + &*****************************************& + &*******************************************& + &*********************************************& + &***********************************************& + &************************************************& + &***#########********#########*******************& + &*## ########## ##################& + &*## O ##@**#### O ##***************& + &***#########@*******#########*****************& + &***********@*********************************& + &**********@*********************************& + &*********@*********************************& + &********@@*********************************& + &*******@@@@@@****************************& + &**************************************& + &**************************************& + &******@@@@@@@@@@@@*********************& + &*************************************& + &************************************& + &*******************************& + &*****************************& +""", + + + 'fox': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + |\_/|,,_____,~~` + (.".)~~ )`~}} + \o/\ /---~\\ ~}} + _// _// ~} +""", + + + 'octopus': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + . . . + . ^ . + . ^ ^ ^ . + . ^ ^ ^ . + . ^ . + . . . + _ _ _ _ _ _ _| |_ _ _ _ _ _ + / _ _ _ _ _ _| o|o |_ _ _ _ _ _ \ + / / _ _ _ _ _| | |_ _ _ _ \ \ + / / / _ _ _ / /| |\ \ _ _ _ \ \ \ + / / / / / / | | \ \ \ \ \ \ + / / / / / / | | \ \ \ \ \ \ + /_/ / / / / | | \ \ \ \ \_\ + | /__/ /_/ |_| \_\ \__\ | + | / | \ | +""", + +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_api.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_api.py new file mode 100644 index 00000000..f2ac1bbf --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_api.py @@ -0,0 +1,35 @@ +import pytest + +import cowsay + + +def test_char_names(): + + characters = ['beavis', 'cheese', 'daemon', 'cow', 'dragon', + 'ghostbusters', 'kitty', 'meow', 'milk', 'stegosaurus', + 'stimpy', 'turkey', 'turtle', 'tux', + 'pig', 'trex', 'miki', 'fox', 'octopus'] + + assert len(cowsay.char_names) == len(characters) + assert cowsay.char_names == sorted(characters) + + +def test_draw_error(): + + with pytest.raises(cowsay.CowsayError) as e: + cowsay.draw('', '') + + assert e.value.args[0] == 'Pass something meaningful to cowsay' + + +def test_get_output_string(): + + assert isinstance(cowsay.get_output_string(char='cow', text='Hello'), str) + + +def test_get_output_string_error(): + + with pytest.raises(cowsay.CowsayError) as e: + cowsay.get_output_string('random', 'random text') + + assert e.value.args[0] == f'Available Characters: {cowsay.char_names}' diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_output.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_output.py new file mode 100644 index 00000000..d825d8ce --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_output.py @@ -0,0 +1,40 @@ +import io +import sys +from typing import Callable + +import pytest + +from cowsay import char_funcs, char_names +from . import solutions + + +def capture_output(function: Callable, arguments: str) -> str: + captured_output = io.StringIO() + sys.stdout = captured_output + function(arguments) + sys.stdout = sys.__stdout__ + captured_output.seek(0) + return captured_output.read() + + +def delete_empty_lines(data): + new_data = [] + for line in data.splitlines(): + if len(line.strip()) > 0: + new_data.append(line.rstrip()) + return new_data + + +@pytest.mark.parametrize('char', char_names, ids=char_names) +def test_char_solution(char): + + lorem: str = ( + 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam' + 'nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,' + 'sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.' + ) + + output = capture_output(char_funcs[char], lorem) + output = delete_empty_lines(output) + solution = delete_empty_lines(solutions.CHARS_SOLUTIONS[char]) + assert output == solution diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt new file mode 100644 index 00000000..0e635489 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt @@ -0,0 +1,760 @@ +@Switch01 +A_Rog +Aakanksha Agrawal +Abhinav Sagar +ABHYUDAY PRATAP SINGH +abs51295 +AceGentile +Adam Chainz +Adam Tse +Adam Wentz +admin +Adrien Morison +ahayrapetyan +Ahilya +AinsworthK +Akash Srivastava +Alan Yee +Albert Tugushev +Albert-Guan +albertg +Alberto Sottile +Aleks Bunin +Ales Erjavec +Alethea Flowers +Alex Gaynor +Alex Grönholm +Alex Hedges +Alex Loosley +Alex Morega +Alex Stachowiak +Alexander Shtyrov +Alexandre Conrad +Alexey Popravka +Aleš Erjavec +Alli +Ami Fischman +Ananya Maiti +Anatoly Techtonik +Anders Kaseorg +Andre Aguiar +Andreas Lutro +Andrei Geacar +Andrew Gaul +Andrew Shymanel +Andrey Bienkowski +Andrey Bulgakov +Andrés Delfino +Andy Freeland +Andy Kluger +Ani Hayrapetyan +Aniruddha Basak +Anish Tambe +Anrs Hu +Anthony Sottile +Antoine Musso +Anton Ovchinnikov +Anton Patrushev +Antonio Alvarado Hernandez +Antony Lee +Antti Kaihola +Anubhav Patel +Anudit Nagar +Anuj Godase +AQNOUCH Mohammed +AraHaan +Arindam Choudhury +Armin Ronacher +Artem +Arun Babu Neelicattu +Ashley Manton +Ashwin Ramaswami +atse +Atsushi Odagiri +Avinash Karhana +Avner Cohen +Awit (Ah-Wit) Ghirmai +Baptiste Mispelon +Barney Gale +barneygale +Bartek Ogryczak +Bastian Venthur +Ben Bodenmiller +Ben Darnell +Ben Hoyt +Ben Mares +Ben Rosser +Bence Nagy +Benjamin Peterson +Benjamin VanEvery +Benoit Pierre +Berker Peksag +Bernard +Bernard Tyers +Bernardo B. Marques +Bernhard M. Wiedemann +Bertil Hatt +Bhavam Vidyarthi +Blazej Michalik +Bogdan Opanchuk +BorisZZZ +Brad Erickson +Bradley Ayers +Brandon L. Reiss +Brandt Bucher +Brett Randall +Brett Rosen +Brian Cristante +Brian Rosner +briantracy +BrownTruck +Bruno Oliveira +Bruno Renié +Bruno S +Bstrdsmkr +Buck Golemon +burrows +Bussonnier Matthias +bwoodsend +c22 +Caleb Martinez +Calvin Smith +Carl Meyer +Carlos Liam +Carol Willing +Carter Thayer +Cass +Chandrasekhar Atina +Chih-Hsuan Yen +Chris Brinker +Chris Hunt +Chris Jerdonek +Chris Kuehl +Chris McDonough +Chris Pawley +Chris Pryer +Chris Wolfe +Christian Clauss +Christian Heimes +Christian Oudard +Christoph Reiter +Christopher Hunt +Christopher Snyder +cjc7373 +Clark Boylan +Claudio Jolowicz +Clay McClure +Cody +Cody Soyland +Colin Watson +Collin Anderson +Connor Osborn +Cooper Lees +Cooper Ry Lees +Cory Benfield +Cory Wright +Craig Kerstiens +Cristian Sorinel +Cristina +Cristina Muñoz +Curtis Doty +cytolentino +Daan De Meyer +Dale +Damian +Damian Quiroga +Damian Shaw +Dan Black +Dan Savilonis +Dan Sully +Dane Hillard +daniel +Daniel Collins +Daniel Hahler +Daniel Holth +Daniel Jost +Daniel Katz +Daniel Shaulov +Daniele Esposti +Daniele Nicolodi +Daniele Procida +Daniil Konovalenko +Danny Hermes +Danny McClanahan +Darren Kavanagh +Dav Clark +Dave Abrahams +Dave Jones +David Aguilar +David Black +David Bordeynik +David Caro +David D Lowe +David Evans +David Hewitt +David Linke +David Poggi +David Pursehouse +David Runge +David Tucker +David Wales +Davidovich +ddelange +Deepak Sharma +Deepyaman Datta +Denise Yu +dependabot[bot] +derwolfe +Desetude +Devesh Kumar Singh +Diego Caraballo +Diego Ramirez +DiegoCaraballo +Dimitri Merejkowsky +Dimitri Papadopoulos +Dirk Stolle +Dmitry Gladkov +Dmitry Volodin +Domen Kožar +Dominic Davis-Foster +Donald Stufft +Dongweiming +doron zarhi +Dos Moonen +Douglas Thor +DrFeathers +Dustin Ingram +Dwayne Bailey +Ed Morley +Edgar Ramírez +Edgar Ramírez Mondragón +Ee Durbin +Efflam Lemaillet +efflamlemaillet +Eitan Adler +ekristina +elainechan +Eli Schwartz +Elisha Hollander +Ellen Marie Dash +Emil Burzo +Emil Styrke +Emmanuel Arias +Endoh Takanao +enoch +Erdinc Mutlu +Eric Cousineau +Eric Gillingham +Eric Hanchrow +Eric Hopper +Erik M. Bray +Erik Rose +Erwin Janssen +Eugene Vereshchagin +everdimension +Federico +Felipe Peter +Felix Yan +fiber-space +Filip Kokosiński +Filipe Laíns +Finn Womack +finnagin +Flavio Amurrio +Florian Briand +Florian Rathgeber +Francesco +Francesco Montesano +Frost Ming +Gabriel Curio +Gabriel de Perthuis +Garry Polley +gavin +gdanielson +Geoffrey Sneddon +George Song +Georgi Valkov +Georgy Pchelkin +ghost +Giftlin Rajaiah +gizmoguy1 +gkdoc +Godefroid Chapelle +Gopinath M +GOTO Hayato +gousaiyang +gpiks +Greg Roodt +Greg Ward +Guilherme Espada +Guillaume Seguin +gutsytechster +Guy Rozendorn +Guy Tuval +gzpan123 +Hanjun Kim +Hari Charan +Harsh Vardhan +harupy +Harutaka Kawamura +hauntsaninja +Henrich Hartzer +Henry Schreiner +Herbert Pfennig +Holly Stotelmyer +Honnix +Hsiaoming Yang +Hugo Lopes Tavares +Hugo van Kemenade +Hugues Bruant +Hynek Schlawack +Ian Bicking +Ian Cordasco +Ian Lee +Ian Stapleton Cordasco +Ian Wienand +Igor Kuzmitshov +Igor Sobreira +Ilan Schnell +Illia Volochii +Ilya Baryshev +Inada Naoki +Ionel Cristian Mărieș +Ionel Maries Cristian +Itamar Turner-Trauring +Ivan Pozdeev +J. Nick Koston +Jacob Kim +Jacob Walls +Jaime Sanz +jakirkham +Jakub Kuczys +Jakub Stasiak +Jakub Vysoky +Jakub Wilk +James Cleveland +James Curtin +James Firth +James Gerity +James Polley +Jan Pokorný +Jannis Leidel +Jarek Potiuk +jarondl +Jason Curtis +Jason R. Coombs +JasonMo +JasonMo1 +Jay Graves +Jean Abou Samra +Jean-Christophe Fillion-Robin +Jeff Barber +Jeff Dairiki +Jeff Widman +Jelmer Vernooij +jenix21 +Jeremy Stanley +Jeremy Zafran +Jesse Rittner +Jiashuo Li +Jim Fisher +Jim Garrison +Jiun Bae +Jivan Amara +Joe Bylund +Joe Michelini +John Paton +John T. Wodder II +John-Scott Atlakson +johnthagen +Jon Banafato +Jon Dufresne +Jon Parise +Jonas Nockert +Jonathan Herbert +Joonatan Partanen +Joost Molenaar +Jorge Niedbalski +Joseph Bylund +Joseph Long +Josh Bronson +Josh Hansen +Josh Schneier +Joshua +Juan Luis Cano Rodríguez +Juanjo Bazán +Judah Rand +Julian Berman +Julian Gethmann +Julien Demoor +Jussi Kukkonen +jwg4 +Jyrki Pulliainen +Kai Chen +Kai Mueller +Kamal Bin Mustafa +kasium +kaustav haldar +keanemind +Keith Maxwell +Kelsey Hightower +Kenneth Belitzky +Kenneth Reitz +Kevin Burke +Kevin Carter +Kevin Frommelt +Kevin R Patterson +Kexuan Sun +Kit Randel +Klaas van Schelven +KOLANICH +kpinc +Krishna Oza +Kumar McMillan +Kurt McKee +Kyle Persohn +lakshmanaram +Laszlo Kiss-Kollar +Laurent Bristiel +Laurent LAPORTE +Laurie O +Laurie Opperman +layday +Leon Sasson +Lev Givon +Lincoln de Sousa +Lipis +lorddavidiii +Loren Carvalho +Lucas Cimon +Ludovic Gasc +Lukas Geiger +Lukas Juhrich +Luke Macken +Luo Jiebin +luojiebin +luz.paz +László Kiss Kollár +M00nL1ght +Marc Abramowitz +Marc Tamlyn +Marcus Smith +Mariatta +Mark Kohler +Mark Williams +Markus Hametner +Martey Dodoo +Martin Fischer +Martin Häcker +Martin Pavlasek +Masaki +Masklinn +Matej Stuchlik +Mathew Jennings +Mathieu Bridon +Mathieu Kniewallner +Matt Bacchi +Matt Good +Matt Maker +Matt Robenolt +matthew +Matthew Einhorn +Matthew Feickert +Matthew Gilliard +Matthew Iversen +Matthew Treinish +Matthew Trumbell +Matthew Willson +Matthias Bussonnier +mattip +Maurits van Rees +Max W Chase +Maxim Kurnikov +Maxime Rouyrre +mayeut +mbaluna +mdebi +memoselyk +meowmeowcat +Michael +Michael Aquilina +Michael E. Karpeles +Michael Klich +Michael Mintz +Michael Williamson +michaelpacer +Michał Górny +Mickaël Schoentgen +Miguel Araujo Perez +Mihir Singh +Mike +Mike Hendricks +Min RK +MinRK +Miro Hrončok +Monica Baluna +montefra +Monty Taylor +Muha Ajjan‮ +Nadav Wexler +Nahuel Ambrosini +Nate Coraor +Nate Prewitt +Nathan Houghton +Nathaniel J. Smith +Nehal J Wani +Neil Botelho +Nguyễn Gia Phong +Nicholas Serra +Nick Coghlan +Nick Stenning +Nick Timkovich +Nicolas Bock +Nicole Harris +Nikhil Benesch +Nikhil Ladha +Nikita Chepanov +Nikolay Korolev +Nipunn Koorapati +Nitesh Sharma +Niyas Sait +Noah +Noah Gorny +Nowell Strite +NtaleGrey +nvdv +OBITORASU +Ofek Lev +ofrinevo +Oliver Freund +Oliver Jeeves +Oliver Mannion +Oliver Tonnhofer +Olivier Girardot +Olivier Grisel +Ollie Rutherfurd +OMOTO Kenji +Omry Yadan +onlinejudge95 +Oren Held +Oscar Benjamin +Oz N Tiram +Pachwenko +Patrick Dubroy +Patrick Jenkins +Patrick Lawson +patricktokeeffe +Patrik Kopkan +Paul Ganssle +Paul Kehrer +Paul Moore +Paul Nasrat +Paul Oswald +Paul van der Linden +Paulus Schoutsen +Pavel Safronov +Pavithra Eswaramoorthy +Pawel Jasinski +Paweł Szramowski +Pekka Klärck +Peter Gessler +Peter Lisák +Peter Waller +petr-tik +Phaneendra Chiruvella +Phil Elson +Phil Freo +Phil Pennock +Phil Whelan +Philip Jägenstedt +Philip Molloy +Philippe Ombredanne +Pi Delport +Pierre-Yves Rofes +Pieter Degroote +pip +Prabakaran Kumaresshan +Prabhjyotsing Surjit Singh Sodhi +Prabhu Marappan +Pradyun Gedam +Prashant Sharma +Pratik Mallya +pre-commit-ci[bot] +Preet Thakkar +Preston Holmes +Przemek Wrzos +Pulkit Goyal +q0w +Qiangning Hong +Qiming Xu +Quentin Lee +Quentin Pradet +R. David Murray +Rafael Caricio +Ralf Schmitt +Razzi Abuissa +rdb +Reece Dunham +Remi Rampin +Rene Dudfield +Riccardo Magliocchetti +Riccardo Schirone +Richard Jones +Richard Si +Ricky Ng-Adam +Rishi +RobberPhex +Robert Collins +Robert McGibbon +Robert Pollak +Robert T. McGibbon +robin elisha robinson +Roey Berman +Rohan Jain +Roman Bogorodskiy +Roman Donchenko +Romuald Brunet +ronaudinho +Ronny Pfannschmidt +Rory McCann +Ross Brattain +Roy Wellington Ⅳ +Ruairidh MacLeod +Russell Keith-Magee +Ryan Shepherd +Ryan Wooden +ryneeverett +Sachi King +Salvatore Rinchiera +sandeepkiran-js +Sander Van Balen +Savio Jomton +schlamar +Scott Kitterman +Sean +seanj +Sebastian Jordan +Sebastian Schaetz +Segev Finer +SeongSoo Cho +Sergey Vasilyev +Seth Michael Larson +Seth Woodworth +Shahar Epstein +Shantanu +shireenrao +Shivansh-007 +Shlomi Fish +Shovan Maity +Simeon Visser +Simon Cross +Simon Pichugin +sinoroc +sinscary +snook92 +socketubs +Sorin Sbarnea +Srinivas Nyayapati +Stavros Korokithakis +Stefan Scherfke +Stefano Rivera +Stephan Erb +Stephen Rosen +stepshal +Steve (Gadget) Barnes +Steve Barnes +Steve Dower +Steve Kowalik +Steven Myint +Steven Silvester +stonebig +studioj +Stéphane Bidoul +Stéphane Bidoul (ACSONE) +Stéphane Klein +Sumana Harihareswara +Surbhi Sharma +Sviatoslav Sydorenko +Swat009 +Sylvain +Takayuki SHIMIZUKAWA +Taneli Hukkinen +tbeswick +Thiago +Thijs Triemstra +Thomas Fenzl +Thomas Grainger +Thomas Guettler +Thomas Johansson +Thomas Kluyver +Thomas Smith +Thomas VINCENT +Tim D. Smith +Tim Gates +Tim Harder +Tim Heap +tim smith +tinruufu +Tobias Hermann +Tom Forbes +Tom Freudenheim +Tom V +Tomas Hrnciar +Tomas Orsava +Tomer Chachamu +Tommi Enenkel | AnB +Tomáš Hrnčiar +Tony Beswick +Tony Narlock +Tony Zhaocheng Tan +TonyBeswick +toonarmycaptain +Toshio Kuratomi +toxinu +Travis Swicegood +Tushar Sadhwani +Tzu-ping Chung +Valentin Haenel +Victor Stinner +victorvpaulo +Vikram - Google +Viktor Szépe +Ville Skyttä +Vinay Sajip +Vincent Philippon +Vinicyus Macedo +Vipul Kumar +Vitaly Babiy +Vladimir Fokow +Vladimir Rutsky +W. Trevor King +Wil Tan +Wilfred Hughes +William Edwards +William ML Leslie +William T Olson +William Woodruff +Wilson Mo +wim glenn +Winson Luk +Wolfgang Maier +Wu Zhenyu +XAMES3 +Xavier Fernandez +xoviat +xtreak +YAMAMOTO Takashi +Yen Chi Hsuan +Yeray Diaz Diaz +Yoval P +Yu Jian +Yuan Jing Vincent Yan +Yusuke Hayashi +Zearin +Zhiping Deng +ziebam +Zvezdan Petkovic +Łukasz Langa +Роман Донченко +Семён Марьясин +‮rekcäH nitraM‮ diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt new file mode 100644 index 00000000..8e7b65ea --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-present The pip developers (see AUTHORS.txt file) + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA new file mode 100644 index 00000000..e5b45bdd --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA @@ -0,0 +1,88 @@ +Metadata-Version: 2.1 +Name: pip +Version: 24.0 +Summary: The PyPA recommended tool for installing Python packages. +Author-email: The pip developers +License: MIT +Project-URL: Homepage, https://pip.pypa.io/ +Project-URL: Documentation, https://pip.pypa.io +Project-URL: Source, https://github.com/pypa/pip +Project-URL: Changelog, https://pip.pypa.io/en/stable/news/ +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Topic :: Software Development :: Build Tools +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.7 +Description-Content-Type: text/x-rst +License-File: LICENSE.txt +License-File: AUTHORS.txt + +pip - The Python Package Installer +================================== + +.. image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + :alt: PyPI + +.. image:: https://img.shields.io/pypi/pyversions/pip + :target: https://pypi.org/project/pip + :alt: PyPI - Python Version + +.. image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + :alt: Documentation + +pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. + +Please take a look at our documentation for how to install and use pip: + +* `Installation`_ +* `Usage`_ + +We release updates regularly, with a new version every 3 months. Find more details in our documentation: + +* `Release notes`_ +* `Release process`_ + +If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: + +* `Issue tracking`_ +* `Discourse channel`_ +* `User IRC`_ + +If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: + +* `GitHub page`_ +* `Development documentation`_ +* `Development IRC`_ + +Code of Conduct +--------------- + +Everyone interacting in the pip project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. + +.. _package installer: https://packaging.python.org/guides/tool-recommendations/ +.. _Python Package Index: https://pypi.org +.. _Installation: https://pip.pypa.io/en/stable/installation/ +.. _Usage: https://pip.pypa.io/en/stable/ +.. _Release notes: https://pip.pypa.io/en/stable/news.html +.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ +.. _GitHub page: https://github.com/pypa/pip +.. _Development documentation: https://pip.pypa.io/en/latest/development +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa +.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev +.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD new file mode 100644 index 00000000..933ba83e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD @@ -0,0 +1,1005 @@ +../../../bin/pip,sha256=VBYTpdqXGOa7kuqE1l28jbC5YbWFzuT6vCvSlKZjN-8,337 +../../../bin/pip3,sha256=VBYTpdqXGOa7kuqE1l28jbC5YbWFzuT6vCvSlKZjN-8,337 +../../../bin/pip3.12,sha256=VBYTpdqXGOa7kuqE1l28jbC5YbWFzuT6vCvSlKZjN-8,337 +pip-24.0.dist-info/AUTHORS.txt,sha256=SwXm4nkwRkmtnO1ZY-dLy7EPeoQNXMNLby5CN3GlNhY,10388 +pip-24.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-24.0.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-24.0.dist-info/METADATA,sha256=kNEfJ3_Vho2mee4lfJdlbd5RHIqsfQJSMUB-bOkIOeI,3581 +pip-24.0.dist-info/RECORD,, +pip-24.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-24.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92 +pip-24.0.dist-info/entry_points.txt,sha256=Fa_c0b-xGFaYxagIruvpJD6qqXmNTA02vAVIkmMj-9o,125 +pip-24.0.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=oAk1nFpLmUVS5Ln7NxvNoGUn5Vkn6FGQjPaNDf8Q8pk,355 +pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854 +pip/__pip-runner__.py,sha256=EnrfKmKMzWAdqg_JicLCOP9Y95Ux7zHh4ObvqLtQcjo,1444 +pip/__pycache__/__init__.cpython-312.pyc,, +pip/__pycache__/__main__.cpython-312.pyc,, +pip/__pycache__/__pip-runner__.cpython-312.pyc,, +pip/_internal/__init__.py,sha256=iqZ5-YQsQV08tkUc7L806Reop6tguLFWf70ySF6be0Y,515 +pip/_internal/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/__pycache__/build_env.cpython-312.pyc,, +pip/_internal/__pycache__/cache.cpython-312.pyc,, +pip/_internal/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/__pycache__/exceptions.cpython-312.pyc,, +pip/_internal/__pycache__/main.cpython-312.pyc,, +pip/_internal/__pycache__/pyproject.cpython-312.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-312.pyc,, +pip/_internal/build_env.py,sha256=1ESpqw0iupS_K7phZK5zshVE5Czy9BtGLFU4W6Enva8,10243 +pip/_internal/cache.py,sha256=uiYD-9F0Bv1C8ZyWE85lpzDmQf7hcUkgL99GmI8I41Q,10370 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-312.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc,, +pip/_internal/cli/autocompletion.py,sha256=_br_5NgSxSuvPjMF0MLHzS5s6BpSkQAQHKrLK89VauM,6690 +pip/_internal/cli/base_command.py,sha256=iuVWGa2oTq7gBReo0er3Z0tXJ2oqBIC6QjDHcnDhKXY,8733 +pip/_internal/cli/cmdoptions.py,sha256=V8ggG6AtHpHKkH_6tRU0mhJaZTeqtrFpu75ghvMXXJk,30063 +pip/_internal/cli/command_context.py,sha256=RHgIPwtObh5KhMrd3YZTkl8zbVG-6Okml7YbFX4Ehg0,774 +pip/_internal/cli/main.py,sha256=Uzxt_YD1hIvB1AW5mxt6IVcht5G712AtMqdo51UMhmQ,2816 +pip/_internal/cli/main_parser.py,sha256=laDpsuBDl6kyfywp9eMMA9s84jfH2TJJn-vmL0GG90w,4338 +pip/_internal/cli/parser.py,sha256=KW6C3-7-4ErTNB0TfLTKwOdHcd-qefCeGnrOoE2r0RQ,10781 +pip/_internal/cli/progress_bars.py,sha256=So4mPoSjXkXiSHiTzzquH3VVyVD_njXlHJSExYPXAow,1968 +pip/_internal/cli/req_command.py,sha256=c7_XHABnXmD3_qlK9-r37KqdKBAcgmVKvQ2WcTrNLfc,18369 +pip/_internal/cli/spinners.py,sha256=hIJ83GerdFgFCdobIA23Jggetegl_uC4Sp586nzFbPE,5118 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=5oRO9O3dM2vGuh0bFw4HOVletryrz5HHMmmPWwJrH9U,3882 +pip/_internal/commands/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-312.pyc,, +pip/_internal/commands/__pycache__/check.cpython-312.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-312.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-312.pyc,, +pip/_internal/commands/__pycache__/download.cpython-312.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-312.pyc,, +pip/_internal/commands/__pycache__/help.cpython-312.pyc,, +pip/_internal/commands/__pycache__/index.cpython-312.pyc,, +pip/_internal/commands/__pycache__/inspect.cpython-312.pyc,, +pip/_internal/commands/__pycache__/install.cpython-312.pyc,, +pip/_internal/commands/__pycache__/list.cpython-312.pyc,, +pip/_internal/commands/__pycache__/search.cpython-312.pyc,, +pip/_internal/commands/__pycache__/show.cpython-312.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/commands/cache.py,sha256=xg76_ZFEBC6zoQ3gXLRfMZJft4z2a0RwH4GEFZC6nnU,7944 +pip/_internal/commands/check.py,sha256=Rb13Q28yoLh0j1gpx5SU0jlResNct21eQCRsnaO9xKA,1782 +pip/_internal/commands/completion.py,sha256=HT4lD0bgsflHq2IDgYfiEdp7IGGtE7s6MgI3xn0VQEw,4287 +pip/_internal/commands/configuration.py,sha256=n98enwp6y0b5G6fiRQjaZo43FlJKYve_daMhN-4BRNc,9766 +pip/_internal/commands/debug.py,sha256=63972uUCeMIGOdMMVeIUGrOjTOqTVWplFC82a-hcKyA,6777 +pip/_internal/commands/download.py,sha256=e4hw088zGo26WmJaMIRvCniLlLmoOjqolGyfHjsCkCQ,5335 +pip/_internal/commands/freeze.py,sha256=qrIHS_-c6JPrQ92hMhAv9kkl0bHgFpRLwYJDdbcYr1o,3243 +pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 +pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 +pip/_internal/commands/index.py,sha256=CNXQer_PeZKSJooURcCFCBEKGfwyNoUWYP_MWczAcOM,4775 +pip/_internal/commands/inspect.py,sha256=2wSPt9yfr3r6g-s2S5L6PvRtaHNVyb4TuodMStJ39cw,3188 +pip/_internal/commands/install.py,sha256=VxDd-BD3a27ApeE2OK34rfBXS6Zo2wtemK9-HCwPqxM,28782 +pip/_internal/commands/list.py,sha256=-QbpPuGDiGN1SdThsk2ml8beBnepliefbGhMAN8tkzU,12547 +pip/_internal/commands/search.py,sha256=sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi__iUI,5697 +pip/_internal/commands/show.py,sha256=t5jia4zcYJRJZy4U_Von7zMl03hJmmcofj6oDNTnj7Y,6419 +pip/_internal/commands/uninstall.py,sha256=OIqO9tqadY8kM4HwhFf1Q62fUIp7v8KDrTRo8yWMz7Y,3886 +pip/_internal/commands/wheel.py,sha256=CSnX8Pmf1oPCnd7j7bn1_f58G9KHNiAblvVJ5zykN-A,6476 +pip/_internal/configuration.py,sha256=XkAiBS0hpzsM-LF0Qu5hvPWO_Bs67-oQKRYFBuMbESs,14006 +pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 +pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/distributions/base.py,sha256=oRSEvnv2ZjBnargamnv2fcJa1n6gUDKaW0g6CWSEpWs,1743 +pip/_internal/distributions/installed.py,sha256=QinHFbWAQ8oE0pbD8MFZWkwlnfU1QYTccA1vnhrlYOU,842 +pip/_internal/distributions/sdist.py,sha256=4K3V0VNMllHbBzCJibjwd_tylUKpmIdu2AQyhplvCQo,6709 +pip/_internal/distributions/wheel.py,sha256=-ma3sOtUQj0AxXCEb6_Fhmjl3nh4k3A0HC2taAb2N-4,1277 +pip/_internal/exceptions.py,sha256=TmF1iNFEneSWaemwlg6a5bpPuq2cMHK7d1-SvjsQHb0,23634 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/index/__pycache__/collector.cpython-312.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-312.pyc,, +pip/_internal/index/__pycache__/sources.cpython-312.pyc,, +pip/_internal/index/collector.py,sha256=sH0tL_cOoCk6pLLfCSGVjFM4rPEJtllF-VobvAvLSH4,16590 +pip/_internal/index/package_finder.py,sha256=S_nC8gzVIMY6ikWfKoSOzRtoesUqnfNhAPl_BwSOusA,37843 +pip/_internal/index/sources.py,sha256=dJegiR9f86kslaAHcv9-R5L_XBf5Rzm_FkyPteDuPxI,8688 +pip/_internal/locations/__init__.py,sha256=Dh8LJWG8LRlDK4JIj9sfRF96TREzE--N_AIlx7Tqoe4,15365 +pip/_internal/locations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc,, +pip/_internal/locations/__pycache__/base.cpython-312.pyc,, +pip/_internal/locations/_distutils.py,sha256=H9ZHK_35rdDV1Qsmi4QeaBULjFT4Mbu6QuoVGkJ6QHI,6009 +pip/_internal/locations/_sysconfig.py,sha256=jyNVtUfMIf0mtyY-Xp1m9yQ8iwECozSVVFmjkN9a2yw,7680 +pip/_internal/locations/base.py,sha256=RQiPi1d4FVM2Bxk04dQhXZ2PqkeljEL2fZZ9SYqIQ78,2556 +pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340 +pip/_internal/metadata/__init__.py,sha256=9pU3W3s-6HtjFuYhWcLTYVmSaziklPv7k2x8p7X1GmA,4339 +pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/_json.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc,, +pip/_internal/metadata/_json.py,sha256=Rz5M5ciSNvITwaTQR6NfN8TgKgM5WfTws4D6CFknovE,2627 +pip/_internal/metadata/base.py,sha256=l3Wgku4xlgr8s4p6fS-3qQ4QKOpPbWLRwi5d9omEFG4,25907 +pip/_internal/metadata/importlib/__init__.py,sha256=jUUidoxnHcfITHHaAWG1G2i5fdBYklv_uJcjo2x7VYE,135 +pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc,, +pip/_internal/metadata/importlib/_compat.py,sha256=GAe_prIfCE4iUylrnr_2dJRlkkBVRUbOidEoID7LPoE,1882 +pip/_internal/metadata/importlib/_dists.py,sha256=UPl1wUujFqiwiltRJ1tMF42WRINO1sSpNNlYQ2mX0mk,8297 +pip/_internal/metadata/importlib/_envs.py,sha256=XTaFIYERP2JF0QUZuPx2ETiugXbPEcZ8q8ZKeht6Lpc,7456 +pip/_internal/metadata/pkg_resources.py,sha256=opjw4IBSqHvie6sXJ_cbT42meygoPEUfNURJuWZY7sk,10035 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-312.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-312.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-312.pyc,, +pip/_internal/models/__pycache__/index.cpython-312.pyc,, +pip/_internal/models/__pycache__/installation_report.cpython-312.pyc,, +pip/_internal/models/__pycache__/link.cpython-312.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-312.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-312.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-312.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/models/candidate.py,sha256=hEPu8VdGE5qVASv6vLz-R-Rgh5-7LMbai1jgthMCd8M,931 +pip/_internal/models/direct_url.py,sha256=FwouYBKcqckh7B-k2H3HVgRhhFTukFwqiS3kfvtFLSk,6889 +pip/_internal/models/format_control.py,sha256=wtsQqSK9HaUiNxQEuB-C62eVimw6G4_VQFxV9-_KDBE,2486 +pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 +pip/_internal/models/installation_report.py,sha256=zRVZoaz-2vsrezj_H3hLOhMZCK9c7TbzWgC-jOalD00,2818 +pip/_internal/models/link.py,sha256=XirOAGv1jgMu7vu87kuPbohGj7VHpwVrd2q3KUgVQNg,20777 +pip/_internal/models/scheme.py,sha256=3EFQp_ICu_shH1-TBqhl0QAusKCPDFOlgHFeN4XowWs,738 +pip/_internal/models/search_scope.py,sha256=ASVyyZxiJILw7bTIVVpJx8J293M3Hk5F33ilGn0e80c,4643 +pip/_internal/models/selection_prefs.py,sha256=KZdi66gsR-_RUXUr9uejssk3rmTHrQVJWeNA2sV-VSY,1907 +pip/_internal/models/target_python.py,sha256=34EkorrMuRvRp-bjqHKJ-bOO71m9xdjN2b8WWFEC2HU,4272 +pip/_internal/models/wheel.py,sha256=YqazoIZyma_Q1ejFa1C7NHKQRRWlvWkdK96VRKmDBeI,3600 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/network/__pycache__/auth.cpython-312.pyc,, +pip/_internal/network/__pycache__/cache.cpython-312.pyc,, +pip/_internal/network/__pycache__/download.cpython-312.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc,, +pip/_internal/network/__pycache__/session.cpython-312.pyc,, +pip/_internal/network/__pycache__/utils.cpython-312.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc,, +pip/_internal/network/auth.py,sha256=TC-OcW2KU4W6R1hU4qPgQXvVH54adACpZz6sWq-R9NA,20541 +pip/_internal/network/cache.py,sha256=48A971qCzKNFvkb57uGEk7-0xaqPS0HWj2711QNTxkU,3935 +pip/_internal/network/download.py,sha256=i0Tn55CD5D7XYEFY3TxiYaCf0OaaTQ6SScNgCsSeV14,6086 +pip/_internal/network/lazy_wheel.py,sha256=2PXVduYZPCPZkkQFe1J1GbfHJWeCU--FXonGyIfw9eU,7638 +pip/_internal/network/session.py,sha256=9tqEDD8JiVaFdplOEXJxNo9cjRfBZ6RIa0yQQ_qBNiM,18698 +pip/_internal/network/utils.py,sha256=6A5SrUJEEUHxbGtbscwU2NpCyz-3ztiDlGWHpRRhsJ8,4073 +pip/_internal/network/xmlrpc.py,sha256=sAxzOacJ-N1NXGPvap9jC3zuYWSnnv3GXtgR2-E2APA,1838 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/__pycache__/check.cpython-312.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-312.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc,, +pip/_internal/operations/build/build_tracker.py,sha256=z-H5DOknZdBa3dh2Vq6VBMY5qLYIKmlj2p6CGZK5Lc8,4832 +pip/_internal/operations/build/metadata.py,sha256=9S0CUD8U3QqZeXp-Zyt8HxwU90lE4QrnYDgrqZDzBnc,1422 +pip/_internal/operations/build/metadata_editable.py,sha256=VLL7LvntKE8qxdhUdEJhcotFzUsOSI8NNS043xULKew,1474 +pip/_internal/operations/build/metadata_legacy.py,sha256=o-eU21As175hDC7dluM1fJJ_FqokTIShyWpjKaIpHZw,2198 +pip/_internal/operations/build/wheel.py,sha256=sT12FBLAxDC6wyrDorh8kvcZ1jG5qInCRWzzP-UkJiQ,1075 +pip/_internal/operations/build/wheel_editable.py,sha256=yOtoH6zpAkoKYEUtr8FhzrYnkNHQaQBjWQ2HYae1MQg,1417 +pip/_internal/operations/build/wheel_legacy.py,sha256=C9j6rukgQI1n_JeQLoZGuDdfUwzCXShyIdPTp6edbMQ,3064 +pip/_internal/operations/check.py,sha256=fsqA88iGaqftCr2tlP3sSU202CSkoODRtW0O-JU9M4Y,6806 +pip/_internal/operations/freeze.py,sha256=uqoeTAf6HOYVMR2UgAT8N85UZoGEVEoQdan_Ao6SOfk,9816 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=YeR0KadWXw_ZheC1NtAG1qVIEkOgRGHc23x-YtGW7NU,1282 +pip/_internal/operations/install/wheel.py,sha256=9hGb1c4bRnPIb2FG7CtUSPfPxqprmHQBtwIAlWPNTtE,27311 +pip/_internal/operations/prepare.py,sha256=57Oq87HfunX3Rbqp47FdaJr9cHbAKUm_3gv7WhBAqbE,28128 +pip/_internal/pyproject.py,sha256=4Xszp11xgr126yzG6BbJA0oaQ9WXuhb0jyUb-y_6lPQ,7152 +pip/_internal/req/__init__.py,sha256=TELFgZOof3lhMmaICVWL9U7PlhXo9OufokbMAJ6J2GI,2738 +pip/_internal/req/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc,, +pip/_internal/req/constructors.py,sha256=8hlY56imEthLORRwmloyKz3YOyXymIaKsNB6P9ewvNI,19018 +pip/_internal/req/req_file.py,sha256=M8ttOZL-PwAj7scPElhW3ZD2hiD9mm_6FJAGIbwAzEI,17790 +pip/_internal/req/req_install.py,sha256=wtOPxkyRSM8comTks8oL1Gp2oyGqbH7JwIDRci2QiPk,35460 +pip/_internal/req/req_set.py,sha256=iMYDUToSgkxFyrP_OrTtPSgw4dwjRyGRDpGooTqeA4Y,4704 +pip/_internal/req/req_uninstall.py,sha256=nmvTQaRCC0iu-5Tw0djlXJhSj6WmqHRvT3qkkEdC35E,24551 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=Xk24jQ62GvLr4Mc7IjN_qiO88qp0BImzVmPIFz9QLOE,24025 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=jg5COmHLhmBIKOR-4spdJD3jyULYa1BdsqiBu2YJnJ4,5173 +pip/_internal/resolution/resolvelib/candidates.py,sha256=19Ki91Po-MSxBknGIfOGkaWkFdOznN0W_nKv7jL28L0,21052 +pip/_internal/resolution/resolvelib/factory.py,sha256=vqqk-hjchdhShwWVdeW2_A-5ZblLhE_nC_v3Mhz4Svc,32292 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=hvL3Hoa9VaYo-qEOZkBi2Iqw251UDxPz-uMHVaWmLpE,5705 +pip/_internal/resolution/resolvelib/provider.py,sha256=4t23ivjruqM6hKBX1KpGiTt-M4HGhRcZnGLV0c01K7U,9824 +pip/_internal/resolution/resolvelib/reporter.py,sha256=YFm9hQvz4DFCbjZeFTQ56hTz3Ac-mDBnHkeNRVvMHLY,3100 +pip/_internal/resolution/resolvelib/requirements.py,sha256=-kJONP0WjDfdTvBAs2vUXPgAnOyNIBEAXY4b72ogtPE,5696 +pip/_internal/resolution/resolvelib/resolver.py,sha256=nLJOsVMEVi2gQUVJoUFKMZAeu2f7GRMjGMvNSWyz0Bc,12592 +pip/_internal/self_outdated_check.py,sha256=saxQLB8UzIFtMScquytG10TOTsYVFJQ_mkW1NY-46wE,8378 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-312.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-312.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc,, +pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-312.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/models.cpython-312.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-312.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/utils/_jaraco_text.py,sha256=yvDGelTVugRayPaOF2k4ab0Ky4d3uOkAfuOQjASjImY,3351 +pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 +pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665 +pip/_internal/utils/compat.py,sha256=ACyBfLgj3_XG-iA5omEDrXqDM0cQKzi8h8HRBInzG6Q,1884 +pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377 +pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242 +pip/_internal/utils/deprecation.py,sha256=NKo8VqLioJ4nnXXGmW4KdasxF90EFHkZaHeX1fT08C8,3627 +pip/_internal/utils/direct_url_helpers.py,sha256=6F1tc2rcKaCZmgfVwsE6ObIe_Pux23mUVYA-2D9wCFc,3206 +pip/_internal/utils/egg_link.py,sha256=0FePZoUYKv4RGQ2t6x7w5Z427wbA_Uo3WZnAkrgsuqo,2463 +pip/_internal/utils/encoding.py,sha256=qqsXDtiwMIjXMEiIVSaOjwH5YmirCaK-dIzb6-XJsL0,1169 +pip/_internal/utils/entrypoints.py,sha256=YlhLTRl2oHBAuqhc-zmL7USS67TPWVHImjeAQHreZTQ,3064 +pip/_internal/utils/filesystem.py,sha256=RhMIXUaNVMGjc3rhsDahWQ4MavvEQDdqXqgq-F6fpw8,5122 +pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 +pip/_internal/utils/glibc.py,sha256=Mesxxgg3BLxheLZx-dSf30b6gKpOgdVXw6W--uHSszQ,3113 +pip/_internal/utils/hashes.py,sha256=MjOigC75z6qoRMkgHiHqot7eqxfwDZSrEflJMPm-bHE,5118 +pip/_internal/utils/logging.py,sha256=fdtuZJ-AKkqwDTANDvGcBEpssL8el7T1jnwk1CnZl3Y,11603 +pip/_internal/utils/misc.py,sha256=fNXwaeeikvnUt4CPMFIL4-IQbZDxxjj4jDpzCi4ZsOw,23623 +pip/_internal/utils/models.py,sha256=5GoYU586SrxURMvDn_jBMJInitviJg4O5-iOU-6I0WY,1193 +pip/_internal/utils/packaging.py,sha256=5Wm6_x7lKrlqVjPI5MBN_RurcRHwVYoQ7Ksrs84de7s,2108 +pip/_internal/utils/setuptools_build.py,sha256=ouXpud-jeS8xPyTPsXJ-m34NPvK5os45otAzdSV_IJE,4435 +pip/_internal/utils/subprocess.py,sha256=zzdimb75jVLE1GU4WlTZ055gczhD7n1y1xTcNc7vNZQ,9207 +pip/_internal/utils/temp_dir.py,sha256=DUAw22uFruQdK43i2L2K53C-CDjRCPeAsBKJpu-rHQ4,9312 +pip/_internal/utils/unpacking.py,sha256=SBb2iV1crb89MDRTEKY86R4A_UOWApTQn9VQVcMDOlE,8821 +pip/_internal/utils/urls.py,sha256=AhaesUGl-9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z_Q,1759 +pip/_internal/utils/virtualenv.py,sha256=S6f7csYorRpiD6cvn3jISZYc3I8PJC43H5iMFpRAEDU,3456 +pip/_internal/utils/wheel.py,sha256=i4BwUNHattzN0ixy3HBAF04tZPRh2CcxaT6t86viwkE,4499 +pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 +pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc,, +pip/_internal/vcs/bazaar.py,sha256=j0oin0fpGRHcCFCxEcpPCQoFEvA-DMLULKdGP8Nv76o,3519 +pip/_internal/vcs/git.py,sha256=CeKBGJnl6uskvvjkAUXrJVxbHJrpS_B_pyfFdjL3CRc,18121 +pip/_internal/vcs/mercurial.py,sha256=oULOhzJ2Uie-06d1omkL-_Gc6meGaUkyogvqG9ZCyPs,5249 +pip/_internal/vcs/subversion.py,sha256=vhZs8L-TNggXqM1bbhl-FpbxE3TrIB6Tgnx8fh3S2HE,11729 +pip/_internal/vcs/versioncontrol.py,sha256=3eIjtOMYvOY5qP6BMYIYDZ375CSuec6kSEB0bOo1cSs,22787 +pip/_internal/wheel_builder.py,sha256=qTTzQV8F6b1jNsFCda1TRQC8J7gK-m7iuRNgKo7Dj68,11801 +pip/_vendor/__init__.py,sha256=U51NPwXdA-wXOiANIQncYjcMp6txgeOL5nHxksJeyas,4993 +pip/_vendor/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/__pycache__/six.cpython-312.pyc,, +pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc,, +pip/_vendor/cachecontrol/__init__.py,sha256=ctHagMhQXuvQDdm4TirZrwDOT5H8oBNAJqzdKI6sovk,676 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=iist2EpzJvDVIhMAxXq8iFnTBsiZAd6iplxfmNboNyk,1737 +pip/_vendor/cachecontrol/adapter.py,sha256=_CcWvUP9048qAZjsNqViaHbdcLs9mmFNixVfpO7oebE,6392 +pip/_vendor/cachecontrol/cache.py,sha256=OTQj72tUf8C1uEgczdl3Gc8vkldSzsTITKtDGKMx4z8,1952 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=dtrrroK5BnADR1GWjCZ19aZ0tFsMfvFBtLQQU1sp_ag,303 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=3z8AWKD-vfKeiJqIzLmJyIYtR2yd6Tsh3u1TyLRQoIQ,5352 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386 +pip/_vendor/cachecontrol/controller.py,sha256=keCFA3ZaNVaWTwHd6F1zqWhb4vyvNx_UvZuo5iIYMfo,18384 +pip/_vendor/cachecontrol/filewrapper.py,sha256=STttGmIPBvZzt2b51dUOwoWX5crcMCpKZOisM3f5BNc,4292 +pip/_vendor/cachecontrol/heuristics.py,sha256=fdFbk9W8IeLrjteIz_fK4mj2HD_Y7COXF2Uc8TgjT1c,4828 +pip/_vendor/cachecontrol/serialize.py,sha256=0dHeMaDwysVAAnGVlhMOP4tDliohgNK0Jxk_zsOiWxw,7173 +pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417 +pip/_vendor/certifi/__init__.py,sha256=L_j-d0kYuA_MzA2_2hraF1ovf6KT6DTquRdV3paQwOk,94 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-312.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=eU0Dn_3yd8BH4m8sfVj4Glhl2KDrcCSg-sEWT-pNJ88,281617 +pip/_vendor/certifi/core.py,sha256=DNTl8b_B6C4vO3Vc9_q2uvwHpNnBQoy5onDC4McImxc,4531 +pip/_vendor/chardet/__init__.py,sha256=57R-HSxj0PWmILMN0GFmUNqEMfrEVSamXyjD-W6_fbs,4797 +pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/version.cpython-312.pyc,, +pip/_vendor/chardet/big5freq.py,sha256=ltcfP-3PjlNHCoo5e4a7C4z-2DhBTXRfY6jbMbB7P30,31274 +pip/_vendor/chardet/big5prober.py,sha256=lPMfwCX6v2AaPgvFh_cSWZcgLDbWiFCHLZ_p9RQ9uxE,1763 +pip/_vendor/chardet/chardistribution.py,sha256=13B8XUG4oXDuLdXvfbIWwLFeR-ZU21AqTS1zcdON8bU,10032 +pip/_vendor/chardet/charsetgroupprober.py,sha256=UKK3SaIZB2PCdKSIS0gnvMtLR9JJX62M-fZJu3OlWyg,3915 +pip/_vendor/chardet/charsetprober.py,sha256=L3t8_wIOov8em-vZWOcbkdsrwe43N6_gqNh5pH7WPd4,5420 +pip/_vendor/chardet/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc,, +pip/_vendor/chardet/cli/chardetect.py,sha256=zibMVg5RpKb-ME9_7EYG4ZM2Sf07NHcQzZ12U-rYJho,3242 +pip/_vendor/chardet/codingstatemachine.py,sha256=K7k69sw3jY5DmTXoSJQVsUtFIQKYPQVOSJJhBuGv_yE,3732 +pip/_vendor/chardet/codingstatemachinedict.py,sha256=0GY3Hi2qIZvDrOOJ3AtqppM1RsYxr_66ER4EHjuMiMc,542 +pip/_vendor/chardet/cp949prober.py,sha256=0jKRV7fECuWI16rNnks0ZECKA1iZYCIEaP8A1ZvjUSI,1860 +pip/_vendor/chardet/enums.py,sha256=TzECiZoCKNMqgwU76cPCeKWFBqaWvAdLMev5_bCkhY8,1683 +pip/_vendor/chardet/escprober.py,sha256=Kho48X65xE0scFylIdeJjM2bcbvRvv0h0WUbMWrJD3A,4006 +pip/_vendor/chardet/escsm.py,sha256=AqyXpA2FQFD7k-buBty_7itGEYkhmVa8X09NLRul3QM,12176 +pip/_vendor/chardet/eucjpprober.py,sha256=5KYaM9fsxkRYzw1b5k0fL-j_-ezIw-ij9r97a9MHxLY,3934 +pip/_vendor/chardet/euckrfreq.py,sha256=3mHuRvXfsq_QcQysDQFb8qSudvTiol71C6Ic2w57tKM,13566 +pip/_vendor/chardet/euckrprober.py,sha256=hiFT6wM174GIwRvqDsIcuOc-dDsq2uPKMKbyV8-1Xnc,1753 +pip/_vendor/chardet/euctwfreq.py,sha256=2alILE1Lh5eqiFJZjzRkMQXolNJRHY5oBQd-vmZYFFM,36913 +pip/_vendor/chardet/euctwprober.py,sha256=NxbpNdBtU0VFI0bKfGfDkpP7S2_8_6FlO87dVH0ogws,1753 +pip/_vendor/chardet/gb2312freq.py,sha256=49OrdXzD-HXqwavkqjo8Z7gvs58hONNzDhAyMENNkvY,20735 +pip/_vendor/chardet/gb2312prober.py,sha256=KPEBueaSLSvBpFeINMu0D6TgHcR90e5PaQawifzF4o0,1759 +pip/_vendor/chardet/hebrewprober.py,sha256=96T_Lj_OmW-fK7JrSHojYjyG3fsGgbzkoTNleZ3kfYE,14537 +pip/_vendor/chardet/jisfreq.py,sha256=mm8tfrwqhpOd3wzZKS4NJqkYBQVcDfTM2JiQ5aW932E,25796 +pip/_vendor/chardet/johabfreq.py,sha256=dBpOYG34GRX6SL8k_LbS9rxZPMjLjoMlgZ03Pz5Hmqc,42498 +pip/_vendor/chardet/johabprober.py,sha256=O1Qw9nVzRnun7vZp4UZM7wvJSv9W941mEU9uDMnY3DU,1752 +pip/_vendor/chardet/jpcntx.py,sha256=uhHrYWkLxE_rF5OkHKInm0HUsrjgKHHVQvtt3UcvotA,27055 +pip/_vendor/chardet/langbulgarianmodel.py,sha256=vmbvYFP8SZkSxoBvLkFqKiH1sjma5ihk3PTpdy71Rr4,104562 +pip/_vendor/chardet/langgreekmodel.py,sha256=JfB7bupjjJH2w3X_mYnQr9cJA_7EuITC2cRW13fUjeI,98484 +pip/_vendor/chardet/langhebrewmodel.py,sha256=3HXHaLQPNAGcXnJjkIJfozNZLTvTJmf4W5Awi6zRRKc,98196 +pip/_vendor/chardet/langhungarianmodel.py,sha256=WxbeQIxkv8YtApiNqxQcvj-tMycsoI4Xy-fwkDHpP_Y,101363 +pip/_vendor/chardet/langrussianmodel.py,sha256=s395bTZ87ESTrZCOdgXbEjZ9P1iGPwCl_8xSsac_DLY,128035 +pip/_vendor/chardet/langthaimodel.py,sha256=7bJlQitRpTnVGABmbSznHnJwOHDy3InkTvtFUx13WQI,102774 +pip/_vendor/chardet/langturkishmodel.py,sha256=XY0eGdTIy4eQ9Xg1LVPZacb-UBhHBR-cq0IpPVHowKc,95372 +pip/_vendor/chardet/latin1prober.py,sha256=p15EEmFbmQUwbKLC7lOJVGHEZwcG45ubEZYTGu01J5g,5380 +pip/_vendor/chardet/macromanprober.py,sha256=9anfzmY6TBfUPDyBDOdY07kqmTHpZ1tK0jL-p1JWcOY,6077 +pip/_vendor/chardet/mbcharsetprober.py,sha256=Wr04WNI4F3X_VxEverNG-H25g7u-MDDKlNt-JGj-_uU,3715 +pip/_vendor/chardet/mbcsgroupprober.py,sha256=iRpaNBjV0DNwYPu_z6TiHgRpwYahiM7ztI_4kZ4Uz9A,2131 +pip/_vendor/chardet/mbcssm.py,sha256=hUtPvDYgWDaA2dWdgLsshbwRfm3Q5YRlRogdmeRUNQw,30391 +pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc,, +pip/_vendor/chardet/metadata/languages.py,sha256=FhvBIdZFxRQ-dTwkb_0madRKgVBCaUMQz9I5xqjE5iQ,13560 +pip/_vendor/chardet/resultdict.py,sha256=ez4FRvN5KaSosJeJ2WzUyKdDdg35HDy_SSLPXKCdt5M,402 +pip/_vendor/chardet/sbcharsetprober.py,sha256=-nd3F90i7GpXLjehLVHqVBE0KlWzGvQUPETLBNn4o6U,6400 +pip/_vendor/chardet/sbcsgroupprober.py,sha256=gcgI0fOfgw_3YTClpbra_MNxwyEyJ3eUXraoLHYb59E,4137 +pip/_vendor/chardet/sjisprober.py,sha256=aqQufMzRw46ZpFlzmYaYeT2-nzmKb-hmcrApppJ862k,4007 +pip/_vendor/chardet/universaldetector.py,sha256=xYBrg4x0dd9WnT8qclfADVD9ondrUNkqPmvte1pa520,14848 +pip/_vendor/chardet/utf1632prober.py,sha256=pw1epGdMj1hDGiCu1AHqqzOEfjX8MVdiW7O1BlT8-eQ,8505 +pip/_vendor/chardet/utf8prober.py,sha256=8m08Ub5490H4jQ6LYXvFysGtgKoKsHUd2zH_i8_TnVw,2812 +pip/_vendor/chardet/version.py,sha256=lGtJcxGM44Qz4Cbk4rbbmrKxnNr1-97U25TameLehZw,244 +pip/_vendor/colorama/__init__.py,sha256=wePQA4U20tKgYARySLEC047ucNX-g8pRLpYBuiHlLb8,266 +pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc,, +pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522 +pip/_vendor/colorama/ansitowin32.py,sha256=vPNYa3OZbxjbuFyaVo0Tmhmy1FZ1lKMWCnT7odXpItk,11128 +pip/_vendor/colorama/initialise.py,sha256=-hIny86ClXo39ixh5iSCfUIa2f_h_bgKRDW7gqs-KLU,3325 +pip/_vendor/colorama/tests/__init__.py,sha256=MkgPAEzGQd-Rq0w0PZXSX2LadRWhUECcisJY8lSrm4Q,75 +pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/ansi_test.py,sha256=FeViDrUINIZcr505PAxvU4AjXz1asEiALs9GXMhwRaE,2839 +pip/_vendor/colorama/tests/ansitowin32_test.py,sha256=RN7AIhMJ5EqDsYaCjVo-o4u8JzDD4ukJbmevWKS70rY,10678 +pip/_vendor/colorama/tests/initialise_test.py,sha256=BbPy-XfyHwJ6zKozuQOvNvQZzsx9vdb_0bYXn7hsBTc,6741 +pip/_vendor/colorama/tests/isatty_test.py,sha256=Pg26LRpv0yQDB5Ac-sxgVXG7hsA1NYvapFgApZfYzZg,1866 +pip/_vendor/colorama/tests/utils.py,sha256=1IIRylG39z5-dzq09R_ngufxyPZxgldNbrxKxUGwGKE,1079 +pip/_vendor/colorama/tests/winterm_test.py,sha256=qoWFPEjym5gm2RuMwpf3pOis3a5r_PJZFCzK254JL8A,3709 +pip/_vendor/colorama/win32.py,sha256=YQOKwMTwtGBbsY4dL5HYTvwTeP9wIQra5MvPNddpxZs,6181 +pip/_vendor/colorama/winterm.py,sha256=XCQFDHjPi6AHYNdZwy0tA02H-Jh48Jp-HvCjeLeLp3U,7134 +pip/_vendor/distlib/__init__.py,sha256=hJKF7FHoqbmGckncDuEINWo_OYkDNiHODtYXSMcvjcc,625 +pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc,, +pip/_vendor/distlib/compat.py,sha256=Un-uIBvy02w-D267OG4VEhuddqWgKj9nNkxVltAb75w,41487 +pip/_vendor/distlib/database.py,sha256=0V9Qvs0Vrxa2F_-hLWitIyVyRifJ0pCxyOI-kEOBwsA,51965 +pip/_vendor/distlib/index.py,sha256=lTbw268rRhj8dw1sib3VZ_0EhSGgoJO3FKJzSFMOaeA,20797 +pip/_vendor/distlib/locators.py,sha256=o1r_M86_bRLafSpetmyfX8KRtFu-_Q58abvQrnOSnbA,51767 +pip/_vendor/distlib/manifest.py,sha256=3qfmAmVwxRqU1o23AlfXrQGZzh6g_GGzTAP_Hb9C5zQ,14168 +pip/_vendor/distlib/markers.py,sha256=n3DfOh1yvZ_8EW7atMyoYeZFXjYla0Nz0itQlojCd0A,5268 +pip/_vendor/distlib/metadata.py,sha256=pB9WZ9mBfmQxc9OVIldLS5CjOoQRvKAvUwwQyKwKQtQ,39693 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=nQFXN6G7nOWNDUyxirUep-3WOlJhB7McvCs9zOnkGTI,18315 +pip/_vendor/distlib/util.py,sha256=XSznxEi_i3T20UJuaVc0qXHz5ksGUCW1khYlBprN_QE,67530 +pip/_vendor/distlib/version.py,sha256=9pXkduchve_aN7JG6iL9VTYV_kqNSGoc2Dwl8JuySnQ,23747 +pip/_vendor/distlib/wheel.py,sha256=FVQCve8u-L0QYk5-YTZc7s4WmNQdvjRWTK08KXzZVX4,43958 +pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981 +pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64 +pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/distro.cpython-312.pyc,, +pip/_vendor/distro/distro.py,sha256=UZO1LjIhtFCMdlbiz39gj3raV-Amf3SBwzGzfApiMHw,49330 +pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 +pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc,, +pip/_vendor/idna/codec.py,sha256=6ly5odKfqrytKT9_7UrlGklHnf1DSK2r9C6cSM4sa28,3374 +pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 +pip/_vendor/idna/core.py,sha256=1JxchwKzkxBSn7R_oCE12oBu3eVux0VzdxolmIad24M,12950 +pip/_vendor/idna/idnadata.py,sha256=xUjqKqiJV8Ho_XzBpAtv5JFoVPSupK-SUXvtjygUHqw,44375 +pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +pip/_vendor/idna/package_data.py,sha256=C_jHJzmX8PI4xq0jpzmcTMxpb5lDsq4o5VyxQzlVrZE,21 +pip/_vendor/idna/uts46data.py,sha256=zvjZU24s58_uAS850Mcd0NnD0X7_gCMAMjzWNIeUJdc,206539 +pip/_vendor/msgpack/__init__.py,sha256=hyGhlnmcJkxryJBKC3X5FnEph375kQoL_mG8LZUuXgY,1132 +pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc,, +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=C5MK8JhVYGYFWPvxsORsqZAnvOXefYQ57m1Ym0luW5M,6079 +pip/_vendor/msgpack/fallback.py,sha256=tvNBHyxxFbuVlC8GZShETClJxjLiDMOja4XwwyvNm2g,34544 +pip/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661 +pip/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497 +pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-312.pyc,, +pip/_vendor/packaging/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488 +pip/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378 +pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +pip/_vendor/packaging/markers.py,sha256=AJBOcY8Oq0kYc570KuuPTkvuqjAlhufaE2c9sCUbm64,8487 +pip/_vendor/packaging/requirements.py,sha256=NtDlPBtojpn1IUC85iMjPNsUmufjpSlwnNA-Xb4m5NA,4676 +pip/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110 +pip/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699 +pip/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200 +pip/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665 +pip/_vendor/pkg_resources/__init__.py,sha256=hTAeJCNYb7dJseIDVsYK3mPQep_gphj4tQh-bspX8bg,109364 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__init__.py,sha256=SkhEYVyC_HUHC6KX7n4M_6coyRMtEB38QMyOYIAX6Yk,20155 +pip/_vendor/platformdirs/__main__.py,sha256=fVvSiTzr2-RM6IsjWjj4fkaOtDOgDhUWv6sA99do4CQ,1476 +pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc,, +pip/_vendor/platformdirs/android.py,sha256=y_EEMKwYl2-bzYBDovksSn8m76on0Lda8eyJksVQE9U,7211 +pip/_vendor/platformdirs/api.py,sha256=jWtX06jAJytYrkJDOqEls97mCkyHRSZkoqUlbMK5Qew,7132 +pip/_vendor/platformdirs/macos.py,sha256=LueVOoVgGWDBwQb8OFwXkVKfVn33CM1Lkwf1-A86tRQ,3678 +pip/_vendor/platformdirs/unix.py,sha256=22JhR8ZY0aLxSVCFnKrc6f1iz6Gv42K24Daj7aTjfSg,8809 +pip/_vendor/platformdirs/version.py,sha256=mavZTQIJIXfdewEaSTn7EWrNfPZWeRofb-74xqW5f2M,160 +pip/_vendor/platformdirs/windows.py,sha256=4TtbPGoWG2PRgI11uquDa7eRk8TcxvnUNuuMGZItnXc,9573 +pip/_vendor/pygments/__init__.py,sha256=6AuDljQtvf89DTNUyWM7k3oUlP_lq70NU-INKKteOBY,2983 +pip/_vendor/pygments/__main__.py,sha256=es8EKMvXj5yToIfQ-pf3Dv5TnIeeM6sME0LW-n4ecHo,353 +pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/console.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/style.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/token.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/util.cpython-312.pyc,, +pip/_vendor/pygments/cmdline.py,sha256=byxYJp9gnjVeyhRlZ3UTMgo_LhkXh1afvN8wJBtAcc8,23685 +pip/_vendor/pygments/console.py,sha256=2wZ5W-U6TudJD1_NLUwjclMpbomFM91lNv11_60sfGY,1697 +pip/_vendor/pygments/filter.py,sha256=j5aLM9a9wSx6eH1oy473oSkJ02hGWNptBlVo4s1g_30,1938 +pip/_vendor/pygments/filters/__init__.py,sha256=h_koYkUFo-FFUxjs564JHUAz7O3yJpVwI6fKN3MYzG0,40386 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatter.py,sha256=J9OL9hXLJKZk7moUgKwpjW9HNf4WlJFg_o_-Z_S_tTY,4178 +pip/_vendor/pygments/formatters/__init__.py,sha256=_xgAcdFKr0QNYwh_i98AU9hvfP3X2wAkhElFcRRF3Uo,5424 +pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc,, +pip/_vendor/pygments/formatters/_mapping.py,sha256=1Cw37FuQlNacnxRKmtlPX4nyLoX9_ttko5ZwscNUZZ4,4176 +pip/_vendor/pygments/formatters/bbcode.py,sha256=r1b7wzWTJouADDLh-Z11iRi4iQxD0JKJ1qHl6mOYxsA,3314 +pip/_vendor/pygments/formatters/groff.py,sha256=xy8Zf3tXOo6MWrXh7yPGWx3lVEkg_DhY4CxmsDb0IVo,5094 +pip/_vendor/pygments/formatters/html.py,sha256=PIzAyilNqaTzSSP2slDG2VDLE3qNioWy2rgtSSoviuI,35610 +pip/_vendor/pygments/formatters/img.py,sha256=XKXmg2_XONrR4mtq2jfEU8XCsoln3VSGTw-UYiEokys,21938 +pip/_vendor/pygments/formatters/irc.py,sha256=Ep-m8jd3voFO6Fv57cUGFmz6JVA67IEgyiBOwv0N4a0,4981 +pip/_vendor/pygments/formatters/latex.py,sha256=FGzJ-YqSTE8z_voWPdzvLY5Tq8jE_ygjGjM6dXZJ8-k,19351 +pip/_vendor/pygments/formatters/other.py,sha256=gPxkk5BdAzWTCgbEHg1lpLi-1F6ZPh5A_aotgLXHnzg,5073 +pip/_vendor/pygments/formatters/pangomarkup.py,sha256=6LKnQc8yh49f802bF0sPvbzck4QivMYqqoXAPaYP8uU,2212 +pip/_vendor/pygments/formatters/rtf.py,sha256=aA0v_psW6KZI3N18TKDifxeL6mcF8EDXcPXDWI4vhVQ,5014 +pip/_vendor/pygments/formatters/svg.py,sha256=dQONWypbzfvzGCDtdp3M_NJawScJvM2DiHbx1k-ww7g,7335 +pip/_vendor/pygments/formatters/terminal.py,sha256=FG-rpjRpFmNpiGB4NzIucvxq6sQIXB3HOTo2meTKtrU,4674 +pip/_vendor/pygments/formatters/terminal256.py,sha256=13SJ3D5pFdqZ9zROE6HbWnBDwHvOGE8GlsmqGhprRp4,11753 +pip/_vendor/pygments/lexer.py,sha256=2BpqLlT2ExvOOi7vnjK5nB4Fp-m52ldiPaXMox5uwug,34618 +pip/_vendor/pygments/lexers/__init__.py,sha256=j5KEi5O_VQ5GS59H49l-10gzUOkWKxlwGeVMlGO2MMk,12130 +pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc,, +pip/_vendor/pygments/lexers/_mapping.py,sha256=Hts4r_ZQ8icftGM7gkBPeED5lyVSv4affFgXYE6Ap04,72281 +pip/_vendor/pygments/lexers/python.py,sha256=c7jnmKFU9DLxTJW0UbwXt6Z9FJqbBlVsWA1Qr9xSA_w,53424 +pip/_vendor/pygments/modeline.py,sha256=eF2vO4LpOGoPvIKKkbPfnyut8hT4UiebZPpb-BYGQdI,986 +pip/_vendor/pygments/plugin.py,sha256=j1Fh310RbV2DQ9nvkmkqvlj38gdyuYKllLnGxbc8sJM,2591 +pip/_vendor/pygments/regexopt.py,sha256=jg1ALogcYGU96TQS9isBl6dCrvw5y5--BP_K-uFk_8s,3072 +pip/_vendor/pygments/scanner.py,sha256=b_nu5_f3HCgSdp5S_aNRBQ1MSCm4ZjDwec2OmTRickw,3092 +pip/_vendor/pygments/sphinxext.py,sha256=wBFYm180qea9JKt__UzhRlNRNhczPDFDaqGD21sbuso,6882 +pip/_vendor/pygments/style.py,sha256=C4qyoJrUTkq-OV3iO-8Vz3UtWYpJwSTdh5_vlGCGdNQ,6257 +pip/_vendor/pygments/styles/__init__.py,sha256=he7HjQx7sC0d2kfTVLjUs0J15mtToJM6M1brwIm9--Q,3700 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/token.py,sha256=seNsmcch9OEHXYirh8Ool7w8xDhfNTbLj5rHAC-gc_o,6184 +pip/_vendor/pygments/unistring.py,sha256=FaUfG14NBJEKLQoY9qj6JYeXrpYcLmKulghdxOGFaOc,63223 +pip/_vendor/pygments/util.py,sha256=AEVY0qonyyEMgv4Do2dINrrqUAwUk2XYSqHM650uzek,10230 +pip/_vendor/pyparsing/__init__.py,sha256=9m1JbE2JTLdBG0Mb6B0lEaZj181Wx5cuPXZpsbHEYgE,9116 +pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc,, +pip/_vendor/pyparsing/actions.py,sha256=05uaIPOznJPQ7VgRdmGCmG4sDnUPtwgv5qOYIqbL2UY,6567 +pip/_vendor/pyparsing/common.py,sha256=p-3c83E5-DjlkF35G0O9-kjQRpoejP-2_z0hxZ-eol4,13387 +pip/_vendor/pyparsing/core.py,sha256=yvuRlLpXSF8mgk-QhiW3OVLqD9T0rsj9tbibhRH4Yaw,224445 +pip/_vendor/pyparsing/diagram/__init__.py,sha256=nxmDOoYF9NXuLaGYy01tKFjkNReWJlrGFuJNWEiTo84,24215 +pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyparsing/exceptions.py,sha256=6Jc6W1eDZBzyFu1J0YrcdNFVBC-RINujZmveSnB8Rxw,9523 +pip/_vendor/pyparsing/helpers.py,sha256=BZJHCA8SS0pYio30KGQTc9w2qMOaK4YpZ7hcvHbnTgk,38646 +pip/_vendor/pyparsing/results.py,sha256=9dyqQ-w3MjfmxWbFt8KEPU6IfXeyRdoWp2Og802rUQY,26692 +pip/_vendor/pyparsing/testing.py,sha256=eJncg0p83zm1FTPvM9auNT6oavIvXaibmRFDf1qmwkY,13488 +pip/_vendor/pyparsing/unicode.py,sha256=fAPdsJiARFbkPAih6NkYry0dpj4jPqelGVMlE4wWFW8,10646 +pip/_vendor/pyparsing/util.py,sha256=vTMzTdwSDyV8d_dSgquUTdWgBFoA_W30nfxEJDsshRQ,8670 +pip/_vendor/pyproject_hooks/__init__.py,sha256=kCehmy0UaBa9oVMD7ZIZrnswfnP3LXZ5lvnNJAL5JBM,491 +pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_compat.py,sha256=by6evrYnqkisiM-MQcvOKs5bgDMzlOSgZqRHNqf04zE,138 +pip/_vendor/pyproject_hooks/_impl.py,sha256=61GJxzQip0IInhuO69ZI5GbNQ82XEDUB_1Gg5_KtUoc,11920 +pip/_vendor/pyproject_hooks/_in_process/__init__.py,sha256=9gQATptbFkelkIy0OfWFEACzqxXJMQDWCH9rBOAZVwQ,546 +pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/_in_process.py,sha256=m2b34c917IW5o-Q_6TYIHlsK9lSUlNiyrITTUH_zwew,10927 +pip/_vendor/requests/__init__.py,sha256=owujob4dk45Siy4EYtbCKR6wcFph7E04a_v_OuAacBA,5169 +pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/requests/__version__.py,sha256=ssI3Ezt7PaxgkOW45GhtwPUclo_SO_ygtIm4A74IOfw,435 +pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495 +pip/_vendor/requests/adapters.py,sha256=idj6cZcId3L5xNNeJ7ieOLtw3awJk5A64xUfetHwq3M,19697 +pip/_vendor/requests/api.py,sha256=q61xcXq4tmiImrvcSVLTbFyCiD2F-L_-hWKGbz4y8vg,6449 +pip/_vendor/requests/auth.py,sha256=h-HLlVx9j8rKV5hfSAycP2ApOSglTz77R0tz7qCbbEE,10187 +pip/_vendor/requests/certs.py,sha256=PVPooB0jP5hkZEULSCwC074532UFbR2Ptgu0I5zwmCs,575 +pip/_vendor/requests/compat.py,sha256=IhK9quyX0RRuWTNcg6d2JGSAOUbM6mym2p_2XjLTwf4,1286 +pip/_vendor/requests/cookies.py,sha256=kD3kNEcCj-mxbtf5fJsSaT86eGoEYpD3X0CSgpzl7BM,18560 +pip/_vendor/requests/exceptions.py,sha256=FA-_kVwBZ2jhXauRctN_ewHVK25b-fj0Azyz1THQ0Kk,3823 +pip/_vendor/requests/help.py,sha256=FnAAklv8MGm_qb2UilDQgS6l0cUttiCFKUjx0zn2XNA,3879 +pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733 +pip/_vendor/requests/models.py,sha256=dDZ-iThotky-Noq9yy97cUEJhr3wnY6mv-xR_ePg_lk,35288 +pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695 +pip/_vendor/requests/sessions.py,sha256=-LvTzrPtetSTrR3buxu4XhdgMrJFLB1q5D7P--L2Xhw,30373 +pip/_vendor/requests/status_codes.py,sha256=FvHmT5uH-_uimtRz5hH9VCbt7VV-Nei2J9upbej6j8g,4235 +pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912 +pip/_vendor/requests/utils.py,sha256=kOPn0qYD6xRTzaxbqTdYiSInBZHl6379AJsyIgzYGLY,33460 +pip/_vendor/resolvelib/__init__.py,sha256=h509TdEcpb5-44JonaU3ex2TM15GVBLjM9CNCPwnTTs,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 +pip/_vendor/resolvelib/providers.py,sha256=fuuvVrCetu5gsxPB43ERyjfO8aReS3rFQHpDgiItbs4,5871 +pip/_vendor/resolvelib/reporters.py,sha256=TSbRmWzTc26w0ggsV1bxVpeWDB8QNIre6twYl7GIZBE,1601 +pip/_vendor/resolvelib/resolvers.py,sha256=G8rsLZSq64g5VmIq-lB7UcIJ1gjAxIQJmTF4REZleQ0,20511 +pip/_vendor/resolvelib/structs.py,sha256=0_1_XO8z_CLhegP3Vpf9VJ3zJcfLm0NOHRM-i0Ykz3o,4963 +pip/_vendor/rich/__init__.py,sha256=dRxjIL-SbFVY0q3IjSMrfgBTHrm1LZDgLOygVBwiYZc,6090 +pip/_vendor/rich/__main__.py,sha256=TT8sb9PTnsnKhhrGuHkLN0jdN0dtKhtPkEr9CidDbPM,8478 +pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/abc.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/align.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/box.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/cells.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/columns.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/containers.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/control.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/errors.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/json.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/layout.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/logging.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/markup.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/measure.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/padding.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pager.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/palette.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/panel.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/region.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/repr.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/rule.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/scope.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/screen.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/segment.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/status.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/style.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/styled.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/table.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/text.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/themes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/tree.cpython-312.pyc,, +pip/_vendor/rich/_cell_widths.py,sha256=2n4EiJi3X9sqIq0O16kUZ_zy6UYMd3xFfChlKfnW1Hc,10096 +pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235 +pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064 +pip/_vendor/rich/_export_format.py,sha256=qxgV3nKnXQu1hfbnRVswPYy-AwIg1X0LSC47cK5s8jk,2100 +pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 +pip/_vendor/rich/_fileno.py,sha256=HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ,799 +pip/_vendor/rich/_inspect.py,sha256=oZJGw31e64dwXSCmrDnvZbwVb1ZKhWfU8wI3VWohjJk,9695 +pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 +pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 +pip/_vendor/rich/_null_file.py,sha256=tGSXk_v-IZmbj1GAzHit8A3kYIQMiCpVsCFfsC-_KJ4,1387 +pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063 +pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423 +pip/_vendor/rich/_ratio.py,sha256=2lLSliL025Y-YMfdfGbutkQDevhcyDqc-DtUYW9mU70,5472 +pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919 +pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 +pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 +pip/_vendor/rich/_win32_console.py,sha256=P0vxI2fcndym1UU1S37XAzQzQnkyY7YqAKmxm24_gug,22820 +pip/_vendor/rich/_windows.py,sha256=dvNl9TmfPzNVxiKk5WDFihErZ5796g2UC9-KGGyfXmk,1926 +pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783 +pip/_vendor/rich/_wrap.py,sha256=xfV_9t0Sg6rzimmrDru8fCVmUlalYAcHLDfrJZnbbwQ,1840 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=Ji-Yokfkhnfe_xMmr4ISjZB07TJXggBCOYoYa-HDAr8,10368 +pip/_vendor/rich/ansi.py,sha256=iD6532QYqnBm6hADulKjrV8l8kFJ-9fEVooHJHH3hMg,6906 +pip/_vendor/rich/bar.py,sha256=a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw,3264 +pip/_vendor/rich/box.py,sha256=FJ6nI3jD7h2XNFU138bJUt2HYmWOlRbltoCEuIAZhew,9842 +pip/_vendor/rich/cells.py,sha256=627ztJs9zOL-38HJ7kXBerR-gT8KBfYC8UzEwMJDYYo,4509 +pip/_vendor/rich/color.py,sha256=9Gh958U3f75WVdLTeC0U9nkGTn2n0wnojKpJ6jQEkIE,18224 +pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054 +pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131 +pip/_vendor/rich/console.py,sha256=pDvkbLkvtZIMIwQx_jkZ-seyNl4zGBLviXoWXte9fwg,99218 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=aKgm5UDHn5Nmui6IJaKdsZhbHClh_X7D-_Wg8Ehrr7s,5497 +pip/_vendor/rich/control.py,sha256=DSkHTUQLorfSERAKE_oTAEUFefZnZp4bQb4q8rHbKws,6630 +pip/_vendor/rich/default_styles.py,sha256=-Fe318kMVI_IwciK5POpThcO0-9DYJ67TZAN6DlmlmM,8082 +pip/_vendor/rich/diagnose.py,sha256=an6uouwhKPAlvQhYpNNpGq9EJysfMIOvvCbO3oSoR24,972 +pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501 +pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642 +pip/_vendor/rich/file_proxy.py,sha256=Tl9THMDZ-Pk5Wm8sI1gGg_U5DhusmxD-FZ0fUbcU0W0,1683 +pip/_vendor/rich/filesize.py,sha256=9fTLAPCAwHmBXdRv7KZU194jSgNrRb6Wx7RIoBgqeKY,2508 +pip/_vendor/rich/highlighter.py,sha256=p3C1g4QYzezFKdR7NF9EhPbzQDvdPUhGRgSyGGEmPko,9584 +pip/_vendor/rich/json.py,sha256=EYp9ucj-nDjYDkHCV6Mk1ve8nUOpuFLaW76X50Mis2M,5032 +pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252 +pip/_vendor/rich/layout.py,sha256=RFYL6HdCFsHf9WRpcvi3w-fpj-8O5dMZ8W96VdKNdbI,14007 +pip/_vendor/rich/live.py,sha256=vZzYvu7fqwlv3Gthl2xiw1Dc_O80VlGcCV0DOHwCyDM,14273 +pip/_vendor/rich/live_render.py,sha256=zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64,3667 +pip/_vendor/rich/logging.py,sha256=uB-cB-3Q4bmXDLLpbOWkmFviw-Fde39zyMV6tKJ2WHQ,11903 +pip/_vendor/rich/markup.py,sha256=xzF4uAafiEeEYDJYt_vUnJOGoTU8RrH-PH7WcWYXjCg,8198 +pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305 +pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970 +pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828 +pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 +pip/_vendor/rich/panel.py,sha256=wGMe40J8KCGgQoM0LyjRErmGIkv2bsYA71RCXThD0xE,10574 +pip/_vendor/rich/pretty.py,sha256=eLEYN9xVaMNuA6EJVYm4li7HdOHxCqmVKvnOqJpyFt0,35852 +pip/_vendor/rich/progress.py,sha256=n4KF9vky8_5iYeXcyZPEvzyLplWlDvFLkM5JI0Bs08A,59706 +pip/_vendor/rich/progress_bar.py,sha256=cEoBfkc3lLwqba4XKsUpy4vSQKDh2QQ5J2J94-ACFoo,8165 +pip/_vendor/rich/prompt.py,sha256=x0mW-pIPodJM4ry6grgmmLrl8VZp99kqcmdnBe70YYA,11303 +pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=9Z8otOmM-tyxnyTodvXlectP60lwahjGiDTrbrxPSTg,4431 +pip/_vendor/rich/rule.py,sha256=0fNaS_aERa3UMRc3T5WMpN_sumtDxfaor2y3of1ftBk,4602 +pip/_vendor/rich/scope.py,sha256=TMUU8qo17thyqQCPqjDLYpg_UU1k5qVd-WwiJvnJVas,2843 +pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 +pip/_vendor/rich/segment.py,sha256=XLnJEFvcV3bjaVzMNUJiem3n8lvvI9TJ5PTu-IG2uTg,24247 +pip/_vendor/rich/spinner.py,sha256=15koCmF0DQeD8-k28Lpt6X_zJQUlzEhgo_6A6uy47lc,4339 +pip/_vendor/rich/status.py,sha256=gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ-dxhCnwo,4425 +pip/_vendor/rich/style.py,sha256=3hiocH_4N8vwRm3-8yFWzM7tSwjjEven69XqWasSQwM,27073 +pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 +pip/_vendor/rich/syntax.py,sha256=jgDiVCK6cpR0NmBOpZmIu-Ud4eaW7fHvjJZkDbjpcSA,35173 +pip/_vendor/rich/table.py,sha256=-WzesL-VJKsaiDU3uyczpJMHy6VCaSewBYJwx8RudI8,39684 +pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370 +pip/_vendor/rich/text.py,sha256=_8JBlSau0c2z8ENOZMi1hJ7M1ZGY408E4-hXjHyyg1A,45525 +pip/_vendor/rich/theme.py,sha256=belFJogzA0W0HysQabKaHOc3RWH2ko3fQAJhoN-AFdo,3777 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=yCLVrCtyoFNENd9mkm2xeG3KmqkTwH9xpFOO7p2Bq0A,29604 +pip/_vendor/rich/tree.py,sha256=BMbUYNjS9uodNPfvtY_odmU09GA5QzcMbQ5cJZhllQI,9169 +pip/_vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549 +pip/_vendor/tenacity/__init__.py,sha256=3kvAL6KClq8GFo2KFhmOzskRKSDQI-ubrlfZ8AQEEI0,20493 +pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc,, +pip/_vendor/tenacity/_asyncio.py,sha256=Qi6wgQsGa9MQibYRy3OXqcDQswIZZ00dLOoSUGN-6o8,3551 +pip/_vendor/tenacity/_utils.py,sha256=ubs6a7sxj3JDNRKWCyCU2j5r1CB7rgyONgZzYZq6D_4,2179 +pip/_vendor/tenacity/after.py,sha256=S5NCISScPeIrKwIeXRwdJl3kV9Q4nqZfnNPDx6Hf__g,1682 +pip/_vendor/tenacity/before.py,sha256=dIZE9gmBTffisfwNkK0F1xFwGPV41u5GK70UY4Pi5Kc,1562 +pip/_vendor/tenacity/before_sleep.py,sha256=YmpgN9Y7HGlH97U24vvq_YWb5deaK4_DbiD8ZuFmy-E,2372 +pip/_vendor/tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383 +pip/_vendor/tenacity/retry.py,sha256=jrzD_mxA5mSTUEdiYB7SHpxltjhPSYZSnSRATb-ggRc,8746 +pip/_vendor/tenacity/stop.py,sha256=YMJs7ZgZfND65PRLqlGB_agpfGXlemx_5Hm4PKnBqpQ,3086 +pip/_vendor/tenacity/tornadoweb.py,sha256=po29_F1Mt8qZpsFjX7EVwAT0ydC_NbVia9gVi7R_wXA,2142 +pip/_vendor/tenacity/wait.py,sha256=3FcBJoCDgym12_dN6xfK8C1gROY0Hn4NSI2u8xv50uE,8024 +pip/_vendor/tomli/__init__.py,sha256=JhUwV66DB1g4Hvt1UQCVMdfCu-IgAV8FXmvDU9onxd4,396 +pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc,, +pip/_vendor/tomli/_parser.py,sha256=g9-ENaALS-B8dokYpCuzUFalWlog7T-SIYMjLZSWrtM,22633 +pip/_vendor/tomli/_re.py,sha256=dbjg5ChZT23Ka9z9DHOXfdtSpPwUfdgMXnj8NOoly-w,2943 +pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254 +pip/_vendor/truststore/__init__.py,sha256=qzTLSH8PvAkY1fr6QQ2vV-KwE_M83wdXugtpJaP_AbM,403 +pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/truststore/_api.py,sha256=xjuEu_rlH4hcdJTROImEyOEqdw-F8t5vO2H2BToY0Ro,9893 +pip/_vendor/truststore/_macos.py,sha256=BjvAKoAjXhdIPuxpY124HJIFswDb0pq8DjynzJOVwqc,17694 +pip/_vendor/truststore/_openssl.py,sha256=LLUZ7ZGaio-i5dpKKjKCSeSufmn6T8pi9lDcFnvSyq0,2324 +pip/_vendor/truststore/_ssl_constants.py,sha256=NUD4fVKdSD02ri7-db0tnO0VqLP9aHuzmStcW7tAl08,1130 +pip/_vendor/truststore/_windows.py,sha256=1x_EhROeJ9QK1sMAjfnZC7awYI8UnBJYL-TjACUYI4A,17468 +pip/_vendor/typing_extensions.py,sha256=EWpcpyQnVmc48E9fSyPGs-vXgHcAk9tQABQIxmMsCGk,111130 +pip/_vendor/urllib3/__init__.py,sha256=iXLcYiJySn0GNbWOOZDDApgBL1JgP44EZ8i1760S8Mc,3333 +pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=Rp1mVyBgc_UlAcp6M3at1skJBXR5J43NawRTvW2g_XY,10811 +pip/_vendor/urllib3/_version.py,sha256=azoM7M7BUADl2kBhMVR6PPf2GhBDI90me1fcnzTwdcw,64 +pip/_vendor/urllib3/connection.py,sha256=92k9td_y4PEiTIjNufCUa1NzMB3J3w0LEdyokYgXnW8,20300 +pip/_vendor/urllib3/connectionpool.py,sha256=ItVDasDnPRPP9R8bNxY7tPBlC724nJ9nlxVgXG_SLbI,39990 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922 +pip/_vendor/urllib3/contrib/appengine.py,sha256=VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj_-5BaCz4,11036 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk,4528 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=hDJh4MhyY_p-oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM,17081 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=yhZdmVjY6PI6EeFbp7qYOp6-vp1Rkv2NMuOGaEj7pmc,34448 +pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097 +pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 +pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 +pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/backports/weakref_finalize.py,sha256=tRCal5OAhNSRyb0DhHp-38AtIlCsRP8BxF3NX-6rqIA,5343 +pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665 +pip/_vendor/urllib3/poolmanager.py,sha256=dnQHy25qCcoJZGM8zrcmuW48tHF3UO83bxvkySwtf24,20705 +pip/_vendor/urllib3/request.py,sha256=YTWFNr7QIwh7E1W9dde9LM77v2VWTJ5V78XuTTw7D1A,6691 +pip/_vendor/urllib3/response.py,sha256=fmDJAFkG71uFTn-sVSTh2Iw0WmcXQYqkbRjihvwBjU8,30641 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901 +pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605 +pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 +pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=6ENvOZ8PBDzh8kgixpql9lIrb2dxH-k7ZmBanJF2Ng4,22050 +pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177 +pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758 +pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 +pip/_vendor/urllib3/util/timeout.py,sha256=cwq4dMk87mJHSBktK1miYJ-85G-3T3RmT20v7SFCpno,10168 +pip/_vendor/urllib3/util/url.py,sha256=lCAE7M5myA8EDdW0sJuyyZhVB9K_j38ljWhHAnFaWoE,14296 +pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403 +pip/_vendor/vendor.txt,sha256=4NKk7fQhVsZw0U-0zmm9Q2LgGyaPXacFbnJAaS0Q6EY,493 +pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579 +pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc,, +pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979 +pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305 +pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563 +pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED new file mode 100644 index 00000000..e69de29b diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL new file mode 100644 index 00000000..98c0d20b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.42.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt new file mode 100644 index 00000000..26fa3616 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt @@ -0,0 +1,4 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main +pip3.12 = pip._internal.cli.main:main diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__init__.py new file mode 100644 index 00000000..be0e3edb --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "24.0" + + +def main(args: Optional[List[str]] = None) -> int: + """This is an internal API only meant for use by pip's own console scripts. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__main__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__main__.py new file mode 100644 index 00000000..59913261 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__main__.py @@ -0,0 +1,24 @@ +import os +import sys + +# Remove '' and current working directory from the first entry +# of sys.path, if present to avoid using current directory +# in pip commands check, freeze, install, list and show, +# when invoked as python -m pip +if sys.path[0] in ("", os.getcwd()): + sys.path.pop(0) + +# If we are running from a wheel, add the wheel to sys.path +# This allows the usage python pip-*.whl/pip install pip-*.whl +if __package__ == "": + # __file__ is pip-*.whl/pip/__main__.py + # first dirname call strips of '/__main__.py', second strips off '/pip' + # Resulting path is the name of the wheel itself + # Add that to sys.path so we can import pip + path = os.path.dirname(os.path.dirname(__file__)) + sys.path.insert(0, path) + +if __name__ == "__main__": + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py new file mode 100644 index 00000000..49a148a0 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py @@ -0,0 +1,50 @@ +"""Execute exactly this copy of pip, within a different environment. + +This file is named as it is, to ensure that this module can't be imported via +an import statement. +""" + +# /!\ This version compatibility check section must be Python 2 compatible. /!\ + +import sys + +# Copied from setup.py +PYTHON_REQUIRES = (3, 7) + + +def version_str(version): # type: ignore + return ".".join(str(v) for v in version) + + +if sys.version_info[:2] < PYTHON_REQUIRES: + raise SystemExit( + "This version of pip does not support python {} (requires >={}).".format( + version_str(sys.version_info[:2]), version_str(PYTHON_REQUIRES) + ) + ) + +# From here on, we can use Python 3 features, but the syntax must remain +# Python 2 compatible. + +import runpy # noqa: E402 +from importlib.machinery import PathFinder # noqa: E402 +from os.path import dirname # noqa: E402 + +PIP_SOURCES_ROOT = dirname(dirname(__file__)) + + +class PipImportRedirectingFinder: + @classmethod + def find_spec(self, fullname, path=None, target=None): # type: ignore + if fullname != "pip": + return None + + spec = PathFinder.find_spec(fullname, [PIP_SOURCES_ROOT], target) + assert spec, (PIP_SOURCES_ROOT, fullname) + return spec + + +sys.meta_path.insert(0, PipImportRedirectingFinder()) + +assert __name__ == "__main__", "Cannot run __pip-runner__.py as a non-main module" +runpy.run_module("pip", run_name="__main__", alter_sys=True) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f00fa37d234a37cf0a7151488704058947ddcdd GIT binary patch literal 736 zcmX|9&ubJh6i#Mlx9hI8_~TL!8U>LBJJDLyiWI~m2wH{qw3i_}lkSGjBq7P{I;BDp z4}u=Nwf+Z+e~K4-or{VmZH;DMsjrFOIEo zlpNfGWCvv^!#OH&4;Mi%z$goPVK$XTJm8o|v(V!`Yw*T;lr>*9dd({Awtjk$Zcs;$ zg>`l7sdhq1mTyM$3-R@pI$~yE>!#tZG}1HpZy{vf4=zA}={O7g^cNVT0Bzwd^y#R3 z6?MbSowcE`1Rf@dkd7OeLGC|$M3l@cQg9|6SyzUXmXm%(w9r>AQDaF`C9TRiv8fT- z*|^;%U=N{{WtsR#mSo&9k=tv;a!!WMX?vH_fpEjJAE&CIy3&jSCKc9}+|t_%i+AD) zkO_c&7uT(1Y?#*Ez*by@&Nw+{8J7;AV=kSkw1QP@TK=EF`2C;c)`Jjo_>vA)!RdhY zjo>+5=61s=O;^>r8#BYnG9U3==>o9G163N!=@XTeIiFioDz{V=I_LiDT&l*FRWu%P zIik7fg90~H@@9Nvo?7AfoM!0;8-NtADgm;>B}uHSIx3iurUQhU;Py0xZS<#&8jIgM zXWuQqS^5&q9>5}qUg=KNO;>3l2gaYIi6GRSBpGpI;T9xG9a?AV5JXQ9KO%F|_xUS% z*t%CtxG$MAQ2MjBT?qRj#`r6`^zGES?ar^}6h8m@`EInk`u@b;%;kLq^@sGge@&qN E0z_5I+5i9m literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0f475541bb2bd7d3fab30ccb345c3a3f3b1bdc6 GIT binary patch literal 892 zcmb7C&ubGw6n?Y2`JGfMwa`|iSOjy(F2+g%ilH=z9;y-i1-UHS>?GM_f3dqwTm@-F zXoEsm1Zz*dD*02q*j7Qd2nA2x0=@O*Op+x9>%n)J_syGc-uKO8zNAudAaQN~ZT$%g z@QZGO2#vtWO9Ze3GRR1U@-U+^!l=Oo)Nz(!hHPYp0St}sxE`S12vnICSaaw1Xv6~c zILpu@E@&XYA(?4j2e2LxjdMISQbXq1^*@-AKq<&&<{v&M&ngVD44COLLrk2;WOm^6 z3Yi|K#?5OX|sBK7lp@7r7`M`c3Kgeek2As7Z=0ifQC?6s0G8#;|?X zc5RUD$}N7 z@}i}&%p<$sWtyv0Ig(9|_j$sN9jjGd@ zEIePtEvy=*hIMCt*;u!1EZj5XbrokG8HQ>Lie{>qo@OdW+m>8`Z(+S9sLGmPx=!8D zZ}K;?f~`0>GkS_G5RXDI3Ep&1qj$7H%e&Szu|&U${edif79n&5u_K80lfXqb^PT+G zQs=gp^<2-|ao@S`Uwpl|u+J|1AcrfRmCe=8syF$%)QBFbK8Y( z;bV3$x0~B5>=r)d59byS6Sp>s!Oc>qS7LU2)#xiZ(ef;L> PckWU@0^F=MMXdb+Wj)C! literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..46ab1f027b2c1595fff03dc1cf19405652f44ce3 GIT binary patch literal 2255 zcmaJ>O>7fK6n?Y2{*ST22?p=#)jLsfxjr5=0iy%!s!Cai=+)gGE#z=yV+`exS)NVFYk-^|-L@0<7D zeDi)zCgXr(fAjYAHz9!ExDt$5XVG>DzzS$k1dV8dL5f5Zi-IQIgrZ2vOf+zKHEV(v z+748h6#(o(0cc1I&m>>jgB4o-7vTY(%!jv62($-?%15BzAYNRNVg%=i5v|0EF~Vbw z8u3b^m>}Fg!9Us+_ylt?DZm-fVmCpH2e`#enAI--jMwGNp4T;htr5iC^q^x15D3uC zT4J^zfJM%M))m-q@ZFJ_egA@!)DqgJ?@|v$-$tM=WYY`Z4qv6EnnPuJRV_J2U3R8* zCYP*gUAD?{Rj=mcc^&_mvMOtOxlCZOhp$*#4R@DR^KD1IjBb^xWjp9Lr>k+*?C3IcREPR!tn;8pv%)%$ zem#Ps)VVos00}>CX&*#^Od>O{Tk#(sns5^q;S>b53T|iuvf}6ql79p75IT8?=Yb&V zB7BkpxK21*{jo>_jIYQFA#i)M1a(nTmqHNZ&s)Y%w?98iJrc-o|8djC(Ee}~Wo6*8YUcCk;Ez4j9ESBL_WuRou zGqqmG&*60x4E=JUT6d-`^H6^9V1ell9jL0MS#^rC0^VamQBV%pHPfWFqU5Xf7qMeg z)TCFd_KAgEbJS+KWhxkP{+MBvRD+$!zqF?@bk>dH5BO^d9%gcPu6#Lkhpe1#W^#Ws zUi}+Ay_mEs%~-mLbEJdEc&%hRfznO9c7~0W1pcvJ6icv{*!0EG&yOP9-7}9exmF_A zkaBG_!8$M7!by)~9e@rqWzC|17P23yg= zTh3Z4b1PwU7GheX7;aQic$kXf#udeHC%EoXlq)sWO8~V*$xs=qP<#`b7wmoTApGci z5X|OcAATOUZ^BwA{agr#y4xazH$USm-+^!AM^;qbRFs9mA=Tux!?z^A@v3<1Q<0VC z0N*Y9vDuvElh_KP=;KB1##F<>hsf$In{gwGqFE)3Sw!7UjeR_M_QI$#K78@g$oTMt z_gLJn;Q8og*>d9(b%xDx_^R%>;j(2{RL2b=c(v|k{C0{BAzx8T*t)4*_c;);Sf1aj zo#`aRo3^6Z+femt;l{9Bs^Z_hZZc{+_HMp6&g1UnvX}4Xci|QCMf8~e|Ac)Q|MBSK%~!-pC(tKy9wRP7n^+tTYZNg!Fx|5 ospa<{Ms_w}ys>+{g)*{p4bn@YRY*4>z1(wm`wz}9aLmj29|`I>7XSbN literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py new file mode 100644 index 00000000..96c6b88c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py @@ -0,0 +1,18 @@ +from typing import List, Optional + +from pip._internal.utils import _log + +# init_logging() must be called before any call to logging.getLogger() +# which happens at import of most modules. +_log.init_logging() + + +def main(args: (Optional[List[str]]) = None) -> int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b77c6c2e7c6bcc935012a56a430ab88329ef1f3e GIT binary patch literal 838 zcmZuvy>HYo6t|PyHT{w(?NSCX0)~@lEIy=Cgt|~MK^fZVmLr$EyE9E<%l2IrRHP1U zbm&G|*ije$4;CsRA!R`bF|ZXCmQFmUS0ZAUoVIE1wLR)$FZ1)D9Z=#C2%gtS=ZDYi;W)(Xi8KHYC^Q#w&#klp z6TKj9zG}3?(r<-7U2e;(g2%$xDtxM}kVTxeXccra*Rj8G_-|IbyMga;OdP zCo&you(T;K|9$ zL08yLCsJh<Zf4w1UIq#_10w7w57s6YxlG| zKvm8Erw`iAX*E;df^*Wx6P0hQu6*oFec5}WXC1^es?+d6UKhBk7cg{lVU|%H`;^kJ vPPCCIt#F-)@Q` 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ba28a641f33fb75f4f7ff9a289b16620bdfb80a1 GIT binary patch literal 12716 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 R7kK^|ey;UXj#b#H{s%UXmCyhH literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b88d76665331f4349bf93e7f3b4a57348024bee GIT binary patch literal 17717 zcmbV!e^47&o@ckz`hg@62#hcW+~$Wtwh^}DABp3!4aRotIN&i(QeijI%IXG$g~W6V z6Eu)Gsnjma`OZ)?v*4PUwNjP4kV^K3x!bz&+||`3xvSb#ZC#ZVoPz1`)Ov4ISDX7w zF`1hgPu1OhzOU8#0djJ)?eN~yd#_)=e((F^^ZmYW=kLnP9UQK<^v#j~aD?Ojk$xDL zEnC!ljGen^nEy(J8GWPf8-wxbJbYfW(crK=CP(9yWDViF-Xua0cNPmlJo(Uov88mC!^ zYB)L^k;TcFB8if$hLkXd85So;WCc?np@9qE5l`%7lM}~-VMPqlqlc8(nBxmt@;;wU zGj~U)G@&;fifi`sc=zDdh^z@0!)jc!^~sZ0rp9H>-ak$=3q~}{m5K3)>@#VeqP0Au zC^1FbRaAEti*q_Q5s~_0@gDhNEGWs6kJoI$@o_1vs8oFMd|z+>ivuW@4a@P1vEgA^ z!PpKts!k|!0Npe}j!uke!n5J1l(3D5$Nk}GIANy(y(l`{uFHyw$!Wrf92wVy2~}1! z>u@A?71I^ea9q~Ra`bw_h6GEY_$-?6{J@#Zn)Tep{+{lOnlNzw${EdkrtbyKh9vMp z_hn6>rPr(q$U=#RvgFB#R6uIR--d!@k(=g53tL$ij(b0wk5bP~7l|8#G-v4kEE5-Y zlg#gDM^!A-oFqt=dXD-Ia6W6I`?=sX&={jB+HDnEMKr9)!$Cy?L8@YGNK|7JN=Ozv z@YZ1^7G+c(Qy9hiG(PZ%?@X9FJHH@V)8{j5mPl+8>t<8r@klTvYYsIYRN^X;ua8$6 z(MzQniH{b#M!+Op!@;XcSdMh{%IdXvY`kkAHWZ%>f&_cz>vAME&Yp+eS5&#{xtKH& zkvp%%ViC0~JO=uq*3M9DQVmXZ`LAP&U6JtBuJNh(NG$q<|G>d6+P2Q|VCWhcRPDlU zcLl;x5GP2mi}pRo#QyOq%^irwl(AqWoR9;wZ%R96N+MQ;R^V=M51j5>$L5axi{op~ zooVOJq&YdT>h#^{UAH;^;`KLPpO4?OHLSa<=ey^7W?!8Z)}8Jf&u-vOuJp!VLJKqs zKh0g|l`6?J&Hadz%s(;D@bMfeO!LMDzKMR1Ap^l618l3M?-B1$yzs0%B}y?_6{E2@ z?QJ{=VI!fe%Hu(ZEyxQ)N(7@4$rHbLNmfRJzyUqpvgrglo z3se%6PJTgi^qCY=oti}*kA&m+MH{S@%f!WjF;EaKJCTMcD!Zwv61=EFtjS}L4gow? z@uT_}{#26pH@J11W4`r`*E0fNeqjB;;T7x3XvWN!_wX4rS62I#opbL>Hm+85rR-f; zU)qlO(9(fbXJbleR5~z32!FYYv^Qfi36ogl^6NTEliGAixwY=)ZgC;gF#cY~tY^45 zF)O=9twt%IkCx@jMroRhGfY9hjon!=-Ruy!8UCL$UfgAjJX&Ft^7+r|6<8OwWw~#J`ph{3!U` z3T>TMNs=g_iyYENs%DC*nlK)Wk7&YZEF9I`r~CWPo&2hCj^qaS`I9Htp1hQP@>1&C zFRVWK;{P_Ac39W31)@ec^B1tKL&7q2~Vf9e2F9y>}XJH{7>7Xpl8~ecE2X^u(%t=dY{k<}6D?_wC*d zn^2G8YQJ)D-tCLS3&V?%g~&Tc*IJIHTaMj5yxP+J-%hU94&3Pf++I$zNY(o8qvV)# zq_(xCYIf&-v@h>W)jXB42`+1f6D-!>KlEaPY&Dkl_I3(Ig2#?mrfcJ4Fvwp(^vE0x z29Asc7z)jjSr#Ngw#Zi6F3BR9hOD#P5HDHZDj&2-Es_lo)Gk@jqbv(b?Wl2}#woi1 zSj&ePSk1PTp{+u4$Yp3R2e@_Ox10TT$>sX!QaS1>^*(r-AXVUZ6`tfq?m=FOyjrfo z2;1`G51FK@w*&))4A!Eb2mQQ&(^i0IdS2a-l|k(7x!*dtu18-2(mSL&^xM95-kY9e zmFm&E0k!%YmKD9>4zx99+pKbvu`2Zb*)?cDkDY8@#cv=;jc5^ZFRfdhJ}Ta;3AMY} zoOi+)Vmly-sB1<~JX_j@a?33DDnHl?wc4tcpDu(8!T*7MeFh8(m{f@W0ho$mg#%z) z6fY^U>tUd5F-WK%_+tpzh_q`k6oQr{;7w|n84~oPXbi(TU?W`_39Di#0u@S~09oUz zI9@P%_oeed@4>hj2e?zkX2S#^{7#srSybaw5i&7E()u(bK!JEnL1#k!I>z5@c!cAy zMa1U(AQMqZR_F#ckO3u(r#1Wa*JhIqMgR#_aR{I>h?&bpOTf$xKoffO)fh}1Dj37j z)Qm?Mj}{3VLMB4^T?atHtr$-Zs#CO@x*a$zdr`UYDCnS z7!8MHKkL<}*~4lqLU>6li@@>-#G;WYr3qvg%4#(fIgWHa{oc3?viKnnq(QapniHnE ze+iLkFcHs9o8CA*U7(+V{+^B-eg@#dQg}i#jXI4H^Ld;!0lVTkRFK!P2JU!2tD`sP zK$O6g0Yg+_Uig*M!SS5F1sXDkOkqMpc#j$Lw0W5OzUih-Af0E%J-L~E-96#rdvbVY z80JVI_a0M*E;UaUlzisC#Nl&5ui+@@Gc0APlt?PKDPpInj*yioUX{gI6n{hFcV`l& zeWI@d_;g|%R*5|T^dF7~0-F1U?u+Mp0~h!UfzuXJk&mI7r1}&QI#V@ z1>@LYK$0o0l?4Kfn*)KIUcJHes&Wp`OVpk&lsbN6{xaIs50L!s1_uQ-XG`1b?%C@f zIBQZ)G5ONp#L{hN?t5C-E6=S}_N6QP)@$k(&o7++ap;}a58SIwPp;NHwP7|@c{a>K zbp^Cpc}2#-ZQnI3+$>+;-i)jQinrqkbo4X4W4)ne_T2pCxo01;pVY}{Jyg_q$bmLj z#>$=H&+)UuXZEJwKP;yae*e&FI^nCsFUna>aG<&U41a+I{3T$?(GjbzO3$-)n1sgWp$4jBmB_Q!7Y~^GXH!2 zkhwG?kkjFDoA-4a1-QZ|{><0}Qk;3mohnAcaQaB_()nSKjHw+y_jncX@ok=t( zOH2V0Oeor5yGz%MU^Fk}c&57#bwPii$XhDghZg3epS6Q>>-kEmq zTywXj-EFJx_LRMyne&<%FAyrU*2(-}#661w)`y3!n}OjLS(Y>X~O$m0nS1AlSCTfEM>hFj>b zK92;%TU|SAzhBX~6k4rlo;7Do*0LU+k!?%5x+Qr!UEPs#b%18Q4>0G;x2`(#^vI$mUW6k8)df6&qFPhRHAU z%wybJhV)?)pXA!6OEq2Km}@Ktpzu}%x6K-RRy z08Y>@!e|bvQg^ls@VM^b=IB1<=tzK|Wiah7|%Xnq^4$it7?vvt@_Wy~DJR zpl!Oc^o_Ag(|4}nN4Q75g9KiN9BHqU>TF5dTkhH0n8^O#Ybkr<>}%_F4Qq7=({%?| z>kiG8&st`$KX6v1oQ?Mz_AL*rHXN9H4ru2JP)tqzT6J5xx-B_;uiC#}S-V!*oUUw6 z9=%t&cirW=bz$zp{A5x{%J*FR9_%|XE9gFq#a9+yN!weK18KXDO`$1mZ(5p24t-|t z)E$(CB8hgJsAA)PG0u3rF#CGl{0-beyj8++`FLuBNm7yLl&xY9cRDfaO;-ti8_%04 zCHbu+uNeHMc)(31+>XRe2ED7!f_dgnJ0KB+lAKb^%iA`+0DcznGB@fi(W8jl{@9hB z=D)?^7*R;HJRb%9em#RKK|H=Map)|J)QEUKdvGB#_qzBeVd+~3UWVHqCN+HY(Bd(L zndw3C>cp_$=h9WnFos|-iSZ}XDtVSxM$oF2EAm(jj2~l%b4+Dx71=t2H?N^%5hsUe z+z2IOln~N<3#JbF)xujFL~(Q6K|hL*B(qe z4{lXc5B|Rx{y`CguUOai_onyve)!@i(!Koy(1Kpydd&qGOm~?1MSCXu#^fQFsoOU%Q4=?Y&=Q{AfRe9^;+{LAuJ59Hn(yor>>a;5>3v$2( z?@fj{lLd+{3%>S5ka2vWB*D#e^>QzdavalW1dK?&uxqr0egt3h1|Jo|oV+uAG-sw8 z<8WL_{gyjAF?g5f%D8xrcc%-^Di4zj!BmnvbNq{72Q&T4&+cYK;HJzi+yTJ&Nx0iz zf)?eun=akzfK8HfSHLEzh4Vkhxsou=<6zA)EdaU+#{AyI5ygz~nlPD%aMr}G0q8#+ zwoNDsorQ*@onv4QWePqbc!B(h@)u#dFrXY0+f`NT$h6jpHyu?^2MEBveeuSAl z`L3m1QDVY$Oa!Ac9__~xYgR-H;Otrx!cq7lNIEJ{P{N$}Hk=zU%_+pj<)~(%I09L- z^$+N%k(^KflngND7*peiGz*(u&cBe=tAdJ`-E4kR-QQsx^{1=)q^_o?UV;Z@cH}BCP2Bfx_JNuP?lwoLKdC-gEggR$IB}{)0@xi4)CLo@Dj#V)N#Nf_<#lFBEu`Ei*qOP7;*D;!x<+YWmo?A=}rC{IF0b0aa%#2 zr|&6PvwewnGJrupLBsqF723WGQB8sP{E5~V!;uKt!-(I&xewwtC_bc3h55n!O7MV1 zrhI}f_=zx->qs<3U-RJ?diK${>v-Bc;z$uMIH4NO1hjq@TVAQkqhHcH19Bl1QUVRP1AfSBeyhW znP#UU25&%=(x!!pyHSyPO~a=^k- zzKsq=h8Q#A5}Wi}frb1}bOZ4*3|g=tLyamk@J0$KdRr0KB}XNnm1#1~rN30x z#Y$WU`w^YhJor?JdYQ$jt2X5deka6D@{AU#=p6ei^iuyj5?GDi9ZS7y4F}T=2Ui;o zt$Gj7y4IcEA6xE}-7ZTzo0A8U-%dH(Kj``Ch4(HjAOF;OloTHzUB<*$b@N}D&2XUG zx$^1rX>duvRT||C* z@Y(yiGED6{{o(VUoV!GJ8$n?_O7(8Zhvy#id(C;EtW5oFAb+Fcdu1; zrYk#_Csu}*W1m%?_;MSD|I&;nGD*Rt6I-AnKTJ+${2#n^;UQHiNlWOkkTXE@B)2zR z=#iD|#HpoFW&u}sGcGolI^Y6#8RHOlm5?*K+peVlr8Fi5&l&pF7#o~-8kzwi8$J`X z?O9+pLtzqy?}HkJT8%?d7%WBAKD(|xDMIjSOqJo}08y%OWg=v_oi%&bP*Qc$CSQp1 zCK5zE<$}s2=Df=ic7BTr3@BoYEz~@V%0yi$Y9>B#V%b#Eo^%paajRmkBIP~xVf!bC z@7ce-UbStlsy$uRzHC{o^3PfycpDc1%vQY}4>?oWB_4_=i^9CCHNM$1FkG0S;!V4D zt+_hLRH<3>ok;sm+@1Wyvg+&m%+;T<(4FM6&8ekAGlW=?sihvwtI*X~>bS-rjUq#( zgeodYFgcS$*&BD_sq89cu;gLdj2VX8CgOfTz zU1G08O*gpmWinqD}=T} zv#|13W5lfw3T&yr4x8O3!$kR47$LE96TRcLix>{^@P^CpepTaIRcE@YbG52#)`~bE zSH-QPb4LlBF16iriuapZ*P5P6H$8Q?ZMEstY=6e&C_lr)WM6bHIG4^W_s=`;RUXgO zFp8eNK3o2~ud2D4-48iSx##oRqw9_S<=0dGlXt(H+VSjq{m!o}hUI}%&>B(q5rUsE zCVJnM@74CEDtrF`K0(bRm7=gda#VNk;y&87ucyiUak;B!yZPho7L<$3kDPE`!X1x0 z_lf6t?QxFcQX&`vHFt)A!Lt_x{MWkiwhB);uFMJlW8q2x#?ZwoVm#G^lqcV?@#!ln1ceB&dEfxwLUTm>Ym_{#nD7$qJ5e6NdG3%9Vksmz2`0~Qb za0IW}_oVH6n0ICuBwVt6`OwR-x=#PbY$|i;>N867BVk;mK67Tv1+*}; z1&$1WQy?AYa1j6u@l{9ytp#vAr`V_-hYS|D>#gL>zu9Q0qQqLC5qJ!~reisRY&nvL zIha3a(=ENcPGM0z*?1emKrH4)iA}&sAyY(4KA@jm2P&W*z8H}6u|E_~Glug%=Jrt0 z#i1i9xZg{~fp?Y!nb4yJ`=H0p&@jp#yeEWEJ7w8(fZW<@j{IBbfx~7ptmv#uC1%LZ zgPj5}I@x?iyIHgDr>#GQJ7Hl}aIb9bG`eTP75rXkZ`@{2r>&(q{V`)e~h zqd#RF4+q6zIf{=p5CNuB7Q(d(_Y!_*3SZFM^jK78J!k^i5MR)`5Nqo=KT88T1ZqQ* zLTjc~(bo_Z(mD`0f3C0p@|j+ECYYOw_F8$H682>PjYhk!Z~0&0*XAv!Bh5lVae}s- zgu_2kD9q<|^>-Y%9cy(R>AH^9x;=D+**f>k?CJUHb+?BO?U#l=bGNN~>z58J9h{$B zoLQLp{_FDs&Oh(%-2Z9y{`LB%qLGc*QnVPBbK?_)ZI&4EfdeOB_?1mAt&i=Zhz zzK7i56u<5l&(jBM2w=U6&&8(1u^0k`WMw!O#g|6m5NW~eeYuyyL!-llesc;-e`^X* zEuLuZ7R|lM-_Zx3J4r0%Un9}XSPtbB{bbmL=tYmzJ4B_wq=Z169#l_WjjZ(2+>k_t z9tGulXwbECZtuC{zwJ-? zj@|8Dt?!<7-}m}gz58cfpI21hip)ipE`G4>rw#8lq#KT;Dvo?=KLV}RzW3d+x5rY= z@ZFnQ9P6$fpSn)IV|v&2w(Z@Dw=0%kUlmUx?EWc7%D(eUE9YwY+~Zx`v#@6=^1rDZeF1k6;>1@;OxG}nEj`BwEFjB9Kb2Gw7Mk72MDyuFUiFviGfcZu zg^>U;5eqgwH@$Q&?QTukTekuSdMWl|BvK#uV!0re5e+3O}za1FO@76n_vXr^e%NFw3nrLj4AcBvmgb=}#J>|JX;md1b1W4UwZ zHJ2~#@}>4X{h8}HLPT9pZ>38TMvN|rMIJ|&rF=HWRgrj5g5fi;yWJk zJ`m4k^r5h8vONL;c0{t-wxeb`mI(y5Mmy{EuhFZM34vD!h4>fzYaUCnW zySDFmdf)NX-jjE~lX7>b?Aru{aCER$io=&2T^{e?oP{atc}03N4`ycO@#tC{ZbSjgny` znjP8=!RPTQh1N`8f-6+|AtmJ8V;&EMP%JZZ6au~qxxo}t5(*u~>LD9MD9T+VT6s2X zJS0aVfdC{OEi?;oJ*9)^9_mU7O{x!{?amDj#f(R=bj-h+v?N2zPb5d)cBj4jH}D-)N5ST%tpgT?KaEFjNfjlP2#8+*)j%0w(|N0Wtp04w4e&v zGOCc#3pp|_m!%%iKVzo6W$*Htm6jECrQ^N+bPKoyl@H3wXG8N(%#O@8ZCLO-(_po< zVhIkfRIh|q>fSqBGX{De2b=xY^9%Np9mZD zE92m4aa(@NQLYmD5M>y(fXVX=%l z-lLU#kJDFmH_DIf$93^=Lit<#1k-S81yY>E@;sP_7dGlSzUEh4`LDRLUvZAV=gzKi zXVcu--wI~l^cy?Jcl?_3|C&4S_uSzJo~AXAKkf0~aR1U)F?)SpUA67FA^gM6-3z|u z3pd>BHEk)b3TUgWe7(%Q?yRQNUcTSt3Qw*77AN1dsv{u>qRS)?Z4iQJAXpP>UPK(!n0e<<_JKe<}gaKoChTlmVQmJEk1 z*|I@drqaeYEj^LpkR=Z-o8Nv4EY3G&YAShavL-1l_pVgGcRm?Q?>e%ZC0RkKVB!MM?1z+L=A}N9Z_$Ek`pe#X>!Ntx1SaPuo%`8M> zO}3PyHlQO%q-%#@992*rM_{DXbdw&_r|pUCq$f$!bFvWV5MEO?lR8bEbDFafpks$= zPy7A%&dkn&3rg~kxO3;uo%{Un|Gszsvarx6;95Wb`q=3g1>t|tgK@Dpcv#xy5QLk8 zEDQ>=DBGgqpvdmFK^wc<2kq?c7<90^bI{4|u0a>Oy9eF4+oPUw@1S?wH|QHL7%UK} zEJxHoUN~4dUNl%VUOZSlUNTrRUOHGhUN%_9-aDh^;}wGy}VRBKSaH`+M9c5p3w=R;l6pv2+@(Wdd{!Dbfs zM_b0%4XzUfo1i$(A2m9ky(=5u75UR(t6ZqG$wf+F#32{I<`~?F=Q5>1X&bTCB8yz2 zRLiBvQO0sLjQHeo+OSZW(m1D4dCEOjGNH(645vD9{?c35iL%~FF%?X;wJvDD2--C{|7nx$?<>NZR2 z9+tWtsZUu__p;O-NZn~^!##U7>j7qcwC;0D$`4Eiw4*l?PNY3Y(ELy$uBIKwBO0Dh zvhfN<)6TOo3|zpLcAr*Wo>b`FX+@jBSSqN--GfLxs-%nb2>(t?`%j}?ii)h0(L_K@ zyA&-PnotmP3@Dc<#W{31q>UlsJ|3aUqllIq2x&?$8lXmoCuzcvR(2$&B``WveMD8p zl~^JzYSf{`q#6tBsF8sLEd@evOIs1#6cXmU^EUQACy>RdwgtCr?bI+n9XcFnodCB^6Wlr#6SRX9Q|Y3ih&FUV84e8(g)x$916sL` znoHE-s_>wo@Qq#9cBLu;b6XY)I_?al3U;R)yO;1%NV~)ORJtZqWh8Pb?TTOqV~Maa zc64{)kB#sHM64rxSx6Z9%u!YCmxU{iSm|Z)yc5}1To`?Qey%uH$pP~Ip3Rt}{CQ;i zW&5{;H*<2Hcdw`lkCz?iy^p8Lj`y5KD~x***#HZ!ehk29EUpsFdg8Ar>PR$x@sa2o zz;glMF@AAqI2wvw2sqQeh!!CrjfEAp44lHrrD;2;&s!GhXrN#3mWDN8fHf3E~N?@77BLV-Fg4%6Z21>SoHa) zpPfEDT{!E>*o8g);*wz7W09^0lWury>)5sv1|59!5hKACTldbLvlPkG;~{FEnp+022mpmb|b=u?=_5N1J6M( za~fKT1iF@ffZ$gxO+5=vaL}$e6sK(4gLkrBcCdfW-*U(<*)7`?m*Qajl}B+SpGW7m zyhyh^vmCxWX$5)G{AQVjvSXxVS{M=KqSuNBz2N8^BR0m}`M}Q=fS>att#HI8mw}fn zniejJgT(;Q@^o2mBm@Z65|OYm$f0*IAKfuNx~I&5;YMkryb>h5+{g8cE(jafix;oM~8HAEP@IN6YGNj5=_g9I?S7f9_kI! zTZy_*0O3NAA;Q~QVk%1ffjKas=OH;XLFAlKZyG$_ComKf;3?<}Vi1Tq&?eBbOC88F zu5=7fMxr2!=Yp)TwAbu)+Q|y&4>;0}3s~yvPQYQ>OWgnt8Be4gDDZ+xaGtE!$>j^p z?3?CxsTs5;h6e6BuCK@9?vauT+rKRf=Gb^w09Dc%$= z+pez7($C9SA_gAT+(!l3_AWBh^%YRjeAM-dEn(vP%eHrQEWy6DTfW8DLsT!jF5B>A z;1l68sK*ddbpFnPr)-HXJP|G8@0@rtasFjDo;=381mR4CdrAMr}fkzY>uZxhdJQ^7Z(nmLRT> z(d`bR+f9$eJxN=a^hn$nC``M@LRu)1P+94Wq%%NJ30J9mDPR-3k76{tpf!_VKnbr# zVvz)Jsds2791UsO(2%+r83Nw4LsOz7ychyCOIfU#ETr_|twxlSz@M(G9QXDjDOvwG z0ty1y5F#UzF~W6%~N+y-*xjJVOPNeIcMUK>vBaB}tFs zjr+|)kOoh`x*uuDf;JNf_a=Sql8zi$T*sYzlm2#wE*XkoPbR|Ho3sV?1>7pZ00SHj zfqCHWwx}LNCe9Ue_65)fkwYCCS_Mk@%Q5;Yir}j7u&DUD<7Ux~qWdMS^ChjA`-~t4 zY8Pu8-fFznn5x-`$4%9X)%74!dp6_0*&*@*D92ln(xpZa!R;ewwv^?!WX=Qm!Bc6N3^=g&TcDWq& z<;g+f5+9W*kgY$kUlaos{pv21leVjhoOVqqB;7m`Ur4&7;doSjDOvDB=SyAE3;e;3 zhqN$B1ox#sxrqm9l2*)1fBTKE&_lqMm24(yXkPl;Z{GRaZ(Q9+FO!~^KttF!1$gxW z>eI_e+9WAi{lYjHMev=xUgCd{w@X4p*p;k!Av^`9kTrzxl>YWOxT7v9;LTFBv@fKE zBaxwaEIP%BWIO8PbS{@%1{@4`ahdEWGNoPNc$9>7LgiE~M`$HLXy7J?h&6=91Bk69 zFZs*OL~@#T4J77&F+%7Q>es#%xD}Ya_(5IpM&+Hu)2@dlrPnuHubHWub-d$!+dK2+ zxlMQE@5a6pOFh;1{+U$Kkqfy582gOYfi_71*eC=|oxb;C*V6md+=J6ZH z7c1%)8yaU`nHifMP1OgD_*kmGbJ^>xF8f$;mX;ny-5ntLkn>Z$v*RX?|Ex{Kmd(`%(q#=PJJ4 zc)Kwb=vgeQ`0C+o`h&9dizO9=`WH)p(KjzvQyt|+Xmepv#xM9w^a567?8wbnL>YHq z+np+qSOtp};5OdceQWp3rc~L61^JbWP!K%d+&|*_hBS;tO99I}i2~w-bXec9( z`#Jx#gR)XU44n3N2!8RegpX_ zgyQy$n?*fB#hRI(8+$We_UIGJs;_G^z1OGaOPewUEX^;J)y=G*wa*UBdgtpl&X;b= z6tWjZ^ljg4%WPscFu$gKzPuw-%wCi{{-Tt>6(sLR}D3q?H%?PYY7gD*%HW=*eP`fx}=ZJ%;KwPi+2VG3X;RYY; zPB)y0Xwa>Vo|-zP#?M2Cet<-1T@|b)`%i}=q|m=Oro^O)DF|7VCzyzjMVH(y z1Ih@D1zkrx43&$NRGA{juprQYAV(zjN+=qUR}L519)d7}C?NAR#(I}uk`heOL$(n< zHcVMG4pj@83#O!V#+aOg06P_Y^t55~psF+tx*bE|V%ScfgLHzy zN1M(ligc>)l=Re=T@o}@tS(uB9x9658jL8Bkw}=qa`3jpBDHp5fK?J*k=jFXhMq~~ z$FOz4&T0G*B`}eeW++#f-S9+EGv(Sp#fMrqf?q(NuFIN>RU3ZymATR1`Io5;J5v?A z9#qt1Y+~tvxMa6i76JKH4~P${>QeQG7pjhAiUn`&CxRh{-1g)nL0r%}L#<^UIZLr; zsb+!+orHXe5-Ip&deMU57q1CFay<92WcSr083)ku?6wSH<+<%Yr`tyq@O4UGh4E)z z2CKhBxN`M%inZ#LT_aebP*=Kh)~YAnaD+qFDrQy2oJ9T%Z4d%vw1DC|fIp%37u~ zZP+;N_@Sqcp?s4?K^}qd02@>yo2zR%p_U?zCQZSL3y9AF{>-qiAz4&kPu#B#%vT3eRU1g0iL*tW=A$JQ-5j(|HOHVobwV3T0d0}R5CAfm=&%=LgcFmiTb z-;g&!FxLWPG>^dq0mn^&7E^z69W{a5Y-RXfgc-+&%81L{1h9r{(x)sY0Ecb#9pfu{9pWO#PSgrbUfn_ojYhYaO0CfdGb$2 z4c=HML$SjGYr{l1rtC1u)#w9%CQMemp7{81B*u8q$48O)C^m|hSdp@L9z9%np=eSl z8?az`EyMU+C-e%2h3sAZ>no(Z6?N5ezVGa0d?p3+n@*CO`jfVH>9Hlh4SASrjG@zh z30jLQqQ%T-$|77p_`00^%57c(>a#Hstx2-l> z#-s=LMB`zYb@v6$k6Z)?6)2Bs$v&v-nhpKdwwagT+A&|(^-oL>_m#?O@n`=JSF!+N z4ud}>Atjw;^OcfbkQ^A4#}pM(rZG-W^?v1{6cpQ(v&3!q;+@^mgpNR zNbBAh6;=kq-~y68Icy9gnT7+F1bRlJ4U#s(5Ibl)tdS9I1UvylI=W9*er>^5&ry{`*i9RHjBxDNI~y=9?_f6)g#}5kPNIyI)UV7>okA@5&H;IL~L&e3?s`##gIEveVi`!WrOZ8Pm;}R1&fDc6Ja0R zTT1DltEH8vROOXOd{Se2uHJ~so80wSlOa@K{`JgE>luX~C$XhWdxJHslk5Dgew|uP z0esW5t?uQmru3Xv8>Yo2(rvHQ4tNExAbX+5gVU7aR9wsr%88hp#ayy&#G~sA3I{zh zT&X}@NwD%VJ)aNs%9pO{R}vTF>ILX|V_-8(C2!^7fq_%hJw25>+VrQrY_5jJwb8T( zh@H8krrkOZ#L2P)Z8a`JJa+sokwD4aTXN(Gay7v~@QcY9MBLZ~LTyAX_gA;&C*WFZ zR#$f!JcQviqt@pyCm$1FZA-#qRC*1L0$+p7gx1+E+YP^H=>EijJsCD-kR$N;h(N!W zRHXbv%GGgPZ3jejjuB8O@%R{?GYjG(k}k4A4w3rR8)yr-v+KCAxcUag4p7iTK`#P$ zI1Gk-n?l|H!*Kk7+2_Qy6Dj|C zX4?At@dqW39h_9P_UAbAkL20>!TQXv8a9uXi8YMYF-uMuhVM^TBz2Oh%iOVS{R?& z+85UcKJu13cRnny$~bX{&{JMNvunO=UB*q19x^Vq&X+c4C>K6~MW}#c8%1Z!O!?2j zdAD$cLN$c(XI{oyTa``G`LZvLDN2+GJ&EDTYCV#!vaeXP``1V@8FqN+MMkqGE*O?!w7Crq1m&?trp z=8cQ6A3c8-t&0iwzljf2^7t}z8D>HrT}Gv~spe`wN+U$9E7V>iU|O4;IO3 zIcwF#>wEC#ms4cOb|x}8`jc)puTpEWuoaH37#lKBK*sPBdl2Ee?I6}Sbx~z~%e%fS zR`iUm>VE3jTHdkJnwg5XYH!uf6wL0uQ}Nw~?=;*gz6)#q@s#H{>u0~JQWe`NXrzFY z1?nv$I7DS_z!S;2tr>^SSvy-!-r2QtJ@Dan)@D4S^8}L==+29vuXEsx5CvUJyAb3` z3R#6H;0^Q|F3=uqCG#?vgTpiEw~xV`Cs2^CFqEQ4Vj$DH(`={;Z6p>Zk<|;~E%zse zGq0Hu<7zr0Ta}?0an)kl%hA4>1;LI5m4^=AOi@R|pw1x&7$sv4&~luyn{59EQ{-7H zHF+rLIOD_AK+HOG>(xko#bg62x}6nA3X~4Q1JMYwojcc}jE?R-cTQq0X=h9>8Q7SS z*D4$_HKL*Y1ZVcLT7^+hJE884%D4@o0BkU!8)IJj!vxvJWv)gJs~v>S1K%IvnW}8n}Xk_;CB!hbbFQ(a$hmrNp#z)i)_d@?dCcjBoLKQ6w}q|>d4AE zENI`N<@Pmhj>=im#PBfGLt4>ac1eTTGVmx$F)sK=VnFh_&wb1GrU!hevp?x05tHlD zl4Z<>oCB`Og0Adlu4Fmamm6whmR}3~N>yGln6CX~?*y;bD=9AyO?*!5QfM zch28=5&n(`#2Rvz_1*Ga{}-wCyY5!}aozXo?iRt=Qg~R**zJaEV?Olp7B!24(^S!Z zL`bpegkrPE<*Z+SuM~<`mLvP`d6Yn!64mf*2tA-m#EL3C;VxbA7 zYv~k%mBK>S?yD zZZ0U*c1yHpPB(x<%LF!o8IOa>HQ5&($|Wd4U=k?s!5OpS-o{yuHt*-NS z<2xw#>~ES+*%D+&-tA6iPUCxGPP1R-t=DvCr@U7j7TE)?$RvBnt^~1`?7D3B2rY9n zTd3o*0}4#fd){~T#V2xmjp@_C>@@~_kjuQUKUqm8f940kYzBOogGm>24SXS4DX|eJ zeFuN_5?ua#DzU1`8kXn97uXI+>-(hpg;7;eVlO2FSPSi!K^kTlQ3!p zeKfydjAR8ahW*SY%b)>>JTgi;UQidlLDK?N*lhwT0|FI|Tu?wYsALkwsMw+Lka}TqB5enM%e0nRF-j!~K)p@D?<0WJ#iS}TK_v}w zx=;s7R6ahD;5J?YM24)bQr5aBtQiw&#|Sa}2YgPV7M$s7QUz-ttdUYpyB5~$zII~S zC6rd)FOlX;q}d(swai5qHa?vS>`Co8ooYI>P%`kKtm?XY^Wu$*GnW^t+ZW0@K7tK6 z_|vkg`(@4ZWzDIUeG6sJU?*AWexNF$unx|M-Xi9z|FEp~w>G4jwlCB@m8#tVJh!uP zv9WdL1u`OUgw#>l3~xf{^GnxdO5r@QEEITsnL1(J&S}RzkHnWr6SKB0Q;Ok%d@*3^7eAX7j|evE_hcg><{-oJ z$vT4;cW?zTz3Si;AYH6GLIK5-L(xhsPWaix;RZsrQNkbKB=VyB8~tK7eEGGYb`) z7OR4bRcA6#0Cs&MICbVDX9?naz65FJ4WpttM`rh-&*pRV1XH5)geJ2U^)|Jb*k-aN zZsP0aG3P3C$$Z)x`6CphQt)*uwgVBYk;RgBS|C0+y1InAhK!qHWB~reOR*Z!+0Ivh z?o3MG=PUq&GtVb|kfP#Ia-9Qyh{G^UMjRD_3F$GQD_+6JptU%JM4vGtQ#XZC7%GP- zon5*Ffep|u2F2QAd~PrDCCkl*XeK<((J&Hn!t4Y#L8LF>2-_GDDxZ)w{VjDNSZ&YE zdCIZk%JL%Q3u)-#$U!yj3Qf=n2|(J6fD$RlF$4Z*BqU2M4d(fYYhngTG}q&Qqu^S> zeNWxIr*7t{A9}b7DF@C?J%k_M(WqTnZR1#;*305+0=Bv1OS(kC;v1S*_bl6AGq>3H z3NN8cFJct0*sj>IMc%|oyfg~2lgN{OGGf{K@D=dc$_vnlEtrp+qDA5LE(iEJwN!SV zH@U&=*V(x^BfxXYopp|-Jk-f@{4LcXSZ#_8RVvPih^yEyds|G4ibaq5$g?LJ8XuNJ z`;zM{GpG9$Sj@|Mt~)fDr0=*Y%)b22#kVhB<$4vsu^mozIWzfr8p!c3yFw=1VX1TduDT_WM%G~8E^;T{u5&0TR3XGoWB!mlz+_Q>cTHS;yQ zb+dil8c|(OH4(>-y@YI0IyB%P)j`R${?d*ySV4hPF2S8lW}L9@z?gP2?mul0N40bz z$2mjs5$tBwa(Cx&)q2_E?f!Sv$X8Ga7II11w9{P8HP|CM-w;fBYVLVDA2bJGx8HPo z)BMik3(Y4!7HrvkT=dDSyjiap@Dd(qGcNK=T)mvT3}-kZm699t-sQXYvDOB*K#7<$5zX|Fk$db%$!6WVLcBDX)hOpkv>L5hOy6l8Un z-=jwgevjJHiU{d2dzav=)4t>qoy{4S$5}R0z9it5sSuq_GwaBMN7vfZmtp*wmw`=} zUPMw>iOElNAYB6-mYHh|v<(hgK(Z6m)HUc)aCU?2W+@)Ur)wDsWF9BwreBX2AYO=r zEd1&`J`a5ZnAS()RX5{UCSf}UVTH;u!u%l&CN4BeCnqGN3$ggcSjT8QE|YF(Owsr; z0$t%(LU2kT+y>V~(ip;>ij!oP&$6Y3?b`+&AD)63I|Ao-5PN7UM_41MAu#jO;UrU1 z8}{sxvljDB91Bt5@aM$g38Xw_o?miY(PFLe<%pBj8_f_~NOqn&98-_IQ*$G*m4qagHyCO6-(9m-CPhFBDrJ(NT zg5iWw00$I}jxu&WLB~e1?wH3tnH5chOozM?bc)S{Svj{V(5W$KBcw~{5|wZW69wN| zSofh;Fw03yO<>mpbHjZFk_+?2RYEG1(8h@!{am4p{hKc{OsoD2K&$#b1vLmBqbRg+ zmf8^L8dfaFm6t(B$jP1L;Lu)VI?WDUl0wjjz?B0~2fYj&WUYe_?@zs}`qb!peF9dd zVv&`R5TKY&!QzJ>F)Ng$(K8(-g4ICI4HiWlpC<0%OvUJcF>`WDJPI)#zPH>3KvgzKB$Z9N?t_GoeD=rHdaCHbH=indy0vT0m=1MZeX>pdP zh77<2v=6EI4fp`0xUA}C;6~tj{mg-x#9LFhroQ#%nekL{d&^0FVMiB$v66cjl^Vq7IGegwTCnhM3b4CuW9`|p5OMouEEn_ z*Nt7jb|vL`CKY@JA!iDT@)CVkJ99M{pe8U-c%Nebo&we^1{sVSpa!jE1c;b2iu#|Z zF(>duyI+f7jgW**omYFNYp`W^-rKt12rd>BUhQ2hEx+0~z3o>{lJvdhdU#2|jRfuv zVis`AxZKYD;_S9%f$p5;pi08{GcO$igeAg>S#}}27g6`TE_*ht(EwU3{EsHPIcdHK zB1mY14s&66FJxF8afTbTaPg?IS&)vplC6NmtVIkPT*N+!IFVx7xFLneNIC`{fzT+3 zEH<`}0_frz{ItPu2+1g1UXfX6GbjfsrjZ%A2lT>%Ou#7UL}Xd)jnu$y-$B+ zhlYqx3uXPKrUl2%=uT~C)#!@(Q6HexpV0&-&pvsyXrp6SXJ`IV!+?SW;lMVK__*mr z$A(4y5QVRV_#w4~O zgSFv|8{?tDgc>NE`i6y1;~5O33r6D!FsnoKs4L}YPK=AEdN)qT?mF-<`sAv?BQ%JURHIsuvcYuy_sGIZNPBTsD0dTvA(0zAql{@yyRnyoP8>_SKx6>Je4_O| z)U1FZl#=V!Mf5&dVx4YcSu1I($&=%%@OPd)56h~i-HSL6WY<@B!FGg`OTcp6FJJ#b z`FfZHvA@D|!*jo6!v`fBmOVmM0}k+d?$&d&lXLPy<+et^cg77Dgfu#JNEDPSB6<5LJsIUBoz zto<#$pn!DZ8huK-iaihgg+$U^-fA@2>CIF)ovpJy83DJsUYv@8(=Lk2oWASfWdS!% z@u-v>tWR``u1{k`{4}0tb%8v2s@saifIEN*83xJj#bP*_SQN5K>vB9WV93b99fiS2 z&?bW5&j_g`Lq}G{@Z>*{gE-k)b&P4@NLeolED_fkFx0(wFNwm0e7WaUSASmG`H!ev zrC=isaF%Z*!kg5`xufC-X94&glBNouHozv_Se3Ik&l(mx)() zD{fF$(*OAMIO%^1raS?En#~1J8FM2`{v$(#*4;FG8wss4?hXcB31jhCeqCbV+6BW7 zNq%LI?=m%XNRR0mI6X8GFbFO$S~|$QVd3yV#O|UBQ#D1HNE^zpcVNDC$Yd4<*&949 z-`2}@Gx}L^dc%L_zz`?@`@rG8Gkwyj?w(`ahx*P)y(ifr*(bUOdJao?ClPu=`oYsD zPq63HeP1|x=aSLFHna9C<5A#(#l-b&75{;`~7W)=eHeR*mg9v z6`Pn%U*Md6n(hf3K|p@hNj*)VM1GO$0rw2QBEkT<%FgY4Cvh9ShB5Jrx-rpy#bG1J zHr>d+>Vz55ZPb;$Pdi6M7_2>)9r;X!_{N*fYsA?H7 zj)vA9u0G?Se{C$Z^{E|@u)$dGrebyjvVTZ7e^^4jx@>zpy zKXINgmTUI3hNO@E(7+4O@V)dHtP%oU3L?neMl&jAb#+E`*t_f$XYIn)kIvDuB;EsVE-s;>b|x@W|GOh| z&n;}&u~5D<<=>fKF4=}Jmi8m~rfAw^;UI~9+7>6vYbFdb^(yvnzvLEVZz+CV)b}jCz=*R+SLbQK;_T$LzJ6KV!$u{nlgD>lPID3*B~m z_We+5O~-rkogME+=e~4z%iS;B?YURCf4=4{x8wdweWRGHF&fJ57FgmcVGmdQ5w1@= z!Gw%!>VHL?nRppB0PHB2II-eJUfrwlpDEX0Qb6-dUbp<$GBn;_!g{R6{d^}F4Ua;^WFDq&ffE%)l(MBHtIXUpP%3K%>7MA<~JQ# z*mR5zqd1T%Ir)j*hSLk(C=#MhNyQse*QRDF7mC-WJZl+Dt>V=8K3dJi6T-H9NC}6k zL@c?WLIbc;5%m$JQGlPx5wtKOq=a)rp<1RZ;q2Z{F0mAOuwle8duDFkoOU}f`=xnl zdj|H_+Pl5)m%l&y{+jtc{p>k)=8I&9ttC6`36XTJbkDeIoYHK|vVa?xZm3qO(7a6P zrUXg3d^!6`fEtTl^%VP=i)Xn&l00E~gM*If7cdNl5V{`hU}B~|Ft?|<{Y2~F-y7T` zLwcqMUH+}Fb~I0=AWkDigUok7b6Y)olhYf6fGv$7>q@6Z+WeZc{gwYt0BwJDp=Hk*M4sPaIH=Gd);x7j`VMUw(o9jdXC_K?3$#@+~A?8F7#y zQuAidL}X%0zZyY9uw!E|dC#+Uv1$#t%z{tbpkj{8Z=#gd%u%nFu6A@dNP+E5`xP}l$8%a4a?tGXwc8%8}Po+{@}MoQUy(m4NbG_-r4x} z#@RJ;Lv-l==LZq`3{06C_QFP5&G9eC%3w_lh& zai{%GW2$(6%CnziQ+pCyIE1GD;YOEdFaW1 zzh>h+{ugh`P*%_++CNLNDwngHxl+@e<5;RI*)RYhS4Vi(<9)a&mi#Vx6u{8|Cn&?q z7`{~WdsI=J9!C2WNbV(_(6Hh|mdFbGHMxfbrBk}V4WZjOY7shuI8^Fzub`j4A|ac0 z#j(Rdz>vZXg_86pk;e-v>kn&8OS|06nlwaDS=-P;aKi1YlsblKKzb~NAW9#=hsl-xffYe7+%Ki6$nt+ zZ)AQ~%$&|kz>@mXYx>L~J;4XLFWZ~YDNGPe56&6E@0cWVdrCh5W=w}ML%KM@?8g|H zmAf53b2*q^F8PC!(Bwa!vaEC!qsp7NEJ;jsqYC(FI_^w_F{=wOR{^PXwCBL zT}&EXS8TC@?E9<-D}Kbp#Ie`tY)JUK099N0clz|n(^>XG_ZH>wuoqvi zdfesuCoN)=N%*&f)%#Emn1scGlIguTz4c!Go`tHt*AD%(3Qpkv=EC$L<0y&6iaj`d zJ>#&K9u=`uqPku`=e3-j^XfCUMW8hEBA{x)-_rj?z~x7;<(S}nY{30sXjt*#-?y6TqDu#SOOBY?PIqdlAd$isOnCr8qV5^?H=!$d>bZ z3$!kF<0k}KgoL4p7uGSV21FAj;ErD&xr&~F!=*#3*pcr{gp`;FnQj?^e5wv*mm;>}F}gX#@DzSRZ%Rw< ze=@9mdI{eqFuH+e@U#DmoZc-DsvG#Jh0}*&;=)7KhWV-uvzHdCHeWk5-Fv+W{86d^ z+i`Jp{mh2zoges{7OR^+7953b*X=kB{+)eq@4M5o(6R%&@UFXNoHH-~sCvy}#hS$$ zcJ_a&s&%2HHRDBg@Ds&VzgGB*swk|er_-Zfq)OlO~kJg4(eMRivBEDAA zEeYS~_9Oazsh~S(|NbT$#XCfb2knT{?;(%?k%MDNZelq09tPa1-pL2Nvhbd{L+Xmn zOFI$_I*($E3%_z)HDQ8uzTZDdkinT<2G)N{ zpx@lROg}Wm>M_#8HW>zH7;|+xAqrubY|jV|NP3hXZ_sDD&R`X9fkNsc-an7hppZPs zK^}|3tPhI<;wBcv+C&lm4tyht#_Y-}aL*IoTXBup@il&vi~K*L_}$_wU<4DSu432u zdLx#-Up9B~UU6A+lHc8m3%hp3%dYo4hRK<=@nvJt2E3$#Dr8LDM4WSVN#|r@q+=J- zJ@D|2lX#gd%Pt~=MjK{p_p^Pc51c&Hmn`MG^N3Mklz+X(intVpjd~;=C{_z-)#8*c z0<%+`5qD5d6+fknUsEKihidS%m}w84z5sViE$um`OmT$ZMjgbpr*R}pgm&}x!Y5kR zv4x+?LqmCvntYb=A^fbJ+DtV86_HzS+8@#S*bm&v2T`nB|9v%VU-)krL$#4*)ddE( z?ue}ZDZQdn)D{FxvA|J|j&t~yU%r%*ZBN84Y;!Qr`CkZ!JV4QG8(vxC{Zjmj!^XQ6 z_e%FoyD~Pv_n5foFMH$IwPQ1`x$5a-_xxKR$EF&#%vWulKD1a}cfWeyeD%JC>iyW% zP}p(Z{-AR0{mQoa%C`4v7Am)XB;cIpAJsR`T%6TzU0$ef|2aFjnNmN3{;K06`Z0>@ z+kb5e`y_r|j#TWv%uKKuaf?7!BJUnjZadcS76|F8W=fvJ%9k+u^ZoauHP@Cx5wQ_#KF z`Tf=cifZlzhxD+m_R8w$Qo^E8ETAqX0Jx6&=N zTd)`hCX8Wp$1?(=cO0M4Ez>Nx$}+ZcXVsmWyDi^o_*g)6$!;WOHVUrNjIGRB`>>?) z`Y8R9%4`pi`+P}T#)(wOlfJf(-H6dQrOT9)3yRd1z$xzOK&win1GLl%1Zg(`H&%lB z6eZCHED*{m4Spb?g(T-`T-Q$A2~)VIUF3L<4~V|2gz@>H5uVNd97?*Lttq%s$@oD} z@)jUtWRP6MP$FSLm9~kc`O-78;g@uRfN=UHofSWzlCI7vk23Oo@@!9hy7IBNgc>-{ z=qAlRrj1)}E2!40+y!sw2KnjJ4Y@DTc4|M65))*(OFc0n#~D`OaMnSC$6$)>av{9R zew8)t?K6Idg#R$<4tnz(1%nj4NC7!2u!GIn5yR}%T6WAQJ0g=EG0DzlWG5f8Lj~Cx zee8rTc9a!6Mv9*V^cEF0N5LOa@I4CVDIoVs=90*qSD1qZQw%fBCR184wYpkD9bxdh zoxUK4V8$F_cOCx`)_rO(vf#g<{VJdvoP#Lh#1PT3R3wNMKNd=VEEN7&C}RJ;KNfsH z5!&a4_MZrc?hA+hUfBH;;pn_@^h06ehr))xv6p=4X!y|4_;-$-A3F9w^wv#R-}lzd zd+TO)EqK>mb!Ggb*mXS&>>_r}$j~&4T^Uc27+7@srw6WYn|^-Y4SyRXJcJXF6L;uP z3QICxiuov3Krz4I@+}o2w%ja=jnh-uIwUqOdnQD&b*5%np!;$Z-RPhv+?G9}xOv7y z@y!(9I@3n+t;?v|ms+=D87F@FmYZ`PYDFCKj8Evkyvrf(NHuoiI23Wma*xb%1@; zC(azEr#?K@iY+tGQPnNWyF{^BFT9yPYJevcWouaWc*GN8svP^KD6(8tfv!+1a9<8? z5RZzf=IyB+hn5A3FP|1m#P-zMuGF3r%L1ay8!E)6RB1EiZ(0s+68DR#lBQ*WBFis| z9?>;}0~l~yu0k*y(BrM5?>geREe}wp>$~+AJ4K1&xGg6{{3r$+AKaIH6=JuTYU`qk uy2VUT4B*g*rnk=DIzNM>ZtNRzNQ7g(BPBE~7abJES{#J)i9itssQ(|~N|k&7 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d62d913c079ee63fb138706310e9fe7eb9094065 GIT binary patch literal 721 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 O;+kjw6Ay)^di)3V!xbz5 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff428fad33e5597570cec959d75f5fbb3a4ca52d GIT binary patch literal 10603 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 QpLX)>FE2i#8g735AKB2TKL7v# literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb2432cbcf71075ff97f21b4dc95dc1aba84e4f1 GIT binary patch literal 13700 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 Union[Tuple[str], Tuple[str, str]]: + return (a, b) if a != b else (a,) + + +class _Prefix: + def __init__(self, path: str) -> None: + self.path = path + self.setup = False + scheme = get_scheme("", prefix=path) + self.bin_dir = scheme.scripts + self.lib_dirs = _dedup(scheme.purelib, scheme.platlib) + + +def get_runnable_pip() -> str: + """Get a file to pass to a Python executable, to run the currently-running pip. + + This is used to run a pip subprocess, for installing requirements into the build + environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + if not source.is_dir(): + # This would happen if someone is using pip from inside a zip file. In that + # case, we can use that directly. + return str(source) + + return os.fsdecode(source / "__pip-runner__.py") + + +def _get_system_sitepackages() -> Set[str]: + """Get system site packages + + Usually from site.getsitepackages, + but fallback on `get_purelib()/get_platlib()` if unavailable + (e.g. in a virtualenv created by virtualenv<20) + + Returns normalized set of strings. + """ + if hasattr(site, "getsitepackages"): + system_sites = site.getsitepackages() + else: + # virtualenv < 20 overwrites site.py without getsitepackages + # fallback on get_purelib/get_platlib. + # this is known to miss things, but shouldn't in the cases + # where getsitepackages() has been removed (inside a virtualenv) + system_sites = [get_purelib(), get_platlib()] + return {os.path.normcase(path) for path in system_sites} + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps""" + + def __init__(self) -> None: + temp_dir = TempDirectory(kind=tempdir_kinds.BUILD_ENV, globally_managed=True) + + self._prefixes = OrderedDict( + (name, _Prefix(os.path.join(temp_dir.path, name))) + for name in ("normal", "overlay") + ) + + self._bin_dirs: List[str] = [] + self._lib_dirs: List[str] = [] + for prefix in reversed(list(self._prefixes.values())): + self._bin_dirs.append(prefix.bin_dir) + self._lib_dirs.extend(prefix.lib_dirs) + + # Customize site to: + # - ensure .pth files are honored + # - prevent access to system site packages + system_sites = _get_system_sitepackages() + + self._site_dir = os.path.join(temp_dir.path, "site") + if not os.path.exists(self._site_dir): + os.mkdir(self._site_dir) + with open( + os.path.join(self._site_dir, "sitecustomize.py"), "w", encoding="utf-8" + ) as fp: + fp.write( + textwrap.dedent( + """ + import os, site, sys + + # First, drop system-sites related paths. + original_sys_path = sys.path[:] + known_paths = set() + for path in {system_sites!r}: + site.addsitedir(path, known_paths=known_paths) + system_paths = set( + os.path.normcase(path) + for path in sys.path[len(original_sys_path):] + ) + original_sys_path = [ + path for path in original_sys_path + if os.path.normcase(path) not in system_paths + ] + sys.path = original_sys_path + + # Second, add lib directories. + # ensuring .pth file are processed. + for path in {lib_dirs!r}: + assert not path in sys.path + site.addsitedir(path) + """ + ).format(system_sites=system_sites, lib_dirs=self._lib_dirs) + ) + + def __enter__(self) -> None: + self._save_env = { + name: os.environ.get(name, None) + for name in ("PATH", "PYTHONNOUSERSITE", "PYTHONPATH") + } + + path = self._bin_dirs[:] + old_path = self._save_env["PATH"] + if old_path: + path.extend(old_path.split(os.pathsep)) + + pythonpath = [self._site_dir] + + os.environ.update( + { + "PATH": os.pathsep.join(path), + "PYTHONNOUSERSITE": "1", + "PYTHONPATH": os.pathsep.join(pythonpath), + } + ) + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + for varname, old_value in self._save_env.items(): + if old_value is None: + os.environ.pop(varname, None) + else: + os.environ[varname] = old_value + + def check_requirements( + self, reqs: Iterable[str] + ) -> Tuple[Set[Tuple[str, str]], Set[str]]: + """Return 2 sets: + - conflicting requirements: set of (installed, wanted) reqs tuples + - missing requirements: set of reqs + """ + missing = set() + conflicting = set() + if reqs: + env = ( + get_environment(self._lib_dirs) + if hasattr(self, "_lib_dirs") + else get_default_environment() + ) + for req_str in reqs: + req = Requirement(req_str) + # We're explicitly evaluating with an empty extra value, since build + # environments are not provided any mechanism to select specific extras. + if req.marker is not None and not req.marker.evaluate({"extra": ""}): + continue + dist = env.get_distribution(req.name) + if not dist: + missing.add(req_str) + continue + if isinstance(dist.version, Version): + installed_req_str = f"{req.name}=={dist.version}" + else: + installed_req_str = f"{req.name}==={dist.version}" + if not req.specifier.contains(dist.version, prereleases=True): + conflicting.add((installed_req_str, req_str)) + # FIXME: Consider direct URL? + return conflicting, missing + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + self._install_requirements( + get_runnable_pip(), + finder, + requirements, + prefix, + kind=kind, + ) + + @staticmethod + def _install_requirements( + pip_runnable: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + *, + kind: str, + ) -> None: + args: List[str] = [ + sys.executable, + pip_runnable, + "install", + "--ignore-installed", + "--no-user", + "--prefix", + prefix.path, + "--no-warn-script-location", + ] + if logger.getEffectiveLevel() <= logging.DEBUG: + args.append("-v") + for format_control in ("no_binary", "only_binary"): + formats = getattr(finder.format_control, format_control) + args.extend( + ( + "--" + format_control.replace("_", "-"), + ",".join(sorted(formats or {":none:"})), + ) + ) + + index_urls = finder.index_urls + if index_urls: + args.extend(["-i", index_urls[0]]) + for extra_index in index_urls[1:]: + args.extend(["--extra-index-url", extra_index]) + else: + args.append("--no-index") + for link in finder.find_links: + args.extend(["--find-links", link]) + + for host in finder.trusted_hosts: + args.extend(["--trusted-host", host]) + if finder.allow_all_prereleases: + args.append("--pre") + if finder.prefer_binary: + args.append("--prefer-binary") + args.append("--") + args.extend(requirements) + extra_environ = {"_PIP_STANDALONE_CERT": where()} + with open_spinner(f"Installing {kind}") as spinner: + call_subprocess( + args, + command_desc=f"pip subprocess to install {kind}", + spinner=spinner, + extra_environ=extra_environ, + ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment""" + + def __init__(self) -> None: + pass + + def __enter__(self) -> None: + pass + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + pass + + def cleanup(self) -> None: + pass + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + raise NotImplementedError() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cache.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cache.py new file mode 100644 index 00000000..f45ac23e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cache.py @@ -0,0 +1,290 @@ +"""Cache Management +""" + +import hashlib +import json +import logging +import os +from pathlib import Path +from typing import Any, Dict, List, Optional + +from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + +ORIGIN_JSON_NAME = "origin.json" + + +def _hash_dict(d: Dict[str, str]) -> str: + """Return a stable sha224 of a dictionary.""" + s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True) + return hashlib.sha224(s.encode("ascii")).hexdigest() + + +class Cache: + """An abstract class - provides cache directories for data from links + + :param cache_dir: The root of the cache. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + + def _get_cache_path_parts(self, link: Link) -> List[str]: + """Get parts of part that must be os.path.joined with cache_dir""" + + # We want to generate an url to use as our cache key, we don't want to + # just re-use the URL because it might have other items in the fragment + # and we don't care about those. + key_parts = {"url": link.url_without_fragment} + if link.hash_name is not None and link.hash is not None: + key_parts[link.hash_name] = link.hash + if link.subdirectory_fragment: + key_parts["subdirectory"] = link.subdirectory_fragment + + # Include interpreter name, major and minor version in cache key + # to cope with ill-behaved sdists that build a different wheel + # depending on the python version their setup.py is being run on, + # and don't encode the difference in compatibility tags. + # https://github.com/pypa/pip/issues/7296 + key_parts["interpreter_name"] = interpreter_name() + key_parts["interpreter_version"] = interpreter_version() + + # Encode our key url with sha224, we'll use this because it has similar + # security properties to sha256, but with a shorter total output (and + # thus less secure). However the differences don't make a lot of + # difference for our use case here. + hashed = _hash_dict(key_parts) + + # We want to nest the directories some to prevent having a ton of top + # level directories where we might run out of sub directories on some + # FS. + parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]] + + return parts + + def _get_candidates(self, link: Link, canonical_package_name: str) -> List[Any]: + can_not_cache = not self.cache_dir or not canonical_package_name or not link + if can_not_cache: + return [] + + path = self.get_path_for_link(link) + if os.path.isdir(path): + return [(candidate, path) for candidate in os.listdir(path)] + return [] + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached items in for link.""" + raise NotImplementedError() + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + """Returns a link to a cached item if it exists, otherwise returns the + passed link. + """ + raise NotImplementedError() + + +class SimpleWheelCache(Cache): + """A cache of wheels for future installs.""" + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached wheels for link + + Because there are M wheels for any one sdist, we provide a directory + to cache them in, and then consult that directory when looking up + cache hits. + + We only insert things into the cache if they have plausible version + numbers, so that we don't contaminate the cache with things that were + not unique. E.g. ./package might have dozens of installs done for it + and build a version of 0.0...and if we built and cached a wheel, we'd + end up using the same wheel even if the source has been edited. + + :param link: The link of the sdist for which this will cache wheels. + """ + parts = self._get_cache_path_parts(link) + assert self.cache_dir + # Store wheels within the root cache_dir + return os.path.join(self.cache_dir, "wheels", *parts) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + candidates = [] + + if not package_name: + return link + + canonical_package_name = canonicalize_name(package_name) + for wheel_name, wheel_dir in self._get_candidates(link, canonical_package_name): + try: + wheel = Wheel(wheel_name) + except InvalidWheelFilename: + continue + if canonicalize_name(wheel.name) != canonical_package_name: + logger.debug( + "Ignoring cached wheel %s for %s as it " + "does not match the expected distribution name %s.", + wheel_name, + link, + package_name, + ) + continue + if not wheel.supported(supported_tags): + # Built for a different python/arch/etc + continue + candidates.append( + ( + wheel.support_index_min(supported_tags), + wheel_name, + wheel_dir, + ) + ) + + if not candidates: + return link + + _, wheel_name, wheel_dir = min(candidates) + return Link(path_to_url(os.path.join(wheel_dir, wheel_name))) + + +class EphemWheelCache(SimpleWheelCache): + """A SimpleWheelCache that creates it's own temporary cache directory""" + + def __init__(self) -> None: + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path) + + +class CacheEntry: + def __init__( + self, + link: Link, + persistent: bool, + ): + self.link = link + self.persistent = persistent + self.origin: Optional[DirectUrl] = None + origin_direct_url_path = Path(self.link.file_path).parent / ORIGIN_JSON_NAME + if origin_direct_url_path.exists(): + try: + self.origin = DirectUrl.from_json( + origin_direct_url_path.read_text(encoding="utf-8") + ) + except Exception as e: + logger.warning( + "Ignoring invalid cache entry origin file %s for %s (%s)", + origin_direct_url_path, + link.filename, + e, + ) + + +class WheelCache(Cache): + """Wraps EphemWheelCache and SimpleWheelCache into a single Cache + + This Cache allows for gracefully degradation, using the ephem wheel cache + when a certain link is not found in the simple wheel cache first. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + self._wheel_cache = SimpleWheelCache(cache_dir) + self._ephem_cache = EphemWheelCache() + + def get_path_for_link(self, link: Link) -> str: + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link: Link) -> str: + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + cache_entry = self.get_cache_entry(link, package_name, supported_tags) + if cache_entry is None: + return link + return cache_entry.link + + def get_cache_entry( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Optional[CacheEntry]: + """Returns a CacheEntry with a link to a cached item if it exists or + None. The cache entry indicates if the item was found in the persistent + or ephemeral cache. + """ + retval = self._wheel_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=True) + + retval = self._ephem_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=False) + + return None + + @staticmethod + def record_download_origin(cache_dir: str, download_info: DirectUrl) -> None: + origin_path = Path(cache_dir) / ORIGIN_JSON_NAME + if origin_path.exists(): + try: + origin = DirectUrl.from_json(origin_path.read_text(encoding="utf-8")) + except Exception as e: + logger.warning( + "Could not read origin file %s in cache entry (%s). " + "Will attempt to overwrite it.", + origin_path, + e, + ) + else: + # TODO: use DirectUrl.equivalent when + # https://github.com/pypa/pip/pull/10564 is merged. + if origin.url != download_info.url: + logger.warning( + "Origin URL %s in cache entry %s does not match download URL " + "%s. This is likely a pip bug or a cache corruption issue. " + "Will overwrite it with the new value.", + origin.url, + cache_dir, + download_info.url, + ) + origin_path.write_text(download_info.to_json(), encoding="utf-8") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 00000000..e589bb91 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py @@ -0,0 +1,4 @@ +"""Subpackage containing all of pip's command line interface related code +""" + +# This file intentionally does not import submodules diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b726b8ad79d8ee58df70a3a11e6f65df54aab1d GIT binary patch literal 329 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a20c2b31a9b3b8b8f06fc66e09c1a84793f1cc10 GIT binary patch literal 10506 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 Q7Orinq~SAy88*@X0qa#|H2?qr literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c8c064014116b3b4c35808d4b2c2789129b1eedb GIT binary patch literal 30425 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 Qxjm^DU&K!kqoJRF0m5LX(f|Me literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7fbad04b1f8c1228afe0a3bda98069f1ea580b6c GIT binary patch literal 2349 zcma)7O>7fK6rTOF*FUin6P#cOIKe>}6uT)%6qHs_5>=>aKv1d0s$?zR!CA9^n%(?3 zav%o|i4-Z^YE&vXrV5AN+EY~!l`8cTi%3Bmq9Q>L+ybOh1(&{AXR|;r9m#&*d~fE> zn>X*h{iCHNj9~OO=0{Nkp{I1>4Pgts`USwZNJa%DGcv0(1;&+ZfpsNU;9SWUcvlJq z0VJmev|u5qi3O3N`*<~^g$rR93u;7*7NRZ=s4ZHo5OZ-*jccuiRu_wEo0cdf7{nsX zRt|Vh`4YD;G0j2672w_<5LJ{y)5!K-3RME{uYpLgw&<}kcb8wHXTV^P4KLmtm8ge&xwHjgUEE`R zE`;nhkF6o^CB6YKrG6;+<-pR`ZQ<<09)FFI#cS+1x*PJe z(?U(C^m%$;)>zM<3ur&G6P_l6h(67|71MT4*+(k6Oz@7d0X1u+=ggB(9 zd3(F2Dp_CWAvsv%y*M+-J&V7}&;Jf*f%MPHhDV-Lmz{u8)(wKE;<-cSm2#0_%NQdi zY-KqoAeCq-IU^G}U{C?pO438q=~#_gd+RQLLve zY}=GojgkaA!hL;;WvF0?)}6SGI~>lcT5ffXJK}^ybl7A$vCE2TW3oL@4Em+`RdW#u zQTLOIZrPHm7PpobRij)6PiScoT2+J=krS|N8CXY{Ac~D0*07wQs_59lro-b&#dZQs zN1YHjz6Arrr;DeChaJIf2y_KC?FcfyG*%`-YM0j}Mb8EZ?Zyx%O)lz^hMUN37#yA~ zISh7!TTREJKBe99dOkmDXgFV%E)fN*`9W-5u?;hS!MJS0ZE$)Jk7Ly^HRyKf)9@-5 z&VS*?zwb-KP_4W|8ynU3m5d2Xs^)X!SRc=;%B8$nwMPy8NUs0GyagBTGo{iMsf?|> zshIg9^i52lMdnMYlBYMwnN`vYj=6t102VZVG=m-mBQv$f@x;R9++>}pv$M5Xelv=M zmQ{XtgWvrq-m%hibot|vzd2S2Y=)80y2>AD@CR1-gU|TZ>mwVyAhbX3I<$E7Vb=!@ zF*PgRIJnWu3#XXJVr*6HY>1t=lDE5Vb}h0i;^9pZ#k=ZX|G4MZ&gK3yE3waKK6?^L zEDX#I)WwI9?q$CFpUo~5ZGVY4uqs9t!gJxKk@~SaNAC32_pON8clcY0+o_wW6){6u zaZbF^wh)<%yx9nXfj6586m_k?L@appOpGl==c3Cy2Y!}T#gh&3065ExWOq5iVo^3q z#Ui176><(z2ojvo9zkdeB1y^z?5as=+TsaMnKV39Zu_Bf@KCw8K4wsrZiYKu|6NAk zv*>>4h+6h1O7b z4aNUN-G8Cu>*&}z>R(5F>*(;4P-?bgHI!hB7mO7X#f)&+KHKuV1(sYQ%ds O5X=`#n^chFVEtbii8R^( literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a22e30b15101a2d9032801cfc63acc22f4afb0f GIT binary patch literal 4956 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 Ik*19Q1@3BkY5)KL literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6bc95a47df620dd280b32f0279743a5b25730022 GIT binary patch literal 15073 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 or ```` + if completion_type: + paths = auto_complete_paths(current, completion_type) + options = [(path, 0) for path in paths] + for option in options: + opt_label = option[0] + # append '=' to options which require args + if option[1] and option[0][:2] == "--": + opt_label += "=" + print(opt_label) + else: + # show main parser options only when necessary + + opts = [i.option_list for i in parser.option_groups] + opts.append(parser.option_list) + flattened_opts = chain.from_iterable(opts) + if current.startswith("-"): + for opt in flattened_opts: + if opt.help != optparse.SUPPRESS_HELP: + subcommands += opt._long_opts + opt._short_opts + else: + # get completion type given cwords and all available options + completion_type = get_path_completion_type(cwords, cword, flattened_opts) + if completion_type: + subcommands = list(auto_complete_paths(current, completion_type)) + + print(" ".join([x for x in subcommands if x.startswith(current)])) + sys.exit(1) + + +def get_path_completion_type( + cwords: List[str], cword: int, opts: Iterable[Any] +) -> Optional[str]: + """Get the type of path completion (``file``, ``dir``, ``path`` or None) + + :param cwords: same as the environmental variable ``COMP_WORDS`` + :param cword: same as the environmental variable ``COMP_CWORD`` + :param opts: The available options to check + :return: path completion type (``file``, ``dir``, ``path`` or None) + """ + if cword < 2 or not cwords[cword - 2].startswith("-"): + return None + for opt in opts: + if opt.help == optparse.SUPPRESS_HELP: + continue + for o in str(opt).split("/"): + if cwords[cword - 2].split("=")[0] == o: + if not opt.metavar or any( + x in ("path", "file", "dir") for x in opt.metavar.split("/") + ): + return opt.metavar + return None + + +def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]: + """If ``completion_type`` is ``file`` or ``path``, list all regular files + and directories starting with ``current``; otherwise only list directories + starting with ``current``. + + :param current: The word to be completed + :param completion_type: path completion type(``file``, ``path`` or ``dir``) + :return: A generator of regular files and/or directories + """ + directory, filename = os.path.split(current) + current_path = os.path.abspath(directory) + # Don't complete paths if they can't be accessed + if not os.access(current_path, os.R_OK): + return + filename = os.path.normcase(filename) + # list all files that start with ``filename`` + file_list = ( + x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) + ) + for f in file_list: + opt = os.path.join(current_path, f) + comp_file = os.path.normcase(os.path.join(directory, f)) + # complete regular files when there is not ```` after option + # complete directories when there is ````, ```` or + # ````after option + if completion_type != "dir" and os.path.isfile(opt): + yield comp_file + elif os.path.isdir(opt): + yield os.path.join(comp_file, "") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 00000000..db9d5cc6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,236 @@ +"""Base Command class, and related routines""" + +import functools +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import Any, Callable, List, Optional, Tuple + +from pip._vendor.rich import traceback as rich_traceback + +from pip._internal.cli import cmdoptions +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.cli.status_codes import ( + ERROR, + PREVIOUS_BUILD_DIR_ERROR, + UNKNOWN_ERROR, + VIRTUALENV_NOT_FOUND, +) +from pip._internal.exceptions import ( + BadCommand, + CommandError, + DiagnosticPipError, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, + UninstallationError, +) +from pip._internal.utils.filesystem import check_path_owner +from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging +from pip._internal.utils.misc import get_prog, normalize_path +from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry +from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = ["Command"] + +logger = logging.getLogger(__name__) + + +class Command(CommandContextMixIn): + usage: str = "" + ignore_require_venv: bool = False + + def __init__(self, name: str, summary: str, isolated: bool = False) -> None: + super().__init__() + + self.name = name + self.summary = summary + self.parser = ConfigOptionParser( + usage=self.usage, + prog=f"{get_prog()} {name}", + formatter=UpdatingDefaultsHelpFormatter(), + add_help_option=False, + name=name, + description=self.__doc__, + isolated=isolated, + ) + + self.tempdir_registry: Optional[TempDirRegistry] = None + + # Commands should add options to this option group + optgroup_name = f"{self.name.capitalize()} Options" + self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name) + + # Add the general options + gen_opts = cmdoptions.make_option_group( + cmdoptions.general_group, + self.parser, + ) + self.parser.add_option_group(gen_opts) + + self.add_options() + + def add_options(self) -> None: + pass + + def handle_pip_version_check(self, options: Values) -> None: + """ + This is a no-op so that commands by default do not do the pip version + check. + """ + # Make sure we do the pip version check if the index_group options + # are present. + assert not hasattr(options, "no_index") + + def run(self, options: Values, args: List[str]) -> int: + raise NotImplementedError + + def parse_args(self, args: List[str]) -> Tuple[Values, List[str]]: + # factored out for testability + return self.parser.parse_args(args) + + def main(self, args: List[str]) -> int: + try: + with self.main_context(): + return self._main(args) + finally: + logging.shutdown() + + def _main(self, args: List[str]) -> int: + # We must initialize this before the tempdir manager, otherwise the + # configuration would not be accessible by the time we clean up the + # tempdir manager. + self.tempdir_registry = self.enter_context(tempdir_registry()) + # Intentionally set as early as possible so globally-managed temporary + # directories are available to the rest of the code. + self.enter_context(global_tempdir_manager()) + + options, args = self.parse_args(args) + + # Set verbosity so that it can be used elsewhere. + self.verbosity = options.verbose - options.quiet + + level_number = setup_logging( + verbosity=self.verbosity, + no_color=options.no_color, + user_log_file=options.log, + ) + + always_enabled_features = set(options.features_enabled) & set( + cmdoptions.ALWAYS_ENABLED_FEATURES + ) + if always_enabled_features: + logger.warning( + "The following features are always enabled: %s. ", + ", ".join(sorted(always_enabled_features)), + ) + + # Make sure that the --python argument isn't specified after the + # subcommand. We can tell, because if --python was specified, + # we should only reach this point if we're running in the created + # subprocess, which has the _PIP_RUNNING_IN_SUBPROCESS environment + # variable set. + if options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + logger.critical( + "The --python option must be placed before the pip subcommand name" + ) + sys.exit(ERROR) + + # TODO: Try to get these passing down from the command? + # without resorting to os.environ to hold these. + # This also affects isolated builds and it should. + + if options.no_input: + os.environ["PIP_NO_INPUT"] = "1" + + if options.exists_action: + os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action) + + if options.require_venv and not self.ignore_require_venv: + # If a venv is required check if it can really be found + if not running_under_virtualenv(): + logger.critical("Could not find an activated virtualenv (required).") + sys.exit(VIRTUALENV_NOT_FOUND) + + if options.cache_dir: + options.cache_dir = normalize_path(options.cache_dir) + if not check_path_owner(options.cache_dir): + logger.warning( + "The directory '%s' or its parent directory is not owned " + "or is not writable by the current user. The cache " + "has been disabled. Check the permissions and owner of " + "that directory. If executing pip with sudo, you should " + "use sudo's -H flag.", + options.cache_dir, + ) + options.cache_dir = None + + def intercepts_unhandled_exc( + run_func: Callable[..., int] + ) -> Callable[..., int]: + @functools.wraps(run_func) + def exc_logging_wrapper(*args: Any) -> int: + try: + status = run_func(*args) + assert isinstance(status, int) + return status + except DiagnosticPipError as exc: + logger.error("%s", exc, extra={"rich": True}) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except PreviousBuildDirError as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return PREVIOUS_BUILD_DIR_ERROR + except ( + InstallationError, + UninstallationError, + BadCommand, + NetworkConnectionError, + ) as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except CommandError as exc: + logger.critical("%s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BrokenStdoutLoggingError: + # Bypass our logger and write any remaining messages to + # stderr because stdout no longer works. + print("ERROR: Pipe to stdout was broken", file=sys.stderr) + if level_number <= logging.DEBUG: + traceback.print_exc(file=sys.stderr) + + return ERROR + except KeyboardInterrupt: + logger.critical("Operation cancelled by user") + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BaseException: + logger.critical("Exception:", exc_info=True) + + return UNKNOWN_ERROR + + return exc_logging_wrapper + + try: + if not options.debug_mode: + run = intercepts_unhandled_exc(self.run) + else: + run = self.run + rich_traceback.install(show_locals=True) + return run(options, args) + finally: + self.handle_pip_version_check(options) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 00000000..d6432560 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1074 @@ +""" +shared options and groups + +The principle here is to define options once, but *not* instantiate them +globally. One reason being that options with action='append' can carry state +between parses. pip parses general options twice internally, and shouldn't +pass on state. To be consistent, all options will follow this design. +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import importlib.util +import logging +import os +import textwrap +from functools import partial +from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values +from textwrap import dedent +from typing import Any, Callable, Dict, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.parser import ConfigOptionParser +from pip._internal.exceptions import CommandError +from pip._internal.locations import USER_CACHE_DIR, get_src_prefix +from pip._internal.models.format_control import FormatControl +from pip._internal.models.index import PyPI +from pip._internal.models.target_python import TargetPython +from pip._internal.utils.hashes import STRONG_HASHES +from pip._internal.utils.misc import strtobool + +logger = logging.getLogger(__name__) + + +def raise_option_error(parser: OptionParser, option: Option, msg: str) -> None: + """ + Raise an option parsing error using parser.error(). + + Args: + parser: an OptionParser instance. + option: an Option instance. + msg: the error text. + """ + msg = f"{option} error: {msg}" + msg = textwrap.fill(" ".join(msg.split())) + parser.error(msg) + + +def make_option_group(group: Dict[str, Any], parser: ConfigOptionParser) -> OptionGroup: + """ + Return an OptionGroup object + group -- assumed to be dict with 'name' and 'options' keys + parser -- an optparse Parser + """ + option_group = OptionGroup(parser, group["name"]) + for option in group["options"]: + option_group.add_option(option()) + return option_group + + +def check_dist_restriction(options: Values, check_target: bool = False) -> None: + """Function for determining if custom platform options are allowed. + + :param options: The OptionParser options. + :param check_target: Whether or not to check if --target is being used. + """ + dist_restriction_set = any( + [ + options.python_version, + options.platforms, + options.abis, + options.implementation, + ] + ) + + binary_only = FormatControl(set(), {":all:"}) + sdist_dependencies_allowed = ( + options.format_control != binary_only and not options.ignore_dependencies + ) + + # Installations or downloads using dist restrictions must not combine + # source distributions and dist-specific wheels, as they are not + # guaranteed to be locally compatible. + if dist_restriction_set and sdist_dependencies_allowed: + raise CommandError( + "When restricting platform and interpreter constraints using " + "--python-version, --platform, --abi, or --implementation, " + "either --no-deps must be set, or --only-binary=:all: must be " + "set and --no-binary must not be set (or must be set to " + ":none:)." + ) + + if check_target: + if not options.dry_run and dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target' or using '--dry-run'" + ) + + +def _path_option_check(option: Option, opt: str, value: str) -> str: + return os.path.expanduser(value) + + +def _package_name_option_check(option: Option, opt: str, value: str) -> str: + return canonicalize_name(value) + + +class PipOption(Option): + TYPES = Option.TYPES + ("path", "package_name") + TYPE_CHECKER = Option.TYPE_CHECKER.copy() + TYPE_CHECKER["package_name"] = _package_name_option_check + TYPE_CHECKER["path"] = _path_option_check + + +########### +# options # +########### + +help_: Callable[..., Option] = partial( + Option, + "-h", + "--help", + dest="help", + action="help", + help="Show help.", +) + +debug_mode: Callable[..., Option] = partial( + Option, + "--debug", + dest="debug_mode", + action="store_true", + default=False, + help=( + "Let unhandled exceptions propagate outside the main subroutine, " + "instead of logging them to stderr." + ), +) + +isolated_mode: Callable[..., Option] = partial( + Option, + "--isolated", + dest="isolated_mode", + action="store_true", + default=False, + help=( + "Run pip in an isolated mode, ignoring environment variables and user " + "configuration." + ), +) + +require_virtualenv: Callable[..., Option] = partial( + Option, + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=( + "Allow pip to only run in a virtual environment; " + "exit with an error otherwise." + ), +) + +override_externally_managed: Callable[..., Option] = partial( + Option, + "--break-system-packages", + dest="override_externally_managed", + action="store_true", + help="Allow pip to modify an EXTERNALLY-MANAGED Python installation", +) + +python: Callable[..., Option] = partial( + Option, + "--python", + dest="python", + help="Run pip with the specified Python interpreter.", +) + +verbose: Callable[..., Option] = partial( + Option, + "-v", + "--verbose", + dest="verbose", + action="count", + default=0, + help="Give more output. Option is additive, and can be used up to 3 times.", +) + +no_color: Callable[..., Option] = partial( + Option, + "--no-color", + dest="no_color", + action="store_true", + default=False, + help="Suppress colored output.", +) + +version: Callable[..., Option] = partial( + Option, + "-V", + "--version", + dest="version", + action="store_true", + help="Show version and exit.", +) + +quiet: Callable[..., Option] = partial( + Option, + "-q", + "--quiet", + dest="quiet", + action="count", + default=0, + help=( + "Give less output. Option is additive, and can be used up to 3" + " times (corresponding to WARNING, ERROR, and CRITICAL logging" + " levels)." + ), +) + +progress_bar: Callable[..., Option] = partial( + Option, + "--progress-bar", + dest="progress_bar", + type="choice", + choices=["on", "off"], + default="on", + help="Specify whether the progress bar should be used [on, off] (default: on)", +) + +log: Callable[..., Option] = partial( + PipOption, + "--log", + "--log-file", + "--local-log", + dest="log", + metavar="path", + type="path", + help="Path to a verbose appending log.", +) + +no_input: Callable[..., Option] = partial( + Option, + # Don't ask for input + "--no-input", + dest="no_input", + action="store_true", + default=False, + help="Disable prompting for input.", +) + +keyring_provider: Callable[..., Option] = partial( + Option, + "--keyring-provider", + dest="keyring_provider", + choices=["auto", "disabled", "import", "subprocess"], + default="auto", + help=( + "Enable the credential lookup via the keyring library if user input is allowed." + " Specify which mechanism to use [disabled, import, subprocess]." + " (default: disabled)" + ), +) + +proxy: Callable[..., Option] = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form scheme://[user:passwd@]proxy.server:port.", +) + +retries: Callable[..., Option] = partial( + Option, + "--retries", + dest="retries", + type="int", + default=5, + help="Maximum number of retries each connection should attempt " + "(default %default times).", +) + +timeout: Callable[..., Option] = partial( + Option, + "--timeout", + "--default-timeout", + metavar="sec", + dest="timeout", + type="float", + default=15, + help="Set the socket timeout (default %default seconds).", +) + + +def exists_action() -> Option: + return Option( + # Option when path already exist + "--exists-action", + dest="exists_action", + type="choice", + choices=["s", "i", "w", "b", "a"], + default=[], + action="append", + metavar="action", + help="Default action when a path already exists: " + "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.", + ) + + +cert: Callable[..., Option] = partial( + PipOption, + "--cert", + dest="cert", + type="path", + metavar="path", + help=( + "Path to PEM-encoded CA certificate bundle. " + "If provided, overrides the default. " + "See 'SSL Certificate Verification' in pip documentation " + "for more information." + ), +) + +client_cert: Callable[..., Option] = partial( + PipOption, + "--client-cert", + dest="client_cert", + type="path", + default=None, + metavar="path", + help="Path to SSL client certificate, a single file containing the " + "private key and the certificate in PEM format.", +) + +index_url: Callable[..., Option] = partial( + Option, + "-i", + "--index-url", + "--pypi-url", + dest="index_url", + metavar="URL", + default=PyPI.simple_url, + help="Base URL of the Python Package Index (default %default). " + "This should point to a repository compliant with PEP 503 " + "(the simple repository API) or a local directory laid out " + "in the same format.", +) + + +def extra_index_url() -> Option: + return Option( + "--extra-index-url", + dest="extra_index_urls", + metavar="URL", + action="append", + default=[], + help="Extra URLs of package indexes to use in addition to " + "--index-url. Should follow the same rules as " + "--index-url.", + ) + + +no_index: Callable[..., Option] = partial( + Option, + "--no-index", + dest="no_index", + action="store_true", + default=False, + help="Ignore package index (only looking at --find-links URLs instead).", +) + + +def find_links() -> Option: + return Option( + "-f", + "--find-links", + dest="find_links", + action="append", + default=[], + metavar="url", + help="If a URL or path to an html file, then parse for links to " + "archives such as sdist (.tar.gz) or wheel (.whl) files. " + "If a local path or file:// URL that's a directory, " + "then look for archives in the directory listing. " + "Links to VCS project URLs are not supported.", + ) + + +def trusted_host() -> Option: + return Option( + "--trusted-host", + dest="trusted_hosts", + action="append", + metavar="HOSTNAME", + default=[], + help="Mark this host or host:port pair as trusted, even though it " + "does not have valid or any HTTPS.", + ) + + +def constraints() -> Option: + return Option( + "-c", + "--constraint", + dest="constraints", + action="append", + default=[], + metavar="file", + help="Constrain versions using the given constraints file. " + "This option can be used multiple times.", + ) + + +def requirements() -> Option: + return Option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help="Install from the given requirements file. " + "This option can be used multiple times.", + ) + + +def editable() -> Option: + return Option( + "-e", + "--editable", + dest="editables", + action="append", + default=[], + metavar="path/url", + help=( + "Install a project in editable mode (i.e. setuptools " + '"develop mode") from a local project path or a VCS url.' + ), + ) + + +def _handle_src(option: Option, opt_str: str, value: str, parser: OptionParser) -> None: + value = os.path.abspath(value) + setattr(parser.values, option.dest, value) + + +src: Callable[..., Option] = partial( + PipOption, + "--src", + "--source", + "--source-dir", + "--source-directory", + dest="src_dir", + type="path", + metavar="dir", + default=get_src_prefix(), + action="callback", + callback=_handle_src, + help="Directory to check out editable projects into. " + 'The default in a virtualenv is "/src". ' + 'The default for global installs is "/src".', +) + + +def _get_format_control(values: Values, option: Option) -> Any: + """Get a format_control object.""" + return getattr(values, option.dest) + + +def _handle_no_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.no_binary, + existing.only_binary, + ) + + +def _handle_only_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.only_binary, + existing.no_binary, + ) + + +def no_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--no-binary", + dest="format_control", + action="callback", + callback=_handle_no_binary, + type="str", + default=format_control, + help="Do not use binary packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all binary packages, ":none:" to empty the set (notice ' + "the colons), or one or more package names with commas between " + "them (no colons). Note that some packages are tricky to compile " + "and may fail to install when this option is used on them.", + ) + + +def only_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--only-binary", + dest="format_control", + action="callback", + callback=_handle_only_binary, + type="str", + default=format_control, + help="Do not use source packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all source packages, ":none:" to empty the set, or one ' + "or more package names with commas between them. Packages " + "without binary distributions will fail to install when this " + "option is used on them.", + ) + + +platforms: Callable[..., Option] = partial( + Option, + "--platform", + dest="platforms", + metavar="platform", + action="append", + default=None, + help=( + "Only use wheels compatible with . Defaults to the " + "platform of the running system. Use this option multiple times to " + "specify multiple platforms supported by the target interpreter." + ), +) + + +# This was made a separate function for unit-testing purposes. +def _convert_python_version(value: str) -> Tuple[Tuple[int, ...], Optional[str]]: + """ + Convert a version string like "3", "37", or "3.7.3" into a tuple of ints. + + :return: A 2-tuple (version_info, error_msg), where `error_msg` is + non-None if and only if there was a parsing error. + """ + if not value: + # The empty string is the same as not providing a value. + return (None, None) + + parts = value.split(".") + if len(parts) > 3: + return ((), "at most three version parts are allowed") + + if len(parts) == 1: + # Then we are in the case of "3" or "37". + value = parts[0] + if len(value) > 1: + parts = [value[0], value[1:]] + + try: + version_info = tuple(int(part) for part in parts) + except ValueError: + return ((), "each version part must be an integer") + + return (version_info, None) + + +def _handle_python_version( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """ + Handle a provided --python-version value. + """ + version_info, error_msg = _convert_python_version(value) + if error_msg is not None: + msg = f"invalid --python-version value: {value!r}: {error_msg}" + raise_option_error(parser, option=option, msg=msg) + + parser.values.python_version = version_info + + +python_version: Callable[..., Option] = partial( + Option, + "--python-version", + dest="python_version", + metavar="python_version", + action="callback", + callback=_handle_python_version, + type="str", + default=None, + help=dedent( + """\ + The Python interpreter version to use for wheel and "Requires-Python" + compatibility checks. Defaults to a version derived from the running + interpreter. The version can be specified using up to three dot-separated + integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor + version can also be given as a string without dots (e.g. "37" for 3.7.0). + """ + ), +) + + +implementation: Callable[..., Option] = partial( + Option, + "--implementation", + dest="implementation", + metavar="implementation", + default=None, + help=( + "Only use wheels compatible with Python " + "implementation , e.g. 'pp', 'jy', 'cp', " + " or 'ip'. If not specified, then the current " + "interpreter implementation is used. Use 'py' to force " + "implementation-agnostic wheels." + ), +) + + +abis: Callable[..., Option] = partial( + Option, + "--abi", + dest="abis", + metavar="abi", + action="append", + default=None, + help=( + "Only use wheels compatible with Python abi , e.g. 'pypy_41'. " + "If not specified, then the current interpreter abi tag is used. " + "Use this option multiple times to specify multiple abis supported " + "by the target interpreter. Generally you will need to specify " + "--implementation, --platform, and --python-version when using this " + "option." + ), +) + + +def add_target_python_options(cmd_opts: OptionGroup) -> None: + cmd_opts.add_option(platforms()) + cmd_opts.add_option(python_version()) + cmd_opts.add_option(implementation()) + cmd_opts.add_option(abis()) + + +def make_target_python(options: Values) -> TargetPython: + target_python = TargetPython( + platforms=options.platforms, + py_version_info=options.python_version, + abis=options.abis, + implementation=options.implementation, + ) + + return target_python + + +def prefer_binary() -> Option: + return Option( + "--prefer-binary", + dest="prefer_binary", + action="store_true", + default=False, + help=( + "Prefer binary packages over source packages, even if the " + "source packages are newer." + ), + ) + + +cache_dir: Callable[..., Option] = partial( + PipOption, + "--cache-dir", + dest="cache_dir", + default=USER_CACHE_DIR, + metavar="dir", + type="path", + help="Store the cache data in .", +) + + +def _handle_no_cache_dir( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-cache-dir option. + + This is an optparse.Option callback for the --no-cache-dir option. + """ + # The value argument will be None if --no-cache-dir is passed via the + # command-line, since the option doesn't accept arguments. However, + # the value can be non-None if the option is triggered e.g. by an + # environment variable, like PIP_NO_CACHE_DIR=true. + if value is not None: + # Then parse the string value to get argument error-checking. + try: + strtobool(value) + except ValueError as exc: + raise_option_error(parser, option=option, msg=str(exc)) + + # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool() + # converted to 0 (like "false" or "no") caused cache_dir to be disabled + # rather than enabled (logic would say the latter). Thus, we disable + # the cache directory not just on values that parse to True, but (for + # backwards compatibility reasons) also on values that parse to False. + # In other words, always set it to False if the option is provided in + # some (valid) form. + parser.values.cache_dir = False + + +no_cache: Callable[..., Option] = partial( + Option, + "--no-cache-dir", + dest="cache_dir", + action="callback", + callback=_handle_no_cache_dir, + help="Disable the cache.", +) + +no_deps: Callable[..., Option] = partial( + Option, + "--no-deps", + "--no-dependencies", + dest="ignore_dependencies", + action="store_true", + default=False, + help="Don't install package dependencies.", +) + +ignore_requires_python: Callable[..., Option] = partial( + Option, + "--ignore-requires-python", + dest="ignore_requires_python", + action="store_true", + help="Ignore the Requires-Python information.", +) + +no_build_isolation: Callable[..., Option] = partial( + Option, + "--no-build-isolation", + dest="build_isolation", + action="store_false", + default=True, + help="Disable isolation when building a modern source distribution. " + "Build dependencies specified by PEP 518 must be already installed " + "if this option is used.", +) + +check_build_deps: Callable[..., Option] = partial( + Option, + "--check-build-dependencies", + dest="check_build_deps", + action="store_true", + default=False, + help="Check the build dependencies when PEP517 is used.", +) + + +def _handle_no_use_pep517( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-use-pep517 option. + + This is an optparse.Option callback for the no_use_pep517 option. + """ + # Since --no-use-pep517 doesn't accept arguments, the value argument + # will be None if --no-use-pep517 is passed via the command-line. + # However, the value can be non-None if the option is triggered e.g. + # by an environment variable, for example "PIP_NO_USE_PEP517=true". + if value is not None: + msg = """A value was passed for --no-use-pep517, + probably using either the PIP_NO_USE_PEP517 environment variable + or the "no-use-pep517" config file option. Use an appropriate value + of the PIP_USE_PEP517 environment variable or the "use-pep517" + config file option instead. + """ + raise_option_error(parser, option=option, msg=msg) + + # If user doesn't wish to use pep517, we check if setuptools and wheel are installed + # and raise error if it is not. + packages = ("setuptools", "wheel") + if not all(importlib.util.find_spec(package) for package in packages): + msg = ( + f"It is not possible to use --no-use-pep517 " + f"without {' and '.join(packages)} installed." + ) + raise_option_error(parser, option=option, msg=msg) + + # Otherwise, --no-use-pep517 was passed via the command-line. + parser.values.use_pep517 = False + + +use_pep517: Any = partial( + Option, + "--use-pep517", + dest="use_pep517", + action="store_true", + default=None, + help="Use PEP 517 for building source distributions " + "(use --no-use-pep517 to force legacy behaviour).", +) + +no_use_pep517: Any = partial( + Option, + "--no-use-pep517", + dest="use_pep517", + action="callback", + callback=_handle_no_use_pep517, + default=None, + help=SUPPRESS_HELP, +) + + +def _handle_config_settings( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + key, sep, val = value.partition("=") + if sep != "=": + parser.error(f"Arguments to {opt_str} must be of the form KEY=VAL") + dest = getattr(parser.values, option.dest) + if dest is None: + dest = {} + setattr(parser.values, option.dest, dest) + if key in dest: + if isinstance(dest[key], list): + dest[key].append(val) + else: + dest[key] = [dest[key], val] + else: + dest[key] = val + + +config_settings: Callable[..., Option] = partial( + Option, + "-C", + "--config-settings", + dest="config_settings", + type=str, + action="callback", + callback=_handle_config_settings, + metavar="settings", + help="Configuration settings to be passed to the PEP 517 build backend. " + "Settings take the form KEY=VALUE. Use multiple --config-settings options " + "to pass multiple keys to the backend.", +) + +build_options: Callable[..., Option] = partial( + Option, + "--build-option", + dest="build_options", + metavar="options", + action="append", + help="Extra arguments to be supplied to 'setup.py bdist_wheel'.", +) + +global_options: Callable[..., Option] = partial( + Option, + "--global-option", + dest="global_options", + action="append", + metavar="options", + help="Extra global options to be supplied to the setup.py " + "call before the install or bdist_wheel command.", +) + +no_clean: Callable[..., Option] = partial( + Option, + "--no-clean", + action="store_true", + default=False, + help="Don't clean up build directories.", +) + +pre: Callable[..., Option] = partial( + Option, + "--pre", + action="store_true", + default=False, + help="Include pre-release and development versions. By default, " + "pip only finds stable versions.", +) + +disable_pip_version_check: Callable[..., Option] = partial( + Option, + "--disable-pip-version-check", + dest="disable_pip_version_check", + action="store_true", + default=True, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) + +root_user_action: Callable[..., Option] = partial( + Option, + "--root-user-action", + dest="root_user_action", + default="warn", + choices=["warn", "ignore"], + help="Action if pip is run as a root user. By default, a warning message is shown.", +) + + +def _handle_merge_hash( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """Given a value spelled "algo:digest", append the digest to a list + pointed to in a dict by the algo name.""" + if not parser.values.hashes: + parser.values.hashes = {} + try: + algo, digest = value.split(":", 1) + except ValueError: + parser.error( + f"Arguments to {opt_str} must be a hash name " + "followed by a value, like --hash=sha256:" + "abcde..." + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( + opt_str, ", ".join(STRONG_HASHES) + ) + ) + parser.values.hashes.setdefault(algo, []).append(digest) + + +hash: Callable[..., Option] = partial( + Option, + "--hash", + # Hash values eventually end up in InstallRequirement.hashes due to + # __dict__ copying in process_line(). + dest="hashes", + action="callback", + callback=_handle_merge_hash, + type="string", + help="Verify that the package's archive matches this " + "hash before installing. Example: --hash=sha256:abcdef...", +) + + +require_hashes: Callable[..., Option] = partial( + Option, + "--require-hashes", + dest="require_hashes", + action="store_true", + default=False, + help="Require a hash to check each requirement against, for " + "repeatable installs. This option is implied when any package in a " + "requirements file has a --hash option.", +) + + +list_path: Callable[..., Option] = partial( + PipOption, + "--path", + dest="path", + type="path", + action="append", + help="Restrict to the specified installation path for listing " + "packages (can be used multiple times).", +) + + +def check_list_path_option(options: Values) -> None: + if options.path and (options.user or options.local): + raise CommandError("Cannot combine '--path' with '--user' or '--local'") + + +list_exclude: Callable[..., Option] = partial( + PipOption, + "--exclude", + dest="excludes", + action="append", + metavar="package", + type="package_name", + help="Exclude specified package from the output", +) + + +no_python_version_warning: Callable[..., Option] = partial( + Option, + "--no-python-version-warning", + dest="no_python_version_warning", + action="store_true", + default=False, + help="Silence deprecation warnings for upcoming unsupported Pythons.", +) + + +# Features that are now always on. A warning is printed if they are used. +ALWAYS_ENABLED_FEATURES = [ + "no-binary-enable-wheel-cache", # always on since 23.1 +] + +use_new_feature: Callable[..., Option] = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "fast-deps", + "truststore", + ] + + ALWAYS_ENABLED_FEATURES, + help="Enable new functionality, that may be backward incompatible.", +) + +use_deprecated_feature: Callable[..., Option] = partial( + Option, + "--use-deprecated", + dest="deprecated_features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "legacy-resolver", + ], + help=("Enable deprecated functionality, that will be removed in the future."), +) + + +########## +# groups # +########## + +general_group: Dict[str, Any] = { + "name": "General Options", + "options": [ + help_, + debug_mode, + isolated_mode, + require_virtualenv, + python, + verbose, + version, + quiet, + log, + no_input, + keyring_provider, + proxy, + retries, + timeout, + exists_action, + trusted_host, + cert, + client_cert, + cache_dir, + no_cache, + disable_pip_version_check, + no_color, + no_python_version_warning, + use_new_feature, + use_deprecated_feature, + ], +} + +index_group: Dict[str, Any] = { + "name": "Package Index Options", + "options": [ + index_url, + extra_index_url, + no_index, + find_links, + ], +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 00000000..139995ac --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,27 @@ +from contextlib import ExitStack, contextmanager +from typing import ContextManager, Generator, TypeVar + +_T = TypeVar("_T", covariant=True) + + +class CommandContextMixIn: + def __init__(self) -> None: + super().__init__() + self._in_main_context = False + self._main_context = ExitStack() + + @contextmanager + def main_context(self) -> Generator[None, None, None]: + assert not self._in_main_context + + self._in_main_context = True + try: + with self._main_context: + yield + finally: + self._in_main_context = False + + def enter_context(self, context_provider: ContextManager[_T]) -> _T: + assert self._in_main_context + + return self._main_context.enter_context(context_provider) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py new file mode 100644 index 00000000..7e061f5b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,79 @@ +"""Primary application entrypoint. +""" +import locale +import logging +import os +import sys +import warnings +from typing import List, Optional + +from pip._internal.cli.autocompletion import autocomplete +from pip._internal.cli.main_parser import parse_command +from pip._internal.commands import create_command +from pip._internal.exceptions import PipError +from pip._internal.utils import deprecation + +logger = logging.getLogger(__name__) + + +# Do not import and use main() directly! Using it directly is actively +# discouraged by pip's maintainers. The name, location and behavior of +# this function is subject to change, so calling it directly is not +# portable across different pip versions. + +# In addition, running pip in-process is unsupported and unsafe. This is +# elaborated in detail at +# https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program. +# That document also provides suggestions that should work for nearly +# all users that are considering importing and using main() directly. + +# However, we know that certain users will still want to invoke pip +# in-process. If you understand and accept the implications of using pip +# in an unsupported manner, the best approach is to use runpy to avoid +# depending on the exact location of this entry point. + +# The following example shows how to use runpy to invoke pip in that +# case: +# +# sys.argv = ["pip", your, args, here] +# runpy.run_module("pip", run_name="__main__") +# +# Note that this will exit the process after running, unlike a direct +# call to main. As it is not safe to do any processing after calling +# main, this should not be an issue in practice. + + +def main(args: Optional[List[str]] = None) -> int: + if args is None: + args = sys.argv[1:] + + # Suppress the pkg_resources deprecation warning + # Note - we use a module of .*pkg_resources to cover + # the normal case (pip._vendor.pkg_resources) and the + # devendored case (a bare pkg_resources) + warnings.filterwarnings( + action="ignore", category=DeprecationWarning, module=".*pkg_resources" + ) + + # Configure our deprecation warnings to be sent through loggers + deprecation.install_warning_logger() + + autocomplete() + + try: + cmd_name, cmd_args = parse_command(args) + except PipError as exc: + sys.stderr.write(f"ERROR: {exc}") + sys.stderr.write(os.linesep) + sys.exit(1) + + # Needed for locale.getpreferredencoding(False) to work + # in pip._internal.utils.encoding.auto_decode + try: + locale.setlocale(locale.LC_ALL, "") + except locale.Error as e: + # setlocale can apparently crash if locale are uninitialized + logger.debug("Ignoring error %s when setting locale", e) + command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) + + return command.main(cmd_args) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 00000000..5ade356b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,134 @@ +"""A single place for constructing and exposing the main parser +""" + +import os +import subprocess +import sys +from typing import List, Optional, Tuple + +from pip._internal.build_env import get_runnable_pip +from pip._internal.cli import cmdoptions +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.commands import commands_dict, get_similar_commands +from pip._internal.exceptions import CommandError +from pip._internal.utils.misc import get_pip_version, get_prog + +__all__ = ["create_main_parser", "parse_command"] + + +def create_main_parser() -> ConfigOptionParser: + """Creates and returns the main parser for pip's CLI""" + + parser = ConfigOptionParser( + usage="\n%prog [options]", + add_help_option=False, + formatter=UpdatingDefaultsHelpFormatter(), + name="global", + prog=get_prog(), + ) + parser.disable_interspersed_args() + + parser.version = get_pip_version() + + # add the general options + gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser) + parser.add_option_group(gen_opts) + + # so the help formatter knows + parser.main = True # type: ignore + + # create command listing for description + description = [""] + [ + f"{name:27} {command_info.summary}" + for name, command_info in commands_dict.items() + ] + parser.description = "\n".join(description) + + return parser + + +def identify_python_interpreter(python: str) -> Optional[str]: + # If the named file exists, use it. + # If it's a directory, assume it's a virtual environment and + # look for the environment's Python executable. + if os.path.exists(python): + if os.path.isdir(python): + # bin/python for Unix, Scripts/python.exe for Windows + # Try both in case of odd cases like cygwin. + for exe in ("bin/python", "Scripts/python.exe"): + py = os.path.join(python, exe) + if os.path.exists(py): + return py + else: + return python + + # Could not find the interpreter specified + return None + + +def parse_command(args: List[str]) -> Tuple[str, List[str]]: + parser = create_main_parser() + + # Note: parser calls disable_interspersed_args(), so the result of this + # call is to split the initial args into the general options before the + # subcommand and everything else. + # For example: + # args: ['--timeout=5', 'install', '--user', 'INITools'] + # general_options: ['--timeout==5'] + # args_else: ['install', '--user', 'INITools'] + general_options, args_else = parser.parse_args(args) + + # --python + if general_options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + # Re-invoke pip using the specified Python interpreter + interpreter = identify_python_interpreter(general_options.python) + if interpreter is None: + raise CommandError( + f"Could not locate Python interpreter {general_options.python}" + ) + + pip_cmd = [ + interpreter, + get_runnable_pip(), + ] + pip_cmd.extend(args) + + # Set a flag so the child doesn't re-invoke itself, causing + # an infinite loop. + os.environ["_PIP_RUNNING_IN_SUBPROCESS"] = "1" + returncode = 0 + try: + proc = subprocess.run(pip_cmd) + returncode = proc.returncode + except (subprocess.SubprocessError, OSError) as exc: + raise CommandError(f"Failed to run pip under {interpreter}: {exc}") + sys.exit(returncode) + + # --version + if general_options.version: + sys.stdout.write(parser.version) + sys.stdout.write(os.linesep) + sys.exit() + + # pip || pip help -> print_help() + if not args_else or (args_else[0] == "help" and len(args_else) == 1): + parser.print_help() + sys.exit() + + # the subcommand name + cmd_name = args_else[0] + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + # all the args without the subcommand + cmd_args = args[:] + cmd_args.remove(cmd_name) + + return cmd_name, cmd_args diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 00000000..ae554b24 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,294 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Generator, List, Tuple + +from pip._internal.cli.status_codes import UNKNOWN_ERROR +from pip._internal.configuration import Configuration, ConfigurationError +from pip._internal.utils.misc import redact_auth_from_url, strtobool + +logger = logging.getLogger(__name__) + + +class PrettyHelpFormatter(optparse.IndentedHelpFormatter): + """A prettier/less verbose help formatter for optparse.""" + + def __init__(self, *args: Any, **kwargs: Any) -> None: + # help position must be aligned with __init__.parseopts.description + kwargs["max_help_position"] = 30 + kwargs["indent_increment"] = 1 + kwargs["width"] = shutil.get_terminal_size()[0] - 2 + super().__init__(*args, **kwargs) + + def format_option_strings(self, option: optparse.Option) -> str: + return self._format_option_strings(option) + + def _format_option_strings( + self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", " + ) -> str: + """ + Return a comma-separated list of option strings and metavars. + + :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') + :param mvarfmt: metavar format string + :param optsep: separator + """ + opts = [] + + if option._short_opts: + opts.append(option._short_opts[0]) + if option._long_opts: + opts.append(option._long_opts[0]) + if len(opts) > 1: + opts.insert(1, optsep) + + if option.takes_value(): + assert option.dest is not None + metavar = option.metavar or option.dest.lower() + opts.append(mvarfmt.format(metavar.lower())) + + return "".join(opts) + + def format_heading(self, heading: str) -> str: + if heading == "Options": + return "" + return heading + ":\n" + + def format_usage(self, usage: str) -> str: + """ + Ensure there is only one newline between usage and the first heading + if there is no description. + """ + msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) + return msg + + def format_description(self, description: str) -> str: + # leave full control over description to us + if description: + if hasattr(self.parser, "main"): + label = "Commands" + else: + label = "Description" + # some doc strings have initial newlines, some don't + description = description.lstrip("\n") + # some doc strings have final newlines and spaces, some don't + description = description.rstrip() + # dedent, then reindent + description = self.indent_lines(textwrap.dedent(description), " ") + description = f"{label}:\n{description}\n" + return description + else: + return "" + + def format_epilog(self, epilog: str) -> str: + # leave full control over epilog to us + if epilog: + return epilog + else: + return "" + + def indent_lines(self, text: str, indent: str) -> str: + new_lines = [indent + line for line in text.split("\n")] + return "\n".join(new_lines) + + +class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): + """Custom help formatter for use in ConfigOptionParser. + + This is updates the defaults before expanding them, allowing + them to show up correctly in the help listing. + + Also redact auth from url type options + """ + + def expand_default(self, option: optparse.Option) -> str: + default_values = None + if self.parser is not None: + assert isinstance(self.parser, ConfigOptionParser) + self.parser._update_defaults(self.parser.defaults) + assert option.dest is not None + default_values = self.parser.defaults.get(option.dest) + help_text = super().expand_default(option) + + if default_values and option.metavar == "URL": + if isinstance(default_values, str): + default_values = [default_values] + + # If its not a list, we should abort and just return the help text + if not isinstance(default_values, list): + default_values = [] + + for val in default_values: + help_text = help_text.replace(val, redact_auth_from_url(val)) + + return help_text + + +class CustomOptionParser(optparse.OptionParser): + def insert_option_group( + self, idx: int, *args: Any, **kwargs: Any + ) -> optparse.OptionGroup: + """Insert an OptionGroup at a given position.""" + group = self.add_option_group(*args, **kwargs) + + self.option_groups.pop() + self.option_groups.insert(idx, group) + + return group + + @property + def option_list_all(self) -> List[optparse.Option]: + """Get a list of all options, including those in option groups.""" + res = self.option_list[:] + for i in self.option_groups: + res.extend(i.option_list) + + return res + + +class ConfigOptionParser(CustomOptionParser): + """Custom option parser which updates its defaults by checking the + configuration files and environmental variables""" + + def __init__( + self, + *args: Any, + name: str, + isolated: bool = False, + **kwargs: Any, + ) -> None: + self.name = name + self.config = Configuration(isolated) + + assert self.name + super().__init__(*args, **kwargs) + + def check_default(self, option: optparse.Option, key: str, val: Any) -> Any: + try: + return option.check_value(key, val) + except optparse.OptionValueError as exc: + print(f"An error occurred during configuration: {exc}") + sys.exit(3) + + def _get_ordered_configuration_items( + self, + ) -> Generator[Tuple[str, Any], None, None]: + # Configuration gives keys in an unordered manner. Order them. + override_order = ["global", self.name, ":env:"] + + # Pool the options into different groups + section_items: Dict[str, List[Tuple[str, Any]]] = { + name: [] for name in override_order + } + for section_key, val in self.config.items(): + # ignore empty values + if not val: + logger.debug( + "Ignoring configuration key '%s' as it's value is empty.", + section_key, + ) + continue + + section, key = section_key.split(".", 1) + if section in override_order: + section_items[section].append((key, val)) + + # Yield each group in their override order + for section in override_order: + for key, val in section_items[section]: + yield key, val + + def _update_defaults(self, defaults: Dict[str, Any]) -> Dict[str, Any]: + """Updates the given defaults with values from the config files and + the environ. Does a little special handling for certain types of + options (lists).""" + + # Accumulate complex default state. + self.values = optparse.Values(self.defaults) + late_eval = set() + # Then set the options with those values + for key, val in self._get_ordered_configuration_items(): + # '--' because configuration supports only long names + option = self.get_option("--" + key) + + # Ignore options not present in this parser. E.g. non-globals put + # in [global] by users that want them to apply to all applicable + # commands. + if option is None: + continue + + assert option.dest is not None + + if option.action in ("store_true", "store_false"): + try: + val = strtobool(val) + except ValueError: + self.error( + f"{val} is not a valid value for {key} option, " + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead." + ) + elif option.action == "count": + with suppress(ValueError): + val = strtobool(val) + with suppress(ValueError): + val = int(val) + if not isinstance(val, int) or val < 0: + self.error( + f"{val} is not a valid value for {key} option, " + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0." + ) + elif option.action == "append": + val = val.split() + val = [self.check_default(option, key, v) for v in val] + elif option.action == "callback": + assert option.callback is not None + late_eval.add(option.dest) + opt_str = option.get_opt_string() + val = option.convert_value(opt_str, val) + # From take_action + args = option.callback_args or () + kwargs = option.callback_kwargs or {} + option.callback(option, opt_str, val, self, *args, **kwargs) + else: + val = self.check_default(option, key, val) + + defaults[option.dest] = val + + for key in late_eval: + defaults[key] = getattr(self.values, key) + self.values = None + return defaults + + def get_default_values(self) -> optparse.Values: + """Overriding to make updating the defaults after instantiation of + the option parser possible, _update_defaults() does the dirty work.""" + if not self.process_default_values: + # Old, pre-Optik 1.5 behaviour. + return optparse.Values(self.defaults) + + # Load the configuration, or error out in case of an error + try: + self.config.load() + except ConfigurationError as err: + self.exit(UNKNOWN_ERROR, str(err)) + + defaults = self._update_defaults(self.defaults.copy()) # ours + for option in self._get_all_options(): + assert option.dest is not None + default = defaults.get(option.dest) + if isinstance(default, str): + opt_str = option.get_opt_string() + defaults[option.dest] = option.check_value(opt_str, default) + return optparse.Values(defaults) + + def error(self, msg: str) -> None: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 00000000..0ad14031 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,68 @@ +import functools +from typing import Callable, Generator, Iterable, Iterator, Optional, Tuple + +from pip._vendor.rich.progress import ( + BarColumn, + DownloadColumn, + FileSizeColumn, + Progress, + ProgressColumn, + SpinnerColumn, + TextColumn, + TimeElapsedColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) + +from pip._internal.utils.logging import get_indentation + +DownloadProgressRenderer = Callable[[Iterable[bytes]], Iterator[bytes]] + + +def _rich_progress_bar( + iterable: Iterable[bytes], + *, + bar_type: str, + size: int, +) -> Generator[bytes, None, None]: + assert bar_type == "on", "This should only be used in the default mode." + + if not size: + total = float("inf") + columns: Tuple[ProgressColumn, ...] = ( + TextColumn("[progress.description]{task.description}"), + SpinnerColumn("line", speed=1.5), + FileSizeColumn(), + TransferSpeedColumn(), + TimeElapsedColumn(), + ) + else: + total = size + columns = ( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + DownloadColumn(), + TransferSpeedColumn(), + TextColumn("eta"), + TimeRemainingColumn(), + ) + + progress = Progress(*columns, refresh_per_second=30) + task_id = progress.add_task(" " * (get_indentation() + 2), total=total) + with progress: + for chunk in iterable: + yield chunk + progress.update(task_id, advance=len(chunk)) + + +def get_download_progress_renderer( + *, bar_type: str, size: Optional[int] = None +) -> DownloadProgressRenderer: + """Get an object that can be used to render the download progress. + + Returns a callable, that takes an iterable to "wrap". + """ + if bar_type == "on": + return functools.partial(_rich_progress_bar, bar_type=bar_type, size=size) + else: + return iter # no-op, when passed an iterator diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 00000000..6f2f79c6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,505 @@ +"""Contains the Command base classes that depend on PipSession. + +The classes in this module are in a separate module so the commands not +needing download / PackageFinder capability don't unnecessarily import the +PackageFinder machinery and all its vendored dependencies, etc. +""" + +import logging +import os +import sys +from functools import partial +from optparse import Values +from typing import TYPE_CHECKING, Any, List, Optional, Tuple + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.exceptions import CommandError, PreviousBuildDirError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, + install_req_from_parsed_requirement, + install_req_from_req_string, +) +from pip._internal.req.req_file import parse_requirements +from pip._internal.req.req_install import InstallRequirement +from pip._internal.resolution.base import BaseResolver +from pip._internal.self_outdated_check import pip_self_version_check +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) +from pip._internal.utils.virtualenv import running_under_virtualenv + +if TYPE_CHECKING: + from ssl import SSLContext + +logger = logging.getLogger(__name__) + + +def _create_truststore_ssl_context() -> Optional["SSLContext"]: + if sys.version_info < (3, 10): + raise CommandError("The truststore feature is only available for Python 3.10+") + + try: + import ssl + except ImportError: + logger.warning("Disabling truststore since ssl support is missing") + return None + + try: + from pip._vendor import truststore + except ImportError as e: + raise CommandError(f"The truststore feature is unavailable: {e}") + + return truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT) + + +class SessionCommandMixin(CommandContextMixIn): + + """ + A class mixin for command classes needing _build_session(). + """ + + def __init__(self) -> None: + super().__init__() + self._session: Optional[PipSession] = None + + @classmethod + def _get_index_urls(cls, options: Values) -> Optional[List[str]]: + """Return a list of index urls from user-provided options.""" + index_urls = [] + if not getattr(options, "no_index", False): + url = getattr(options, "index_url", None) + if url: + index_urls.append(url) + urls = getattr(options, "extra_index_urls", None) + if urls: + index_urls.extend(urls) + # Return None rather than an empty list + return index_urls or None + + def get_default_session(self, options: Values) -> PipSession: + """Get a default-managed session.""" + if self._session is None: + self._session = self.enter_context(self._build_session(options)) + # there's no type annotation on requests.Session, so it's + # automatically ContextManager[Any] and self._session becomes Any, + # then https://github.com/python/mypy/issues/7696 kicks in + assert self._session is not None + return self._session + + def _build_session( + self, + options: Values, + retries: Optional[int] = None, + timeout: Optional[int] = None, + fallback_to_certifi: bool = False, + ) -> PipSession: + cache_dir = options.cache_dir + assert not cache_dir or os.path.isabs(cache_dir) + + if "truststore" in options.features_enabled: + try: + ssl_context = _create_truststore_ssl_context() + except Exception: + if not fallback_to_certifi: + raise + ssl_context = None + else: + ssl_context = None + + session = PipSession( + cache=os.path.join(cache_dir, "http-v2") if cache_dir else None, + retries=retries if retries is not None else options.retries, + trusted_hosts=options.trusted_hosts, + index_urls=self._get_index_urls(options), + ssl_context=ssl_context, + ) + + # Handle custom ca-bundles from the user + if options.cert: + session.verify = options.cert + + # Handle SSL client certificate + if options.client_cert: + session.cert = options.client_cert + + # Handle timeouts + if options.timeout or timeout: + session.timeout = timeout if timeout is not None else options.timeout + + # Handle configured proxies + if options.proxy: + session.proxies = { + "http": options.proxy, + "https": options.proxy, + } + + # Determine if we can prompt the user for authentication or not + session.auth.prompting = not options.no_input + session.auth.keyring_provider = options.keyring_provider + + return session + + +class IndexGroupCommand(Command, SessionCommandMixin): + + """ + Abstract base class for commands with the index_group options. + + This also corresponds to the commands that permit the pip version check. + """ + + def handle_pip_version_check(self, options: Values) -> None: + """ + Do the pip version check if not disabled. + + This overrides the default behavior of not doing the check. + """ + # Make sure the index_group options are present. + assert hasattr(options, "no_index") + + if options.disable_pip_version_check or options.no_index: + return + + # Otherwise, check if we're using the latest version of pip available. + session = self._build_session( + options, + retries=0, + timeout=min(5, options.timeout), + # This is set to ensure the function does not fail when truststore is + # specified in use-feature but cannot be loaded. This usually raises a + # CommandError and shows a nice user-facing error, but this function is not + # called in that try-except block. + fallback_to_certifi=True, + ) + with session: + pip_self_version_check(session, options) + + +KEEPABLE_TEMPDIR_TYPES = [ + tempdir_kinds.BUILD_ENV, + tempdir_kinds.EPHEM_WHEEL_CACHE, + tempdir_kinds.REQ_BUILD, +] + + +def warn_if_run_as_root() -> None: + """Output a warning for sudo users on Unix. + + In a virtual environment, sudo pip still writes to virtualenv. + On Windows, users may run pip as Administrator without issues. + This warning only applies to Unix root users outside of virtualenv. + """ + if running_under_virtualenv(): + return + if not hasattr(os, "getuid"): + return + # On Windows, there are no "system managed" Python packages. Installing as + # Administrator via pip is the correct way of updating system environments. + # + # We choose sys.platform over utils.compat.WINDOWS here to enable Mypy platform + # checks: https://mypy.readthedocs.io/en/stable/common_issues.html + if sys.platform == "win32" or sys.platform == "cygwin": + return + + if os.getuid() != 0: + return + + logger.warning( + "Running pip as the 'root' user can result in broken permissions and " + "conflicting behaviour with the system package manager. " + "It is recommended to use a virtual environment instead: " + "https://pip.pypa.io/warnings/venv" + ) + + +def with_cleanup(func: Any) -> Any: + """Decorator for common logic related to managing temporary + directories. + """ + + def configure_tempdir_registry(registry: TempDirectoryTypeRegistry) -> None: + for t in KEEPABLE_TEMPDIR_TYPES: + registry.set_delete(t, False) + + def wrapper( + self: RequirementCommand, options: Values, args: List[Any] + ) -> Optional[int]: + assert self.tempdir_registry is not None + if options.no_clean: + configure_tempdir_registry(self.tempdir_registry) + + try: + return func(self, options, args) + except PreviousBuildDirError: + # This kind of conflict can occur when the user passes an explicit + # build directory with a pre-existing folder. In that case we do + # not want to accidentally remove it. + configure_tempdir_registry(self.tempdir_registry) + raise + + return wrapper + + +class RequirementCommand(IndexGroupCommand): + def __init__(self, *args: Any, **kw: Any) -> None: + super().__init__(*args, **kw) + + self.cmd_opts.add_option(cmdoptions.no_clean()) + + @staticmethod + def determine_resolver_variant(options: Values) -> str: + """Determines which resolver should be used, based on the given options.""" + if "legacy-resolver" in options.deprecated_features_enabled: + return "legacy" + + return "resolvelib" + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir: TempDirectory, + options: Values, + build_tracker: BuildTracker, + session: PipSession, + finder: PackageFinder, + use_user_site: bool, + download_dir: Optional[str] = None, + verbosity: int = 0, + ) -> RequirementPreparer: + """ + Create a RequirementPreparer instance for the given parameters. + """ + temp_build_dir_path = temp_build_dir.path + assert temp_build_dir_path is not None + legacy_resolver = False + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "resolvelib": + lazy_wheel = "fast-deps" in options.features_enabled + if lazy_wheel: + logger.warning( + "pip is using lazily downloaded wheels using HTTP " + "range requests to obtain dependency information. " + "This experimental feature is enabled through " + "--use-feature=fast-deps and it is not ready for " + "production." + ) + else: + legacy_resolver = True + lazy_wheel = False + if "fast-deps" in options.features_enabled: + logger.warning( + "fast-deps has no effect when used with the legacy resolver." + ) + + return RequirementPreparer( + build_dir=temp_build_dir_path, + src_dir=options.src_dir, + download_dir=download_dir, + build_isolation=options.build_isolation, + check_build_deps=options.check_build_deps, + build_tracker=build_tracker, + session=session, + progress_bar=options.progress_bar, + finder=finder, + require_hashes=options.require_hashes, + use_user_site=use_user_site, + lazy_wheel=lazy_wheel, + verbosity=verbosity, + legacy_resolver=legacy_resolver, + ) + + @classmethod + def make_resolver( + cls, + preparer: RequirementPreparer, + finder: PackageFinder, + options: Values, + wheel_cache: Optional[WheelCache] = None, + use_user_site: bool = False, + ignore_installed: bool = True, + ignore_requires_python: bool = False, + force_reinstall: bool = False, + upgrade_strategy: str = "to-satisfy-only", + use_pep517: Optional[bool] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> BaseResolver: + """ + Create a Resolver instance for the given parameters. + """ + make_install_req = partial( + install_req_from_req_string, + isolated=options.isolated_mode, + use_pep517=use_pep517, + ) + resolver_variant = cls.determine_resolver_variant(options) + # The long import name and duplicated invocation is needed to convince + # Mypy into correctly typechecking. Otherwise it would complain the + # "Resolver" class being redefined. + if resolver_variant == "resolvelib": + import pip._internal.resolution.resolvelib.resolver + + return pip._internal.resolution.resolvelib.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + import pip._internal.resolution.legacy.resolver + + return pip._internal.resolution.legacy.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + + def get_requirements( + self, + args: List[str], + options: Values, + finder: PackageFinder, + session: PipSession, + ) -> List[InstallRequirement]: + """ + Parse command-line arguments into the corresponding requirements. + """ + requirements: List[InstallRequirement] = [] + for filename in options.constraints: + for parsed_req in parse_requirements( + filename, + constraint=True, + finder=finder, + options=options, + session=session, + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + user_supplied=False, + ) + requirements.append(req_to_add) + + for req in args: + req_to_add = install_req_from_line( + req, + comes_from=None, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + for req in options.editables: + req_to_add = install_req_from_editable( + req, + user_supplied=True, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + # NOTE: options.require_hashes may be set if --require-hashes is True + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, finder=finder, options=options, session=session + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=parsed_req.options.get("config_settings") + if parsed_req.options + else None, + ) + requirements.append(req_to_add) + + # If any requirement has hash options, enable hash checking. + if any(req.has_hash_options for req in requirements): + options.require_hashes = True + + if not (args or options.editables or options.requirements): + opts = {"name": self.name} + if options.find_links: + raise CommandError( + "You must give at least one requirement to {name} " + '(maybe you meant "pip {name} {links}"?)'.format( + **dict(opts, links=" ".join(options.find_links)) + ) + ) + else: + raise CommandError( + "You must give at least one requirement to {name} " + '(see "pip help {name}")'.format(**opts) + ) + + return requirements + + @staticmethod + def trace_basic_info(finder: PackageFinder) -> None: + """ + Trace basic information about the provided objects. + """ + # Display where finder is looking for packages + search_scope = finder.search_scope + locations = search_scope.get_formatted_locations() + if locations: + logger.info(locations) + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to this requirement command. + + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + link_collector = LinkCollector.create(session, options=options) + selection_prefs = SelectionPreferences( + allow_yanked=True, + format_control=options.format_control, + allow_all_prereleases=options.pre, + prefer_binary=options.prefer_binary, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 00000000..cf2b976f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,159 @@ +import contextlib +import itertools +import logging +import sys +import time +from typing import IO, Generator, Optional + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation + +logger = logging.getLogger(__name__) + + +class SpinnerInterface: + def spin(self) -> None: + raise NotImplementedError() + + def finish(self, final_status: str) -> None: + raise NotImplementedError() + + +class InteractiveSpinner(SpinnerInterface): + def __init__( + self, + message: str, + file: Optional[IO[str]] = None, + spin_chars: str = "-\\|/", + # Empirically, 8 updates/second looks nice + min_update_interval_seconds: float = 0.125, + ): + self._message = message + if file is None: + file = sys.stdout + self._file = file + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._finished = False + + self._spin_cycle = itertools.cycle(spin_chars) + + self._file.write(" " * get_indentation() + self._message + " ... ") + self._width = 0 + + def _write(self, status: str) -> None: + assert not self._finished + # Erase what we wrote before by backspacing to the beginning, writing + # spaces to overwrite the old text, and then backspacing again + backup = "\b" * self._width + self._file.write(backup + " " * self._width + backup) + # Now we have a blank slate to add our status + self._file.write(status) + self._width = len(status) + self._file.flush() + self._rate_limiter.reset() + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._write(next(self._spin_cycle)) + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._write(final_status) + self._file.write("\n") + self._file.flush() + self._finished = True + + +# Used for dumb terminals, non-interactive installs (no tty), etc. +# We still print updates occasionally (once every 60 seconds by default) to +# act as a keep-alive for systems like Travis-CI that take lack-of-output as +# an indication that a task has frozen. +class NonInteractiveSpinner(SpinnerInterface): + def __init__(self, message: str, min_update_interval_seconds: float = 60.0) -> None: + self._message = message + self._finished = False + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._update("started") + + def _update(self, status: str) -> None: + assert not self._finished + self._rate_limiter.reset() + logger.info("%s: %s", self._message, status) + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._update("still running...") + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._update(f"finished with status '{final_status}'") + self._finished = True + + +class RateLimiter: + def __init__(self, min_update_interval_seconds: float) -> None: + self._min_update_interval_seconds = min_update_interval_seconds + self._last_update: float = 0 + + def ready(self) -> bool: + now = time.time() + delta = now - self._last_update + return delta >= self._min_update_interval_seconds + + def reset(self) -> None: + self._last_update = time.time() + + +@contextlib.contextmanager +def open_spinner(message: str) -> Generator[SpinnerInterface, None, None]: + # Interactive spinner goes directly to sys.stdout rather than being routed + # through the logging system, but it acts like it has level INFO, + # i.e. it's only displayed if we're at level INFO or better. + # Non-interactive spinner goes through the logging system, so it is always + # in sync with logging configuration. + if sys.stdout.isatty() and logger.getEffectiveLevel() <= logging.INFO: + spinner: SpinnerInterface = InteractiveSpinner(message) + else: + spinner = NonInteractiveSpinner(message) + try: + with hidden_cursor(sys.stdout): + yield spinner + except KeyboardInterrupt: + spinner.finish("canceled") + raise + except Exception: + spinner.finish("error") + raise + else: + spinner.finish("done") + + +HIDE_CURSOR = "\x1b[?25l" +SHOW_CURSOR = "\x1b[?25h" + + +@contextlib.contextmanager +def hidden_cursor(file: IO[str]) -> Generator[None, None, None]: + # The Windows terminal does not support the hide/show cursor ANSI codes, + # even via colorama. So don't even try. + if WINDOWS: + yield + # We don't want to clutter the output with control characters if we're + # writing to a file, or if the user is running with --quiet. + # See https://github.com/pypa/pip/issues/3418 + elif not file.isatty() or logger.getEffectiveLevel() > logging.INFO: + yield + else: + file.write(HIDE_CURSOR) + try: + yield + finally: + file.write(SHOW_CURSOR) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 00000000..5e29502c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py @@ -0,0 +1,6 @@ +SUCCESS = 0 +ERROR = 1 +UNKNOWN_ERROR = 2 +VIRTUALENV_NOT_FOUND = 3 +PREVIOUS_BUILD_DIR_ERROR = 4 +NO_MATCHES_FOUND = 23 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 00000000..858a4101 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,132 @@ +""" +Package containing all pip commands +""" + +import importlib +from collections import namedtuple +from typing import Any, Dict, Optional + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple("CommandInfo", "module_path, class_name, summary") + +# This dictionary does a bunch of heavy lifting for help output: +# - Enables avoiding additional (costly) imports for presenting `--help`. +# - The ordering matters for help display. +# +# Even though the module path starts with the same "pip._internal.commands" +# prefix, the full path makes testing easier (specifically when modifying +# `commands_dict` in test setup / teardown). +commands_dict: Dict[str, CommandInfo] = { + "install": CommandInfo( + "pip._internal.commands.install", + "InstallCommand", + "Install packages.", + ), + "download": CommandInfo( + "pip._internal.commands.download", + "DownloadCommand", + "Download packages.", + ), + "uninstall": CommandInfo( + "pip._internal.commands.uninstall", + "UninstallCommand", + "Uninstall packages.", + ), + "freeze": CommandInfo( + "pip._internal.commands.freeze", + "FreezeCommand", + "Output installed packages in requirements format.", + ), + "inspect": CommandInfo( + "pip._internal.commands.inspect", + "InspectCommand", + "Inspect the python environment.", + ), + "list": CommandInfo( + "pip._internal.commands.list", + "ListCommand", + "List installed packages.", + ), + "show": CommandInfo( + "pip._internal.commands.show", + "ShowCommand", + "Show information about installed packages.", + ), + "check": CommandInfo( + "pip._internal.commands.check", + "CheckCommand", + "Verify installed packages have compatible dependencies.", + ), + "config": CommandInfo( + "pip._internal.commands.configuration", + "ConfigurationCommand", + "Manage local and global configuration.", + ), + "search": CommandInfo( + "pip._internal.commands.search", + "SearchCommand", + "Search PyPI for packages.", + ), + "cache": CommandInfo( + "pip._internal.commands.cache", + "CacheCommand", + "Inspect and manage pip's wheel cache.", + ), + "index": CommandInfo( + "pip._internal.commands.index", + "IndexCommand", + "Inspect information available from package indexes.", + ), + "wheel": CommandInfo( + "pip._internal.commands.wheel", + "WheelCommand", + "Build wheels from your requirements.", + ), + "hash": CommandInfo( + "pip._internal.commands.hash", + "HashCommand", + "Compute hashes of package archives.", + ), + "completion": CommandInfo( + "pip._internal.commands.completion", + "CompletionCommand", + "A helper command used for command completion.", + ), + "debug": CommandInfo( + "pip._internal.commands.debug", + "DebugCommand", + "Show information useful for debugging.", + ), + "help": CommandInfo( + "pip._internal.commands.help", + "HelpCommand", + "Show help for commands.", + ), +} + + +def create_command(name: str, **kwargs: Any) -> Command: + """ + Create an instance of the Command class with the given name. + """ + module_path, class_name, summary = commands_dict[name] + module = importlib.import_module(module_path) + command_class = getattr(module, class_name) + command = command_class(name=name, summary=summary, **kwargs) + + return command + + +def get_similar_commands(name: str) -> Optional[str]: + """Command name auto-correct.""" + from difflib import get_close_matches + + name = name.lower() + + close_commands = get_close_matches(name, commands_dict.keys()) + + if close_commands: + return close_commands[0] + else: + return None diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..491da8f0c787b11a20f7792ba7c47d60ec702623 GIT binary patch literal 4053 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..06602eb0a5783da6f545cfc114b2a359351cf719 GIT binary patch literal 2141 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 UVg;)^ZCknenZ5r_pkinBzb-&ZFaQ7m literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..68a896f1dffae55d6372e383ee221de49c846d82 GIT binary patch literal 7640 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 Y*SagH!r67Hg`nGryHBJ8E=61a2P8hvEC2ui literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..14238611e314ef13103c953fa94d1dc20257f6ab GIT binary patch literal 1724 zcmZux%}*Og6rc5e+I$#{`Bvx#k_IZ_ZHUzN5Td38HI-VV%4wwdvRb@@S=g`4>|$)$ zYE*HcRiu^^R8duqj=1nIwAWmWh}5tu5>?YfZ?sUg;?$X4Z=g{}tM`6y_RX6&zj<$- zb#$Zv8CUlnFPaTeGtWIj9&#ilopoPNoRh1P~M$9TXBeQ(*N(fz#OnuX9k)c_>0@kof2V zOfCqzxW+}P1Z{Vr>9*om`|^uUSzaVF@`8ipVw4Q7_NC--Ty>FCl5e)=Z`}(-$Mp=y z#sR0H5)K3eJs;V{)@j4!D5KOqxx$2uGK59KXq~kZbWKbclsaD%Bfoep1H5$Xp$kjhF+SHd zDfW%^7Yx~-yRd(PFEEI*SNu9#mViLAC@v6&sdeYABw>)o$NjwwLMaYePru! zH7r3y%PtT!*M+u@L~3wLj$sFat04?gka7`;r_w^2NCg~*<^rNzpf)OA3oI2aU9~j} z27HNh0}faVmjW@)gRYCJkIJ(RWzn&qQqty;0Zru&#LJ%JDtTwYD{BbKci;*%9oK^7 zh%=5)(osHfbl-%N_Z-K>ieb4Xq<<%iP8n+zCAR|Y6~#2>6}RFoI`)m+^(h4#9-MTw z;<8qPSRn){uLx4wkGoLdQ4zwZ39^C#)@ zo^<)SH1;yxx8C{B=^LPH=uf~Thkx!F`fBc&CFl&(hIq{1o(4Zmr$0!uKXx)i&XK~9 z)bLtVHAtzd6_QAByQ)6)HIrT#u|!qXogx9ej|o>nk5RH61XTnd`UcUITtwR+k(U+( zEcQ^qlG;Ec#C!@)hy>^o70FmofZrx!4IFUtF~@WaKAJrm8fkL<$J`*_zxB>BAgYmV z6rT=;a2KD_88jY;2(u?oQ&f(0`#|t2u3?v=G)7)4dDFA?U6-M|M@9xB( literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e824daa60aa1237d895af8150240cd751b69e596 GIT binary patch literal 6771 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..def4159ffb61f8623e6805a568a8779c7aa188b5 GIT binary patch literal 4026 zcmb7HO>7&-6`o!0E|-6z{{I~<6)P4Ei?n6CNs8F1E!nMIS7{-q1sDX|HFrc&+T}8{ zOB)g-!vTCyiU78O0CE8XO@RWHD+6_JIkx9sL@SPnse~A4bLfq(+(UEfn;}=E6kRfh z**EXKdGluGeeccwJr)ZiXd~rMXT2yw|6~Kd$#r7)DpiA=#l8TJ(|!4@;3!03P# zu%(P-%Nf~LG79HOR?t>6DyL;DWQQ|hPAgW#j%K2q4q7q0CDX!b)r#A#nO07RtTwwn z)6VIz)nRvLI_<7Z7avEgZo4Pb!|ABiYxiaP1SBGi=Fa#|H@-P&ULsbuwv}41)CarQfmnr8 z$p|LOh^CMUm|{jU0~y(jn#x@%qnJS)G*ztPP#@@;5)RKOW(Xt^GmN7!j^Pk)nGu7;U*yaEmzW)pxU)32V^mOwF6cTGlCea5|bZqZ!)I7ra@gpf#PE24|oZ ziDQgiR1?}qedsEtsLu|uKaiiB4yZKksMnFHOeNaEl52-@1S0aU}Z2f-u zzJt)So827+?kZYBbDX`un`0UWnkkr~88D?M^14(L3EyWnoF$*HJ_)VY5%YcKdp^q0 zoPU2!{;k((Ka#m+wMn5)&PBe#6Yn#EReQ5hR6xtLIi^@}IoD_9GfQ}T)>Z*Mku;~NCO znBJJ1_i!pHQOU%Bpl;X}>0w)0-n3RMAxIz*03!-mNzKpA04kA|4TIztmxiUwip zcfcZ;cx(cLagI2pB0x@Zu{GneXw$y^EIsSkIGrNwH{op40Pu8?qvdq!)Oeb0 zZOlKobTMB{>yT+MDHv8dTgxP1s)of>ae+n}n{yZYuj~V9s!28odvNbUcL!C}=)Kq{ zu`N|At6C-6Rp}V2boNyxp)FmFpitr!QbXZtI|{{`)jBI}JvGfr+q-o=1@v0>>HVR9 zD{;1*IJ=p6^Go$Dwo>Gi$d-DntR7nv*3SI-+~af4)wg%S4@84?TvN#)IXBykP!{PN z(^omBy*<3o)nk|$@Y|BmKuH5tOTwYJs#}^1`Li2en89megTpA`LVY~gytvQtT7Am* z;)&o_nq|npUb`<}3QVGVQdZ2NtoUIELdz21w9A(^zDtsC>4ErZmjv3&lE>nkH$O9& zfk)D^?6E}6+mifbZ=Qg>exE-L^963>7D~!f0L3szz3u?kXo%sdMoR8{zDR{rfU97= zoI%OS7ya5sLwi7^k*37XU}74ck!-1k284bADBkZgRyD%E#s;mZ@P^Ae={e;B|VONw?h{ountQ&!j%FM6}?!kvD zwY=i8Y|CnwrjZ0w3XoD^vHbvYfOisv?h15w(6-vXr6$X2a_!ic>iBl+(C5KFMt>jO zY#rNby;^R)TIqRhb@{<^rTfUL^}yP0>-_A4&9+1}h}wQC>>{ZxydqblsCQs{;El?= zlV9~+dg?tqy48Q8+<#*2`t$zrXMLBp2U42@Ctrq?_V9}G3P9EIPt0~ZJtvXo5CY;Sp=DMP#X zb15*#j`~3JBXLPI#dknfNPvw)Y81q|^l^u`SE(BD&8lx+Fy%+0Zv!kGg0^M(a6XZj zWSFV2)j@+r*nvjkz~4h?LkP2ie3m$klIj$^$W$A928(0b=2JQgL|(PRW}d*~hrPV0 zip{)d+_3O@7Vb^iq29rU7iaI5!tx%YS_F|w67T~3^SDF=qaD*=e{?*3K%fxZ&1M7lO2iHdf7 zOB*k1fYN1Fo|Ui1!sK3NTj ziSC!OJkowYaQ|AlH3222t8aDc!PH8q5{chC|C{rbp;0gwDMtriMB-bK(Pxp-%Fye- zyZzhSb#^7*z7i&{gS$zQK&pj@ek)aVyhOTvu`xVeMeu#>5x?IF#=jC+aUAspTpBGZEe;e`RpuD#54fxTCQ&63jX6I zm9_G<`cO08%um4~>-EPCVQGTC_MN#Ys1;tx1vPl{@pMnS_bd4jt6c!EHvRiG;77}H zQ?L*eAzoBy?_ml6X_rHdhTxy<8k`&^(H(SZ2aSJ?CZXR!Ctrm6S9-QW{pC>q Z!?!j=NAD=Flq-VJasOBUMeNI0`#;*u@n!%3 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd2e67bcd7dcc020375390bde80600ac676d67a5 GIT binary patch literal 28964 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 S@7?>@`?kY<&w+TxJ^w#yiXK7$ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aa9bc9127bcbb3eac36b41152e97bbd0194f18e0 GIT binary patch literal 15707 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 CnH+Ec literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6022f20bd614252fd1cc870f844e382bfd3a08b7 GIT binary patch literal 7672 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 MZ(273M0fmu0Zz%`?f?J) literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f684fc39fc4cf390dae3a196fadb9a9f0cd0613 GIT binary patch literal 4777 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 IjNqRC4|dJpqW}N^ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py new file mode 100644 index 00000000..32833615 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py @@ -0,0 +1,225 @@ +import os +import textwrap +from optparse import Values +from typing import Any, List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, PipError +from pip._internal.utils import filesystem +from pip._internal.utils.logging import getLogger + +logger = getLogger(__name__) + + +class CacheCommand(Command): + """ + Inspect and manage pip's wheel cache. + + Subcommands: + + - dir: Show the cache directory. + - info: Show information about the cache. + - list: List filenames of packages stored in the cache. + - remove: Remove one or more package from the cache. + - purge: Remove all items from the cache. + + ```` can be a glob expression or a package name. + """ + + ignore_require_venv = True + usage = """ + %prog dir + %prog info + %prog list [] [--format=[human, abspath]] + %prog remove + %prog purge + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="human", + choices=("human", "abspath"), + help="Select the output format among: human (default) or abspath", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "dir": self.get_cache_dir, + "info": self.get_cache_info, + "list": self.list_cache_items, + "remove": self.remove_cache_items, + "purge": self.purge_cache, + } + + if not options.cache_dir: + logger.error("pip cache commands can not function since cache is disabled.") + return ERROR + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def get_cache_dir(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + logger.info(options.cache_dir) + + def get_cache_info(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + num_http_files = len(self._find_http_files(options)) + num_packages = len(self._find_wheels(options, "*")) + + http_cache_location = self._cache_dir(options, "http-v2") + old_http_cache_location = self._cache_dir(options, "http") + wheels_cache_location = self._cache_dir(options, "wheels") + http_cache_size = filesystem.format_size( + filesystem.directory_size(http_cache_location) + + filesystem.directory_size(old_http_cache_location) + ) + wheels_cache_size = filesystem.format_directory_size(wheels_cache_location) + + message = ( + textwrap.dedent( + """ + Package index page cache location (pip v23.3+): {http_cache_location} + Package index page cache location (older pips): {old_http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Locally built wheels location: {wheels_cache_location} + Locally built wheels size: {wheels_cache_size} + Number of locally built wheels: {package_count} + """ # noqa: E501 + ) + .format( + http_cache_location=http_cache_location, + old_http_cache_location=old_http_cache_location, + http_cache_size=http_cache_size, + num_http_files=num_http_files, + wheels_cache_location=wheels_cache_location, + package_count=num_packages, + wheels_cache_size=wheels_cache_size, + ) + .strip() + ) + + logger.info(message) + + def list_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if args: + pattern = args[0] + else: + pattern = "*" + + files = self._find_wheels(options, pattern) + if options.list_format == "human": + self.format_for_human(files) + else: + self.format_for_abspath(files) + + def format_for_human(self, files: List[str]) -> None: + if not files: + logger.info("No locally built wheels cached.") + return + + results = [] + for filename in files: + wheel = os.path.basename(filename) + size = filesystem.format_file_size(filename) + results.append(f" - {wheel} ({size})") + logger.info("Cache contents:\n") + logger.info("\n".join(sorted(results))) + + def format_for_abspath(self, files: List[str]) -> None: + if files: + logger.info("\n".join(sorted(files))) + + def remove_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if not args: + raise CommandError("Please provide a pattern") + + files = self._find_wheels(options, args[0]) + + no_matching_msg = "No matching packages" + if args[0] == "*": + # Only fetch http files if no specific pattern given + files += self._find_http_files(options) + else: + # Add the pattern to the log message + no_matching_msg += f' for pattern "{args[0]}"' + + if not files: + logger.warning(no_matching_msg) + + for filename in files: + os.unlink(filename) + logger.verbose("Removed %s", filename) + logger.info("Files removed: %s", len(files)) + + def purge_cache(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + return self.remove_cache_items(options, ["*"]) + + def _cache_dir(self, options: Values, subdir: str) -> str: + return os.path.join(options.cache_dir, subdir) + + def _find_http_files(self, options: Values) -> List[str]: + old_http_dir = self._cache_dir(options, "http") + new_http_dir = self._cache_dir(options, "http-v2") + return filesystem.find_files(old_http_dir, "*") + filesystem.find_files( + new_http_dir, "*" + ) + + def _find_wheels(self, options: Values, pattern: str) -> List[str]: + wheel_dir = self._cache_dir(options, "wheels") + + # The wheel filename format, as specified in PEP 427, is: + # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl + # + # Additionally, non-alphanumeric values in the distribution are + # normalized to underscores (_), meaning hyphens can never occur + # before `-{version}`. + # + # Given that information: + # - If the pattern we're given contains a hyphen (-), the user is + # providing at least the version. Thus, we can just append `*.whl` + # to match the rest of it. + # - If the pattern we're given doesn't contain a hyphen (-), the + # user is only providing the name. Thus, we append `-*.whl` to + # match the hyphen before the version, followed by anything else. + # + # PEP 427: https://www.python.org/dev/peps/pep-0427/ + pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") + + return filesystem.find_files(wheel_dir, pattern) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py new file mode 100644 index 00000000..5efd0a34 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,54 @@ +import logging +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.operations.check import ( + check_package_set, + create_package_set_from_installed, + warn_legacy_versions_and_specifiers, +) +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class CheckCommand(Command): + """Verify installed packages have compatible dependencies.""" + + usage = """ + %prog [options]""" + + def run(self, options: Values, args: List[str]) -> int: + package_set, parsing_probs = create_package_set_from_installed() + warn_legacy_versions_and_specifiers(package_set) + missing, conflicting = check_package_set(package_set) + + for project_name in missing: + version = package_set[project_name].version + for dependency in missing[project_name]: + write_output( + "%s %s requires %s, which is not installed.", + project_name, + version, + dependency[0], + ) + + for project_name in conflicting: + version = package_set[project_name].version + for dep_name, dep_version, req in conflicting[project_name]: + write_output( + "%s %s has requirement %s, but you have %s %s.", + project_name, + version, + req, + dep_name, + dep_version, + ) + + if missing or conflicting or parsing_probs: + return ERROR + else: + write_output("No broken requirements found.") + return SUCCESS diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 00000000..9e89e279 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,130 @@ +import sys +import textwrap +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.utils.misc import get_prog + +BASE_COMPLETION = """ +# pip {shell} completion start{script}# pip {shell} completion end +""" + +COMPLETION_SCRIPTS = { + "bash": """ + _pip_completion() + {{ + COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \\ + COMP_CWORD=$COMP_CWORD \\ + PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) + }} + complete -o default -F _pip_completion {prog} + """, + "zsh": """ + #compdef -P pip[0-9.]# + __pip() {{ + compadd $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$((CURRENT-1)) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null ) + }} + if [[ $zsh_eval_context[-1] == loadautofunc ]]; then + # autoload from fpath, call function directly + __pip "$@" + else + # eval/source/. command, register function for later + compdef __pip -P 'pip[0-9.]#' + fi + """, + "fish": """ + function __fish_complete_pip + set -lx COMP_WORDS (commandline -o) "" + set -lx COMP_CWORD ( \\ + math (contains -i -- (commandline -t) $COMP_WORDS)-1 \\ + ) + set -lx PIP_AUTO_COMPLETE 1 + string split \\ -- (eval $COMP_WORDS[1]) + end + complete -fa "(__fish_complete_pip)" -c {prog} + """, + "powershell": """ + if ((Test-Path Function:\\TabExpansion) -and -not ` + (Test-Path Function:\\_pip_completeBackup)) {{ + Rename-Item Function:\\TabExpansion _pip_completeBackup + }} + function TabExpansion($line, $lastWord) {{ + $lastBlock = [regex]::Split($line, '[|;]')[-1].TrimStart() + if ($lastBlock.StartsWith("{prog} ")) {{ + $Env:COMP_WORDS=$lastBlock + $Env:COMP_CWORD=$lastBlock.Split().Length - 1 + $Env:PIP_AUTO_COMPLETE=1 + (& {prog}).Split() + Remove-Item Env:COMP_WORDS + Remove-Item Env:COMP_CWORD + Remove-Item Env:PIP_AUTO_COMPLETE + }} + elseif (Test-Path Function:\\_pip_completeBackup) {{ + # Fall back on existing tab expansion + _pip_completeBackup $line $lastWord + }} + }} + """, +} + + +class CompletionCommand(Command): + """A helper command to be used for command completion.""" + + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--bash", + "-b", + action="store_const", + const="bash", + dest="shell", + help="Emit completion code for bash", + ) + self.cmd_opts.add_option( + "--zsh", + "-z", + action="store_const", + const="zsh", + dest="shell", + help="Emit completion code for zsh", + ) + self.cmd_opts.add_option( + "--fish", + "-f", + action="store_const", + const="fish", + dest="shell", + help="Emit completion code for fish", + ) + self.cmd_opts.add_option( + "--powershell", + "-p", + action="store_const", + const="powershell", + dest="shell", + help="Emit completion code for powershell", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + """Prints the completion code of the given shell""" + shells = COMPLETION_SCRIPTS.keys() + shell_options = ["--" + shell for shell in sorted(shells)] + if options.shell in shells: + script = textwrap.dedent( + COMPLETION_SCRIPTS.get(options.shell, "").format(prog=get_prog()) + ) + print(BASE_COMPLETION.format(script=script, shell=options.shell)) + return SUCCESS + else: + sys.stderr.write( + "ERROR: You must pass {}\n".format(" or ".join(shell_options)) + ) + return SUCCESS diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 00000000..1a1dc6b6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,280 @@ +import logging +import os +import subprocess +from optparse import Values +from typing import Any, List, Optional + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.configuration import ( + Configuration, + Kind, + get_configuration_files, + kinds, +) +from pip._internal.exceptions import PipError +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_prog, write_output + +logger = logging.getLogger(__name__) + + +class ConfigurationCommand(Command): + """ + Manage local and global configuration. + + Subcommands: + + - list: List the active configuration (or from the file specified) + - edit: Edit the configuration file in an editor + - get: Get the value associated with command.option + - set: Set the command.option=value + - unset: Unset the value associated with command.option + - debug: List the configuration files and values defined under them + + Configuration keys should be dot separated command and option name, + with the special prefix "global" affecting any command. For example, + "pip config set global.index-url https://example.org/" would configure + the index url for all commands, but "pip config set download.timeout 10" + would configure a 10 second timeout only for "pip download" commands. + + If none of --user, --global and --site are passed, a virtual + environment configuration file is used if one is active and the file + exists. Otherwise, all modifications happen to the user file by + default. + """ + + ignore_require_venv = True + usage = """ + %prog [] list + %prog [] [--editor ] edit + + %prog [] get command.option + %prog [] set command.option value + %prog [] unset command.option + %prog [] debug + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--editor", + dest="editor", + action="store", + default=None, + help=( + "Editor to use to edit the file. Uses VISUAL or EDITOR " + "environment variables if not provided." + ), + ) + + self.cmd_opts.add_option( + "--global", + dest="global_file", + action="store_true", + default=False, + help="Use the system-wide configuration file only", + ) + + self.cmd_opts.add_option( + "--user", + dest="user_file", + action="store_true", + default=False, + help="Use the user configuration file only", + ) + + self.cmd_opts.add_option( + "--site", + dest="site_file", + action="store_true", + default=False, + help="Use the current environment configuration file only", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "list": self.list_values, + "edit": self.open_in_editor, + "get": self.get_name, + "set": self.set_name_value, + "unset": self.unset_name, + "debug": self.list_config_values, + } + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Determine which configuration files are to be loaded + # Depends on whether the command is modifying. + try: + load_only = self._determine_file( + options, need_value=(action in ["get", "set", "unset", "edit"]) + ) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + # Load a new configuration + self.configuration = Configuration( + isolated=options.isolated_mode, load_only=load_only + ) + self.configuration.load() + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _determine_file(self, options: Values, need_value: bool) -> Optional[Kind]: + file_options = [ + key + for key, value in ( + (kinds.USER, options.user_file), + (kinds.GLOBAL, options.global_file), + (kinds.SITE, options.site_file), + ) + if value + ] + + if not file_options: + if not need_value: + return None + # Default to user, unless there's a site file. + elif any( + os.path.exists(site_config_file) + for site_config_file in get_configuration_files()[kinds.SITE] + ): + return kinds.SITE + else: + return kinds.USER + elif len(file_options) == 1: + return file_options[0] + + raise PipError( + "Need exactly one file to operate upon " + "(--user, --site, --global) to perform." + ) + + def list_values(self, options: Values, args: List[str]) -> None: + self._get_n_args(args, "list", n=0) + + for key, value in sorted(self.configuration.items()): + write_output("%s=%r", key, value) + + def get_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "get [name]", n=1) + value = self.configuration.get_value(key) + + write_output("%s", value) + + def set_name_value(self, options: Values, args: List[str]) -> None: + key, value = self._get_n_args(args, "set [name] [value]", n=2) + self.configuration.set_value(key, value) + + self._save_configuration() + + def unset_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "unset [name]", n=1) + self.configuration.unset_value(key) + + self._save_configuration() + + def list_config_values(self, options: Values, args: List[str]) -> None: + """List config key-value pairs across different config files""" + self._get_n_args(args, "debug", n=0) + + self.print_env_var_values() + # Iterate over config files and print if they exist, and the + # key-value pairs present in them if they do + for variant, files in sorted(self.configuration.iter_config_files()): + write_output("%s:", variant) + for fname in files: + with indent_log(): + file_exists = os.path.exists(fname) + write_output("%s, exists: %r", fname, file_exists) + if file_exists: + self.print_config_file_values(variant) + + def print_config_file_values(self, variant: Kind) -> None: + """Get key-value pairs from the file of a variant""" + for name, value in self.configuration.get_values_in_config(variant).items(): + with indent_log(): + write_output("%s: %s", name, value) + + def print_env_var_values(self) -> None: + """Get key-values pairs present as environment variables""" + write_output("%s:", "env_var") + with indent_log(): + for key, value in sorted(self.configuration.get_environ_vars()): + env_var = f"PIP_{key.upper()}" + write_output("%s=%r", env_var, value) + + def open_in_editor(self, options: Values, args: List[str]) -> None: + editor = self._determine_editor(options) + + fname = self.configuration.get_file_to_edit() + if fname is None: + raise PipError("Could not determine appropriate file.") + elif '"' in fname: + # This shouldn't happen, unless we see a username like that. + # If that happens, we'd appreciate a pull request fixing this. + raise PipError( + f'Can not open an editor for a file name containing "\n{fname}' + ) + + try: + subprocess.check_call(f'{editor} "{fname}"', shell=True) + except FileNotFoundError as e: + if not e.filename: + e.filename = editor + raise + except subprocess.CalledProcessError as e: + raise PipError(f"Editor Subprocess exited with exit code {e.returncode}") + + def _get_n_args(self, args: List[str], example: str, n: int) -> Any: + """Helper to make sure the command got the right number of arguments""" + if len(args) != n: + msg = ( + f"Got unexpected number of arguments, expected {n}. " + f'(example: "{get_prog()} config {example}")' + ) + raise PipError(msg) + + if n == 1: + return args[0] + else: + return args + + def _save_configuration(self) -> None: + # We successfully ran a modifying command. Need to save the + # configuration. + try: + self.configuration.save() + except Exception: + logger.exception( + "Unable to save configuration. Please report this as a bug." + ) + raise PipError("Internal Error.") + + def _determine_editor(self, options: Values) -> str: + if options.editor is not None: + return options.editor + elif "VISUAL" in os.environ: + return os.environ["VISUAL"] + elif "EDITOR" in os.environ: + return os.environ["EDITOR"] + else: + raise PipError("Could not determine editor to use.") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 00000000..7e5271c9 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,201 @@ +import importlib.resources +import locale +import logging +import os +import sys +from optparse import Values +from types import ModuleType +from typing import Any, Dict, List, Optional + +import pip._vendor +from pip._vendor.certifi import where +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.configuration import Configuration +from pip._internal.metadata import get_environment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_pip_version + +logger = logging.getLogger(__name__) + + +def show_value(name: str, value: Any) -> None: + logger.info("%s: %s", name, value) + + +def show_sys_implementation() -> None: + logger.info("sys.implementation:") + implementation_name = sys.implementation.name + with indent_log(): + show_value("name", implementation_name) + + +def create_vendor_txt_map() -> Dict[str, str]: + with importlib.resources.open_text("pip._vendor", "vendor.txt") as f: + # Purge non version specifying lines. + # Also, remove any space prefix or suffixes (including comments). + lines = [ + line.strip().split(" ", 1)[0] for line in f.readlines() if "==" in line + ] + + # Transform into "module" -> version dict. + return dict(line.split("==", 1) for line in lines) + + +def get_module_from_module_name(module_name: str) -> Optional[ModuleType]: + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower().replace("-", "_") + # PATCH: setuptools is actually only pkg_resources. + if module_name == "setuptools": + module_name = "pkg_resources" + + try: + __import__(f"pip._vendor.{module_name}", globals(), locals(), level=0) + return getattr(pip._vendor, module_name) + except ImportError: + # We allow 'truststore' to fail to import due + # to being unavailable on Python 3.9 and earlier. + if module_name == "truststore" and sys.version_info < (3, 10): + return None + raise + + +def get_vendor_version_from_module(module_name: str) -> Optional[str]: + module = get_module_from_module_name(module_name) + version = getattr(module, "__version__", None) + + if module and not version: + # Try to find version in debundled module info. + assert module.__file__ is not None + env = get_environment([os.path.dirname(module.__file__)]) + dist = env.get_distribution(module_name) + if dist: + version = str(dist.version) + + return version + + +def show_actual_vendor_versions(vendor_txt_versions: Dict[str, str]) -> None: + """Log the actual version and print extra info if there is + a conflict or if the actual version could not be imported. + """ + for module_name, expected_version in vendor_txt_versions.items(): + extra_message = "" + actual_version = get_vendor_version_from_module(module_name) + if not actual_version: + extra_message = ( + " (Unable to locate actual module version, using" + " vendor.txt specified version)" + ) + actual_version = expected_version + elif parse_version(actual_version) != parse_version(expected_version): + extra_message = ( + " (CONFLICT: vendor.txt suggests version should" + f" be {expected_version})" + ) + logger.info("%s==%s%s", module_name, actual_version, extra_message) + + +def show_vendor_versions() -> None: + logger.info("vendored library versions:") + + vendor_txt_versions = create_vendor_txt_map() + with indent_log(): + show_actual_vendor_versions(vendor_txt_versions) + + +def show_tags(options: Values) -> None: + tag_limit = 10 + + target_python = make_target_python(options) + tags = target_python.get_sorted_tags() + + # Display the target options that were explicitly provided. + formatted_target = target_python.format_given() + suffix = "" + if formatted_target: + suffix = f" (target: {formatted_target})" + + msg = f"Compatible tags: {len(tags)}{suffix}" + logger.info(msg) + + if options.verbose < 1 and len(tags) > tag_limit: + tags_limited = True + tags = tags[:tag_limit] + else: + tags_limited = False + + with indent_log(): + for tag in tags: + logger.info(str(tag)) + + if tags_limited: + msg = f"...\n[First {tag_limit} tags shown. Pass --verbose to show all.]" + logger.info(msg) + + +def ca_bundle_info(config: Configuration) -> str: + levels = {key.split(".", 1)[0] for key, _ in config.items()} + if not levels: + return "Not specified" + + levels_that_override_global = ["install", "wheel", "download"] + global_overriding_level = [ + level for level in levels if level in levels_that_override_global + ] + if not global_overriding_level: + return "global" + + if "global" in levels: + levels.remove("global") + return ", ".join(levels) + + +class DebugCommand(Command): + """ + Display debug information. + """ + + usage = """ + %prog """ + ignore_require_venv = True + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + self.parser.insert_option_group(0, self.cmd_opts) + self.parser.config.load() + + def run(self, options: Values, args: List[str]) -> int: + logger.warning( + "This command is only meant for debugging. " + "Do not use this with automation for parsing and getting these " + "details, since the output and options of this command may " + "change without notice." + ) + show_value("pip version", get_pip_version()) + show_value("sys.version", sys.version) + show_value("sys.executable", sys.executable) + show_value("sys.getdefaultencoding", sys.getdefaultencoding()) + show_value("sys.getfilesystemencoding", sys.getfilesystemencoding()) + show_value( + "locale.getpreferredencoding", + locale.getpreferredencoding(), + ) + show_value("sys.platform", sys.platform) + show_sys_implementation() + + show_value("'cert' config value", ca_bundle_info(self.parser.config)) + show_value("REQUESTS_CA_BUNDLE", os.environ.get("REQUESTS_CA_BUNDLE")) + show_value("CURL_CA_BUNDLE", os.environ.get("CURL_CA_BUNDLE")) + show_value("pip._vendor.certifi.where()", where()) + show_value("pip._vendor.DEBUNDLED", pip._vendor.DEBUNDLED) + + show_vendor_versions() + + show_tags(options) + + return SUCCESS diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py new file mode 100644 index 00000000..54247a78 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,147 @@ +import logging +import os +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import check_legacy_setup_py_options +from pip._internal.utils.misc import ensure_dir, normalize_path, write_output +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class DownloadCommand(RequirementCommand): + """ + Download packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports downloading from "requirements files", which provide + an easy way to specify a whole environment to be downloaded. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] ... + %prog [options] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.global_options()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + + self.cmd_opts.add_option( + "-d", + "--dest", + "--destination-dir", + "--destination-directory", + dest="download_dir", + metavar="dir", + default=os.curdir, + help="Download packages into .", + ) + + cmdoptions.add_target_python_options(self.cmd_opts) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + options.ignore_installed = True + # editable doesn't really make sense for `pip download`, but the bowels + # of the RequirementSet code require that property. + options.editables = [] + + cmdoptions.check_dist_restriction(options) + + options.download_dir = normalize_path(options.download_dir) + ensure_dir(options.download_dir) + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.download_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + downloaded: List[str] = [] + for req in requirement_set.requirements.values(): + if req.satisfied_by is None: + assert req.name is not None + preparer.save_linked_requirement(req) + downloaded.append(req.name) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + requirement_set.warn_legacy_versions_and_specifiers() + + if downloaded: + write_output("Successfully downloaded %s", " ".join(downloaded)) + + return SUCCESS diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 00000000..e64cb3d4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,109 @@ +import sys +from optparse import Values +from typing import AbstractSet, List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.freeze import freeze +from pip._internal.utils.compat import stdlib_pkgs + + +def _should_suppress_build_backends() -> bool: + return sys.version_info < (3, 12) + + +def _dev_pkgs() -> AbstractSet[str]: + pkgs = {"pip"} + + if _should_suppress_build_backends(): + pkgs |= {"setuptools", "distribute", "wheel"} + pkgs |= {"setuptools", "distribute", "wheel", "pkg-resources"} + + return pkgs + + +class FreezeCommand(Command): + """ + Output installed packages in requirements format. + + packages are listed in a case-insensitive sorted order. + """ + + usage = """ + %prog [options]""" + log_streams = ("ext://sys.stderr", "ext://sys.stderr") + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Use the order in the given requirements file and its " + "comments when generating output. This option can be " + "used multiple times." + ), + ) + self.cmd_opts.add_option( + "-l", + "--local", + dest="local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not output " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--all", + dest="freeze_all", + action="store_true", + help=( + "Do not skip these packages in the output:" + " {}".format(", ".join(_dev_pkgs())) + ), + ) + self.cmd_opts.add_option( + "--exclude-editable", + dest="exclude_editable", + action="store_true", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + skip = set(stdlib_pkgs) + if not options.freeze_all: + skip.update(_dev_pkgs()) + + if options.excludes: + skip.update(options.excludes) + + cmdoptions.check_list_path_option(options) + + for line in freeze( + requirement=options.requirements, + local_only=options.local, + user_only=options.user, + paths=options.path, + isolated=options.isolated_mode, + skip=skip, + exclude_editable=options.exclude_editable, + ): + sys.stdout.write(line + "\n") + return SUCCESS diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 00000000..042dac81 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,59 @@ +import hashlib +import logging +import sys +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.utils.hashes import FAVORITE_HASH, STRONG_HASHES +from pip._internal.utils.misc import read_chunks, write_output + +logger = logging.getLogger(__name__) + + +class HashCommand(Command): + """ + Compute a hash of a local package archive. + + These can be used with --hash in a requirements file to do repeatable + installs. + """ + + usage = "%prog [options] ..." + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-a", + "--algorithm", + dest="algorithm", + choices=STRONG_HASHES, + action="store", + default=FAVORITE_HASH, + help="The hash algorithm to use: one of {}".format( + ", ".join(STRONG_HASHES) + ), + ) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + self.parser.print_usage(sys.stderr) + return ERROR + + algorithm = options.algorithm + for path in args: + write_output( + "%s:\n--hash=%s:%s", path, algorithm, _hash_of_file(path, algorithm) + ) + return SUCCESS + + +def _hash_of_file(path: str, algorithm: str) -> str: + """Return the hash digest of a file.""" + with open(path, "rb") as archive: + hash = hashlib.new(algorithm) + for chunk in read_chunks(archive): + hash.update(chunk) + return hash.hexdigest() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py new file mode 100644 index 00000000..62066318 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py @@ -0,0 +1,41 @@ +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError + + +class HelpCommand(Command): + """Show help for commands""" + + usage = """ + %prog """ + ignore_require_venv = True + + def run(self, options: Values, args: List[str]) -> int: + from pip._internal.commands import ( + commands_dict, + create_command, + get_similar_commands, + ) + + try: + # 'pip help' with no args is handled by pip.__init__.parseopt() + cmd_name = args[0] # the command we need help for + except IndexError: + return SUCCESS + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + command = create_command(cmd_name) + command.parser.print_help() + + return SUCCESS diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py new file mode 100644 index 00000000..f55e9e49 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py @@ -0,0 +1,139 @@ +import logging +from optparse import Values +from typing import Any, Iterable, List, Optional, Union + +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.commands.search import print_dist_installation_info +from pip._internal.exceptions import CommandError, DistributionNotFound, PipError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class IndexCommand(IndexGroupCommand): + """ + Inspect information available from package indexes. + """ + + ignore_require_venv = True + usage = """ + %prog versions + """ + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "versions": self.get_available_package_versions, + } + + logger.warning( + "pip index is currently an experimental command. " + "It may be removed/changed in a future release " + "without prior warning." + ) + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to the index command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) + + def get_available_package_versions(self, options: Values, args: List[Any]) -> None: + if len(args) != 1: + raise CommandError("You need to specify exactly one argument") + + target_python = cmdoptions.make_target_python(options) + query = args[0] + + with self._build_session(options) as session: + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + versions: Iterable[Union[LegacyVersion, Version]] = ( + candidate.version for candidate in finder.find_all_candidates(query) + ) + + if not options.pre: + # Remove prereleases + versions = ( + version for version in versions if not version.is_prerelease + ) + versions = set(versions) + + if not versions: + raise DistributionNotFound( + f"No matching distribution found for {query}" + ) + + formatted_versions = [str(ver) for ver in sorted(versions, reverse=True)] + latest = formatted_versions[0] + + write_output(f"{query} ({latest})") + write_output("Available versions: {}".format(", ".join(formatted_versions))) + print_dist_installation_info(query, latest) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py new file mode 100644 index 00000000..27c8fa3d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py @@ -0,0 +1,92 @@ +import logging +from optparse import Values +from typing import Any, Dict, List + +from pip._vendor.packaging.markers import default_environment +from pip._vendor.rich import print_json + +from pip import __version__ +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + + +class InspectCommand(Command): + """ + Inspect the content of a Python environment and produce a report in JSON format. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + cmdoptions.check_list_path_option(options) + dists = get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + skip=set(stdlib_pkgs), + ) + output = { + "version": "1", + "pip_version": __version__, + "installed": [self._dist_to_dict(dist) for dist in dists], + "environment": default_environment(), + # TODO tags? scheme? + } + print_json(data=output) + return SUCCESS + + def _dist_to_dict(self, dist: BaseDistribution) -> Dict[str, Any]: + res: Dict[str, Any] = { + "metadata": dist.metadata_dict, + "metadata_location": dist.info_location, + } + # direct_url. Note that we don't have download_info (as in the installation + # report) since it is not recorded in installed metadata. + direct_url = dist.direct_url + if direct_url is not None: + res["direct_url"] = direct_url.to_dict() + else: + # Emulate direct_url for legacy editable installs. + editable_project_location = dist.editable_project_location + if editable_project_location is not None: + res["direct_url"] = { + "url": path_to_url(editable_project_location), + "dir_info": { + "editable": True, + }, + } + # installer + installer = dist.installer + if dist.installer: + res["installer"] = installer + # requested + if dist.installed_with_dist_info: + res["requested"] = dist.requested + return res diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py new file mode 100644 index 00000000..e944bb95 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,774 @@ +import errno +import json +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from typing import List, Optional + +from pip._vendor.rich import print_json + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import ( + RequirementCommand, + warn_if_run_as_root, + with_cleanup, +) +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, InstallationError +from pip._internal.locations import get_scheme +from pip._internal.metadata import get_environment +from pip._internal.models.installation_report import InstallationReport +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.operations.check import ConflictDetails, check_install_conflicts +from pip._internal.req import install_given_reqs +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + check_externally_managed, + ensure_dir, + get_pip_version, + protect_pip_from_modification_on_windows, + write_output, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) +from pip._internal.wheel_builder import build, should_build_for_install_command + +logger = getLogger(__name__) + + +class InstallCommand(RequirementCommand): + """ + Install packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports installing from "requirements files", which provide + an easy way to specify a whole environment to be installed. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.pre()) + + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option( + "--dry-run", + action="store_true", + dest="dry_run", + default=False, + help=( + "Don't actually install anything, just print what would be. " + "Can be used in combination with --ignore-installed " + "to 'resolve' the requirements." + ), + ) + self.cmd_opts.add_option( + "-t", + "--target", + dest="target_dir", + metavar="dir", + default=None, + help=( + "Install packages into . " + "By default this will not replace existing files/folders in " + ". Use --upgrade to replace existing packages in " + "with new versions." + ), + ) + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option( + "--user", + dest="use_user_site", + action="store_true", + help=( + "Install to the Python user install directory for your " + "platform. Typically ~/.local/, or %APPDATA%\\Python on " + "Windows. (See the Python documentation for site.USER_BASE " + "for full details.)" + ), + ) + self.cmd_opts.add_option( + "--no-user", + dest="use_user_site", + action="store_false", + help=SUPPRESS_HELP, + ) + self.cmd_opts.add_option( + "--root", + dest="root_path", + metavar="dir", + default=None, + help="Install everything relative to this alternate root directory.", + ) + self.cmd_opts.add_option( + "--prefix", + dest="prefix_path", + metavar="dir", + default=None, + help=( + "Installation prefix where lib, bin and other top-level " + "folders are placed. Note that the resulting installation may " + "contain scripts and other resources which reference the " + "Python interpreter of pip, and not that of ``--prefix``. " + "See also the ``--python`` option if the intention is to " + "install packages into another (possibly pip-free) " + "environment." + ), + ) + + self.cmd_opts.add_option(cmdoptions.src()) + + self.cmd_opts.add_option( + "-U", + "--upgrade", + dest="upgrade", + action="store_true", + help=( + "Upgrade all specified packages to the newest available " + "version. The handling of dependencies depends on the " + "upgrade-strategy used." + ), + ) + + self.cmd_opts.add_option( + "--upgrade-strategy", + dest="upgrade_strategy", + default="only-if-needed", + choices=["only-if-needed", "eager"], + help=( + "Determines how dependency upgrading should be handled " + "[default: %default]. " + '"eager" - dependencies are upgraded regardless of ' + "whether the currently installed version satisfies the " + "requirements of the upgraded package(s). " + '"only-if-needed" - are upgraded only when they do not ' + "satisfy the requirements of the upgraded package(s)." + ), + ) + + self.cmd_opts.add_option( + "--force-reinstall", + dest="force_reinstall", + action="store_true", + help="Reinstall all packages even if they are already up-to-date.", + ) + + self.cmd_opts.add_option( + "-I", + "--ignore-installed", + dest="ignore_installed", + action="store_true", + help=( + "Ignore the installed packages, overwriting them. " + "This can break your system if the existing package " + "is of a different version or was installed " + "with a different package manager!" + ), + ) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--compile", + action="store_true", + dest="compile", + default=True, + help="Compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-compile", + action="store_false", + dest="compile", + help="Do not compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-warn-script-location", + action="store_false", + dest="warn_script_location", + default=True, + help="Do not warn when installing scripts outside PATH", + ) + self.cmd_opts.add_option( + "--no-warn-conflicts", + action="store_false", + dest="warn_about_conflicts", + default=True, + help="Do not warn about broken dependencies", + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + self.cmd_opts.add_option( + "--report", + dest="json_report_file", + metavar="file", + default=None, + help=( + "Generate a JSON file describing what pip did to install " + "the provided requirements. " + "Can be used in combination with --dry-run and --ignore-installed " + "to 'resolve' the requirements. " + "When - is used as file name it writes to stdout. " + "When writing to stdout, please combine with the --quiet option " + "to avoid mixing pip logging output with JSON output." + ), + ) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + # Check whether the environment we're installing into is externally + # managed, as specified in PEP 668. Specifying --root, --target, or + # --prefix disables the check, since there's no reliable way to locate + # the EXTERNALLY-MANAGED file for those cases. An exception is also + # made specifically for "--dry-run --report" for convenience. + installing_into_current_environment = ( + not (options.dry_run and options.json_report_file) + and options.root_path is None + and options.target_dir is None + and options.prefix_path is None + ) + if ( + installing_into_current_environment + and not options.override_externally_managed + ): + check_externally_managed() + + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_dist_restriction(options, check_target=True) + + logger.verbose("Using %s", get_pip_version()) + options.use_user_site = decide_user_install( + options.use_user_site, + prefix_path=options.prefix_path, + target_dir=options.target_dir, + root_path=options.root_path, + isolated_mode=options.isolated_mode, + ) + + target_temp_dir: Optional[TempDirectory] = None + target_temp_dir_path: Optional[str] = None + if options.target_dir: + options.ignore_installed = True + options.target_dir = os.path.abspath(options.target_dir) + if ( + # fmt: off + os.path.exists(options.target_dir) and + not os.path.isdir(options.target_dir) + # fmt: on + ): + raise CommandError( + "Target path exists but is not a directory, will not continue." + ) + + # Create a target directory for using with the target option + target_temp_dir = TempDirectory(kind="target") + target_temp_dir_path = target_temp_dir.path + self.enter_context(target_temp_dir) + + global_options = options.global_options or [] + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + # Only when installing is it permitted to use PEP 660. + # In other circumstances (pip wheel, pip download) we generate + # regular (i.e. non editable) metadata and wheels. + for req in reqs: + req.permit_editable_wheels = True + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + use_user_site=options.use_user_site, + verbosity=self.verbosity, + ) + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + use_user_site=options.use_user_site, + ignore_installed=options.ignore_installed, + ignore_requires_python=options.ignore_requires_python, + force_reinstall=options.force_reinstall, + upgrade_strategy=upgrade_strategy, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=not options.target_dir + ) + + if options.json_report_file: + report = InstallationReport(requirement_set.requirements_to_install) + if options.json_report_file == "-": + print_json(data=report.to_dict()) + else: + with open(options.json_report_file, "w", encoding="utf-8") as f: + json.dump(report.to_dict(), f, indent=2, ensure_ascii=False) + + if options.dry_run: + # In non dry-run mode, the legacy versions and specifiers check + # will be done as part of conflict detection. + requirement_set.warn_legacy_versions_and_specifiers() + would_install_items = sorted( + (r.metadata["name"], r.metadata["version"]) + for r in requirement_set.requirements_to_install + ) + if would_install_items: + write_output( + "Would install %s", + " ".join("-".join(item) for item in would_install_items), + ) + return SUCCESS + + try: + pip_req = requirement_set.get_requirement("pip") + except KeyError: + modifying_pip = False + else: + # If we're not replacing an already installed pip, + # we're not modifying it. + modifying_pip = pip_req.satisfied_by is None + protect_pip_from_modification_on_windows(modifying_pip=modifying_pip) + + reqs_to_build = [ + r + for r in requirement_set.requirements.values() + if should_build_for_install_command(r) + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + build_options=[], + global_options=global_options, + ) + + if build_failures: + raise InstallationError( + "Could not build wheels for {}, which is required to " + "install pyproject.toml-based projects".format( + ", ".join(r.name for r in build_failures) # type: ignore + ) + ) + + to_install = resolver.get_installation_order(requirement_set) + + # Check for conflicts in the package set we're installing. + conflicts: Optional[ConflictDetails] = None + should_warn_about_conflicts = ( + not options.ignore_dependencies and options.warn_about_conflicts + ) + if should_warn_about_conflicts: + conflicts = self._determine_conflicts(to_install) + + # Don't warn about script install locations if + # --target or --prefix has been specified + warn_script_location = options.warn_script_location + if options.target_dir or options.prefix_path: + warn_script_location = False + + installed = install_given_reqs( + to_install, + global_options, + root=options.root_path, + home=target_temp_dir_path, + prefix=options.prefix_path, + warn_script_location=warn_script_location, + use_user_site=options.use_user_site, + pycompile=options.compile, + ) + + lib_locations = get_lib_location_guesses( + user=options.use_user_site, + home=target_temp_dir_path, + root=options.root_path, + prefix=options.prefix_path, + isolated=options.isolated_mode, + ) + env = get_environment(lib_locations) + + installed.sort(key=operator.attrgetter("name")) + items = [] + for result in installed: + item = result.name + try: + installed_dist = env.get_distribution(item) + if installed_dist is not None: + item = f"{item}-{installed_dist.version}" + except Exception: + pass + items.append(item) + + if conflicts is not None: + self._warn_about_conflicts( + conflicts, + resolver_variant=self.determine_resolver_variant(options), + ) + + installed_desc = " ".join(items) + if installed_desc: + write_output( + "Successfully installed %s", + installed_desc, + ) + except OSError as error: + show_traceback = self.verbosity >= 1 + + message = create_os_error_message( + error, + show_traceback, + options.use_user_site, + ) + logger.error(message, exc_info=show_traceback) + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS + + def _handle_target_dir( + self, target_dir: str, target_temp_dir: TempDirectory, upgrade: bool + ) -> None: + ensure_dir(target_dir) + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + lib_dir_list = [] + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + scheme = get_scheme("", home=target_temp_dir.path) + purelib_dir = scheme.purelib + platlib_dir = scheme.platlib + data_dir = scheme.data + + if os.path.exists(purelib_dir): + lib_dir_list.append(purelib_dir) + if os.path.exists(platlib_dir) and platlib_dir != purelib_dir: + lib_dir_list.append(platlib_dir) + if os.path.exists(data_dir): + lib_dir_list.append(data_dir) + + for lib_dir in lib_dir_list: + for item in os.listdir(lib_dir): + if lib_dir == data_dir: + ddir = os.path.join(data_dir, item) + if any(s.startswith(ddir) for s in lib_dir_list[:-1]): + continue + target_item_dir = os.path.join(target_dir, item) + if os.path.exists(target_item_dir): + if not upgrade: + logger.warning( + "Target directory %s already exists. Specify " + "--upgrade to force replacement.", + target_item_dir, + ) + continue + if os.path.islink(target_item_dir): + logger.warning( + "Target directory %s already exists and is " + "a link. pip will not automatically replace " + "links, please remove if replacement is " + "desired.", + target_item_dir, + ) + continue + if os.path.isdir(target_item_dir): + shutil.rmtree(target_item_dir) + else: + os.remove(target_item_dir) + + shutil.move(os.path.join(lib_dir, item), target_item_dir) + + def _determine_conflicts( + self, to_install: List[InstallRequirement] + ) -> Optional[ConflictDetails]: + try: + return check_install_conflicts(to_install) + except Exception: + logger.exception( + "Error while checking for conflicts. Please file an issue on " + "pip's issue tracker: https://github.com/pypa/pip/issues/new" + ) + return None + + def _warn_about_conflicts( + self, conflict_details: ConflictDetails, resolver_variant: str + ) -> None: + package_set, (missing, conflicting) = conflict_details + if not missing and not conflicting: + return + + parts: List[str] = [] + if resolver_variant == "legacy": + parts.append( + "pip's legacy dependency resolver does not consider dependency " + "conflicts when selecting packages. This behaviour is the " + "source of the following dependency conflicts." + ) + else: + assert resolver_variant == "resolvelib" + parts.append( + "pip's dependency resolver does not currently take into account " + "all the packages that are installed. This behaviour is the " + "source of the following dependency conflicts." + ) + + # NOTE: There is some duplication here, with commands/check.py + for project_name in missing: + version = package_set[project_name][0] + for dependency in missing[project_name]: + message = ( + f"{project_name} {version} requires {dependency[1]}, " + "which is not installed." + ) + parts.append(message) + + for project_name in conflicting: + version = package_set[project_name][0] + for dep_name, dep_version, req in conflicting[project_name]: + message = ( + "{name} {version} requires {requirement}, but {you} have " + "{dep_name} {dep_version} which is incompatible." + ).format( + name=project_name, + version=version, + requirement=req, + dep_name=dep_name, + dep_version=dep_version, + you=("you" if resolver_variant == "resolvelib" else "you'll"), + ) + parts.append(message) + + logger.critical("\n".join(parts)) + + +def get_lib_location_guesses( + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> List[str]: + scheme = get_scheme( + "", + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + return [scheme.purelib, scheme.platlib] + + +def site_packages_writable(root: Optional[str], isolated: bool) -> bool: + return all( + test_writable_dir(d) + for d in set(get_lib_location_guesses(root=root, isolated=isolated)) + ) + + +def decide_user_install( + use_user_site: Optional[bool], + prefix_path: Optional[str] = None, + target_dir: Optional[str] = None, + root_path: Optional[str] = None, + isolated_mode: bool = False, +) -> bool: + """Determine whether to do a user install based on the input options. + + If use_user_site is False, no additional checks are done. + If use_user_site is True, it is checked for compatibility with other + options. + If use_user_site is None, the default behaviour depends on the environment, + which is provided by the other arguments. + """ + # In some cases (config from tox), use_user_site can be set to an integer + # rather than a bool, which 'use_user_site is False' wouldn't catch. + if (use_user_site is not None) and (not use_user_site): + logger.debug("Non-user install by explicit request") + return False + + if use_user_site: + if prefix_path: + raise CommandError( + "Can not combine '--user' and '--prefix' as they imply " + "different installation locations" + ) + if virtualenv_no_global(): + raise InstallationError( + "Can not perform a '--user' install. User site-packages " + "are not visible in this virtualenv." + ) + logger.debug("User install by explicit request") + return True + + # If we are here, user installs have not been explicitly requested/avoided + assert use_user_site is None + + # user install incompatible with --prefix/--target + if prefix_path or target_dir: + logger.debug("Non-user install due to --prefix or --target option") + return False + + # If user installs are not enabled, choose a non-user install + if not site.ENABLE_USER_SITE: + logger.debug("Non-user install because user site-packages disabled") + return False + + # If we have permission for a non-user install, do that, + # otherwise do a user install. + if site_packages_writable(root=root_path, isolated=isolated_mode): + logger.debug("Non-user install because site-packages writeable") + return False + + logger.info( + "Defaulting to user installation because normal site-packages " + "is not writeable" + ) + return True + + +def create_os_error_message( + error: OSError, show_traceback: bool, using_user_site: bool +) -> str: + """Format an error message for an OSError + + It may occur anytime during the execution of the install command. + """ + parts = [] + + # Mention the error if we are not going to show a traceback + parts.append("Could not install packages due to an OSError") + if not show_traceback: + parts.append(": ") + parts.append(str(error)) + else: + parts.append(".") + + # Spilt the error indication from a helper message (if any) + parts[-1] += "\n" + + # Suggest useful actions to the user: + # (1) using user site-packages or (2) verifying the permissions + if error.errno == errno.EACCES: + user_option_part = "Consider using the `--user` option" + permissions_part = "Check the permissions" + + if not running_under_virtualenv() and not using_user_site: + parts.extend( + [ + user_option_part, + " or ", + permissions_part.lower(), + ] + ) + else: + parts.append(permissions_part) + parts.append(".\n") + + # Suggest the user to enable Long Paths if path length is + # more than 260 + if ( + WINDOWS + and error.errno == errno.ENOENT + and error.filename + and len(error.filename) > 260 + ): + parts.append( + "HINT: This error might have occurred since " + "this system does not have Windows Long Path " + "support enabled. You can find information on " + "how to enable this at " + "https://pip.pypa.io/warnings/enable-long-paths\n" + ) + + return "".join(parts).strip() + "\n" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py new file mode 100644 index 00000000..32fb19b2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,370 @@ +import json +import logging +from optparse import Values +from typing import TYPE_CHECKING, Generator, List, Optional, Sequence, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.misc import tabulate, write_output + +if TYPE_CHECKING: + from pip._internal.metadata.base import DistributionVersion + + class _DistWithLatestInfo(BaseDistribution): + """Give the distribution object a couple of extra fields. + + These will be populated during ``get_outdated()``. This is dirty but + makes the rest of the code much cleaner. + """ + + latest_version: DistributionVersion + latest_filetype: str + + _ProcessedDists = Sequence[_DistWithLatestInfo] + + +from pip._vendor.packaging.version import parse + +logger = logging.getLogger(__name__) + + +class ListCommand(IndexGroupCommand): + """ + List installed packages, including editables. + + Packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-o", + "--outdated", + action="store_true", + default=False, + help="List outdated packages", + ) + self.cmd_opts.add_option( + "-u", + "--uptodate", + action="store_true", + default=False, + help="List uptodate packages", + ) + self.cmd_opts.add_option( + "-e", + "--editable", + action="store_true", + default=False, + help="List editable projects.", + ) + self.cmd_opts.add_option( + "-l", + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="columns", + choices=("columns", "freeze", "json"), + help=( + "Select the output format among: columns (default), freeze, or json. " + "The 'freeze' format cannot be used with the --outdated option." + ), + ) + + self.cmd_opts.add_option( + "--not-required", + action="store_true", + dest="not_required", + help="List packages that are not dependencies of installed packages.", + ) + + self.cmd_opts.add_option( + "--exclude-editable", + action="store_false", + dest="include_editable", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option( + "--include-editable", + action="store_true", + dest="include_editable", + help="Include editable package from output.", + default=True, + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + index_opts = cmdoptions.make_option_group(cmdoptions.index_group, self.parser) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def _build_package_finder( + self, options: Values, session: PipSession + ) -> PackageFinder: + """ + Create a package finder appropriate to this list command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + + def run(self, options: Values, args: List[str]) -> int: + if options.outdated and options.uptodate: + raise CommandError("Options --outdated and --uptodate cannot be combined.") + + if options.outdated and options.list_format == "freeze": + raise CommandError( + "List format 'freeze' cannot be used with the --outdated option." + ) + + cmdoptions.check_list_path_option(options) + + skip = set(stdlib_pkgs) + if options.excludes: + skip.update(canonicalize_name(n) for n in options.excludes) + + packages: "_ProcessedDists" = [ + cast("_DistWithLatestInfo", d) + for d in get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + editables_only=options.editable, + include_editables=options.include_editable, + skip=skip, + ) + ] + + # get_not_required must be called firstly in order to find and + # filter out all dependencies correctly. Otherwise a package + # can't be identified as requirement because some parent packages + # could be filtered out before. + if options.not_required: + packages = self.get_not_required(packages, options) + + if options.outdated: + packages = self.get_outdated(packages, options) + elif options.uptodate: + packages = self.get_uptodate(packages, options) + + self.output_package_listing(packages, options) + return SUCCESS + + def get_outdated( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if parse(str(dist.latest_version)) > parse(str(dist.version)) + ] + + def get_uptodate( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if parse(str(dist.latest_version)) == parse(str(dist.version)) + ] + + def get_not_required( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + dep_keys = { + canonicalize_name(dep.name) + for dist in packages + for dep in (dist.iter_dependencies() or ()) + } + + # Create a set to remove duplicate packages, and cast it to a list + # to keep the return type consistent with get_outdated and + # get_uptodate + return list({pkg for pkg in packages if pkg.canonical_name not in dep_keys}) + + def iter_packages_latest_infos( + self, packages: "_ProcessedDists", options: Values + ) -> Generator["_DistWithLatestInfo", None, None]: + with self._build_session(options) as session: + finder = self._build_package_finder(options, session) + + def latest_info( + dist: "_DistWithLatestInfo", + ) -> Optional["_DistWithLatestInfo"]: + all_candidates = finder.find_all_candidates(dist.canonical_name) + if not options.pre: + # Remove prereleases + all_candidates = [ + candidate + for candidate in all_candidates + if not candidate.version.is_prerelease + ] + + evaluator = finder.make_candidate_evaluator( + project_name=dist.canonical_name, + ) + best_candidate = evaluator.sort_best_candidate(all_candidates) + if best_candidate is None: + return None + + remote_version = best_candidate.version + if best_candidate.link.is_wheel: + typ = "wheel" + else: + typ = "sdist" + dist.latest_version = remote_version + dist.latest_filetype = typ + return dist + + for dist in map(latest_info, packages): + if dist is not None: + yield dist + + def output_package_listing( + self, packages: "_ProcessedDists", options: Values + ) -> None: + packages = sorted( + packages, + key=lambda dist: dist.canonical_name, + ) + if options.list_format == "columns" and packages: + data, header = format_for_columns(packages, options) + self.output_package_listing_columns(data, header) + elif options.list_format == "freeze": + for dist in packages: + if options.verbose >= 1: + write_output( + "%s==%s (%s)", dist.raw_name, dist.version, dist.location + ) + else: + write_output("%s==%s", dist.raw_name, dist.version) + elif options.list_format == "json": + write_output(format_for_json(packages, options)) + + def output_package_listing_columns( + self, data: List[List[str]], header: List[str] + ) -> None: + # insert the header first: we need to know the size of column names + if len(data) > 0: + data.insert(0, header) + + pkg_strings, sizes = tabulate(data) + + # Create and add a separator. + if len(data) > 0: + pkg_strings.insert(1, " ".join("-" * x for x in sizes)) + + for val in pkg_strings: + write_output(val) + + +def format_for_columns( + pkgs: "_ProcessedDists", options: Values +) -> Tuple[List[List[str]], List[str]]: + """ + Convert the package data into something usable + by output_package_listing_columns. + """ + header = ["Package", "Version"] + + running_outdated = options.outdated + if running_outdated: + header.extend(["Latest", "Type"]) + + has_editables = any(x.editable for x in pkgs) + if has_editables: + header.append("Editable project location") + + if options.verbose >= 1: + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + data = [] + for proj in pkgs: + # if we're working on the 'outdated' list, separate out the + # latest_version and type + row = [proj.raw_name, str(proj.version)] + + if running_outdated: + row.append(str(proj.latest_version)) + row.append(proj.latest_filetype) + + if has_editables: + row.append(proj.editable_project_location or "") + + if options.verbose >= 1: + row.append(proj.location or "") + if options.verbose >= 1: + row.append(proj.installer) + + data.append(row) + + return data, header + + +def format_for_json(packages: "_ProcessedDists", options: Values) -> str: + data = [] + for dist in packages: + info = { + "name": dist.raw_name, + "version": str(dist.version), + } + if options.verbose >= 1: + info["location"] = dist.location or "" + info["installer"] = dist.installer + if options.outdated: + info["latest_version"] = str(dist.latest_version) + info["latest_filetype"] = dist.latest_filetype + editable_project_location = dist.editable_project_location + if editable_project_location: + info["editable_project_location"] = editable_project_location + data.append(info) + return json.dumps(data) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py new file mode 100644 index 00000000..03ed925b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,174 @@ +import logging +import shutil +import sys +import textwrap +import xmlrpc.client +from collections import OrderedDict +from optparse import Values +from typing import TYPE_CHECKING, Dict, List, Optional + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin +from pip._internal.cli.status_codes import NO_MATCHES_FOUND, SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import get_default_environment +from pip._internal.models.index import PyPI +from pip._internal.network.xmlrpc import PipXmlrpcTransport +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import write_output + +if TYPE_CHECKING: + from typing import TypedDict + + class TransformedHit(TypedDict): + name: str + summary: str + versions: List[str] + + +logger = logging.getLogger(__name__) + + +class SearchCommand(Command, SessionCommandMixin): + """Search for PyPI packages whose name or summary contains .""" + + usage = """ + %prog [options] """ + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-i", + "--index", + dest="index", + metavar="URL", + default=PyPI.pypi_url, + help="Base URL of Python Package Index (default %default)", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + raise CommandError("Missing required argument (search query).") + query = args + pypi_hits = self.search(query, options) + hits = transform_hits(pypi_hits) + + terminal_width = None + if sys.stdout.isatty(): + terminal_width = shutil.get_terminal_size()[0] + + print_results(hits, terminal_width=terminal_width) + if pypi_hits: + return SUCCESS + return NO_MATCHES_FOUND + + def search(self, query: List[str], options: Values) -> List[Dict[str, str]]: + index_url = options.index + + session = self.get_default_session(options) + + transport = PipXmlrpcTransport(index_url, session) + pypi = xmlrpc.client.ServerProxy(index_url, transport) + try: + hits = pypi.search({"name": query, "summary": query}, "or") + except xmlrpc.client.Fault as fault: + message = "XMLRPC request failed [code: {code}]\n{string}".format( + code=fault.faultCode, + string=fault.faultString, + ) + raise CommandError(message) + assert isinstance(hits, list) + return hits + + +def transform_hits(hits: List[Dict[str, str]]) -> List["TransformedHit"]: + """ + The list from pypi is really a list of versions. We want a list of + packages with the list of versions stored inline. This converts the + list from pypi into one we can use. + """ + packages: Dict[str, "TransformedHit"] = OrderedDict() + for hit in hits: + name = hit["name"] + summary = hit["summary"] + version = hit["version"] + + if name not in packages.keys(): + packages[name] = { + "name": name, + "summary": summary, + "versions": [version], + } + else: + packages[name]["versions"].append(version) + + # if this is the highest version, replace summary and score + if version == highest_version(packages[name]["versions"]): + packages[name]["summary"] = summary + + return list(packages.values()) + + +def print_dist_installation_info(name: str, latest: str) -> None: + env = get_default_environment() + dist = env.get_distribution(name) + if dist is not None: + with indent_log(): + if dist.version == latest: + write_output("INSTALLED: %s (latest)", dist.version) + else: + write_output("INSTALLED: %s", dist.version) + if parse_version(latest).pre: + write_output( + "LATEST: %s (pre-release; install" + " with `pip install --pre`)", + latest, + ) + else: + write_output("LATEST: %s", latest) + + +def print_results( + hits: List["TransformedHit"], + name_column_width: Optional[int] = None, + terminal_width: Optional[int] = None, +) -> None: + if not hits: + return + if name_column_width is None: + name_column_width = ( + max( + [ + len(hit["name"]) + len(highest_version(hit.get("versions", ["-"]))) + for hit in hits + ] + ) + + 4 + ) + + for hit in hits: + name = hit["name"] + summary = hit["summary"] or "" + latest = highest_version(hit.get("versions", ["-"])) + if terminal_width is not None: + target_width = terminal_width - name_column_width - 5 + if target_width > 10: + # wrap and indent summary to fit terminal + summary_lines = textwrap.wrap(summary, target_width) + summary = ("\n" + " " * (name_column_width + 3)).join(summary_lines) + + name_latest = f"{name} ({latest})" + line = f"{name_latest:{name_column_width}} - {summary}" + try: + write_output(line) + print_dist_installation_info(name, latest) + except UnicodeEncodeError: + pass + + +def highest_version(versions: List[str]) -> str: + return max(versions, key=parse_version) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py new file mode 100644 index 00000000..3f10701f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,189 @@ +import logging +from optparse import Values +from typing import Generator, Iterable, Iterator, List, NamedTuple, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class ShowCommand(Command): + """ + Show information about one or more installed packages. + + The output is in RFC-compliant mail header format. + """ + + usage = """ + %prog [options] ...""" + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-f", + "--files", + dest="files", + action="store_true", + default=False, + help="Show the full list of installed files for each package.", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + logger.warning("ERROR: Please provide a package name or names.") + return ERROR + query = args + + results = search_packages_info(query) + if not print_results( + results, list_files=options.files, verbose=options.verbose + ): + return ERROR + return SUCCESS + + +class _PackageInfo(NamedTuple): + name: str + version: str + location: str + editable_project_location: Optional[str] + requires: List[str] + required_by: List[str] + installer: str + metadata_version: str + classifiers: List[str] + summary: str + homepage: str + project_urls: List[str] + author: str + author_email: str + license: str + entry_points: List[str] + files: Optional[List[str]] + + +def search_packages_info(query: List[str]) -> Generator[_PackageInfo, None, None]: + """ + Gather details from installed distributions. Print distribution name, + version, location, and installed files. Installed files requires a + pip generated 'installed-files.txt' in the distributions '.egg-info' + directory. + """ + env = get_default_environment() + + installed = {dist.canonical_name: dist for dist in env.iter_all_distributions()} + query_names = [canonicalize_name(name) for name in query] + missing = sorted( + [name for name, pkg in zip(query, query_names) if pkg not in installed] + ) + if missing: + logger.warning("Package(s) not found: %s", ", ".join(missing)) + + def _get_requiring_packages(current_dist: BaseDistribution) -> Iterator[str]: + return ( + dist.metadata["Name"] or "UNKNOWN" + for dist in installed.values() + if current_dist.canonical_name + in {canonicalize_name(d.name) for d in dist.iter_dependencies()} + ) + + for query_name in query_names: + try: + dist = installed[query_name] + except KeyError: + continue + + requires = sorted((req.name for req in dist.iter_dependencies()), key=str.lower) + required_by = sorted(_get_requiring_packages(dist), key=str.lower) + + try: + entry_points_text = dist.read_text("entry_points.txt") + entry_points = entry_points_text.splitlines(keepends=False) + except FileNotFoundError: + entry_points = [] + + files_iter = dist.iter_declared_entries() + if files_iter is None: + files: Optional[List[str]] = None + else: + files = sorted(files_iter) + + metadata = dist.metadata + + yield _PackageInfo( + name=dist.raw_name, + version=str(dist.version), + location=dist.location or "", + editable_project_location=dist.editable_project_location, + requires=requires, + required_by=required_by, + installer=dist.installer, + metadata_version=dist.metadata_version or "", + classifiers=metadata.get_all("Classifier", []), + summary=metadata.get("Summary", ""), + homepage=metadata.get("Home-page", ""), + project_urls=metadata.get_all("Project-URL", []), + author=metadata.get("Author", ""), + author_email=metadata.get("Author-email", ""), + license=metadata.get("License", ""), + entry_points=entry_points, + files=files, + ) + + +def print_results( + distributions: Iterable[_PackageInfo], + list_files: bool, + verbose: bool, +) -> bool: + """ + Print the information from installed distributions found. + """ + results_printed = False + for i, dist in enumerate(distributions): + results_printed = True + if i > 0: + write_output("---") + + write_output("Name: %s", dist.name) + write_output("Version: %s", dist.version) + write_output("Summary: %s", dist.summary) + write_output("Home-page: %s", dist.homepage) + write_output("Author: %s", dist.author) + write_output("Author-email: %s", dist.author_email) + write_output("License: %s", dist.license) + write_output("Location: %s", dist.location) + if dist.editable_project_location is not None: + write_output( + "Editable project location: %s", dist.editable_project_location + ) + write_output("Requires: %s", ", ".join(dist.requires)) + write_output("Required-by: %s", ", ".join(dist.required_by)) + + if verbose: + write_output("Metadata-Version: %s", dist.metadata_version) + write_output("Installer: %s", dist.installer) + write_output("Classifiers:") + for classifier in dist.classifiers: + write_output(" %s", classifier) + write_output("Entry-points:") + for entry in dist.entry_points: + write_output(" %s", entry.strip()) + write_output("Project-URLs:") + for project_url in dist.project_urls: + write_output(" %s", project_url) + if list_files: + write_output("Files:") + if dist.files is None: + write_output("Cannot locate RECORD or installed-files.txt") + else: + for line in dist.files: + write_output(" %s", line.strip()) + return results_printed diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 00000000..f198fc31 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,113 @@ +import logging +from optparse import Values +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin, warn_if_run_as_root +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import InstallationError +from pip._internal.req import parse_requirements +from pip._internal.req.constructors import ( + install_req_from_line, + install_req_from_parsed_requirement, +) +from pip._internal.utils.misc import ( + check_externally_managed, + protect_pip_from_modification_on_windows, +) + +logger = logging.getLogger(__name__) + + +class UninstallCommand(Command, SessionCommandMixin): + """ + Uninstall packages. + + pip is able to uninstall most installed packages. Known exceptions are: + + - Pure distutils packages installed with ``python setup.py install``, which + leave behind no metadata to determine what files were installed. + - Script wrappers installed by ``python setup.py develop``. + """ + + usage = """ + %prog [options] ... + %prog [options] -r ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Uninstall all the packages listed in the given requirements " + "file. This option can be used multiple times." + ), + ) + self.cmd_opts.add_option( + "-y", + "--yes", + dest="yes", + action="store_true", + help="Don't ask for confirmation of uninstall deletions.", + ) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + reqs_to_uninstall = {} + for name in args: + req = install_req_from_line( + name, + isolated=options.isolated_mode, + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + else: + logger.warning( + "Invalid requirement: %r ignored -" + " the uninstall command expects named" + " requirements.", + name, + ) + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, options=options, session=session + ): + req = install_req_from_parsed_requirement( + parsed_req, isolated=options.isolated_mode + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + if not reqs_to_uninstall: + raise InstallationError( + f"You must give at least one requirement to {self.name} (see " + f'"pip help {self.name}")' + ) + + if not options.override_externally_managed: + check_externally_managed() + + protect_pip_from_modification_on_windows( + modifying_pip="pip" in reqs_to_uninstall + ) + + for req in reqs_to_uninstall.values(): + uninstall_pathset = req.uninstall( + auto_confirm=options.yes, + verbose=self.verbosity > 0, + ) + if uninstall_pathset: + uninstall_pathset.commit() + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 00000000..ed578aa2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,183 @@ +import logging +import os +import shutil +from optparse import Values +from typing import List + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.misc import ensure_dir, normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.wheel_builder import build, should_build_for_wheel_command + +logger = logging.getLogger(__name__) + + +class WheelCommand(RequirementCommand): + """ + Build Wheel archives for your requirements and dependencies. + + Wheel is a built-package format, and offers the advantage of not + recompiling your software during every install. For more details, see the + wheel docs: https://wheel.readthedocs.io/en/latest/ + + 'pip wheel' uses the build system interface as described here: + https://pip.pypa.io/en/stable/reference/build-system/ + + """ + + usage = """ + %prog [options] ... + %prog [options] -r ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-w", + "--wheel-dir", + dest="wheel_dir", + metavar="dir", + default=os.curdir, + help=( + "Build wheels into , where the default is the " + "current working directory." + ), + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + self.cmd_opts.add_option( + "--no-verify", + dest="no_verify", + action="store_true", + default=False, + help="Don't verify if built wheel is valid.", + ) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.build_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option(cmdoptions.require_hashes()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.wheel_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + reqs_to_build: List[InstallRequirement] = [] + for req in requirement_set.requirements.values(): + if req.is_wheel: + preparer.save_linked_requirement(req) + elif should_build_for_wheel_command(req): + reqs_to_build.append(req) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + requirement_set.warn_legacy_versions_and_specifiers() + + # build wheels + build_successes, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=(not options.no_verify), + build_options=options.build_options or [], + global_options=options.global_options or [], + ) + for req in build_successes: + assert req.link and req.link.is_wheel + assert req.local_file_path + # copy from cache to target directory + try: + shutil.copy(req.local_file_path, options.wheel_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + build_failures.append(req) + if len(build_failures) != 0: + raise CommandError("Failed to build one or more wheels") + + return SUCCESS diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py new file mode 100644 index 00000000..c25273d5 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py @@ -0,0 +1,383 @@ +"""Configuration management setup + +Some terminology: +- name + As written in config files. +- value + Value associated with a name +- key + Name combined with it's section (section.name) +- variant + A single word describing where the configuration key-value pair came from +""" + +import configparser +import locale +import os +import sys +from typing import Any, Dict, Iterable, List, NewType, Optional, Tuple + +from pip._internal.exceptions import ( + ConfigurationError, + ConfigurationFileCouldNotBeLoaded, +) +from pip._internal.utils import appdirs +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ensure_dir, enum + +RawConfigParser = configparser.RawConfigParser # Shorthand +Kind = NewType("Kind", str) + +CONFIG_BASENAME = "pip.ini" if WINDOWS else "pip.conf" +ENV_NAMES_IGNORED = "version", "help" + +# The kinds of configurations there are. +kinds = enum( + USER="user", # User Specific + GLOBAL="global", # System Wide + SITE="site", # [Virtual] Environment Specific + ENV="env", # from PIP_CONFIG_FILE + ENV_VAR="env-var", # from Environment Variables +) +OVERRIDE_ORDER = kinds.GLOBAL, kinds.USER, kinds.SITE, kinds.ENV, kinds.ENV_VAR +VALID_LOAD_ONLY = kinds.USER, kinds.GLOBAL, kinds.SITE + +logger = getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name: str) -> str: + """Make a name consistent regardless of source (environment or file)""" + name = name.lower().replace("_", "-") + if name.startswith("--"): + name = name[2:] # only prefer long opts + return name + + +def _disassemble_key(name: str) -> List[str]: + if "." not in name: + error_message = ( + "Key does not contain dot separated section and key. " + f"Perhaps you wanted to use 'global.{name}' instead?" + ) + raise ConfigurationError(error_message) + return name.split(".", 1) + + +def get_configuration_files() -> Dict[Kind, List[str]]: + global_config_files = [ + os.path.join(path, CONFIG_BASENAME) for path in appdirs.site_config_dirs("pip") + ] + + site_config_file = os.path.join(sys.prefix, CONFIG_BASENAME) + legacy_config_file = os.path.join( + os.path.expanduser("~"), + "pip" if WINDOWS else ".pip", + CONFIG_BASENAME, + ) + new_config_file = os.path.join(appdirs.user_config_dir("pip"), CONFIG_BASENAME) + return { + kinds.GLOBAL: global_config_files, + kinds.SITE: [site_config_file], + kinds.USER: [legacy_config_file, new_config_file], + } + + +class Configuration: + """Handles management of configuration. + + Provides an interface to accessing and managing configuration files. + + This class converts provides an API that takes "section.key-name" style + keys and stores the value associated with it as "key-name" under the + section "section". + + This allows for a clean interface wherein the both the section and the + key-name are preserved in an easy to manage form in the configuration files + and the data stored is also nice. + """ + + def __init__(self, isolated: bool, load_only: Optional[Kind] = None) -> None: + super().__init__() + + if load_only is not None and load_only not in VALID_LOAD_ONLY: + raise ConfigurationError( + "Got invalid value for load_only - should be one of {}".format( + ", ".join(map(repr, VALID_LOAD_ONLY)) + ) + ) + self.isolated = isolated + self.load_only = load_only + + # Because we keep track of where we got the data from + self._parsers: Dict[Kind, List[Tuple[str, RawConfigParser]]] = { + variant: [] for variant in OVERRIDE_ORDER + } + self._config: Dict[Kind, Dict[str, Any]] = { + variant: {} for variant in OVERRIDE_ORDER + } + self._modified_parsers: List[Tuple[str, RawConfigParser]] = [] + + def load(self) -> None: + """Loads configuration from configuration files and environment""" + self._load_config_files() + if not self.isolated: + self._load_environment_vars() + + def get_file_to_edit(self) -> Optional[str]: + """Returns the file with highest priority in configuration""" + assert self.load_only is not None, "Need to be specified a file to be editing" + + try: + return self._get_parser_to_modify()[0] + except IndexError: + return None + + def items(self) -> Iterable[Tuple[str, Any]]: + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key: str) -> Any: + """Get a value from the configuration.""" + orig_key = key + key = _normalize_name(key) + try: + return self._dictionary[key] + except KeyError: + # disassembling triggers a more useful error message than simply + # "No such key" in the case that the key isn't in the form command.option + _disassemble_key(key) + raise ConfigurationError(f"No such key - {orig_key}") + + def set_value(self, key: str, value: Any) -> None: + """Modify a value in the configuration.""" + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + + # Modify the parser and the configuration + if not parser.has_section(section): + parser.add_section(section) + parser.set(section, name, value) + + self._config[self.load_only][key] = value + self._mark_as_modified(fname, parser) + + def unset_value(self, key: str) -> None: + """Unset a value in the configuration.""" + orig_key = key + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + if key not in self._config[self.load_only]: + raise ConfigurationError(f"No such key - {orig_key}") + + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + if not ( + parser.has_section(section) and parser.remove_option(section, name) + ): + # The option was not removed. + raise ConfigurationError( + "Fatal Internal error [id=1]. Please report as a bug." + ) + + # The section may be empty after the option was removed. + if not parser.items(section): + parser.remove_section(section) + self._mark_as_modified(fname, parser) + + del self._config[self.load_only][key] + + def save(self) -> None: + """Save the current in-memory state.""" + self._ensure_have_load_only() + + for fname, parser in self._modified_parsers: + logger.info("Writing to %s", fname) + + # Ensure directory exists. + ensure_dir(os.path.dirname(fname)) + + # Ensure directory's permission(need to be writeable) + try: + with open(fname, "w") as f: + parser.write(f) + except OSError as error: + raise ConfigurationError( + f"An error occurred while writing to the configuration file " + f"{fname}: {error}" + ) + + # + # Private routines + # + + def _ensure_have_load_only(self) -> None: + if self.load_only is None: + raise ConfigurationError("Needed a specific file to be modifying.") + logger.debug("Will be working with %s variant only", self.load_only) + + @property + def _dictionary(self) -> Dict[str, Any]: + """A dictionary representing the loaded configuration.""" + # NOTE: Dictionaries are not populated if not loaded. So, conditionals + # are not needed here. + retval = {} + + for variant in OVERRIDE_ORDER: + retval.update(self._config[variant]) + + return retval + + def _load_config_files(self) -> None: + """Loads configuration from configuration files""" + config_files = dict(self.iter_config_files()) + if config_files[kinds.ENV][0:1] == [os.devnull]: + logger.debug( + "Skipping loading configuration files due to " + "environment's PIP_CONFIG_FILE being os.devnull" + ) + return + + for variant, files in config_files.items(): + for fname in files: + # If there's specific variant set in `load_only`, load only + # that variant, not the others. + if self.load_only is not None and variant != self.load_only: + logger.debug("Skipping file '%s' (variant: %s)", fname, variant) + continue + + parser = self._load_file(variant, fname) + + # Keeping track of the parsers used + self._parsers[variant].append((fname, parser)) + + def _load_file(self, variant: Kind, fname: str) -> RawConfigParser: + logger.verbose("For variant '%s', will try loading '%s'", variant, fname) + parser = self._construct_parser(fname) + + for section in parser.sections(): + items = parser.items(section) + self._config[variant].update(self._normalized_keys(section, items)) + + return parser + + def _construct_parser(self, fname: str) -> RawConfigParser: + parser = configparser.RawConfigParser() + # If there is no such file, don't bother reading it but create the + # parser anyway, to hold the data. + # Doing this is useful when modifying and saving files, where we don't + # need to construct a parser. + if os.path.exists(fname): + locale_encoding = locale.getpreferredencoding(False) + try: + parser.read(fname, encoding=locale_encoding) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason=f"contains invalid {locale_encoding} characters", + fname=fname, + ) + except configparser.Error as error: + # See https://github.com/pypa/pip/issues/4893 + raise ConfigurationFileCouldNotBeLoaded(error=error) + return parser + + def _load_environment_vars(self) -> None: + """Loads configuration from environment variables""" + self._config[kinds.ENV_VAR].update( + self._normalized_keys(":env:", self.get_environ_vars()) + ) + + def _normalized_keys( + self, section: str, items: Iterable[Tuple[str, Any]] + ) -> Dict[str, Any]: + """Normalizes items to construct a dictionary with normalized keys. + + This routine is where the names become keys and are made the same + regardless of source - configuration files or environment. + """ + normalized = {} + for name, val in items: + key = section + "." + _normalize_name(name) + normalized[key] = val + return normalized + + def get_environ_vars(self) -> Iterable[Tuple[str, str]]: + """Returns a generator with all environmental vars with prefix PIP_""" + for key, val in os.environ.items(): + if key.startswith("PIP_"): + name = key[4:].lower() + if name not in ENV_NAMES_IGNORED: + yield name, val + + # XXX: This is patched in the tests. + def iter_config_files(self) -> Iterable[Tuple[Kind, List[str]]]: + """Yields variant and configuration files associated with it. + + This should be treated like items of a dictionary. The order + here doesn't affect what gets overridden. That is controlled + by OVERRIDE_ORDER. However this does control the order they are + displayed to the user. It's probably most ergononmic to display + things in the same order as OVERRIDE_ORDER + """ + # SMELL: Move the conditions out of this function + + env_config_file = os.environ.get("PIP_CONFIG_FILE", None) + config_files = get_configuration_files() + + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user config is not loaded when env_config_file exists + should_load_user_config = not self.isolated and not ( + env_config_file and os.path.exists(env_config_file) + ) + if should_load_user_config: + # The legacy config file is overridden by the new config file + yield kinds.USER, config_files[kinds.USER] + + # virtualenv config + yield kinds.SITE, config_files[kinds.SITE] + + if env_config_file is not None: + yield kinds.ENV, [env_config_file] + else: + yield kinds.ENV, [] + + def get_values_in_config(self, variant: Kind) -> Dict[str, Any]: + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self) -> Tuple[str, RawConfigParser]: + # Determine which parser to modify + assert self.load_only + parsers = self._parsers[self.load_only] + if not parsers: + # This should not happen if everything works correctly. + raise ConfigurationError( + "Fatal Internal error [id=2]. Please report as a bug." + ) + + # Use the highest priority parser. + return parsers[-1] + + # XXX: This is patched in the tests. + def _mark_as_modified(self, fname: str, parser: RawConfigParser) -> None: + file_parser_tuple = (fname, parser) + if file_parser_tuple not in self._modified_parsers: + self._modified_parsers.append(file_parser_tuple) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 00000000..9a89a838 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py @@ -0,0 +1,21 @@ +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.distributions.sdist import SourceDistribution +from pip._internal.distributions.wheel import WheelDistribution +from pip._internal.req.req_install import InstallRequirement + + +def make_distribution_for_install_requirement( + install_req: InstallRequirement, +) -> AbstractDistribution: + """Returns a Distribution for the given InstallRequirement""" + # Editable requirements will always be source distributions. They use the + # legacy logic until we create a modern standard for them. + if install_req.editable: + return SourceDistribution(install_req) + + # If it's a wheel, it's a WheelDistribution + if install_req.is_wheel: + return WheelDistribution(install_req) + + # Otherwise, a SourceDistribution + return SourceDistribution(install_req) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3f5ac1dcdc12c2c1a6492d175ad7536f71030e7d GIT binary patch literal 992 zcmaJ;ziSjh6rRoP?QYC364OXfHi*I|+zx7CVNiqDSZI+5!Zpj@?MrTQvp+I3mvEB8 z!qPrsl~(*yY@#WY#RI|0?jWgB`DV=N86^*9-}m0UdHcTieVCfMM9^-0eBEwT2>Gsq zq1k8PxQ<|-BqXsoNv(!uX*|Zq(n_OZaE04xwNW+L=1%H1T*Osy69=pfJ8@sx4X@_~ z<3DuEz$)ign^K9mrRoelYjzdOGtAGe=Uvf)bJ^MFZ2*2QIrlh|D&~9*w!2I~3YjV= z*sok9V7qh#sIJIb))@`$kfJ%q3c)_vBU?Iq&cuY$b;kC{`?L4!x_Y>h;Wc`!c8B3; z_5XVW){DDqW-jT+{wO7XBNx7EgTKjkAoKra7ucl-2~%;CgV2MN9+T0oUX7??7+69N zBK5rf>08>)Q=pr1Q!wDP4zi>2g0ANqYBv_(*I@^EUg)*?k8tS{=#xC@a;QDab1o@M z3vQNLYvsE#?$HpZ+M%2^Y0*>dJi8O#x=kfhP%GkAC*A}}3s%sGWeP+VbDE4uD`|um zOhr*x^vWQOI}nZDM@SwEjG$V)p`v06$rx7m5WFOVN#b4p>@IwA7rxFc9xNZtgoj=@ za7MEJ!NSo@?a-^8IArqLo6gb1(xJU{jL*r_V7&Bk$nf`&;ph-DY{n9V*1lZ4s7#ty zMuH3L{%BKP{ktDh4Dk#p3kUycxV|G|TH{IloO&y%k>tLZ$587kZ{lZAu`H`kR{P{( cpFHT3m4P#DEq|H4KB%DoR=sjkMQ{521RvTMU;qFB literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f5f3c58a5c700f9492464870657932856208524 GIT binary patch literal 2913 zcmb7G&2Jk;6rZ)d&e};F_k*@c+A_4Mh@r7d%K<@!NLxTXG$7iOd)TaZ$MH7no$bsz zsiPhuREbuiN9eT`5)hRGe*pghhc*HMTBw8s9JraLpsFX{oAo+&n^v%rXWz`eH}gJz z?>GK-bTm)kIkf(9<4%^4-*A#VdRN$JfN+C2#L+xb#dpfnnyG3^LpklGo0)1x$r(>? zW~*5x>)ue)s2Unck#~ucy+WKJMlNhmHs5@IW!z53vueJrm2!XLWUiz|#(P2Na^Lbm z9(~`k7p(>Mj_W&2z(VnaCD|!ghQh72Pz~0$pY~;FdEN)?V#^h*$^6jXJcp26ce3#f z2p>U6j8rv;R8x*tO*<);aneqvp1DfunxkJCsp>3yq0qlUEIVmtu-rII>L~~;bGxfj z&4d1~E%ir0bEr>q^eLJKD>yke=H%grz8KDMpH=ZHxujLMoh7A_XyadWBrt8CGaC_=oO{UI;qo=_~Ft#oK#gN)u z2xf;~J9ay^^tnIN3KoRrpqgZ*uG4TT1{lQHkaXD%8&tBe6%533xaXVYNuD^E9RIkV zt{5;@oAOqeWDnC}IgT4cGufo)!ZbRB(MpIAHnJr5Ft>K4oF&LVlz>FMOnYnV3E6Hd)i=O6f?Kt$>NhFiqEY zL(>%4`mmmn%&V(Olrv4$BBm+vFiKY+eOhVoCaWx1HQ_R^a*D~tkO!5sydExFg3(iK ziFrIgUZE#>OGs8Z!=0ALX3lZ$$%@+yJjFUQHgty7u9TOUzf|$uS|xx+;{LJnD@QBR z4cSbBmrCFU6>t*z1c}!*wm=SA*|$~0my-bZf{J_&hKH-<7i09=(7Lhb zdt>6K9lNe(t{WThf!G?3-3K$Ka*TWh8SZ^cGW(%c(pG+$rAd(+R!HOWLu+>H4G4yc zy8!M@;y^ec{0DHAU=f=Abe+y|pB+XeL?BpW(9rFY`dw&ZM*^s}1SoJ>f_FMUUk(Hd zpfqNG;>@H4rc3kl(7v7rJ1btY;c{S3c}9nizv@NX!Kl+hB}} zDh#vR9;WN89NMxBkE>DKXB382@?eCF9r&(r@UC%C;O+N+%OFO;NbJM`Yt`@F_yP-i z!49NgrM#t^Pt~8sorhsqCBGM5=<_zp*42$0jm06ll6w|XUsSXk%w9C(Wgs845i%A?5oN+%uOt%#Ko>}UZqgw|2Oq;{7e^R8vV3A7Okvs5`GR-J& znoZT_Adi^l#g^rDzYLkC!)>4!`0GSen?`A?W=BPE9H186h*sDHu9wP1AlR`FmvY e4|4n-dF>uK@*w+?Hg)st7w2!C|A&C6cKH`zzb%3Q literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..84e5652e47e807f0d0160f2e583d382542a2b659 GIT binary patch literal 1751 zcma)6&2Jl35P$pWwPVLdX##C&S)sJTLfH+?kqW60frvz?Xis}!we}mw+w520Tc=rz zLxgew35jD4T;N94KZT1c4xp7HRYDxN8C)(sb>6OB>?l+n$@6}mnfEa>zu8|JjT%9@ z_V~O0jzY*E;?GR9DVXdaI3bi!DIlTbNRq&EAcu;h6j%w=P;;~btAQR?oQgzb@(H2Z zF`+srkML|Ej*(T`#$N)qrQG;DN&PtT0>l??b$H6WZo2K`>URdhgZ9R4ue23RA8#NCzzHO4HnCi)g?^MRh_l@=)4+h$>e(1U)W7&1XN@{Wt`B&+9NB z0(%?yei|qCow%1i@EDleZ~#G^gqWlGQ9NKA?9XC42w>xG90%O?!z2LV-RQ;-xR=@1 z0YnFO;CJjKOZ#!OWxaR9=6(tr)1q)Y@e|wiqZAmDz@~GZ$Ma@2w2~}ubq0PwT|tn2 zV6IPx*UxQ)bvCYvxp6_{Bl4uVGC@EVN+YA8C`}*13HgfL6Cr2ho`^alN0l9%hZ%#u zmR^159nzL}hiifXNcRDfDf^EwZ8=x4_j#RT%X!ZS>UJ{Lz{|@vF_BPyaSu{Agw&&6 z>bdiE8`|gB<$pJ$-Q%Lx3S8#7$76{3f(8cPg+A3QXculC+g?a-O7rVs- zmHA&OCk7T$e^HR(*7-Gf=_YX%ub?_2<2tD}iUiw@+;H8<3&C~sn(KxI;Stwe_da%R z>Z!Ocjk{Na#7;B-+OS literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dc08576185c31347c5e0cf5e0e049cb73e02eed7 GIT binary patch literal 8539 zcmeHMU2GdycAnwykQ!2>AM4MOHP&B3MW4mfv0K3DQ-J~n8L1#WU863V0$cQjt{k}a zQ_s0GLsAmuy8GNAc<27#nRCzi?sv}oz0c?6;Ofu+aBif7}GjKLP&bT9+r0|yve$79m~5CV$v7( zvAjFsPu7R)Szbs;$%b$P&)GP_&G%UkQMr?*Tf9*UH`}<^ImL5@Q@q4;%Wl^0%kqJ` zf5*a9z@ZCoXoN#;Dw@#kXNjge&n;vUB*5#^$%S}Ac`bD@PSdF*Noi2m zJTa|mG#b+;<8Y5pFW^Y1Z+Ii6YSBa@isjcRO;f1!or%USL}$sVcuFByA)Sn>WXH(; zbRm@@G;%4f%|+BqoE4HpRbgPvcyc2Z%)-_`KxPeu5atywY*YBKoj4R5aS~TMw9MEP z`xVD6vvb%DEdtazt~kOT#Yw!1i_|G@_}dg=MgSo>!Xm53vP1Dg*#~3%<=N_>rhZ$E z2sKjG7$1}y6d0k@lSa}+T*NhF!)L)iTgRnH(5G2xfOhtjtk$74LhZh+5NOgH&!!h> zY@2YF{^olmLx~EKSLLXzvJSFRCHSD%E5mhej>yn46QxZ2vZ|4cJd>ufHV32S6d{T# zCy5qSqFU5ykTb^SsIr!prwN;AmcUL#HKGj41h#`vc|nb*X5}-losma|kIOKnQ2}jo zg3Lx^S^0gHXbYKOCM%QK*+@J!lYT$QCevLMT4*X}Y9-qd%%eVTQApOfWp18TZ%^iJ z+sjx|ZEtcP@z36W-m!a*vs{2*3caC#K;tu6kWO5cDfwU_P6?{FypW22us{-7c{(e{ zLFS2g>OwGJ*X__rcVJ0xUZ4r4s_6wSGDD-YIPfN~J5-XGQSt5MCu^a(bdrQ-qti4_ z5}`?=UeMB+(Ao5ib}34UJV`E+L^{Kkd=)lTC86)8m4yTuI+so-)KEML_J^%QvGgT1 znhganlGMdeB0e3;WVN|;>PT?-#gH1;$dI*%p-emz0^x&6gB^#ebwmxRScDDIrD-(i z2-@!ju(-Ig)Vo{jf;&6yL+L*c$z`tO;-uzli&qz~t^C&GCo=dNRq9hYUsxN}nh8*PAgU6>_WguP-j6b+%%7Hnz97E95M zE+#}R4c2(mJ$vuRdGWn3bLI;c>g9aByiwni6MASHuH~9xsHWE&@`|fz1N?L;Hb-I? zB1W}BGU`;US{E_TWHA6z`D0|k?`1XBtH2_7E%MX`{cS6bWd|Jt>v0?P)#);Cof~`3 z?5XZ=(A82;tv7W*(Jk$F=OTWbp&o zofY?ru8KLPWHU59Phwg`OD7Y$cR?kQ49Ng^>n#!Ej3B0J znv>}V4Amt{geY+h89_virs7&Q!W3C=0$gEdyEzWPP}LhN3z-P2>K;So0ju;z!v?Cr zRn?^kjmF_|V(HXOA|BIJnAxaF##KCKB5Y>KdP>WV10IS}rJa~`VR8Tx-LKB27XZ!7 zr`H?IvavGS9UZ`ab=G>Yg6=k#QcRVXd^Lgp{_0~;kxG0FmYaPrB z2mev%WzZNijRIbs;}9Ac+;uz+?y5(yVPJf=Wt(BrnnkqBMo}9WBIN_5cKf``oVw~Z zUjy2f`DI|0itX3-TP8&9X}Gm!tObU(X-*9wv!H^(j~!s!&furM>XFT?0&P|B#D=DJyBB%Bi#_s~HkQvKTcdGf{I;jsgw?>yl&96!x0|=ZE1l(rHGC zH6(K~x;4NRWn96@1_k^Kuo*g0Jdf#fkm$`8%2q!vMc$?FtF8iIH-MQ2u+5c7&(0F6 zyMbD!5aJy3>3B-FC!-nN0X_lMT`Ch%z*z;Oh>SFdNeB`Z4XlEMv=@p?ff{&M`viFn zr}!EYMi3A5+&F*ze4%SJ-!+;OI*RoNbM-?xVF=Q%yM{KpLaPphj7?~=z@sBCbQFY8 zUI-P%#$5Bjx+gdKosymN9Dc;vJYIlAx$nl}^~FN>aK3xE&^?*&o-B%zfr^Ln;vqmT z*_#JGTKDlgfLvlLv=+pJdGTPb=hWZTZHnja)iwTJY`ivgb*dhhX#V2j`s^?NbffF|hBW$(+u`$<>Nv5N$6@I+z7{W6>L+=G;C!rH>U>LR8Vr+RvXJKd&AYBPYras1uuYC%myI}_*s_9 z*Qhzm^>V|&xi0~&d>3Zqxs-j;{w{Zk_pq_mqqDpEW;vrT5Spdl*NLW~b6Kt2%ojx` zMZPpgNFv}eOa%>uB3kNxgUm!M^3tF#OatSILA)Sh1QPU4r1j>cY6RS1lee%LZ`zp^ zfN#p84!YZ%NW~ol6EOXV2+m>9net3*d`&-M&)yN3RQ+>Ez>k1a{QTAP1z&gG*Zq)l zdd7dh?{IGT`y2b-Sv^&3=~$clWUkOMly4bYeZAP!k!u>ri35-p8`=sDhw=@F){kv8 zy!epgedEQ}1BKR?@~tmzw0`@s9V$v#``80>vWXuHR^5|I%VS)UH9y%x`(8VK(ry3J zFHHVNUQ%6L?U*Enu1RoFpKm59FkpH?DkCXpvFaM6cD(@zj_Lwx^@4v ztMUZTba_1AI=<2R3hMF%k19LCKlb6=4>?R9i5KpUp#g>v_)~7%nSokEs8+H6+EJm_K>nOlR0dh;u2h;Pqlu+v6P347Kzana1iWSp z$kJxLB|~U3u2q~@hSRFP-z0}>l}~I9qNiahI*AE8T99QiIz>ltjVh+3d&{SQx;J6! zhfzxdwam&Qb(L8@fWGP%kN{iqmVLXfuf#5smK3DWS5l~4IGUG^Zc4`$&0=@&PI`1VywQEeWJLGsTB`Wa*qsZT;+wU(*T=7adOkOJ zl2Na3ka`)RE~(0eX2DO0ahXoM<+jJr(5wqTnJ~lq31r~I2)|-qw$E2{CbK6faSdLy z48GSqQqmn4#PvC?Y*rN&o-F%?mQsUyna{K0(8`8Z@kKu3LFJahXCX{$()#L%3iAj) ztfD0=vh})*&dVQKMSOcC_$w#m4;7-uXqhIQJNZtb4ghcT@ zh)Oa0x7c+Ex=~yjA-4UA!jwRBuXhIzimdE`F zo}9&j|G@p%W$r&YdyoHLn)^R~lmxDQpwKp$ZyPMOb>0xJ3&pM>%z3VR z9-<7s4uo=tU)cyufIHFS-{S1;{*s$(AKK#F?cP=2BZ;e*Kl5$)gE=9{%!#>N+YTxO zdS)-bfDE%2h`~;HH0qc|3wB(|{A0dkK?@E;tM?7Ts3*15Dn7 zglQT&u#CRbLr_&4j(5i!e~iQ5g5)yyKz!TSa@Wo+U+?>?z|Fv4zxq4J?`H14^V{^s z(W#9?*crFk#lx9nDB$;&%?b1%HK z#lgMg>UZ`%kh)4vxU-OE$&ERI+uvRCV9v{V{abaIo8sG?{`L1t9Ng|`TX-uSbveh^ zM{mD+^V?e-WJ{9ZoZ#2zZmTzwTO8&~%?(cP`cR33+nvcRyp;y(ouQ)KTe9Q*_=!6s zcbo3U?za8r<^1utSmgtcZ_5ddr5?94w0>k=y*XOqAbZF02yccE@U>x!+!#JV3~^~$ z`1U+&h!c09B1F9v;yl6f*ERD48HBl6^hU=hP*rPn^jHl}!v}AQ_NTXP??x75gdG+t z!#KTXdozApS`3<>_aerpCS(6wws*9mwH2DR$OGmhxUL&@f{X5qUfN~ zTOXy!Xxb z-uyB-StRfsdH8+n-z*`2;AHq217Yh+5Y`DJO!J7Z)ie!d-P8R{EtAL@FY6mMBayRS z&d=BKiEMbLU#J!QVy);;)Fw2dlTQfCtr3>z#zrRfU)$9&D}_ICQqf}bVx-(Ka6FKw z8%_`gZo~21F1G{6=b)T9TbD{W4Ry|izguskIp`-ZIgKS}k)L-1#ziF)mp^hOA2o_g z=UtD>j#S+LqQ$uv?^)!^UPjSoBi+4SSOs+G)8JV(`p%>WjZ%_ZXc{P zb(UGnZVZfTc~~()mtD)&3e4a|mg5tU^#s$I*)&-J^q6-so=!p;jkA0Ga~=sUd7vb9 zXc8YCjjviPQuwa4TuE8TB@IGF1I`(Bf)0hPks}<0g*r0bE-64s>m1w&-cVkLwu1=p z;;fpuigSXiwg?*9Ac5fz?`R8%0hxEmJ#FD0-ceR^uPM=#zFfCjq0g;Fr!HLXS?9Q1 zQek9W4x4J(5uBdmH@Fu@J|sgw4%q5xd9-q4shMu%sKk_)P&Naei>2$2>4IbRE zJhyH|9n}hhlhyY>u%xT_90m**EUn0mEZYqf7r+y16d7qHXjP+5T&}lWkJ(6-B`$22 zbq~LWbakiA4CEw{_czJY((Ww~$QUF!P$ZD#Ap3RlHMxc+JHBiB4h2kQ{!=KQAw9m) z-m(*s-ti?n^;bJperWI(A8$B)V{omjnksDX*3`td{N_B~5Y5oj#^998q>}0W@LA|E zNmYwepDTws%ArjW`iUl`Zxbqy!j*+!;fJCFOl36X9B@40AX0j?3}CmTXj=lmU3DVi zxZqyL4HhXd8xI?C9g1xqf?sa~%aKzlxzTa=y~|u-IY4PB8aBtOgtY~FW#Mw*K_=b3 z2~i*};BNr@6;LhMeOM(IXTW`2@n zM}IHv#)aFf->vq{`QE|#O>_R%>f`dEJJ}!2yXGT0|B%jamQUR>9+!^X;lItD`B^m*_d z+=&tlm285N*pG@?9NvXN;%>aR6t4qmPvc`yZ3Eb~UdQZzHyp+ju#5n=U8FFXBv+Y? zO*?sHY&$O6wx4tg$>@bLZGkC-2VvML^uj43+(y zX None: + super().__init__() + self.req = req + + @abc.abstractproperty + def build_tracker_id(self) -> Optional[str]: + """A string that uniquely identifies this requirement to the build tracker. + + If None, then this dist has no work to do in the build tracker, and + ``.prepare_distribution_metadata()`` will not be called.""" + raise NotImplementedError() + + @abc.abstractmethod + def get_metadata_distribution(self) -> BaseDistribution: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + raise NotImplementedError() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 00000000..ab8d53be --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,29 @@ +from typing import Optional + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + assert self.req.satisfied_by is not None, "not actually installed" + return self.req.satisfied_by + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 00000000..15ff42b7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,156 @@ +import logging +from typing import Iterable, Optional, Set, Tuple + +from pip._internal.build_env import BuildEnvironment +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.exceptions import InstallationError +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +class SourceDistribution(AbstractDistribution): + """Represents a source distribution. + + The preparation step for these needs metadata for the packages to be + generated, either using PEP 517 or using the legacy `setup.py egg_info`. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + """Identify this requirement uniquely by its link.""" + assert self.req.link + return self.req.link.url_without_fragment + + def get_metadata_distribution(self) -> BaseDistribution: + return self.req.get_dist() + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + # Load pyproject.toml, to determine whether PEP 517 is to be used + self.req.load_pyproject_toml() + + # Set up the build isolation, if this requirement should be isolated + should_isolate = self.req.use_pep517 and build_isolation + if should_isolate: + # Setup an isolated environment and install the build backend static + # requirements in it. + self._prepare_build_backend(finder) + # Check that if the requirement is editable, it either supports PEP 660 or + # has a setup.py or a setup.cfg. This cannot be done earlier because we need + # to setup the build backend to verify it supports build_editable, nor can + # it be done later, because we want to avoid installing build requirements + # needlessly. Doing it here also works around setuptools generating + # UNKNOWN.egg-info when running get_requires_for_build_wheel on a directory + # without setup.py nor setup.cfg. + self.req.isolated_editable_sanity_check() + # Install the dynamic build requirements. + self._install_build_reqs(finder) + # Check if the current environment provides build dependencies + should_check_deps = self.req.use_pep517 and check_build_deps + if should_check_deps: + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + conflicting, missing = self.req.build_env.check_requirements( + pyproject_requires + ) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + if missing: + self._raise_missing_reqs(missing) + self.req.prepare_metadata() + + def _prepare_build_backend(self, finder: PackageFinder) -> None: + # Isolate in a BuildEnvironment and install the build-time + # requirements. + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + + self.req.build_env = BuildEnvironment() + self.req.build_env.install_requirements( + finder, pyproject_requires, "overlay", kind="build dependencies" + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + self._raise_conflicts("PEP 517/518 supported requirements", conflicting) + if missing: + logger.warning( + "Missing build requirements in pyproject.toml for %s.", + self.req, + ) + logger.warning( + "The project does not specify a build backend, and " + "pip cannot fall back to setuptools without %s.", + " and ".join(map(repr, sorted(missing))), + ) + + def _get_build_requires_wheel(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message("Getting requirements to build wheel") + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_wheel() + + def _get_build_requires_editable(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message( + "Getting requirements to build editable" + ) + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_editable() + + def _install_build_reqs(self, finder: PackageFinder) -> None: + # Install any extra build dependencies that the backend requests. + # This must be done in a second pass, as the pyproject.toml + # dependencies must be installed before we can call the backend. + if ( + self.req.editable + and self.req.permit_editable_wheels + and self.req.supports_pyproject_editable() + ): + build_reqs = self._get_build_requires_editable() + else: + build_reqs = self._get_build_requires_wheel() + conflicting, missing = self.req.build_env.check_requirements(build_reqs) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + finder, missing, "normal", kind="backend dependencies" + ) + + def _raise_conflicts( + self, conflicting_with: str, conflicting_reqs: Set[Tuple[str, str]] + ) -> None: + format_string = ( + "Some build dependencies for {requirement} " + "conflict with {conflicting_with}: {description}." + ) + error_message = format_string.format( + requirement=self.req, + conflicting_with=conflicting_with, + description=", ".join( + f"{installed} is incompatible with {wanted}" + for installed, wanted in sorted(conflicting_reqs) + ), + ) + raise InstallationError(error_message) + + def _raise_missing_reqs(self, missing: Set[str]) -> None: + format_string = ( + "Some build dependencies for {requirement} are missing: {missing}." + ) + error_message = format_string.format( + requirement=self.req, missing=", ".join(map(repr, sorted(missing))) + ) + raise InstallationError(error_message) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 00000000..eb16e25c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,40 @@ +from typing import Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + assert self.req.local_file_path, "Set as part of preparation during download" + assert self.req.name, "Wheels are never unnamed" + wheel = FilesystemWheel(self.req.local_file_path) + return get_wheel_distribution(wheel, canonicalize_name(self.req.name)) + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py new file mode 100644 index 00000000..5007a622 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,728 @@ +"""Exceptions used throughout package. + +This module MUST NOT try to import from anything within `pip._internal` to +operate. This is expected to be importable from any/all files within the +subpackage and, thus, should not depend on them. +""" + +import configparser +import contextlib +import locale +import logging +import pathlib +import re +import sys +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, Iterator, List, Optional, Union + +from pip._vendor.requests.models import Request, Response +from pip._vendor.rich.console import Console, ConsoleOptions, RenderResult +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +if TYPE_CHECKING: + from hashlib import _Hash + from typing import Literal + + from pip._internal.metadata import BaseDistribution + from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +# +# Scaffolding +# +def _is_kebab_case(s: str) -> bool: + return re.match(r"^[a-z]+(-[a-z]+)*$", s) is not None + + +def _prefix_with_indent( + s: Union[Text, str], + console: Console, + *, + prefix: str, + indent: str, +) -> Text: + if isinstance(s, Text): + text = s + else: + text = console.render_str(s) + + return console.render_str(prefix, overflow="ignore") + console.render_str( + f"\n{indent}", overflow="ignore" + ).join(text.split(allow_blank=True)) + + +class PipError(Exception): + """The base pip error.""" + + +class DiagnosticPipError(PipError): + """An error, that presents diagnostic information to the user. + + This contains a bunch of logic, to enable pretty presentation of our error + messages. Each error gets a unique reference. Each error can also include + additional context, a hint and/or a note -- which are presented with the + main error message in a consistent style. + + This is adapted from the error output styling in `sphinx-theme-builder`. + """ + + reference: str + + def __init__( + self, + *, + kind: 'Literal["error", "warning"]' = "error", + reference: Optional[str] = None, + message: Union[str, Text], + context: Optional[Union[str, Text]], + hint_stmt: Optional[Union[str, Text]], + note_stmt: Optional[Union[str, Text]] = None, + link: Optional[str] = None, + ) -> None: + # Ensure a proper reference is provided. + if reference is None: + assert hasattr(self, "reference"), "error reference not provided!" + reference = self.reference + assert _is_kebab_case(reference), "error reference must be kebab-case!" + + self.kind = kind + self.reference = reference + + self.message = message + self.context = context + + self.note_stmt = note_stmt + self.hint_stmt = hint_stmt + + self.link = link + + super().__init__(f"<{self.__class__.__name__}: {self.reference}>") + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__}(" + f"reference={self.reference!r}, " + f"message={self.message!r}, " + f"context={self.context!r}, " + f"note_stmt={self.note_stmt!r}, " + f"hint_stmt={self.hint_stmt!r}" + ")>" + ) + + def __rich_console__( + self, + console: Console, + options: ConsoleOptions, + ) -> RenderResult: + colour = "red" if self.kind == "error" else "yellow" + + yield f"[{colour} bold]{self.kind}[/]: [bold]{self.reference}[/]" + yield "" + + if not options.ascii_only: + # Present the main message, with relevant context indented. + if self.context is not None: + yield _prefix_with_indent( + self.message, + console, + prefix=f"[{colour}]×[/] ", + indent=f"[{colour}]│[/] ", + ) + yield _prefix_with_indent( + self.context, + console, + prefix=f"[{colour}]╰─>[/] ", + indent=f"[{colour}] [/] ", + ) + else: + yield _prefix_with_indent( + self.message, + console, + prefix="[red]×[/] ", + indent=" ", + ) + else: + yield self.message + if self.context is not None: + yield "" + yield self.context + + if self.note_stmt is not None or self.hint_stmt is not None: + yield "" + + if self.note_stmt is not None: + yield _prefix_with_indent( + self.note_stmt, + console, + prefix="[magenta bold]note[/]: ", + indent=" ", + ) + if self.hint_stmt is not None: + yield _prefix_with_indent( + self.hint_stmt, + console, + prefix="[cyan bold]hint[/]: ", + indent=" ", + ) + + if self.link is not None: + yield "" + yield f"Link: {self.link}" + + +# +# Actual Errors +# +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class UninstallationError(PipError): + """General exception during uninstallation""" + + +class MissingPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml has `build-system`, but no `build-system.requires`.""" + + reference = "missing-pyproject-build-system-requires" + + def __init__(self, *, package: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid pyproject.toml file.\n" + "The [build-system] table is missing the mandatory `requires` key." + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class InvalidPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml an invalid `build-system.requires`.""" + + reference = "invalid-pyproject-build-system-requires" + + def __init__(self, *, package: str, reason: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid `build-system.requires` key in " + f"pyproject.toml.\n{reason}" + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class NoneMetadataError(PipError): + """Raised when accessing a Distribution's "METADATA" or "PKG-INFO". + + This signifies an inconsistency, when the Distribution claims to have + the metadata file (if not, raise ``FileNotFoundError`` instead), but is + not actually able to produce its content. This may be due to permission + errors. + """ + + def __init__( + self, + dist: "BaseDistribution", + metadata_name: str, + ) -> None: + """ + :param dist: A Distribution object. + :param metadata_name: The name of the metadata being accessed + (can be "METADATA" or "PKG-INFO"). + """ + self.dist = dist + self.metadata_name = metadata_name + + def __str__(self) -> str: + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return f"None {self.metadata_name} metadata found for distribution: {self.dist}" + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self) -> str: + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self) -> str: + before = ", ".join(str(a) for a in self.args[:-1]) + return f"Cannot set {before} and {self.args[-1]} together" + + +class DistributionNotFound(InstallationError): + """Raised when a distribution cannot be found to satisfy a requirement""" + + +class RequirementsFileParseError(InstallationError): + """Raised when a general error occurs parsing a requirements file line.""" + + +class BestVersionAlreadyInstalled(PipError): + """Raised when the most up-to-date version of a package is already + installed.""" + + +class BadCommand(PipError): + """Raised when virtualenv or a command is not found""" + + +class CommandError(PipError): + """Raised when there is an error in command-line arguments""" + + +class PreviousBuildDirError(PipError): + """Raised when there's a previous conflicting build directory""" + + +class NetworkConnectionError(PipError): + """HTTP connection error""" + + def __init__( + self, + error_msg: str, + response: Optional[Response] = None, + request: Optional[Request] = None, + ) -> None: + """ + Initialize NetworkConnectionError with `request` and `response` + objects. + """ + self.response = response + self.request = request + self.error_msg = error_msg + if ( + self.response is not None + and not self.request + and hasattr(response, "request") + ): + self.request = self.response.request + super().__init__(error_msg, response, request) + + def __str__(self) -> str: + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class InvalidWheel(InstallationError): + """Invalid (e.g. corrupt) wheel.""" + + def __init__(self, location: str, name: str): + self.location = location + self.name = name + + def __str__(self) -> str: + return f"Wheel '{self.name}' located at {self.location} is invalid." + + +class MetadataInconsistent(InstallationError): + """Built metadata contains inconsistent information. + + This is raised when the metadata contains values (e.g. name and version) + that do not match the information previously obtained from sdist filename, + user-supplied ``#egg=`` value, or an install requirement name. + """ + + def __init__( + self, ireq: "InstallRequirement", field: str, f_val: str, m_val: str + ) -> None: + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self) -> str: + return ( + f"Requested {self.ireq} has inconsistent {self.field}: " + f"expected {self.f_val!r}, but metadata has {self.m_val!r}" + ) + + +class InstallationSubprocessError(DiagnosticPipError, InstallationError): + """A subprocess call failed.""" + + reference = "subprocess-exited-with-error" + + def __init__( + self, + *, + command_description: str, + exit_code: int, + output_lines: Optional[List[str]], + ) -> None: + if output_lines is None: + output_prompt = Text("See above for output.") + else: + output_prompt = ( + Text.from_markup(f"[red][{len(output_lines)} lines of output][/]\n") + + Text("".join(output_lines)) + + Text.from_markup(R"[red]\[end of output][/]") + ) + + super().__init__( + message=( + f"[green]{escape(command_description)}[/] did not run successfully.\n" + f"exit code: {exit_code}" + ), + context=output_prompt, + hint_stmt=None, + note_stmt=( + "This error originates from a subprocess, and is likely not a " + "problem with pip." + ), + ) + + self.command_description = command_description + self.exit_code = exit_code + + def __str__(self) -> str: + return f"{self.command_description} exited with {self.exit_code}" + + +class MetadataGenerationFailed(InstallationSubprocessError, InstallationError): + reference = "metadata-generation-failed" + + def __init__( + self, + *, + package_details: str, + ) -> None: + super(InstallationSubprocessError, self).__init__( + message="Encountered error while generating package metadata.", + context=escape(package_details), + hint_stmt="See above for details.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + def __str__(self) -> str: + return "metadata generation failed" + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self) -> None: + self.errors: List["HashError"] = [] + + def append(self, error: "HashError") -> None: + self.errors.append(error) + + def __str__(self) -> str: + lines = [] + self.errors.sort(key=lambda e: e.order) + for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): + lines.append(cls.head) + lines.extend(e.body() for e in errors_of_cls) + if lines: + return "\n".join(lines) + return "" + + def __bool__(self) -> bool: + return bool(self.errors) + + +class HashError(InstallationError): + """ + A failure to verify a package against known-good hashes + + :cvar order: An int sorting hash exception classes by difficulty of + recovery (lower being harder), so the user doesn't bother fretting + about unpinned packages when he has deeper issues, like VCS + dependencies, to deal with. Also keeps error reports in a + deterministic order. + :cvar head: A section heading for display above potentially many + exceptions of this kind + :ivar req: The InstallRequirement that triggered this error. This is + pasted on after the exception is instantiated, because it's not + typically available earlier. + + """ + + req: Optional["InstallRequirement"] = None + head = "" + order: int = -1 + + def body(self) -> str: + """Return a summary of me for display under the heading. + + This default implementation simply prints a description of the + triggering requirement. + + :param req: The InstallRequirement that provoked this error, with + its link already populated by the resolver's _populate_link(). + + """ + return f" {self._requirement_name()}" + + def __str__(self) -> str: + return f"{self.head}\n{self.body()}" + + def _requirement_name(self) -> str: + """Return a description of the requirement that triggered me. + + This default implementation returns long description of the req, with + line numbers + + """ + return str(self.req) if self.req else "unknown package" + + +class VcsHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 0 + head = ( + "Can't verify hashes for these requirements because we don't " + "have a way to hash version control repositories:" + ) + + +class DirectoryUrlHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 1 + head = ( + "Can't verify hashes for these file:// requirements because they " + "point to directories:" + ) + + +class HashMissing(HashError): + """A hash was needed for a requirement but is absent.""" + + order = 2 + head = ( + "Hashes are required in --require-hashes mode, but they are " + "missing from some requirements. Here is a list of those " + "requirements along with the hashes their downloaded archives " + "actually had. Add lines like these to your requirements files to " + "prevent tampering. (If you did not enable --require-hashes " + "manually, note that it turns on automatically when any package " + "has a hash.)" + ) + + def __init__(self, gotten_hash: str) -> None: + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self) -> str: + # Dodge circular import. + from pip._internal.utils.hashes import FAVORITE_HASH + + package = None + if self.req: + # In the case of URL-based requirements, display the original URL + # seen in the requirements file rather than the package name, + # so the output can be directly copied into the requirements file. + package = ( + self.req.original_link + if self.req.is_direct + # In case someone feeds something downright stupid + # to InstallRequirement's constructor. + else getattr(self.req, "req", None) + ) + return " {} --hash={}:{}".format( + package or "unknown package", FAVORITE_HASH, self.gotten_hash + ) + + +class HashUnpinned(HashError): + """A requirement had a hash specified but was not pinned to a specific + version.""" + + order = 3 + head = ( + "In --require-hashes mode, all requirements must have their " + "versions pinned with ==. These do not:" + ) + + +class HashMismatch(HashError): + """ + Distribution file hash values don't match. + + :ivar package_name: The name of the package that triggered the hash + mismatch. Feel free to write to this after the exception is raise to + improve its error message. + + """ + + order = 4 + head = ( + "THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS " + "FILE. If you have updated the package versions, please update " + "the hashes. Otherwise, examine the package contents carefully; " + "someone may have tampered with them." + ) + + def __init__(self, allowed: Dict[str, List[str]], gots: Dict[str, "_Hash"]) -> None: + """ + :param allowed: A dict of algorithm names pointing to lists of allowed + hex digests + :param gots: A dict of algorithm names pointing to hashes we + actually got from the files under suspicion + """ + self.allowed = allowed + self.gots = gots + + def body(self) -> str: + return f" {self._requirement_name()}:\n{self._hash_comparison()}" + + def _hash_comparison(self) -> str: + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + + def hash_then_or(hash_name: str) -> "chain[str]": + # For now, all the decent hashes have 6-char names, so we can get + # away with hard-coding space literals. + return chain([hash_name], repeat(" or")) + + lines: List[str] = [] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend((f" Expected {next(prefix)} {e}") for e in expecteds) + lines.append( + f" Got {self.gots[hash_name].hexdigest()}\n" + ) + return "\n".join(lines) + + +class UnsupportedPythonVersion(InstallationError): + """Unsupported python version according to Requires-Python package + metadata.""" + + +class ConfigurationFileCouldNotBeLoaded(ConfigurationError): + """When there are errors while loading a configuration file""" + + def __init__( + self, + reason: str = "could not be loaded", + fname: Optional[str] = None, + error: Optional[configparser.Error] = None, + ) -> None: + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self) -> str: + if self.fname is not None: + message_part = f" in {self.fname}." + else: + assert self.error is not None + message_part = f".\n{self.error}\n" + return f"Configuration file {self.reason}{message_part}" + + +_DEFAULT_EXTERNALLY_MANAGED_ERROR = f"""\ +The Python environment under {sys.prefix} is managed externally, and may not be +manipulated by the user. Please use specific tooling from the distributor of +the Python installation to interact with this environment instead. +""" + + +class ExternallyManagedEnvironment(DiagnosticPipError): + """The current environment is externally managed. + + This is raised when the current environment is externally managed, as + defined by `PEP 668`_. The ``EXTERNALLY-MANAGED`` configuration is checked + and displayed when the error is bubbled up to the user. + + :param error: The error message read from ``EXTERNALLY-MANAGED``. + """ + + reference = "externally-managed-environment" + + def __init__(self, error: Optional[str]) -> None: + if error is None: + context = Text(_DEFAULT_EXTERNALLY_MANAGED_ERROR) + else: + context = Text(error) + super().__init__( + message="This environment is externally managed", + context=context, + note_stmt=( + "If you believe this is a mistake, please contact your " + "Python installation or OS distribution provider. " + "You can override this, at the risk of breaking your Python " + "installation or OS, by passing --break-system-packages." + ), + hint_stmt=Text("See PEP 668 for the detailed specification."), + ) + + @staticmethod + def _iter_externally_managed_error_keys() -> Iterator[str]: + # LC_MESSAGES is in POSIX, but not the C standard. The most common + # platform that does not implement this category is Windows, where + # using other categories for console message localization is equally + # unreliable, so we fall back to the locale-less vendor message. This + # can always be re-evaluated when a vendor proposes a new alternative. + try: + category = locale.LC_MESSAGES + except AttributeError: + lang: Optional[str] = None + else: + lang, _ = locale.getlocale(category) + if lang is not None: + yield f"Error-{lang}" + for sep in ("-", "_"): + before, found, _ = lang.partition(sep) + if not found: + continue + yield f"Error-{before}" + yield "Error" + + @classmethod + def from_config( + cls, + config: Union[pathlib.Path, str], + ) -> "ExternallyManagedEnvironment": + parser = configparser.ConfigParser(interpolation=None) + try: + parser.read(config, encoding="utf-8") + section = parser["externally-managed"] + for key in cls._iter_externally_managed_error_keys(): + with contextlib.suppress(KeyError): + return cls(section[key]) + except KeyError: + pass + except (OSError, UnicodeDecodeError, configparser.ParsingError): + from pip._internal.utils._log import VERBOSE + + exc_info = logger.isEnabledFor(VERBOSE) + logger.warning("Failed to read %s", config, exc_info=exc_info) + return cls(None) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 00000000..7a17b7b3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ded808ddad95f078e4bcf250c15ff687af852f2 GIT binary patch literal 283 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2525283ae6e6d4c1c9991e74bded7005631c53c1 GIT binary patch literal 40786 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 A82|tP literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3e7a43dfe2b40e61d8b376729980f61cf9c73bca GIT binary patch literal 12655 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 mXlyC?iGm}_v-J4#*v;cB`&UPE?cp^~IA Optional[str]: + """Look for VCS schemes in the URL. + + Returns the matched VCS scheme, or None if there's no match. + """ + for scheme in vcs.schemes: + if url.lower().startswith(scheme) and url[len(scheme)] in "+:": + return scheme + return None + + +class _NotAPIContent(Exception): + def __init__(self, content_type: str, request_desc: str) -> None: + super().__init__(content_type, request_desc) + self.content_type = content_type + self.request_desc = request_desc + + +def _ensure_api_header(response: Response) -> None: + """ + Check the Content-Type header to ensure the response contains a Simple + API Response. + + Raises `_NotAPIContent` if the content type is not a valid content-type. + """ + content_type = response.headers.get("Content-Type", "Unknown") + + content_type_l = content_type.lower() + if content_type_l.startswith( + ( + "text/html", + "application/vnd.pypi.simple.v1+html", + "application/vnd.pypi.simple.v1+json", + ) + ): + return + + raise _NotAPIContent(content_type, response.request.method) + + +class _NotHTTP(Exception): + pass + + +def _ensure_api_response(url: str, session: PipSession) -> None: + """ + Send a HEAD request to the URL, and ensure the response contains a simple + API Response. + + Raises `_NotHTTP` if the URL is not available for a HEAD request, or + `_NotAPIContent` if the content type is not a valid content type. + """ + scheme, netloc, path, query, fragment = urllib.parse.urlsplit(url) + if scheme not in {"http", "https"}: + raise _NotHTTP() + + resp = session.head(url, allow_redirects=True) + raise_for_status(resp) + + _ensure_api_header(resp) + + +def _get_simple_response(url: str, session: PipSession) -> Response: + """Access an Simple API response with GET, and return the response. + + This consists of three parts: + + 1. If the URL looks suspiciously like an archive, send a HEAD first to + check the Content-Type is HTML or Simple API, to avoid downloading a + large file. Raise `_NotHTTP` if the content type cannot be determined, or + `_NotAPIContent` if it is not HTML or a Simple API. + 2. Actually perform the request. Raise HTTP exceptions on network failures. + 3. Check the Content-Type header to make sure we got a Simple API response, + and raise `_NotAPIContent` otherwise. + """ + if is_archive_file(Link(url).filename): + _ensure_api_response(url, session=session) + + logger.debug("Getting page %s", redact_auth_from_url(url)) + + resp = session.get( + url, + headers={ + "Accept": ", ".join( + [ + "application/vnd.pypi.simple.v1+json", + "application/vnd.pypi.simple.v1+html; q=0.1", + "text/html; q=0.01", + ] + ), + # We don't want to blindly returned cached data for + # /simple/, because authors generally expecting that + # twine upload && pip install will function, but if + # they've done a pip install in the last ~10 minutes + # it won't. Thus by setting this to zero we will not + # blindly use any cached data, however the benefit of + # using max-age=0 instead of no-cache, is that we will + # still support conditional requests, so we will still + # minimize traffic sent in cases where the page hasn't + # changed at all, we will just always incur the round + # trip for the conditional GET now instead of only + # once per 10 minutes. + # For more information, please see pypa/pip#5670. + "Cache-Control": "max-age=0", + }, + ) + raise_for_status(resp) + + # The check for archives above only works if the url ends with + # something that looks like an archive. However that is not a + # requirement of an url. Unless we issue a HEAD request on every + # url we cannot know ahead of time for sure if something is a + # Simple API response or not. However we can check after we've + # downloaded it. + _ensure_api_header(resp) + + logger.debug( + "Fetched page %s as %s", + redact_auth_from_url(url), + resp.headers.get("Content-Type", "Unknown"), + ) + + return resp + + +def _get_encoding_from_headers(headers: ResponseHeaders) -> Optional[str]: + """Determine if we have any encoding information in our headers.""" + if headers and "Content-Type" in headers: + m = email.message.Message() + m["content-type"] = headers["Content-Type"] + charset = m.get_param("charset") + if charset: + return str(charset) + return None + + +class CacheablePageContent: + def __init__(self, page: "IndexContent") -> None: + assert page.cache_link_parsing + self.page = page + + def __eq__(self, other: object) -> bool: + return isinstance(other, type(self)) and self.page.url == other.page.url + + def __hash__(self) -> int: + return hash(self.page.url) + + +class ParseLinks(Protocol): + def __call__(self, page: "IndexContent") -> Iterable[Link]: + ... + + +def with_cached_index_content(fn: ParseLinks) -> ParseLinks: + """ + Given a function that parses an Iterable[Link] from an IndexContent, cache the + function's result (keyed by CacheablePageContent), unless the IndexContent + `page` has `page.cache_link_parsing == False`. + """ + + @functools.lru_cache(maxsize=None) + def wrapper(cacheable_page: CacheablePageContent) -> List[Link]: + return list(fn(cacheable_page.page)) + + @functools.wraps(fn) + def wrapper_wrapper(page: "IndexContent") -> List[Link]: + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page)) + return list(fn(page)) + + return wrapper_wrapper + + +@with_cached_index_content +def parse_links(page: "IndexContent") -> Iterable[Link]: + """ + Parse a Simple API's Index Content, and yield its anchor elements as Link objects. + """ + + content_type_l = page.content_type.lower() + if content_type_l.startswith("application/vnd.pypi.simple.v1+json"): + data = json.loads(page.content) + for file in data.get("files", []): + link = Link.from_json(file, page.url) + if link is None: + continue + yield link + return + + parser = HTMLLinkParser(page.url) + encoding = page.encoding or "utf-8" + parser.feed(page.content.decode(encoding)) + + url = page.url + base_url = parser.base_url or url + for anchor in parser.anchors: + link = Link.from_element(anchor, page_url=url, base_url=base_url) + if link is None: + continue + yield link + + +class IndexContent: + """Represents one response (or page), along with its URL""" + + def __init__( + self, + content: bytes, + content_type: str, + encoding: Optional[str], + url: str, + cache_link_parsing: bool = True, + ) -> None: + """ + :param encoding: the encoding to decode the given content. + :param url: the URL from which the HTML was downloaded. + :param cache_link_parsing: whether links parsed from this page's url + should be cached. PyPI index urls should + have this set to False, for example. + """ + self.content = content + self.content_type = content_type + self.encoding = encoding + self.url = url + self.cache_link_parsing = cache_link_parsing + + def __str__(self) -> str: + return redact_auth_from_url(self.url) + + +class HTMLLinkParser(HTMLParser): + """ + HTMLParser that keeps the first base HREF and a list of all anchor + elements' attributes. + """ + + def __init__(self, url: str) -> None: + super().__init__(convert_charrefs=True) + + self.url: str = url + self.base_url: Optional[str] = None + self.anchors: List[Dict[str, Optional[str]]] = [] + + def handle_starttag(self, tag: str, attrs: List[Tuple[str, Optional[str]]]) -> None: + if tag == "base" and self.base_url is None: + href = self.get_href(attrs) + if href is not None: + self.base_url = href + elif tag == "a": + self.anchors.append(dict(attrs)) + + def get_href(self, attrs: List[Tuple[str, Optional[str]]]) -> Optional[str]: + for name, value in attrs: + if name == "href": + return value + return None + + +def _handle_get_simple_fail( + link: Link, + reason: Union[str, Exception], + meth: Optional[Callable[..., None]] = None, +) -> None: + if meth is None: + meth = logger.debug + meth("Could not fetch URL %s: %s - skipping", link, reason) + + +def _make_index_content( + response: Response, cache_link_parsing: bool = True +) -> IndexContent: + encoding = _get_encoding_from_headers(response.headers) + return IndexContent( + response.content, + response.headers["Content-Type"], + encoding=encoding, + url=response.url, + cache_link_parsing=cache_link_parsing, + ) + + +def _get_index_content(link: Link, *, session: PipSession) -> Optional["IndexContent"]: + url = link.url.split("#", 1)[0] + + # Check for VCS schemes that do not support lookup as web pages. + vcs_scheme = _match_vcs_scheme(url) + if vcs_scheme: + logger.warning( + "Cannot look at %s URL %s because it does not support lookup as web pages.", + vcs_scheme, + link, + ) + return None + + # Tack index.html onto file:// URLs that point to directories + scheme, _, path, _, _, _ = urllib.parse.urlparse(url) + if scheme == "file" and os.path.isdir(urllib.request.url2pathname(path)): + # add trailing slash if not present so urljoin doesn't trim + # final segment + if not url.endswith("/"): + url += "/" + # TODO: In the future, it would be nice if pip supported PEP 691 + # style responses in the file:// URLs, however there's no + # standard file extension for application/vnd.pypi.simple.v1+json + # so we'll need to come up with something on our own. + url = urllib.parse.urljoin(url, "index.html") + logger.debug(" file: URL is directory, getting %s", url) + + try: + resp = _get_simple_response(url, session=session) + except _NotHTTP: + logger.warning( + "Skipping page %s because it looks like an archive, and cannot " + "be checked by a HTTP HEAD request.", + link, + ) + except _NotAPIContent as exc: + logger.warning( + "Skipping page %s because the %s request got Content-Type: %s. " + "The only supported Content-Types are application/vnd.pypi.simple.v1+json, " + "application/vnd.pypi.simple.v1+html, and text/html", + link, + exc.request_desc, + exc.content_type, + ) + except NetworkConnectionError as exc: + _handle_get_simple_fail(link, exc) + except RetryError as exc: + _handle_get_simple_fail(link, exc) + except SSLError as exc: + reason = "There was a problem confirming the ssl certificate: " + reason += str(exc) + _handle_get_simple_fail(link, reason, meth=logger.info) + except requests.ConnectionError as exc: + _handle_get_simple_fail(link, f"connection error: {exc}") + except requests.Timeout: + _handle_get_simple_fail(link, "timed out") + else: + return _make_index_content(resp, cache_link_parsing=link.cache_link_parsing) + return None + + +class CollectedSources(NamedTuple): + find_links: Sequence[Optional[LinkSource]] + index_urls: Sequence[Optional[LinkSource]] + + +class LinkCollector: + + """ + Responsible for collecting Link objects from all configured locations, + making network requests as needed. + + The class's main method is its collect_sources() method. + """ + + def __init__( + self, + session: PipSession, + search_scope: SearchScope, + ) -> None: + self.search_scope = search_scope + self.session = session + + @classmethod + def create( + cls, + session: PipSession, + options: Values, + suppress_no_index: bool = False, + ) -> "LinkCollector": + """ + :param session: The Session to use to make requests. + :param suppress_no_index: Whether to ignore the --no-index option + when constructing the SearchScope object. + """ + index_urls = [options.index_url] + options.extra_index_urls + if options.no_index and not suppress_no_index: + logger.debug( + "Ignoring indexes: %s", + ",".join(redact_auth_from_url(url) for url in index_urls), + ) + index_urls = [] + + # Make sure find_links is a list before passing to create(). + find_links = options.find_links or [] + + search_scope = SearchScope.create( + find_links=find_links, + index_urls=index_urls, + no_index=options.no_index, + ) + link_collector = LinkCollector( + session=session, + search_scope=search_scope, + ) + return link_collector + + @property + def find_links(self) -> List[str]: + return self.search_scope.find_links + + def fetch_response(self, location: Link) -> Optional[IndexContent]: + """ + Fetch an HTML page containing package links. + """ + return _get_index_content(location, session=self.session) + + def collect_sources( + self, + project_name: str, + candidates_from_page: CandidatesFromPage, + ) -> CollectedSources: + # The OrderedDict calls deduplicate sources by URL. + index_url_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=False, + cache_link_parsing=False, + project_name=project_name, + ) + for loc in self.search_scope.get_index_urls_locations(project_name) + ).values() + find_links_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=True, + cache_link_parsing=True, + project_name=project_name, + ) + for loc in self.find_links + ).values() + + if logger.isEnabledFor(logging.DEBUG): + lines = [ + f"* {s.link}" + for s in itertools.chain(find_links_sources, index_url_sources) + if s is not None and s.link is not None + ] + lines = [ + f"{len(lines)} location(s) to search " + f"for versions of {project_name}:" + ] + lines + logger.debug("\n".join(lines)) + + return CollectedSources( + find_links=list(find_links_sources), + index_urls=list(index_url_sources), + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 00000000..ec9ebc36 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,1027 @@ +"""Routines related to PyPI, indexes""" + +import enum +import functools +import itertools +import logging +import re +from typing import TYPE_CHECKING, FrozenSet, Iterable, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.tags import Tag +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import _BaseVersion +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + InvalidWheelFilename, + UnsupportedWheel, +) +from pip._internal.index.collector import LinkCollector, parse_links +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.models.wheel import Wheel +from pip._internal.req import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import build_netloc +from pip._internal.utils.packaging import check_requires_python +from pip._internal.utils.unpacking import SUPPORTED_EXTENSIONS + +if TYPE_CHECKING: + from pip._vendor.typing_extensions import TypeGuard + +__all__ = ["FormatControl", "BestCandidateResult", "PackageFinder"] + + +logger = getLogger(__name__) + +BuildTag = Union[Tuple[()], Tuple[int, str]] +CandidateSortingKey = Tuple[int, int, int, _BaseVersion, Optional[int], BuildTag] + + +def _check_link_requires_python( + link: Link, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> bool: + """ + Return whether the given Python version is compatible with a link's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + """ + try: + is_compatible = check_requires_python( + link.requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier: + logger.debug( + "Ignoring invalid Requires-Python (%r) for link: %s", + link.requires_python, + link, + ) + else: + if not is_compatible: + version = ".".join(map(str, version_info)) + if not ignore_requires_python: + logger.verbose( + "Link requires a different Python (%s not in: %r): %s", + version, + link.requires_python, + link, + ) + return False + + logger.debug( + "Ignoring failed Requires-Python check (%s not in: %r) for link: %s", + version, + link.requires_python, + link, + ) + + return True + + +class LinkType(enum.Enum): + candidate = enum.auto() + different_project = enum.auto() + yanked = enum.auto() + format_unsupported = enum.auto() + format_invalid = enum.auto() + platform_mismatch = enum.auto() + requires_python_mismatch = enum.auto() + + +class LinkEvaluator: + + """ + Responsible for evaluating links for a particular project. + """ + + _py_version_re = re.compile(r"-py([123]\.?[0-9]?)$") + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + project_name: str, + canonical_name: str, + formats: FrozenSet[str], + target_python: TargetPython, + allow_yanked: bool, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + :param project_name: The user supplied package name. + :param canonical_name: The canonical package name. + :param formats: The formats allowed for this package. Should be a set + with 'binary' or 'source' or both in it. + :param target_python: The target Python interpreter to use when + evaluating link compatibility. This is used, for example, to + check wheel compatibility, as well as when checking the Python + version, e.g. the Python version embedded in a link filename + (or egg fragment) and against an HTML link's optional PEP 503 + "data-requires-python" attribute. + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param ignore_requires_python: Whether to ignore incompatible + PEP 503 "data-requires-python" values in HTML links. Defaults + to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self._allow_yanked = allow_yanked + self._canonical_name = canonical_name + self._ignore_requires_python = ignore_requires_python + self._formats = formats + self._target_python = target_python + + self.project_name = project_name + + def evaluate_link(self, link: Link) -> Tuple[LinkType, str]: + """ + Determine whether a link is a candidate for installation. + + :return: A tuple (result, detail), where *result* is an enum + representing whether the evaluation found a candidate, or the reason + why one is not found. If a candidate is found, *detail* will be the + candidate's version string; if one is not found, it contains the + reason the link fails to qualify. + """ + version = None + if link.is_yanked and not self._allow_yanked: + reason = link.yanked_reason or "" + return (LinkType.yanked, f"yanked for reason: {reason}") + + if link.egg_fragment: + egg_info = link.egg_fragment + ext = link.ext + else: + egg_info, ext = link.splitext() + if not ext: + return (LinkType.format_unsupported, "not a file") + if ext not in SUPPORTED_EXTENSIONS: + return ( + LinkType.format_unsupported, + f"unsupported archive format: {ext}", + ) + if "binary" not in self._formats and ext == WHEEL_EXTENSION: + reason = f"No binaries permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + if "macosx10" in link.path and ext == ".zip": + return (LinkType.format_unsupported, "macosx10 one") + if ext == WHEEL_EXTENSION: + try: + wheel = Wheel(link.filename) + except InvalidWheelFilename: + return ( + LinkType.format_invalid, + "invalid wheel filename", + ) + if canonicalize_name(wheel.name) != self._canonical_name: + reason = f"wrong project name (not {self.project_name})" + return (LinkType.different_project, reason) + + supported_tags = self._target_python.get_unsorted_tags() + if not wheel.supported(supported_tags): + # Include the wheel's tags in the reason string to + # simplify troubleshooting compatibility issues. + file_tags = ", ".join(wheel.get_formatted_file_tags()) + reason = ( + f"none of the wheel's tags ({file_tags}) are compatible " + f"(run pip debug --verbose to show compatible tags)" + ) + return (LinkType.platform_mismatch, reason) + + version = wheel.version + + # This should be up by the self.ok_binary check, but see issue 2700. + if "source" not in self._formats and ext != WHEEL_EXTENSION: + reason = f"No sources permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + + if not version: + version = _extract_version_from_fragment( + egg_info, + self._canonical_name, + ) + if not version: + reason = f"Missing project version for {self.project_name}" + return (LinkType.format_invalid, reason) + + match = self._py_version_re.search(version) + if match: + version = version[: match.start()] + py_version = match.group(1) + if py_version != self._target_python.py_version: + return ( + LinkType.platform_mismatch, + "Python version is incorrect", + ) + + supports_python = _check_link_requires_python( + link, + version_info=self._target_python.py_version_info, + ignore_requires_python=self._ignore_requires_python, + ) + if not supports_python: + reason = f"{version} Requires-Python {link.requires_python}" + return (LinkType.requires_python_mismatch, reason) + + logger.debug("Found link %s, version: %s", link, version) + + return (LinkType.candidate, version) + + +def filter_unallowed_hashes( + candidates: List[InstallationCandidate], + hashes: Optional[Hashes], + project_name: str, +) -> List[InstallationCandidate]: + """ + Filter out candidates whose hashes aren't allowed, and return a new + list of candidates. + + If at least one candidate has an allowed hash, then all candidates with + either an allowed hash or no hash specified are returned. Otherwise, + the given candidates are returned. + + Including the candidates with no hash specified when there is a match + allows a warning to be logged if there is a more preferred candidate + with no hash specified. Returning all candidates in the case of no + matches lets pip report the hash of the candidate that would otherwise + have been installed (e.g. permitting the user to more easily update + their requirements file with the desired hash). + """ + if not hashes: + logger.debug( + "Given no hashes to check %s links for project %r: " + "discarding no candidates", + len(candidates), + project_name, + ) + # Make sure we're not returning back the given value. + return list(candidates) + + matches_or_no_digest = [] + # Collect the non-matches for logging purposes. + non_matches = [] + match_count = 0 + for candidate in candidates: + link = candidate.link + if not link.has_hash: + pass + elif link.is_hash_allowed(hashes=hashes): + match_count += 1 + else: + non_matches.append(candidate) + continue + + matches_or_no_digest.append(candidate) + + if match_count: + filtered = matches_or_no_digest + else: + # Make sure we're not returning back the given value. + filtered = list(candidates) + + if len(filtered) == len(candidates): + discard_message = "discarding no candidates" + else: + discard_message = "discarding {} non-matches:\n {}".format( + len(non_matches), + "\n ".join(str(candidate.link) for candidate in non_matches), + ) + + logger.debug( + "Checked %s links for project %r against %s hashes " + "(%s matches, %s no digest): %s", + len(candidates), + project_name, + hashes.digest_count, + match_count, + len(matches_or_no_digest) - match_count, + discard_message, + ) + + return filtered + + +class CandidatePreferences: + + """ + Encapsulates some of the preferences for filtering and sorting + InstallationCandidate objects. + """ + + def __init__( + self, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + ) -> None: + """ + :param allow_all_prereleases: Whether to allow all pre-releases. + """ + self.allow_all_prereleases = allow_all_prereleases + self.prefer_binary = prefer_binary + + +class BestCandidateResult: + """A collection of candidates, returned by `PackageFinder.find_best_candidate`. + + This class is only intended to be instantiated by CandidateEvaluator's + `compute_best_candidate()` method. + """ + + def __init__( + self, + candidates: List[InstallationCandidate], + applicable_candidates: List[InstallationCandidate], + best_candidate: Optional[InstallationCandidate], + ) -> None: + """ + :param candidates: A sequence of all available candidates found. + :param applicable_candidates: The applicable candidates. + :param best_candidate: The most preferred candidate found, or None + if no applicable candidates were found. + """ + assert set(applicable_candidates) <= set(candidates) + + if best_candidate is None: + assert not applicable_candidates + else: + assert best_candidate in applicable_candidates + + self._applicable_candidates = applicable_candidates + self._candidates = candidates + + self.best_candidate = best_candidate + + def iter_all(self) -> Iterable[InstallationCandidate]: + """Iterate through all candidates.""" + return iter(self._candidates) + + def iter_applicable(self) -> Iterable[InstallationCandidate]: + """Iterate through the applicable candidates.""" + return iter(self._applicable_candidates) + + +class CandidateEvaluator: + + """ + Responsible for filtering and sorting candidates for installation based + on what tags are valid. + """ + + @classmethod + def create( + cls, + project_name: str, + target_python: Optional[TargetPython] = None, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> "CandidateEvaluator": + """Create a CandidateEvaluator object. + + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + :param hashes: An optional collection of allowed hashes. + """ + if target_python is None: + target_python = TargetPython() + if specifier is None: + specifier = specifiers.SpecifierSet() + + supported_tags = target_python.get_sorted_tags() + + return cls( + project_name=project_name, + supported_tags=supported_tags, + specifier=specifier, + prefer_binary=prefer_binary, + allow_all_prereleases=allow_all_prereleases, + hashes=hashes, + ) + + def __init__( + self, + project_name: str, + supported_tags: List[Tag], + specifier: specifiers.BaseSpecifier, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + hashes: Optional[Hashes] = None, + ) -> None: + """ + :param supported_tags: The PEP 425 tags supported by the target + Python in order of preference (most preferred first). + """ + self._allow_all_prereleases = allow_all_prereleases + self._hashes = hashes + self._prefer_binary = prefer_binary + self._project_name = project_name + self._specifier = specifier + self._supported_tags = supported_tags + # Since the index of the tag in the _supported_tags list is used + # as a priority, precompute a map from tag to index/priority to be + # used in wheel.find_most_preferred_tag. + self._wheel_tag_preferences = { + tag: idx for idx, tag in enumerate(supported_tags) + } + + def get_applicable_candidates( + self, + candidates: List[InstallationCandidate], + ) -> List[InstallationCandidate]: + """ + Return the applicable candidates from a list of candidates. + """ + # Using None infers from the specifier instead. + allow_prereleases = self._allow_all_prereleases or None + specifier = self._specifier + versions = { + str(v) + for v in specifier.filter( + # We turn the version object into a str here because otherwise + # when we're debundled but setuptools isn't, Python will see + # packaging.version.Version and + # pkg_resources._vendor.packaging.version.Version as different + # types. This way we'll use a str as a common data interchange + # format. If we stop using the pkg_resources provided specifier + # and start using our own, we can drop the cast to str(). + (str(c.version) for c in candidates), + prereleases=allow_prereleases, + ) + } + + # Again, converting version to str to deal with debundling. + applicable_candidates = [c for c in candidates if str(c.version) in versions] + + filtered_applicable_candidates = filter_unallowed_hashes( + candidates=applicable_candidates, + hashes=self._hashes, + project_name=self._project_name, + ) + + return sorted(filtered_applicable_candidates, key=self._sort_key) + + def _sort_key(self, candidate: InstallationCandidate) -> CandidateSortingKey: + """ + Function to pass as the `key` argument to a call to sorted() to sort + InstallationCandidates by preference. + + Returns a tuple such that tuples sorting as greater using Python's + default comparison operator are more preferred. + + The preference is as follows: + + First and foremost, candidates with allowed (matching) hashes are + always preferred over candidates without matching hashes. This is + because e.g. if the only candidate with an allowed hash is yanked, + we still want to use that candidate. + + Second, excepting hash considerations, candidates that have been + yanked (in the sense of PEP 592) are always less preferred than + candidates that haven't been yanked. Then: + + If not finding wheels, they are sorted by version only. + If finding wheels, then the sort order is by version, then: + 1. existing installs + 2. wheels ordered via Wheel.support_index_min(self._supported_tags) + 3. source archives + If prefer_binary was set, then all wheels are sorted above sources. + + Note: it was considered to embed this logic into the Link + comparison operators, but then different sdist links + with the same version, would have to be considered equal + """ + valid_tags = self._supported_tags + support_num = len(valid_tags) + build_tag: BuildTag = () + binary_preference = 0 + link = candidate.link + if link.is_wheel: + # can raise InvalidWheelFilename + wheel = Wheel(link.filename) + try: + pri = -( + wheel.find_most_preferred_tag( + valid_tags, self._wheel_tag_preferences + ) + ) + except ValueError: + raise UnsupportedWheel( + f"{wheel.filename} is not a supported wheel for this platform. It " + "can't be sorted." + ) + if self._prefer_binary: + binary_preference = 1 + if wheel.build_tag is not None: + match = re.match(r"^(\d+)(.*)$", wheel.build_tag) + assert match is not None, "guaranteed by filename validation" + build_tag_groups = match.groups() + build_tag = (int(build_tag_groups[0]), build_tag_groups[1]) + else: # sdist + pri = -(support_num) + has_allowed_hash = int(link.is_hash_allowed(self._hashes)) + yank_value = -1 * int(link.is_yanked) # -1 for yanked. + return ( + has_allowed_hash, + yank_value, + binary_preference, + candidate.version, + pri, + build_tag, + ) + + def sort_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> Optional[InstallationCandidate]: + """ + Return the best candidate per the instance's sort order, or None if + no candidate is acceptable. + """ + if not candidates: + return None + best_candidate = max(candidates, key=self._sort_key) + return best_candidate + + def compute_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> BestCandidateResult: + """ + Compute and return a `BestCandidateResult` instance. + """ + applicable_candidates = self.get_applicable_candidates(candidates) + + best_candidate = self.sort_best_candidate(applicable_candidates) + + return BestCandidateResult( + candidates, + applicable_candidates=applicable_candidates, + best_candidate=best_candidate, + ) + + +class PackageFinder: + """This finds packages. + + This is meant to match easy_install's technique for looking for + packages, by reading pages and looking for appropriate links. + """ + + def __init__( + self, + link_collector: LinkCollector, + target_python: TargetPython, + allow_yanked: bool, + format_control: Optional[FormatControl] = None, + candidate_prefs: Optional[CandidatePreferences] = None, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + This constructor is primarily meant to be used by the create() class + method and from tests. + + :param format_control: A FormatControl object, used to control + the selection of source packages / binary packages when consulting + the index and links. + :param candidate_prefs: Options to use when creating a + CandidateEvaluator object. + """ + if candidate_prefs is None: + candidate_prefs = CandidatePreferences() + + format_control = format_control or FormatControl(set(), set()) + + self._allow_yanked = allow_yanked + self._candidate_prefs = candidate_prefs + self._ignore_requires_python = ignore_requires_python + self._link_collector = link_collector + self._target_python = target_python + + self.format_control = format_control + + # These are boring links that have already been logged somehow. + self._logged_links: Set[Tuple[Link, LinkType, str]] = set() + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + @classmethod + def create( + cls, + link_collector: LinkCollector, + selection_prefs: SelectionPreferences, + target_python: Optional[TargetPython] = None, + ) -> "PackageFinder": + """Create a PackageFinder. + + :param selection_prefs: The candidate selection preferences, as a + SelectionPreferences object. + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + """ + if target_python is None: + target_python = TargetPython() + + candidate_prefs = CandidatePreferences( + prefer_binary=selection_prefs.prefer_binary, + allow_all_prereleases=selection_prefs.allow_all_prereleases, + ) + + return cls( + candidate_prefs=candidate_prefs, + link_collector=link_collector, + target_python=target_python, + allow_yanked=selection_prefs.allow_yanked, + format_control=selection_prefs.format_control, + ignore_requires_python=selection_prefs.ignore_requires_python, + ) + + @property + def target_python(self) -> TargetPython: + return self._target_python + + @property + def search_scope(self) -> SearchScope: + return self._link_collector.search_scope + + @search_scope.setter + def search_scope(self, search_scope: SearchScope) -> None: + self._link_collector.search_scope = search_scope + + @property + def find_links(self) -> List[str]: + return self._link_collector.find_links + + @property + def index_urls(self) -> List[str]: + return self.search_scope.index_urls + + @property + def trusted_hosts(self) -> Iterable[str]: + for host_port in self._link_collector.session.pip_trusted_origins: + yield build_netloc(*host_port) + + @property + def allow_all_prereleases(self) -> bool: + return self._candidate_prefs.allow_all_prereleases + + def set_allow_all_prereleases(self) -> None: + self._candidate_prefs.allow_all_prereleases = True + + @property + def prefer_binary(self) -> bool: + return self._candidate_prefs.prefer_binary + + def set_prefer_binary(self) -> None: + self._candidate_prefs.prefer_binary = True + + def requires_python_skipped_reasons(self) -> List[str]: + reasons = { + detail + for _, result, detail in self._logged_links + if result == LinkType.requires_python_mismatch + } + return sorted(reasons) + + def make_link_evaluator(self, project_name: str) -> LinkEvaluator: + canonical_name = canonicalize_name(project_name) + formats = self.format_control.get_allowed_formats(canonical_name) + + return LinkEvaluator( + project_name=project_name, + canonical_name=canonical_name, + formats=formats, + target_python=self._target_python, + allow_yanked=self._allow_yanked, + ignore_requires_python=self._ignore_requires_python, + ) + + def _sort_links(self, links: Iterable[Link]) -> List[Link]: + """ + Returns elements of links in order, non-egg links first, egg links + second, while eliminating duplicates + """ + eggs, no_eggs = [], [] + seen: Set[Link] = set() + for link in links: + if link not in seen: + seen.add(link) + if link.egg_fragment: + eggs.append(link) + else: + no_eggs.append(link) + return no_eggs + eggs + + def _log_skipped_link(self, link: Link, result: LinkType, detail: str) -> None: + entry = (link, result, detail) + if entry not in self._logged_links: + # Put the link at the end so the reason is more visible and because + # the link string is usually very long. + logger.debug("Skipping link: %s: %s", detail, link) + self._logged_links.add(entry) + + def get_install_candidate( + self, link_evaluator: LinkEvaluator, link: Link + ) -> Optional[InstallationCandidate]: + """ + If the link is a candidate for install, convert it to an + InstallationCandidate and return it. Otherwise, return None. + """ + result, detail = link_evaluator.evaluate_link(link) + if result != LinkType.candidate: + self._log_skipped_link(link, result, detail) + return None + + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=detail, + ) + + def evaluate_links( + self, link_evaluator: LinkEvaluator, links: Iterable[Link] + ) -> List[InstallationCandidate]: + """ + Convert links that are candidates to InstallationCandidate objects. + """ + candidates = [] + for link in self._sort_links(links): + candidate = self.get_install_candidate(link_evaluator, link) + if candidate is not None: + candidates.append(candidate) + + return candidates + + def process_project_url( + self, project_url: Link, link_evaluator: LinkEvaluator + ) -> List[InstallationCandidate]: + logger.debug( + "Fetching project page and analyzing links: %s", + project_url, + ) + index_response = self._link_collector.fetch_response(project_url) + if index_response is None: + return [] + + page_links = list(parse_links(index_response)) + + with indent_log(): + package_links = self.evaluate_links( + link_evaluator, + links=page_links, + ) + + return package_links + + @functools.lru_cache(maxsize=None) + def find_all_candidates(self, project_name: str) -> List[InstallationCandidate]: + """Find all available InstallationCandidate for project_name + + This checks index_urls and find_links. + All versions found are returned as an InstallationCandidate list. + + See LinkEvaluator.evaluate_link() for details on which files + are accepted. + """ + link_evaluator = self.make_link_evaluator(project_name) + + collected_sources = self._link_collector.collect_sources( + project_name=project_name, + candidates_from_page=functools.partial( + self.process_project_url, + link_evaluator=link_evaluator, + ), + ) + + page_candidates_it = itertools.chain.from_iterable( + source.page_candidates() + for sources in collected_sources + for source in sources + if source is not None + ) + page_candidates = list(page_candidates_it) + + file_links_it = itertools.chain.from_iterable( + source.file_links() + for sources in collected_sources + for source in sources + if source is not None + ) + file_candidates = self.evaluate_links( + link_evaluator, + sorted(file_links_it, reverse=True), + ) + + if logger.isEnabledFor(logging.DEBUG) and file_candidates: + paths = [] + for candidate in file_candidates: + assert candidate.link.url # we need to have a URL + try: + paths.append(candidate.link.file_path) + except Exception: + paths.append(candidate.link.url) # it's not a local file + + logger.debug("Local files found: %s", ", ".join(paths)) + + # This is an intentional priority ordering + return file_candidates + page_candidates + + def make_candidate_evaluator( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> CandidateEvaluator: + """Create a CandidateEvaluator object to use.""" + candidate_prefs = self._candidate_prefs + return CandidateEvaluator.create( + project_name=project_name, + target_python=self._target_python, + prefer_binary=candidate_prefs.prefer_binary, + allow_all_prereleases=candidate_prefs.allow_all_prereleases, + specifier=specifier, + hashes=hashes, + ) + + @functools.lru_cache(maxsize=None) + def find_best_candidate( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> BestCandidateResult: + """Find matches for the given project and specifier. + + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + + :return: A `BestCandidateResult` instance. + """ + candidates = self.find_all_candidates(project_name) + candidate_evaluator = self.make_candidate_evaluator( + project_name=project_name, + specifier=specifier, + hashes=hashes, + ) + return candidate_evaluator.compute_best_candidate(candidates) + + def find_requirement( + self, req: InstallRequirement, upgrade: bool + ) -> Optional[InstallationCandidate]: + """Try to find a Link matching req + + Expects req, an InstallRequirement and upgrade, a boolean + Returns a InstallationCandidate if found, + Raises DistributionNotFound or BestVersionAlreadyInstalled otherwise + """ + hashes = req.hashes(trust_internet=False) + best_candidate_result = self.find_best_candidate( + req.name, + specifier=req.specifier, + hashes=hashes, + ) + best_candidate = best_candidate_result.best_candidate + + installed_version: Optional[_BaseVersion] = None + if req.satisfied_by is not None: + installed_version = req.satisfied_by.version + + def _format_versions(cand_iter: Iterable[InstallationCandidate]) -> str: + # This repeated parse_version and str() conversion is needed to + # handle different vendoring sources from pip and pkg_resources. + # If we stop using the pkg_resources provided specifier and start + # using our own, we can drop the cast to str(). + return ( + ", ".join( + sorted( + {str(c.version) for c in cand_iter}, + key=parse_version, + ) + ) + or "none" + ) + + if installed_version is None and best_candidate is None: + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req, + _format_versions(best_candidate_result.iter_all()), + ) + + raise DistributionNotFound(f"No matching distribution found for {req}") + + def _should_install_candidate( + candidate: Optional[InstallationCandidate], + ) -> "TypeGuard[InstallationCandidate]": + if installed_version is None: + return True + if best_candidate is None: + return False + return best_candidate.version > installed_version + + if not upgrade and installed_version is not None: + if _should_install_candidate(best_candidate): + logger.debug( + "Existing installed version (%s) satisfies requirement " + "(most up-to-date version is %s)", + installed_version, + best_candidate.version, + ) + else: + logger.debug( + "Existing installed version (%s) is most up-to-date and " + "satisfies requirement", + installed_version, + ) + return None + + if _should_install_candidate(best_candidate): + logger.debug( + "Using version %s (newest of versions: %s)", + best_candidate.version, + _format_versions(best_candidate_result.iter_applicable()), + ) + return best_candidate + + # We have an existing version, and its the best version + logger.debug( + "Installed version (%s) is most up-to-date (past versions: %s)", + installed_version, + _format_versions(best_candidate_result.iter_applicable()), + ) + raise BestVersionAlreadyInstalled + + +def _find_name_version_sep(fragment: str, canonical_name: str) -> int: + """Find the separator's index based on the package's canonical name. + + :param fragment: A + filename "fragment" (stem) or + egg fragment. + :param canonical_name: The package's canonical name. + + This function is needed since the canonicalized name does not necessarily + have the same length as the egg info's name part. An example:: + + >>> fragment = 'foo__bar-1.0' + >>> canonical_name = 'foo-bar' + >>> _find_name_version_sep(fragment, canonical_name) + 8 + """ + # Project name and version must be separated by one single dash. Find all + # occurrences of dashes; if the string in front of it matches the canonical + # name, this is the one separating the name and version parts. + for i, c in enumerate(fragment): + if c != "-": + continue + if canonicalize_name(fragment[:i]) == canonical_name: + return i + raise ValueError(f"{fragment} does not match {canonical_name}") + + +def _extract_version_from_fragment(fragment: str, canonical_name: str) -> Optional[str]: + """Parse the version string from a + filename + "fragment" (stem) or egg fragment. + + :param fragment: The string to parse. E.g. foo-2.1 + :param canonical_name: The canonicalized name of the package this + belongs to. + """ + try: + version_start = _find_name_version_sep(fragment, canonical_name) + 1 + except ValueError: + return None + version = fragment[version_start:] + if not version: + return None + return version diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py new file mode 100644 index 00000000..f4626d71 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,285 @@ +import logging +import mimetypes +import os +from collections import defaultdict +from typing import Callable, Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import ( + InvalidSdistFilename, + InvalidVersion, + InvalidWheelFilename, + canonicalize_name, + parse_sdist_filename, + parse_wheel_filename, +) + +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url, url_to_path +from pip._internal.vcs import is_url + +logger = logging.getLogger(__name__) + +FoundCandidates = Iterable[InstallationCandidate] +FoundLinks = Iterable[Link] +CandidatesFromPage = Callable[[Link], Iterable[InstallationCandidate]] +PageValidator = Callable[[Link], bool] + + +class LinkSource: + @property + def link(self) -> Optional[Link]: + """Returns the underlying link, if there's one.""" + raise NotImplementedError() + + def page_candidates(self) -> FoundCandidates: + """Candidates found by parsing an archive listing HTML file.""" + raise NotImplementedError() + + def file_links(self) -> FoundLinks: + """Links found by specifying archives directly.""" + raise NotImplementedError() + + +def _is_html_file(file_url: str) -> bool: + return mimetypes.guess_type(file_url, strict=False)[0] == "text/html" + + +class _FlatDirectoryToUrls: + """Scans directory and caches results""" + + def __init__(self, path: str) -> None: + self._path = path + self._page_candidates: List[str] = [] + self._project_name_to_urls: Dict[str, List[str]] = defaultdict(list) + self._scanned_directory = False + + def _scan_directory(self) -> None: + """Scans directory once and populates both page_candidates + and project_name_to_urls at the same time + """ + for entry in os.scandir(self._path): + url = path_to_url(entry.path) + if _is_html_file(url): + self._page_candidates.append(url) + continue + + # File must have a valid wheel or sdist name, + # otherwise not worth considering as a package + try: + project_filename = parse_wheel_filename(entry.name)[0] + except (InvalidWheelFilename, InvalidVersion): + try: + project_filename = parse_sdist_filename(entry.name)[0] + except (InvalidSdistFilename, InvalidVersion): + continue + + self._project_name_to_urls[project_filename].append(url) + self._scanned_directory = True + + @property + def page_candidates(self) -> List[str]: + if not self._scanned_directory: + self._scan_directory() + + return self._page_candidates + + @property + def project_name_to_urls(self) -> Dict[str, List[str]]: + if not self._scanned_directory: + self._scan_directory() + + return self._project_name_to_urls + + +class _FlatDirectorySource(LinkSource): + """Link source specified by ``--find-links=``. + + This looks the content of the directory, and returns: + + * ``page_candidates``: Links listed on each HTML file in the directory. + * ``file_candidates``: Archives in the directory. + """ + + _paths_to_urls: Dict[str, _FlatDirectoryToUrls] = {} + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + project_name: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._project_name = canonicalize_name(project_name) + + # Get existing instance of _FlatDirectoryToUrls if it exists + if path in self._paths_to_urls: + self._path_to_urls = self._paths_to_urls[path] + else: + self._path_to_urls = _FlatDirectoryToUrls(path=path) + self._paths_to_urls[path] = self._path_to_urls + + @property + def link(self) -> Optional[Link]: + return None + + def page_candidates(self) -> FoundCandidates: + for url in self._path_to_urls.page_candidates: + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for url in self._path_to_urls.project_name_to_urls[self._project_name]: + yield Link(url) + + +class _LocalFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + If a URL is supplied, it must be a ``file:`` URL. If a path is supplied to + the option, it is converted to a URL first. This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not _is_html_file(self._link.url): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + if _is_html_file(self._link.url): + return + yield self._link + + +class _RemoteFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._page_validator = page_validator + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not self._page_validator(self._link): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + yield self._link + + +class _IndexDirectorySource(LinkSource): + """``--[extra-]index-url=``. + + This is treated like a remote URL; ``candidates_from_page`` contains logic + for this by appending ``index.html`` to the link. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + return () + + +def build_source( + location: str, + *, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + expand_dir: bool, + cache_link_parsing: bool, + project_name: str, +) -> Tuple[Optional[str], Optional[LinkSource]]: + path: Optional[str] = None + url: Optional[str] = None + if os.path.exists(location): # Is a local path. + url = path_to_url(location) + path = location + elif location.startswith("file:"): # A file: URL. + url = location + path = url_to_path(location) + elif is_url(location): + url = location + + if url is None: + msg = ( + "Location '%s' is ignored: " + "it is either a non-existing path or lacks a specific scheme." + ) + logger.warning(msg, location) + return (None, None) + + if path is None: + source: LinkSource = _RemoteFileSource( + candidates_from_page=candidates_from_page, + page_validator=page_validator, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + + if os.path.isdir(path): + if expand_dir: + source = _FlatDirectorySource( + candidates_from_page=candidates_from_page, + path=path, + project_name=project_name, + ) + else: + source = _IndexDirectorySource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + elif os.path.isfile(path): + source = _LocalFileSource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + logger.warning( + "Location '%s' is ignored: it is neither a file nor a directory.", + location, + ) + return (url, None) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 00000000..d54bc63e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,467 @@ +import functools +import logging +import os +import pathlib +import sys +import sysconfig +from typing import Any, Dict, Generator, Optional, Tuple + +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.virtualenv import running_under_virtualenv + +from . import _sysconfig +from .base import ( + USER_CACHE_DIR, + get_major_minor_version, + get_src_prefix, + is_osx_framework, + site_packages, + user_site, +) + +__all__ = [ + "USER_CACHE_DIR", + "get_bin_prefix", + "get_bin_user", + "get_major_minor_version", + "get_platlib", + "get_purelib", + "get_scheme", + "get_src_prefix", + "site_packages", + "user_site", +] + + +logger = logging.getLogger(__name__) + + +_PLATLIBDIR: str = getattr(sys, "platlibdir", "lib") + +_USE_SYSCONFIG_DEFAULT = sys.version_info >= (3, 10) + + +def _should_use_sysconfig() -> bool: + """This function determines the value of _USE_SYSCONFIG. + + By default, pip uses sysconfig on Python 3.10+. + But Python distributors can override this decision by setting: + sysconfig._PIP_USE_SYSCONFIG = True / False + Rationale in https://github.com/pypa/pip/issues/10647 + + This is a function for testability, but should be constant during any one + run. + """ + return bool(getattr(sysconfig, "_PIP_USE_SYSCONFIG", _USE_SYSCONFIG_DEFAULT)) + + +_USE_SYSCONFIG = _should_use_sysconfig() + +if not _USE_SYSCONFIG: + # Import distutils lazily to avoid deprecation warnings, + # but import it soon enough that it is in memory and available during + # a pip reinstall. + from . import _distutils + +# Be noisy about incompatibilities if this platforms "should" be using +# sysconfig, but is explicitly opting out and using distutils instead. +if _USE_SYSCONFIG_DEFAULT and not _USE_SYSCONFIG: + _MISMATCH_LEVEL = logging.WARNING +else: + _MISMATCH_LEVEL = logging.DEBUG + + +def _looks_like_bpo_44860() -> bool: + """The resolution to bpo-44860 will change this incorrect platlib. + + See . + """ + from distutils.command.install import INSTALL_SCHEMES + + try: + unix_user_platlib = INSTALL_SCHEMES["unix_user"]["platlib"] + except KeyError: + return False + return unix_user_platlib == "$usersite" + + +def _looks_like_red_hat_patched_platlib_purelib(scheme: Dict[str, str]) -> bool: + platlib = scheme["platlib"] + if "/$platlibdir/" in platlib: + platlib = platlib.replace("/$platlibdir/", f"/{_PLATLIBDIR}/") + if "/lib64/" not in platlib: + return False + unpatched = platlib.replace("/lib64/", "/lib/") + return unpatched.replace("$platbase/", "$base/") == scheme["purelib"] + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_lib() -> bool: + """Red Hat patches platlib in unix_prefix and unix_home, but not purelib. + + This is the only way I can see to tell a Red Hat-patched Python. + """ + from distutils.command.install import INSTALL_SCHEMES + + return all( + k in INSTALL_SCHEMES + and _looks_like_red_hat_patched_platlib_purelib(INSTALL_SCHEMES[k]) + for k in ("unix_prefix", "unix_home") + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_debian_scheme() -> bool: + """Debian adds two additional schemes.""" + from distutils.command.install import INSTALL_SCHEMES + + return "deb_system" in INSTALL_SCHEMES and "unix_local" in INSTALL_SCHEMES + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_scheme() -> bool: + """Red Hat patches ``sys.prefix`` and ``sys.exec_prefix``. + + Red Hat's ``00251-change-user-install-location.patch`` changes the install + command's ``prefix`` and ``exec_prefix`` to append ``"/local"``. This is + (fortunately?) done quite unconditionally, so we create a default command + object without any configuration to detect this. + """ + from distutils.command.install import install + from distutils.dist import Distribution + + cmd: Any = install(Distribution()) + cmd.finalize_options() + return ( + cmd.exec_prefix == f"{os.path.normpath(sys.exec_prefix)}/local" + and cmd.prefix == f"{os.path.normpath(sys.prefix)}/local" + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_slackware_scheme() -> bool: + """Slackware patches sysconfig but fails to patch distutils and site. + + Slackware changes sysconfig's user scheme to use ``"lib64"`` for the lib + path, but does not do the same to the site module. + """ + if user_site is None: # User-site not available. + return False + try: + paths = sysconfig.get_paths(scheme="posix_user", expand=False) + except KeyError: # User-site not available. + return False + return "/lib64/" in paths["purelib"] and "/lib64/" not in user_site + + +@functools.lru_cache(maxsize=None) +def _looks_like_msys2_mingw_scheme() -> bool: + """MSYS2 patches distutils and sysconfig to use a UNIX-like scheme. + + However, MSYS2 incorrectly patches sysconfig ``nt`` scheme. The fix is + likely going to be included in their 3.10 release, so we ignore the warning. + See msys2/MINGW-packages#9319. + + MSYS2 MINGW's patch uses lowercase ``"lib"`` instead of the usual uppercase, + and is missing the final ``"site-packages"``. + """ + paths = sysconfig.get_paths("nt", expand=False) + return all( + "Lib" not in p and "lib" in p and not p.endswith("site-packages") + for p in (paths[key] for key in ("platlib", "purelib")) + ) + + +def _fix_abiflags(parts: Tuple[str]) -> Generator[str, None, None]: + ldversion = sysconfig.get_config_var("LDVERSION") + abiflags = getattr(sys, "abiflags", None) + + # LDVERSION does not end with sys.abiflags. Just return the path unchanged. + if not ldversion or not abiflags or not ldversion.endswith(abiflags): + yield from parts + return + + # Strip sys.abiflags from LDVERSION-based path components. + for part in parts: + if part.endswith(ldversion): + part = part[: (0 - len(abiflags))] + yield part + + +@functools.lru_cache(maxsize=None) +def _warn_mismatched(old: pathlib.Path, new: pathlib.Path, *, key: str) -> None: + issue_url = "https://github.com/pypa/pip/issues/10151" + message = ( + "Value for %s does not match. Please report this to <%s>" + "\ndistutils: %s" + "\nsysconfig: %s" + ) + logger.log(_MISMATCH_LEVEL, message, key, issue_url, old, new) + + +def _warn_if_mismatch(old: pathlib.Path, new: pathlib.Path, *, key: str) -> bool: + if old == new: + return False + _warn_mismatched(old, new, key=key) + return True + + +@functools.lru_cache(maxsize=None) +def _log_context( + *, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + prefix: Optional[str] = None, +) -> None: + parts = [ + "Additional context:", + "user = %r", + "home = %r", + "root = %r", + "prefix = %r", + ] + + logger.log(_MISMATCH_LEVEL, "\n".join(parts), user, home, root, prefix) + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + new = _sysconfig.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + if _USE_SYSCONFIG: + return new + + old = _distutils.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + + warning_contexts = [] + for k in SCHEME_KEYS: + old_v = pathlib.Path(getattr(old, k)) + new_v = pathlib.Path(getattr(new, k)) + + if old_v == new_v: + continue + + # distutils incorrectly put PyPy packages under ``site-packages/python`` + # in the ``posix_home`` scheme, but PyPy devs said they expect the + # directory name to be ``pypy`` instead. So we treat this as a bug fix + # and not warn about it. See bpo-43307 and python/cpython#24628. + skip_pypy_special_case = ( + sys.implementation.name == "pypy" + and home is not None + and k in ("platlib", "purelib") + and old_v.parent == new_v.parent + and old_v.name.startswith("python") + and new_v.name.startswith("pypy") + ) + if skip_pypy_special_case: + continue + + # sysconfig's ``osx_framework_user`` does not include ``pythonX.Y`` in + # the ``include`` value, but distutils's ``headers`` does. We'll let + # CPython decide whether this is a bug or feature. See bpo-43948. + skip_osx_framework_user_special_case = ( + user + and is_osx_framework() + and k == "headers" + and old_v.parent.parent == new_v.parent + and old_v.parent.name.startswith("python") + ) + if skip_osx_framework_user_special_case: + continue + + # On Red Hat and derived Linux distributions, distutils is patched to + # use "lib64" instead of "lib" for platlib. + if k == "platlib" and _looks_like_red_hat_lib(): + continue + + # On Python 3.9+, sysconfig's posix_user scheme sets platlib against + # sys.platlibdir, but distutils's unix_user incorrectly coninutes + # using the same $usersite for both platlib and purelib. This creates a + # mismatch when sys.platlibdir is not "lib". + skip_bpo_44860 = ( + user + and k == "platlib" + and not WINDOWS + and sys.version_info >= (3, 9) + and _PLATLIBDIR != "lib" + and _looks_like_bpo_44860() + ) + if skip_bpo_44860: + continue + + # Slackware incorrectly patches posix_user to use lib64 instead of lib, + # but not usersite to match the location. + skip_slackware_user_scheme = ( + user + and k in ("platlib", "purelib") + and not WINDOWS + and _looks_like_slackware_scheme() + ) + if skip_slackware_user_scheme: + continue + + # Both Debian and Red Hat patch Python to place the system site under + # /usr/local instead of /usr. Debian also places lib in dist-packages + # instead of site-packages, but the /usr/local check should cover it. + skip_linux_system_special_case = ( + not (user or home or prefix or running_under_virtualenv()) + and old_v.parts[1:3] == ("usr", "local") + and len(new_v.parts) > 1 + and new_v.parts[1] == "usr" + and (len(new_v.parts) < 3 or new_v.parts[2] != "local") + and (_looks_like_red_hat_scheme() or _looks_like_debian_scheme()) + ) + if skip_linux_system_special_case: + continue + + # On Python 3.7 and earlier, sysconfig does not include sys.abiflags in + # the "pythonX.Y" part of the path, but distutils does. + skip_sysconfig_abiflag_bug = ( + sys.version_info < (3, 8) + and not WINDOWS + and k in ("headers", "platlib", "purelib") + and tuple(_fix_abiflags(old_v.parts)) == new_v.parts + ) + if skip_sysconfig_abiflag_bug: + continue + + # MSYS2 MINGW's sysconfig patch does not include the "site-packages" + # part of the path. This is incorrect and will be fixed in MSYS. + skip_msys2_mingw_bug = ( + WINDOWS and k in ("platlib", "purelib") and _looks_like_msys2_mingw_scheme() + ) + if skip_msys2_mingw_bug: + continue + + # CPython's POSIX install script invokes pip (via ensurepip) against the + # interpreter located in the source tree, not the install site. This + # triggers special logic in sysconfig that's not present in distutils. + # https://github.com/python/cpython/blob/8c21941ddaf/Lib/sysconfig.py#L178-L194 + skip_cpython_build = ( + sysconfig.is_python_build(check_home=True) + and not WINDOWS + and k in ("headers", "include", "platinclude") + ) + if skip_cpython_build: + continue + + warning_contexts.append((old_v, new_v, f"scheme.{k}")) + + if not warning_contexts: + return old + + # Check if this path mismatch is caused by distutils config files. Those + # files will no longer work once we switch to sysconfig, so this raises a + # deprecation message for them. + default_old = _distutils.distutils_scheme( + dist_name, + user, + home, + root, + isolated, + prefix, + ignore_config_files=True, + ) + if any(default_old[k] != getattr(old, k) for k in SCHEME_KEYS): + deprecated( + reason=( + "Configuring installation scheme with distutils config files " + "is deprecated and will no longer work in the near future. If you " + "are using a Homebrew or Linuxbrew Python, please see discussion " + "at https://github.com/Homebrew/homebrew-core/issues/76621" + ), + replacement=None, + gone_in=None, + ) + return old + + # Post warnings about this mismatch so user can report them back. + for old_v, new_v, key in warning_contexts: + _warn_mismatched(old_v, new_v, key=key) + _log_context(user=user, home=home, root=root, prefix=prefix) + + return old + + +def get_bin_prefix() -> str: + new = _sysconfig.get_bin_prefix() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_bin_prefix() + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="bin_prefix"): + _log_context() + return old + + +def get_bin_user() -> str: + return _sysconfig.get_scheme("", user=True).scripts + + +def _looks_like_deb_system_dist_packages(value: str) -> bool: + """Check if the value is Debian's APT-controlled dist-packages. + + Debian's ``distutils.sysconfig.get_python_lib()`` implementation returns the + default package path controlled by APT, but does not patch ``sysconfig`` to + do the same. This is similar to the bug worked around in ``get_scheme()``, + but here the default is ``deb_system`` instead of ``unix_local``. Ultimately + we can't do anything about this Debian bug, and this detection allows us to + skip the warning when needed. + """ + if not _looks_like_debian_scheme(): + return False + if value == "/usr/lib/python3/dist-packages": + return True + return False + + +def get_purelib() -> str: + """Return the default pure-Python lib location.""" + new = _sysconfig.get_purelib() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_purelib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="purelib"): + _log_context() + return old + + +def get_platlib() -> str: + """Return the default platform-shared lib location.""" + new = _sysconfig.get_platlib() + if _USE_SYSCONFIG: + return new + + from . import _distutils + + old = _distutils.get_platlib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="platlib"): + _log_context() + return old diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..861f5730f8167c83e006405526aef56efe0fb3a7 GIT binary patch literal 16827 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c2ecfccd4941df7b3259b6d7a4f4eaca1e7be5f4 GIT binary patch literal 6907 zcmbtYU2GfImA*p`hyOqNp?+vt9!a)k#un*B?mF>WNxYVoD7Ms1<;D$>noDs;(#Rx- zduQ~!qf`kDlqw8ZeyLn!R=FZN*rv=3YKg$z|lp30~f+X9<6HOgYMe%f

8ez;~o{V`8qEkpIGh^)*(AonJGAtPp`Dh@04m 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 O_-q6i{4K&voBt2Dsrg_4 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f14d02977c1f0e93de4b046477980ead783eec29 GIT binary patch literal 3832 zcmbVPZ%iA>6`%F`|9>FFkmN4gaK)Gy`$BRhO*yy(QiWCt*Fc)aisY`nV_0MFy0dEx zTu|ug)WfG!Ayp-a?y4keq)=TybHJ@Ix5kI`_#13^^<$#!zt>Az8QPLA*hjV zg!j$7nR)NcoA-Y6_^Z$7M$o>y@#*A$T?qYy4$Nk+cea1UA+&<7APGra4kc=oOK@y# zNmv-=6Fj5Vgq2ZS!Uoimv*#TN2S@ktIcMILaIwBM=gxZ)9u8R$c4ga4mAh23eF0i& zOZZ@oHG8BsYWzy}oiza*#7&Z;AEqTI4rVNp>mzHTS#sl`-5kpM^S=zUc};@~y(>DwhV!(T%sF4FWBU2-YH8BHUKri;0psLQHyo)DD)(;*fL zl1wz{wvnQu$jU^rs7RP3r)8oS#T-_q4Za{33`e0za86DcK26qfvLL3X#0jh!c7pXH zQPPc;@GzjiZFe$Ix-!TC;L+8ZX$7;+u z+XwTp59TAhVb7=}FX{%b&1#0Xt{^EZ8TAinn_BncH}Od|kK+?!ipV$@AI930t`_2B zYDO=K1PjA>8t2qPo?0@b7Kw)A7ged4!#(4wn$zNPzL3LowkNHYG;uZ_n+7k(!ME`O zGaT&djZ-i8m|l*<4aC6+9TP>&#dB(!-J%vxi5iX-W{uDU)|1RLN#>bk-Eh(b7Pr7p zI}D!%RCOcop~b$Xf%3rTCpQlt-#C1H-4k86Mo9qX4X1)jNusK{;Vg*yq$1{Vdgqd0 z0nKoBvHxZnuEVg_vW=_iJc*m?LWraqR_$}mS%)cOm)_va9MFW<>;??l+ioD(U$`bN&#>|#^{x#C~ z_XOW?2A`>4ax}===RBVQCjO2$E&Gs*xWu1;ne`+Lo1qaFO0qsFgw3D{3k8A;7~n&S zxmm7_WQ2y*vL*n8K;%y2DC8>);Sc|!C{I(I(FI)y&$Lhx#uiKtd0Y*z$5;8>1*HI^|0px%>kw^lhG!e-xuq0X2 zi@KZxBN-Ib&SBUJswU5TMML0{VNrBKFXIJweXjY6GNq^`MJRy3C?cH^=H77+iHe}8 zx{#g}l?g1+L}jj_e$U7=)b8S*eX)qcu&A10rMYZasUr=WtcfXLQC}Ett&o#-iNK{0 zn%WU7X$C?lXc)E{pJInbbC*If3DOx)%?1V*L;wz3^B3qWpy$oV>HfI%%hGcAZ;tk@ zK+{sGTw0nh&#(UMaiDXnrFEt6R^Lkht^T{twXRCb$#w6^XD>4!o_N^17Ok}Ot$X{P zxjajua%g$@lcQU0hweCTJ2u<8H`=<_PFLDam3@n?%ho5Jz%p0vTb4c}fZVi4$X}1L=Nq8fug_4(U6nl%-*_r%4ubFNdIN8QiH__)GBq zlJwlWLNE7lB})P=&jciz)xS? z-6;}*sXq8=MffbBEyvNvj_+)>hE}fLy1H`x*7f@x54!Jlui;ATsj|Cjx4M4HZM7f1 z6S^I`bL94s`>6-=J^A-j58tV@e}C~u&;7{jU+OFOEe)0jSI<;Do$J=lZ=U;5F!VLD zz}9Epz|w{Ch4t3)zk9D#ZItywqi_A6de3>$Bk!B%diY0C4!(w~s6jbL%L!WV<;59I zp2IK2Hgytby{t)%Qvj_`0V0I9QGS_eYOA* zWVAsD#dhkd7@kSv0xgd<28Bk;%hL?N3H5~W<~}pA-IAHbo#AJmPmAeEoP;9V@Lw4_ ze>pjHcId+SYfBalpr3SfM#zDp)q0mlHAMVQe7d#G4?AhS9o z^xqM~Im%2IbB6z{4i8zXsN-5lyO`dwk@53}D@Te+W)Y$PqcFGbasCTuf9;JLAm?BS zy<+WO@Tu|~$8DkDQ{;MzJWrAPDee3IiN5zG3V(@)s&>@ewH(@P3U4%p*KC!h*n%H; z2fLQ9ZMKFtTElCuN^9?eZ&9nD-m2Zk_1taQMnI~;cFw)pQAI%3S{Qiw8e%T3Q#{H@O2F+=12c z$K0{1h2!2`ed}ukWSd8pj{i``H&qXE9;D2pPl5+l{I~ocj?nWReWB6E@6XYWb5Zmt N+BAgtM}r)E{|C4gdx!u4 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py new file mode 100644 index 00000000..0e18c6e1 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py @@ -0,0 +1,172 @@ +"""Locations where we look for configs, install stuff, etc""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +# If pip's going to use distutils, it should not be using the copy that setuptools +# might have injected into the environment. This is done by removing the injected +# shim, if it's injected. +# +# See https://github.com/pypa/pip/issues/8761 for the original discussion and +# rationale for why this is done within pip. +try: + __import__("_distutils_hack").remove_shim() +except (ImportError, AttributeError): + pass + +import logging +import os +import sys +from distutils.cmd import Command as DistutilsCommand +from distutils.command.install import SCHEME_KEYS +from distutils.command.install import install as distutils_install_command +from distutils.sysconfig import get_python_lib +from typing import Dict, List, Optional, Union, cast + +from pip._internal.models.scheme import Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import get_major_minor_version + +logger = logging.getLogger(__name__) + + +def distutils_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, + *, + ignore_config_files: bool = False, +) -> Dict[str, str]: + """ + Return a distutils install scheme + """ + from distutils.dist import Distribution + + dist_args: Dict[str, Union[str, List[str]]] = {"name": dist_name} + if isolated: + dist_args["script_args"] = ["--no-user-cfg"] + + d = Distribution(dist_args) + if not ignore_config_files: + try: + d.parse_config_files() + except UnicodeDecodeError: + paths = d.find_config_files() + logger.warning( + "Ignore distutils configs in %s due to encoding errors.", + ", ".join(os.path.basename(p) for p in paths), + ) + obj: Optional[DistutilsCommand] = None + obj = d.get_command_obj("install", create=True) + assert obj is not None + i = cast(distutils_install_command, obj) + # NOTE: setting user or home has the side-effect of creating the home dir + # or user base for installations during finalize_options() + # ideally, we'd prefer a scheme class that has no side-effects. + assert not (user and prefix), f"user={user} prefix={prefix}" + assert not (home and prefix), f"home={home} prefix={prefix}" + i.user = user or i.user + if user or home: + i.prefix = "" + i.prefix = prefix or i.prefix + i.home = home or i.home + i.root = root or i.root + i.finalize_options() + + scheme = {} + for key in SCHEME_KEYS: + scheme[key] = getattr(i, "install_" + key) + + # install_lib specified in setup.cfg should install *everything* + # into there (i.e. it takes precedence over both purelib and + # platlib). Note, i.install_lib is *always* set after + # finalize_options(); we only want to override here if the user + # has explicitly requested it hence going back to the config + if "install_lib" in d.get_option_dict("install"): + scheme.update({"purelib": i.install_lib, "platlib": i.install_lib}) + + if running_under_virtualenv(): + if home: + prefix = home + elif user: + prefix = i.install_userbase + else: + prefix = i.prefix + scheme["headers"] = os.path.join( + prefix, + "include", + "site", + f"python{get_major_minor_version()}", + dist_name, + ) + + if root is not None: + path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1] + scheme["headers"] = os.path.join(root, path_no_drive[1:]) + + return scheme + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. The distutils + documentation provides the context for the available schemes: + https://docs.python.org/3/install/index.html#alternate-installation + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme and provides the base + directory for the same + :param root: root under which other directories are re-based + :param isolated: equivalent to --no-user-cfg, i.e. do not consider + ~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for + scheme paths + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + scheme = distutils_scheme(dist_name, user, home, root, isolated, prefix) + return Scheme( + platlib=scheme["platlib"], + purelib=scheme["purelib"], + headers=scheme["headers"], + scripts=scheme["scripts"], + data=scheme["data"], + ) + + +def get_bin_prefix() -> str: + # XXX: In old virtualenv versions, sys.prefix can contain '..' components, + # so we need to call normpath to eliminate them. + prefix = os.path.normpath(sys.prefix) + if WINDOWS: + bin_py = os.path.join(prefix, "Scripts") + # buildout uses 'bin' on Windows too? + if not os.path.exists(bin_py): + bin_py = os.path.join(prefix, "bin") + return bin_py + # Forcing to use /usr/local/bin for standard macOS framework installs + # Also log to ~/Library/Logs/ for use with the Console.app log viewer + if sys.platform[:6] == "darwin" and prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return os.path.join(prefix, "bin") + + +def get_purelib() -> str: + return get_python_lib(plat_specific=False) + + +def get_platlib() -> str: + return get_python_lib(plat_specific=True) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 00000000..97aef1f1 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,213 @@ +import logging +import os +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InvalidSchemeCombination, UserInstallationInvalid +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import change_root, get_major_minor_version, is_osx_framework + +logger = logging.getLogger(__name__) + + +# Notes on _infer_* functions. +# Unfortunately ``get_default_scheme()`` didn't exist before 3.10, so there's no +# way to ask things like "what is the '_prefix' scheme on this platform". These +# functions try to answer that with some heuristics while accounting for ad-hoc +# platforms not covered by CPython's default sysconfig implementation. If the +# ad-hoc implementation does not fully implement sysconfig, we'll fall back to +# a POSIX scheme. + +_AVAILABLE_SCHEMES = set(sysconfig.get_scheme_names()) + +_PREFERRED_SCHEME_API = getattr(sysconfig, "get_preferred_scheme", None) + + +def _should_use_osx_framework_prefix() -> bool: + """Check for Apple's ``osx_framework_library`` scheme. + + Python distributed by Apple's Command Line Tools has this special scheme + that's used when: + + * This is a framework build. + * We are installing into the system prefix. + + This does not account for ``pip install --prefix`` (also means we're not + installing to the system prefix), which should use ``posix_prefix``, but + logic here means ``_infer_prefix()`` outputs ``osx_framework_library``. But + since ``prefix`` is not available for ``sysconfig.get_default_scheme()``, + which is the stdlib replacement for ``_infer_prefix()``, presumably Apple + wouldn't be able to magically switch between ``osx_framework_library`` and + ``posix_prefix``. ``_infer_prefix()`` returning ``osx_framework_library`` + means its behavior is consistent whether we use the stdlib implementation + or our own, and we deal with this special case in ``get_scheme()`` instead. + """ + return ( + "osx_framework_library" in _AVAILABLE_SCHEMES + and not running_under_virtualenv() + and is_osx_framework() + ) + + +def _infer_prefix() -> str: + """Try to find a prefix scheme for the current platform. + + This tries: + + * A special ``osx_framework_library`` for Python distributed by Apple's + Command Line Tools, when not running in a virtual environment. + * Implementation + OS, used by PyPy on Windows (``pypy_nt``). + * Implementation without OS, used by PyPy on POSIX (``pypy``). + * OS + "prefix", used by CPython on POSIX (``posix_prefix``). + * Just the OS name, used by CPython on Windows (``nt``). + + If none of the above works, fall back to ``posix_prefix``. + """ + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("prefix") + if _should_use_osx_framework_prefix(): + return "osx_framework_library" + implementation_suffixed = f"{sys.implementation.name}_{os.name}" + if implementation_suffixed in _AVAILABLE_SCHEMES: + return implementation_suffixed + if sys.implementation.name in _AVAILABLE_SCHEMES: + return sys.implementation.name + suffixed = f"{os.name}_prefix" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if os.name in _AVAILABLE_SCHEMES: # On Windows, prefx is just called "nt". + return os.name + return "posix_prefix" + + +def _infer_user() -> str: + """Try to find a user scheme for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("user") + if is_osx_framework() and not running_under_virtualenv(): + suffixed = "osx_framework_user" + else: + suffixed = f"{os.name}_user" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if "posix_user" not in _AVAILABLE_SCHEMES: # User scheme unavailable. + raise UserInstallationInvalid() + return "posix_user" + + +def _infer_home() -> str: + """Try to find a home for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("home") + suffixed = f"{os.name}_home" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + return "posix_home" + + +# Update these keys if the user sets a custom home. +_HOME_KEYS = [ + "installed_base", + "base", + "installed_platbase", + "platbase", + "prefix", + "exec_prefix", +] +if sysconfig.get_config_var("userbase") is not None: + _HOME_KEYS.append("userbase") + + +def get_scheme( + dist_name: str, + user: bool = False, + home: typing.Optional[str] = None, + root: typing.Optional[str] = None, + isolated: bool = False, + prefix: typing.Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme + :param root: root under which other directories are re-based + :param isolated: ignored, but kept for distutils compatibility (where + this controls whether the user-site pydistutils.cfg is honored) + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + if user and prefix: + raise InvalidSchemeCombination("--user", "--prefix") + if home and prefix: + raise InvalidSchemeCombination("--home", "--prefix") + + if home is not None: + scheme_name = _infer_home() + elif user: + scheme_name = _infer_user() + else: + scheme_name = _infer_prefix() + + # Special case: When installing into a custom prefix, use posix_prefix + # instead of osx_framework_library. See _should_use_osx_framework_prefix() + # docstring for details. + if prefix is not None and scheme_name == "osx_framework_library": + scheme_name = "posix_prefix" + + if home is not None: + variables = {k: home for k in _HOME_KEYS} + elif prefix is not None: + variables = {k: prefix for k in _HOME_KEYS} + else: + variables = {} + + paths = sysconfig.get_paths(scheme=scheme_name, vars=variables) + + # Logic here is very arbitrary, we're doing it for compatibility, don't ask. + # 1. Pip historically uses a special header path in virtual environments. + # 2. If the distribution name is not known, distutils uses 'UNKNOWN'. We + # only do the same when not running in a virtual environment because + # pip's historical header path logic (see point 1) did not do this. + if running_under_virtualenv(): + if user: + base = variables.get("userbase", sys.prefix) + else: + base = variables.get("base", sys.prefix) + python_xy = f"python{get_major_minor_version()}" + paths["include"] = os.path.join(base, "include", "site", python_xy) + elif not dist_name: + dist_name = "UNKNOWN" + + scheme = Scheme( + platlib=paths["platlib"], + purelib=paths["purelib"], + headers=os.path.join(paths["include"], dist_name), + scripts=paths["scripts"], + data=paths["data"], + ) + if root is not None: + for key in SCHEME_KEYS: + value = change_root(root, getattr(scheme, key)) + setattr(scheme, key, value) + return scheme + + +def get_bin_prefix() -> str: + # Forcing to use /usr/local/bin for standard macOS framework installs. + if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return sysconfig.get_paths()["scripts"] + + +def get_purelib() -> str: + return sysconfig.get_paths()["purelib"] + + +def get_platlib() -> str: + return sysconfig.get_paths()["platlib"] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py new file mode 100644 index 00000000..3f9f896e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py @@ -0,0 +1,81 @@ +import functools +import os +import site +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InstallationError +from pip._internal.utils import appdirs +from pip._internal.utils.virtualenv import running_under_virtualenv + +# Application Directories +USER_CACHE_DIR = appdirs.user_cache_dir("pip") + +# FIXME doesn't account for venv linked to global site-packages +site_packages: str = sysconfig.get_path("purelib") + + +def get_major_minor_version() -> str: + """ + Return the major-minor version of the current Python as a string, e.g. + "3.7" or "3.10". + """ + return "{}.{}".format(*sys.version_info) + + +def change_root(new_root: str, pathname: str) -> str: + """Return 'pathname' with 'new_root' prepended. + + If 'pathname' is relative, this is equivalent to os.path.join(new_root, pathname). + Otherwise, it requires making 'pathname' relative and then joining the + two, which is tricky on DOS/Windows and Mac OS. + + This is borrowed from Python's standard library's distutils module. + """ + if os.name == "posix": + if not os.path.isabs(pathname): + return os.path.join(new_root, pathname) + else: + return os.path.join(new_root, pathname[1:]) + + elif os.name == "nt": + (drive, path) = os.path.splitdrive(pathname) + if path[0] == "\\": + path = path[1:] + return os.path.join(new_root, path) + + else: + raise InstallationError( + f"Unknown platform: {os.name}\n" + "Can not change root path prefix on unknown platform." + ) + + +def get_src_prefix() -> str: + if running_under_virtualenv(): + src_prefix = os.path.join(sys.prefix, "src") + else: + # FIXME: keep src in cwd for now (it is not a temporary folder) + try: + src_prefix = os.path.join(os.getcwd(), "src") + except OSError: + # In case the current working directory has been renamed or deleted + sys.exit("The folder you are executing pip from can no longer be found.") + + # under macOS + virtualenv sys.prefix is not properly resolved + # it is something like /path/to/python/bin/.. + return os.path.abspath(src_prefix) + + +try: + # Use getusersitepackages if this is present, as it ensures that the + # value is initialised properly. + user_site: typing.Optional[str] = site.getusersitepackages() +except AttributeError: + user_site = site.USER_SITE + + +@functools.lru_cache(maxsize=None) +def is_osx_framework() -> bool: + return bool(sysconfig.get_config_var("PYTHONFRAMEWORK")) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/main.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/main.py new file mode 100644 index 00000000..33c6d24c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/main.py @@ -0,0 +1,12 @@ +from typing import List, Optional + + +def main(args: Optional[List[str]] = None) -> int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 00000000..aa232b6c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,128 @@ +import contextlib +import functools +import os +import sys +from typing import TYPE_CHECKING, List, Optional, Type, cast + +from pip._internal.utils.misc import strtobool + +from .base import BaseDistribution, BaseEnvironment, FilesystemWheel, MemoryWheel, Wheel + +if TYPE_CHECKING: + from typing import Literal, Protocol +else: + Protocol = object + +__all__ = [ + "BaseDistribution", + "BaseEnvironment", + "FilesystemWheel", + "MemoryWheel", + "Wheel", + "get_default_environment", + "get_environment", + "get_wheel_distribution", + "select_backend", +] + + +def _should_use_importlib_metadata() -> bool: + """Whether to use the ``importlib.metadata`` or ``pkg_resources`` backend. + + By default, pip uses ``importlib.metadata`` on Python 3.11+, and + ``pkg_resourcess`` otherwise. This can be overridden by a couple of ways: + + * If environment variable ``_PIP_USE_IMPORTLIB_METADATA`` is set, it + dictates whether ``importlib.metadata`` is used, regardless of Python + version. + * On Python 3.11+, Python distributors can patch ``importlib.metadata`` + to add a global constant ``_PIP_USE_IMPORTLIB_METADATA = False``. This + makes pip use ``pkg_resources`` (unless the user set the aforementioned + environment variable to *True*). + """ + with contextlib.suppress(KeyError, ValueError): + return bool(strtobool(os.environ["_PIP_USE_IMPORTLIB_METADATA"])) + if sys.version_info < (3, 11): + return False + import importlib.metadata + + return bool(getattr(importlib.metadata, "_PIP_USE_IMPORTLIB_METADATA", True)) + + +class Backend(Protocol): + NAME: 'Literal["importlib", "pkg_resources"]' + Distribution: Type[BaseDistribution] + Environment: Type[BaseEnvironment] + + +@functools.lru_cache(maxsize=None) +def select_backend() -> Backend: + if _should_use_importlib_metadata(): + from . import importlib + + return cast(Backend, importlib) + from . import pkg_resources + + return cast(Backend, pkg_resources) + + +def get_default_environment() -> BaseEnvironment: + """Get the default representation for the current environment. + + This returns an Environment instance from the chosen backend. The default + Environment instance should be built from ``sys.path`` and may use caching + to share instance state accorss calls. + """ + return select_backend().Environment.default() + + +def get_environment(paths: Optional[List[str]]) -> BaseEnvironment: + """Get a representation of the environment specified by ``paths``. + + This returns an Environment instance from the chosen backend based on the + given import paths. The backend must build a fresh instance representing + the state of installed distributions when this function is called. + """ + return select_backend().Environment.from_paths(paths) + + +def get_directory_distribution(directory: str) -> BaseDistribution: + """Get the distribution metadata representation in the specified directory. + + This returns a Distribution instance from the chosen backend based on + the given on-disk ``.dist-info`` directory. + """ + return select_backend().Distribution.from_directory(directory) + + +def get_wheel_distribution(wheel: Wheel, canonical_name: str) -> BaseDistribution: + """Get the representation of the specified wheel's distribution metadata. + + This returns a Distribution instance from the chosen backend based on + the given wheel's ``.dist-info`` directory. + + :param canonical_name: Normalized project name of the given wheel. + """ + return select_backend().Distribution.from_wheel(wheel, canonical_name) + + +def get_metadata_distribution( + metadata_contents: bytes, + filename: str, + canonical_name: str, +) -> BaseDistribution: + """Get the dist representation of the specified METADATA file contents. + + This returns a Distribution instance from the chosen backend sourced from the data + in `metadata_contents`. + + :param metadata_contents: Contents of a METADATA file within a dist, or one served + via PEP 658. + :param filename: Filename for the dist this metadata represents. + :param canonical_name: Normalized project name of the given dist. + """ + return select_backend().Distribution.from_metadata_file_contents( + metadata_contents, + filename, + canonical_name, + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17f6db29cd0ccb9f835525c0af4d4a2482672198 GIT binary patch literal 5933 zcmcgwOKcm*8J;DVTt4)cEXlTPPns}*-7uDr`- zXO~iFIDii+&_fRek|Hh;AZgJ<0{4((uDu1wMJy9YST{(Dx+r{OBLe|)DEj}iyA&nM zDGH+tXVp^ccb70bu0cs_0^dBsZP6IL>xlyFbfOj+rC8v3#xGuy28e7n_=@31=aomN-A z%j(W|ON7OE64u7yoSuA-)tm2?NGZbl^1UlWSAH+$59kTjzZ}t%Z_4?B2suym)SE<4 zv)(&VpW6IjgfMA!Jbc7Xt4n`uy8|!50;deZDeZ5{cl-&GKLm3fFxLSmAJ#jW!s2Y` zAbiDt@lDpd;M)tlF?@$EpJ=Z(xPFs?L_Ris`DX^)~#_I?<04 z>v*xMx6;|+Fq0KrbxA8+XC>W>bLLifsQ{-pivm4_bo+Zk_}lGHsDEx~6eMTY`0qi|YLBy!z_Z z8FlvZ{FPT0F3nD0a77oG$%Dwy^NPQgZaxjsrc zThX`9>6N|Q2zb-f1DpHLE^BU~_z0c`M+20at^+?-OnXT) zfh{G+)k^MnKbZcIp3_W+EiU>@4i2-l>+s+JOgLe$0E|>h;(aJM@Mw-K6H=rt+nk|Q zfmbpgS-L+CK<~)~USTIQJ~zC>-+{|qCUPJ3{5~q?IgU!ZkZJc)@JN@vjxy^doJzS2 zLh5*lmsoX%bDMjqA8TfX`F$C!B1doKMQq1Y0^#tYVEMeZ02tLME!$qt!b8>)E z4(JBk4E`V&QkPR<&Tv&VTdsOXRi|iIOkD-6)F#bpxRz&t_#^P|I8fap4~9spZ! zBl@R~*yMmxfMK&B?pU^;hw2@|2nH4T$g2=&u&5q61G7wKF|@=mjt1j+FqUy#jb-AV zGUYpx8z%xs_S54{RvaIt$9Kv2@t=9}+~nmMuWgs_Owa6ivbl`nB~-PfSxi;El&V?+ zN$9t!>dz~h8GPwfRjpLAL3%(Z998A$e0Ch?hh!VZgpXkLbXYwD9p@NSzaU$wvAR6A z)ziN*FkI^ysmmi<-3NYc*SeqjOn!>vLa`0JzhY^xJH`#Ri+$+ykcHbNsNNwvF7ghH zvG9Iy6%kXiB5$A*M3*Xx8%B2ICJ9~HRbV>AXp$9sLwdwoX=iOlp5y3K`BP8oaYG5m#m%on*M_4M$DJSR)T+(GzetL`M?|o zei2*(nkLYCAp{hRq_CES3g>7FS{zm2Q-#Cx10Dx_ByEv9Y6!z#V04+=mVZvshQpg~ z8QdiVmVWFd4EnyieUpG5b*W;Qu7BF%BACN0xSJxlLh#Mh(yAgvC}@SEQCbnlf$4UN zXwI6HfTwX8)d~f0Sm?1#)A6l(CMv+Twb1T^u}F!Ci=NPRaBv6_K@X9y~=K^>&+ zP(6KkGd)~O4{xS(wREnY9@~(|#6~ZMG&+T5zz3TUN&)8u=sXUbAn(Ds0?^?AP;D=a z;N8&ywxCCyGAkI%2GcP%0l$evf^YSMlE(oRz=hy~Lf`~f3KUih@D0>AVN_g%E*#MG z%^bBVjw_(WpkNuquegI(Qy!a;!bTrNc$9$EG~v2tAcCd~10cK}0-fbbsetATqa{R} z>HEN)Litn$Wf_V806_7*q_4;r?sBZI;D@77Jq-GIEj|9xv-R`~8}bW2>`C3=kQ6|6 z^8bMT#wSfhZpln&=r{MugCW3ak%1<$`w9SUbuByCJVL9R0^qA4;N=T|T{;CQT?b*y zB3h>~f&txaxf)~iP!CT5pS=zNOmhW*^CDt^GVfbi?-1r>%>}#iGCm2*uHpIsv$jxC zM{4Pj&Gd7%^m894>*=Wtc`8s+k($iasgIkHNtwjH}BDcjGM2^LU$Y+l8L$Jw9 z3jc^19mg1+KY^2Rw^{~w%aIO_29KlM``G{nzuq8Za@l4kmxW*JAd0dKr{HI;GDZM9 zdBdI`+;}G*hQB6xaeE1^fTuv>VVaO|prIDAwurC2q{%BP#&gV%%`ozUG}z_B9Si#| z)ZL3MRpECJ!H_*6+qa1`ezx->Ux3}9W5oFvRE?-4Nq0&2UD9=zB=3^cm*mXnzUv(b1b>V9{m5$s}8i)F%SELW*ZG!ECY*ZTlW$^)lrqM@`zulO8d0R|0`g^7L h*1%9B3hh@N-HjNujW{_l*if*SAo2bON$3d~_%}e*DH{L) literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5584f122bcb44edd04f247bc8d564a6b4e335225 GIT binary patch literal 2926 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 J0WXGk{vU3Hb8r9v literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..75d22fea25e7e8602e3279c7db3dc169c0aa21ac GIT binary patch literal 15841 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 HD2o0EL+R1u literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py new file mode 100644 index 00000000..27362fc7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py @@ -0,0 +1,84 @@ +# Extracted from https://github.com/pfmoore/pkg_metadata + +from email.header import Header, decode_header, make_header +from email.message import Message +from typing import Any, Dict, List, Union + +METADATA_FIELDS = [ + # Name, Multiple-Use + ("Metadata-Version", False), + ("Name", False), + ("Version", False), + ("Dynamic", True), + ("Platform", True), + ("Supported-Platform", True), + ("Summary", False), + ("Description", False), + ("Description-Content-Type", False), + ("Keywords", False), + ("Home-page", False), + ("Download-URL", False), + ("Author", False), + ("Author-email", False), + ("Maintainer", False), + ("Maintainer-email", False), + ("License", False), + ("Classifier", True), + ("Requires-Dist", True), + ("Requires-Python", False), + ("Requires-External", True), + ("Project-URL", True), + ("Provides-Extra", True), + ("Provides-Dist", True), + ("Obsoletes-Dist", True), +] + + +def json_name(field: str) -> str: + return field.lower().replace("-", "_") + + +def msg_to_json(msg: Message) -> Dict[str, Any]: + """Convert a Message object into a JSON-compatible dictionary.""" + + def sanitise_header(h: Union[Header, str]) -> str: + if isinstance(h, Header): + chunks = [] + for bytes, encoding in decode_header(h): + if encoding == "unknown-8bit": + try: + # See if UTF-8 works + bytes.decode("utf-8") + encoding = "utf-8" + except UnicodeDecodeError: + # If not, latin1 at least won't fail + encoding = "latin1" + chunks.append((bytes, encoding)) + return str(make_header(chunks)) + return str(h) + + result = {} + for field, multi in METADATA_FIELDS: + if field not in msg: + continue + key = json_name(field) + if multi: + value: Union[str, List[str]] = [ + sanitise_header(v) for v in msg.get_all(field) # type: ignore + ] + else: + value = sanitise_header(msg.get(field)) # type: ignore + if key == "keywords": + # Accept both comma-separated and space-separated + # forms, for better compatibility with old data. + if "," in value: + value = [v.strip() for v in value.split(",")] + else: + value = value.split() + result[key] = value + + payload = msg.get_payload() + if payload: + result["description"] = payload + + return result diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 00000000..92491244 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py @@ -0,0 +1,702 @@ +import csv +import email.message +import functools +import json +import logging +import pathlib +import re +import zipfile +from typing import ( + IO, + TYPE_CHECKING, + Any, + Collection, + Container, + Dict, + Iterable, + Iterator, + List, + NamedTuple, + Optional, + Tuple, + Union, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.exceptions import NoneMetadataError +from pip._internal.locations import site_packages, user_site +from pip._internal.models.direct_url import ( + DIRECT_URL_METADATA_NAME, + DirectUrl, + DirectUrlValidationError, +) +from pip._internal.utils.compat import stdlib_pkgs # TODO: Move definition here. +from pip._internal.utils.egg_link import egg_link_path_from_sys_path +from pip._internal.utils.misc import is_local, normalize_path +from pip._internal.utils.urls import url_to_path + +from ._json import msg_to_json + +if TYPE_CHECKING: + from typing import Protocol +else: + Protocol = object + +DistributionVersion = Union[LegacyVersion, Version] + +InfoPath = Union[str, pathlib.PurePath] + +logger = logging.getLogger(__name__) + + +class BaseEntryPoint(Protocol): + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def value(self) -> str: + raise NotImplementedError() + + @property + def group(self) -> str: + raise NotImplementedError() + + +def _convert_installed_files_path( + entry: Tuple[str, ...], + info: Tuple[str, ...], +) -> str: + """Convert a legacy installed-files.txt path into modern RECORD path. + + The legacy format stores paths relative to the info directory, while the + modern format stores paths relative to the package root, e.g. the + site-packages directory. + + :param entry: Path parts of the installed-files.txt entry. + :param info: Path parts of the egg-info directory relative to package root. + :returns: The converted entry. + + For best compatibility with symlinks, this does not use ``abspath()`` or + ``Path.resolve()``, but tries to work with path parts: + + 1. While ``entry`` starts with ``..``, remove the equal amounts of parts + from ``info``; if ``info`` is empty, start appending ``..`` instead. + 2. Join the two directly. + """ + while entry and entry[0] == "..": + if not info or info[-1] == "..": + info += ("..",) + else: + info = info[:-1] + entry = entry[1:] + return str(pathlib.Path(*info, *entry)) + + +class RequiresEntry(NamedTuple): + requirement: str + extra: str + marker: str + + +class BaseDistribution(Protocol): + @classmethod + def from_directory(cls, directory: str) -> "BaseDistribution": + """Load the distribution from a metadata directory. + + :param directory: Path to a metadata directory, e.g. ``.dist-info``. + """ + raise NotImplementedError() + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> "BaseDistribution": + """Load the distribution from the contents of a METADATA file. + + This is used to implement PEP 658 by generating a "shallow" dist object that can + be used for resolution without downloading or building the actual dist yet. + + :param metadata_contents: The contents of a METADATA file. + :param filename: File name for the dist with this metadata. + :param project_name: Name of the project this dist represents. + """ + raise NotImplementedError() + + @classmethod + def from_wheel(cls, wheel: "Wheel", name: str) -> "BaseDistribution": + """Load the distribution from a given wheel. + + :param wheel: A concrete wheel definition. + :param name: File name of the wheel. + + :raises InvalidWheel: Whenever loading of the wheel causes a + :py:exc:`zipfile.BadZipFile` exception to be thrown. + :raises UnsupportedWheel: If the wheel is a valid zip, but malformed + internally. + """ + raise NotImplementedError() + + def __repr__(self) -> str: + return f"{self.raw_name} {self.version} ({self.location})" + + def __str__(self) -> str: + return f"{self.raw_name} {self.version}" + + @property + def location(self) -> Optional[str]: + """Where the distribution is loaded from. + + A string value is not necessarily a filesystem path, since distributions + can be loaded from other sources, e.g. arbitrary zip archives. ``None`` + means the distribution is created in-memory. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and files in the distribution. + """ + raise NotImplementedError() + + @property + def editable_project_location(self) -> Optional[str]: + """The project location for editable distributions. + + This is the directory where pyproject.toml or setup.py is located. + None if the distribution is not installed in editable mode. + """ + # TODO: this property is relatively costly to compute, memoize it ? + direct_url = self.direct_url + if direct_url: + if direct_url.is_local_editable(): + return url_to_path(direct_url.url) + else: + # Search for an .egg-link file by walking sys.path, as it was + # done before by dist_is_editable(). + egg_link_path = egg_link_path_from_sys_path(self.raw_name) + if egg_link_path: + # TODO: get project location from second line of egg_link file + # (https://github.com/pypa/pip/issues/10243) + return self.location + return None + + @property + def installed_location(self) -> Optional[str]: + """The distribution's "installed" location. + + This should generally be a ``site-packages`` directory. This is + usually ``dist.location``, except for legacy develop-installed packages, + where ``dist.location`` is the source code location, and this is where + the ``.egg-link`` file is. + + The returned location is normalized (in particular, with symlinks removed). + """ + raise NotImplementedError() + + @property + def info_location(self) -> Optional[str]: + """Location of the .[egg|dist]-info directory or file. + + Similarly to ``location``, a string value is not necessarily a + filesystem path. ``None`` means the distribution is created in-memory. + + For a modern .dist-info installation on disk, this should be something + like ``{location}/{raw_name}-{version}.dist-info``. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and other files in the distribution. + """ + raise NotImplementedError() + + @property + def installed_by_distutils(self) -> bool: + """Whether this distribution is installed with legacy distutils format. + + A distribution installed with "raw" distutils not patched by setuptools + uses one single file at ``info_location`` to store metadata. We need to + treat this specially on uninstallation. + """ + info_location = self.info_location + if not info_location: + return False + return pathlib.Path(info_location).is_file() + + @property + def installed_as_egg(self) -> bool: + """Whether this distribution is installed as an egg. + + This usually indicates the distribution was installed by (older versions + of) easy_install. + """ + location = self.location + if not location: + return False + return location.endswith(".egg") + + @property + def installed_with_setuptools_egg_info(self) -> bool: + """Whether this distribution is installed with the ``.egg-info`` format. + + This usually indicates the distribution was installed with setuptools + with an old pip version or with ``single-version-externally-managed``. + + Note that this ensure the metadata store is a directory. distutils can + also installs an ``.egg-info``, but as a file, not a directory. This + property is *False* for that case. Also see ``installed_by_distutils``. + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".egg-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def installed_with_dist_info(self) -> bool: + """Whether this distribution is installed with the "modern format". + + This indicates a "modern" installation, e.g. storing metadata in the + ``.dist-info`` directory. This applies to installations made by + setuptools (but through pip, not directly), or anything using the + standardized build backend interface (PEP 517). + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".dist-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def canonical_name(self) -> NormalizedName: + raise NotImplementedError() + + @property + def version(self) -> DistributionVersion: + raise NotImplementedError() + + @property + def setuptools_filename(self) -> str: + """Convert a project name to its setuptools-compatible filename. + + This is a copy of ``pkg_resources.to_filename()`` for compatibility. + """ + return self.raw_name.replace("-", "_") + + @property + def direct_url(self) -> Optional[DirectUrl]: + """Obtain a DirectUrl from this distribution. + + Returns None if the distribution has no `direct_url.json` metadata, + or if `direct_url.json` is invalid. + """ + try: + content = self.read_text(DIRECT_URL_METADATA_NAME) + except FileNotFoundError: + return None + try: + return DirectUrl.from_json(content) + except ( + UnicodeDecodeError, + json.JSONDecodeError, + DirectUrlValidationError, + ) as e: + logger.warning( + "Error parsing %s for %s: %s", + DIRECT_URL_METADATA_NAME, + self.canonical_name, + e, + ) + return None + + @property + def installer(self) -> str: + try: + installer_text = self.read_text("INSTALLER") + except (OSError, ValueError, NoneMetadataError): + return "" # Fail silently if the installer file cannot be read. + for line in installer_text.splitlines(): + cleaned_line = line.strip() + if cleaned_line: + return cleaned_line + return "" + + @property + def requested(self) -> bool: + return self.is_file("REQUESTED") + + @property + def editable(self) -> bool: + return bool(self.editable_project_location) + + @property + def local(self) -> bool: + """If distribution is installed in the current virtual environment. + + Always True if we're not in a virtualenv. + """ + if self.installed_location is None: + return False + return is_local(self.installed_location) + + @property + def in_usersite(self) -> bool: + if self.installed_location is None or user_site is None: + return False + return self.installed_location.startswith(normalize_path(user_site)) + + @property + def in_site_packages(self) -> bool: + if self.installed_location is None or site_packages is None: + return False + return self.installed_location.startswith(normalize_path(site_packages)) + + def is_file(self, path: InfoPath) -> bool: + """Check whether an entry in the info directory is a file.""" + raise NotImplementedError() + + def iter_distutils_script_names(self) -> Iterator[str]: + """Find distutils 'scripts' entries metadata. + + If 'scripts' is supplied in ``setup.py``, distutils records those in the + installed distribution's ``scripts`` directory, a file for each script. + """ + raise NotImplementedError() + + def read_text(self, path: InfoPath) -> str: + """Read a file in the info directory. + + :raise FileNotFoundError: If ``path`` does not exist in the directory. + :raise NoneMetadataError: If ``path`` exists in the info directory, but + cannot be read. + """ + raise NotImplementedError() + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + raise NotImplementedError() + + def _metadata_impl(self) -> email.message.Message: + raise NotImplementedError() + + @functools.lru_cache(maxsize=1) + def _metadata_cached(self) -> email.message.Message: + # When we drop python 3.7 support, move this to the metadata property and use + # functools.cached_property instead of lru_cache. + metadata = self._metadata_impl() + self._add_egg_info_requires(metadata) + return metadata + + @property + def metadata(self) -> email.message.Message: + """Metadata of distribution parsed from e.g. METADATA or PKG-INFO. + + This should return an empty message if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + return self._metadata_cached() + + @property + def metadata_dict(self) -> Dict[str, Any]: + """PEP 566 compliant JSON-serializable representation of METADATA or PKG-INFO. + + This should return an empty dict if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + return msg_to_json(self.metadata) + + @property + def metadata_version(self) -> Optional[str]: + """Value of "Metadata-Version:" in distribution metadata, if available.""" + return self.metadata.get("Metadata-Version") + + @property + def raw_name(self) -> str: + """Value of "Name:" in distribution metadata.""" + # The metadata should NEVER be missing the Name: key, but if it somehow + # does, fall back to the known canonical name. + return self.metadata.get("Name", self.canonical_name) + + @property + def requires_python(self) -> SpecifierSet: + """Value of "Requires-Python:" in distribution metadata. + + If the key does not exist or contains an invalid value, an empty + SpecifierSet should be returned. + """ + value = self.metadata.get("Requires-Python") + if value is None: + return SpecifierSet() + try: + # Convert to str to satisfy the type checker; this can be a Header object. + spec = SpecifierSet(str(value)) + except InvalidSpecifier as e: + message = "Package %r has an invalid Requires-Python: %s" + logger.warning(message, self.raw_name, e) + return SpecifierSet() + return spec + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + """Dependencies of this distribution. + + For modern .dist-info distributions, this is the collection of + "Requires-Dist:" entries in distribution metadata. + """ + raise NotImplementedError() + + def iter_provided_extras(self) -> Iterable[str]: + """Extras provided by this distribution. + + For modern .dist-info distributions, this is the collection of + "Provides-Extra:" entries in distribution metadata. + + The return value of this function is not particularly useful other than + display purposes due to backward compatibility issues and the extra + names being poorly normalized prior to PEP 685. If you want to perform + logic operations on extras, use :func:`is_extra_provided` instead. + """ + raise NotImplementedError() + + def is_extra_provided(self, extra: str) -> bool: + """Check whether an extra is provided by this distribution. + + This is needed mostly for compatibility issues with pkg_resources not + following the extra normalization rules defined in PEP 685. + """ + raise NotImplementedError() + + def _iter_declared_entries_from_record(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("RECORD") + except FileNotFoundError: + return None + # This extra Path-str cast normalizes entries. + return (str(pathlib.Path(row[0])) for row in csv.reader(text.splitlines())) + + def _iter_declared_entries_from_legacy(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("installed-files.txt") + except FileNotFoundError: + return None + paths = (p for p in text.splitlines(keepends=False) if p) + root = self.location + info = self.info_location + if root is None or info is None: + return paths + try: + info_rel = pathlib.Path(info).relative_to(root) + except ValueError: # info is not relative to root. + return paths + if not info_rel.parts: # info *is* root. + return paths + return ( + _convert_installed_files_path(pathlib.Path(p).parts, info_rel.parts) + for p in paths + ) + + def iter_declared_entries(self) -> Optional[Iterator[str]]: + """Iterate through file entries declared in this distribution. + + For modern .dist-info distributions, this is the files listed in the + ``RECORD`` metadata file. For legacy setuptools distributions, this + comes from ``installed-files.txt``, with entries normalized to be + compatible with the format used by ``RECORD``. + + :return: An iterator for listed entries, or None if the distribution + contains neither ``RECORD`` nor ``installed-files.txt``. + """ + return ( + self._iter_declared_entries_from_record() + or self._iter_declared_entries_from_legacy() + ) + + def _iter_requires_txt_entries(self) -> Iterator[RequiresEntry]: + """Parse a ``requires.txt`` in an egg-info directory. + + This is an INI-ish format where an egg-info stores dependencies. A + section name describes extra other environment markers, while each entry + is an arbitrary string (not a key-value pair) representing a dependency + as a requirement string (no markers). + + There is a construct in ``importlib.metadata`` called ``Sectioned`` that + does mostly the same, but the format is currently considered private. + """ + try: + content = self.read_text("requires.txt") + except FileNotFoundError: + return + extra = marker = "" # Section-less entries don't have markers. + for line in content.splitlines(): + line = line.strip() + if not line or line.startswith("#"): # Comment; ignored. + continue + if line.startswith("[") and line.endswith("]"): # A section header. + extra, _, marker = line.strip("[]").partition(":") + continue + yield RequiresEntry(requirement=line, extra=extra, marker=marker) + + def _iter_egg_info_extras(self) -> Iterable[str]: + """Get extras from the egg-info directory.""" + known_extras = {""} + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra in known_extras: + continue + known_extras.add(extra) + yield extra + + def _iter_egg_info_dependencies(self) -> Iterable[str]: + """Get distribution dependencies from the egg-info directory. + + To ease parsing, this converts a legacy dependency entry into a PEP 508 + requirement string. Like ``_iter_requires_txt_entries()``, there is code + in ``importlib.metadata`` that does mostly the same, but not do exactly + what we need. + + Namely, ``importlib.metadata`` does not normalize the extra name before + putting it into the requirement string, which causes marker comparison + to fail because the dist-info format do normalize. This is consistent in + all currently available PEP 517 backends, although not standardized. + """ + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra and entry.marker: + marker = f'({entry.marker}) and extra == "{extra}"' + elif extra: + marker = f'extra == "{extra}"' + elif entry.marker: + marker = entry.marker + else: + marker = "" + if marker: + yield f"{entry.requirement} ; {marker}" + else: + yield entry.requirement + + def _add_egg_info_requires(self, metadata: email.message.Message) -> None: + """Add egg-info requires.txt information to the metadata.""" + if not metadata.get_all("Requires-Dist"): + for dep in self._iter_egg_info_dependencies(): + metadata["Requires-Dist"] = dep + if not metadata.get_all("Provides-Extra"): + for extra in self._iter_egg_info_extras(): + metadata["Provides-Extra"] = extra + + +class BaseEnvironment: + """An environment containing distributions to introspect.""" + + @classmethod + def default(cls) -> "BaseEnvironment": + raise NotImplementedError() + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> "BaseEnvironment": + raise NotImplementedError() + + def get_distribution(self, name: str) -> Optional["BaseDistribution"]: + """Given a requirement name, return the installed distributions. + + The name may not be normalized. The implementation must canonicalize + it for lookup. + """ + raise NotImplementedError() + + def _iter_distributions(self) -> Iterator["BaseDistribution"]: + """Iterate through installed distributions. + + This function should be implemented by subclass, but never called + directly. Use the public ``iter_distribution()`` instead, which + implements additional logic to make sure the distributions are valid. + """ + raise NotImplementedError() + + def iter_all_distributions(self) -> Iterator[BaseDistribution]: + """Iterate through all installed distributions without any filtering.""" + for dist in self._iter_distributions(): + # Make sure the distribution actually comes from a valid Python + # packaging distribution. Pip's AdjacentTempDirectory leaves folders + # e.g. ``~atplotlib.dist-info`` if cleanup was interrupted. The + # valid project name pattern is taken from PEP 508. + project_name_valid = re.match( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", + dist.canonical_name, + flags=re.IGNORECASE, + ) + if not project_name_valid: + logger.warning( + "Ignoring invalid distribution %s (%s)", + dist.canonical_name, + dist.location, + ) + continue + yield dist + + def iter_installed_distributions( + self, + local_only: bool = True, + skip: Container[str] = stdlib_pkgs, + include_editables: bool = True, + editables_only: bool = False, + user_only: bool = False, + ) -> Iterator[BaseDistribution]: + """Return a list of installed distributions. + + This is based on ``iter_all_distributions()`` with additional filtering + options. Note that ``iter_installed_distributions()`` without arguments + is *not* equal to ``iter_all_distributions()``, since some of the + configurations exclude packages by default. + + :param local_only: If True (default), only return installations + local to the current virtualenv, if in a virtualenv. + :param skip: An iterable of canonicalized project names to ignore; + defaults to ``stdlib_pkgs``. + :param include_editables: If False, don't report editables. + :param editables_only: If True, only report editables. + :param user_only: If True, only report installations in the user + site directory. + """ + it = self.iter_all_distributions() + if local_only: + it = (d for d in it if d.local) + if not include_editables: + it = (d for d in it if not d.editable) + if editables_only: + it = (d for d in it if d.editable) + if user_only: + it = (d for d in it if d.in_usersite) + return (d for d in it if d.canonical_name not in skip) + + +class Wheel(Protocol): + location: str + + def as_zipfile(self) -> zipfile.ZipFile: + raise NotImplementedError() + + +class FilesystemWheel(Wheel): + def __init__(self, location: str) -> None: + self.location = location + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.location, allowZip64=True) + + +class MemoryWheel(Wheel): + def __init__(self, location: str, stream: IO[bytes]) -> None: + self.location = location + self.stream = stream + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.stream, allowZip64=True) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py new file mode 100644 index 00000000..a779138d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py @@ -0,0 +1,6 @@ +from ._dists import Distribution +from ._envs import Environment + +__all__ = ["NAME", "Distribution", "Environment"] + +NAME = "importlib" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff00a588b4bde3e951cb4507921e0eb2456113b4 GIT binary patch literal 409 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 ak>DNRMcY=^cdxFE-+H None: + self.dist = dist + self.reason = reason + + def __str__(self) -> str: + return f"Bad metadata in {self.dist} ({self.reason})" + + +class BasePath(Protocol): + """A protocol that various path objects conform. + + This exists because importlib.metadata uses both ``pathlib.Path`` and + ``zipfile.Path``, and we need a common base for type hints (Union does not + work well since ``zipfile.Path`` is too new for our linter setup). + + This does not mean to be exhaustive, but only contains things that present + in both classes *that we need*. + """ + + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def parent(self) -> "BasePath": + raise NotImplementedError() + + +def get_info_location(d: importlib.metadata.Distribution) -> Optional[BasePath]: + """Find the path to the distribution's metadata directory. + + HACK: This relies on importlib.metadata's private ``_path`` attribute. Not + all distributions exist on disk, so importlib.metadata is correct to not + expose the attribute as public. But pip's code base is old and not as clean, + so we do this to avoid having to rewrite too many things. Hopefully we can + eliminate this some day. + """ + return getattr(d, "_path", None) + + +def get_dist_name(dist: importlib.metadata.Distribution) -> str: + """Get the distribution's project name. + + The ``name`` attribute is only available in Python 3.10 or later. We are + targeting exactly that, but Mypy does not know this. + """ + name = cast(Any, dist).name + if not isinstance(name, str): + raise BadMetadata(dist, reason="invalid metadata entry 'name'") + return name diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py new file mode 100644 index 00000000..26370fac --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py @@ -0,0 +1,227 @@ +import email.message +import importlib.metadata +import os +import pathlib +import zipfile +from typing import ( + Collection, + Dict, + Iterable, + Iterator, + Mapping, + Optional, + Sequence, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, UnsupportedWheel +from pip._internal.metadata.base import ( + BaseDistribution, + BaseEntryPoint, + DistributionVersion, + InfoPath, + Wheel, +) +from pip._internal.utils.misc import normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from ._compat import BasePath, get_dist_name + + +class WheelDistribution(importlib.metadata.Distribution): + """An ``importlib.metadata.Distribution`` read from a wheel. + + Although ``importlib.metadata.PathDistribution`` accepts ``zipfile.Path``, + its implementation is too "lazy" for pip's needs (we can't keep the ZipFile + handle open for the entire lifetime of the distribution object). + + This implementation eagerly reads the entire metadata directory into the + memory instead, and operates from that. + """ + + def __init__( + self, + files: Mapping[pathlib.PurePosixPath, bytes], + info_location: pathlib.PurePosixPath, + ) -> None: + self._files = files + self.info_location = info_location + + @classmethod + def from_zipfile( + cls, + zf: zipfile.ZipFile, + name: str, + location: str, + ) -> "WheelDistribution": + info_dir, _ = parse_wheel(zf, name) + paths = ( + (name, pathlib.PurePosixPath(name.split("/", 1)[-1])) + for name in zf.namelist() + if name.startswith(f"{info_dir}/") + ) + files = { + relpath: read_wheel_metadata_file(zf, fullpath) + for fullpath, relpath in paths + } + info_location = pathlib.PurePosixPath(location, info_dir) + return cls(files, info_location) + + def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + # Only allow iterating through the metadata directory. + if pathlib.PurePosixPath(str(path)) in self._files: + return iter(self._files) + raise FileNotFoundError(path) + + def read_text(self, filename: str) -> Optional[str]: + try: + data = self._files[pathlib.PurePosixPath(filename)] + except KeyError: + return None + try: + text = data.decode("utf-8") + except UnicodeDecodeError as e: + wheel = self.info_location.parent + error = f"Error decoding metadata for {wheel}: {e} in {filename} file" + raise UnsupportedWheel(error) + return text + + +class Distribution(BaseDistribution): + def __init__( + self, + dist: importlib.metadata.Distribution, + info_location: Optional[BasePath], + installed_location: Optional[BasePath], + ) -> None: + self._dist = dist + self._info_location = info_location + self._installed_location = installed_location + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + info_location = pathlib.Path(directory) + dist = importlib.metadata.Distribution.at(info_location) + return cls(dist, info_location, info_location.parent) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + # Generate temp dir to contain the metadata file, and write the file contents. + temp_dir = pathlib.Path( + TempDirectory(kind="metadata", globally_managed=True).path + ) + metadata_path = temp_dir / "METADATA" + metadata_path.write_bytes(metadata_contents) + # Construct dist pointing to the newly created directory. + dist = importlib.metadata.Distribution.at(metadata_path.parent) + return cls(dist, metadata_path.parent, None) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + dist = WheelDistribution.from_zipfile(zf, name, wheel.location) + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + return cls(dist, dist.info_location, pathlib.PurePosixPath(wheel.location)) + + @property + def location(self) -> Optional[str]: + if self._info_location is None: + return None + return str(self._info_location.parent) + + @property + def info_location(self) -> Optional[str]: + if self._info_location is None: + return None + return str(self._info_location) + + @property + def installed_location(self) -> Optional[str]: + if self._installed_location is None: + return None + return normalize_path(str(self._installed_location)) + + def _get_dist_name_from_location(self) -> Optional[str]: + """Try to get the name from the metadata directory name. + + This is much faster than reading metadata. + """ + if self._info_location is None: + return None + stem, suffix = os.path.splitext(self._info_location.name) + if suffix not in (".dist-info", ".egg-info"): + return None + return stem.split("-", 1)[0] + + @property + def canonical_name(self) -> NormalizedName: + name = self._get_dist_name_from_location() or get_dist_name(self._dist) + return canonicalize_name(name) + + @property + def version(self) -> DistributionVersion: + return parse_version(self._dist.version) + + def is_file(self, path: InfoPath) -> bool: + return self._dist.read_text(str(path)) is not None + + def iter_distutils_script_names(self) -> Iterator[str]: + # A distutils installation is always "flat" (not in e.g. egg form), so + # if this distribution's info location is NOT a pathlib.Path (but e.g. + # zipfile.Path), it can never contain any distutils scripts. + if not isinstance(self._info_location, pathlib.Path): + return + for child in self._info_location.joinpath("scripts").iterdir(): + yield child.name + + def read_text(self, path: InfoPath) -> str: + content = self._dist.read_text(str(path)) + if content is None: + raise FileNotFoundError(path) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + # importlib.metadata's EntryPoint structure sasitfies BaseEntryPoint. + return self._dist.entry_points + + def _metadata_impl(self) -> email.message.Message: + # From Python 3.10+, importlib.metadata declares PackageMetadata as the + # return type. This protocol is unfortunately a disaster now and misses + # a ton of fields that we need, including get() and get_payload(). We + # rely on the implementation that the object is actually a Message now, + # until upstream can improve the protocol. (python/cpython#94952) + return cast(email.message.Message, self._dist.metadata) + + def iter_provided_extras(self) -> Iterable[str]: + return self.metadata.get_all("Provides-Extra", []) + + def is_extra_provided(self, extra: str) -> bool: + return any( + canonicalize_name(provided_extra) == canonicalize_name(extra) + for provided_extra in self.metadata.get_all("Provides-Extra", []) + ) + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + contexts: Sequence[Dict[str, str]] = [{"extra": e} for e in extras] + for req_string in self.metadata.get_all("Requires-Dist", []): + req = Requirement(req_string) + if not req.marker: + yield req + elif not extras and req.marker.evaluate({"extra": ""}): + yield req + elif any(req.marker.evaluate(context) for context in contexts): + yield req diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py new file mode 100644 index 00000000..048dc55d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py @@ -0,0 +1,189 @@ +import functools +import importlib.metadata +import logging +import os +import pathlib +import sys +import zipfile +import zipimport +from typing import Iterator, List, Optional, Sequence, Set, Tuple + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.metadata.base import BaseDistribution, BaseEnvironment +from pip._internal.models.wheel import Wheel +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION + +from ._compat import BadMetadata, BasePath, get_dist_name, get_info_location +from ._dists import Distribution + +logger = logging.getLogger(__name__) + + +def _looks_like_wheel(location: str) -> bool: + if not location.endswith(WHEEL_EXTENSION): + return False + if not os.path.isfile(location): + return False + if not Wheel.wheel_file_re.match(os.path.basename(location)): + return False + return zipfile.is_zipfile(location) + + +class _DistributionFinder: + """Finder to locate distributions. + + The main purpose of this class is to memoize found distributions' names, so + only one distribution is returned for each package name. At lot of pip code + assumes this (because it is setuptools's behavior), and not doing the same + can potentially cause a distribution in lower precedence path to override a + higher precedence one if the caller is not careful. + + Eventually we probably want to make it possible to see lower precedence + installations as well. It's useful feature, after all. + """ + + FoundResult = Tuple[importlib.metadata.Distribution, Optional[BasePath]] + + def __init__(self) -> None: + self._found_names: Set[NormalizedName] = set() + + def _find_impl(self, location: str) -> Iterator[FoundResult]: + """Find distributions in a location.""" + # Skip looking inside a wheel. Since a package inside a wheel is not + # always valid (due to .data directories etc.), its .dist-info entry + # should not be considered an installed distribution. + if _looks_like_wheel(location): + return + # To know exactly where we find a distribution, we have to feed in the + # paths one by one, instead of dumping the list to importlib.metadata. + for dist in importlib.metadata.distributions(path=[location]): + info_location = get_info_location(dist) + try: + raw_name = get_dist_name(dist) + except BadMetadata as e: + logger.warning("Skipping %s due to %s", info_location, e.reason) + continue + normalized_name = canonicalize_name(raw_name) + if normalized_name in self._found_names: + continue + self._found_names.add(normalized_name) + yield dist, info_location + + def find(self, location: str) -> Iterator[BaseDistribution]: + """Find distributions in a location. + + The path can be either a directory, or a ZIP archive. + """ + for dist, info_location in self._find_impl(location): + if info_location is None: + installed_location: Optional[BasePath] = None + else: + installed_location = info_location.parent + yield Distribution(dist, info_location, installed_location) + + def find_linked(self, location: str) -> Iterator[BaseDistribution]: + """Read location in egg-link files and return distributions in there. + + The path should be a directory; otherwise this returns nothing. This + follows how setuptools does this for compatibility. The first non-empty + line in the egg-link is read as a path (resolved against the egg-link's + containing directory if relative). Distributions found at that linked + location are returned. + """ + path = pathlib.Path(location) + if not path.is_dir(): + return + for child in path.iterdir(): + if child.suffix != ".egg-link": + continue + with child.open() as f: + lines = (line.strip() for line in f) + target_rel = next((line for line in lines if line), "") + if not target_rel: + continue + target_location = str(path.joinpath(target_rel)) + for dist, info_location in self._find_impl(target_location): + yield Distribution(dist, info_location, path) + + def _find_eggs_in_dir(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_distributions + + from pip._internal.metadata import pkg_resources as legacy + + with os.scandir(location) as it: + for entry in it: + if not entry.name.endswith(".egg"): + continue + for dist in find_distributions(entry.path): + yield legacy.Distribution(dist) + + def _find_eggs_in_zip(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_eggs_in_zip + + from pip._internal.metadata import pkg_resources as legacy + + try: + importer = zipimport.zipimporter(location) + except zipimport.ZipImportError: + return + for dist in find_eggs_in_zip(importer, location): + yield legacy.Distribution(dist) + + def find_eggs(self, location: str) -> Iterator[BaseDistribution]: + """Find eggs in a location. + + This actually uses the old *pkg_resources* backend. We likely want to + deprecate this so we can eventually remove the *pkg_resources* + dependency entirely. Before that, this should first emit a deprecation + warning for some versions when using the fallback since importing + *pkg_resources* is slow for those who don't need it. + """ + if os.path.isdir(location): + yield from self._find_eggs_in_dir(location) + if zipfile.is_zipfile(location): + yield from self._find_eggs_in_zip(location) + + +@functools.lru_cache(maxsize=None) # Warn a distribution exactly once. +def _emit_egg_deprecation(location: Optional[str]) -> None: + deprecated( + reason=f"Loading egg at {location} is deprecated.", + replacement="to use pip for package installation.", + gone_in="24.3", + issue=12330, + ) + + +class Environment(BaseEnvironment): + def __init__(self, paths: Sequence[str]) -> None: + self._paths = paths + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(sys.path) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + if paths is None: + return cls(sys.path) + return cls(paths) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + finder = _DistributionFinder() + for location in self._paths: + yield from finder.find(location) + for dist in finder.find_eggs(location): + _emit_egg_deprecation(dist.location) + yield dist + # This must go last because that's how pkg_resources tie-breaks. + yield from finder.find_linked(location) + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + matches = ( + distribution + for distribution in self.iter_all_distributions() + if distribution.canonical_name == canonicalize_name(name) + ) + return next(matches, None) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 00000000..bb11e5bd --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,278 @@ +import email.message +import email.parser +import logging +import os +import zipfile +from typing import Collection, Iterable, Iterator, List, Mapping, NamedTuple, Optional + +from pip._vendor import pkg_resources +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, NoneMetadataError, UnsupportedWheel +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.misc import display_path, normalize_path +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from .base import ( + BaseDistribution, + BaseEntryPoint, + BaseEnvironment, + DistributionVersion, + InfoPath, + Wheel, +) + +__all__ = ["NAME", "Distribution", "Environment"] + +logger = logging.getLogger(__name__) + +NAME = "pkg_resources" + + +class EntryPoint(NamedTuple): + name: str + value: str + group: str + + +class InMemoryMetadata: + """IMetadataProvider that reads metadata files from a dictionary. + + This also maps metadata decoding exceptions to our internal exception type. + """ + + def __init__(self, metadata: Mapping[str, bytes], wheel_name: str) -> None: + self._metadata = metadata + self._wheel_name = wheel_name + + def has_metadata(self, name: str) -> bool: + return name in self._metadata + + def get_metadata(self, name: str) -> str: + try: + return self._metadata[name].decode() + except UnicodeDecodeError as e: + # Augment the default error with the origin of the file. + raise UnsupportedWheel( + f"Error decoding metadata for {self._wheel_name}: {e} in {name} file" + ) + + def get_metadata_lines(self, name: str) -> Iterable[str]: + return pkg_resources.yield_lines(self.get_metadata(name)) + + def metadata_isdir(self, name: str) -> bool: + return False + + def metadata_listdir(self, name: str) -> List[str]: + return [] + + def run_script(self, script_name: str, namespace: str) -> None: + pass + + +class Distribution(BaseDistribution): + def __init__(self, dist: pkg_resources.Distribution) -> None: + self._dist = dist + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + dist_dir = directory.rstrip(os.sep) + + # Build a PathMetadata object, from path to metadata. :wink: + base_dir, dist_dir_name = os.path.split(dist_dir) + metadata = pkg_resources.PathMetadata(base_dir, dist_dir) + + # Determine the correct Distribution object type. + if dist_dir.endswith(".egg-info"): + dist_cls = pkg_resources.Distribution + dist_name = os.path.splitext(dist_dir_name)[0] + else: + assert dist_dir.endswith(".dist-info") + dist_cls = pkg_resources.DistInfoDistribution + dist_name = os.path.splitext(dist_dir_name)[0].split("-")[0] + + dist = dist_cls(base_dir, project_name=dist_name, metadata=metadata) + return cls(dist) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + metadata_dict = { + "METADATA": metadata_contents, + } + dist = pkg_resources.DistInfoDistribution( + location=filename, + metadata=InMemoryMetadata(metadata_dict, filename), + project_name=project_name, + ) + return cls(dist) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + info_dir, _ = parse_wheel(zf, name) + metadata_dict = { + path.split("/", 1)[-1]: read_wheel_metadata_file(zf, path) + for path in zf.namelist() + if path.startswith(f"{info_dir}/") + } + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + dist = pkg_resources.DistInfoDistribution( + location=wheel.location, + metadata=InMemoryMetadata(metadata_dict, wheel.location), + project_name=name, + ) + return cls(dist) + + @property + def location(self) -> Optional[str]: + return self._dist.location + + @property + def installed_location(self) -> Optional[str]: + egg_link = egg_link_path_from_location(self.raw_name) + if egg_link: + location = egg_link + elif self.location: + location = self.location + else: + return None + return normalize_path(location) + + @property + def info_location(self) -> Optional[str]: + return self._dist.egg_info + + @property + def installed_by_distutils(self) -> bool: + # A distutils-installed distribution is provided by FileMetadata. This + # provider has a "path" attribute not present anywhere else. Not the + # best introspection logic, but pip has been doing this for a long time. + try: + return bool(self._dist._provider.path) + except AttributeError: + return False + + @property + def canonical_name(self) -> NormalizedName: + return canonicalize_name(self._dist.project_name) + + @property + def version(self) -> DistributionVersion: + return parse_version(self._dist.version) + + def is_file(self, path: InfoPath) -> bool: + return self._dist.has_metadata(str(path)) + + def iter_distutils_script_names(self) -> Iterator[str]: + yield from self._dist.metadata_listdir("scripts") + + def read_text(self, path: InfoPath) -> str: + name = str(path) + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + content = self._dist.get_metadata(name) + if content is None: + raise NoneMetadataError(self, name) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + for group, entries in self._dist.get_entry_map().items(): + for name, entry_point in entries.items(): + name, _, value = str(entry_point).partition("=") + yield EntryPoint(name=name.strip(), value=value.strip(), group=group) + + def _metadata_impl(self) -> email.message.Message: + """ + :raises NoneMetadataError: if the distribution reports `has_metadata()` + True but `get_metadata()` returns None. + """ + if isinstance(self._dist, pkg_resources.DistInfoDistribution): + metadata_name = "METADATA" + else: + metadata_name = "PKG-INFO" + try: + metadata = self.read_text(metadata_name) + except FileNotFoundError: + if self.location: + displaying_path = display_path(self.location) + else: + displaying_path = repr(self.location) + logger.warning("No metadata found in %s", displaying_path) + metadata = "" + feed_parser = email.parser.FeedParser() + feed_parser.feed(metadata) + return feed_parser.close() + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + if extras: # pkg_resources raises on invalid extras, so we sanitize. + extras = frozenset(pkg_resources.safe_extra(e) for e in extras) + extras = extras.intersection(self._dist.extras) + return self._dist.requires(extras) + + def iter_provided_extras(self) -> Iterable[str]: + return self._dist.extras + + def is_extra_provided(self, extra: str) -> bool: + return pkg_resources.safe_extra(extra) in self._dist.extras + + +class Environment(BaseEnvironment): + def __init__(self, ws: pkg_resources.WorkingSet) -> None: + self._ws = ws + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(pkg_resources.working_set) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + return cls(pkg_resources.WorkingSet(paths)) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + for dist in self._ws: + yield Distribution(dist) + + def _search_distribution(self, name: str) -> Optional[BaseDistribution]: + """Find a distribution matching the ``name`` in the environment. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + """ + canonical_name = canonicalize_name(name) + for dist in self.iter_all_distributions(): + if dist.canonical_name == canonical_name: + return dist + return None + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + # Search the distribution by looking through the working set. + dist = self._search_distribution(name) + if dist: + return dist + + # If distribution could not be found, call working_set.require to + # update the working set, and try to find the distribution again. + # This might happen for e.g. when you install a package twice, once + # using setup.py develop and again using setup.py install. Now when + # running pip uninstall twice, the package gets removed from the + # working set in the first uninstall, so we have to populate the + # working set again so that pip knows about it and the packages gets + # picked up and is successfully uninstalled the second time too. + try: + # We didn't pass in any version specifiers, so this can never + # raise pkg_resources.VersionConflict. + self._ws.require(name) + except pkg_resources.DistributionNotFound: + return None + return self._search_distribution(name) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 00000000..7855226e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c39123032d4ab7522a4f6cd8da9cd7a770600374 GIT binary patch literal 317 zcmXv~F-`+95VS)CQKbCA4MmE(70^&15F#x!P|;Y<-IBB7^IEoZ(eVa43f{n5sAy^V z03ux~Y$c4e+TB@cb~GQ8$(SV^f4($Vsek9?AACP-Mrn9sHG5<|pAMeSuZ2_9QY}!# zMnzGPjY``fTB^~69qG||3}~ZBrK84Bj_;=Y>qyF)Dk`e!7+JV$IqPNPx&Naxy=qP3B`t9fEpm6rNezyWVZmgf?lKLMl^=6c@5CZB7tHEs21rX{08RQ1@cFJF|%!ukFrw z({2b-4v|QtBB%sPP=!EnX%qzI1jld!iAy351gpL9bKthp5>e&E8?PO<)pB4YzxQU| zo0&JC-}ioOZ_gnZ&+pux{aixmH!(?u5*zhlFxC)31UsmV3n?t@lp~epf*jeBqmGoPr^b+wL6bu1mD~s>LZ8@yg(%m+f1& zTNKgBP-CM$4aPf=2}K1=P$5NdL7IU~KEnl>NK_#*d~h>KlT1lnK_yJo<+ehGq^VL$ zk?gWuP-8m>c6J5b!iC%v(hr5*V=fOY$FTz2b4M(f*u)Cx!r&zJ8RgUsxMpd-7l373 zj&`b;gq+e!9@Ffm-T4hElwGS#!^}Ko9L@`62j0rEkUkS|vqK=lG^0U72psfDZUpan72d-0*GRfP@3eT+1=a9-(m1L1EDA8PsT{t2Zz^3OR6*t;V2ykth)clr+u% zhPB~8CN`b{0jPGo{By^}osNsUZJqCpt&RybzB(Sy>KVB+S3`0($Hbn;fD`o}u~Bp$ z;9^Vm+=V^_o)+NUh2GQ}K=4Q(rvWH=Vxdbrs2Qz4=7zQ)YgVA`W1R^OvtAI*Fl3{@sMOX$xa>olem=aveL@$X-pPdkv zNFr>HNn50jW12c_gU_$PEgWUP3jf>}nCm#1#0^8wn6ccodZrnhP+ePK>t3wSOhnWsjQPNx> fQ$;u^ad7N(#sT6w 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 G`~L&ekTXL7 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..55c8fe694491f8e2c07701437a4341608c6dc7a7 GIT binary patch literal 26053 zcmd6Q3vgT4dFH)%5gV0&-|J(;a5OmUXW@oR(a}Ulv@ALov`Op72{=>4eQVvgB>WvBSvmEzl^h1A2w8-Nx zn>g+kCvqYm1{+B~wE=Om|WLqAG` zTS9FkZ9HexbdGqD&mp?rDbrI;+*6!b{yHbR-^TpV^S1ip zMmme;tw7$&HF>v*RZ^u?CT*9tkC`^02Kp1L*QSkGM9=G%kuI@D+K%tr@w*nkyYqh6 z;dc+(wqCxdbtUg5)+7B=UV;|YdoJ+JH{9htHVFPu9$I&k{rz-I=Bp30byg{L!?69IoT zV>uI0qM4GjzRAfzcsx@&f<2ULq6{Sg8^82Ea zh+po{oj!T;%;?GIFPt129(;xxx1IJW6O!V!WbBi^fP6KeNEweTi9UaH)HfBK7#))% zq0uQhn5k7JgMs|SuoMkO{24n-m##%oo98pq^l_gei35?)q)(R42CfCdUQ@<7=|fe~ z2&>46+9*zGDB~Ioi_*1$NH{8mqh4FarcC&D_4cuM|K6SK-M4GE`tIAAvEX}e#vBrN zU7-G>e=#ZS&tD6>_TzCY!2TANicoyS^c>KB#4K4Pt7tliEG%ZG7?#s^xjerLH7;5% zR~AXNUal^ZYI~iNN>3Q5ql3XaC3;MMk2u9Du@qqBlFHC>`Q_#!wK?8#>iI>NWD)IB zg~$*JAXt_IB?F`?k)sMDvZ$yxW&%Q6MyiqOLEMdajaVU7NFIiicBvNiR3f!*+TpFv z*v|yQFB2sA{w1c2ekejTBKXxs5kkIcVZwJs5~R>2Nfad!zmy5#iZ3`NDc!<_iGU(7 z02Z+5iiENg5k=}QEfw%w3%1+Pv>NRUyr zFUsm*)uKh}5L*bJpdfe1CtM9gCxnaL0cDg{VAK~3My^WYR`12`jD;G`SXryFy3cQJ ze`)I%{S%RZUs7hghqiwH3+*p;dOzXger+#cKxaX?8GnyYA@~f(16|_WOMsCXK5FE< ztnCV{gcij4x3%xT&EMjA?v0HWZkqci=BxZ${17nSBug2ar1*W468-Alk#VpdQzsRw zPY^!2(K8VVNj>AfOL9O8_MDKEm!px%p5e$?^eTvla6-Bw1tXIo&;?;2G6l%$IU5nD zf>PIoNF=EA1VSKw^tH<$xvKc4d%CYk;VV7Cz@?taX@Fq3zq_}uM+rowu1TN&W#71@ z^h^dOdqxQ)WRT0AP(+kaQ4j#%Jvse}gBT5vb z2KgS1)fyvPm3|Ugl^O)I+={#U#`N{+2aR1RcURI*;bVN@PLFv+;8*` zA8F`pMAr~mZ$y_VN5PYWq#0A(G|Nx(anogMK_>jvN!^QRb;dknF=5u?=D6h@lfLf{ zb6#`osbR?niXZ@GqB3C@A)rr1Hf1U#_=4jR8CVn&3`E8D0XPta$W(N4DyovT?xDBT zNtRpDw%44gQ8AA8t})p+PGC1mFs`uXGPZF!GBv4qtr@dFsK~ofC}R!zqW%fCRIC<- zMg@u}XbV$276^-LtBq|kR;YM})2K!{j9`|_+PO;4a)mcl;a#rSk*e6SRGqHaHD_IM zR?Hn*sjge8-FPc_Gx(d~>&`jLob;i)Dq&eT`M}+ow0Fw=sG>Mj_TkHVYY14)Uw7oB zC%_M@uqp4wFL?)od>Ab8DWf8|m{^4|HZA2m<<#J=!gI@U(~;PDXaDW}Nq2kF-oCbv z2AmPay2a(FRPlZxl}Z#m<9xuNUw|4ucJw?$QUD6=g4n@8>Z87}UjlIs0Gb%BR)k16 zIL!cxb^-qss5(d!(Y0=`S$3n5++wep0tW_6StTWpxEN{Ap|H}3V3zyHT{9oOHGOk> zVduU5clR%BPuBLN-8+)@9c(r-Hno=G*!NjfftBMK9`Tno8jVEb`MbPn@J#I zFM2NzAkelBM%ZM6fLOf&Pz4pdK-q}^GAwab%^hB;u3vH2EW6uM?zRQ-Uf^!v{)z8D z{k^A??zXi1sigfWHos`D3#Ep<^%?uI;V>Q6KT+%IK)vj;gR1fE@;30&W#Mx(~ekwjt@SBu{etI# zwLNRHS+^}#XF0r<>hE`^dQW~#@yBM))@gnzsfNyYeo$tKxyM^vdq zJr9Uh(E^UxK5fP+#C2AR`siSG3hNd-McgH=99C8EUBX5|TS^2x3YLpy6UK<|#2GH) z5722#<sM zLK4f+DAurkyA#xi7Xf%2r~Af%>j#p~)`!)#XyN{a?|=S#pMOw0_@H_)=^9K`4+7L( zn^g#-4cF_C2l0}hrrE{pygv~M$;yfgLo_WV=2xzYc#V5chLh*IZ z=>&I!zhUy51DxOV5)QVElj6a3@vAsZ{tb5=JlJoV-l(>4Gk^%>z-CUh52GZ{`OPz? z8UCuyi)O6gutSOp5@vOI_;7~5qEP=p>{T|jLYbPJjL`W_+Xm%}_#DEYatZ;cw2iZu z&%O%ob7fQ8o%rqeH(y;YJAE@c|4O1|sq(?@r#|R?YR)%bd0kAFot{0FDm(q5vyyT< zD`(IC&EpcTe2`b{sOnb5F59AYmn~z#(JZ=Z)`$aRvlgR#Tn^HU@ifJ_&|gqOmo%bw z{fTq>NlAY*j^iBL3kQM{4!1s`m3rDrCt{!Q-1##C$wq{&fo`c=@QvZHA}}FKl=xXt zpw^?U;7EKjgfx<@c-3tcA{-mIQ=EP>Ryva6EcnV)Br0V}rot@p7BBnIseHD~GwP=f zkXVL^V-Uzunb71K<=l#3mU~jlxvFj)ynb-m*_3iNeQWGa@OE&yxi8h+x3n|eyf^LK zm$d9-0Q>*xTz?~Pu8DIS3&;>g&{zv*oSnegXL`5oSU&k9eVDlQ;%K7 zu2lHM%_2X}>*qcluTF3;9nh$nb;cIATqf42;K8ZU6u0Un^f%8H&mFfF69DS;G*|kK zLly`Zi-`r}7CjfR-W2OBCGJ8AdBI1i~2`B*lxS?e1kkYc0j9qVBp;e?Y;8E$iyMTtsGstlhf67-7%yK`mbM~5tHQwu` zAJus0N}t%dvQ5jbE!gZ9E~H(ZvnL;UYG=4dQ#%~J72i{g>+NbAKSaLB`A{x$tu6G z=lY)cLuqGA($b=Cr@PUi;w0)X@a0$84syhu7^lmG8U>Gw0}>cujXcD|7d&y(I|eY% zm~+TfbW_64Ep>!2i)4$x1)7C zYmh{?B)=r?S&U3U?%G8yu{{mA05PetrD;1F&j8iSGoba_8M%~23@2j;aa1=so2rIj zP{;CRO7U$ftbVlvO;~rl7F8w#X`C_@jIxSZb|$mSL37op6sAeR5f6K(NTgMM9WCC& zpK<{K_QMLU+;ii_>n|>swWi8i7y8p>9kZt%)i>WMyIq#_v;ml%4T;@%4%|Ml6nfx1 zF?-^nvr^qZTT{-~h28g#+&yyNvT!858PIt+X*sO!ov7S+s@2Mmxl}c90nmZJU zF3~(zF~^PZP&br~I3<@@4&9zrDp&J}ZnWZ(pns%Vpx>&J4i-uT0gd za(1yguUrLcL?4)Tuu_ZH;7C>_RcpVXC)BC$h{s5Uw$MneF;eUEQfrOW4SA_`MruP| zYQ2#Py`fR>2K1mIH%I7YBYL*c$P1mKk+;!EZO%(=g0iRiGM(NF9&wY7o+HA#c?6WD zQ+~mt?|~z&=$|p$Vhj4VdEL5NjrO*%p61FyyJ?J~jcU}^*CcL1jqOP3z{uMW-&#k1i)@mYjSW(7 zm^L*XO5@z9p%1{xlp8f_h?eX5i}7i>8fNTq`>ZLzh23#`F)mGq`58yNWY!*cpbcZ2 z4m$%}yySQJxC4KA>EI)|QK#O1+$@{o<}fc(s==|wE%;?@*l{a<89k1Y5P&_`OXJ+v zkI{&ut$Nx!W*xJ^o7zxL-x27H-=XKqz4Z|wr$gv8^U`%Q@Dea^hSlbKG8HXl{~mans8OQt-((#n-jGUt+}~i-O-39 z;^9@@^63N;3|a&_+K4pRvn)+S= zzZn#1O{v>bXfisj!8ObIang>=7 z%{J6+5JazrJ0{=2%u7TEqJ`3H=^BL9nuP+Svk@VpnHAwoK*GCVprATct)nT#V7owL zSu-PRcc=ZrF<~s|Bg{o13~7q?QYhjjjaozmQNn396bP?gAKg$wr&kKr9e4*b0nHeM z8Eh~@lUsJyzSu3Cn?9G*U(w`ZXT~nAf(PmSWr&nDI~P`uB1Op>kvFj8teqlAM0ExpCWC^4gQ>_W)FH=rpAYf*Y&vVE(kmhx&nmamo7ppGEc|gfU z>xNFYxz+MkQbWQ!7rQ%a`p8~(y(DF?PYnMH z59)hh-~CAYveGClH+H8QyVH$3<}80~-@s0aP!5vRk1>C++8bvAKtHi*`a>)nW7|H` zM0B6dw9S~~W~dKLIo9o0VAsI@=q$_In$%&&vJSgwHgZ_k$zh1iAjm7ua#{nN-rh{f zI(ckHJH!B1u9M5K(3`R6#Ex-$)L`TEcI29dxjL^kThw6i^wt!!XrHl#EpeMdC2Y*##X{msFoY#>$2*R9K%@x~y36ijHka3;BaLK5Uogao`#^FTcdNMY3 z%V%eYSQ+UML=q*I8W29LpKjC)TFCB=IkrZ z>ZEfc3~@dx7v8MB*Lb&axn)>;#diZy`a_ z!bG~hXRd6evf)hLugdPs&OvO0!&v zqf{kHu8jiCds}{QJ=*n26~ZW#H#} zR3}H5)}uN(y0jk6F_a7J(77JXSw)$|l9!>d0lhGeldI^(=Rmv6L^HzYaeOt7llr8R zU{4>}iMt#iY#Z600JlDr2E@>rl*7 z?3fmF<{eZ(q39&HnrhXtw6&xwV~N7l=@b4?Y%e?B65|P@PIiF9Q79m)$HKJ*)q~Q0 zp$#VXg@lht4QSRKyb5TZyg+HB{Rhng9~Ypr1|xJC8;p;~!Gc*u>C)7=w@f8@B%Wp@ zPhO5&82V0QvK970t`;mXy0?p*`*P&RIT$e!dv>v!q*2rpr$e^=n=Bw5L4n$&N#5 z&tal}?aTF@srt^vL+Sc`b7e&FI@FZpwj=5KqdB72sWL~&p3~{Z!MU@bWv&g0Qy(~6 z^9bBZSwpg{^-)WkO6=PEm)j1e+78|yPPZLPxmxE=&-)X5R@_zd{;$R!w)H;fJO1A3 z_s5e1pH26DF5UKgs-hLtw6gA&>!xePGqmDqd15tJRzZu^-nXho zqK-C=Iu_SC{Z~vk8E#z0yYP`KMF^XUefcJY|KB#x@Zcg4B9DfR`8CKLQ4QxHRN{(h zrF4u(Z4glvtApB!^WWsYZ5`%vwdHBDKDA!Ge&D=yC{`tGEfARO|AhB4b|6+FY-Ive z@CEFw@l^~&Cf-Utn4ConHb1?1!KQpN-^?fj(>q9wVAAZ;Sbz2_MBq4v{LIK_*}3Th z=cbkFwgqvyeSfNbf3oes{oZ8dq3g#VRaVa(Cp(}cUp?}$wsUdkyZheSm#*EFtl7OZ zeqa24!M6tAE>BnQNxJr^x*N1!Lh_okG4(}Fqe#$ooMyIv#lThi_hM&dyt zTlOqPzx&1Sd@(Hyq+CsNr{)L2D9)XQG4qZ1_4u-TbIQGW;e@^?B<+XiqlpuD25%20 z4kfo9O4b}s+Yir0Va_$@TnknPN^M84ezDQFzT`TDo8(%QQ#Zr{FxSq~G|xI)PiJfT z{RT~gif|vf8(@{b_x4^)K+?WtZ3mH6MYwL(!Qu#4jLhb`NWvJn6F@eIg)Zo&{6l<< zIT@K#bIeocNYc;NNL`<0cYA6btNFi2|6m=zvs7mbm_cGcoIQA z7UbkM#he`gjGCMP#f+zz$}LBP^&#tTkTBDb{BKYiRHhm)`TG>SM*$o7zol3q)KW%` zw&+fxcW4GWkUq;jbk}{$p|N^w?_J(@Ahqql{ekqhqv`r%Y4`D@{rK8hAby9Y@aW`Mjr9vu_N&WjmC^Tn1ahe2dCU5uDqHqQ9D2I2;Dp;Sfb6viHnZ3H_ZT14wRwzsuj zK_N^mMahu-ACWKCtJ7i}o5KPo4iY}qKTY>R2uH$QOtrORFH=aw_Tu0Su7K$oz?ch1 znKD?JhKuVp=qjP;lBG}t{=Q6QmRDoU(zmO7N5I!bAV;2!%qYPL29->{NDY-K8HZXC zqBK~AE6SAQEy+}@QVf8(mG`6HjAhAKncEz)fF-&N7g^Qc23ZbK7Mcn;Rxz%I5?~>l zmu;1KxqJ)XRmZCCRqc`Cf)c<-u+7+3D%w&NZOawgQx)46FTDH0TQ8(5_RLv7bbD}0 z#YwZi>DCu-esQ7qH(#A|ffreJZ%MhgEW0~X?#{)758Qhnx@uP%niI9jP3Mwz&#p9n zcBQ@u`W0Vo5~C?fywffU@w zAEIHb<%ZGxz8dJhYPIAKDX->@MeDKZG*(lzf>?vfwB${MQTY#PX^0YoV9?TZrz*Oa zD|V$Sb}fnD4SXk%t~jbM&5GM|uIG$$ITerVWb zk_VXbz9Qa_Rw8De`e9M>^++D9$of6mGVCIz-;9Y>0G z)G)k1|AeNo4OU&qSGtO>7@OaVs5F0ya;zdIs|Z{d+tl>Q(x*T)6mRXu5n}G!ySzY(c?K6y(w;1mwpGQN?D) zTF8VID#RO`Xz*5j$xdN%DIO4^6kPM>iI5K!-W^j_pi0m8WC zjD?6K$l(u*^}GbmF7#a!Bx=9@ocgVv|4HOU+s_!dfuiSsf%PeKM_b7CADeh@uLTz<+`FkpBRQYnFb&& zDXl0E)(H~;G0q3>LvNbymE0}4S9Z5-QG7T2RyZvjO4<*7$_il#)?K08T&OFhj>IJY z5p}w}SkLX~Bg}v#9mw>b|84bRUAunmTSvgOefl*AWbi@)T3qYJh4>jBoOMy62)hBo z*MjE?ftGoQVF}#X%~$+%jZ!6U80iN83qpt+M!JzG{~QGw;ANaJF&b3`IEv0l(brYG zt_@>CF-<(8{>aksR0{LwcCQYO{yUM|k>olQ#z2u~G_Wp;a8vrl4L}Z}MQdQifgY%O zevRxIzyF##WgL@Lnc$*lz5W;|@~g`5=!%4*G?^*1nC*~8c|e%i&rfnd0lGYY;?|j) zXVQ76cmoqrv$2<4!jG@O()l{OLm_v+#2gP_2-E9!fJlBh7c&ha|6hF@ zDZJlD_W(bII8fXOJ;a&somoCOlsY(+K6vgy)w5~$vq}52 zjM{l^LwGI>d3P3b3@4j4B^Zg)9S~=!OQe~QT@*Y|0Rv{D>hf<>aGnC9F*2>0{CgDq za|*so!S5r${cLgsws+BKRgV1w`oM_$4=FZF0h7czDMnbSQc=e9x6{vOC|E&|DII)j z=$Z2;2aXM&lrxk{hiCam6#QojeoO&bI?2Z=_)7|i?~(sI1+>k`Pbm0n3jQYr|C@rp zrQj3-x^jpaBKjrJyHQY6H?ON&Bwz6yA%I1!h?!KQ?9GM=rW*UQW%RS0Yih~5DOSN%Zb;NER4@1! z>Qfs!Qx)5?)EdlrO3Qy*O|j!9y0F5u!&>?XhZb{UIAOneIBUgkbfvmBTS75AS6VgS zo^ovX*nyww9T!w2EAp&#FG|-pCWaTbF81H;N;dVR>UU(VNY(0~n4M~KP^{Fb&555{ zZS-M`w_EonsvmQBWj(xANNlESGX&IPE6xTK^kCCu}%BTt2C#Thu*!(evm-Y#< zY=f4mEzwV<+Kf_dMui;-Gks#$cCZR@MF%To!QCDBgqKzdF-)`C>VbJbl{#Qlcpz)z ztpj|bZNa=SykNiGL){+Wjb>WaezzJ0TD4DfCBgzKqqp{vqL{4u)_M6>>}D+4x-(t3 zD{1kdgr2ry-??<@yP@xd9-B?|xU9sJwO3dhVM}GcJ@c4DG`ods*|uQ1S9-TJx$RV1 zcq(aWdSorjnk?4lg=oJ}#E1|bBls)qk z3FT&p#=plH&K~1)cVh3t!0kiyx!d^6?onaW`wUOZ#9N=yM@vzoa9hGdA6G3DZ#}%= zp*|covTaLjp=|8J6;|su?UUKsov@H|t==?ZfHrl}x)VFs>s6~-;i~1aS=A<|_;K6W)4vw+8? zo~r5lcKxm^h>^)%A_C_FsG|K*R^3*qd%Rm{^&RSMzjUatRk)%Et%$TEq1DU!rD?TE z96c69G1&FfWqOc)GA|t_a+Vcs{sz>`voK<2YcEFFt&y@sGG}C0_N$ji_I3*=u;s!X}#Q}xpc5*QxZ)b2^TF-psV8Qq=cpDhC!No74C;{yX$?++8RiHYI zL0xaf@ONfvQo7U7SQXUAdZ~AeBz&Z)r_Ms5N*B@PdReGtCBTAlFYdpbgu7O^Fw7)` zdR3EjF$m3v0C;3K4-wx;#&VFz1EQEPk@U7SHuCuKVK)45c0d;Z!?^i^F7G7fv=43* ze2;JV@uL;)Tm z0aFOKA?luOhOUG_YCAkU{L*ApxOg#Nn0@HtMQUGfk+?_ItPj32Dx?82G)EG4O)AVf z02x>WHbC8X1MsCmn>tZ?eQdr|EI{wDP*{dmQh>FRngCRApEL7o}xyoQEMG3w> z>bejq!Sx}M(Lqf~B5b8egIG@XDPA490SGFJXtS?kIEn*TuI0BIX@!hiP(&?DRMVxiF&0fKaauWmNir*^3BQagp9c z1lPqf$Re+!z<8L%+n9!sx`Y`U<^kv_CqcL~uKcB8=ZzuwnGE8S{4@ohq2LS!wC~6w zf{b&R?k-m8ygWq7HVPPHP6GSF+nVe+6vz~m&~fA_a^T7|Q=QeG?c>U-Z=AV)M!mrT z*EKu1)WLQQ*_3GuHJOONWTHmsq{>orNCsCVVCm>93adx{ zr&Qy+2yon_8@^ASQU`E7jf>i59hjw5>XF)uKcg6RW$g_# zPVEL7!YjEJ6?6cQ6f+_aT$WWXmo=rznr2U}0CQiu{?c+;ORB78Ve`T(=`!ykZt&>B z zO4jr*U3g&MpEX&n4PdWv+AL4i^(^tJy1qFVuFmQ_@F!(w7LMKby|?%GL%6=IKGAY> zW8&GH&8hND$+9!Erw}}J*5P8x8?Rk|ZDDNb_*Rwwc_*edW2NcqRbPFpE_@=eHRJE`4g~qS zirnotIWbvI8JaKB<=MJGzD46(LPbk zOjEI3q;Wu#XrAb2rlD9K;x&+gWHFigVi`gKc#?w-YBtkV6eHnJ@#@t3u4SS<#j7I? zu<9>LRH?Ava4MFrb^9a1ATw!Tmq}zCaM?P;d=k`6nBjd7^+TY5NxRrady#%lP!OWv z845t{I9a9`6Nt@F>~#w0+{m^|1~~Es`bjWRuv33xKd9czdRXqjSN!9Y?;r#Q@cf^0 z73^R6pK=ZsL0J7GuH|Q@Qr`444#7`ZP|xvue#Gtj5!dxIla)6;<`DeU#qkIK3wP+p z=87L#_CIno%+)PB8d8pi#NM=H%d8E@<(e~mlBATIVVnHTro4X2uRWjUnX-}>Ip_s#DQzi|qZ+IES3}o}0-($Y01Qx6r4M{DHC8VDKrWd4xcc0)6^QQc0z%@0ZQZh@jp2 z^;Q0dPspFnSzE9o7oQ?IC!F-ifN<|eujl#XOTzs#!fQWal(U{c4Z7jU&(Rl3Q#&oe zP-cwE1hc^DMA)2)!dNCHvqBZrWH}7M#L*&v(E${onWSnAdMsc z;MC?IG|g0D;f1|J4M3DzTbhSS!c}JCa%yu`#7Ym6`^oA}oH@LRb32ruFlj*-nAYw; z6N;nPVbv%xJ1LHlj5I7r4vd2~Rl{Ujl-5)MXO?BlPcN~(axNYqIVV7R9@fg|Uatm0 zFXTSdc@0N^Bg9e1(csN~o43w_USrzqMpgZ2QI8Y*h%On;mE?w&%;ttpa*^efX`my6 z)nvvMfgUphlnV`+Ra#)d`$|U?jcF_TEVKV^0i)k6s)P4t&)5Ls#d%%B#I3WaMeDu7vJFB6$QV1cl06iDEuvv)ST4Q8N zy56C7N4xbZFd+N?o0W0NxPMam;fEwwLr4bf7%L!?$6%gWRVGKOZzrx^k6{c_l|v{j z-BTlNAURNcBw_bkrKCy3u#~97!tQ2jV%Ri^$54zDY<;rS(f#=Dy~GGq%c^81DMgv2 z0_BG)lF3kUz>Ai8M)6h66gP!U)057!mGOGvD&}o&Bb<`?C9?DJ%ivY}x9cDM$F#lk zGWfoAfk#QV>25685Yn`Y(iGpr^pUsI^!bR%)lMT#QT@2QakTf<{=t6w_5OE9RVz)6 zRMy~n%~-9s@WR(bcW~014q9t)A~pvIXXK6Vhs}ADT)uhwWFEA`8^2%Po`*Qk>*UI{ zdBd@$V=c!b$2J^mlg^d-rej+q+IrVPwtUGwa@ehD_kX?ZVDapA$No;`L-Vuc*FM)f kxZxyZZX(QUp69*sLoaxHiFEe7(~bA_tKN;b1Yr^V7g9+^e*gdg literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f84620178e524560c0237fc29c817115ae8854e0 GIT binary patch literal 5139 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 YbHj7=n)6>y%rNJe2k^%MH1s3?1%(Q{vH$=8 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d3a95be0706b275008b88646e6312cfa7cb29ea GIT binary patch literal 1902 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 ISbDqt4;9wz1poj5 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..76e49a3f77ef0b0fc1fe5009a78ae968f0e8a102 GIT binary patch literal 5831 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 OcSaEU?htIbpnn7HcFU~* literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 00000000..9184a902 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py @@ -0,0 +1,30 @@ +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.models.link import Link +from pip._internal.utils.models import KeyBasedCompareMixin + + +class InstallationCandidate(KeyBasedCompareMixin): + """Represents a potential "candidate" for installation.""" + + __slots__ = ["name", "version", "link"] + + def __init__(self, name: str, version: str, link: Link) -> None: + self.name = name + self.version = parse_version(version) + self.link = link + + super().__init__( + key=(self.name, self.version, self.link), + defining_class=InstallationCandidate, + ) + + def __repr__(self) -> str: + return "".format( + self.name, + self.version, + self.link, + ) + + def __str__(self) -> str: + return f"{self.name!r} candidate (version {self.version} at {self.link})" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 00000000..0af884bd --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,235 @@ +""" PEP 610 """ +import json +import re +import urllib.parse +from typing import Any, Dict, Iterable, Optional, Type, TypeVar, Union + +__all__ = [ + "DirectUrl", + "DirectUrlValidationError", + "DirInfo", + "ArchiveInfo", + "VcsInfo", +] + +T = TypeVar("T") + +DIRECT_URL_METADATA_NAME = "direct_url.json" +ENV_VAR_RE = re.compile(r"^\$\{[A-Za-z0-9-_]+\}(:\$\{[A-Za-z0-9-_]+\})?$") + + +class DirectUrlValidationError(Exception): + pass + + +def _get( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> Optional[T]: + """Get value from dictionary and verify expected type.""" + if key not in d: + return default + value = d[key] + if not isinstance(value, expected_type): + raise DirectUrlValidationError( + f"{value!r} has unexpected type for {key} (expected {expected_type})" + ) + return value + + +def _get_required( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> T: + value = _get(d, expected_type, key, default) + if value is None: + raise DirectUrlValidationError(f"{key} must have a value") + return value + + +def _exactly_one_of(infos: Iterable[Optional["InfoType"]]) -> "InfoType": + infos = [info for info in infos if info is not None] + if not infos: + raise DirectUrlValidationError( + "missing one of archive_info, dir_info, vcs_info" + ) + if len(infos) > 1: + raise DirectUrlValidationError( + "more than one of archive_info, dir_info, vcs_info" + ) + assert infos[0] is not None + return infos[0] + + +def _filter_none(**kwargs: Any) -> Dict[str, Any]: + """Make dict excluding None values.""" + return {k: v for k, v in kwargs.items() if v is not None} + + +class VcsInfo: + name = "vcs_info" + + def __init__( + self, + vcs: str, + commit_id: str, + requested_revision: Optional[str] = None, + ) -> None: + self.vcs = vcs + self.requested_revision = requested_revision + self.commit_id = commit_id + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["VcsInfo"]: + if d is None: + return None + return cls( + vcs=_get_required(d, str, "vcs"), + commit_id=_get_required(d, str, "commit_id"), + requested_revision=_get(d, str, "requested_revision"), + ) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none( + vcs=self.vcs, + requested_revision=self.requested_revision, + commit_id=self.commit_id, + ) + + +class ArchiveInfo: + name = "archive_info" + + def __init__( + self, + hash: Optional[str] = None, + hashes: Optional[Dict[str, str]] = None, + ) -> None: + # set hashes before hash, since the hash setter will further populate hashes + self.hashes = hashes + self.hash = hash + + @property + def hash(self) -> Optional[str]: + return self._hash + + @hash.setter + def hash(self, value: Optional[str]) -> None: + if value is not None: + # Auto-populate the hashes key to upgrade to the new format automatically. + # We don't back-populate the legacy hash key from hashes. + try: + hash_name, hash_value = value.split("=", 1) + except ValueError: + raise DirectUrlValidationError( + f"invalid archive_info.hash format: {value!r}" + ) + if self.hashes is None: + self.hashes = {hash_name: hash_value} + elif hash_name not in self.hashes: + self.hashes = self.hashes.copy() + self.hashes[hash_name] = hash_value + self._hash = value + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["ArchiveInfo"]: + if d is None: + return None + return cls(hash=_get(d, str, "hash"), hashes=_get(d, dict, "hashes")) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(hash=self.hash, hashes=self.hashes) + + +class DirInfo: + name = "dir_info" + + def __init__( + self, + editable: bool = False, + ) -> None: + self.editable = editable + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["DirInfo"]: + if d is None: + return None + return cls(editable=_get_required(d, bool, "editable", default=False)) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(editable=self.editable or None) + + +InfoType = Union[ArchiveInfo, DirInfo, VcsInfo] + + +class DirectUrl: + def __init__( + self, + url: str, + info: InfoType, + subdirectory: Optional[str] = None, + ) -> None: + self.url = url + self.info = info + self.subdirectory = subdirectory + + def _remove_auth_from_netloc(self, netloc: str) -> str: + if "@" not in netloc: + return netloc + user_pass, netloc_no_user_pass = netloc.split("@", 1) + if ( + isinstance(self.info, VcsInfo) + and self.info.vcs == "git" + and user_pass == "git" + ): + return netloc + if ENV_VAR_RE.match(user_pass): + return netloc + return netloc_no_user_pass + + @property + def redacted_url(self) -> str: + """url with user:password part removed unless it is formed with + environment variables as specified in PEP 610, or it is ``git`` + in the case of a git URL. + """ + purl = urllib.parse.urlsplit(self.url) + netloc = self._remove_auth_from_netloc(purl.netloc) + surl = urllib.parse.urlunsplit( + (purl.scheme, netloc, purl.path, purl.query, purl.fragment) + ) + return surl + + def validate(self) -> None: + self.from_dict(self.to_dict()) + + @classmethod + def from_dict(cls, d: Dict[str, Any]) -> "DirectUrl": + return DirectUrl( + url=_get_required(d, str, "url"), + subdirectory=_get(d, str, "subdirectory"), + info=_exactly_one_of( + [ + ArchiveInfo._from_dict(_get(d, dict, "archive_info")), + DirInfo._from_dict(_get(d, dict, "dir_info")), + VcsInfo._from_dict(_get(d, dict, "vcs_info")), + ] + ), + ) + + def to_dict(self) -> Dict[str, Any]: + res = _filter_none( + url=self.redacted_url, + subdirectory=self.subdirectory, + ) + res[self.info.name] = self.info._to_dict() + return res + + @classmethod + def from_json(cls, s: str) -> "DirectUrl": + return cls.from_dict(json.loads(s)) + + def to_json(self) -> str: + return json.dumps(self.to_dict(), sort_keys=True) + + def is_local_editable(self) -> bool: + return isinstance(self.info, DirInfo) and self.info.editable diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 00000000..ccd11272 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,78 @@ +from typing import FrozenSet, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import CommandError + + +class FormatControl: + """Helper for managing formats from which a package can be installed.""" + + __slots__ = ["no_binary", "only_binary"] + + def __init__( + self, + no_binary: Optional[Set[str]] = None, + only_binary: Optional[Set[str]] = None, + ) -> None: + if no_binary is None: + no_binary = set() + if only_binary is None: + only_binary = set() + + self.no_binary = no_binary + self.only_binary = only_binary + + def __eq__(self, other: object) -> bool: + if not isinstance(other, self.__class__): + return NotImplemented + + if self.__slots__ != other.__slots__: + return False + + return all(getattr(self, k) == getattr(other, k) for k in self.__slots__) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.no_binary}, {self.only_binary})" + + @staticmethod + def handle_mutual_excludes(value: str, target: Set[str], other: Set[str]) -> None: + if value.startswith("-"): + raise CommandError( + "--no-binary / --only-binary option requires 1 argument." + ) + new = value.split(",") + while ":all:" in new: + other.clear() + target.clear() + target.add(":all:") + del new[: new.index(":all:") + 1] + # Without a none, we want to discard everything as :all: covers it + if ":none:" not in new: + return + for name in new: + if name == ":none:": + target.clear() + continue + name = canonicalize_name(name) + other.discard(name) + target.add(name) + + def get_allowed_formats(self, canonical_name: str) -> FrozenSet[str]: + result = {"binary", "source"} + if canonical_name in self.only_binary: + result.discard("source") + elif canonical_name in self.no_binary: + result.discard("binary") + elif ":all:" in self.only_binary: + result.discard("source") + elif ":all:" in self.no_binary: + result.discard("binary") + return frozenset(result) + + def disallow_binaries(self) -> None: + self.handle_mutual_excludes( + ":all:", + self.no_binary, + self.only_binary, + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py new file mode 100644 index 00000000..b94c3251 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py @@ -0,0 +1,28 @@ +import urllib.parse + + +class PackageIndex: + """Represents a Package Index and provides easier access to endpoints""" + + __slots__ = ["url", "netloc", "simple_url", "pypi_url", "file_storage_domain"] + + def __init__(self, url: str, file_storage_domain: str) -> None: + super().__init__() + self.url = url + self.netloc = urllib.parse.urlsplit(url).netloc + self.simple_url = self._url_for_path("simple") + self.pypi_url = self._url_for_path("pypi") + + # This is part of a temporary hack used to block installs of PyPI + # packages which depend on external urls only necessary until PyPI can + # block such packages themselves + self.file_storage_domain = file_storage_domain + + def _url_for_path(self, path: str) -> str: + return urllib.parse.urljoin(self.url, path) + + +PyPI = PackageIndex("https://pypi.org/", file_storage_domain="files.pythonhosted.org") +TestPyPI = PackageIndex( + "https://test.pypi.org/", file_storage_domain="test-files.pythonhosted.org" +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py new file mode 100644 index 00000000..b9c6330d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py @@ -0,0 +1,56 @@ +from typing import Any, Dict, Sequence + +from pip._vendor.packaging.markers import default_environment + +from pip import __version__ +from pip._internal.req.req_install import InstallRequirement + + +class InstallationReport: + def __init__(self, install_requirements: Sequence[InstallRequirement]): + self._install_requirements = install_requirements + + @classmethod + def _install_req_to_dict(cls, ireq: InstallRequirement) -> Dict[str, Any]: + assert ireq.download_info, f"No download_info for {ireq}" + res = { + # PEP 610 json for the download URL. download_info.archive_info.hashes may + # be absent when the requirement was installed from the wheel cache + # and the cache entry was populated by an older pip version that did not + # record origin.json. + "download_info": ireq.download_info.to_dict(), + # is_direct is true if the requirement was a direct URL reference (which + # includes editable requirements), and false if the requirement was + # downloaded from a PEP 503 index or --find-links. + "is_direct": ireq.is_direct, + # is_yanked is true if the requirement was yanked from the index, but + # was still selected by pip to conform to PEP 592. + "is_yanked": ireq.link.is_yanked if ireq.link else False, + # requested is true if the requirement was specified by the user (aka + # top level requirement), and false if it was installed as a dependency of a + # requirement. https://peps.python.org/pep-0376/#requested + "requested": ireq.user_supplied, + # PEP 566 json encoding for metadata + # https://www.python.org/dev/peps/pep-0566/#json-compatible-metadata + "metadata": ireq.get_dist().metadata_dict, + } + if ireq.user_supplied and ireq.extras: + # For top level requirements, the list of requested extras, if any. + res["requested_extras"] = sorted(ireq.extras) + return res + + def to_dict(self) -> Dict[str, Any]: + return { + "version": "1", + "pip_version": __version__, + "install": [ + self._install_req_to_dict(ireq) for ireq in self._install_requirements + ], + # https://peps.python.org/pep-0508/#environment-markers + # TODO: currently, the resolver uses the default environment to evaluate + # environment markers, so that is what we report here. In the future, it + # should also take into account options such as --python-version or + # --platform, perhaps under the form of an environment_override field? + # https://github.com/pypa/pip/issues/11198 + "environment": default_environment(), + } diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py new file mode 100644 index 00000000..73041b86 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py @@ -0,0 +1,579 @@ +import functools +import itertools +import logging +import os +import posixpath +import re +import urllib.parse +from dataclasses import dataclass +from typing import ( + TYPE_CHECKING, + Any, + Dict, + List, + Mapping, + NamedTuple, + Optional, + Tuple, + Union, +) + +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + pairwise, + redact_auth_from_url, + split_auth_from_netloc, + splitext, +) +from pip._internal.utils.models import KeyBasedCompareMixin +from pip._internal.utils.urls import path_to_url, url_to_path + +if TYPE_CHECKING: + from pip._internal.index.collector import IndexContent + +logger = logging.getLogger(__name__) + + +# Order matters, earlier hashes have a precedence over later hashes for what +# we will pick to use. +_SUPPORTED_HASHES = ("sha512", "sha384", "sha256", "sha224", "sha1", "md5") + + +@dataclass(frozen=True) +class LinkHash: + """Links to content may have embedded hash values. This class parses those. + + `name` must be any member of `_SUPPORTED_HASHES`. + + This class can be converted to and from `ArchiveInfo`. While ArchiveInfo intends to + be JSON-serializable to conform to PEP 610, this class contains the logic for + parsing a hash name and value for correctness, and then checking whether that hash + conforms to a schema with `.is_hash_allowed()`.""" + + name: str + value: str + + _hash_url_fragment_re = re.compile( + # NB: we do not validate that the second group (.*) is a valid hex + # digest. Instead, we simply keep that string in this class, and then check it + # against Hashes when hash-checking is needed. This is easier to debug than + # proactively discarding an invalid hex digest, as we handle incorrect hashes + # and malformed hashes in the same place. + r"[#&]({choices})=([^&]*)".format( + choices="|".join(re.escape(hash_name) for hash_name in _SUPPORTED_HASHES) + ), + ) + + def __post_init__(self) -> None: + assert self.name in _SUPPORTED_HASHES + + @classmethod + @functools.lru_cache(maxsize=None) + def find_hash_url_fragment(cls, url: str) -> Optional["LinkHash"]: + """Search a string for a checksum algorithm name and encoded output value.""" + match = cls._hash_url_fragment_re.search(url) + if match is None: + return None + name, value = match.groups() + return cls(name=name, value=value) + + def as_dict(self) -> Dict[str, str]: + return {self.name: self.value} + + def as_hashes(self) -> Hashes: + """Return a Hashes instance which checks only for the current hash.""" + return Hashes({self.name: [self.value]}) + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the current hash is allowed by `hashes`. + """ + if hashes is None: + return False + return hashes.is_hash_allowed(self.name, hex_digest=self.value) + + +@dataclass(frozen=True) +class MetadataFile: + """Information about a core metadata file associated with a distribution.""" + + hashes: Optional[Dict[str, str]] + + def __post_init__(self) -> None: + if self.hashes is not None: + assert all(name in _SUPPORTED_HASHES for name in self.hashes) + + +def supported_hashes(hashes: Optional[Dict[str, str]]) -> Optional[Dict[str, str]]: + # Remove any unsupported hash types from the mapping. If this leaves no + # supported hashes, return None + if hashes is None: + return None + hashes = {n: v for n, v in hashes.items() if n in _SUPPORTED_HASHES} + if not hashes: + return None + return hashes + + +def _clean_url_path_part(part: str) -> str: + """ + Clean a "part" of a URL path (i.e. after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + return urllib.parse.quote(urllib.parse.unquote(part)) + + +def _clean_file_url_path(part: str) -> str: + """ + Clean the first part of a URL path that corresponds to a local + filesystem path (i.e. the first part after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + # Also, on Windows the path part might contain a drive letter which + # should not be quoted. On Linux where drive letters do not + # exist, the colon should be quoted. We rely on urllib.request + # to do the right thing here. + return urllib.request.pathname2url(urllib.request.url2pathname(part)) + + +# percent-encoded: / +_reserved_chars_re = re.compile("(@|%2F)", re.IGNORECASE) + + +def _clean_url_path(path: str, is_local_path: bool) -> str: + """ + Clean the path portion of a URL. + """ + if is_local_path: + clean_func = _clean_file_url_path + else: + clean_func = _clean_url_path_part + + # Split on the reserved characters prior to cleaning so that + # revision strings in VCS URLs are properly preserved. + parts = _reserved_chars_re.split(path) + + cleaned_parts = [] + for to_clean, reserved in pairwise(itertools.chain(parts, [""])): + cleaned_parts.append(clean_func(to_clean)) + # Normalize %xx escapes (e.g. %2f -> %2F) + cleaned_parts.append(reserved.upper()) + + return "".join(cleaned_parts) + + +def _ensure_quoted_url(url: str) -> str: + """ + Make sure a link is fully quoted. + For example, if ' ' occurs in the URL, it will be replaced with "%20", + and without double-quoting other characters. + """ + # Split the URL into parts according to the general structure + # `scheme://netloc/path;parameters?query#fragment`. + result = urllib.parse.urlparse(url) + # If the netloc is empty, then the URL refers to a local filesystem path. + is_local_path = not result.netloc + path = _clean_url_path(result.path, is_local_path=is_local_path) + return urllib.parse.urlunparse(result._replace(path=path)) + + +class Link(KeyBasedCompareMixin): + """Represents a parsed link from a Package Index's simple URL""" + + __slots__ = [ + "_parsed_url", + "_url", + "_hashes", + "comes_from", + "requires_python", + "yanked_reason", + "metadata_file_data", + "cache_link_parsing", + "egg_fragment", + ] + + def __init__( + self, + url: str, + comes_from: Optional[Union[str, "IndexContent"]] = None, + requires_python: Optional[str] = None, + yanked_reason: Optional[str] = None, + metadata_file_data: Optional[MetadataFile] = None, + cache_link_parsing: bool = True, + hashes: Optional[Mapping[str, str]] = None, + ) -> None: + """ + :param url: url of the resource pointed to (href of the link) + :param comes_from: instance of IndexContent where the link was found, + or string. + :param requires_python: String containing the `Requires-Python` + metadata field, specified in PEP 345. This may be specified by + a data-requires-python attribute in the HTML link tag, as + described in PEP 503. + :param yanked_reason: the reason the file has been yanked, if the + file has been yanked, or None if the file hasn't been yanked. + This is the value of the "data-yanked" attribute, if present, in + a simple repository HTML link. If the file has been yanked but + no reason was provided, this should be the empty string. See + PEP 592 for more information and the specification. + :param metadata_file_data: the metadata attached to the file, or None if + no such metadata is provided. This argument, if not None, indicates + that a separate metadata file exists, and also optionally supplies + hashes for that file. + :param cache_link_parsing: A flag that is used elsewhere to determine + whether resources retrieved from this link should be cached. PyPI + URLs should generally have this set to False, for example. + :param hashes: A mapping of hash names to digests to allow us to + determine the validity of a download. + """ + + # The comes_from, requires_python, and metadata_file_data arguments are + # only used by classmethods of this class, and are not used in client + # code directly. + + # url can be a UNC windows share + if url.startswith("\\\\"): + url = path_to_url(url) + + self._parsed_url = urllib.parse.urlsplit(url) + # Store the url as a private attribute to prevent accidentally + # trying to set a new value. + self._url = url + + link_hash = LinkHash.find_hash_url_fragment(url) + hashes_from_link = {} if link_hash is None else link_hash.as_dict() + if hashes is None: + self._hashes = hashes_from_link + else: + self._hashes = {**hashes, **hashes_from_link} + + self.comes_from = comes_from + self.requires_python = requires_python if requires_python else None + self.yanked_reason = yanked_reason + self.metadata_file_data = metadata_file_data + + super().__init__(key=url, defining_class=Link) + + self.cache_link_parsing = cache_link_parsing + self.egg_fragment = self._egg_fragment() + + @classmethod + def from_json( + cls, + file_data: Dict[str, Any], + page_url: str, + ) -> Optional["Link"]: + """ + Convert an pypi json document from a simple repository page into a Link. + """ + file_url = file_data.get("url") + if file_url is None: + return None + + url = _ensure_quoted_url(urllib.parse.urljoin(page_url, file_url)) + pyrequire = file_data.get("requires-python") + yanked_reason = file_data.get("yanked") + hashes = file_data.get("hashes", {}) + + # PEP 714: Indexes must use the name core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = file_data.get("core-metadata") + if metadata_info is None: + metadata_info = file_data.get("dist-info-metadata") + + # The metadata info value may be a boolean, or a dict of hashes. + if isinstance(metadata_info, dict): + # The file exists, and hashes have been supplied + metadata_file_data = MetadataFile(supported_hashes(metadata_info)) + elif metadata_info: + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + else: + # False or not present: the file does not exist + metadata_file_data = None + + # The Link.yanked_reason expects an empty string instead of a boolean. + if yanked_reason and not isinstance(yanked_reason, str): + yanked_reason = "" + # The Link.yanked_reason expects None instead of False. + elif not yanked_reason: + yanked_reason = None + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + hashes=hashes, + metadata_file_data=metadata_file_data, + ) + + @classmethod + def from_element( + cls, + anchor_attribs: Dict[str, Optional[str]], + page_url: str, + base_url: str, + ) -> Optional["Link"]: + """ + Convert an anchor element's attributes in a simple repository page to a Link. + """ + href = anchor_attribs.get("href") + if not href: + return None + + url = _ensure_quoted_url(urllib.parse.urljoin(base_url, href)) + pyrequire = anchor_attribs.get("data-requires-python") + yanked_reason = anchor_attribs.get("data-yanked") + + # PEP 714: Indexes must use the name data-core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = anchor_attribs.get("data-core-metadata") + if metadata_info is None: + metadata_info = anchor_attribs.get("data-dist-info-metadata") + # The metadata info value may be the string "true", or a string of + # the form "hashname=hashval" + if metadata_info == "true": + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + elif metadata_info is None: + # The file does not exist + metadata_file_data = None + else: + # The file exists, and hashes have been supplied + hashname, sep, hashval = metadata_info.partition("=") + if sep == "=": + metadata_file_data = MetadataFile(supported_hashes({hashname: hashval})) + else: + # Error - data is wrong. Treat as no hashes supplied. + logger.debug( + "Index returned invalid data-dist-info-metadata value: %s", + metadata_info, + ) + metadata_file_data = MetadataFile(None) + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + metadata_file_data=metadata_file_data, + ) + + def __str__(self) -> str: + if self.requires_python: + rp = f" (requires-python:{self.requires_python})" + else: + rp = "" + if self.comes_from: + return f"{redact_auth_from_url(self._url)} (from {self.comes_from}){rp}" + else: + return redact_auth_from_url(str(self._url)) + + def __repr__(self) -> str: + return f"" + + @property + def url(self) -> str: + return self._url + + @property + def filename(self) -> str: + path = self.path.rstrip("/") + name = posixpath.basename(path) + if not name: + # Make sure we don't leak auth information if the netloc + # includes a username and password. + netloc, user_pass = split_auth_from_netloc(self.netloc) + return netloc + + name = urllib.parse.unquote(name) + assert name, f"URL {self._url!r} produced no filename" + return name + + @property + def file_path(self) -> str: + return url_to_path(self.url) + + @property + def scheme(self) -> str: + return self._parsed_url.scheme + + @property + def netloc(self) -> str: + """ + This can contain auth information. + """ + return self._parsed_url.netloc + + @property + def path(self) -> str: + return urllib.parse.unquote(self._parsed_url.path) + + def splitext(self) -> Tuple[str, str]: + return splitext(posixpath.basename(self.path.rstrip("/"))) + + @property + def ext(self) -> str: + return self.splitext()[1] + + @property + def url_without_fragment(self) -> str: + scheme, netloc, path, query, fragment = self._parsed_url + return urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + + _egg_fragment_re = re.compile(r"[#&]egg=([^&]*)") + + # Per PEP 508. + _project_name_re = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE + ) + + def _egg_fragment(self) -> Optional[str]: + match = self._egg_fragment_re.search(self._url) + if not match: + return None + + # An egg fragment looks like a PEP 508 project name, along with + # an optional extras specifier. Anything else is invalid. + project_name = match.group(1) + if not self._project_name_re.match(project_name): + deprecated( + reason=f"{self} contains an egg fragment with a non-PEP 508 name", + replacement="to use the req @ url syntax, and remove the egg fragment", + gone_in="25.0", + issue=11617, + ) + + return project_name + + _subdirectory_fragment_re = re.compile(r"[#&]subdirectory=([^&]*)") + + @property + def subdirectory_fragment(self) -> Optional[str]: + match = self._subdirectory_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + def metadata_link(self) -> Optional["Link"]: + """Return a link to the associated core metadata file (if any).""" + if self.metadata_file_data is None: + return None + metadata_url = f"{self.url_without_fragment}.metadata" + if self.metadata_file_data.hashes is None: + return Link(metadata_url) + return Link(metadata_url, hashes=self.metadata_file_data.hashes) + + def as_hashes(self) -> Hashes: + return Hashes({k: [v] for k, v in self._hashes.items()}) + + @property + def hash(self) -> Optional[str]: + return next(iter(self._hashes.values()), None) + + @property + def hash_name(self) -> Optional[str]: + return next(iter(self._hashes), None) + + @property + def show_url(self) -> str: + return posixpath.basename(self._url.split("#", 1)[0].split("?", 1)[0]) + + @property + def is_file(self) -> bool: + return self.scheme == "file" + + def is_existing_dir(self) -> bool: + return self.is_file and os.path.isdir(self.file_path) + + @property + def is_wheel(self) -> bool: + return self.ext == WHEEL_EXTENSION + + @property + def is_vcs(self) -> bool: + from pip._internal.vcs import vcs + + return self.scheme in vcs.all_schemes + + @property + def is_yanked(self) -> bool: + return self.yanked_reason is not None + + @property + def has_hash(self) -> bool: + return bool(self._hashes) + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the link has a hash and it is allowed by `hashes`. + """ + if hashes is None: + return False + return any(hashes.is_hash_allowed(k, v) for k, v in self._hashes.items()) + + +class _CleanResult(NamedTuple): + """Convert link for equivalency check. + + This is used in the resolver to check whether two URL-specified requirements + likely point to the same distribution and can be considered equivalent. This + equivalency logic avoids comparing URLs literally, which can be too strict + (e.g. "a=1&b=2" vs "b=2&a=1") and produce conflicts unexpecting to users. + + Currently this does three things: + + 1. Drop the basic auth part. This is technically wrong since a server can + serve different content based on auth, but if it does that, it is even + impossible to guarantee two URLs without auth are equivalent, since + the user can input different auth information when prompted. So the + practical solution is to assume the auth doesn't affect the response. + 2. Parse the query to avoid the ordering issue. Note that ordering under the + same key in the query are NOT cleaned; i.e. "a=1&a=2" and "a=2&a=1" are + still considered different. + 3. Explicitly drop most of the fragment part, except ``subdirectory=`` and + hash values, since it should have no impact the downloaded content. Note + that this drops the "egg=" part historically used to denote the requested + project (and extras), which is wrong in the strictest sense, but too many + people are supplying it inconsistently to cause superfluous resolution + conflicts, so we choose to also ignore them. + """ + + parsed: urllib.parse.SplitResult + query: Dict[str, List[str]] + subdirectory: str + hashes: Dict[str, str] + + +def _clean_link(link: Link) -> _CleanResult: + parsed = link._parsed_url + netloc = parsed.netloc.rsplit("@", 1)[-1] + # According to RFC 8089, an empty host in file: means localhost. + if parsed.scheme == "file" and not netloc: + netloc = "localhost" + fragment = urllib.parse.parse_qs(parsed.fragment) + if "egg" in fragment: + logger.debug("Ignoring egg= fragment in %s", link) + try: + # If there are multiple subdirectory values, use the first one. + # This matches the behavior of Link.subdirectory_fragment. + subdirectory = fragment["subdirectory"][0] + except (IndexError, KeyError): + subdirectory = "" + # If there are multiple hash values under the same algorithm, use the + # first one. This matches the behavior of Link.hash_value. + hashes = {k: fragment[k][0] for k in _SUPPORTED_HASHES if k in fragment} + return _CleanResult( + parsed=parsed._replace(netloc=netloc, query="", fragment=""), + query=urllib.parse.parse_qs(parsed.query), + subdirectory=subdirectory, + hashes=hashes, + ) + + +@functools.lru_cache(maxsize=None) +def links_equivalent(link1: Link, link2: Link) -> bool: + return _clean_link(link1) == _clean_link(link2) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 00000000..f51190ac --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py @@ -0,0 +1,31 @@ +""" +For types associated with installation schemes. + +For a general overview of available schemes and their context, see +https://docs.python.org/3/install/index.html#alternate-installation. +""" + + +SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] + + +class Scheme: + """A Scheme holds paths which are used as the base directories for + artifacts associated with a Python package. + """ + + __slots__ = SCHEME_KEYS + + def __init__( + self, + platlib: str, + purelib: str, + headers: str, + scripts: str, + data: str, + ) -> None: + self.platlib = platlib + self.purelib = purelib + self.headers = headers + self.scripts = scripts + self.data = data diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 00000000..fe61e811 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,132 @@ +import itertools +import logging +import os +import posixpath +import urllib.parse +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.models.index import PyPI +from pip._internal.utils.compat import has_tls +from pip._internal.utils.misc import normalize_path, redact_auth_from_url + +logger = logging.getLogger(__name__) + + +class SearchScope: + + """ + Encapsulates the locations that pip is configured to search. + """ + + __slots__ = ["find_links", "index_urls", "no_index"] + + @classmethod + def create( + cls, + find_links: List[str], + index_urls: List[str], + no_index: bool, + ) -> "SearchScope": + """ + Create a SearchScope object after normalizing the `find_links`. + """ + # Build find_links. If an argument starts with ~, it may be + # a local file relative to a home directory. So try normalizing + # it and if it exists, use the normalized version. + # This is deliberately conservative - it might be fine just to + # blindly normalize anything starting with a ~... + built_find_links: List[str] = [] + for link in find_links: + if link.startswith("~"): + new_link = normalize_path(link) + if os.path.exists(new_link): + link = new_link + built_find_links.append(link) + + # If we don't have TLS enabled, then WARN if anyplace we're looking + # relies on TLS. + if not has_tls(): + for link in itertools.chain(index_urls, built_find_links): + parsed = urllib.parse.urlparse(link) + if parsed.scheme == "https": + logger.warning( + "pip is configured with locations that require " + "TLS/SSL, however the ssl module in Python is not " + "available." + ) + break + + return cls( + find_links=built_find_links, + index_urls=index_urls, + no_index=no_index, + ) + + def __init__( + self, + find_links: List[str], + index_urls: List[str], + no_index: bool, + ) -> None: + self.find_links = find_links + self.index_urls = index_urls + self.no_index = no_index + + def get_formatted_locations(self) -> str: + lines = [] + redacted_index_urls = [] + if self.index_urls and self.index_urls != [PyPI.simple_url]: + for url in self.index_urls: + redacted_index_url = redact_auth_from_url(url) + + # Parse the URL + purl = urllib.parse.urlsplit(redacted_index_url) + + # URL is generally invalid if scheme and netloc is missing + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not purl.scheme and not purl.netloc: + logger.warning( + 'The index url "%s" seems invalid, please provide a scheme.', + redacted_index_url, + ) + + redacted_index_urls.append(redacted_index_url) + + lines.append( + "Looking in indexes: {}".format(", ".join(redacted_index_urls)) + ) + + if self.find_links: + lines.append( + "Looking in links: {}".format( + ", ".join(redact_auth_from_url(url) for url in self.find_links) + ) + ) + return "\n".join(lines) + + def get_index_urls_locations(self, project_name: str) -> List[str]: + """Returns the locations found via self.index_urls + + Checks the url_name on the main (first in the list) index and + use this url_name to produce all locations + """ + + def mkurl_pypi_url(url: str) -> str: + loc = posixpath.join( + url, urllib.parse.quote(canonicalize_name(project_name)) + ) + # For maximum compatibility with easy_install, ensure the path + # ends in a trailing slash. Although this isn't in the spec + # (and PyPI can handle it without the slash) some other index + # implementations might break if they relied on easy_install's + # behavior. + if not loc.endswith("/"): + loc = loc + "/" + return loc + + return [mkurl_pypi_url(url) for url in self.index_urls] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 00000000..977bc4ca --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,51 @@ +from typing import Optional + +from pip._internal.models.format_control import FormatControl + + +class SelectionPreferences: + """ + Encapsulates the candidate selection preferences for downloading + and installing files. + """ + + __slots__ = [ + "allow_yanked", + "allow_all_prereleases", + "format_control", + "prefer_binary", + "ignore_requires_python", + ] + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + allow_yanked: bool, + allow_all_prereleases: bool = False, + format_control: Optional[FormatControl] = None, + prefer_binary: bool = False, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """Create a SelectionPreferences object. + + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param format_control: A FormatControl object or None. Used to control + the selection of source packages / binary packages when consulting + the index and links. + :param prefer_binary: Whether to prefer an old, but valid, binary + dist over a new source dist. + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self.allow_yanked = allow_yanked + self.allow_all_prereleases = allow_all_prereleases + self.format_control = format_control + self.prefer_binary = prefer_binary + self.ignore_requires_python = ignore_requires_python diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 00000000..67ea5da7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,122 @@ +import sys +from typing import List, Optional, Set, Tuple + +from pip._vendor.packaging.tags import Tag + +from pip._internal.utils.compatibility_tags import get_supported, version_info_to_nodot +from pip._internal.utils.misc import normalize_version_info + + +class TargetPython: + + """ + Encapsulates the properties of a Python interpreter one is targeting + for a package install, download, etc. + """ + + __slots__ = [ + "_given_py_version_info", + "abis", + "implementation", + "platforms", + "py_version", + "py_version_info", + "_valid_tags", + "_valid_tags_set", + ] + + def __init__( + self, + platforms: Optional[List[str]] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + abis: Optional[List[str]] = None, + implementation: Optional[str] = None, + ) -> None: + """ + :param platforms: A list of strings or None. If None, searches for + packages that are supported by the current system. Otherwise, will + find packages that can be built on the platforms passed in. These + packages will only be downloaded for distribution: they will + not be built locally. + :param py_version_info: An optional tuple of ints representing the + Python version information to use (e.g. `sys.version_info[:3]`). + This can have length 1, 2, or 3 when provided. + :param abis: A list of strings or None. This is passed to + compatibility_tags.py's get_supported() function as is. + :param implementation: A string or None. This is passed to + compatibility_tags.py's get_supported() function as is. + """ + # Store the given py_version_info for when we call get_supported(). + self._given_py_version_info = py_version_info + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + py_version = ".".join(map(str, py_version_info[:2])) + + self.abis = abis + self.implementation = implementation + self.platforms = platforms + self.py_version = py_version + self.py_version_info = py_version_info + + # This is used to cache the return value of get_(un)sorted_tags. + self._valid_tags: Optional[List[Tag]] = None + self._valid_tags_set: Optional[Set[Tag]] = None + + def format_given(self) -> str: + """ + Format the given, non-None attributes for display. + """ + display_version = None + if self._given_py_version_info is not None: + display_version = ".".join( + str(part) for part in self._given_py_version_info + ) + + key_values = [ + ("platforms", self.platforms), + ("version_info", display_version), + ("abis", self.abis), + ("implementation", self.implementation), + ] + return " ".join( + f"{key}={value!r}" for key, value in key_values if value is not None + ) + + def get_sorted_tags(self) -> List[Tag]: + """ + Return the supported PEP 425 tags to check wheel candidates against. + + The tags are returned in order of preference (most preferred first). + """ + if self._valid_tags is None: + # Pass versions=None if no py_version_info was given since + # versions=None uses special default logic. + py_version_info = self._given_py_version_info + if py_version_info is None: + version = None + else: + version = version_info_to_nodot(py_version_info) + + tags = get_supported( + version=version, + platforms=self.platforms, + abis=self.abis, + impl=self.implementation, + ) + self._valid_tags = tags + + return self._valid_tags + + def get_unsorted_tags(self) -> Set[Tag]: + """Exactly the same as get_sorted_tags, but returns a set. + + This is important for performance. + """ + if self._valid_tags_set is None: + self._valid_tags_set = set(self.get_sorted_tags()) + + return self._valid_tags_set diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 00000000..a5dc12bd --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,92 @@ +"""Represents a wheel file and provides access to the various parts of the +name that have meaning. +""" +import re +from typing import Dict, Iterable, List + +from pip._vendor.packaging.tags import Tag + +from pip._internal.exceptions import InvalidWheelFilename + + +class Wheel: + """A wheel file""" + + wheel_file_re = re.compile( + r"""^(?P(?P[^\s-]+?)-(?P[^\s-]*?)) + ((-(?P\d[^-]*?))?-(?P[^\s-]+?)-(?P[^\s-]+?)-(?P[^\s-]+?) + \.whl|\.dist-info)$""", + re.VERBOSE, + ) + + def __init__(self, filename: str) -> None: + """ + :raises InvalidWheelFilename: when the filename is invalid for a wheel + """ + wheel_info = self.wheel_file_re.match(filename) + if not wheel_info: + raise InvalidWheelFilename(f"{filename} is not a valid wheel filename.") + self.filename = filename + self.name = wheel_info.group("name").replace("_", "-") + # we'll assume "_" means "-" due to wheel naming scheme + # (https://github.com/pypa/pip/issues/1150) + self.version = wheel_info.group("ver").replace("_", "-") + self.build_tag = wheel_info.group("build") + self.pyversions = wheel_info.group("pyver").split(".") + self.abis = wheel_info.group("abi").split(".") + self.plats = wheel_info.group("plat").split(".") + + # All the tag combinations from this file + self.file_tags = { + Tag(x, y, z) for x in self.pyversions for y in self.abis for z in self.plats + } + + def get_formatted_file_tags(self) -> List[str]: + """Return the wheel's tags as a sorted list of strings.""" + return sorted(str(tag) for tag in self.file_tags) + + def support_index_min(self, tags: List[Tag]) -> int: + """Return the lowest index that one of the wheel's file_tag combinations + achieves in the given list of supported tags. + + For example, if there are 8 supported tags and one of the file tags + is first in the list, then return 0. + + :param tags: the PEP 425 tags to check the wheel against, in order + with most preferred first. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + try: + return next(i for i, t in enumerate(tags) if t in self.file_tags) + except StopIteration: + raise ValueError() + + def find_most_preferred_tag( + self, tags: List[Tag], tag_to_priority: Dict[Tag, int] + ) -> int: + """Return the priority of the most preferred tag that one of the wheel's file + tag combinations achieves in the given list of supported tags using the given + tag_to_priority mapping, where lower priorities are more-preferred. + + This is used in place of support_index_min in some cases in order to avoid + an expensive linear scan of a large list of tags. + + :param tags: the PEP 425 tags to check the wheel against. + :param tag_to_priority: a mapping from tag to priority of that tag, where + lower is more preferred. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min( + tag_to_priority[tag] for tag in self.file_tags if tag in tag_to_priority + ) + + def supported(self, tags: Iterable[Tag]) -> bool: + """Return whether the wheel is compatible with one of the given tags. + + :param tags: the PEP 425 tags to check the wheel against. + """ + return not self.file_tags.isdisjoint(tags) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 00000000..b51bde91 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..48f9a6e773c0fd78ff4f2bf6707e8b803630cee6 GIT binary patch literal 305 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d964537ad4f86256a07650d61456a27634bec29 GIT binary patch literal 8604 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 I#I)jn0bhEpN&o-= literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8a483e225d5032a1094dd2cad02b6774f18817d6 GIT binary patch literal 11714 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 LF?>JXAcFq`t82Mh literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..deceaac6377299e7dd32b1ecbbf0b1d79fa74657 GIT binary patch literal 18825 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

a2n6!s{0X<_td1J1*Ru1z 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 None: + """Install a package in editable mode. Most arguments are pass-through + to setuptools. + """ + logger.info("Running setup.py develop for %s", name) + + args = make_setuptools_develop_args( + setup_py_path, + global_options=global_options, + no_user_config=isolated, + prefix=prefix, + home=home, + use_user_site=use_user_site, + ) + + with indent_log(): + with build_env: + call_subprocess( + args, + command_desc="python setup.py develop", + cwd=unpacked_source_directory, + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 00000000..f67180c9 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,734 @@ +"""Support for installing and building the "wheel" binary package format. +""" + +import collections +import compileall +import contextlib +import csv +import importlib +import logging +import os.path +import re +import shutil +import sys +import warnings +from base64 import urlsafe_b64encode +from email.message import Message +from itertools import chain, filterfalse, starmap +from typing import ( + IO, + TYPE_CHECKING, + Any, + BinaryIO, + Callable, + Dict, + Generator, + Iterable, + Iterator, + List, + NewType, + Optional, + Sequence, + Set, + Tuple, + Union, + cast, +) +from zipfile import ZipFile, ZipInfo + +from pip._vendor.distlib.scripts import ScriptMaker +from pip._vendor.distlib.util import get_export_entry +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_major_minor_version +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) +from pip._internal.models.direct_url import DIRECT_URL_METADATA_NAME, DirectUrl +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import captured_stdout, ensure_dir, hash_file, partition +from pip._internal.utils.unpacking import ( + current_umask, + is_within_directory, + set_extracted_file_to_default_mode_plus_executable, + zip_item_is_executable, +) +from pip._internal.utils.wheel import parse_wheel + +if TYPE_CHECKING: + from typing import Protocol + + class File(Protocol): + src_record_path: "RecordPath" + dest_path: str + changed: bool + + def save(self) -> None: + pass + + +logger = logging.getLogger(__name__) + +RecordPath = NewType("RecordPath", str) +InstalledCSVRow = Tuple[RecordPath, str, Union[int, str]] + + +def rehash(path: str, blocksize: int = 1 << 20) -> Tuple[str, str]: + """Return (encoded_digest, length) for path using hashlib.sha256()""" + h, length = hash_file(path, blocksize) + digest = "sha256=" + urlsafe_b64encode(h.digest()).decode("latin1").rstrip("=") + return (digest, str(length)) + + +def csv_io_kwargs(mode: str) -> Dict[str, Any]: + """Return keyword arguments to properly open a CSV file + in the given mode. + """ + return {"mode": mode, "newline": "", "encoding": "utf-8"} + + +def fix_script(path: str) -> bool: + """Replace #!python with #!/path/to/python + Return True if file was changed. + """ + # XXX RECORD hashes will need to be updated + assert os.path.isfile(path) + + with open(path, "rb") as script: + firstline = script.readline() + if not firstline.startswith(b"#!python"): + return False + exename = sys.executable.encode(sys.getfilesystemencoding()) + firstline = b"#!" + exename + os.linesep.encode("ascii") + rest = script.read() + with open(path, "wb") as script: + script.write(firstline) + script.write(rest) + return True + + +def wheel_root_is_purelib(metadata: Message) -> bool: + return metadata.get("Root-Is-Purelib", "").lower() == "true" + + +def get_entrypoints(dist: BaseDistribution) -> Tuple[Dict[str, str], Dict[str, str]]: + console_scripts = {} + gui_scripts = {} + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + console_scripts[entry_point.name] = entry_point.value + elif entry_point.group == "gui_scripts": + gui_scripts[entry_point.name] = entry_point.value + return console_scripts, gui_scripts + + +def message_about_scripts_not_on_PATH(scripts: Sequence[str]) -> Optional[str]: + """Determine if any scripts are not on PATH and format a warning. + Returns a warning message if one or more scripts are not on PATH, + otherwise None. + """ + if not scripts: + return None + + # Group scripts by the path they were installed in + grouped_by_dir: Dict[str, Set[str]] = collections.defaultdict(set) + for destfile in scripts: + parent_dir = os.path.dirname(destfile) + script_name = os.path.basename(destfile) + grouped_by_dir[parent_dir].add(script_name) + + # We don't want to warn for directories that are on PATH. + not_warn_dirs = [ + os.path.normcase(os.path.normpath(i)).rstrip(os.sep) + for i in os.environ.get("PATH", "").split(os.pathsep) + ] + # If an executable sits with sys.executable, we don't warn for it. + # This covers the case of venv invocations without activating the venv. + not_warn_dirs.append( + os.path.normcase(os.path.normpath(os.path.dirname(sys.executable))) + ) + warn_for: Dict[str, Set[str]] = { + parent_dir: scripts + for parent_dir, scripts in grouped_by_dir.items() + if os.path.normcase(os.path.normpath(parent_dir)) not in not_warn_dirs + } + if not warn_for: + return None + + # Format a message + msg_lines = [] + for parent_dir, dir_scripts in warn_for.items(): + sorted_scripts: List[str] = sorted(dir_scripts) + if len(sorted_scripts) == 1: + start_text = f"script {sorted_scripts[0]} is" + else: + start_text = "scripts {} are".format( + ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] + ) + + msg_lines.append( + f"The {start_text} installed in '{parent_dir}' which is not on PATH." + ) + + last_line_fmt = ( + "Consider adding {} to PATH or, if you prefer " + "to suppress this warning, use --no-warn-script-location." + ) + if len(msg_lines) == 1: + msg_lines.append(last_line_fmt.format("this directory")) + else: + msg_lines.append(last_line_fmt.format("these directories")) + + # Add a note if any directory starts with ~ + warn_for_tilde = any( + i[0] == "~" for i in os.environ.get("PATH", "").split(os.pathsep) if i + ) + if warn_for_tilde: + tilde_warning_msg = ( + "NOTE: The current PATH contains path(s) starting with `~`, " + "which may not be expanded by all applications." + ) + msg_lines.append(tilde_warning_msg) + + # Returns the formatted multiline message + return "\n".join(msg_lines) + + +def _normalized_outrows( + outrows: Iterable[InstalledCSVRow], +) -> List[Tuple[str, str, str]]: + """Normalize the given rows of a RECORD file. + + Items in each row are converted into str. Rows are then sorted to make + the value more predictable for tests. + + Each row is a 3-tuple (path, hash, size) and corresponds to a record of + a RECORD file (see PEP 376 and PEP 427 for details). For the rows + passed to this function, the size can be an integer as an int or string, + or the empty string. + """ + # Normally, there should only be one row per path, in which case the + # second and third elements don't come into play when sorting. + # However, in cases in the wild where a path might happen to occur twice, + # we don't want the sort operation to trigger an error (but still want + # determinism). Since the third element can be an int or string, we + # coerce each element to a string to avoid a TypeError in this case. + # For additional background, see-- + # https://github.com/pypa/pip/issues/5868 + return sorted( + (record_path, hash_, str(size)) for record_path, hash_, size in outrows + ) + + +def _record_to_fs_path(record_path: RecordPath, lib_dir: str) -> str: + return os.path.join(lib_dir, record_path) + + +def _fs_to_record_path(path: str, lib_dir: str) -> RecordPath: + # On Windows, do not handle relative paths if they belong to different + # logical disks + if os.path.splitdrive(path)[0].lower() == os.path.splitdrive(lib_dir)[0].lower(): + path = os.path.relpath(path, lib_dir) + + path = path.replace(os.path.sep, "/") + return cast("RecordPath", path) + + +def get_csv_rows_for_installed( + old_csv_rows: List[List[str]], + installed: Dict[RecordPath, RecordPath], + changed: Set[RecordPath], + generated: List[str], + lib_dir: str, +) -> List[InstalledCSVRow]: + """ + :param installed: A map from archive RECORD path to installation RECORD + path. + """ + installed_rows: List[InstalledCSVRow] = [] + for row in old_csv_rows: + if len(row) > 3: + logger.warning("RECORD line has more than three elements: %s", row) + old_record_path = cast("RecordPath", row[0]) + new_record_path = installed.pop(old_record_path, old_record_path) + if new_record_path in changed: + digest, length = rehash(_record_to_fs_path(new_record_path, lib_dir)) + else: + digest = row[1] if len(row) > 1 else "" + length = row[2] if len(row) > 2 else "" + installed_rows.append((new_record_path, digest, length)) + for f in generated: + path = _fs_to_record_path(f, lib_dir) + digest, length = rehash(f) + installed_rows.append((path, digest, length)) + return installed_rows + [ + (installed_record_path, "", "") for installed_record_path in installed.values() + ] + + +def get_console_script_specs(console: Dict[str, str]) -> List[str]: + """ + Given the mapping from entrypoint name to callable, return the relevant + console script specs. + """ + # Don't mutate caller's version + console = console.copy() + + scripts_to_generate = [] + + # Special case pip and setuptools to generate versioned wrappers + # + # The issue is that some projects (specifically, pip and setuptools) use + # code in setup.py to create "versioned" entry points - pip2.7 on Python + # 2.7, pip3.3 on Python 3.3, etc. But these entry points are baked into + # the wheel metadata at build time, and so if the wheel is installed with + # a *different* version of Python the entry points will be wrong. The + # correct fix for this is to enhance the metadata to be able to describe + # such versioned entry points, but that won't happen till Metadata 2.0 is + # available. + # In the meantime, projects using versioned entry points will either have + # incorrect versioned entry points, or they will not be able to distribute + # "universal" wheels (i.e., they will need a wheel per Python version). + # + # Because setuptools and pip are bundled with _ensurepip and virtualenv, + # we need to use universal wheels. So, as a stopgap until Metadata 2.0, we + # override the versioned entry points in the wheel and generate the + # correct ones. This code is purely a short-term measure until Metadata 2.0 + # is available. + # + # To add the level of hack in this section of code, in order to support + # ensurepip this code will look for an ``ENSUREPIP_OPTIONS`` environment + # variable which will control which version scripts get installed. + # + # ENSUREPIP_OPTIONS=altinstall + # - Only pipX.Y and easy_install-X.Y will be generated and installed + # ENSUREPIP_OPTIONS=install + # - pipX.Y, pipX, easy_install-X.Y will be generated and installed. Note + # that this option is technically if ENSUREPIP_OPTIONS is set and is + # not altinstall + # DEFAULT + # - The default behavior is to install pip, pipX, pipX.Y, easy_install + # and easy_install-X.Y. + pip_script = console.pop("pip", None) + if pip_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("pip = " + pip_script) + + if os.environ.get("ENSUREPIP_OPTIONS", "") != "altinstall": + scripts_to_generate.append(f"pip{sys.version_info[0]} = {pip_script}") + + scripts_to_generate.append(f"pip{get_major_minor_version()} = {pip_script}") + # Delete any other versioned pip entry points + pip_ep = [k for k in console if re.match(r"pip(\d+(\.\d+)?)?$", k)] + for k in pip_ep: + del console[k] + easy_install_script = console.pop("easy_install", None) + if easy_install_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("easy_install = " + easy_install_script) + + scripts_to_generate.append( + f"easy_install-{get_major_minor_version()} = {easy_install_script}" + ) + # Delete any other versioned easy_install entry points + easy_install_ep = [ + k for k in console if re.match(r"easy_install(-\d+\.\d+)?$", k) + ] + for k in easy_install_ep: + del console[k] + + # Generate the console entry points specified in the wheel + scripts_to_generate.extend(starmap("{} = {}".format, console.items())) + + return scripts_to_generate + + +class ZipBackedFile: + def __init__( + self, src_record_path: RecordPath, dest_path: str, zip_file: ZipFile + ) -> None: + self.src_record_path = src_record_path + self.dest_path = dest_path + self._zip_file = zip_file + self.changed = False + + def _getinfo(self) -> ZipInfo: + return self._zip_file.getinfo(self.src_record_path) + + def save(self) -> None: + # directory creation is lazy and after file filtering + # to ensure we don't install empty dirs; empty dirs can't be + # uninstalled. + parent_dir = os.path.dirname(self.dest_path) + ensure_dir(parent_dir) + + # When we open the output file below, any existing file is truncated + # before we start writing the new contents. This is fine in most + # cases, but can cause a segfault if pip has loaded a shared + # object (e.g. from pyopenssl through its vendored urllib3) + # Since the shared object is mmap'd an attempt to call a + # symbol in it will then cause a segfault. Unlinking the file + # allows writing of new contents while allowing the process to + # continue to use the old copy. + if os.path.exists(self.dest_path): + os.unlink(self.dest_path) + + zipinfo = self._getinfo() + + with self._zip_file.open(zipinfo) as f: + with open(self.dest_path, "wb") as dest: + shutil.copyfileobj(f, dest) + + if zip_item_is_executable(zipinfo): + set_extracted_file_to_default_mode_plus_executable(self.dest_path) + + +class ScriptFile: + def __init__(self, file: "File") -> None: + self._file = file + self.src_record_path = self._file.src_record_path + self.dest_path = self._file.dest_path + self.changed = False + + def save(self) -> None: + self._file.save() + self.changed = fix_script(self.dest_path) + + +class MissingCallableSuffix(InstallationError): + def __init__(self, entry_point: str) -> None: + super().__init__( + f"Invalid script entry point: {entry_point} - A callable " + "suffix is required. Cf https://packaging.python.org/" + "specifications/entry-points/#use-for-scripts for more " + "information." + ) + + +def _raise_for_invalid_entrypoint(specification: str) -> None: + entry = get_export_entry(specification) + if entry is not None and entry.suffix is None: + raise MissingCallableSuffix(str(entry)) + + +class PipScriptMaker(ScriptMaker): + def make( + self, specification: str, options: Optional[Dict[str, Any]] = None + ) -> List[str]: + _raise_for_invalid_entrypoint(specification) + return super().make(specification, options) + + +def _install_wheel( + name: str, + wheel_zip: ZipFile, + wheel_path: str, + scheme: Scheme, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + """Install a wheel. + + :param name: Name of the project to install + :param wheel_zip: open ZipFile for wheel being installed + :param scheme: Distutils scheme dictating the install directories + :param req_description: String used in place of the requirement, for + logging + :param pycompile: Whether to byte-compile installed Python files + :param warn_script_location: Whether to check that scripts are installed + into a directory on PATH + :raises UnsupportedWheel: + * when the directory holds an unpacked wheel with incompatible + Wheel-Version + * when the .dist-info dir does not match the wheel + """ + info_dir, metadata = parse_wheel(wheel_zip, name) + + if wheel_root_is_purelib(metadata): + lib_dir = scheme.purelib + else: + lib_dir = scheme.platlib + + # Record details of the files moved + # installed = files copied from the wheel to the destination + # changed = files changed while installing (scripts #! line typically) + # generated = files newly generated during the install (script wrappers) + installed: Dict[RecordPath, RecordPath] = {} + changed: Set[RecordPath] = set() + generated: List[str] = [] + + def record_installed( + srcfile: RecordPath, destfile: str, modified: bool = False + ) -> None: + """Map archive RECORD paths to installation RECORD paths.""" + newpath = _fs_to_record_path(destfile, lib_dir) + installed[srcfile] = newpath + if modified: + changed.add(newpath) + + def is_dir_path(path: RecordPath) -> bool: + return path.endswith("/") + + def assert_no_path_traversal(dest_dir_path: str, target_path: str) -> None: + if not is_within_directory(dest_dir_path, target_path): + message = ( + "The wheel {!r} has a file {!r} trying to install" + " outside the target directory {!r}" + ) + raise InstallationError( + message.format(wheel_path, target_path, dest_dir_path) + ) + + def root_scheme_file_maker( + zip_file: ZipFile, dest: str + ) -> Callable[[RecordPath], "File"]: + def make_root_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + dest_path = os.path.join(dest, normed_path) + assert_no_path_traversal(dest, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_root_scheme_file + + def data_scheme_file_maker( + zip_file: ZipFile, scheme: Scheme + ) -> Callable[[RecordPath], "File"]: + scheme_paths = {key: getattr(scheme, key) for key in SCHEME_KEYS} + + def make_data_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + try: + _, scheme_key, dest_subpath = normed_path.split(os.path.sep, 2) + except ValueError: + message = ( + "Unexpected file in {}: {!r}. .data directory contents" + " should be named like: '/'." + ).format(wheel_path, record_path) + raise InstallationError(message) + + try: + scheme_path = scheme_paths[scheme_key] + except KeyError: + valid_scheme_keys = ", ".join(sorted(scheme_paths)) + message = ( + "Unknown scheme key used in {}: {} (for file {!r}). .data" + " directory contents should be in subdirectories named" + " with a valid scheme key ({})" + ).format(wheel_path, scheme_key, record_path, valid_scheme_keys) + raise InstallationError(message) + + dest_path = os.path.join(scheme_path, dest_subpath) + assert_no_path_traversal(scheme_path, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_data_scheme_file + + def is_data_scheme_path(path: RecordPath) -> bool: + return path.split("/", 1)[0].endswith(".data") + + paths = cast(List[RecordPath], wheel_zip.namelist()) + file_paths = filterfalse(is_dir_path, paths) + root_scheme_paths, data_scheme_paths = partition(is_data_scheme_path, file_paths) + + make_root_scheme_file = root_scheme_file_maker(wheel_zip, lib_dir) + files: Iterator[File] = map(make_root_scheme_file, root_scheme_paths) + + def is_script_scheme_path(path: RecordPath) -> bool: + parts = path.split("/", 2) + return len(parts) > 2 and parts[0].endswith(".data") and parts[1] == "scripts" + + other_scheme_paths, script_scheme_paths = partition( + is_script_scheme_path, data_scheme_paths + ) + + make_data_scheme_file = data_scheme_file_maker(wheel_zip, scheme) + other_scheme_files = map(make_data_scheme_file, other_scheme_paths) + files = chain(files, other_scheme_files) + + # Get the defined entry points + distribution = get_wheel_distribution( + FilesystemWheel(wheel_path), + canonicalize_name(name), + ) + console, gui = get_entrypoints(distribution) + + def is_entrypoint_wrapper(file: "File") -> bool: + # EP, EP.exe and EP-script.py are scripts generated for + # entry point EP by setuptools + path = file.dest_path + name = os.path.basename(path) + if name.lower().endswith(".exe"): + matchname = name[:-4] + elif name.lower().endswith("-script.py"): + matchname = name[:-10] + elif name.lower().endswith(".pya"): + matchname = name[:-4] + else: + matchname = name + # Ignore setuptools-generated scripts + return matchname in console or matchname in gui + + script_scheme_files: Iterator[File] = map( + make_data_scheme_file, script_scheme_paths + ) + script_scheme_files = filterfalse(is_entrypoint_wrapper, script_scheme_files) + script_scheme_files = map(ScriptFile, script_scheme_files) + files = chain(files, script_scheme_files) + + for file in files: + file.save() + record_installed(file.src_record_path, file.dest_path, file.changed) + + def pyc_source_file_paths() -> Generator[str, None, None]: + # We de-duplicate installation paths, since there can be overlap (e.g. + # file in .data maps to same location as file in wheel root). + # Sorting installation paths makes it easier to reproduce and debug + # issues related to permissions on existing files. + for installed_path in sorted(set(installed.values())): + full_installed_path = os.path.join(lib_dir, installed_path) + if not os.path.isfile(full_installed_path): + continue + if not full_installed_path.endswith(".py"): + continue + yield full_installed_path + + def pyc_output_path(path: str) -> str: + """Return the path the pyc file would have been written to.""" + return importlib.util.cache_from_source(path) + + # Compile all of the pyc files for the installed files + if pycompile: + with captured_stdout() as stdout: + with warnings.catch_warnings(): + warnings.filterwarnings("ignore") + for path in pyc_source_file_paths(): + success = compileall.compile_file(path, force=True, quiet=True) + if success: + pyc_path = pyc_output_path(path) + assert os.path.exists(pyc_path) + pyc_record_path = cast( + "RecordPath", pyc_path.replace(os.path.sep, "/") + ) + record_installed(pyc_record_path, pyc_path) + logger.debug(stdout.getvalue()) + + maker = PipScriptMaker(None, scheme.scripts) + + # Ensure old scripts are overwritten. + # See https://github.com/pypa/pip/issues/1800 + maker.clobber = True + + # Ensure we don't generate any variants for scripts because this is almost + # never what somebody wants. + # See https://bitbucket.org/pypa/distlib/issue/35/ + maker.variants = {""} + + # This is required because otherwise distlib creates scripts that are not + # executable. + # See https://bitbucket.org/pypa/distlib/issue/32/ + maker.set_mode = True + + # Generate the console and GUI entry points specified in the wheel + scripts_to_generate = get_console_script_specs(console) + + gui_scripts_to_generate = list(starmap("{} = {}".format, gui.items())) + + generated_console_scripts = maker.make_multiple(scripts_to_generate) + generated.extend(generated_console_scripts) + + generated.extend(maker.make_multiple(gui_scripts_to_generate, {"gui": True})) + + if warn_script_location: + msg = message_about_scripts_not_on_PATH(generated_console_scripts) + if msg is not None: + logger.warning(msg) + + generated_file_mode = 0o666 & ~current_umask() + + @contextlib.contextmanager + def _generate_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + with adjacent_tmp_file(path, **kwargs) as f: + yield f + os.chmod(f.name, generated_file_mode) + replace(f.name, path) + + dest_info_dir = os.path.join(lib_dir, info_dir) + + # Record pip as the installer + installer_path = os.path.join(dest_info_dir, "INSTALLER") + with _generate_file(installer_path) as installer_file: + installer_file.write(b"pip\n") + generated.append(installer_path) + + # Record the PEP 610 direct URL reference + if direct_url is not None: + direct_url_path = os.path.join(dest_info_dir, DIRECT_URL_METADATA_NAME) + with _generate_file(direct_url_path) as direct_url_file: + direct_url_file.write(direct_url.to_json().encode("utf-8")) + generated.append(direct_url_path) + + # Record the REQUESTED file + if requested: + requested_path = os.path.join(dest_info_dir, "REQUESTED") + with open(requested_path, "wb"): + pass + generated.append(requested_path) + + record_text = distribution.read_text("RECORD") + record_rows = list(csv.reader(record_text.splitlines())) + + rows = get_csv_rows_for_installed( + record_rows, + installed=installed, + changed=changed, + generated=generated, + lib_dir=lib_dir, + ) + + # Record details of all files installed + record_path = os.path.join(dest_info_dir, "RECORD") + + with _generate_file(record_path, **csv_io_kwargs("w")) as record_file: + # Explicitly cast to typing.IO[str] as a workaround for the mypy error: + # "writer" has incompatible type "BinaryIO"; expected "_Writer" + writer = csv.writer(cast("IO[str]", record_file)) + writer.writerows(_normalized_outrows(rows)) + + +@contextlib.contextmanager +def req_error_context(req_description: str) -> Generator[None, None, None]: + try: + yield + except InstallationError as e: + message = f"For req: {req_description}. {e.args[0]}" + raise InstallationError(message) from e + + +def install_wheel( + name: str, + wheel_path: str, + scheme: Scheme, + req_description: str, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + with ZipFile(wheel_path, allowZip64=True) as z: + with req_error_context(req_description): + _install_wheel( + name=name, + wheel_zip=z, + wheel_path=wheel_path, + scheme=scheme, + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=requested, + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 00000000..956717d1 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,730 @@ +"""Prepares a distribution for installation +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import mimetypes +import os +import shutil +from pathlib import Path +from typing import Dict, Iterable, List, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.distributions.installed import InstalledDistribution +from pip._internal.exceptions import ( + DirectoryUrlHashUnsupported, + HashMismatch, + HashUnpinned, + InstallationError, + MetadataInconsistent, + NetworkConnectionError, + VcsHashUnsupported, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_metadata_distribution +from pip._internal.models.direct_url import ArchiveInfo +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.network.download import BatchDownloader, Downloader +from pip._internal.network.lazy_wheel import ( + HTTPRangeRequestUnsupported, + dist_from_wheel_url, +) +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.direct_url_helpers import ( + direct_url_for_editable, + direct_url_from_link, +) +from pip._internal.utils.hashes import Hashes, MissingHashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ( + display_path, + hash_file, + hide_url, + redact_auth_from_requirement, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.unpacking import unpack_file +from pip._internal.vcs import vcs + +logger = getLogger(__name__) + + +def _get_prepared_distribution( + req: InstallRequirement, + build_tracker: BuildTracker, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, +) -> BaseDistribution: + """Prepare a distribution for installation.""" + abstract_dist = make_distribution_for_install_requirement(req) + tracker_id = abstract_dist.build_tracker_id + if tracker_id is not None: + with build_tracker.track(req, tracker_id): + abstract_dist.prepare_distribution_metadata( + finder, build_isolation, check_build_deps + ) + return abstract_dist.get_metadata_distribution() + + +def unpack_vcs_link(link: Link, location: str, verbosity: int) -> None: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend is not None + vcs_backend.unpack(location, url=hide_url(link.url), verbosity=verbosity) + + +class File: + def __init__(self, path: str, content_type: Optional[str]) -> None: + self.path = path + if content_type is None: + self.content_type = mimetypes.guess_type(path)[0] + else: + self.content_type = content_type + + +def get_http_url( + link: Link, + download: Downloader, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> File: + temp_dir = TempDirectory(kind="unpack", globally_managed=True) + # If a download dir is specified, is the file already downloaded there? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + content_type = None + else: + # let's download to a tmp dir + from_path, content_type = download(link, temp_dir.path) + if hashes: + hashes.check_against_path(from_path) + + return File(from_path, content_type) + + +def get_file_url( + link: Link, download_dir: Optional[str] = None, hashes: Optional[Hashes] = None +) -> File: + """Get file and optionally check its hash.""" + # If a download dir is specified, is the file already there and valid? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + else: + from_path = link.file_path + + # If --require-hashes is off, `hashes` is either empty, the + # link's embedded hash, or MissingHashes; it is required to + # match. If --require-hashes is on, we are satisfied by any + # hash in `hashes` matching: a URL-based or an option-based + # one; no internet-sourced hash will be in `hashes`. + if hashes: + hashes.check_against_path(from_path) + return File(from_path, None) + + +def unpack_url( + link: Link, + location: str, + download: Downloader, + verbosity: int, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> Optional[File]: + """Unpack link into location, downloading if required. + + :param hashes: A Hashes object, one of whose embedded hashes must match, + or HashMismatch will be raised. If the Hashes is empty, no matches are + required, and unhashable types of requirements (like VCS ones, which + would ordinarily raise HashUnsupported) are allowed. + """ + # non-editable vcs urls + if link.is_vcs: + unpack_vcs_link(link, location, verbosity=verbosity) + return None + + assert not link.is_existing_dir() + + # file urls + if link.is_file: + file = get_file_url(link, download_dir, hashes=hashes) + + # http urls + else: + file = get_http_url( + link, + download, + download_dir, + hashes=hashes, + ) + + # unpack the archive to the build dir location. even when only downloading + # archives, they have to be unpacked to parse dependencies, except wheels + if not link.is_wheel: + unpack_file(file.path, location, file.content_type) + + return file + + +def _check_download_dir( + link: Link, + download_dir: str, + hashes: Optional[Hashes], + warn_on_hash_mismatch: bool = True, +) -> Optional[str]: + """Check download_dir for previously downloaded file with correct hash + If a correct file is found return its path else None + """ + download_path = os.path.join(download_dir, link.filename) + + if not os.path.exists(download_path): + return None + + # If already downloaded, does its hash match? + logger.info("File was already downloaded %s", download_path) + if hashes: + try: + hashes.check_against_path(download_path) + except HashMismatch: + if warn_on_hash_mismatch: + logger.warning( + "Previously-downloaded file %s has bad hash. Re-downloading.", + download_path, + ) + os.unlink(download_path) + return None + return download_path + + +class RequirementPreparer: + """Prepares a Requirement""" + + def __init__( + self, + build_dir: str, + download_dir: Optional[str], + src_dir: str, + build_isolation: bool, + check_build_deps: bool, + build_tracker: BuildTracker, + session: PipSession, + progress_bar: str, + finder: PackageFinder, + require_hashes: bool, + use_user_site: bool, + lazy_wheel: bool, + verbosity: int, + legacy_resolver: bool, + ) -> None: + super().__init__() + + self.src_dir = src_dir + self.build_dir = build_dir + self.build_tracker = build_tracker + self._session = session + self._download = Downloader(session, progress_bar) + self._batch_download = BatchDownloader(session, progress_bar) + self.finder = finder + + # Where still-packed archives should be written to. If None, they are + # not saved, and are deleted immediately after unpacking. + self.download_dir = download_dir + + # Is build isolation allowed? + self.build_isolation = build_isolation + + # Should check build dependencies? + self.check_build_deps = check_build_deps + + # Should hash-checking be required? + self.require_hashes = require_hashes + + # Should install in user site-packages? + self.use_user_site = use_user_site + + # Should wheels be downloaded lazily? + self.use_lazy_wheel = lazy_wheel + + # How verbose should underlying tooling be? + self.verbosity = verbosity + + # Are we using the legacy resolver? + self.legacy_resolver = legacy_resolver + + # Memoized downloaded files, as mapping of url: path. + self._downloaded: Dict[str, str] = {} + + # Previous "header" printed for a link-based InstallRequirement + self._previous_requirement_header = ("", "") + + def _log_preparing_link(self, req: InstallRequirement) -> None: + """Provide context for the requirement being prepared.""" + if req.link.is_file and not req.is_wheel_from_cache: + message = "Processing %s" + information = str(display_path(req.link.file_path)) + else: + message = "Collecting %s" + information = redact_auth_from_requirement(req.req) if req.req else str(req) + + # If we used req.req, inject requirement source if available (this + # would already be included if we used req directly) + if req.req and req.comes_from: + if isinstance(req.comes_from, str): + comes_from: Optional[str] = req.comes_from + else: + comes_from = req.comes_from.from_path() + if comes_from: + information += f" (from {comes_from})" + + if (message, information) != self._previous_requirement_header: + self._previous_requirement_header = (message, information) + logger.info(message, information) + + if req.is_wheel_from_cache: + with indent_log(): + logger.info("Using cached %s", req.link.filename) + + def _ensure_link_req_src_dir( + self, req: InstallRequirement, parallel_builds: bool + ) -> None: + """Ensure source_dir of a linked InstallRequirement.""" + # Since source_dir is only set for editable requirements. + if req.link.is_wheel: + # We don't need to unpack wheels, so no need for a source + # directory. + return + assert req.source_dir is None + if req.link.is_existing_dir(): + # build local directories in-tree + req.source_dir = req.link.file_path + return + + # We always delete unpacked sdists after pip runs. + req.ensure_has_source_dir( + self.build_dir, + autodelete=True, + parallel_builds=parallel_builds, + ) + req.ensure_pristine_source_checkout() + + def _get_linked_req_hashes(self, req: InstallRequirement) -> Hashes: + # By the time this is called, the requirement's link should have + # been checked so we can tell what kind of requirements req is + # and raise some more informative errors than otherwise. + # (For example, we can raise VcsHashUnsupported for a VCS URL + # rather than HashMissing.) + if not self.require_hashes: + return req.hashes(trust_internet=True) + + # We could check these first 2 conditions inside unpack_url + # and save repetition of conditions, but then we would + # report less-useful error messages for unhashable + # requirements, complaining that there's no hash provided. + if req.link.is_vcs: + raise VcsHashUnsupported() + if req.link.is_existing_dir(): + raise DirectoryUrlHashUnsupported() + + # Unpinned packages are asking for trouble when a new version + # is uploaded. This isn't a security check, but it saves users + # a surprising hash mismatch in the future. + # file:/// URLs aren't pinnable, so don't complain about them + # not being pinned. + if not req.is_direct and not req.is_pinned: + raise HashUnpinned() + + # If known-good hashes are missing for this requirement, + # shim it with a facade object that will provoke hash + # computation and then raise a HashMissing exception + # showing the user what the hash should be. + return req.hashes(trust_internet=False) or MissingHashes() + + def _fetch_metadata_only( + self, + req: InstallRequirement, + ) -> Optional[BaseDistribution]: + if self.legacy_resolver: + logger.debug( + "Metadata-only fetching is not used in the legacy resolver", + ) + return None + if self.require_hashes: + logger.debug( + "Metadata-only fetching is not used as hash checking is required", + ) + return None + # Try PEP 658 metadata first, then fall back to lazy wheel if unavailable. + return self._fetch_metadata_using_link_data_attr( + req + ) or self._fetch_metadata_using_lazy_wheel(req.link) + + def _fetch_metadata_using_link_data_attr( + self, + req: InstallRequirement, + ) -> Optional[BaseDistribution]: + """Fetch metadata from the data-dist-info-metadata attribute, if possible.""" + # (1) Get the link to the metadata file, if provided by the backend. + metadata_link = req.link.metadata_link() + if metadata_link is None: + return None + assert req.req is not None + logger.verbose( + "Obtaining dependency information for %s from %s", + req.req, + metadata_link, + ) + # (2) Download the contents of the METADATA file, separate from the dist itself. + metadata_file = get_http_url( + metadata_link, + self._download, + hashes=metadata_link.as_hashes(), + ) + with open(metadata_file.path, "rb") as f: + metadata_contents = f.read() + # (3) Generate a dist just from those file contents. + metadata_dist = get_metadata_distribution( + metadata_contents, + req.link.filename, + req.req.name, + ) + # (4) Ensure the Name: field from the METADATA file matches the name from the + # install requirement. + # + # NB: raw_name will fall back to the name from the install requirement if + # the Name: field is not present, but it's noted in the raw_name docstring + # that that should NEVER happen anyway. + if canonicalize_name(metadata_dist.raw_name) != canonicalize_name(req.req.name): + raise MetadataInconsistent( + req, "Name", req.req.name, metadata_dist.raw_name + ) + return metadata_dist + + def _fetch_metadata_using_lazy_wheel( + self, + link: Link, + ) -> Optional[BaseDistribution]: + """Fetch metadata using lazy wheel, if possible.""" + # --use-feature=fast-deps must be provided. + if not self.use_lazy_wheel: + return None + if link.is_file or not link.is_wheel: + logger.debug( + "Lazy wheel is not used as %r does not point to a remote wheel", + link, + ) + return None + + wheel = Wheel(link.filename) + name = canonicalize_name(wheel.name) + logger.info( + "Obtaining dependency information from %s %s", + name, + wheel.version, + ) + url = link.url.split("#", 1)[0] + try: + return dist_from_wheel_url(name, url, self._session) + except HTTPRangeRequestUnsupported: + logger.debug("%s does not support range requests", url) + return None + + def _complete_partial_requirements( + self, + partially_downloaded_reqs: Iterable[InstallRequirement], + parallel_builds: bool = False, + ) -> None: + """Download any requirements which were only fetched by metadata.""" + # Download to a temporary directory. These will be copied over as + # needed for downstream 'download', 'wheel', and 'install' commands. + temp_dir = TempDirectory(kind="unpack", globally_managed=True).path + + # Map each link to the requirement that owns it. This allows us to set + # `req.local_file_path` on the appropriate requirement after passing + # all the links at once into BatchDownloader. + links_to_fully_download: Dict[Link, InstallRequirement] = {} + for req in partially_downloaded_reqs: + assert req.link + links_to_fully_download[req.link] = req + + batch_download = self._batch_download( + links_to_fully_download.keys(), + temp_dir, + ) + for link, (filepath, _) in batch_download: + logger.debug("Downloading link %s to %s", link, filepath) + req = links_to_fully_download[link] + # Record the downloaded file path so wheel reqs can extract a Distribution + # in .get_dist(). + req.local_file_path = filepath + # Record that the file is downloaded so we don't do it again in + # _prepare_linked_requirement(). + self._downloaded[req.link.url] = filepath + + # If this is an sdist, we need to unpack it after downloading, but the + # .source_dir won't be set up until we are in _prepare_linked_requirement(). + # Add the downloaded archive to the install requirement to unpack after + # preparing the source dir. + if not req.is_wheel: + req.needs_unpacked_archive(Path(filepath)) + + # This step is necessary to ensure all lazy wheels are processed + # successfully by the 'download', 'wheel', and 'install' commands. + for req in partially_downloaded_reqs: + self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool = False + ) -> BaseDistribution: + """Prepare a requirement to be obtained from req.link.""" + assert req.link + self._log_preparing_link(req) + with indent_log(): + # Check if the relevant file is already available + # in the download directory + file_path = None + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir( + req.link, + self.download_dir, + hashes, + # When a locally built wheel has been found in cache, we don't warn + # about re-downloading when the already downloaded wheel hash does + # not match. This is because the hash must be checked against the + # original link, not the cached link. It that case the already + # downloaded file will be removed and re-fetched from cache (which + # implies a hash check against the cache entry's origin.json). + warn_on_hash_mismatch=not req.is_wheel_from_cache, + ) + + if file_path is not None: + # The file is already available, so mark it as downloaded + self._downloaded[req.link.url] = file_path + else: + # The file is not available, attempt to fetch only metadata + metadata_dist = self._fetch_metadata_only(req) + if metadata_dist is not None: + req.needs_more_preparation = True + return metadata_dist + + # None of the optimizations worked, fully prepare the requirement + return self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirements_more( + self, reqs: Iterable[InstallRequirement], parallel_builds: bool = False + ) -> None: + """Prepare linked requirements more, if needed.""" + reqs = [req for req in reqs if req.needs_more_preparation] + for req in reqs: + # Determine if any of these requirements were already downloaded. + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + if file_path is not None: + self._downloaded[req.link.url] = file_path + req.needs_more_preparation = False + + # Prepare requirements we found were already downloaded for some + # reason. The other downloads will be completed separately. + partially_downloaded_reqs: List[InstallRequirement] = [] + for req in reqs: + if req.needs_more_preparation: + partially_downloaded_reqs.append(req) + else: + self._prepare_linked_requirement(req, parallel_builds) + + # TODO: separate this part out from RequirementPreparer when the v1 + # resolver can be removed! + self._complete_partial_requirements( + partially_downloaded_reqs, + parallel_builds=parallel_builds, + ) + + def _prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool + ) -> BaseDistribution: + assert req.link + link = req.link + + hashes = self._get_linked_req_hashes(req) + + if hashes and req.is_wheel_from_cache: + assert req.download_info is not None + assert link.is_wheel + assert link.is_file + # We need to verify hashes, and we have found the requirement in the cache + # of locally built wheels. + if ( + isinstance(req.download_info.info, ArchiveInfo) + and req.download_info.info.hashes + and hashes.has_one_of(req.download_info.info.hashes) + ): + # At this point we know the requirement was built from a hashable source + # artifact, and we verified that the cache entry's hash of the original + # artifact matches one of the hashes we expect. We don't verify hashes + # against the cached wheel, because the wheel is not the original. + hashes = None + else: + logger.warning( + "The hashes of the source archive found in cache entry " + "don't match, ignoring cached built wheel " + "and re-downloading source." + ) + req.link = req.cached_wheel_source_link + link = req.link + + self._ensure_link_req_src_dir(req, parallel_builds) + + if link.is_existing_dir(): + local_file = None + elif link.url not in self._downloaded: + try: + local_file = unpack_url( + link, + req.source_dir, + self._download, + self.verbosity, + self.download_dir, + hashes, + ) + except NetworkConnectionError as exc: + raise InstallationError( + f"Could not install requirement {req} because of HTTP " + f"error {exc} for URL {link}" + ) + else: + file_path = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type=None) + + # If download_info is set, we got it from the wheel cache. + if req.download_info is None: + # Editables don't go through this function (see + # prepare_editable_requirement). + assert not req.editable + req.download_info = direct_url_from_link(link, req.source_dir) + # Make sure we have a hash in download_info. If we got it as part of the + # URL, it will have been verified and we can rely on it. Otherwise we + # compute it from the downloaded file. + # FIXME: https://github.com/pypa/pip/issues/11943 + if ( + isinstance(req.download_info.info, ArchiveInfo) + and not req.download_info.info.hashes + and local_file + ): + hash = hash_file(local_file.path)[0].hexdigest() + # We populate info.hash for backward compatibility. + # This will automatically populate info.hashes. + req.download_info.info.hash = f"sha256={hash}" + + # For use in later processing, + # preserve the file path on the requirement. + if local_file: + req.local_file_path = local_file.path + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.finder, + self.build_isolation, + self.check_build_deps, + ) + return dist + + def save_linked_requirement(self, req: InstallRequirement) -> None: + assert self.download_dir is not None + assert req.link is not None + link = req.link + if link.is_vcs or (link.is_existing_dir() and req.editable): + # Make a .zip of the source_dir we already created. + req.archive(self.download_dir) + return + + if link.is_existing_dir(): + logger.debug( + "Not copying link to destination directory " + "since it is a directory: %s", + link, + ) + return + if req.local_file_path is None: + # No distribution was downloaded for this requirement. + return + + download_location = os.path.join(self.download_dir, link.filename) + if not os.path.exists(download_location): + shutil.copy(req.local_file_path, download_location) + download_path = display_path(download_location) + logger.info("Saved %s", download_path) + + def prepare_editable_requirement( + self, + req: InstallRequirement, + ) -> BaseDistribution: + """Prepare an editable requirement.""" + assert req.editable, "cannot prepare a non-editable req as editable" + + logger.info("Obtaining %s", req) + + with indent_log(): + if self.require_hashes: + raise InstallationError( + f"The editable requirement {req} cannot be installed when " + "requiring hashes, because there is no single file to " + "hash." + ) + req.ensure_has_source_dir(self.src_dir) + req.update_editable() + assert req.source_dir + req.download_info = direct_url_for_editable(req.unpacked_source_directory) + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.finder, + self.build_isolation, + self.check_build_deps, + ) + + req.check_if_exists(self.use_user_site) + + return dist + + def prepare_installed_requirement( + self, + req: InstallRequirement, + skip_reason: str, + ) -> BaseDistribution: + """Prepare an already-installed requirement.""" + assert req.satisfied_by, "req should have been satisfied but isn't" + assert skip_reason is not None, ( + "did not get skip reason skipped but req.satisfied_by " + f"is set to {req.satisfied_by}" + ) + logger.info( + "Requirement %s: %s (%s)", skip_reason, req, req.satisfied_by.version + ) + with indent_log(): + if self.require_hashes: + logger.debug( + "Since it is already installed, we are trusting this " + "package without checking its hash. To ensure a " + "completely repeatable environment, install into an " + "empty virtualenv." + ) + return InstalledDistribution(req).get_metadata_distribution() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py new file mode 100644 index 00000000..8de36b87 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,179 @@ +import importlib.util +import os +from collections import namedtuple +from typing import Any, List, Optional + +from pip._vendor import tomli +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement + +from pip._internal.exceptions import ( + InstallationError, + InvalidPyProjectBuildRequires, + MissingPyProjectBuildRequires, +) + + +def _is_list_of_str(obj: Any) -> bool: + return isinstance(obj, list) and all(isinstance(item, str) for item in obj) + + +def make_pyproject_path(unpacked_source_directory: str) -> str: + return os.path.join(unpacked_source_directory, "pyproject.toml") + + +BuildSystemDetails = namedtuple( + "BuildSystemDetails", ["requires", "backend", "check", "backend_path"] +) + + +def load_pyproject_toml( + use_pep517: Optional[bool], pyproject_toml: str, setup_py: str, req_name: str +) -> Optional[BuildSystemDetails]: + """Load the pyproject.toml file. + + Parameters: + use_pep517 - Has the user requested PEP 517 processing? None + means the user hasn't explicitly specified. + pyproject_toml - Location of the project's pyproject.toml file + setup_py - Location of the project's setup.py file + req_name - The name of the requirement we're processing (for + error reporting) + + Returns: + None if we should use the legacy code path, otherwise a tuple + ( + requirements from pyproject.toml, + name of PEP 517 backend, + requirements we should check are installed after setting + up the build environment + directory paths to import the backend from (backend-path), + relative to the project root. + ) + """ + has_pyproject = os.path.isfile(pyproject_toml) + has_setup = os.path.isfile(setup_py) + + if not has_pyproject and not has_setup: + raise InstallationError( + f"{req_name} does not appear to be a Python project: " + f"neither 'setup.py' nor 'pyproject.toml' found." + ) + + if has_pyproject: + with open(pyproject_toml, encoding="utf-8") as f: + pp_toml = tomli.loads(f.read()) + build_system = pp_toml.get("build-system") + else: + build_system = None + + # The following cases must use PEP 517 + # We check for use_pep517 being non-None and falsey because that means + # the user explicitly requested --no-use-pep517. The value 0 as + # opposed to False can occur when the value is provided via an + # environment variable or config file option (due to the quirk of + # strtobool() returning an integer in pip's configuration code). + if has_pyproject and not has_setup: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project does not have a setup.py" + ) + use_pep517 = True + elif build_system and "build-backend" in build_system: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project specifies a build backend of {} " + "in pyproject.toml".format(build_system["build-backend"]) + ) + use_pep517 = True + + # If we haven't worked out whether to use PEP 517 yet, + # and the user hasn't explicitly stated a preference, + # we do so if the project has a pyproject.toml file + # or if we cannot import setuptools or wheels. + + # We fallback to PEP 517 when without setuptools or without the wheel package, + # so setuptools can be installed as a default build backend. + # For more info see: + # https://discuss.python.org/t/pip-without-setuptools-could-the-experience-be-improved/11810/9 + # https://github.com/pypa/pip/issues/8559 + elif use_pep517 is None: + use_pep517 = ( + has_pyproject + or not importlib.util.find_spec("setuptools") + or not importlib.util.find_spec("wheel") + ) + + # At this point, we know whether we're going to use PEP 517. + assert use_pep517 is not None + + # If we're using the legacy code path, there is nothing further + # for us to do here. + if not use_pep517: + return None + + if build_system is None: + # Either the user has a pyproject.toml with no build-system + # section, or the user has no pyproject.toml, but has opted in + # explicitly via --use-pep517. + # In the absence of any explicit backend specification, we + # assume the setuptools backend that most closely emulates the + # traditional direct setup.py execution, and require wheel and + # a version of setuptools that supports that backend. + + build_system = { + "requires": ["setuptools>=40.8.0"], + "build-backend": "setuptools.build_meta:__legacy__", + } + + # If we're using PEP 517, we have build system information (either + # from pyproject.toml, or defaulted by the code above). + # Note that at this point, we do not know if the user has actually + # specified a backend, though. + assert build_system is not None + + # Ensure that the build-system section in pyproject.toml conforms + # to PEP 518. + + # Specifying the build-system table but not the requires key is invalid + if "requires" not in build_system: + raise MissingPyProjectBuildRequires(package=req_name) + + # Error out if requires is not a list of strings + requires = build_system["requires"] + if not _is_list_of_str(requires): + raise InvalidPyProjectBuildRequires( + package=req_name, + reason="It is not a list of strings.", + ) + + # Each requirement must be valid as per PEP 508 + for requirement in requires: + try: + Requirement(requirement) + except InvalidRequirement as error: + raise InvalidPyProjectBuildRequires( + package=req_name, + reason=f"It contains an invalid requirement: {requirement!r}", + ) from error + + backend = build_system.get("build-backend") + backend_path = build_system.get("backend-path", []) + check: List[str] = [] + if backend is None: + # If the user didn't specify a backend, we assume they want to use + # the setuptools backend. But we can't be sure they have included + # a version of setuptools which supplies the backend. So we + # make a note to check that this requirement is present once + # we have set up the environment. + # This is quite a lot of work to check for a very specific case. But + # the problem is, that case is potentially quite common - projects that + # adopted PEP 518 early for the ability to specify requirements to + # execute setup.py, but never considered needing to mention the build + # tools themselves. The original PEP 518 code had a similar check (but + # implemented in a different way). + backend = "setuptools.build_meta:__legacy__" + check = ["setuptools>=40.8.0"] + + return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 00000000..16de903a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,92 @@ +import collections +import logging +from typing import Generator, List, Optional, Sequence, Tuple + +from pip._internal.utils.logging import indent_log + +from .req_file import parse_requirements +from .req_install import InstallRequirement +from .req_set import RequirementSet + +__all__ = [ + "RequirementSet", + "InstallRequirement", + "parse_requirements", + "install_given_reqs", +] + +logger = logging.getLogger(__name__) + + +class InstallationResult: + def __init__(self, name: str) -> None: + self.name = name + + def __repr__(self) -> str: + return f"InstallationResult(name={self.name!r})" + + +def _validate_requirements( + requirements: List[InstallRequirement], +) -> Generator[Tuple[str, InstallRequirement], None, None]: + for req in requirements: + assert req.name, f"invalid to-be-installed requirement: {req}" + yield req.name, req + + +def install_given_reqs( + requirements: List[InstallRequirement], + global_options: Sequence[str], + root: Optional[str], + home: Optional[str], + prefix: Optional[str], + warn_script_location: bool, + use_user_site: bool, + pycompile: bool, +) -> List[InstallationResult]: + """ + Install everything in the given list. + + (to be called after having downloaded and unpacked the packages) + """ + to_install = collections.OrderedDict(_validate_requirements(requirements)) + + if to_install: + logger.info( + "Installing collected packages: %s", + ", ".join(to_install.keys()), + ) + + installed = [] + + with indent_log(): + for req_name, requirement in to_install.items(): + if requirement.should_reinstall: + logger.info("Attempting uninstall: %s", req_name) + with indent_log(): + uninstalled_pathset = requirement.uninstall(auto_confirm=True) + else: + uninstalled_pathset = None + + try: + requirement.install( + global_options, + root=root, + home=home, + prefix=prefix, + warn_script_location=warn_script_location, + use_user_site=use_user_site, + pycompile=pycompile, + ) + except Exception: + # if install did not succeed, rollback previous uninstall + if uninstalled_pathset and not requirement.install_succeeded: + uninstalled_pathset.rollback() + raise + else: + if uninstalled_pathset and requirement.install_succeeded: + uninstalled_pathset.commit() + + installed.append(InstallationResult(req_name)) + + return installed diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12e755e4a4db0f4484708e553e93aa0bcc5c91b6 GIT binary patch literal 3794 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..142ef4517c423ee1ed8f7ae41114320256e3c762 GIT binary patch literal 21512 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 WlZpAI{D-#Yb6(*;+M3T*3jY^W{CWQX literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..508adc8973ed52fc6fc72bc2b0f96cef78285a1d GIT binary patch literal 38465 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 LA^ezN$rt}$7$Lp9 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a98d07939e522842559e8e6d5e92e67ee2b23c6b GIT binary patch literal 33028 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ⅅ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 Tuple[str, Optional[str]]: + m = re.match(r"^(.+)(\[[^\]]+\])$", path) + extras = None + if m: + path_no_extras = m.group(1) + extras = m.group(2) + else: + path_no_extras = path + + return path_no_extras, extras + + +def convert_extras(extras: Optional[str]) -> Set[str]: + if not extras: + return set() + return get_requirement("placeholder" + extras.lower()).extras + + +def _set_requirement_extras(req: Requirement, new_extras: Set[str]) -> Requirement: + """ + Returns a new requirement based on the given one, with the supplied extras. If the + given requirement already has extras those are replaced (or dropped if no new extras + are given). + """ + match: Optional[re.Match[str]] = re.fullmatch( + # see https://peps.python.org/pep-0508/#complete-grammar + r"([\w\t .-]+)(\[[^\]]*\])?(.*)", + str(req), + flags=re.ASCII, + ) + # ireq.req is a valid requirement so the regex should always match + assert ( + match is not None + ), f"regex match on requirement {req} failed, this should never happen" + pre: Optional[str] = match.group(1) + post: Optional[str] = match.group(3) + assert ( + pre is not None and post is not None + ), f"regex group selection for requirement {req} failed, this should never happen" + extras: str = "[%s]" % ",".join(sorted(new_extras)) if new_extras else "" + return Requirement(f"{pre}{extras}{post}") + + +def parse_editable(editable_req: str) -> Tuple[Optional[str], str, Set[str]]: + """Parses an editable requirement into: + - a requirement name + - an URL + - extras + - editable options + Accepted requirements: + svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir + .[some_extra] + """ + + url = editable_req + + # If a file path is specified with extras, strip off the extras. + url_no_extras, extras = _strip_extras(url) + + if os.path.isdir(url_no_extras): + # Treating it as code that has already been checked out + url_no_extras = path_to_url(url_no_extras) + + if url_no_extras.lower().startswith("file:"): + package_name = Link(url_no_extras).egg_fragment + if extras: + return ( + package_name, + url_no_extras, + get_requirement("placeholder" + extras.lower()).extras, + ) + else: + return package_name, url_no_extras, set() + + for version_control in vcs: + if url.lower().startswith(f"{version_control}:"): + url = f"{version_control}+{url}" + break + + link = Link(url) + + if not link.is_vcs: + backends = ", ".join(vcs.all_schemes) + raise InstallationError( + f"{editable_req} is not a valid editable requirement. " + f"It should either be a path to a local project or a VCS URL " + f"(beginning with {backends})." + ) + + package_name = link.egg_fragment + if not package_name: + raise InstallationError( + "Could not detect requirement name for '{}', please specify one " + "with #egg=your_package_name".format(editable_req) + ) + return package_name, url, set() + + +def check_first_requirement_in_file(filename: str) -> None: + """Check if file is parsable as a requirements file. + + This is heavily based on ``pkg_resources.parse_requirements``, but + simplified to just check the first meaningful line. + + :raises InvalidRequirement: If the first meaningful line cannot be parsed + as an requirement. + """ + with open(filename, encoding="utf-8", errors="ignore") as f: + # Create a steppable iterator, so we can handle \-continuations. + lines = ( + line + for line in (line.strip() for line in f) + if line and not line.startswith("#") # Skip blank lines/comments. + ) + + for line in lines: + # Drop comments -- a hash without a space may be in a URL. + if " #" in line: + line = line[: line.find(" #")] + # If there is a line continuation, drop it, and append the next line. + if line.endswith("\\"): + line = line[:-2].strip() + next(lines, "") + Requirement(line) + return + + +def deduce_helpful_msg(req: str) -> str: + """Returns helpful msg in case requirements file does not exist, + or cannot be parsed. + + :params req: Requirements file path + """ + if not os.path.exists(req): + return f" File '{req}' does not exist." + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + check_first_requirement_in_file(req) + except InvalidRequirement: + logger.debug("Cannot parse '%s' as requirements file", req) + else: + msg += ( + f"The argument you provided " + f"({req}) appears to be a" + f" requirements file. If that is the" + f" case, use the '-r' flag to install" + f" the packages specified within it." + ) + return msg + + +class RequirementParts: + def __init__( + self, + requirement: Optional[Requirement], + link: Optional[Link], + markers: Optional[Marker], + extras: Set[str], + ): + self.requirement = requirement + self.link = link + self.markers = markers + self.extras = extras + + +def parse_req_from_editable(editable_req: str) -> RequirementParts: + name, url, extras_override = parse_editable(editable_req) + + if name is not None: + try: + req: Optional[Requirement] = Requirement(name) + except InvalidRequirement: + raise InstallationError(f"Invalid requirement: '{name}'") + else: + req = None + + link = Link(url) + + return RequirementParts(req, link, None, extras_override) + + +# ---- The actual constructors follow ---- + + +def install_req_from_editable( + editable_req: str, + comes_from: Optional[Union[InstallRequirement, str]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + user_supplied: bool = False, + permit_editable_wheels: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + permit_editable_wheels=permit_editable_wheels, + link=parts.link, + constraint=constraint, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + extras=parts.extras, + ) + + +def _looks_like_path(name: str) -> bool: + """Checks whether the string "looks like" a path on the filesystem. + + This does not check whether the target actually exists, only judge from the + appearance. + + Returns true if any of the following conditions is true: + * a path separator is found (either os.path.sep or os.path.altsep); + * a dot is found (which represents the current directory). + """ + if os.path.sep in name: + return True + if os.path.altsep is not None and os.path.altsep in name: + return True + if name.startswith("."): + return True + return False + + +def _get_url_from_path(path: str, name: str) -> Optional[str]: + """ + First, it checks whether a provided path is an installable directory. If it + is, returns the path. + + If false, check if the path is an archive file (such as a .whl). + The function checks if the path is a file. If false, if the path has + an @, it will treat it as a PEP 440 URL requirement and return the path. + """ + if _looks_like_path(name) and os.path.isdir(path): + if is_installable_dir(path): + return path_to_url(path) + # TODO: The is_installable_dir test here might not be necessary + # now that it is done in load_pyproject_toml too. + raise InstallationError( + f"Directory {name!r} is not installable. Neither 'setup.py' " + "nor 'pyproject.toml' found." + ) + if not is_archive_file(path): + return None + if os.path.isfile(path): + return path_to_url(path) + urlreq_parts = name.split("@", 1) + if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): + # If the path contains '@' and the part before it does not look + # like a path, try to treat it as a PEP 440 URL req instead. + return None + logger.warning( + "Requirement %r looks like a filename, but the file does not exist", + name, + ) + return path_to_url(path) + + +def parse_req_from_line(name: str, line_source: Optional[str]) -> RequirementParts: + if is_url(name): + marker_sep = "; " + else: + marker_sep = ";" + if marker_sep in name: + name, markers_as_string = name.split(marker_sep, 1) + markers_as_string = markers_as_string.strip() + if not markers_as_string: + markers = None + else: + markers = Marker(markers_as_string) + else: + markers = None + name = name.strip() + req_as_string = None + path = os.path.normpath(os.path.abspath(name)) + link = None + extras_as_string = None + + if is_url(name): + link = Link(name) + else: + p, extras_as_string = _strip_extras(path) + url = _get_url_from_path(p, name) + if url is not None: + link = Link(url) + + # it's a local file, dir, or url + if link: + # Handle relative file URLs + if link.scheme == "file" and re.search(r"\.\./", link.url): + link = Link(path_to_url(os.path.normpath(os.path.abspath(link.path)))) + # wheel file + if link.is_wheel: + wheel = Wheel(link.filename) # can raise InvalidWheelFilename + req_as_string = f"{wheel.name}=={wheel.version}" + else: + # set the req to the egg fragment. when it's not there, this + # will become an 'unnamed' requirement + req_as_string = link.egg_fragment + + # a requirement specifier + else: + req_as_string = name + + extras = convert_extras(extras_as_string) + + def with_source(text: str) -> str: + if not line_source: + return text + return f"{text} (from {line_source})" + + def _parse_req_string(req_as_string: str) -> Requirement: + try: + req = get_requirement(req_as_string) + except InvalidRequirement: + if os.path.sep in req_as_string: + add_msg = "It looks like a path." + add_msg += deduce_helpful_msg(req_as_string) + elif "=" in req_as_string and not any( + op in req_as_string for op in operators + ): + add_msg = "= is not a valid operator. Did you mean == ?" + else: + add_msg = "" + msg = with_source(f"Invalid requirement: {req_as_string!r}") + if add_msg: + msg += f"\nHint: {add_msg}" + raise InstallationError(msg) + else: + # Deprecate extras after specifiers: "name>=1.0[extras]" + # This currently works by accident because _strip_extras() parses + # any extras in the end of the string and those are saved in + # RequirementParts + for spec in req.specifier: + spec_str = str(spec) + if spec_str.endswith("]"): + msg = f"Extras after version '{spec_str}'." + raise InstallationError(msg) + return req + + if req_as_string is not None: + req: Optional[Requirement] = _parse_req_string(req_as_string) + else: + req = None + + return RequirementParts(req, link, markers, extras) + + +def install_req_from_line( + name: str, + comes_from: Optional[Union[str, InstallRequirement]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + line_source: Optional[str] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + """Creates an InstallRequirement from a name, which might be a + requirement, directory containing 'setup.py', filename, or URL. + + :param line_source: An optional string describing where the line is from, + for logging purposes in case of an error. + """ + parts = parse_req_from_line(name, line_source) + + return InstallRequirement( + parts.requirement, + comes_from, + link=parts.link, + markers=parts.markers, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + constraint=constraint, + extras=parts.extras, + user_supplied=user_supplied, + ) + + +def install_req_from_req_string( + req_string: str, + comes_from: Optional[InstallRequirement] = None, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, +) -> InstallRequirement: + try: + req = get_requirement(req_string) + except InvalidRequirement: + raise InstallationError(f"Invalid requirement: '{req_string}'") + + domains_not_allowed = [ + PyPI.file_storage_domain, + TestPyPI.file_storage_domain, + ] + if ( + req.url + and comes_from + and comes_from.link + and comes_from.link.netloc in domains_not_allowed + ): + # Explicitly disallow pypi packages that depend on external urls + raise InstallationError( + "Packages installed from PyPI cannot depend on packages " + "which are not also hosted on PyPI.\n" + f"{comes_from.name} depends on {req} " + ) + + return InstallRequirement( + req, + comes_from, + isolated=isolated, + use_pep517=use_pep517, + user_supplied=user_supplied, + ) + + +def install_req_from_parsed_requirement( + parsed_req: ParsedRequirement, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + if parsed_req.is_editable: + req = install_req_from_editable( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + constraint=parsed_req.constraint, + isolated=isolated, + user_supplied=user_supplied, + config_settings=config_settings, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + isolated=isolated, + global_options=( + parsed_req.options.get("global_options", []) + if parsed_req.options + else [] + ), + hash_options=( + parsed_req.options.get("hashes", {}) if parsed_req.options else {} + ), + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + config_settings=config_settings, + ) + return req + + +def install_req_from_link_and_ireq( + link: Link, ireq: InstallRequirement +) -> InstallRequirement: + return InstallRequirement( + req=ireq.req, + comes_from=ireq.comes_from, + editable=ireq.editable, + link=link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + ) + + +def install_req_drop_extras(ireq: InstallRequirement) -> InstallRequirement: + """ + Creates a new InstallationRequirement using the given template but without + any extras. Sets the original requirement as the new one's parent + (comes_from). + """ + return InstallRequirement( + req=( + _set_requirement_extras(ireq.req, set()) if ireq.req is not None else None + ), + comes_from=ireq, + editable=ireq.editable, + link=ireq.link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + constraint=ireq.constraint, + extras=[], + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + permit_editable_wheels=ireq.permit_editable_wheels, + ) + + +def install_req_extend_extras( + ireq: InstallRequirement, + extras: Collection[str], +) -> InstallRequirement: + """ + Returns a copy of an installation requirement with some additional extras. + Makes a shallow copy of the ireq object. + """ + result = copy.copy(ireq) + result.extras = {*ireq.extras, *extras} + result.req = ( + _set_requirement_extras(ireq.req, result.extras) + if ireq.req is not None + else None + ) + return result diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 00000000..1ef3d5ef --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,554 @@ +""" +Requirements file parsing +""" + +import logging +import optparse +import os +import re +import shlex +import urllib.parse +from optparse import Values +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Dict, + Generator, + Iterable, + List, + Optional, + Tuple, +) + +from pip._internal.cli import cmdoptions +from pip._internal.exceptions import InstallationError, RequirementsFileParseError +from pip._internal.models.search_scope import SearchScope +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.encoding import auto_decode +from pip._internal.utils.urls import get_url_scheme + +if TYPE_CHECKING: + # NoReturn introduced in 3.6.2; imported only for type checking to maintain + # pip compatibility with older patch versions of Python 3.6 + from typing import NoReturn + + from pip._internal.index.package_finder import PackageFinder + +__all__ = ["parse_requirements"] + +ReqFileLines = Iterable[Tuple[int, str]] + +LineParser = Callable[[str], Tuple[str, Values]] + +SCHEME_RE = re.compile(r"^(http|https|file):", re.I) +COMMENT_RE = re.compile(r"(^|\s+)#.*$") + +# Matches environment variable-style values in '${MY_VARIABLE_1}' with the +# variable name consisting of only uppercase letters, digits or the '_' +# (underscore). This follows the POSIX standard defined in IEEE Std 1003.1, +# 2013 Edition. +ENV_VAR_RE = re.compile(r"(?P\$\{(?P[A-Z0-9_]+)\})") + +SUPPORTED_OPTIONS: List[Callable[..., optparse.Option]] = [ + cmdoptions.index_url, + cmdoptions.extra_index_url, + cmdoptions.no_index, + cmdoptions.constraints, + cmdoptions.requirements, + cmdoptions.editable, + cmdoptions.find_links, + cmdoptions.no_binary, + cmdoptions.only_binary, + cmdoptions.prefer_binary, + cmdoptions.require_hashes, + cmdoptions.pre, + cmdoptions.trusted_host, + cmdoptions.use_new_feature, +] + +# options to be passed to requirements +SUPPORTED_OPTIONS_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.global_options, + cmdoptions.hash, + cmdoptions.config_settings, +] + +SUPPORTED_OPTIONS_EDITABLE_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.config_settings, +] + + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] +SUPPORTED_OPTIONS_EDITABLE_REQ_DEST = [ + str(o().dest) for o in SUPPORTED_OPTIONS_EDITABLE_REQ +] + +logger = logging.getLogger(__name__) + + +class ParsedRequirement: + def __init__( + self, + requirement: str, + is_editable: bool, + comes_from: str, + constraint: bool, + options: Optional[Dict[str, Any]] = None, + line_source: Optional[str] = None, + ) -> None: + self.requirement = requirement + self.is_editable = is_editable + self.comes_from = comes_from + self.options = options + self.constraint = constraint + self.line_source = line_source + + +class ParsedLine: + def __init__( + self, + filename: str, + lineno: int, + args: str, + opts: Values, + constraint: bool, + ) -> None: + self.filename = filename + self.lineno = lineno + self.opts = opts + self.constraint = constraint + + if args: + self.is_requirement = True + self.is_editable = False + self.requirement = args + elif opts.editables: + self.is_requirement = True + self.is_editable = True + # We don't support multiple -e on one line + self.requirement = opts.editables[0] + else: + self.is_requirement = False + + +def parse_requirements( + filename: str, + session: PipSession, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + constraint: bool = False, +) -> Generator[ParsedRequirement, None, None]: + """Parse a requirements file and yield ParsedRequirement instances. + + :param filename: Path or url of requirements file. + :param session: PipSession instance. + :param finder: Instance of pip.index.PackageFinder. + :param options: cli options. + :param constraint: If true, parsing a constraint file rather than + requirements file. + """ + line_parser = get_line_parser(finder) + parser = RequirementsFileParser(session, line_parser) + + for parsed_line in parser.parse(filename, constraint): + parsed_req = handle_line( + parsed_line, options=options, finder=finder, session=session + ) + if parsed_req is not None: + yield parsed_req + + +def preprocess(content: str) -> ReqFileLines: + """Split, filter, and join lines, and return a line iterator + + :param content: the content of the requirements file + """ + lines_enum: ReqFileLines = enumerate(content.splitlines(), start=1) + lines_enum = join_lines(lines_enum) + lines_enum = ignore_comments(lines_enum) + lines_enum = expand_env_variables(lines_enum) + return lines_enum + + +def handle_requirement_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, +) -> ParsedRequirement: + # preserve for the nested code path + line_comes_from = "{} {} (line {})".format( + "-c" if line.constraint else "-r", + line.filename, + line.lineno, + ) + + assert line.is_requirement + + # get the options that apply to requirements + if line.is_editable: + supported_dest = SUPPORTED_OPTIONS_EDITABLE_REQ_DEST + else: + supported_dest = SUPPORTED_OPTIONS_REQ_DEST + req_options = {} + for dest in supported_dest: + if dest in line.opts.__dict__ and line.opts.__dict__[dest]: + req_options[dest] = line.opts.__dict__[dest] + + line_source = f"line {line.lineno} of {line.filename}" + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + options=req_options, + line_source=line_source, + ) + + +def handle_option_line( + opts: Values, + filename: str, + lineno: int, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + session: Optional[PipSession] = None, +) -> None: + if opts.hashes: + logger.warning( + "%s line %s has --hash but no requirement, and will be ignored.", + filename, + lineno, + ) + + if options: + # percolate options upward + if opts.require_hashes: + options.require_hashes = opts.require_hashes + if opts.features_enabled: + options.features_enabled.extend( + f for f in opts.features_enabled if f not in options.features_enabled + ) + + # set finder options + if finder: + find_links = finder.find_links + index_urls = finder.index_urls + no_index = finder.search_scope.no_index + if opts.no_index is True: + no_index = True + index_urls = [] + if opts.index_url and not no_index: + index_urls = [opts.index_url] + if opts.extra_index_urls and not no_index: + index_urls.extend(opts.extra_index_urls) + if opts.find_links: + # FIXME: it would be nice to keep track of the source + # of the find_links: support a find-links local path + # relative to a requirements file. + value = opts.find_links[0] + req_dir = os.path.dirname(os.path.abspath(filename)) + relative_to_reqs_file = os.path.join(req_dir, value) + if os.path.exists(relative_to_reqs_file): + value = relative_to_reqs_file + find_links.append(value) + + if session: + # We need to update the auth urls in session + session.update_index_urls(index_urls) + + search_scope = SearchScope( + find_links=find_links, + index_urls=index_urls, + no_index=no_index, + ) + finder.search_scope = search_scope + + if opts.pre: + finder.set_allow_all_prereleases() + + if opts.prefer_binary: + finder.set_prefer_binary() + + if session: + for host in opts.trusted_hosts or []: + source = f"line {lineno} of {filename}" + session.add_trusted_host(host, source=source) + + +def handle_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, + finder: Optional["PackageFinder"] = None, + session: Optional[PipSession] = None, +) -> Optional[ParsedRequirement]: + """Handle a single parsed requirements line; This can result in + creating/yielding requirements, or updating the finder. + + :param line: The parsed line to be processed. + :param options: CLI options. + :param finder: The finder - updated by non-requirement lines. + :param session: The session - updated by non-requirement lines. + + Returns a ParsedRequirement object if the line is a requirement line, + otherwise returns None. + + For lines that contain requirements, the only options that have an effect + are from SUPPORTED_OPTIONS_REQ, and they are scoped to the + requirement. Other options from SUPPORTED_OPTIONS may be present, but are + ignored. + + For lines that do not contain requirements, the only options that have an + effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may + be present, but are ignored. These lines may contain multiple options + (although our docs imply only one is supported), and all our parsed and + affect the finder. + """ + + if line.is_requirement: + parsed_req = handle_requirement_line(line, options) + return parsed_req + else: + handle_option_line( + line.opts, + line.filename, + line.lineno, + finder, + options, + session, + ) + return None + + +class RequirementsFileParser: + def __init__( + self, + session: PipSession, + line_parser: LineParser, + ) -> None: + self._session = session + self._line_parser = line_parser + + def parse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + """Parse a given file, yielding parsed lines.""" + yield from self._parse_and_recurse(filename, constraint) + + def _parse_and_recurse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + for line in self._parse_file(filename, constraint): + if not line.is_requirement and ( + line.opts.requirements or line.opts.constraints + ): + # parse a nested requirements file + if line.opts.requirements: + req_path = line.opts.requirements[0] + nested_constraint = False + else: + req_path = line.opts.constraints[0] + nested_constraint = True + + # original file is over http + if SCHEME_RE.search(filename): + # do a url join so relative paths work + req_path = urllib.parse.urljoin(filename, req_path) + # original file and nested file are paths + elif not SCHEME_RE.search(req_path): + # do a join so relative paths work + req_path = os.path.join( + os.path.dirname(filename), + req_path, + ) + + yield from self._parse_and_recurse(req_path, nested_constraint) + else: + yield line + + def _parse_file( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + _, content = get_file_content(filename, self._session) + + lines_enum = preprocess(content) + + for line_number, line in lines_enum: + try: + args_str, opts = self._line_parser(line) + except OptionParsingError as e: + # add offending line + msg = f"Invalid requirement: {line}\n{e.msg}" + raise RequirementsFileParseError(msg) + + yield ParsedLine( + filename, + line_number, + args_str, + opts, + constraint, + ) + + +def get_line_parser(finder: Optional["PackageFinder"]) -> LineParser: + def parse_line(line: str) -> Tuple[str, Values]: + # Build new parser for each line since it accumulates appendable + # options. + parser = build_parser() + defaults = parser.get_default_values() + defaults.index_url = None + if finder: + defaults.format_control = finder.format_control + + args_str, options_str = break_args_options(line) + + try: + options = shlex.split(options_str) + except ValueError as e: + raise OptionParsingError(f"Could not split options: {options_str}") from e + + opts, _ = parser.parse_args(options, defaults) + + return args_str, opts + + return parse_line + + +def break_args_options(line: str) -> Tuple[str, str]: + """Break up the line into an args and options string. We only want to shlex + (and then optparse) the options, not the args. args can contain markers + which are corrupted by shlex. + """ + tokens = line.split(" ") + args = [] + options = tokens[:] + for token in tokens: + if token.startswith("-") or token.startswith("--"): + break + else: + args.append(token) + options.pop(0) + return " ".join(args), " ".join(options) + + +class OptionParsingError(Exception): + def __init__(self, msg: str) -> None: + self.msg = msg + + +def build_parser() -> optparse.OptionParser: + """ + Return a parser for parsing requirement lines + """ + parser = optparse.OptionParser(add_help_option=False) + + option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ + for option_factory in option_factories: + option = option_factory() + parser.add_option(option) + + # By default optparse sys.exits on parsing errors. We want to wrap + # that in our own exception. + def parser_exit(self: Any, msg: str) -> "NoReturn": + raise OptionParsingError(msg) + + # NOTE: mypy disallows assigning to a method + # https://github.com/python/mypy/issues/2427 + parser.exit = parser_exit # type: ignore + + return parser + + +def join_lines(lines_enum: ReqFileLines) -> ReqFileLines: + """Joins a line ending in '\' with the previous line (except when following + comments). The joined line takes on the index of the first line. + """ + primary_line_number = None + new_line: List[str] = [] + for line_number, line in lines_enum: + if not line.endswith("\\") or COMMENT_RE.match(line): + if COMMENT_RE.match(line): + # this ensures comments are always matched later + line = " " + line + if new_line: + new_line.append(line) + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + new_line = [] + else: + yield line_number, line + else: + if not new_line: + primary_line_number = line_number + new_line.append(line.strip("\\")) + + # last line contains \ + if new_line: + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + + # TODO: handle space after '\'. + + +def ignore_comments(lines_enum: ReqFileLines) -> ReqFileLines: + """ + Strips comments and filter empty lines. + """ + for line_number, line in lines_enum: + line = COMMENT_RE.sub("", line) + line = line.strip() + if line: + yield line_number, line + + +def expand_env_variables(lines_enum: ReqFileLines) -> ReqFileLines: + """Replace all environment variables that can be retrieved via `os.getenv`. + + The only allowed format for environment variables defined in the + requirement file is `${MY_VARIABLE_1}` to ensure two things: + + 1. Strings that contain a `$` aren't accidentally (partially) expanded. + 2. Ensure consistency across platforms for requirement files. + + These points are the result of a discussion on the `github pull + request #3514 `_. + + Valid characters in variable names follow the `POSIX standard + `_ and are limited + to uppercase letter, digits and the `_` (underscore). + """ + for line_number, line in lines_enum: + for env_var, var_name in ENV_VAR_RE.findall(line): + value = os.getenv(var_name) + if not value: + continue + + line = line.replace(env_var, value) + + yield line_number, line + + +def get_file_content(url: str, session: PipSession) -> Tuple[str, str]: + """Gets the content of a file; it may be a filename, file: URL, or + http: URL. Returns (location, content). Content is unicode. + Respects # -*- coding: declarations on the retrieved files. + + :param url: File path or url. + :param session: PipSession instance. + """ + scheme = get_url_scheme(url) + + # Pip has special support for file:// URLs (LocalFSAdapter). + if scheme in ["http", "https", "file"]: + resp = session.get(url) + raise_for_status(resp) + return resp.url, resp.text + + # Assume this is a bare path. + try: + with open(url, "rb") as f: + content = auto_decode(f.read()) + except OSError as exc: + raise InstallationError(f"Could not open requirements file: {exc}") + return url, content diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 00000000..a65611c3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,923 @@ +import functools +import logging +import os +import shutil +import sys +import uuid +import zipfile +from optparse import Values +from pathlib import Path +from typing import Any, Collection, Dict, Iterable, List, Optional, Sequence, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError, PreviousBuildDirError +from pip._internal.locations import get_scheme +from pip._internal.metadata import ( + BaseDistribution, + get_default_environment, + get_directory_distribution, + get_wheel_distribution, +) +from pip._internal.metadata.base import FilesystemWheel +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.operations.build.metadata import generate_metadata +from pip._internal.operations.build.metadata_editable import generate_editable_metadata +from pip._internal.operations.build.metadata_legacy import ( + generate_metadata as generate_metadata_legacy, +) +from pip._internal.operations.install.editable_legacy import ( + install_editable as install_editable_legacy, +) +from pip._internal.operations.install.wheel import install_wheel +from pip._internal.pyproject import load_pyproject_toml, make_pyproject_path +from pip._internal.req.req_uninstall import UninstallPathSet +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + ConfiguredBuildBackendHookCaller, + ask_path_exists, + backup_dir, + display_path, + hide_url, + is_installable_dir, + redact_auth_from_requirement, + redact_auth_from_url, +) +from pip._internal.utils.packaging import safe_extra +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.unpacking import unpack_file +from pip._internal.utils.virtualenv import running_under_virtualenv +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +class InstallRequirement: + """ + Represents something that may be installed later on, may have information + about where to fetch the relevant requirement and also contains logic for + installing the said requirement. + """ + + def __init__( + self, + req: Optional[Requirement], + comes_from: Optional[Union[str, "InstallRequirement"]], + editable: bool = False, + link: Optional[Link] = None, + markers: Optional[Marker] = None, + use_pep517: Optional[bool] = None, + isolated: bool = False, + *, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + constraint: bool = False, + extras: Collection[str] = (), + user_supplied: bool = False, + permit_editable_wheels: bool = False, + ) -> None: + assert req is None or isinstance(req, Requirement), req + self.req = req + self.comes_from = comes_from + self.constraint = constraint + self.editable = editable + self.permit_editable_wheels = permit_editable_wheels + + # source_dir is the local directory where the linked requirement is + # located, or unpacked. In case unpacking is needed, creating and + # populating source_dir is done by the RequirementPreparer. Note this + # is not necessarily the directory where pyproject.toml or setup.py is + # located - that one is obtained via unpacked_source_directory. + self.source_dir: Optional[str] = None + if self.editable: + assert link + if link.is_file: + self.source_dir = os.path.normpath(os.path.abspath(link.file_path)) + + # original_link is the direct URL that was provided by the user for the + # requirement, either directly or via a constraints file. + if link is None and req and req.url: + # PEP 508 URL requirement + link = Link(req.url) + self.link = self.original_link = link + + # When this InstallRequirement is a wheel obtained from the cache of locally + # built wheels, this is the source link corresponding to the cache entry, which + # was used to download and build the cached wheel. + self.cached_wheel_source_link: Optional[Link] = None + + # Information about the location of the artifact that was downloaded . This + # property is guaranteed to be set in resolver results. + self.download_info: Optional[DirectUrl] = None + + # Path to any downloaded or already-existing package. + self.local_file_path: Optional[str] = None + if self.link and self.link.is_file: + self.local_file_path = self.link.file_path + + if extras: + self.extras = extras + elif req: + self.extras = req.extras + else: + self.extras = set() + if markers is None and req: + markers = req.marker + self.markers = markers + + # This holds the Distribution object if this requirement is already installed. + self.satisfied_by: Optional[BaseDistribution] = None + # Whether the installation process should try to uninstall an existing + # distribution before installing this requirement. + self.should_reinstall = False + # Temporary build location + self._temp_build_dir: Optional[TempDirectory] = None + # Set to True after successful installation + self.install_succeeded: Optional[bool] = None + # Supplied options + self.global_options = global_options if global_options else [] + self.hash_options = hash_options if hash_options else {} + self.config_settings = config_settings + # Set to True after successful preparation of this requirement + self.prepared = False + # User supplied requirement are explicitly requested for installation + # by the user via CLI arguments or requirements files, as opposed to, + # e.g. dependencies, extras or constraints. + self.user_supplied = user_supplied + + self.isolated = isolated + self.build_env: BuildEnvironment = NoOpBuildEnvironment() + + # For PEP 517, the directory where we request the project metadata + # gets stored. We need this to pass to build_wheel, so the backend + # can ensure that the wheel matches the metadata (see the PEP for + # details). + self.metadata_directory: Optional[str] = None + + # The static build requirements (from pyproject.toml) + self.pyproject_requires: Optional[List[str]] = None + + # Build requirements that we will check are available + self.requirements_to_check: List[str] = [] + + # The PEP 517 backend we should use to build the project + self.pep517_backend: Optional[BuildBackendHookCaller] = None + + # Are we using PEP 517 for this requirement? + # After pyproject.toml has been loaded, the only valid values are True + # and False. Before loading, None is valid (meaning "use the default"). + # Setting an explicit value before loading pyproject.toml is supported, + # but after loading this flag should be treated as read only. + self.use_pep517 = use_pep517 + + # If config settings are provided, enforce PEP 517. + if self.config_settings: + if self.use_pep517 is False: + logger.warning( + "--no-use-pep517 ignored for %s " + "because --config-settings are specified.", + self, + ) + self.use_pep517 = True + + # This requirement needs more preparation before it can be built + self.needs_more_preparation = False + + # This requirement needs to be unpacked before it can be installed. + self._archive_source: Optional[Path] = None + + def __str__(self) -> str: + if self.req: + s = redact_auth_from_requirement(self.req) + if self.link: + s += f" from {redact_auth_from_url(self.link.url)}" + elif self.link: + s = redact_auth_from_url(self.link.url) + else: + s = "" + if self.satisfied_by is not None: + if self.satisfied_by.location is not None: + location = display_path(self.satisfied_by.location) + else: + location = "" + s += f" in {location}" + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from: Optional[str] = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += f" (from {comes_from})" + return s + + def __repr__(self) -> str: + return "<{} object: {} editable={!r}>".format( + self.__class__.__name__, str(self), self.editable + ) + + def format_debug(self) -> str: + """An un-tested helper for getting state, for debugging.""" + attributes = vars(self) + names = sorted(attributes) + + state = (f"{attr}={attributes[attr]!r}" for attr in sorted(names)) + return "<{name} object: {{{state}}}>".format( + name=self.__class__.__name__, + state=", ".join(state), + ) + + # Things that are valid for all kinds of requirements? + @property + def name(self) -> Optional[str]: + if self.req is None: + return None + return self.req.name + + @functools.lru_cache() # use cached_property in python 3.8+ + def supports_pyproject_editable(self) -> bool: + if not self.use_pep517: + return False + assert self.pep517_backend + with self.build_env: + runner = runner_with_spinner_message( + "Checking if build backend supports build_editable" + ) + with self.pep517_backend.subprocess_runner(runner): + return "build_editable" in self.pep517_backend._supported_features() + + @property + def specifier(self) -> SpecifierSet: + assert self.req is not None + return self.req.specifier + + @property + def is_direct(self) -> bool: + """Whether this requirement was specified as a direct URL.""" + return self.original_link is not None + + @property + def is_pinned(self) -> bool: + """Return whether I am pinned to an exact version. + + For example, some-package==1.2 is pinned; some-package>1.2 is not. + """ + assert self.req is not None + specifiers = self.req.specifier + return len(specifiers) == 1 and next(iter(specifiers)).operator in {"==", "==="} + + def match_markers(self, extras_requested: Optional[Iterable[str]] = None) -> bool: + if not extras_requested: + # Provide an extra to safely evaluate the markers + # without matching any extra + extras_requested = ("",) + if self.markers is not None: + return any( + self.markers.evaluate({"extra": extra}) + # TODO: Remove these two variants when packaging is upgraded to + # support the marker comparison logic specified in PEP 685. + or self.markers.evaluate({"extra": safe_extra(extra)}) + or self.markers.evaluate({"extra": canonicalize_name(extra)}) + for extra in extras_requested + ) + else: + return True + + @property + def has_hash_options(self) -> bool: + """Return whether any known-good hashes are specified as options. + + These activate --require-hashes mode; hashes specified as part of a + URL do not. + + """ + return bool(self.hash_options) + + def hashes(self, trust_internet: bool = True) -> Hashes: + """Return a hash-comparer that considers my option- and URL-based + hashes to be known-good. + + Hashes in URLs--ones embedded in the requirements file, not ones + downloaded from an index server--are almost peers with ones from + flags. They satisfy --require-hashes (whether it was implicitly or + explicitly activated) but do not activate it. md5 and sha224 are not + allowed in flags, which should nudge people toward good algos. We + always OR all hashes together, even ones from URLs. + + :param trust_internet: Whether to trust URL-based (#md5=...) hashes + downloaded from the internet, as by populate_link() + + """ + good_hashes = self.hash_options.copy() + if trust_internet: + link = self.link + elif self.is_direct and self.user_supplied: + link = self.original_link + else: + link = None + if link and link.hash: + assert link.hash_name is not None + good_hashes.setdefault(link.hash_name, []).append(link.hash) + return Hashes(good_hashes) + + def from_path(self) -> Optional[str]: + """Format a nice indicator to show where this "comes from" """ + if self.req is None: + return None + s = str(self.req) + if self.comes_from: + comes_from: Optional[str] + if isinstance(self.comes_from, str): + comes_from = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += "->" + comes_from + return s + + def ensure_build_location( + self, build_dir: str, autodelete: bool, parallel_builds: bool + ) -> str: + assert build_dir is not None + if self._temp_build_dir is not None: + assert self._temp_build_dir.path + return self._temp_build_dir.path + if self.req is None: + # Some systems have /tmp as a symlink which confuses custom + # builds (such as numpy). Thus, we ensure that the real path + # is returned. + self._temp_build_dir = TempDirectory( + kind=tempdir_kinds.REQ_BUILD, globally_managed=True + ) + + return self._temp_build_dir.path + + # This is the only remaining place where we manually determine the path + # for the temporary directory. It is only needed for editables where + # it is the value of the --src option. + + # When parallel builds are enabled, add a UUID to the build directory + # name so multiple builds do not interfere with each other. + dir_name: str = canonicalize_name(self.req.name) + if parallel_builds: + dir_name = f"{dir_name}_{uuid.uuid4().hex}" + + # FIXME: Is there a better place to create the build_dir? (hg and bzr + # need this) + if not os.path.exists(build_dir): + logger.debug("Creating directory %s", build_dir) + os.makedirs(build_dir) + actual_build_dir = os.path.join(build_dir, dir_name) + # `None` indicates that we respect the globally-configured deletion + # settings, which is what we actually want when auto-deleting. + delete_arg = None if autodelete else False + return TempDirectory( + path=actual_build_dir, + delete=delete_arg, + kind=tempdir_kinds.REQ_BUILD, + globally_managed=True, + ).path + + def _set_requirement(self) -> None: + """Set requirement after generating metadata.""" + assert self.req is None + assert self.metadata is not None + assert self.source_dir is not None + + # Construct a Requirement object from the generated metadata + if isinstance(parse_version(self.metadata["Version"]), Version): + op = "==" + else: + op = "===" + + self.req = Requirement( + "".join( + [ + self.metadata["Name"], + op, + self.metadata["Version"], + ] + ) + ) + + def warn_on_mismatching_name(self) -> None: + assert self.req is not None + metadata_name = canonicalize_name(self.metadata["Name"]) + if canonicalize_name(self.req.name) == metadata_name: + # Everything is fine. + return + + # If we're here, there's a mismatch. Log a warning about it. + logger.warning( + "Generating metadata for package %s " + "produced metadata for project name %s. Fix your " + "#egg=%s fragments.", + self.name, + metadata_name, + self.name, + ) + self.req = Requirement(metadata_name) + + def check_if_exists(self, use_user_site: bool) -> None: + """Find an installed distribution that satisfies or conflicts + with this requirement, and set self.satisfied_by or + self.should_reinstall appropriately. + """ + if self.req is None: + return + existing_dist = get_default_environment().get_distribution(self.req.name) + if not existing_dist: + return + + version_compatible = self.req.specifier.contains( + existing_dist.version, + prereleases=True, + ) + if not version_compatible: + self.satisfied_by = None + if use_user_site: + if existing_dist.in_usersite: + self.should_reinstall = True + elif running_under_virtualenv() and existing_dist.in_site_packages: + raise InstallationError( + f"Will not install to the user site because it will " + f"lack sys.path precedence to {existing_dist.raw_name} " + f"in {existing_dist.location}" + ) + else: + self.should_reinstall = True + else: + if self.editable: + self.should_reinstall = True + # when installing editables, nothing pre-existing should ever + # satisfy + self.satisfied_by = None + else: + self.satisfied_by = existing_dist + + # Things valid for wheels + @property + def is_wheel(self) -> bool: + if not self.link: + return False + return self.link.is_wheel + + @property + def is_wheel_from_cache(self) -> bool: + # When True, it means that this InstallRequirement is a local wheel file in the + # cache of locally built wheels. + return self.cached_wheel_source_link is not None + + # Things valid for sdists + @property + def unpacked_source_directory(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return os.path.join( + self.source_dir, self.link and self.link.subdirectory_fragment or "" + ) + + @property + def setup_py_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_py = os.path.join(self.unpacked_source_directory, "setup.py") + + return setup_py + + @property + def setup_cfg_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_cfg = os.path.join(self.unpacked_source_directory, "setup.cfg") + + return setup_cfg + + @property + def pyproject_toml_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return make_pyproject_path(self.unpacked_source_directory) + + def load_pyproject_toml(self) -> None: + """Load the pyproject.toml file. + + After calling this routine, all of the attributes related to PEP 517 + processing for this requirement have been set. In particular, the + use_pep517 attribute can be used to determine whether we should + follow the PEP 517 or legacy (setup.py) code path. + """ + pyproject_toml_data = load_pyproject_toml( + self.use_pep517, self.pyproject_toml_path, self.setup_py_path, str(self) + ) + + if pyproject_toml_data is None: + assert not self.config_settings + self.use_pep517 = False + return + + self.use_pep517 = True + requires, backend, check, backend_path = pyproject_toml_data + self.requirements_to_check = check + self.pyproject_requires = requires + self.pep517_backend = ConfiguredBuildBackendHookCaller( + self, + self.unpacked_source_directory, + backend, + backend_path=backend_path, + ) + + def isolated_editable_sanity_check(self) -> None: + """Check that an editable requirement if valid for use with PEP 517/518. + + This verifies that an editable that has a pyproject.toml either supports PEP 660 + or as a setup.py or a setup.cfg + """ + if ( + self.editable + and self.use_pep517 + and not self.supports_pyproject_editable() + and not os.path.isfile(self.setup_py_path) + and not os.path.isfile(self.setup_cfg_path) + ): + raise InstallationError( + f"Project {self} has a 'pyproject.toml' and its build " + f"backend is missing the 'build_editable' hook. Since it does not " + f"have a 'setup.py' nor a 'setup.cfg', " + f"it cannot be installed in editable mode. " + f"Consider using a build backend that supports PEP 660." + ) + + def prepare_metadata(self) -> None: + """Ensure that project metadata is available. + + Under PEP 517 and PEP 660, call the backend hook to prepare the metadata. + Under legacy processing, call setup.py egg-info. + """ + assert self.source_dir, f"No source dir for {self}" + details = self.name or f"from {self.link}" + + if self.use_pep517: + assert self.pep517_backend is not None + if ( + self.editable + and self.permit_editable_wheels + and self.supports_pyproject_editable() + ): + self.metadata_directory = generate_editable_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata_legacy( + build_env=self.build_env, + setup_py_path=self.setup_py_path, + source_dir=self.unpacked_source_directory, + isolated=self.isolated, + details=details, + ) + + # Act on the newly generated metadata, based on the name and version. + if not self.name: + self._set_requirement() + else: + self.warn_on_mismatching_name() + + self.assert_source_matches_version() + + @property + def metadata(self) -> Any: + if not hasattr(self, "_metadata"): + self._metadata = self.get_dist().metadata + + return self._metadata + + def get_dist(self) -> BaseDistribution: + if self.metadata_directory: + return get_directory_distribution(self.metadata_directory) + elif self.local_file_path and self.is_wheel: + assert self.req is not None + return get_wheel_distribution( + FilesystemWheel(self.local_file_path), + canonicalize_name(self.req.name), + ) + raise AssertionError( + f"InstallRequirement {self} has no metadata directory and no wheel: " + f"can't make a distribution." + ) + + def assert_source_matches_version(self) -> None: + assert self.source_dir, f"No source dir for {self}" + version = self.metadata["version"] + if self.req and self.req.specifier and version not in self.req.specifier: + logger.warning( + "Requested %s, but installing version %s", + self, + version, + ) + else: + logger.debug( + "Source in %s has version %s, which satisfies requirement %s", + display_path(self.source_dir), + version, + self, + ) + + # For both source distributions and editables + def ensure_has_source_dir( + self, + parent_dir: str, + autodelete: bool = False, + parallel_builds: bool = False, + ) -> None: + """Ensure that a source_dir is set. + + This will create a temporary build dir if the name of the requirement + isn't known yet. + + :param parent_dir: The ideal pip parent_dir for the source_dir. + Generally src_dir for editables and build_dir for sdists. + :return: self.source_dir + """ + if self.source_dir is None: + self.source_dir = self.ensure_build_location( + parent_dir, + autodelete=autodelete, + parallel_builds=parallel_builds, + ) + + def needs_unpacked_archive(self, archive_source: Path) -> None: + assert self._archive_source is None + self._archive_source = archive_source + + def ensure_pristine_source_checkout(self) -> None: + """Ensure the source directory has not yet been built in.""" + assert self.source_dir is not None + if self._archive_source is not None: + unpack_file(str(self._archive_source), self.source_dir) + elif is_installable_dir(self.source_dir): + # If a checkout exists, it's unwise to keep going. + # version inconsistencies are logged later, but do not fail + # the installation. + raise PreviousBuildDirError( + f"pip can't proceed with requirements '{self}' due to a " + f"pre-existing build directory ({self.source_dir}). This is likely " + "due to a previous installation that failed . pip is " + "being responsible and not assuming it can delete this. " + "Please delete it and try again." + ) + + # For editable installations + def update_editable(self) -> None: + if not self.link: + logger.debug( + "Cannot update repository at %s; repository location is unknown", + self.source_dir, + ) + return + assert self.editable + assert self.source_dir + if self.link.scheme == "file": + # Static paths don't get updated + return + vcs_backend = vcs.get_backend_for_scheme(self.link.scheme) + # Editable requirements are validated in Requirement constructors. + # So here, if it's neither a path nor a valid VCS URL, it's a bug. + assert vcs_backend, f"Unsupported VCS URL {self.link.url}" + hidden_url = hide_url(self.link.url) + vcs_backend.obtain(self.source_dir, url=hidden_url, verbosity=0) + + # Top-level Actions + def uninstall( + self, auto_confirm: bool = False, verbose: bool = False + ) -> Optional[UninstallPathSet]: + """ + Uninstall the distribution currently satisfying this requirement. + + Prompts before removing or modifying files unless + ``auto_confirm`` is True. + + Refuses to delete or modify files outside of ``sys.prefix`` - + thus uninstallation within a virtual environment can only + modify that virtual environment, even if the virtualenv is + linked to global site-packages. + + """ + assert self.req + dist = get_default_environment().get_distribution(self.req.name) + if not dist: + logger.warning("Skipping %s as it is not installed.", self.name) + return None + logger.info("Found existing installation: %s", dist) + + uninstalled_pathset = UninstallPathSet.from_dist(dist) + uninstalled_pathset.remove(auto_confirm, verbose) + return uninstalled_pathset + + def _get_archive_name(self, path: str, parentdir: str, rootdir: str) -> str: + def _clean_zip_name(name: str, prefix: str) -> str: + assert name.startswith( + prefix + os.path.sep + ), f"name {name!r} doesn't start with prefix {prefix!r}" + name = name[len(prefix) + 1 :] + name = name.replace(os.path.sep, "/") + return name + + assert self.req is not None + path = os.path.join(parentdir, path) + name = _clean_zip_name(path, rootdir) + return self.req.name + "/" + name + + def archive(self, build_dir: Optional[str]) -> None: + """Saves archive to provided build_dir. + + Used for saving downloaded VCS requirements as part of `pip download`. + """ + assert self.source_dir + if build_dir is None: + return + + create_archive = True + archive_name = "{}-{}.zip".format(self.name, self.metadata["version"]) + archive_path = os.path.join(build_dir, archive_name) + + if os.path.exists(archive_path): + response = ask_path_exists( + f"The file {display_path(archive_path)} exists. (i)gnore, (w)ipe, " + "(b)ackup, (a)bort ", + ("i", "w", "b", "a"), + ) + if response == "i": + create_archive = False + elif response == "w": + logger.warning("Deleting %s", display_path(archive_path)) + os.remove(archive_path) + elif response == "b": + dest_file = backup_dir(archive_path) + logger.warning( + "Backing up %s to %s", + display_path(archive_path), + display_path(dest_file), + ) + shutil.move(archive_path, dest_file) + elif response == "a": + sys.exit(-1) + + if not create_archive: + return + + zip_output = zipfile.ZipFile( + archive_path, + "w", + zipfile.ZIP_DEFLATED, + allowZip64=True, + ) + with zip_output: + dir = os.path.normcase(os.path.abspath(self.unpacked_source_directory)) + for dirpath, dirnames, filenames in os.walk(dir): + for dirname in dirnames: + dir_arcname = self._get_archive_name( + dirname, + parentdir=dirpath, + rootdir=dir, + ) + zipdir = zipfile.ZipInfo(dir_arcname + "/") + zipdir.external_attr = 0x1ED << 16 # 0o755 + zip_output.writestr(zipdir, "") + for filename in filenames: + file_arcname = self._get_archive_name( + filename, + parentdir=dirpath, + rootdir=dir, + ) + filename = os.path.join(dirpath, filename) + zip_output.write(filename, file_arcname) + + logger.info("Saved %s", display_path(archive_path)) + + def install( + self, + global_options: Optional[Sequence[str]] = None, + root: Optional[str] = None, + home: Optional[str] = None, + prefix: Optional[str] = None, + warn_script_location: bool = True, + use_user_site: bool = False, + pycompile: bool = True, + ) -> None: + assert self.req is not None + scheme = get_scheme( + self.req.name, + user=use_user_site, + home=home, + root=root, + isolated=self.isolated, + prefix=prefix, + ) + + if self.editable and not self.is_wheel: + if self.config_settings: + logger.warning( + "--config-settings ignored for legacy editable install of %s. " + "Consider upgrading to a version of setuptools " + "that supports PEP 660 (>= 64).", + self, + ) + install_editable_legacy( + global_options=global_options if global_options is not None else [], + prefix=prefix, + home=home, + use_user_site=use_user_site, + name=self.req.name, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + ) + self.install_succeeded = True + return + + assert self.is_wheel + assert self.local_file_path + + install_wheel( + self.req.name, + self.local_file_path, + scheme=scheme, + req_description=str(self.req), + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=self.download_info if self.is_direct else None, + requested=self.user_supplied, + ) + self.install_succeeded = True + + +def check_invalid_constraint_type(req: InstallRequirement) -> str: + # Check for unsupported forms + problem = "" + if not req.name: + problem = "Unnamed requirements are not allowed as constraints" + elif req.editable: + problem = "Editable requirements are not allowed as constraints" + elif req.extras: + problem = "Constraints cannot have extras" + + if problem: + deprecated( + reason=( + "Constraints are only allowed to take the form of a package " + "name and a version specifier. Other forms were originally " + "permitted as an accident of the implementation, but were " + "undocumented. The new implementation of the resolver no " + "longer supports these forms." + ), + replacement="replacing the constraint with a requirement", + # No plan yet for when the new resolver becomes default + gone_in=None, + issue=8210, + ) + + return problem + + +def _has_option(options: Values, reqs: List[InstallRequirement], option: str) -> bool: + if getattr(options, option, None): + return True + for req in reqs: + if getattr(req, option, None): + return True + return False + + +def check_legacy_setup_py_options( + options: Values, + reqs: List[InstallRequirement], +) -> None: + has_build_options = _has_option(options, reqs, "build_options") + has_global_options = _has_option(options, reqs, "global_options") + if has_build_options or has_global_options: + deprecated( + reason="--build-option and --global-option are deprecated.", + issue=11859, + replacement="to use --config-settings", + gone_in="24.2", + ) + logger.warning( + "Implying --no-binary=:all: due to the presence of " + "--build-option / --global-option. " + ) + options.format_control.disallow_binaries() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 00000000..bf36114e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,119 @@ +import logging +from collections import OrderedDict +from typing import Dict, List + +from pip._vendor.packaging.specifiers import LegacySpecifier +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import LegacyVersion + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.deprecation import deprecated + +logger = logging.getLogger(__name__) + + +class RequirementSet: + def __init__(self, check_supported_wheels: bool = True) -> None: + """Create a RequirementSet.""" + + self.requirements: Dict[str, InstallRequirement] = OrderedDict() + self.check_supported_wheels = check_supported_wheels + + self.unnamed_requirements: List[InstallRequirement] = [] + + def __str__(self) -> str: + requirements = sorted( + (req for req in self.requirements.values() if not req.comes_from), + key=lambda req: canonicalize_name(req.name or ""), + ) + return " ".join(str(req.req) for req in requirements) + + def __repr__(self) -> str: + requirements = sorted( + self.requirements.values(), + key=lambda req: canonicalize_name(req.name or ""), + ) + + format_string = "<{classname} object; {count} requirement(s): {reqs}>" + return format_string.format( + classname=self.__class__.__name__, + count=len(requirements), + reqs=", ".join(str(req.req) for req in requirements), + ) + + def add_unnamed_requirement(self, install_req: InstallRequirement) -> None: + assert not install_req.name + self.unnamed_requirements.append(install_req) + + def add_named_requirement(self, install_req: InstallRequirement) -> None: + assert install_req.name + + project_name = canonicalize_name(install_req.name) + self.requirements[project_name] = install_req + + def has_requirement(self, name: str) -> bool: + project_name = canonicalize_name(name) + + return ( + project_name in self.requirements + and not self.requirements[project_name].constraint + ) + + def get_requirement(self, name: str) -> InstallRequirement: + project_name = canonicalize_name(name) + + if project_name in self.requirements: + return self.requirements[project_name] + + raise KeyError(f"No project with the name {name!r}") + + @property + def all_requirements(self) -> List[InstallRequirement]: + return self.unnamed_requirements + list(self.requirements.values()) + + @property + def requirements_to_install(self) -> List[InstallRequirement]: + """Return the list of requirements that need to be installed. + + TODO remove this property together with the legacy resolver, since the new + resolver only returns requirements that need to be installed. + """ + return [ + install_req + for install_req in self.all_requirements + if not install_req.constraint and not install_req.satisfied_by + ] + + def warn_legacy_versions_and_specifiers(self) -> None: + for req in self.requirements_to_install: + version = req.get_dist().version + if isinstance(version, LegacyVersion): + deprecated( + reason=( + f"pip has selected the non standard version {version} " + f"of {req}. In the future this version will be " + f"ignored as it isn't standard compliant." + ), + replacement=( + "set or update constraints to select another version " + "or contact the package author to fix the version number" + ), + issue=12063, + gone_in="24.1", + ) + for dep in req.get_dist().iter_dependencies(): + if any(isinstance(spec, LegacySpecifier) for spec in dep.specifier): + deprecated( + reason=( + f"pip has selected {req} {version} which has non " + f"standard dependency specifier {dep}. " + f"In the future this version of {req} will be " + f"ignored as it isn't standard compliant." + ), + replacement=( + "set or update constraints to select another version " + "or contact the package author to fix the version number" + ), + issue=12063, + gone_in="24.1", + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 00000000..707fde1b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,649 @@ +import functools +import os +import sys +import sysconfig +from importlib.util import cache_from_source +from typing import Any, Callable, Dict, Generator, Iterable, List, Optional, Set, Tuple + +from pip._internal.exceptions import UninstallationError +from pip._internal.locations import get_bin_prefix, get_bin_user +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.logging import getLogger, indent_log +from pip._internal.utils.misc import ask, normalize_path, renames, rmtree +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory +from pip._internal.utils.virtualenv import running_under_virtualenv + +logger = getLogger(__name__) + + +def _script_names( + bin_dir: str, script_name: str, is_gui: bool +) -> Generator[str, None, None]: + """Create the fully qualified name of the files created by + {console,gui}_scripts for the given ``dist``. + Returns the list of file names + """ + exe_name = os.path.join(bin_dir, script_name) + yield exe_name + if not WINDOWS: + return + yield f"{exe_name}.exe" + yield f"{exe_name}.exe.manifest" + if is_gui: + yield f"{exe_name}-script.pyw" + else: + yield f"{exe_name}-script.py" + + +def _unique( + fn: Callable[..., Generator[Any, None, None]] +) -> Callable[..., Generator[Any, None, None]]: + @functools.wraps(fn) + def unique(*args: Any, **kw: Any) -> Generator[Any, None, None]: + seen: Set[Any] = set() + for item in fn(*args, **kw): + if item not in seen: + seen.add(item) + yield item + + return unique + + +@_unique +def uninstallation_paths(dist: BaseDistribution) -> Generator[str, None, None]: + """ + Yield all the uninstallation paths for dist based on RECORD-without-.py[co] + + Yield paths to all the files in RECORD. For each .py file in RECORD, add + the .pyc and .pyo in the same directory. + + UninstallPathSet.add() takes care of the __pycache__ .py[co]. + + If RECORD is not found, raises UninstallationError, + with possible information from the INSTALLER file. + + https://packaging.python.org/specifications/recording-installed-packages/ + """ + location = dist.location + assert location is not None, "not installed" + + entries = dist.iter_declared_entries() + if entries is None: + msg = f"Cannot uninstall {dist}, RECORD file not found." + installer = dist.installer + if not installer or installer == "pip": + dep = f"{dist.raw_name}=={dist.version}" + msg += ( + " You might be able to recover from this via: " + f"'pip install --force-reinstall --no-deps {dep}'." + ) + else: + msg += f" Hint: The package was installed by {installer}." + raise UninstallationError(msg) + + for entry in entries: + path = os.path.join(location, entry) + yield path + if path.endswith(".py"): + dn, fn = os.path.split(path) + base = fn[:-3] + path = os.path.join(dn, base + ".pyc") + yield path + path = os.path.join(dn, base + ".pyo") + yield path + + +def compact(paths: Iterable[str]) -> Set[str]: + """Compact a path set to contain the minimal number of paths + necessary to contain all paths in the set. If /a/path/ and + /a/path/to/a/file.txt are both in the set, leave only the + shorter path.""" + + sep = os.path.sep + short_paths: Set[str] = set() + for path in sorted(paths, key=len): + should_skip = any( + path.startswith(shortpath.rstrip("*")) + and path[len(shortpath.rstrip("*").rstrip(sep))] == sep + for shortpath in short_paths + ) + if not should_skip: + short_paths.add(path) + return short_paths + + +def compress_for_rename(paths: Iterable[str]) -> Set[str]: + """Returns a set containing the paths that need to be renamed. + + This set may include directories when the original sequence of paths + included every file on disk. + """ + case_map = {os.path.normcase(p): p for p in paths} + remaining = set(case_map) + unchecked = sorted({os.path.split(p)[0] for p in case_map.values()}, key=len) + wildcards: Set[str] = set() + + def norm_join(*a: str) -> str: + return os.path.normcase(os.path.join(*a)) + + for root in unchecked: + if any(os.path.normcase(root).startswith(w) for w in wildcards): + # This directory has already been handled. + continue + + all_files: Set[str] = set() + all_subdirs: Set[str] = set() + for dirname, subdirs, files in os.walk(root): + all_subdirs.update(norm_join(root, dirname, d) for d in subdirs) + all_files.update(norm_join(root, dirname, f) for f in files) + # If all the files we found are in our remaining set of files to + # remove, then remove them from the latter set and add a wildcard + # for the directory. + if not (all_files - remaining): + remaining.difference_update(all_files) + wildcards.add(root + os.sep) + + return set(map(case_map.__getitem__, remaining)) | wildcards + + +def compress_for_output_listing(paths: Iterable[str]) -> Tuple[Set[str], Set[str]]: + """Returns a tuple of 2 sets of which paths to display to user + + The first set contains paths that would be deleted. Files of a package + are not added and the top-level directory of the package has a '*' added + at the end - to signify that all it's contents are removed. + + The second set contains files that would have been skipped in the above + folders. + """ + + will_remove = set(paths) + will_skip = set() + + # Determine folders and files + folders = set() + files = set() + for path in will_remove: + if path.endswith(".pyc"): + continue + if path.endswith("__init__.py") or ".dist-info" in path: + folders.add(os.path.dirname(path)) + files.add(path) + + _normcased_files = set(map(os.path.normcase, files)) + + folders = compact(folders) + + # This walks the tree using os.walk to not miss extra folders + # that might get added. + for folder in folders: + for dirpath, _, dirfiles in os.walk(folder): + for fname in dirfiles: + if fname.endswith(".pyc"): + continue + + file_ = os.path.join(dirpath, fname) + if ( + os.path.isfile(file_) + and os.path.normcase(file_) not in _normcased_files + ): + # We are skipping this file. Add it to the set. + will_skip.add(file_) + + will_remove = files | {os.path.join(folder, "*") for folder in folders} + + return will_remove, will_skip + + +class StashedUninstallPathSet: + """A set of file rename operations to stash files while + tentatively uninstalling them.""" + + def __init__(self) -> None: + # Mapping from source file root to [Adjacent]TempDirectory + # for files under that directory. + self._save_dirs: Dict[str, TempDirectory] = {} + # (old path, new path) tuples for each move that may need + # to be undone. + self._moves: List[Tuple[str, str]] = [] + + def _get_directory_stash(self, path: str) -> str: + """Stashes a directory. + + Directories are stashed adjacent to their original location if + possible, or else moved/copied into the user's temp dir.""" + + try: + save_dir: TempDirectory = AdjacentTempDirectory(path) + except OSError: + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[os.path.normcase(path)] = save_dir + + return save_dir.path + + def _get_file_stash(self, path: str) -> str: + """Stashes a file. + + If no root has been provided, one will be created for the directory + in the user's temp directory.""" + path = os.path.normcase(path) + head, old_head = os.path.dirname(path), None + save_dir = None + + while head != old_head: + try: + save_dir = self._save_dirs[head] + break + except KeyError: + pass + head, old_head = os.path.dirname(head), head + else: + # Did not find any suitable root + head = os.path.dirname(path) + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[head] = save_dir + + relpath = os.path.relpath(path, head) + if relpath and relpath != os.path.curdir: + return os.path.join(save_dir.path, relpath) + return save_dir.path + + def stash(self, path: str) -> str: + """Stashes the directory or file and returns its new location. + Handle symlinks as files to avoid modifying the symlink targets. + """ + path_is_dir = os.path.isdir(path) and not os.path.islink(path) + if path_is_dir: + new_path = self._get_directory_stash(path) + else: + new_path = self._get_file_stash(path) + + self._moves.append((path, new_path)) + if path_is_dir and os.path.isdir(new_path): + # If we're moving a directory, we need to + # remove the destination first or else it will be + # moved to inside the existing directory. + # We just created new_path ourselves, so it will + # be removable. + os.rmdir(new_path) + renames(path, new_path) + return new_path + + def commit(self) -> None: + """Commits the uninstall by removing stashed files.""" + for save_dir in self._save_dirs.values(): + save_dir.cleanup() + self._moves = [] + self._save_dirs = {} + + def rollback(self) -> None: + """Undoes the uninstall by moving stashed files back.""" + for p in self._moves: + logger.info("Moving to %s\n from %s", *p) + + for new_path, path in self._moves: + try: + logger.debug("Replacing %s from %s", new_path, path) + if os.path.isfile(new_path) or os.path.islink(new_path): + os.unlink(new_path) + elif os.path.isdir(new_path): + rmtree(new_path) + renames(path, new_path) + except OSError as ex: + logger.error("Failed to restore %s", new_path) + logger.debug("Exception: %s", ex) + + self.commit() + + @property + def can_rollback(self) -> bool: + return bool(self._moves) + + +class UninstallPathSet: + """A set of file paths to be removed in the uninstallation of a + requirement.""" + + def __init__(self, dist: BaseDistribution) -> None: + self._paths: Set[str] = set() + self._refuse: Set[str] = set() + self._pth: Dict[str, UninstallPthEntries] = {} + self._dist = dist + self._moved_paths = StashedUninstallPathSet() + # Create local cache of normalize_path results. Creating an UninstallPathSet + # can result in hundreds/thousands of redundant calls to normalize_path with + # the same args, which hurts performance. + self._normalize_path_cached = functools.lru_cache()(normalize_path) + + def _permitted(self, path: str) -> bool: + """ + Return True if the given path is one we are permitted to + remove/modify, False otherwise. + + """ + # aka is_local, but caching normalized sys.prefix + if not running_under_virtualenv(): + return True + return path.startswith(self._normalize_path_cached(sys.prefix)) + + def add(self, path: str) -> None: + head, tail = os.path.split(path) + + # we normalize the head to resolve parent directory symlinks, but not + # the tail, since we only want to uninstall symlinks, not their targets + path = os.path.join(self._normalize_path_cached(head), os.path.normcase(tail)) + + if not os.path.exists(path): + return + if self._permitted(path): + self._paths.add(path) + else: + self._refuse.add(path) + + # __pycache__ files can show up after 'installed-files.txt' is created, + # due to imports + if os.path.splitext(path)[1] == ".py": + self.add(cache_from_source(path)) + + def add_pth(self, pth_file: str, entry: str) -> None: + pth_file = self._normalize_path_cached(pth_file) + if self._permitted(pth_file): + if pth_file not in self._pth: + self._pth[pth_file] = UninstallPthEntries(pth_file) + self._pth[pth_file].add(entry) + else: + self._refuse.add(pth_file) + + def remove(self, auto_confirm: bool = False, verbose: bool = False) -> None: + """Remove paths in ``self._paths`` with confirmation (unless + ``auto_confirm`` is True).""" + + if not self._paths: + logger.info( + "Can't uninstall '%s'. No files were found to uninstall.", + self._dist.raw_name, + ) + return + + dist_name_version = f"{self._dist.raw_name}-{self._dist.version}" + logger.info("Uninstalling %s:", dist_name_version) + + with indent_log(): + if auto_confirm or self._allowed_to_proceed(verbose): + moved = self._moved_paths + + for_rename = compress_for_rename(self._paths) + + for path in sorted(compact(for_rename)): + moved.stash(path) + logger.verbose("Removing file or directory %s", path) + + for pth in self._pth.values(): + pth.remove() + + logger.info("Successfully uninstalled %s", dist_name_version) + + def _allowed_to_proceed(self, verbose: bool) -> bool: + """Display which files would be deleted and prompt for confirmation""" + + def _display(msg: str, paths: Iterable[str]) -> None: + if not paths: + return + + logger.info(msg) + with indent_log(): + for path in sorted(compact(paths)): + logger.info(path) + + if not verbose: + will_remove, will_skip = compress_for_output_listing(self._paths) + else: + # In verbose mode, display all the files that are going to be + # deleted. + will_remove = set(self._paths) + will_skip = set() + + _display("Would remove:", will_remove) + _display("Would not remove (might be manually added):", will_skip) + _display("Would not remove (outside of prefix):", self._refuse) + if verbose: + _display("Will actually move:", compress_for_rename(self._paths)) + + return ask("Proceed (Y/n)? ", ("y", "n", "")) != "n" + + def rollback(self) -> None: + """Rollback the changes previously made by remove().""" + if not self._moved_paths.can_rollback: + logger.error( + "Can't roll back %s; was not uninstalled", + self._dist.raw_name, + ) + return + logger.info("Rolling back uninstall of %s", self._dist.raw_name) + self._moved_paths.rollback() + for pth in self._pth.values(): + pth.rollback() + + def commit(self) -> None: + """Remove temporary save dir: rollback will no longer be possible.""" + self._moved_paths.commit() + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "UninstallPathSet": + dist_location = dist.location + info_location = dist.info_location + if dist_location is None: + logger.info( + "Not uninstalling %s since it is not installed", + dist.canonical_name, + ) + return cls(dist) + + normalized_dist_location = normalize_path(dist_location) + if not dist.local: + logger.info( + "Not uninstalling %s at %s, outside environment %s", + dist.canonical_name, + normalized_dist_location, + sys.prefix, + ) + return cls(dist) + + if normalized_dist_location in { + p + for p in {sysconfig.get_path("stdlib"), sysconfig.get_path("platstdlib")} + if p + }: + logger.info( + "Not uninstalling %s at %s, as it is in the standard library.", + dist.canonical_name, + normalized_dist_location, + ) + return cls(dist) + + paths_to_remove = cls(dist) + develop_egg_link = egg_link_path_from_location(dist.raw_name) + + # Distribution is installed with metadata in a "flat" .egg-info + # directory. This means it is not a modern .dist-info installation, an + # egg, or legacy editable. + setuptools_flat_installation = ( + dist.installed_with_setuptools_egg_info + and info_location is not None + and os.path.exists(info_location) + # If dist is editable and the location points to a ``.egg-info``, + # we are in fact in the legacy editable case. + and not info_location.endswith(f"{dist.setuptools_filename}.egg-info") + ) + + # Uninstall cases order do matter as in the case of 2 installs of the + # same package, pip needs to uninstall the currently detected version + if setuptools_flat_installation: + if info_location is not None: + paths_to_remove.add(info_location) + installed_files = dist.iter_declared_entries() + if installed_files is not None: + for installed_file in installed_files: + paths_to_remove.add(os.path.join(dist_location, installed_file)) + # FIXME: need a test for this elif block + # occurs with --single-version-externally-managed/--record outside + # of pip + elif dist.is_file("top_level.txt"): + try: + namespace_packages = dist.read_text("namespace_packages.txt") + except FileNotFoundError: + namespaces = [] + else: + namespaces = namespace_packages.splitlines(keepends=False) + for top_level_pkg in [ + p + for p in dist.read_text("top_level.txt").splitlines() + if p and p not in namespaces + ]: + path = os.path.join(dist_location, top_level_pkg) + paths_to_remove.add(path) + paths_to_remove.add(f"{path}.py") + paths_to_remove.add(f"{path}.pyc") + paths_to_remove.add(f"{path}.pyo") + + elif dist.installed_by_distutils: + raise UninstallationError( + "Cannot uninstall {!r}. It is a distutils installed project " + "and thus we cannot accurately determine which files belong " + "to it which would lead to only a partial uninstall.".format( + dist.raw_name, + ) + ) + + elif dist.installed_as_egg: + # package installed by easy_install + # We cannot match on dist.egg_name because it can slightly vary + # i.e. setuptools-0.6c11-py2.6.egg vs setuptools-0.6rc11-py2.6.egg + paths_to_remove.add(dist_location) + easy_install_egg = os.path.split(dist_location)[1] + easy_install_pth = os.path.join( + os.path.dirname(dist_location), + "easy-install.pth", + ) + paths_to_remove.add_pth(easy_install_pth, "./" + easy_install_egg) + + elif dist.installed_with_dist_info: + for path in uninstallation_paths(dist): + paths_to_remove.add(path) + + elif develop_egg_link: + # PEP 660 modern editable is handled in the ``.dist-info`` case + # above, so this only covers the setuptools-style editable. + with open(develop_egg_link) as fh: + link_pointer = os.path.normcase(fh.readline().strip()) + normalized_link_pointer = paths_to_remove._normalize_path_cached( + link_pointer + ) + assert os.path.samefile( + normalized_link_pointer, normalized_dist_location + ), ( + f"Egg-link {develop_egg_link} (to {link_pointer}) does not match " + f"installed location of {dist.raw_name} (at {dist_location})" + ) + paths_to_remove.add(develop_egg_link) + easy_install_pth = os.path.join( + os.path.dirname(develop_egg_link), "easy-install.pth" + ) + paths_to_remove.add_pth(easy_install_pth, dist_location) + + else: + logger.debug( + "Not sure how to uninstall: %s - Check: %s", + dist, + dist_location, + ) + + if dist.in_usersite: + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + + # find distutils scripts= scripts + try: + for script in dist.iter_distutils_script_names(): + paths_to_remove.add(os.path.join(bin_dir, script)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, f"{script}.bat")) + except (FileNotFoundError, NotADirectoryError): + pass + + # find console_scripts and gui_scripts + def iter_scripts_to_remove( + dist: BaseDistribution, + bin_dir: str, + ) -> Generator[str, None, None]: + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + yield from _script_names(bin_dir, entry_point.name, False) + elif entry_point.group == "gui_scripts": + yield from _script_names(bin_dir, entry_point.name, True) + + for s in iter_scripts_to_remove(dist, bin_dir): + paths_to_remove.add(s) + + return paths_to_remove + + +class UninstallPthEntries: + def __init__(self, pth_file: str) -> None: + self.file = pth_file + self.entries: Set[str] = set() + self._saved_lines: Optional[List[bytes]] = None + + def add(self, entry: str) -> None: + entry = os.path.normcase(entry) + # On Windows, os.path.normcase converts the entry to use + # backslashes. This is correct for entries that describe absolute + # paths outside of site-packages, but all the others use forward + # slashes. + # os.path.splitdrive is used instead of os.path.isabs because isabs + # treats non-absolute paths with drive letter markings like c:foo\bar + # as absolute paths. It also does not recognize UNC paths if they don't + # have more than "\\sever\share". Valid examples: "\\server\share\" or + # "\\server\share\folder". + if WINDOWS and not os.path.splitdrive(entry)[0]: + entry = entry.replace("\\", "/") + self.entries.add(entry) + + def remove(self) -> None: + logger.verbose("Removing pth entries from %s:", self.file) + + # If the file doesn't exist, log a warning and return + if not os.path.isfile(self.file): + logger.warning("Cannot remove entries from nonexistent file %s", self.file) + return + with open(self.file, "rb") as fh: + # windows uses '\r\n' with py3k, but uses '\n' with py2.x + lines = fh.readlines() + self._saved_lines = lines + if any(b"\r\n" in line for line in lines): + endline = "\r\n" + else: + endline = "\n" + # handle missing trailing newline + if lines and not lines[-1].endswith(endline.encode("utf-8")): + lines[-1] = lines[-1] + endline.encode("utf-8") + for entry in self.entries: + try: + logger.verbose("Removing entry: %s", entry) + lines.remove((entry + endline).encode("utf-8")) + except ValueError: + pass + with open(self.file, "wb") as fh: + fh.writelines(lines) + + def rollback(self) -> bool: + if self._saved_lines is None: + logger.error("Cannot roll back changes to %s, none were made", self.file) + return False + logger.debug("Rolling %s back to previous state", self.file) + with open(self.file, "wb") as fh: + fh.writelines(self._saved_lines) + return True diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad349e96720a31a1d70e41549495a7b8502373c1 GIT binary patch literal 248 zcmZ8bI}XAy3~l&G2#Gs%VPI%2U_~r+g$4F1fT0m-93^Q{@4(I(I13YJ-~@<`iG-0S z+3)$;((`>V=tmyI$E67T4DBE9j(4t66OGvF7MYfx-r?qRg@Q_iBi|Z<5;C+WM;g|2 zaA$5X&ag&Fx zKMZc$jQvK*YPic_{tX5vEM=+1S#CvEZbx?RM2Vc2>a<=EDKBB>-)(Xtp=ZS&`padU-G<7M2jwKA0+3F6UdlaitSqiBkjgJQaTp3@2 z9?7EXtk|HZGgCg_LUY2jg{~S;mi{~I)H*!1%;urcck+@~r-bwiDTPFNTm`%*sblgS z8b!65&E|_A!-2>l>?a+W0S|A1I?|#HABvtnP9!vM!5FwGNwVfmF_H?xyCNNN*#BAx zuEK1!)qYnTt7HRP?9nu z>Q&f5q1xrd)GBNYk1oC{U3-bHA@%t>ns3>2pPhf_=Z)QIuscV9(VxRuVKbL^guwr! zo!r26@;sWBE#IJ+bXHWQ*_0R1nXNu(WL;gPgy_aXrXU~f{)^-57gZH6QrS1r9JcBv zh~py3A&yNWj`K=UjMw6LI7;|pM$#*ibQ6u+L9u0x@=Y>tp*dX?tH{YZp=7G&eulwg zc4j-?)u-D#(<>j$wy&Q#lzn-x^3Up*<{su}4FWIiEy4BaMsrqw`#DWjOskTIt#iiL zlQJv%lCI5ymxqzr!B)2aX(cvjNZ(4O1^4aOufZl&2QrS*(p>)U3%xJJI75LKXWOBT zNxbU3FM@-GW}nJk#ON`oPtcq>mSz3QuFcrB-`T-0?Bi!Udr!UK`}e1td$Y#7Q}?}T a>&Dc*@uy>7v8U|v-;KI;^)H5|s{Il%Nk%RJ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py new file mode 100644 index 00000000..42dade18 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py @@ -0,0 +1,20 @@ +from typing import Callable, List, Optional + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet + +InstallRequirementProvider = Callable[ + [str, Optional[InstallRequirement]], InstallRequirement +] + + +class BaseResolver: + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + raise NotImplementedError() + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + raise NotImplementedError() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a888e580565c3fb682776df43dc0f9e700cedd0f GIT binary patch literal 255 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 RCVFhuD@(uO=*`Cc{{WxE#n=D< literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py new file mode 100644 index 00000000..5ddb848a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py @@ -0,0 +1,598 @@ +"""Dependency Resolution + +The dependency resolution in pip is performed as follows: + +for top-level requirements: + a. only one spec allowed per project, regardless of conflicts or not. + otherwise a "double requirement" exception is raised + b. they override sub-dependency requirements. +for sub-dependencies + a. "first found, wins" (where the order is breadth first) +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import sys +from collections import defaultdict +from itertools import chain +from typing import DefaultDict, Iterable, List, Optional, Set, Tuple + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.requirements import Requirement + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + HashError, + HashErrors, + InstallationError, + NoneMetadataError, + UnsupportedPythonVersion, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.utils import compatibility_tags +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import normalize_version_info +from pip._internal.utils.packaging import check_requires_python + +logger = logging.getLogger(__name__) + +DiscoveredDependencies = DefaultDict[str, List[InstallRequirement]] + + +def _check_dist_requires_python( + dist: BaseDistribution, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> None: + """ + Check whether the given Python version is compatible with a distribution's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + + :raises UnsupportedPythonVersion: When the given Python version isn't + compatible. + """ + # This idiosyncratically converts the SpecifierSet to str and let + # check_requires_python then parse it again into SpecifierSet. But this + # is the legacy resolver so I'm just not going to bother refactoring. + try: + requires_python = str(dist.requires_python) + except FileNotFoundError as e: + raise NoneMetadataError(dist, str(e)) + try: + is_compatible = check_requires_python( + requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier as exc: + logger.warning( + "Package %r has an invalid Requires-Python: %s", dist.raw_name, exc + ) + return + + if is_compatible: + return + + version = ".".join(map(str, version_info)) + if ignore_requires_python: + logger.debug( + "Ignoring failed Requires-Python check for package %r: %s not in %r", + dist.raw_name, + version, + requires_python, + ) + return + + raise UnsupportedPythonVersion( + "Package {!r} requires a different Python: {} not in {!r}".format( + dist.raw_name, version, requires_python + ) + ) + + +class Resolver(BaseResolver): + """Resolves which packages need to be installed/uninstalled to perform \ + the requested operation without breaking the requirements of any package. + """ + + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + self._py_version_info = py_version_info + + self.preparer = preparer + self.finder = finder + self.wheel_cache = wheel_cache + + self.upgrade_strategy = upgrade_strategy + self.force_reinstall = force_reinstall + self.ignore_dependencies = ignore_dependencies + self.ignore_installed = ignore_installed + self.ignore_requires_python = ignore_requires_python + self.use_user_site = use_user_site + self._make_install_req = make_install_req + + self._discovered_dependencies: DiscoveredDependencies = defaultdict(list) + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + """Resolve what operations need to be done + + As a side-effect of this method, the packages (and their dependencies) + are downloaded, unpacked and prepared for installation. This + preparation is done by ``pip.operations.prepare``. + + Once PyPI has static dependency metadata available, it would be + possible to move the preparation to become a step separated from + dependency resolution. + """ + requirement_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for req in root_reqs: + if req.constraint: + check_invalid_constraint_type(req) + self._add_requirement_to_set(requirement_set, req) + + # Actually prepare the files, and collect any exceptions. Most hash + # exceptions cannot be checked ahead of time, because + # _populate_link() needs to be called before we can make decisions + # based on link type. + discovered_reqs: List[InstallRequirement] = [] + hash_errors = HashErrors() + for req in chain(requirement_set.all_requirements, discovered_reqs): + try: + discovered_reqs.extend(self._resolve_one(requirement_set, req)) + except HashError as exc: + exc.req = req + hash_errors.append(exc) + + if hash_errors: + raise hash_errors + + return requirement_set + + def _add_requirement_to_set( + self, + requirement_set: RequirementSet, + install_req: InstallRequirement, + parent_req_name: Optional[str] = None, + extras_requested: Optional[Iterable[str]] = None, + ) -> Tuple[List[InstallRequirement], Optional[InstallRequirement]]: + """Add install_req as a requirement to install. + + :param parent_req_name: The name of the requirement that needed this + added. The name is used because when multiple unnamed requirements + resolve to the same name, we could otherwise end up with dependency + links that point outside the Requirements set. parent_req must + already be added. Note that None implies that this is a user + supplied requirement, vs an inferred one. + :param extras_requested: an iterable of extras used to evaluate the + environment markers. + :return: Additional requirements to scan. That is either [] if + the requirement is not applicable, or [install_req] if the + requirement is applicable and has just been added. + """ + # If the markers do not match, ignore this requirement. + if not install_req.match_markers(extras_requested): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + install_req.name, + install_req.markers, + ) + return [], None + + # If the wheel is not supported, raise an error. + # Should check this after filtering out based on environment markers to + # allow specifying different wheels based on the environment/OS, in a + # single requirements file. + if install_req.link and install_req.link.is_wheel: + wheel = Wheel(install_req.link.filename) + tags = compatibility_tags.get_supported() + if requirement_set.check_supported_wheels and not wheel.supported(tags): + raise InstallationError( + f"{wheel.filename} is not a supported wheel on this platform." + ) + + # This next bit is really a sanity check. + assert ( + not install_req.user_supplied or parent_req_name is None + ), "a user supplied req shouldn't have a parent" + + # Unnamed requirements are scanned again and the requirement won't be + # added as a dependency until after scanning. + if not install_req.name: + requirement_set.add_unnamed_requirement(install_req) + return [install_req], None + + try: + existing_req: Optional[ + InstallRequirement + ] = requirement_set.get_requirement(install_req.name) + except KeyError: + existing_req = None + + has_conflicting_requirement = ( + parent_req_name is None + and existing_req + and not existing_req.constraint + and existing_req.extras == install_req.extras + and existing_req.req + and install_req.req + and existing_req.req.specifier != install_req.req.specifier + ) + if has_conflicting_requirement: + raise InstallationError( + "Double requirement given: {} (already in {}, name={!r})".format( + install_req, existing_req, install_req.name + ) + ) + + # When no existing requirement exists, add the requirement as a + # dependency and it will be scanned again after. + if not existing_req: + requirement_set.add_named_requirement(install_req) + # We'd want to rescan this requirement later + return [install_req], install_req + + # Assume there's no need to scan, and that we've already + # encountered this for scanning. + if install_req.constraint or not existing_req.constraint: + return [], existing_req + + does_not_satisfy_constraint = install_req.link and not ( + existing_req.link and install_req.link.path == existing_req.link.path + ) + if does_not_satisfy_constraint: + raise InstallationError( + f"Could not satisfy constraints for '{install_req.name}': " + "installation from path or url cannot be " + "constrained to a version" + ) + # If we're now installing a constraint, mark the existing + # object for real installation. + existing_req.constraint = False + # If we're now installing a user supplied requirement, + # mark the existing object as such. + if install_req.user_supplied: + existing_req.user_supplied = True + existing_req.extras = tuple( + sorted(set(existing_req.extras) | set(install_req.extras)) + ) + logger.debug( + "Setting %s extras to: %s", + existing_req, + existing_req.extras, + ) + # Return the existing requirement for addition to the parent and + # scanning again. + return [existing_req], existing_req + + def _is_upgrade_allowed(self, req: InstallRequirement) -> bool: + if self.upgrade_strategy == "to-satisfy-only": + return False + elif self.upgrade_strategy == "eager": + return True + else: + assert self.upgrade_strategy == "only-if-needed" + return req.user_supplied or req.constraint + + def _set_req_to_reinstall(self, req: InstallRequirement) -> None: + """ + Set a requirement to be installed. + """ + # Don't uninstall the conflict if doing a user install and the + # conflict is not a user install. + if not self.use_user_site or req.satisfied_by.in_usersite: + req.should_reinstall = True + req.satisfied_by = None + + def _check_skip_installed( + self, req_to_install: InstallRequirement + ) -> Optional[str]: + """Check if req_to_install should be skipped. + + This will check if the req is installed, and whether we should upgrade + or reinstall it, taking into account all the relevant user options. + + After calling this req_to_install will only have satisfied_by set to + None if the req_to_install is to be upgraded/reinstalled etc. Any + other value will be a dist recording the current thing installed that + satisfies the requirement. + + Note that for vcs urls and the like we can't assess skipping in this + routine - we simply identify that we need to pull the thing down, + then later on it is pulled down and introspected to assess upgrade/ + reinstalls etc. + + :return: A text reason for why it was skipped, or None. + """ + if self.ignore_installed: + return None + + req_to_install.check_if_exists(self.use_user_site) + if not req_to_install.satisfied_by: + return None + + if self.force_reinstall: + self._set_req_to_reinstall(req_to_install) + return None + + if not self._is_upgrade_allowed(req_to_install): + if self.upgrade_strategy == "only-if-needed": + return "already satisfied, skipping upgrade" + return "already satisfied" + + # Check for the possibility of an upgrade. For link-based + # requirements we have to pull the tree down and inspect to assess + # the version #, so it's handled way down. + if not req_to_install.link: + try: + self.finder.find_requirement(req_to_install, upgrade=True) + except BestVersionAlreadyInstalled: + # Then the best version is installed. + return "already up-to-date" + except DistributionNotFound: + # No distribution found, so we squash the error. It will + # be raised later when we re-try later to do the install. + # Why don't we just raise here? + pass + + self._set_req_to_reinstall(req_to_install) + return None + + def _find_requirement_link(self, req: InstallRequirement) -> Optional[Link]: + upgrade = self._is_upgrade_allowed(req) + best_candidate = self.finder.find_requirement(req, upgrade) + if not best_candidate: + return None + + # Log a warning per PEP 592 if necessary before returning. + link = best_candidate.link + if link.is_yanked: + reason = link.yanked_reason or "" + msg = ( + # Mark this as a unicode string to prevent + # "UnicodeEncodeError: 'ascii' codec can't encode character" + # in Python 2 when the reason contains non-ascii characters. + "The candidate selected for download or install is a " + f"yanked version: {best_candidate}\n" + f"Reason for being yanked: {reason}" + ) + logger.warning(msg) + + return link + + def _populate_link(self, req: InstallRequirement) -> None: + """Ensure that if a link can be found for this, that it is found. + + Note that req.link may still be None - if the requirement is already + installed and not needed to be upgraded based on the return value of + _is_upgrade_allowed(). + + If preparer.require_hashes is True, don't use the wheel cache, because + cached wheels, always built locally, have different hashes than the + files downloaded from the index server and thus throw false hash + mismatches. Furthermore, cached wheels at present have undeterministic + contents due to file modification times. + """ + if req.link is None: + req.link = self._find_requirement_link(req) + + if self.wheel_cache is None or self.preparer.require_hashes: + return + cache_entry = self.wheel_cache.get_cache_entry( + link=req.link, + package_name=req.name, + supported_tags=get_supported(), + ) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + if req.link is req.original_link and cache_entry.persistent: + req.cached_wheel_source_link = req.link + if cache_entry.origin is not None: + req.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + req.download_info = direct_url_from_link( + req.link, link_is_in_wheel_cache=cache_entry.persistent + ) + req.link = cache_entry.link + + def _get_dist_for(self, req: InstallRequirement) -> BaseDistribution: + """Takes a InstallRequirement and returns a single AbstractDist \ + representing a prepared variant of the same. + """ + if req.editable: + return self.preparer.prepare_editable_requirement(req) + + # satisfied_by is only evaluated by calling _check_skip_installed, + # so it must be None here. + assert req.satisfied_by is None + skip_reason = self._check_skip_installed(req) + + if req.satisfied_by: + return self.preparer.prepare_installed_requirement(req, skip_reason) + + # We eagerly populate the link, since that's our "legacy" behavior. + self._populate_link(req) + dist = self.preparer.prepare_linked_requirement(req) + + # NOTE + # The following portion is for determining if a certain package is + # going to be re-installed/upgraded or not and reporting to the user. + # This should probably get cleaned up in a future refactor. + + # req.req is only avail after unpack for URL + # pkgs repeat check_if_exists to uninstall-on-upgrade + # (#14) + if not self.ignore_installed: + req.check_if_exists(self.use_user_site) + + if req.satisfied_by: + should_modify = ( + self.upgrade_strategy != "to-satisfy-only" + or self.force_reinstall + or self.ignore_installed + or req.link.scheme == "file" + ) + if should_modify: + self._set_req_to_reinstall(req) + else: + logger.info( + "Requirement already satisfied (use --upgrade to upgrade): %s", + req, + ) + return dist + + def _resolve_one( + self, + requirement_set: RequirementSet, + req_to_install: InstallRequirement, + ) -> List[InstallRequirement]: + """Prepare a single requirements file. + + :return: A list of additional InstallRequirements to also install. + """ + # Tell user what we are doing for this requirement: + # obtain (editable), skipping, processing (local url), collecting + # (remote url or package name) + if req_to_install.constraint or req_to_install.prepared: + return [] + + req_to_install.prepared = True + + # Parse and return dependencies + dist = self._get_dist_for(req_to_install) + # This will raise UnsupportedPythonVersion if the given Python + # version isn't compatible with the distribution's Requires-Python. + _check_dist_requires_python( + dist, + version_info=self._py_version_info, + ignore_requires_python=self.ignore_requires_python, + ) + + more_reqs: List[InstallRequirement] = [] + + def add_req(subreq: Requirement, extras_requested: Iterable[str]) -> None: + # This idiosyncratically converts the Requirement to str and let + # make_install_req then parse it again into Requirement. But this is + # the legacy resolver so I'm just not going to bother refactoring. + sub_install_req = self._make_install_req(str(subreq), req_to_install) + parent_req_name = req_to_install.name + to_scan_again, add_to_parent = self._add_requirement_to_set( + requirement_set, + sub_install_req, + parent_req_name=parent_req_name, + extras_requested=extras_requested, + ) + if parent_req_name and add_to_parent: + self._discovered_dependencies[parent_req_name].append(add_to_parent) + more_reqs.extend(to_scan_again) + + with indent_log(): + # We add req_to_install before its dependencies, so that we + # can refer to it when adding dependencies. + if not requirement_set.has_requirement(req_to_install.name): + # 'unnamed' requirements will get added here + # 'unnamed' requirements can only come from being directly + # provided by the user. + assert req_to_install.user_supplied + self._add_requirement_to_set( + requirement_set, req_to_install, parent_req_name=None + ) + + if not self.ignore_dependencies: + if req_to_install.extras: + logger.debug( + "Installing extra requirements: %r", + ",".join(req_to_install.extras), + ) + missing_requested = sorted( + set(req_to_install.extras) - set(dist.iter_provided_extras()) + ) + for missing in missing_requested: + logger.warning( + "%s %s does not provide the extra '%s'", + dist.raw_name, + dist.version, + missing, + ) + + available_requested = sorted( + set(dist.iter_provided_extras()) & set(req_to_install.extras) + ) + for subreq in dist.iter_dependencies(available_requested): + add_req(subreq, extras_requested=available_requested) + + return more_reqs + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Create the installation order. + + The installation order is topological - requirements are installed + before the requiring thing. We break cycles at an arbitrary point, + and make no other guarantees. + """ + # The current implementation, which we may change at any point + # installs the user specified things in the order given, except when + # dependencies must come earlier to achieve topological order. + order = [] + ordered_reqs: Set[InstallRequirement] = set() + + def schedule(req: InstallRequirement) -> None: + if req.satisfied_by or req in ordered_reqs: + return + if req.constraint: + return + ordered_reqs.add(req) + for dep in self._discovered_dependencies[req.name]: + schedule(dep) + order.append(req) + + for install_req in req_set.requirements.values(): + schedule(install_req) + return order diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b01fbab6b42e70d4bc55ff2071b50f8e16bd7ec GIT binary patch literal 259 zcmZ8bv2MaZ49zvIR3YUbSQr=*3s?~gtaPD!bfJcvxSUUSm!SMZ_wHe<(jw$?ru>tT%e`~;V3JoP{RiO zDUgL79l}{U9B;5gO}0T3#%pSwN7&L^t1*8i(jHV}HO6her?Zzm6djrlw5q`Np(e8^ zW^?c=U~c99B#-F9Dhs7D0iBT=9D34iP-Olo`|)wf0u{=#u>J77Z2l})?ulO(96pkt JR0!cxX1~b9O_Kls literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..02f3141a26af0b413e035858e1f6c4dff42c61cc GIT binary patch literal 8388 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 O)pL=b2)Ho}_ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fa893f7b69a72f4a69c6c4ccbec4804151be165a GIT binary patch literal 32165 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 JBbW8V{|hxKRYU*) literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..54549968b040db18cf3f9f3d948d73dc60c22f66 GIT binary patch literal 6259 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..69046b64647df3c75b367cffa20245f7f4f7ecf4 GIT binary patch literal 10429 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..04bcb56a7c438e2ab7163de918b0324256ad3327 GIT binary patch literal 11480 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3f41641b628624b40754bc755830b6a502615b9 GIT binary patch literal 12402 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py new file mode 100644 index 00000000..9c0ef5ca --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py @@ -0,0 +1,141 @@ +from typing import FrozenSet, Iterable, Optional, Tuple, Union + +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.models.link import Link, links_equivalent +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.hashes import Hashes + +CandidateLookup = Tuple[Optional["Candidate"], Optional[InstallRequirement]] +CandidateVersion = Union[LegacyVersion, Version] + + +def format_name(project: NormalizedName, extras: FrozenSet[NormalizedName]) -> str: + if not extras: + return project + extras_expr = ",".join(sorted(extras)) + return f"{project}[{extras_expr}]" + + +class Constraint: + def __init__( + self, specifier: SpecifierSet, hashes: Hashes, links: FrozenSet[Link] + ) -> None: + self.specifier = specifier + self.hashes = hashes + self.links = links + + @classmethod + def empty(cls) -> "Constraint": + return Constraint(SpecifierSet(), Hashes(), frozenset()) + + @classmethod + def from_ireq(cls, ireq: InstallRequirement) -> "Constraint": + links = frozenset([ireq.link]) if ireq.link else frozenset() + return Constraint(ireq.specifier, ireq.hashes(trust_internet=False), links) + + def __bool__(self) -> bool: + return bool(self.specifier) or bool(self.hashes) or bool(self.links) + + def __and__(self, other: InstallRequirement) -> "Constraint": + if not isinstance(other, InstallRequirement): + return NotImplemented + specifier = self.specifier & other.specifier + hashes = self.hashes & other.hashes(trust_internet=False) + links = self.links + if other.link: + links = links.union([other.link]) + return Constraint(specifier, hashes, links) + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + # Reject if there are any mismatched URL constraints on this package. + if self.links and not all(_match_link(link, candidate) for link in self.links): + return False + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class Requirement: + @property + def project_name(self) -> NormalizedName: + """The "project name" of a requirement. + + This is different from ``name`` if this requirement contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Subclass should override") + + @property + def name(self) -> str: + """The name identifying this requirement in the resolver. + + This is different from ``project_name`` if this requirement contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Subclass should override") + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + return False + + def get_candidate_lookup(self) -> CandidateLookup: + raise NotImplementedError("Subclass should override") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") + + +def _match_link(link: Link, candidate: "Candidate") -> bool: + if candidate.source_link: + return links_equivalent(link, candidate.source_link) + return False + + +class Candidate: + @property + def project_name(self) -> NormalizedName: + """The "project name" of the candidate. + + This is different from ``name`` if this candidate contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Override in subclass") + + @property + def name(self) -> str: + """The name identifying this candidate in the resolver. + + This is different from ``project_name`` if this candidate contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Override in subclass") + + @property + def version(self) -> CandidateVersion: + raise NotImplementedError("Override in subclass") + + @property + def is_installed(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def is_editable(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def source_link(self) -> Optional[Link]: + raise NotImplementedError("Override in subclass") + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + raise NotImplementedError("Override in subclass") + + def get_install_requirement(self) -> Optional[InstallRequirement]: + raise NotImplementedError("Override in subclass") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 00000000..4125cda2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,597 @@ +import logging +import sys +from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import ( + HashError, + InstallationSubprocessError, + MetadataInconsistent, +) +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link, links_equivalent +from pip._internal.models.wheel import Wheel +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.misc import normalize_version_info + +from .base import Candidate, CandidateVersion, Requirement, format_name + +if TYPE_CHECKING: + from .factory import Factory + +logger = logging.getLogger(__name__) + +BaseCandidate = Union[ + "AlreadyInstalledCandidate", + "EditableCandidate", + "LinkCandidate", +] + +# Avoid conflicting with the PyPI package "Python". +REQUIRES_PYTHON_IDENTIFIER = cast(NormalizedName, "") + + +def as_base_candidate(candidate: Candidate) -> Optional[BaseCandidate]: + """The runtime version of BaseCandidate.""" + base_candidate_classes = ( + AlreadyInstalledCandidate, + EditableCandidate, + LinkCandidate, + ) + if isinstance(candidate, base_candidate_classes): + return candidate + return None + + +def make_install_req_from_link( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert not template.editable, "template is editable" + if template.req: + line = str(template.req) + else: + line = link.url + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.original_link = template.original_link + ireq.link = link + ireq.extras = template.extras + return ireq + + +def make_install_req_from_editable( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert template.editable, "template not editable" + ireq = install_req_from_editable( + link.url, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + permit_editable_wheels=template.permit_editable_wheels, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.extras = template.extras + return ireq + + +def _make_install_req_from_dist( + dist: BaseDistribution, template: InstallRequirement +) -> InstallRequirement: + if template.req: + line = str(template.req) + elif template.link: + line = f"{dist.canonical_name} @ {template.link.url}" + else: + line = f"{dist.canonical_name}=={dist.version}" + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.satisfied_by = dist + return ireq + + +class _InstallRequirementBackedCandidate(Candidate): + """A candidate backed by an ``InstallRequirement``. + + This represents a package request with the target not being already + in the environment, and needs to be fetched and installed. The backing + ``InstallRequirement`` is responsible for most of the leg work; this + class exposes appropriate information to the resolver. + + :param link: The link passed to the ``InstallRequirement``. The backing + ``InstallRequirement`` will use this link to fetch the distribution. + :param source_link: The link this candidate "originates" from. This is + different from ``link`` when the link is found in the wheel cache. + ``link`` would point to the wheel cache, while this points to the + found remote link (e.g. from pypi.org). + """ + + dist: BaseDistribution + is_installed = False + + def __init__( + self, + link: Link, + source_link: Link, + ireq: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + self._link = link + self._source_link = source_link + self._factory = factory + self._ireq = ireq + self._name = name + self._version = version + self.dist = self._prepare() + + def __str__(self) -> str: + return f"{self.name} {self.version}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._link)!r})" + + def __hash__(self) -> int: + return hash((self.__class__, self._link)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return links_equivalent(self._link, other._link) + return False + + @property + def source_link(self) -> Optional[Link]: + return self._source_link + + @property + def project_name(self) -> NormalizedName: + """The normalised name of the project the candidate refers to""" + if self._name is None: + self._name = self.dist.canonical_name + return self._name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> CandidateVersion: + if self._version is None: + self._version = self.dist.version + return self._version + + def format_for_error(self) -> str: + return "{} {} (from {})".format( + self.name, + self.version, + self._link.file_path if self._link.is_file else self._link, + ) + + def _prepare_distribution(self) -> BaseDistribution: + raise NotImplementedError("Override in subclass") + + def _check_metadata_consistency(self, dist: BaseDistribution) -> None: + """Check for consistency of project name and version of dist.""" + if self._name is not None and self._name != dist.canonical_name: + raise MetadataInconsistent( + self._ireq, + "name", + self._name, + dist.canonical_name, + ) + if self._version is not None and self._version != dist.version: + raise MetadataInconsistent( + self._ireq, + "version", + str(self._version), + str(dist.version), + ) + + def _prepare(self) -> BaseDistribution: + try: + dist = self._prepare_distribution() + except HashError as e: + # Provide HashError the underlying ireq that caused it. This + # provides context for the resulting error message to show the + # offending line to the user. + e.req = self._ireq + raise + except InstallationSubprocessError as exc: + # The output has been presented already, so don't duplicate it. + exc.context = "See above for output." + raise + + self._check_metadata_consistency(dist) + return dist + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + requires = self.dist.iter_dependencies() if with_requires else () + for r in requires: + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + yield self._factory.make_requires_python_requirement(self.dist.requires_python) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return self._ireq + + +class LinkCandidate(_InstallRequirementBackedCandidate): + is_editable = False + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + source_link = link + cache_entry = factory.get_wheel_cache_entry(source_link, name) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + link = cache_entry.link + ireq = make_install_req_from_link(link, template) + assert ireq.link == link + if ireq.link.is_wheel and not ireq.link.is_file: + wheel = Wheel(ireq.link.filename) + wheel_name = canonicalize_name(wheel.name) + assert name == wheel_name, f"{name!r} != {wheel_name!r} for wheel" + # Version may not be present for PEP 508 direct URLs + if version is not None: + wheel_version = Version(wheel.version) + assert version == wheel_version, "{!r} != {!r} for wheel {}".format( + version, wheel_version, name + ) + + if cache_entry is not None: + assert ireq.link.is_wheel + assert ireq.link.is_file + if cache_entry.persistent and template.link is template.original_link: + ireq.cached_wheel_source_link = source_link + if cache_entry.origin is not None: + ireq.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + ireq.download_info = direct_url_from_link( + source_link, link_is_in_wheel_cache=cache_entry.persistent + ) + + super().__init__( + link=link, + source_link=source_link, + ireq=ireq, + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + preparer = self._factory.preparer + return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True) + + +class EditableCandidate(_InstallRequirementBackedCandidate): + is_editable = True + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + super().__init__( + link=link, + source_link=link, + ireq=make_install_req_from_editable(link, template), + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + return self._factory.preparer.prepare_editable_requirement(self._ireq) + + +class AlreadyInstalledCandidate(Candidate): + is_installed = True + source_link = None + + def __init__( + self, + dist: BaseDistribution, + template: InstallRequirement, + factory: "Factory", + ) -> None: + self.dist = dist + self._ireq = _make_install_req_from_dist(dist, template) + self._factory = factory + self._version = None + + # This is just logging some messages, so we can do it eagerly. + # The returned dist would be exactly the same as self.dist because we + # set satisfied_by in _make_install_req_from_dist. + # TODO: Supply reason based on force_reinstall and upgrade_strategy. + skip_reason = "already satisfied" + factory.preparer.prepare_installed_requirement(self._ireq, skip_reason) + + def __str__(self) -> str: + return str(self.dist) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.dist!r})" + + def __hash__(self) -> int: + return hash((self.__class__, self.name, self.version)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.name == other.name and self.version == other.version + return False + + @property + def project_name(self) -> NormalizedName: + return self.dist.canonical_name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> CandidateVersion: + if self._version is None: + self._version = self.dist.version + return self._version + + @property + def is_editable(self) -> bool: + return self.dist.editable + + def format_for_error(self) -> str: + return f"{self.name} {self.version} (Installed)" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + if not with_requires: + return + for r in self.dist.iter_dependencies(): + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None + + +class ExtrasCandidate(Candidate): + """A candidate that has 'extras', indicating additional dependencies. + + Requirements can be for a project with dependencies, something like + foo[extra]. The extras don't affect the project/version being installed + directly, but indicate that we need additional dependencies. We model that + by having an artificial ExtrasCandidate that wraps the "base" candidate. + + The ExtrasCandidate differs from the base in the following ways: + + 1. It has a unique name, of the form foo[extra]. This causes the resolver + to treat it as a separate node in the dependency graph. + 2. When we're getting the candidate's dependencies, + a) We specify that we want the extra dependencies as well. + b) We add a dependency on the base candidate. + See below for why this is needed. + 3. We return None for the underlying InstallRequirement, as the base + candidate will provide it, and we don't want to end up with duplicates. + + The dependency on the base candidate is needed so that the resolver can't + decide that it should recommend foo[extra1] version 1.0 and foo[extra2] + version 2.0. Having those candidates depend on foo=1.0 and foo=2.0 + respectively forces the resolver to recognise that this is a conflict. + """ + + def __init__( + self, + base: BaseCandidate, + extras: FrozenSet[str], + *, + comes_from: Optional[InstallRequirement] = None, + ) -> None: + """ + :param comes_from: the InstallRequirement that led to this candidate if it + differs from the base's InstallRequirement. This will often be the + case in the sense that this candidate's requirement has the extras + while the base's does not. Unlike the InstallRequirement backed + candidates, this requirement is used solely for reporting purposes, + it does not do any leg work. + """ + self.base = base + self.extras = frozenset(canonicalize_name(e) for e in extras) + # If any extras are requested in their non-normalized forms, keep track + # of their raw values. This is needed when we look up dependencies + # since PEP 685 has not been implemented for marker-matching, and using + # the non-normalized extra for lookup ensures the user can select a + # non-normalized extra in a package with its non-normalized form. + # TODO: Remove this attribute when packaging is upgraded to support the + # marker comparison logic specified in PEP 685. + self._unnormalized_extras = extras.difference(self.extras) + self._comes_from = comes_from if comes_from is not None else self.base._ireq + + def __str__(self) -> str: + name, rest = str(self.base).split(" ", 1) + return "{}[{}] {}".format(name, ",".join(self.extras), rest) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}(base={self.base!r}, extras={self.extras!r})" + + def __hash__(self) -> int: + return hash((self.base, self.extras)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.base == other.base and self.extras == other.extras + return False + + @property + def project_name(self) -> NormalizedName: + return self.base.project_name + + @property + def name(self) -> str: + """The normalised name of the project the candidate refers to""" + return format_name(self.base.project_name, self.extras) + + @property + def version(self) -> CandidateVersion: + return self.base.version + + def format_for_error(self) -> str: + return "{} [{}]".format( + self.base.format_for_error(), ", ".join(sorted(self.extras)) + ) + + @property + def is_installed(self) -> bool: + return self.base.is_installed + + @property + def is_editable(self) -> bool: + return self.base.is_editable + + @property + def source_link(self) -> Optional[Link]: + return self.base.source_link + + def _warn_invalid_extras( + self, + requested: FrozenSet[str], + valid: FrozenSet[str], + ) -> None: + """Emit warnings for invalid extras being requested. + + This emits a warning for each requested extra that is not in the + candidate's ``Provides-Extra`` list. + """ + invalid_extras_to_warn = frozenset( + extra + for extra in requested + if extra not in valid + # If an extra is requested in an unnormalized form, skip warning + # about the normalized form being missing. + and extra in self.extras + ) + if not invalid_extras_to_warn: + return + for extra in sorted(invalid_extras_to_warn): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + def _calculate_valid_requested_extras(self) -> FrozenSet[str]: + """Get a list of valid extras requested by this candidate. + + The user (or upstream dependant) may have specified extras that the + candidate doesn't support. Any unsupported extras are dropped, and each + cause a warning to be logged here. + """ + requested_extras = self.extras.union(self._unnormalized_extras) + valid_extras = frozenset( + extra + for extra in requested_extras + if self.base.dist.is_extra_provided(extra) + ) + self._warn_invalid_extras(requested_extras, valid_extras) + return valid_extras + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + factory = self.base._factory + + # Add a dependency on the exact base + # (See note 2b in the class docstring) + yield factory.make_requirement_from_candidate(self.base) + if not with_requires: + return + + valid_extras = self._calculate_valid_requested_extras() + for r in self.base.dist.iter_dependencies(valid_extras): + yield from factory.make_requirements_from_spec( + str(r), + self._comes_from, + valid_extras, + ) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + # We don't return anything here, because we always + # depend on the base candidate, and we'll get the + # install requirement from that. + return None + + +class RequiresPythonCandidate(Candidate): + is_installed = False + source_link = None + + def __init__(self, py_version_info: Optional[Tuple[int, ...]]) -> None: + if py_version_info is not None: + version_info = normalize_version_info(py_version_info) + else: + version_info = sys.version_info[:3] + self._version = Version(".".join(str(c) for c in version_info)) + + # We don't need to implement __eq__() and __ne__() since there is always + # only one RequiresPythonCandidate in a resolution, i.e. the host Python. + # The built-in object.__eq__() and object.__ne__() do exactly what we want. + + def __str__(self) -> str: + return f"Python {self._version}" + + @property + def project_name(self) -> NormalizedName: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def name(self) -> str: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def version(self) -> CandidateVersion: + return self._version + + def format_for_error(self) -> str: + return f"Python {self.version}" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + return () + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 00000000..4adeb430 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,812 @@ +import contextlib +import functools +import logging +from typing import ( + TYPE_CHECKING, + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, + Sequence, + Set, + Tuple, + TypeVar, + cast, +) + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.resolvelib import ResolutionImpossible + +from pip._internal.cache import CacheEntry, WheelCache +from pip._internal.exceptions import ( + DistributionNotFound, + InstallationError, + MetadataInconsistent, + UnsupportedPythonVersion, + UnsupportedWheel, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_drop_extras, + install_req_from_link_and_ireq, +) +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.resolution.base import InstallRequirementProvider +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import Candidate, CandidateVersion, Constraint, Requirement +from .candidates import ( + AlreadyInstalledCandidate, + BaseCandidate, + EditableCandidate, + ExtrasCandidate, + LinkCandidate, + RequiresPythonCandidate, + as_base_candidate, +) +from .found_candidates import FoundCandidates, IndexCandidateInfo +from .requirements import ( + ExplicitRequirement, + RequiresPythonRequirement, + SpecifierRequirement, + SpecifierWithoutExtrasRequirement, + UnsatisfiableRequirement, +) + +if TYPE_CHECKING: + from typing import Protocol + + class ConflictCause(Protocol): + requirement: RequiresPythonRequirement + parent: Candidate + + +logger = logging.getLogger(__name__) + +C = TypeVar("C") +Cache = Dict[Link, C] + + +class CollectedRootRequirements(NamedTuple): + requirements: List[Requirement] + constraints: Dict[str, Constraint] + user_requested: Dict[str, int] + + +class Factory: + def __init__( + self, + finder: PackageFinder, + preparer: RequirementPreparer, + make_install_req: InstallRequirementProvider, + wheel_cache: Optional[WheelCache], + use_user_site: bool, + force_reinstall: bool, + ignore_installed: bool, + ignore_requires_python: bool, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + self._finder = finder + self.preparer = preparer + self._wheel_cache = wheel_cache + self._python_candidate = RequiresPythonCandidate(py_version_info) + self._make_install_req_from_spec = make_install_req + self._use_user_site = use_user_site + self._force_reinstall = force_reinstall + self._ignore_requires_python = ignore_requires_python + + self._build_failures: Cache[InstallationError] = {} + self._link_candidate_cache: Cache[LinkCandidate] = {} + self._editable_candidate_cache: Cache[EditableCandidate] = {} + self._installed_candidate_cache: Dict[str, AlreadyInstalledCandidate] = {} + self._extras_candidate_cache: Dict[ + Tuple[int, FrozenSet[NormalizedName]], ExtrasCandidate + ] = {} + + if not ignore_installed: + env = get_default_environment() + self._installed_dists = { + dist.canonical_name: dist + for dist in env.iter_installed_distributions(local_only=False) + } + else: + self._installed_dists = {} + + @property + def force_reinstall(self) -> bool: + return self._force_reinstall + + def _fail_if_link_is_unsupported_wheel(self, link: Link) -> None: + if not link.is_wheel: + return + wheel = Wheel(link.filename) + if wheel.supported(self._finder.target_python.get_unsorted_tags()): + return + msg = f"{link.filename} is not a supported wheel on this platform." + raise UnsupportedWheel(msg) + + def _make_extras_candidate( + self, + base: BaseCandidate, + extras: FrozenSet[str], + *, + comes_from: Optional[InstallRequirement] = None, + ) -> ExtrasCandidate: + cache_key = (id(base), frozenset(canonicalize_name(e) for e in extras)) + try: + candidate = self._extras_candidate_cache[cache_key] + except KeyError: + candidate = ExtrasCandidate(base, extras, comes_from=comes_from) + self._extras_candidate_cache[cache_key] = candidate + return candidate + + def _make_candidate_from_dist( + self, + dist: BaseDistribution, + extras: FrozenSet[str], + template: InstallRequirement, + ) -> Candidate: + try: + base = self._installed_candidate_cache[dist.canonical_name] + except KeyError: + base = AlreadyInstalledCandidate(dist, template, factory=self) + self._installed_candidate_cache[dist.canonical_name] = base + if not extras: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_candidate_from_link( + self, + link: Link, + extras: FrozenSet[str], + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[CandidateVersion], + ) -> Optional[Candidate]: + base: Optional[BaseCandidate] = self._make_base_candidate_from_link( + link, template, name, version + ) + if not extras or base is None: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_base_candidate_from_link( + self, + link: Link, + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[CandidateVersion], + ) -> Optional[BaseCandidate]: + # TODO: Check already installed candidate, and use it if the link and + # editable flag match. + + if link in self._build_failures: + # We already tried this candidate before, and it does not build. + # Don't bother trying again. + return None + + if template.editable: + if link not in self._editable_candidate_cache: + try: + self._editable_candidate_cache[link] = EditableCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + + return self._editable_candidate_cache[link] + else: + if link not in self._link_candidate_cache: + try: + self._link_candidate_cache[link] = LinkCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + return self._link_candidate_cache[link] + + def _iter_found_candidates( + self, + ireqs: Sequence[InstallRequirement], + specifier: SpecifierSet, + hashes: Hashes, + prefers_installed: bool, + incompatible_ids: Set[int], + ) -> Iterable[Candidate]: + if not ireqs: + return () + + # The InstallRequirement implementation requires us to give it a + # "template". Here we just choose the first requirement to represent + # all of them. + # Hopefully the Project model can correct this mismatch in the future. + template = ireqs[0] + assert template.req, "Candidates found on index must be PEP 508" + name = canonicalize_name(template.req.name) + + extras: FrozenSet[str] = frozenset() + for ireq in ireqs: + assert ireq.req, "Candidates found on index must be PEP 508" + specifier &= ireq.req.specifier + hashes &= ireq.hashes(trust_internet=False) + extras |= frozenset(ireq.extras) + + def _get_installed_candidate() -> Optional[Candidate]: + """Get the candidate for the currently-installed version.""" + # If --force-reinstall is set, we want the version from the index + # instead, so we "pretend" there is nothing installed. + if self._force_reinstall: + return None + try: + installed_dist = self._installed_dists[name] + except KeyError: + return None + # Don't use the installed distribution if its version does not fit + # the current dependency graph. + if not specifier.contains(installed_dist.version, prereleases=True): + return None + candidate = self._make_candidate_from_dist( + dist=installed_dist, + extras=extras, + template=template, + ) + # The candidate is a known incompatibility. Don't use it. + if id(candidate) in incompatible_ids: + return None + return candidate + + def iter_index_candidate_infos() -> Iterator[IndexCandidateInfo]: + result = self._finder.find_best_candidate( + project_name=name, + specifier=specifier, + hashes=hashes, + ) + icans = list(result.iter_applicable()) + + # PEP 592: Yanked releases are ignored unless the specifier + # explicitly pins a version (via '==' or '===') that can be + # solely satisfied by a yanked release. + all_yanked = all(ican.link.is_yanked for ican in icans) + + def is_pinned(specifier: SpecifierSet) -> bool: + for sp in specifier: + if sp.operator == "===": + return True + if sp.operator != "==": + continue + if sp.version.endswith(".*"): + continue + return True + return False + + pinned = is_pinned(specifier) + + # PackageFinder returns earlier versions first, so we reverse. + for ican in reversed(icans): + if not (all_yanked and pinned) and ican.link.is_yanked: + continue + func = functools.partial( + self._make_candidate_from_link, + link=ican.link, + extras=extras, + template=template, + name=name, + version=ican.version, + ) + yield ican.version, func + + return FoundCandidates( + iter_index_candidate_infos, + _get_installed_candidate(), + prefers_installed, + incompatible_ids, + ) + + def _iter_explicit_candidates_from_base( + self, + base_requirements: Iterable[Requirement], + extras: FrozenSet[str], + ) -> Iterator[Candidate]: + """Produce explicit candidates from the base given an extra-ed package. + + :param base_requirements: Requirements known to the resolver. The + requirements are guaranteed to not have extras. + :param extras: The extras to inject into the explicit requirements' + candidates. + """ + for req in base_requirements: + lookup_cand, _ = req.get_candidate_lookup() + if lookup_cand is None: # Not explicit. + continue + # We've stripped extras from the identifier, and should always + # get a BaseCandidate here, unless there's a bug elsewhere. + base_cand = as_base_candidate(lookup_cand) + assert base_cand is not None, "no extras here" + yield self._make_extras_candidate(base_cand, extras) + + def _iter_candidates_from_constraints( + self, + identifier: str, + constraint: Constraint, + template: InstallRequirement, + ) -> Iterator[Candidate]: + """Produce explicit candidates from constraints. + + This creates "fake" InstallRequirement objects that are basically clones + of what "should" be the template, but with original_link set to link. + """ + for link in constraint.links: + self._fail_if_link_is_unsupported_wheel(link) + candidate = self._make_base_candidate_from_link( + link, + template=install_req_from_link_and_ireq(link, template), + name=canonicalize_name(identifier), + version=None, + ) + if candidate: + yield candidate + + def find_candidates( + self, + identifier: str, + requirements: Mapping[str, Iterable[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + constraint: Constraint, + prefers_installed: bool, + ) -> Iterable[Candidate]: + # Collect basic lookup information from the requirements. + explicit_candidates: Set[Candidate] = set() + ireqs: List[InstallRequirement] = [] + for req in requirements[identifier]: + cand, ireq = req.get_candidate_lookup() + if cand is not None: + explicit_candidates.add(cand) + if ireq is not None: + ireqs.append(ireq) + + # If the current identifier contains extras, add requires and explicit + # candidates from entries from extra-less identifier. + with contextlib.suppress(InvalidRequirement): + parsed_requirement = get_requirement(identifier) + if parsed_requirement.name != identifier: + explicit_candidates.update( + self._iter_explicit_candidates_from_base( + requirements.get(parsed_requirement.name, ()), + frozenset(parsed_requirement.extras), + ), + ) + for req in requirements.get(parsed_requirement.name, []): + _, ireq = req.get_candidate_lookup() + if ireq is not None: + ireqs.append(ireq) + + # Add explicit candidates from constraints. We only do this if there are + # known ireqs, which represent requirements not already explicit. If + # there are no ireqs, we're constraining already-explicit requirements, + # which is handled later when we return the explicit candidates. + if ireqs: + try: + explicit_candidates.update( + self._iter_candidates_from_constraints( + identifier, + constraint, + template=ireqs[0], + ), + ) + except UnsupportedWheel: + # If we're constrained to install a wheel incompatible with the + # target architecture, no candidates will ever be valid. + return () + + # Since we cache all the candidates, incompatibility identification + # can be made quicker by comparing only the id() values. + incompat_ids = {id(c) for c in incompatibilities.get(identifier, ())} + + # If none of the requirements want an explicit candidate, we can ask + # the finder for candidates. + if not explicit_candidates: + return self._iter_found_candidates( + ireqs, + constraint.specifier, + constraint.hashes, + prefers_installed, + incompat_ids, + ) + + return ( + c + for c in explicit_candidates + if id(c) not in incompat_ids + and constraint.is_satisfied_by(c) + and all(req.is_satisfied_by(c) for req in requirements[identifier]) + ) + + def _make_requirements_from_install_req( + self, ireq: InstallRequirement, requested_extras: Iterable[str] + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given InstallRequirement. In + most cases this will be a single object but the following special cases exist: + - the InstallRequirement has markers that do not apply -> result is empty + - the InstallRequirement has both a constraint (or link) and extras + -> result is split in two requirement objects: one with the constraint + (or link) and one with the extra. This allows centralized constraint + handling for the base, resulting in fewer candidate rejections. + """ + if not ireq.match_markers(requested_extras): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + ireq.name, + ireq.markers, + ) + elif not ireq.link: + if ireq.extras and ireq.req is not None and ireq.req.specifier: + yield SpecifierWithoutExtrasRequirement(ireq) + yield SpecifierRequirement(ireq) + else: + self._fail_if_link_is_unsupported_wheel(ireq.link) + # Always make the link candidate for the base requirement to make it + # available to `find_candidates` for explicit candidate lookup for any + # set of extras. + # The extras are required separately via a second requirement. + cand = self._make_base_candidate_from_link( + ireq.link, + template=install_req_drop_extras(ireq) if ireq.extras else ireq, + name=canonicalize_name(ireq.name) if ireq.name else None, + version=None, + ) + if cand is None: + # There's no way we can satisfy a URL requirement if the underlying + # candidate fails to build. An unnamed URL must be user-supplied, so + # we fail eagerly. If the URL is named, an unsatisfiable requirement + # can make the resolver do the right thing, either backtrack (and + # maybe find some other requirement that's buildable) or raise a + # ResolutionImpossible eventually. + if not ireq.name: + raise self._build_failures[ireq.link] + yield UnsatisfiableRequirement(canonicalize_name(ireq.name)) + else: + # require the base from the link + yield self.make_requirement_from_candidate(cand) + if ireq.extras: + # require the extras on top of the base candidate + yield self.make_requirement_from_candidate( + self._make_extras_candidate(cand, frozenset(ireq.extras)) + ) + + def collect_root_requirements( + self, root_ireqs: List[InstallRequirement] + ) -> CollectedRootRequirements: + collected = CollectedRootRequirements([], {}, {}) + for i, ireq in enumerate(root_ireqs): + if ireq.constraint: + # Ensure we only accept valid constraints + problem = check_invalid_constraint_type(ireq) + if problem: + raise InstallationError(problem) + if not ireq.match_markers(): + continue + assert ireq.name, "Constraint must be named" + name = canonicalize_name(ireq.name) + if name in collected.constraints: + collected.constraints[name] &= ireq + else: + collected.constraints[name] = Constraint.from_ireq(ireq) + else: + reqs = list( + self._make_requirements_from_install_req( + ireq, + requested_extras=(), + ) + ) + if not reqs: + continue + template = reqs[0] + if ireq.user_supplied and template.name not in collected.user_requested: + collected.user_requested[template.name] = i + collected.requirements.extend(reqs) + # Put requirements with extras at the end of the root requires. This does not + # affect resolvelib's picking preference but it does affect its initial criteria + # population: by putting extras at the end we enable the candidate finder to + # present resolvelib with a smaller set of candidates to resolvelib, already + # taking into account any non-transient constraints on the associated base. This + # means resolvelib will have fewer candidates to visit and reject. + # Python's list sort is stable, meaning relative order is kept for objects with + # the same key. + collected.requirements.sort(key=lambda r: r.name != r.project_name) + return collected + + def make_requirement_from_candidate( + self, candidate: Candidate + ) -> ExplicitRequirement: + return ExplicitRequirement(candidate) + + def make_requirements_from_spec( + self, + specifier: str, + comes_from: Optional[InstallRequirement], + requested_extras: Iterable[str] = (), + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given specifier. In most cases + this will be a single object but the following special cases exist: + - the specifier has markers that do not apply -> result is empty + - the specifier has both a constraint and extras -> result is split + in two requirement objects: one with the constraint and one with the + extra. This allows centralized constraint handling for the base, + resulting in fewer candidate rejections. + """ + ireq = self._make_install_req_from_spec(specifier, comes_from) + return self._make_requirements_from_install_req(ireq, requested_extras) + + def make_requires_python_requirement( + self, + specifier: SpecifierSet, + ) -> Optional[Requirement]: + if self._ignore_requires_python: + return None + # Don't bother creating a dependency for an empty Requires-Python. + if not str(specifier): + return None + return RequiresPythonRequirement(specifier, self._python_candidate) + + def get_wheel_cache_entry( + self, link: Link, name: Optional[str] + ) -> Optional[CacheEntry]: + """Look up the link in the wheel cache. + + If ``preparer.require_hashes`` is True, don't use the wheel cache, + because cached wheels, always built locally, have different hashes + than the files downloaded from the index server and thus throw false + hash mismatches. Furthermore, cached wheels at present have + nondeterministic contents due to file modification times. + """ + if self._wheel_cache is None: + return None + return self._wheel_cache.get_cache_entry( + link=link, + package_name=name, + supported_tags=get_supported(), + ) + + def get_dist_to_uninstall(self, candidate: Candidate) -> Optional[BaseDistribution]: + # TODO: Are there more cases this needs to return True? Editable? + dist = self._installed_dists.get(candidate.project_name) + if dist is None: # Not installed, no uninstallation required. + return None + + # We're installing into global site. The current installation must + # be uninstalled, no matter it's in global or user site, because the + # user site installation has precedence over global. + if not self._use_user_site: + return dist + + # We're installing into user site. Remove the user site installation. + if dist.in_usersite: + return dist + + # We're installing into user site, but the installed incompatible + # package is in global site. We can't uninstall that, and would let + # the new user installation to "shadow" it. But shadowing won't work + # in virtual environments, so we error out. + if running_under_virtualenv() and dist.in_site_packages: + message = ( + f"Will not install to the user site because it will lack " + f"sys.path precedence to {dist.raw_name} in {dist.location}" + ) + raise InstallationError(message) + return None + + def _report_requires_python_error( + self, causes: Sequence["ConflictCause"] + ) -> UnsupportedPythonVersion: + assert causes, "Requires-Python error reported with no cause" + + version = self._python_candidate.version + + if len(causes) == 1: + specifier = str(causes[0].requirement.specifier) + message = ( + f"Package {causes[0].parent.name!r} requires a different " + f"Python: {version} not in {specifier!r}" + ) + return UnsupportedPythonVersion(message) + + message = f"Packages require a different Python. {version} not in:" + for cause in causes: + package = cause.parent.format_for_error() + specifier = str(cause.requirement.specifier) + message += f"\n{specifier!r} (required by {package})" + return UnsupportedPythonVersion(message) + + def _report_single_requirement_conflict( + self, req: Requirement, parent: Optional[Candidate] + ) -> DistributionNotFound: + if parent is None: + req_disp = str(req) + else: + req_disp = f"{req} (from {parent.name})" + + cands = self._finder.find_all_candidates(req.project_name) + skipped_by_requires_python = self._finder.requires_python_skipped_reasons() + + versions_set: Set[CandidateVersion] = set() + yanked_versions_set: Set[CandidateVersion] = set() + for c in cands: + is_yanked = c.link.is_yanked if c.link else False + if is_yanked: + yanked_versions_set.add(c.version) + else: + versions_set.add(c.version) + + versions = [str(v) for v in sorted(versions_set)] + yanked_versions = [str(v) for v in sorted(yanked_versions_set)] + + if yanked_versions: + # Saying "version X is yanked" isn't entirely accurate. + # https://github.com/pypa/pip/issues/11745#issuecomment-1402805842 + logger.critical( + "Ignored the following yanked versions: %s", + ", ".join(yanked_versions) or "none", + ) + if skipped_by_requires_python: + logger.critical( + "Ignored the following versions that require a different python " + "version: %s", + "; ".join(skipped_by_requires_python) or "none", + ) + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req_disp, + ", ".join(versions) or "none", + ) + if str(req) == "requirements.txt": + logger.info( + "HINT: You are attempting to install a package literally " + 'named "requirements.txt" (which cannot exist). Consider ' + "using the '-r' flag to install the packages listed in " + "requirements.txt" + ) + + return DistributionNotFound(f"No matching distribution found for {req}") + + def get_installation_error( + self, + e: "ResolutionImpossible[Requirement, Candidate]", + constraints: Dict[str, Constraint], + ) -> InstallationError: + assert e.causes, "Installation error reported with no cause" + + # If one of the things we can't solve is "we need Python X.Y", + # that is what we report. + requires_python_causes = [ + cause + for cause in e.causes + if isinstance(cause.requirement, RequiresPythonRequirement) + and not cause.requirement.is_satisfied_by(self._python_candidate) + ] + if requires_python_causes: + # The comprehension above makes sure all Requirement instances are + # RequiresPythonRequirement, so let's cast for convenience. + return self._report_requires_python_error( + cast("Sequence[ConflictCause]", requires_python_causes), + ) + + # Otherwise, we have a set of causes which can't all be satisfied + # at once. + + # The simplest case is when we have *one* cause that can't be + # satisfied. We just report that case. + if len(e.causes) == 1: + req, parent = e.causes[0] + if req.name not in constraints: + return self._report_single_requirement_conflict(req, parent) + + # OK, we now have a list of requirements that can't all be + # satisfied at once. + + # A couple of formatting helpers + def text_join(parts: List[str]) -> str: + if len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def describe_trigger(parent: Candidate) -> str: + ireq = parent.get_install_requirement() + if not ireq or not ireq.comes_from: + return f"{parent.name}=={parent.version}" + if isinstance(ireq.comes_from, InstallRequirement): + return str(ireq.comes_from.name) + return str(ireq.comes_from) + + triggers = set() + for req, parent in e.causes: + if parent is None: + # This is a root requirement, so we can report it directly + trigger = req.format_for_error() + else: + trigger = describe_trigger(parent) + triggers.add(trigger) + + if triggers: + info = text_join(sorted(triggers)) + else: + info = "the requested packages" + + msg = ( + f"Cannot install {info} because these package versions " + "have conflicting dependencies." + ) + logger.critical(msg) + msg = "\nThe conflict is caused by:" + + relevant_constraints = set() + for req, parent in e.causes: + if req.name in constraints: + relevant_constraints.add(req.name) + msg = msg + "\n " + if parent: + msg = msg + f"{parent.name} {parent.version} depends on " + else: + msg = msg + "The user requested " + msg = msg + req.format_for_error() + for key in relevant_constraints: + spec = constraints[key].specifier + msg += f"\n The user requested (constraint) {key}{spec}" + + msg = ( + msg + + "\n\n" + + "To fix this you could try to:\n" + + "1. loosen the range of package versions you've specified\n" + + "2. remove package versions to allow pip attempt to solve " + + "the dependency conflict\n" + ) + + logger.info(msg) + + return DistributionNotFound( + "ResolutionImpossible: for help visit " + "https://pip.pypa.io/en/latest/topics/dependency-resolution/" + "#dealing-with-dependency-conflicts" + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 00000000..8663097b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,155 @@ +"""Utilities to lazily create and visit candidates found. + +Creating and visiting a candidate is a *very* costly operation. It involves +fetching, extracting, potentially building modules from source, and verifying +distribution metadata. It is therefore crucial for performance to keep +everything here lazy all the way down, so we only touch candidates that we +absolutely need, and not "download the world" when we only need one version of +something. +""" + +import functools +from collections.abc import Sequence +from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, Set, Tuple + +from pip._vendor.packaging.version import _BaseVersion + +from .base import Candidate + +IndexCandidateInfo = Tuple[_BaseVersion, Callable[[], Optional[Candidate]]] + +if TYPE_CHECKING: + SequenceCandidate = Sequence[Candidate] +else: + # For compatibility: Python before 3.9 does not support using [] on the + # Sequence class. + # + # >>> from collections.abc import Sequence + # >>> Sequence[str] + # Traceback (most recent call last): + # File "", line 1, in + # TypeError: 'ABCMeta' object is not subscriptable + # + # TODO: Remove this block after dropping Python 3.8 support. + SequenceCandidate = Sequence + + +def _iter_built(infos: Iterator[IndexCandidateInfo]) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the package is not already installed. Candidates + from index come later in their normal ordering. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_prepended( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers the already-installed + candidate and NOT to upgrade. The installed candidate is therefore + always yielded first, and candidates from index come later in their + normal ordering, except skipped when the version is already installed. + """ + yield installed + versions_found: Set[_BaseVersion] = {installed.version} + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_inserted( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers to upgrade an + already-installed package. Candidates from index are returned in their + normal ordering, except replaced when the version is already installed. + + The implementation iterates through and yields other candidates, inserting + the installed candidate exactly once before we start yielding older or + equivalent candidates, or after all other candidates if they are all newer. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + # If the installed candidate is better, yield it first. + if installed.version >= version: + yield installed + versions_found.add(installed.version) + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + # If the installed candidate is older than all other candidates. + if installed.version not in versions_found: + yield installed + + +class FoundCandidates(SequenceCandidate): + """A lazy sequence to provide candidates to the resolver. + + The intended usage is to return this from `find_matches()` so the resolver + can iterate through the sequence multiple times, but only access the index + page when remote packages are actually needed. This improve performances + when suitable candidates are already installed on disk. + """ + + def __init__( + self, + get_infos: Callable[[], Iterator[IndexCandidateInfo]], + installed: Optional[Candidate], + prefers_installed: bool, + incompatible_ids: Set[int], + ): + self._get_infos = get_infos + self._installed = installed + self._prefers_installed = prefers_installed + self._incompatible_ids = incompatible_ids + + def __getitem__(self, index: Any) -> Any: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + def __iter__(self) -> Iterator[Candidate]: + infos = self._get_infos() + if not self._installed: + iterator = _iter_built(infos) + elif self._prefers_installed: + iterator = _iter_built_with_prepended(self._installed, infos) + else: + iterator = _iter_built_with_inserted(self._installed, infos) + return (c for c in iterator if id(c) not in self._incompatible_ids) + + def __len__(self) -> int: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + @functools.lru_cache(maxsize=1) + def __bool__(self) -> bool: + if self._prefers_installed and self._installed: + return True + return any(self) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 00000000..315fb9c8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,255 @@ +import collections +import math +from typing import ( + TYPE_CHECKING, + Dict, + Iterable, + Iterator, + Mapping, + Sequence, + TypeVar, + Union, +) + +from pip._vendor.resolvelib.providers import AbstractProvider + +from .base import Candidate, Constraint, Requirement +from .candidates import REQUIRES_PYTHON_IDENTIFIER +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.providers import Preference + from pip._vendor.resolvelib.resolvers import RequirementInformation + + PreferenceInformation = RequirementInformation[Requirement, Candidate] + + _ProviderBase = AbstractProvider[Requirement, Candidate, str] +else: + _ProviderBase = AbstractProvider + +# Notes on the relationship between the provider, the factory, and the +# candidate and requirement classes. +# +# The provider is a direct implementation of the resolvelib class. Its role +# is to deliver the API that resolvelib expects. +# +# Rather than work with completely abstract "requirement" and "candidate" +# concepts as resolvelib does, pip has concrete classes implementing these two +# ideas. The API of Requirement and Candidate objects are defined in the base +# classes, but essentially map fairly directly to the equivalent provider +# methods. In particular, `find_matches` and `is_satisfied_by` are +# requirement methods, and `get_dependencies` is a candidate method. +# +# The factory is the interface to pip's internal mechanisms. It is stateless, +# and is created by the resolver and held as a property of the provider. It is +# responsible for creating Requirement and Candidate objects, and provides +# services to those objects (access to pip's finder and preparer). + + +D = TypeVar("D") +V = TypeVar("V") + + +def _get_with_identifier( + mapping: Mapping[str, V], + identifier: str, + default: D, +) -> Union[D, V]: + """Get item from a package name lookup mapping with a resolver identifier. + + This extra logic is needed when the target mapping is keyed by package + name, which cannot be directly looked up with an identifier (which may + contain requested extras). Additional logic is added to also look up a value + by "cleaning up" the extras from the identifier. + """ + if identifier in mapping: + return mapping[identifier] + # HACK: Theoretically we should check whether this identifier is a valid + # "NAME[EXTRAS]" format, and parse out the name part with packaging or + # some regular expression. But since pip's resolver only spits out three + # kinds of identifiers: normalized PEP 503 names, normalized names plus + # extras, and Requires-Python, we can cheat a bit here. + name, open_bracket, _ = identifier.partition("[") + if open_bracket and name in mapping: + return mapping[name] + return default + + +class PipProvider(_ProviderBase): + """Pip's provider implementation for resolvelib. + + :params constraints: A mapping of constraints specified by the user. Keys + are canonicalized project names. + :params ignore_dependencies: Whether the user specified ``--no-deps``. + :params upgrade_strategy: The user-specified upgrade strategy. + :params user_requested: A set of canonicalized package names that the user + supplied for pip to install/upgrade. + """ + + def __init__( + self, + factory: Factory, + constraints: Dict[str, Constraint], + ignore_dependencies: bool, + upgrade_strategy: str, + user_requested: Dict[str, int], + ) -> None: + self._factory = factory + self._constraints = constraints + self._ignore_dependencies = ignore_dependencies + self._upgrade_strategy = upgrade_strategy + self._user_requested = user_requested + self._known_depths: Dict[str, float] = collections.defaultdict(lambda: math.inf) + + def identify(self, requirement_or_candidate: Union[Requirement, Candidate]) -> str: + return requirement_or_candidate.name + + def get_preference( + self, + identifier: str, + resolutions: Mapping[str, Candidate], + candidates: Mapping[str, Iterator[Candidate]], + information: Mapping[str, Iterable["PreferenceInformation"]], + backtrack_causes: Sequence["PreferenceInformation"], + ) -> "Preference": + """Produce a sort key for given requirement based on preference. + + The lower the return value is, the more preferred this group of + arguments is. + + Currently pip considers the following in order: + + * Prefer if any of the known requirements is "direct", e.g. points to an + explicit URL. + * If equal, prefer if any requirement is "pinned", i.e. contains + operator ``===`` or ``==``. + * If equal, calculate an approximate "depth" and resolve requirements + closer to the user-specified requirements first. If the depth cannot + by determined (eg: due to no matching parents), it is considered + infinite. + * Order user-specified requirements by the order they are specified. + * If equal, prefers "non-free" requirements, i.e. contains at least one + operator, such as ``>=`` or ``<``. + * If equal, order alphabetically for consistency (helps debuggability). + """ + try: + next(iter(information[identifier])) + except StopIteration: + # There is no information for this identifier, so there's no known + # candidates. + has_information = False + else: + has_information = True + + if has_information: + lookups = (r.get_candidate_lookup() for r, _ in information[identifier]) + candidate, ireqs = zip(*lookups) + else: + candidate, ireqs = None, () + + operators = [ + specifier.operator + for specifier_set in (ireq.specifier for ireq in ireqs if ireq) + for specifier in specifier_set + ] + + direct = candidate is not None + pinned = any(op[:2] == "==" for op in operators) + unfree = bool(operators) + + try: + requested_order: Union[int, float] = self._user_requested[identifier] + except KeyError: + requested_order = math.inf + if has_information: + parent_depths = ( + self._known_depths[parent.name] if parent is not None else 0.0 + for _, parent in information[identifier] + ) + inferred_depth = min(d for d in parent_depths) + 1.0 + else: + inferred_depth = math.inf + else: + inferred_depth = 1.0 + self._known_depths[identifier] = inferred_depth + + requested_order = self._user_requested.get(identifier, math.inf) + + # Requires-Python has only one candidate and the check is basically + # free, so we always do it first to avoid needless work if it fails. + requires_python = identifier == REQUIRES_PYTHON_IDENTIFIER + + # Prefer the causes of backtracking on the assumption that the problem + # resolving the dependency tree is related to the failures that caused + # the backtracking + backtrack_cause = self.is_backtrack_cause(identifier, backtrack_causes) + + return ( + not requires_python, + not direct, + not pinned, + not backtrack_cause, + inferred_depth, + requested_order, + not unfree, + identifier, + ) + + def find_matches( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + ) -> Iterable[Candidate]: + def _eligible_for_upgrade(identifier: str) -> bool: + """Are upgrades allowed for this project? + + This checks the upgrade strategy, and whether the project was one + that the user specified in the command line, in order to decide + whether we should upgrade if there's a newer version available. + + (Note that we don't need access to the `--upgrade` flag, because + an upgrade strategy of "to-satisfy-only" means that `--upgrade` + was not specified). + """ + if self._upgrade_strategy == "eager": + return True + elif self._upgrade_strategy == "only-if-needed": + user_order = _get_with_identifier( + self._user_requested, + identifier, + default=None, + ) + return user_order is not None + return False + + constraint = _get_with_identifier( + self._constraints, + identifier, + default=Constraint.empty(), + ) + return self._factory.find_candidates( + identifier=identifier, + requirements=requirements, + constraint=constraint, + prefers_installed=(not _eligible_for_upgrade(identifier)), + incompatibilities=incompatibilities, + ) + + def is_satisfied_by(self, requirement: Requirement, candidate: Candidate) -> bool: + return requirement.is_satisfied_by(candidate) + + def get_dependencies(self, candidate: Candidate) -> Sequence[Requirement]: + with_requires = not self._ignore_dependencies + return [r for r in candidate.iter_dependencies(with_requires) if r is not None] + + @staticmethod + def is_backtrack_cause( + identifier: str, backtrack_causes: Sequence["PreferenceInformation"] + ) -> bool: + for backtrack_cause in backtrack_causes: + if identifier == backtrack_cause.requirement.name: + return True + if backtrack_cause.parent and identifier == backtrack_cause.parent.name: + return True + return False diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 00000000..12adeff7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,80 @@ +from collections import defaultdict +from logging import getLogger +from typing import Any, DefaultDict + +from pip._vendor.resolvelib.reporters import BaseReporter + +from .base import Candidate, Requirement + +logger = getLogger(__name__) + + +class PipReporter(BaseReporter): + def __init__(self) -> None: + self.reject_count_by_package: DefaultDict[str, int] = defaultdict(int) + + self._messages_at_reject_count = { + 1: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 8: ( + "pip is still looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 13: ( + "This is taking longer than usual. You might need to provide " + "the dependency resolver with stricter constraints to reduce " + "runtime. See https://pip.pypa.io/warnings/backtracking for " + "guidance. If you want to abort this run, press Ctrl + C." + ), + } + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + self.reject_count_by_package[candidate.name] += 1 + + count = self.reject_count_by_package[candidate.name] + if count not in self._messages_at_reject_count: + return + + message = self._messages_at_reject_count[count] + logger.info("INFO: %s", message.format(package_name=candidate.name)) + + msg = "Will try a different candidate, due to conflict:" + for req_info in criterion.information: + req, parent = req_info.requirement, req_info.parent + # Inspired by Factory.get_installation_error + msg += "\n " + if parent: + msg += f"{parent.name} {parent.version} depends on " + else: + msg += "The user requested " + msg += req.format_for_error() + logger.debug(msg) + + +class PipDebuggingReporter(BaseReporter): + """A reporter that does an info log for every event it sees.""" + + def starting(self) -> None: + logger.info("Reporter.starting()") + + def starting_round(self, index: int) -> None: + logger.info("Reporter.starting_round(%r)", index) + + def ending_round(self, index: int, state: Any) -> None: + logger.info("Reporter.ending_round(%r, state)", index) + + def ending(self, state: Any) -> None: + logger.info("Reporter.ending(%r)", state) + + def adding_requirement(self, requirement: Requirement, parent: Candidate) -> None: + logger.info("Reporter.adding_requirement(%r, %r)", requirement, parent) + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + logger.info("Reporter.rejecting_candidate(%r, %r)", criterion, candidate) + + def pinning(self, candidate: Candidate) -> None: + logger.info("Reporter.pinning(%r)", candidate) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 00000000..4af4a9f2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py @@ -0,0 +1,166 @@ +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.req.constructors import install_req_drop_extras +from pip._internal.req.req_install import InstallRequirement + +from .base import Candidate, CandidateLookup, Requirement, format_name + + +class ExplicitRequirement(Requirement): + def __init__(self, candidate: Candidate) -> None: + self.candidate = candidate + + def __str__(self) -> str: + return str(self.candidate) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.candidate!r})" + + @property + def project_name(self) -> NormalizedName: + # No need to canonicalize - the candidate did this + return self.candidate.project_name + + @property + def name(self) -> str: + # No need to canonicalize - the candidate did this + return self.candidate.name + + def format_for_error(self) -> str: + return self.candidate.format_for_error() + + def get_candidate_lookup(self) -> CandidateLookup: + return self.candidate, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return candidate == self.candidate + + +class SpecifierRequirement(Requirement): + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = ireq + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + def __str__(self) -> str: + return str(self._ireq.req) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._ireq.req)!r})" + + @property + def project_name(self) -> NormalizedName: + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + return canonicalize_name(self._ireq.req.name) + + @property + def name(self) -> str: + return format_name(self.project_name, self._extras) + + def format_for_error(self) -> str: + # Convert comma-separated specifiers into "A, B, ..., F and G" + # This makes the specifier a bit more "human readable", without + # risking a change in meaning. (Hopefully! Not all edge cases have + # been checked) + parts = [s.strip() for s in str(self).split(",")] + if len(parts) == 0: + return "" + elif len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def get_candidate_lookup(self) -> CandidateLookup: + return None, self._ireq + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self.name, ( + f"Internal issue: Candidate is not for this requirement " + f"{candidate.name} vs {self.name}" + ) + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + spec = self._ireq.req.specifier + return spec.contains(candidate.version, prereleases=True) + + +class SpecifierWithoutExtrasRequirement(SpecifierRequirement): + """ + Requirement backed by an install requirement on a base package. + Trims extras from its install requirement if there are any. + """ + + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = install_req_drop_extras(ireq) + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + +class RequiresPythonRequirement(Requirement): + """A requirement representing Requires-Python metadata.""" + + def __init__(self, specifier: SpecifierSet, match: Candidate) -> None: + self.specifier = specifier + self._candidate = match + + def __str__(self) -> str: + return f"Python {self.specifier}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self.specifier)!r})" + + @property + def project_name(self) -> NormalizedName: + return self._candidate.project_name + + @property + def name(self) -> str: + return self._candidate.name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + if self.specifier.contains(self._candidate.version, prereleases=True): + return self._candidate, None + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self._candidate.name, "Not Python candidate" + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class UnsatisfiableRequirement(Requirement): + """A requirement that cannot be satisfied.""" + + def __init__(self, name: NormalizedName) -> None: + self._name = name + + def __str__(self) -> str: + return f"{self._name} (unavailable)" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._name)!r})" + + @property + def project_name(self) -> NormalizedName: + return self._name + + @property + def name(self) -> str: + return self._name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return False diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 00000000..c12beef0 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,317 @@ +import contextlib +import functools +import logging +import os +from typing import TYPE_CHECKING, Dict, List, Optional, Set, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.resolvelib import BaseReporter, ResolutionImpossible +from pip._vendor.resolvelib import Resolver as RLResolver +from pip._vendor.resolvelib.structs import DirectedGraph + +from pip._internal.cache import WheelCache +from pip._internal.index.package_finder import PackageFinder +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import install_req_extend_extras +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.resolution.resolvelib.provider import PipProvider +from pip._internal.resolution.resolvelib.reporter import ( + PipDebuggingReporter, + PipReporter, +) +from pip._internal.utils.packaging import get_requirement + +from .base import Candidate, Requirement +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.resolvers import Result as RLResult + + Result = RLResult[Requirement, Candidate, str] + + +logger = logging.getLogger(__name__) + + +class Resolver(BaseResolver): + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ): + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + self.factory = Factory( + finder=finder, + preparer=preparer, + make_install_req=make_install_req, + wheel_cache=wheel_cache, + use_user_site=use_user_site, + force_reinstall=force_reinstall, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + py_version_info=py_version_info, + ) + self.ignore_dependencies = ignore_dependencies + self.upgrade_strategy = upgrade_strategy + self._result: Optional[Result] = None + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + collected = self.factory.collect_root_requirements(root_reqs) + provider = PipProvider( + factory=self.factory, + constraints=collected.constraints, + ignore_dependencies=self.ignore_dependencies, + upgrade_strategy=self.upgrade_strategy, + user_requested=collected.user_requested, + ) + if "PIP_RESOLVER_DEBUG" in os.environ: + reporter: BaseReporter = PipDebuggingReporter() + else: + reporter = PipReporter() + resolver: RLResolver[Requirement, Candidate, str] = RLResolver( + provider, + reporter, + ) + + try: + limit_how_complex_resolution_can_be = 200000 + result = self._result = resolver.resolve( + collected.requirements, max_rounds=limit_how_complex_resolution_can_be + ) + + except ResolutionImpossible as e: + error = self.factory.get_installation_error( + cast("ResolutionImpossible[Requirement, Candidate]", e), + collected.constraints, + ) + raise error from e + + req_set = RequirementSet(check_supported_wheels=check_supported_wheels) + # process candidates with extras last to ensure their base equivalent is + # already in the req_set if appropriate. + # Python's sort is stable so using a binary key function keeps relative order + # within both subsets. + for candidate in sorted( + result.mapping.values(), key=lambda c: c.name != c.project_name + ): + ireq = candidate.get_install_requirement() + if ireq is None: + if candidate.name != candidate.project_name: + # extend existing req's extras + with contextlib.suppress(KeyError): + req = req_set.get_requirement(candidate.project_name) + req_set.add_named_requirement( + install_req_extend_extras( + req, get_requirement(candidate.name).extras + ) + ) + continue + + # Check if there is already an installation under the same name, + # and set a flag for later stages to uninstall it, if needed. + installed_dist = self.factory.get_dist_to_uninstall(candidate) + if installed_dist is None: + # There is no existing installation -- nothing to uninstall. + ireq.should_reinstall = False + elif self.factory.force_reinstall: + # The --force-reinstall flag is set -- reinstall. + ireq.should_reinstall = True + elif installed_dist.version != candidate.version: + # The installation is different in version -- reinstall. + ireq.should_reinstall = True + elif candidate.is_editable or installed_dist.editable: + # The incoming distribution is editable, or different in + # editable-ness to installation -- reinstall. + ireq.should_reinstall = True + elif candidate.source_link and candidate.source_link.is_file: + # The incoming distribution is under file:// + if candidate.source_link.is_wheel: + # is a local wheel -- do nothing. + logger.info( + "%s is already installed with the same version as the " + "provided wheel. Use --force-reinstall to force an " + "installation of the wheel.", + ireq.name, + ) + continue + + # is a local sdist or path -- reinstall + ireq.should_reinstall = True + else: + continue + + link = candidate.source_link + if link and link.is_yanked: + # The reason can contain non-ASCII characters, Unicode + # is required for Python 2. + msg = ( + "The candidate selected for download or install is a " + "yanked version: {name!r} candidate (version {version} " + "at {link})\nReason for being yanked: {reason}" + ).format( + name=candidate.name, + version=candidate.version, + link=link, + reason=link.yanked_reason or "", + ) + logger.warning(msg) + + req_set.add_named_requirement(ireq) + + reqs = req_set.all_requirements + self.factory.preparer.prepare_linked_requirements_more(reqs) + for req in reqs: + req.prepared = True + req.needs_more_preparation = False + return req_set + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Get order for installation of requirements in RequirementSet. + + The returned list contains a requirement before another that depends on + it. This helps ensure that the environment is kept consistent as they + get installed one-by-one. + + The current implementation creates a topological ordering of the + dependency graph, giving more weight to packages with less + or no dependencies, while breaking any cycles in the graph at + arbitrary points. We make no guarantees about where the cycle + would be broken, other than it *would* be broken. + """ + assert self._result is not None, "must call resolve() first" + + if not req_set.requirements: + # Nothing is left to install, so we do not need an order. + return [] + + graph = self._result.graph + weights = get_topological_weights(graph, set(req_set.requirements.keys())) + + sorted_items = sorted( + req_set.requirements.items(), + key=functools.partial(_req_set_item_sorter, weights=weights), + reverse=True, + ) + return [ireq for _, ireq in sorted_items] + + +def get_topological_weights( + graph: "DirectedGraph[Optional[str]]", requirement_keys: Set[str] +) -> Dict[Optional[str], int]: + """Assign weights to each node based on how "deep" they are. + + This implementation may change at any point in the future without prior + notice. + + We first simplify the dependency graph by pruning any leaves and giving them + the highest weight: a package without any dependencies should be installed + first. This is done again and again in the same way, giving ever less weight + to the newly found leaves. The loop stops when no leaves are left: all + remaining packages have at least one dependency left in the graph. + + Then we continue with the remaining graph, by taking the length for the + longest path to any node from root, ignoring any paths that contain a single + node twice (i.e. cycles). This is done through a depth-first search through + the graph, while keeping track of the path to the node. + + Cycles in the graph result would result in node being revisited while also + being on its own path. In this case, take no action. This helps ensure we + don't get stuck in a cycle. + + When assigning weight, the longer path (i.e. larger length) is preferred. + + We are only interested in the weights of packages that are in the + requirement_keys. + """ + path: Set[Optional[str]] = set() + weights: Dict[Optional[str], int] = {} + + def visit(node: Optional[str]) -> None: + if node in path: + # We hit a cycle, so we'll break it here. + return + + # Time to visit the children! + path.add(node) + for child in graph.iter_children(node): + visit(child) + path.remove(node) + + if node not in requirement_keys: + return + + last_known_parent_count = weights.get(node, 0) + weights[node] = max(last_known_parent_count, len(path)) + + # Simplify the graph, pruning leaves that have no dependencies. + # This is needed for large graphs (say over 200 packages) because the + # `visit` function is exponentially slower then, taking minutes. + # See https://github.com/pypa/pip/issues/10557 + # We will loop until we explicitly break the loop. + while True: + leaves = set() + for key in graph: + if key is None: + continue + for _child in graph.iter_children(key): + # This means we have at least one child + break + else: + # No child. + leaves.add(key) + if not leaves: + # We are done simplifying. + break + # Calculate the weight for the leaves. + weight = len(graph) - 1 + for leaf in leaves: + if leaf not in requirement_keys: + continue + weights[leaf] = weight + # Remove the leaves from the graph, making it simpler. + for leaf in leaves: + graph.remove(leaf) + + # Visit the remaining graph. + # `None` is guaranteed to be the root node by resolvelib. + visit(None) + + # Sanity check: all requirement keys should be in the weights, + # and no other keys should be in the weights. + difference = set(weights.keys()).difference(requirement_keys) + assert not difference, difference + + return weights + + +def _req_set_item_sorter( + item: Tuple[str, InstallRequirement], + weights: Dict[Optional[str], int], +) -> Tuple[int, str]: + """Key function used to sort install requirements for installation. + + Based on the "weight" mapping calculated in ``get_installation_order()``. + The canonical package name is returned as the second member as a tie- + breaker to ensure the result is predictable, which is useful in tests. + """ + name = canonicalize_name(item[0]) + return weights[name], name diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 00000000..0f64ae0e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,248 @@ +import datetime +import functools +import hashlib +import json +import logging +import optparse +import os.path +import sys +from dataclasses import dataclass +from typing import Any, Callable, Dict, Optional + +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.rich.console import Group +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import DistributionVersion +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.entrypoints import ( + get_best_invocation_for_this_pip, + get_best_invocation_for_this_python, +) +from pip._internal.utils.filesystem import adjacent_tmp_file, check_path_owner, replace +from pip._internal.utils.misc import ensure_dir + +_WEEK = datetime.timedelta(days=7) + +logger = logging.getLogger(__name__) + + +def _get_statefile_name(key: str) -> str: + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +def _convert_date(isodate: str) -> datetime.datetime: + """Convert an ISO format string to a date. + + Handles the format 2020-01-22T14:24:01Z (trailing Z) + which is not supported by older versions of fromisoformat. + """ + return datetime.datetime.fromisoformat(isodate.replace("Z", "+00:00")) + + +class SelfCheckState: + def __init__(self, cache_dir: str) -> None: + self._state: Dict[str, Any] = {} + self._statefile_path = None + + # Try to load the existing state + if cache_dir: + self._statefile_path = os.path.join( + cache_dir, "selfcheck", _get_statefile_name(self.key) + ) + try: + with open(self._statefile_path, encoding="utf-8") as statefile: + self._state = json.load(statefile) + except (OSError, ValueError, KeyError): + # Explicitly suppressing exceptions, since we don't want to + # error out if the cache file is invalid. + pass + + @property + def key(self) -> str: + return sys.prefix + + def get(self, current_time: datetime.datetime) -> Optional[str]: + """Check if we have a not-outdated version loaded already.""" + if not self._state: + return None + + if "last_check" not in self._state: + return None + + if "pypi_version" not in self._state: + return None + + # Determine if we need to refresh the state + last_check = _convert_date(self._state["last_check"]) + time_since_last_check = current_time - last_check + if time_since_last_check > _WEEK: + return None + + return self._state["pypi_version"] + + def set(self, pypi_version: str, current_time: datetime.datetime) -> None: + # If we do not have a path to cache in, don't bother saving. + if not self._statefile_path: + return + + # Check to make sure that we own the directory + if not check_path_owner(os.path.dirname(self._statefile_path)): + return + + # Now that we've ensured the directory is owned by this user, we'll go + # ahead and make sure that all our directories are created. + ensure_dir(os.path.dirname(self._statefile_path)) + + state = { + # Include the key so it's easy to tell which pip wrote the + # file. + "key": self.key, + "last_check": current_time.isoformat(), + "pypi_version": pypi_version, + } + + text = json.dumps(state, sort_keys=True, separators=(",", ":")) + + with adjacent_tmp_file(self._statefile_path) as f: + f.write(text.encode()) + + try: + # Since we have a prefix-specific state file, we can just + # overwrite whatever is there, no need to check. + replace(f.name, self._statefile_path) + except OSError: + # Best effort. + pass + + +@dataclass +class UpgradePrompt: + old: str + new: str + + def __rich__(self) -> Group: + if WINDOWS: + pip_cmd = f"{get_best_invocation_for_this_python()} -m pip" + else: + pip_cmd = get_best_invocation_for_this_pip() + + notice = "[bold][[reset][blue]notice[reset][bold]][reset]" + return Group( + Text(), + Text.from_markup( + f"{notice} A new release of pip is available: " + f"[red]{self.old}[reset] -> [green]{self.new}[reset]" + ), + Text.from_markup( + f"{notice} To update, run: " + f"[green]{escape(pip_cmd)} install --upgrade pip" + ), + ) + + +def was_installed_by_pip(pkg: str) -> bool: + """Checks whether pkg was installed by pip + + This is used not to display the upgrade message when pip is in fact + installed by system package manager, such as dnf on Fedora. + """ + dist = get_default_environment().get_distribution(pkg) + return dist is not None and "pip" == dist.installer + + +def _get_current_remote_pip_version( + session: PipSession, options: optparse.Values +) -> Optional[str]: + # Lets use PackageFinder to see what the latest pip version is + link_collector = LinkCollector.create( + session, + options=options, + suppress_no_index=True, + ) + + # Pass allow_yanked=False so we don't suggest upgrading to a + # yanked version. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=False, # Explicitly set to False + ) + + finder = PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + best_candidate = finder.find_best_candidate("pip").best_candidate + if best_candidate is None: + return None + + return str(best_candidate.version) + + +def _self_version_check_logic( + *, + state: SelfCheckState, + current_time: datetime.datetime, + local_version: DistributionVersion, + get_remote_version: Callable[[], Optional[str]], +) -> Optional[UpgradePrompt]: + remote_version_str = state.get(current_time) + if remote_version_str is None: + remote_version_str = get_remote_version() + if remote_version_str is None: + logger.debug("No remote pip version found") + return None + state.set(remote_version_str, current_time) + + remote_version = parse_version(remote_version_str) + logger.debug("Remote version of pip: %s", remote_version) + logger.debug("Local version of pip: %s", local_version) + + pip_installed_by_pip = was_installed_by_pip("pip") + logger.debug("Was pip installed by pip? %s", pip_installed_by_pip) + if not pip_installed_by_pip: + return None # Only suggest upgrade if pip is installed by pip. + + local_version_is_older = ( + local_version < remote_version + and local_version.base_version != remote_version.base_version + ) + if local_version_is_older: + return UpgradePrompt(old=str(local_version), new=remote_version_str) + + return None + + +def pip_self_version_check(session: PipSession, options: optparse.Values) -> None: + """Check for an update for pip. + + Limit the frequency of checks to once per week. State is stored either in + the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix + of the pip script path. + """ + installed_dist = get_default_environment().get_distribution("pip") + if not installed_dist: + return + + try: + upgrade_prompt = _self_version_check_logic( + state=SelfCheckState(cache_dir=options.cache_dir), + current_time=datetime.datetime.now(datetime.timezone.utc), + local_version=installed_dist.version, + get_remote_version=functools.partial( + _get_current_remote_pip_version, session, options + ), + ) + if upgrade_prompt is not None: + logger.warning("%s", upgrade_prompt, extra={"rich": True}) + except Exception: + logger.warning("There was an error checking the latest version of pip.") + logger.debug("See below for error", exc_info=True) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fe2b25aa6b1fdbb389d4636dc0868857d121c42e GIT binary patch literal 243 zcmZ8bI}XAy3~l&G2#GteFfg&&kP{IQ3(UFEV z9o&f<>@ToFNxDGg`g1CcMOf0llo)S_qy%Sla=(HN|7 y7;C;e@(e9#p&=E@p;25y>4e{tdO^4}O?3U~OpD)%nQ8kMnGYMttH~HMP0zlS>qhzj literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..def306e938751479799d8b466987d3225badbe49 GIT binary patch literal 4584 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 Q>))e}Zax3JIwbY~2Uri}-v9sr literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a932aa7a17944620b018da9587f875513a56747d GIT binary patch literal 1914 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee3a983f4e0f796beef63cc51b4295d2b3a7e189 GIT binary patch literal 2261 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 P3y;11`U4M)Oxgb%Et*0` literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2dc8c24935a289e9be6ba254c7750aed2fd7e760 GIT binary patch literal 732 zcmZuvy>HV%6u-02NmLwEsSGgH2#|OPR7*j(v^Y*gorgNo3?o8CWVI zfmqtHBd7}_{{stE2c#1N5))e>Or3aV5+Na;^xp5iclSPiK7VXB*AU39vzOsdz;8NO zNn`0OZi91#0@OzV4vZN0abPkdAfOg#jhTCmp#FmNNnx}a&pS`KaHb(koh-_nsh7&! zk=*e^=8qg1GAHmPbKs7Q64qJ!uE*>sQZP>_E8(dOl^J-2stG2?BK6JX9vUoA9WN$e zj*tZVNA``C_ZRo|?SJHS86TJuua5p#TcQ$|#_4kQ0V&OrjJgQzq88q1nW~{lXab68 zPg#<~&Miym3PH5d(}n)L${I!!mgYL)Xt{VpL!K}?^adhgG3~N^BzZ=6`JSA5f;n9_ zVKL7VmP%)fk44UCj|bzJwV!bw=QK*PnCa8D&!@Rp&<^yU&^Q{{-cx$ zJ18;$9#!{uNL+@ru)$n39wimcCt?Fa{Xo^=xrs6UVPH%aHH6paHG;1l`*Q^F_C^Ko Nw<`G1{iTyt$KMR`R?E#2gARBfwPl9{vk+%fBWB4%8HE1HC%u;K4mKnKp&RHeq@yy@1zj|Svfw|( zvIx(J8EHsmsSzzl8**80#LBUTQdR^`E1B^|qMY!@Q8U>{mD4bm%NY@!L3->O(iM`u z6$vDjH|e4_L?kk-$B)5M9De#%Jwbqmza#=hGUWjv0R2-+cpiW22V^ZZ5k+u#^&*yMlD!oSev$+F4l=dNkwxF z+hT>pxBTLzeAJ7au;xAGg2UG})03yjW%t|#Pnw!{h!=g!g5|v6MIDVY0)wQg&JxOC zRaF<#r%u1|=IN6srp{d`9mN&Sve!Uye%naF;|3xK6o<;LpY)xGjuRs`~S$W(IG5hc-Cl$Db7Ic7qga+B7wYSv*D9CD(R}7wxJG z7bo}>nI)#}aD?zly9uW+p7-IKoC3I5F~o1OV$U&czF3$g)@;!g|yiA8df|oED zYfe{8jj;gcm}%Dl<(e0-5%+Z%6Y9mfVCQ2r2b<^!??!ny#=FhD+X5Zn?QdZGt~h9P zh`&e;>WpGo;`EH0{u1hJLQ1L~+x#Gj+sQ)@Qaf+%`}C#H-}z$pw)^GOz0{kX2ue+U z9nUSFy}SMJ-T0A5G8!JgKeTIgXjgmpPwou8`hmQrWIoDV&n(Z~Q+9loGat z6F$C_CxgI!d<~2l7IQVzRJ*LyKvi@fkR5_QdjYy7^tF__FO9EC<16{Qdyn2ea!)$@ zNI}X(JGSQm-hUq-S;a@%%EW^m2R~HqDNl8xNZIR4f%ufF5)E97s8v&|c~NdzzPoA6 zw!9=Ij;U4r(Cfu&wne}&>3)95JanOUxMn!2zIGrbad(8A)f6rZbQ>TZx}qCus^=K} zcP+8EcIjP&7NafHcgbHNUHpw$6~T?8Ow=P53vcZRfe*bx0}c;TfE;KE&(HvWcn>ZhGe3Zb1 zX2Ade4-S5{X<}dFTzX$B5b^p8R}D)COijQ<$GX8PO~z{^z*5H!wPy_-E=Gtx4PpXR zN(&@u`Xb0*lNAqhaUm>h`W%03qD`6mn z7{b%YVfb&n4&6_Yz=I}w?f z1nKDakvSnRlz1ZIwxzjHXo`hryy&cELSRn>iz;&|E)wq$%5vMZYBR5|H64mrP#4LaD+dsh92gV6Xc2#s+F{ z_58&%DpcaHoqNZVW^Bkuei^!lZC)1fj*JqU?v5O2=MH{)q&@UZTX}XpmHR5U^Q-!)vKhK(cpiR9-sYc?M;NKdN7^KjiSQ?<_ou!gB*jS$XNq!wgcg z4>G%Np1G4b)K(5baqx@tSI;l+ySwM*+uGlxv)#;JDuD+0*HDMhVqb zE?faSLQ&LmQq@5F0ZwUkM2eJD#|QE$U;D9Azp#PIz7;1$YNe{*jNlWW`eyCL9O6Vr z_RgD`_ujmD^WOW-Km2|#f|f9TpZl$V(7))wZk{G_@<$-Hkc?y|j|xnNVJPj$I|^)u zEpQpG;LJD+u8hl?XY=j?pW!W<%X$2`n4*xwEN%WXIa65Jdw2R?CTLd!xj^j~UVk}>(|lCG#lDWBv_ z-;YQ(r!3)#;+$%F#ub9I`p-$;bOUM4xqp$>C;@WZPn6;V=zS$g&xyJ!E|NS9*`=&z zdSy$LPMKU$Dqzz^u)au&SqI&<*<8@G@ITps*)3E?3yi(g>Yp}A29+6^S%Fc-F^?*& zP9?1da-2=KdYx*w+SBHqWTNbl9Siow*vrsgtzp5s+zV_CPPpjH?IrSUm-!HS+O&Gb zPtQ@@xb_r5TgUk+-YYv`zbmY0=zNJS?Y5p)Pkvfv7dl&GoBIDXJZ;_=gNiq=JxRpY zZ=XbSOrnpOYflrk3LSr%}_gwak((hy+e{F7&o^+EkgfIjL0Br;Ztv zbgiWCsl_Es^tcp1PmQ>)!my;2;spPC5u(0;i+WtsiBg;&Sz+Vv#8>#$%FWfvJFAry zzqUBr$PAS%-#KFj&zKv@Hj`hH@`^0!*z_uzQq***n8hZiK%Nmd7-71AC`dY?0co-{ zsXSS=P*8MHkqM1`lgmk3&U8to5-!SwhQ29W+|1+_RHc~Yh!2(s4Ia~X!C=!fN2Gab zx~5TmacF0MPUX}BPR&cRM8WygIMyEMYAH3N≷&g5%?O3Fp<4b>MsIBGGW_eN|q} z<6HMtHLsX0$65*; znG%(vjtLZ`)S|9{o>napb2wkZL>nnBn~4k4k|vgL>Gtik*qkJI4igMsBm;07n(-Rc zRJ4Y^4sqj@+S*;jPqW>WeoH-8XA|$Hq#v>oue6 zwVDw5bo$YBRfrivY^UeTfzJo_dcKK$9jlH`8l#gZtRw0@Mh=hnk?+)nyy1<>t?A9_ zFFriTIw;#P-^~JvR#cD!lRp>K>zU|Bt@v&I#A2s?%|0%rw z??CtV@RQWz)b1OHfw6slY(Fq|NsT*Hbq{>&9;or5DjzlY=yvR@H>)@A8u07Bd&u8= z<_=O3ZF}a)2aiA4Q4adkMpxS4)6|B@J{LIwhal6d!KGy}^;z~};XNE~+~ zQ`}Ax-AQ%PCNsMZdv=$#lN=Ir&E|2^L1@t-9q>uAgvt|oLsrx#84?Ft zqkG0lKYY!u3l|M}AliD!AmxF-7K6_kI`V~&gsyGxfiQUF4{ytd{=rixE4b>2b-D=U znKHRNV3rx7Us2H@(8Py1jPqhv%I0vkS(||qAs+s8d@^oh6P>-($RAoRxe9}z8l9t1 zOVoB!g)Otq8pyr`m99V_Tl!aEU4^SSE3UGGxXaF_CTGQ6>?||qdI4uHw=!evsJQij zy;|n<&^gU6T!9y5*kzZo5e&{2w)tB9wN}wcvRawnpD}kJA*d6RLDK~R3va6i2t?+wF3v*LgmN#^ ztk58U=`*X@hv_;11=TG|z#}c{IWtUW9x70K7j@CD_@+R4Z5tZ-NKvPO5}g-Oq$Lvo zWAJYjO$V5x1*8Ev9*RODeeYRDThNsBk|C-sPCp6wm_9g#ZF}RuuhMBov>elr9EBN; zI*TGvqcy5Q_+m96YC)vAOl|`wRiY)KaIB%a3-QA5RzF@nigZ^aX(N)}3xCu5b?-ss z&bseepl6@&SzoOs($&PfM&jL?5UdIbLr6d=zu`6bSJv5me{3go%p>8IV*!P4>UTk8`?foLt*aTJQy!m(<2$OsSBdIoEQ zKR9)B?QL~0>KUkZj~U%#rvX0bts~y!t+yj@Th-HVc=``LF-tyN4JM6X614oOyVl*` zlyGxYf&&Qw1;guHEgapN+MHVVJoANXk=VwEJIv0|m&wnQJH7iIx7NpBRModLbQpT| z3T;+VOgg51oNPB;`f>^GlF;lmV*tY==P*1{P-UFgMp~Y?F18UVw7xYSDcx5JS=U30 zsTqB7-NN<}2uRJU{$}XKZWi7a)_wmKS@v6DamK#|M#9tMhvW|I zMbSgk;ZtWBhIx*9|AX!yp!?6!@N<-Yj=ooSg_*8BrH-Kcn`U)?*G}lDKEg4suUK$4 uc4ZgojQTXvg&`dL>7Vo literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..238e0c75ecdd86ac3990e16bc4b471829fa1559a GIT binary patch literal 3274 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 P;56f2`145Lm>~WOJ$c*w literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7832603dda820c8a54d0785994107448a68ab20b GIT binary patch literal 7506 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5d4f09e3ab1d216fa97c562255f64251aed34245 GIT binary patch literal 4598 zcmaJ_&2QVt6(=Q1qV?gA*!j*n6WfWcjVW!C0&TrX7Db$G(~X@XcDG$G0+|*^5@U+w z4k&nuIB>e*i?Q1CP9Nv{B>A7S`hHObI;wi7lFpgM}YIG%9 zRaTU0Y$Ya35sAtV(`^IYrxASxHt>4bwkn3aeHHds)By>9j4?x@14fK0G)4zb!z|uL zoFp@M&x%6-tM)MzXDCq`*qAbox_eC4EG?J0CYPFrPUxkE;&CPWV2I zp-ykOZzqGs2)YjK5N?hhVq(#u<%NZtvffbquKZI3MVosH;8sK)#H!Uw$1iPzfWz%8nWYhF3 z#HO2+5mzs+>t()}uiJ*s3@_KaOIU8hG{7Hl)1o>flre{qD)l_QOvz@2hCT`p04m!7 z-)zrEgp590fQ3g^y)7@Nv+~Br?>yi;@+*|oY=bgu3%9Y_Mr?IfSnr_GogtnR?veDu zXE@Zer+q-iwAZ1f#49q>h3&wyT5&Ze!l`dKrh)iTQgSTI*~Dcxb!NkJu49*ws&1Pl z>iLDLzE0U30hc&Hqy#xarnTZU_qF7}?kD;jEmNB^-RG!z6|>qCNC+^gfE|lNjtP}3 zmdcuATU(vb3R__$9dDKZWS9c$)Hb(il5f#xTVk)6yrF0}Ke-5fRHWei9iC^mdDwJM z#ILLBGSl{FxI9|IYvT6(`}gk8kz2aW9mLY8`Lri8#519IdZ7>Fu5ak3#naTZ$wa?Z z#Cxq~S_WkDhRGbeN^L(kG217F(B8ld@qEY#)}73D#Bi2AGX0q=Sph|%fLetDxj`;6 zF4mJ`@UlHGq|Fj>yqv516|~~{-b{Nw+eHNp+Ip4tY720PD4upOa*j*wt_1=Bm%3(9 zg$JeJZWW4-f%Zx{Ms;IG_(Ls^cEx*Eow%;od`D|1lF^HG$UR+nk1jF6tG}BKefjaO zFg25%5P0+vU!SE}p6Cd}ESW&DiLBT)&?C7>W`1^oJ)X_N+&7Tp#1XY1(=m_m2ZLqH zS<|h8!)e(I25qMR)X4xTyJVJwk(#|$E0rjtM!~81Zp{zk3@V1%MFp8Xynw-_DBOp? zg66s8hp*ufjC8u4PFa4e)T1n3R}8rMb!U3wKBtmR0kBePgt zskbdexW#DK;*ykAbO)4pK7OD2eF1c;z%2#=7OY_rcp|4bQ*1Kbb!ixH!8AyKMIDc> zoCw*Rt1~?$70fI|a}Kx-4hQHV%X6UN)WQB5u(U8LcqP>C2Y-%y&oE4JJQ6WQ!npKl z^@nJV+$oV|R)YkAqXz5VBQ9kg9$ASpg|F7Wo7}JfApSwcDgF~yx zodY5fWYETsSWw4eo7)ks26u5gqiMFI;T|;L*Q^pmffRzI;4<84FkD!=z5L@JE#JF$ zcd4-SgF6dB9LTw<``H+aL+BYM0#mUWfF@92InTpvLodkJzspygD$SSmHD*#PKTo}N z-*NLxPRWPEgpzr>K`qC{0Fzrzjd?V`;21TFYRmWukq6SYD9&m{XVcTS^0^Hl#=K>& z<=rj6;@H=6SFYwg)2Es^q^XyOuZw&E2%9oMIM0vve7DXEoL(X9!D&3Q3OzHJTLpB0 z9Rmlh!0mku&5rbDT*?gpX7TA_BXxFX{%?s>2Won6Y%l(Fa924{)ZOLJM<@R}`gU{l z?LXZ3%jkC->A9vdhl0mZaImS4?<(Qod}H`RQ@sFssiB<@4#B(>WcZdkB|ZdS6258k zY$(9D%l|Iq>!1mR9G09U)up;@$e%@CVVT3lOEzjiA(x}=60WxkQ-RWpEiS)|i1_i) zrPlCEr~n@;)Pn3VUdkMXzCe$GVRjswVQ9K>X7Ir-1@JM@4``1?f$JF%`v5h+4GrKr zCZ#VPsK;N}e^TB=BkB0gd@C-+26i9p&%ekw(pQ_x)tz}nc%iABh8|+ZMnSjOOIsas zdk1FzFD8+C!~je}f`XC2ft>`!Aco&=_I6Cu;H!+`cYYQ~5FP>~?lFQ3c`f`sbJSmM zKzRBV2tI(@y9^C@s(yo~KiMlc(&J5Kyw|%R?lM|39|a0lPmqBM6{L@eUTlXP-R`)~ zVDMb3#~3nqS8v`A>@D{VTgL(9^lMkP}kd5HBESfbQ6B_YLM33ag9?C$_jxS0`x===$u)` z!8ALM4Z(&70(l1lftLuzxud}dw<5wZ3E~yFy-%Rok-j=6jg0^PQbWl$QrUl|rXU9o zPF{rHHwlGjVH&gWqy1DPJ=IjEcILlKWU!Ra?0?u8o@%O7P``;(BXJU6o_{gb7@lsb z)4R%-i7|Y0YX9B#o7bI`4brq+23{&Tyr{!6h3!a^0ymBiZ$fh3aB+KSNQ>RljUIwYsq8KwxY5ue<3BmkcR#)U2aO3 zTS;kba_>9O-+T66D>4;R52KgHBL9Z}KST$fT>8aKYeAOek=BQ@l)rXxmK=;vel>7X z9zGa7(Tc+J_1L-npS~#m_Ca&(aw`TefY*+nZY8j%N~g}XP#BhoCwC{Gd~}$?(YJ;| zeR!h&(zAtD4Emr7qg&5zv=TT{r4y%H1K8`T<7i3^)#2Guhd!u>t0ZuA;%q1ePu$d7 ze4PZ2RNUeK_L5TO_}5Z=TR=ywKl;N33e;B=?Eyst(NZdUC25UVleUO0X^+^Ge1vDncsAik zIwMY6<`S-?JK|2(L~3Z=nD8XM5ic#9624?@q&8U>siSpsqCV-5_!%S_u?g^4V7`V( z1Jtb&F9jt3h=CAIevwA8+$J@Su%tz_L5UOXA99f<+Gmvlq#au6DCiGBKM(!QFX%6i z04N7QwOCR0pV%Tgfs$&>E~!;?OZL)yVvXn#y->4Af=;dIgF4JFnJOy~Ybgw+k9XZ!l!*4PuNNzKw7OC(~$2}!f`sS>6o?wqWsn)!SzlaW)Snq?rP%IQ=rp&8#z zK_SR!CP|6MGE&f>xd#CzCE>mlj2?-_C5=yKq*PQXH3Mv8UrJHQBm~J|b~uC6aY<2n zF-~JZVE%URJ0}MQd$k&6qc56BkB&+h2HQ@{q9~e% z6({S{lMxDL_^p2*vIR7XrkNb-L6;69G;L5pu1hIrPz`$dPPv3VIcA)UuSz+?o$@#a zUF!rGg1;(lfq9)nIc5+AnW>#N0a7=XVyYy>gzj`Q8B2*LfOsK2JTAr65CsTwnoU+@ zvQH`4K`ue|-vn!xQle%8Ho!N?VlPap@$nLpDBS{<Ec?`i__`bMpBz}V3kBZ4#<%AA z*4yl-d`HoQ91WZ6E*MbsAl|>s)vp6K6yIPkR5Y6{fs7mBz`KDwOFLV863uixgobjRjFwGKtt^iHpw|VG9K&K)N4(>wgZ} zS;PPpIdti55JYB^ATrwsVvD*VhT{ZFRZ^{bLyplY*1sv=%g0tm{0XzbfI#ui{4NRmhnU1l$ClXV#;mQcAj- z!N;a{!mhw}>FlOL8akRt$72cQSZD+82tjcavj0He%%Cq3>oYy(T~Arm*0t3A*MZd? zN3R*L+vn^zyBFCXpI)^z|3l|L?fK=NU&U8WzO!O^=Lrh~eyfnJ`N0Xt2^Y|=apP$j zR1-ZU3So7LIL*5aMfery-v>XX4Kk2IkRsRh!*hq9P)fY@PmM6aI%0WK5wS)SZUL|@ zyd^4tN|y))!q*;jorxPpQQUAz_#HURgBl?cT9r~vj+r-HYvTaVG^micfuW@dqD*o(y3@!m#0N(s;#W%FSg;BtVnHL zLL2C>6#2@dsWg__E@?i{jyM)gU*0rO(Hx~#&{{H1r!+@4rATU2ubRu3lIDc_B{~w5 z6OtG$QACM}rc(*fSGs}~;gX9}YYE6F5=D+3W%_+!KQNt}0ftX=ITQVwatz*~0!S&1 zlM_;vrtRtm)3-a=(|oFK69!AwaHs+Xogy^NSJcQj|2(X&)N=gg0E~3x96Y+pV2(jK zv&dwbX{Q0@?4luO({DfqsZJfwxLYq(zT@Nus!IAS)2^Hm*W_H|wN(I6%^7v|1aq6< zHueEMZh)=d2G%Vy6?(4Kaj@+wF==QThm}+(mE0*bet)G$=R(+FYnD+7563x zp=vNxQ?5<@+u+X`axRg*%iSqk3ez-rhPe|!lb%$zVYx&p}gZne^#ZOPc%Dtuy0Q0w= zhtVl|A5Q&r-E@7fZv2fGL%|7vQ#|dbyW`if!-{#Z9Jk-ux(ZaT{&&FLKyf!zM!f`g zeFZ94H(d)WBv*4)0?h&b+xC4q?g}#<0Nw^ScpCs~+C2VN6%we5*2-+Dnis&>DloYK z&gWRsei_aN{*ih@$C$IdfEI^h$azzY$lT@c5N!=*JnT1a07c!0kjUQY#Y&Ty4czzh&Kr0{ucxkk_) ztmvbA)Uk=?(>hI+uUPxSoip4i-%h~i+Cc;u>nKJR&LPy*vpN>BKF9v4;mNB81w@$)Tce)_e?Mo=qmdjnqb;rpvC@w zXM6(bc!U1fzrbO&f#W2c04M4QEeXOVF<05%$)0E?!Cuc!CqyKh5tk2Dg?CcvWr+^4`! zmP!VjAZ%yi9DykW>IH+(E~G~U;(LLwER^gg@KeBS0rJ3Q0he!smRLM4WmMwbcfklD zCW%;tr=FvvY-UmS@=6TLWHuocOA>n0 zV3dL>wn0w@%iumiGdKnb2r>wj%?w>20fbkA`lMTJHOi9_vP)e;$%4~eGleWzNTpT6 zpixQe5{Nkm7BOtNs3R-!gc^FAxLe*k3SWZg5+s;H-_+r>Iu;VXGbX`?5pmd92APRa z4}2gnI?F){bb(06~3Yx&VQ$;zYnM$jr zUl3m$f|IGSz(|Nbkob%;)lTCyLMK@Q*vlZ3QXIVeEi()~V{95YjC6>`i6B9mk?wnt z)x4X{X)M!Fl4g~z%EU<&Nw|nECJIs@DN_cZm%|`?;L#bW{7>z^IGj$1LK4CaDK&O! zB%4U+tGgJ!bVRr~oXAR-Iu)pBreq9X&Ss|kTgQNpK|wo}DeFZ!1*cF}FKHZcDyBNR zOYsz;ty5_Oo`?cn20ch**>GBbCR54rm}>4zU5O=RQGh%v9RU&BCE@gNbd3 z50H#lfcOw(CC6>kHrPNfi_rw#J`d5{FjI6>za9GZP$VWsjm8m$q;Vt&34(q#uGv5V zMN2YB0&iqT$~6|g0E4k+ff5x^%>va@$w^Q|L0+O%Ug)}&CYXX;C@)GhUZS~((%VEP z&cZNaJ}5tjix52PL&(y!Y;G^K?pU@o70kY6b5p?|m~}i6kj48&=&iL-Pd?N$>wHw( zwDA7?`*XIZ78KaC*6>=s;WgSiYlAo%X*rs2IJ(ks?Edb2!?|Uy4#I8q!DY`Y4?M@0 zzH_fY&YIqwd^Rk zo4-Viv1yhgt>!uN4eo~csim>VLSvEh7@dz?4QsB}ysPyK60}?4J05wO7Q*x4N8aXz zx8~n^*!B9&BWvD{2i}gqjr?8oZ=waam;8G>pVnC2wpp&&fjqvMGY{=`5D~oo!ABn~ zTLQBmkn+?=Q_Gfy*{OnsC-kgY{CSIi)e?B@^c4I}AKP!)*Zf_1f7gmXG~4sgTVHV3 z7QFQfZ_K~(<2Pq}3Vhuf-<;>07scB{w=S>pyPrTbv2pRhDldHQ3OuZDx#7GqQE=BU z@bmmlXR!gfyu|=#?I`f>>wR;5*UmmJ(Nl2y7VPu(HTRCZd&j5l_Ck$!p?(30=3T7TBMe0*p*I5gA$(Cm5Ws+)DrPCT?X z6nO9T{<;3e*FWXkAD7FAR{6Gv=GubYzxeh8d;23_xX|%xA<*)1_*VE~_{6Qqef6oC zt98!yKCvNp%Om%WHTSN(d)E@TB;7l8zvteuPu*u|YcTH)7JSDa`2wqrp(SOdasP_% zK%uey_Rw-*_g7}F#`DyMYTDM^CBP5>F7AKOxcBy+6<=rzT#-j!|Loa7WB0KMzcY(M(wHh7Hq7U(&ne#;}ayBlGJ#g#z%ltsWUNdw4o2Qozh_5BFW+&_nonmL6-&t@Uq@vgaiw4{_WOe>e z5#q~`A4P5-k;H1w7g^+Pe5Q25vHkl)CwBB((Le5Y_a8u?Sgrm0*iSrx{x0^DE+Z)) z2o5x}ni&is1un6mA=JMmmPi6RG_3T8Q1~MVERjbh(JUG&p`c2Pn5b!yt%Q-PdbmwJ z8*7L72X=|cxRmyo9m%hYc!;Pe$)B+nKVg&M_RUVyPl?MtF> z!RQjoQ8lm@>H0!8YSoYjp_Et(K~nR1LIwkg1kF!o<%D<=Y!c`{olalw25l(ekT5is zRl2B=RGvjQkig_Q%Y^CTDPtyHj=y529&S-58Zab6k#r@DF>Jxl@ke(}zrW z1g!+MCc#zOhZJT4+`9K5vdBOLzU1r#4gEomUUj8=k=};nB7{h-13vVofG9n^J}act ztMUr;D`ZY``OK7V8dGT}r}mV-QNjcLK8))8+6d2=fc~4{A;F7pW)K`*XJB#HileQF z%vR^^(MNnEIVjB?1z&xkWlzE1`jy?}aDL4~@7Dz63CW%*Wbb}dvy1&p39+{`mFHXa^$}8B}8KqX8JEO;twDLN+E>b(pEV5ttVz4 zt|3Rw&GxzXiY%1BaMa$6&s{1Sp$wOzU-%32UH0zak|i(f%h$hFB=DfOZO*T(q|`)J z2o3lLt*81ii4^oh8afqh$LFAeFOZBly7*nlG?O|>UP&>L0lFScc!0^_D=nEWlrEVZ zbgdp<%tBFkSQFDYL@eD<$!4WClNO-8`g>X^o{&T3r}$?aIdIFgzVm>WC z4l#TF9rgYi9sdnF`D+yZoOOR?LB>|N@NXPk^e&Dsw&uOTymR-Ay=ZbW{zcz-sqm2T->wl z>daer7Fp8#xTdyfBn7ylY@QqKbInCFt%AXDxM-zC8-h#o@KX0r-^>U0745W*N4}=T zw{LeZd2gT2H|@=PLq!MeaFUMGw+C;X&wFNiYxIUo-C50D9d`fkwwaqBhijU+c9nDe7s$fN8f|l zU5etBauq{B$V7&u#0lxzu4&Xjq*_H(G)4KPfLym|fPUebcFAlQRB2P70s7%&%8;w( zLx2C-dyzWFK|geGH#0jk`=8f;e*eepKYKjI452l7Y4qh5#{QiiGQp9~tpAz7*c^L? zDNGR}Y|u)DL4iMugCb9DgAz~egLa-e1|3MnNKw=|=#07sT>`ylixfvo21|Heinybm zK~J=Fur%r&^hSMyzG&HCS+snxJX$eW5v?4ovRTNTe?N?l5+ z>QlT_HY_T>i_!;Hb2iu{vd5WHc9ALNS;{hKYy%BBO`{@5Lq(k;4BOI_D)T69=ai~I zsX9xk8DnhD_SM2$)SyLCwnZy1t3_Fz+M1n3+mzt1|1FKN-!Gc3zH?#Yj1dgIVwQ&D zF+)9PM1!&5h^qMoQ+g_BjQX9X?PzSubRG*vBEg}EYD&G~kYTzWS7WLcG~${moeJxQ z>3nkB2*+c=h*>l+HLgAz)J*#`F_fSiNsUcJO@|gWG*valz<}u)P^06$VNDHz!W25Q z55*^9O2RcX5soMwYV2&HOdTIpqaBl@sv7AC1w*51!lkL-?%*x_Hq-UkGbc~=2KxG+ zHOu;*I?;DJ@Z5>MzEgo?M~|K8GhI*jeIvkIn7)94&XlkgNY4!;QH=>L=C}3t_lMH^ z#S`MHqAofc_Apcz_CBJ%?SdVPCqFq$?S%} zra+i#CfPaL^K4RRX5CB|CPjfgkAA4$D*sE{q;Orp=4ixtS~Vi9pk3#iR1uFTn`fib zP-OZ354uLsxd=87N5{`wd-_T znTV(z1Mzr7?+Qo9BP!K)gyNHWaH^~GEViL55+3RrpE5?{v7XNEJzaX(P&>xKFklkB zYdk#O6$pcGG;Dm=gb@ZETI>K;yK{WXtR9KPhk}vKL)IEGD5F-QF{AU)%k)TdhmZjwNTqQe#I-w7GhI=`Oq7v?uA_a<2qUc)KrB#Z2x&(fwT6 z?{pv&d#&V<@Op8VZC+{@-xj-U@45~N*Q8zc8@4XnPwo4QepYlycwpo49$TjaImc8+ zfCaD;25kTW>7oR{va5E*p*j>%u?+(-P*%jtMAb1YDNZ~)r)>UWvu*=#(_wg89l;UN zrV>r3`RUSSS|k~ZWbwZ|q>cv9hU1!6gYNr7S(d{S?JjY`dO4yw76!uwkh8)R(+DrF z3ub9RAB|6dI}|md8Y)U8U5yOuL`v4SAU2%=Y*p9@1QOf7bcCImHV@+so#6fgTkYze zkv?@ctmBE9(ktPZV%pCJBNJ+f29^nw=L6l2%p98*r`cGhE-#%HXo-PBV&a99F(n)d z8mf##Zj7p$9F#YVOpXuBD3?dVU`3famaSQ0!HVT{2u>LB4r|s*XSTFo+lFrZHjUUp zBVNW_5i#TeZ9>hh)&Ss!w#~GSs0Q-cMN5NAdbv>f2P{{v z)uSM((^==s<*QurZclo*uXx*%-nIqf+Q71R&ysTwU$^U`#ru92@o6j=RRaODI1q?( zh(g{S2z+}Y7)jR@1p-Pu6bNXoeAGBxrZfZ?({|!n>p*m!ak_luS`(F0v`2vK`>7+hEpR?=xAuffjuDuCy(<*=JaLoC=8<6b0%*%S|peD zVUT<=A+{^?1yZKNe9-Y3Y1x~p)DGbF6Zq?0h%D@Pvn?GI}|&)#cgZNeMQCib?iO?X#ow*5KM4NISa&viF?$bmUw4w$Rg zIsyH_1{#4z`k~fM5n)~)(;T8lik`(^wx+oKo7XLuA)+cN zHU%kM%;>lAA z-RZJY$Q_U3RZH<)3ONK7bkM7mK`AZAzXE@^A`UwhD3pU`ya%EsDOGqbS89}Mq!lyl zoG@4kq^Z@)FtFfhpx6mDG7d-%MS?oy6|qo!G6rq~2!|qS5ZQ@w@E+}NTnlPbIdRrm z%-L#SG_0pz&u6|Maco-Il+zlSOz1_lz>}h+{g7e^wG2)nY z?(_T0Ed4GyYzbLwu5vK5mNIsaq{J>c9^-Vf zRxKCIrq2Sd$W&TESInyLNGz_Yf%L2cs;0#?J(Mvr!J=HQ+K{gQ7or~tP}HfEhgruo zdmZOBgRD@=MT78|hY6+?O$*<#DZ+U%26ObhI4xW#gKRF!w8*8?whz)^a$cAgpm}Af zDD*^_zym2ef$Zp}ZFtI3o3`W0nQbX)TMbg>c(@=w!Cn(`&tp}Ynp`@~GGibkVG7zn z|8ai_EP@FfPfPweA(gpUH;V!mTbuR(UuUWzeNfT<2oxa-D}W6F8UzA5&5llkEMKrBEXm1^Nbx93%`gakLp6_F> z(%GVJI2u`Z@22Go|iF4E-GGC^xX_ZgFu>o$$*YnVx!dvVeF~f7OeMuYA z=K2%cfmm274nJ`@7z(Mt*z``xv~dSz2-?R%Q#(#kGon1Hs?ioD$~Ueyz4jw&M=H<- zb{h+K6+ zAknp{86GnXo&}=;zuiI$t{0N(ZJ~Nm8oW_W3$8s)5!qnc8HxyxxKhPYgo6leHwl?S z+ijIE&`XaY!n&4tFCUscv{bTvwW@CJg{v>j9{-hR>snRYN>z8Vs{3Zk-}?W`zg%^A z_BesY@n4set-5`ePtBfsy+37R?sALo^G`8h8s7x!C10Kt;`BmGYY+t<#mZ-niezmAW1WvBYWcTF|NVL1$8j4r|EF6sdCuR zIi|?rm`px_PC|05)k1u;q%t&j_(#!5y_fplqMM#4q zx#PFt#MA!pyzCSM{1%1we+_%nVXJcxYi-z3`P|o)&JDXeNU^=_*p2wg%#kel229(85M>MN2;L?^qbP~L@d;4F>?`sIRK9qcR_4$YSD?V zz<>Q5_=L1fMHnM#u_@%N`9iWUhYL8x>9=#|Ia6}pHf{TTfQx#TZrd)`h~$GB*z_%M^A=I5wf)7m5>mjt7BC+}oj9T#}EJgjn*9 zR(*%8On`slz_-rgM0u+&4_mKIhK*4w?Du<2X)GR&nJz;MhSVXtEvbUPEgCc+u0krm z_XxyektrBCaJJ!k0sg4)xb_leWjZEek#Ou4x^o~-HSJmyW}_BFoi;=fxgJbMaC}^i zDUg*4m2qWAr3#PL5i~{W%XC&UCxK z18MydB533(H*4JX?#VY#uKDU#d|gRj*UzMz&;7M$adO%B__|GOES)(G)x2@%3VbkI zb}w()GjkfK`nLG4>rL1Ddwz1@y#qIfemZ)6bgAZ%r1z0EU-g{(s(ZEaB=qvt%59$) zNoD0g@3I;yUTW;Vxp$?fH`&vBEBc9VVAWlI`Sk4R`5m9Sw{wYn98M)q+WNERiUK=^ zeJ+%E;eie1mP-us4Wcc7b906{?Qm!D^YIDp0MmoRYGevXz(FHykP!^0Vq~h*Uuvn_ zv}YD5IG}RqhHfd~gaaDsO&Y0GrsuJsuJ&d2o?Aznmnw>$Jkv)T!S~lJO7m+*0_sG7 zTSIh)Wch2B1bhY$nbH>&G(Q zZfl=$q@;3J^ICcRe9!x~`TfcAmXr+zzbUUy*^%OorMfv)gdB{k((=z;lxv5XwNldh zaY<`Rw0rja##epCm`hwu+^qW4_sAV5^HtN1mR>DQi9*$Z+m*F*Ph5S1Zz|L%U-jKm z=Ba?*eemkRPu*L;xLd_48$M%V9-(VBE57cO9Yyzb5?dd();zY4{rx`qSe@;oS^=@v ziDG}%W_R2klxn>cl~B|}5$Q(SUW&*8m$rV#HMl=DW6C-TkQ0o1!iXL8j}d)wk=+r??atIL*3`V(xo@?yesx>h zYTM2`o^AH-+ojc4^x0_2jy%pvS@jiVzIUO0sd{J9_fV>cN}bGGo^nyHm^Cz|N+{=M za?9uRe(Jcu99Ut|UVkNo<+InX+cE_yr(i!k-@ML{q#T01a$Za!UpcQ)QDw^EvNy~h zOEDzZY&^MH!IQokSrWqr{rGcPJ5H30Ap&|kWm=ciA5iDVd4tRtw^{8 zgZok~;tGp{uEMyZvIve!CvL-?{F1B~u?=-LY6WMbE6;IR0{13&f}*?x&PO+QK6;?i zdd#Y$$`~LvW^915;9o#!KIo3LbVTwdlG3@!2Pp^BlnB~`IPt*<{8+g1C?&Lge6yZ7|$eR$s^ z`w#S+&deHGmLhk(5Cmod<>|lvG$K;7rVFZBxD?B%Pb`qmF_v@f%|hXL9S|`s-pDFi zWT)byKOuI#=ofhReo2d<8|_ahIz~||B9yjdOUdT2K!MbM@PQ>~dBeokf=rtAc71_2 z^kzhW?A2QNUGJOTYxd>ZPLAD95BGg7IF_8XpE`F~egTOtwKiNF5@->Lb>jTZ-ytYM zPTic&u1H2j?qx6GQvJMWkf7qBkiB16t)GVNpMW8nN2?9AY;@&4Mj*T?r{Zf2onK^UL5j8;%4YUx637H2BRC_* zXq2u$BEUfF_~W8Q;YcwWgzgFK;HnM*0};tm;JPZ{Eqzf#pL@WZ2`e&bx%!k2ppZjZ z61!yFmB`d67B{jqtQXRsc5w2#+zvF8hvGn-r}!rzT*rpv0KUp$`j!CKDKxh%jr808 z918uGj_G~jRTJMEIiUOoVT11@g<37(5EM6V<;XS0`_ux0h$cC{b&{Fdlb`i zs_$s;$^OR!$4(r5`iwRTihjFk3q^G8JII?t*mU8BNeL@3?M!D(o#YqDStVJvyi4A| zi1p2qYE>s%zvLiqZ1y{Jq5lUW>#nk#mDgPP_S?<#%3J>BvX;-7!__=_4Ub-Nu2wY68_N~VtM%J|*ng)4@1$%XewTWDL!a+iY1ox)*tJ~Kv0T>qd%FF~ zE|U!h3w3sfI{R;(tlig+Zar2Ze7NmsJCcuzU5L3)Zv#eU-DUgXMEk$E%YZ?IbDP2k z#4rdig6esZjNU>*7?^GGhte=eZ1OOcb=qV~zQVm|H|jGj#~L%aTnhK1J+l&U zFTza^H%-<_05?thdB?P)kkcv80Z^Hvm&pz!VTAKj#nL*{>4fsvtPma?fn|I zk7>_SG)U2li2Pn|JX?mCT_2Bx4NF{KrWOPMrX9{k*wNpjf^)n8=3*>vI{Ny)dGgGF zM$SC#Wr~6nk*S@z;M#$_DQWSz!SO?Tof?qIZHnr-ysIq>H@Mx9X#5hau++e6u#Ub4 z3K!T~Rn6RUSD%}E>FP@hdw+7|y(7z2-Lu6r(u}fN*SJ#Gk*w>urYzU>e8xPk)56Tj zwTh~_N3K3%U2-jimn(M9^rl3o2WD6Kob#%4zVeMyn9sHKbCXvmS88@7Yj#|d00LK} zU-+t0RYc@&J*%uHA}bZm$%^LpPpq`;O}6Y^RBr9P)%J5?vHz2nuP;}en(6&b0pI8s zck8&xX7kkF#!&WO-T(H)yVGw@e_Zj`&)KPfwE@9V^MA8xNY)-Hb3?&__x zf7HFTx6=L(m3HL$cW5x8yJ#(UQ$&6ZjoWbFqZ~KixFNTf9!cdgOZatSl;3r0bl0Hq z{q3XNA5%1qDBmu7l?o~PH>!vt;&z!Ec3B&%YP)dyjwIUK7hwM&xi)&!xE|x#pG%)p z35+mDSxT(2H!t+07?NuTZk}0exh35UBp>Sgj7rGvvYMp!lv{Qal7(aU7!t0o@&5fg zv>(z~W)PW0$q72i@?Uv-jJX%>+xPer7unGU#)K*O?E zxx2xMVry0CZoo2v$?M0BV6zrtxHJ3hWhejkvNIaiLmK)1EN_GhpJKsr23NebFZ?9X zxi&pyI^g^S=%YH_x()UQ0>KzGg0vV8@UJwjPpA0R&H?LCy?WZ*+W#3`E~2y4v!OXm9}E9E~g^8dXWYe`TfhTmJ5zw+ubt*^G%=F{TIYL#jLDqwX|-v+K>1yyiDQ+PpXvp zJC>O5O8fkQWO?f{+XbO3`ch(%(6iuL+IcW3ANq{p0o$A|zE|lJdhRepV4;JLF0ryJ z`Qb5g{C`<;=4~s#|5Es{`BXJQodII3px<##Q*>R literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9613b9c002d7eb9404c5e77bde66761f9e682bf9 GIT binary patch literal 11156 zcmd5?Yit|Wm7W<6-{PB+sE6&*!w*_7KNQ)qVh6EhJ9cC_ex!A|Nf?SVk|^`FGb2l4 zs6go!t+eYx5|TplCJU=*fGFz%)dKq?{k1NdHrXb?N}*yi6D`(2(;xZAL|&xp{MbF` z4u_;!IYtufVz0!xuXE46bME7O=iGVUX0uQbwy$0t8fm1cKVn7;=6qtq!cf#a#Zv)_ zr+Fqy2WS#A0fxl7fR4m$fF-d$peL~*V1QT`HO5QA!ZF&Nm?JR zh}i-*k~T!`F-O1=a|WC-SHKl>2i&CG81=-w0WVE4lt2&f)&^LNg{m90nhR75Zo!#? zOu%PW$6FJq5qyFpWh*JG57a}MOD*Fq!j=JsxBiF?Y~?G2ZICw$+iHNv0L$B;l;iD! zNiBi81}JqvX(R6hS{I>j7%=c|C~H#N^9;~m;Y@9ATdwL`ISde!>~`v z15ayGoOlRjn$jp~DotIW{7mZTNkQi1A%P2zh@udexsg~%y3CCZMZ!Z|Bz`3k1&MP* zp(~O2ASWj{3CJVRLWm_3Vn~cc$J<35lb=zTgrw+6a}W-TY$O~vckh*sp+rpR7!37` z5h2>qBS@F!M6%;TVn7}Zi2~OnToIy)WDL7MmKYHwq2mk@W!uF>A}V!6V#%n0wQb?V zs1zFSXul%FuXIEs{T<11c_8wqz)LIW#Cp9mzKKV*HM~fBa$K?HUpPocEP7z1E%1}J!DEv8)M}eKIDK&TiNEWf>{(|GKY8-yC#Np{ zs4r`EOg^;%B$UD?L-J6#Ff&lZ!VhO|U*LEd=1F1+H(GQ9wZ4oMWbrh;kzZpMsC>^4qGd{H(-hARGO(uf zefQ{&d-SuP;ma!&>{3HilEp|;VFw~{UeQZQ*w}B;VkOk8D@1f7sf$zuqe6&>Il^rv z;$-YYGCXZ3DUkk5_jLEHl(E*`wl=O>8y7n>)?Jf5S)*l&fBD6%**5E)u3u=r?!V?= zJoZ}qQs=K8ee2QXi#Hzsu=dc~@_U`DkDtBc@XVy9QwvQCf1PnOte6_|t+M&@=0!T= zXk0Nh-f?3yHO{2zNnKhuL0_#+>(caPI9nz9Du*>JHLmlssqypVbdWe%9D$={fP-U<>{l`v z+?WE%N}-s*5+!wD6MbBVaXNhAFrXCW*n#BnSO z!M}RU`uk2?^wVSp{CW{yh=MJXh{Y1|U{VwYB4cF!6oZ;kSW%E<30D+$$*D8y7z#=E z&F6NgKLS7LBs?amoPnyWnLLwqR(?Sl^)*xMdiAa)Z>G9^x?;*O%YN*r{Mh5m+GWZ*z0h4|R) zK;3L(6pv1r*l*stctqwv~IAlgkbToY3A}S3J-8P)l24BT_uG@f(Lr2 zUrIzrWI zK!O`pT|kNjvuZbD6V#Wl2Tw!_s(lw5iETi528ny&F-hGuQI*y6C+AMipPf6qcq-#< zpFFef^2}GyRnKpm+qPJhaqXHs{i)3{^Zn`X-?lZZ+8P!QFYjJyJe;u|nLLrTx@Mn) zgJFejBn#ud?P`D?$N}94iHE6GIM8Uha75mK78o2<3eGj2Nx?j62PJG*+^SJ*T@DvSwXoRoot$c;#X*fA(3Mv@()2{Fp6yEQxnID%^#^Q%Cj zEs=zs3R4#6LHTh>LF81W$MK1pYfw%Ed0`+l5|x9{yAVu9MS?D5y1 zdo8$9-@58;T^d>Sc7DWmsaukb0Q$O5{wPf%e-RQyK|)*}csd1U!2~TAlwF!0qs4lf zD$d3*&SY6g7xoxX>jB_^A%Sys1AZ7_x9Ivlb3#h&fCnHz8wi2mgJ4LOMTPALw4tzo z6lKMDA$aP-`Qs=3jEMRN;0#Db!V^V1+p1ELWDp=nEC`FbL{f)<<^}jkUGN|(>$Y{v zs&&hvd)3-B*>l$bN7gL+q4TlVz1Qon)i3gynij|{v&$p@RFSbBUSSWb;xpmI;32M< zqKPnpu8MI0Fsv-Z!v)zuCnoq2sjk4YbX6B60}kII8a-$TvP&%v2CVMrT>?d4QZZcG~|OliGn zmt9(I+NkxyvuH|9m}IwBH;gK~EDTqd6+kvkr%eTEJghx-QWl_fetk`tkq>NSquS+zZ+P@B(=9LFvb{lkDdq6wHYRDlFB z_-$%8k72=KWTeLdCKVk-iZO4l)3K14#+>2X2Hy zP|Xa>2yP4lWW?_S$sqiszlB``K*dez9aCd#tZyCEu5Y0;Q^8Fh&oP|7YTaHrlbB8{ z2+Qo6{gEl%y1QYq>CM)kxBj9%iNTS zhausroI3ikqiVf!$D*96Y+X9HTG=tnXi&9&u6|)?iOINHrjD+=z4JTgcFuRqbu2b! z+}o#)t$TJXjxD>_Je@g~uI$X|D3=d_FIYduU)kTXFOS`H-@KIB)t9L{yW%{Xb+~3; zoPKd(|C(dl;=VV#f8M<$uQhdk>a1PZ_cJ?2`(Jf{Emc)Be`)U00{_bMvrLXLxX#k+ zHCq-+owzIE;pWwy^)r>#G=ed)jk$n2}~W^4IoANl&=eSDorpf$TE9fdi$ z)>CuRL%p-V;>1qooyV(B)aid$WrFnYw$?%U@4D^q{C%DNM6>z#oDs@@ztexxsejk0 zgYtJh?vvYf_t|s>+|v(e@Ikm|bEk-=Q#P~oiVhWN+qY<4u+u~xubW`vKmO)C4DdwZ_cZTI$%6T;Ng>rYaiKfhV6J0Sj~BCfZ84`XS6O! z7)Bso761b=yycfx4FwT&ijFxFK#QZts4QqR*+b2+VP=pDGtU8fL>qays*Dt}bIesI z3p5j~CJn%)58(^A^yvq41iXrvw15nY$b_#TnA9NGYU3EL*HXoJQ!GdWm%Q92jB)}0 z0je}=<$x+}fOiXM3s4{)^<@DhYTOi6vR{XY?n8_P90{oC#~{@L1}k=@&4K78SgU}2 ziWK0nD2yEV{3D@5E37P}i}PYBqSJ>+@R2emkS(HBZJxmfu}m_jsUOm%_5<(KxNMQmWBJ}0@6k2SXtm*XvIp1 zb5F=mXqCk`q``8!dLfTYa|6D7B5yx?l54Xl^1-^+GbOPlVgwD|_B zazgaXJ0{F8nPEh)tEo|1L$c809<4_ijcO7GnE#dDKl#hv%Mkv@1%$8r`kB+l?{}9X zalmHZ5s6z6#Q+#5Q1H70al#JK{QqMh{(pePQ@ZxSRElkv@hKjHr(Qe+mvfjIBNZW0 zp~Y0&u}~Z(#S36G#3JAd2PY@mFKE?p@_15p(Gl3bT}tW1L%UP@5qY5PAi#Wp!Qlj6 zQj~yvTo8mBLHc(E`KgXms(ZG;bvxVufGMFGPaNck5C2Li8sQH?wok;9L3M03s1|`9 zED=EzPh&ZP01@{$+{GjY2L-^_aPt<2H&Bew1&&)pgr=Gc7Vw_utu*l*mfmkBh$pcO z-L}Ly5Klo$(MKeN?GQ=hF~yszGrXD1L^de-9eD)S$>39Y1;L<(D$X>f1(c)yOSY zt{HbO9sJdiw~l05x^K7ithV&r{N7qiZ`M&c&1TK6nXS`XGv=Dx=EhZX;~PiT%=@yA zs!eJRubKC5+Geq9&AdD7a8I+Jn(Q<7X?wP!J6qwstJj$=ITPiqgbNglYo>L&b#`pg zyKG#u9GpCsV>zk&&4xU zJ2t32<}>uviL9%7zHY9rVBv_F%H2zQS1a4V!tqqjADBBZ|JdAPi>9TUUSuYCR=gvExn)&XzZkSNdj&<*eoANDh@8=;JC6nW6%3LvHo;Lr~`d?oR z(p1w~`pLIwkIVYDUbkMeW_@*c&HBo!|E!=Yw|tfJ z0O416YpI%sH`-UK_kOd6_rCPOz{yK}m2(%ya!;CrHTv7u>fUc2> zgOAHWJW=oSTBBb9y@(rk0o{DZ8#%NaXuJ`V4uVyKoXdiS!-fmq>morB_h?vAs+0?! z>dk!7#k)XpTM3#(Uoy2>4}8HUtf0V`j&BVCZjEr{qAX}_^AU*Fd^n)EM~C3!9pWrXxl3!u+6Ivzkk{Mlw;Za*1#P$sF2~~0 zM2H7J;DDHjfl6!zjZW5H8?HT6lKyTkT-5quxS3P0y74j&yj!WJzrY0d6L4^e>UWp; z%S@sWisBWi_*WnWRn=NCbqpSg1ulkQ$V9oKTS|OhE7epkuEwHn7E#rR&mxg23@+J7 zI20us7B2OOw~n~cqEIj45-Mmbt11gsU5QZhCnWhdc#w-ar+a2}di1tq+bVdEOc{rN z^2s|U?~2d=p~;`MdS;GHA0eMpG_P8l-*|q_+PQ9Zt5;SFLu=NZpPJmW2Ny0aAH2Q4 zXLUblw9NkAm5$z9rZa>~>xZV+`y2cv&wq}uZtr<#Vs-n)HS05Zejk~3fWyn|m~l)y zatv*2xl`cu);l^v7cKpog?>Rei|IDeSW`U3DjUU=r| zr_Y|hc)X|NLo-DO=vA?v!tbqQ6)Nd@p?_phVezvvMF$@_k$YZ62VPwjs&(O5&>f(n zG=xg3Qbw8Ygf&+3kNgi z=1Bwi1ARM|?5ovXE0j0K>ghe7u=YEwZ=r9M-Mzy4awY@4_m8Xti_WaFek`)Ev~yP4 zpdiZG&2;U;u^a`_V$YK2=chI>ne$c9&V_@E$F3dDQIK4^xPeh_tBGz}1VstavW`S= zvm2PpRq5#iZ(qp4NDtfuVu*51mOipror7+UV0(x@x3|z$3!WSW(Gs+WXqhL`O@0G& zxo7D!H0?zajFAT8W#|Os+yFy0?fl$WPoJl=c2`b^i93+cV**6ssax1T*Ons$0NxCi zyJoEUbMB0RGI_qBXnIeUwfv;_<=z!n`z^KuCt}Z6IcL6dZ=tf|7P|*4_uiA5Vb*?A jXFg`5ezV7%Q6rSC+*FU?llcqn=1Xxts#YS?{_t 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 GKK}=b^l4uJ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..84e4bf84a2dae491c06be7189264043e5baa5b85 GIT binary patch literal 5974 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py new file mode 100644 index 00000000..e06947c0 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py @@ -0,0 +1,109 @@ +"""Functions brought over from jaraco.text. + +These functions are not supposed to be used within `pip._internal`. These are +helper functions brought over from `jaraco.text` to enable vendoring newer +copies of `pkg_resources` without having to vendor `jaraco.text` and its entire +dependency cone; something that our vendoring setup is not currently capable of +handling. + +License reproduced from original source below: + +Copyright Jason R. Coombs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +""" + +import functools +import itertools + + +def _nonblank(str): + return str and not str.startswith("#") + + +@functools.singledispatch +def yield_lines(iterable): + r""" + Yield valid lines of a string or iterable. + + >>> list(yield_lines('')) + [] + >>> list(yield_lines(['foo', 'bar'])) + ['foo', 'bar'] + >>> list(yield_lines('foo\nbar')) + ['foo', 'bar'] + >>> list(yield_lines('\nfoo\n#bar\nbaz #comment')) + ['foo', 'baz #comment'] + >>> list(yield_lines(['foo\nbar', 'baz', 'bing\n\n\n'])) + ['foo', 'bar', 'baz', 'bing'] + """ + return itertools.chain.from_iterable(map(yield_lines, iterable)) + + +@yield_lines.register(str) +def _(text): + return filter(_nonblank, map(str.strip, text.splitlines())) + + +def drop_comment(line): + """ + Drop comments. + + >>> drop_comment('foo # bar') + 'foo' + + A hash without a space may be in a URL. + + >>> drop_comment('http://example.com/foo#bar') + 'http://example.com/foo#bar' + """ + return line.partition(" #")[0] + + +def join_continuation(lines): + r""" + Join lines continued by a trailing backslash. + + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar \\', 'baz'])) + ['foobarbaz'] + + Not sure why, but... + The character preceeding the backslash is also elided. + + >>> list(join_continuation(['goo\\', 'dly'])) + ['godly'] + + A terrible idea, but... + If no line is available to continue, suppress the lines. + + >>> list(join_continuation(['foo', 'bar\\', 'baz\\'])) + ['foo'] + """ + lines = iter(lines) + for item in lines: + while item.endswith("\\"): + try: + item = item[:-2].strip() + next(lines) + except StopIteration: + return + yield item diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 00000000..92c4c6a1 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py @@ -0,0 +1,38 @@ +"""Customize logging + +Defines custom logger class for the `logger.verbose(...)` method. + +init_logging() must be called before any other modules that call logging.getLogger. +""" + +import logging +from typing import Any, cast + +# custom log level for `--verbose` output +# between DEBUG and INFO +VERBOSE = 15 + + +class VerboseLogger(logging.Logger): + """Custom Logger, defining a verbose log-level + + VERBOSE is between INFO and DEBUG. + """ + + def verbose(self, msg: str, *args: Any, **kwargs: Any) -> None: + return self.log(VERBOSE, msg, *args, **kwargs) + + +def getLogger(name: str) -> VerboseLogger: + """logging.getLogger, but ensures our VerboseLogger class is returned""" + return cast(VerboseLogger, logging.getLogger(name)) + + +def init_logging() -> None: + """Register our VerboseLogger and VERBOSE log level. + + Should be called before any calls to getLogger(), + i.e. in pip._internal.__init__ + """ + logging.setLoggerClass(VerboseLogger) + logging.addLevelName(VERBOSE, "VERBOSE") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 00000000..16933bf8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py @@ -0,0 +1,52 @@ +""" +This code wraps the vendored appdirs module to so the return values are +compatible for the current pip code base. + +The intention is to rewrite current usages gradually, keeping the tests pass, +and eventually drop this after all usages are changed. +""" + +import os +import sys +from typing import List + +from pip._vendor import platformdirs as _appdirs + + +def user_cache_dir(appname: str) -> str: + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def _macos_user_config_dir(appname: str, roaming: bool = True) -> str: + # Use ~/Application Support/pip, if the directory exists. + path = _appdirs.user_data_dir(appname, appauthor=False, roaming=roaming) + if os.path.isdir(path): + return path + + # Use a Linux-like ~/.config/pip, by default. + linux_like_path = "~/.config/" + if appname: + linux_like_path = os.path.join(linux_like_path, appname) + + return os.path.expanduser(linux_like_path) + + +def user_config_dir(appname: str, roaming: bool = True) -> str: + if sys.platform == "darwin": + return _macos_user_config_dir(appname, roaming) + + return _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname: str) -> List[str]: + if sys.platform == "darwin": + return [_appdirs.site_data_dir(appname, appauthor=False, multipath=True)] + + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if sys.platform == "win32": + return [dirval] + + # Unix-y system. Look in /etc as well. + return dirval.split(os.pathsep) + ["/etc"] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 00000000..3f4d300c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py @@ -0,0 +1,63 @@ +"""Stuff that differs in different Python versions and platform +distributions.""" + +import logging +import os +import sys + +__all__ = ["get_path_uid", "stdlib_pkgs", "WINDOWS"] + + +logger = logging.getLogger(__name__) + + +def has_tls() -> bool: + try: + import _ssl # noqa: F401 # ignore unused + + return True + except ImportError: + pass + + from pip._vendor.urllib3.util import IS_PYOPENSSL + + return IS_PYOPENSSL + + +def get_path_uid(path: str) -> int: + """ + Return path's uid. + + Does not follow symlinks: + https://github.com/pypa/pip/pull/935#discussion_r5307003 + + Placed this function in compat due to differences on AIX and + Jython, that should eventually go away. + + :raises OSError: When path is a symlink or can't be read. + """ + if hasattr(os, "O_NOFOLLOW"): + fd = os.open(path, os.O_RDONLY | os.O_NOFOLLOW) + file_uid = os.fstat(fd).st_uid + os.close(fd) + else: # AIX and Jython + # WARNING: time of check vulnerability, but best we can do w/o NOFOLLOW + if not os.path.islink(path): + # older versions of Jython don't have `os.fstat` + file_uid = os.stat(path).st_uid + else: + # raise OSError for parity with os.O_NOFOLLOW above + raise OSError(f"{path} is a symlink; Will not return uid for symlinks") + return file_uid + + +# packages in the stdlib that may have installation metadata, but should not be +# considered 'installed'. this theoretically could be determined based on +# dist.location (py27:`sysconfig.get_paths()['stdlib']`, +# py26:sysconfig.get_config_vars('LIBDEST')), but fear platform variation may +# make this ineffective, so hard-coding +stdlib_pkgs = {"python", "wsgiref", "argparse"} + + +# windows detection, covers cpython and ironpython +WINDOWS = sys.platform.startswith("win") or (sys.platform == "cli" and os.name == "nt") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 00000000..b6ed9a78 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,165 @@ +"""Generate and work with PEP 425 Compatibility Tags. +""" + +import re +from typing import List, Optional, Tuple + +from pip._vendor.packaging.tags import ( + PythonVersion, + Tag, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + mac_platforms, +) + +_osx_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)") + + +def version_info_to_nodot(version_info: Tuple[int, ...]) -> str: + # Only use up to the first two numbers. + return "".join(map(str, version_info[:2])) + + +def _mac_platforms(arch: str) -> List[str]: + match = _osx_arch_pat.match(arch) + if match: + name, major, minor, actual_arch = match.groups() + mac_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "macosx", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "macosxcustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("macosx_") :]) + for arch in mac_platforms(mac_version, actual_arch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _custom_manylinux_platforms(arch: str) -> List[str]: + arches = [arch] + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch_prefix == "manylinux2014": + # manylinux1/manylinux2010 wheels run on most manylinux2014 systems + # with the exception of wheels depending on ncurses. PEP 599 states + # manylinux1/manylinux2010 wheels should be considered + # manylinux2014 wheels: + # https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels + if arch_suffix in {"i686", "x86_64"}: + arches.append("manylinux2010" + arch_sep + arch_suffix) + arches.append("manylinux1" + arch_sep + arch_suffix) + elif arch_prefix == "manylinux2010": + # manylinux1 wheels run on most manylinux2010 systems with the + # exception of wheels depending on ncurses. PEP 571 states + # manylinux1 wheels should be considered manylinux2010 wheels: + # https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels + arches.append("manylinux1" + arch_sep + arch_suffix) + return arches + + +def _get_custom_platforms(arch: str) -> List[str]: + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch.startswith("macosx"): + arches = _mac_platforms(arch) + elif arch_prefix in ["manylinux2014", "manylinux2010"]: + arches = _custom_manylinux_platforms(arch) + else: + arches = [arch] + return arches + + +def _expand_allowed_platforms(platforms: Optional[List[str]]) -> Optional[List[str]]: + if not platforms: + return None + + seen = set() + result = [] + + for p in platforms: + if p in seen: + continue + additions = [c for c in _get_custom_platforms(p) if c not in seen] + seen.update(additions) + result.extend(additions) + + return result + + +def _get_python_version(version: str) -> PythonVersion: + if len(version) > 1: + return int(version[0]), int(version[1:]) + else: + return (int(version[0]),) + + +def _get_custom_interpreter( + implementation: Optional[str] = None, version: Optional[str] = None +) -> str: + if implementation is None: + implementation = interpreter_name() + if version is None: + version = interpreter_version() + return f"{implementation}{version}" + + +def get_supported( + version: Optional[str] = None, + platforms: Optional[List[str]] = None, + impl: Optional[str] = None, + abis: Optional[List[str]] = None, +) -> List[Tag]: + """Return a list of supported tags for each version specified in + `versions`. + + :param version: a string version, of the form "33" or "32", + or None. The version will be assumed to support our ABI. + :param platform: specify a list of platforms you want valid + tags for, or None. If None, use the local system platform. + :param impl: specify the exact implementation you want valid + tags for, or None. If None, use the local interpreter impl. + :param abis: specify a list of abis you want valid + tags for, or None. If None, use the local interpreter abi. + """ + supported: List[Tag] = [] + + python_version: Optional[PythonVersion] = None + if version is not None: + python_version = _get_python_version(version) + + interpreter = _get_custom_interpreter(impl, version) + + platforms = _expand_allowed_platforms(platforms) + + is_cpython = (impl or interpreter_name()) == "cp" + if is_cpython: + supported.extend( + cpython_tags( + python_version=python_version, + abis=abis, + platforms=platforms, + ) + ) + else: + supported.extend( + generic_tags( + interpreter=interpreter, + abis=abis, + platforms=platforms, + ) + ) + supported.extend( + compatible_tags( + python_version=python_version, + interpreter=interpreter, + platforms=platforms, + ) + ) + + return supported diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 00000000..8668b3b0 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py @@ -0,0 +1,11 @@ +"""For when pip wants to check the date or time. +""" + +import datetime + + +def today_is_later_than(year: int, month: int, day: int) -> bool: + today = datetime.date.today() + given = datetime.date(year, month, day) + + return today > given diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 00000000..72bd6f25 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,120 @@ +""" +A module that implements tooling to enable easy warnings about deprecations. +""" + +import logging +import warnings +from typing import Any, Optional, TextIO, Type, Union + +from pip._vendor.packaging.version import parse + +from pip import __version__ as current_version # NOTE: tests patch this name. + +DEPRECATION_MSG_PREFIX = "DEPRECATION: " + + +class PipDeprecationWarning(Warning): + pass + + +_original_showwarning: Any = None + + +# Warnings <-> Logging Integration +def _showwarning( + message: Union[Warning, str], + category: Type[Warning], + filename: str, + lineno: int, + file: Optional[TextIO] = None, + line: Optional[str] = None, +) -> None: + if file is not None: + if _original_showwarning is not None: + _original_showwarning(message, category, filename, lineno, file, line) + elif issubclass(category, PipDeprecationWarning): + # We use a specially named logger which will handle all of the + # deprecation messages for pip. + logger = logging.getLogger("pip._internal.deprecations") + logger.warning(message) + else: + _original_showwarning(message, category, filename, lineno, file, line) + + +def install_warning_logger() -> None: + # Enable our Deprecation Warnings + warnings.simplefilter("default", PipDeprecationWarning, append=True) + + global _original_showwarning + + if _original_showwarning is None: + _original_showwarning = warnings.showwarning + warnings.showwarning = _showwarning + + +def deprecated( + *, + reason: str, + replacement: Optional[str], + gone_in: Optional[str], + feature_flag: Optional[str] = None, + issue: Optional[int] = None, +) -> None: + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. Should be a complete sentence. + replacement: + Textual suggestion shown to the user about what alternative + functionality they can use. + gone_in: + The version of pip does this functionality should get removed in. + Raises an error if pip's current version is greater than or equal to + this. + feature_flag: + Command-line flag of the form --use-feature={feature_flag} for testing + upcoming functionality. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + """ + + # Determine whether or not the feature is already gone in this version. + is_gone = gone_in is not None and parse(current_version) >= parse(gone_in) + + message_parts = [ + (reason, f"{DEPRECATION_MSG_PREFIX}{{}}"), + ( + gone_in, + "pip {} will enforce this behaviour change." + if not is_gone + else "Since pip {}, this is no longer supported.", + ), + ( + replacement, + "A possible replacement is {}.", + ), + ( + feature_flag, + "You can use the flag --use-feature={} to test the upcoming behaviour." + if not is_gone + else None, + ), + ( + issue, + "Discussion can be found at https://github.com/pypa/pip/issues/{}", + ), + ] + + message = " ".join( + format_str.format(value) + for value, format_str in message_parts + if format_str is not None and value is not None + ) + + # Raise as an error if this behaviour is deprecated. + if is_gone: + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 00000000..0e8e5e16 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,87 @@ +from typing import Optional + +from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + + +def direct_url_as_pep440_direct_reference(direct_url: DirectUrl, name: str) -> str: + """Convert a DirectUrl to a pip requirement string.""" + direct_url.validate() # if invalid, this is a pip bug + requirement = name + " @ " + fragments = [] + if isinstance(direct_url.info, VcsInfo): + requirement += "{}+{}@{}".format( + direct_url.info.vcs, direct_url.url, direct_url.info.commit_id + ) + elif isinstance(direct_url.info, ArchiveInfo): + requirement += direct_url.url + if direct_url.info.hash: + fragments.append(direct_url.info.hash) + else: + assert isinstance(direct_url.info, DirInfo) + requirement += direct_url.url + if direct_url.subdirectory: + fragments.append("subdirectory=" + direct_url.subdirectory) + if fragments: + requirement += "#" + "&".join(fragments) + return requirement + + +def direct_url_for_editable(source_dir: str) -> DirectUrl: + return DirectUrl( + url=path_to_url(source_dir), + info=DirInfo(editable=True), + ) + + +def direct_url_from_link( + link: Link, source_dir: Optional[str] = None, link_is_in_wheel_cache: bool = False +) -> DirectUrl: + if link.is_vcs: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend + url, requested_revision, _ = vcs_backend.get_url_rev_and_auth( + link.url_without_fragment + ) + # For VCS links, we need to find out and add commit_id. + if link_is_in_wheel_cache: + # If the requested VCS link corresponds to a cached + # wheel, it means the requested revision was an + # immutable commit hash, otherwise it would not have + # been cached. In that case we don't have a source_dir + # with the VCS checkout. + assert requested_revision + commit_id = requested_revision + else: + # If the wheel was not in cache, it means we have + # had to checkout from VCS to build and we have a source_dir + # which we can inspect to find out the commit id. + assert source_dir + commit_id = vcs_backend.get_revision(source_dir) + return DirectUrl( + url=url, + info=VcsInfo( + vcs=vcs_backend.name, + commit_id=commit_id, + requested_revision=requested_revision, + ), + subdirectory=link.subdirectory_fragment, + ) + elif link.is_existing_dir(): + return DirectUrl( + url=link.url_without_fragment, + info=DirInfo(), + subdirectory=link.subdirectory_fragment, + ) + else: + hash = None + hash_name = link.hash_name + if hash_name: + hash = f"{hash_name}={link.hash}" + return DirectUrl( + url=link.url_without_fragment, + info=ArchiveInfo(hash=hash), + subdirectory=link.subdirectory_fragment, + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 00000000..4a384a63 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py @@ -0,0 +1,80 @@ +import os +import re +import sys +from typing import List, Optional + +from pip._internal.locations import site_packages, user_site +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__all__ = [ + "egg_link_path_from_sys_path", + "egg_link_path_from_location", +] + + +def _egg_link_names(raw_name: str) -> List[str]: + """ + Convert a Name metadata value to a .egg-link name, by applying + the same substitution as pkg_resources's safe_name function. + Note: we cannot use canonicalize_name because it has a different logic. + + We also look for the raw name (without normalization) as setuptools 69 changed + the way it names .egg-link files (https://github.com/pypa/setuptools/issues/4167). + """ + return [ + re.sub("[^A-Za-z0-9.]+", "-", raw_name) + ".egg-link", + f"{raw_name}.egg-link", + ] + + +def egg_link_path_from_sys_path(raw_name: str) -> Optional[str]: + """ + Look for a .egg-link file for project name, by walking sys.path. + """ + egg_link_names = _egg_link_names(raw_name) + for path_item in sys.path: + for egg_link_name in egg_link_names: + egg_link = os.path.join(path_item, egg_link_name) + if os.path.isfile(egg_link): + return egg_link + return None + + +def egg_link_path_from_location(raw_name: str) -> Optional[str]: + """ + Return the path for the .egg-link file if it exists, otherwise, None. + + There's 3 scenarios: + 1) not in a virtualenv + try to find in site.USER_SITE, then site_packages + 2) in a no-global virtualenv + try to find in site_packages + 3) in a yes-global virtualenv + try to find in site_packages, then site.USER_SITE + (don't look in global location) + + For #1 and #3, there could be odd cases, where there's an egg-link in 2 + locations. + + This method will just return the first one found. + """ + sites: List[str] = [] + if running_under_virtualenv(): + sites.append(site_packages) + if not virtualenv_no_global() and user_site: + sites.append(user_site) + else: + if user_site: + sites.append(user_site) + sites.append(site_packages) + + egg_link_names = _egg_link_names(raw_name) + for site in sites: + for egg_link_name in egg_link_names: + egglink = os.path.join(site, egg_link_name) + if os.path.isfile(egglink): + return egglink + return None diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 00000000..008f06a7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py @@ -0,0 +1,36 @@ +import codecs +import locale +import re +import sys +from typing import List, Tuple + +BOMS: List[Tuple[bytes, str]] = [ + (codecs.BOM_UTF8, "utf-8"), + (codecs.BOM_UTF16, "utf-16"), + (codecs.BOM_UTF16_BE, "utf-16-be"), + (codecs.BOM_UTF16_LE, "utf-16-le"), + (codecs.BOM_UTF32, "utf-32"), + (codecs.BOM_UTF32_BE, "utf-32-be"), + (codecs.BOM_UTF32_LE, "utf-32-le"), +] + +ENCODING_RE = re.compile(rb"coding[:=]\s*([-\w.]+)") + + +def auto_decode(data: bytes) -> str: + """Check a bytes string for a BOM to correctly detect the encoding + + Fallback to locale.getpreferredencoding(False) like open() on Python3""" + for bom, encoding in BOMS: + if data.startswith(bom): + return data[len(bom) :].decode(encoding) + # Lets check the first two lines as in PEP263 + for line in data.split(b"\n")[:2]: + if line[0:1] == b"#" and ENCODING_RE.search(line): + result = ENCODING_RE.search(line) + assert result is not None + encoding = result.groups()[0].decode("ascii") + return data.decode(encoding) + return data.decode( + locale.getpreferredencoding(False) or sys.getdefaultencoding(), + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 00000000..15013693 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,84 @@ +import itertools +import os +import shutil +import sys +from typing import List, Optional + +from pip._internal.cli.main import main +from pip._internal.utils.compat import WINDOWS + +_EXECUTABLE_NAMES = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", +] +if WINDOWS: + _allowed_extensions = {"", ".exe"} + _EXECUTABLE_NAMES = [ + "".join(parts) + for parts in itertools.product(_EXECUTABLE_NAMES, _allowed_extensions) + ] + + +def _wrapper(args: Optional[List[str]] = None) -> int: + """Central wrapper for all old entrypoints. + + Historically pip has had several entrypoints defined. Because of issues + arising from PATH, sys.path, multiple Pythons, their interactions, and most + of them having a pip installed, users suffer every time an entrypoint gets + moved. + + To alleviate this pain, and provide a mechanism for warning users and + directing them to an appropriate place for help, we now define all of + our old entrypoints as wrappers for the current one. + """ + sys.stderr.write( + "WARNING: pip is being invoked by an old script wrapper. This will " + "fail in a future version of pip.\n" + "Please see https://github.com/pypa/pip/issues/5599 for advice on " + "fixing the underlying issue.\n" + "To avoid this problem you can invoke Python with '-m pip' instead of " + "running pip directly.\n" + ) + return main(args) + + +def get_best_invocation_for_this_pip() -> str: + """Try to figure out the best way to invoke pip in the current environment.""" + binary_directory = "Scripts" if WINDOWS else "bin" + binary_prefix = os.path.join(sys.prefix, binary_directory) + + # Try to use pip[X[.Y]] names, if those executables for this environment are + # the first on PATH with that name. + path_parts = os.path.normcase(os.environ.get("PATH", "")).split(os.pathsep) + exe_are_in_PATH = os.path.normcase(binary_prefix) in path_parts + if exe_are_in_PATH: + for exe_name in _EXECUTABLE_NAMES: + found_executable = shutil.which(exe_name) + binary_executable = os.path.join(binary_prefix, exe_name) + if ( + found_executable + and os.path.exists(binary_executable) + and os.path.samefile( + found_executable, + binary_executable, + ) + ): + return exe_name + + # Use the `-m` invocation, if there's no "nice" invocation. + return f"{get_best_invocation_for_this_python()} -m pip" + + +def get_best_invocation_for_this_python() -> str: + """Try to figure out the best way to invoke the current Python.""" + exe = sys.executable + exe_name = os.path.basename(exe) + + # Try to use the basename, if it's the first executable. + found_executable = shutil.which(exe_name) + if found_executable and os.path.samefile(found_executable, exe): + return exe_name + + # Use the full executable name, because we couldn't find something simpler. + return exe diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 00000000..83c2df75 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,153 @@ +import fnmatch +import os +import os.path +import random +import sys +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, Generator, List, Union, cast + +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip._internal.utils.compat import get_path_uid +from pip._internal.utils.misc import format_size + + +def check_path_owner(path: str) -> bool: + # If we don't have a way to check the effective uid of this process, then + # we'll just assume that we own the directory. + if sys.platform == "win32" or not hasattr(os, "geteuid"): + return True + + assert os.path.isabs(path) + + previous = None + while path != previous: + if os.path.lexists(path): + # Check if path is writable by current user. + if os.geteuid() == 0: + # Special handling for root user in order to handle properly + # cases where users use sudo without -H flag. + try: + path_uid = get_path_uid(path) + except OSError: + return False + return path_uid == 0 + else: + return os.access(path, os.W_OK) + else: + previous, path = path, os.path.dirname(path) + return False # assume we don't own the path + + +@contextmanager +def adjacent_tmp_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + """Return a file-like object pointing to a tmp file next to path. + + The file is created securely and is ensured to be written to disk + after the context reaches its end. + + kwargs will be passed to tempfile.NamedTemporaryFile to control + the way the temporary file will be opened. + """ + with NamedTemporaryFile( + delete=False, + dir=os.path.dirname(path), + prefix=os.path.basename(path), + suffix=".tmp", + **kwargs, + ) as f: + result = cast(BinaryIO, f) + try: + yield result + finally: + result.flush() + os.fsync(result.fileno()) + + +# Tenacity raises RetryError by default, explicitly raise the original exception +_replace_retry = retry(reraise=True, stop=stop_after_delay(1), wait=wait_fixed(0.25)) + +replace = _replace_retry(os.replace) + + +# test_writable_dir and _test_writable_dir_win are copied from Flit, +# with the author's agreement to also place them under pip's license. +def test_writable_dir(path: str) -> bool: + """Check if a directory is writable. + + Uses os.access() on POSIX, tries creating files on Windows. + """ + # If the directory doesn't exist, find the closest parent that does. + while not os.path.isdir(path): + parent = os.path.dirname(path) + if parent == path: + break # Should never get here, but infinite loops are bad + path = parent + + if os.name == "posix": + return os.access(path, os.W_OK) + + return _test_writable_dir_win(path) + + +def _test_writable_dir_win(path: str) -> bool: + # os.access doesn't work on Windows: http://bugs.python.org/issue2528 + # and we can't use tempfile: http://bugs.python.org/issue22107 + basename = "accesstest_deleteme_fishfingers_custard_" + alphabet = "abcdefghijklmnopqrstuvwxyz0123456789" + for _ in range(10): + name = basename + "".join(random.choice(alphabet) for _ in range(6)) + file = os.path.join(path, name) + try: + fd = os.open(file, os.O_RDWR | os.O_CREAT | os.O_EXCL) + except FileExistsError: + pass + except PermissionError: + # This could be because there's a directory with the same name. + # But it's highly unlikely there's a directory called that, + # so we'll assume it's because the parent dir is not writable. + # This could as well be because the parent dir is not readable, + # due to non-privileged user access. + return False + else: + os.close(fd) + os.unlink(file) + return True + + # This should never be reached + raise OSError("Unexpected condition testing for writable directory") + + +def find_files(path: str, pattern: str) -> List[str]: + """Returns a list of absolute paths of files beneath path, recursively, + with filenames which match the UNIX-style shell glob pattern.""" + result: List[str] = [] + for root, _, files in os.walk(path): + matches = fnmatch.filter(files, pattern) + result.extend(os.path.join(root, f) for f in matches) + return result + + +def file_size(path: str) -> Union[int, float]: + # If it's a symlink, return 0. + if os.path.islink(path): + return 0 + return os.path.getsize(path) + + +def format_file_size(path: str) -> str: + return format_size(file_size(path)) + + +def directory_size(path: str) -> Union[int, float]: + size = 0.0 + for root, _dirs, files in os.walk(path): + for filename in files: + file_path = os.path.join(root, filename) + size += file_size(file_path) + return size + + +def format_directory_size(path: str) -> str: + return format_size(directory_size(path)) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 00000000..59485701 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,27 @@ +"""Filetype information. +""" + +from typing import Tuple + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS: Tuple[str, ...] = (".tar.bz2", ".tbz") +XZ_EXTENSIONS: Tuple[str, ...] = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) +ZIP_EXTENSIONS: Tuple[str, ...] = (".zip", WHEEL_EXTENSION) +TAR_EXTENSIONS: Tuple[str, ...] = (".tar.gz", ".tgz", ".tar") +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name: str) -> bool: + """Return True if `name` is a considered as an archive file.""" + ext = splitext(name)[1].lower() + if ext in ARCHIVE_EXTENSIONS: + return True + return False diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 00000000..81342afa --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,88 @@ +import os +import sys +from typing import Optional, Tuple + + +def glibc_version_string() -> Optional[str]: + "Returns glibc version string, or None if not using glibc." + return glibc_version_string_confstr() or glibc_version_string_ctypes() + + +def glibc_version_string_confstr() -> Optional[str]: + "Primary implementation of glibc_version_string using os.confstr." + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module: + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c9d0921ff3d70e1127ca1b71/Lib/platform.py#L175-L183 + if sys.platform == "win32": + return None + try: + gnu_libc_version = os.confstr("CS_GNU_LIBC_VERSION") + if gnu_libc_version is None: + return None + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = gnu_libc_version.split() + except (AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def glibc_version_string_ctypes() -> Optional[str]: + "Fallback implementation of glibc_version_string using ctypes." + + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + process_namespace = ctypes.CDLL(None) + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +# platform.libc_ver regularly returns completely nonsensical glibc +# versions. E.g. on my computer, platform says: +# +# ~$ python2.7 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.7') +# ~$ python3.5 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.9') +# +# But the truth is: +# +# ~$ ldd --version +# ldd (Debian GLIBC 2.22-11) 2.22 +# +# This is unfortunate, because it means that the linehaul data on libc +# versions that was generated by pip 8.1.2 and earlier is useless and +# misleading. Solution: instead of using platform, use our code that actually +# works. +def libc_ver() -> Tuple[str, str]: + """Try to determine the glibc version + + Returns a tuple of strings (lib, version) which default to empty strings + in case the lookup fails. + """ + glibc_version = glibc_version_string() + if glibc_version is None: + return ("", "") + else: + return ("glibc", glibc_version) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 00000000..843cffc6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,151 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterable, List, Optional + +from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError +from pip._internal.utils.misc import read_chunks + +if TYPE_CHECKING: + from hashlib import _Hash + + # NoReturn introduced in 3.6.2; imported only for type checking to maintain + # pip compatibility with older patch versions of Python 3.6 + from typing import NoReturn + + +# The recommended hash algo of the moment. Change this whenever the state of +# the art changes; it won't hurt backward compatibility. +FAVORITE_HASH = "sha256" + + +# Names of hashlib algorithms allowed by the --hash option and ``pip hash`` +# Currently, those are the ones at least as collision-resistant as sha256. +STRONG_HASHES = ["sha256", "sha384", "sha512"] + + +class Hashes: + """A wrapper that builds multiple hashes at once and checks them against + known-good values + + """ + + def __init__(self, hashes: Optional[Dict[str, List[str]]] = None) -> None: + """ + :param hashes: A dict of algorithm names pointing to lists of allowed + hex digests + """ + allowed = {} + if hashes is not None: + for alg, keys in hashes.items(): + # Make sure values are always sorted (to ease equality checks) + allowed[alg] = sorted(keys) + self._allowed = allowed + + def __and__(self, other: "Hashes") -> "Hashes": + if not isinstance(other, Hashes): + return NotImplemented + + # If either of the Hashes object is entirely empty (i.e. no hash + # specified at all), all hashes from the other object are allowed. + if not other: + return self + if not self: + return other + + # Otherwise only hashes that present in both objects are allowed. + new = {} + for alg, values in other._allowed.items(): + if alg not in self._allowed: + continue + new[alg] = [v for v in values if v in self._allowed[alg]] + return Hashes(new) + + @property + def digest_count(self) -> int: + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed(self, hash_name: str, hex_digest: str) -> bool: + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks: Iterable[bytes]) -> None: + """Check good hashes against ones built from iterable of chunks of + data. + + Raise HashMismatch if none match. + + """ + gots = {} + for hash_name in self._allowed.keys(): + try: + gots[hash_name] = hashlib.new(hash_name) + except (ValueError, TypeError): + raise InstallationError(f"Unknown hash name: {hash_name}") + + for chunk in chunks: + for hash in gots.values(): + hash.update(chunk) + + for hash_name, got in gots.items(): + if got.hexdigest() in self._allowed[hash_name]: + return + self._raise(gots) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file: BinaryIO) -> None: + """Check good hashes against a file-like object + + Raise HashMismatch if none match. + + """ + return self.check_against_chunks(read_chunks(file)) + + def check_against_path(self, path: str) -> None: + with open(path, "rb") as file: + return self.check_against_file(file) + + def has_one_of(self, hashes: Dict[str, str]) -> bool: + """Return whether any of the given hashes are allowed.""" + for hash_name, hex_digest in hashes.items(): + if self.is_hash_allowed(hash_name, hex_digest): + return True + return False + + def __bool__(self) -> bool: + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self) -> int: + return hash( + ",".join( + sorted( + ":".join((alg, digest)) + for alg, digest_list in self._allowed.items() + for digest in digest_list + ) + ) + ) + + +class MissingHashes(Hashes): + """A workalike for Hashes used when we're missing a hash for a requirement + + It computes the actual hash of the requirement and raises a HashMissing + exception showing it to the user. + + """ + + def __init__(self) -> None: + """Don't offer the ``hashes`` kwarg.""" + # Pass our favorite hash in to generate a "gotten hash". With the + # empty list, it will never match, so an error will always raise. + super().__init__(hashes={FAVORITE_HASH: []}) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 00000000..95982dfb --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,348 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +import threading +from dataclasses import dataclass +from io import TextIOWrapper +from logging import Filter +from typing import Any, ClassVar, Generator, List, Optional, TextIO, Type + +from pip._vendor.rich.console import ( + Console, + ConsoleOptions, + ConsoleRenderable, + RenderableType, + RenderResult, + RichCast, +) +from pip._vendor.rich.highlighter import NullHighlighter +from pip._vendor.rich.logging import RichHandler +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style + +from pip._internal.utils._log import VERBOSE, getLogger +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import DEPRECATION_MSG_PREFIX +from pip._internal.utils.misc import ensure_dir + +_log_state = threading.local() +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + +def _is_broken_pipe_error(exc_class: Type[BaseException], exc: BaseException) -> bool: + if exc_class is BrokenPipeError: + return True + + # On Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + if not WINDOWS: + return False + + return isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + + +@contextlib.contextmanager +def indent_log(num: int = 2) -> Generator[None, None, None]: + """ + A context manager which will cause the log output to be indented for any + log messages emitted inside it. + """ + # For thread-safety + _log_state.indentation = get_indentation() + _log_state.indentation += num + try: + yield + finally: + _log_state.indentation -= num + + +def get_indentation() -> int: + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args: Any, + add_timestamp: bool = False, + **kwargs: Any, + ) -> None: + """ + A logging.Formatter that obeys the indent_log() context manager. + + :param add_timestamp: A bool indicating output lines should be prefixed + with their record's timestamp. + """ + self.add_timestamp = add_timestamp + super().__init__(*args, **kwargs) + + def get_message_start(self, formatted: str, levelno: int) -> str: + """ + Return the start of the formatted log message (not counting the + prefix to add to each line). + """ + if levelno < logging.WARNING: + return "" + if formatted.startswith(DEPRECATION_MSG_PREFIX): + # Then the message already has a prefix. We don't want it to + # look like "WARNING: DEPRECATION: ...." + return "" + if levelno < logging.ERROR: + return "WARNING: " + + return "ERROR: " + + def format(self, record: logging.LogRecord) -> str: + """ + Calls the standard formatter, but will indent all of the log message + lines by our current indentation level. + """ + formatted = super().format(record) + message_start = self.get_message_start(formatted, record.levelno) + formatted = message_start + formatted + + prefix = "" + if self.add_timestamp: + prefix = f"{self.formatTime(record)} " + prefix += " " * get_indentation() + formatted = "".join([prefix + line for line in formatted.splitlines(True)]) + return formatted + + +@dataclass +class IndentedRenderable: + renderable: RenderableType + indent: int + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + segments = console.render(self.renderable, options) + lines = Segment.split_lines(segments) + for line in lines: + yield Segment(" " * self.indent) + yield from line + yield Segment("\n") + + +class RichPipStreamHandler(RichHandler): + KEYWORDS: ClassVar[Optional[List[str]]] = [] + + def __init__(self, stream: Optional[TextIO], no_color: bool) -> None: + super().__init__( + console=Console(file=stream, no_color=no_color, soft_wrap=True), + show_time=False, + show_level=False, + show_path=False, + highlighter=NullHighlighter(), + ) + + # Our custom override on Rich's logger, to make things work as we need them to. + def emit(self, record: logging.LogRecord) -> None: + style: Optional[Style] = None + + # If we are given a diagnostic error to present, present it with indentation. + assert isinstance(record.args, tuple) + if getattr(record, "rich", False): + (rich_renderable,) = record.args + assert isinstance( + rich_renderable, (ConsoleRenderable, RichCast, str) + ), f"{rich_renderable} is not rich-console-renderable" + + renderable: RenderableType = IndentedRenderable( + rich_renderable, indent=get_indentation() + ) + else: + message = self.format(record) + renderable = self.render_message(record, message) + if record.levelno is not None: + if record.levelno >= logging.ERROR: + style = Style(color="red") + elif record.levelno >= logging.WARNING: + style = Style(color="yellow") + + try: + self.console.print(renderable, overflow="ignore", crop=False, style=style) + except Exception: + self.handleError(record) + + def handleError(self, record: logging.LogRecord) -> None: + """Called when logging is unable to log some output.""" + + exc_class, exc = sys.exc_info()[:2] + # If a broken pipe occurred while calling write() or flush() on the + # stdout stream in logging's Handler.emit(), then raise our special + # exception so we can handle it in main() instead of logging the + # broken pipe error and continuing. + if ( + exc_class + and exc + and self.console.file is sys.stdout + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self) -> TextIOWrapper: + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level: int) -> None: + self.level = level + + def filter(self, record: logging.LogRecord) -> bool: + return record.levelno < self.level + + +class ExcludeLoggerFilter(Filter): + + """ + A logging Filter that excludes records from a logger (or its children). + """ + + def filter(self, record: logging.LogRecord) -> bool: + # The base Filter class allows only records from a logger (or its + # children). + return not super().filter(record) + + +def setup_logging(verbosity: int, no_color: bool, user_log_file: Optional[str]) -> int: + """Configures and sets up all of the logging + + Returns the requested logging level, as its integer value. + """ + + # Determine the level to be logging at. + if verbosity >= 2: + level_number = logging.DEBUG + elif verbosity == 1: + level_number = VERBOSE + elif verbosity == -1: + level_number = logging.WARNING + elif verbosity == -2: + level_number = logging.ERROR + elif verbosity <= -3: + level_number = logging.CRITICAL + else: + level_number = logging.INFO + + level = logging.getLevelName(level_number) + + # The "root" logger should match the "console" level *unless* we also need + # to log to a user log file. + include_user_log = user_log_file is not None + if include_user_log: + additional_log_file = user_log_file + root_level = "DEBUG" + else: + additional_log_file = "/dev/null" + root_level = level + + # Disable any logging besides WARNING unless we have DEBUG level logging + # enabled for vendored libraries. + vendored_log_level = "WARNING" if level in ["INFO", "ERROR"] else "DEBUG" + + # Shorthands for clarity + log_streams = { + "stdout": "ext://sys.stdout", + "stderr": "ext://sys.stderr", + } + handler_classes = { + "stream": "pip._internal.utils.logging.RichPipStreamHandler", + "file": "pip._internal.utils.logging.BetterRotatingFileHandler", + } + handlers = ["console", "console_errors", "console_subprocess"] + ( + ["user_log"] if include_user_log else [] + ) + + logging.config.dictConfig( + { + "version": 1, + "disable_existing_loggers": False, + "filters": { + "exclude_warnings": { + "()": "pip._internal.utils.logging.MaxLevelFilter", + "level": logging.WARNING, + }, + "restrict_to_subprocess": { + "()": "logging.Filter", + "name": subprocess_logger.name, + }, + "exclude_subprocess": { + "()": "pip._internal.utils.logging.ExcludeLoggerFilter", + "name": subprocess_logger.name, + }, + }, + "formatters": { + "indent": { + "()": IndentingFormatter, + "format": "%(message)s", + }, + "indent_with_timestamp": { + "()": IndentingFormatter, + "format": "%(message)s", + "add_timestamp": True, + }, + }, + "handlers": { + "console": { + "level": level, + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stdout"], + "filters": ["exclude_subprocess", "exclude_warnings"], + "formatter": "indent", + }, + "console_errors": { + "level": "WARNING", + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stderr"], + "filters": ["exclude_subprocess"], + "formatter": "indent", + }, + # A handler responsible for logging to the console messages + # from the "subprocessor" logger. + "console_subprocess": { + "level": level, + "class": handler_classes["stream"], + "stream": log_streams["stderr"], + "no_color": no_color, + "filters": ["restrict_to_subprocess"], + "formatter": "indent", + }, + "user_log": { + "level": "DEBUG", + "class": handler_classes["file"], + "filename": additional_log_file, + "encoding": "utf-8", + "delay": True, + "formatter": "indent_with_timestamp", + }, + }, + "root": { + "level": root_level, + "handlers": handlers, + }, + "loggers": {"pip._vendor": {"level": vendored_log_level}}, + } + ) + + return level_number diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 00000000..1ad3f616 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,783 @@ +import contextlib +import errno +import getpass +import hashlib +import io +import logging +import os +import posixpath +import shutil +import stat +import sys +import sysconfig +import urllib.parse +from functools import partial +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from pathlib import Path +from types import FunctionType, TracebackType +from typing import ( + Any, + BinaryIO, + Callable, + ContextManager, + Dict, + Generator, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + Union, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.pyproject_hooks import BuildBackendHookCaller +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip import __version__ +from pip._internal.exceptions import CommandError, ExternallyManagedEnvironment +from pip._internal.locations import get_major_minor_version +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = [ + "rmtree", + "display_path", + "backup_dir", + "ask", + "splitext", + "format_size", + "is_installable_dir", + "normalize_path", + "renames", + "get_prog", + "captured_stdout", + "ensure_dir", + "remove_auth_from_url", + "check_externally_managed", + "ConfiguredBuildBackendHookCaller", +] + +logger = logging.getLogger(__name__) + +T = TypeVar("T") +ExcInfo = Tuple[Type[BaseException], BaseException, TracebackType] +VersionInfo = Tuple[int, int, int] +NetlocTuple = Tuple[str, Tuple[Optional[str], Optional[str]]] +OnExc = Callable[[FunctionType, Path, BaseException], Any] +OnErr = Callable[[FunctionType, Path, ExcInfo], Any] + + +def get_pip_version() -> str: + pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") + pip_pkg_dir = os.path.abspath(pip_pkg_dir) + + return f"pip {__version__} from {pip_pkg_dir} (python {get_major_minor_version()})" + + +def normalize_version_info(py_version_info: Tuple[int, ...]) -> Tuple[int, int, int]: + """ + Convert a tuple of ints representing a Python version to one of length + three. + + :param py_version_info: a tuple of ints representing a Python version, + or None to specify no version. The tuple can have any length. + + :return: a tuple of length three if `py_version_info` is non-None. + Otherwise, return `py_version_info` unchanged (i.e. None). + """ + if len(py_version_info) < 3: + py_version_info += (3 - len(py_version_info)) * (0,) + elif len(py_version_info) > 3: + py_version_info = py_version_info[:3] + + return cast("VersionInfo", py_version_info) + + +def ensure_dir(path: str) -> None: + """os.path.makedirs without EEXIST.""" + try: + os.makedirs(path) + except OSError as e: + # Windows can raise spurious ENOTEMPTY errors. See #6426. + if e.errno != errno.EEXIST and e.errno != errno.ENOTEMPTY: + raise + + +def get_prog() -> str: + try: + prog = os.path.basename(sys.argv[0]) + if prog in ("__main__.py", "-c"): + return f"{sys.executable} -m pip" + else: + return prog + except (AttributeError, TypeError, IndexError): + pass + return "pip" + + +# Retry every half second for up to 3 seconds +# Tenacity raises RetryError by default, explicitly raise the original exception +@retry(reraise=True, stop=stop_after_delay(3), wait=wait_fixed(0.5)) +def rmtree( + dir: str, + ignore_errors: bool = False, + onexc: Optional[OnExc] = None, +) -> None: + if ignore_errors: + onexc = _onerror_ignore + if onexc is None: + onexc = _onerror_reraise + handler: OnErr = partial( + # `[func, path, Union[ExcInfo, BaseException]] -> Any` is equivalent to + # `Union[([func, path, ExcInfo] -> Any), ([func, path, BaseException] -> Any)]`. + cast(Union[OnExc, OnErr], rmtree_errorhandler), + onexc=onexc, + ) + if sys.version_info >= (3, 12): + # See https://docs.python.org/3.12/whatsnew/3.12.html#shutil. + shutil.rmtree(dir, onexc=handler) # type: ignore + else: + shutil.rmtree(dir, onerror=handler) # type: ignore + + +def _onerror_ignore(*_args: Any) -> None: + pass + + +def _onerror_reraise(*_args: Any) -> None: + raise + + +def rmtree_errorhandler( + func: FunctionType, + path: Path, + exc_info: Union[ExcInfo, BaseException], + *, + onexc: OnExc = _onerror_reraise, +) -> None: + """ + `rmtree` error handler to 'force' a file remove (i.e. like `rm -f`). + + * If a file is readonly then it's write flag is set and operation is + retried. + + * `onerror` is the original callback from `rmtree(... onerror=onerror)` + that is chained at the end if the "rm -f" still fails. + """ + try: + st_mode = os.stat(path).st_mode + except OSError: + # it's equivalent to os.path.exists + return + + if not st_mode & stat.S_IWRITE: + # convert to read/write + try: + os.chmod(path, st_mode | stat.S_IWRITE) + except OSError: + pass + else: + # use the original function to repeat the operation + try: + func(path) + return + except OSError: + pass + + if not isinstance(exc_info, BaseException): + _, exc_info, _ = exc_info + onexc(func, path, exc_info) + + +def display_path(path: str) -> str: + """Gives the display value for a given path, making it relative to cwd + if possible.""" + path = os.path.normcase(os.path.abspath(path)) + if path.startswith(os.getcwd() + os.path.sep): + path = "." + path[len(os.getcwd()) :] + return path + + +def backup_dir(dir: str, ext: str = ".bak") -> str: + """Figure out the name of a directory to back up the given dir to + (adding .bak, .bak2, etc)""" + n = 1 + extension = ext + while os.path.exists(dir + extension): + n += 1 + extension = ext + str(n) + return dir + extension + + +def ask_path_exists(message: str, options: Iterable[str]) -> str: + for action in os.environ.get("PIP_EXISTS_ACTION", "").split(): + if action in options: + return action + return ask(message, options) + + +def _check_no_input(message: str) -> None: + """Raise an error if no input is allowed.""" + if os.environ.get("PIP_NO_INPUT"): + raise Exception( + f"No input was expected ($PIP_NO_INPUT set); question: {message}" + ) + + +def ask(message: str, options: Iterable[str]) -> str: + """Ask the message interactively, with the given possible responses""" + while 1: + _check_no_input(message) + response = input(message) + response = response.strip().lower() + if response not in options: + print( + "Your response ({!r}) was not one of the expected responses: " + "{}".format(response, ", ".join(options)) + ) + else: + return response + + +def ask_input(message: str) -> str: + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message: str) -> str: + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val: str) -> int: + """Convert a string representation of truth to true (1) or false (0). + + True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values + are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if + 'val' is anything else. + """ + val = val.lower() + if val in ("y", "yes", "t", "true", "on", "1"): + return 1 + elif val in ("n", "no", "f", "false", "off", "0"): + return 0 + else: + raise ValueError(f"invalid truth value {val!r}") + + +def format_size(bytes: float) -> str: + if bytes > 1000 * 1000: + return f"{bytes / 1000.0 / 1000:.1f} MB" + elif bytes > 10 * 1000: + return f"{int(bytes / 1000)} kB" + elif bytes > 1000: + return f"{bytes / 1000.0:.1f} kB" + else: + return f"{int(bytes)} bytes" + + +def tabulate(rows: Iterable[Iterable[Any]]) -> Tuple[List[str], List[int]]: + """Return a list of formatted rows and a list of column sizes. + + For example:: + + >>> tabulate([['foobar', 2000], [0xdeadbeef]]) + (['foobar 2000', '3735928559'], [10, 4]) + """ + rows = [tuple(map(str, row)) for row in rows] + sizes = [max(map(len, col)) for col in zip_longest(*rows, fillvalue="")] + table = [" ".join(map(str.ljust, row, sizes)).rstrip() for row in rows] + return table, sizes + + +def is_installable_dir(path: str) -> bool: + """Is path is a directory containing pyproject.toml or setup.py? + + If pyproject.toml exists, this is a PEP 517 project. Otherwise we look for + a legacy setuptools layout by identifying setup.py. We don't check for the + setup.cfg because using it without setup.py is only available for PEP 517 + projects, which are already covered by the pyproject.toml check. + """ + if not os.path.isdir(path): + return False + if os.path.isfile(os.path.join(path, "pyproject.toml")): + return True + if os.path.isfile(os.path.join(path, "setup.py")): + return True + return False + + +def read_chunks( + file: BinaryIO, size: int = io.DEFAULT_BUFFER_SIZE +) -> Generator[bytes, None, None]: + """Yield pieces of data from a file-like object until EOF.""" + while True: + chunk = file.read(size) + if not chunk: + break + yield chunk + + +def normalize_path(path: str, resolve_symlinks: bool = True) -> str: + """ + Convert a path to its canonical, case-normalized, absolute version. + + """ + path = os.path.expanduser(path) + if resolve_symlinks: + path = os.path.realpath(path) + else: + path = os.path.abspath(path) + return os.path.normcase(path) + + +def splitext(path: str) -> Tuple[str, str]: + """Like os.path.splitext, but take off .tar too""" + base, ext = posixpath.splitext(path) + if base.lower().endswith(".tar"): + ext = base[-4:] + ext + base = base[:-4] + return base, ext + + +def renames(old: str, new: str) -> None: + """Like os.renames(), but handles renaming across devices.""" + # Implementation borrowed from os.renames(). + head, tail = os.path.split(new) + if head and tail and not os.path.exists(head): + os.makedirs(head) + + shutil.move(old, new) + + head, tail = os.path.split(old) + if head and tail: + try: + os.removedirs(head) + except OSError: + pass + + +def is_local(path: str) -> bool: + """ + Return True if path is within sys.prefix, if we're running in a virtualenv. + + If we're not in a virtualenv, all paths are considered "local." + + Caution: this function assumes the head of path has been normalized + with normalize_path. + """ + if not running_under_virtualenv(): + return True + return path.startswith(normalize_path(sys.prefix)) + + +def write_output(msg: Any, *args: Any) -> None: + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream: TextIO + + @classmethod + def from_stream(cls, orig_stream: TextIO) -> "StreamWrapper": + ret = cls() + ret.orig_stream = orig_stream + return ret + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # type ignore is because TextIOBase.encoding is writeable + @property + def encoding(self) -> str: # type: ignore + return self.orig_stream.encoding + + +@contextlib.contextmanager +def captured_output(stream_name: str) -> Generator[StreamWrapper, None, None]: + """Return a context manager used by captured_stdout/stdin/stderr + that temporarily replaces the sys stream *stream_name* with a StringIO. + + Taken from Lib/support/__init__.py in the CPython repo. + """ + orig_stdout = getattr(sys, stream_name) + setattr(sys, stream_name, StreamWrapper.from_stream(orig_stdout)) + try: + yield getattr(sys, stream_name) + finally: + setattr(sys, stream_name, orig_stdout) + + +def captured_stdout() -> ContextManager[StreamWrapper]: + """Capture the output of sys.stdout: + + with captured_stdout() as stdout: + print('hello') + self.assertEqual(stdout.getvalue(), 'hello\n') + + Taken from Lib/support/__init__.py in the CPython repo. + """ + return captured_output("stdout") + + +def captured_stderr() -> ContextManager[StreamWrapper]: + """ + See captured_stdout(). + """ + return captured_output("stderr") + + +# Simulates an enum +def enum(*sequential: Any, **named: Any) -> Type[Any]: + enums = dict(zip(sequential, range(len(sequential))), **named) + reverse = {value: key for key, value in enums.items()} + enums["reverse_mapping"] = reverse + return type("Enum", (), enums) + + +def build_netloc(host: str, port: Optional[int]) -> str: + """ + Build a netloc from a host-port pair + """ + if port is None: + return host + if ":" in host: + # Only wrap host with square brackets when it is IPv6 + host = f"[{host}]" + return f"{host}:{port}" + + +def build_url_from_netloc(netloc: str, scheme: str = "https") -> str: + """ + Build a full URL from a netloc. + """ + if netloc.count(":") >= 2 and "@" not in netloc and "[" not in netloc: + # It must be a bare IPv6 address, so wrap it with brackets. + netloc = f"[{netloc}]" + return f"{scheme}://{netloc}" + + +def parse_netloc(netloc: str) -> Tuple[Optional[str], Optional[int]]: + """ + Return the host-port pair from a netloc. + """ + url = build_url_from_netloc(netloc) + parsed = urllib.parse.urlparse(url) + return parsed.hostname, parsed.port + + +def split_auth_from_netloc(netloc: str) -> NetlocTuple: + """ + Parse out and remove the auth information from a netloc. + + Returns: (netloc, (username, password)). + """ + if "@" not in netloc: + return netloc, (None, None) + + # Split from the right because that's how urllib.parse.urlsplit() + # behaves if more than one @ is present (which can be checked using + # the password attribute of urlsplit()'s return value). + auth, netloc = netloc.rsplit("@", 1) + pw: Optional[str] = None + if ":" in auth: + # Split from the left because that's how urllib.parse.urlsplit() + # behaves if more than one : is present (which again can be checked + # using the password attribute of the return value) + user, pw = auth.split(":", 1) + else: + user, pw = auth, None + + user = urllib.parse.unquote(user) + if pw is not None: + pw = urllib.parse.unquote(pw) + + return netloc, (user, pw) + + +def redact_netloc(netloc: str) -> str: + """ + Replace the sensitive data in a netloc with "****", if it exists. + + For example: + - "user:pass@example.com" returns "user:****@example.com" + - "accesstoken@example.com" returns "****@example.com" + """ + netloc, (user, password) = split_auth_from_netloc(netloc) + if user is None: + return netloc + if password is None: + user = "****" + password = "" + else: + user = urllib.parse.quote(user) + password = ":****" + return f"{user}{password}@{netloc}" + + +def _transform_url( + url: str, transform_netloc: Callable[[str], Tuple[Any, ...]] +) -> Tuple[str, NetlocTuple]: + """Transform and replace netloc in a url. + + transform_netloc is a function taking the netloc and returning a + tuple. The first element of this tuple is the new netloc. The + entire tuple is returned. + + Returns a tuple containing the transformed url as item 0 and the + original tuple returned by transform_netloc as item 1. + """ + purl = urllib.parse.urlsplit(url) + netloc_tuple = transform_netloc(purl.netloc) + # stripped url + url_pieces = (purl.scheme, netloc_tuple[0], purl.path, purl.query, purl.fragment) + surl = urllib.parse.urlunsplit(url_pieces) + return surl, cast("NetlocTuple", netloc_tuple) + + +def _get_netloc(netloc: str) -> NetlocTuple: + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc: str) -> Tuple[str]: + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url( + url: str, +) -> Tuple[str, str, Tuple[Optional[str], Optional[str]]]: + """ + Parse a url into separate netloc, auth, and url with no auth. + + Returns: (url_without_auth, netloc, (username, password)) + """ + url_without_auth, (netloc, auth) = _transform_url(url, _get_netloc) + return url_without_auth, netloc, auth + + +def remove_auth_from_url(url: str) -> str: + """Return a copy of url with 'username:password@' removed.""" + # username/pass params are passed to subversion through flags + # and are not recognized in the url. + return _transform_url(url, _get_netloc)[0] + + +def redact_auth_from_url(url: str) -> str: + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +def redact_auth_from_requirement(req: Requirement) -> str: + """Replace the password in a given requirement url with ****.""" + if not req.url: + return str(req) + return str(req).replace(req.url, redact_auth_from_url(req.url)) + + +class HiddenText: + def __init__(self, secret: str, redacted: str) -> None: + self.secret = secret + self.redacted = redacted + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self.redacted + + # This is useful for testing. + def __eq__(self, other: Any) -> bool: + if type(self) != type(other): + return False + + # The string being used for redaction doesn't also have to match, + # just the raw, original string. + return self.secret == other.secret + + +def hide_value(value: str) -> HiddenText: + return HiddenText(value, redacted="****") + + +def hide_url(url: str) -> HiddenText: + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip: bool) -> None: + """Protection of pip.exe from modification on Windows + + On Windows, any operation modifying pip should be run as: + python -m pip ... + """ + pip_names = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", + ] + + # See https://github.com/pypa/pip/issues/1299 for more discussion + should_show_use_python_msg = ( + modifying_pip and WINDOWS and os.path.basename(sys.argv[0]) in pip_names + ) + + if should_show_use_python_msg: + new_command = [sys.executable, "-m", "pip"] + sys.argv[1:] + raise CommandError( + "To modify pip, please run the following command:\n{}".format( + " ".join(new_command) + ) + ) + + +def check_externally_managed() -> None: + """Check whether the current environment is externally managed. + + If the ``EXTERNALLY-MANAGED`` config file is found, the current environment + is considered externally managed, and an ExternallyManagedEnvironment is + raised. + """ + if running_under_virtualenv(): + return + marker = os.path.join(sysconfig.get_path("stdlib"), "EXTERNALLY-MANAGED") + if not os.path.isfile(marker): + return + raise ExternallyManagedEnvironment.from_config(marker) + + +def is_console_interactive() -> bool: + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path: str, blocksize: int = 1 << 20) -> Tuple[Any, int]: + """Return (hash, length) for path using hashlib.sha256()""" + + h = hashlib.sha256() + length = 0 + with open(path, "rb") as f: + for block in read_chunks(f, size=blocksize): + length += len(block) + h.update(block) + return h, length + + +def pairwise(iterable: Iterable[Any]) -> Iterator[Tuple[Any, Any]]: + """ + Return paired elements. + + For example: + s -> (s0, s1), (s2, s3), (s4, s5), ... + """ + iterable = iter(iterable) + return zip_longest(iterable, iterable) + + +def partition( + pred: Callable[[T], bool], + iterable: Iterable[T], +) -> Tuple[Iterable[T], Iterable[T]]: + """ + Use a predicate to partition entries into false entries and true entries, + like + + partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 + """ + t1, t2 = tee(iterable) + return filterfalse(pred, t1), filter(pred, t2) + + +class ConfiguredBuildBackendHookCaller(BuildBackendHookCaller): + def __init__( + self, + config_holder: Any, + source_dir: str, + build_backend: str, + backend_path: Optional[str] = None, + runner: Optional[Callable[..., None]] = None, + python_executable: Optional[str] = None, + ): + super().__init__( + source_dir, build_backend, backend_path, runner, python_executable + ) + self.config_holder = config_holder + + def build_wheel( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_wheel( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def build_sdist( + self, + sdist_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_sdist(sdist_directory, config_settings=cs) + + def build_editable( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_editable( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def get_requires_for_build_wheel( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_wheel(config_settings=cs) + + def get_requires_for_build_sdist( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_sdist(config_settings=cs) + + def get_requires_for_build_editable( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_editable(config_settings=cs) + + def prepare_metadata_for_build_wheel( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_wheel( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) + + def prepare_metadata_for_build_editable( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_editable( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/models.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/models.py new file mode 100644 index 00000000..b6bb21a8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/models.py @@ -0,0 +1,39 @@ +"""Utilities for defining models +""" + +import operator +from typing import Any, Callable, Type + + +class KeyBasedCompareMixin: + """Provides comparison capabilities that is based on a key""" + + __slots__ = ["_compare_key", "_defining_class"] + + def __init__(self, key: Any, defining_class: Type["KeyBasedCompareMixin"]) -> None: + self._compare_key = key + self._defining_class = defining_class + + def __hash__(self) -> int: + return hash(self._compare_key) + + def __lt__(self, other: Any) -> bool: + return self._compare(other, operator.__lt__) + + def __le__(self, other: Any) -> bool: + return self._compare(other, operator.__le__) + + def __gt__(self, other: Any) -> bool: + return self._compare(other, operator.__gt__) + + def __ge__(self, other: Any) -> bool: + return self._compare(other, operator.__ge__) + + def __eq__(self, other: Any) -> bool: + return self._compare(other, operator.__eq__) + + def _compare(self, other: Any, method: Callable[[Any, Any], bool]) -> bool: + if not isinstance(other, self._defining_class): + return NotImplemented + + return method(self._compare_key, other._compare_key) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 00000000..b9f6af4d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,57 @@ +import functools +import logging +import re +from typing import NewType, Optional, Tuple, cast + +from pip._vendor.packaging import specifiers, version +from pip._vendor.packaging.requirements import Requirement + +NormalizedExtra = NewType("NormalizedExtra", str) + +logger = logging.getLogger(__name__) + + +def check_requires_python( + requires_python: Optional[str], version_info: Tuple[int, ...] +) -> bool: + """ + Check if the given Python version matches a "Requires-Python" specifier. + + :param version_info: A 3-tuple of ints representing a Python + major-minor-micro version to check (e.g. `sys.version_info[:3]`). + + :return: `True` if the given Python version satisfies the requirement. + Otherwise, return `False`. + + :raises InvalidSpecifier: If `requires_python` has an invalid format. + """ + if requires_python is None: + # The package provides no information + return True + requires_python_specifier = specifiers.SpecifierSet(requires_python) + + python_version = version.parse(".".join(map(str, version_info))) + return python_version in requires_python_specifier + + +@functools.lru_cache(maxsize=512) +def get_requirement(req_string: str) -> Requirement: + """Construct a packaging.Requirement object with caching""" + # Parsing requirement strings is expensive, and is also expected to happen + # with a low diversity of different arguments (at least relative the number + # constructed). This method adds a cache to requirement object creation to + # minimize repeated parsing of the same string to construct equivalent + # Requirement objects. + return Requirement(req_string) + + +def safe_extra(extra: str) -> NormalizedExtra: + """Convert an arbitrary string to a standard 'extra' name + + Any runs of non-alphanumeric characters are replaced with a single '_', + and the result is always lowercased. + + This function is duplicated from ``pkg_resources``. Note that this is not + the same to either ``canonicalize_name`` or ``_egg_link_name``. + """ + return cast(NormalizedExtra, re.sub("[^A-Za-z0-9.-]+", "_", extra).lower()) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 00000000..96d1b246 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,146 @@ +import sys +import textwrap +from typing import List, Optional, Sequence + +# Shim to wrap setup.py invocation with setuptools +# Note that __file__ is handled via two {!r} *and* %r, to ensure that paths on +# Windows are correctly handled (it should be "C:\\Users" not "C:\Users"). +_SETUPTOOLS_SHIM = textwrap.dedent( + """ + exec(compile(''' + # This is -- a caller that pip uses to run setup.py + # + # - It imports setuptools before invoking setup.py, to enable projects that directly + # import from `distutils.core` to work with newer packaging standards. + # - It provides a clear error message when setuptools is not installed. + # - It sets `sys.argv[0]` to the underlying `setup.py`, when invoking `setup.py` so + # setuptools doesn't think the script is `-c`. This avoids the following warning: + # manifest_maker: standard file '-c' not found". + # - It generates a shim setup.py, for handling setup.cfg-only projects. + import os, sys, tokenize + + try: + import setuptools + except ImportError as error: + print( + "ERROR: Can not execute `setup.py` since setuptools is not available in " + "the build environment.", + file=sys.stderr, + ) + sys.exit(1) + + __file__ = %r + sys.argv[0] = __file__ + + if os.path.exists(__file__): + filename = __file__ + with tokenize.open(__file__) as f: + setup_py_code = f.read() + else: + filename = "" + setup_py_code = "from setuptools import setup; setup()" + + exec(compile(setup_py_code, filename, "exec")) + ''' % ({!r},), "", "exec")) + """ +).rstrip() + + +def make_setuptools_shim_args( + setup_py_path: str, + global_options: Optional[Sequence[str]] = None, + no_user_config: bool = False, + unbuffered_output: bool = False, +) -> List[str]: + """ + Get setuptools command arguments with shim wrapped setup file invocation. + + :param setup_py_path: The path to setup.py to be wrapped. + :param global_options: Additional global options. + :param no_user_config: If True, disables personal user configuration. + :param unbuffered_output: If True, adds the unbuffered switch to the + argument list. + """ + args = [sys.executable] + if unbuffered_output: + args += ["-u"] + args += ["-c", _SETUPTOOLS_SHIM.format(setup_py_path)] + if global_options: + args += global_options + if no_user_config: + args += ["--no-user-cfg"] + return args + + +def make_setuptools_bdist_wheel_args( + setup_py_path: str, + global_options: Sequence[str], + build_options: Sequence[str], + destination_dir: str, +) -> List[str]: + # NOTE: Eventually, we'd want to also -S to the flags here, when we're + # isolating. Currently, it breaks Python in virtualenvs, because it + # relies on site.py to find parts of the standard library outside the + # virtualenv. + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["bdist_wheel", "-d", destination_dir] + args += build_options + return args + + +def make_setuptools_clean_args( + setup_py_path: str, + global_options: Sequence[str], +) -> List[str]: + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["clean", "--all"] + return args + + +def make_setuptools_develop_args( + setup_py_path: str, + *, + global_options: Sequence[str], + no_user_config: bool, + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, +) -> List[str]: + assert not (use_user_site and prefix) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + ) + + args += ["develop", "--no-deps"] + + if prefix: + args += ["--prefix", prefix] + if home is not None: + args += ["--install-dir", home] + + if use_user_site: + args += ["--user", "--prefix="] + + return args + + +def make_setuptools_egg_info_args( + setup_py_path: str, + egg_info_dir: Optional[str], + no_user_config: bool, +) -> List[str]: + args = make_setuptools_shim_args(setup_py_path, no_user_config=no_user_config) + + args += ["egg_info"] + + if egg_info_dir: + args += ["--egg-base", egg_info_dir] + + return args diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 00000000..79580b05 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,260 @@ +import logging +import os +import shlex +import subprocess +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Iterable, + List, + Mapping, + Optional, + Union, +) + +from pip._vendor.rich.markup import escape + +from pip._internal.cli.spinners import SpinnerInterface, open_spinner +from pip._internal.exceptions import InstallationSubprocessError +from pip._internal.utils.logging import VERBOSE, subprocess_logger +from pip._internal.utils.misc import HiddenText + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + +CommandArgs = List[Union[str, HiddenText]] + + +def make_command(*args: Union[str, HiddenText, CommandArgs]) -> CommandArgs: + """ + Create a CommandArgs object. + """ + command_args: CommandArgs = [] + for arg in args: + # Check for list instead of CommandArgs since CommandArgs is + # only known during type-checking. + if isinstance(arg, list): + command_args.extend(arg) + else: + # Otherwise, arg is str or HiddenText. + command_args.append(arg) + + return command_args + + +def format_command_args(args: Union[List[str], CommandArgs]) -> str: + """ + Format command arguments for display. + """ + # For HiddenText arguments, display the redacted form by calling str(). + # Also, we don't apply str() to arguments that aren't HiddenText since + # this can trigger a UnicodeDecodeError in Python 2 if the argument + # has type unicode and includes a non-ascii character. (The type + # checker doesn't ensure the annotations are correct in all cases.) + return " ".join( + shlex.quote(str(arg)) if isinstance(arg, HiddenText) else shlex.quote(arg) + for arg in args + ) + + +def reveal_command_args(args: Union[List[str], CommandArgs]) -> List[str]: + """ + Return the arguments in their raw, unredacted form. + """ + return [arg.secret if isinstance(arg, HiddenText) else arg for arg in args] + + +def call_subprocess( + cmd: Union[List[str], CommandArgs], + show_stdout: bool = False, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + unset_environ: Optional[Iterable[str]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: Optional[bool] = True, + stdout_only: Optional[bool] = False, + *, + command_desc: str, +) -> str: + """ + Args: + show_stdout: if true, use INFO to log the subprocess's stderr and + stdout streams. Otherwise, use DEBUG. Defaults to False. + extra_ok_returncodes: an iterable of integer return codes that are + acceptable, in addition to 0. Defaults to None, which means []. + unset_environ: an iterable of environment variable names to unset + prior to calling subprocess.Popen(). + log_failed_cmd: if false, failed commands are not logged, only raised. + stdout_only: if true, return only stdout, else return both. When true, + logging of both stdout and stderr occurs when the subprocess has + terminated, else logging occurs as subprocess output is produced. + """ + if extra_ok_returncodes is None: + extra_ok_returncodes = [] + if unset_environ is None: + unset_environ = [] + # Most places in pip use show_stdout=False. What this means is-- + # + # - We connect the child's output (combined stderr and stdout) to a + # single pipe, which we read. + # - We log this output to stderr at DEBUG level as it is received. + # - If DEBUG logging isn't enabled (e.g. if --verbose logging wasn't + # requested), then we show a spinner so the user can still see the + # subprocess is in progress. + # - If the subprocess exits with an error, we log the output to stderr + # at ERROR level if it hasn't already been displayed to the console + # (e.g. if --verbose logging wasn't enabled). This way we don't log + # the output to the console twice. + # + # If show_stdout=True, then the above is still done, but with DEBUG + # replaced by INFO. + if show_stdout: + # Then log the subprocess output at INFO level. + log_subprocess: Callable[..., None] = subprocess_logger.info + used_level = logging.INFO + else: + # Then log the subprocess output using VERBOSE. This also ensures + # it will be logged to the log file (aka user_log), if enabled. + log_subprocess = subprocess_logger.verbose + used_level = VERBOSE + + # Whether the subprocess will be visible in the console. + showing_subprocess = subprocess_logger.getEffectiveLevel() <= used_level + + # Only use the spinner if we're not showing the subprocess output + # and we have a spinner. + use_spinner = not showing_subprocess and spinner is not None + + log_subprocess("Running command %s", command_desc) + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + for name in unset_environ: + env.pop(name, None) + try: + proc = subprocess.Popen( + # Convert HiddenText objects to the underlying str. + reveal_command_args(cmd), + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT if not stdout_only else subprocess.PIPE, + cwd=cwd, + env=env, + errors="backslashreplace", + ) + except Exception as exc: + if log_failed_cmd: + subprocess_logger.critical( + "Error %s while executing command %s", + exc, + command_desc, + ) + raise + all_output = [] + if not stdout_only: + assert proc.stdout + assert proc.stdin + proc.stdin.close() + # In this mode, stdout and stderr are in the same pipe. + while True: + line: str = proc.stdout.readline() + if not line: + break + line = line.rstrip() + all_output.append(line + "\n") + + # Show the line immediately. + log_subprocess(line) + # Update the spinner. + if use_spinner: + assert spinner + spinner.spin() + try: + proc.wait() + finally: + if proc.stdout: + proc.stdout.close() + output = "".join(all_output) + else: + # In this mode, stdout and stderr are in different pipes. + # We must use communicate() which is the only safe way to read both. + out, err = proc.communicate() + # log line by line to preserve pip log indenting + for out_line in out.splitlines(): + log_subprocess(out_line) + all_output.append(out) + for err_line in err.splitlines(): + log_subprocess(err_line) + all_output.append(err) + output = out + + proc_had_error = proc.returncode and proc.returncode not in extra_ok_returncodes + if use_spinner: + assert spinner + if proc_had_error: + spinner.finish("error") + else: + spinner.finish("done") + if proc_had_error: + if on_returncode == "raise": + error = InstallationSubprocessError( + command_description=command_desc, + exit_code=proc.returncode, + output_lines=all_output if not showing_subprocess else None, + ) + if log_failed_cmd: + subprocess_logger.error("%s", error, extra={"rich": True}) + subprocess_logger.verbose( + "[bold magenta]full command[/]: [blue]%s[/]", + escape(format_command_args(cmd)), + extra={"markup": True}, + ) + subprocess_logger.verbose( + "[bold magenta]cwd[/]: %s", + escape(cwd or "[inherit]"), + extra={"markup": True}, + ) + + raise error + elif on_returncode == "warn": + subprocess_logger.warning( + 'Command "%s" had error code %s in %s', + command_desc, + proc.returncode, + cwd, + ) + elif on_returncode == "ignore": + pass + else: + raise ValueError(f"Invalid value: on_returncode={on_returncode!r}") + return output + + +def runner_with_spinner_message(message: str) -> Callable[..., None]: + """Provide a subprocess_runner that shows a spinner message. + + Intended for use with for BuildBackendHookCaller. Thus, the runner has + an API that matches what's expected by BuildBackendHookCaller.subprocess_runner. + """ + + def runner( + cmd: List[str], + cwd: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + ) -> None: + with open_spinner(message) as spinner: + call_subprocess( + cmd, + command_desc=message, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 00000000..4eec5f37 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,296 @@ +import errno +import itertools +import logging +import os.path +import tempfile +import traceback +from contextlib import ExitStack, contextmanager +from pathlib import Path +from typing import ( + Any, + Callable, + Dict, + Generator, + List, + Optional, + TypeVar, + Union, +) + +from pip._internal.utils.misc import enum, rmtree + +logger = logging.getLogger(__name__) + +_T = TypeVar("_T", bound="TempDirectory") + + +# Kinds of temporary directories. Only needed for ones that are +# globally-managed. +tempdir_kinds = enum( + BUILD_ENV="build-env", + EPHEM_WHEEL_CACHE="ephem-wheel-cache", + REQ_BUILD="req-build", +) + + +_tempdir_manager: Optional[ExitStack] = None + + +@contextmanager +def global_tempdir_manager() -> Generator[None, None, None]: + global _tempdir_manager + with ExitStack() as stack: + old_tempdir_manager, _tempdir_manager = _tempdir_manager, stack + try: + yield + finally: + _tempdir_manager = old_tempdir_manager + + +class TempDirectoryTypeRegistry: + """Manages temp directory behavior""" + + def __init__(self) -> None: + self._should_delete: Dict[str, bool] = {} + + def set_delete(self, kind: str, value: bool) -> None: + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind: str) -> bool: + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry: Optional[TempDirectoryTypeRegistry] = None + + +@contextmanager +def tempdir_registry() -> Generator[TempDirectoryTypeRegistry, None, None]: + """Provides a scoped global tempdir registry that can be used to dictate + whether directories should be deleted. + """ + global _tempdir_registry + old_tempdir_registry = _tempdir_registry + _tempdir_registry = TempDirectoryTypeRegistry() + try: + yield _tempdir_registry + finally: + _tempdir_registry = old_tempdir_registry + + +class _Default: + pass + + +_default = _Default() + + +class TempDirectory: + """Helper class that owns and cleans up a temporary directory. + + This class can be used as a context manager or as an OO representation of a + temporary directory. + + Attributes: + path + Location to the created temporary directory + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + Methods: + cleanup() + Deletes the temporary directory + + When used as a context manager, if the delete attribute is True, on + exiting the context the temporary directory is deleted. + """ + + def __init__( + self, + path: Optional[str] = None, + delete: Union[bool, None, _Default] = _default, + kind: str = "temp", + globally_managed: bool = False, + ignore_cleanup_errors: bool = True, + ): + super().__init__() + + if delete is _default: + if path is not None: + # If we were given an explicit directory, resolve delete option + # now. + delete = False + else: + # Otherwise, we wait until cleanup and see what + # tempdir_registry says. + delete = None + + # The only time we specify path is in for editables where it + # is the value of the --src option. + if path is None: + path = self._create(kind) + + self._path = path + self._deleted = False + self.delete = delete + self.kind = kind + self.ignore_cleanup_errors = ignore_cleanup_errors + + if globally_managed: + assert _tempdir_manager is not None + _tempdir_manager.enter_context(self) + + @property + def path(self) -> str: + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self: _T) -> _T: + return self + + def __exit__(self, exc: Any, value: Any, tb: Any) -> None: + if self.delete is not None: + delete = self.delete + elif _tempdir_registry: + delete = _tempdir_registry.get_delete(self.kind) + else: + delete = True + + if delete: + self.cleanup() + + def _create(self, kind: str) -> str: + """Create a temporary directory and store its path in self.path""" + # We realpath here because some systems have their default tmpdir + # symlinked to another directory. This tends to confuse build + # scripts, so we canonicalize the path by traversing potential + # symlinks here. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + logger.debug("Created temporary directory: %s", path) + return path + + def cleanup(self) -> None: + """Remove the temporary directory created and reset state""" + self._deleted = True + if not os.path.exists(self._path): + return + + errors: List[BaseException] = [] + + def onerror( + func: Callable[..., Any], + path: Path, + exc_val: BaseException, + ) -> None: + """Log a warning for a `rmtree` error and continue""" + formatted_exc = "\n".join( + traceback.format_exception_only(type(exc_val), exc_val) + ) + formatted_exc = formatted_exc.rstrip() # remove trailing new line + if func in (os.unlink, os.remove, os.rmdir): + logger.debug( + "Failed to remove a temporary file '%s' due to %s.\n", + path, + formatted_exc, + ) + else: + logger.debug("%s failed with %s.", func.__qualname__, formatted_exc) + errors.append(exc_val) + + if self.ignore_cleanup_errors: + try: + # first try with tenacity; retrying to handle ephemeral errors + rmtree(self._path, ignore_errors=False) + except OSError: + # last pass ignore/log all errors + rmtree(self._path, onexc=onerror) + if errors: + logger.warning( + "Failed to remove contents in a temporary directory '%s'.\n" + "You can safely remove it manually.", + self._path, + ) + else: + rmtree(self._path) + + +class AdjacentTempDirectory(TempDirectory): + """Helper class that creates a temporary directory adjacent to a real one. + + Attributes: + original + The original directory to create a temp directory for. + path + After calling create() or entering, contains the full + path to the temporary directory. + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + """ + + # The characters that may be used to name the temp directory + # We always prepend a ~ and then rotate through these until + # a usable name is found. + # pkg_resources raises a different error for .dist-info folder + # with leading '-' and invalid metadata + LEADING_CHARS = "-~.=%0123456789" + + def __init__(self, original: str, delete: Optional[bool] = None) -> None: + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name: str) -> Generator[str, None, None]: + """Generates a series of temporary names. + + The algorithm replaces the leading characters in the name + with ones that are valid filesystem characters, but are not + valid package names (for both Python and pip definitions of + package). + """ + for i in range(1, len(name)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i - 1 + ): + new_name = "~" + "".join(candidate) + name[i:] + if new_name != name: + yield new_name + + # If we make it this far, we will have to make a longer name + for i in range(len(cls.LEADING_CHARS)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i + ): + new_name = "~" + "".join(candidate) + name + if new_name != name: + yield new_name + + def _create(self, kind: str) -> str: + root, name = os.path.split(self.original) + for candidate in self._generate_names(name): + path = os.path.join(root, candidate) + try: + os.mkdir(path) + except OSError as ex: + # Continue if the name exists already + if ex.errno != errno.EEXIST: + raise + else: + path = os.path.realpath(path) + break + else: + # Final fallback on the default behavior. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + + logger.debug("Created temporary directory: %s", path) + return path diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 00000000..78b5c13c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,257 @@ +"""Utilities related archives. +""" + +import logging +import os +import shutil +import stat +import tarfile +import zipfile +from typing import Iterable, List, Optional +from zipfile import ZipInfo + +from pip._internal.exceptions import InstallationError +from pip._internal.utils.filetypes import ( + BZ2_EXTENSIONS, + TAR_EXTENSIONS, + XZ_EXTENSIONS, + ZIP_EXTENSIONS, +) +from pip._internal.utils.misc import ensure_dir + +logger = logging.getLogger(__name__) + + +SUPPORTED_EXTENSIONS = ZIP_EXTENSIONS + TAR_EXTENSIONS + +try: + import bz2 # noqa + + SUPPORTED_EXTENSIONS += BZ2_EXTENSIONS +except ImportError: + logger.debug("bz2 module is not available") + +try: + # Only for Python 3.3+ + import lzma # noqa + + SUPPORTED_EXTENSIONS += XZ_EXTENSIONS +except ImportError: + logger.debug("lzma module is not available") + + +def current_umask() -> int: + """Get the current umask which involves having to set it temporarily.""" + mask = os.umask(0) + os.umask(mask) + return mask + + +def split_leading_dir(path: str) -> List[str]: + path = path.lstrip("/").lstrip("\\") + if "/" in path and ( + ("\\" in path and path.find("/") < path.find("\\")) or "\\" not in path + ): + return path.split("/", 1) + elif "\\" in path: + return path.split("\\", 1) + else: + return [path, ""] + + +def has_leading_dir(paths: Iterable[str]) -> bool: + """Returns true if all the paths have the same leading path name + (i.e., everything is in one subdirectory in an archive)""" + common_prefix = None + for path in paths: + prefix, rest = split_leading_dir(path) + if not prefix: + return False + elif common_prefix is None: + common_prefix = prefix + elif prefix != common_prefix: + return False + return True + + +def is_within_directory(directory: str, target: str) -> bool: + """ + Return true if the absolute path of target is within the directory + """ + abs_directory = os.path.abspath(directory) + abs_target = os.path.abspath(target) + + prefix = os.path.commonprefix([abs_directory, abs_target]) + return prefix == abs_directory + + +def set_extracted_file_to_default_mode_plus_executable(path: str) -> None: + """ + Make file present at path have execute for user/group/world + (chmod +x) is no-op on windows per python docs + """ + os.chmod(path, (0o777 & ~current_umask() | 0o111)) + + +def zip_item_is_executable(info: ZipInfo) -> bool: + mode = info.external_attr >> 16 + # if mode and regular file and any execute permissions for + # user/group/world? + return bool(mode and stat.S_ISREG(mode) and mode & 0o111) + + +def unzip_file(filename: str, location: str, flatten: bool = True) -> None: + """ + Unzip the file (with path `filename`) to the destination `location`. All + files are written based on system defaults and umask (i.e. permissions are + not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + zipfp = open(filename, "rb") + try: + zip = zipfile.ZipFile(zipfp, allowZip64=True) + leading = has_leading_dir(zip.namelist()) and flatten + for info in zip.infolist(): + name = info.filename + fn = name + if leading: + fn = split_leading_dir(name)[1] + fn = os.path.join(location, fn) + dir = os.path.dirname(fn) + if not is_within_directory(location, fn): + message = ( + "The zip file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, fn, location)) + if fn.endswith("/") or fn.endswith("\\"): + # A directory + ensure_dir(fn) + else: + ensure_dir(dir) + # Don't use read() to avoid allocating an arbitrarily large + # chunk of memory for the file's content + fp = zip.open(name) + try: + with open(fn, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + finally: + fp.close() + if zip_item_is_executable(info): + set_extracted_file_to_default_mode_plus_executable(fn) + finally: + zipfp.close() + + +def untar_file(filename: str, location: str) -> None: + """ + Untar the file (with path `filename`) to the destination `location`. + All files are written based on system defaults and umask (i.e. permissions + are not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + if filename.lower().endswith(".gz") or filename.lower().endswith(".tgz"): + mode = "r:gz" + elif filename.lower().endswith(BZ2_EXTENSIONS): + mode = "r:bz2" + elif filename.lower().endswith(XZ_EXTENSIONS): + mode = "r:xz" + elif filename.lower().endswith(".tar"): + mode = "r" + else: + logger.warning( + "Cannot determine compression type for file %s", + filename, + ) + mode = "r:*" + tar = tarfile.open(filename, mode, encoding="utf-8") + try: + leading = has_leading_dir([member.name for member in tar.getmembers()]) + for member in tar.getmembers(): + fn = member.name + if leading: + fn = split_leading_dir(fn)[1] + path = os.path.join(location, fn) + if not is_within_directory(location, path): + message = ( + "The tar file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, path, location)) + if member.isdir(): + ensure_dir(path) + elif member.issym(): + try: + tar._extract_member(member, path) + except Exception as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + else: + try: + fp = tar.extractfile(member) + except (KeyError, AttributeError) as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + ensure_dir(os.path.dirname(path)) + assert fp is not None + with open(path, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + fp.close() + # Update the timestamp (useful for cython compiled files) + tar.utime(member, path) + # member have any execute permissions for user/group/world? + if member.mode & 0o111: + set_extracted_file_to_default_mode_plus_executable(path) + finally: + tar.close() + + +def unpack_file( + filename: str, + location: str, + content_type: Optional[str] = None, +) -> None: + filename = os.path.realpath(filename) + if ( + content_type == "application/zip" + or filename.lower().endswith(ZIP_EXTENSIONS) + or zipfile.is_zipfile(filename) + ): + unzip_file(filename, location, flatten=not filename.endswith(".whl")) + elif ( + content_type == "application/x-gzip" + or tarfile.is_tarfile(filename) + or filename.lower().endswith(TAR_EXTENSIONS + BZ2_EXTENSIONS + XZ_EXTENSIONS) + ): + untar_file(filename, location) + else: + # FIXME: handle? + # FIXME: magic signatures? + logger.critical( + "Cannot unpack file %s (downloaded from %s, content-type: %s); " + "cannot detect archive format", + filename, + location, + content_type, + ) + raise InstallationError(f"Cannot determine archive format of {location}") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 00000000..6ba2e04f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,62 @@ +import os +import string +import urllib.parse +import urllib.request +from typing import Optional + +from .compat import WINDOWS + + +def get_url_scheme(url: str) -> Optional[str]: + if ":" not in url: + return None + return url.split(":", 1)[0].lower() + + +def path_to_url(path: str) -> str: + """ + Convert a path to a file: URL. The path will be made absolute and have + quoted path parts. + """ + path = os.path.normpath(os.path.abspath(path)) + url = urllib.parse.urljoin("file:", urllib.request.pathname2url(path)) + return url + + +def url_to_path(url: str) -> str: + """ + Convert a file: URL to a path. + """ + assert url.startswith( + "file:" + ), f"You can only turn file: urls into filenames (not {url!r})" + + _, netloc, path, _, _ = urllib.parse.urlsplit(url) + + if not netloc or netloc == "localhost": + # According to RFC 8089, same as empty authority. + netloc = "" + elif WINDOWS: + # If we have a UNC path, prepend UNC share notation. + netloc = "\\\\" + netloc + else: + raise ValueError( + f"non-local file URIs are not supported on this platform: {url!r}" + ) + + path = urllib.request.url2pathname(netloc + path) + + # On Windows, urlsplit parses the path as something like "/C:/Users/foo". + # This creates issues for path-related functions like io.open(), so we try + # to detect and strip the leading slash. + if ( + WINDOWS + and not netloc # Not UNC. + and len(path) >= 3 + and path[0] == "/" # Leading slash to strip. + and path[1] in string.ascii_letters # Drive letter. + and path[2:4] in (":", ":/") # Colon + end of string, or colon + absolute path. + ): + path = path[1:] + + return path diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 00000000..882e36f5 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,104 @@ +import logging +import os +import re +import site +import sys +from typing import List, Optional + +logger = logging.getLogger(__name__) +_INCLUDE_SYSTEM_SITE_PACKAGES_REGEX = re.compile( + r"include-system-site-packages\s*=\s*(?Ptrue|false)" +) + + +def _running_under_venv() -> bool: + """Checks if sys.base_prefix and sys.prefix match. + + This handles PEP 405 compliant virtual environments. + """ + return sys.prefix != getattr(sys, "base_prefix", sys.prefix) + + +def _running_under_legacy_virtualenv() -> bool: + """Checks if sys.real_prefix is set. + + This handles virtual environments created with pypa's virtualenv. + """ + # pypa/virtualenv case + return hasattr(sys, "real_prefix") + + +def running_under_virtualenv() -> bool: + """True if we're running inside a virtual environment, False otherwise.""" + return _running_under_venv() or _running_under_legacy_virtualenv() + + +def _get_pyvenv_cfg_lines() -> Optional[List[str]]: + """Reads {sys.prefix}/pyvenv.cfg and returns its contents as list of lines + + Returns None, if it could not read/access the file. + """ + pyvenv_cfg_file = os.path.join(sys.prefix, "pyvenv.cfg") + try: + # Although PEP 405 does not specify, the built-in venv module always + # writes with UTF-8. (pypa/pip#8717) + with open(pyvenv_cfg_file, encoding="utf-8") as f: + return f.read().splitlines() # avoids trailing newlines + except OSError: + return None + + +def _no_global_under_venv() -> bool: + """Check `{sys.prefix}/pyvenv.cfg` for system site-packages inclusion + + PEP 405 specifies that when system site-packages are not supposed to be + visible from a virtual environment, `pyvenv.cfg` must contain the following + line: + + include-system-site-packages = false + + Additionally, log a warning if accessing the file fails. + """ + cfg_lines = _get_pyvenv_cfg_lines() + if cfg_lines is None: + # We're not in a "sane" venv, so assume there is no system + # site-packages access (since that's PEP 405's default state). + logger.warning( + "Could not access 'pyvenv.cfg' despite a virtual environment " + "being active. Assuming global site-packages is not accessible " + "in this environment." + ) + return True + + for line in cfg_lines: + match = _INCLUDE_SYSTEM_SITE_PACKAGES_REGEX.match(line) + if match is not None and match.group("value") == "false": + return True + return False + + +def _no_global_under_legacy_virtualenv() -> bool: + """Check if "no-global-site-packages.txt" exists beside site.py + + This mirrors logic in pypa/virtualenv for determining whether system + site-packages are visible in the virtual environment. + """ + site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) + no_global_site_packages_file = os.path.join( + site_mod_dir, + "no-global-site-packages.txt", + ) + return os.path.exists(no_global_site_packages_file) + + +def virtualenv_no_global() -> bool: + """Returns a boolean, whether running in venv with no system site-packages.""" + # PEP 405 compliance needs to be checked first since virtualenv >=20 would + # return True for both checks, but is only able to use the PEP 405 config. + if _running_under_venv(): + return _no_global_under_venv() + + if _running_under_legacy_virtualenv(): + return _no_global_under_legacy_virtualenv() + + return False diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 00000000..3551f8f1 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,134 @@ +"""Support functions for working with wheel files. +""" + +import logging +from email.message import Message +from email.parser import Parser +from typing import Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import UnsupportedWheel + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +def parse_wheel(wheel_zip: ZipFile, name: str) -> Tuple[str, Message]: + """Extract information from the provided wheel, ensuring it meets basic + standards. + + Returns the name of the .dist-info directory and the parsed WHEEL metadata. + """ + try: + info_dir = wheel_dist_info_dir(wheel_zip, name) + metadata = wheel_metadata(wheel_zip, info_dir) + version = wheel_version(metadata) + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {str(e)}") + + check_compatibility(version, name) + + return info_dir, metadata + + +def wheel_dist_info_dir(source: ZipFile, name: str) -> str: + """Returns the name of the contained .dist-info directory. + + Raises AssertionError or UnsupportedWheel if not found, >1 found, or + it doesn't match the provided name. + """ + # Zip file path separators must be / + subdirs = {p.split("/", 1)[0] for p in source.namelist()} + + info_dirs = [s for s in subdirs if s.endswith(".dist-info")] + + if not info_dirs: + raise UnsupportedWheel(".dist-info directory not found") + + if len(info_dirs) > 1: + raise UnsupportedWheel( + "multiple .dist-info directories found: {}".format(", ".join(info_dirs)) + ) + + info_dir = info_dirs[0] + + info_dir_name = canonicalize_name(info_dir) + canonical_name = canonicalize_name(name) + if not info_dir_name.startswith(canonical_name): + raise UnsupportedWheel( + f".dist-info directory {info_dir!r} does not start with {canonical_name!r}" + ) + + return info_dir + + +def read_wheel_metadata_file(source: ZipFile, path: str) -> bytes: + try: + return source.read(path) + # BadZipFile for general corruption, KeyError for missing entry, + # and RuntimeError for password-protected files + except (BadZipFile, KeyError, RuntimeError) as e: + raise UnsupportedWheel(f"could not read {path!r} file: {e!r}") + + +def wheel_metadata(source: ZipFile, dist_info_dir: str) -> Message: + """Return the WHEEL metadata of an extracted wheel, if possible. + Otherwise, raise UnsupportedWheel. + """ + path = f"{dist_info_dir}/WHEEL" + # Zip file path separators must be / + wheel_contents = read_wheel_metadata_file(source, path) + + try: + wheel_text = wheel_contents.decode() + except UnicodeDecodeError as e: + raise UnsupportedWheel(f"error decoding {path!r}: {e!r}") + + # FeedParser (used by Parser) does not raise any exceptions. The returned + # message may have .defects populated, but for backwards-compatibility we + # currently ignore them. + return Parser().parsestr(wheel_text) + + +def wheel_version(wheel_data: Message) -> Tuple[int, ...]: + """Given WHEEL metadata, return the parsed Wheel-Version. + Otherwise, raise UnsupportedWheel. + """ + version_text = wheel_data["Wheel-Version"] + if version_text is None: + raise UnsupportedWheel("WHEEL is missing Wheel-Version") + + version = version_text.strip() + + try: + return tuple(map(int, version.split("."))) + except ValueError: + raise UnsupportedWheel(f"invalid Wheel-Version: {version!r}") + + +def check_compatibility(version: Tuple[int, ...], name: str) -> None: + """Raises errors or warns if called with an incompatible Wheel-Version. + + pip should refuse to install a Wheel-Version that's a major series + ahead of what it's compatible with (e.g 2.0 > 1.1); and warn when + installing a version only minor version ahead (e.g 1.2 > 1.1). + + version: a 2-tuple representing a Wheel-Version (Major, Minor) + name: name of wheel or package to raise exception about + + :raises UnsupportedWheel: when an incompatible Wheel-Version is given + """ + if version[0] > VERSION_COMPATIBLE[0]: + raise UnsupportedWheel( + "{}'s Wheel-Version ({}) is not compatible with this version " + "of pip".format(name, ".".join(map(str, version))) + ) + elif version > VERSION_COMPATIBLE: + logger.warning( + "Installing from a newer Wheel-Version (%s)", + ".".join(map(str, version)), + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 00000000..b6beddbe --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py @@ -0,0 +1,15 @@ +# Expose a limited set of classes and functions so callers outside of +# the vcs package don't need to import deeper than `pip._internal.vcs`. +# (The test directory may still need to import from a vcs sub-package.) +# Import all vcs modules to register each VCS in the VcsSupport object. +import pip._internal.vcs.bazaar +import pip._internal.vcs.git +import pip._internal.vcs.mercurial +import pip._internal.vcs.subversion # noqa: F401 +from pip._internal.vcs.versioncontrol import ( # noqa: F401 + RemoteNotFoundError, + RemoteNotValidError, + is_url, + make_vcs_requirement_url, + vcs, +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aba8fdbd5488c6012077967245ad304e24f4b423 GIT binary patch literal 582 zcmZWlJ!>055Z%4APO^dtAs7sHKqRD4p<5ESAsGD8#f4*1Tyv~W6KT=z?PYfFjPe^? zxbttwZ%O6$RJw8(5G3HrbB7WFda&;??=8DC^K)mX&j@etu4k74WA{z*7gV=c9g*C! z37c@u65eXC)^M#`tp>Vdq9iiiq-%Of&uk~#rl0gVTkv7{&^&fN?9?wWz*rCG)}Prj zpPV9E{LlO%wOX5za%qXW-ZOFzX_dJY;ajN?4CKB|LNbTX>b*i0ajJ3;m`fd#8IR?6 zDX|VIsdqQysq*#yrfmST5|z~T!Di^naRum<&FjHtx{flNd$bxunijVj>NFHJ)Ft}C zR>bV_M$D`MF_mLfpv4KexwnP*Y`^*|i7+^U3bZYnNe9QaLwg1i!1jYYBWGn*gA@7@ciJd6sN&E*uFpr*yYEeYC^NU2mlP2*zm*!y7G o4?f}xYLL@$uZVtyoby$m@xhWEEZOTNd-ErVc<`GM;d8q21ZuOmcK`qY literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ba1ef2d17ecada9465df20b7c6cf6844904ce985 GIT binary patch literal 5074 zcmb^#OKcm*b@t2UPozXrqAkUuKT5>J5|!F%5+ku4OL5{hksDhG3bqMDaYqv6C6}39 zN)|&QYGELBkTy2@v4XUydQ;#Y+?#u<(UXB*M96`Nt%C+=fg(57QqdrXw(sq7DcM$w z7U%+;_vX!;H#6@$!`}ykJ_6rB{ezj`1_}8ScHB>DA)CJg=%Dl~juXi;M@vvcBxeN**$Xt2 z(+h=cQH8!A=^0bcl$n;4Eaio=Idi5srCX76w4j@GTsKea<)Zo`V>+{Z=jfcXo?&&o zPMHBKkLpE}>6#_X<&2!WX@s^-0B*+N)#k5R4szeo4 zre3P-feBM0Xh*z`GT=-5Ku?P5rGC{%1FD|}Rap&8`PASgG2LIwd&k*2om6hA#!$YsY}U)8K6zD!NW16Lk*TsyA z2T{YAaYl_P7_~`=$T+5zoS~__MlFHSIZI~LEVE*+<%G6od1%r7HqlZL8eEl3^ROj; zyuuH$Pe_tu5g0LWPU5Q{re^d4O-*MfS)OXCF=|{e^-}7*K4s2l8BL7QIjZTU0xg<} zQN7FzntD}N%NiY;&~?p7o|K;?W@GCi#>sd8?tUl$!3N2;RAU)W0s6I5YQ zE{35mUKq6d67<2BRZmr{fb@^a&-q2!^t#eih?=SlJM_DhZRqY0*5|Iv4t>#6C9{w} zAN;BwcUO>sNYXc6=^34&xeNK?bV4tii2-B4NSHc6hNrD~hKAlQ=c)MxYQ`d8aYGh2 zXDKlWgZ$IVQq>k%{;6_+VZzF_oCHup(1^BU9tQ**lkDc0 zCUV#xy59Acb5^-uwQ<|T!nh?H^Lfz6C!8hZ=G7$6z~vlMBt@1){C=GqxEEBYtxcAK zUM1Mlqa*5BAQ@<$CDKp=&RKrew=#1>Sl@H>=AktO&UNBHoa-Mj^}jin>#QoT3UD&f z4W&h~D()JDk~@PXcIXGgig(NNqO`j{s}iiBxO(Ksj`?1gFU+<>8#dqi+|c`9W!s_0 z9tA0VB28H0WWK0EQh%F`z?dbM zOKR4nV92&nEuUd#nTeK~VUGb*Qr^wVmJF+v$|l2$ih(YNCU=egH1yj>ch-0g`MwVg z7`-#L(Ye3gxgSHMdp(d?rMIHDk2VF;bzqb5UA~$OULNS$@b}gIeamm$@jtO8llY;P z)2m}Q4zBlnz4me=5Z(y%)dPLY-(Ees7U;VZ82NLge??h6bi=1YtDz`qMym7C@s3RAwy&$iPPY_avZVKYYFP(iZ- z1lKMV)#X|gR0%j=1x|7IFszDh*c;pjG2m&}O?O4Gew#;?G2z;2z`s52V%6;w5;EHr zbeo#vIfB3Qq$+LWBKcrSBxZ*z<@;RHGu{etb_A$Nz7ln-WHNe44mM__^1US;IXeMuD&}8UtCA{J2Y=Pn78J-N{9{qxy zgvJuVZwyOBSr&KE672~OM7`C4-plOQ0y=Rew!`nX$*+MtC;k%dLZ3H8= zmsbXEOx(N(IUw8*IUww-iI4+gd#;_mdUicJaF2MriP~5r(sS+D)nh+;4$#=idqfH* zu5d^^arMN?lb=Qg8om9$IQG%8mF&mQuXfgZpSUvC=-Io`ldAWmZish!p1Rxr`0CO1 z{*gQJ5n%oCH~;Df5lsn%Z-oiE^8SaDL)(ETVAKCk2UaC?B}fSJxFx}rv#6h*u+9C& zKjCvL?J3|%3Oj6}0Bar}Tm}XQ#JY2B2{_t!hANT!bng(~0(Jw7FK9l}jXG-tqqQ@Q z_#=&YUn3lEdP(%)CXwuGMu3Fl8=(XB(1G>Pp_Oy>(BPUfXe-AOi`fFrJs6qT-xQ&_ zhObk;^5_fNe0IS|Kwc^rXu_PK3Ajny`%b8O@i8+|$iltiH0y>r?g8zq#J7NO|Jl00 zQ}L;qH#2!PL*FiEwaT8>2_GJs#raro?MqrXX74)LYbluw?mUyRe3?waev$wl$YfBS zGs19f%cJJuol&5c7yaCxWO)n-zyd^40P3Te&lM;Ch8(}e@CLz?~a5^4CuOJj|W=+aAI*`+g0UJ1!dFEyh??rQR!)Vpjn34j%I zb@Z1D_YmC_+_9z{kq$PZJxu}OzCi~*{elC>U$f!o-r%ML4#1jyHit(_u8cMbfYnh*BvP`)0a&xk=HR6m z$^dX9e)Hh3AFWQ z24=;kz;WCkNXH+^V4V#9g*^WmdHORl@^@b5_`eZonqlJWt@Uhp_tw38m!Dbp9$J#O gLD;PFgbOYS?*+aWsJ;FviQ23F3qiuYTL1t6 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..50c01d171e63c2f8483fa54d5231378fb002ecbf GIT binary patch literal 19043 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c195c28aed41a2bd456686746f0a3c04b432e9a GIT binary patch literal 7663 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 U$o9+#Ka+nd&tCeJbg|?A2N$dn9RL6T literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7167bc773fbf03374a8196dd42b65e246dec6a4d GIT binary patch literal 12535 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 F{4Z67!0iA4 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf0a5426ae50a7e653f46a98c8d9a1dcf296e4f9 GIT binary patch literal 29061 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 UFU03;A32jwOYpuxE(7!b0VL#G!T List[str]: + return ["-r", rev] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flag = "--quiet" + elif verbosity == 1: + flag = "" + else: + flag = f"-{'v'*verbosity}" + cmd_args = make_command( + "checkout", "--lightweight", flag, rev_options.to_args(), url, dest + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(make_command("switch", url), cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + output = self.run_command( + make_command("info"), show_stdout=False, stdout_only=True, cwd=dest + ) + if output.startswith("Standalone "): + # Older versions of pip used to create standalone branches. + # Convert the standalone branch to a checkout by calling "bzr bind". + cmd_args = make_command("bind", "-q", url) + self.run_command(cmd_args, cwd=dest) + + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing bzr+ from bzr+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "bzr+" + url + return url, rev, user_pass + + @classmethod + def get_remote_url(cls, location: str) -> str: + urls = cls.run_command( + ["info"], show_stdout=False, stdout_only=True, cwd=location + ) + for line in urls.splitlines(): + line = line.strip() + for x in ("checkout of branch: ", "parent branch: "): + if line.startswith(x): + repo = line.split(x)[1] + if cls._is_local_repository(repo): + return path_to_url(repo) + return repo + raise RemoteNotFoundError + + @classmethod + def get_revision(cls, location: str) -> str: + revision = cls.run_command( + ["revno"], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return revision.splitlines()[-1] + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 00000000..8c242cf8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,526 @@ +import logging +import os.path +import pathlib +import re +import urllib.parse +import urllib.request +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path, hide_url +from pip._internal.utils.subprocess import make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RemoteNotValidError, + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +urlsplit = urllib.parse.urlsplit +urlunsplit = urllib.parse.urlunsplit + + +logger = logging.getLogger(__name__) + + +GIT_VERSION_REGEX = re.compile( + r"^git version " # Prefix. + r"(\d+)" # Major. + r"\.(\d+)" # Dot, minor. + r"(?:\.(\d+))?" # Optional dot, patch. + r".*$" # Suffix, including any pre- and post-release segments we don't care about. +) + +HASH_REGEX = re.compile("^[a-fA-F0-9]{40}$") + +# SCP (Secure copy protocol) shorthand. e.g. 'git@example.com:foo/bar.git' +SCP_REGEX = re.compile( + r"""^ + # Optional user, e.g. 'git@' + (\w+@)? + # Server, e.g. 'github.com'. + ([^/:]+): + # The server-side path. e.g. 'user/project.git'. Must start with an + # alphanumeric character so as not to be confusable with a Windows paths + # like 'C:/foo/bar' or 'C:\foo\bar'. + (\w[^:]*) + $""", + re.VERBOSE, +) + + +def looks_like_hash(sha: str) -> bool: + return bool(HASH_REGEX.match(sha)) + + +class Git(VersionControl): + name = "git" + dirname = ".git" + repo_name = "clone" + schemes = ( + "git+http", + "git+https", + "git+ssh", + "git+git", + "git+file", + ) + # Prevent the user's environment variables from interfering with pip: + # https://github.com/pypa/pip/issues/1130 + unset_environ = ("GIT_DIR", "GIT_WORK_TREE") + default_arg_rev = "HEAD" + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [rev] + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + _, rev_options = self.get_url_rev_options(hide_url(url)) + if not rev_options.rev: + return False + if not self.is_commit_id_equal(dest, rev_options.rev): + # the current commit is different from rev, + # which means rev was something else than a commit hash + return False + # return False in the rare case rev is both a commit hash + # and a tag or a branch; we don't want to cache in that case + # because that branch/tag could point to something else in the future + is_tag_or_branch = bool(self.get_revision_sha(dest, rev_options.rev)[0]) + return not is_tag_or_branch + + def get_git_version(self) -> Tuple[int, ...]: + version = self.run_command( + ["version"], + command_desc="git version", + show_stdout=False, + stdout_only=True, + ) + match = GIT_VERSION_REGEX.match(version) + if not match: + logger.warning("Can't parse git version: %s", version) + return () + return (int(match.group(1)), int(match.group(2))) + + @classmethod + def get_current_branch(cls, location: str) -> Optional[str]: + """ + Return the current branch, or None if HEAD isn't at a branch + (e.g. detached HEAD). + """ + # git-symbolic-ref exits with empty stdout if "HEAD" is a detached + # HEAD rather than a symbolic ref. In addition, the -q causes the + # command to exit with status code 1 instead of 128 in this case + # and to suppress the message to stderr. + args = ["symbolic-ref", "-q", "HEAD"] + output = cls.run_command( + args, + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + ref = output.strip() + + if ref.startswith("refs/heads/"): + return ref[len("refs/heads/") :] + + return None + + @classmethod + def get_revision_sha(cls, dest: str, rev: str) -> Tuple[Optional[str], bool]: + """ + Return (sha_or_none, is_branch), where sha_or_none is a commit hash + if the revision names a remote branch or tag, otherwise None. + + Args: + dest: the repository directory. + rev: the revision name. + """ + # Pass rev to pre-filter the list. + output = cls.run_command( + ["show-ref", rev], + cwd=dest, + show_stdout=False, + stdout_only=True, + on_returncode="ignore", + ) + refs = {} + # NOTE: We do not use splitlines here since that would split on other + # unicode separators, which can be maliciously used to install a + # different revision. + for line in output.strip().split("\n"): + line = line.rstrip("\r") + if not line: + continue + try: + ref_sha, ref_name = line.split(" ", maxsplit=2) + except ValueError: + # Include the offending line to simplify troubleshooting if + # this error ever occurs. + raise ValueError(f"unexpected show-ref line: {line!r}") + + refs[ref_name] = ref_sha + + branch_ref = f"refs/remotes/origin/{rev}" + tag_ref = f"refs/tags/{rev}" + + sha = refs.get(branch_ref) + if sha is not None: + return (sha, True) + + sha = refs.get(tag_ref) + + return (sha, False) + + @classmethod + def _should_fetch(cls, dest: str, rev: str) -> bool: + """ + Return true if rev is a ref or is a commit that we don't have locally. + + Branches and tags are not considered in this method because they are + assumed to be always available locally (which is a normal outcome of + ``git clone`` and ``git fetch --tags``). + """ + if rev.startswith("refs/"): + # Always fetch remote refs. + return True + + if not looks_like_hash(rev): + # Git fetch would fail with abbreviated commits. + return False + + if cls.has_commit(dest, rev): + # Don't fetch if we have the commit locally. + return False + + return True + + @classmethod + def resolve_revision( + cls, dest: str, url: HiddenText, rev_options: RevOptions + ) -> RevOptions: + """ + Resolve a revision to a new RevOptions object with the SHA1 of the + branch, tag, or ref if found. + + Args: + rev_options: a RevOptions object. + """ + rev = rev_options.arg_rev + # The arg_rev property's implementation for Git ensures that the + # rev return value is always non-None. + assert rev is not None + + sha, is_branch = cls.get_revision_sha(dest, rev) + + if sha is not None: + rev_options = rev_options.make_new(sha) + rev_options.branch_name = rev if is_branch else None + + return rev_options + + # Do not show a warning for the common case of something that has + # the form of a Git commit hash. + if not looks_like_hash(rev): + logger.warning( + "Did not find branch or tag '%s', assuming revision or ref.", + rev, + ) + + if not cls._should_fetch(dest, rev): + return rev_options + + # fetch the requested revision + cls.run_command( + make_command("fetch", "-q", url, rev_options.to_args()), + cwd=dest, + ) + # Change the revision to the SHA of the ref we fetched + sha = cls.get_revision(dest, rev="FETCH_HEAD") + rev_options = rev_options.make_new(sha) + + return rev_options + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the current commit hash equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + if not name: + # Then avoid an unnecessary subprocess call. + return False + + return cls.get_revision(dest) == name + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info("Cloning %s%s to %s", url, rev_display, display_path(dest)) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + else: + flags = ("--verbose", "--progress") + if self.get_git_version() >= (2, 17): + # Git added support for partial clone in 2.17 + # https://git-scm.com/docs/partial-clone + # Speeds up cloning by functioning without a complete copy of repository + self.run_command( + make_command( + "clone", + "--filter=blob:none", + *flags, + url, + dest, + ) + ) + else: + self.run_command(make_command("clone", *flags, url, dest)) + + if rev_options.rev: + # Then a specific revision was requested. + rev_options = self.resolve_revision(dest, url, rev_options) + branch_name = getattr(rev_options, "branch_name", None) + logger.debug("Rev options %s, branch_name %s", rev_options, branch_name) + if branch_name is None: + # Only do a checkout if the current commit id doesn't match + # the requested revision. + if not self.is_commit_id_equal(dest, rev_options.rev): + cmd_args = make_command( + "checkout", + "-q", + rev_options.to_args(), + ) + self.run_command(cmd_args, cwd=dest) + elif self.get_current_branch(dest) != branch_name: + # Then a specific branch was requested, and that branch + # is not yet checked out. + track_branch = f"origin/{branch_name}" + cmd_args = [ + "checkout", + "-b", + branch_name, + "--track", + track_branch, + ] + self.run_command(cmd_args, cwd=dest) + else: + sha = self.get_revision(dest) + rev_options = rev_options.make_new(sha) + + logger.info("Resolved %s to commit %s", url, rev_options.rev) + + #: repo may contain submodules + self.update_submodules(dest) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command( + make_command("config", "remote.origin.url", url), + cwd=dest, + ) + cmd_args = make_command("checkout", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + self.update_submodules(dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + # First fetch changes from the default remote + if self.get_git_version() >= (1, 9): + # fetch tags in addition to everything else + self.run_command(["fetch", "-q", "--tags"], cwd=dest) + else: + self.run_command(["fetch", "-q"], cwd=dest) + # Then reset to wanted revision (maybe even origin/master) + rev_options = self.resolve_revision(dest, url, rev_options) + cmd_args = make_command("reset", "--hard", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + #: update submodules + self.update_submodules(dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return URL of the first remote encountered. + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + # We need to pass 1 for extra_ok_returncodes since the command + # exits with return code 1 if there are no matching lines. + stdout = cls.run_command( + ["config", "--get-regexp", r"remote\..*\.url"], + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + remotes = stdout.splitlines() + try: + found_remote = remotes[0] + except IndexError: + raise RemoteNotFoundError + + for remote in remotes: + if remote.startswith("remote.origin.url "): + found_remote = remote + break + url = found_remote.split(" ")[1] + return cls._git_remote_to_pip_url(url.strip()) + + @staticmethod + def _git_remote_to_pip_url(url: str) -> str: + """ + Convert a remote url from what git uses to what pip accepts. + + There are 3 legal forms **url** may take: + + 1. A fully qualified url: ssh://git@example.com/foo/bar.git + 2. A local project.git folder: /path/to/bare/repository.git + 3. SCP shorthand for form 1: git@example.com:foo/bar.git + + Form 1 is output as-is. Form 2 must be converted to URI and form 3 must + be converted to form 1. + + See the corresponding test test_git_remote_url_to_pip() for examples of + sample inputs/outputs. + """ + if re.match(r"\w+://", url): + # This is already valid. Pass it though as-is. + return url + if os.path.exists(url): + # A local bare remote (git clone --mirror). + # Needs a file:// prefix. + return pathlib.PurePath(url).as_uri() + scp_match = SCP_REGEX.match(url) + if scp_match: + # Add an ssh:// prefix and replace the ':' with a '/'. + return scp_match.expand(r"ssh://\1\2/\3") + # Otherwise, bail out. + raise RemoteNotValidError(url) + + @classmethod + def has_commit(cls, location: str, rev: str) -> bool: + """ + Check if rev is a commit that is available in the local repository. + """ + try: + cls.run_command( + ["rev-parse", "-q", "--verify", "sha^" + rev], + cwd=location, + log_failed_cmd=False, + ) + except InstallationError: + return False + else: + return True + + @classmethod + def get_revision(cls, location: str, rev: Optional[str] = None) -> str: + if rev is None: + rev = "HEAD" + current_rev = cls.run_command( + ["rev-parse", rev], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return current_rev.strip() + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + git_dir = cls.run_command( + ["rev-parse", "--git-dir"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if not os.path.isabs(git_dir): + git_dir = os.path.join(location, git_dir) + repo_root = os.path.abspath(os.path.join(git_dir, "..")) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Prefixes stub URLs like 'user@hostname:user/repo.git' with 'ssh://'. + That's required because although they use SSH they sometimes don't + work with a ssh:// scheme (e.g. GitHub). But we need a scheme for + parsing. Hence we remove it again afterwards and return it as a stub. + """ + # Works around an apparent Git bug + # (see https://article.gmane.org/gmane.comp.version-control.git/146500) + scheme, netloc, path, query, fragment = urlsplit(url) + if scheme.endswith("file"): + initial_slashes = path[: -len(path.lstrip("/"))] + newpath = initial_slashes + urllib.request.url2pathname(path).replace( + "\\", "/" + ).lstrip("/") + after_plus = scheme.find("+") + 1 + url = scheme[:after_plus] + urlunsplit( + (scheme[after_plus:], netloc, newpath, query, fragment), + ) + + if "://" not in url: + assert "file:" not in url + url = url.replace("git+", "git+ssh://") + url, rev, user_pass = super().get_url_rev_and_auth(url) + url = url.replace("ssh://", "") + else: + url, rev, user_pass = super().get_url_rev_and_auth(url) + + return url, rev, user_pass + + @classmethod + def update_submodules(cls, location: str) -> None: + if not os.path.exists(os.path.join(location, ".gitmodules")): + return + cls.run_command( + ["submodule", "update", "--init", "--recursive", "-q"], + cwd=location, + ) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["rev-parse", "--show-toplevel"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under git control " + "because git is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + @staticmethod + def should_add_vcs_url_prefix(repo_url: str) -> bool: + """In either https or ssh form, requirements must be prefixed with git+.""" + return True + + +vcs.register(Git) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 00000000..c183d41d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,163 @@ +import configparser +import logging +import os +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Mercurial(VersionControl): + name = "hg" + dirname = ".hg" + repo_name = "clone" + schemes = ( + "hg+file", + "hg+http", + "hg+https", + "hg+ssh", + "hg+static-http", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [f"--rev={rev}"] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Cloning hg %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + elif verbosity == 2: + flags = ("--verbose",) + else: + flags = ("--verbose", "--debug") + self.run_command(make_command("clone", "--noupdate", *flags, url, dest)) + self.run_command( + make_command("update", *flags, rev_options.to_args()), + cwd=dest, + ) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + repo_config = os.path.join(dest, self.dirname, "hgrc") + config = configparser.RawConfigParser() + try: + config.read(repo_config) + config.set("paths", "default", url.secret) + with open(repo_config, "w") as config_file: + config.write(config_file) + except (OSError, configparser.NoSectionError) as exc: + logger.warning("Could not switch Mercurial repository to %s: %s", url, exc) + else: + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(["pull", "-q"], cwd=dest) + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + url = cls.run_command( + ["showconfig", "paths.default"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if cls._is_local_repository(url): + url = path_to_url(url) + return url.strip() + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the repository-local changeset revision number, as an integer. + """ + current_revision = cls.run_command( + ["parents", "--template={rev}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_revision + + @classmethod + def get_requirement_revision(cls, location: str) -> str: + """ + Return the changeset identification hash, as a 40-character + hexadecimal string + """ + current_rev_hash = cls.run_command( + ["parents", "--template={node}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_rev_hash + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + repo_root = cls.run_command( + ["root"], show_stdout=False, stdout_only=True, cwd=location + ).strip() + if not os.path.isabs(repo_root): + repo_root = os.path.abspath(os.path.join(location, repo_root)) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["root"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under hg control " + "because hg is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + +vcs.register(Mercurial) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 00000000..16d93a67 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,324 @@ +import logging +import os +import re +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import ( + HiddenText, + display_path, + is_console_interactive, + is_installable_dir, + split_auth_from_netloc, +) +from pip._internal.utils.subprocess import CommandArgs, make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + +_svn_xml_url_re = re.compile('url="([^"]+)"') +_svn_rev_re = re.compile(r'committed-rev="(\d+)"') +_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') +_svn_info_xml_url_re = re.compile(r"(.*)") + + +class Subversion(VersionControl): + name = "svn" + dirname = ".svn" + repo_name = "checkout" + schemes = ("svn+ssh", "svn+http", "svn+https", "svn+svn", "svn+file") + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + return True + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the maximum revision for all files under a given location + """ + # Note: taken from setuptools.command.egg_info + revision = 0 + + for base, dirs, _ in os.walk(location): + if cls.dirname not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove(cls.dirname) + entries_fn = os.path.join(base, cls.dirname, "entries") + if not os.path.exists(entries_fn): + # FIXME: should we warn? + continue + + dirurl, localrev = cls._get_svn_url_rev(base) + + if base == location: + assert dirurl is not None + base = dirurl + "/" # save the root url + elif not dirurl or not dirurl.startswith(base): + dirs[:] = [] + continue # not part of the same svn tree, skip it + revision = max(revision, localrev) + return str(revision) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + This override allows the auth information to be passed to svn via the + --username and --password options instead of via the URL. + """ + if scheme == "ssh": + # The --username and --password options can't be used for + # svn+ssh URLs, so keep the auth information in the URL. + return super().get_netloc_and_auth(netloc, scheme) + + return split_auth_from_netloc(netloc) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing svn+ from svn+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "svn+" + url + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + extra_args: CommandArgs = [] + if username: + extra_args += ["--username", username] + if password: + extra_args += ["--password", password] + + return extra_args + + @classmethod + def get_remote_url(cls, location: str) -> str: + # In cases where the source is in a subdirectory, we have to look up in + # the location until we find a valid project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + raise RemoteNotFoundError + + url, _rev = cls._get_svn_url_rev(location) + if url is None: + raise RemoteNotFoundError + + return url + + @classmethod + def _get_svn_url_rev(cls, location: str) -> Tuple[Optional[str], int]: + from pip._internal.exceptions import InstallationError + + entries_path = os.path.join(location, cls.dirname, "entries") + if os.path.exists(entries_path): + with open(entries_path) as f: + data = f.read() + else: # subversion >= 1.7 does not have the 'entries' file + data = "" + + url = None + if data.startswith("8") or data.startswith("9") or data.startswith("10"): + entries = list(map(str.splitlines, data.split("\n\x0c\n"))) + del entries[0][0] # get rid of the '8' + url = entries[0][3] + revs = [int(d[9]) for d in entries if len(d) > 9 and d[9]] + [0] + elif data.startswith("= 1.7 + # Note that using get_remote_call_options is not necessary here + # because `svn info` is being run against a local directory. + # We don't need to worry about making sure interactive mode + # is being used to prompt for passwords, because passwords + # are only potentially needed for remote server requests. + xml = cls.run_command( + ["info", "--xml", location], + show_stdout=False, + stdout_only=True, + ) + match = _svn_info_xml_url_re.search(xml) + assert match is not None + url = match.group(1) + revs = [int(m.group(1)) for m in _svn_info_xml_rev_re.finditer(xml)] + except InstallationError: + url, revs = None, [] + + if revs: + rev = max(revs) + else: + rev = 0 + + return url, rev + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive: Optional[bool] = None) -> None: + if use_interactive is None: + use_interactive = is_console_interactive() + self.use_interactive = use_interactive + + # This member is used to cache the fetched version of the current + # ``svn`` client. + # Special value definitions: + # None: Not evaluated yet. + # Empty tuple: Could not parse version. + self._vcs_version: Optional[Tuple[int, ...]] = None + + super().__init__() + + def call_vcs_version(self) -> Tuple[int, ...]: + """Query the version of the currently installed Subversion client. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + # Example versions: + # svn, version 1.10.3 (r1842928) + # compiled Feb 25 2019, 14:20:39 on x86_64-apple-darwin17.0.0 + # svn, version 1.7.14 (r1542130) + # compiled Mar 28 2018, 08:49:13 on x86_64-pc-linux-gnu + # svn, version 1.12.0-SlikSvn (SlikSvn/1.12.0) + # compiled May 28 2019, 13:44:56 on x86_64-microsoft-windows6.2 + version_prefix = "svn, version " + version = self.run_command(["--version"], show_stdout=False, stdout_only=True) + if not version.startswith(version_prefix): + return () + + version = version[len(version_prefix) :].split()[0] + version_list = version.partition("-")[0].split(".") + try: + parsed_version = tuple(map(int, version_list)) + except ValueError: + return () + + return parsed_version + + def get_vcs_version(self) -> Tuple[int, ...]: + """Return the version of the currently installed Subversion client. + + If the version of the Subversion client has already been queried, + a cached value will be used. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + if self._vcs_version is not None: + # Use cached version, if available. + # If parsing the version failed previously (empty tuple), + # do not attempt to parse it again. + return self._vcs_version + + vcs_version = self.call_vcs_version() + self._vcs_version = vcs_version + return vcs_version + + def get_remote_call_options(self) -> CommandArgs: + """Return options to be used on calls to Subversion that contact the server. + + These options are applicable for the following ``svn`` subcommands used + in this class. + + - checkout + - switch + - update + + :return: A list of command line arguments to pass to ``svn``. + """ + if not self.use_interactive: + # --non-interactive switch is available since Subversion 0.14.4. + # Subversion < 1.8 runs in interactive mode by default. + return ["--non-interactive"] + + svn_version = self.get_vcs_version() + # By default, Subversion >= 1.8 runs in non-interactive mode if + # stdin is not a TTY. Since that is how pip invokes SVN, in + # call_subprocess(), pip must pass --force-interactive to ensure + # the user can be prompted for a password, if required. + # SVN added the --force-interactive option in SVN 1.8. Since + # e.g. RHEL/CentOS 7, which is supported until 2024, ships with + # SVN 1.7, pip should continue to support SVN 1.7. Therefore, pip + # can't safely add the option if the SVN version is < 1.8 (or unknown). + if svn_version >= (1, 8): + return ["--force-interactive"] + + return [] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flag = "--quiet" + else: + flag = "" + cmd_args = make_command( + "checkout", + flag, + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "switch", + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "update", + self.get_remote_call_options(), + rev_options.to_args(), + dest, + ) + self.run_command(cmd_args) + + +vcs.register(Subversion) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 00000000..46ca2799 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,705 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Iterable, + Iterator, + List, + Mapping, + Optional, + Tuple, + Type, + Union, +) + +from pip._internal.cli.spinners import SpinnerInterface +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import ( + HiddenText, + ask_path_exists, + backup_dir, + display_path, + hide_url, + hide_value, + is_installable_dir, + rmtree, +) +from pip._internal.utils.subprocess import ( + CommandArgs, + call_subprocess, + format_command_args, + make_command, +) +from pip._internal.utils.urls import get_url_scheme + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + + +__all__ = ["vcs"] + + +logger = logging.getLogger(__name__) + +AuthInfo = Tuple[Optional[str], Optional[str]] + + +def is_url(name: str) -> bool: + """ + Return true if the name looks like a URL. + """ + scheme = get_url_scheme(name) + if scheme is None: + return False + return scheme in ["http", "https", "file", "ftp"] + vcs.all_schemes + + +def make_vcs_requirement_url( + repo_url: str, rev: str, project_name: str, subdir: Optional[str] = None +) -> str: + """ + Return the URL for a VCS requirement. + + Args: + repo_url: the remote VCS url, with any needed VCS prefix (e.g. "git+"). + project_name: the (unescaped) project name. + """ + egg_project_name = project_name.replace("-", "_") + req = f"{repo_url}@{rev}#egg={egg_project_name}" + if subdir: + req += f"&subdirectory={subdir}" + + return req + + +def find_path_to_project_root_from_repo_root( + location: str, repo_root: str +) -> Optional[str]: + """ + Find the the Python project's root by searching up the filesystem from + `location`. Return the path to project root relative to `repo_root`. + Return None if the project root is `repo_root`, or cannot be found. + """ + # find project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find a Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + return None + + if os.path.samefile(repo_root, location): + return None + + return os.path.relpath(location, repo_root) + + +class RemoteNotFoundError(Exception): + pass + + +class RemoteNotValidError(Exception): + def __init__(self, url: str): + super().__init__(url) + self.url = url + + +class RevOptions: + + """ + Encapsulates a VCS-specific revision to install, along with any VCS + install options. + + Instances of this class should be treated as if immutable. + """ + + def __init__( + self, + vc_class: Type["VersionControl"], + rev: Optional[str] = None, + extra_args: Optional[CommandArgs] = None, + ) -> None: + """ + Args: + vc_class: a VersionControl subclass. + rev: the name of the revision to install. + extra_args: a list of extra options. + """ + if extra_args is None: + extra_args = [] + + self.extra_args = extra_args + self.rev = rev + self.vc_class = vc_class + self.branch_name: Optional[str] = None + + def __repr__(self) -> str: + return f"" + + @property + def arg_rev(self) -> Optional[str]: + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self) -> CommandArgs: + """ + Return the VCS-specific command arguments. + """ + args: CommandArgs = [] + rev = self.arg_rev + if rev is not None: + args += self.vc_class.get_base_rev_args(rev) + args += self.extra_args + + return args + + def to_display(self) -> str: + if not self.rev: + return "" + + return f" (to revision {self.rev})" + + def make_new(self, rev: str) -> "RevOptions": + """ + Make a copy of the current instance, but with a new rev. + + Args: + rev: the name of the revision for the new object. + """ + return self.vc_class.make_rev_options(rev, extra_args=self.extra_args) + + +class VcsSupport: + _registry: Dict[str, "VersionControl"] = {} + schemes = ["ssh", "git", "hg", "bzr", "sftp", "svn"] + + def __init__(self) -> None: + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self) -> Iterator[str]: + return self._registry.__iter__() + + @property + def backends(self) -> List["VersionControl"]: + return list(self._registry.values()) + + @property + def dirnames(self) -> List[str]: + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self) -> List[str]: + schemes: List[str] = [] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls: Type["VersionControl"]) -> None: + if not hasattr(cls, "name"): + logger.warning("Cannot register VCS %s", cls.__name__) + return + if cls.name not in self._registry: + self._registry[cls.name] = cls() + logger.debug("Registered VCS backend: %s", cls.name) + + def unregister(self, name: str) -> None: + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object if a repository of that type is found + at the given directory. + """ + vcs_backends = {} + for vcs_backend in self._registry.values(): + repo_path = vcs_backend.get_repository_root(location) + if not repo_path: + continue + logger.debug("Determine that %s uses VCS: %s", location, vcs_backend.name) + vcs_backends[repo_path] = vcs_backend + + if not vcs_backends: + return None + + # Choose the VCS in the inner-most directory. Since all repository + # roots found here would be either `location` or one of its + # parents, the longest path should have the most path components, + # i.e. the backend representing the inner-most repository. + inner_most_repo_path = max(vcs_backends, key=len) + return vcs_backends[inner_most_repo_path] + + def get_backend_for_scheme(self, scheme: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + for vcs_backend in self._registry.values(): + if scheme in vcs_backend.schemes: + return vcs_backend + return None + + def get_backend(self, name: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + name = name.lower() + return self._registry.get(name) + + +vcs = VcsSupport() + + +class VersionControl: + name = "" + dirname = "" + repo_name = "" + # List of supported schemes for this Version Control + schemes: Tuple[str, ...] = () + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ: Tuple[str, ...] = () + default_arg_rev: Optional[str] = None + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + """ + Return whether the vcs prefix (e.g. "git+") should be added to a + repository's remote url when used in a requirement. + """ + return not remote_url.lower().startswith(f"{cls.name}:") + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + return None + + @classmethod + def get_requirement_revision(cls, repo_dir: str) -> str: + """ + Return the revision string that should be used in a requirement. + """ + return cls.get_revision(repo_dir) + + @classmethod + def get_src_requirement(cls, repo_dir: str, project_name: str) -> str: + """ + Return the requirement string to use to redownload the files + currently at the given repository directory. + + Args: + project_name: the (unescaped) project name. + + The return value has a form similar to the following: + + {repository_url}@{revision}#egg={project_name} + """ + repo_url = cls.get_remote_url(repo_dir) + + if cls.should_add_vcs_url_prefix(repo_url): + repo_url = f"{cls.name}+{repo_url}" + + revision = cls.get_requirement_revision(repo_dir) + subdir = cls.get_subdirectory(repo_dir) + req = make_vcs_requirement_url(repo_url, revision, project_name, subdir=subdir) + + return req + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + """ + Return the base revision arguments for a vcs command. + + Args: + rev: the name of a revision to install. Cannot be None. + """ + raise NotImplementedError + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + """ + Return true if the commit hash checked out at dest matches + the revision in url. + + Always return False, if the VCS does not support immutable commit + hashes. + + This method does not check if there are local uncommitted changes + in dest after checkout, as pip currently has no use case for that. + """ + return False + + @classmethod + def make_rev_options( + cls, rev: Optional[str] = None, extra_args: Optional[CommandArgs] = None + ) -> RevOptions: + """ + Return a RevOptions object. + + Args: + rev: the name of a revision to install. + extra_args: a list of extra options. + """ + return RevOptions(cls, rev, extra_args=extra_args) + + @classmethod + def _is_local_repository(cls, repo: str) -> bool: + """ + posix absolute paths start with os.path.sep, + win32 ones start with drive (like c:\\folder) + """ + drive, tail = os.path.splitdrive(repo) + return repo.startswith(os.path.sep) or bool(drive) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + Parse the repository URL's netloc, and return the new netloc to use + along with auth information. + + Args: + netloc: the original repository URL netloc. + scheme: the repository URL's scheme without the vcs prefix. + + This is mainly for the Subversion class to override, so that auth + information can be provided via the --username and --password options + instead of through the URL. For other subclasses like Git without + such an option, auth information must stay in the URL. + + Returns: (netloc, (username, password)). + """ + return netloc, (None, None) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Parse the repository URL to use, and return the URL, revision, + and auth info to use. + + Returns: (url, rev, (username, password)). + """ + scheme, netloc, path, query, frag = urllib.parse.urlsplit(url) + if "+" not in scheme: + raise ValueError( + f"Sorry, {url!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp" + ) + # Remove the vcs prefix. + scheme = scheme.split("+", 1)[1] + netloc, user_pass = cls.get_netloc_and_auth(netloc, scheme) + rev = None + if "@" in path: + path, rev = path.rsplit("@", 1) + if not rev: + raise InstallationError( + f"The URL {url!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL." + ) + url = urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url: HiddenText) -> Tuple[HiddenText, RevOptions]: + """ + Return the URL and RevOptions object to use in obtain(), + as a tuple (url, rev_options). + """ + secret_url, rev, user_pass = self.get_url_rev_and_auth(url.secret) + username, secret_password = user_pass + password: Optional[HiddenText] = None + if secret_password is not None: + password = hide_value(secret_password) + extra_args = self.make_rev_args(username, password) + rev_options = self.make_rev_options(rev, extra_args=extra_args) + + return hide_url(secret_url), rev_options + + @staticmethod + def normalize_url(url: str) -> str: + """ + Normalize a URL for comparison by unquoting it and removing any + trailing slash. + """ + return urllib.parse.unquote(url).rstrip("/") + + @classmethod + def compare_urls(cls, url1: str, url2: str) -> bool: + """ + Compare two repo URLs for identity, ignoring incidental differences. + """ + return cls.normalize_url(url1) == cls.normalize_url(url2) + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + """ + Fetch a revision from a repository, in the case that this is the + first fetch from the repository. + + Args: + dest: the directory to fetch the repository to. + rev_options: a RevOptions object. + verbosity: verbosity level. + """ + raise NotImplementedError + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Update an already-existing repo to the given ``rev_options``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the id of the current commit equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + raise NotImplementedError + + def obtain(self, dest: str, url: HiddenText, verbosity: int) -> None: + """ + Install or update in editable mode the package represented by this + VersionControl object. + + :param dest: the repository directory in which to install or update. + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + rev_display = rev_options.to_display() + if self.is_repository_directory(dest): + existing_url = self.get_remote_url(dest) + if self.compare_urls(existing_url, url.secret): + logger.debug( + "%s in %s exists, and has correct URL (%s)", + self.repo_name.title(), + display_path(dest), + url, + ) + if not self.is_commit_id_equal(dest, rev_options.rev): + logger.info( + "Updating %s %s%s", + display_path(dest), + self.repo_name, + rev_display, + ) + self.update(dest, url, rev_options) + else: + logger.info("Skipping because already up-to-date.") + return + + logger.warning( + "%s %s in %s exists with URL %s", + self.name, + self.repo_name, + display_path(dest), + existing_url, + ) + prompt = ("(s)witch, (i)gnore, (w)ipe, (b)ackup ", ("s", "i", "w", "b")) + else: + logger.warning( + "Directory %s already exists, and is not a %s %s.", + dest, + self.name, + self.repo_name, + ) + # https://github.com/python/mypy/issues/1174 + prompt = ("(i)gnore, (w)ipe, (b)ackup ", ("i", "w", "b")) # type: ignore + + logger.warning( + "The plan is to install the %s repository %s", + self.name, + url, + ) + response = ask_path_exists(f"What to do? {prompt[0]}", prompt[1]) + + if response == "a": + sys.exit(-1) + + if response == "w": + logger.warning("Deleting %s", display_path(dest)) + rmtree(dest) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + if response == "b": + dest_dir = backup_dir(dest) + logger.warning("Backing up %s to %s", display_path(dest), dest_dir) + shutil.move(dest, dest_dir) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + # Do nothing if the response is "i". + if response == "s": + logger.info( + "Switching %s %s to %s%s", + self.repo_name, + display_path(dest), + url, + rev_display, + ) + self.switch(dest, url, rev_options) + + def unpack(self, location: str, url: HiddenText, verbosity: int) -> None: + """ + Clean up current location and download the url repository + (and vcs infos) into location + + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url, verbosity=verbosity) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return the url used at location + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + raise NotImplementedError + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd: Union[List[str], CommandArgs], + show_stdout: bool = True, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + command_desc: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: bool = True, + stdout_only: bool = False, + ) -> str: + """ + Run a VCS subcommand + This is simply a wrapper around call_subprocess that adds the VCS + command name, and checks that the VCS is available + """ + cmd = make_command(cls.name, *cmd) + if command_desc is None: + command_desc = format_command_args(cmd) + try: + return call_subprocess( + cmd, + show_stdout, + cwd, + on_returncode=on_returncode, + extra_ok_returncodes=extra_ok_returncodes, + command_desc=command_desc, + extra_environ=extra_environ, + unset_environ=cls.unset_environ, + spinner=spinner, + log_failed_cmd=log_failed_cmd, + stdout_only=stdout_only, + ) + except FileNotFoundError: + # errno.ENOENT = no such file or directory + # In other words, the VCS executable isn't available + raise BadCommand( + f"Cannot find command {cls.name!r} - do you have " + f"{cls.name!r} installed and in your PATH?" + ) + except PermissionError: + # errno.EACCES = Permission denied + # This error occurs, for instance, when the command is installed + # only for another user. So, the current user don't have + # permission to call the other user command. + raise BadCommand( + f"No permission to execute {cls.name!r} - install it " + f"locally, globally (ask admin), or check your PATH. " + f"See possible solutions at " + f"https://pip.pypa.io/en/latest/reference/pip_freeze/" + f"#fixing-permission-denied." + ) + + @classmethod + def is_repository_directory(cls, path: str) -> bool: + """ + Return whether a directory path is a repository directory. + """ + logger.debug("Checking in %s for %s (%s)...", path, cls.dirname, cls.name) + return os.path.exists(os.path.join(path, cls.dirname)) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + """ + Return the "root" (top-level) directory controlled by the vcs, + or `None` if the directory is not in any. + + It is meant to be overridden to implement smarter detection + mechanisms for specific vcs. + + This can do more than is_repository_directory() alone. For + example, the Git override checks that Git is actually available. + """ + if cls.is_repository_directory(location): + return location + return None diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 00000000..b1debe34 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,354 @@ +"""Orchestrator for building wheels from InstallRequirements. +""" + +import logging +import os.path +import re +import shutil +from typing import Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name, canonicalize_version +from pip._vendor.packaging.version import InvalidVersion, Version + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import InvalidWheelFilename, UnsupportedWheel +from pip._internal.metadata import FilesystemWheel, get_wheel_distribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.build.wheel import build_wheel_pep517 +from pip._internal.operations.build.wheel_editable import build_wheel_editable +from pip._internal.operations.build.wheel_legacy import build_wheel_legacy +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir, hash_file +from pip._internal.utils.setuptools_build import make_setuptools_clean_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + +_egg_info_re = re.compile(r"([a-z0-9_.]+)-([a-z0-9_.!+-]+)", re.IGNORECASE) + +BuildResult = Tuple[List[InstallRequirement], List[InstallRequirement]] + + +def _contains_egg_info(s: str) -> bool: + """Determine whether the string looks like an egg_info. + + :param s: The string to parse. E.g. foo-2.1 + """ + return bool(_egg_info_re.search(s)) + + +def _should_build( + req: InstallRequirement, + need_wheel: bool, +) -> bool: + """Return whether an InstallRequirement should be built into a wheel.""" + if req.constraint: + # never build requirements that are merely constraints + return False + if req.is_wheel: + if need_wheel: + logger.info( + "Skipping %s, due to already being wheel.", + req.name, + ) + return False + + if need_wheel: + # i.e. pip wheel, not pip install + return True + + # From this point, this concerns the pip install command only + # (need_wheel=False). + + if not req.source_dir: + return False + + if req.editable: + # we only build PEP 660 editable requirements + return req.supports_pyproject_editable() + + return True + + +def should_build_for_wheel_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=True) + + +def should_build_for_install_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=False) + + +def _should_cache( + req: InstallRequirement, +) -> Optional[bool]: + """ + Return whether a built InstallRequirement can be stored in the persistent + wheel cache, assuming the wheel cache is available, and _should_build() + has determined a wheel needs to be built. + """ + if req.editable or not req.source_dir: + # never cache editable requirements + return False + + if req.link and req.link.is_vcs: + # VCS checkout. Do not cache + # unless it points to an immutable commit hash. + assert not req.editable + assert req.source_dir + vcs_backend = vcs.get_backend_for_scheme(req.link.scheme) + assert vcs_backend + if vcs_backend.is_immutable_rev_checkout(req.link.url, req.source_dir): + return True + return False + + assert req.link + base, ext = req.link.splitext() + if _contains_egg_info(base): + return True + + # Otherwise, do not cache. + return False + + +def _get_cache_dir( + req: InstallRequirement, + wheel_cache: WheelCache, +) -> str: + """Return the persistent or temporary cache directory where the built + wheel need to be stored. + """ + cache_available = bool(wheel_cache.cache_dir) + assert req.link + if cache_available and _should_cache(req): + cache_dir = wheel_cache.get_path_for_link(req.link) + else: + cache_dir = wheel_cache.get_ephem_path_for_link(req.link) + return cache_dir + + +def _verify_one(req: InstallRequirement, wheel_path: str) -> None: + canonical_name = canonicalize_name(req.name or "") + w = Wheel(os.path.basename(wheel_path)) + if canonicalize_name(w.name) != canonical_name: + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {canonical_name!r}, " + f"got {w.name!r}", + ) + dist = get_wheel_distribution(FilesystemWheel(wheel_path), canonical_name) + dist_verstr = str(dist.version) + if canonicalize_version(dist_verstr) != canonicalize_version(w.version): + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {dist_verstr!r}, " + f"got {w.version!r}", + ) + metadata_version_value = dist.metadata_version + if metadata_version_value is None: + raise UnsupportedWheel("Missing Metadata-Version") + try: + metadata_version = Version(metadata_version_value) + except InvalidVersion: + msg = f"Invalid Metadata-Version: {metadata_version_value}" + raise UnsupportedWheel(msg) + if metadata_version >= Version("1.2") and not isinstance(dist.version, Version): + raise UnsupportedWheel( + f"Metadata 1.2 mandates PEP 440 version, but {dist_verstr!r} is not" + ) + + +def _build_one( + req: InstallRequirement, + output_dir: str, + verify: bool, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + artifact = "editable" if editable else "wheel" + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building %s for %s failed: %s", + artifact, + req.name, + e, + ) + return None + + # Install build deps into temporary directory (PEP 518) + with req.build_env: + wheel_path = _build_one_inside_env( + req, output_dir, build_options, global_options, editable + ) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built %s for %s is invalid: %s", artifact, req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req: InstallRequirement, + output_dir: str, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + with TempDirectory(kind="wheel") as temp_dir: + assert req.name + if req.use_pep517: + assert req.metadata_directory + assert req.pep517_backend + if global_options: + logger.warning( + "Ignoring --global-option when building %s using PEP 517", req.name + ) + if build_options: + logger.warning( + "Ignoring --build-option when building %s using PEP 517", req.name + ) + if editable: + wheel_path = build_wheel_editable( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_pep517( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_legacy( + name=req.name, + setup_py_path=req.setup_py_path, + source_dir=req.unpacked_source_directory, + global_options=global_options, + build_options=build_options, + tempd=temp_dir.path, + ) + + if wheel_path is not None: + wheel_name = os.path.basename(wheel_path) + dest_path = os.path.join(output_dir, wheel_name) + try: + wheel_hash, length = hash_file(wheel_path) + shutil.move(wheel_path, dest_path) + logger.info( + "Created wheel for %s: filename=%s size=%d sha256=%s", + req.name, + wheel_name, + length, + wheel_hash.hexdigest(), + ) + logger.info("Stored in directory: %s", output_dir) + return dest_path + except Exception as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + # Ignore return, we can't do anything else useful. + if not req.use_pep517: + _clean_one_legacy(req, global_options) + return None + + +def _clean_one_legacy(req: InstallRequirement, global_options: List[str]) -> bool: + clean_args = make_setuptools_clean_args( + req.setup_py_path, + global_options=global_options, + ) + + logger.info("Running setup.py clean for %s", req.name) + try: + call_subprocess( + clean_args, command_desc="python setup.py clean", cwd=req.source_dir + ) + return True + except Exception: + logger.error("Failed cleaning build dir for %s", req.name) + return False + + +def build( + requirements: Iterable[InstallRequirement], + wheel_cache: WheelCache, + verify: bool, + build_options: List[str], + global_options: List[str], +) -> BuildResult: + """Build wheels. + + :return: The list of InstallRequirement that succeeded to build and + the list of InstallRequirement that failed to build. + """ + if not requirements: + return [], [] + + # Build the wheels. + logger.info( + "Building wheels for collected packages: %s", + ", ".join(req.name for req in requirements), # type: ignore + ) + + with indent_log(): + build_successes, build_failures = [], [] + for req in requirements: + assert req.name + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, + cache_dir, + verify, + build_options, + global_options, + req.editable and req.permit_editable_wheels, + ) + if wheel_file: + # Record the download origin in the cache + if req.download_info is not None: + # download_info is guaranteed to be set because when we build an + # InstallRequirement it has been through the preparer before, but + # let's be cautious. + wheel_cache.record_download_origin(cache_dir, req.download_info) + # Update the link for this. + req.link = Link(path_to_url(wheel_file)) + req.local_file_path = req.link.file_path + assert req.link.is_wheel + build_successes.append(req) + else: + build_failures.append(req) + + # notify success/failure + if build_successes: + logger.info( + "Successfully built %s", + " ".join([req.name for req in build_successes]), # type: ignore + ) + if build_failures: + logger.info( + "Failed to build %s", + " ".join([req.name for req in build_failures]), # type: ignore + ) + # Return a list of requirements that failed to build + return build_successes, build_failures diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py new file mode 100644 index 00000000..c1884baf --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,121 @@ +""" +pip._vendor is for vendoring dependencies of pip to prevent needing pip to +depend on something external. + +Files inside of pip._vendor should be considered immutable and should only be +updated to versions from upstream. +""" +from __future__ import absolute_import + +import glob +import os.path +import sys + +# Downstream redistributors which have debundled our dependencies should also +# patch this value to be true. This will trigger the additional patching +# to cause things like "six" to be available as pip. +DEBUNDLED = False + +# By default, look in this directory for a bunch of .whl files which we will +# add to the beginning of sys.path before attempting to import anything. This +# is done to support downstream re-distributors like Debian and Fedora who +# wish to create their own Wheels for our dependencies to aid in debundling. +WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) + + +# Define a small helper function to alias our vendored modules to the real ones +# if the vendored ones do not exist. This idea of this was taken from +# https://github.com/kennethreitz/requests/pull/2567. +def vendored(modulename): + vendored_name = "{0}.{1}".format(__name__, modulename) + + try: + __import__(modulename, globals(), locals(), level=0) + except ImportError: + # We can just silently allow import failures to pass here. If we + # got to this point it means that ``import pip._vendor.whatever`` + # failed and so did ``import whatever``. Since we're importing this + # upfront in an attempt to alias imports, not erroring here will + # just mean we get a regular import error whenever pip *actually* + # tries to import one of these modules to use it, which actually + # gives us a better error message than we would have otherwise + # gotten. + pass + else: + sys.modules[vendored_name] = sys.modules[modulename] + base, head = vendored_name.rsplit(".", 1) + setattr(sys.modules[base], head, sys.modules[modulename]) + + +# If we're operating in a debundled setup, then we want to go ahead and trigger +# the aliasing of our vendored libraries as well as looking for wheels to add +# to our sys.path. This will cause all of this code to be a no-op typically +# however downstream redistributors can enable it in a consistent way across +# all platforms. +if DEBUNDLED: + # Actually look inside of WHEEL_DIR to find .whl files and add them to the + # front of our sys.path. + sys.path[:] = glob.glob(os.path.join(WHEEL_DIR, "*.whl")) + sys.path + + # Actually alias all of our vendored dependencies. + vendored("cachecontrol") + vendored("certifi") + vendored("colorama") + vendored("distlib") + vendored("distro") + vendored("six") + vendored("six.moves") + vendored("six.moves.urllib") + vendored("six.moves.urllib.parse") + vendored("packaging") + vendored("packaging.version") + vendored("packaging.specifiers") + vendored("pep517") + vendored("pkg_resources") + vendored("platformdirs") + vendored("progress") + vendored("requests") + vendored("requests.exceptions") + vendored("requests.packages") + vendored("requests.packages.urllib3") + vendored("requests.packages.urllib3._collections") + vendored("requests.packages.urllib3.connection") + vendored("requests.packages.urllib3.connectionpool") + vendored("requests.packages.urllib3.contrib") + vendored("requests.packages.urllib3.contrib.ntlmpool") + vendored("requests.packages.urllib3.contrib.pyopenssl") + vendored("requests.packages.urllib3.exceptions") + vendored("requests.packages.urllib3.fields") + vendored("requests.packages.urllib3.filepost") + vendored("requests.packages.urllib3.packages") + vendored("requests.packages.urllib3.packages.ordered_dict") + vendored("requests.packages.urllib3.packages.six") + vendored("requests.packages.urllib3.packages.ssl_match_hostname") + vendored("requests.packages.urllib3.packages.ssl_match_hostname." + "_implementation") + vendored("requests.packages.urllib3.poolmanager") + vendored("requests.packages.urllib3.request") + vendored("requests.packages.urllib3.response") + vendored("requests.packages.urllib3.util") + vendored("requests.packages.urllib3.util.connection") + vendored("requests.packages.urllib3.util.request") + vendored("requests.packages.urllib3.util.response") + vendored("requests.packages.urllib3.util.retry") + vendored("requests.packages.urllib3.util.ssl_") + vendored("requests.packages.urllib3.util.timeout") + vendored("requests.packages.urllib3.util.url") + vendored("resolvelib") + vendored("rich") + vendored("rich.console") + vendored("rich.highlighter") + vendored("rich.logging") + vendored("rich.markup") + vendored("rich.progress") + vendored("rich.segment") + vendored("rich.style") + vendored("rich.text") + vendored("rich.traceback") + vendored("tenacity") + vendored("tomli") + vendored("truststore") + vendored("urllib3") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..067d7bee6feb5ffee9e1e9c85e3050d2fe6ccced GIT binary patch literal 4744 zcmbW3OKcm*8OLYI;Zvk!>*1Fydu_=N+VRq|EI$;*Nn|N@P(RQ|nwU;Qthgg`s(%0U1-KmprmfiysXI*@_-*khYZ54}Xt8c8?46glN4KME8+^_wM^mZlLE zbOCa{-+cf5W_IS=Z}uPQbP~a}XYrHLhg}GL&mp*?4ddw(jL>bQp&ZgAEo4aLP%b2K zJ8Xn=VZX(>h~GwYQ4Qx}Br?4r2=k(yh7rVT4P}q0Lx{93NcG;J&84)+M<|yjv0EX! zFN8>VI+*i{+t(POZ-t~`l9U!*2(2E2M1Sl_91#7uM+?O#*Kgc#FVW1>PobufW>{?h|;2z&iz& z1>Pm_Zh`v+9uRnszD)4Ipzb^3D3$BH0;mm30QPR>aC4ZGvG?U7@El)vH zC%saXHDZB>R0=w=WphdfvCK@_q69Qdt`MSeS-m@1SIcHaw#_nOCGH~E7@-x_P?E_v zbOWO36S-%qUiW-LB)Ayhk zP626prPr4r#2Qr-q3bB9ptDi}u}DJz{VW#P3&C9pu}2Ht4==!J!!HRj|7_y+bc+A4 zzOJLK(6Nq28U@XDX}V+ey___xMS{7$3-g~1&4$^=K(|iZ5Fh(`cpa5L!v(&2a7n0! z`Vs4_6G8)sh9z_fdS}qJ@Fg@OWuh0H*awGal@A7IDPK|8ornR+WIUIYANaCol3o;Y zu&gpKp3hg*GRfz?WWKR;V8@DvIjI`97d6ZRZ^L%Y_F`pIt3rBtQEFR;&b*jSn93OS z+TQf{e1cMwX0Vs63wdBKT~BnP`QvzaQniVPOGMRdzC$ux&p*zVAeXa6b&~4D$c_{H z3Nx+jFU=`7qf#P|^U0f5nZFLF%__A?_PjrpL%%Xj!_Gp+8H9Te70el1tz{J$^lH}7 zC$mx>+-)WQ|DNbD@UPT9sQnT02>=q#UCteO`O=1Vuj^!V{^--N$8 z^lf+FH{An^-2-2|bI)1o9+^A8j5{J@(xZ6it&u;>{JwU7@527S?0OgJGs+LtRrs+0=&1|PDuoQBwKrF@!lC!bd z8Emez^?$k=k1^!zUDKuHVSNlzs7D=GTL%kUsmq-GKSgChk~+IuDj9_(KCrGtsW1cH zGzfQaeXUh9;b5_C!)fs>E7nn7J0xtIq1n#vRtkeyrp;Pun%k3IJ5HccOsWw$pYobs zV68T-c>~Yj;hzu~79Xsb+U z1ZcI0@J3jW^~Bk+_Gne68&0ORUs;jGE#3(pN(rX5Z=I0MxwS~RMnFbuPX9XL_)fLj zdOsA?%fzg<%sXEPWz0+RT4TUj0+kO_y-;#e{GTrc^b==;PbIxrGT;Z_R1Lpj7K^;V zwfX+CO0QHcC+$N}q#8<_6!|&iBz>pNY7jNy+YCO^oc6j&)dHD>gUE|BQc(*!t9cP- zmJQuYGFpW~$4pARSiSNNWjefAKChXD`XN14WmO6XHsv1#9_A;t7c*@r$E@UqOq-^8 ze`0)M?5zvq=O)HI?0aJHeO5Q1y80(G9Q{-9wFprYZ=ao*IF}!P^B4Z1=izBnuY8G~ zLLfvp!Qb=vX#Ge(MNa_oZwUKi__SCKOOo_B6qWG5+mW>Id(`$FYX1%;my;;nIhR;Y zp>)U1GdIrMym;f{ow3i(+&%Nz#k&{pon6{Kyp%dNmw1xul*XhdM-fghM^V@ITLZT< zpJp1$b9c|(+xp{gaooixeB-c-2YutDi${E8#KkZB zMpK-1@nOGb(8Whq8>d|Ss^8NbV%)_O(6fxB_MOj=6p{bMANZ(?hkadhyk@LJE>?Wk z2^XJS9qX8jkNZ8%sT^_f&}vO1&iuPB-UgoeU%R-Qw~cjbu658c{~H(ga)G#@L4f8a f^|^Ql7X~Z+wu^f>2f|Aa@#f`;5Tp-14mtT>`u71u literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5be8971a49ffde53902d248bbdf19518457a5ae9 GIT binary patch literal 41321 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb21f712676651d2e83ef9427a745e2e3bb14fb2 GIT binary patch literal 122101 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 G7yktYOkLFg literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bdd1491a019469c235f68fb86dfe7af4aee3b665 GIT binary patch literal 6516 zcmahtTX0iHmVK{YS1(JpWh`4Z2pb1PKr&z;A&Gg|#)bsr!eTOrWN!)S8p~WgrtcNT zE_sI9O4Zm?$zZlJ3w%LpcWRg-AMDmXsQp=LYX7!s%fggrBt?a&xvN(ZUhQPQ$=YkXy5XL?GLiXk&P%ye-?FXlJks_yiL{2D{~sY-ggA z!5%r3?MifUgeRjU?frzLnWgI+??hb%FD8pLK@9+E?FpKa#wNaSUf&)GMy}_5{0I7IFnL`lBsDa z!fT<4kqhTej*pDT#S0_DXD*Bk#l^|^$@s;|kx9+RsD|=6l_Fyt+&Yw$fNyLjg2}fXT zu5mhpc=VcO;$mF0O`MDmjcNAbkq<`VBPoZzdRC&o`v~D)`~v{L;O-EWGqFpq68Q{v zs^rL!lJM8u&%p*t+)bBi*a#ty4ALA|;z~p`bPYz>pk?eawCp!Hg$Er)n%dZs1$ylq zQ9b5-3r?PtoFy`2H+$-Ji7#2dk%(m+j@mLh5(njRr*J1kNlji=G?!94 z{)nL2lp-jYCWvAtmr+HLI)T4tV*@njw5c{)GwVrSktH!JsnhwiLfuH|O4XIutyvXG zo}$|UK|2xauVclOoKzGVLfj54!bo6EQV@y1HmkKXkWM92YM#z%PEj8viV98^u6;MZ z`^(sLJ}bqpCa=(pB*%s&<(ir=#3u7o>MWQ^cv!kF$@xN7%BkU@e32?r>|8!wl%@Ug zd|p;!nQTFp5W7E>pH-4`vFLRvcReO&uEYv+u)f@(=z)VVC8J9F3t)`NtCA8cWC}46 z$kKTlW7}bf982n^A1%z$Zjf`nYv}u$7d3YnDU^?(`1U4wxs5oRmK_i-HsKZ^LL&5 zDjxr>vrA_my#M6vOA8-zEm}YGy#W3sC17cM2!k$iFLI#EsM93}=$Z$#m&}+n4fTRh z;%4}U4g)L+*9o0+;;5P~*QsV|8d&cuagPk^S#Xw|Gyo&Lb*u@2tvJ*Cmlji-C&8*_ znoMlHo@uVbCbWetttP%+*JUwf0$U51_$4>k_I|KU4lK)3vVz6h9~pMH;3~N$NiR`r zdpg77r8!owcM)nsn_h5UBA?FAk{gywWR{Cq=RbFux;qK_6HbPy?#83xi;5IhrzNu^ zoXJh)X_kedu$m7mk`&HNg)?f6fph~LxdL=-7}LXW5_sy6&PtCAIB-@9=OihOtaPGW zw8m*Xj?rL>=CdLj9P#KzY1b{B?u12YO$?P54S_Z5JlKe4lPJwot?5cJBO^|qP;*R6 z$+Scj&0Z{|ld7b(f{COv7%!8uXdr19@ sOT&yk*l?KK?TSjJWL9&inXHsAs+#>e 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 a?Ab@@_$SsLfo^Ydj81G7zbDX1C;kmx4mn}~ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..20e445c22913635ac4c9edec74f8b6d4eee2397d GIT binary patch literal 16219 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 RfAs#YQPcPhg&`5_{{y)hlaK%a literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d746029f93e39a52225223db0510044714f1cb4 GIT binary patch literal 4399 zcmc&%O>7&-6`uVe#a~gDWLZCsyq4_Pv?Z}_+@MD77=kRtj%y}}gcepBte4!OxYBZ$ zon4xyAR|U$6jGW%7EpkSFA)k9i0dA5>Zz9iJ+&9BRv~5Kpf1u&ZffMBg-?BNmZU6! zMuA>B1n2L)dGqFdZ{C~zQ#>9aP>!#El>b8;Az$O5USz)`?EC~eRiYDJFiAm}76j~z zrZ_D^E16P3o|gHXYz7L!>0qH{x}^}B4he(?SrB*vX1EZUjtE2~ZxTItm*_1IMPK@K zv?3-$-{2rAcu~!=Y*%v)+j7z{Zcl3ks!!2E(PkQ}Oc*9jN?v^G`a9$5*yZuDt5?!* zdeW#>@j_#oX=)ju3tsH<)YLogQl|(~Xx87yuO+_`cGA$P5=y28oxm}KX(>#0e|lIK z@4}(;iR-0-V}#Pk?AH1PlPI zz>=M#`tXe#ZlRcSZro68OZlN;m2M@6e3dzL88nS)Yr1c36s{OKG$P30;=n?VQv$oe z-g#pt4=PXCOmVocAsoKWd}YZgaf6j@>x8SIY*Z5*2WE%3G|&^z4}YM7sSsW+q~gG- zYx{y5W%G0hQ2{z^?d0u}spAsM_LZV6XS0H4WkE`zsAb&|KA(lF&?p#PU@Yuhf=-pV zLY<-uy7*hE9v>En+Mp~5Fsj83LKZ|AH6&I@QcllHEOUAaB0x~5CUt32X1I;lqc*vj zstS(obvGyFie7(nO8pW+9FiSs<~$L2L-kn)6@ttD{C+AA@TX?93^S;ixo2Nvaz6Fa~|vJGHh&;a*5 z460;-%r-zoUcczV!`kd^(QN<;unKkXCrMIFvsPeFie8(l&QQn=wOFL8UQ2D9lo;eL z;>i|d3w8jybr@I&&PN+7;mAjtAGsza`GelAIh+`#M= zV02J-Me!}$3cli~xuWXx%?~s;?u$HUQ3k#!z`mj!KCsnssCsVYT=o3Q`L(l;I!-)_ zo%r|P6R&(rgz$kcV{O|Kw9mJL0pRRA^69xx&TaOcUhg}-II-2yvv{q+x&^Eu(spn= ziu?|0`m;m57>DR)m(r*rpisTD1JlZOK5f`A|16vDl^H}tA0F%2bOzbc0mjGrH z;AR8+ISF}Ko6?0j@Fyne;%&jozGOY_zOO(GY+M3?xZyh4jn;d!{M}X``Rz;O$M-l}I(Ql2{Yg&TOU-(Grqbz&nnxZO(njzHi|fUAe&%aNtX zW~h5T)cu!GFSk>APY_1rxL5xUIxq9;*&4pU(kQ!F-WC@`)&~eSf>MKt%r^1c1##C4 zU{%9!cURRhW^F)^?#|bHb-DogeUdy7(#ar?Po9jAU?2BDnL*z32AU`67lRE;g4_qS z^dM;k*OT!f(sZU#4QsR7j)hYG;%>a7|pM%7xe)+Qf!B^Tu{qX{3Ox0c@8 zj2&K&9bTQOY)1Rnqx~CE1p?FZ)upQ+U3;47Sd989EZH#duo0{fDwe_}XcBls@f5=_ zU(EM6LuXf%iK~7DRRg2Vu2bt>r#^e_aaU?l-io%~JNn`GSLL;q`-oR(_u|#3q1f*I zS?$~i_5T;p-~<@5SO}|jsC=dHlk>gzG8OnZdVfes+ZKIaS>P>37q`SLPsUkDvpulL zlN^_^@1YFL*${}Z@5vc>^wkFJb)=p~s?5Fv&3ptt{c1ve_5k0nM)o8i`y$Wbq6oh4 z@FfH2(_^T57F;)F3d;ruaEvl;9Syg47xLYq)yC~p|;D&$T$6p@_%oGeOOcc%q zsP2+~h;4z;_OU=k0Hddp#WJeAX2W zbn>gfge>htB(!c!OPnIm}fKKK0;zAqf8r5n=Fa68(yt_$x`Rlhog&wy)%q P{|Xv{(D^OFnoIf*GVcnO literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8b0318a05402e07b45bbabcad0706a37f22a82b9 GIT binary patch literal 6746 zcmb7ITWlNGnV#WwL{g%xyX4CrNmd*>CK<_c+*nGQ_!3J=Ew{GZHf&mA#2Jbs4`|NNKlKfi2m4{%V%s{fSP?&7#V;2)=W?FPTI1&vis;v`<> zvV4N)vF%b_2^V|26K;6BRZrHF@MOISZ`POaF&>ZV&k6}4+m>j{1`+{A^QysYC=trG zC)%?ei4LBVL(~W3eQG${ndk%_f8v1DC3Q=}ZEvDW>XF)RdlKC)?jk1zZgW!bq03%Z zqKDB!Kx>zK9=hw)UPkQzYPgBo$Eck^J85BZx@OEp+?F7T zrfe!%*=oaDl2uc*1Z);{O$LTQTBljjL^i7}CsIRZ%}}G6G>gF2KL6%7FC@>+TsZf} z?A%4m{i;^5{FlUBPSFK zr_E)N%H+I!Lss=%R@O{%PS1nH;+J$OugcMRU002`lFg|y_C{0svLP1Yu^X~>Bd#h7 z@m#^o=-SEH_(a@LOgWkpQ`f~s*@)+qTs#SEl1}3(F_n>1x@J;cjc4RMRSZ)}8L?c! z3duKf3YC*$+LS5nh4q5EbH*rCx45lf_>*Aty|1lK-<^J6_#kvYRO^o3IuGPKWA98? zJpDVs#-$q4g+C~YrW4qcyoqPS%2Gq#4u#`N+>(FqpVN9+Z#ZY*ysvUJ3|(*rILH!G zq6!-ospUg8T+G^?BDo=|ibTe5 z-Xx$y8W;_+H-jB{nMkscqRIl&&5TT#3N$7WrKP-KqDC39K!Z9De6((HL@`K?>NgZg zmWZkAL{wFM+4+<~ROPx%#>Y=K24_q&cP1VOR@I0pvYC$QbTOVWvud2CQ>Q0RPL3LK z3cX15RP0o2k}PLrQ2k|@XtFFdrZIH_8mTHN#Z(IfbiHLo`VE8bvOI>YrY*tQU)?lqmGIXkSnO>%m{^^RN@1X;-Qxb- z#dSVsD?zg-LG@y%hU&k{Dc~a_eDP1$a;R%e{?2#nhh>#mo>e1)Vw4U13U`(PV32=dP5wxwiwEyrlbq70?}+;#<0}|70`zh1f2c8S%3jPP4qP5YiNb7ZlFMpYElBbr^8USNVg-;#89_2qj;!Q z$gRD{aC93~AnOjUv#Z?pWoe^nFlqk+8sO!*C6xcZQsN)hsVlCMi@s6fpXU3Q>cPBu zaLMJ2x3k80|v?p&&O7DFN9aMQ0#6!0Y-ct7>(~k1#W-n$mUSA zIuzZ=)P_!%!@my>ZH0O^Lx-xNLz|(|YG`!*@~5H6tlAc9Lo*+3Y-4?L4+ISecxuJUjbo=j)$``^#Z=m~#(2Y!9>@H{zqrqdf^2CM6{@ z2Oy%kpT>ddNr$AQ%%E_b^NG7u^hC(}(O#U!0 zs&)?(C6h9Z;v57kbn8q+^a!@FItY((0IJ*Ej;qc4+)kh0+qK)(<{hxPktYRDqckGH z0Fas@0S{5YV@H94JL0v1mo@pkSU874xp;|L4{Ns?C>Wh>Y3RX44ZR}7X@iUt32af( zkeiK7=OG}-wiUL75&@RM%;a}$Jqowt0`=pU8VlZQ+~Db3djb0CJd$e=1~{g%;x-$m zV>Uv!M@i@Q6U&yhfz`{x_bCjt^0-Y`R%@u_g{Q8 z{ORcAe}C7LgLa=(zPLSn^3lcG@O1g&o!M&W$kwqq zv@TaeN4LU#3ddk8vkO2Ct%=N-sb+| za(ji{fZ*-78L|862J$TQ>@$#kFi8?555Of~!5e9_LKke^e-$xmajMB;jvohDa{M@8 zgdgT*!!!t_9z+D}lU6juEr13|PNs@p2MR4v6;COM$pZS;)utpt;uUbr?}Ij$xMU-= z6wpyKZxM0XT7gIz+US!l*Y)L=pa+gf(G)Y8EcQ09KIV|Gz#s$l8_;I&k-N$DuDi*y z=br;ibS-8KCTyGW3^baT330FPa-gG89P?Xo?HTA^M3Z>Q^r-VZ%V)Uy5MeEQl7**a+~|ys1O}sX$f$5R#d<#1v!9 zh>-?5%qoi+lPmy`LW~Grft_a4jxCP~X_wKmWz>{nPs^6;QTI*gG0;B1hQn`^JzL@K zJJRaX-KA=nR0P6yh)LslV4cI+b9+OtJ; z9~7%g@EDlJpe?$*!j8au$98-!?^S+RaCwLAG02&Mr%_PWQ23oMn`H*>Gk(fL_Tsa% z7sz59vlOh*H$=mPJXJ|6km3Iv424qTbS&Lq~ z8V4t8#J?ji#PLESj*%YbO1}2$w;D6R1nSM!q4jB^R90b~a@>G~Cnd)<*<6=8Pbs4*CB$~eNPA2;14|ToqYwcj6I(R=Hm^Iq8BxdrED1;k6Qw_@*7;Ey})PqBmlti4S4$zETP}D|Ei8U;-4F+lxXhEHQ{y zY**1O0E%ZGh9cCU=&T;&xhS{3#dDE%2E8mFIB_#?ScjRnN25+I6p{b~#Jp-I?M~UC zh)5|ei{ddckOy8KK!WAYiZ`KBG)sW|BF$*R{OqL*$=5E;TfW6CQX)Y+)_X9Sw?7;} zdXn8V*|3tW88Z)i&7JTaE11et3b}O>F6LO6vAWVQMMjeiBdIEBcAIJ=N3=f(uuid4 z67>AVgU#M{AAl?XgE0)648dnC^1)m8-zqZ@>8}R=ZmYYuJo|ZYXl=0?9NRedC|*5& z_M^-v$LH!D;diIrnOc)JkGxWaU+|SW`M_F#HAvPk|Lk=2=vhYlWAE_#v5jZ$$7{V4 z<-k^Wuo51t2xCxhhx^}s`<=JfiW?&v<7+>vg=1yU_5gCnt0QM>15@Spt>8cj&OH zx8Z%{dJuRtTRZx4?eNzt!q8Um@cO||f+y_dcJ);TpR0B~SN3mp4*q!ZCokQ5>BE8l zocyn;|CsvOa_!{B+QFGhc(x+Uei>2~!Hccqe*q;w B6HWjC literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6f02a87b5b2c1e63e4a6ed8defcdb8567abd3932 GIT binary patch literal 6457 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 None: + logger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + logger.addHandler(handler) + + +def get_session() -> requests.Session: + adapter = CacheControlAdapter( + DictCache(), cache_etags=True, serializer=None, heuristic=None + ) + sess = requests.Session() + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + sess.cache_controller = adapter.controller # type: ignore[attr-defined] + return sess + + +def get_args() -> Namespace: + parser = ArgumentParser() + parser.add_argument("url", help="The URL to try and cache") + return parser.parse_args() + + +def main() -> None: + args = get_args() + sess = get_session() + + # Make a request to get a response + resp = sess.get(args.url) + + # Turn on logging + setup_logging() + + # try setting the cache + cache_controller: CacheController = ( + sess.cache_controller # type: ignore[attr-defined] + ) + cache_controller.cache_response(resp.request, resp.raw) + + # Now try to get it + if cache_controller.cached_request(resp.request): + print("Cached!") + else: + print("Not cached :(") + + +if __name__ == "__main__": + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 00000000..3e83e308 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,161 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import functools +import types +import zlib +from typing import TYPE_CHECKING, Any, Collection, Mapping + +from pip._vendor.requests.adapters import HTTPAdapter + +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import PERMANENT_REDIRECT_STATUSES, CacheController +from pip._vendor.cachecontrol.filewrapper import CallbackFileWrapper + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest, Response + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "PATCH", "DELETE"} + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + controller_class: type[CacheController] | None = None, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + cacheable_methods: Collection[str] | None = None, + *args: Any, + **kw: Any, + ) -> None: + super().__init__(*args, **kw) + self.cache = DictCache() if cache is None else cache + self.heuristic = heuristic + self.cacheable_methods = cacheable_methods or ("GET",) + + controller_factory = controller_class or CacheController + self.controller = controller_factory( + self.cache, cache_etags=cache_etags, serializer=serializer + ) + + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: None | float | tuple[float, float] | tuple[float, None] = None, + verify: bool | str = True, + cert: (None | bytes | str | tuple[bytes | str, bytes | str]) = None, + proxies: Mapping[str, str] | None = None, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Send a request. Use the request information to see if it + exists in the cache and cache the response if we need to and can. + """ + cacheable = cacheable_methods or self.cacheable_methods + if request.method in cacheable: + try: + cached_response = self.controller.cached_request(request) + except zlib.error: + cached_response = None + if cached_response: + return self.build_response(request, cached_response, from_cache=True) + + # check for etags and add headers if appropriate + request.headers.update(self.controller.conditional_headers(request)) + + resp = super().send(request, stream, timeout, verify, cert, proxies) + + return resp + + def build_response( + self, + request: PreparedRequest, + response: HTTPResponse, + from_cache: bool = False, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Build a response by making a request or using the cache. + + This will end up calling send and returning a potentially + cached response + """ + cacheable = cacheable_methods or self.cacheable_methods + if not from_cache and request.method in cacheable: + # Check for any heuristics that might update headers + # before trying to cache. + if self.heuristic: + response = self.heuristic.apply(response) + + # apply any expiration heuristics + if response.status == 304: + # We must have sent an ETag request. This could mean + # that we've been expired already or that we simply + # have an etag. In either case, we want to try and + # update the cache if that is the case. + cached_response = self.controller.update_cached_response( + request, response + ) + + if cached_response is not response: + from_cache = True + + # We are done with the server response, read a + # possible response body (compliant servers will + # not return one, but we cannot be 100% sure) and + # release the connection back to the pool. + response.read(decode_content=False) + response.release_conn() + + response = cached_response + + # We always cache the 301 responses + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + self.controller.cache_response(request, response) + else: + # Wrap the response file with a wrapper that will cache the + # response when the stream has been consumed. + response._fp = CallbackFileWrapper( # type: ignore[attr-defined] + response._fp, # type: ignore[attr-defined] + functools.partial( + self.controller.cache_response, request, response + ), + ) + if response.chunked: + super_update_chunk_length = response._update_chunk_length # type: ignore[attr-defined] + + def _update_chunk_length(self: HTTPResponse) -> None: + super_update_chunk_length() + if self.chunk_left == 0: + self._fp._close() # type: ignore[attr-defined] + + response._update_chunk_length = types.MethodType( # type: ignore[attr-defined] + _update_chunk_length, response + ) + + resp: Response = super().build_response(request, response) # type: ignore[no-untyped-call] + + # See if we should invalidate the cache. + if request.method in self.invalidating_methods and resp.ok: + assert request.url is not None + cache_url = self.controller.cache_url(request.url) + self.cache.delete(cache_url) + + # Give the request a from_cache attr to let people use it + resp.from_cache = from_cache # type: ignore[attr-defined] + + return resp + + def close(self) -> None: + self.cache.close() + super().close() # type: ignore[no-untyped-call] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 00000000..3293b005 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,74 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The cache object API for implementing caches. The default is a thread +safe in-memory dictionary. +""" +from __future__ import annotations + +from threading import Lock +from typing import IO, TYPE_CHECKING, MutableMapping + +if TYPE_CHECKING: + from datetime import datetime + + +class BaseCache: + def get(self, key: str) -> bytes | None: + raise NotImplementedError() + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + raise NotImplementedError() + + def delete(self, key: str) -> None: + raise NotImplementedError() + + def close(self) -> None: + pass + + +class DictCache(BaseCache): + def __init__(self, init_dict: MutableMapping[str, bytes] | None = None) -> None: + self.lock = Lock() + self.data = init_dict or {} + + def get(self, key: str) -> bytes | None: + return self.data.get(key, None) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + with self.lock: + self.data.update({key: value}) + + def delete(self, key: str) -> None: + with self.lock: + if key in self.data: + self.data.pop(key) + + +class SeparateBodyBaseCache(BaseCache): + """ + In this variant, the body is not stored mixed in with the metadata, but is + passed in (as a bytes-like object) in a separate call to ``set_body()``. + + That is, the expected interaction pattern is:: + + cache.set(key, serialized_metadata) + cache.set_body(key) + + Similarly, the body should be loaded separately via ``get_body()``. + """ + + def set_body(self, key: str, body: bytes) -> None: + raise NotImplementedError() + + def get_body(self, key: str) -> IO[bytes] | None: + """ + Return the body as file-like object. + """ + raise NotImplementedError() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 00000000..24ff469f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,8 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from pip._vendor.cachecontrol.caches.file_cache import FileCache, SeparateBodyFileCache +from pip._vendor.cachecontrol.caches.redis_cache import RedisCache + +__all__ = ["FileCache", "SeparateBodyFileCache", "RedisCache"] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f93fdf1ea09ab926558ebd5c04dafe30ac2af441 GIT binary patch literal 487 zcmah`zfS@&6mIW8l*nYDI2e|u+&!S7cWv4Oa-+Mun}eHwi<9dm zE;_lHFqkme0{+;1!^`{n`n~Ucc~7-k71`K(z8w*a(3=C_;jN4LzAf%hjAATMf_pge zdLDMz6Mj;w4k`ZW&yxS-k!87N8%c>BFA}fQ)ROJQYlmtrx2c(Si4kWcQYJa- zoslJS=|TvMg|zFfWc0^08o)*#3cE&;ecWP!#oGI_z`j_OgDSHQHbt}8?HdzmVMBe{ zbMA14q^vj@foIN~d+wdN=brPObFcm*91aq=`d6-H{_$1HnLQ;UckQ4J#Qetgl&X@Nm{dqYlvu7z6$On_bd`q&0J^ON@d^j2A zh%VC*^!4W=`A9Ot+T>g`A4|r7Z`A@<#bhf_-XL1=D$!c*@y-_|+n6i_vasH!2k(hB zc{`IwKpq8oizn~U+O!yq)mh}@?SDe$IA^!0g@R$JR@Nw(33&Etx~3PbIB)Z3M(yy0 zi{Cz#8hP{7$k{WAH$WH|R!x0GO=onwb4;IBscPxNhF0{%FhrEKj~E4u8o8WKK_qLS zXJzv`@FCPaoz3azjP#{+Z8GfBC7=Q!-1_f0G_}QqNTwRKYSJrwnQzdjP2TGQOhapJ z5gS`eenLvH*jIQf;L7VgG|n|MZEt!Ha}-zKxj$zV{tHG4HIIN#&L{z5!Q7o|D&lhW zdzsv;wR4S{ZFLQoE0Z!`=I((#@wy^3jSTbNdX)uDaKCnp^bsrOY8)U`;K)UC?bTT_ zCtM`6TpwwA`wmyLelH94?|iq`D=sGN;Ako_dV2KSxzV?6c{DYACUN5YMVp@;kB4mD zFj4mQ`O(C=i?)9>HFEyci3_%GG?Mm1H-qBIPzp=cZ1NAshgK9V|r-Jn6PG5sw*e;%X-e3&O>x4BgPCh^`W;6Z6>D=TriBBIh4&$=X7ix zNE@@JS{xd@tQRg1<+9^L(?u&|6pjqOba=?jTKd4Wn!cn?>gLdNc6ulUYMMcZ(il}~ zCu*Dra|pjX#To{ui*{Se)YCImPvPuRvlND+`{46&HO+qpGEY7YMV8Jko}E8c4G}4L z?fg=5G5Oy9Tk)Imm2lsR*f)P_Lnd>AH)xe?o;VSQwB9Ei3 zOU1=vrLA&dHM;+yy#MJ&CkeHGPIxK&2RT%g;Qr@ow;)A6h2i8ydAaRc2wt{n_Q3bw zKi)a~I(ZQ99Ep$zuLnk2gntWiNF&`N2Zc0fcvsD@x%I0cxF_SSq6 z3qqr}s z{1uyJfRv?qS>qt>Knl9z<4D(LDZ8JBB}Evz>_y(S%fFRy;_?DPqO<| z#F+O+ftc@t825Am8)~?7#c$O|_q)<}ITsrs$|=G%qCUG-j0ijA6~hsaoHA4JvTuQLVx--B!`g1k$fEqdzBAzaW<`+xGJu-C`N`Y zr&8HM)=H&H-CMkD&~5n^=$Vs1=1Dac4jf#I?tB>S{Wv!8$=?3uV08!C)wdvCi>!6^ zz%8`at-vkpKJ7ZNApS%2>Be3X+x?ymA;YiwQc?T9R#-iVO)p31~(TmQpQ zf3+19HciZ%?*?Ba|EQdZ3285HffTL8{8j@7GP&2bT_!J+DbJ%oy>_`#d9T)Y%JW56 zgAi9|jNIiCfb*ClG61-?&&;TY55H{t^gfLYt`o0bq^pSo-nek1Oh}%+1U%r&go!-$#$EM31aSk3N)-u7eKQzLt3pT5b@S zqh|xubuP%yH7QgfV6U1K3rcR6m+8y=Bv*o_D?&Z;ro5PTdqI`t#d2K+@7<!~8~Fq2Q%JRJx7 zeiOc$b^)ZgH+6{QZ>$vC2zHknx92af;Tm&*U z-3$c(4JcNg50CXt$yB4!U=X~vgT*?mfT6Ylg}TE+J66+Mt}>@Fz;VIpC^)heb(OH( znDRCUt`xwywn?i6PJ6w@MfG0* z0j~=Rf!4=Pz5gD6%YV~H2jQ4#{B+#s)`qK?RiFIMT zw|*3gVZ66)J_&*f>$zE1+%yr7-+gU3OzyXL4IdKjf4yyZk97aI4E%#|V0fqSpqoRw zM;h)AJm~eK{E#&Kl0V%TA?W8ULY9H~azH5aPI?5t+~%Ob?1BjM3XJU%XX9qI2*3fJ z=S7X{d3CU6umU*3pqf>37!0%%$uJOikw<`sLS$xQB0J|m3r-6?%0U)?O4D1mCGy9{sj@?yZm?MDlddPAH&K8t_Layejcq#B(~=%;B!YmLUrdy zu?|?TaOb9p@%w(~tK_!;&BA?=0~!}kXXhazv;PVt5f8B>ZwrwAS%qqgcL~cFPI20cQY5dz&-@jTtK=i`cr{3N_N;aHtaa^Od-3IJ zc(>I5N&Akf1b0?cRsG1x1Y`l^f~2jp+Jan&bPh88YJ>zM>rs>)BfhrJc~1I^bpg04 z<9w3z@_NKCbyqvco7_3BDu`0=8jQ#8`wlqwp_AU+dvu!+`+O4d|N z*oxscyP)LZK!_G!P)tLCt(0QUWG!_(r?V}0PNkF1R#G!&3pqp8Ob6kc3P=xo4zX_p zOo8CodSQmF=dL0a(KhTsoCW0TC5DMJb^{)cR$08qyx9#plAnW;i68=j4z)vQF|<5Z z+5e%umzgnfS8VY2x*tk330>$rNPd6>cPn%PNeT%BeFzXd9BpA6`dzX3|&(=K~ z4Z7{OpqKdykmk%VyAnN!wY&hee0x_#tZ1w4eGfx@Paj8>E!8?Y!7p0&llKFI!f&`i zVf*xp@c5Oj1}9D1R^>u-RSuy-FTuF<4IoXq64DJA4wFK2L1fENZa>#9ZaV^`xgW@O zcBz-;2R@YdF|Xe~@Xx^jUp(u^!2d#U@H__hA>b7hL(7@AhMW$h5gS<8miBDF>JCW! z8oS_8P!mWzlK0jj<7*$v`yI#tyN=*{yp&stof&m;K!{efcf&XqkA=Y zhW`g~+wIotn+`bZ;7UI@&ngpE=_9DXu^}A0vvOYPAHrl*A)OqL!RinAS9+Dyzq5eKCW#Sf(~BEc+W%a%T8 z%~EyRISute9SERIvBsu8ROo?I*1_8UH3r#)Yya199w_dBDVErF-xq6o|373lrMMTQ z2avQNVOy(SR~dac QFuXy4+jzmpIqCHO0mEo&tpET3 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9daa1a47d475e72127d8f089d5f659da3eb5c16a GIT binary patch literal 2790 zcmbVO&2JM&6rcUF*I`Wp2}$_gK&@g*ywFxHP(-B$1gIrc4IJu)o$uZ(2t`H|llXn$yJ;`@e^=#@doMfeFjqUqEXoqg# z^Q;`{jvdm_Ezw9vS_^y%OzG2~e|oeqbo}Vh$0vr5!9waIo6{k?IF7s8XVh_dF}^*f zEm2Z)80NEtlDy=QyzJr*8T4VM(=2Fi(LizbHC|e`JXn4V9)I35bsTY(>)DO*}pu#w{P6kfJql2e|z~h!% zDti=n2aCZ4Zda|`B=sjP&pl_AtKoRyzmwbdw#D6$4wmiWd3%g^VyVJTA1(`pM&)(H!&8%S;K z3SEJ@2iEuoAfRSv_e^!VI&*3IQe$MkbKssnz|e}}q6)O#k}wcDe+wFb&I;f9I(paT zyR9gZNR@=GG$U|Nm}rY=bFi;NlqTAQ-X1OYp-5kxPap=XS{tEDYF(K?KvuP>^>uXu z?OW9x^3!v4@oZhKft*X)e^`m2u4;8DL_|faYZHC#@p6B+HEin$sIw_ zSsC*x5!PIPG{_pQsNgh=I$ZAhJhc5HW$4gI@q-Ht9S|v%u*gu&D9LEqvx_v+;0V1K zDXt$z=@5#NSKycr4$me;cri3F(k5-MLZc+TSauoZQ4;Pfz-^J{P%pGO`qUIH4#9qy zzYu~T1_kpOAXDUVf^_vQ8eKCdrccbAoIcsu*{CcSnFr~imO(0uRStH%~QduJ|BU%uCwS===6z4e{-b5FyX-}K(~=IYV*ji;th zHHL0?-#l|avwtqLe?D_?e&B;&&MX*1k6JPX$IZSUGYiIE5&W;t*Mp$#|I1hO?+Y25 z0H6SBCK53&elb)TglgT2Y>gRlnIkhKtZvMtrc?Lz{yDwB(Y>H=ja6=y2H+tCJuTAp zA`D(f<#vc3A!oNj_(S=AWpR3*z$h$k%f(3|*S4#qDrM!`iR08OQ)Z3^%q)7;X0AVG z+MZ{I_3%L1SAX8*1L3;XU58OB~d-%rT`R<*66DhUh>QF0I?i*X?j4h3k1!Lf` z0vj(Qi^d9M5#rg{$`6G+v%)Di@oA$)RM{-UlLYqeG5x^wDRs;+01yJO5UpQk%njdx z-vE(b9Gz&2NI+wNca<@)k^>fw4wxd3bVF#ERRuORLn!jaxoSxH*(kwiSYdvo4&yI` z8mF$pL&o;N>6#(f%({u&ad7H_hoJ;!0*N%i!v>Il0~7_|ZvUOM58_>H5J*cxe0q6R z7Sdvl6uzFmU803T)KMsu#M2F9qfq#&Vterp>%tqcz%r~Gv8&O8>@6g_kzfIj^93IR zh6GRXV?eHurYvb2n+ZwVv80pZ(kIfAVrcsoyL;n)`x|j@9TEMbRJy6beshbYZEGe} zZO0Qs*3z*Iym>gg2DKfn0GgmV!X IO[bytes]: + # We only want to write to this file, so open it in write only mode + flags = os.O_WRONLY + + # os.O_CREAT | os.O_EXCL will fail if the file already exists, so we only + # will open *new* files. + # We specify this because we want to ensure that the mode we pass is the + # mode of the file. + flags |= os.O_CREAT | os.O_EXCL + + # Do not follow symlinks to prevent someone from making a symlink that + # we follow and insecurely open a cache file. + if hasattr(os, "O_NOFOLLOW"): + flags |= os.O_NOFOLLOW + + # On Windows we'll mark this file as binary + if hasattr(os, "O_BINARY"): + flags |= os.O_BINARY + + # Before we open our file, we want to delete any existing file that is + # there + try: + os.remove(filename) + except OSError: + # The file must not exist already, so we can just skip ahead to opening + pass + + # Open our file, the use of os.O_CREAT | os.O_EXCL will ensure that if a + # race condition happens between the os.remove and this line, that an + # error will be raised. Because we utilize a lockfile this should only + # happen if someone is attempting to attack us. + fd = os.open(filename, flags, fmode) + try: + return os.fdopen(fd, "wb") + + except: + # An error occurred wrapping our FD in a file object + os.close(fd) + raise + + +class _FileCacheMixin: + """Shared implementation for both FileCache variants.""" + + def __init__( + self, + directory: str, + forever: bool = False, + filemode: int = 0o0600, + dirmode: int = 0o0700, + lock_class: type[BaseFileLock] | None = None, + ) -> None: + try: + if lock_class is None: + from filelock import FileLock + + lock_class = FileLock + except ImportError: + notice = dedent( + """ + NOTE: In order to use the FileCache you must have + filelock installed. You can install it via pip: + pip install filelock + """ + ) + raise ImportError(notice) + + self.directory = directory + self.forever = forever + self.filemode = filemode + self.dirmode = dirmode + self.lock_class = lock_class + + @staticmethod + def encode(x: str) -> str: + return hashlib.sha224(x.encode()).hexdigest() + + def _fn(self, name: str) -> str: + # NOTE: This method should not change as some may depend on it. + # See: https://github.com/ionrock/cachecontrol/issues/63 + hashed = self.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> bytes | None: + name = self._fn(key) + try: + with open(name, "rb") as fh: + return fh.read() + + except FileNotFoundError: + return None + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + name = self._fn(key) + self._write(name, value) + + def _write(self, path: str, data: bytes) -> None: + """ + Safely write the data to the given path. + """ + # Make sure the directory exists + try: + os.makedirs(os.path.dirname(path), self.dirmode) + except OSError: + pass + + with self.lock_class(path + ".lock"): + # Write our actual file + with _secure_open_write(path, self.filemode) as fh: + fh.write(data) + + def _delete(self, key: str, suffix: str) -> None: + name = self._fn(key) + suffix + if not self.forever: + try: + os.remove(name) + except FileNotFoundError: + pass + + +class FileCache(_FileCacheMixin, BaseCache): + """ + Traditional FileCache: body is stored in memory, so not suitable for large + downloads. + """ + + def delete(self, key: str) -> None: + self._delete(key, "") + + +class SeparateBodyFileCache(_FileCacheMixin, SeparateBodyBaseCache): + """ + Memory-efficient FileCache: body is stored in a separate file, reducing + peak memory usage. + """ + + def get_body(self, key: str) -> IO[bytes] | None: + name = self._fn(key) + ".body" + try: + return open(name, "rb") + except FileNotFoundError: + return None + + def set_body(self, key: str, body: bytes) -> None: + name = self._fn(key) + ".body" + self._write(name, body) + + def delete(self, key: str) -> None: + self._delete(key, "") + self._delete(key, ".body") + + +def url_to_file_path(url: str, filecache: FileCache) -> str: + """Return the file cache path based on the URL. + + This does not ensure the file exists! + """ + key = CacheController.cache_url(url) + return filecache._fn(key) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 00000000..f4f68c47 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py @@ -0,0 +1,48 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + + +from datetime import datetime, timezone +from typing import TYPE_CHECKING + +from pip._vendor.cachecontrol.cache import BaseCache + +if TYPE_CHECKING: + from redis import Redis + + +class RedisCache(BaseCache): + def __init__(self, conn: Redis[bytes]) -> None: + self.conn = conn + + def get(self, key: str) -> bytes | None: + return self.conn.get(key) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + if not expires: + self.conn.set(key, value) + elif isinstance(expires, datetime): + now_utc = datetime.now(timezone.utc) + if expires.tzinfo is None: + now_utc = now_utc.replace(tzinfo=None) + delta = expires - now_utc + self.conn.setex(key, int(delta.total_seconds()), value) + else: + self.conn.setex(key, expires, value) + + def delete(self, key: str) -> None: + self.conn.delete(key) + + def clear(self) -> None: + """Helper for clearing all the keys in a database. Use with + caution!""" + for key in self.conn.keys(): + self.conn.delete(key) + + def close(self) -> None: + """Redis uses connection pooling, no need to close the connection.""" + pass diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 00000000..586b9f97 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,494 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The httplib2 algorithms ported for use with requests. +""" +from __future__ import annotations + +import calendar +import logging +import re +import time +from email.utils import parsedate_tz +from typing import TYPE_CHECKING, Collection, Mapping + +from pip._vendor.requests.structures import CaseInsensitiveDict + +from pip._vendor.cachecontrol.cache import DictCache, SeparateBodyBaseCache +from pip._vendor.cachecontrol.serialize import Serializer + +if TYPE_CHECKING: + from typing import Literal + + from pip._vendor.requests import PreparedRequest + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + +logger = logging.getLogger(__name__) + +URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") + +PERMANENT_REDIRECT_STATUSES = (301, 308) + + +def parse_uri(uri: str) -> tuple[str, str, str, str, str]: + """Parses a URI using the regex given in Appendix B of RFC 3986. + + (scheme, authority, path, query, fragment) = parse_uri(uri) + """ + match = URI.match(uri) + assert match is not None + groups = match.groups() + return (groups[1], groups[3], groups[4], groups[6], groups[8]) + + +class CacheController: + """An interface to see if request should cached or not.""" + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + status_codes: Collection[int] | None = None, + ): + self.cache = DictCache() if cache is None else cache + self.cache_etags = cache_etags + self.serializer = serializer or Serializer() + self.cacheable_status_codes = status_codes or (200, 203, 300, 301, 308) + + @classmethod + def _urlnorm(cls, uri: str) -> str: + """Normalize the URL to create a safe key for the cache""" + (scheme, authority, path, query, fragment) = parse_uri(uri) + if not scheme or not authority: + raise Exception("Only absolute URIs are allowed. uri = %s" % uri) + + scheme = scheme.lower() + authority = authority.lower() + + if not path: + path = "/" + + # Could do syntax based normalization of the URI before + # computing the digest. See Section 6.2.2 of Std 66. + request_uri = query and "?".join([path, query]) or path + defrag_uri = scheme + "://" + authority + request_uri + + return defrag_uri + + @classmethod + def cache_url(cls, uri: str) -> str: + return cls._urlnorm(uri) + + def parse_cache_control(self, headers: Mapping[str, str]) -> dict[str, int | None]: + known_directives = { + # https://tools.ietf.org/html/rfc7234#section-5.2 + "max-age": (int, True), + "max-stale": (int, False), + "min-fresh": (int, True), + "no-cache": (None, False), + "no-store": (None, False), + "no-transform": (None, False), + "only-if-cached": (None, False), + "must-revalidate": (None, False), + "public": (None, False), + "private": (None, False), + "proxy-revalidate": (None, False), + "s-maxage": (int, True), + } + + cc_headers = headers.get("cache-control", headers.get("Cache-Control", "")) + + retval: dict[str, int | None] = {} + + for cc_directive in cc_headers.split(","): + if not cc_directive.strip(): + continue + + parts = cc_directive.split("=", 1) + directive = parts[0].strip() + + try: + typ, required = known_directives[directive] + except KeyError: + logger.debug("Ignoring unknown cache-control directive: %s", directive) + continue + + if not typ or not required: + retval[directive] = None + if typ: + try: + retval[directive] = typ(parts[1].strip()) + except IndexError: + if required: + logger.debug( + "Missing value for cache-control " "directive: %s", + directive, + ) + except ValueError: + logger.debug( + "Invalid value for cache-control directive " "%s, must be %s", + directive, + typ.__name__, + ) + + return retval + + def _load_from_cache(self, request: PreparedRequest) -> HTTPResponse | None: + """ + Load a cached response, or return None if it's not available. + """ + cache_url = request.url + assert cache_url is not None + cache_data = self.cache.get(cache_url) + if cache_data is None: + logger.debug("No cache entry available") + return None + + if isinstance(self.cache, SeparateBodyBaseCache): + body_file = self.cache.get_body(cache_url) + else: + body_file = None + + result = self.serializer.loads(request, cache_data, body_file) + if result is None: + logger.warning("Cache entry deserialization failed, entry ignored") + return result + + def cached_request(self, request: PreparedRequest) -> HTTPResponse | Literal[False]: + """ + Return a cached response if it exists in the cache, otherwise + return False. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Looking up "%s" in the cache', cache_url) + cc = self.parse_cache_control(request.headers) + + # Bail out if the request insists on fresh data + if "no-cache" in cc: + logger.debug('Request header has "no-cache", cache bypassed') + return False + + if "max-age" in cc and cc["max-age"] == 0: + logger.debug('Request header has "max_age" as 0, cache bypassed') + return False + + # Check whether we can load the response from the cache: + resp = self._load_from_cache(request) + if not resp: + return False + + # If we have a cached permanent redirect, return it immediately. We + # don't need to test our response for other headers b/c it is + # intrinsically "cacheable" as it is Permanent. + # + # See: + # https://tools.ietf.org/html/rfc7231#section-6.4.2 + # + # Client can try to refresh the value by repeating the request + # with cache busting headers as usual (ie no-cache). + if int(resp.status) in PERMANENT_REDIRECT_STATUSES: + msg = ( + "Returning cached permanent redirect response " + "(ignoring date and etag information)" + ) + logger.debug(msg) + return resp + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + if not headers or "date" not in headers: + if "etag" not in headers: + # Without date or etag, the cached response can never be used + # and should be deleted. + logger.debug("Purging cached response: no date or etag") + self.cache.delete(cache_url) + logger.debug("Ignoring cached response: no date") + return False + + now = time.time() + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + current_age = max(0, now - date) + logger.debug("Current age based on date: %i", current_age) + + # TODO: There is an assumption that the result will be a + # urllib3 response object. This may not be best since we + # could probably avoid instantiating or constructing the + # response until we know we need it. + resp_cc = self.parse_cache_control(headers) + + # determine freshness + freshness_lifetime = 0 + + # Check the max-age pragma in the cache control header + max_age = resp_cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug("Freshness lifetime from max-age: %i", freshness_lifetime) + + # If there isn't a max-age, check for an expires header + elif "expires" in headers: + expires = parsedate_tz(headers["expires"]) + if expires is not None: + expire_time = calendar.timegm(expires[:6]) - date + freshness_lifetime = max(0, expire_time) + logger.debug("Freshness lifetime from expires: %i", freshness_lifetime) + + # Determine if we are setting freshness limit in the + # request. Note, this overrides what was in the response. + max_age = cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug( + "Freshness lifetime from request max-age: %i", freshness_lifetime + ) + + min_fresh = cc.get("min-fresh") + if min_fresh is not None: + # adjust our current age by our min fresh + current_age += min_fresh + logger.debug("Adjusted current age from min-fresh: %i", current_age) + + # Return entry if it is fresh enough + if freshness_lifetime > current_age: + logger.debug('The response is "fresh", returning cached response') + logger.debug("%i > %i", freshness_lifetime, current_age) + return resp + + # we're not fresh. If we don't have an Etag, clear it out + if "etag" not in headers: + logger.debug('The cached response is "stale" with no etag, purging') + self.cache.delete(cache_url) + + # return the original handler + return False + + def conditional_headers(self, request: PreparedRequest) -> dict[str, str]: + resp = self._load_from_cache(request) + new_headers = {} + + if resp: + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + + if "etag" in headers: + new_headers["If-None-Match"] = headers["ETag"] + + if "last-modified" in headers: + new_headers["If-Modified-Since"] = headers["Last-Modified"] + + return new_headers + + def _cache_set( + self, + cache_url: str, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + expires_time: int | None = None, + ) -> None: + """ + Store the data in the cache. + """ + if isinstance(self.cache, SeparateBodyBaseCache): + # We pass in the body separately; just put a placeholder empty + # string in the metadata. + self.cache.set( + cache_url, + self.serializer.dumps(request, response, b""), + expires=expires_time, + ) + # body is None can happen when, for example, we're only updating + # headers, as is the case in update_cached_response(). + if body is not None: + self.cache.set_body(cache_url, body) + else: + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=expires_time, + ) + + def cache_response( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + status_codes: Collection[int] | None = None, + ) -> None: + """ + Algorithm for caching requests. + + This assumes a requests Response object. + """ + # From httplib2: Don't cache 206's since we aren't going to + # handle byte range requests + cacheable_status_codes = status_codes or self.cacheable_status_codes + if response.status not in cacheable_status_codes: + logger.debug( + "Status code %s not in %s", response.status, cacheable_status_codes + ) + return + + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + else: + date = 0 + + # If we've been given a body, our response has a Content-Length, that + # Content-Length is valid then we can check to see if the body we've + # been given matches the expected size, and if it doesn't we'll just + # skip trying to cache it. + if ( + body is not None + and "content-length" in response_headers + and response_headers["content-length"].isdigit() + and int(response_headers["content-length"]) != len(body) + ): + return + + cc_req = self.parse_cache_control(request.headers) + cc = self.parse_cache_control(response_headers) + + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Updating cache with response from "%s"', cache_url) + + # Delete it from the cache if we happen to have it stored there + no_store = False + if "no-store" in cc: + no_store = True + logger.debug('Response header has "no-store"') + if "no-store" in cc_req: + no_store = True + logger.debug('Request header has "no-store"') + if no_store and self.cache.get(cache_url): + logger.debug('Purging existing cache entry to honor "no-store"') + self.cache.delete(cache_url) + if no_store: + return + + # https://tools.ietf.org/html/rfc7234#section-4.1: + # A Vary header field-value of "*" always fails to match. + # Storing such a response leads to a deserialization warning + # during cache lookup and is not allowed to ever be served, + # so storing it can be avoided. + if "*" in response_headers.get("vary", ""): + logger.debug('Response header has "Vary: *"') + return + + # If we've been given an etag, then keep the response + if self.cache_etags and "etag" in response_headers: + expires_time = 0 + if response_headers.get("expires"): + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + + expires_time = max(expires_time, 14 * 86400) + + logger.debug(f"etag object cached for {expires_time} seconds") + logger.debug("Caching due to etag") + self._cache_set(cache_url, request, response, body, expires_time) + + # Add to the cache any permanent redirects. We do this before looking + # that the Date headers. + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + logger.debug("Caching permanent redirect") + self._cache_set(cache_url, request, response, b"") + + # Add to the cache if the response headers demand it. If there + # is no date header then we can't do anything about expiring + # the cache. + elif "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + # cache when there is a max-age > 0 + max_age = cc.get("max-age") + if max_age is not None and max_age > 0: + logger.debug("Caching b/c date exists and max-age > 0") + expires_time = max_age + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + else: + expires_time = None + + logger.debug( + "Caching b/c of expires header. expires in {} seconds".format( + expires_time + ) + ) + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + def update_cached_response( + self, request: PreparedRequest, response: HTTPResponse + ) -> HTTPResponse: + """On a 304 we will get a new set of headers that we want to + update our cached value with, assuming we have one. + + This should only ever be called when we've sent an ETag and + gotten a 304 as the response. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + cached_response = self._load_from_cache(request) + + if not cached_response: + # we didn't have a cached response + return response + + # Lets update our headers with the headers from the new request: + # http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional-26#section-4.1 + # + # The server isn't supposed to send headers that would make + # the cached body invalid. But... just in case, we'll be sure + # to strip out ones we know that might be problmatic due to + # typical assumptions. + excluded_headers = ["content-length"] + + cached_response.headers.update( + { + k: v + for k, v in response.headers.items() # type: ignore[no-untyped-call] + if k.lower() not in excluded_headers + } + ) + + # we want a 200 b/c we have content via the cache + cached_response.status = 200 + + # update our cache + self._cache_set(cache_url, request, cached_response) + + return cached_response diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 00000000..25143902 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,119 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import mmap +from tempfile import NamedTemporaryFile +from typing import TYPE_CHECKING, Any, Callable + +if TYPE_CHECKING: + from http.client import HTTPResponse + + +class CallbackFileWrapper: + """ + Small wrapper around a fp object which will tee everything read into a + buffer, and when that file is closed it will execute a callback with the + contents of that buffer. + + All attributes are proxied to the underlying file object. + + This class uses members with a double underscore (__) leading prefix so as + not to accidentally shadow an attribute. + + The data is stored in a temporary file until it is all available. As long + as the temporary files directory is disk-based (sometimes it's a + memory-backed-``tmpfs`` on Linux), data will be unloaded to disk if memory + pressure is high. For small files the disk usually won't be used at all, + it'll all be in the filesystem memory cache, so there should be no + performance impact. + """ + + def __init__( + self, fp: HTTPResponse, callback: Callable[[bytes], None] | None + ) -> None: + self.__buf = NamedTemporaryFile("rb+", delete=True) + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name: str) -> Any: + # The vaguaries of garbage collection means that self.__fp is + # not always set. By using __getattribute__ and the private + # name[0] allows looking up the attribute value and raising an + # AttributeError when it doesn't exist. This stop thigns from + # infinitely recursing calls to getattr in the case where + # self.__fp hasn't been set. + # + # [0] https://docs.python.org/2/reference/expressions.html#atom-identifiers + fp = self.__getattribute__("_CallbackFileWrapper__fp") + return getattr(fp, name) + + def __is_fp_closed(self) -> bool: + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + closed: bool = self.__fp.closed + return closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self) -> None: + if self.__callback: + if self.__buf.tell() == 0: + # Empty file: + result = b"" + else: + # Return the data without actually loading it into memory, + # relying on Python's buffer API and mmap(). mmap() just gives + # a view directly into the filesystem's memory cache, so it + # doesn't result in duplicate memory use. + self.__buf.seek(0, 0) + result = memoryview( + mmap.mmap(self.__buf.fileno(), 0, access=mmap.ACCESS_READ) + ) + self.__callback(result) + + # We assign this to None here, because otherwise we can get into + # really tricky problems where the CPython interpreter dead locks + # because the callback is holding a reference to something which + # has a __del__ method. Setting this to None breaks the cycle + # and allows the garbage collector to do it's thing normally. + self.__callback = None + + # Closing the temporary file releases memory and frees disk space. + # Important when caching big files. + self.__buf.close() + + def read(self, amt: int | None = None) -> bytes: + data: bytes = self.__fp.read(amt) + if data: + # We may be dealing with b'', a sign that things are over: + # it's passed e.g. after we've already closed self.__buf. + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data + + def _safe_read(self, amt: int) -> bytes: + data: bytes = self.__fp._safe_read(amt) # type: ignore[attr-defined] + if amt == 2 and data == b"\r\n": + # urllib executes this read to toss the CRLF at the end + # of the chunk. + return data + + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 00000000..b9d72ca4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,154 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import calendar +import time +from datetime import datetime, timedelta, timezone +from email.utils import formatdate, parsedate, parsedate_tz +from typing import TYPE_CHECKING, Any, Mapping + +if TYPE_CHECKING: + from pip._vendor.urllib3 import HTTPResponse + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta: timedelta, date: datetime | None = None) -> datetime: + date = date or datetime.now(timezone.utc) + return date + delta + + +def datetime_to_header(dt: datetime) -> str: + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic: + def warning(self, response: HTTPResponse) -> str | None: + """ + Return a valid 1xx warning header value describing the cache + adjustments. + + The response is provided too allow warnings like 113 + http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need + to explicitly say response is over 24 hours old. + """ + return '110 - "Response is Stale"' + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + """Update the response headers with any new headers. + + NOTE: This SHOULD always include some Warning header to + signify that the response was cached by the client, not + by way of the provided headers. + """ + return {} + + def apply(self, response: HTTPResponse) -> HTTPResponse: + updated_headers = self.update_headers(response) + + if updated_headers: + response.headers.update(updated_headers) + warning_header_value = self.warning(response) + if warning_header_value is not None: + response.headers.update({"Warning": warning_header_value}) + + return response + + +class OneDayCache(BaseHeuristic): + """ + Cache the response by providing an expires 1 day in the + future. + """ + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after(timedelta(days=1), date=datetime(*date[:6], tzinfo=timezone.utc)) # type: ignore[misc] + headers["expires"] = datetime_to_header(expires) + headers["cache-control"] = "public" + return headers + + +class ExpiresAfter(BaseHeuristic): + """ + Cache **all** requests for a defined time period. + """ + + def __init__(self, **kw: Any) -> None: + self.delta = timedelta(**kw) + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response: HTTPResponse) -> str | None: + tmpl = "110 - Automatically cached for %s. Response might be stale" + return tmpl % self.delta + + +class LastModified(BaseHeuristic): + """ + If there is no Expires header already, fall back on Last-Modified + using the heuristic from + http://tools.ietf.org/html/rfc7234#section-4.2.2 + to calculate a reasonable value. + + Firefox also does something like this per + https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ + http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397 + Unlike mozilla we limit this to 24-hr. + """ + + cacheable_by_default_statuses = { + 200, + 203, + 204, + 206, + 300, + 301, + 404, + 405, + 410, + 414, + 501, + } + + def update_headers(self, resp: HTTPResponse) -> dict[str, str]: + headers: Mapping[str, str] = resp.headers + + if "expires" in headers: + return {} + + if "cache-control" in headers and headers["cache-control"] != "public": + return {} + + if resp.status not in self.cacheable_by_default_statuses: + return {} + + if "date" not in headers or "last-modified" not in headers: + return {} + + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + last_modified = parsedate(headers["last-modified"]) + if last_modified is None: + return {} + + now = time.time() + current_age = max(0, now - date) + delta = date - calendar.timegm(last_modified) + freshness_lifetime = max(0, min(delta / 10, 24 * 3600)) + if freshness_lifetime <= current_age: + return {} + + expires = date + freshness_lifetime + return {"expires": time.strftime(TIME_FMT, time.gmtime(expires))} + + def warning(self, resp: HTTPResponse) -> str | None: + return None diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 00000000..f9e967c3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,206 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import io +from typing import IO, TYPE_CHECKING, Any, Mapping, cast + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3 import HTTPResponse + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest + + +class Serializer: + serde_version = "4" + + def dumps( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + ) -> bytes: + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if body is None: + # When a body isn't passed in, we'll read the response. We + # also update the response with a new file handler to be + # sure it acts as though it was never read. + body = response.read(decode_content=False) + response._fp = io.BytesIO(body) # type: ignore[attr-defined] + response.length_remaining = len(body) + + data = { + "response": { + "body": body, # Empty bytestring if body is stored separately + "headers": {str(k): str(v) for k, v in response.headers.items()}, # type: ignore[no-untyped-call] + "status": response.status, + "version": response.version, + "reason": str(response.reason), + "decode_content": response.decode_content, + } + } + + # Construct our vary headers + data["vary"] = {} + if "vary" in response_headers: + varied_headers = response_headers["vary"].split(",") + for header in varied_headers: + header = str(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = str(header_value) + data["vary"][header] = header_value + + return b",".join([f"cc={self.serde_version}".encode(), self.serialize(data)]) + + def serialize(self, data: dict[str, Any]) -> bytes: + return cast(bytes, msgpack.dumps(data, use_bin_type=True)) + + def loads( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # Short circuit if we've been given an empty set of data + if not data: + return None + + # Determine what version of the serializer the data was serialized + # with + try: + ver, data = data.split(b",", 1) + except ValueError: + ver = b"cc=0" + + # Make sure that our "ver" is actually a version and isn't a false + # positive from a , being in the data stream. + if ver[:3] != b"cc=": + data = ver + data + ver = b"cc=0" + + # Get the version number out of the cc=N + verstr = ver.split(b"=", 1)[-1].decode("ascii") + + # Dispatch to the actual load method for the given version + try: + return getattr(self, f"_loads_v{verstr}")(request, data, body_file) # type: ignore[no-any-return] + + except AttributeError: + # This is a version we don't have a loads function for, so we'll + # just treat it as a miss and return None + return None + + def prepare_response( + self, + request: PreparedRequest, + cached: Mapping[str, Any], + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + """Verify our vary headers match and construct a real urllib3 + HTTPResponse object. + """ + # Special case the '*' Vary value as it means we cannot actually + # determine if the cached response is suitable for this request. + # This case is also handled in the controller code when creating + # a cache entry, but is left here for backwards compatibility. + if "*" in cached.get("vary", {}): + return None + + # Ensure that the Vary headers for the cached response match our + # request + for header, value in cached.get("vary", {}).items(): + if request.headers.get(header, None) != value: + return None + + body_raw = cached["response"].pop("body") + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + data=cached["response"]["headers"] + ) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body: IO[bytes] + if body_file is None: + body = io.BytesIO(body_raw) + else: + body = body_file + except TypeError: + # This can happen if cachecontrol serialized to v1 format (pickle) + # using Python 2. A Python 2 str(byte string) will be unpickled as + # a Python 3 str (unicode string), which will cause the above to + # fail with: + # + # TypeError: 'str' does not support the buffer interface + body = io.BytesIO(body_raw.encode("utf8")) + + # Discard any `strict` parameter serialized by older version of cachecontrol. + cached["response"].pop("strict", None) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v0( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> None: + # The original legacy cache data. This doesn't contain enough + # information to construct everything we need, so we'll treat this as + # a miss. + return None + + def _loads_v1( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # The "v1" pickled cache format. This is no longer supported + # for security reasons, so we treat it as a miss. + return None + + def _loads_v2( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # The "v2" compressed base64 cache format. + # This has been removed due to age and poor size/performance + # characteristics, so we treat it as a miss. + return None + + def _loads_v3( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> None: + # Due to Python 2 encoding issues, it's impossible to know for sure + # exactly how to load v3 entries, thus we'll treat these as a miss so + # that they get rewritten out as v4 entries. + return None + + def _loads_v4( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return None + + return self.prepare_response(request, cached, body_file) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 00000000..f618bc36 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,43 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +from typing import TYPE_CHECKING, Collection + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache + +if TYPE_CHECKING: + from pip._vendor import requests + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.controller import CacheController + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +def CacheControl( + sess: requests.Session, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + controller_class: type[CacheController] | None = None, + adapter_class: type[CacheControlAdapter] | None = None, + cacheable_methods: Collection[str] | None = None, +) -> requests.Session: + cache = DictCache() if cache is None else cache + adapter_class = adapter_class or CacheControlAdapter + adapter = adapter_class( + cache, + cache_etags=cache_etags, + serializer=serializer, + heuristic=heuristic, + controller_class=controller_class, + cacheable_methods=cacheable_methods, + ) + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + return sess diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 00000000..8ce89cef --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,4 @@ +from .core import contents, where + +__all__ = ["contents", "where"] +__version__ = "2023.07.22" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 00000000..00376349 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from pip._vendor.certifi import contents, where + +parser = argparse.ArgumentParser() +parser.add_argument("-c", "--contents", action="store_true") +args = parser.parse_args() + +if args.contents: + print(contents()) +else: + print(where()) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d3eadcbdda1016501a213ef713296f777ff09db GIT binary patch literal 370 zcmYjMJx{|h5Vez(mPTbmNGz0rp+n=64lIa;uCTzA0V_?eja4VMY?G)=urnYQegnUS z1vZogBqlbbZk=!uNW9^`-ksjNr%tDhEcRY*vkRL)R?Q!r-(u0V#RE!FiaE-0gmWiy zFiM@&ojQ@5dXYD8^wvJHUF$h@D-nf(!sxnDWuQR0cCI`duG--s90r4fAPi4?joM4Z zf4Xi`8gou*?NeHU(o7VTKB9#^Maz4Vi5$o@9xDc%j6lzfkmO8EOcg8Wj-UiCWNwwa z$Kq0HASWWdVLgu!#o(o&W#< literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..63e47cf4165df3f5b8ff6385bf88b894cf5a1c74 GIT binary patch literal 697 zcmZut&ubGw6rR~1*&moz3_|d<2t^|%gL-WRF;|PA2gzmG?!G3Q?(QtJlY|rxMG%#G z5HI>CDDgk>VrV6Gy;MAiH=(y)bY{ETTpXBr-+bSj_r5ou>vbE6wKjh}_$%U1d8w9O zf|El5-k|^mI6^%cl?ca5Pl?r@ijjf<4bAG&GR{ia(?K8Bmwbf+HP8b6Q*EZ6F&K%w z)ki@Ks@mnTtwv^oTX~H4lS*}k8z+hKt z`@43#eNNjMrwm-qM$p1}&GUIkla`&E9_yzb%OG#0VcK!WkOY)4w;;dNz?ht zJ=Pz^qQyg*&GK6Discu)AaF&ILd)%fmG>;yic?QnnDCG2L|Q$4O9nIs()YGl2odQ* zw!>*k9?@++@fbK=7(+x;*~ht0N1_vXK!Z^P?Z=cx842Sw0;!70CYd)S9btG(qHv3( zQ$C={ozAV>BnvsTQ_tV=`j8PZ7b)i= h?N~KlY&_ferdhA9@89^UUH&1^+WxiYo9v<}{txHkw7dWS literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b636888e61c184591dcab1f6a2990792513cad5a GIT binary patch literal 3379 zcmbVOO>7(25q|r}KT%vsq$tTuOjfcQ)3Hd~QQNp_(6)9??$iatR1pDBkmmYg8&7&I%=?=+Z|0kM`}fYy5P>#a{dD2a-GuxLJ6`K(3j5atLT(d-J0>mJ2k+sJ+ZeJY_G?lv(0-zEH^9rd3K6EWIIEb16NK znlfctOj#^t+B~IOC7YIPo(Vm{+fA(vW~r@bIWJ^!DbMQpk>=^3hVqQg?6mkqg0)XD z@@diW=eag#7O0~j<&LjmijMlcrhtHZ_WuCnHnF{NvhjwE<8HHYmD>#A9)JnkqQAl0 zsUdo^9?#3R2SZ{9ytRv+o^;6XHO1D>Hd|)Mjx==;Et}1 z+W6S`DGi92#L-x^#gU_-H zR*`1s^B*vi7P6NpU$U)ocE*~sSMrReF3}sbV3muoEj4Z}GfuN_yRjabwX6cqn#FQ~ z;_QfSt?>M6HUmcA$QH~GvgK8K!79CyIe#I`O`DFC^ZHVLp7Jc*E!(`C8(#obR<{@h zWI4*p0%erNz_uRv^EZHOkf&WF++XQPK8=&a;2(!8r+-=-e0_ItqB=P7w{UIno!W`( zn{Pc%oc!X$-Q;LBIa*8pu$K7I=Hypuq7q0j)N}+17;P5`*FgXzG~-O5Xm~MMY#{=c zG}~d!7h5Rt=3uXMU-ouG6qPB4^@<@T93{_n)7%l904?d3VV368k{d3D@Nj~R<_*oJ zH*E%$jkpH0D9!}D++Ydlo`F9<4P=8nR%4akGd1<)U3Ijojy`y=roOqWPFB^)%JpAW z)XAFqekJg}t0^rqyv!3sF{Fx&;9w`9qr<<|WRP5+6hJtV9qGgDzyftoZ0yO4b}KJz z-0il-peG&j|BZKsJJJdZ19JlN)Ye=BBhY0kk}f1i{o(?|C8IFOF92ynNk2&pRfb;u z%h}qAiSLAqR)shT3XkH#5Z(ATQ87bU9G2_|t{unJB5q%i1{>nh+LHMsL z57n!cz|}@%1V?$N1O;-f!{V7~h|8q8L>+%KRh$5$9Fh(S09Ja(M;Wsi*IUkpLCkqK zY&St@H~BDVp8MCu`+^s|ACQmab@@0Ld#iQPfOpg&-VTAxkRfuOaA8Fh$h$;<-zvE& zy-QYvv^d53;rt!Rk*zWXL^TBV6wI(;BzOykZ4D(eohiG!Q^pII=ZyYhvr_t*c*L zsfC9(g|F1^t(99VTkE&h?~L79uc>D%fwM07j=1N$BAbTZ!?Ye?U|EWcmFkLaf1$b??_hU&hu=cRFoVbh=jU;#+ z?EI8|GQZ95{^DT}lR!y85~$Iw)my8ddRN=uX2VJ)Cu39j6)&P%+j3YMB!Ptm<_LZ#;ZX5@Dqc% zr5Ve0qdvRAaLq;lvm_GCVm1QAQS8++evko!XO9ixSg7$0F$*(}f4cEq-~_ID#qMaZ z4+1}Fd|tlJ#$YpskG}}CE(wD0ji?CnewYXydws7}NNi8??Ml(A6y09=Qabsyd||IA zzVQ~+i;c;;99Lf0er2BktDh4TP1x3-g2ObS?jye7uF_jodhf))RFYrIKWpFC*VqQE zenC*Co7<*^{QyxS|B$=>DZj86iEdxsjh(8-PTkcjv2-fGq2h*no=n1J!4jmy?4~Rlyd*~?v=BB}a0M1piKmY&$ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem new file mode 100644 index 00000000..02123695 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem @@ -0,0 +1,4635 @@ + +# Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Label: "GlobalSign Root CA" +# Serial: 4835703278459707669005204 +# MD5 Fingerprint: 3e:45:52:15:09:51:92:e1:b7:5d:37:9f:b1:87:29:8a +# SHA1 Fingerprint: b1:bc:96:8b:d4:f4:9d:62:2a:a8:9a:81:f2:15:01:52:a4:1d:82:9c +# SHA256 Fingerprint: eb:d4:10:40:e4:bb:3e:c7:42:c9:e3:81:d3:1e:f2:a4:1a:48:b6:68:5c:96:e7:ce:f3:c1:df:6c:d4:33:1c:99 +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG +A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv +b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw +MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i +YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT +aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ +jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp +xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp +1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG +snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ +U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 +9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B +AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz +yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE +38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP +AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad +DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME +HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Subject: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Label: "Entrust.net Premium 2048 Secure Server CA" +# Serial: 946069240 +# MD5 Fingerprint: ee:29:31:bc:32:7e:9a:e6:e8:b5:f7:51:b4:34:71:90 +# SHA1 Fingerprint: 50:30:06:09:1d:97:d4:f5:ae:39:f7:cb:e7:92:7d:7d:65:2d:34:31 +# SHA256 Fingerprint: 6d:c4:71:72:e0:1c:bc:b0:bf:62:58:0d:89:5f:e2:b8:ac:9a:d4:f8:73:80:1e:0c:10:b9:c8:37:d2:1e:b1:77 +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML +RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp +bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 +IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 +MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 +LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp +YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG +A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq +K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe +sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX +MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT +XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ +HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH +4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub +j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo +U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf +zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b +u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ +bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er +fF6adulZkMV8gzURZVE= +-----END CERTIFICATE----- + +# Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Label: "Baltimore CyberTrust Root" +# Serial: 33554617 +# MD5 Fingerprint: ac:b6:94:a5:9c:17:e0:d7:91:52:9b:b1:97:06:a6:e4 +# SHA1 Fingerprint: d4:de:20:d0:5e:66:fc:53:fe:1a:50:88:2c:78:db:28:52:ca:e4:74 +# SHA256 Fingerprint: 16:af:57:a9:f6:76:b0:ab:12:60:95:aa:5e:ba:de:f2:2a:b3:11:19:d6:44:ac:95:cd:4b:93:db:f3:f2:6a:eb +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ +RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD +VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX +DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y +ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy +VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr +mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr +IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK +mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu +XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy +dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye +jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 +BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 +DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 +9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx +jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 +Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz +ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS +R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Subject: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Label: "Entrust Root Certification Authority" +# Serial: 1164660820 +# MD5 Fingerprint: d6:a5:c3:ed:5d:dd:3e:00:c1:3d:87:92:1f:1d:3f:e4 +# SHA1 Fingerprint: b3:1e:b1:b7:40:e3:6c:84:02:da:dc:37:d4:4d:f5:d4:67:49:52:f9 +# SHA256 Fingerprint: 73:c1:76:43:4f:1b:c6:d5:ad:f4:5b:0e:76:e7:27:28:7c:8d:e5:76:16:c1:e6:e6:14:1a:2b:2c:bc:7d:8e:4c +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 +Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW +KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw +NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw +NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy +ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV +BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo +Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 +4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 +KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI +rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi +94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB +sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi +gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo +kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE +vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t +O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua +AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP +9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ +eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m +0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- + +# Issuer: CN=AAA Certificate Services O=Comodo CA Limited +# Subject: CN=AAA Certificate Services O=Comodo CA Limited +# Label: "Comodo AAA Services root" +# Serial: 1 +# MD5 Fingerprint: 49:79:04:b0:eb:87:19:ac:47:b0:bc:11:51:9b:74:d0 +# SHA1 Fingerprint: d1:eb:23:a4:6d:17:d6:8f:d9:25:64:c2:f1:f1:60:17:64:d8:e3:49 +# SHA256 Fingerprint: d7:a7:a0:fb:5d:7e:27:31:d7:71:e9:48:4e:bc:de:f7:1d:5f:0c:3e:0a:29:48:78:2b:c8:3e:e0:ea:69:9e:f4 +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb +MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow +GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj +YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM +GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua +BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe +3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 +YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR +rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm +ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU +oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v +QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t +b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF +AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q +GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 +G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi +l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 +smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2" +# Serial: 1289 +# MD5 Fingerprint: 5e:39:7b:dd:f8:ba:ec:82:e9:ac:62:ba:0c:54:00:2b +# SHA1 Fingerprint: ca:3a:fb:cf:12:40:36:4b:44:b2:16:20:88:80:48:39:19:93:7c:f7 +# SHA256 Fingerprint: 85:a0:dd:7d:d7:20:ad:b7:ff:05:f8:3d:54:2b:20:9d:c7:ff:45:28:f7:d6:77:b1:83:89:fe:a5:e5:c4:9e:86 +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa +GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg +Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J +WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB +rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp ++ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 +ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i +Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz +PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og +/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH +oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI +yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud +EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 +A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL +MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f +BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn +g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl +fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K +WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha +B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc +hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR +TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD +mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z +ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y +4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza +8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3" +# Serial: 1478 +# MD5 Fingerprint: 31:85:3c:62:94:97:63:b9:aa:fd:89:4e:af:6f:e0:cf +# SHA1 Fingerprint: 1f:49:14:f7:d8:74:95:1d:dd:ae:02:c0:be:fd:3a:2d:82:75:51:85 +# SHA256 Fingerprint: 18:f1:fc:7f:20:5d:f8:ad:dd:eb:7f:e0:07:dd:57:e3:af:37:5a:9c:4d:8d:73:54:6b:f4:f1:fe:d1:e1:8d:35 +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM +V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB +4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr +H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd +8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv +vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT +mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe +btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc +T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt +WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ +c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A +4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD +VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG +CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 +aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu +dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw +czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G +A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg +Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 +7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem +d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd ++LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B +4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN +t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x +DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 +k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s +zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j +Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT +mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK +4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust.net OU=Security Communication RootCA1 +# Subject: O=SECOM Trust.net OU=Security Communication RootCA1 +# Label: "Security Communication Root CA" +# Serial: 0 +# MD5 Fingerprint: f1:bc:63:6a:54:e0:b5:27:f5:cd:e7:1a:e3:4d:6e:4a +# SHA1 Fingerprint: 36:b1:2b:49:f9:81:9e:d7:4c:9e:bc:38:0f:c6:56:8f:5d:ac:b2:f7 +# SHA256 Fingerprint: e7:5e:72:ed:9f:56:0e:ec:6e:b4:80:00:73:a4:3f:c3:ad:19:19:5a:39:22:82:01:78:95:97:4a:99:02:6b:6c +-----BEGIN CERTIFICATE----- +MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEY +MBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21t +dW5pY2F0aW9uIFJvb3RDQTEwHhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5 +WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYD +VQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw8yl8 +9f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJ +DKaVv0uMDPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9 +Ms+k2Y7CI9eNqPPYJayX5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/N +QV3Is00qVUarH9oe4kA92819uZKAnDfdDJZkndwi92SL32HeFZRSFaB9UslLqCHJ +xrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2JChzAgMBAAGjPzA9MB0G +A1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYwDwYDVR0T +AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vG +kl3g0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfr +Uj94nK9NrvjVT8+amCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5 +Bw+SUEmK3TGXX8npN6o7WWWXlDLJs58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJU +JRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ6rBK+1YWc26sTfcioU+tHXot +RSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAiFL39vmwLAw== +-----END CERTIFICATE----- + +# Issuer: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Subject: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Label: "XRamp Global CA Root" +# Serial: 107108908803651509692980124233745014957 +# MD5 Fingerprint: a1:0b:44:b3:ca:10:d8:00:6e:9d:0f:d8:0f:92:0a:d1 +# SHA1 Fingerprint: b8:01:86:d1:eb:9c:86:a5:41:04:cf:30:54:f3:4c:52:b7:e5:58:c6 +# SHA256 Fingerprint: ce:cd:dc:90:50:99:d8:da:df:c5:b1:d2:09:b7:37:cb:e2:c1:8c:fb:2c:10:c0:ff:0b:cf:0d:32:86:fc:1a:a2 +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB +gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk +MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY +UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx +NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 +dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy +dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 +38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP +KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q +DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 +qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa +JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi +PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P +BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs +jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 +eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD +ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR +vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa +IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy +i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ +O+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- + +# Issuer: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Subject: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Label: "Go Daddy Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 91:de:06:25:ab:da:fd:32:17:0c:bb:25:17:2a:84:67 +# SHA1 Fingerprint: 27:96:ba:e6:3f:18:01:e2:77:26:1b:a0:d7:77:70:02:8f:20:ee:e4 +# SHA256 Fingerprint: c3:84:6b:f2:4b:9e:93:ca:64:27:4c:0e:c6:7c:1e:cc:5e:02:4f:fc:ac:d2:d7:40:19:35:0e:81:fe:54:6a:e4 +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh +MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE +YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 +MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo +ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg +MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN +ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA +PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w +wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi +EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY +avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ +YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE +sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h +/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 +IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD +ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy +OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P +TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER +dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf +ReYNnyicsbkqWletNw+vHX/bvZ8= +-----END CERTIFICATE----- + +# Issuer: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Subject: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Label: "Starfield Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 32:4a:4b:bb:c8:63:69:9b:be:74:9a:c6:dd:1d:46:24 +# SHA1 Fingerprint: ad:7e:1c:28:b0:64:ef:8f:60:03:40:20:14:c3:d0:e3:37:0e:b5:8a +# SHA256 Fingerprint: 14:65:fa:20:53:97:b8:76:fa:a6:f0:a9:95:8e:55:90:e4:0f:cc:7f:aa:4f:b7:c2:c8:67:75:21:fb:5f:b6:58 +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl +MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp +U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw +NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE +ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp +ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 +DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf +8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN ++lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 +X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa +K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA +1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G +A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR +zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 +YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD +bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w +DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 +L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D +eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp +VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY +WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root CA" +# Serial: 17154717934120587862167794914071425081 +# MD5 Fingerprint: 87:ce:0b:7b:2a:0e:49:00:e1:58:71:9b:37:a8:93:72 +# SHA1 Fingerprint: 05:63:b8:63:0d:62:d7:5a:bb:c8:ab:1e:4b:df:b5:a8:99:b2:4d:43 +# SHA256 Fingerprint: 3e:90:99:b5:01:5e:8f:48:6c:00:bc:ea:9d:11:1e:e7:21:fa:ba:35:5a:89:bc:f1:df:69:56:1e:3d:c6:32:5c +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c +JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP +mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ +wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 +VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ +AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB +AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun +pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC +dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf +fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm +NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx +H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root CA" +# Serial: 10944719598952040374951832963794454346 +# MD5 Fingerprint: 79:e4:a9:84:0d:7d:3a:96:d7:c0:4f:e2:43:4c:89:2e +# SHA1 Fingerprint: a8:98:5d:3a:65:e5:e5:c4:b2:d7:d6:6d:40:c6:dd:2f:b1:9c:54:36 +# SHA256 Fingerprint: 43:48:a0:e9:44:4c:78:cb:26:5e:05:8d:5e:89:44:b4:d8:4f:96:62:bd:26:db:25:7f:89:34:a4:43:c7:01:61 +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD +QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB +CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 +nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt +43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P +T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 +gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR +TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw +DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr +hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg +06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF +PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls +YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert High Assurance EV Root CA" +# Serial: 3553400076410547919724730734378100087 +# MD5 Fingerprint: d4:74:de:57:5c:39:b2:d3:9c:85:83:c5:c0:65:49:8a +# SHA1 Fingerprint: 5f:b7:ee:06:33:e2:59:db:ad:0c:4c:9a:e6:d3:8f:1a:61:c7:dc:25 +# SHA256 Fingerprint: 74:31:e5:f4:c3:c1:ce:46:90:77:4f:0b:61:e0:54:40:88:3b:a9:a0:1e:d0:0b:a6:ab:d7:80:6e:d3:b1:18:cf +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j +ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 +LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug +RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm ++9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW +PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM +xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB +Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 +hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg +EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA +FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec +nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z +eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF +hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 +Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep ++OkuE6N36B9K +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Label: "SwissSign Gold CA - G2" +# Serial: 13492815561806991280 +# MD5 Fingerprint: 24:77:d9:a8:91:d1:3b:fa:88:2d:c2:ff:f8:cd:33:93 +# SHA1 Fingerprint: d8:c5:38:8a:b7:30:1b:1b:6e:d4:7a:e6:45:25:3a:6f:9f:1a:27:61 +# SHA256 Fingerprint: 62:dd:0b:e9:b9:f5:0a:16:3e:a0:f8:e7:5c:05:3b:1e:ca:57:ea:55:c8:68:8f:64:7c:68:81:f2:c8:35:7b:95 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Label: "SwissSign Silver CA - G2" +# Serial: 5700383053117599563 +# MD5 Fingerprint: e0:06:a1:c9:7d:cf:c9:fc:0d:c0:56:75:96:d8:62:13 +# SHA1 Fingerprint: 9b:aa:e5:9f:56:ee:21:cb:43:5a:be:25:93:df:a7:f0:40:d1:1d:cb +# SHA256 Fingerprint: be:6c:4d:a2:bb:b9:ba:59:b6:f3:93:97:68:37:42:46:c3:c0:05:99:3f:a9:8f:02:0d:1d:ed:be:d4:8a:81:d5 +-----BEGIN CERTIFICATE----- +MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UE +BhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWdu +IFNpbHZlciBDQSAtIEcyMB4XDTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0Nlow +RzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMY +U3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A +MIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644N0Mv +Fz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7br +YT7QbNHm+/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieF +nbAVlDLaYQ1HTWBCrpJH6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH +6ATK72oxh9TAtvmUcXtnZLi2kUpCe2UuMGoM9ZDulebyzYLs2aFK7PayS+VFheZt +eJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5hqAaEuSh6XzjZG6k4sIN/ +c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5FZGkECwJ +MoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRH +HTBsROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTf +jNFusB3hB48IHpmccelM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb6 +5i/4z3GcRm25xBWNOHkDRUjvxF3XCO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOB +rDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU +F6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRBtjpbO8tFnb0c +wpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 +cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIB +AHPGgeAn0i0P4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShp +WJHckRE1qTodvBqlYJ7YH39FkWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9 +xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L3XWgwF15kIwb4FDm3jH+mHtwX6WQ +2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx/uNncqCxv1yL5PqZ +IseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFaDGi8 +aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2X +em1ZqSqPe97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQR +dAtq/gsD/KNVV4n+SsuuWxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/ +OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJDIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+ +hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ubDgEj8Z+7fNzcbBGXJbLy +tGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u +-----END CERTIFICATE----- + +# Issuer: CN=SecureTrust CA O=SecureTrust Corporation +# Subject: CN=SecureTrust CA O=SecureTrust Corporation +# Label: "SecureTrust CA" +# Serial: 17199774589125277788362757014266862032 +# MD5 Fingerprint: dc:32:c3:a7:6d:25:57:c7:68:09:9d:ea:2d:a9:a2:d1 +# SHA1 Fingerprint: 87:82:c6:c3:04:35:3b:cf:d2:96:92:d2:59:3e:7d:44:d9:34:ff:11 +# SHA256 Fingerprint: f1:c1:b5:0a:e5:a2:0d:d8:03:0e:c9:f6:bc:24:82:3d:d3:67:b5:25:57:59:b4:e7:1b:61:fc:e9:f7:37:5d:73 +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz +MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv +cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz +Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO +0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao +wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj +7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS +8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT +BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg +JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 +6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ +3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm +D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS +CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- + +# Issuer: CN=Secure Global CA O=SecureTrust Corporation +# Subject: CN=Secure Global CA O=SecureTrust Corporation +# Label: "Secure Global CA" +# Serial: 9751836167731051554232119481456978597 +# MD5 Fingerprint: cf:f4:27:0d:d4:ed:dc:65:16:49:6d:3d:da:bf:6e:de +# SHA1 Fingerprint: 3a:44:73:5a:e5:81:90:1f:24:86:61:46:1e:3b:9c:c4:5f:f5:3a:1b +# SHA256 Fingerprint: 42:00:f5:04:3a:c8:59:0e:bb:52:7d:20:9e:d1:50:30:29:fb:cb:d4:1c:a1:b5:06:ec:27:f1:5a:de:7d:ac:69 +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx +MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg +Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ +iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa +/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ +jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI +HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 +sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w +gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw +KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG +AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L +URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO +H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm +I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY +iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- + +# Issuer: CN=COMODO Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO Certification Authority O=COMODO CA Limited +# Label: "COMODO Certification Authority" +# Serial: 104350513648249232941998508985834464573 +# MD5 Fingerprint: 5c:48:dc:f7:42:72:ec:56:94:6d:1c:cc:71:35:80:75 +# SHA1 Fingerprint: 66:31:bf:9e:f7:4f:9e:b6:c9:d5:a6:0c:ba:6a:be:d1:f7:bd:ef:7b +# SHA256 Fingerprint: 0c:2c:d6:3d:f7:80:6f:a3:99:ed:e8:09:11:6b:57:5b:f8:79:89:f0:65:18:f9:80:8c:86:05:03:17:8b:af:66 +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB +gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV +BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw +MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl +YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P +RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 +UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI +2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 +Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp ++2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ +DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O +nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW +/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g +PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u +QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY +SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv +IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 +zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd +BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB +ZQ== +-----END CERTIFICATE----- + +# Issuer: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Label: "COMODO ECC Certification Authority" +# Serial: 41578283867086692638256921589707938090 +# MD5 Fingerprint: 7c:62:ff:74:9d:31:53:5e:68:4a:d5:78:aa:1e:bf:23 +# SHA1 Fingerprint: 9f:74:4e:9f:2b:4d:ba:ec:0f:31:2c:50:b6:56:3b:8e:2d:93:c3:11 +# SHA256 Fingerprint: 17:93:92:7a:06:14:54:97:89:ad:ce:2f:8f:34:f7:f0:b6:6d:0f:3a:e3:a3:b8:4d:21:ec:15:db:ba:4f:ad:c7 +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT +IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw +MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy +ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N +T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR +FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J +cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW +BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm +fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv +GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- + +# Issuer: CN=Certigna O=Dhimyotis +# Subject: CN=Certigna O=Dhimyotis +# Label: "Certigna" +# Serial: 18364802974209362175 +# MD5 Fingerprint: ab:57:a6:5b:7d:42:82:19:b5:d8:58:26:28:5e:fd:ff +# SHA1 Fingerprint: b1:2e:13:63:45:86:a4:6f:1a:b2:60:68:37:58:2d:c4:ac:fd:94:97 +# SHA256 Fingerprint: e3:b6:a2:db:2e:d7:ce:48:84:2f:7a:c5:32:41:c7:b7:1d:54:14:4b:fb:40:c1:1f:3f:1d:0b:42:f5:ee:a1:2d +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X +DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ +BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 +QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny +gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw +zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q +130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 +JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw +ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj +AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG +9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h +bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc +fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu +HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w +t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + +# Issuer: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Subject: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Label: "ePKI Root Certification Authority" +# Serial: 28956088682735189655030529057352760477 +# MD5 Fingerprint: 1b:2e:00:ca:26:06:90:3d:ad:fe:6f:15:68:d3:6b:b3 +# SHA1 Fingerprint: 67:65:0d:f1:7e:8e:7e:5b:82:40:a4:f4:56:4b:cf:e2:3d:69:c6:f0 +# SHA256 Fingerprint: c0:a6:f4:dc:63:a2:4b:fd:cf:54:ef:2a:6a:08:2a:0a:72:de:35:80:3e:2f:f5:ff:52:7a:e5:d8:72:06:df:d5 +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw +IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL +SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH +SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh +ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X +DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 +TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ +fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA +sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU +WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS +nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH +dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip +NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC +AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF +MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB +uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl +PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP +JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ +gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 +j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 +5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB +o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS +/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z +Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE +W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D +hNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- + +# Issuer: O=certSIGN OU=certSIGN ROOT CA +# Subject: O=certSIGN OU=certSIGN ROOT CA +# Label: "certSIGN ROOT CA" +# Serial: 35210227249154 +# MD5 Fingerprint: 18:98:c0:d6:e9:3a:fc:f9:b0:f5:0c:f7:4b:01:44:17 +# SHA1 Fingerprint: fa:b7:ee:36:97:26:62:fb:2d:b0:2a:f6:bf:03:fd:e8:7c:4b:2f:9b +# SHA256 Fingerprint: ea:a9:62:c4:fa:4a:6b:af:eb:e4:15:19:6d:35:1c:cd:88:8d:4f:53:f3:fa:8a:e6:d7:c4:66:a9:4e:60:42:bb +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT +AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD +QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP +MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do +0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ +UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d +RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ +OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv +JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C +AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O +BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ +LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY +MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ +44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I +Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw +i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN +9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- + +# Issuer: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Subject: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Label: "NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny" +# Serial: 80544274841616 +# MD5 Fingerprint: c5:a1:b7:ff:73:dd:d6:d7:34:32:18:df:fc:3c:ad:88 +# SHA1 Fingerprint: 06:08:3f:59:3f:15:a1:04:a0:69:a4:6b:a9:03:d0:06:b7:97:09:91 +# SHA256 Fingerprint: 6c:61:da:c3:a2:de:f0:31:50:6b:e0:36:d2:a6:fe:40:19:94:fb:d1:3d:f9:c8:d4:66:59:92:74:c4:46:ec:98 +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG +EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 +MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl +cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR +dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB +pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM +b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm +aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz +IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT +lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz +AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 +VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG +ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 +BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG +AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M +U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh +bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C ++C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F +uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 +XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Subject: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Label: "SecureSign RootCA11" +# Serial: 1 +# MD5 Fingerprint: b7:52:74:e2:92:b4:80:93:f2:75:e4:cc:d7:f2:ea:26 +# SHA1 Fingerprint: 3b:c4:9f:48:f8:f3:73:a0:9c:1e:bd:f8:5b:b1:c3:65:c7:d8:11:b3 +# SHA256 Fingerprint: bf:0f:ee:fb:9e:3a:58:1a:d5:f9:e9:db:75:89:98:57:43:d2:61:08:5c:4d:31:4f:6f:5d:72:59:aa:42:16:12 +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr +MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG +A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 +MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp +Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD +QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz +i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 +h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV +MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 +UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni +8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC +h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD +VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB +AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm +KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ +X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr +QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 +pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN +QSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- + +# Issuer: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Subject: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Label: "Microsec e-Szigno Root CA 2009" +# Serial: 14014712776195784473 +# MD5 Fingerprint: f8:49:f4:03:bc:44:2d:83:be:48:69:7d:29:64:fc:b1 +# SHA1 Fingerprint: 89:df:74:fe:5c:f4:0f:4a:80:f9:e3:37:7d:54:da:91:e1:01:31:8e +# SHA256 Fingerprint: 3c:5f:81:fe:a5:fa:b8:2c:64:bf:a2:ea:ec:af:cd:e8:e0:77:fc:86:20:a7:ca:e5:37:16:3d:f3:6e:db:f3:78 +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD +VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 +ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G +CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y +OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx +FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp +Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP +kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc +cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U +fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 +N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC +xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 ++rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM +Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG +SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h +mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk +ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c +2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t +HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Label: "GlobalSign Root CA - R3" +# Serial: 4835703278459759426209954 +# MD5 Fingerprint: c5:df:b8:49:ca:05:13:55:ee:2d:ba:1a:c3:3e:b0:28 +# SHA1 Fingerprint: d6:9b:56:11:48:f0:1c:77:c5:45:78:c1:09:26:df:5b:85:69:76:ad +# SHA256 Fingerprint: cb:b5:22:d7:b7:f1:27:ad:6a:01:13:86:5b:df:1c:d4:10:2e:7d:07:59:af:63:5a:7c:f4:72:0d:c9:63:c5:3b +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 +MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 +RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT +gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm +KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd +QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ +XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o +LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU +RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp +jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK +6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX +mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs +Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH +WD9f +-----END CERTIFICATE----- + +# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" +# Serial: 6047274297262753887 +# MD5 Fingerprint: 73:3a:74:7a:ec:bb:a3:96:a6:c2:e4:e2:c8:9b:c0:c3 +# SHA1 Fingerprint: ae:c5:fb:3f:c8:e1:bf:c4:e5:4f:03:07:5a:9a:e8:00:b7:f7:b6:fa +# SHA256 Fingerprint: 04:04:80:28:bf:1f:28:64:d4:8f:9a:d4:d8:32:94:36:6a:82:88:56:55:3f:3b:14:30:3f:90:14:7f:5d:40:ef +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UE +BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h +cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEy +MzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg +Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 +thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM +cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG +L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i +NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h +X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b +m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy +Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja +EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T +KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF +6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh +OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1UdEwEB/wQIMAYBAf8CAQEwDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNHDhpkLzCBpgYD +VR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp +cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBv +ACAAZABlACAAbABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBl +AGwAbwBuAGEAIAAwADgAMAAxADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF +661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx51tkljYyGOylMnfX40S2wBEqgLk9 +am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qkR71kMrv2JYSiJ0L1 +ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaPT481 +PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS +3a/DTg4fJl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5k +SeTy36LssUzAKh3ntLFlosS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF +3dvd6qJ2gHN99ZwExEWN57kci57q13XRcrHedUTnQn3iV2t93Jm8PYMo6oCTjcVM +ZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoRsaS8I8nkvof/uZS2+F0g +StRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTDKCOM/icz +Q0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQB +jLMi6Et8Vcad+qMUu2WFbm5PEn4KPJ2V +-----END CERTIFICATE----- + +# Issuer: CN=Izenpe.com O=IZENPE S.A. +# Subject: CN=Izenpe.com O=IZENPE S.A. +# Label: "Izenpe.com" +# Serial: 917563065490389241595536686991402621 +# MD5 Fingerprint: a6:b0:cd:85:80:da:5c:50:34:a3:39:90:2f:55:67:73 +# SHA1 Fingerprint: 2f:78:3d:25:52:18:a7:4a:65:39:71:b5:2c:a2:9c:45:15:6f:e9:19 +# SHA256 Fingerprint: 25:30:cc:8e:98:32:15:02:ba:d9:6f:9b:1f:ba:1b:09:9e:2d:29:9e:0f:45:48:bb:91:4f:36:3b:c0:d4:53:1f +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Subject: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Label: "Go Daddy Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 80:3a:bc:22:c1:e6:fb:8d:9b:3b:27:4a:32:1b:9a:01 +# SHA1 Fingerprint: 47:be:ab:c9:22:ea:e8:0e:78:78:34:62:a7:9f:45:c2:54:fd:e6:8b +# SHA256 Fingerprint: 45:14:0b:32:47:eb:9c:c8:c5:b4:f0:d7:b5:30:91:f7:32:92:08:9e:6e:5a:63:e2:74:9d:d3:ac:a9:19:8e:da +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT +EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp +ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz +NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH +EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE +AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD +E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH +/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy +DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh +GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR +tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA +AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX +WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu +9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr +gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo +2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI +4uJEvlz36hz1 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: d6:39:81:c6:52:7e:96:69:fc:fc:ca:66:ed:05:f2:96 +# SHA1 Fingerprint: b5:1c:06:7c:ee:2b:0c:3d:f8:55:ab:2d:92:f4:fe:39:d4:e7:0f:0e +# SHA256 Fingerprint: 2c:e1:cb:0b:f9:d2:f9:e1:02:99:3f:be:21:51:52:c3:b2:dd:0c:ab:de:1c:68:e5:31:9b:83:91:54:db:b7:f5 +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs +ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw +MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj +aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp +Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg +nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 +HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N +Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN +dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 +HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G +CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU +sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 +4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg +8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 +mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Services Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 17:35:74:af:7b:61:1c:eb:f4:f9:3c:e2:ee:40:f9:a2 +# SHA1 Fingerprint: 92:5a:8f:8d:2c:6d:04:e0:66:5f:59:6a:ff:22:d8:63:e8:25:6f:3f +# SHA256 Fingerprint: 56:8d:69:05:a2:c8:87:08:a4:b3:02:51:90:ed:cf:ed:b1:97:4a:60:6a:13:c6:e5:29:0f:cb:2a:e6:3e:da:b5 +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs +ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD +VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy +ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy +dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p +OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 +8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K +Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe +hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk +6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q +AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI +bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB +ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z +qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn +0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN +sSi6 +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Commercial O=AffirmTrust +# Subject: CN=AffirmTrust Commercial O=AffirmTrust +# Label: "AffirmTrust Commercial" +# Serial: 8608355977964138876 +# MD5 Fingerprint: 82:92:ba:5b:ef:cd:8a:6f:a6:3d:55:f9:84:f6:d6:b7 +# SHA1 Fingerprint: f9:b5:b6:32:45:5f:9c:be:ec:57:5f:80:dc:e9:6e:2c:c7:b2:78:b7 +# SHA256 Fingerprint: 03:76:ab:1d:54:c5:f9:80:3c:e4:b2:e2:01:a0:ee:7e:ef:7b:57:b6:36:e8:a9:3c:9b:8d:48:60:c9:6f:5f:a7 +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP +Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr +ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL +MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 +yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr +VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ +nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG +XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj +vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt +Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g +N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC +nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Networking O=AffirmTrust +# Subject: CN=AffirmTrust Networking O=AffirmTrust +# Label: "AffirmTrust Networking" +# Serial: 8957382827206547757 +# MD5 Fingerprint: 42:65:ca:be:01:9a:9a:4c:a9:8c:41:49:cd:c0:d5:7f +# SHA1 Fingerprint: 29:36:21:02:8b:20:ed:02:f5:66:c5:32:d1:d6:ed:90:9f:45:00:2f +# SHA256 Fingerprint: 0a:81:ec:5a:92:97:77:f1:45:90:4a:f3:8d:5d:50:9f:66:b5:e2:c5:8f:cd:b5:31:05:8b:0e:17:f3:f0:b4:1b +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y +YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua +kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL +QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp +6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG +yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i +QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO +tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu +QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ +Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u +olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 +x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium O=AffirmTrust +# Subject: CN=AffirmTrust Premium O=AffirmTrust +# Label: "AffirmTrust Premium" +# Serial: 7893706540734352110 +# MD5 Fingerprint: c4:5d:0e:48:b6:ac:28:30:4e:0a:bc:f9:38:16:87:57 +# SHA1 Fingerprint: d8:a6:33:2c:e0:03:6f:b1:85:f6:63:4f:7d:6a:06:65:26:32:28:27 +# SHA256 Fingerprint: 70:a7:3f:7f:37:6b:60:07:42:48:90:45:34:b1:14:82:d5:bf:0e:69:8e:cc:49:8d:f5:25:77:eb:f2:e9:3b:9a +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz +dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG +A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U +cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf +qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ +JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ ++jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS +s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 +HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 +70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG +V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S +qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S +5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia +C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX +OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE +FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 +KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B +8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ +MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc +0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ +u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF +u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH +YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 +GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO +RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e +KeC2uAloGRwYQw== +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium ECC O=AffirmTrust +# Subject: CN=AffirmTrust Premium ECC O=AffirmTrust +# Label: "AffirmTrust Premium ECC" +# Serial: 8401224907861490260 +# MD5 Fingerprint: 64:b0:09:55:cf:b1:d5:99:e2:be:13:ab:a6:5d:ea:4d +# SHA1 Fingerprint: b8:23:6b:00:2f:1d:16:86:53:01:55:6c:11:a4:37:ca:eb:ff:c3:bb +# SHA256 Fingerprint: bd:71:fd:f6:da:97:e4:cf:62:d1:64:7a:dd:25:81:b0:7d:79:ad:f8:39:7e:b4:ec:ba:9c:5e:84:88:82:14:23 +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC +VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ +cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ +BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt +VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D +0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 +ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G +A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs +aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I +flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA" +# Serial: 279744 +# MD5 Fingerprint: d5:e9:81:40:c5:18:69:fc:46:2c:89:75:62:0f:aa:78 +# SHA1 Fingerprint: 07:e0:32:e0:20:b7:2c:3f:19:2f:06:28:a2:59:3a:19:a7:0f:06:9e +# SHA256 Fingerprint: 5c:58:46:8d:55:f5:8e:49:7e:74:39:82:d2:b5:00:10:b6:d1:65:37:4a:cf:83:a7:d4:a3:2d:b7:68:c4:40:8e +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM +MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D +ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU +cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 +WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg +Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw +IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH +UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM +TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU +BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM +kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x +AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV +HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y +sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL +I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 +J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY +VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Label: "TWCA Root Certification Authority" +# Serial: 1 +# MD5 Fingerprint: aa:08:8f:f6:f9:7b:b7:f2:b1:a7:1e:9b:ea:ea:bd:79 +# SHA1 Fingerprint: cf:9e:87:6d:d3:eb:fc:42:26:97:a3:b5:a3:7a:a0:76:a9:06:23:48 +# SHA256 Fingerprint: bf:d8:8f:e1:10:1c:41:ae:3e:80:1b:f8:be:56:35:0e:e9:ba:d1:a6:b9:bd:51:5e:dc:5c:6d:5b:87:11:ac:44 +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES +MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU +V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz +WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO +LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE +AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH +K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX +RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z +rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx +3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq +hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC +MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls +XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D +lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn +aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ +YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Subject: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Label: "Security Communication RootCA2" +# Serial: 0 +# MD5 Fingerprint: 6c:39:7d:a4:0e:55:59:b2:3f:d6:41:b1:12:50:de:43 +# SHA1 Fingerprint: 5f:3b:8c:f2:f8:10:b3:7d:78:b4:ce:ec:19:19:c3:73:34:b9:c7:74 +# SHA256 Fingerprint: 51:3b:2c:ec:b8:10:d4:cd:e5:dd:85:39:1a:df:c6:c2:dd:60:d8:7b:b7:36:d2:b5:21:48:4a:a4:7a:0e:be:f6 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX +DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy +dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj +YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV +OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr +zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM +VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ +hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO +ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw +awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs +OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 +DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF +coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc +okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 +t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy +1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ +SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- + +# Issuer: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Subject: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Label: "Actalis Authentication Root CA" +# Serial: 6271844772424770508 +# MD5 Fingerprint: 69:c1:0d:4f:07:a3:1b:c3:fe:56:3d:04:bc:11:f6:a6 +# SHA1 Fingerprint: f3:73:b3:87:06:5a:28:84:8a:f2:f3:4a:ce:19:2b:dd:c7:8e:9c:ac +# SHA256 Fingerprint: 55:92:60:84:ec:96:3a:64:b9:6e:2a:be:01:ce:0b:a8:6a:64:fb:fe:bc:c7:aa:b5:af:c1:55:b3:7f:d7:60:66 +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE +BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w +MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC +SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 +ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv +UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX +4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 +KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ +gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb +rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ +51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F +be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe +KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F +v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn +fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 +jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz +ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL +e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 +jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz +WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V +SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j +pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX +X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok +fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R +K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU +ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU +LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT +LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 2 Root CA" +# Serial: 2 +# MD5 Fingerprint: 46:a7:d2:fe:45:fb:64:5a:a8:59:90:9b:78:44:9b:29 +# SHA1 Fingerprint: 49:0a:75:74:de:87:0a:47:fe:58:ee:f6:c7:6b:eb:c6:0b:12:40:99 +# SHA256 Fingerprint: 9a:11:40:25:19:7c:5b:b9:5d:94:e6:3d:55:cd:43:79:08:47:b6:46:b2:3c:df:11:ad:a4:a0:0e:ff:15:fb:48 +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr +6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV +L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 +1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx +MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ +QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB +arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr +Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi +FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS +P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN +9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz +uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h +9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t +OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo ++fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 +KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 +DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us +H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ +I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 +5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h +3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz +Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 3 Root CA" +# Serial: 2 +# MD5 Fingerprint: 3d:3b:18:9e:2c:64:5a:e8:d5:88:ce:0e:f9:37:c2:ec +# SHA1 Fingerprint: da:fa:f7:fa:66:84:ec:06:8f:14:50:bd:c7:c2:81:a5:bc:a9:64:57 +# SHA256 Fingerprint: ed:f7:eb:bc:a2:7a:2a:38:4d:38:7b:7d:40:10:c6:66:e2:ed:b4:84:3e:4c:29:b4:ae:1d:5b:93:32:e6:b2:4d +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y +ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E +N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 +tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX +0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c +/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X +KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY +zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS +O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D +34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP +K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv +Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj +QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS +IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 +HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa +O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv +033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u +dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE +kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 +3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD +u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq +4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 3" +# Serial: 1 +# MD5 Fingerprint: ca:fb:40:a8:4e:39:92:8a:1d:fe:8e:2f:c4:27:ea:ef +# SHA1 Fingerprint: 55:a6:72:3e:cb:f2:ec:cd:c3:23:74:70:19:9d:2a:be:11:e3:81:d1 +# SHA256 Fingerprint: fd:73:da:d3:1c:64:4f:f1:b4:3b:ef:0c:cd:da:96:71:0b:9c:d9:87:5e:ca:7e:31:70:7a:f3:e9:6d:52:2b:bd +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN +8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ +RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 +hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 +ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM +EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 +A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy +WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ +1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 +6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT +91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p +TpPDpFQUWw== +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 2009" +# Serial: 623603 +# MD5 Fingerprint: cd:e0:25:69:8d:47:ac:9c:89:35:90:f7:fd:51:3d:2f +# SHA1 Fingerprint: 58:e8:ab:b0:36:15:33:fb:80:f7:9b:1b:6d:29:d3:ff:8d:5f:00:f0 +# SHA256 Fingerprint: 49:e7:a4:42:ac:f0:ea:62:87:05:00:54:b5:25:64:b6:50:e4:f4:9e:42:e3:48:d6:aa:38:e0:39:e9:57:b1:c1 +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha +ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM +HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 +UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 +tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R +ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM +lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp +/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G +A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G +A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj +dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy +MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl +cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js +L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL +BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni +acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K +zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 +PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y +Johw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 EV 2009" +# Serial: 623604 +# MD5 Fingerprint: aa:c6:43:2c:5e:2d:cd:c4:34:c0:50:4f:11:02:4f:b6 +# SHA1 Fingerprint: 96:c9:1b:0b:95:b4:10:98:42:fa:d0:d8:22:79:fe:60:fa:b9:16:83 +# SHA256 Fingerprint: ee:c5:49:6b:98:8c:e9:86:25:b9:34:09:2e:ec:29:08:be:d0:b0:f3:16:c2:d4:73:0c:84:ea:f1:f3:d3:48:81 +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw +NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV +BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn +ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 +3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z +qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR +p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 +HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw +ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea +HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw +Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh +c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E +RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt +dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku +Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp +3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF +CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na +xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX +KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- + +# Issuer: CN=CA Disig Root R2 O=Disig a.s. +# Subject: CN=CA Disig Root R2 O=Disig a.s. +# Label: "CA Disig Root R2" +# Serial: 10572350602393338211 +# MD5 Fingerprint: 26:01:fb:d8:27:a7:17:9a:45:54:38:1a:43:01:3b:03 +# SHA1 Fingerprint: b5:61:eb:ea:a4:de:e4:25:4b:69:1a:98:a5:57:47:c2:34:c7:d9:71 +# SHA256 Fingerprint: e2:3d:4a:03:6d:7b:70:e9:f5:95:b1:42:20:79:d2:b9:1e:df:bb:1f:b6:51:a0:63:3e:aa:8a:9d:c5:f8:07:03 +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV +BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu +MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy +MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx +EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw +ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe +NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH +PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I +x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe +QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR +yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO +QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 +H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ +QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD +i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs +nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 +rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI +hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf +GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb +lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka ++elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal +TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i +nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 +gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr +G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os +zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x +L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- + +# Issuer: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Subject: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Label: "ACCVRAIZ1" +# Serial: 6828503384748696800 +# MD5 Fingerprint: d0:a0:5a:ee:05:b6:09:94:21:a1:7d:f1:b2:29:82:02 +# SHA1 Fingerprint: 93:05:7a:88:15:c6:4f:ce:88:2f:fa:91:16:52:28:78:bc:53:64:17 +# SHA256 Fingerprint: 9a:6e:c0:12:e1:a7:da:9d:be:34:19:4d:47:8a:d7:c0:db:18:22:fb:07:1d:f1:29:81:49:6e:d1:04:38:41:13 +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE +AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw +CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ +BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND +VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb +qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY +HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo +G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA +lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr +IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ +0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH +k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 +4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO +m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa +cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl +uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI +KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls +ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG +AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT +VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG +CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA +cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA +QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA +7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA +cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA +QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA +czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu +aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt +aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud +DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF +BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp +D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU +JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m +AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD +vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms +tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH +7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA +h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF +d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H +pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA Global Root CA" +# Serial: 3262 +# MD5 Fingerprint: f9:03:7e:cf:e6:9e:3c:73:7a:2a:90:07:69:ff:2b:96 +# SHA1 Fingerprint: 9c:bb:48:53:f6:a4:f6:d3:52:a4:e8:32:52:55:60:13:f5:ad:af:65 +# SHA256 Fingerprint: 59:76:90:07:f7:68:5d:0f:cd:50:87:2f:9f:95:d5:75:5a:5b:2b:45:7d:81:f3:69:2b:61:0a:98:67:2f:0e:1b +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx +EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT +VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 +NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT +B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF +10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz +0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh +MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH +zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc +46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 +yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi +laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP +oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA +BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE +qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm +4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL +1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF +H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo +RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ +nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh +15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW +6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW +nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j +wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz +aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy +KwbQBM0= +-----END CERTIFICATE----- + +# Issuer: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Subject: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Label: "TeliaSonera Root CA v1" +# Serial: 199041966741090107964904287217786801558 +# MD5 Fingerprint: 37:41:49:1b:18:56:9a:26:f5:ad:c2:66:fb:40:a5:4c +# SHA1 Fingerprint: 43:13:bb:96:f1:d5:86:9b:c1:4e:6a:92:f6:cf:f6:34:69:87:82:37 +# SHA256 Fingerprint: dd:69:36:fe:21:f8:f0:77:c1:23:a1:a5:21:c1:22:24:f7:22:55:b7:3e:03:a7:26:06:93:e8:a2:4b:0f:a3:89 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw +NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv +b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD +VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F +VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 +7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X +Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ +/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs +81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm +dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe +Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu +sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 +pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs +slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ +arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD +VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG +9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl +dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj +TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed +Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 +Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI +OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 +vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW +t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn +HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx +SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 2" +# Serial: 1 +# MD5 Fingerprint: 2b:9b:9e:e4:7b:6c:1f:00:72:1a:cc:c1:77:79:df:6a +# SHA1 Fingerprint: 59:0d:2d:7d:88:4f:40:2e:61:7e:a5:62:32:17:65:cf:17:d8:94:e9 +# SHA256 Fingerprint: 91:e2:f5:78:8d:58:10:eb:a7:ba:58:73:7d:e1:54:8a:8e:ca:cd:01:45:98:bc:0b:14:3e:04:1b:17:05:25:52 +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd +AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC +FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi +1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq +jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ +wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ +WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy +NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC +uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw +IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 +g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP +BSeOE6Fuwg== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot 2011 O=Atos +# Subject: CN=Atos TrustedRoot 2011 O=Atos +# Label: "Atos TrustedRoot 2011" +# Serial: 6643877497813316402 +# MD5 Fingerprint: ae:b9:c4:32:4b:ac:7f:5d:66:cc:77:94:bb:2a:77:56 +# SHA1 Fingerprint: 2b:b1:f5:3e:55:0c:1d:c5:f1:d4:e6:b7:6a:46:4b:55:06:02:ac:21 +# SHA256 Fingerprint: f3:56:be:a2:44:b7:a9:1e:b3:5d:53:ca:9a:d7:86:4a:ce:01:8e:2d:35:d5:f8:f9:6d:df:68:a6:f4:1a:a4:74 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE +AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG +EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM +FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC +REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp +Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM +VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ +SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ +4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L +cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi +eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG +A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 +DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j +vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP +DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc +maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D +lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv +KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 1 G3" +# Serial: 687049649626669250736271037606554624078720034195 +# MD5 Fingerprint: a4:bc:5b:3f:fe:37:9a:fa:64:f0:e2:fa:05:3d:0b:ab +# SHA1 Fingerprint: 1b:8e:ea:57:96:29:1a:c9:39:ea:b8:0a:81:1a:73:73:c0:93:79:67 +# SHA256 Fingerprint: 8a:86:6f:d1:b2:76:b5:7e:57:8e:92:1c:65:82:8a:2b:ed:58:e9:f2:f2:88:05:41:34:b7:f1:f4:bf:c9:cc:74 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 +MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV +wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe +rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 +68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh +4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp +UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o +abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc +3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G +KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt +hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO +Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt +zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD +ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 +cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN +qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 +YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv +b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 +8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k +NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj +ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp +q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt +nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2 G3" +# Serial: 390156079458959257446133169266079962026824725800 +# MD5 Fingerprint: af:0c:86:6e:bf:40:2d:7f:0b:3e:12:50:ba:12:3d:06 +# SHA1 Fingerprint: 09:3c:61:f3:8b:8b:dc:7d:55:df:75:38:02:05:00:e1:25:f5:c8:36 +# SHA256 Fingerprint: 8f:e4:fb:0a:f9:3a:4d:0d:67:db:0b:eb:b2:3e:37:c7:1b:f3:25:dc:bc:dd:24:0e:a0:4d:af:58:b4:7e:18:40 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 +MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf +qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW +n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym +c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ +O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 +o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j +IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq +IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz +8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh +vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l +7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG +cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD +ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC +roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga +W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n +lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE ++V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV +csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd +dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg +KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM +HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 +WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3 G3" +# Serial: 268090761170461462463995952157327242137089239581 +# MD5 Fingerprint: df:7d:b9:ad:54:6f:68:a1:df:89:57:03:97:43:b0:d7 +# SHA1 Fingerprint: 48:12:bd:92:3c:a8:c4:39:06:e7:30:6d:27:96:e6:a4:cf:22:2e:7d +# SHA256 Fingerprint: 88:ef:81:de:20:2e:b0:18:45:2e:43:f8:64:72:5c:ea:5f:bd:1f:c2:d9:d2:05:73:07:09:c5:d8:b8:69:0f:46 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 +MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR +/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu +FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR +U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c +ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR +FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k +A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw +eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl +sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp +VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q +A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ +ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD +ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI +FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv +oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg +u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP +0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf +3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl +8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ +DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN +PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ +ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G2" +# Serial: 15385348160840213938643033620894905419 +# MD5 Fingerprint: 92:38:b9:f8:63:24:82:65:2c:57:33:e6:fe:81:8f:9d +# SHA1 Fingerprint: a1:4b:48:d9:43:ee:0a:0e:40:90:4f:3c:e0:a4:c0:91:93:51:5d:3f +# SHA256 Fingerprint: 7d:05:eb:b6:82:33:9f:8c:94:51:ee:09:4e:eb:fe:fa:79:53:a1:14:ed:b2:f4:49:49:45:2f:ab:7d:2f:c1:85 +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA +n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc +biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp +EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA +bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu +YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW +BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI +QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I +0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni +lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 +B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv +ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G3" +# Serial: 15459312981008553731928384953135426796 +# MD5 Fingerprint: 7c:7f:65:31:0c:81:df:8d:ba:3e:99:e2:5c:ad:6e:fb +# SHA1 Fingerprint: f5:17:a2:4f:9a:48:c6:c9:f8:a2:00:26:9f:dc:0f:48:2c:ab:30:89 +# SHA256 Fingerprint: 7e:37:cb:8b:4c:47:09:0c:ab:36:55:1b:a6:f4:5d:b8:40:68:0f:ba:16:6a:95:2d:b1:00:71:7f:43:05:3f:c2 +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg +RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf +Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q +RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD +AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY +JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv +6pZjamVFkpUBtA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G2" +# Serial: 4293743540046975378534879503202253541 +# MD5 Fingerprint: e4:a6:8a:c8:54:ac:52:42:46:0a:fd:72:48:1b:2a:44 +# SHA1 Fingerprint: df:3c:24:f9:bf:d6:66:76:1b:26:80:73:fe:06:d1:cc:8d:4f:82:a4 +# SHA256 Fingerprint: cb:3c:cb:b7:60:31:e5:e0:13:8f:8d:d3:9a:23:f9:de:47:ff:c3:5e:43:c1:14:4c:ea:27:d4:6a:5a:b1:cb:5f +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH +MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI +2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx +1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ +q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz +tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ +vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV +5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY +1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 +NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG +Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 +8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe +pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G3" +# Serial: 7089244469030293291760083333884364146 +# MD5 Fingerprint: f5:5d:a4:50:a5:fb:28:7e:1e:0f:0d:cc:96:57:56:ca +# SHA1 Fingerprint: 7e:04:de:89:6a:3e:66:6d:00:e6:87:d3:3f:fa:d9:3b:e8:3d:34:9e +# SHA256 Fingerprint: 31:ad:66:48:f8:10:41:38:c7:38:f3:9e:a4:32:01:33:39:3e:3a:18:cc:02:29:6e:f9:7c:2a:c9:ef:67:31:d0 +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe +Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw +EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x +IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG +fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO +Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd +BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx +AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ +oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 +sycX +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Trusted Root G4" +# Serial: 7451500558977370777930084869016614236 +# MD5 Fingerprint: 78:f2:fc:aa:60:1f:2f:b4:eb:c9:37:ba:53:2e:75:49 +# SHA1 Fingerprint: dd:fb:16:cd:49:31:c9:73:a2:03:7d:3f:c8:3a:4d:7d:77:5d:05:e4 +# SHA256 Fingerprint: 55:2f:7b:dc:f1:a7:af:9e:6c:e6:72:01:7f:4f:12:ab:f7:72:40:c7:8e:76:1a:c2:03:d1:d9:d2:0a:c8:99:88 +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg +RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y +ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If +xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV +ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO +DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ +jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ +CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi +EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM +fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY +uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK +chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t +9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 +SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd ++SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc +fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa +sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N +cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N +0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie +4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI +r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 +/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm +gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ +-----END CERTIFICATE----- + +# Issuer: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Label: "COMODO RSA Certification Authority" +# Serial: 101909084537582093308941363524873193117 +# MD5 Fingerprint: 1b:31:b0:71:40:36:cc:14:36:91:ad:c4:3e:fd:ec:18 +# SHA1 Fingerprint: af:e5:d2:44:a8:d1:19:42:30:ff:47:9f:e2:f8:97:bb:cd:7a:8c:b4 +# SHA256 Fingerprint: 52:f0:e1:c4:e5:8e:c6:29:29:1b:60:31:7f:07:46:71:b8:5d:7e:a8:0d:5b:07:27:34:63:53:4b:32:b4:02:34 +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB +hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV +BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT +EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR +6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X +pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC +9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV +/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf +Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z ++pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w +qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah +SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC +u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf +Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq +crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl +wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM +4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV +2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna +FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ +CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK +boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke +jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL +S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb +QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl +0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB +NVOFBkpdn627G190 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Label: "USERTrust RSA Certification Authority" +# Serial: 2645093764781058787591871645665788717 +# MD5 Fingerprint: 1b:fe:69:d1:91:b7:19:33:a3:72:a8:0f:e1:55:e5:b5 +# SHA1 Fingerprint: 2b:8f:1b:57:33:0d:bb:a2:d0:7a:6c:51:f7:0e:e9:0d:da:b9:ad:8e +# SHA256 Fingerprint: e7:93:c9:b0:2f:d8:aa:13:e2:1c:31:22:8a:cc:b0:81:19:64:3b:74:9c:89:89:64:b1:74:6d:46:c3:d4:cb:d2 +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw +MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV +BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B +3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY +tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ +Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 +VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT +79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 +c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT +Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l +c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee +UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE +Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF +Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO +VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 +ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs +8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR +iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze +Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ +XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ +qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB +VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB +L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG +jjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Label: "USERTrust ECC Certification Authority" +# Serial: 123013823720199481456569720443997572134 +# MD5 Fingerprint: fa:68:bc:d9:b5:7f:ad:fd:c9:1d:06:83:28:cc:24:c1 +# SHA1 Fingerprint: d1:cb:ca:5d:b2:d5:2a:7f:69:3b:67:4d:e5:f0:5a:1d:0c:95:7d:f0 +# SHA256 Fingerprint: 4f:f4:60:d5:4b:9c:86:da:bf:bc:fc:57:12:e0:40:0d:2b:ed:3f:bc:4d:4f:bd:aa:86:e0:6a:dc:d2:a9:ad:7a +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl +eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT +JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT +Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg +VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo +I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng +o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G +A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB +zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW +RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Label: "GlobalSign ECC Root CA - R5" +# Serial: 32785792099990507226680698011560947931244 +# MD5 Fingerprint: 9f:ad:3b:1c:02:1e:8a:ba:17:74:38:81:0c:a2:bc:08 +# SHA1 Fingerprint: 1f:24:c6:30:cd:a4:18:ef:20:69:ff:ad:4f:dd:5f:46:3a:1b:69:aa +# SHA256 Fingerprint: 17:9f:bc:14:8a:3d:d0:0f:d2:4e:a1:34:58:cc:43:bf:a7:f5:9c:81:82:d7:83:a5:13:f6:eb:ec:10:0c:89:24 +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc +8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke +hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI +KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg +515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO +xwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Label: "IdenTrust Commercial Root CA 1" +# Serial: 13298821034946342390520003877796839426 +# MD5 Fingerprint: b3:3e:77:73:75:ee:a0:d3:e3:7e:49:63:49:59:bb:c7 +# SHA1 Fingerprint: df:71:7e:aa:4a:d9:4e:c9:55:84:99:60:2d:48:de:5f:bc:f0:3a:25 +# SHA256 Fingerprint: 5d:56:49:9b:e4:d2:e0:8b:cf:ca:d0:8a:3e:38:72:3d:50:50:3b:de:70:69:48:e4:2f:55:60:30:19:e5:28:ae +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu +VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw +MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw +JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT +3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU ++ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp +S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 +bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi +T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL +vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK +Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK +dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT +c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv +l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N +iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD +ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt +LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 +nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 ++wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK +W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT +AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq +l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG +4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ +mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A +7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Label: "IdenTrust Public Sector Root CA 1" +# Serial: 13298821034946342390521976156843933698 +# MD5 Fingerprint: 37:06:a5:b0:fc:89:9d:ba:f4:6b:8c:1a:64:cd:d5:ba +# SHA1 Fingerprint: ba:29:41:60:77:98:3f:f4:f3:ef:f2:31:05:3b:2e:ea:6d:4d:45:fd +# SHA256 Fingerprint: 30:d0:89:5a:9a:44:8a:26:20:91:63:55:22:d1:f5:20:10:b5:86:7a:ca:e1:2c:78:ef:95:8f:d4:f4:38:9f:2f +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu +VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN +MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 +MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 +ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy +RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS +bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF +/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R +3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw +EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy +9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V +GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ +2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV +WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD +W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN +AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV +DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 +TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G +lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW +mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df +WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 ++bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ +tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA +GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv +8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G2" +# Serial: 1246989352 +# MD5 Fingerprint: 4b:e2:c9:91:96:65:0c:f4:0e:5a:93:92:a0:0a:fe:b2 +# SHA1 Fingerprint: 8c:f4:27:fd:79:0c:3a:d1:66:06:8d:e8:1e:57:ef:bb:93:22:72:d4 +# SHA256 Fingerprint: 43:df:57:74:b0:3e:7f:ef:5f:e4:0d:93:1a:7b:ed:f1:bb:2e:6b:42:73:8c:4e:6d:38:41:10:3d:3a:a7:f3:39 +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 +cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs +IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz +dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy +NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu +dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt +dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 +aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T +RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN +cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW +wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 +U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 +jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN +BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ +jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v +1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R +nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH +VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - EC1" +# Serial: 51543124481930649114116133369 +# MD5 Fingerprint: b6:7e:1d:f0:58:c5:49:6c:24:3b:3d:ed:98:18:ed:bc +# SHA1 Fingerprint: 20:d8:06:40:df:9b:25:f5:12:25:3a:11:ea:f7:59:8a:eb:14:b5:47 +# SHA256 Fingerprint: 02:ed:0e:b2:8c:14:da:45:16:5c:56:67:91:70:0d:64:51:d7:fb:56:f0:b2:ab:1d:3b:8e:b0:70:e5:6e:df:f5 +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG +A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 +d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu +dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq +RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy +MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD +VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 +L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g +Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi +A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt +ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH +Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O +BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC +R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX +hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- + +# Issuer: CN=CFCA EV ROOT O=China Financial Certification Authority +# Subject: CN=CFCA EV ROOT O=China Financial Certification Authority +# Label: "CFCA EV ROOT" +# Serial: 407555286 +# MD5 Fingerprint: 74:e1:b6:ed:26:7a:7a:44:30:33:94:ab:7b:27:81:30 +# SHA1 Fingerprint: e2:b8:29:4b:55:84:ab:6b:58:c2:90:46:6c:ac:3f:b8:39:8f:84:83 +# SHA256 Fingerprint: 5c:c3:d7:8e:4e:1d:5e:45:54:7a:04:e6:87:3e:64:f9:0c:f9:53:6d:1c:cc:2e:f8:00:f3:55:c4:c5:fd:70:fd +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD +TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y +aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx +MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j +aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP +T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 +sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL +TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 +/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp +7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz +EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt +hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP +a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot +aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg +TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV +PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv +cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL +tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd +BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT +ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL +jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS +ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy +P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 +xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d +Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN +5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe +/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z +AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ +5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GB CA" +# Serial: 157768595616588414422159278966750757568 +# MD5 Fingerprint: a4:eb:b9:61:28:2e:b7:2f:98:b0:35:26:90:99:51:1d +# SHA1 Fingerprint: 0f:f9:40:76:18:d3:d7:6a:4b:98:f0:a8:35:9e:0c:fd:27:ac:cc:ed +# SHA256 Fingerprint: 6b:9c:08:e8:6e:b0:f7:67:cf:ad:65:cd:98:b6:21:49:e5:49:4a:67:f5:84:5e:7b:d1:ed:01:9f:27:b8:6b:d6 +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt +MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg +Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i +YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x +CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG +b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh +bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 +HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx +WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX +1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk +u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P +99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r +M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB +BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh +cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 +gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO +ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf +aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- + +# Issuer: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Subject: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Label: "SZAFIR ROOT CA2" +# Serial: 357043034767186914217277344587386743377558296292 +# MD5 Fingerprint: 11:64:c1:89:b0:24:b1:8c:b1:07:7e:89:9e:51:9e:99 +# SHA1 Fingerprint: e2:52:fa:95:3f:ed:db:24:60:bd:6e:28:f3:9c:cc:cf:5e:b3:3f:de +# SHA256 Fingerprint: a1:33:9d:33:28:1a:0b:56:e5:57:d3:d3:2b:1c:e7:f9:36:7e:b0:94:bd:5f:a7:2a:7e:50:04:c8:de:d7:ca:fe +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 +ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw +NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L +cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg +Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN +QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT +3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw +3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 +3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 +BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN +XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF +AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw +8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG +nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP +oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy +d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg +LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA 2" +# Serial: 44979900017204383099463764357512596969 +# MD5 Fingerprint: 6d:46:9e:d9:25:6d:08:23:5b:5e:74:7d:1e:27:db:f2 +# SHA1 Fingerprint: d3:dd:48:3e:2b:bf:4c:05:e8:af:10:f5:fa:76:26:cf:d3:dc:30:92 +# SHA256 Fingerprint: b6:76:f2:ed:da:e8:77:5c:d3:6c:b0:f6:3c:d1:d4:60:39:61:f4:9e:62:65:ba:01:3a:2f:03:07:b6:d0:b8:04 +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB +gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu +QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG +A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz +OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ +VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 +b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA +DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn +0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB +OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE +fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E +Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m +o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i +sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW +OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez +Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS +adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n +3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ +F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf +CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 +XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm +djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ +WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb +AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq +P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko +b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj +XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P +5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi +DrW5viSP +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: ca:ff:e2:db:03:d9:cb:4b:e9:0f:ad:84:fd:7b:18:ce +# SHA1 Fingerprint: 01:0c:06:95:a6:98:19:14:ff:bf:5f:c6:b0:b6:95:ea:29:e9:12:a6 +# SHA256 Fingerprint: a0:40:92:9a:02:ce:53:b4:ac:f4:f2:ff:c6:98:1c:e4:49:6f:75:5e:6d:45:fe:0b:2a:69:2b:cd:52:52:3f:36 +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1Ix +DzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5k +IFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMT +N0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9v +dENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAxMTIxWjCBpjELMAkG +A1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNh +ZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkx +QDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgUm9vdENBIDIwMTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQDC+Kk/G4n8PDwEXT2QNrCROnk8ZlrvbTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA +4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+ehiGsxr/CL0BgzuNtFajT0 +AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+6PAQZe10 +4S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06C +ojXdFPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV +9Cz82XBST3i4vTwri5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrD +gfgXy5I2XdGj2HUb4Ysn6npIQf1FGQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6 +Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2fu/Z8VFRfS0myGlZYeCsargq +NhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9muiNX6hME6wGko +LfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVd +ctA4GGqd83EkVAswDQYJKoZIhvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0I +XtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+D1hYc2Ryx+hFjtyp8iY/xnmMsVMI +M4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrMd/K4kPFox/la/vot +9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+yd+2V +Z5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/ea +j8GsGsVn82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnh +X9izjFk0WaSrT2y7HxjbdavYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQ +l033DlZdwJVqwjbDG2jJ9SrcR5q+ss7FJej6A7na+RZukYT1HCjI/CbM1xyQVqdf +bzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVtJ94Cj8rDtSvK6evIIVM4 +pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGaJI7ZjnHK +e7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0 +vm9qp/UsQu0yrbYhnr68 +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions ECC RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: 81:e5:b4:17:eb:c2:f5:e1:4b:0d:41:7b:49:92:fe:ef +# SHA1 Fingerprint: 9f:f1:71:8d:92:d5:9a:f3:7d:74:97:b4:bc:6f:84:68:0b:ba:b6:66 +# SHA256 Fingerprint: 44:b5:45:aa:8a:25:e6:5a:73:ca:15:dc:27:fc:36:d2:4c:1c:b9:95:3a:06:65:39:b1:15:82:dc:48:7b:48:33 +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzAN +BgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hl +bGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgRUNDIFJv +b3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEwMzcxMlowgaoxCzAJ +BgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmljIEFj +YWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5 +MUQwQgYDVQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0 +dXRpb25zIEVDQyBSb290Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKg +QehLgoRc4vgxEZmGZE4JJS+dQS8KrjVPdJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJa +jq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoKVlp8aQuqgAkkbH7BRqNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFLQi +C4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaep +lSTAGiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7Sof +TUwJCA3sS61kFyjndc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X1 O=Internet Security Research Group +# Subject: CN=ISRG Root X1 O=Internet Security Research Group +# Label: "ISRG Root X1" +# Serial: 172886928669790476064670243504169061120 +# MD5 Fingerprint: 0c:d2:f9:e0:da:17:73:e9:ed:86:4d:a5:e3:70:e7:4e +# SHA1 Fingerprint: ca:bd:2a:79:a1:07:6a:31:f2:1d:25:36:35:cb:03:9d:43:29:a5:e8 +# SHA256 Fingerprint: 96:bc:ec:06:26:49:76:f3:74:60:77:9a:cf:28:c5:a7:cf:e8:a3:c0:aa:e1:1a:8f:fc:ee:05:c0:bd:df:08:c6 +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4 +WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu +ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc +h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+ +0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U +A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW +T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH +B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC +B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv +KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn +OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn +jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw +qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI +rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq +hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL +ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ +3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK +NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5 +ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur +TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC +jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc +oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq +4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA +mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d +emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc= +-----END CERTIFICATE----- + +# Issuer: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Subject: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Label: "AC RAIZ FNMT-RCM" +# Serial: 485876308206448804701554682760554759 +# MD5 Fingerprint: e2:09:04:b4:d3:bd:d1:a0:14:fd:1a:d2:47:c4:57:1d +# SHA1 Fingerprint: ec:50:35:07:b2:15:c4:95:62:19:e2:a8:9a:5b:42:99:2c:4c:2c:20 +# SHA256 Fingerprint: eb:c5:57:0c:29:01:8c:4d:67:b1:aa:12:7b:af:12:f7:03:b4:61:1e:bc:17:b7:da:b5:57:38:94:17:9b:93:fa +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsx +CzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJ +WiBGTk1ULVJDTTAeFw0wODEwMjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJ +BgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBG +Tk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALpxgHpMhm5/ +yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcfqQgf +BBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAz +WHFctPVrbtQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxF +tBDXaEAUwED653cXeuYLj2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z +374jNUUeAlz+taibmSXaXvMiwzn15Cou08YfxGyqxRxqAQVKL9LFwag0Jl1mpdIC +IfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mwWsXmo8RZZUc1g16p6DUL +mbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnTtOmlcYF7 +wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peS +MKGJ47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2 +ZSysV4999AeU14ECll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMet +UqIJ5G+GR4of6ygnXYMgrwTJbFaai0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFPd9xf3E6Jobd2Sn9R2gzL+H +YJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1odHRwOi8vd3d3 +LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD +nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1 +RXxlDPiyN8+sD8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYM +LVN0V2Ue1bLdI4E7pWYjJ2cJj+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf +77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrTQfv6MooqtyuGC2mDOL7Nii4LcK2N +JpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW+YJF1DngoABd15jm +fZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7Ixjp +6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp +1txyM/1d8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B +9kiABdcPUXmsEKvU7ANm5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wok +RqEIr9baRRmW1FMdW4R58MD3R++Lj8UGrp1MYp3/RgT408m2ECVAdf4WqslKYIYv +uu8wd+RU4riEmViAqhOLUTpPSPaLtrM= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 1 O=Amazon +# Subject: CN=Amazon Root CA 1 O=Amazon +# Label: "Amazon Root CA 1" +# Serial: 143266978916655856878034712317230054538369994 +# MD5 Fingerprint: 43:c6:bf:ae:ec:fe:ad:2f:18:c6:88:68:30:fc:c8:e6 +# SHA1 Fingerprint: 8d:a7:f9:65:ec:5e:fc:37:91:0f:1c:6e:59:fd:c1:cc:6a:6e:de:16 +# SHA256 Fingerprint: 8e:cd:e6:88:4f:3d:87:b1:12:5b:a3:1a:c3:fc:b1:3d:70:16:de:7f:57:cc:90:4f:e1:cb:97:c6:ae:98:19:6e +-----BEGIN CERTIFICATE----- +MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj +ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM +9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw +IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6 +VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L +93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm +jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA +A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI +U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs +N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv +o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU +5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy +rqXRfboQnoZsG4q5WTP468SQvvG5 +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 2 O=Amazon +# Subject: CN=Amazon Root CA 2 O=Amazon +# Label: "Amazon Root CA 2" +# Serial: 143266982885963551818349160658925006970653239 +# MD5 Fingerprint: c8:e5:8d:ce:a8:42:e2:7a:c0:2a:5c:7c:9e:26:bf:66 +# SHA1 Fingerprint: 5a:8c:ef:45:d7:a6:98:59:76:7a:8c:8b:44:96:b5:78:cf:47:4b:1a +# SHA256 Fingerprint: 1b:a5:b2:aa:8c:65:40:1a:82:96:01:18:f8:0b:ec:4f:62:30:4d:83:ce:c4:71:3a:19:c3:9c:01:1e:a4:6d:b4 +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAyMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2Wny2cSkxK +gXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4kHbZ +W0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg +1dKmSYXpN+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K +8nu+NQWpEjTj82R0Yiw9AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r +2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvdfLC6HM783k81ds8P+HgfajZRRidhW+me +z/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAExkv8LV/SasrlX6avvDXbR +8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSSbtqDT6Zj +mUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz +7Mt0Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6 ++XUyo05f7O0oYtlNc/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI +0u1ufm8/0i2BWSlmy5A5lREedCf+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSwDPBMMPQFWAJI/TPlUq9LhONm +UjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oAA7CXDpO8Wqj2 +LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY ++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kS +k5Nrp+gvU5LEYFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl +7uxMMne0nxrpS10gxdr9HIcWxkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygm +btmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQgj9sAq+uEjonljYE1x2igGOpm/Hl +urR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbWaQbLU8uz/mtBzUF+ +fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoVYh63 +n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE +76KlXIx3KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H +9jVlpNMKVv/1F2Rs76giJUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT +4PsJYGw= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 3 O=Amazon +# Subject: CN=Amazon Root CA 3 O=Amazon +# Label: "Amazon Root CA 3" +# Serial: 143266986699090766294700635381230934788665930 +# MD5 Fingerprint: a0:d4:ef:0b:f7:b5:d8:49:95:2a:ec:f5:c4:fc:81:87 +# SHA1 Fingerprint: 0d:44:dd:8c:3c:8c:1a:1a:58:75:64:81:e9:0f:2e:2a:ff:b3:d2:6e +# SHA256 Fingerprint: 18:ce:6c:fe:7b:f1:4e:60:b2:e3:47:b8:df:e8:68:cb:31:d0:2e:bb:3a:da:27:15:69:f5:03:43:b4:6d:b3:a4 +-----BEGIN CERTIFICATE----- +MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSAzMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZBf8ANm+gBG1bG8lKl +ui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjrZt6j +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSr +ttvXBp43rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkr +BqWTrBqYaGFy+uGh0PsceGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteM +YyRIHN8wfdVoOw== +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 4 O=Amazon +# Subject: CN=Amazon Root CA 4 O=Amazon +# Label: "Amazon Root CA 4" +# Serial: 143266989758080763974105200630763877849284878 +# MD5 Fingerprint: 89:bc:27:d5:eb:17:8d:06:6a:69:d5:fd:89:47:b4:cd +# SHA1 Fingerprint: f6:10:84:07:d6:f8:bb:67:98:0c:c2:e2:44:c2:eb:ae:1c:ef:63:be +# SHA256 Fingerprint: e3:5d:28:41:9e:d0:20:25:cf:a6:90:38:cd:62:39:62:45:8d:a5:c6:95:fb:de:a3:c2:2b:0b:fb:25:89:70:92 +-----BEGIN CERTIFICATE----- +MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSA0MB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN/sGKe0uoe0ZLY7Bi +9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri83Bk +M6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WB +MAoGCCqGSM49BAMDA2gAMGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlw +CkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1AE47xDqUEpHJWEadIRNyp4iciuRMStuW +1KyLa2tJElMzrdfkviT8tQp21KW8EA== +-----END CERTIFICATE----- + +# Issuer: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Subject: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Label: "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" +# Serial: 1 +# MD5 Fingerprint: dc:00:81:dc:69:2f:3e:2f:b0:3b:f6:3d:5a:91:8e:49 +# SHA1 Fingerprint: 31:43:64:9b:ec:ce:27:ec:ed:3a:3f:0b:8f:0d:e4:e8:91:dd:ee:ca +# SHA256 Fingerprint: 46:ed:c3:68:90:46:d5:3a:45:3f:b3:10:4a:b8:0d:ca:ec:65:8b:26:60:ea:16:29:dd:7e:86:79:90:64:87:16 +-----BEGIN CERTIFICATE----- +MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIx +GDAWBgNVBAcTD0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxp +bXNlbCB2ZSBUZWtub2xvamlrIEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0w +KwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aSAtIEthbXUgU00xNjA0 +BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRpZmlrYXNpIC0gU3Vy +dW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYDVQQG +EwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXll +IEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklU +QUsxLTArBgNVBAsTJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBT +TTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11IFNNIFNTTCBLb2sgU2VydGlmaWthc2kg +LSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3UwM6q7 +a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y86Ij5iySr +LqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INr +N3wcwv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2X +YacQuFWQfw4tJzh03+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/ +iSIzL+aFCr2lqBs23tPcLG07xxO9WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4f +AJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQUZT/HiobGPN08VFw1+DrtUgxH +V8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh +AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPf +IPP54+M638yclNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4 +lzwDGrpDxpa5RXI4s6ehlj2Re37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c +8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0jq5Rm+K37DwhuJi1/FwcJsoz7UMCf +lo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= +-----END CERTIFICATE----- + +# Issuer: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Subject: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Label: "GDCA TrustAUTH R5 ROOT" +# Serial: 9009899650740120186 +# MD5 Fingerprint: 63:cc:d9:3d:34:35:5c:6f:53:a3:e2:08:70:48:1f:b4 +# SHA1 Fingerprint: 0f:36:38:5b:81:1a:25:c3:9b:31:4e:83:ca:e9:34:66:70:cc:74:b4 +# SHA256 Fingerprint: bf:ff:8f:d0:44:33:48:7d:6a:8a:a6:0c:1a:29:76:7a:9f:c2:bb:b0:5e:42:0f:71:3a:13:b9:92:89:1d:38:93 +-----BEGIN CERTIFICATE----- +MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UE +BhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ +IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0 +MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVowYjELMAkGA1UEBhMCQ04xMjAwBgNV +BAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8w +HQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJj +Dp6L3TQsAlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBj +TnnEt1u9ol2x8kECK62pOqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+u +KU49tm7srsHwJ5uu4/Ts765/94Y9cnrrpftZTqfrlYwiOXnhLQiPzLyRuEH3FMEj +qcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ9Cy5WmYqsBebnh52nUpm +MUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQxXABZG12 +ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloP +zgsMR6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3Gk +L30SgLdTMEZeS1SZD2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeC +jGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4oR24qoAATILnsn8JuLwwoC8N9VKejveSswoA +HQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx9hoh49pwBiFYFIeFd3mqgnkC +AwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlRMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg +p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZm +DRd9FBUb1Ov9H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5 +COmSdI31R9KrO9b7eGZONn356ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ry +L3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd+PwyvzeG5LuOmCd+uh8W4XAR8gPf +JWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQHtZa37dG/OaG+svg +IHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBDF8Io +2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV +09tL7ECQ8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQ +XR4EzzffHqhmsYzmIGrv/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrq +T8p+ck0LcIymSLumoRT2+1hEmRSuqguTaaApJUqlyyvdimYHFngVV3Eb7PVHhPOe +MTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Label: "SSL.com Root Certification Authority RSA" +# Serial: 8875640296558310041 +# MD5 Fingerprint: 86:69:12:c0:70:f1:ec:ac:ac:c2:d5:bc:a5:5b:a1:29 +# SHA1 Fingerprint: b7:ab:33:08:d1:ea:44:77:ba:14:80:12:5a:6f:bd:a9:36:49:0c:bb +# SHA256 Fingerprint: 85:66:6a:56:2e:e0:be:5c:e9:25:c1:d8:89:0a:6f:76:a8:7e:c1:6d:4d:7d:5f:29:ea:74:19:cf:20:12:3b:69 +-----BEGIN CERTIFICATE----- +MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UE +BhMCVVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQK +DA9TU0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYwMjEyMTczOTM5WhcNNDEwMjEyMTcz +OTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv +bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2R +xFdHaxh3a3by/ZPkPQ/CFp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aX +qhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcC +C52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/geoeOy3ZExqysdBP+lSgQ3 +6YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkpk8zruFvh +/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrF +YD3ZfBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93E +JNyAKoFBbZQ+yODJgUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVc +US4cK38acijnALXRdMbX5J+tB5O2UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8 +ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi81xtZPCvM8hnIk2snYxnP/Okm ++Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4sbE6x/c+cCbqi +M+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4G +A1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGV +cpNxJK1ok1iOMq8bs3AD/CUrdIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBc +Hadm47GUBwwyOabqG7B52B2ccETjit3E+ZUfijhDPwGFpUenPUayvOUiaPd7nNgs +PgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAslu1OJD7OAUN5F7kR/ +q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjqerQ0 +cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jr +a6x+3uxjMxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90I +H37hVZkLId6Tngr75qNJvTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/Y +K9f1JmzJBjSWFupwWRoyeXkLtoh/D1JIPb9s2KJELtFOt3JY04kTlf5Eq/jXixtu +nLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406ywKBjYZC6VWg3dGq2ktuf +oYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NIWuuA8ShY +Ic2wBlX7Jz9TkHCpBB5XJ7k= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com Root Certification Authority ECC" +# Serial: 8495723813297216424 +# MD5 Fingerprint: 2e:da:e4:39:7f:9c:8f:37:d1:70:9f:26:17:51:3a:8e +# SHA1 Fingerprint: c3:19:7c:39:24:e6:54:af:1b:c4:ab:20:95:7a:e2:c3:0e:13:02:6a +# SHA256 Fingerprint: 34:17:bb:06:cc:60:07:da:1b:96:1c:92:0b:8a:b4:ce:3f:ad:82:0e:4a:a3:0b:9a:cb:c4:a7:4e:bd:ce:bc:65 +-----BEGIN CERTIFICATE----- +MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNDAzWhcNNDEwMjEyMTgxNDAz +WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0 +b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNvbSBS +b290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI +7Z4INcgn64mMU1jrYor+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPg +CemB+vNH06NjMGEwHQYDVR0OBBYEFILRhXMw5zUE044CkvvlpNHEIejNMA8GA1Ud +EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTTjgKS++Wk0cQh6M0wDgYD +VR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCWe+0F+S8T +kdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+ +gA0z5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority RSA R2" +# Serial: 6248227494352943350 +# MD5 Fingerprint: e1:1e:31:58:1a:ae:54:53:02:f6:17:6a:11:7b:4d:95 +# SHA1 Fingerprint: 74:3a:f0:52:9b:d0:32:a0:f4:4a:83:cd:d4:ba:a9:7b:7c:2e:c4:9a +# SHA256 Fingerprint: 2e:7b:f1:6c:c2:24:85:a7:bb:e2:aa:86:96:75:07:61:b0:ae:39:be:3b:2f:e9:d0:cc:6d:4e:f7:34:91:42:5c +-----BEGIN CERTIFICATE----- +MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNV +BAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UE +CgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMB4XDTE3MDUzMTE4MTQzN1oXDTQy +MDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4G +A1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQD +DC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvq +M0fNTPl9fb69LT3w23jhhqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssuf +OePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7wcXHswxzpY6IXFJ3vG2fThVUCAtZJycxa +4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTOZw+oz12WGQvE43LrrdF9 +HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+B6KjBSYR +aZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcA +b9ZhCBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQ +Gp8hLH94t2S42Oim9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQV +PWKchjgGAGYS5Fl2WlPAApiiECtoRHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMO +pgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+SlmJuwgUHfbSguPvuUCYHBBXtSu +UDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48+qvWBkofZ6aY +MBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV +HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa4 +9QaAJadz20ZpqJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBW +s47LCp1Jjr+kxJG7ZhcFUZh1++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5 +Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nxY/hoLVUE0fKNsKTPvDxeH3jnpaAg +cLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2GguDKBAdRUNf/ktUM +79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDzOFSz +/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXt +ll9ldDz7CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEm +Kf7GUmG6sXP/wwyc5WxqlD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKK +QbNmC1r7fSOl8hqw/96bg5Qu0T/fkreRrwU7ZcegbLHNYhLDkBvjJc40vG93drEQ +w/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1hlMYegouCRw2n5H9gooi +S9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX9hwJ1C07 +mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority ECC" +# Serial: 3182246526754555285 +# MD5 Fingerprint: 59:53:22:65:83:42:01:54:c0:ce:42:b9:5a:7c:f2:90 +# SHA1 Fingerprint: 4c:dd:51:a3:d1:f5:20:32:14:b0:c6:c5:32:23:03:91:c7:46:42:6d +# SHA256 Fingerprint: 22:a2:c1:f7:bd:ed:70:4c:c1:e7:01:b5:f4:08:c3:10:88:0f:e9:56:b5:de:2a:4a:44:f9:9c:87:3a:25:a7:c8 +-----BEGIN CERTIFICATE----- +MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xNDAyBgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNTIzWhcNNDEwMjEyMTgx +NTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NMLmNv +bSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMA +VIbc/R/fALhBYlzccBYy3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1Kthku +WnBaBu2+8KGwytAJKaNjMGEwHQYDVR0OBBYEFFvKXuXe0oGqzagtZFG22XKbl+ZP +MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe5d7SgarNqC1kUbbZcpuX +5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJN+vp1RPZ +ytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZg +h5Mmm7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Label: "GlobalSign Root CA - R6" +# Serial: 1417766617973444989252670301619537 +# MD5 Fingerprint: 4f:dd:07:e4:d4:22:64:39:1e:0c:37:42:ea:d1:c6:ae +# SHA1 Fingerprint: 80:94:64:0e:b5:a7:a1:ca:11:9c:1f:dd:d5:9f:81:02:63:a7:fb:d1 +# SHA256 Fingerprint: 2c:ab:ea:fe:37:d0:6c:a2:2a:ba:73:91:c0:03:3d:25:98:29:52:c4:53:64:73:49:76:3a:3a:b5:ad:6c:cf:69 +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEg +MB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQx +MjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSNjET +MBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQssgrRI +xutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1k +ZguSgMpE3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxD +aNc9PIrFsmbVkJq3MQbFvuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJw +LnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqMPKq0pPbzlUoSB239jLKJz9CgYXfIWHSw +1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+azayOeSsJDa38O+2HBNX +k7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05OWgtH8wY2 +SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/h +bguyCLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4n +WUx2OVvq+aWh2IMP0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpY +rZxCRXluDocZXFSxZba/jJvcE+kNb7gu3GduyYsRtYQUigAZcIN5kZeR1Bonvzce +MgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNVHSMEGDAWgBSu +bAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN +nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGt +Ixg93eFyRJa0lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr61 +55wsTLxDKZmOMNOsIeDjHfrYBzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLj +vUYAGm0CuiVdjaExUd1URhxN25mW7xocBFymFe944Hn+Xds+qkxV/ZoVqW/hpvvf +cDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr3TsTjxKM4kEaSHpz +oHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB10jZp +nOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfs +pA9MRf/TuTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+v +JJUEeKgDu+6B5dpffItKoZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R +8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+tJDfLRVpOoERIyNiwmcUVhAn21klJwGW4 +5hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GC CA" +# Serial: 44084345621038548146064804565436152554 +# MD5 Fingerprint: a9:d6:b9:2d:2f:93:64:f8:a5:69:ca:91:e9:68:07:23 +# SHA1 Fingerprint: e0:11:84:5e:34:de:be:88:81:b9:9c:f6:16:26:d1:96:1f:c3:b9:31 +# SHA256 Fingerprint: 85:60:f9:1c:36:24:da:ba:95:70:b5:fe:a0:db:e3:6f:f1:1a:83:23:be:94:86:85:4f:b3:f3:4a:55:71:19:8d +-----BEGIN CERTIFICATE----- +MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQsw +CQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91 +bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwg +Um9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRaFw00MjA1MDkwOTU4MzNaMG0xCzAJ +BgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBGb3Vu +ZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2JhbCBS +b290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4ni +eUqjFqdrVCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4W +p2OQ0jnUsYd4XxiWD1AbNTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7T +rYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0EAwMDaAAwZQIwJsdpW9zV +57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtkAjEA2zQg +Mgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 +-----END CERTIFICATE----- + +# Issuer: CN=UCA Global G2 Root O=UniTrust +# Subject: CN=UCA Global G2 Root O=UniTrust +# Label: "UCA Global G2 Root" +# Serial: 124779693093741543919145257850076631279 +# MD5 Fingerprint: 80:fe:f0:c4:4a:f0:5c:62:32:9f:1c:ba:78:a9:50:f8 +# SHA1 Fingerprint: 28:f9:78:16:19:7a:ff:18:25:18:aa:44:fe:c1:a0:ce:5c:b6:4c:8a +# SHA256 Fingerprint: 9b:ea:11:c9:76:fe:01:47:64:c1:be:56:a6:f9:14:b5:a5:60:31:7a:bd:99:88:39:33:82:e5:16:1a:a0:49:3c +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9 +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBH +bG9iYWwgRzIgUm9vdDAeFw0xNjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0x +CzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEds +b2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxeYr +b3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmToni9 +kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzm +VHqUwCoV8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/R +VogvGjqNO7uCEeBHANBSh6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDc +C/Vkw85DvG1xudLeJ1uK6NjGruFZfc8oLTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIj +tm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/R+zvWr9LesGtOxdQXGLY +D0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBeKW4bHAyv +j5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6Dl +NaBa4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6 +iIis7nCs+dwp4wwcOxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznP +O6Q0ibd5Ei9Hxeepl2n8pndntd978XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/ +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFIHEjMz15DD/pQwIX4wV +ZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo5sOASD0Ee/oj +L3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 +1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl +1qnN3e92mI0ADs0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oU +b3n09tDh05S60FdRvScFDcH9yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LV +PtateJLbXDzz2K36uGt/xDYotgIVilQsnLAXc47QN6MUPJiVAAwpBVueSUmxX8fj +y88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHojhJi6IjMtX9Gl8Cb +EGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZkbxqg +DMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI ++Vg7RE+xygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGy +YiGqhkCyLmTTX8jjfhFnRR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bX +UB+K+wb1whnw0A== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Extended Validation Root O=UniTrust +# Subject: CN=UCA Extended Validation Root O=UniTrust +# Label: "UCA Extended Validation Root" +# Serial: 106100277556486529736699587978573607008 +# MD5 Fingerprint: a1:f3:5f:43:c6:34:9b:da:bf:8c:7e:05:53:ad:96:e2 +# SHA1 Fingerprint: a3:a1:b0:6f:24:61:23:4a:e3:36:a5:c2:37:fc:a6:ff:dd:f0:d7:3a +# SHA256 Fingerprint: d4:3a:f9:b3:54:73:75:5c:96:84:fc:06:d7:d8:cb:70:ee:5c:28:e7:73:fb:29:4e:b4:1e:e7:17:22:92:4d:24 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBH +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBF +eHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMx +MDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNV +BAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrsiWog +D4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvS +sPGP2KxFRv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aop +O2z6+I9tTcg1367r3CTueUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dk +sHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR59mzLC52LqGj3n5qiAno8geK+LLNEOfi +c0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH0mK1lTnj8/FtDw5lhIpj +VMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KRel7sFsLz +KuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/ +TuDvB0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41G +sx2VYVdWf6/wFlthWG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs +1+lvK9JKBZP8nm9rZ/+I8U6laUpSNwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQD +fwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS3H5aBZ8eNJr34RQwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBADaN +l8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR +ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQ +VBcZEhrxH9cMaVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5 +c6sq1WnIeJEmMX3ixzDx/BR4dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp +4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb+7lsq+KePRXBOy5nAliRn+/4Qh8s +t2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOWF3sGPjLtx7dCvHaj +2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwiGpWO +vpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2C +xR9GUeOcGMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmx +cmtpzyKEC2IPrNkZAJSidjzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbM +fjKaiJUINlK73nZfdklJrX+9ZSCyycErdhh2n1ax +-----END CERTIFICATE----- + +# Issuer: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Subject: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Label: "Certigna Root CA" +# Serial: 269714418870597844693661054334862075617 +# MD5 Fingerprint: 0e:5c:30:62:27:eb:5b:bc:d7:ae:62:ba:e9:d5:df:77 +# SHA1 Fingerprint: 2d:0d:52:14:ff:9e:ad:99:24:01:74:20:47:6e:6c:85:27:27:f5:43 +# SHA256 Fingerprint: d4:8d:3d:23:ee:db:50:a4:59:e5:51:97:60:1c:27:77:4b:9d:7b:18:c9:4d:5a:05:95:11:a1:02:50:b9:31:68 +-----BEGIN CERTIFICATE----- +MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAw +WjELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAw +MiA0ODE0NjMwODEwMDAzNjEZMBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0x +MzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjdaMFoxCzAJBgNVBAYTAkZSMRIwEAYD +VQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAX +BgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sO +ty3tRQgXstmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9M +CiBtnyN6tMbaLOQdLNyzKNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPu +I9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8JXrJhFwLrN1CTivngqIkicuQstDuI7pm +TLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16XdG+RCYyKfHx9WzMfgIh +C59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq4NYKpkDf +ePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3Yz +IoejwpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWT +Co/1VTp2lc5ZmIoJlXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1k +JWumIWmbat10TWuXekG9qxf5kBdIjzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5 +hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp//TBt2dzhauH8XwIDAQABo4IB +GjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of +1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczov +L3d3d3cuY2VydGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilo +dHRwOi8vY3JsLmNlcnRpZ25hLmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYr +aHR0cDovL2NybC5kaGlteW90aXMuY29tL2NlcnRpZ25hcm9vdGNhLmNybDANBgkq +hkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOItOoldaDgvUSILSo3L +6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxPTGRG +HVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH6 +0BGM+RFq7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncB +lA2c5uk5jR+mUYyZDDl34bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdi +o2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1 +gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS6Cvu5zHbugRqh5jnxV/v +faci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaYtlu3zM63 +Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayh +jWZSaX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw +3kAP+HwV96LOPNdeE4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign Root CA - G1" +# Serial: 235931866688319308814040 +# MD5 Fingerprint: 9c:42:84:57:dd:cb:0b:a7:2e:95:ad:b6:f3:da:bc:ac +# SHA1 Fingerprint: 8a:c7:ad:8f:73:ac:4e:c1:b5:75:4d:a5:40:f4:fc:cf:7c:b5:8e:8c +# SHA256 Fingerprint: 40:f6:af:03:46:a9:9a:a1:cd:1d:55:5a:4e:9c:ce:62:c7:f9:63:46:03:ee:40:66:15:83:3d:c8:c8:d0:03:67 +-----BEGIN CERTIFICATE----- +MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYD +VQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBU +ZWNobm9sb2dpZXMgTGltaXRlZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBH +MTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgxODMwMDBaMGcxCzAJBgNVBAYTAklO +MRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xv +Z2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQz +f2N4aLTNLnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO +8oG0x5ZOrRkVUkr+PHB1cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aq +d7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHWDV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhM +tTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ6DqS0hdW5TUaQBw+jSzt +Od9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrHhQIDAQAB +o0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQD +AgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31x +PaOfG1vR2vjTnGs2vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjM +wiI/aTvFthUvozXGaCocV685743QNcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6d +GNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q+Mri/Tm3R7nrft8EI6/6nAYH +6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeihU80Bv2noWgby +RQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx +iN66zB+Afko= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign ECC Root CA - G3" +# Serial: 287880440101571086945156 +# MD5 Fingerprint: ce:0b:72:d1:9f:88:8e:d0:50:03:e8:e3:b8:8b:67:40 +# SHA1 Fingerprint: 30:43:fa:4f:f2:57:dc:a0:c3:80:ee:2e:58:ea:78:b2:3f:e6:bb:c1 +# SHA256 Fingerprint: 86:a1:ec:ba:08:9c:4a:8d:3b:be:27:34:c6:12:ba:34:1d:81:3e:04:3c:f9:e8:a8:62:cd:5c:57:a3:6b:be:6b +-----BEGIN CERTIFICATE----- +MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQG +EwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNo +bm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g +RzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4MTgzMDAwWjBrMQswCQYDVQQGEwJJ +TjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9s +b2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0 +WXTsuwYc58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xyS +fvalY8L1X44uT6EYGQIrMgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuB +zhccLikenEhjQjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggq +hkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+DCBeQyh+KTOgNG3qxrdWB +CUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7jHvrZQnD ++JbNR6iC8hZVdyR+EhCVBCyj +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Label: "emSign Root CA - C1" +# Serial: 825510296613316004955058 +# MD5 Fingerprint: d8:e3:5d:01:21:fa:78:5a:b0:df:ba:d2:ee:2a:5f:68 +# SHA1 Fingerprint: e7:2e:f1:df:fc:b2:09:28:cf:5d:d4:d5:67:37:b1:51:cb:86:4f:01 +# SHA256 Fingerprint: 12:56:09:aa:30:1d:a0:a2:49:b9:7a:82:39:cb:6a:34:21:6f:44:dc:ac:9f:39:54:b1:42:92:f2:e8:c8:60:8f +-----BEGIN CERTIFICATE----- +MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkG +A1UEBhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEg +SW5jMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNpZ24gUm9v +dCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+upufGZ +BczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZ +HdPIWoU/Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH +3DspVpNqs8FqOp099cGXOFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvH +GPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4VI5b2P/AgNBbeCsbEBEV5f6f9vtKppa+c +xSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleoomslMuoaJuvimUnzYnu3Yy1 +aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+XJGFehiq +TbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87 +/kOXSTKZEhVb3xEp/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4 +kqNPEjE2NuLe/gDEo2APJ62gsIq1NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrG +YQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9wC68AivTxEDkigcxHpvOJpkT ++xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQBmIMMMAVSKeo +WXzhriKi4gp6D/piq1JM4fHfyr6DDUI= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Label: "emSign ECC Root CA - C3" +# Serial: 582948710642506000014504 +# MD5 Fingerprint: 3e:53:b3:a3:81:ee:d7:10:f8:d3:b0:1d:17:92:f5:d5 +# SHA1 Fingerprint: b6:af:43:c2:9b:81:53:7d:f6:ef:6b:c3:1f:1f:60:15:0c:ee:48:66 +# SHA256 Fingerprint: bc:4d:80:9b:15:18:9d:78:db:3e:1d:8c:f4:f9:72:6a:79:5d:a1:64:3c:a5:f1:35:8e:1d:db:0e:dc:0d:7e:b3 +-----BEGIN CERTIFICATE----- +MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQG +EwJVUzETMBEGA1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMx +IDAeBgNVBAMTF2VtU2lnbiBFQ0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQDExdlbVNpZ24gRUND +IFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd6bci +MK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4Ojavti +sIGJAnB9SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0O +BBYEFPtaSNCAIEDyqOkAB2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMB +Af8EBTADAQH/MAoGCCqGSM49BAMDA2gAMGUCMQC02C8Cif22TGK6Q04ThHK1rt0c +3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwUZOR8loMRnLDRWmFLpg9J +0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Label: "Hongkong Post Root CA 3" +# Serial: 46170865288971385588281144162979347873371282084 +# MD5 Fingerprint: 11:fc:9f:bd:73:30:02:8a:fd:3f:f3:58:b9:cb:20:f0 +# SHA1 Fingerprint: 58:a2:d0:ec:20:52:81:5b:c1:f3:f8:64:02:24:4e:c2:8e:02:4b:02 +# SHA256 Fingerprint: 5a:2f:c0:3f:0c:83:b0:90:bb:fa:40:60:4b:09:88:44:6c:76:36:18:3d:f9:84:6e:17:10:1a:44:7f:b8:ef:d6 +-----BEGIN CERTIFICATE----- +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 +mpv0 +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G4" +# Serial: 289383649854506086828220374796556676440 +# MD5 Fingerprint: 89:53:f1:83:23:b7:7c:8e:05:f1:8c:71:38:4e:1f:88 +# SHA1 Fingerprint: 14:88:4e:86:26:37:b0:26:af:59:62:5c:40:77:ec:35:29:ba:96:01 +# SHA256 Fingerprint: db:35:17:d1:f6:73:2a:2d:5a:b9:7c:53:3e:c7:07:79:ee:32:70:a6:2f:b4:ac:42:38:37:24:60:e6:f0:1e:88 +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAw +gb4xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQL +Ex9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykg +MjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAw +BgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0 +MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYTAlVT +MRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1 +c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJ +bmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3Qg +Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0MIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3DumSXbcr3DbVZwbPLqGgZ +2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV3imz/f3E +T+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j +5pds8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAM +C1rlLAHGVK/XqsEQe9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73T +DtTUXm6Hnmo9RR3RXRv06QqsYJn7ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNX +wbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5XxNMhIWNlUpEbsZmOeX7m640A +2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV7rtNOzK+mndm +nqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 +dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwl +N4y6mACXi0mWHv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNj +c0kCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9nMA0GCSqGSIb3DQEBCwUAA4ICAQAS +5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4QjbRaZIxowLByQzTS +Gwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht7LGr +hFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/ +B7NTeLUKYvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uI +AeV8KEsD+UmDfLJ/fOPtjqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbw +H5Lk6rWS02FREAutp9lfx1/cH6NcjKF+m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+ +b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKWRGhXxNUzzxkvFMSUHHuk +2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjAJOgc47Ol +IQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk +5F6G+TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuY +n/PIjhs4ViFqUZPTkcpG2om3PVODLAgfi49T3f+sHw== +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft ECC Root Certificate Authority 2017" +# Serial: 136839042543790627607696632466672567020 +# MD5 Fingerprint: dd:a1:03:e6:4a:93:10:d1:bf:f0:19:42:cb:fe:ed:67 +# SHA1 Fingerprint: 99:9a:64:c3:7f:f4:7d:9f:ab:95:f1:47:69:89:14:60:ee:c4:c3:c5 +# SHA256 Fingerprint: 35:8d:f3:9d:76:4a:f9:e1:b7:66:e9:c9:72:df:35:2e:e1:5c:fa:c2:27:af:6a:d1:d7:0e:8e:4a:6e:dc:ba:02 +-----BEGIN CERTIFICATE----- +MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYD +VQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIw +MTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4MjMxNjA0WjBlMQswCQYDVQQGEwJV +UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNy +b3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZR +ogPZnZH6thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYb +hGBKia/teQ87zvH2RPUBeMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBTIy5lycFIM+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3 +FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlfXu5gKcs68tvWMoQZP3zV +L8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaReNtUjGUB +iudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M= +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft RSA Root Certificate Authority 2017" +# Serial: 40975477897264996090493496164228220339 +# MD5 Fingerprint: 10:ff:00:ff:cf:c9:f8:c7:7a:c0:ee:35:8e:c9:0f:47 +# SHA1 Fingerprint: 73:a5:e6:4a:3b:ff:83:16:ff:0e:dc:cc:61:8a:90:6e:4e:ae:4d:74 +# SHA256 Fingerprint: c7:41:f7:0f:4b:2a:8d:88:bf:2e:71:c1:41:22:ef:53:ef:10:eb:a0:cf:a5:e6:4c:fa:20:f4:18:85:30:73:e0 +-----BEGIN CERTIFICATE----- +MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBl +MQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw +NAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 +IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIwNzE4MjMwMDIzWjBlMQswCQYDVQQG +EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1N +aWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZ +Nt9GkMml7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0 +ZdDMbRnMlfl7rEqUrQ7eS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1 +HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw71VdyvD/IybLeS2v4I2wDwAW9lcfNcztm +gGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+dkC0zVJhUXAoP8XFWvLJ +jEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49FyGcohJUc +aDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaG +YaRSMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6 +W6IYZVcSn2i51BVrlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4K +UGsTuqwPN1q3ErWQgR5WrlcihtnJ0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH ++FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJClTUFLkqqNfs+avNJVgyeY+Q +W5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZC +LgLNFgVZJ8og6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OC +gMNPOsduET/m4xaRhPtthH80dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6 +tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk+ONVFT24bcMKpBLBaYVu32TxU5nh +SnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex/2kskZGT4d9Mozd2 +TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDyAmH3 +pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGR +xpl/j8nWZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiApp +GWSZI1b7rCoucL5mxAyE7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9 +dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKTc0QWbej09+CVgI+WXTik9KveCjCHk9hN +AHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D5KbvtwEwXlGjefVwaaZB +RA+GsCyRxj3qrg+E +-----END CERTIFICATE----- + +# Issuer: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Subject: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Label: "e-Szigno Root CA 2017" +# Serial: 411379200276854331539784714 +# MD5 Fingerprint: de:1f:f6:9e:84:ae:a7:b4:21:ce:1e:58:7d:d1:84:98 +# SHA1 Fingerprint: 89:d4:83:03:4f:9e:9a:48:80:5f:72:37:d4:a9:a6:ef:cb:7c:1f:d1 +# SHA256 Fingerprint: be:b0:0b:30:83:9b:9b:c3:2c:32:e4:44:79:05:95:06:41:f2:64:21:b1:5e:d0:89:19:8b:51:8a:e2:ea:1b:99 +-----BEGIN CERTIFICATE----- +MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNV +BAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRk +LjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJv +b3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZaFw00MjA4MjIxMjA3MDZaMHExCzAJ +BgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMg +THRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25v +IFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtv +xie+RJCxs1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+H +Wyx7xf58etqjYzBhMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBSHERUI0arBeAyxr87GyZDvvzAEwDAfBgNVHSMEGDAWgBSHERUI0arB +eAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEAtVfd14pVCzbhhkT61Nlo +jbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxOsvxyqltZ ++efcMQ== +-----END CERTIFICATE----- + +# Issuer: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Subject: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Label: "certSIGN Root CA G2" +# Serial: 313609486401300475190 +# MD5 Fingerprint: 8c:f1:75:8a:c6:19:cf:94:b7:f7:65:20:87:c3:97:c7 +# SHA1 Fingerprint: 26:f9:93:b4:ed:3d:28:27:b0:b9:4b:a7:e9:15:1d:a3:8d:92:e5:32 +# SHA256 Fingerprint: 65:7c:fe:2f:a7:3f:aa:38:46:25:71:f3:32:a2:36:3a:46:fc:e7:02:09:51:71:07:02:cd:fb:b6:ee:da:33:05 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNV +BAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04g +Uk9PVCBDQSBHMjAeFw0xNzAyMDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJ +BgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJ +R04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDF +dRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05N0Iw +vlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZ +uIt4ImfkabBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhp +n+Sc8CnTXPnGFiWeI8MgwT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKs +cpc/I1mbySKEwQdPzH/iV8oScLumZfNpdWO9lfsbl83kqK/20U6o2YpxJM02PbyW +xPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91QqhngLjYl/rNUssuHLoPj1P +rCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732jcZZroiF +DsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fx +DTvf95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgy +LcsUDFDYg2WD7rlcz8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6C +eWRgKRM+o/1Pcmqr4tTluCRVLERLiohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSCIS1mxteg4BXrzkwJ +d8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOBywaK8SJJ6ejq +kX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC +b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQl +qiCA2ClV9+BB/AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0 +OJD7uNGzcgbJceaBxXntC6Z58hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+c +NywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5BiKDUyUM/FHE5r7iOZULJK2v0ZXk +ltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklWatKcsWMy5WHgUyIO +pwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tUSxfj +03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZk +PuXaTH4MNMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE +1LlSVHJ7liXMvGnjSG4N0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MX +QRBdJ3NghVdJIgc= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global Certification Authority" +# Serial: 1846098327275375458322922162 +# MD5 Fingerprint: f8:1c:18:2d:2f:ba:5f:6d:a1:6c:bc:c7:ab:91:c7:0e +# SHA1 Fingerprint: 2f:8f:36:4f:e1:58:97:44:21:59:87:a5:2a:9a:d0:69:95:26:7f:b5 +# SHA256 Fingerprint: 97:55:20:15:f5:dd:fc:3c:87:88:c0:06:94:45:55:40:88:94:45:00:84:f1:00:86:70:86:bc:1a:2b:b5:8d:c8 +-----BEGIN CERTIFICATE----- +MIIF2jCCA8KgAwIBAgIMBfcOhtpJ80Y1LrqyMA0GCSqGSIb3DQEBCwUAMIGIMQsw +CQYDVQQGEwJVUzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28x +ITAfBgNVBAoMGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1 +c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMx +OTM0MTJaFw00MjA4MjMxOTM0MTJaMIGIMQswCQYDVQQGEwJVUzERMA8GA1UECAwI +SWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2ZSBI +b2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB +ALldUShLPDeS0YLOvR29zd24q88KPuFd5dyqCblXAj7mY2Hf8g+CY66j96xz0Xzn +swuvCAAJWX/NKSqIk4cXGIDtiLK0thAfLdZfVaITXdHG6wZWiYj+rDKd/VzDBcdu +7oaJuogDnXIhhpCujwOl3J+IKMujkkkP7NAP4m1ET4BqstTnoApTAbqOl5F2brz8 +1Ws25kCI1nsvXwXoLG0R8+eyvpJETNKXpP7ScoFDB5zpET71ixpZfR9oWN0EACyW +80OzfpgZdNmcc9kYvkHHNHnZ9GLCQ7mzJ7Aiy/k9UscwR7PJPrhq4ufogXBeQotP +JqX+OsIgbrv4Fo7NDKm0G2x2EOFYeUY+VM6AqFcJNykbmROPDMjWLBz7BegIlT1l +RtzuzWniTY+HKE40Cz7PFNm73bZQmq131BnW2hqIyE4bJ3XYsgjxroMwuREOzYfw +hI0Vcnyh78zyiGG69Gm7DIwLdVcEuE4qFC49DxweMqZiNu5m4iK4BUBjECLzMx10 +coos9TkpoNPnG4CELcU9402x/RpvumUHO1jsQkUm+9jaJXLE9gCxInm943xZYkqc +BW89zubWR2OZxiRvchLIrH+QtAuRcOi35hYQcRfO3gZPSEF9NUqjifLJS3tBEW1n +twiYTOURGa5CgNz7kAXU+FDKvuStx8KU1xad5hePrzb7AgMBAAGjQjBAMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFJngGWcNYtt2s9o9uFvo/ULSMQ6HMA4GA1Ud +DwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAmHNw4rDT7TnsTGDZqRKGFx6W +0OhUKDtkLSGm+J1WE2pIPU/HPinbbViDVD2HfSMF1OQc3Og4ZYbFdada2zUFvXfe +uyk3QAUHw5RSn8pk3fEbK9xGChACMf1KaA0HZJDmHvUqoai7PF35owgLEQzxPy0Q +lG/+4jSHg9bP5Rs1bdID4bANqKCqRieCNqcVtgimQlRXtpla4gt5kNdXElE1GYhB +aCXUNxeEFfsBctyV3lImIJgm4nb1J2/6ADtKYdkNy1GTKv0WBpanI5ojSP5RvbbE +sLFUzt5sQa0WZ37b/TjNuThOssFgy50X31ieemKyJo90lZvkWx3SD92YHJtZuSPT +MaCm/zjdzyBP6VhWOmfD0faZmZ26NraAL4hHT4a/RDqA5Dccprrql5gR0IRiR2Qe +qu5AvzSxnI9O4fKSTx+O856X3vOmeWqJcU9LJxdI/uz0UA9PSX3MReO9ekDFQdxh +VicGaeVyQYHTtgGJoC86cnn+OjC/QezHYj6RS8fZMXZC+fc8Y+wmjHMMfRod6qh8 +h6jCJ3zhM0EPz8/8AKAigJ5Kp28AsEFFtyLKaEjFQqKu3R3y4G5OBVixwJAWKqQ9 +EEC+j2Jjg6mcgn0tAumDMHzLJ8n9HmYAsC7TIS+OMxZsmO0QqAfWzJPP29FpHOTK +yeC2nOnOcXHebD8WpHk= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P256 Certification Authority" +# Serial: 4151900041497450638097112925 +# MD5 Fingerprint: 5b:44:e3:8d:5d:36:86:26:e8:0d:05:d2:59:a7:83:54 +# SHA1 Fingerprint: b4:90:82:dd:45:0c:be:8b:5b:b1:66:d3:e2:a4:08:26:cd:ed:42:cf +# SHA256 Fingerprint: 94:5b:bc:82:5e:a5:54:f4:89:d1:fd:51:a7:3d:df:2e:a6:24:ac:70:19:a0:52:05:22:5c:22:a7:8c:cf:a8:b4 +-----BEGIN CERTIFICATE----- +MIICYDCCAgegAwIBAgIMDWpfCD8oXD5Rld9dMAoGCCqGSM49BAMCMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM1MTBaFw00MjA4MjMxOTM1MTBaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABH77bOYj43MyCMpg5lOcunSNGLB4kFKA3TjASh3RqMyTpJcGOMoN +FWLGjgEqZZ2q3zSRLoHB5DOSMcT9CTqmP62jQzBBMA8GA1UdEwEB/wQFMAMBAf8w +DwYDVR0PAQH/BAUDAwcGADAdBgNVHQ4EFgQUo0EGrJBt0UrrdaVKEJmzsaGLSvcw +CgYIKoZIzj0EAwIDRwAwRAIgB+ZU2g6gWrKuEZ+Hxbb/ad4lvvigtwjzRM4q3wgh +DDcCIC0mA6AFvWvR9lz4ZcyGbbOcNEhjhAnFjXca4syc4XR7 +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P384 Certification Authority" +# Serial: 2704997926503831671788816187 +# MD5 Fingerprint: ea:cf:60:c4:3b:b9:15:29:40:a1:97:ed:78:27:93:d6 +# SHA1 Fingerprint: e7:f3:a3:c8:cf:6f:c3:04:2e:6d:0e:67:32:c5:9e:68:95:0d:5e:d2 +# SHA256 Fingerprint: 55:90:38:59:c8:c0:c3:eb:b8:75:9e:ce:4e:25:57:22:5f:f5:75:8b:bd:38:eb:d4:82:76:60:1e:1b:d5:80:97 +-----BEGIN CERTIFICATE----- +MIICnTCCAiSgAwIBAgIMCL2Fl2yZJ6SAaEc7MAoGCCqGSM49BAMDMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM2NDNaFw00MjA4MjMxOTM2NDNaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTB2MBAGByqGSM49AgEGBSuB +BAAiA2IABGvaDXU1CDFHBa5FmVXxERMuSvgQMSOjfoPTfygIOiYaOs+Xgh+AtycJ +j9GOMMQKmw6sWASr9zZ9lCOkmwqKi6vr/TklZvFe/oyujUF5nQlgziip04pt89ZF +1PKYhDhloKNDMEEwDwYDVR0TAQH/BAUwAwEB/zAPBgNVHQ8BAf8EBQMDBwYAMB0G +A1UdDgQWBBRVqYSJ0sEyvRjLbKYHTsjnnb6CkDAKBggqhkjOPQQDAwNnADBkAjA3 +AZKXRRJ+oPM+rRk6ct30UJMDEr5E0k9BpIycnR+j9sKS50gU/k6bpZFXrsY3crsC +MGclCrEMXu6pY5Jv5ZAL/mYiykf9ijH3g/56vxC+GCsej/YpHpRZ744hN8tRmKVu +Sw== +-----END CERTIFICATE----- + +# Issuer: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Subject: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Label: "NAVER Global Root Certification Authority" +# Serial: 9013692873798656336226253319739695165984492813 +# MD5 Fingerprint: c8:7e:41:f6:25:3b:f5:09:b3:17:e8:46:3d:bf:d0:9b +# SHA1 Fingerprint: 8f:6b:f2:a9:27:4a:da:14:a0:c4:f4:8e:61:27:f9:c0:1e:78:5d:d1 +# SHA256 Fingerprint: 88:f4:38:dc:f8:ff:d1:fa:8f:42:91:15:ff:e5:f8:2a:e1:e0:6e:0c:70:c3:75:fa:ad:71:7b:34:a4:9e:72:65 +-----BEGIN CERTIFICATE----- +MIIFojCCA4qgAwIBAgIUAZQwHqIL3fXFMyqxQ0Rx+NZQTQ0wDQYJKoZIhvcNAQEM +BQAwaTELMAkGA1UEBhMCS1IxJjAkBgNVBAoMHU5BVkVSIEJVU0lORVNTIFBMQVRG +T1JNIENvcnAuMTIwMAYDVQQDDClOQVZFUiBHbG9iYWwgUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eTAeFw0xNzA4MTgwODU4NDJaFw0zNzA4MTgyMzU5NTlaMGkx +CzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBD +b3JwLjEyMDAGA1UEAwwpTkFWRVIgR2xvYmFsIFJvb3QgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC21PGTXLVA +iQqrDZBbUGOukJR0F0Vy1ntlWilLp1agS7gvQnXp2XskWjFlqxcX0TM62RHcQDaH +38dq6SZeWYp34+hInDEW+j6RscrJo+KfziFTowI2MMtSAuXaMl3Dxeb57hHHi8lE +HoSTGEq0n+USZGnQJoViAbbJAh2+g1G7XNr4rRVqmfeSVPc0W+m/6imBEtRTkZaz +kVrd/pBzKPswRrXKCAfHcXLJZtM0l/aM9BhK4dA9WkW2aacp+yPOiNgSnABIqKYP +szuSjXEOdMWLyEz59JuOuDxp7W87UC9Y7cSw0BwbagzivESq2M0UXZR4Yb8Obtoq +vC8MC3GmsxY/nOb5zJ9TNeIDoKAYv7vxvvTWjIcNQvcGufFt7QSUqP620wbGQGHf +nZ3zVHbOUzoBppJB7ASjjw2i1QnK1sua8e9DXcCrpUHPXFNwcMmIpi3Ua2FzUCaG +YQ5fG8Ir4ozVu53BA0K6lNpfqbDKzE0K70dpAy8i+/Eozr9dUGWokG2zdLAIx6yo +0es+nPxdGoMuK8u180SdOqcXYZaicdNwlhVNt0xz7hlcxVs+Qf6sdWA7G2POAN3a +CJBitOUt7kinaxeZVL6HSuOpXgRM6xBtVNbv8ejyYhbLgGvtPe31HzClrkvJE+2K +AQHJuFFYwGY6sWZLxNUxAmLpdIQM201GLQIDAQABo0IwQDAdBgNVHQ4EFgQU0p+I +36HNLL3s9TsBAZMzJ7LrYEswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMB +Af8wDQYJKoZIhvcNAQEMBQADggIBADLKgLOdPVQG3dLSLvCkASELZ0jKbY7gyKoN +qo0hV4/GPnrK21HUUrPUloSlWGB/5QuOH/XcChWB5Tu2tyIvCZwTFrFsDDUIbatj +cu3cvuzHV+YwIHHW1xDBE1UBjCpD5EHxzzp6U5LOogMFDTjfArsQLtk70pt6wKGm ++LUx5vR1yblTmXVHIloUFcd4G7ad6Qz4G3bxhYTeodoS76TiEJd6eN4MUZeoIUCL +hr0N8F5OSza7OyAfikJW4Qsav3vQIkMsRIz75Sq0bBwcupTgE34h5prCy8VCZLQe +lHsIJchxzIdFV4XTnyliIoNRlwAYl3dqmJLJfGBs32x9SuRwTMKeuB330DTHD8z7 +p/8Dvq1wkNoL3chtl1+afwkyQf3NosxabUzyqkn+Zvjp2DXrDige7kgvOtB5CTh8 +piKCk5XQA76+AqAF3SAi428diDRgxuYKuQl1C/AH6GmWNcf7I4GOODm4RStDeKLR +LBT/DShycpWbXgnbiUSYqqFJu3FS8r/2/yehNq+4tneI3TqkbZs0kNwUXTC/t+sX +5Ie3cdCh13cV1ELX8vMxmV2b3RZtP+oGI/hGoiLtk/bdmuYqh7GYVPEi92tF4+KO +dh2ajcQGjTa3FPOdVGm3jjzVpG2Tgbet9r1ke8LJaDmgkpzNNIaRkPpkUZ3+/uul +9XXeifdy +-----END CERTIFICATE----- + +# Issuer: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Subject: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Label: "AC RAIZ FNMT-RCM SERVIDORES SEGUROS" +# Serial: 131542671362353147877283741781055151509 +# MD5 Fingerprint: 19:36:9c:52:03:2f:d2:d1:bb:23:cc:dd:1e:12:55:bb +# SHA1 Fingerprint: 62:ff:d9:9e:c0:65:0d:03:ce:75:93:d2:ed:3f:2d:32:c9:e3:e5:4a +# SHA256 Fingerprint: 55:41:53:b1:3d:2c:f9:dd:b7:53:bf:be:1a:4e:0a:e0:8d:0a:a4:18:70:58:fe:60:a2:b8:62:b2:e4:b8:7b:cb +-----BEGIN CERTIFICATE----- +MIICbjCCAfOgAwIBAgIQYvYybOXE42hcG2LdnC6dlTAKBggqhkjOPQQDAzB4MQsw +CQYDVQQGEwJFUzERMA8GA1UECgwIRk5NVC1SQ00xDjAMBgNVBAsMBUNlcmVzMRgw +FgYDVQRhDA9WQVRFUy1RMjgyNjAwNEoxLDAqBgNVBAMMI0FDIFJBSVogRk5NVC1S +Q00gU0VSVklET1JFUyBTRUdVUk9TMB4XDTE4MTIyMDA5MzczM1oXDTQzMTIyMDA5 +MzczM1oweDELMAkGA1UEBhMCRVMxETAPBgNVBAoMCEZOTVQtUkNNMQ4wDAYDVQQL +DAVDZXJlczEYMBYGA1UEYQwPVkFURVMtUTI4MjYwMDRKMSwwKgYDVQQDDCNBQyBS +QUlaIEZOTVQtUkNNIFNFUlZJRE9SRVMgU0VHVVJPUzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPa6V1PIyqvfNkpSIeSX0oNnnvBlUdBeh8dHsVnyV0ebAAKTRBdp20LH +sbI6GA60XYyzZl2hNPk2LEnb80b8s0RpRBNm/dfF/a82Tc4DTQdxz69qBdKiQ1oK +Um8BA06Oi6NCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFAG5L++/EYZg8k/QQW6rcx/n0m5JMAoGCCqGSM49BAMDA2kAMGYCMQCu +SuMrQMN0EfKVrRYj3k4MGuZdpSRea0R7/DjiT8ucRRcRTBQnJlU5dUoDzBOQn5IC +MQD6SmxgiHPz7riYYqnOK8LZiqZwMR2vsJRM60/G49HzYqc8/5MuB1xJAWdpEgJy +v+c= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Label: "GlobalSign Root R46" +# Serial: 1552617688466950547958867513931858518042577 +# MD5 Fingerprint: c4:14:30:e4:fa:66:43:94:2a:6a:1b:24:5f:19:d0:ef +# SHA1 Fingerprint: 53:a2:b0:4b:ca:6b:d6:45:e6:39:8a:8e:c4:0d:d2:bf:77:c3:a2:90 +# SHA256 Fingerprint: 4f:a3:12:6d:8d:3a:11:d1:c4:85:5a:4f:80:7c:ba:d6:cf:91:9d:3a:5a:88:b0:3b:ea:2c:63:72:d9:3c:40:c9 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgISEdK7udcjGJ5AXwqdLdDfJWfRMA0GCSqGSIb3DQEBDAUA +MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYD +VQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMy +MDAwMDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYt +c2ExHDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCsrHQy6LNl5brtQyYdpokNRbopiLKkHWPd08EsCVeJ +OaFV6Wc0dwxu5FUdUiXSE2te4R2pt32JMl8Nnp8semNgQB+msLZ4j5lUlghYruQG +vGIFAha/r6gjA7aUD7xubMLL1aa7DOn2wQL7Id5m3RerdELv8HQvJfTqa1VbkNud +316HCkD7rRlr+/fKYIje2sGP1q7Vf9Q8g+7XFkyDRTNrJ9CG0Bwta/OrffGFqfUo +0q3v84RLHIf8E6M6cqJaESvWJ3En7YEtbWaBkoe0G1h6zD8K+kZPTXhc+CtI4wSE +y132tGqzZfxCnlEmIyDLPRT5ge1lFgBPGmSXZgjPjHvjK8Cd+RTyG/FWaha/LIWF +zXg4mutCagI0GIMXTpRW+LaCtfOW3T3zvn8gdz57GSNrLNRyc0NXfeD412lPFzYE ++cCQYDdF3uYM2HSNrpyibXRdQr4G9dlkbgIQrImwTDsHTUB+JMWKmIJ5jqSngiCN +I/onccnfxkF0oE32kRbcRoxfKWMxWXEM2G/CtjJ9++ZdU6Z+Ffy7dXxd7Pj2Fxzs +x2sZy/N78CsHpdlseVR2bJ0cpm4O6XkMqCNqo98bMDGfsVR7/mrLZqrcZdCinkqa +ByFrgY/bxFn63iLABJzjqls2k+g9vXqhnQt2sQvHnf3PmKgGwvgqo6GDoLclcqUC +4wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUA1yrc4GHqMywptWU4jaWSf8FmSwwDQYJKoZIhvcNAQEMBQADggIBAHx4 +7PYCLLtbfpIrXTncvtgdokIzTfnvpCo7RGkerNlFo048p9gkUbJUHJNOxO97k4Vg +JuoJSOD1u8fpaNK7ajFxzHmuEajwmf3lH7wvqMxX63bEIaZHU1VNaL8FpO7XJqti +2kM3S+LGteWygxk6x9PbTZ4IevPuzz5i+6zoYMzRx6Fcg0XERczzF2sUyQQCPtIk +pnnpHs6i58FZFZ8d4kuaPp92CC1r2LpXFNqD6v6MVenQTqnMdzGxRBF6XLE+0xRF +FRhiJBPSy03OXIPBNvIQtQ6IbbjhVp+J3pZmOUdkLG5NrmJ7v2B0GbhWrJKsFjLt +rWhV/pi60zTe9Mlhww6G9kuEYO4Ne7UyWHmRVSyBQ7N0H3qqJZ4d16GLuc1CLgSk +ZoNNiTW2bKg2SnkheCLQQrzRQDGQob4Ez8pn7fXwgNNgyYMqIgXQBztSvwyeqiv5 +u+YfjyW6hY0XHgL+XVAEV8/+LbzvXMAaq7afJMbfc2hIkCwU9D9SGuTSyxTDYWnP +4vkYxboznxSjBF25cfe1lNj2M8FawTSLfJvdkzrnE6JwYZ+vj+vYxXX4M2bUdGc6 +N3ec592kD3ZDZopD8p/7DEJ4Y9HiD2971KE9dJeFt0g5QdYg/NA6s/rob8SKunE3 +vouXsXgxT7PntgMTzlSdriVZzH81Xwj3QEUxeCp6 +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Label: "GlobalSign Root E46" +# Serial: 1552617690338932563915843282459653771421763 +# MD5 Fingerprint: b5:b8:66:ed:de:08:83:e3:c9:e2:01:34:06:ac:51:6f +# SHA1 Fingerprint: 39:b4:6c:d5:fe:80:06:eb:e2:2f:4a:bb:08:33:a0:af:db:b9:dd:84 +# SHA256 Fingerprint: cb:b9:c4:4d:84:b8:04:3e:10:50:ea:31:a6:9f:51:49:55:d7:bf:d2:e2:c6:b4:93:01:01:9a:d6:1d:9f:50:58 +-----BEGIN CERTIFICATE----- +MIICCzCCAZGgAwIBAgISEdK7ujNu1LzmJGjFDYQdmOhDMAoGCCqGSM49BAMDMEYx +CzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQD +ExNHbG9iYWxTaWduIFJvb3QgRTQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMyMDAw +MDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2Ex +HDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAScDrHPt+ieUnd1NPqlRqetMhkytAepJ8qUuwzSChDH2omwlwxwEwkBjtjq +R+q+soArzfwoDdusvKSGN+1wCAB16pMLey5SnCNoIwZD7JIvU4Tb+0cUB+hflGdd +yXqBPCCjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBQxCpCPtsad0kRLgLWi5h+xEk8blTAKBggqhkjOPQQDAwNoADBlAjEA31SQ +7Zvvi5QCkxeCmb6zniz2C5GMn0oUsfZkvLtoURMMA/cVi4RguYv/Uo7njLwcAjA8 ++RHUjE7AwWHCFUyqqx0LMV87HOIAl0Qx5v5zli/altP+CAezNIm8BZ/3Hobui3A= +-----END CERTIFICATE----- + +# Issuer: CN=GLOBALTRUST 2020 O=e-commerce monitoring GmbH +# Subject: CN=GLOBALTRUST 2020 O=e-commerce monitoring GmbH +# Label: "GLOBALTRUST 2020" +# Serial: 109160994242082918454945253 +# MD5 Fingerprint: 8a:c7:6f:cb:6d:e3:cc:a2:f1:7c:83:fa:0e:78:d7:e8 +# SHA1 Fingerprint: d0:67:c1:13:51:01:0c:aa:d0:c7:6a:65:37:31:16:26:4f:53:71:a2 +# SHA256 Fingerprint: 9a:29:6a:51:82:d1:d4:51:a2:e3:7f:43:9b:74:da:af:a2:67:52:33:29:f9:0f:9a:0d:20:07:c3:34:e2:3c:9a +-----BEGIN CERTIFICATE----- +MIIFgjCCA2qgAwIBAgILWku9WvtPilv6ZeUwDQYJKoZIhvcNAQELBQAwTTELMAkG +A1UEBhMCQVQxIzAhBgNVBAoTGmUtY29tbWVyY2UgbW9uaXRvcmluZyBHbWJIMRkw +FwYDVQQDExBHTE9CQUxUUlVTVCAyMDIwMB4XDTIwMDIxMDAwMDAwMFoXDTQwMDYx +MDAwMDAwMFowTTELMAkGA1UEBhMCQVQxIzAhBgNVBAoTGmUtY29tbWVyY2UgbW9u +aXRvcmluZyBHbWJIMRkwFwYDVQQDExBHTE9CQUxUUlVTVCAyMDIwMIICIjANBgkq +hkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAri5WrRsc7/aVj6B3GyvTY4+ETUWiD59b +RatZe1E0+eyLinjF3WuvvcTfk0Uev5E4C64OFudBc/jbu9G4UeDLgztzOG53ig9Z +YybNpyrOVPu44sB8R85gfD+yc/LAGbaKkoc1DZAoouQVBGM+uq/ufF7MpotQsjj3 +QWPKzv9pj2gOlTblzLmMCcpL3TGQlsjMH/1WljTbjhzqLL6FLmPdqqmV0/0plRPw +yJiT2S0WR5ARg6I6IqIoV6Lr/sCMKKCmfecqQjuCgGOlYx8ZzHyyZqjC0203b+J+ +BlHZRYQfEs4kUmSFC0iAToexIiIwquuuvuAC4EDosEKAA1GqtH6qRNdDYfOiaxaJ +SaSjpCuKAsR49GiKweR6NrFvG5Ybd0mN1MkGco/PU+PcF4UgStyYJ9ORJitHHmkH +r96i5OTUawuzXnzUJIBHKWk7buis/UDr2O1xcSvy6Fgd60GXIsUf1DnQJ4+H4xj0 +4KlGDfV0OoIu0G4skaMxXDtG6nsEEFZegB31pWXogvziB4xiRfUg3kZwhqG8k9Me +dKZssCz3AwyIDMvUclOGvGBG85hqwvG/Q/lwIHfKN0F5VVJjjVsSn8VoxIidrPIw +q7ejMZdnrY8XD2zHc+0klGvIg5rQmjdJBKuxFshsSUktq6HQjJLyQUp5ISXbY9e2 +nKd+Qmn7OmMCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwHQYDVR0OBBYEFNwuH9FhN3nkq9XVsxJxaD1qaJwiMB8GA1UdIwQYMBaAFNwu +H9FhN3nkq9XVsxJxaD1qaJwiMA0GCSqGSIb3DQEBCwUAA4ICAQCR8EICaEDuw2jA +VC/f7GLDw56KoDEoqoOOpFaWEhCGVrqXctJUMHytGdUdaG/7FELYjQ7ztdGl4wJC +XtzoRlgHNQIw4Lx0SsFDKv/bGtCwr2zD/cuz9X9tAy5ZVp0tLTWMstZDFyySCstd +6IwPS3BD0IL/qMy/pJTAvoe9iuOTe8aPmxadJ2W8esVCgmxcB9CpwYhgROmYhRZf ++I/KARDOJcP5YBugxZfD0yyIMaK9MOzQ0MAS8cE54+X1+NZK3TTN+2/BT+MAi1bi +kvcoskJ3ciNnxz8RFbLEAwW+uxF7Cr+obuf/WEPPm2eggAe2HcqtbepBEX4tdJP7 +wry+UUTF72glJ4DjyKDUEuzZpTcdN3y0kcra1LGWge9oXHYQSa9+pTeAsRxSvTOB +TI/53WXZFM2KJVj04sWDpQmQ1GwUY7VA3+vA/MRYfg0UFodUJ25W5HCEuGwyEn6C +MUO+1918oa2u1qsgEu8KwxCMSZY13At1XrFP1U80DhEgB3VDRemjEdqso5nCtnkn +4rnvyOL2NSl6dPrFf4IFYqYK6miyeUcGbvJXqBUzxvd4Sj1Ce2t+/vdG6tHrju+I +aFvowdlxfv1k7/9nR4hYJS8+hge9+6jlgqispdNpQ80xiEmEU5LAsTkbOYMBMMTy +qfrQA71yN2BWHzZ8vTmR9W0Nv3vXkg== +-----END CERTIFICATE----- + +# Issuer: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Subject: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Label: "ANF Secure Server Root CA" +# Serial: 996390341000653745 +# MD5 Fingerprint: 26:a6:44:5a:d9:af:4e:2f:b2:1d:b6:65:b0:4e:e8:96 +# SHA1 Fingerprint: 5b:6e:68:d0:cc:15:b6:a0:5f:1e:c1:5f:ae:02:fc:6b:2f:5d:6f:74 +# SHA256 Fingerprint: fb:8f:ec:75:91:69:b9:10:6b:1e:51:16:44:c6:18:c5:13:04:37:3f:6c:06:43:08:8d:8b:ef:fd:1b:99:75:99 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum EC-384 CA" +# Serial: 160250656287871593594747141429395092468 +# MD5 Fingerprint: b6:65:b3:96:60:97:12:a1:ec:4e:e1:3d:a3:c6:c9:f1 +# SHA1 Fingerprint: f3:3e:78:3c:ac:df:f4:a2:cc:ac:67:55:69:56:d7:e5:16:3c:e1:ed +# SHA256 Fingerprint: 6b:32:80:85:62:53:18:aa:50:d1:73:c9:8d:8b:da:09:d5:7e:27:41:3d:11:4c:f7:87:a0:f5:d0:6c:03:0c:f6 +-----BEGIN CERTIFICATE----- +MIICZTCCAeugAwIBAgIQeI8nXIESUiClBNAt3bpz9DAKBggqhkjOPQQDAzB0MQsw +CQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEuMScw +JQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAXBgNVBAMT +EENlcnR1bSBFQy0zODQgQ0EwHhcNMTgwMzI2MDcyNDU0WhcNNDMwMzI2MDcyNDU0 +WjB0MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBT +LkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAX +BgNVBAMTEENlcnR1bSBFQy0zODQgQ0EwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATE +KI6rGFtqvm5kN2PkzeyrOvfMobgOgknXhimfoZTy42B4mIF4Bk3y7JoOV2CDn7Tm +Fy8as10CW4kjPMIRBSqniBMY81CE1700LCeJVf/OTOffph8oxPBUw7l8t1Ot68Kj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI0GZnQkdjrzife81r1HfS+8 +EF9LMA4GA1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNoADBlAjADVS2m5hjEfO/J +UG7BJw+ch69u1RsIGL2SKcHvlJF40jocVYli5RsJHrpka/F2tNQCMQC0QoSZ/6vn +nvuRlydd3LBbMHHOXjgaatkl5+r3YZJW+OraNsKHZZYuciUvf9/DE8k= +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Root CA" +# Serial: 40870380103424195783807378461123655149 +# MD5 Fingerprint: 51:e1:c2:e7:fe:4c:84:af:59:0e:2f:f4:54:6f:ea:29 +# SHA1 Fingerprint: c8:83:44:c0:18:ae:9f:cc:f1:87:b7:8f:22:d1:c5:d7:45:84:ba:e5 +# SHA256 Fingerprint: fe:76:96:57:38:55:77:3e:37:a9:5e:7a:d4:d9:cc:96:c3:01:57:c1:5d:31:76:5b:a9:b1:57:04:e1:ae:78:fd +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Subject: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Label: "TunTrust Root CA" +# Serial: 108534058042236574382096126452369648152337120275 +# MD5 Fingerprint: 85:13:b9:90:5b:36:5c:b6:5e:b8:5a:f8:e0:31:57:b4 +# SHA1 Fingerprint: cf:e9:70:84:0f:e0:73:0f:9d:f6:0c:7f:2c:4b:ee:20:46:34:9c:bb +# SHA256 Fingerprint: 2e:44:10:2a:b5:8c:b8:54:19:45:1c:8e:19:d9:ac:f3:66:2c:af:bc:61:4b:6a:53:96:0a:30:f7:d0:e2:eb:41 +-----BEGIN CERTIFICATE----- +MIIFszCCA5ugAwIBAgIUEwLV4kBMkkaGFmddtLu7sms+/BMwDQYJKoZIhvcNAQEL +BQAwYTELMAkGA1UEBhMCVE4xNzA1BgNVBAoMLkFnZW5jZSBOYXRpb25hbGUgZGUg +Q2VydGlmaWNhdGlvbiBFbGVjdHJvbmlxdWUxGTAXBgNVBAMMEFR1blRydXN0IFJv +b3QgQ0EwHhcNMTkwNDI2MDg1NzU2WhcNNDQwNDI2MDg1NzU2WjBhMQswCQYDVQQG +EwJUTjE3MDUGA1UECgwuQWdlbmNlIE5hdGlvbmFsZSBkZSBDZXJ0aWZpY2F0aW9u +IEVsZWN0cm9uaXF1ZTEZMBcGA1UEAwwQVHVuVHJ1c3QgUm9vdCBDQTCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAMPN0/y9BFPdDCA61YguBUtB9YOCfvdZ +n56eY+hz2vYGqU8ftPkLHzmMmiDQfgbU7DTZhrx1W4eI8NLZ1KMKsmwb60ksPqxd +2JQDoOw05TDENX37Jk0bbjBU2PWARZw5rZzJJQRNmpA+TkBuimvNKWfGzC3gdOgF +VwpIUPp6Q9p+7FuaDmJ2/uqdHYVy7BG7NegfJ7/Boce7SBbdVtfMTqDhuazb1YMZ +GoXRlJfXyqNlC/M4+QKu3fZnz8k/9YosRxqZbwUN/dAdgjH8KcwAWJeRTIAAHDOF +li/LQcKLEITDCSSJH7UP2dl3RxiSlGBcx5kDPP73lad9UKGAwqmDrViWVSHbhlnU +r8a83YFuB9tgYv7sEG7aaAH0gxupPqJbI9dkxt/con3YS7qC0lH4Zr8GRuR5KiY2 +eY8fTpkdso8MDhz/yV3A/ZAQprE38806JG60hZC/gLkMjNWb1sjxVj8agIl6qeIb +MlEsPvLfe/ZdeikZjuXIvTZxi11Mwh0/rViizz1wTaZQmCXcI/m4WEEIcb9PuISg +jwBUFfyRbVinljvrS5YnzWuioYasDXxU5mZMZl+QviGaAkYt5IPCgLnPSz7ofzwB +7I9ezX/SKEIBlYrilz0QIX32nRzFNKHsLA4KUiwSVXAkPcvCFDVDXSdOvsC9qnyW +5/yeYa1E0wCXAgMBAAGjYzBhMB0GA1UdDgQWBBQGmpsfU33x9aTI04Y+oXNZtPdE +ITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFAaamx9TffH1pMjThj6hc1m0 +90QhMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAqgVutt0Vyb+z +xiD2BkewhpMl0425yAA/l/VSJ4hxyXT968pk21vvHl26v9Hr7lxpuhbI87mP0zYu +QEkHDVneixCwSQXi/5E/S7fdAo74gShczNxtr18UnH1YeA32gAm56Q6XKRm4t+v4 +FstVEuTGfbvE7Pi1HE4+Z7/FXxttbUcoqgRYYdZ2vyJ/0Adqp2RT8JeNnYA/u8EH +22Wv5psymsNUk8QcCMNE+3tjEUPRahphanltkE8pjkcFwRJpadbGNjHh/PqAulxP +xOu3Mqz4dWEX1xAZufHSCe96Qp1bWgvUxpVOKs7/B9dPfhgGiPEZtdmYu65xxBzn +dFlY7wyJz4sfdZMaBBSSSFCp61cpABbjNhzI+L/wM9VBD8TMPN3pM0MBkRArHtG5 +Xc0yGYuPjCB31yLEQtyEFpslbei0VXF/sHyz03FJuc9SpAQ/3D2gu68zngowYI7b +nV2UqL1g52KAdoGDDIzMMEZJ4gzSqK/rYXHv5yJiqfdcZGyfFoxnNidF9Ql7v/YQ +CvGwjVRDjAS6oz/v4jXH+XTgbzRB0L9zZVcg+ZtnemZoJE6AZb0QmQZZ8mWvuMZH +u/2QeItBcy6vVR/cO5JyboTT0GFMDcx2V+IthSIVNg3rAZ3r2OvEhJn7wAzMMujj +d9qDRIueVSjAi1jTkD5OGwDxFa2DK5o= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS RSA Root CA 2021" +# Serial: 76817823531813593706434026085292783742 +# MD5 Fingerprint: 65:47:9b:58:86:dd:2c:f0:fc:a2:84:1f:1e:96:c4:91 +# SHA1 Fingerprint: 02:2d:05:82:fa:88:ce:14:0c:06:79:de:7f:14:10:e9:45:d7:a5:6d +# SHA256 Fingerprint: d9:5d:0e:8e:da:79:52:5b:f9:be:b1:1b:14:d2:10:0d:32:94:98:5f:0c:62:d9:fa:bd:9c:d9:99:ec:cb:7b:1d +-----BEGIN CERTIFICATE----- +MIIFpDCCA4ygAwIBAgIQOcqTHO9D88aOk8f0ZIk4fjANBgkqhkiG9w0BAQsFADBs +MQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBSU0Eg +Um9vdCBDQSAyMDIxMB4XDTIxMDIxOTEwNTUzOFoXDTQ1MDIxMzEwNTUzN1owbDEL +MAkGA1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl +YXJjaCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgUlNBIFJv +b3QgQ0EgMjAyMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAIvC569l +mwVnlskNJLnQDmT8zuIkGCyEf3dRywQRNrhe7Wlxp57kJQmXZ8FHws+RFjZiPTgE +4VGC/6zStGndLuwRo0Xua2s7TL+MjaQenRG56Tj5eg4MmOIjHdFOY9TnuEFE+2uv +a9of08WRiFukiZLRgeaMOVig1mlDqa2YUlhu2wr7a89o+uOkXjpFc5gH6l8Cct4M +pbOfrqkdtx2z/IpZ525yZa31MJQjB/OCFks1mJxTuy/K5FrZx40d/JiZ+yykgmvw +Kh+OC19xXFyuQnspiYHLA6OZyoieC0AJQTPb5lh6/a6ZcMBaD9YThnEvdmn8kN3b +LW7R8pv1GmuebxWMevBLKKAiOIAkbDakO/IwkfN4E8/BPzWr8R0RI7VDIp4BkrcY +AuUR0YLbFQDMYTfBKnya4dC6s1BG7oKsnTH4+yPiAwBIcKMJJnkVU2DzOFytOOqB +AGMUuTNe3QvboEUHGjMJ+E20pwKmafTCWQWIZYVWrkvL4N48fS0ayOn7H6NhStYq +E613TBoYm5EPWNgGVMWX+Ko/IIqmhaZ39qb8HOLubpQzKoNQhArlT4b4UEV4AIHr +W2jjJo3Me1xR9BQsQL4aYB16cmEdH2MtiKrOokWQCPxrvrNQKlr9qEgYRtaQQJKQ +CoReaDH46+0N0x3GfZkYVVYnZS6NRcUk7M7jAgMBAAGjQjBAMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFApII6ZgpJIKM+qTW8VX6iVNvRLuMA4GA1UdDwEB/wQE +AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAPpBIqm5iFSVmewzVjIuJndftTgfvnNAU +X15QvWiWkKQUEapobQk1OUAJ2vQJLDSle1mESSmXdMgHHkdt8s4cUCbjnj1AUz/3 +f5Z2EMVGpdAgS1D0NTsY9FVqQRtHBmg8uwkIYtlfVUKqrFOFrJVWNlar5AWMxaja +H6NpvVMPxP/cyuN+8kyIhkdGGvMA9YCRotxDQpSbIPDRzbLrLFPCU3hKTwSUQZqP +JzLB5UkZv/HywouoCjkxKLR9YjYsTewfM7Z+d21+UPCfDtcRj88YxeMn/ibvBZ3P +zzfF0HvaO7AWhAw6k9a+F9sPPg4ZeAnHqQJyIkv3N3a6dcSFA1pj1bF1BcK5vZSt +jBWZp5N99sXzqnTPBIWUmAD04vnKJGW/4GKvyMX6ssmeVkjaef2WdhW+o45WxLM0 +/L5H9MG0qPzVMIho7suuyWPEdr6sOBjhXlzPrjoiUevRi7PzKzMHVIf6tLITe7pT +BGIBnfHAT+7hOtSLIBD6Alfm78ELt5BGnBkpjNxvoEppaZS3JGWg/6w/zgH7IS79 +aPib8qXPMThcFarmlwDB31qlpzmq6YR/PFGoOtmUW4y/Twhx5duoXNTSpv4Ao8YW +xw/ogM4cKGR0GQjTQuPOAF1/sdwTsOEFy9EgqoZ0njnnkf3/W9b3raYvAwtt41dU +63ZTGI0RmLo= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS ECC Root CA 2021" +# Serial: 137515985548005187474074462014555733966 +# MD5 Fingerprint: ae:f7:4c:e5:66:35:d1:b7:9b:8c:22:93:74:d3:4b:b0 +# SHA1 Fingerprint: bc:b0:c1:9d:e9:98:92:70:19:38:57:e9:8d:a7:b4:5d:6e:ee:01:48 +# SHA256 Fingerprint: 3f:99:cc:47:4a:cf:ce:4d:fe:d5:87:94:66:5e:47:8d:15:47:73:9f:2e:78:0f:1b:b4:ca:9b:13:30:97:d4:01 +-----BEGIN CERTIFICATE----- +MIICVDCCAdugAwIBAgIQZ3SdjXfYO2rbIvT/WeK/zjAKBggqhkjOPQQDAzBsMQsw +CQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2Vh +cmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBFQ0MgUm9v +dCBDQSAyMDIxMB4XDTIxMDIxOTExMDExMFoXDTQ1MDIxMzExMDEwOVowbDELMAkG +A1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj +aCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgRUNDIFJvb3Qg +Q0EgMjAyMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABDgI/rGgltJ6rK9JOtDA4MM7 +KKrxcm1lAEeIhPyaJmuqS7psBAqIXhfyVYf8MLA04jRYVxqEU+kw2anylnTDUR9Y +STHMmE5gEYd103KUkE+bECUqqHgtvpBBWJAVcqeht6NCMEAwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUyRtTgRL+BNUW0aq8mm+3oJUZbsowDgYDVR0PAQH/BAQD +AgGGMAoGCCqGSM49BAMDA2cAMGQCMBHervjcToiwqfAircJRQO9gcS3ujwLEXQNw +SaSS6sUUiHCm0w2wqsosQJz76YJumgIwK0eaB8bRwoF8yguWGEEbo/QwCZ61IygN +nxS2PFOiTAZpffpskcYqSUXm7LcT4Tps +-----END CERTIFICATE----- + +# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" +# Serial: 1977337328857672817 +# MD5 Fingerprint: 4e:6e:9b:54:4c:ca:b7:fa:48:e4:90:b1:15:4b:1c:a3 +# SHA1 Fingerprint: 0b:be:c2:27:22:49:cb:39:aa:db:35:5c:53:e3:8c:ae:78:ff:b6:fe +# SHA256 Fingerprint: 57:de:05:83:ef:d2:b2:6e:03:61:da:99:da:9d:f4:64:8d:ef:7e:e8:44:1c:3b:72:8a:fa:9b:cd:e0:f9:b2:6a +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIG3Dp0v+ubHEwDQYJKoZIhvcNAQELBQAwUTELMAkGA1UE +BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h +cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0xNDA5MjMxNTIyMDdaFw0zNjA1 +MDUxNTIyMDdaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg +Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 +thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM +cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG +L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i +NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h +X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b +m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy +Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja +EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T +KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF +6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh +OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMB0GA1UdDgQWBBRlzeurNR4APn7VdMAc +tHNHDhpkLzASBgNVHRMBAf8ECDAGAQH/AgEBMIGmBgNVHSAEgZ4wgZswgZgGBFUd +IAAwgY8wLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cuZmlybWFwcm9mZXNpb25hbC5j +b20vY3BzMFwGCCsGAQUFBwICMFAeTgBQAGEAcwBlAG8AIABkAGUAIABsAGEAIABC +AG8AbgBhAG4AbwB2AGEAIAA0ADcAIABCAGEAcgBjAGUAbABvAG4AYQAgADAAOAAw +ADEANzAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQELBQADggIBAHSHKAIrdx9m +iWTtj3QuRhy7qPj4Cx2Dtjqn6EWKB7fgPiDL4QjbEwj4KKE1soCzC1HA01aajTNF +Sa9J8OA9B3pFE1r/yJfY0xgsfZb43aJlQ3CTkBW6kN/oGbDbLIpgD7dvlAceHabJ +hfa9NPhAeGIQcDq+fUs5gakQ1JZBu/hfHAsdCPKxsIl68veg4MSPi3i1O1ilI45P +Vf42O+AMt8oqMEEgtIDNrvx2ZnOorm7hfNoD6JQg5iKj0B+QXSBTFCZX2lSX3xZE +EAEeiGaPcjiT3SC3NL7X8e5jjkd5KAb881lFJWAiMxujX6i6KtoaPc1A6ozuBRWV +1aUsIC+nmCjuRfzxuIgALI9C2lHVnOUTaHFFQ4ueCyE8S1wF3BqfmI7avSKecs2t +CsvMo2ebKHTEm9caPARYpoKdrcd7b/+Alun4jWq9GJAd/0kakFI3ky88Al2CdgtR +5xbHV/g4+afNmyJU72OwFW1TZQNKXkqgsqeOSQBZONXH9IBk9W6VULgRfhVwOEqw +f9DEMnDAGf/JOC0ULGb0QkTmVXYbgBVX/8Cnp6o5qtjTcNAuuuuUavpfNIbnYrX9 +ivAwhZTJryQCL2/W3Wf+47BVTwSYT6RBVuKT0Gro1vP7ZeDOdcQxWQzugsgMYDNK +GbqEZycPvEJdvSRUDewdcAZfpLz6IHxV +-----END CERTIFICATE----- + +# Issuer: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. +# Subject: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. +# Label: "vTrus ECC Root CA" +# Serial: 630369271402956006249506845124680065938238527194 +# MD5 Fingerprint: de:4b:c1:f5:52:8c:9b:43:e1:3e:8f:55:54:17:8d:85 +# SHA1 Fingerprint: f6:9c:db:b0:fc:f6:02:13:b6:52:32:a6:a3:91:3f:16:70:da:c3:e1 +# SHA256 Fingerprint: 30:fb:ba:2c:32:23:8e:2a:98:54:7a:f9:79:31:e5:50:42:8b:9b:3f:1c:8e:eb:66:33:dc:fa:86:c5:b2:7d:d3 +-----BEGIN CERTIFICATE----- +MIICDzCCAZWgAwIBAgIUbmq8WapTvpg5Z6LSa6Q75m0c1towCgYIKoZIzj0EAwMw +RzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4xGjAY +BgNVBAMTEXZUcnVzIEVDQyBSb290IENBMB4XDTE4MDczMTA3MjY0NFoXDTQzMDcz +MTA3MjY0NFowRzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28u +LEx0ZC4xGjAYBgNVBAMTEXZUcnVzIEVDQyBSb290IENBMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAEZVBKrox5lkqqHAjDo6LN/llWQXf9JpRCux3NCNtzslt188+cToL0 +v/hhJoVs1oVbcnDS/dtitN9Ti72xRFhiQgnH+n9bEOf+QP3A2MMrMudwpremIFUd +e4BdS49nTPEQo0IwQDAdBgNVHQ4EFgQUmDnNvtiyjPeyq+GtJK97fKHbH88wDwYD +VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwCgYIKoZIzj0EAwMDaAAwZQIw +V53dVvHH4+m4SVBrm2nDb+zDfSXkV5UTQJtS0zvzQBm8JsctBp61ezaf9SXUY2sA +AjEA6dPGnlaaKsyh2j/IZivTWJwghfqrkYpwcBE4YGQLYgmRWAD5Tfs0aNoJrSEG +GJTO +-----END CERTIFICATE----- + +# Issuer: CN=vTrus Root CA O=iTrusChina Co.,Ltd. +# Subject: CN=vTrus Root CA O=iTrusChina Co.,Ltd. +# Label: "vTrus Root CA" +# Serial: 387574501246983434957692974888460947164905180485 +# MD5 Fingerprint: b8:c9:37:df:fa:6b:31:84:64:c5:ea:11:6a:1b:75:fc +# SHA1 Fingerprint: 84:1a:69:fb:f5:cd:1a:25:34:13:3d:e3:f8:fc:b8:99:d0:c9:14:b7 +# SHA256 Fingerprint: 8a:71:de:65:59:33:6f:42:6c:26:e5:38:80:d0:0d:88:a1:8d:a4:c6:a9:1f:0d:cb:61:94:e2:06:c5:c9:63:87 +-----BEGIN CERTIFICATE----- +MIIFVjCCAz6gAwIBAgIUQ+NxE9izWRRdt86M/TX9b7wFjUUwDQYJKoZIhvcNAQEL +BQAwQzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4x +FjAUBgNVBAMTDXZUcnVzIFJvb3QgQ0EwHhcNMTgwNzMxMDcyNDA1WhcNNDMwNzMx +MDcyNDA1WjBDMQswCQYDVQQGEwJDTjEcMBoGA1UEChMTaVRydXNDaGluYSBDby4s +THRkLjEWMBQGA1UEAxMNdlRydXMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAL1VfGHTuB0EYgWgrmy3cLRB6ksDXhA/kFocizuwZotsSKYc +IrrVQJLuM7IjWcmOvFjai57QGfIvWcaMY1q6n6MLsLOaXLoRuBLpDLvPbmyAhykU +AyyNJJrIZIO1aqwTLDPxn9wsYTwaP3BVm60AUn/PBLn+NvqcwBauYv6WTEN+VRS+ +GrPSbcKvdmaVayqwlHeFXgQPYh1jdfdr58tbmnDsPmcF8P4HCIDPKNsFxhQnL4Z9 +8Cfe/+Z+M0jnCx5Y0ScrUw5XSmXX+6KAYPxMvDVTAWqXcoKv8R1w6Jz1717CbMdH +flqUhSZNO7rrTOiwCcJlwp2dCZtOtZcFrPUGoPc2BX70kLJrxLT5ZOrpGgrIDajt +J8nU57O5q4IikCc9Kuh8kO+8T/3iCiSn3mUkpF3qwHYw03dQ+A0Em5Q2AXPKBlim +0zvc+gRGE1WKyURHuFE5Gi7oNOJ5y1lKCn+8pu8fA2dqWSslYpPZUxlmPCdiKYZN +pGvu/9ROutW04o5IWgAZCfEF2c6Rsffr6TlP9m8EQ5pV9T4FFL2/s1m02I4zhKOQ +UqqzApVg+QxMaPnu1RcN+HFXtSXkKe5lXa/R7jwXC1pDxaWG6iSe4gUH3DRCEpHW +OXSuTEGC2/KmSNGzm/MzqvOmwMVO9fSddmPmAsYiS8GVP1BkLFTltvA8Kc9XAgMB +AAGjQjBAMB0GA1UdDgQWBBRUYnBj8XWEQ1iO0RYgscasGrz2iTAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAKbqSSaet +8PFww+SX8J+pJdVrnjT+5hpk9jprUrIQeBqfTNqK2uwcN1LgQkv7bHbKJAs5EhWd +nxEt/Hlk3ODg9d3gV8mlsnZwUKT+twpw1aA08XXXTUm6EdGz2OyC/+sOxL9kLX1j +bhd47F18iMjrjld22VkE+rxSH0Ws8HqA7Oxvdq6R2xCOBNyS36D25q5J08FsEhvM +Kar5CKXiNxTKsbhm7xqC5PD48acWabfbqWE8n/Uxy+QARsIvdLGx14HuqCaVvIiv +TDUHKgLKeBRtRytAVunLKmChZwOgzoy8sHJnxDHO2zTlJQNgJXtxmOTAGytfdELS +S8VZCAeHvsXDf+eW2eHcKJfWjwXj9ZtOyh1QRwVTsMo554WgicEFOwE30z9J4nfr +I8iIZjs9OXYhRvHsXyO466JmdXTBQPfYaJqT4i2pLr0cox7IdMakLXogqzu4sEb9 +b91fUlV1YvCXoHzXOP0l382gmxDPi7g4Xl7FtKYCNqEeXxzP4padKar9mK5S4fNB +UvupLnKWnyfjqnN9+BojZns7q2WwMgFLFT49ok8MKzWixtlnEjUwzXYuFrOZnk1P +Ti07NEPhmg4NpGaXutIcSkwsKouLgU9xGqndXHt7CMUADTdA43x7VF8vhV929ven +sBxXVsFy6K2ir40zSbofitzmdHxghm+Hl3s= +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X2 O=Internet Security Research Group +# Subject: CN=ISRG Root X2 O=Internet Security Research Group +# Label: "ISRG Root X2" +# Serial: 87493402998870891108772069816698636114 +# MD5 Fingerprint: d3:9e:c4:1e:23:3c:a6:df:cf:a3:7e:6d:e0:14:e6:e5 +# SHA1 Fingerprint: bd:b1:b9:3c:d5:97:8d:45:c6:26:14:55:f8:db:95:c7:5a:d1:53:af +# SHA256 Fingerprint: 69:72:9b:8e:15:a8:6e:fc:17:7a:57:af:b7:17:1d:fc:64:ad:d2:8c:2f:ca:8c:f1:50:7e:34:45:3c:cb:14:70 +-----BEGIN CERTIFICATE----- +MIICGzCCAaGgAwIBAgIQQdKd0XLq7qeAwSxs6S+HUjAKBggqhkjOPQQDAzBPMQsw +CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg +R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yMDA5MDQwMDAwMDBaFw00 +MDA5MTcxNjAwMDBaME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBT +ZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgyMHYw +EAYHKoZIzj0CAQYFK4EEACIDYgAEzZvVn4CDCuwJSvMWSj5cz3es3mcFDR0HttwW ++1qLFNvicWDEukWVEYmO6gbf9yoWHKS5xcUy4APgHoIYOIvXRdgKam7mAHf7AlF9 +ItgKbppbd9/w+kHsOdx1ymgHDB/qo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0T +AQH/BAUwAwEB/zAdBgNVHQ4EFgQUfEKWrt5LSDv6kviejM9ti6lyN5UwCgYIKoZI +zj0EAwMDaAAwZQIwe3lORlCEwkSHRhtFcP9Ymd70/aTSVaYgLXTWNLxBo1BfASdW +tL4ndQavEi51mI38AjEAi/V3bNTIZargCyzuFJ0nN6T5U6VR5CmD1/iQMVtCnwr1 +/q4AaOeMSQ+2b1tbFfLn +-----END CERTIFICATE----- + +# Issuer: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. +# Subject: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. +# Label: "HiPKI Root CA - G1" +# Serial: 60966262342023497858655262305426234976 +# MD5 Fingerprint: 69:45:df:16:65:4b:e8:68:9a:8f:76:5f:ff:80:9e:d3 +# SHA1 Fingerprint: 6a:92:e4:a8:ee:1b:ec:96:45:37:e3:29:57:49:cd:96:e3:e5:d2:60 +# SHA256 Fingerprint: f0:15:ce:3c:c2:39:bf:ef:06:4b:e9:f1:d2:c4:17:e1:a0:26:4a:0a:94:be:1f:0c:8d:12:18:64:eb:69:49:cc +-----BEGIN CERTIFICATE----- +MIIFajCCA1KgAwIBAgIQLd2szmKXlKFD6LDNdmpeYDANBgkqhkiG9w0BAQsFADBP +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xGzAZBgNVBAMMEkhpUEtJIFJvb3QgQ0EgLSBHMTAeFw0xOTAyMjIwOTQ2MDRa +Fw0zNzEyMzExNTU5NTlaME8xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3 +YSBUZWxlY29tIENvLiwgTHRkLjEbMBkGA1UEAwwSSGlQS0kgUm9vdCBDQSAtIEcx +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA9B5/UnMyDHPkvRN0o9Qw +qNCuS9i233VHZvR85zkEHmpwINJaR3JnVfSl6J3VHiGh8Ge6zCFovkRTv4354twv +Vcg3Px+kwJyz5HdcoEb+d/oaoDjq7Zpy3iu9lFc6uux55199QmQ5eiY29yTw1S+6 +lZgRZq2XNdZ1AYDgr/SEYYwNHl98h5ZeQa/rh+r4XfEuiAU+TCK72h8q3VJGZDnz +Qs7ZngyzsHeXZJzA9KMuH5UHsBffMNsAGJZMoYFL3QRtU6M9/Aes1MU3guvklQgZ +KILSQjqj2FPseYlgSGDIcpJQ3AOPgz+yQlda22rpEZfdhSi8MEyr48KxRURHH+CK +FgeW0iEPU8DtqX7UTuybCeyvQqww1r/REEXgphaypcXTT3OUM3ECoWqj1jOXTyFj +HluP2cFeRXF3D4FdXyGarYPM+l7WjSNfGz1BryB1ZlpK9p/7qxj3ccC2HTHsOyDr +y+K49a6SsvfhhEvyovKTmiKe0xRvNlS9H15ZFblzqMF8b3ti6RZsR1pl8w4Rm0bZ +/W3c1pzAtH2lsN0/Vm+h+fbkEkj9Bn8SV7apI09bA8PgcSojt/ewsTu8mL3WmKgM +a/aOEmem8rJY5AIJEzypuxC00jBF8ez3ABHfZfjcK0NVvxaXxA/VLGGEqnKG/uY6 +fsI/fe78LxQ+5oXdUG+3Se0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQU8ncX+l6o/vY9cdVouslGDDjYr7AwDgYDVR0PAQH/BAQDAgGGMA0GCSqG +SIb3DQEBCwUAA4ICAQBQUfB13HAE4/+qddRxosuej6ip0691x1TPOhwEmSKsxBHi +7zNKpiMdDg1H2DfHb680f0+BazVP6XKlMeJ45/dOlBhbQH3PayFUhuaVevvGyuqc +SE5XCV0vrPSltJczWNWseanMX/mF+lLFjfiRFOs6DRfQUsJ748JzjkZ4Bjgs6Fza +ZsT0pPBWGTMpWmWSBUdGSquEwx4noR8RkpkndZMPvDY7l1ePJlsMu5wP1G4wB9Tc +XzZoZjmDlicmisjEOf6aIW/Vcobpf2Lll07QJNBAsNB1CI69aO4I1258EHBGG3zg +iLKecoaZAeO/n0kZtCW+VmWuF2PlHt/o/0elv+EmBYTksMCv5wiZqAxeJoBF1Pho +L5aPruJKHJwWDBNvOIf2u8g0X5IDUXlwpt/L9ZlNec1OvFefQ05rLisY+GpzjLrF +Ne85akEez3GoorKGB1s6yeHvP2UEgEcyRHCVTjFnanRbEEV16rCf0OY1/k6fi8wr +kkVbbiVghUbN0aqwdmaTd5a+g744tiROJgvM7XpWGuDpWsZkrUx6AEhEL7lAuxM+ +vhV4nYWBSipX3tUZQ9rbyltHhoMLP7YNdnhzeSJesYAfz77RP1YQmCuVh6EfnWQU +YDksswBVLuT1sw5XxJFBAJw/6KXf6vb/yPCtbVKoF6ubYfwSUTXkJf2vqmqGOQ== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Label: "GlobalSign ECC Root CA - R4" +# Serial: 159662223612894884239637590694 +# MD5 Fingerprint: 26:29:f8:6d:e1:88:bf:a2:65:7f:aa:c4:cd:0f:7f:fc +# SHA1 Fingerprint: 6b:a0:b0:98:e1:71:ef:5a:ad:fe:48:15:80:77:10:f4:bd:6f:0b:28 +# SHA256 Fingerprint: b0:85:d7:0b:96:4f:19:1a:73:e4:af:0d:54:ae:7a:0e:07:aa:fd:af:9b:71:dd:08:62:13:8a:b7:32:5a:24:a2 +-----BEGIN CERTIFICATE----- +MIIB3DCCAYOgAwIBAgINAgPlfvU/k/2lCSGypjAKBggqhkjOPQQDAjBQMSQwIgYD +VQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0gUjQxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTIxMTEzMDAwMDAwWhcNMzgw +MTE5MDMxNDA3WjBQMSQwIgYDVQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0g +UjQxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wWTAT +BgcqhkjOPQIBBggqhkjOPQMBBwNCAAS4xnnTj2wlDp8uORkcA6SumuU5BwkWymOx +uYb4ilfBV85C+nOh92VC/x7BALJucw7/xyHlGKSq2XE/qNS5zowdo0IwQDAOBgNV +HQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVLB7rUW44kB/ ++wpu+74zyTyjhNUwCgYIKoZIzj0EAwIDRwAwRAIgIk90crlgr/HmnKAWBVBfw147 +bmF0774BxL4YSFlhgjICICadVGNA3jdgUM/I2O2dgq43mLyjj0xMqTQrbO/7lZsm +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R1 O=Google Trust Services LLC +# Subject: CN=GTS Root R1 O=Google Trust Services LLC +# Label: "GTS Root R1" +# Serial: 159662320309726417404178440727 +# MD5 Fingerprint: 05:fe:d0:bf:71:a8:a3:76:63:da:01:e0:d8:52:dc:40 +# SHA1 Fingerprint: e5:8c:1c:c4:91:3b:38:63:4b:e9:10:6e:e3:ad:8e:6b:9d:d9:81:4a +# SHA256 Fingerprint: d9:47:43:2a:bd:e7:b7:fa:90:fc:2e:6b:59:10:1b:12:80:e0:e1:c7:e4:e4:0f:a3:c6:88:7f:ff:57:a7:f4:cf +-----BEGIN CERTIFICATE----- +MIIFVzCCAz+gAwIBAgINAgPlk28xsBNJiGuiFzANBgkqhkiG9w0BAQwFADBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx9vaMf/vo +27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vXmX7w +Cl7raKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7zUjw +TcLCeoiKu7rPWRnWr4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0Pfybl +qAj+lug8aJRT7oM6iCsVlgmy4HqMLnXWnOunVmSPlk9orj2XwoSPwLxAwAtcvfaH +szVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly4cpk9+aCEI3oncKKiPo4Zor8 +Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr06zqkUspzBmk +MiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOORc92 +wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYWk70p +aDPvOmbsB4om3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+DVrN +VjzRlwW5y0vtOUucxD/SVRNuJLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgFlQID +AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEMBQADggIBAJ+qQibb +C5u+/x6Wki4+omVKapi6Ist9wTrYggoGxval3sBOh2Z5ofmmWJyq+bXmYOfg6LEe +QkEzCzc9zolwFcq1JKjPa7XSQCGYzyI0zzvFIoTgxQ6KfF2I5DUkzps+GlQebtuy +h6f88/qBVRRiClmpIgUxPoLW7ttXNLwzldMXG+gnoot7TiYaelpkttGsN/H9oPM4 +7HLwEXWdyzRSjeZ2axfG34arJ45JK3VmgRAhpuo+9K4l/3wV3s6MJT/KYnAK9y8J +ZgfIPxz88NtFMN9iiMG1D53Dn0reWVlHxYciNuaCp+0KueIHoI17eko8cdLiA6Ef +MgfdG+RCzgwARWGAtQsgWSl4vflVy2PFPEz0tv/bal8xa5meLMFrUKTX5hgUvYU/ +Z6tGn6D/Qqc6f1zLXbBwHSs09dR2CQzreExZBfMzQsNhFRAbd03OIozUhfJFfbdT +6u9AWpQKXCBfTkBdYiJ23//OYb2MI3jSNwLgjt7RETeJ9r/tSQdirpLsQBqvFAnZ +0E6yove+7u7Y/9waLd64NnHi/Hm3lCXRSHNboTXns5lndcEZOitHTtNCjv0xyBZm +2tIMPNuzjsmhDYAPexZ3FL//2wmUspO8IFgV6dtxQ/PeEMMA3KgqlbbC1j+Qa3bb +bP6MvPJwNQzcmRk13NfIRmPVNnGuV/u3gm3c +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R2 O=Google Trust Services LLC +# Subject: CN=GTS Root R2 O=Google Trust Services LLC +# Label: "GTS Root R2" +# Serial: 159662449406622349769042896298 +# MD5 Fingerprint: 1e:39:c0:53:e6:1e:29:82:0b:ca:52:55:36:5d:57:dc +# SHA1 Fingerprint: 9a:44:49:76:32:db:de:fa:d0:bc:fb:5a:7b:17:bd:9e:56:09:24:94 +# SHA256 Fingerprint: 8d:25:cd:97:22:9d:bf:70:35:6b:da:4e:b3:cc:73:40:31:e2:4c:f0:0f:af:cf:d3:2d:c7:6e:b5:84:1c:7e:a8 +-----BEGIN CERTIFICATE----- +MIIFVzCCAz+gAwIBAgINAgPlrsWNBCUaqxElqjANBgkqhkiG9w0BAQwFADBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTukk3LvCvpt +nfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3KgGjSY +6Dlo7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9BuXvAu +MC6C/Pq8tBcKSOWIm8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOdre7k +RXuJVfeKH2JShBKzwkCX44ofR5GmdFrS+LFjKBC4swm4VndAoiaYecb+3yXuPuWg +f9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbuak7MkogwTZq9TwtImoS1mKPV ++3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscszcTJGr61K8Yzo +dDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqjx5RW +Ir9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsRnTKa +G73VululycslaVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0kzCq +gc7dGtxRcw1PcOnlthYhGXmy5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9OktwID +AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEMBQADggIBAB/Kzt3H +vqGf2SdMC9wXmBFqiN495nFWcrKeGk6c1SuYJF2ba3uwM4IJvd8lRuqYnrYb/oM8 +0mJhwQTtzuDFycgTE1XnqGOtjHsB/ncw4c5omwX4Eu55MaBBRTUoCnGkJE+M3DyC +B19m3H0Q/gxhswWV7uGugQ+o+MePTagjAiZrHYNSVc61LwDKgEDg4XSsYPWHgJ2u +NmSRXbBoGOqKYcl3qJfEycel/FVL8/B/uWU9J2jQzGv6U53hkRrJXRqWbTKH7QMg +yALOWr7Z6v2yTcQvG99fevX4i8buMTolUVVnjWQye+mew4K6Ki3pHrTgSAai/Gev +HyICc/sgCq+dVEuhzf9gR7A/Xe8bVr2XIZYtCtFenTgCR2y59PYjJbigapordwj6 +xLEokCZYCDzifqrXPW+6MYgKBesntaFJ7qBFVHvmJ2WZICGoo7z7GJa7Um8M7YNR +TOlZ4iBgxcJlkoKM8xAfDoqXvneCbT+PHV28SSe9zE8P4c52hgQjxcCMElv924Sg +JPFI/2R80L5cFtHvma3AH/vLrrw4IgYmZNralw4/KBVEqE8AyvCazM90arQ+POuV +7LXTWtiBmelDGDfrs7vRWGJB82bSj6p4lVQgw1oudCvV0b4YacCs1aTPObpRhANl +6WLAYv7YTVWW4tAR+kg0Eeye7QUd5MjWHYbL +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R3 O=Google Trust Services LLC +# Subject: CN=GTS Root R3 O=Google Trust Services LLC +# Label: "GTS Root R3" +# Serial: 159662495401136852707857743206 +# MD5 Fingerprint: 3e:e7:9d:58:02:94:46:51:94:e5:e0:22:4a:8b:e7:73 +# SHA1 Fingerprint: ed:e5:71:80:2b:c8:92:b9:5b:83:3c:d2:32:68:3f:09:cd:a0:1e:46 +# SHA256 Fingerprint: 34:d8:a7:3e:e2:08:d9:bc:db:0d:95:65:20:93:4b:4e:40:e6:94:82:59:6e:8b:6f:73:c8:42:6b:01:0a:6f:48 +-----BEGIN CERTIFICATE----- +MIICCTCCAY6gAwIBAgINAgPluILrIPglJ209ZjAKBggqhkjOPQQDAzBHMQswCQYD +VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG +A1UEAxMLR1RTIFJvb3QgUjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw +WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz +IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUURout736G +jOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2ADDL2 +4CejQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBTB8Sa6oC2uhYHP0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEA9uEglRR7 +VKOQFhG/hMjqb2sXnh5GmCCbn9MN2azTL818+FsuVbu/3ZL3pAzcMeGiAjEA/Jdm +ZuVDFhOD3cffL74UOO0BzrEXGhF16b0DjyZ+hOXJYKaV11RZt+cRLInUue4X +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R4 O=Google Trust Services LLC +# Subject: CN=GTS Root R4 O=Google Trust Services LLC +# Label: "GTS Root R4" +# Serial: 159662532700760215368942768210 +# MD5 Fingerprint: 43:96:83:77:19:4d:76:b3:9d:65:52:e4:1d:22:a5:e8 +# SHA1 Fingerprint: 77:d3:03:67:b5:e0:0c:15:f6:0c:38:61:df:7c:e1:3b:92:46:4d:47 +# SHA256 Fingerprint: 34:9d:fa:40:58:c5:e2:63:12:3b:39:8a:e7:95:57:3c:4e:13:13:c8:3f:e6:8f:93:55:6c:d5:e8:03:1b:3c:7d +-----BEGIN CERTIFICATE----- +MIICCTCCAY6gAwIBAgINAgPlwGjvYxqccpBQUjAKBggqhkjOPQQDAzBHMQswCQYD +VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG +A1UEAxMLR1RTIFJvb3QgUjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw +WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz +IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa6zzuhXyi +QHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/lxKvR +HYqjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBSATNbrdP9JNqPV2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNpADBmAjEA6ED/g94D +9J+uHXqnLrmvT/aDHQ4thQEd0dlq7A/Cr8deVl5c1RxYIigL9zC2L7F8AjEA8GE8 +p/SgguMh1YQdc4acLa/KNJvxn7kjNuK8YAOdgLOaVsjh4rsUecrNIdSUtUlD +-----END CERTIFICATE----- + +# Issuer: CN=Telia Root CA v2 O=Telia Finland Oyj +# Subject: CN=Telia Root CA v2 O=Telia Finland Oyj +# Label: "Telia Root CA v2" +# Serial: 7288924052977061235122729490515358 +# MD5 Fingerprint: 0e:8f:ac:aa:82:df:85:b1:f4:dc:10:1c:fc:99:d9:48 +# SHA1 Fingerprint: b9:99:cd:d1:73:50:8a:c4:47:05:08:9c:8c:88:fb:be:a0:2b:40:cd +# SHA256 Fingerprint: 24:2b:69:74:2f:cb:1e:5b:2a:bf:98:89:8b:94:57:21:87:54:4e:5b:4d:99:11:78:65:73:62:1f:6a:74:b8:2c +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIPAWdfJ9b+euPkrL4JWwWeMA0GCSqGSIb3DQEBCwUAMEQx +CzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZMBcGA1UE +AwwQVGVsaWEgUm9vdCBDQSB2MjAeFw0xODExMjkxMTU1NTRaFw00MzExMjkxMTU1 +NTRaMEQxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZ +MBcGA1UEAwwQVGVsaWEgUm9vdCBDQSB2MjCCAiIwDQYJKoZIhvcNAQEBBQADggIP +ADCCAgoCggIBALLQPwe84nvQa5n44ndp586dpAO8gm2h/oFlH0wnrI4AuhZ76zBq +AMCzdGh+sq/H1WKzej9Qyow2RCRj0jbpDIX2Q3bVTKFgcmfiKDOlyzG4OiIjNLh9 +vVYiQJ3q9HsDrWj8soFPmNB06o3lfc1jw6P23pLCWBnglrvFxKk9pXSW/q/5iaq9 +lRdU2HhE8Qx3FZLgmEKnpNaqIJLNwaCzlrI6hEKNfdWV5Nbb6WLEWLN5xYzTNTOD +n3WhUidhOPFZPY5Q4L15POdslv5e2QJltI5c0BE0312/UqeBAMN/mUWZFdUXyApT +7GPzmX3MaRKGwhfwAZ6/hLzRUssbkmbOpFPlob/E2wnW5olWK8jjfN7j/4nlNW4o +6GwLI1GpJQXrSPjdscr6bAhR77cYbETKJuFzxokGgeWKrLDiKca5JLNrRBH0pUPC +TEPlcDaMtjNXepUugqD0XBCzYYP2AgWGLnwtbNwDRm41k9V6lS/eINhbfpSQBGq6 +WT0EBXWdN6IOLj3rwaRSg/7Qa9RmjtzG6RJOHSpXqhC8fF6CfaamyfItufUXJ63R +DolUK5X6wK0dmBR4M0KGCqlztft0DbcbMBnEWg4cJ7faGND/isgFuvGqHKI3t+ZI +pEYslOqodmJHixBTB0hXbOKSTbauBcvcwUpej6w9GU7C7WB1K9vBykLVAgMBAAGj +YzBhMB8GA1UdIwQYMBaAFHKs5DN5qkWH9v2sHZ7Wxy+G2CQ5MB0GA1UdDgQWBBRy +rOQzeapFh/b9rB2e1scvhtgkOTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw +AwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAoDtZpwmUPjaE0n4vOaWWl/oRrfxn83EJ +8rKJhGdEr7nv7ZbsnGTbMjBvZ5qsfl+yqwE2foH65IRe0qw24GtixX1LDoJt0nZi +0f6X+J8wfBj5tFJ3gh1229MdqfDBmgC9bXXYfef6xzijnHDoRnkDry5023X4blMM +A8iZGok1GTzTyVR8qPAs5m4HeW9q4ebqkYJpCh3DflminmtGFZhb069GHWLIzoBS +SRE/yQQSwxN8PzuKlts8oB4KtItUsiRnDe+Cy748fdHif64W1lZYudogsYMVoe+K +TTJvQS8TUoKU1xrBeKJR3Stwbbca+few4GeXVtt8YVMJAygCQMez2P2ccGrGKMOF +6eLtGpOg3kuYooQ+BXcBlj37tCAPnHICehIv1aO6UXivKitEZU61/Qrowc15h2Er +3oBXRb9n8ZuRXqWk7FlIEA04x7D6w0RtBPV4UBySllva9bguulvP5fBqnUsvWHMt +Ty3EHD70sz+rFQ47GUGKpMFXEmZxTPpT41frYpUJnlTd0cI8Vzy9OK2YZLe4A5pT +VmBds9hCG1xLEooc6+t9xnppxyd/pPiL8uSUZodL6ZQHCRJ5irLrdATczvREWeAW +ysUsWNc8e89ihmpQfTU2Zqf7N+cox9jQraVplI/owd8k+BsHMYeB2F326CjYSlKA +rBPuUBQemMc= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH +# Subject: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH +# Label: "D-TRUST BR Root CA 1 2020" +# Serial: 165870826978392376648679885835942448534 +# MD5 Fingerprint: b5:aa:4b:d5:ed:f7:e3:55:2e:8f:72:0a:f3:75:b8:ed +# SHA1 Fingerprint: 1f:5b:98:f0:e3:b5:f7:74:3c:ed:e6:b0:36:7d:32:cd:f4:09:41:67 +# SHA256 Fingerprint: e5:9a:aa:81:60:09:c2:2b:ff:5b:25:ba:d3:7d:f3:06:f0:49:79:7c:1f:81:d8:5a:b0:89:e6:57:bd:8f:00:44 +-----BEGIN CERTIFICATE----- +MIIC2zCCAmCgAwIBAgIQfMmPK4TX3+oPyWWa00tNljAKBggqhkjOPQQDAzBIMQsw +CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS +VVNUIEJSIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTA5NDUwMFoXDTM1MDIxMTA5 +NDQ1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG +A1UEAxMZRC1UUlVTVCBCUiBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB +BAAiA2IABMbLxyjR+4T1mu9CFCDhQ2tuda38KwOE1HaTJddZO0Flax7mNCq7dPYS +zuht56vkPE4/RAiLzRZxy7+SmfSk1zxQVFKQhYN4lGdnoxwJGT11NIXe7WB9xwy0 +QVK5buXuQqOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFHOREKv/ +VbNafAkl1bK6CKBrqx9tMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g +PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2JyX3Jvb3Rf +Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l +dC9DTj1ELVRSVVNUJTIwQlIlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 +c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO +PQQDAwNpADBmAjEAlJAtE/rhY/hhY+ithXhUkZy4kzg+GkHaQBZTQgjKL47xPoFW +wKrY7RjEsK70PvomAjEA8yjixtsrmfu3Ubgko6SUeho/5jbiA1czijDLgsfWFBHV +dWNbFJWcHwHP2NVypw87 +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH +# Subject: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH +# Label: "D-TRUST EV Root CA 1 2020" +# Serial: 126288379621884218666039612629459926992 +# MD5 Fingerprint: 8c:2d:9d:70:9f:48:99:11:06:11:fb:e9:cb:30:c0:6e +# SHA1 Fingerprint: 61:db:8c:21:59:69:03:90:d8:7c:9c:12:86:54:cf:9d:3d:f4:dd:07 +# SHA256 Fingerprint: 08:17:0d:1a:a3:64:53:90:1a:2f:95:92:45:e3:47:db:0c:8d:37:ab:aa:bc:56:b8:1a:a1:00:dc:95:89:70:db +-----BEGIN CERTIFICATE----- +MIIC2zCCAmCgAwIBAgIQXwJB13qHfEwDo6yWjfv/0DAKBggqhkjOPQQDAzBIMQsw +CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS +VVNUIEVWIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTEwMDAwMFoXDTM1MDIxMTA5 +NTk1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG +A1UEAxMZRC1UUlVTVCBFViBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPEL3YZDIBnfl4XoIkqbz52Yv7QFJsnL46bSj8WeeHsxiamJrSc8ZRCC +/N/DnU7wMyPE0jL1HLDfMxddxfCxivnvubcUyilKwg+pf3VlSSowZ/Rk99Yad9rD +wpdhQntJraOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFH8QARY3 +OqQo5FD4pPfsazK2/umLMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g +PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2V2X3Jvb3Rf +Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l +dC9DTj1ELVRSVVNUJTIwRVYlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 +c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO +PQQDAwNpADBmAjEAyjzGKnXCXnViOTYAYFqLwZOZzNnbQTs7h5kXO9XMT8oi96CA +y/m0sRtW9XLS/BnRAjEAkfcwkz8QRitxpNA7RJvAKQIFskF3UfN5Wp6OFKBOQtJb +gfM0agPnIjhQW+0ZT0MW +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. +# Subject: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. +# Label: "DigiCert TLS ECC P384 Root G5" +# Serial: 13129116028163249804115411775095713523 +# MD5 Fingerprint: d3:71:04:6a:43:1c:db:a6:59:e1:a8:a3:aa:c5:71:ed +# SHA1 Fingerprint: 17:f3:de:5e:9f:0f:19:e9:8e:f6:1f:32:26:6e:20:c4:07:ae:30:ee +# SHA256 Fingerprint: 01:8e:13:f0:77:25:32:cf:80:9b:d1:b1:72:81:86:72:83:fc:48:c6:e1:3b:e9:c6:98:12:85:4a:49:0c:1b:05 +-----BEGIN CERTIFICATE----- +MIICGTCCAZ+gAwIBAgIQCeCTZaz32ci5PhwLBCou8zAKBggqhkjOPQQDAzBOMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJjAkBgNVBAMTHURp +Z2lDZXJ0IFRMUyBFQ0MgUDM4NCBSb290IEc1MB4XDTIxMDExNTAwMDAwMFoXDTQ2 +MDExNDIzNTk1OVowTjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJ +bmMuMSYwJAYDVQQDEx1EaWdpQ2VydCBUTFMgRUNDIFAzODQgUm9vdCBHNTB2MBAG +ByqGSM49AgEGBSuBBAAiA2IABMFEoc8Rl1Ca3iOCNQfN0MsYndLxf3c1TzvdlHJS +7cI7+Oz6e2tYIOyZrsn8aLN1udsJ7MgT9U7GCh1mMEy7H0cKPGEQQil8pQgO4CLp +0zVozptjn4S1mU1YoI71VOeVyaNCMEAwHQYDVR0OBBYEFMFRRVBZqz7nLFr6ICIS +B4CIfBFqMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MAoGCCqGSM49 +BAMDA2gAMGUCMQCJao1H5+z8blUD2WdsJk6Dxv3J+ysTvLd6jLRl0mlpYxNjOyZQ +LgGheQaRnUi/wr4CMEfDFXuxoJGZSZOoPHzoRgaLLPIxAJSdYsiJvRmEFOml+wG4 +DXZDjC5Ty3zfDBeWUA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. +# Subject: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. +# Label: "DigiCert TLS RSA4096 Root G5" +# Serial: 11930366277458970227240571539258396554 +# MD5 Fingerprint: ac:fe:f7:34:96:a9:f2:b3:b4:12:4b:e4:27:41:6f:e1 +# SHA1 Fingerprint: a7:88:49:dc:5d:7c:75:8c:8c:de:39:98:56:b3:aa:d0:b2:a5:71:35 +# SHA256 Fingerprint: 37:1a:00:dc:05:33:b3:72:1a:7e:eb:40:e8:41:9e:70:79:9d:2b:0a:0f:2c:1d:80:69:31:65:f7:ce:c4:ad:75 +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCPm0eKj6ftpqMzeJ3nzPijANBgkqhkiG9w0BAQwFADBN +MQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJTAjBgNVBAMT +HERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwHhcNMjEwMTE1MDAwMDAwWhcN +NDYwMTE0MjM1OTU5WjBNMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQs +IEluYy4xJTAjBgNVBAMTHERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCz0PTJeRGd/fxmgefM1eS87IE+ +ajWOLrfn3q/5B03PMJ3qCQuZvWxX2hhKuHisOjmopkisLnLlvevxGs3npAOpPxG0 +2C+JFvuUAT27L/gTBaF4HI4o4EXgg/RZG5Wzrn4DReW+wkL+7vI8toUTmDKdFqgp +wgscONyfMXdcvyej/Cestyu9dJsXLfKB2l2w4SMXPohKEiPQ6s+d3gMXsUJKoBZM +pG2T6T867jp8nVid9E6P/DsjyG244gXazOvswzH016cpVIDPRFtMbzCe88zdH5RD +nU1/cHAN1DrRN/BsnZvAFJNY781BOHW8EwOVfH/jXOnVDdXifBBiqmvwPXbzP6Po +sMH976pXTayGpxi0KcEsDr9kvimM2AItzVwv8n/vFfQMFawKsPHTDU9qTXeXAaDx +Zre3zu/O7Oyldcqs4+Fj97ihBMi8ez9dLRYiVu1ISf6nL3kwJZu6ay0/nTvEF+cd +Lvvyz6b84xQslpghjLSR6Rlgg/IwKwZzUNWYOwbpx4oMYIwo+FKbbuH2TbsGJJvX +KyY//SovcfXWJL5/MZ4PbeiPT02jP/816t9JXkGPhvnxd3lLG7SjXi/7RgLQZhNe +XoVPzthwiHvOAbWWl9fNff2C+MIkwcoBOU+NosEUQB+cZtUMCUbW8tDRSHZWOkPL +tgoRObqME2wGtZ7P6wIDAQABo0IwQDAdBgNVHQ4EFgQUUTMc7TZArxfTJc1paPKv +TiM+s0EwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcN +AQEMBQADggIBAGCmr1tfV9qJ20tQqcQjNSH/0GEwhJG3PxDPJY7Jv0Y02cEhJhxw +GXIeo8mH/qlDZJY6yFMECrZBu8RHANmfGBg7sg7zNOok992vIGCukihfNudd5N7H +PNtQOa27PShNlnx2xlv0wdsUpasZYgcYQF+Xkdycx6u1UQ3maVNVzDl92sURVXLF +O4uJ+DQtpBflF+aZfTCIITfNMBc9uPK8qHWgQ9w+iUuQrm0D4ByjoJYJu32jtyoQ +REtGBzRj7TG5BO6jm5qu5jF49OokYTurWGT/u4cnYiWB39yhL/btp/96j1EuMPik +AdKFOV8BmZZvWltwGUb+hmA+rYAQCd05JS9Yf7vSdPD3Rh9GOUrYU9DzLjtxpdRv +/PNn5AeP3SYZ4Y1b+qOTEZvpyDrDVWiakuFSdjjo4bq9+0/V77PnSIMx8IIh47a+ +p6tv75/fTM8BuGJqIz3nCU2AG3swpMPdB380vqQmsvZB6Akd4yCYqjdP//fx4ilw +MUc/dNAUFvohigLVigmUdy7yWSiLfFCSCmZ4OIN1xLVaqBHG5cGdZlXPU8Sv13WF +qUITVuwhd4GTWgzqltlJyqEI8pc7bZsEGCREjnwB8twl2F6GmrE52/WRMmrRpnCK +ovfepEWFJqgejF0pW8hL2JpqA15w8oVPbEtoL8pU9ozaMv7Da4M/OMZ+ +-----END CERTIFICATE----- + +# Issuer: CN=Certainly Root R1 O=Certainly +# Subject: CN=Certainly Root R1 O=Certainly +# Label: "Certainly Root R1" +# Serial: 188833316161142517227353805653483829216 +# MD5 Fingerprint: 07:70:d4:3e:82:87:a0:fa:33:36:13:f4:fa:33:e7:12 +# SHA1 Fingerprint: a0:50:ee:0f:28:71:f4:27:b2:12:6d:6f:50:96:25:ba:cc:86:42:af +# SHA256 Fingerprint: 77:b8:2c:d8:64:4c:43:05:f7:ac:c5:cb:15:6b:45:67:50:04:03:3d:51:c6:0c:62:02:a8:e0:c3:34:67:d3:a0 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIRAI4P+UuQcWhlM1T01EQ5t+AwDQYJKoZIhvcNAQELBQAw +PTELMAkGA1UEBhMCVVMxEjAQBgNVBAoTCUNlcnRhaW5seTEaMBgGA1UEAxMRQ2Vy +dGFpbmx5IFJvb3QgUjEwHhcNMjEwNDAxMDAwMDAwWhcNNDYwNDAxMDAwMDAwWjA9 +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0 +YWlubHkgUm9vdCBSMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANA2 +1B/q3avk0bbm+yLA3RMNansiExyXPGhjZjKcA7WNpIGD2ngwEc/csiu+kr+O5MQT +vqRoTNoCaBZ0vrLdBORrKt03H2As2/X3oXyVtwxwhi7xOu9S98zTm/mLvg7fMbed +aFySpvXl8wo0tf97ouSHocavFwDvA5HtqRxOcT3Si2yJ9HiG5mpJoM610rCrm/b0 +1C7jcvk2xusVtyWMOvwlDbMicyF0yEqWYZL1LwsYpfSt4u5BvQF5+paMjRcCMLT5 +r3gajLQ2EBAHBXDQ9DGQilHFhiZ5shGIXsXwClTNSaa/ApzSRKft43jvRl5tcdF5 +cBxGX1HpyTfcX35pe0HfNEXgO4T0oYoKNp43zGJS4YkNKPl6I7ENPT2a/Z2B7yyQ +wHtETrtJ4A5KVpK8y7XdeReJkd5hiXSSqOMyhb5OhaRLWcsrxXiOcVTQAjeZjOVJ +6uBUcqQRBi8LjMFbvrWhsFNunLhgkR9Za/kt9JQKl7XsxXYDVBtlUrpMklZRNaBA +2CnbrlJ2Oy0wQJuK0EJWtLeIAaSHO1OWzaMWj/Nmqhexx2DgwUMFDO6bW2BvBlyH +Wyf5QBGenDPBt+U1VwV/J84XIIwc/PH72jEpSe31C4SnT8H2TsIonPru4K8H+zMR +eiFPCyEQtkA6qyI6BJyLm4SGcprSp6XEtHWRqSsjAgMBAAGjQjBAMA4GA1UdDwEB +/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTgqj8ljZ9EXME66C6u +d0yEPmcM9DANBgkqhkiG9w0BAQsFAAOCAgEAuVevuBLaV4OPaAszHQNTVfSVcOQr +PbA56/qJYv331hgELyE03fFo8NWWWt7CgKPBjcZq91l3rhVkz1t5BXdm6ozTaw3d +8VkswTOlMIAVRQdFGjEitpIAq5lNOo93r6kiyi9jyhXWx8bwPWz8HA2YEGGeEaIi +1wrykXprOQ4vMMM2SZ/g6Q8CRFA3lFV96p/2O7qUpUzpvD5RtOjKkjZUbVwlKNrd +rRT90+7iIgXr0PK3aBLXWopBGsaSpVo7Y0VPv+E6dyIvXL9G+VoDhRNCX8reU9di +taY1BMJH/5n9hN9czulegChB8n3nHpDYT3Y+gjwN/KUD+nsa2UUeYNrEjvn8K8l7 +lcUq/6qJ34IxD3L/DCfXCh5WAFAeDJDBlrXYFIW7pw0WwfgHJBu6haEaBQmAupVj +yTrsJZ9/nbqkRxWbRHDxakvWOF5D8xh+UG7pWijmZeZ3Gzr9Hb4DJqPb1OG7fpYn +Kx3upPvaJVQTA945xsMfTZDsjxtK0hzthZU4UHlG1sGQUDGpXJpuHfUzVounmdLy +yCwzk5Iwx06MZTMQZBf9JBeW0Y3COmor6xOLRPIh80oat3df1+2IpHLlOR+Vnb5n +wXARPbv0+Em34yaXOp/SX3z7wJl8OSngex2/DaeP0ik0biQVy96QXr8axGbqwua6 +OV+KmalBWQewLK8= +-----END CERTIFICATE----- + +# Issuer: CN=Certainly Root E1 O=Certainly +# Subject: CN=Certainly Root E1 O=Certainly +# Label: "Certainly Root E1" +# Serial: 8168531406727139161245376702891150584 +# MD5 Fingerprint: 0a:9e:ca:cd:3e:52:50:c6:36:f3:4b:a3:ed:a7:53:e9 +# SHA1 Fingerprint: f9:e1:6d:dc:01:89:cf:d5:82:45:63:3e:c5:37:7d:c2:eb:93:6f:2b +# SHA256 Fingerprint: b4:58:5f:22:e4:ac:75:6a:4e:86:12:a1:36:1c:5d:9d:03:1a:93:fd:84:fe:bb:77:8f:a3:06:8b:0f:c4:2d:c2 +-----BEGIN CERTIFICATE----- +MIIB9zCCAX2gAwIBAgIQBiUzsUcDMydc+Y2aub/M+DAKBggqhkjOPQQDAzA9MQsw +CQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0YWlu +bHkgUm9vdCBFMTAeFw0yMTA0MDEwMDAwMDBaFw00NjA0MDEwMDAwMDBaMD0xCzAJ +BgNVBAYTAlVTMRIwEAYDVQQKEwlDZXJ0YWlubHkxGjAYBgNVBAMTEUNlcnRhaW5s +eSBSb290IEUxMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE3m/4fxzf7flHh4axpMCK ++IKXgOqPyEpeKn2IaKcBYhSRJHpcnqMXfYqGITQYUBsQ3tA3SybHGWCA6TS9YBk2 +QNYphwk8kXr2vBMj3VlOBF7PyAIcGFPBMdjaIOlEjeR2o0IwQDAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU8ygYy2R17ikq6+2uI1g4 +hevIIgcwCgYIKoZIzj0EAwMDaAAwZQIxALGOWiDDshliTd6wT99u0nCK8Z9+aozm +ut6Dacpps6kFtZaSF4fC0urQe87YQVt8rgIwRt7qy12a7DLCZRawTDBcMPPaTnOG +BtjOiQRINzf43TNRnXCve1XYAS59BWQOhriR +-----END CERTIFICATE----- + +# Issuer: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. +# Subject: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. +# Label: "Security Communication RootCA3" +# Serial: 16247922307909811815 +# MD5 Fingerprint: 1c:9a:16:ff:9e:5c:e0:4d:8a:14:01:f4:35:5d:29:26 +# SHA1 Fingerprint: c3:03:c8:22:74:92:e5:61:a2:9c:5f:79:91:2b:1e:44:13:91:30:3a +# SHA256 Fingerprint: 24:a5:5c:2a:b0:51:44:2d:06:17:76:65:41:23:9a:4a:d0:32:d7:c5:51:75:aa:34:ff:de:2f:bc:4f:5c:52:94 +-----BEGIN CERTIFICATE----- +MIIFfzCCA2egAwIBAgIJAOF8N0D9G/5nMA0GCSqGSIb3DQEBDAUAMF0xCzAJBgNV +BAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMScw +JQYDVQQDEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTMwHhcNMTYwNjE2 +MDYxNzE2WhcNMzgwMTE4MDYxNzE2WjBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc +U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UEAxMeU2VjdXJpdHkg +Q29tbXVuaWNhdGlvbiBSb290Q0EzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC +CgKCAgEA48lySfcw3gl8qUCBWNO0Ot26YQ+TUG5pPDXC7ltzkBtnTCHsXzW7OT4r +CmDvu20rhvtxosis5FaU+cmvsXLUIKx00rgVrVH+hXShuRD+BYD5UpOzQD11EKzA +lrenfna84xtSGc4RHwsENPXY9Wk8d/Nk9A2qhd7gCVAEF5aEt8iKvE1y/By7z/MG +TfmfZPd+pmaGNXHIEYBMwXFAWB6+oHP2/D5Q4eAvJj1+XCO1eXDe+uDRpdYMQXF7 +9+qMHIjH7Iv10S9VlkZ8WjtYO/u62C21Jdp6Ts9EriGmnpjKIG58u4iFW/vAEGK7 +8vknR+/RiTlDxN/e4UG/VHMgly1s2vPUB6PmudhvrvyMGS7TZ2crldtYXLVqAvO4 +g160a75BflcJdURQVc1aEWEhCmHCqYj9E7wtiS/NYeCVvsq1e+F7NGcLH7YMx3we +GVPKp7FKFSBWFHA9K4IsD50VHUeAR/94mQ4xr28+j+2GaR57GIgUssL8gjMunEst ++3A7caoreyYn8xrC3PsXuKHqy6C0rtOUfnrQq8PsOC0RLoi/1D+tEjtCrI8Cbn3M +0V9hvqG8OmpI6iZVIhZdXw3/JzOfGAN0iltSIEdrRU0id4xVJ/CvHozJgyJUt5rQ +T9nO/NkuHJYosQLTA70lUhw0Zk8jq/R3gpYd0VcwCBEF/VfR2ccCAwEAAaNCMEAw +HQYDVR0OBBYEFGQUfPxYchamCik0FW8qy7z8r6irMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBDAUAA4ICAQDcAiMI4u8hOscNtybS +YpOnpSNyByCCYN8Y11StaSWSntkUz5m5UoHPrmyKO1o5yGwBQ8IibQLwYs1OY0PA +FNr0Y/Dq9HHuTofjcan0yVflLl8cebsjqodEV+m9NU1Bu0soo5iyG9kLFwfl9+qd +9XbXv8S2gVj/yP9kaWJ5rW4OH3/uHWnlt3Jxs/6lATWUVCvAUm2PVcTJ0rjLyjQI +UYWg9by0F1jqClx6vWPGOi//lkkZhOpn2ASxYfQAW0q3nHE3GYV5v4GwxxMOdnE+ +OoAGrgYWp421wsTL/0ClXI2lyTrtcoHKXJg80jQDdwj98ClZXSEIx2C/pHF7uNke +gr4Jr2VvKKu/S7XuPghHJ6APbw+LP6yVGPO5DtxnVW5inkYO0QR4ynKudtml+LLf +iAlhi+8kTtFZP1rUPcmTPCtk9YENFpb3ksP+MW/oKjJ0DvRMmEoYDjBU1cXrvMUV +nuiZIesnKwkK2/HmcBhWuwzkvvnoEKQTkrgc4NtnHVMDpCKn3F2SEDzq//wbEBrD +2NCcnWXL0CsnMQMeNuE9dnUM/0Umud1RvCPHX9jYhxBAEg09ODfnRDwYwFMJZI// +1ZqmfHAuc1Uh6N//g7kdPjIe1qZ9LPFm6Vwdp6POXiUyK+OVrCoHzrQoeIY8Laad +TdJ0MN1kURXbg4NR16/9M51NZg== +-----END CERTIFICATE----- + +# Issuer: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. +# Subject: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. +# Label: "Security Communication ECC RootCA1" +# Serial: 15446673492073852651 +# MD5 Fingerprint: 7e:43:b0:92:68:ec:05:43:4c:98:ab:5d:35:2e:7e:86 +# SHA1 Fingerprint: b8:0e:26:a9:bf:d2:b2:3b:c0:ef:46:c9:ba:c7:bb:f6:1d:0d:41:41 +# SHA256 Fingerprint: e7:4f:bd:a5:5b:d5:64:c4:73:a3:6b:44:1a:a7:99:c8:a6:8e:07:74:40:e8:28:8b:9f:a1:e5:0e:4b:ba:ca:11 +-----BEGIN CERTIFICATE----- +MIICODCCAb6gAwIBAgIJANZdm7N4gS7rMAoGCCqGSM49BAMDMGExCzAJBgNVBAYT +AkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSswKQYD +VQQDEyJTZWN1cml0eSBDb21tdW5pY2F0aW9uIEVDQyBSb290Q0ExMB4XDTE2MDYx +NjA1MTUyOFoXDTM4MDExODA1MTUyOFowYTELMAkGA1UEBhMCSlAxJTAjBgNVBAoT +HFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xKzApBgNVBAMTIlNlY3VyaXR5 +IENvbW11bmljYXRpb24gRUNDIFJvb3RDQTEwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AASkpW9gAwPDvTH00xecK4R1rOX9PVdu12O/5gSJko6BnOPpR27KkBLIE+Cnnfdl +dB9sELLo5OnvbYUymUSxXv3MdhDYW72ixvnWQuRXdtyQwjWpS4g8EkdtXP9JTxpK +ULGjQjBAMB0GA1UdDgQWBBSGHOf+LaVKiwj+KBH6vqNm+GBZLzAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjAVXUI9/Lbu +9zuxNuie9sRGKEkz0FhDKmMpzE2xtHqiuQ04pV1IKv3LsnNdo4gIxwwCMQDAqy0O +be0YottT6SXbVQjgUMzfRGEWgqtJsLKB7HOHeLRMsmIbEvoWTSVLY70eN9k= +-----END CERTIFICATE----- + +# Issuer: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY +# Subject: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY +# Label: "BJCA Global Root CA1" +# Serial: 113562791157148395269083148143378328608 +# MD5 Fingerprint: 42:32:99:76:43:33:36:24:35:07:82:9b:28:f9:d0:90 +# SHA1 Fingerprint: d5:ec:8d:7b:4c:ba:79:f4:e7:e8:cb:9d:6b:ae:77:83:10:03:21:6a +# SHA256 Fingerprint: f3:89:6f:88:fe:7c:0a:88:27:66:a7:fa:6a:d2:74:9f:b5:7a:7f:3e:98:fb:76:9c:1f:a7:b0:9c:2c:44:d5:ae +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIQVW9l47TZkGobCdFsPsBsIDANBgkqhkiG9w0BAQsFADBU +MQswCQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRI +T1JJVFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0ExMB4XDTE5MTIxOTAz +MTYxN1oXDTQ0MTIxMjAzMTYxN1owVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJF +SUpJTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2Jh +bCBSb290IENBMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAPFmCL3Z +xRVhy4QEQaVpN3cdwbB7+sN3SJATcmTRuHyQNZ0YeYjjlwE8R4HyDqKYDZ4/N+AZ +spDyRhySsTphzvq3Rp4Dhtczbu33RYx2N95ulpH3134rhxfVizXuhJFyV9xgw8O5 +58dnJCNPYwpj9mZ9S1WnP3hkSWkSl+BMDdMJoDIwOvqfwPKcxRIqLhy1BDPapDgR +at7GGPZHOiJBhyL8xIkoVNiMpTAK+BcWyqw3/XmnkRd4OJmtWO2y3syJfQOcs4ll +5+M7sSKGjwZteAf9kRJ/sGsciQ35uMt0WwfCyPQ10WRjeulumijWML3mG90Vr4Tq +nMfK9Q7q8l0ph49pczm+LiRvRSGsxdRpJQaDrXpIhRMsDQa4bHlW/KNnMoH1V6XK +V0Jp6VwkYe/iMBhORJhVb3rCk9gZtt58R4oRTklH2yiUAguUSiz5EtBP6DF+bHq/ +pj+bOT0CFqMYs2esWz8sgytnOYFcuX6U1WTdno9uruh8W7TXakdI136z1C2OVnZO +z2nxbkRs1CTqjSShGL+9V/6pmTW12xB3uD1IutbB5/EjPtffhZ0nPNRAvQoMvfXn +jSXWgXSHRtQpdaJCbPdzied9v3pKH9MiyRVVz99vfFXQpIsHETdfg6YmV6YBW37+ +WGgHqel62bno/1Afq8K0wM7o6v0PvY1NuLxxAgMBAAGjQjBAMB0GA1UdDgQWBBTF +7+3M2I0hxkjk49cULqcWk+WYATAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE +AwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAUoKsITQfI/Ki2Pm4rzc2IInRNwPWaZ+4 +YRC6ojGYWUfo0Q0lHhVBDOAqVdVXUsv45Mdpox1NcQJeXyFFYEhcCY5JEMEE3Kli +awLwQ8hOnThJdMkycFRtwUf8jrQ2ntScvd0g1lPJGKm1Vrl2i5VnZu69mP6u775u ++2D2/VnGKhs/I0qUJDAnyIm860Qkmss9vk/Ves6OF8tiwdneHg56/0OGNFK8YT88 +X7vZdrRTvJez/opMEi4r89fO4aL/3Xtw+zuhTaRjAv04l5U/BXCga99igUOLtFkN +SoxUnMW7gZ/NfaXvCyUeOiDbHPwfmGcCCtRzRBPbUYQaVQNW4AB+dAb/OMRyHdOo +P2gxXdMJxy6MW2Pg6Nwe0uxhHvLe5e/2mXZgLR6UcnHGCyoyx5JO1UbXHfmpGQrI ++pXObSOYqgs4rZpWDW+N8TEAiMEXnM0ZNjX+VVOg4DwzX5Ze4jLp3zO7Bkqp2IRz +znfSxqxx4VyjHQy7Ct9f4qNx2No3WqB4K/TUfet27fJhcKVlmtOJNBir+3I+17Q9 +eVzYH6Eze9mCUAyTF6ps3MKCuwJXNq+YJyo5UOGwifUll35HaBC07HPKs5fRJNz2 +YqAo07WjuGS3iGJCz51TzZm+ZGiPTx4SSPfSKcOYKMryMguTjClPPGAyzQWWYezy +r/6zcCwupvI= +-----END CERTIFICATE----- + +# Issuer: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY +# Subject: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY +# Label: "BJCA Global Root CA2" +# Serial: 58605626836079930195615843123109055211 +# MD5 Fingerprint: 5e:0a:f6:47:5f:a6:14:e8:11:01:95:3f:4d:01:eb:3c +# SHA1 Fingerprint: f4:27:86:eb:6e:b8:6d:88:31:67:02:fb:ba:66:a4:53:00:aa:7a:a6 +# SHA256 Fingerprint: 57:4d:f6:93:1e:27:80:39:66:7b:72:0a:fd:c1:60:0f:c2:7e:b6:6d:d3:09:29:79:fb:73:85:64:87:21:28:82 +-----BEGIN CERTIFICATE----- +MIICJTCCAaugAwIBAgIQLBcIfWQqwP6FGFkGz7RK6zAKBggqhkjOPQQDAzBUMQsw +CQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRIT1JJ +VFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0EyMB4XDTE5MTIxOTAzMTgy +MVoXDTQ0MTIxMjAzMTgyMVowVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJFSUpJ +TkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2JhbCBS +b290IENBMjB2MBAGByqGSM49AgEGBSuBBAAiA2IABJ3LgJGNU2e1uVCxA/jlSR9B +IgmwUVJY1is0j8USRhTFiy8shP8sbqjV8QnjAyEUxEM9fMEsxEtqSs3ph+B99iK+ ++kpRuDCK/eHeGBIK9ke35xe/J4rUQUyWPGCWwf0VHKNCMEAwHQYDVR0OBBYEFNJK +sVF/BvDRgh9Obl+rg/xI1LCRMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMAoGCCqGSM49BAMDA2gAMGUCMBq8W9f+qdJUDkpd0m2xQNz0Q9XSSpkZElaA +94M04TVOSG0ED1cxMDAtsaqdAzjbBgIxAMvMh1PLet8gUXOQwKhbYdDFUDn9hf7B +43j4ptZLvZuHjw/l1lOWqzzIQNph91Oj9w== +-----END CERTIFICATE----- + +# Issuer: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited +# Subject: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited +# Label: "Sectigo Public Server Authentication Root E46" +# Serial: 88989738453351742415770396670917916916 +# MD5 Fingerprint: 28:23:f8:b2:98:5c:37:16:3b:3e:46:13:4e:b0:b3:01 +# SHA1 Fingerprint: ec:8a:39:6c:40:f0:2e:bc:42:75:d4:9f:ab:1c:1a:5b:67:be:d2:9a +# SHA256 Fingerprint: c9:0f:26:f0:fb:1b:40:18:b2:22:27:51:9b:5c:a2:b5:3e:2c:a5:b3:be:5c:f1:8e:fe:1b:ef:47:38:0c:53:83 +-----BEGIN CERTIFICATE----- +MIICOjCCAcGgAwIBAgIQQvLM2htpN0RfFf51KBC49DAKBggqhkjOPQQDAzBfMQsw +CQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1T +ZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwHhcN +MjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEYMBYG +A1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1YmxpYyBT +ZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAR2+pmpbiDt+dd34wc7qNs9Xzjoq1WmVk/WSOrsfy2qw7LFeeyZYX8QeccC +WvkEN/U0NSt3zn8gj1KjAIns1aeibVvjS5KToID1AZTc8GgHHs3u/iVStSBDHBv+ +6xnOQ6OjQjBAMB0GA1UdDgQWBBTRItpMWfFLXyY4qp3W7usNw/upYTAOBgNVHQ8B +Af8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNnADBkAjAn7qRa +qCG76UeXlImldCBteU/IvZNeWBj7LRoAasm4PdCkT0RHlAFWovgzJQxC36oCMB3q +4S6ILuH5px0CMk7yn2xVdOOurvulGu7t0vzCAxHrRVxgED1cf5kDW21USAGKcw== +-----END CERTIFICATE----- + +# Issuer: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited +# Subject: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited +# Label: "Sectigo Public Server Authentication Root R46" +# Serial: 156256931880233212765902055439220583700 +# MD5 Fingerprint: 32:10:09:52:00:d5:7e:6c:43:df:15:c0:b1:16:93:e5 +# SHA1 Fingerprint: ad:98:f9:f3:e4:7d:75:3b:65:d4:82:b3:a4:52:17:bb:6e:f5:e4:38 +# SHA256 Fingerprint: 7b:b6:47:a6:2a:ee:ac:88:bf:25:7a:a5:22:d0:1f:fe:a3:95:e0:ab:45:c7:3f:93:f6:56:54:ec:38:f2:5a:06 +-----BEGIN CERTIFICATE----- +MIIFijCCA3KgAwIBAgIQdY39i658BwD6qSWn4cetFDANBgkqhkiG9w0BAQwFADBf +MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQD +Ey1TZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYw +HhcNMjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEY +MBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1Ymxp +YyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCTvtU2UnXYASOgHEdCSe5jtrch/cSV1UgrJnwUUxDa +ef0rty2k1Cz66jLdScK5vQ9IPXtamFSvnl0xdE8H/FAh3aTPaE8bEmNtJZlMKpnz +SDBh+oF8HqcIStw+KxwfGExxqjWMrfhu6DtK2eWUAtaJhBOqbchPM8xQljeSM9xf +iOefVNlI8JhD1mb9nxc4Q8UBUQvX4yMPFF1bFOdLvt30yNoDN9HWOaEhUTCDsG3X +ME6WW5HwcCSrv0WBZEMNvSE6Lzzpng3LILVCJ8zab5vuZDCQOc2TZYEhMbUjUDM3 +IuM47fgxMMxF/mL50V0yeUKH32rMVhlATc6qu/m1dkmU8Sf4kaWD5QazYw6A3OAS +VYCmO2a0OYctyPDQ0RTp5A1NDvZdV3LFOxxHVp3i1fuBYYzMTYCQNFu31xR13NgE +SJ/AwSiItOkcyqex8Va3e0lMWeUgFaiEAin6OJRpmkkGj80feRQXEgyDet4fsZfu ++Zd4KKTIRJLpfSYFplhym3kT2BFfrsU4YjRosoYwjviQYZ4ybPUHNs2iTG7sijbt +8uaZFURww3y8nDnAtOFr94MlI1fZEoDlSfB1D++N6xybVCi0ITz8fAr/73trdf+L +HaAZBav6+CuBQug4urv7qv094PPK306Xlynt8xhW6aWWrL3DkJiy4Pmi1KZHQ3xt +zwIDAQABo0IwQDAdBgNVHQ4EFgQUVnNYZJX5khqwEioEYnmhQBWIIUkwDgYDVR0P +AQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAC9c +mTz8Bl6MlC5w6tIyMY208FHVvArzZJ8HXtXBc2hkeqK5Duj5XYUtqDdFqij0lgVQ +YKlJfp/imTYpE0RHap1VIDzYm/EDMrraQKFz6oOht0SmDpkBm+S8f74TlH7Kph52 +gDY9hAaLMyZlbcp+nv4fjFg4exqDsQ+8FxG75gbMY/qB8oFM2gsQa6H61SilzwZA +Fv97fRheORKkU55+MkIQpiGRqRxOF3yEvJ+M0ejf5lG5Nkc/kLnHvALcWxxPDkjB +JYOcCj+esQMzEhonrPcibCTRAUH4WAP+JWgiH5paPHxsnnVI84HxZmduTILA7rpX +DhjvLpr3Etiga+kFpaHpaPi8TD8SHkXoUsCjvxInebnMMTzD9joiFgOgyY9mpFui +TdaBJQbpdqQACj7LzTWb4OE4y2BThihCQRxEV+ioratF4yUQvNs+ZUH7G6aXD+u5 +dHn5HrwdVw1Hr8Mvn4dGp+smWg9WY7ViYG4A++MnESLn/pmPNPW56MORcr3Ywx65 +LvKRRFHQV80MNNVIIb/bE/FmJUNS0nAiNs2fxBx1IK1jcmMGDw4nztJqDby1ORrp +0XZ60Vzk50lJLVU3aPAaOpg+VBeHVOmmJ1CJeyAvP/+/oYtKR5j/K3tJPsMpRmAY +QqszKbrAKbkTidOIijlBO8n9pu0f9GBj39ItVQGL +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation +# Subject: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation +# Label: "SSL.com TLS RSA Root CA 2022" +# Serial: 148535279242832292258835760425842727825 +# MD5 Fingerprint: d8:4e:c6:59:30:d8:fe:a0:d6:7a:5a:2c:2c:69:78:da +# SHA1 Fingerprint: ec:2c:83:40:72:af:26:95:10:ff:0e:f2:03:ee:31:70:f6:78:9d:ca +# SHA256 Fingerprint: 8f:af:7d:2e:2c:b4:70:9b:b8:e0:b3:36:66:bf:75:a5:dd:45:b5:de:48:0f:8e:a8:d4:bf:e6:be:bc:17:f2:ed +-----BEGIN CERTIFICATE----- +MIIFiTCCA3GgAwIBAgIQb77arXO9CEDii02+1PdbkTANBgkqhkiG9w0BAQsFADBO +MQswCQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQD +DBxTU0wuY29tIFRMUyBSU0EgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzQyMloX +DTQ2MDgxOTE2MzQyMVowTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jw +b3JhdGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgUlNBIFJvb3QgQ0EgMjAyMjCC +AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANCkCXJPQIgSYT41I57u9nTP +L3tYPc48DRAokC+X94xI2KDYJbFMsBFMF3NQ0CJKY7uB0ylu1bUJPiYYf7ISf5OY +t6/wNr/y7hienDtSxUcZXXTzZGbVXcdotL8bHAajvI9AI7YexoS9UcQbOcGV0ins +S657Lb85/bRi3pZ7QcacoOAGcvvwB5cJOYF0r/c0WRFXCsJbwST0MXMwgsadugL3 +PnxEX4MN8/HdIGkWCVDi1FW24IBydm5MR7d1VVm0U3TZlMZBrViKMWYPHqIbKUBO +L9975hYsLfy/7PO0+r4Y9ptJ1O4Fbtk085zx7AGL0SDGD6C1vBdOSHtRwvzpXGk3 +R2azaPgVKPC506QVzFpPulJwoxJF3ca6TvvC0PeoUidtbnm1jPx7jMEWTO6Af77w +dr5BUxIzrlo4QqvXDz5BjXYHMtWrifZOZ9mxQnUjbvPNQrL8VfVThxc7wDNY8VLS ++YCk8OjwO4s4zKTGkH8PnP2L0aPP2oOnaclQNtVcBdIKQXTbYxE3waWglksejBYS +d66UNHsef8JmAOSqg+qKkK3ONkRN0VHpvB/zagX9wHQfJRlAUW7qglFA35u5CCoG +AtUjHBPW6dvbxrB6y3snm/vg1UYk7RBLY0ulBY+6uB0rpvqR4pJSvezrZ5dtmi2f +gTIFZzL7SAg/2SW4BCUvAgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0j +BBgwFoAU+y437uOEeicuzRk1sTN8/9REQrkwHQYDVR0OBBYEFPsuN+7jhHonLs0Z +NbEzfP/UREK5MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAjYlt +hEUY8U+zoO9opMAdrDC8Z2awms22qyIZZtM7QbUQnRC6cm4pJCAcAZli05bg4vsM +QtfhWsSWTVTNj8pDU/0quOr4ZcoBwq1gaAafORpR2eCNJvkLTqVTJXojpBzOCBvf +R4iyrT7gJ4eLSYwfqUdYe5byiB0YrrPRpgqU+tvT5TgKa3kSM/tKWTcWQA673vWJ +DPFs0/dRa1419dvAJuoSc06pkZCmF8NsLzjUo3KUQyxi4U5cMj29TH0ZR6LDSeeW +P4+a0zvkEdiLA9z2tmBVGKaBUfPhqBVq6+AL8BQx1rmMRTqoENjwuSfr98t67wVy +lrXEj5ZzxOhWc5y8aVFjvO9nHEMaX3cZHxj4HCUp+UmZKbaSPaKDN7EgkaibMOlq +bLQjk2UEqxHzDh1TJElTHaE/nUiSEeJ9DU/1172iWD54nR4fK/4huxoTtrEoZP2w +AgDHbICivRZQIA9ygV/MlP+7mea6kMvq+cYMwq7FGc4zoWtcu358NFcXrfA/rs3q +r5nsLFR+jM4uElZI7xc7P0peYNLcdDa8pUNjyw9bowJWCZ4kLOGGgYz+qxcs+sji +Mho6/4UIyYOf8kpIEFR3N+2ivEC+5BB09+Rbu7nzifmPQdjH5FCQNYA+HLhNkNPU +98OwoX6EyneSMSy4kLGCenROmxMmtNVQZlR4rmA= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation +# Subject: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation +# Label: "SSL.com TLS ECC Root CA 2022" +# Serial: 26605119622390491762507526719404364228 +# MD5 Fingerprint: 99:d7:5c:f1:51:36:cc:e9:ce:d9:19:2e:77:71:56:c5 +# SHA1 Fingerprint: 9f:5f:d9:1a:54:6d:f5:0c:71:f0:ee:7a:bd:17:49:98:84:73:e2:39 +# SHA256 Fingerprint: c3:2f:fd:9f:46:f9:36:d1:6c:36:73:99:09:59:43:4b:9a:d6:0a:af:bb:9e:7c:f3:36:54:f1:44:cc:1b:a1:43 +-----BEGIN CERTIFICATE----- +MIICOjCCAcCgAwIBAgIQFAP1q/s3ixdAW+JDsqXRxDAKBggqhkjOPQQDAzBOMQsw +CQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQDDBxT +U0wuY29tIFRMUyBFQ0MgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzM0OFoXDTQ2 +MDgxOTE2MzM0N1owTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jwb3Jh +dGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgRUNDIFJvb3QgQ0EgMjAyMjB2MBAG +ByqGSM49AgEGBSuBBAAiA2IABEUpNXP6wrgjzhR9qLFNoFs27iosU8NgCTWyJGYm +acCzldZdkkAZDsalE3D07xJRKF3nzL35PIXBz5SQySvOkkJYWWf9lCcQZIxPBLFN +SeR7T5v15wj4A4j3p8OSSxlUgaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSME +GDAWgBSJjy+j6CugFFR781a4Jl9nOAuc0DAdBgNVHQ4EFgQUiY8vo+groBRUe/NW +uCZfZzgLnNAwDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMDA2gAMGUCMFXjIlbp +15IkWE8elDIPDAI2wv2sdDJO4fscgIijzPvX6yv/N33w7deedWo1dlJF4AIxAMeN +b0Igj762TVntd00pxCAgRWSGOlDGxK0tk/UYfXLtqc/ErFc2KAhl3zx5Zn6g6g== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos +# Subject: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos +# Label: "Atos TrustedRoot Root CA ECC TLS 2021" +# Serial: 81873346711060652204712539181482831616 +# MD5 Fingerprint: 16:9f:ad:f1:70:ad:79:d6:ed:29:b4:d1:c5:79:70:a8 +# SHA1 Fingerprint: 9e:bc:75:10:42:b3:02:f3:81:f4:f7:30:62:d4:8f:c3:a7:51:b2:dd +# SHA256 Fingerprint: b2:fa:e5:3e:14:cc:d7:ab:92:12:06:47:01:ae:27:9c:1d:89:88:fa:cb:77:5f:a8:a0:08:91:4e:66:39:88:a8 +-----BEGIN CERTIFICATE----- +MIICFTCCAZugAwIBAgIQPZg7pmY9kGP3fiZXOATvADAKBggqhkjOPQQDAzBMMS4w +LAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgRUNDIFRMUyAyMDIxMQ0w +CwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTI2MjNaFw00MTA0 +MTcwOTI2MjJaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBDQSBF +Q0MgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMHYwEAYHKoZI +zj0CAQYFK4EEACIDYgAEloZYKDcKZ9Cg3iQZGeHkBQcfl+3oZIK59sRxUM6KDP/X +tXa7oWyTbIOiaG6l2b4siJVBzV3dscqDY4PMwL502eCdpO5KTlbgmClBk1IQ1SQ4 +AjJn8ZQSb+/Xxd4u/RmAo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR2 +KCXWfeBmmnoJsmo7jjPXNtNPojAOBgNVHQ8BAf8EBAMCAYYwCgYIKoZIzj0EAwMD +aAAwZQIwW5kp85wxtolrbNa9d+F851F+uDrNozZffPc8dz7kUK2o59JZDCaOMDtu +CCrCp1rIAjEAmeMM56PDr9NJLkaCI2ZdyQAUEv049OGYa3cpetskz2VAv9LcjBHo +9H1/IISpQuQo +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos +# Subject: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos +# Label: "Atos TrustedRoot Root CA RSA TLS 2021" +# Serial: 111436099570196163832749341232207667876 +# MD5 Fingerprint: d4:d3:46:b8:9a:c0:9c:76:5d:9e:3a:c3:b9:99:31:d2 +# SHA1 Fingerprint: 18:52:3b:0d:06:37:e4:d6:3a:df:23:e4:98:fb:5b:16:fb:86:74:48 +# SHA256 Fingerprint: 81:a9:08:8e:a5:9f:b3:64:c5:48:a6:f8:55:59:09:9b:6f:04:05:ef:bf:18:e5:32:4e:c9:f4:57:ba:00:11:2f +-----BEGIN CERTIFICATE----- +MIIFZDCCA0ygAwIBAgIQU9XP5hmTC/srBRLYwiqipDANBgkqhkiG9w0BAQwFADBM +MS4wLAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgUlNBIFRMUyAyMDIx +MQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTIxMTBaFw00 +MTA0MTcwOTIxMDlaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBD +QSBSU0EgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMIICIjAN +BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtoAOxHm9BYx9sKOdTSJNy/BBl01Z +4NH+VoyX8te9j2y3I49f1cTYQcvyAh5x5en2XssIKl4w8i1mx4QbZFc4nXUtVsYv +Ye+W/CBGvevUez8/fEc4BKkbqlLfEzfTFRVOvV98r61jx3ncCHvVoOX3W3WsgFWZ +kmGbzSoXfduP9LVq6hdKZChmFSlsAvFr1bqjM9xaZ6cF4r9lthawEO3NUDPJcFDs +GY6wx/J0W2tExn2WuZgIWWbeKQGb9Cpt0xU6kGpn8bRrZtkh68rZYnxGEFzedUln +nkL5/nWpo63/dgpnQOPF943HhZpZnmKaau1Fh5hnstVKPNe0OwANwI8f4UDErmwh +3El+fsqyjW22v5MvoVw+j8rtgI5Y4dtXz4U2OLJxpAmMkokIiEjxQGMYsluMWuPD +0xeqqxmjLBvk1cbiZnrXghmmOxYsL3GHX0WelXOTwkKBIROW1527k2gV+p2kHYzy +geBYBr3JtuP2iV2J+axEoctr+hbxx1A9JNr3w+SH1VbxT5Aw+kUJWdo0zuATHAR8 +ANSbhqRAvNncTFd+rrcztl524WWLZt+NyteYr842mIycg5kDcPOvdO3GDjbnvezB +c6eUWsuSZIKmAMFwoW4sKeFYV+xafJlrJaSQOoD0IJ2azsct+bJLKZWD6TWNp0lI +pw9MGZHQ9b8Q4HECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU +dEmZ0f+0emhFdcN+tNzMzjkz2ggwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB +DAUAA4ICAQAjQ1MkYlxt/T7Cz1UAbMVWiLkO3TriJQ2VSpfKgInuKs1l+NsW4AmS +4BjHeJi78+xCUvuppILXTdiK/ORO/auQxDh1MoSf/7OwKwIzNsAQkG8dnK/haZPs +o0UvFJ/1TCplQ3IM98P4lYsU84UgYt1UU90s3BiVaU+DR3BAM1h3Egyi61IxHkzJ +qM7F78PRreBrAwA0JrRUITWXAdxfG/F851X6LWh3e9NpzNMOa7pNdkTWwhWaJuyw +xfW70Xp0wmzNxbVe9kzmWy2B27O3Opee7c9GslA9hGCZcbUztVdF5kJHdWoOsAgM +rr3e97sPWD2PAzHoPYJQyi9eDF20l74gNAf0xBLh7tew2VktafcxBPTy+av5EzH4 +AXcOPUIjJsyacmdRIXrMPIWo6iFqO9taPKU0nprALN+AnCng33eU0aKAQv9qTFsR +0PXNor6uzFFcw9VUewyu1rkGd4Di7wcaaMxZUa1+XGdrudviB0JbuAEFWDlN5LuY +o7Ey7Nmj1m+UI/87tyll5gfp77YZ6ufCOB0yiJA8EytuzO+rdwY0d4RPcuSBhPm5 +dDTedk+SKlOxJTnbPP/lPqYO5Wue/9vsL3SD3460s6neFE3/MaNFcyT6lSnMEpcE +oji2jbDwN/zIIX8/syQbPYtuzE2wFg2WHYMfRsCbvUOZ58SWLs5fyQ== +-----END CERTIFICATE----- diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py new file mode 100644 index 00000000..5c67600b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py @@ -0,0 +1,119 @@ +""" +certifi.py +~~~~~~~~~~ + +This module returns the installation location of cacert.pem or its contents. +""" +import sys + +DEBIAN_CA_CERTS_PATH = '/etc/ssl/certs/ca-certificates.crt' + +if sys.version_info >= (3, 11): + + from importlib.resources import as_file, files + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the file + # in cases where we're inside of a zipimport situation until someone + # actually calls where(), but we don't want to re-extract the file + # on every call of where(), so we'll do it once then store it in a + # global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you to + # manage the cleanup of this file, so it doesn't actually return a + # path, it returns a context manager that will give you the path + # when you enter it and will do any cleanup when you leave it. In + # the common case of not needing a temporary file, it will just + # return the file system location and the __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = as_file(files("pip._vendor.certifi").joinpath("cacert.pem")) + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + + return _CACERT_PATH + + def contents() -> str: + return files("pip._vendor.certifi").joinpath("cacert.pem").read_text(encoding="ascii") + +elif sys.version_info >= (3, 7): + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the + # file in cases where we're inside of a zipimport situation until + # someone actually calls where(), but we don't want to re-extract + # the file on every call of where(), so we'll do it once then store + # it in a global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you + # to manage the cleanup of this file, so it doesn't actually + # return a path, it returns a context manager that will give + # you the path when you enter it and will do any cleanup when + # you leave it. In the common case of not needing a temporary + # file, it will just return the file system location and the + # __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = get_path("pip._vendor.certifi", "cacert.pem") + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + + return _CACERT_PATH + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") + +else: + import os + import types + from typing import Union + + Package = Union[types.ModuleType, str] + Resource = Union[str, "os.PathLike"] + + # This fallback will work for Python versions prior to 3.7 that lack the + # importlib.resources module but relies on the existing `where` function + # so won't address issues with environments like PyOxidizer that don't set + # __file__ on modules. + def read_text( + package: Package, + resource: Resource, + encoding: str = 'utf-8', + errors: str = 'strict' + ) -> str: + with open(where(), encoding=encoding) as data: + return data.read() + + # If we don't have importlib.resources, then we will just do the old logic + # of assuming we're on the filesystem and munge the path directly. + def where() -> str: + f = os.path.dirname(__file__) + + return os.path.join(f, "cacert.pem") + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") + + +# Debian: Use system CA certs: +def where() -> str: + return DEBIAN_CA_CERTS_PATH + + +def contents() -> str: + with open(where(), "r", encoding="ascii") as data: + return data.read() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py new file mode 100644 index 00000000..fe581623 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py @@ -0,0 +1,115 @@ +######################## BEGIN LICENSE BLOCK ######################## +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Union + +from .charsetgroupprober import CharSetGroupProber +from .charsetprober import CharSetProber +from .enums import InputState +from .resultdict import ResultDict +from .universaldetector import UniversalDetector +from .version import VERSION, __version__ + +__all__ = ["UniversalDetector", "detect", "detect_all", "__version__", "VERSION"] + + +def detect( + byte_str: Union[bytes, bytearray], should_rename_legacy: bool = False +) -> ResultDict: + """ + Detect the encoding of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + :param should_rename_legacy: Should we rename legacy encodings + to their more modern equivalents? + :type should_rename_legacy: ``bool`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError( + f"Expected object of type bytes or bytearray, got: {type(byte_str)}" + ) + byte_str = bytearray(byte_str) + detector = UniversalDetector(should_rename_legacy=should_rename_legacy) + detector.feed(byte_str) + return detector.close() + + +def detect_all( + byte_str: Union[bytes, bytearray], + ignore_threshold: bool = False, + should_rename_legacy: bool = False, +) -> List[ResultDict]: + """ + Detect all the possible encodings of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + :param ignore_threshold: Include encodings that are below + ``UniversalDetector.MINIMUM_THRESHOLD`` + in results. + :type ignore_threshold: ``bool`` + :param should_rename_legacy: Should we rename legacy encodings + to their more modern equivalents? + :type should_rename_legacy: ``bool`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError( + f"Expected object of type bytes or bytearray, got: {type(byte_str)}" + ) + byte_str = bytearray(byte_str) + + detector = UniversalDetector(should_rename_legacy=should_rename_legacy) + detector.feed(byte_str) + detector.close() + + if detector.input_state == InputState.HIGH_BYTE: + results: List[ResultDict] = [] + probers: List[CharSetProber] = [] + for prober in detector.charset_probers: + if isinstance(prober, CharSetGroupProber): + probers.extend(p for p in prober.probers) + else: + probers.append(prober) + for prober in probers: + if ignore_threshold or prober.get_confidence() > detector.MINIMUM_THRESHOLD: + charset_name = prober.charset_name or "" + lower_charset_name = charset_name.lower() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith("iso-8859") and detector.has_win_bytes: + charset_name = detector.ISO_WIN_MAP.get( + lower_charset_name, charset_name + ) + # Rename legacy encodings with superset encodings if asked + if should_rename_legacy: + charset_name = detector.LEGACY_MAP.get( + charset_name.lower(), charset_name + ) + results.append( + { + "encoding": charset_name, + "confidence": prober.get_confidence(), + "language": prober.language, + } + ) + if len(results) > 0: + return sorted(results, key=lambda result: -result["confidence"]) + + return [detector.result] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e1f5bd98faa1174a57c0dd753b5c8f4018252930 GIT binary patch literal 4620 zcmd59TTC3+_0GOu>;j81Hm|W4FiY%RjB8%TRIUL-cqN8}1SuMZoy#(Kc4vKO0Ano@ zi7b_2621iu#b6KO9`O^;gfG*trr3SJx(eAqMN5Q=WtC(GOjcuHU5@dJ;+$6ybgHRBQj zzy*SI0F|1x9@_gzoB2Qxi*rGgk58)X| zrsmZ#l~*y4J(saEFR49ZOodSi2wcEK;iVp|;+QHESj+it@8z+9(Gktdag+#4a$ML> z=$2{@L1)xFM$hq*M0`LXUP^UMFR7SQRHBtBv+}$oa0Dm$1m+|h=VMEngJ5-@Bx4p} zHa`adR`_?fp}CDzYMuV2k-EosKMyG_FVJl!?;icI>NIfzqq47_9i}JV?T+OL>)_pYFYuf?JFQR-T>% zK;KT&bcNbUP1dbE$;M^1lfB1~VmO?zOY?||m{e3A_D^%~v1xXFlQj1@i0LInCYp_I zrtuhTGZ+h+JtoNt4qFL5d0m|5GG2#F6nej42cG{ZIx8n|G|o>G5lhh?tXxs$RCG+9 zQ5ShIzXva1NlqoeaQ31+PZS&-mW6o zQfKAlnaJsus3NNPREm#X;p13|ro>bfUT{*7Ni+t&0+fn!oR}0)RFPkXllO^-_}bEOx5*Yo>|-;Qit9NQ=!-?dtT{vBi~ z@;`H+vg-BsHiHeTuEzm(qxH?Lz~D-M&gT36@Q1@|ja#!qau?P? zTCo^U!m)GeEWvQNk`UW_i9n`rSoaB!p#9eQ1j|03U`<=U)+boM$|r!&u+Gst_|m6B zL^Hm*G7~EFR~ivoW5`GxE!*I?gN*V5)r5M`2Ym=FJNEfZhgxA$O`l0ZY5QEIi7oVk z^#)2i=Bf%96Y4>xN4uZ*stmf>3Q}rKjzXVy?BnUTp|l;e+M-&e8Knl~A1m;hkSQIk zI&R_${gocLt<233%&jY6P3Rh<(D-g!cBY+kCroUiH)Suo(yqC10dGQr-PD&f!um}n zzR;5@z@IFPO=vD^LWMrx+OMUz_ zc=$!#XnlzTo2jW+QnJYKz{tSxJHy;~|K;AX{?VbHe7rkQfQ}TC5SMA5r|eGv4$$_+ z0GdxPUK4D;l`)?L;c5};A!B)0q+d0fE}nsZmxX2!F%U%3=mSVKmzgy4W9BvkSKDPn zOX!!@MJCLQ+@ndhCDN=hDTU5uSyBz%b9Yx9C-Jou>AqfV#B`eRM!F<9#!E_fWRE-n z+zNH$|3LpvFXhb1Y z7da(>)E>k|G4B3>Oa0vU-XHJP0yHI2u*#+M(nTS(5YQa>nhF_< z=FDR?2cJq&gg*|f`*y12l~=4zr{{Wv#z)PW z-*G}cs^&11C#`f)s_Vh+*G-{yiT+S&qu(?_H(hV2w^bg((Lpj+_x~hge|t?b28r3o zha+3IvTbJ|>#WQ;EAL#-)}G1Kp4oJs$<;NiI&&w&(3IC?%Ojcc$d}0GKC#+Iv%!X~ zJ}>UrHn8gppBFdmxM9wY2OX~Y5*>1vuJ-*Y zQ2R-1Hq@R8wQq(xAHJ78Kan{uA=Gg5agtFL@AQsRbLJokYIC>f#T&){i~%Rz40MSwE3EF}M{R+VBl+`^s*O zemuJ2t=h0v>5pY3%=CpVeSP6_%>e}ilyHP5w1j#Ctu%ib;XTEUP%W}Oy*PI-6T^wh;S^9c48!euU zGC;q6)P3mM8_v(w1w|Q@Al+mT2-KMgle9ko0`jZaYZ6LkCuYW_0{ z|Hbq6igU+>dYLzwr`9s2D(4Tb^{#hpl+|VY^*cJ|`~|(=wg-0Yz_HVUYC^eV4Nslj lO!Z6bfY~lTx?_hP4y&?uhw^}UhiA1ZV?XrF4MSbw{{lISU{L@7 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b64c08c3277eb4717dbaa4f4e822722e7357166 GIT binary patch literal 27251 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..45cd8629aad2dcdfc9caa97efa5ffa100b67e589 GIT binary patch literal 1439 zcmah}&1>976ra)8%G=#Iaj@e}FPj9nh~gDZ2rZ>eTiYcxWZlB{q|2a{#=C0t)tOnR zGCufV=o%7wX>tCA;QS}OG$e;2Y$)W^o9V_7a_Sptm26HO(3>~!&HMVjH~OR5tRq+} zPah0l7zn+Phid6lW^xCZL*yeLhbY1h#*$Y;B~l%=;MGuzbVo0EEi|Hw~?>! zBj2FZh0SDc}dg2H1peI~GyRJ73 zVhYlw?kE(&S|;fF&}BU;zGq3FGSD>FzP){u^tz<`-NrX}y=m&jHjRxYcj5R8R6>!1 zedH*>#~G0iQHgRj9Bc+ z>Z&DU%WpCU@;g36qSBxPyo(+J##J|qj7d*Jq2Ktp?j@_Qml?Ow7a?z@b(H|RDElQg2S zXs;(D#;M&+{830(e@K#$+d-6uRBBhfZ95G5cAAM{65r^2eBI`OpsT6t z-E#+&+i8&61g`lBvppCRp9;GVO-hSN>7*HJKyo`5-!`sOA#e>8yaVLb9y&Ig2eqf> z@^ka@aqFWe-Dj=O#@d5($17hvTlsRVJvXoZWj21TAJiWADmYU6+s^q6}Ng zX0FMIkI`ey&V!W8zP8x{(7Yk@1SCo9Ms(-WOlGqROIpbZ*+YNNFS3ik{eRHfx_mjD zvL(3AE=dNc#4;i&qw`fJIYaF5}MoqDTj9=-%Xitfwb&SQN(NW^Aem}>;sU=>UbN-sfsZ^ e`xN0%PSEuebmIhFd1*9p>(2`xo*~$aT>k@fAztqQ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f0819b85417d3a11c199aaf473911144ab054b3 GIT binary patch literal 9690 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1b7ecdf75e340a3f1337c1fa7f1385990a3c1614 GIT binary patch literal 4174 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..69975302d135ce52f8c9fefb7b7fff561f5bd2ae GIT binary patch literal 3930 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e3f920bd5580108b0bf0ab3c6a3279abf110430c GIT binary patch literal 1448 zcmah}&2Jk;6o0e!t~aUk(LfUiE>WshSXHvna%crA1-n9`b*M00_A*-UPU5Be#mqRx zQ4Tpo!jW2Ws?vX<3jYZgs`h|ZjfBLBTZ9v->WMdFZ*fl@Y2Ung-}8HK_V<~YX~1>q z*~4zL0`Rvw6w4el!*7r|ga85(K}=ji6mLXETyjgAFGc0pbWP2dBP*`B6#@o)4S~52 zfyKw+F=|uvyFQ@d8G$6xR+ z3|ta`YXs&1Hc4RYSKSgT2ZWiMMo`)>AC0|T>y5NLA*~GHXX4szs9X6top)45ZgD1i zJn_{9i=~pQZ#Y2mm>hyEG;lz6;Ss`Iq$3~;&_P;-+0i)KF3@rzljjPq@I~z#k6rk2 zuF(I#7nTJ2i2g?1&P~zF7|(4=!z7fHauuJeF!_|P;in?zs`&guFwrLJsXpzXtI3&Q zvTo#M!J^H4ic&xFgrHOy=(V!<`mxhZW9Dpm9UijCX)>W>K2O zERidXw8sT=T4~UW*xL7L8VM(ivxq6}nx8%pUf)^YX34e_g&imB%Wj%nTmR&$BSOj6 zGS9#7Z870wVdhXY3sUa*I3@v;j-TOlWO`WEvp%n4bvy4*v~In?;38_o$4Fl7!ApDQ zpz_SFy|6!cxqRifjpxgs4ayH^Pc69o#q&$I2IUv_>YsM?*Xe`lN7W(vz+0VH0^NB9 z>ml?>-Pp)Yo%AU@C43&mLN#}VFCfjUs#t`RCSJ^TYLnGXYOW|ZH79%U*W4n154m@z zweF;xc?n-cYrdo+OeD4=FWKrLc5g#cNF8NfBwW%7>js}f=|+7@O^>RV(tMiISoaS3 zDy2X5ylAA+aOXC{kK-o$c?n-Uuc=BtM3T>pr^aVdL}{Jy^D3dL@0JFJ+sagtRi(Iz zULrU i$w`S2a&{fa^<%ht4A+if_0*apwLcaD1aBs+23G${dooE^@-X1<--Uoshq zz%#%1P3OA=A-`c``ot%~!S^8CB_?SRQ!pd8(2cYr-DoQ+kO)~OX7n~OWA`Fs>sBn( z#X*-~(RUS8GoqpE?N%yJF8SQ(_gcf)E?T*{`LldK;bCdbBryJMxHY-Zfg5LK#E?=Nk-Jy%N z?t~`vys10It!eX%c2~FTqTzN6(mrmf5D8*9T@YKc^|mqIC_K%M%JPb~c&#b_L=IqF^7PwM$L+FG zTi@aqvrARxUH9Eyso`$>H!&7fw!>_<*TwZ$+&=eMX*HbtLeq6^uVi(5Hp9Oc4ELs| z4@$)y=IoSgYpc{7Kzy7_#g8wRJj-VnCZY36J*!vJz|3@cX%g2Gdd@5M1{}ytLO_0d zZv)&W4Bk>+hIqK-eh60^zvp08h5uWr#(Kg z%dZ-|!xP(s?(F1KdK4Krr6)!qRh64^rKzaPfw)xPP^+5K3=(R+sjbS#y?742h%gWD zG5Y87!2H=c^j!AV(%36#`v1MMsv8~4VPmhTukDr4J+wO>+3;6X*N#q%6aq(Lg_`XWU@nfl+FMgc?C_M^GXyH_#9jYczIG_A{4;XcEn8Hj@=78 zK~j(gVj&ge8|+4(IR>j)*O_f~T-V(F>g8Uu4=u6S=@j#wZa@a1+pcZ9H-VF3m4K45 zW4V2gx(*aKEGS_KIP%{BMofl!F-E-Z``9_n_>Ai@+pYYen=x$N z^STVmj2T2N$LAMe{NpF;0_qSxh1bLQ9~Bg+B`ebt1-S^%*01ro2T*QuKVEu7;Bycq zi5%9S@q)vF3>f3^nMUH^Lr}e(Sy*lc$$}W2 z@ag~$qJkhijKqZ4lQa>|JV_*l{6hlp_;gnI=uY!7fzRW!Nn!TRCyzlt`{XnLT7Z-h Sat{f>6PgzCj|f1x>VE)CCYg2@9S6PZhpBp2qAmav5* zvPHHgtVur1>vKL~OWMPBeQryXC55n%bc7wr@^HCMvnQNMSJ;(whuz7Fa7EG+_He{P z&J(%pE|CSwKeZa)3s+7%{N>-^!f(-p;fxwjry>c>b}a>yZ#blLn)~cTgpE-3GE0w9 z2861!X*r%6A5kMJ9g0LJ;wkF4Y896vsqv}EI6W6nsFZ204VEsZxp23+$tJKd0$0dC-B1yBZsQ4? zcrMuG26@L_K3pM}QxC1Adtw&U0-UNCFFS#=cb0t0g}o!h@75{@mFSkM&i=k!gf==6 zSHvw0aY~_z7!jMJX_<;jbb=;nvlz)_SQ^|R#?nlbsY;_NT)0S6AO#cUkgo041Z8w= zTBH#ro|qOHji$#_@oZ!)K}D)WBN-~fc4ZZ|n1b#2Ek;2!5vQ`4PKjz-R~46O zN{z>+MRkHIu-p7lm(JCk2?z)&W<-OXQFV%?LQ%`6`$vCaD6anks6Xc(5Vgphv&@js zfIq|ihI@*E2#q7-WQIsZ4KrlYZg4jDs$i~m^LG|>vCFWNH>FDBq`NdXXDXzs(bP(F zX4+$p99Z=Z`l{Zl@9ih^ntMy5ezJ~tvSgpB#XONY>L+`()fQ^vftEVT40U{ zY~cF}lP_Z=6n&$wivCfXO{vNE%vouKeS6In+?L;*mqs(cIWkTB){viLdw|I>?)=r7 zO_|C7ya|#NPsLS9(i}#9NlMa?!}tS?ybufxjtoj8!J*5Sg6D#R1DYK&l%`}>hT5Fi zxlmO2sQ+?5$})^U&3R^9};ZZeD1d{kB1>I6KJ(W_mJ(7{xRFMewV0eX`r(wQXWzj!u11!e?>((+V-c8;dg2_+Cu zW)gr&DYY}2zNJK_16?<1>SiDj9}8rr)roYfr|U>}K#8lgGZTqk2aAMMU|hCtJ4kk!emD$lUv>RxJAJkH z{7UnMRabC}lHOcn@3OP^e-rM>HTEn!dwy8hC(iP#!hyo!qc}Dej`ZT_d$F%Mzwc0P z-yt}Ivmm(cm(P`d=30lNlIR9B;#`MP9ZvrMi{0V06xzE3#Q^yUyim6}nVaDx)TOr> zZn8KxX@rz?-K*z`>M%LGYc>-Z($9RRq0WI-5nl8a=7!!N^(>)LzrYacn1~(16eN+J z5t=nYQ>-4z2e4~^&TnN+I7c~#7+}UTYe9+#U3TA&_|Y@s4Dggu=*-}mbKmn6>KYz3 zE;PO(7DwZ3u;6Q%4X(Nl6kOH!hv$Z$yBgMP!1&fq#FoXQzdrTLQ!Bo1!+%Y!hX0z| zX8GrWk0A2cVhH}*aZJIt&Yrz(JIDu!iDlxBT9 zZg8u>6;Pre2Hhcrn)-ZA=W8B~&p z!hat8jgT$p*rn*fbHEoDHhr;J%#`$P`J#0aYw&H?a97J+cf2rb(hNEFMC|7JZ; z?!D$QyLUMw#3~;;$Iy>PWl?G1RvQqs@)Z44HJ)sSxT@I(uU;L#YTzASy=D&$k4i&> z%%^jW$K4(r9RZpqoEyFt8jymcTCEYnSpFN@q@?kG%>d0V*lZxD%|Om0sEvynNb54| z8mt@?G!*}hY@iPxqg2jT@5mV>BaSLBpo2`=Q}>E^9Bs4xg@&d_pDcXxid4AU<{gC^ zF<;ZZT+?3g9w_)a^1hy&ujlLj72mOWS7ER3s}uQ_-ds!X^4{J;`=R;Zs`tHuw>IzX zSoU^2?$3EUpL;v>Bs`d_Ir#X-O3mRHZQc2{4{~iEJmkN00#rZBE@W40{e|kLuYR0w z?aQ_HtyK5DXzt24AI~)(pC9<*VxjX`zH>O&IlR(&Wqx4Q`+lM8c)sgQuImi04i@Tt zk3L-ZaMj!TvH?t9v%)FXnn|Vies(UqB-H5%@3$~?Z3xOjs0R^M(q4NjRP$?2#hF^qqW4-JO~^{PgHnlu4Q9jGkTX@*aOW(62whhWCgO`0v1NJmtL zRSx5I0%DD#IdF(D7Ma$IK6V0m?v0WzN)ri50-#3p)G_*u@fKpO%&MDs0t@p*0--IQklg*J7EieXWYvE7mNWt?l8&qOy>DMPRya zHHmBXjamD{j>VpZPGq+i+3jm~&epeRTL)_2n!U=l|KYX8-pBr>mY!V0(KP~u-yL{^ zgMP)jl_CEg&8|*oAddCRF>b)U@x&P=B16E_sy6=YV$7Pcjx~j5qp7K+qTjrpQbvhv zqe>L&b|*;a#kgLA>!r8;-6zDb0qckFg%gHbPq7dz5jGWc&zhCvxHo--YxyVX_%rGL e3ptr1C*N3XoMoLr_ig1#ZvXu4*8~P#+kXIGchfTf literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..270a53f80a9bc127483ba1fffc38c1aed540c9cb GIT binary patch literal 15362 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e37c18043e4642047ecf50feb08240255fba4da2 GIT binary patch literal 12134 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 b!ne=R%`$vg9!lxGqc2(;eOzdC9 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..44614082f952f9ae43bcf3fa6bd2c643a877d0a7 GIT binary patch literal 27256 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e53471f04487ef4cca6ef60fd0b3dc1ec2be1d4 GIT binary patch literal 1442 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a6a9335e7f77f9e8ad140636d2eeb9ca2935bb89 GIT binary patch literal 1455 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 U|M*PBD>|y<)~U}4mP#N00ecp_4FCWD literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e2bf6fcdf75c727d983b32cd5e9864a6b314c14 GIT binary patch literal 22207 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6fdd9bba373ca9abcaa9963c5691e9c73f4a69ab GIT binary patch literal 83055 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0f358ea1c5b44902ebd3ded1f4a3ef415f0e8cb GIT binary patch literal 39601 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 WD(TNpzOp6-n;!n_O8S$#_kRE$i)JGL literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f6d0688bf7aaef5d8f9e819a614767e9dbc2b132 GIT binary patch literal 83174 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3e2ace62a44083055d0c6d35c3d88007306fe9ed GIT binary patch literal 77040 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 b%>1W^jF)D2@vY77n4<3%jA$8JSWxi4I3<2j literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ef63ee0d9feb74d16ee0bb67d09c490cf7743e84 GIT binary patch literal 77551 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b61450daf73c0f8b361b74bca069de84a312865 GIT binary patch literal 83128 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 XbX(W%C*8~Xw)u8RuZA9_B_;m{fOV}V literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7a20f357bf271ac56f3b08d8ccb354ca55a87de GIT binary patch literal 77568 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 MxvqU=ZB5Pp01dL8p8x;= literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c60a513edd8ef52b87396a411c63daf9b4a37fbc GIT binary patch literal 7054 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f5dc74992b1509aecd1d50907ba4dec84be8524 GIT binary patch literal 7234 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad1a9fda1d1c0eb88b33159e7f4f9225127e48a1 GIT binary patch literal 3955 zcmahMOKcm*b#}Q+Ek#nKWjdB6N1|=WFcV9JB!A+6T~o1~T2v!ZX~D)=P~4$JdHLz= z(uo8*Fj@nZ0tfz}g=`=|bxh$N(o<6)2lr;67p-KJ?7~3}G(GsHz%~-((!Mt&C5on# zfi(MO-kUdX-k<;QdRqyMUhBrpZ`%m@4=!p$t^&`d09Ya#(FC1jgt(9q|@4T;Z@&cV$}Rtr>URo$>Qw5|r3p8^^+5nsvaTC=1Im=B^ z1{>|?a#}h&Jz*wHI+{q%q_Z^Su-h&sveSjcG<`d*o0Qp}DvFcY9z0z;l&pwWnKyKC z1=haIMhC zs#=o}(^a8@SBbR~KwZ-!nIj=bG$b%^Ir6N+BjmJYqmT!iD5{#yrcG6~cW8CSRugFL zc_45lxoK4+W4oq6841P`b9Sq$Ck#_ff**jPC4=fI&fj*aY7$U}sv0O@FnI0zd*PW} zhK8pTQ!GvOaD*C{&0Ib_kxQ8$Bp3}w=oPBx@)?>ngXeMuX3+3xPAllNFP6*cMmU|x z>lCql$=nA8p4R6>a-onedxnF}guO|CH%&X4ZHvF@}+r%i_2A71KtQ|hK%qS?G?Eshs zaC!}=oiK$&)`2iaq=B9pyv90l<8_$kcfZ0eoZSE(c?YJNQ5L;7d}X)q=IM`5mp%TQ z(Zy)V6SO?RN1nZ~U2^xXx_bdp^6a-f`%9jKmgnFjPk+6^SQoIf6?AeH(%zPUZ2=TF z-73sWXdKvR9M{Bm$Zx=qvm1fBNm0R>8$nszP+o-G5-uGf@&Qom1>o(eQEh%_eVcF%((oPr+G_I)yJ*ygQ55f2omC(v+L(`7 zG<3rNSJ{w2AlWas$c?sd7+mh1bv$=B5Wup5=bbG)yI-b9o`!Ja%U5W6&&wxjp>$O) zikiq}I$A_a?R}Y6bDZQdHS>bm-k0f{b1BOAt6n64f81yXswQ65l%D`HI_9BB@-JN2 zNgB8vlc2n45{6y#+cmNJhW#(gTW1Thux%dicF_Sionr7J`oat*o!m@@3ET-Uw zaXA8By`xT|AMp<0(&R-@?&awGo?asef0g18oJpHO%2v-I}Eznvg*NX4tCO^6>ch*tqS~bJNpMQDu!z6{c-ZwHm3}M26Z5 z_6*o7F*hD@M#p06=&QponMXNnS7bOgd@gn&dfxU;=S-DmbA{;{RZEx&yN$ERWm9R5W|P!zpBNb% zkDZ&0sj-pqVOU&@Kq}{n8iUCe(zb*effrO;1Ac{q?@{4;18WNQNWowwo1@|8yIzsa zQOaXLVBCRHd5x5P+i!lf_|b|lw4#JyhIPpovS8^uyrLY2`Rkp*<&L$TZ#*Lb*Dr*{ z^9yGe%yL)HA5Y&qUFteybshRVw$^og;bPg>^=YxxGhp=$tojDZ{=ky^w!7rtWBK=# z14qk&j#8l43iJZ7G&k zV8{v#eIEJi*k8sT{PLfH=o1vH4m0w_yAQVgZSujp54Zh&a^=v^9s<#O>mhvk`a#mY ze|hTO`wP-d-=goXU@4tXpa33UJpSqK(yp+zE4=CsZ|JY&J7)QgJ@TCZO_comEdRbW zfA42f>A)H5z?oJ5nXl^~_5`djzc|05?BYdnOBaJdz)Rsc06$s^fu?c%P=5iTC`6$x z;C;d%oP@p=JUBZciQU9m+)u^Chk}bj#Q_bw=CaVYrf+v%5nZ)5CBVJ zG~~zr7~>QA<5pG8@U|3SkE;H6FWnCdh zB0}l#h;?}68zRYl%h7fGJdC}-&kK)J?pycol{@cFE+76Zw6br=di~HkfsHSAKf}-Z zh#<-*mgR2=e7FYqMbS{3?KJ1|@FR_(#Vb$o^M1PSw*td>x4m1MYliKL-Cju$JOyPc zKMNUlDYlH+(%|~yDUv5We&?S^<$i1hzE@6GG=7?$hb8L5zyiAN5Cq}dlSJ6}UvlIt ba^Nd6_-}H`BB!1^j|nI4UV1^`!`b{F9wk_) literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0777f8f45f819c385cb6c13bb29b71c713c30fcc GIT binary patch literal 1640 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 AqyPW_ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..66124fe4003c5507836e4430f77fc8f98ababdb4 GIT binary patch literal 684 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 D>}6KT literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0e62d1f45a75ffb9d7e96e10bc5471a37d2001f5 GIT binary patch literal 2409 zcmaJ>%}*Og6rWjtur_N9)DVNx%4tZ5D}^l(6O!hOuYwgmDlbvmm8#KVPwWl5UUzm) zO65p7L@JRI^;AVwZ@pFY&_5yfUWkm;XhoDmPrXq=lqjdp%=!xwc@8sg-tWzuH}C!4 z{1u6W0Uc+aKQ1J@0r-b)>LXAS4t}G;Q;-8WXaEzc5HeXX1k3hWyVNc-sz%LjwcG4bd(2+7m*XAAM`lcoaalC_ z%zm|>%OT^08CT;F2w)!M!Vf{N6T@wv7o$3`DJ3KSLb^*rw|AzX5d}N*#44A*BGwuv zR4XmuHG=Qe_JTW@R#wpDWa<)1q3K(T^HZ7h)G}IHnVnm7Pu@;1&#v57(CAod^f;On z-2TSdi)cPGH+QpkF5Yr(ycMDM542z@v@kcFnY-;BO9tIodU|Oxl|q?YiqZ^&YbPd- zY2%H{-?P8DlAc7FWA+0}Q!_K)WYUX^>6v5DU`tG+M=_Si)wF^p#y&@@3sdP@sL*X* ze+jML%G^vV3k~dqq8IZ9p5AnDtp;AYvo$L5rB*X=kf7TiDYGz8VGgK5PS^r>U=BW% zRNof(9;$u?BzY`72h_Ej178!^DfEL(dcTgX~DYM zV6;iS@qu%_ZLnAytiKHwZ-WiC!A`cpK52s`+F+j^$10HJHy^D4)OdRZ+#RmlHPuC8CG7;Y6d#0j&106`8{n2p{$|VHbOSLGC{|KcfZI5%fxbCTO&F) z$6`KL|qoe~ZJ<#o?WES9h)}yW;Ah1R_JbL)WU(^*!nI z?$Bgay2OPmRp}}hu2!XMN1=wz<*M|>QR9Z68&zqF#=v|}R3#c6_03$qkOp2zr(Q^j z{oz2>WJT$)lcEHr^F(ub~z5Yh@#^5nU_trf8Df?P6%2V7%@jjYe>z4DsA~5bvyR zrX^+DZusK;!#jyL7H=`$U998W2(xzzn(p~vJ>_yAG=uB9UGUVr%c7KZ-m_}q^L}P| z`5k!AXNh_zUZH1bp05!`I+j6ul1}?R2;u9?0FJ)|XJ3J@UxCG!VB(F~0fje!POrNG X9HE+*;KE_>EbQCqKld8Ym3#gl&-p(# literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5dcfd0c2d3f730c8ab8661ab4987634375f90b25 GIT binary patch literal 4547 zcmbUlTTC0-^^WZ^V=#;X6Z1&GgpkC^f@>bxZ8izXVwy(-G}vq_Ypap*3}E6{?+n?1 zoG4mFDoELeR9lfqt1kU%iPDekSJRJ5>EBBIVM1EFBcev?_JcoE5_Ppd?Kv|Z$2g(e z?vc53?mg$8d+xdCoO>>Rs;;gi0G;Zs>EG~#{2epEaWT^ z9XE+sDLEfljWr|uT$Rtci5(xKvE!+DIVm0Be#YN)N*sie%(R1A%10va3twto%HFPLSbm=v_}-g1K{|R28WO1gOOs3OJborevUU=2(`@)SLLLugS@fIdY#FfsL{9Y(}CQ zCkXLWToD9{@+mH?Ibym82y&95!din^;weHDU1eUP)PXct%sBPpu*OnJmX!Mz%_d8U zNzEY$u|!ms1wppJ1n-TnKk-kelahZbIzi)7!XK36%St-q52YuS52IA_2Bj-fBArP} zDaAXOo~5$nA5M$238^cbPA6o4Jef&INbQQHKa`_${_ZPM>WV)RpYUhql<9P;w>!|| zm*a}mm5IhKN2es&pNVJu0W_ghijv}&XX0{3cgXI{9IXT8=5;?dPP^MQ%poAi z--YI@8)Sp4UaU~L#;08KM$^&X4zD*IU$EV(+2}mE-Z`*fd&=$K@b<2I`w`uj=bX1I z7b`z@Zo_2qX0Lf4DBt8YaH2)eKuHG76vEu>vXpgVla zVFo>+3_`@v*rMyHIq{UhkAze-DcxsiBe2UT+-sH^4i?i|P7OfgNpqKUW< zbj&h31qnClMxu-93i3KoZREr$}%IZ{p|L_f)kyV#)Xb$-(iXb;Ts?@kBmcV4Gn z4q|pM(dZj|8Kk^nM^NrmjLf%p%3k;x_o8$7?_)gZDIo3 z{5OEFiDKnJF;X>$l$uRS6lzGVG6hv3c;WJ}lt$qq_iP$WqP!R}t3nZkJ zRw+QuVRViA#5O5OA{0HSh2{tjg@*>i=SR+J{8U;Iq*Qu#YFZGZN>r=S#idh|aZyUe zB&{xVZgea>I35(>#*K-8GHW<$%sja8_c^d&gdL;zJ}tgE~_7&lix z^ym4Kn+r8N4ukR*+;2BXp0B@seewDl?_1-1&_X}Q`&8)i{cBu5v|oC>D~;=(Bip3e z@k3_u?82D^CEwEa*{OS{axHyoOW(urddu;Ji+R4~(`>FSptc2`@PWL`yl{2dQpuV_I zb^CJeZq?nLZ`}JCe~({fR?ppcuGXwIzWu22h1JrqXUk3+nhc(tyH|DhJ`DbD^z+fj zKl+P%-+u}Ao%^Qezfb>JEZmC%EY}77HqfqMgA_Ma?Q`H_}j-9kAJ#1*W_25{7`#qopY`Z)zz`?>Rh$u4iBh@2cEbFzAQBxR3*3P7w6YFqdeGAL1AR+ zMZqrt`8GwtO!1Wg0t#Rzm}__en}a3a|2oH_6w8Dxq*e3MFe^5j9`QzbiFLAOO-8Rm z<%uO5Muq+=6yQ6lISVfdy(i-?Aux=vz?t(+C1J5M4n-i#=b_O9q%0twds=dyw^Ywt zInTSQ=iPPB$pvQ~#{#M+kn@~YJ*U?_?=3ht_`0PND|^@Z?lrDkFU))vS_48ye6{!z z!dg=hAbAK${lNjaQxJYK8%-D#{gI#-(;5dE65dbBoMwfpt|WQkrZg5af~-046Qwjd zr{^?^p|7!%iF8ze0O}Mf7Q3v(W~z3+afUV zXzw+V0q1m!B4D<3G!ZiJZ9D7E3{zkfSx> CUb|8N literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4142511412dbeb1c0c32c0f2fd17e0243d838ea GIT binary patch literal 12321 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 nHzg8YPG`+DP5c)uhC literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..23586f364da6e2c7ac1529a964ead2737684caec GIT binary patch literal 3227 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 +# +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Ideal Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +BIG5_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +# Char to FreqOrder table +BIG5_TABLE_SIZE = 5376 +# fmt: off +BIG5_CHAR_TO_FREQ_ORDER = ( + 1,1801,1506, 255,1431, 198, 9, 82, 6,5008, 177, 202,3681,1256,2821, 110, # 16 +3814, 33,3274, 261, 76, 44,2114, 16,2946,2187,1176, 659,3971, 26,3451,2653, # 32 +1198,3972,3350,4202, 410,2215, 302, 590, 361,1964, 8, 204, 58,4510,5009,1932, # 48 + 63,5010,5011, 317,1614, 75, 222, 159,4203,2417,1480,5012,3555,3091, 224,2822, # 64 +3682, 3, 10,3973,1471, 29,2787,1135,2866,1940, 873, 130,3275,1123, 312,5013, # 80 +4511,2052, 507, 252, 682,5014, 142,1915, 124, 206,2947, 34,3556,3204, 64, 604, # 96 +5015,2501,1977,1978, 155,1991, 645, 641,1606,5016,3452, 337, 72, 406,5017, 80, # 112 + 630, 238,3205,1509, 263, 939,1092,2654, 756,1440,1094,3453, 449, 69,2987, 591, # 128 + 179,2096, 471, 115,2035,1844, 60, 50,2988, 134, 806,1869, 734,2036,3454, 180, # 144 + 995,1607, 156, 537,2907, 688,5018, 319,1305, 779,2145, 514,2379, 298,4512, 359, # 160 +2502, 90,2716,1338, 663, 11, 906,1099,2553, 20,2441, 182, 532,1716,5019, 732, # 176 +1376,4204,1311,1420,3206, 25,2317,1056, 113, 399, 382,1950, 242,3455,2474, 529, # 192 +3276, 475,1447,3683,5020, 117, 21, 656, 810,1297,2300,2334,3557,5021, 126,4205, # 208 + 706, 456, 150, 613,4513, 71,1118,2037,4206, 145,3092, 85, 835, 486,2115,1246, # 224 +1426, 428, 727,1285,1015, 800, 106, 623, 303,1281,5022,2128,2359, 347,3815, 221, # 240 +3558,3135,5023,1956,1153,4207, 83, 296,1199,3093, 192, 624, 93,5024, 822,1898, # 256 +2823,3136, 795,2065, 991,1554,1542,1592, 27, 43,2867, 859, 139,1456, 860,4514, # 272 + 437, 712,3974, 164,2397,3137, 695, 211,3037,2097, 195,3975,1608,3559,3560,3684, # 288 +3976, 234, 811,2989,2098,3977,2233,1441,3561,1615,2380, 668,2077,1638, 305, 228, # 304 +1664,4515, 467, 415,5025, 262,2099,1593, 239, 108, 300, 200,1033, 512,1247,2078, # 320 +5026,5027,2176,3207,3685,2682, 593, 845,1062,3277, 88,1723,2038,3978,1951, 212, # 336 + 266, 152, 149, 468,1899,4208,4516, 77, 187,5028,3038, 37, 5,2990,5029,3979, # 352 +5030,5031, 39,2524,4517,2908,3208,2079, 55, 148, 74,4518, 545, 483,1474,1029, # 368 +1665, 217,1870,1531,3138,1104,2655,4209, 24, 172,3562, 900,3980,3563,3564,4519, # 384 + 32,1408,2824,1312, 329, 487,2360,2251,2717, 784,2683, 4,3039,3351,1427,1789, # 400 + 188, 109, 499,5032,3686,1717,1790, 888,1217,3040,4520,5033,3565,5034,3352,1520, # 416 +3687,3981, 196,1034, 775,5035,5036, 929,1816, 249, 439, 38,5037,1063,5038, 794, # 432 +3982,1435,2301, 46, 178,3278,2066,5039,2381,5040, 214,1709,4521, 804, 35, 707, # 448 + 324,3688,1601,2554, 140, 459,4210,5041,5042,1365, 839, 272, 978,2262,2580,3456, # 464 +2129,1363,3689,1423, 697, 100,3094, 48, 70,1231, 495,3139,2196,5043,1294,5044, # 480 +2080, 462, 586,1042,3279, 853, 256, 988, 185,2382,3457,1698, 434,1084,5045,3458, # 496 + 314,2625,2788,4522,2335,2336, 569,2285, 637,1817,2525, 757,1162,1879,1616,3459, # 512 + 287,1577,2116, 768,4523,1671,2868,3566,2526,1321,3816, 909,2418,5046,4211, 933, # 528 +3817,4212,2053,2361,1222,4524, 765,2419,1322, 786,4525,5047,1920,1462,1677,2909, # 544 +1699,5048,4526,1424,2442,3140,3690,2600,3353,1775,1941,3460,3983,4213, 309,1369, # 560 +1130,2825, 364,2234,1653,1299,3984,3567,3985,3986,2656, 525,1085,3041, 902,2001, # 576 +1475, 964,4527, 421,1845,1415,1057,2286, 940,1364,3141, 376,4528,4529,1381, 7, # 592 +2527, 983,2383, 336,1710,2684,1846, 321,3461, 559,1131,3042,2752,1809,1132,1313, # 608 + 265,1481,1858,5049, 352,1203,2826,3280, 167,1089, 420,2827, 776, 792,1724,3568, # 624 +4214,2443,3281,5050,4215,5051, 446, 229, 333,2753, 901,3818,1200,1557,4530,2657, # 640 +1921, 395,2754,2685,3819,4216,1836, 125, 916,3209,2626,4531,5052,5053,3820,5054, # 656 +5055,5056,4532,3142,3691,1133,2555,1757,3462,1510,2318,1409,3569,5057,2146, 438, # 672 +2601,2910,2384,3354,1068, 958,3043, 461, 311,2869,2686,4217,1916,3210,4218,1979, # 688 + 383, 750,2755,2627,4219, 274, 539, 385,1278,1442,5058,1154,1965, 384, 561, 210, # 704 + 98,1295,2556,3570,5059,1711,2420,1482,3463,3987,2911,1257, 129,5060,3821, 642, # 720 + 523,2789,2790,2658,5061, 141,2235,1333, 68, 176, 441, 876, 907,4220, 603,2602, # 736 + 710, 171,3464, 404, 549, 18,3143,2398,1410,3692,1666,5062,3571,4533,2912,4534, # 752 +5063,2991, 368,5064, 146, 366, 99, 871,3693,1543, 748, 807,1586,1185, 22,2263, # 768 + 379,3822,3211,5065,3212, 505,1942,2628,1992,1382,2319,5066, 380,2362, 218, 702, # 784 +1818,1248,3465,3044,3572,3355,3282,5067,2992,3694, 930,3283,3823,5068, 59,5069, # 800 + 585, 601,4221, 497,3466,1112,1314,4535,1802,5070,1223,1472,2177,5071, 749,1837, # 816 + 690,1900,3824,1773,3988,1476, 429,1043,1791,2236,2117, 917,4222, 447,1086,1629, # 832 +5072, 556,5073,5074,2021,1654, 844,1090, 105, 550, 966,1758,2828,1008,1783, 686, # 848 +1095,5075,2287, 793,1602,5076,3573,2603,4536,4223,2948,2302,4537,3825, 980,2503, # 864 + 544, 353, 527,4538, 908,2687,2913,5077, 381,2629,1943,1348,5078,1341,1252, 560, # 880 +3095,5079,3467,2870,5080,2054, 973, 886,2081, 143,4539,5081,5082, 157,3989, 496, # 896 +4224, 57, 840, 540,2039,4540,4541,3468,2118,1445, 970,2264,1748,1966,2082,4225, # 912 +3144,1234,1776,3284,2829,3695, 773,1206,2130,1066,2040,1326,3990,1738,1725,4226, # 928 + 279,3145, 51,1544,2604, 423,1578,2131,2067, 173,4542,1880,5083,5084,1583, 264, # 944 + 610,3696,4543,2444, 280, 154,5085,5086,5087,1739, 338,1282,3096, 693,2871,1411, # 960 +1074,3826,2445,5088,4544,5089,5090,1240, 952,2399,5091,2914,1538,2688, 685,1483, # 976 +4227,2475,1436, 953,4228,2055,4545, 671,2400, 79,4229,2446,3285, 608, 567,2689, # 992 +3469,4230,4231,1691, 393,1261,1792,2401,5092,4546,5093,5094,5095,5096,1383,1672, # 1008 +3827,3213,1464, 522,1119, 661,1150, 216, 675,4547,3991,1432,3574, 609,4548,2690, # 1024 +2402,5097,5098,5099,4232,3045, 0,5100,2476, 315, 231,2447, 301,3356,4549,2385, # 1040 +5101, 233,4233,3697,1819,4550,4551,5102, 96,1777,1315,2083,5103, 257,5104,1810, # 1056 +3698,2718,1139,1820,4234,2022,1124,2164,2791,1778,2659,5105,3097, 363,1655,3214, # 1072 +5106,2993,5107,5108,5109,3992,1567,3993, 718, 103,3215, 849,1443, 341,3357,2949, # 1088 +1484,5110,1712, 127, 67, 339,4235,2403, 679,1412, 821,5111,5112, 834, 738, 351, # 1104 +2994,2147, 846, 235,1497,1881, 418,1993,3828,2719, 186,1100,2148,2756,3575,1545, # 1120 +1355,2950,2872,1377, 583,3994,4236,2581,2995,5113,1298,3699,1078,2557,3700,2363, # 1136 + 78,3829,3830, 267,1289,2100,2002,1594,4237, 348, 369,1274,2197,2178,1838,4552, # 1152 +1821,2830,3701,2757,2288,2003,4553,2951,2758, 144,3358, 882,4554,3995,2759,3470, # 1168 +4555,2915,5114,4238,1726, 320,5115,3996,3046, 788,2996,5116,2831,1774,1327,2873, # 1184 +3997,2832,5117,1306,4556,2004,1700,3831,3576,2364,2660, 787,2023, 506, 824,3702, # 1200 + 534, 323,4557,1044,3359,2024,1901, 946,3471,5118,1779,1500,1678,5119,1882,4558, # 1216 + 165, 243,4559,3703,2528, 123, 683,4239, 764,4560, 36,3998,1793, 589,2916, 816, # 1232 + 626,1667,3047,2237,1639,1555,1622,3832,3999,5120,4000,2874,1370,1228,1933, 891, # 1248 +2084,2917, 304,4240,5121, 292,2997,2720,3577, 691,2101,4241,1115,4561, 118, 662, # 1264 +5122, 611,1156, 854,2386,1316,2875, 2, 386, 515,2918,5123,5124,3286, 868,2238, # 1280 +1486, 855,2661, 785,2216,3048,5125,1040,3216,3578,5126,3146, 448,5127,1525,5128, # 1296 +2165,4562,5129,3833,5130,4242,2833,3579,3147, 503, 818,4001,3148,1568, 814, 676, # 1312 +1444, 306,1749,5131,3834,1416,1030, 197,1428, 805,2834,1501,4563,5132,5133,5134, # 1328 +1994,5135,4564,5136,5137,2198, 13,2792,3704,2998,3149,1229,1917,5138,3835,2132, # 1344 +5139,4243,4565,2404,3580,5140,2217,1511,1727,1120,5141,5142, 646,3836,2448, 307, # 1360 +5143,5144,1595,3217,5145,5146,5147,3705,1113,1356,4002,1465,2529,2530,5148, 519, # 1376 +5149, 128,2133, 92,2289,1980,5150,4003,1512, 342,3150,2199,5151,2793,2218,1981, # 1392 +3360,4244, 290,1656,1317, 789, 827,2365,5152,3837,4566, 562, 581,4004,5153, 401, # 1408 +4567,2252, 94,4568,5154,1399,2794,5155,1463,2025,4569,3218,1944,5156, 828,1105, # 1424 +4245,1262,1394,5157,4246, 605,4570,5158,1784,2876,5159,2835, 819,2102, 578,2200, # 1440 +2952,5160,1502, 436,3287,4247,3288,2836,4005,2919,3472,3473,5161,2721,2320,5162, # 1456 +5163,2337,2068, 23,4571, 193, 826,3838,2103, 699,1630,4248,3098, 390,1794,1064, # 1472 +3581,5164,1579,3099,3100,1400,5165,4249,1839,1640,2877,5166,4572,4573, 137,4250, # 1488 + 598,3101,1967, 780, 104, 974,2953,5167, 278, 899, 253, 402, 572, 504, 493,1339, # 1504 +5168,4006,1275,4574,2582,2558,5169,3706,3049,3102,2253, 565,1334,2722, 863, 41, # 1520 +5170,5171,4575,5172,1657,2338, 19, 463,2760,4251, 606,5173,2999,3289,1087,2085, # 1536 +1323,2662,3000,5174,1631,1623,1750,4252,2691,5175,2878, 791,2723,2663,2339, 232, # 1552 +2421,5176,3001,1498,5177,2664,2630, 755,1366,3707,3290,3151,2026,1609, 119,1918, # 1568 +3474, 862,1026,4253,5178,4007,3839,4576,4008,4577,2265,1952,2477,5179,1125, 817, # 1584 +4254,4255,4009,1513,1766,2041,1487,4256,3050,3291,2837,3840,3152,5180,5181,1507, # 1600 +5182,2692, 733, 40,1632,1106,2879, 345,4257, 841,2531, 230,4578,3002,1847,3292, # 1616 +3475,5183,1263, 986,3476,5184, 735, 879, 254,1137, 857, 622,1300,1180,1388,1562, # 1632 +4010,4011,2954, 967,2761,2665,1349, 592,2134,1692,3361,3003,1995,4258,1679,4012, # 1648 +1902,2188,5185, 739,3708,2724,1296,1290,5186,4259,2201,2202,1922,1563,2605,2559, # 1664 +1871,2762,3004,5187, 435,5188, 343,1108, 596, 17,1751,4579,2239,3477,3709,5189, # 1680 +4580, 294,3582,2955,1693, 477, 979, 281,2042,3583, 643,2043,3710,2631,2795,2266, # 1696 +1031,2340,2135,2303,3584,4581, 367,1249,2560,5190,3585,5191,4582,1283,3362,2005, # 1712 + 240,1762,3363,4583,4584, 836,1069,3153, 474,5192,2149,2532, 268,3586,5193,3219, # 1728 +1521,1284,5194,1658,1546,4260,5195,3587,3588,5196,4261,3364,2693,1685,4262, 961, # 1744 +1673,2632, 190,2006,2203,3841,4585,4586,5197, 570,2504,3711,1490,5198,4587,2633, # 1760 +3293,1957,4588, 584,1514, 396,1045,1945,5199,4589,1968,2449,5200,5201,4590,4013, # 1776 + 619,5202,3154,3294, 215,2007,2796,2561,3220,4591,3221,4592, 763,4263,3842,4593, # 1792 +5203,5204,1958,1767,2956,3365,3712,1174, 452,1477,4594,3366,3155,5205,2838,1253, # 1808 +2387,2189,1091,2290,4264, 492,5206, 638,1169,1825,2136,1752,4014, 648, 926,1021, # 1824 +1324,4595, 520,4596, 997, 847,1007, 892,4597,3843,2267,1872,3713,2405,1785,4598, # 1840 +1953,2957,3103,3222,1728,4265,2044,3714,4599,2008,1701,3156,1551, 30,2268,4266, # 1856 +5207,2027,4600,3589,5208, 501,5209,4267, 594,3478,2166,1822,3590,3479,3591,3223, # 1872 + 829,2839,4268,5210,1680,3157,1225,4269,5211,3295,4601,4270,3158,2341,5212,4602, # 1888 +4271,5213,4015,4016,5214,1848,2388,2606,3367,5215,4603, 374,4017, 652,4272,4273, # 1904 + 375,1140, 798,5216,5217,5218,2366,4604,2269, 546,1659, 138,3051,2450,4605,5219, # 1920 +2254, 612,1849, 910, 796,3844,1740,1371, 825,3845,3846,5220,2920,2562,5221, 692, # 1936 + 444,3052,2634, 801,4606,4274,5222,1491, 244,1053,3053,4275,4276, 340,5223,4018, # 1952 +1041,3005, 293,1168, 87,1357,5224,1539, 959,5225,2240, 721, 694,4277,3847, 219, # 1968 +1478, 644,1417,3368,2666,1413,1401,1335,1389,4019,5226,5227,3006,2367,3159,1826, # 1984 + 730,1515, 184,2840, 66,4607,5228,1660,2958, 246,3369, 378,1457, 226,3480, 975, # 2000 +4020,2959,1264,3592, 674, 696,5229, 163,5230,1141,2422,2167, 713,3593,3370,4608, # 2016 +4021,5231,5232,1186, 15,5233,1079,1070,5234,1522,3224,3594, 276,1050,2725, 758, # 2032 +1126, 653,2960,3296,5235,2342, 889,3595,4022,3104,3007, 903,1250,4609,4023,3481, # 2048 +3596,1342,1681,1718, 766,3297, 286, 89,2961,3715,5236,1713,5237,2607,3371,3008, # 2064 +5238,2962,2219,3225,2880,5239,4610,2505,2533, 181, 387,1075,4024, 731,2190,3372, # 2080 +5240,3298, 310, 313,3482,2304, 770,4278, 54,3054, 189,4611,3105,3848,4025,5241, # 2096 +1230,1617,1850, 355,3597,4279,4612,3373, 111,4280,3716,1350,3160,3483,3055,4281, # 2112 +2150,3299,3598,5242,2797,4026,4027,3009, 722,2009,5243,1071, 247,1207,2343,2478, # 2128 +1378,4613,2010, 864,1437,1214,4614, 373,3849,1142,2220, 667,4615, 442,2763,2563, # 2144 +3850,4028,1969,4282,3300,1840, 837, 170,1107, 934,1336,1883,5244,5245,2119,4283, # 2160 +2841, 743,1569,5246,4616,4284, 582,2389,1418,3484,5247,1803,5248, 357,1395,1729, # 2176 +3717,3301,2423,1564,2241,5249,3106,3851,1633,4617,1114,2086,4285,1532,5250, 482, # 2192 +2451,4618,5251,5252,1492, 833,1466,5253,2726,3599,1641,2842,5254,1526,1272,3718, # 2208 +4286,1686,1795, 416,2564,1903,1954,1804,5255,3852,2798,3853,1159,2321,5256,2881, # 2224 +4619,1610,1584,3056,2424,2764, 443,3302,1163,3161,5257,5258,4029,5259,4287,2506, # 2240 +3057,4620,4030,3162,2104,1647,3600,2011,1873,4288,5260,4289, 431,3485,5261, 250, # 2256 + 97, 81,4290,5262,1648,1851,1558, 160, 848,5263, 866, 740,1694,5264,2204,2843, # 2272 +3226,4291,4621,3719,1687, 950,2479, 426, 469,3227,3720,3721,4031,5265,5266,1188, # 2288 + 424,1996, 861,3601,4292,3854,2205,2694, 168,1235,3602,4293,5267,2087,1674,4622, # 2304 +3374,3303, 220,2565,1009,5268,3855, 670,3010, 332,1208, 717,5269,5270,3603,2452, # 2320 +4032,3375,5271, 513,5272,1209,2882,3376,3163,4623,1080,5273,5274,5275,5276,2534, # 2336 +3722,3604, 815,1587,4033,4034,5277,3605,3486,3856,1254,4624,1328,3058,1390,4035, # 2352 +1741,4036,3857,4037,5278, 236,3858,2453,3304,5279,5280,3723,3859,1273,3860,4625, # 2368 +5281, 308,5282,4626, 245,4627,1852,2480,1307,2583, 430, 715,2137,2454,5283, 270, # 2384 + 199,2883,4038,5284,3606,2727,1753, 761,1754, 725,1661,1841,4628,3487,3724,5285, # 2400 +5286, 587, 14,3305, 227,2608, 326, 480,2270, 943,2765,3607, 291, 650,1884,5287, # 2416 +1702,1226, 102,1547, 62,3488, 904,4629,3489,1164,4294,5288,5289,1224,1548,2766, # 2432 + 391, 498,1493,5290,1386,1419,5291,2056,1177,4630, 813, 880,1081,2368, 566,1145, # 2448 +4631,2291,1001,1035,2566,2609,2242, 394,1286,5292,5293,2069,5294, 86,1494,1730, # 2464 +4039, 491,1588, 745, 897,2963, 843,3377,4040,2767,2884,3306,1768, 998,2221,2070, # 2480 + 397,1827,1195,1970,3725,3011,3378, 284,5295,3861,2507,2138,2120,1904,5296,4041, # 2496 +2151,4042,4295,1036,3490,1905, 114,2567,4296, 209,1527,5297,5298,2964,2844,2635, # 2512 +2390,2728,3164, 812,2568,5299,3307,5300,1559, 737,1885,3726,1210, 885, 28,2695, # 2528 +3608,3862,5301,4297,1004,1780,4632,5302, 346,1982,2222,2696,4633,3863,1742, 797, # 2544 +1642,4043,1934,1072,1384,2152, 896,4044,3308,3727,3228,2885,3609,5303,2569,1959, # 2560 +4634,2455,1786,5304,5305,5306,4045,4298,1005,1308,3728,4299,2729,4635,4636,1528, # 2576 +2610, 161,1178,4300,1983, 987,4637,1101,4301, 631,4046,1157,3229,2425,1343,1241, # 2592 +1016,2243,2570, 372, 877,2344,2508,1160, 555,1935, 911,4047,5307, 466,1170, 169, # 2608 +1051,2921,2697,3729,2481,3012,1182,2012,2571,1251,2636,5308, 992,2345,3491,1540, # 2624 +2730,1201,2071,2406,1997,2482,5309,4638, 528,1923,2191,1503,1874,1570,2369,3379, # 2640 +3309,5310, 557,1073,5311,1828,3492,2088,2271,3165,3059,3107, 767,3108,2799,4639, # 2656 +1006,4302,4640,2346,1267,2179,3730,3230, 778,4048,3231,2731,1597,2667,5312,4641, # 2672 +5313,3493,5314,5315,5316,3310,2698,1433,3311, 131, 95,1504,4049, 723,4303,3166, # 2688 +1842,3610,2768,2192,4050,2028,2105,3731,5317,3013,4051,1218,5318,3380,3232,4052, # 2704 +4304,2584, 248,1634,3864, 912,5319,2845,3732,3060,3865, 654, 53,5320,3014,5321, # 2720 +1688,4642, 777,3494,1032,4053,1425,5322, 191, 820,2121,2846, 971,4643, 931,3233, # 2736 + 135, 664, 783,3866,1998, 772,2922,1936,4054,3867,4644,2923,3234, 282,2732, 640, # 2752 +1372,3495,1127, 922, 325,3381,5323,5324, 711,2045,5325,5326,4055,2223,2800,1937, # 2768 +4056,3382,2224,2255,3868,2305,5327,4645,3869,1258,3312,4057,3235,2139,2965,4058, # 2784 +4059,5328,2225, 258,3236,4646, 101,1227,5329,3313,1755,5330,1391,3314,5331,2924, # 2800 +2057, 893,5332,5333,5334,1402,4305,2347,5335,5336,3237,3611,5337,5338, 878,1325, # 2816 +1781,2801,4647, 259,1385,2585, 744,1183,2272,4648,5339,4060,2509,5340, 684,1024, # 2832 +4306,5341, 472,3612,3496,1165,3315,4061,4062, 322,2153, 881, 455,1695,1152,1340, # 2848 + 660, 554,2154,4649,1058,4650,4307, 830,1065,3383,4063,4651,1924,5342,1703,1919, # 2864 +5343, 932,2273, 122,5344,4652, 947, 677,5345,3870,2637, 297,1906,1925,2274,4653, # 2880 +2322,3316,5346,5347,4308,5348,4309, 84,4310, 112, 989,5349, 547,1059,4064, 701, # 2896 +3613,1019,5350,4311,5351,3497, 942, 639, 457,2306,2456, 993,2966, 407, 851, 494, # 2912 +4654,3384, 927,5352,1237,5353,2426,3385, 573,4312, 680, 921,2925,1279,1875, 285, # 2928 + 790,1448,1984, 719,2168,5354,5355,4655,4065,4066,1649,5356,1541, 563,5357,1077, # 2944 +5358,3386,3061,3498, 511,3015,4067,4068,3733,4069,1268,2572,3387,3238,4656,4657, # 2960 +5359, 535,1048,1276,1189,2926,2029,3167,1438,1373,2847,2967,1134,2013,5360,4313, # 2976 +1238,2586,3109,1259,5361, 700,5362,2968,3168,3734,4314,5363,4315,1146,1876,1907, # 2992 +4658,2611,4070, 781,2427, 132,1589, 203, 147, 273,2802,2407, 898,1787,2155,4071, # 3008 +4072,5364,3871,2803,5365,5366,4659,4660,5367,3239,5368,1635,3872, 965,5369,1805, # 3024 +2699,1516,3614,1121,1082,1329,3317,4073,1449,3873, 65,1128,2848,2927,2769,1590, # 3040 +3874,5370,5371, 12,2668, 45, 976,2587,3169,4661, 517,2535,1013,1037,3240,5372, # 3056 +3875,2849,5373,3876,5374,3499,5375,2612, 614,1999,2323,3877,3110,2733,2638,5376, # 3072 +2588,4316, 599,1269,5377,1811,3735,5378,2700,3111, 759,1060, 489,1806,3388,3318, # 3088 +1358,5379,5380,2391,1387,1215,2639,2256, 490,5381,5382,4317,1759,2392,2348,5383, # 3104 +4662,3878,1908,4074,2640,1807,3241,4663,3500,3319,2770,2349, 874,5384,5385,3501, # 3120 +3736,1859, 91,2928,3737,3062,3879,4664,5386,3170,4075,2669,5387,3502,1202,1403, # 3136 +3880,2969,2536,1517,2510,4665,3503,2511,5388,4666,5389,2701,1886,1495,1731,4076, # 3152 +2370,4667,5390,2030,5391,5392,4077,2702,1216, 237,2589,4318,2324,4078,3881,4668, # 3168 +4669,2703,3615,3504, 445,4670,5393,5394,5395,5396,2771, 61,4079,3738,1823,4080, # 3184 +5397, 687,2046, 935, 925, 405,2670, 703,1096,1860,2734,4671,4081,1877,1367,2704, # 3200 +3389, 918,2106,1782,2483, 334,3320,1611,1093,4672, 564,3171,3505,3739,3390, 945, # 3216 +2641,2058,4673,5398,1926, 872,4319,5399,3506,2705,3112, 349,4320,3740,4082,4674, # 3232 +3882,4321,3741,2156,4083,4675,4676,4322,4677,2408,2047, 782,4084, 400, 251,4323, # 3248 +1624,5400,5401, 277,3742, 299,1265, 476,1191,3883,2122,4324,4325,1109, 205,5402, # 3264 +2590,1000,2157,3616,1861,5403,5404,5405,4678,5406,4679,2573, 107,2484,2158,4085, # 3280 +3507,3172,5407,1533, 541,1301, 158, 753,4326,2886,3617,5408,1696, 370,1088,4327, # 3296 +4680,3618, 579, 327, 440, 162,2244, 269,1938,1374,3508, 968,3063, 56,1396,3113, # 3312 +2107,3321,3391,5409,1927,2159,4681,3016,5410,3619,5411,5412,3743,4682,2485,5413, # 3328 +2804,5414,1650,4683,5415,2613,5416,5417,4086,2671,3392,1149,3393,4087,3884,4088, # 3344 +5418,1076, 49,5419, 951,3242,3322,3323, 450,2850, 920,5420,1812,2805,2371,4328, # 3360 +1909,1138,2372,3885,3509,5421,3243,4684,1910,1147,1518,2428,4685,3886,5422,4686, # 3376 +2393,2614, 260,1796,3244,5423,5424,3887,3324, 708,5425,3620,1704,5426,3621,1351, # 3392 +1618,3394,3017,1887, 944,4329,3395,4330,3064,3396,4331,5427,3744, 422, 413,1714, # 3408 +3325, 500,2059,2350,4332,2486,5428,1344,1911, 954,5429,1668,5430,5431,4089,2409, # 3424 +4333,3622,3888,4334,5432,2307,1318,2512,3114, 133,3115,2887,4687, 629, 31,2851, # 3440 +2706,3889,4688, 850, 949,4689,4090,2970,1732,2089,4335,1496,1853,5433,4091, 620, # 3456 +3245, 981,1242,3745,3397,1619,3746,1643,3326,2140,2457,1971,1719,3510,2169,5434, # 3472 +3246,5435,5436,3398,1829,5437,1277,4690,1565,2048,5438,1636,3623,3116,5439, 869, # 3488 +2852, 655,3890,3891,3117,4092,3018,3892,1310,3624,4691,5440,5441,5442,1733, 558, # 3504 +4692,3747, 335,1549,3065,1756,4336,3748,1946,3511,1830,1291,1192, 470,2735,2108, # 3520 +2806, 913,1054,4093,5443,1027,5444,3066,4094,4693, 982,2672,3399,3173,3512,3247, # 3536 +3248,1947,2807,5445, 571,4694,5446,1831,5447,3625,2591,1523,2429,5448,2090, 984, # 3552 +4695,3749,1960,5449,3750, 852, 923,2808,3513,3751, 969,1519, 999,2049,2325,1705, # 3568 +5450,3118, 615,1662, 151, 597,4095,2410,2326,1049, 275,4696,3752,4337, 568,3753, # 3584 +3626,2487,4338,3754,5451,2430,2275, 409,3249,5452,1566,2888,3514,1002, 769,2853, # 3600 + 194,2091,3174,3755,2226,3327,4339, 628,1505,5453,5454,1763,2180,3019,4096, 521, # 3616 +1161,2592,1788,2206,2411,4697,4097,1625,4340,4341, 412, 42,3119, 464,5455,2642, # 3632 +4698,3400,1760,1571,2889,3515,2537,1219,2207,3893,2643,2141,2373,4699,4700,3328, # 3648 +1651,3401,3627,5456,5457,3628,2488,3516,5458,3756,5459,5460,2276,2092, 460,5461, # 3664 +4701,5462,3020, 962, 588,3629, 289,3250,2644,1116, 52,5463,3067,1797,5464,5465, # 3680 +5466,1467,5467,1598,1143,3757,4342,1985,1734,1067,4702,1280,3402, 465,4703,1572, # 3696 + 510,5468,1928,2245,1813,1644,3630,5469,4704,3758,5470,5471,2673,1573,1534,5472, # 3712 +5473, 536,1808,1761,3517,3894,3175,2645,5474,5475,5476,4705,3518,2929,1912,2809, # 3728 +5477,3329,1122, 377,3251,5478, 360,5479,5480,4343,1529, 551,5481,2060,3759,1769, # 3744 +2431,5482,2930,4344,3330,3120,2327,2109,2031,4706,1404, 136,1468,1479, 672,1171, # 3760 +3252,2308, 271,3176,5483,2772,5484,2050, 678,2736, 865,1948,4707,5485,2014,4098, # 3776 +2971,5486,2737,2227,1397,3068,3760,4708,4709,1735,2931,3403,3631,5487,3895, 509, # 3792 +2854,2458,2890,3896,5488,5489,3177,3178,4710,4345,2538,4711,2309,1166,1010, 552, # 3808 + 681,1888,5490,5491,2972,2973,4099,1287,1596,1862,3179, 358, 453, 736, 175, 478, # 3824 +1117, 905,1167,1097,5492,1854,1530,5493,1706,5494,2181,3519,2292,3761,3520,3632, # 3840 +4346,2093,4347,5495,3404,1193,2489,4348,1458,2193,2208,1863,1889,1421,3331,2932, # 3856 +3069,2182,3521, 595,2123,5496,4100,5497,5498,4349,1707,2646, 223,3762,1359, 751, # 3872 +3121, 183,3522,5499,2810,3021, 419,2374, 633, 704,3897,2394, 241,5500,5501,5502, # 3888 + 838,3022,3763,2277,2773,2459,3898,1939,2051,4101,1309,3122,2246,1181,5503,1136, # 3904 +2209,3899,2375,1446,4350,2310,4712,5504,5505,4351,1055,2615, 484,3764,5506,4102, # 3920 + 625,4352,2278,3405,1499,4353,4103,5507,4104,4354,3253,2279,2280,3523,5508,5509, # 3936 +2774, 808,2616,3765,3406,4105,4355,3123,2539, 526,3407,3900,4356, 955,5510,1620, # 3952 +4357,2647,2432,5511,1429,3766,1669,1832, 994, 928,5512,3633,1260,5513,5514,5515, # 3968 +1949,2293, 741,2933,1626,4358,2738,2460, 867,1184, 362,3408,1392,5516,5517,4106, # 3984 +4359,1770,1736,3254,2934,4713,4714,1929,2707,1459,1158,5518,3070,3409,2891,1292, # 4000 +1930,2513,2855,3767,1986,1187,2072,2015,2617,4360,5519,2574,2514,2170,3768,2490, # 4016 +3332,5520,3769,4715,5521,5522, 666,1003,3023,1022,3634,4361,5523,4716,1814,2257, # 4032 + 574,3901,1603, 295,1535, 705,3902,4362, 283, 858, 417,5524,5525,3255,4717,4718, # 4048 +3071,1220,1890,1046,2281,2461,4107,1393,1599, 689,2575, 388,4363,5526,2491, 802, # 4064 +5527,2811,3903,2061,1405,2258,5528,4719,3904,2110,1052,1345,3256,1585,5529, 809, # 4080 +5530,5531,5532, 575,2739,3524, 956,1552,1469,1144,2328,5533,2329,1560,2462,3635, # 4096 +3257,4108, 616,2210,4364,3180,2183,2294,5534,1833,5535,3525,4720,5536,1319,3770, # 4112 +3771,1211,3636,1023,3258,1293,2812,5537,5538,5539,3905, 607,2311,3906, 762,2892, # 4128 +1439,4365,1360,4721,1485,3072,5540,4722,1038,4366,1450,2062,2648,4367,1379,4723, # 4144 +2593,5541,5542,4368,1352,1414,2330,2935,1172,5543,5544,3907,3908,4724,1798,1451, # 4160 +5545,5546,5547,5548,2936,4109,4110,2492,2351, 411,4111,4112,3637,3333,3124,4725, # 4176 +1561,2674,1452,4113,1375,5549,5550, 47,2974, 316,5551,1406,1591,2937,3181,5552, # 4192 +1025,2142,3125,3182, 354,2740, 884,2228,4369,2412, 508,3772, 726,3638, 996,2433, # 4208 +3639, 729,5553, 392,2194,1453,4114,4726,3773,5554,5555,2463,3640,2618,1675,2813, # 4224 + 919,2352,2975,2353,1270,4727,4115, 73,5556,5557, 647,5558,3259,2856,2259,1550, # 4240 +1346,3024,5559,1332, 883,3526,5560,5561,5562,5563,3334,2775,5564,1212, 831,1347, # 4256 +4370,4728,2331,3909,1864,3073, 720,3910,4729,4730,3911,5565,4371,5566,5567,4731, # 4272 +5568,5569,1799,4732,3774,2619,4733,3641,1645,2376,4734,5570,2938, 669,2211,2675, # 4288 +2434,5571,2893,5572,5573,1028,3260,5574,4372,2413,5575,2260,1353,5576,5577,4735, # 4304 +3183, 518,5578,4116,5579,4373,1961,5580,2143,4374,5581,5582,3025,2354,2355,3912, # 4320 + 516,1834,1454,4117,2708,4375,4736,2229,2620,1972,1129,3642,5583,2776,5584,2976, # 4336 +1422, 577,1470,3026,1524,3410,5585,5586, 432,4376,3074,3527,5587,2594,1455,2515, # 4352 +2230,1973,1175,5588,1020,2741,4118,3528,4737,5589,2742,5590,1743,1361,3075,3529, # 4368 +2649,4119,4377,4738,2295, 895, 924,4378,2171, 331,2247,3076, 166,1627,3077,1098, # 4384 +5591,1232,2894,2231,3411,4739, 657, 403,1196,2377, 542,3775,3412,1600,4379,3530, # 4400 +5592,4740,2777,3261, 576, 530,1362,4741,4742,2540,2676,3776,4120,5593, 842,3913, # 4416 +5594,2814,2032,1014,4121, 213,2709,3413, 665, 621,4380,5595,3777,2939,2435,5596, # 4432 +2436,3335,3643,3414,4743,4381,2541,4382,4744,3644,1682,4383,3531,1380,5597, 724, # 4448 +2282, 600,1670,5598,1337,1233,4745,3126,2248,5599,1621,4746,5600, 651,4384,5601, # 4464 +1612,4385,2621,5602,2857,5603,2743,2312,3078,5604, 716,2464,3079, 174,1255,2710, # 4480 +4122,3645, 548,1320,1398, 728,4123,1574,5605,1891,1197,3080,4124,5606,3081,3082, # 4496 +3778,3646,3779, 747,5607, 635,4386,4747,5608,5609,5610,4387,5611,5612,4748,5613, # 4512 +3415,4749,2437, 451,5614,3780,2542,2073,4388,2744,4389,4125,5615,1764,4750,5616, # 4528 +4390, 350,4751,2283,2395,2493,5617,4391,4126,2249,1434,4127, 488,4752, 458,4392, # 4544 +4128,3781, 771,1330,2396,3914,2576,3184,2160,2414,1553,2677,3185,4393,5618,2494, # 4560 +2895,2622,1720,2711,4394,3416,4753,5619,2543,4395,5620,3262,4396,2778,5621,2016, # 4576 +2745,5622,1155,1017,3782,3915,5623,3336,2313, 201,1865,4397,1430,5624,4129,5625, # 4592 +5626,5627,5628,5629,4398,1604,5630, 414,1866, 371,2595,4754,4755,3532,2017,3127, # 4608 +4756,1708, 960,4399, 887, 389,2172,1536,1663,1721,5631,2232,4130,2356,2940,1580, # 4624 +5632,5633,1744,4757,2544,4758,4759,5634,4760,5635,2074,5636,4761,3647,3417,2896, # 4640 +4400,5637,4401,2650,3418,2815, 673,2712,2465, 709,3533,4131,3648,4402,5638,1148, # 4656 + 502, 634,5639,5640,1204,4762,3649,1575,4763,2623,3783,5641,3784,3128, 948,3263, # 4672 + 121,1745,3916,1110,5642,4403,3083,2516,3027,4132,3785,1151,1771,3917,1488,4133, # 4688 +1987,5643,2438,3534,5644,5645,2094,5646,4404,3918,1213,1407,2816, 531,2746,2545, # 4704 +3264,1011,1537,4764,2779,4405,3129,1061,5647,3786,3787,1867,2897,5648,2018, 120, # 4720 +4406,4407,2063,3650,3265,2314,3919,2678,3419,1955,4765,4134,5649,3535,1047,2713, # 4736 +1266,5650,1368,4766,2858, 649,3420,3920,2546,2747,1102,2859,2679,5651,5652,2000, # 4752 +5653,1111,3651,2977,5654,2495,3921,3652,2817,1855,3421,3788,5655,5656,3422,2415, # 4768 +2898,3337,3266,3653,5657,2577,5658,3654,2818,4135,1460, 856,5659,3655,5660,2899, # 4784 +2978,5661,2900,3922,5662,4408, 632,2517, 875,3923,1697,3924,2296,5663,5664,4767, # 4800 +3028,1239, 580,4768,4409,5665, 914, 936,2075,1190,4136,1039,2124,5666,5667,5668, # 4816 +5669,3423,1473,5670,1354,4410,3925,4769,2173,3084,4137, 915,3338,4411,4412,3339, # 4832 +1605,1835,5671,2748, 398,3656,4413,3926,4138, 328,1913,2860,4139,3927,1331,4414, # 4848 +3029, 937,4415,5672,3657,4140,4141,3424,2161,4770,3425, 524, 742, 538,3085,1012, # 4864 +5673,5674,3928,2466,5675, 658,1103, 225,3929,5676,5677,4771,5678,4772,5679,3267, # 4880 +1243,5680,4142, 963,2250,4773,5681,2714,3658,3186,5682,5683,2596,2332,5684,4774, # 4896 +5685,5686,5687,3536, 957,3426,2547,2033,1931,2941,2467, 870,2019,3659,1746,2780, # 4912 +2781,2439,2468,5688,3930,5689,3789,3130,3790,3537,3427,3791,5690,1179,3086,5691, # 4928 +3187,2378,4416,3792,2548,3188,3131,2749,4143,5692,3428,1556,2549,2297, 977,2901, # 4944 +2034,4144,1205,3429,5693,1765,3430,3189,2125,1271, 714,1689,4775,3538,5694,2333, # 4960 +3931, 533,4417,3660,2184, 617,5695,2469,3340,3539,2315,5696,5697,3190,5698,5699, # 4976 +3932,1988, 618, 427,2651,3540,3431,5700,5701,1244,1690,5702,2819,4418,4776,5703, # 4992 +3541,4777,5704,2284,1576, 473,3661,4419,3432, 972,5705,3662,5706,3087,5707,5708, # 5008 +4778,4779,5709,3793,4145,4146,5710, 153,4780, 356,5711,1892,2902,4420,2144, 408, # 5024 + 803,2357,5712,3933,5713,4421,1646,2578,2518,4781,4782,3934,5714,3935,4422,5715, # 5040 +2416,3433, 752,5716,5717,1962,3341,2979,5718, 746,3030,2470,4783,4423,3794, 698, # 5056 +4784,1893,4424,3663,2550,4785,3664,3936,5719,3191,3434,5720,1824,1302,4147,2715, # 5072 +3937,1974,4425,5721,4426,3192, 823,1303,1288,1236,2861,3542,4148,3435, 774,3938, # 5088 +5722,1581,4786,1304,2862,3939,4787,5723,2440,2162,1083,3268,4427,4149,4428, 344, # 5104 +1173, 288,2316, 454,1683,5724,5725,1461,4788,4150,2597,5726,5727,4789, 985, 894, # 5120 +5728,3436,3193,5729,1914,2942,3795,1989,5730,2111,1975,5731,4151,5732,2579,1194, # 5136 + 425,5733,4790,3194,1245,3796,4429,5734,5735,2863,5736, 636,4791,1856,3940, 760, # 5152 +1800,5737,4430,2212,1508,4792,4152,1894,1684,2298,5738,5739,4793,4431,4432,2213, # 5168 + 479,5740,5741, 832,5742,4153,2496,5743,2980,2497,3797, 990,3132, 627,1815,2652, # 5184 +4433,1582,4434,2126,2112,3543,4794,5744, 799,4435,3195,5745,4795,2113,1737,3031, # 5200 +1018, 543, 754,4436,3342,1676,4796,4797,4154,4798,1489,5746,3544,5747,2624,2903, # 5216 +4155,5748,5749,2981,5750,5751,5752,5753,3196,4799,4800,2185,1722,5754,3269,3270, # 5232 +1843,3665,1715, 481, 365,1976,1857,5755,5756,1963,2498,4801,5757,2127,3666,3271, # 5248 + 433,1895,2064,2076,5758, 602,2750,5759,5760,5761,5762,5763,3032,1628,3437,5764, # 5264 +3197,4802,4156,2904,4803,2519,5765,2551,2782,5766,5767,5768,3343,4804,2905,5769, # 5280 +4805,5770,2864,4806,4807,1221,2982,4157,2520,5771,5772,5773,1868,1990,5774,5775, # 5296 +5776,1896,5777,5778,4808,1897,4158, 318,5779,2095,4159,4437,5780,5781, 485,5782, # 5312 + 938,3941, 553,2680, 116,5783,3942,3667,5784,3545,2681,2783,3438,3344,2820,5785, # 5328 +3668,2943,4160,1747,2944,2983,5786,5787, 207,5788,4809,5789,4810,2521,5790,3033, # 5344 + 890,3669,3943,5791,1878,3798,3439,5792,2186,2358,3440,1652,5793,5794,5795, 941, # 5360 +2299, 208,3546,4161,2020, 330,4438,3944,2906,2499,3799,4439,4811,5796,5797,5798, # 5376 +) +# fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py new file mode 100644 index 00000000..ef09c60e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import Big5DistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import BIG5_SM_MODEL + + +class Big5Prober(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(BIG5_SM_MODEL) + self.distribution_analyzer = Big5DistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "Big5" + + @property + def language(self) -> str: + return "Chinese" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py new file mode 100644 index 00000000..176cb996 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py @@ -0,0 +1,261 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Tuple, Union + +from .big5freq import ( + BIG5_CHAR_TO_FREQ_ORDER, + BIG5_TABLE_SIZE, + BIG5_TYPICAL_DISTRIBUTION_RATIO, +) +from .euckrfreq import ( + EUCKR_CHAR_TO_FREQ_ORDER, + EUCKR_TABLE_SIZE, + EUCKR_TYPICAL_DISTRIBUTION_RATIO, +) +from .euctwfreq import ( + EUCTW_CHAR_TO_FREQ_ORDER, + EUCTW_TABLE_SIZE, + EUCTW_TYPICAL_DISTRIBUTION_RATIO, +) +from .gb2312freq import ( + GB2312_CHAR_TO_FREQ_ORDER, + GB2312_TABLE_SIZE, + GB2312_TYPICAL_DISTRIBUTION_RATIO, +) +from .jisfreq import ( + JIS_CHAR_TO_FREQ_ORDER, + JIS_TABLE_SIZE, + JIS_TYPICAL_DISTRIBUTION_RATIO, +) +from .johabfreq import JOHAB_TO_EUCKR_ORDER_TABLE + + +class CharDistributionAnalysis: + ENOUGH_DATA_THRESHOLD = 1024 + SURE_YES = 0.99 + SURE_NO = 0.01 + MINIMUM_DATA_THRESHOLD = 3 + + def __init__(self) -> None: + # Mapping table to get frequency order from char order (get from + # GetOrder()) + self._char_to_freq_order: Tuple[int, ...] = tuple() + self._table_size = 0 # Size of above table + # This is a constant value which varies from language to language, + # used in calculating confidence. See + # http://www.mozilla.org/projects/intl/UniversalCharsetDetection.html + # for further detail. + self.typical_distribution_ratio = 0.0 + self._done = False + self._total_chars = 0 + self._freq_chars = 0 + self.reset() + + def reset(self) -> None: + """reset analyser, clear any state""" + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + self._total_chars = 0 # Total characters encountered + # The number of characters whose frequency order is less than 512 + self._freq_chars = 0 + + def feed(self, char: Union[bytes, bytearray], char_len: int) -> None: + """feed a character with known length""" + if char_len == 2: + # we only care about 2-bytes character in our distribution analysis + order = self.get_order(char) + else: + order = -1 + if order >= 0: + self._total_chars += 1 + # order is valid + if order < self._table_size: + if 512 > self._char_to_freq_order[order]: + self._freq_chars += 1 + + def get_confidence(self) -> float: + """return confidence based on existing data""" + # if we didn't receive any character in our consideration range, + # return negative answer + if self._total_chars <= 0 or self._freq_chars <= self.MINIMUM_DATA_THRESHOLD: + return self.SURE_NO + + if self._total_chars != self._freq_chars: + r = self._freq_chars / ( + (self._total_chars - self._freq_chars) * self.typical_distribution_ratio + ) + if r < self.SURE_YES: + return r + + # normalize confidence (we don't want to be 100% sure) + return self.SURE_YES + + def got_enough_data(self) -> bool: + # It is not necessary to receive all data to draw conclusion. + # For charset detection, certain amount of data is enough + return self._total_chars > self.ENOUGH_DATA_THRESHOLD + + def get_order(self, _: Union[bytes, bytearray]) -> int: + # We do not handle characters based on the original encoding string, + # but convert this encoding string to a number, here called order. + # This allows multiple encodings of a language to share one frequency + # table. + return -1 + + +class EUCTWDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = EUCTW_CHAR_TO_FREQ_ORDER + self._table_size = EUCTW_TABLE_SIZE + self.typical_distribution_ratio = EUCTW_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for euc-TW encoding, we are interested + # first byte range: 0xc4 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xC4: + return 94 * (first_char - 0xC4) + byte_str[1] - 0xA1 + return -1 + + +class EUCKRDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = EUCKR_CHAR_TO_FREQ_ORDER + self._table_size = EUCKR_TABLE_SIZE + self.typical_distribution_ratio = EUCKR_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for euc-KR encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xB0: + return 94 * (first_char - 0xB0) + byte_str[1] - 0xA1 + return -1 + + +class JOHABDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = EUCKR_CHAR_TO_FREQ_ORDER + self._table_size = EUCKR_TABLE_SIZE + self.typical_distribution_ratio = EUCKR_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + first_char = byte_str[0] + if 0x88 <= first_char < 0xD4: + code = first_char * 256 + byte_str[1] + return JOHAB_TO_EUCKR_ORDER_TABLE.get(code, -1) + return -1 + + +class GB2312DistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = GB2312_CHAR_TO_FREQ_ORDER + self._table_size = GB2312_TABLE_SIZE + self.typical_distribution_ratio = GB2312_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for GB2312 encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if (first_char >= 0xB0) and (second_char >= 0xA1): + return 94 * (first_char - 0xB0) + second_char - 0xA1 + return -1 + + +class Big5DistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = BIG5_CHAR_TO_FREQ_ORDER + self._table_size = BIG5_TABLE_SIZE + self.typical_distribution_ratio = BIG5_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for big5 encoding, we are interested + # first byte range: 0xa4 -- 0xfe + # second byte range: 0x40 -- 0x7e , 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if first_char >= 0xA4: + if second_char >= 0xA1: + return 157 * (first_char - 0xA4) + second_char - 0xA1 + 63 + return 157 * (first_char - 0xA4) + second_char - 0x40 + return -1 + + +class SJISDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for sjis encoding, we are interested + # first byte range: 0x81 -- 0x9f , 0xe0 -- 0xfe + # second byte range: 0x40 -- 0x7e, 0x81 -- oxfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if 0x81 <= first_char <= 0x9F: + order = 188 * (first_char - 0x81) + elif 0xE0 <= first_char <= 0xEF: + order = 188 * (first_char - 0xE0 + 31) + else: + return -1 + order = order + second_char - 0x40 + if second_char > 0x7F: + order = -1 + return order + + +class EUCJPDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for euc-JP encoding, we are interested + # first byte range: 0xa0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + char = byte_str[0] + if char >= 0xA0: + return 94 * (char - 0xA1) + byte_str[1] - 0xA1 + return -1 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py new file mode 100644 index 00000000..6def56b4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py @@ -0,0 +1,106 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Optional, Union + +from .charsetprober import CharSetProber +from .enums import LanguageFilter, ProbingState + + +class CharSetGroupProber(CharSetProber): + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self._active_num = 0 + self.probers: List[CharSetProber] = [] + self._best_guess_prober: Optional[CharSetProber] = None + + def reset(self) -> None: + super().reset() + self._active_num = 0 + for prober in self.probers: + prober.reset() + prober.active = True + self._active_num += 1 + self._best_guess_prober = None + + @property + def charset_name(self) -> Optional[str]: + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.charset_name + + @property + def language(self) -> Optional[str]: + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.language + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for prober in self.probers: + if not prober.active: + continue + state = prober.feed(byte_str) + if not state: + continue + if state == ProbingState.FOUND_IT: + self._best_guess_prober = prober + self._state = ProbingState.FOUND_IT + return self.state + if state == ProbingState.NOT_ME: + prober.active = False + self._active_num -= 1 + if self._active_num <= 0: + self._state = ProbingState.NOT_ME + return self.state + return self.state + + def get_confidence(self) -> float: + state = self.state + if state == ProbingState.FOUND_IT: + return 0.99 + if state == ProbingState.NOT_ME: + return 0.01 + best_conf = 0.0 + self._best_guess_prober = None + for prober in self.probers: + if not prober.active: + self.logger.debug("%s not active", prober.charset_name) + continue + conf = prober.get_confidence() + self.logger.debug( + "%s %s confidence = %s", prober.charset_name, prober.language, conf + ) + if best_conf < conf: + best_conf = conf + self._best_guess_prober = prober + if not self._best_guess_prober: + return 0.0 + return best_conf diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py new file mode 100644 index 00000000..a103ca11 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py @@ -0,0 +1,147 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import logging +import re +from typing import Optional, Union + +from .enums import LanguageFilter, ProbingState + +INTERNATIONAL_WORDS_PATTERN = re.compile( + b"[a-zA-Z]*[\x80-\xFF]+[a-zA-Z]*[^a-zA-Z\x80-\xFF]?" +) + + +class CharSetProber: + + SHORTCUT_THRESHOLD = 0.95 + + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + self._state = ProbingState.DETECTING + self.active = True + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + + def reset(self) -> None: + self._state = ProbingState.DETECTING + + @property + def charset_name(self) -> Optional[str]: + return None + + @property + def language(self) -> Optional[str]: + raise NotImplementedError + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + raise NotImplementedError + + @property + def state(self) -> ProbingState: + return self._state + + def get_confidence(self) -> float: + return 0.0 + + @staticmethod + def filter_high_byte_only(buf: Union[bytes, bytearray]) -> bytes: + buf = re.sub(b"([\x00-\x7F])+", b" ", buf) + return buf + + @staticmethod + def filter_international_words(buf: Union[bytes, bytearray]) -> bytearray: + """ + We define three types of bytes: + alphabet: english alphabets [a-zA-Z] + international: international characters [\x80-\xFF] + marker: everything else [^a-zA-Z\x80-\xFF] + The input buffer can be thought to contain a series of words delimited + by markers. This function works to filter all words that contain at + least one international character. All contiguous sequences of markers + are replaced by a single space ascii character. + This filter applies to all scripts which do not use English characters. + """ + filtered = bytearray() + + # This regex expression filters out only words that have at-least one + # international character. The word may include one marker character at + # the end. + words = INTERNATIONAL_WORDS_PATTERN.findall(buf) + + for word in words: + filtered.extend(word[:-1]) + + # If the last character in the word is a marker, replace it with a + # space as markers shouldn't affect our analysis (they are used + # similarly across all languages and may thus have similar + # frequencies). + last_char = word[-1:] + if not last_char.isalpha() and last_char < b"\x80": + last_char = b" " + filtered.extend(last_char) + + return filtered + + @staticmethod + def remove_xml_tags(buf: Union[bytes, bytearray]) -> bytes: + """ + Returns a copy of ``buf`` that retains only the sequences of English + alphabet and high byte characters that are not between <> characters. + This filter can be applied to all scripts which contain both English + characters and extended ASCII characters, but is currently only used by + ``Latin1Prober``. + """ + filtered = bytearray() + in_tag = False + prev = 0 + buf = memoryview(buf).cast("c") + + for curr, buf_char in enumerate(buf): + # Check if we're coming out of or entering an XML tag + + # https://github.com/python/typeshed/issues/8182 + if buf_char == b">": # type: ignore[comparison-overlap] + prev = curr + 1 + in_tag = False + # https://github.com/python/typeshed/issues/8182 + elif buf_char == b"<": # type: ignore[comparison-overlap] + if curr > prev and not in_tag: + # Keep everything after last non-extended-ASCII, + # non-alphabetic character + filtered.extend(buf[prev:curr]) + # Output a space to delimit stretch we kept + filtered.extend(b" ") + in_tag = True + + # If we're not in a tag... + if not in_tag: + # Keep everything after last non-extended-ASCII, non-alphabetic + # character + filtered.extend(buf[prev:]) + + return filtered diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b7099ea6cec35190aa4a16ff09ea7065b363941b GIT binary patch literal 247 zcmZ8bI}XAy3~l&G2#GteFfg|k8>XSGn9Y4TYhtm>S)MTx5za7^bVfS1#&77_F`)!Dp;UBIMT4D zojVDG{RLL2NEcYT{+y1+A}lF8DvUQo%7QGk!f=gKI$2ReQejzvl3UQV%c-0sqcK?N zFxDbHh&@`+QUmw4j0~i?Fc~^Xl?2XZDIMpDu0Ne=@q05fZ6A|)+8|y{#+Ye(^##P& BNI(Dp literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b430abf8562248e794dac066dcb239e3a4cecf64 GIT binary patch literal 4064 zcma)9O>7&-6`mz`m*nzCqWmk_ut$dNnu$n8ZezH#Vb`^y#6W5rmRzJP3~I$4iYqO5 z+1aHO5;E!lDJmldEMF=WL4XuJ^hY}6m_rZgsfS*qq=4zIiy8=e$c>Ja9&+k?ORh*M zHqa5c^Y`Y>n|W`(_v!EPxI&M?;3WunOSszVpbda+C$b&lE8G8wfvtyrAVl5Q|sRh_a;Ra2v!RW0tI2zAO#=Tu`3 zD>@9UGmDm{n=`heyz#DDsTwSoQxpp26fKrj-WH^`Rbie^Y*?U!W6zWGr*d>bH#KX) zPLG~_{Va5xGA&wWN!MTxMqkUkz9YV)AV*cZsO#Sm9?iU_DA!8VwERQBnX25H2W8p_ z)t%0fbvTo5R%;F|ajQaY2ab|al&|p0uBU=-_?pAGI&Cmld|S62H+-Y&=$5G(Uj;xS zCAiT-VV-dt#tH@KCU2WM_ElrdyC93ZlA)W-c12UIFgH}uO}(NT?tZ&$)eNn`8IBhW zHlr5nuFRQJ<7QFpxC|>9enI$c{TDtf!~y5E%VKa{SnKreii>27+!-O{uH>M!R~Dt6 zd1+CcmHhE;-IWjsNZ?+3iY+`C5r`>>I3L+F3EggV!MyigcFWwA7Xw^cl(hgx=>+jx zynj*nkZ3`_4{Z_J5=wnYK9WEZ=jD$A6C@QRtbc?(6hLw!2n0%Xj_2|?nb@2s>;<0^_-QXlc36LQpch*48jEldQ@iG zYn*zuBbTFoq@e2Qy2I>Vwdmv=y$)ZT?pOoSZ5Z&1Ab4=p+pkA&dkt9GtLQ~xlcRLP zizd3j;HBa^+7754lWjPMrv{Ju@&c!Xx9tHy#nKozDf>lDpH~fLI`-ur+g@S@otm1q zEMscQ6HN&mVbTrz7uN{nXe0TZ$LcEGXWoeB@X>N+*9<2m^Drui;C-r`t94f_F{Zhq z23X}vMZ>ZgJ{nIr#4$WM#vqU4$J<<}xgy>yKLA5^2tJ+Tf4iD30~Tdx)M>6WBRj_I zImfDIC#;gQpaNWsv3X`#)e4-QUbSl6X4#)uTFqeTNjRgO)e-D)HeCeJQtR2wJTvFB zhCZFG)}69tem^sMHf!q+OIOw6oI1noY*nvj0WbjOc(#L%*`lHQZ3u=;weBX`LG3|J z!76cl6Nl0K75LmE+b2n6Xd`>|AK|fkSDO6?z9y11up~b1JG{F8gI_L*&2Z$Qd|zI2 z9>ktSV-L@LaPCPg*@}WtD@G*w*KfY}=KI&0@x;S-?!R+y{7ER$>^rbLyV*Cq5gu-a z;!CrihX$Ji2bT{n^VQQI4{Z*OYz(G1(w9D+|IFCDJh5?Ua-;9|M)-C!F|hR0n*fWCsJtD=z}4SqzaqWky&Jt#zOhK=H*kgtdsKtVh>6Q2SE3m=@O(o@58oUnuZO_$^2ZMMw(4#o#PHfIYPic*8!JC00r&3ok8tCAI;sFnxeW*Yc}Z7 zO&fp=tiW|SFMG6Y=*damT;s~*|4Yf*nCA?|K@_0_;N8`xs7RrE}JF=KJ z7Lbm>EzU7ad8m#9S78}?Mq?!vz&O`tM=3YJr(NNdl<10OW>j4fkKsxt9K?1*9pOeK zo$gSb#w#}=QNskmyFU@ni@)!8S&Y(3Nmga^!jYj0u86XQYDVxGhr(q}lJ@_lWy89(_fc4J!-6Y{(Q+)DJU-Per&u-SK{74l|9nC;aZYla7! z@e3#r@dP9gfSkFr^}f|>pA7!x!l&tt>|3p%ClUY=nZyPjM~`kskFHLB5j}Bl>{&ed zFn>S)HHk~glF)=KeE$CV2f3$^hXcXnk?k-!IJlC3l>a6w#}nHL5=lIb4K@3d%cCpj z9-aI62Ym_o+pGc$4tfX`Z?w{m$coStoi@1v;oB8ZN?>e3>Lz}0p}s5YdacU zg_|SAEEN7kJZn5(ejC0Bj1kDuC4LozFo)Z}fln(a2*UF~Oc1w@5uyK|MEN&)b(6gM zA2ReWG76WUJlxzr*c?9nJaSy1&FH@6H|}3<1)=>+iMJ%E;c^oLtq``tw`} literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py new file mode 100644 index 00000000..43f6e144 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py @@ -0,0 +1,112 @@ +""" +Script which takes one or more file paths and reports on their detected +encodings + +Example:: + + % chardetect somefile someotherfile + somefile: windows-1252 with confidence 0.5 + someotherfile: ascii with confidence 1.0 + +If no paths are provided, it takes its input from stdin. + +""" + + +import argparse +import sys +from typing import Iterable, List, Optional + +from .. import __version__ +from ..universaldetector import UniversalDetector + + +def description_of( + lines: Iterable[bytes], + name: str = "stdin", + minimal: bool = False, + should_rename_legacy: bool = False, +) -> Optional[str]: + """ + Return a string describing the probable encoding of a file or + list of strings. + + :param lines: The lines to get the encoding of. + :type lines: Iterable of bytes + :param name: Name of file or collection of lines + :type name: str + :param should_rename_legacy: Should we rename legacy encodings to + their more modern equivalents? + :type should_rename_legacy: ``bool`` + """ + u = UniversalDetector(should_rename_legacy=should_rename_legacy) + for line in lines: + line = bytearray(line) + u.feed(line) + # shortcut out of the loop to save reading further - particularly useful if we read a BOM. + if u.done: + break + u.close() + result = u.result + if minimal: + return result["encoding"] + if result["encoding"]: + return f'{name}: {result["encoding"]} with confidence {result["confidence"]}' + return f"{name}: no result" + + +def main(argv: Optional[List[str]] = None) -> None: + """ + Handles command line arguments and gets things started. + + :param argv: List of arguments, as if specified on the command-line. + If None, ``sys.argv[1:]`` is used instead. + :type argv: list of str + """ + # Get command line arguments + parser = argparse.ArgumentParser( + description=( + "Takes one or more file paths and reports their detected encodings" + ) + ) + parser.add_argument( + "input", + help="File whose encoding we would like to determine. (default: stdin)", + type=argparse.FileType("rb"), + nargs="*", + default=[sys.stdin.buffer], + ) + parser.add_argument( + "--minimal", + help="Print only the encoding to standard output", + action="store_true", + ) + parser.add_argument( + "-l", + "--legacy", + help="Rename legacy encodings to more modern ones.", + action="store_true", + ) + parser.add_argument( + "--version", action="version", version=f"%(prog)s {__version__}" + ) + args = parser.parse_args(argv) + + for f in args.input: + if f.isatty(): + print( + "You are running chardetect interactively. Press " + "CTRL-D twice at the start of a blank line to signal the " + "end of your input. If you want help, run chardetect " + "--help\n", + file=sys.stderr, + ) + print( + description_of( + f, f.name, minimal=args.minimal, should_rename_legacy=args.legacy + ) + ) + + +if __name__ == "__main__": + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py new file mode 100644 index 00000000..8ed4a877 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py @@ -0,0 +1,90 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import logging + +from .codingstatemachinedict import CodingStateMachineDict +from .enums import MachineState + + +class CodingStateMachine: + """ + A state machine to verify a byte sequence for a particular encoding. For + each byte the detector receives, it will feed that byte to every active + state machine available, one byte at a time. The state machine changes its + state based on its previous state and the byte it receives. There are 3 + states in a state machine that are of interest to an auto-detector: + + START state: This is the state to start with, or a legal byte sequence + (i.e. a valid code point) for character has been identified. + + ME state: This indicates that the state machine identified a byte sequence + that is specific to the charset it is designed for and that + there is no other possible encoding which can contain this byte + sequence. This will to lead to an immediate positive answer for + the detector. + + ERROR state: This indicates the state machine identified an illegal byte + sequence for that encoding. This will lead to an immediate + negative answer for this encoding. Detector will exclude this + encoding from consideration from here on. + """ + + def __init__(self, sm: CodingStateMachineDict) -> None: + self._model = sm + self._curr_byte_pos = 0 + self._curr_char_len = 0 + self._curr_state = MachineState.START + self.active = True + self.logger = logging.getLogger(__name__) + self.reset() + + def reset(self) -> None: + self._curr_state = MachineState.START + + def next_state(self, c: int) -> int: + # for each byte we get its class + # if it is first byte, we also get byte length + byte_class = self._model["class_table"][c] + if self._curr_state == MachineState.START: + self._curr_byte_pos = 0 + self._curr_char_len = self._model["char_len_table"][byte_class] + # from byte's class and state_table, we get its next state + curr_state = self._curr_state * self._model["class_factor"] + byte_class + self._curr_state = self._model["state_table"][curr_state] + self._curr_byte_pos += 1 + return self._curr_state + + def get_current_charlen(self) -> int: + return self._curr_char_len + + def get_coding_state_machine(self) -> str: + return self._model["name"] + + @property + def language(self) -> str: + return self._model["language"] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py new file mode 100644 index 00000000..7a3c4c7e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py @@ -0,0 +1,19 @@ +from typing import TYPE_CHECKING, Tuple + +if TYPE_CHECKING: + # TypedDict was introduced in Python 3.8. + # + # TODO: Remove the else block and TYPE_CHECKING check when dropping support + # for Python 3.7. + from typing import TypedDict + + class CodingStateMachineDict(TypedDict, total=False): + class_table: Tuple[int, ...] + class_factor: int + state_table: Tuple[int, ...] + char_len_table: Tuple[int, ...] + name: str + language: str # Optional key + +else: + CodingStateMachineDict = dict diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py new file mode 100644 index 00000000..fa7307ed --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py @@ -0,0 +1,49 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCKRDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import CP949_SM_MODEL + + +class CP949Prober(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(CP949_SM_MODEL) + # NOTE: CP949 is a superset of EUC-KR, so the distribution should be + # not different. + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "CP949" + + @property + def language(self) -> str: + return "Korean" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py new file mode 100644 index 00000000..5e3e1982 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py @@ -0,0 +1,85 @@ +""" +All of the Enums that are used throughout the chardet package. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + +from enum import Enum, Flag + + +class InputState: + """ + This enum represents the different states a universal detector can be in. + """ + + PURE_ASCII = 0 + ESC_ASCII = 1 + HIGH_BYTE = 2 + + +class LanguageFilter(Flag): + """ + This enum represents the different language filters we can apply to a + ``UniversalDetector``. + """ + + NONE = 0x00 + CHINESE_SIMPLIFIED = 0x01 + CHINESE_TRADITIONAL = 0x02 + JAPANESE = 0x04 + KOREAN = 0x08 + NON_CJK = 0x10 + ALL = 0x1F + CHINESE = CHINESE_SIMPLIFIED | CHINESE_TRADITIONAL + CJK = CHINESE | JAPANESE | KOREAN + + +class ProbingState(Enum): + """ + This enum represents the different states a prober can be in. + """ + + DETECTING = 0 + FOUND_IT = 1 + NOT_ME = 2 + + +class MachineState: + """ + This enum represents the different states a state machine can be in. + """ + + START = 0 + ERROR = 1 + ITS_ME = 2 + + +class SequenceLikelihood: + """ + This enum represents the likelihood of a character following the previous one. + """ + + NEGATIVE = 0 + UNLIKELY = 1 + LIKELY = 2 + POSITIVE = 3 + + @classmethod + def get_num_categories(cls) -> int: + """:returns: The number of likelihood categories in the enum.""" + return 4 + + +class CharacterCategory: + """ + This enum represents the different categories language models for + ``SingleByteCharsetProber`` put characters into. + + Anything less than CONTROL is considered a letter. + """ + + UNDEFINED = 255 + LINE_BREAK = 254 + SYMBOL = 253 + DIGIT = 252 + CONTROL = 251 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py new file mode 100644 index 00000000..fd713830 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py @@ -0,0 +1,102 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Optional, Union + +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import LanguageFilter, MachineState, ProbingState +from .escsm import ( + HZ_SM_MODEL, + ISO2022CN_SM_MODEL, + ISO2022JP_SM_MODEL, + ISO2022KR_SM_MODEL, +) + + +class EscCharSetProber(CharSetProber): + """ + This CharSetProber uses a "code scheme" approach for detecting encodings, + whereby easily recognizable escape or shift sequences are relied on to + identify these encodings. + """ + + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self.coding_sm = [] + if self.lang_filter & LanguageFilter.CHINESE_SIMPLIFIED: + self.coding_sm.append(CodingStateMachine(HZ_SM_MODEL)) + self.coding_sm.append(CodingStateMachine(ISO2022CN_SM_MODEL)) + if self.lang_filter & LanguageFilter.JAPANESE: + self.coding_sm.append(CodingStateMachine(ISO2022JP_SM_MODEL)) + if self.lang_filter & LanguageFilter.KOREAN: + self.coding_sm.append(CodingStateMachine(ISO2022KR_SM_MODEL)) + self.active_sm_count = 0 + self._detected_charset: Optional[str] = None + self._detected_language: Optional[str] = None + self._state = ProbingState.DETECTING + self.reset() + + def reset(self) -> None: + super().reset() + for coding_sm in self.coding_sm: + coding_sm.active = True + coding_sm.reset() + self.active_sm_count = len(self.coding_sm) + self._detected_charset = None + self._detected_language = None + + @property + def charset_name(self) -> Optional[str]: + return self._detected_charset + + @property + def language(self) -> Optional[str]: + return self._detected_language + + def get_confidence(self) -> float: + return 0.99 if self._detected_charset else 0.00 + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for c in byte_str: + for coding_sm in self.coding_sm: + if not coding_sm.active: + continue + coding_state = coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + coding_sm.active = False + self.active_sm_count -= 1 + if self.active_sm_count <= 0: + self._state = ProbingState.NOT_ME + return self.state + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + self._detected_charset = coding_sm.get_coding_state_machine() + self._detected_language = coding_sm.language + return self.state + + return self.state diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py new file mode 100644 index 00000000..11d4adf7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py @@ -0,0 +1,261 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .codingstatemachinedict import CodingStateMachineDict +from .enums import MachineState + +# fmt: off +HZ_CLS = ( + 1, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 0, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 4, 0, 5, 2, 0, # 78 - 7f + 1, 1, 1, 1, 1, 1, 1, 1, # 80 - 87 + 1, 1, 1, 1, 1, 1, 1, 1, # 88 - 8f + 1, 1, 1, 1, 1, 1, 1, 1, # 90 - 97 + 1, 1, 1, 1, 1, 1, 1, 1, # 98 - 9f + 1, 1, 1, 1, 1, 1, 1, 1, # a0 - a7 + 1, 1, 1, 1, 1, 1, 1, 1, # a8 - af + 1, 1, 1, 1, 1, 1, 1, 1, # b0 - b7 + 1, 1, 1, 1, 1, 1, 1, 1, # b8 - bf + 1, 1, 1, 1, 1, 1, 1, 1, # c0 - c7 + 1, 1, 1, 1, 1, 1, 1, 1, # c8 - cf + 1, 1, 1, 1, 1, 1, 1, 1, # d0 - d7 + 1, 1, 1, 1, 1, 1, 1, 1, # d8 - df + 1, 1, 1, 1, 1, 1, 1, 1, # e0 - e7 + 1, 1, 1, 1, 1, 1, 1, 1, # e8 - ef + 1, 1, 1, 1, 1, 1, 1, 1, # f0 - f7 + 1, 1, 1, 1, 1, 1, 1, 1, # f8 - ff +) + +HZ_ST = ( +MachineState.START, MachineState.ERROR, 3, MachineState.START, MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, # 00-07 +MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 08-0f +MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.START, MachineState.START, 4, MachineState.ERROR, # 10-17 + 5, MachineState.ERROR, 6, MachineState.ERROR, 5, 5, 4, MachineState.ERROR, # 18-1f + 4, MachineState.ERROR, 4, 4, 4, MachineState.ERROR, 4, MachineState.ERROR, # 20-27 + 4, MachineState.ITS_ME, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 28-2f +) +# fmt: on + +HZ_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +HZ_SM_MODEL: CodingStateMachineDict = { + "class_table": HZ_CLS, + "class_factor": 6, + "state_table": HZ_ST, + "char_len_table": HZ_CHAR_LEN_TABLE, + "name": "HZ-GB-2312", + "language": "Chinese", +} + +# fmt: off +ISO2022CN_CLS = ( + 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 3, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 4, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 + 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f + 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 + 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff +) + +ISO2022CN_ST = ( + MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 00-07 + MachineState.START, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 08-0f + MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 10-17 + MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, # 18-1f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 20-27 + 5, 6, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 28-2f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 30-37 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.START, # 38-3f +) +# fmt: on + +ISO2022CN_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022CN_SM_MODEL: CodingStateMachineDict = { + "class_table": ISO2022CN_CLS, + "class_factor": 9, + "state_table": ISO2022CN_ST, + "char_len_table": ISO2022CN_CHAR_LEN_TABLE, + "name": "ISO-2022-CN", + "language": "Chinese", +} + +# fmt: off +ISO2022JP_CLS = ( + 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 2, 2, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 7, 0, 0, 0, # 20 - 27 + 3, 0, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 6, 0, 4, 0, 8, 0, 0, 0, # 40 - 47 + 0, 9, 5, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 + 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f + 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 + 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff +) + +ISO2022JP_ST = ( + MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 00-07 + MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 08-0f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 10-17 + MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, # 18-1f + MachineState.ERROR, 5, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, MachineState.ERROR, # 20-27 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 6, MachineState.ITS_ME, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, # 28-2f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, # 30-37 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 38-3f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.START, MachineState.START, # 40-47 +) +# fmt: on + +ISO2022JP_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022JP_SM_MODEL: CodingStateMachineDict = { + "class_table": ISO2022JP_CLS, + "class_factor": 10, + "state_table": ISO2022JP_ST, + "char_len_table": ISO2022JP_CHAR_LEN_TABLE, + "name": "ISO-2022-JP", + "language": "Japanese", +} + +# fmt: off +ISO2022KR_CLS = ( + 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 3, 0, 0, 0, # 20 - 27 + 0, 4, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 5, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 + 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f + 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 + 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff +) + +ISO2022KR_ST = ( + MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, # 00-07 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 08-0f + MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, MachineState.ERROR, # 10-17 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 5, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 18-1f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 20-27 +) +# fmt: on + +ISO2022KR_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +ISO2022KR_SM_MODEL: CodingStateMachineDict = { + "class_table": ISO2022KR_CLS, + "class_factor": 6, + "state_table": ISO2022KR_ST, + "char_len_table": ISO2022KR_CHAR_LEN_TABLE, + "name": "ISO-2022-KR", + "language": "Korean", +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py new file mode 100644 index 00000000..39487f40 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py @@ -0,0 +1,102 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Union + +from .chardistribution import EUCJPDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .enums import MachineState, ProbingState +from .jpcntx import EUCJPContextAnalysis +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import EUCJP_SM_MODEL + + +class EUCJPProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(EUCJP_SM_MODEL) + self.distribution_analyzer = EUCJPDistributionAnalysis() + self.context_analyzer = EUCJPContextAnalysis() + self.reset() + + def reset(self) -> None: + super().reset() + self.context_analyzer.reset() + + @property + def charset_name(self) -> str: + return "EUC-JP" + + @property + def language(self) -> str: + return "Japanese" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + assert self.coding_sm is not None + assert self.distribution_analyzer is not None + + for i, byte in enumerate(byte_str): + # PY3K: byte_str is a byte array, so byte is an int, not a byte + coding_state = self.coding_sm.next_state(byte) + if coding_state == MachineState.ERROR: + self.logger.debug( + "%s %s prober hit error at byte %s", + self.charset_name, + self.language, + i, + ) + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte + self.context_analyzer.feed(self._last_char, char_len) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if self.context_analyzer.got_enough_data() and ( + self.get_confidence() > self.SHORTCUT_THRESHOLD + ): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + assert self.distribution_analyzer is not None + + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py new file mode 100644 index 00000000..7dc3b103 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py @@ -0,0 +1,196 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology + +# 128 --> 0.79 +# 256 --> 0.92 +# 512 --> 0.986 +# 1024 --> 0.99944 +# 2048 --> 0.99999 +# +# Idea Distribution Ratio = 0.98653 / (1-0.98653) = 73.24 +# Random Distribution Ration = 512 / (2350-512) = 0.279. +# +# Typical Distribution Ratio + +EUCKR_TYPICAL_DISTRIBUTION_RATIO = 6.0 + +EUCKR_TABLE_SIZE = 2352 + +# Char to FreqOrder table , +# fmt: off +EUCKR_CHAR_TO_FREQ_ORDER = ( + 13, 130, 120,1396, 481,1719,1720, 328, 609, 212,1721, 707, 400, 299,1722, 87, +1397,1723, 104, 536,1117,1203,1724,1267, 685,1268, 508,1725,1726,1727,1728,1398, +1399,1729,1730,1731, 141, 621, 326,1057, 368,1732, 267, 488, 20,1733,1269,1734, + 945,1400,1735, 47, 904,1270,1736,1737, 773, 248,1738, 409, 313, 786, 429,1739, + 116, 987, 813,1401, 683, 75,1204, 145,1740,1741,1742,1743, 16, 847, 667, 622, + 708,1744,1745,1746, 966, 787, 304, 129,1747, 60, 820, 123, 676,1748,1749,1750, +1751, 617,1752, 626,1753,1754,1755,1756, 653,1757,1758,1759,1760,1761,1762, 856, + 344,1763,1764,1765,1766, 89, 401, 418, 806, 905, 848,1767,1768,1769, 946,1205, + 709,1770,1118,1771, 241,1772,1773,1774,1271,1775, 569,1776, 999,1777,1778,1779, +1780, 337, 751,1058, 28, 628, 254,1781, 177, 906, 270, 349, 891,1079,1782, 19, +1783, 379,1784, 315,1785, 629, 754,1402, 559,1786, 636, 203,1206,1787, 710, 567, +1788, 935, 814,1789,1790,1207, 766, 528,1791,1792,1208,1793,1794,1795,1796,1797, +1403,1798,1799, 533,1059,1404,1405,1156,1406, 936, 884,1080,1800, 351,1801,1802, +1803,1804,1805, 801,1806,1807,1808,1119,1809,1157, 714, 474,1407,1810, 298, 899, + 885,1811,1120, 802,1158,1812, 892,1813,1814,1408, 659,1815,1816,1121,1817,1818, +1819,1820,1821,1822, 319,1823, 594, 545,1824, 815, 937,1209,1825,1826, 573,1409, +1022,1827,1210,1828,1829,1830,1831,1832,1833, 556, 722, 807,1122,1060,1834, 697, +1835, 900, 557, 715,1836,1410, 540,1411, 752,1159, 294, 597,1211, 976, 803, 770, +1412,1837,1838, 39, 794,1413, 358,1839, 371, 925,1840, 453, 661, 788, 531, 723, + 544,1023,1081, 869, 91,1841, 392, 430, 790, 602,1414, 677,1082, 457,1415,1416, +1842,1843, 475, 327,1024,1417, 795, 121,1844, 733, 403,1418,1845,1846,1847, 300, + 119, 711,1212, 627,1848,1272, 207,1849,1850, 796,1213, 382,1851, 519,1852,1083, + 893,1853,1854,1855, 367, 809, 487, 671,1856, 663,1857,1858, 956, 471, 306, 857, +1859,1860,1160,1084,1861,1862,1863,1864,1865,1061,1866,1867,1868,1869,1870,1871, + 282, 96, 574,1872, 502,1085,1873,1214,1874, 907,1875,1876, 827, 977,1419,1420, +1421, 268,1877,1422,1878,1879,1880, 308,1881, 2, 537,1882,1883,1215,1884,1885, + 127, 791,1886,1273,1423,1887, 34, 336, 404, 643,1888, 571, 654, 894, 840,1889, + 0, 886,1274, 122, 575, 260, 908, 938,1890,1275, 410, 316,1891,1892, 100,1893, +1894,1123, 48,1161,1124,1025,1895, 633, 901,1276,1896,1897, 115, 816,1898, 317, +1899, 694,1900, 909, 734,1424, 572, 866,1425, 691, 85, 524,1010, 543, 394, 841, +1901,1902,1903,1026,1904,1905,1906,1907,1908,1909, 30, 451, 651, 988, 310,1910, +1911,1426, 810,1216, 93,1912,1913,1277,1217,1914, 858, 759, 45, 58, 181, 610, + 269,1915,1916, 131,1062, 551, 443,1000, 821,1427, 957, 895,1086,1917,1918, 375, +1919, 359,1920, 687,1921, 822,1922, 293,1923,1924, 40, 662, 118, 692, 29, 939, + 887, 640, 482, 174,1925, 69,1162, 728,1428, 910,1926,1278,1218,1279, 386, 870, + 217, 854,1163, 823,1927,1928,1929,1930, 834,1931, 78,1932, 859,1933,1063,1934, +1935,1936,1937, 438,1164, 208, 595,1938,1939,1940,1941,1219,1125,1942, 280, 888, +1429,1430,1220,1431,1943,1944,1945,1946,1947,1280, 150, 510,1432,1948,1949,1950, +1951,1952,1953,1954,1011,1087,1955,1433,1043,1956, 881,1957, 614, 958,1064,1065, +1221,1958, 638,1001, 860, 967, 896,1434, 989, 492, 553,1281,1165,1959,1282,1002, +1283,1222,1960,1961,1962,1963, 36, 383, 228, 753, 247, 454,1964, 876, 678,1965, +1966,1284, 126, 464, 490, 835, 136, 672, 529, 940,1088,1435, 473,1967,1968, 467, + 50, 390, 227, 587, 279, 378, 598, 792, 968, 240, 151, 160, 849, 882,1126,1285, + 639,1044, 133, 140, 288, 360, 811, 563,1027, 561, 142, 523,1969,1970,1971, 7, + 103, 296, 439, 407, 506, 634, 990,1972,1973,1974,1975, 645,1976,1977,1978,1979, +1980,1981, 236,1982,1436,1983,1984,1089, 192, 828, 618, 518,1166, 333,1127,1985, + 818,1223,1986,1987,1988,1989,1990,1991,1992,1993, 342,1128,1286, 746, 842,1994, +1995, 560, 223,1287, 98, 8, 189, 650, 978,1288,1996,1437,1997, 17, 345, 250, + 423, 277, 234, 512, 226, 97, 289, 42, 167,1998, 201,1999,2000, 843, 836, 824, + 532, 338, 783,1090, 182, 576, 436,1438,1439, 527, 500,2001, 947, 889,2002,2003, +2004,2005, 262, 600, 314, 447,2006, 547,2007, 693, 738,1129,2008, 71,1440, 745, + 619, 688,2009, 829,2010,2011, 147,2012, 33, 948,2013,2014, 74, 224,2015, 61, + 191, 918, 399, 637,2016,1028,1130, 257, 902,2017,2018,2019,2020,2021,2022,2023, +2024,2025,2026, 837,2027,2028,2029,2030, 179, 874, 591, 52, 724, 246,2031,2032, +2033,2034,1167, 969,2035,1289, 630, 605, 911,1091,1168,2036,2037,2038,1441, 912, +2039, 623,2040,2041, 253,1169,1290,2042,1442, 146, 620, 611, 577, 433,2043,1224, + 719,1170, 959, 440, 437, 534, 84, 388, 480,1131, 159, 220, 198, 679,2044,1012, + 819,1066,1443, 113,1225, 194, 318,1003,1029,2045,2046,2047,2048,1067,2049,2050, +2051,2052,2053, 59, 913, 112,2054, 632,2055, 455, 144, 739,1291,2056, 273, 681, + 499,2057, 448,2058,2059, 760,2060,2061, 970, 384, 169, 245,1132,2062,2063, 414, +1444,2064,2065, 41, 235,2066, 157, 252, 877, 568, 919, 789, 580,2067, 725,2068, +2069,1292,2070,2071,1445,2072,1446,2073,2074, 55, 588, 66,1447, 271,1092,2075, +1226,2076, 960,1013, 372,2077,2078,2079,2080,2081,1293,2082,2083,2084,2085, 850, +2086,2087,2088,2089,2090, 186,2091,1068, 180,2092,2093,2094, 109,1227, 522, 606, +2095, 867,1448,1093, 991,1171, 926, 353,1133,2096, 581,2097,2098,2099,1294,1449, +1450,2100, 596,1172,1014,1228,2101,1451,1295,1173,1229,2102,2103,1296,1134,1452, + 949,1135,2104,2105,1094,1453,1454,1455,2106,1095,2107,2108,2109,2110,2111,2112, +2113,2114,2115,2116,2117, 804,2118,2119,1230,1231, 805,1456, 405,1136,2120,2121, +2122,2123,2124, 720, 701,1297, 992,1457, 927,1004,2125,2126,2127,2128,2129,2130, + 22, 417,2131, 303,2132, 385,2133, 971, 520, 513,2134,1174, 73,1096, 231, 274, + 962,1458, 673,2135,1459,2136, 152,1137,2137,2138,2139,2140,1005,1138,1460,1139, +2141,2142,2143,2144, 11, 374, 844,2145, 154,1232, 46,1461,2146, 838, 830, 721, +1233, 106,2147, 90, 428, 462, 578, 566,1175, 352,2148,2149, 538,1234, 124,1298, +2150,1462, 761, 565,2151, 686,2152, 649,2153, 72, 173,2154, 460, 415,2155,1463, +2156,1235, 305,2157,2158,2159,2160,2161,2162, 579,2163,2164,2165,2166,2167, 747, +2168,2169,2170,2171,1464, 669,2172,2173,2174,2175,2176,1465,2177, 23, 530, 285, +2178, 335, 729,2179, 397,2180,2181,2182,1030,2183,2184, 698,2185,2186, 325,2187, +2188, 369,2189, 799,1097,1015, 348,2190,1069, 680,2191, 851,1466,2192,2193, 10, +2194, 613, 424,2195, 979, 108, 449, 589, 27, 172, 81,1031, 80, 774, 281, 350, +1032, 525, 301, 582,1176,2196, 674,1045,2197,2198,1467, 730, 762,2199,2200,2201, +2202,1468,2203, 993,2204,2205, 266,1070, 963,1140,2206,2207,2208, 664,1098, 972, +2209,2210,2211,1177,1469,1470, 871,2212,2213,2214,2215,2216,1471,2217,2218,2219, +2220,2221,2222,2223,2224,2225,2226,2227,1472,1236,2228,2229,2230,2231,2232,2233, +2234,2235,1299,2236,2237, 200,2238, 477, 373,2239,2240, 731, 825, 777,2241,2242, +2243, 521, 486, 548,2244,2245,2246,1473,1300, 53, 549, 137, 875, 76, 158,2247, +1301,1474, 469, 396,1016, 278, 712,2248, 321, 442, 503, 767, 744, 941,1237,1178, +1475,2249, 82, 178,1141,1179, 973,2250,1302,2251, 297,2252,2253, 570,2254,2255, +2256, 18, 450, 206,2257, 290, 292,1142,2258, 511, 162, 99, 346, 164, 735,2259, +1476,1477, 4, 554, 343, 798,1099,2260,1100,2261, 43, 171,1303, 139, 215,2262, +2263, 717, 775,2264,1033, 322, 216,2265, 831,2266, 149,2267,1304,2268,2269, 702, +1238, 135, 845, 347, 309,2270, 484,2271, 878, 655, 238,1006,1478,2272, 67,2273, + 295,2274,2275, 461,2276, 478, 942, 412,2277,1034,2278,2279,2280, 265,2281, 541, +2282,2283,2284,2285,2286, 70, 852,1071,2287,2288,2289,2290, 21, 56, 509, 117, + 432,2291,2292, 331, 980, 552,1101, 148, 284, 105, 393,1180,1239, 755,2293, 187, +2294,1046,1479,2295, 340,2296, 63,1047, 230,2297,2298,1305, 763,1306, 101, 800, + 808, 494,2299,2300,2301, 903,2302, 37,1072, 14, 5,2303, 79, 675,2304, 312, +2305,2306,2307,2308,2309,1480, 6,1307,2310,2311,2312, 1, 470, 35, 24, 229, +2313, 695, 210, 86, 778, 15, 784, 592, 779, 32, 77, 855, 964,2314, 259,2315, + 501, 380,2316,2317, 83, 981, 153, 689,1308,1481,1482,1483,2318,2319, 716,1484, +2320,2321,2322,2323,2324,2325,1485,2326,2327, 128, 57, 68, 261,1048, 211, 170, +1240, 31,2328, 51, 435, 742,2329,2330,2331, 635,2332, 264, 456,2333,2334,2335, + 425,2336,1486, 143, 507, 263, 943,2337, 363, 920,1487, 256,1488,1102, 243, 601, +1489,2338,2339,2340,2341,2342,2343,2344, 861,2345,2346,2347,2348,2349,2350, 395, +2351,1490,1491, 62, 535, 166, 225,2352,2353, 668, 419,1241, 138, 604, 928,2354, +1181,2355,1492,1493,2356,2357,2358,1143,2359, 696,2360, 387, 307,1309, 682, 476, +2361,2362, 332, 12, 222, 156,2363, 232,2364, 641, 276, 656, 517,1494,1495,1035, + 416, 736,1496,2365,1017, 586,2366,2367,2368,1497,2369, 242,2370,2371,2372,1498, +2373, 965, 713,2374,2375,2376,2377, 740, 982,1499, 944,1500,1007,2378,2379,1310, +1501,2380,2381,2382, 785, 329,2383,2384,1502,2385,2386,2387, 932,2388,1503,2389, +2390,2391,2392,1242,2393,2394,2395,2396,2397, 994, 950,2398,2399,2400,2401,1504, +1311,2402,2403,2404,2405,1049, 749,2406,2407, 853, 718,1144,1312,2408,1182,1505, +2409,2410, 255, 516, 479, 564, 550, 214,1506,1507,1313, 413, 239, 444, 339,1145, +1036,1508,1509,1314,1037,1510,1315,2411,1511,2412,2413,2414, 176, 703, 497, 624, + 593, 921, 302,2415, 341, 165,1103,1512,2416,1513,2417,2418,2419, 376,2420, 700, +2421,2422,2423, 258, 768,1316,2424,1183,2425, 995, 608,2426,2427,2428,2429, 221, +2430,2431,2432,2433,2434,2435,2436,2437, 195, 323, 726, 188, 897, 983,1317, 377, + 644,1050, 879,2438, 452,2439,2440,2441,2442,2443,2444, 914,2445,2446,2447,2448, + 915, 489,2449,1514,1184,2450,2451, 515, 64, 427, 495,2452, 583,2453, 483, 485, +1038, 562, 213,1515, 748, 666,2454,2455,2456,2457, 334,2458, 780, 996,1008, 705, +1243,2459,2460,2461,2462,2463, 114,2464, 493,1146, 366, 163,1516, 961,1104,2465, + 291,2466,1318,1105,2467,1517, 365,2468, 355, 951,1244,2469,1319,2470, 631,2471, +2472, 218,1320, 364, 320, 756,1518,1519,1321,1520,1322,2473,2474,2475,2476, 997, +2477,2478,2479,2480, 665,1185,2481, 916,1521,2482,2483,2484, 584, 684,2485,2486, + 797,2487,1051,1186,2488,2489,2490,1522,2491,2492, 370,2493,1039,1187, 65,2494, + 434, 205, 463,1188,2495, 125, 812, 391, 402, 826, 699, 286, 398, 155, 781, 771, + 585,2496, 590, 505,1073,2497, 599, 244, 219, 917,1018, 952, 646,1523,2498,1323, +2499,2500, 49, 984, 354, 741,2501, 625,2502,1324,2503,1019, 190, 357, 757, 491, + 95, 782, 868,2504,2505,2506,2507,2508,2509, 134,1524,1074, 422,1525, 898,2510, + 161,2511,2512,2513,2514, 769,2515,1526,2516,2517, 411,1325,2518, 472,1527,2519, +2520,2521,2522,2523,2524, 985,2525,2526,2527,2528,2529,2530, 764,2531,1245,2532, +2533, 25, 204, 311,2534, 496,2535,1052,2536,2537,2538,2539,2540,2541,2542, 199, + 704, 504, 468, 758, 657,1528, 196, 44, 839,1246, 272, 750,2543, 765, 862,2544, +2545,1326,2546, 132, 615, 933,2547, 732,2548,2549,2550,1189,1529,2551, 283,1247, +1053, 607, 929,2552,2553,2554, 930, 183, 872, 616,1040,1147,2555,1148,1020, 441, + 249,1075,2556,2557,2558, 466, 743,2559,2560,2561, 92, 514, 426, 420, 526,2562, +2563,2564,2565,2566,2567,2568, 185,2569,2570,2571,2572, 776,1530, 658,2573, 362, +2574, 361, 922,1076, 793,2575,2576,2577,2578,2579,2580,1531, 251,2581,2582,2583, +2584,1532, 54, 612, 237,1327,2585,2586, 275, 408, 647, 111,2587,1533,1106, 465, + 3, 458, 9, 38,2588, 107, 110, 890, 209, 26, 737, 498,2589,1534,2590, 431, + 202, 88,1535, 356, 287,1107, 660,1149,2591, 381,1536, 986,1150, 445,1248,1151, + 974,2592,2593, 846,2594, 446, 953, 184,1249,1250, 727,2595, 923, 193, 883,2596, +2597,2598, 102, 324, 539, 817,2599, 421,1041,2600, 832,2601, 94, 175, 197, 406, +2602, 459,2603,2604,2605,2606,2607, 330, 555,2608,2609,2610, 706,1108, 389,2611, +2612,2613,2614, 233,2615, 833, 558, 931, 954,1251,2616,2617,1537, 546,2618,2619, +1009,2620,2621,2622,1538, 690,1328,2623, 955,2624,1539,2625,2626, 772,2627,2628, +2629,2630,2631, 924, 648, 863, 603,2632,2633, 934,1540, 864, 865,2634, 642,1042, + 670,1190,2635,2636,2637,2638, 168,2639, 652, 873, 542,1054,1541,2640,2641,2642, # 512, 256 +) +# fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py new file mode 100644 index 00000000..1fc5de04 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCKRDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import EUCKR_SM_MODEL + + +class EUCKRProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(EUCKR_SM_MODEL) + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "EUC-KR" + + @property + def language(self) -> str: + return "Korean" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py new file mode 100644 index 00000000..4900ccc1 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py @@ -0,0 +1,388 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# EUCTW frequency table +# Converted from big5 work +# by Taiwan's Mandarin Promotion Council +# + +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Idea Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +EUCTW_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +# Char to FreqOrder table +EUCTW_TABLE_SIZE = 5376 + +# fmt: off +EUCTW_CHAR_TO_FREQ_ORDER = ( + 1, 1800, 1506, 255, 1431, 198, 9, 82, 6, 7310, 177, 202, 3615, 1256, 2808, 110, # 2742 + 3735, 33, 3241, 261, 76, 44, 2113, 16, 2931, 2184, 1176, 659, 3868, 26, 3404, 2643, # 2758 + 1198, 3869, 3313, 4060, 410, 2211, 302, 590, 361, 1963, 8, 204, 58, 4296, 7311, 1931, # 2774 + 63, 7312, 7313, 317, 1614, 75, 222, 159, 4061, 2412, 1480, 7314, 3500, 3068, 224, 2809, # 2790 + 3616, 3, 10, 3870, 1471, 29, 2774, 1135, 2852, 1939, 873, 130, 3242, 1123, 312, 7315, # 2806 + 4297, 2051, 507, 252, 682, 7316, 142, 1914, 124, 206, 2932, 34, 3501, 3173, 64, 604, # 2822 + 7317, 2494, 1976, 1977, 155, 1990, 645, 641, 1606, 7318, 3405, 337, 72, 406, 7319, 80, # 2838 + 630, 238, 3174, 1509, 263, 939, 1092, 2644, 756, 1440, 1094, 3406, 449, 69, 2969, 591, # 2854 + 179, 2095, 471, 115, 2034, 1843, 60, 50, 2970, 134, 806, 1868, 734, 2035, 3407, 180, # 2870 + 995, 1607, 156, 537, 2893, 688, 7320, 319, 1305, 779, 2144, 514, 2374, 298, 4298, 359, # 2886 + 2495, 90, 2707, 1338, 663, 11, 906, 1099, 2545, 20, 2436, 182, 532, 1716, 7321, 732, # 2902 + 1376, 4062, 1311, 1420, 3175, 25, 2312, 1056, 113, 399, 382, 1949, 242, 3408, 2467, 529, # 2918 + 3243, 475, 1447, 3617, 7322, 117, 21, 656, 810, 1297, 2295, 2329, 3502, 7323, 126, 4063, # 2934 + 706, 456, 150, 613, 4299, 71, 1118, 2036, 4064, 145, 3069, 85, 835, 486, 2114, 1246, # 2950 + 1426, 428, 727, 1285, 1015, 800, 106, 623, 303, 1281, 7324, 2127, 2354, 347, 3736, 221, # 2966 + 3503, 3110, 7325, 1955, 1153, 4065, 83, 296, 1199, 3070, 192, 624, 93, 7326, 822, 1897, # 2982 + 2810, 3111, 795, 2064, 991, 1554, 1542, 1592, 27, 43, 2853, 859, 139, 1456, 860, 4300, # 2998 + 437, 712, 3871, 164, 2392, 3112, 695, 211, 3017, 2096, 195, 3872, 1608, 3504, 3505, 3618, # 3014 + 3873, 234, 811, 2971, 2097, 3874, 2229, 1441, 3506, 1615, 2375, 668, 2076, 1638, 305, 228, # 3030 + 1664, 4301, 467, 415, 7327, 262, 2098, 1593, 239, 108, 300, 200, 1033, 512, 1247, 2077, # 3046 + 7328, 7329, 2173, 3176, 3619, 2673, 593, 845, 1062, 3244, 88, 1723, 2037, 3875, 1950, 212, # 3062 + 266, 152, 149, 468, 1898, 4066, 4302, 77, 187, 7330, 3018, 37, 5, 2972, 7331, 3876, # 3078 + 7332, 7333, 39, 2517, 4303, 2894, 3177, 2078, 55, 148, 74, 4304, 545, 483, 1474, 1029, # 3094 + 1665, 217, 1869, 1531, 3113, 1104, 2645, 4067, 24, 172, 3507, 900, 3877, 3508, 3509, 4305, # 3110 + 32, 1408, 2811, 1312, 329, 487, 2355, 2247, 2708, 784, 2674, 4, 3019, 3314, 1427, 1788, # 3126 + 188, 109, 499, 7334, 3620, 1717, 1789, 888, 1217, 3020, 4306, 7335, 3510, 7336, 3315, 1520, # 3142 + 3621, 3878, 196, 1034, 775, 7337, 7338, 929, 1815, 249, 439, 38, 7339, 1063, 7340, 794, # 3158 + 3879, 1435, 2296, 46, 178, 3245, 2065, 7341, 2376, 7342, 214, 1709, 4307, 804, 35, 707, # 3174 + 324, 3622, 1601, 2546, 140, 459, 4068, 7343, 7344, 1365, 839, 272, 978, 2257, 2572, 3409, # 3190 + 2128, 1363, 3623, 1423, 697, 100, 3071, 48, 70, 1231, 495, 3114, 2193, 7345, 1294, 7346, # 3206 + 2079, 462, 586, 1042, 3246, 853, 256, 988, 185, 2377, 3410, 1698, 434, 1084, 7347, 3411, # 3222 + 314, 2615, 2775, 4308, 2330, 2331, 569, 2280, 637, 1816, 2518, 757, 1162, 1878, 1616, 3412, # 3238 + 287, 1577, 2115, 768, 4309, 1671, 2854, 3511, 2519, 1321, 3737, 909, 2413, 7348, 4069, 933, # 3254 + 3738, 7349, 2052, 2356, 1222, 4310, 765, 2414, 1322, 786, 4311, 7350, 1919, 1462, 1677, 2895, # 3270 + 1699, 7351, 4312, 1424, 2437, 3115, 3624, 2590, 3316, 1774, 1940, 3413, 3880, 4070, 309, 1369, # 3286 + 1130, 2812, 364, 2230, 1653, 1299, 3881, 3512, 3882, 3883, 2646, 525, 1085, 3021, 902, 2000, # 3302 + 1475, 964, 4313, 421, 1844, 1415, 1057, 2281, 940, 1364, 3116, 376, 4314, 4315, 1381, 7, # 3318 + 2520, 983, 2378, 336, 1710, 2675, 1845, 321, 3414, 559, 1131, 3022, 2742, 1808, 1132, 1313, # 3334 + 265, 1481, 1857, 7352, 352, 1203, 2813, 3247, 167, 1089, 420, 2814, 776, 792, 1724, 3513, # 3350 + 4071, 2438, 3248, 7353, 4072, 7354, 446, 229, 333, 2743, 901, 3739, 1200, 1557, 4316, 2647, # 3366 + 1920, 395, 2744, 2676, 3740, 4073, 1835, 125, 916, 3178, 2616, 4317, 7355, 7356, 3741, 7357, # 3382 + 7358, 7359, 4318, 3117, 3625, 1133, 2547, 1757, 3415, 1510, 2313, 1409, 3514, 7360, 2145, 438, # 3398 + 2591, 2896, 2379, 3317, 1068, 958, 3023, 461, 311, 2855, 2677, 4074, 1915, 3179, 4075, 1978, # 3414 + 383, 750, 2745, 2617, 4076, 274, 539, 385, 1278, 1442, 7361, 1154, 1964, 384, 561, 210, # 3430 + 98, 1295, 2548, 3515, 7362, 1711, 2415, 1482, 3416, 3884, 2897, 1257, 129, 7363, 3742, 642, # 3446 + 523, 2776, 2777, 2648, 7364, 141, 2231, 1333, 68, 176, 441, 876, 907, 4077, 603, 2592, # 3462 + 710, 171, 3417, 404, 549, 18, 3118, 2393, 1410, 3626, 1666, 7365, 3516, 4319, 2898, 4320, # 3478 + 7366, 2973, 368, 7367, 146, 366, 99, 871, 3627, 1543, 748, 807, 1586, 1185, 22, 2258, # 3494 + 379, 3743, 3180, 7368, 3181, 505, 1941, 2618, 1991, 1382, 2314, 7369, 380, 2357, 218, 702, # 3510 + 1817, 1248, 3418, 3024, 3517, 3318, 3249, 7370, 2974, 3628, 930, 3250, 3744, 7371, 59, 7372, # 3526 + 585, 601, 4078, 497, 3419, 1112, 1314, 4321, 1801, 7373, 1223, 1472, 2174, 7374, 749, 1836, # 3542 + 690, 1899, 3745, 1772, 3885, 1476, 429, 1043, 1790, 2232, 2116, 917, 4079, 447, 1086, 1629, # 3558 + 7375, 556, 7376, 7377, 2020, 1654, 844, 1090, 105, 550, 966, 1758, 2815, 1008, 1782, 686, # 3574 + 1095, 7378, 2282, 793, 1602, 7379, 3518, 2593, 4322, 4080, 2933, 2297, 4323, 3746, 980, 2496, # 3590 + 544, 353, 527, 4324, 908, 2678, 2899, 7380, 381, 2619, 1942, 1348, 7381, 1341, 1252, 560, # 3606 + 3072, 7382, 3420, 2856, 7383, 2053, 973, 886, 2080, 143, 4325, 7384, 7385, 157, 3886, 496, # 3622 + 4081, 57, 840, 540, 2038, 4326, 4327, 3421, 2117, 1445, 970, 2259, 1748, 1965, 2081, 4082, # 3638 + 3119, 1234, 1775, 3251, 2816, 3629, 773, 1206, 2129, 1066, 2039, 1326, 3887, 1738, 1725, 4083, # 3654 + 279, 3120, 51, 1544, 2594, 423, 1578, 2130, 2066, 173, 4328, 1879, 7386, 7387, 1583, 264, # 3670 + 610, 3630, 4329, 2439, 280, 154, 7388, 7389, 7390, 1739, 338, 1282, 3073, 693, 2857, 1411, # 3686 + 1074, 3747, 2440, 7391, 4330, 7392, 7393, 1240, 952, 2394, 7394, 2900, 1538, 2679, 685, 1483, # 3702 + 4084, 2468, 1436, 953, 4085, 2054, 4331, 671, 2395, 79, 4086, 2441, 3252, 608, 567, 2680, # 3718 + 3422, 4087, 4088, 1691, 393, 1261, 1791, 2396, 7395, 4332, 7396, 7397, 7398, 7399, 1383, 1672, # 3734 + 3748, 3182, 1464, 522, 1119, 661, 1150, 216, 675, 4333, 3888, 1432, 3519, 609, 4334, 2681, # 3750 + 2397, 7400, 7401, 7402, 4089, 3025, 0, 7403, 2469, 315, 231, 2442, 301, 3319, 4335, 2380, # 3766 + 7404, 233, 4090, 3631, 1818, 4336, 4337, 7405, 96, 1776, 1315, 2082, 7406, 257, 7407, 1809, # 3782 + 3632, 2709, 1139, 1819, 4091, 2021, 1124, 2163, 2778, 1777, 2649, 7408, 3074, 363, 1655, 3183, # 3798 + 7409, 2975, 7410, 7411, 7412, 3889, 1567, 3890, 718, 103, 3184, 849, 1443, 341, 3320, 2934, # 3814 + 1484, 7413, 1712, 127, 67, 339, 4092, 2398, 679, 1412, 821, 7414, 7415, 834, 738, 351, # 3830 + 2976, 2146, 846, 235, 1497, 1880, 418, 1992, 3749, 2710, 186, 1100, 2147, 2746, 3520, 1545, # 3846 + 1355, 2935, 2858, 1377, 583, 3891, 4093, 2573, 2977, 7416, 1298, 3633, 1078, 2549, 3634, 2358, # 3862 + 78, 3750, 3751, 267, 1289, 2099, 2001, 1594, 4094, 348, 369, 1274, 2194, 2175, 1837, 4338, # 3878 + 1820, 2817, 3635, 2747, 2283, 2002, 4339, 2936, 2748, 144, 3321, 882, 4340, 3892, 2749, 3423, # 3894 + 4341, 2901, 7417, 4095, 1726, 320, 7418, 3893, 3026, 788, 2978, 7419, 2818, 1773, 1327, 2859, # 3910 + 3894, 2819, 7420, 1306, 4342, 2003, 1700, 3752, 3521, 2359, 2650, 787, 2022, 506, 824, 3636, # 3926 + 534, 323, 4343, 1044, 3322, 2023, 1900, 946, 3424, 7421, 1778, 1500, 1678, 7422, 1881, 4344, # 3942 + 165, 243, 4345, 3637, 2521, 123, 683, 4096, 764, 4346, 36, 3895, 1792, 589, 2902, 816, # 3958 + 626, 1667, 3027, 2233, 1639, 1555, 1622, 3753, 3896, 7423, 3897, 2860, 1370, 1228, 1932, 891, # 3974 + 2083, 2903, 304, 4097, 7424, 292, 2979, 2711, 3522, 691, 2100, 4098, 1115, 4347, 118, 662, # 3990 + 7425, 611, 1156, 854, 2381, 1316, 2861, 2, 386, 515, 2904, 7426, 7427, 3253, 868, 2234, # 4006 + 1486, 855, 2651, 785, 2212, 3028, 7428, 1040, 3185, 3523, 7429, 3121, 448, 7430, 1525, 7431, # 4022 + 2164, 4348, 7432, 3754, 7433, 4099, 2820, 3524, 3122, 503, 818, 3898, 3123, 1568, 814, 676, # 4038 + 1444, 306, 1749, 7434, 3755, 1416, 1030, 197, 1428, 805, 2821, 1501, 4349, 7435, 7436, 7437, # 4054 + 1993, 7438, 4350, 7439, 7440, 2195, 13, 2779, 3638, 2980, 3124, 1229, 1916, 7441, 3756, 2131, # 4070 + 7442, 4100, 4351, 2399, 3525, 7443, 2213, 1511, 1727, 1120, 7444, 7445, 646, 3757, 2443, 307, # 4086 + 7446, 7447, 1595, 3186, 7448, 7449, 7450, 3639, 1113, 1356, 3899, 1465, 2522, 2523, 7451, 519, # 4102 + 7452, 128, 2132, 92, 2284, 1979, 7453, 3900, 1512, 342, 3125, 2196, 7454, 2780, 2214, 1980, # 4118 + 3323, 7455, 290, 1656, 1317, 789, 827, 2360, 7456, 3758, 4352, 562, 581, 3901, 7457, 401, # 4134 + 4353, 2248, 94, 4354, 1399, 2781, 7458, 1463, 2024, 4355, 3187, 1943, 7459, 828, 1105, 4101, # 4150 + 1262, 1394, 7460, 4102, 605, 4356, 7461, 1783, 2862, 7462, 2822, 819, 2101, 578, 2197, 2937, # 4166 + 7463, 1502, 436, 3254, 4103, 3255, 2823, 3902, 2905, 3425, 3426, 7464, 2712, 2315, 7465, 7466, # 4182 + 2332, 2067, 23, 4357, 193, 826, 3759, 2102, 699, 1630, 4104, 3075, 390, 1793, 1064, 3526, # 4198 + 7467, 1579, 3076, 3077, 1400, 7468, 4105, 1838, 1640, 2863, 7469, 4358, 4359, 137, 4106, 598, # 4214 + 3078, 1966, 780, 104, 974, 2938, 7470, 278, 899, 253, 402, 572, 504, 493, 1339, 7471, # 4230 + 3903, 1275, 4360, 2574, 2550, 7472, 3640, 3029, 3079, 2249, 565, 1334, 2713, 863, 41, 7473, # 4246 + 7474, 4361, 7475, 1657, 2333, 19, 463, 2750, 4107, 606, 7476, 2981, 3256, 1087, 2084, 1323, # 4262 + 2652, 2982, 7477, 1631, 1623, 1750, 4108, 2682, 7478, 2864, 791, 2714, 2653, 2334, 232, 2416, # 4278 + 7479, 2983, 1498, 7480, 2654, 2620, 755, 1366, 3641, 3257, 3126, 2025, 1609, 119, 1917, 3427, # 4294 + 862, 1026, 4109, 7481, 3904, 3760, 4362, 3905, 4363, 2260, 1951, 2470, 7482, 1125, 817, 4110, # 4310 + 4111, 3906, 1513, 1766, 2040, 1487, 4112, 3030, 3258, 2824, 3761, 3127, 7483, 7484, 1507, 7485, # 4326 + 2683, 733, 40, 1632, 1106, 2865, 345, 4113, 841, 2524, 230, 4364, 2984, 1846, 3259, 3428, # 4342 + 7486, 1263, 986, 3429, 7487, 735, 879, 254, 1137, 857, 622, 1300, 1180, 1388, 1562, 3907, # 4358 + 3908, 2939, 967, 2751, 2655, 1349, 592, 2133, 1692, 3324, 2985, 1994, 4114, 1679, 3909, 1901, # 4374 + 2185, 7488, 739, 3642, 2715, 1296, 1290, 7489, 4115, 2198, 2199, 1921, 1563, 2595, 2551, 1870, # 4390 + 2752, 2986, 7490, 435, 7491, 343, 1108, 596, 17, 1751, 4365, 2235, 3430, 3643, 7492, 4366, # 4406 + 294, 3527, 2940, 1693, 477, 979, 281, 2041, 3528, 643, 2042, 3644, 2621, 2782, 2261, 1031, # 4422 + 2335, 2134, 2298, 3529, 4367, 367, 1249, 2552, 7493, 3530, 7494, 4368, 1283, 3325, 2004, 240, # 4438 + 1762, 3326, 4369, 4370, 836, 1069, 3128, 474, 7495, 2148, 2525, 268, 3531, 7496, 3188, 1521, # 4454 + 1284, 7497, 1658, 1546, 4116, 7498, 3532, 3533, 7499, 4117, 3327, 2684, 1685, 4118, 961, 1673, # 4470 + 2622, 190, 2005, 2200, 3762, 4371, 4372, 7500, 570, 2497, 3645, 1490, 7501, 4373, 2623, 3260, # 4486 + 1956, 4374, 584, 1514, 396, 1045, 1944, 7502, 4375, 1967, 2444, 7503, 7504, 4376, 3910, 619, # 4502 + 7505, 3129, 3261, 215, 2006, 2783, 2553, 3189, 4377, 3190, 4378, 763, 4119, 3763, 4379, 7506, # 4518 + 7507, 1957, 1767, 2941, 3328, 3646, 1174, 452, 1477, 4380, 3329, 3130, 7508, 2825, 1253, 2382, # 4534 + 2186, 1091, 2285, 4120, 492, 7509, 638, 1169, 1824, 2135, 1752, 3911, 648, 926, 1021, 1324, # 4550 + 4381, 520, 4382, 997, 847, 1007, 892, 4383, 3764, 2262, 1871, 3647, 7510, 2400, 1784, 4384, # 4566 + 1952, 2942, 3080, 3191, 1728, 4121, 2043, 3648, 4385, 2007, 1701, 3131, 1551, 30, 2263, 4122, # 4582 + 7511, 2026, 4386, 3534, 7512, 501, 7513, 4123, 594, 3431, 2165, 1821, 3535, 3432, 3536, 3192, # 4598 + 829, 2826, 4124, 7514, 1680, 3132, 1225, 4125, 7515, 3262, 4387, 4126, 3133, 2336, 7516, 4388, # 4614 + 4127, 7517, 3912, 3913, 7518, 1847, 2383, 2596, 3330, 7519, 4389, 374, 3914, 652, 4128, 4129, # 4630 + 375, 1140, 798, 7520, 7521, 7522, 2361, 4390, 2264, 546, 1659, 138, 3031, 2445, 4391, 7523, # 4646 + 2250, 612, 1848, 910, 796, 3765, 1740, 1371, 825, 3766, 3767, 7524, 2906, 2554, 7525, 692, # 4662 + 444, 3032, 2624, 801, 4392, 4130, 7526, 1491, 244, 1053, 3033, 4131, 4132, 340, 7527, 3915, # 4678 + 1041, 2987, 293, 1168, 87, 1357, 7528, 1539, 959, 7529, 2236, 721, 694, 4133, 3768, 219, # 4694 + 1478, 644, 1417, 3331, 2656, 1413, 1401, 1335, 1389, 3916, 7530, 7531, 2988, 2362, 3134, 1825, # 4710 + 730, 1515, 184, 2827, 66, 4393, 7532, 1660, 2943, 246, 3332, 378, 1457, 226, 3433, 975, # 4726 + 3917, 2944, 1264, 3537, 674, 696, 7533, 163, 7534, 1141, 2417, 2166, 713, 3538, 3333, 4394, # 4742 + 3918, 7535, 7536, 1186, 15, 7537, 1079, 1070, 7538, 1522, 3193, 3539, 276, 1050, 2716, 758, # 4758 + 1126, 653, 2945, 3263, 7539, 2337, 889, 3540, 3919, 3081, 2989, 903, 1250, 4395, 3920, 3434, # 4774 + 3541, 1342, 1681, 1718, 766, 3264, 286, 89, 2946, 3649, 7540, 1713, 7541, 2597, 3334, 2990, # 4790 + 7542, 2947, 2215, 3194, 2866, 7543, 4396, 2498, 2526, 181, 387, 1075, 3921, 731, 2187, 3335, # 4806 + 7544, 3265, 310, 313, 3435, 2299, 770, 4134, 54, 3034, 189, 4397, 3082, 3769, 3922, 7545, # 4822 + 1230, 1617, 1849, 355, 3542, 4135, 4398, 3336, 111, 4136, 3650, 1350, 3135, 3436, 3035, 4137, # 4838 + 2149, 3266, 3543, 7546, 2784, 3923, 3924, 2991, 722, 2008, 7547, 1071, 247, 1207, 2338, 2471, # 4854 + 1378, 4399, 2009, 864, 1437, 1214, 4400, 373, 3770, 1142, 2216, 667, 4401, 442, 2753, 2555, # 4870 + 3771, 3925, 1968, 4138, 3267, 1839, 837, 170, 1107, 934, 1336, 1882, 7548, 7549, 2118, 4139, # 4886 + 2828, 743, 1569, 7550, 4402, 4140, 582, 2384, 1418, 3437, 7551, 1802, 7552, 357, 1395, 1729, # 4902 + 3651, 3268, 2418, 1564, 2237, 7553, 3083, 3772, 1633, 4403, 1114, 2085, 4141, 1532, 7554, 482, # 4918 + 2446, 4404, 7555, 7556, 1492, 833, 1466, 7557, 2717, 3544, 1641, 2829, 7558, 1526, 1272, 3652, # 4934 + 4142, 1686, 1794, 416, 2556, 1902, 1953, 1803, 7559, 3773, 2785, 3774, 1159, 2316, 7560, 2867, # 4950 + 4405, 1610, 1584, 3036, 2419, 2754, 443, 3269, 1163, 3136, 7561, 7562, 3926, 7563, 4143, 2499, # 4966 + 3037, 4406, 3927, 3137, 2103, 1647, 3545, 2010, 1872, 4144, 7564, 4145, 431, 3438, 7565, 250, # 4982 + 97, 81, 4146, 7566, 1648, 1850, 1558, 160, 848, 7567, 866, 740, 1694, 7568, 2201, 2830, # 4998 + 3195, 4147, 4407, 3653, 1687, 950, 2472, 426, 469, 3196, 3654, 3655, 3928, 7569, 7570, 1188, # 5014 + 424, 1995, 861, 3546, 4148, 3775, 2202, 2685, 168, 1235, 3547, 4149, 7571, 2086, 1674, 4408, # 5030 + 3337, 3270, 220, 2557, 1009, 7572, 3776, 670, 2992, 332, 1208, 717, 7573, 7574, 3548, 2447, # 5046 + 3929, 3338, 7575, 513, 7576, 1209, 2868, 3339, 3138, 4409, 1080, 7577, 7578, 7579, 7580, 2527, # 5062 + 3656, 3549, 815, 1587, 3930, 3931, 7581, 3550, 3439, 3777, 1254, 4410, 1328, 3038, 1390, 3932, # 5078 + 1741, 3933, 3778, 3934, 7582, 236, 3779, 2448, 3271, 7583, 7584, 3657, 3780, 1273, 3781, 4411, # 5094 + 7585, 308, 7586, 4412, 245, 4413, 1851, 2473, 1307, 2575, 430, 715, 2136, 2449, 7587, 270, # 5110 + 199, 2869, 3935, 7588, 3551, 2718, 1753, 761, 1754, 725, 1661, 1840, 4414, 3440, 3658, 7589, # 5126 + 7590, 587, 14, 3272, 227, 2598, 326, 480, 2265, 943, 2755, 3552, 291, 650, 1883, 7591, # 5142 + 1702, 1226, 102, 1547, 62, 3441, 904, 4415, 3442, 1164, 4150, 7592, 7593, 1224, 1548, 2756, # 5158 + 391, 498, 1493, 7594, 1386, 1419, 7595, 2055, 1177, 4416, 813, 880, 1081, 2363, 566, 1145, # 5174 + 4417, 2286, 1001, 1035, 2558, 2599, 2238, 394, 1286, 7596, 7597, 2068, 7598, 86, 1494, 1730, # 5190 + 3936, 491, 1588, 745, 897, 2948, 843, 3340, 3937, 2757, 2870, 3273, 1768, 998, 2217, 2069, # 5206 + 397, 1826, 1195, 1969, 3659, 2993, 3341, 284, 7599, 3782, 2500, 2137, 2119, 1903, 7600, 3938, # 5222 + 2150, 3939, 4151, 1036, 3443, 1904, 114, 2559, 4152, 209, 1527, 7601, 7602, 2949, 2831, 2625, # 5238 + 2385, 2719, 3139, 812, 2560, 7603, 3274, 7604, 1559, 737, 1884, 3660, 1210, 885, 28, 2686, # 5254 + 3553, 3783, 7605, 4153, 1004, 1779, 4418, 7606, 346, 1981, 2218, 2687, 4419, 3784, 1742, 797, # 5270 + 1642, 3940, 1933, 1072, 1384, 2151, 896, 3941, 3275, 3661, 3197, 2871, 3554, 7607, 2561, 1958, # 5286 + 4420, 2450, 1785, 7608, 7609, 7610, 3942, 4154, 1005, 1308, 3662, 4155, 2720, 4421, 4422, 1528, # 5302 + 2600, 161, 1178, 4156, 1982, 987, 4423, 1101, 4157, 631, 3943, 1157, 3198, 2420, 1343, 1241, # 5318 + 1016, 2239, 2562, 372, 877, 2339, 2501, 1160, 555, 1934, 911, 3944, 7611, 466, 1170, 169, # 5334 + 1051, 2907, 2688, 3663, 2474, 2994, 1182, 2011, 2563, 1251, 2626, 7612, 992, 2340, 3444, 1540, # 5350 + 2721, 1201, 2070, 2401, 1996, 2475, 7613, 4424, 528, 1922, 2188, 1503, 1873, 1570, 2364, 3342, # 5366 + 3276, 7614, 557, 1073, 7615, 1827, 3445, 2087, 2266, 3140, 3039, 3084, 767, 3085, 2786, 4425, # 5382 + 1006, 4158, 4426, 2341, 1267, 2176, 3664, 3199, 778, 3945, 3200, 2722, 1597, 2657, 7616, 4427, # 5398 + 7617, 3446, 7618, 7619, 7620, 3277, 2689, 1433, 3278, 131, 95, 1504, 3946, 723, 4159, 3141, # 5414 + 1841, 3555, 2758, 2189, 3947, 2027, 2104, 3665, 7621, 2995, 3948, 1218, 7622, 3343, 3201, 3949, # 5430 + 4160, 2576, 248, 1634, 3785, 912, 7623, 2832, 3666, 3040, 3786, 654, 53, 7624, 2996, 7625, # 5446 + 1688, 4428, 777, 3447, 1032, 3950, 1425, 7626, 191, 820, 2120, 2833, 971, 4429, 931, 3202, # 5462 + 135, 664, 783, 3787, 1997, 772, 2908, 1935, 3951, 3788, 4430, 2909, 3203, 282, 2723, 640, # 5478 + 1372, 3448, 1127, 922, 325, 3344, 7627, 7628, 711, 2044, 7629, 7630, 3952, 2219, 2787, 1936, # 5494 + 3953, 3345, 2220, 2251, 3789, 2300, 7631, 4431, 3790, 1258, 3279, 3954, 3204, 2138, 2950, 3955, # 5510 + 3956, 7632, 2221, 258, 3205, 4432, 101, 1227, 7633, 3280, 1755, 7634, 1391, 3281, 7635, 2910, # 5526 + 2056, 893, 7636, 7637, 7638, 1402, 4161, 2342, 7639, 7640, 3206, 3556, 7641, 7642, 878, 1325, # 5542 + 1780, 2788, 4433, 259, 1385, 2577, 744, 1183, 2267, 4434, 7643, 3957, 2502, 7644, 684, 1024, # 5558 + 4162, 7645, 472, 3557, 3449, 1165, 3282, 3958, 3959, 322, 2152, 881, 455, 1695, 1152, 1340, # 5574 + 660, 554, 2153, 4435, 1058, 4436, 4163, 830, 1065, 3346, 3960, 4437, 1923, 7646, 1703, 1918, # 5590 + 7647, 932, 2268, 122, 7648, 4438, 947, 677, 7649, 3791, 2627, 297, 1905, 1924, 2269, 4439, # 5606 + 2317, 3283, 7650, 7651, 4164, 7652, 4165, 84, 4166, 112, 989, 7653, 547, 1059, 3961, 701, # 5622 + 3558, 1019, 7654, 4167, 7655, 3450, 942, 639, 457, 2301, 2451, 993, 2951, 407, 851, 494, # 5638 + 4440, 3347, 927, 7656, 1237, 7657, 2421, 3348, 573, 4168, 680, 921, 2911, 1279, 1874, 285, # 5654 + 790, 1448, 1983, 719, 2167, 7658, 7659, 4441, 3962, 3963, 1649, 7660, 1541, 563, 7661, 1077, # 5670 + 7662, 3349, 3041, 3451, 511, 2997, 3964, 3965, 3667, 3966, 1268, 2564, 3350, 3207, 4442, 4443, # 5686 + 7663, 535, 1048, 1276, 1189, 2912, 2028, 3142, 1438, 1373, 2834, 2952, 1134, 2012, 7664, 4169, # 5702 + 1238, 2578, 3086, 1259, 7665, 700, 7666, 2953, 3143, 3668, 4170, 7667, 4171, 1146, 1875, 1906, # 5718 + 4444, 2601, 3967, 781, 2422, 132, 1589, 203, 147, 273, 2789, 2402, 898, 1786, 2154, 3968, # 5734 + 3969, 7668, 3792, 2790, 7669, 7670, 4445, 4446, 7671, 3208, 7672, 1635, 3793, 965, 7673, 1804, # 5750 + 2690, 1516, 3559, 1121, 1082, 1329, 3284, 3970, 1449, 3794, 65, 1128, 2835, 2913, 2759, 1590, # 5766 + 3795, 7674, 7675, 12, 2658, 45, 976, 2579, 3144, 4447, 517, 2528, 1013, 1037, 3209, 7676, # 5782 + 3796, 2836, 7677, 3797, 7678, 3452, 7679, 2602, 614, 1998, 2318, 3798, 3087, 2724, 2628, 7680, # 5798 + 2580, 4172, 599, 1269, 7681, 1810, 3669, 7682, 2691, 3088, 759, 1060, 489, 1805, 3351, 3285, # 5814 + 1358, 7683, 7684, 2386, 1387, 1215, 2629, 2252, 490, 7685, 7686, 4173, 1759, 2387, 2343, 7687, # 5830 + 4448, 3799, 1907, 3971, 2630, 1806, 3210, 4449, 3453, 3286, 2760, 2344, 874, 7688, 7689, 3454, # 5846 + 3670, 1858, 91, 2914, 3671, 3042, 3800, 4450, 7690, 3145, 3972, 2659, 7691, 3455, 1202, 1403, # 5862 + 3801, 2954, 2529, 1517, 2503, 4451, 3456, 2504, 7692, 4452, 7693, 2692, 1885, 1495, 1731, 3973, # 5878 + 2365, 4453, 7694, 2029, 7695, 7696, 3974, 2693, 1216, 237, 2581, 4174, 2319, 3975, 3802, 4454, # 5894 + 4455, 2694, 3560, 3457, 445, 4456, 7697, 7698, 7699, 7700, 2761, 61, 3976, 3672, 1822, 3977, # 5910 + 7701, 687, 2045, 935, 925, 405, 2660, 703, 1096, 1859, 2725, 4457, 3978, 1876, 1367, 2695, # 5926 + 3352, 918, 2105, 1781, 2476, 334, 3287, 1611, 1093, 4458, 564, 3146, 3458, 3673, 3353, 945, # 5942 + 2631, 2057, 4459, 7702, 1925, 872, 4175, 7703, 3459, 2696, 3089, 349, 4176, 3674, 3979, 4460, # 5958 + 3803, 4177, 3675, 2155, 3980, 4461, 4462, 4178, 4463, 2403, 2046, 782, 3981, 400, 251, 4179, # 5974 + 1624, 7704, 7705, 277, 3676, 299, 1265, 476, 1191, 3804, 2121, 4180, 4181, 1109, 205, 7706, # 5990 + 2582, 1000, 2156, 3561, 1860, 7707, 7708, 7709, 4464, 7710, 4465, 2565, 107, 2477, 2157, 3982, # 6006 + 3460, 3147, 7711, 1533, 541, 1301, 158, 753, 4182, 2872, 3562, 7712, 1696, 370, 1088, 4183, # 6022 + 4466, 3563, 579, 327, 440, 162, 2240, 269, 1937, 1374, 3461, 968, 3043, 56, 1396, 3090, # 6038 + 2106, 3288, 3354, 7713, 1926, 2158, 4467, 2998, 7714, 3564, 7715, 7716, 3677, 4468, 2478, 7717, # 6054 + 2791, 7718, 1650, 4469, 7719, 2603, 7720, 7721, 3983, 2661, 3355, 1149, 3356, 3984, 3805, 3985, # 6070 + 7722, 1076, 49, 7723, 951, 3211, 3289, 3290, 450, 2837, 920, 7724, 1811, 2792, 2366, 4184, # 6086 + 1908, 1138, 2367, 3806, 3462, 7725, 3212, 4470, 1909, 1147, 1518, 2423, 4471, 3807, 7726, 4472, # 6102 + 2388, 2604, 260, 1795, 3213, 7727, 7728, 3808, 3291, 708, 7729, 3565, 1704, 7730, 3566, 1351, # 6118 + 1618, 3357, 2999, 1886, 944, 4185, 3358, 4186, 3044, 3359, 4187, 7731, 3678, 422, 413, 1714, # 6134 + 3292, 500, 2058, 2345, 4188, 2479, 7732, 1344, 1910, 954, 7733, 1668, 7734, 7735, 3986, 2404, # 6150 + 4189, 3567, 3809, 4190, 7736, 2302, 1318, 2505, 3091, 133, 3092, 2873, 4473, 629, 31, 2838, # 6166 + 2697, 3810, 4474, 850, 949, 4475, 3987, 2955, 1732, 2088, 4191, 1496, 1852, 7737, 3988, 620, # 6182 + 3214, 981, 1242, 3679, 3360, 1619, 3680, 1643, 3293, 2139, 2452, 1970, 1719, 3463, 2168, 7738, # 6198 + 3215, 7739, 7740, 3361, 1828, 7741, 1277, 4476, 1565, 2047, 7742, 1636, 3568, 3093, 7743, 869, # 6214 + 2839, 655, 3811, 3812, 3094, 3989, 3000, 3813, 1310, 3569, 4477, 7744, 7745, 7746, 1733, 558, # 6230 + 4478, 3681, 335, 1549, 3045, 1756, 4192, 3682, 1945, 3464, 1829, 1291, 1192, 470, 2726, 2107, # 6246 + 2793, 913, 1054, 3990, 7747, 1027, 7748, 3046, 3991, 4479, 982, 2662, 3362, 3148, 3465, 3216, # 6262 + 3217, 1946, 2794, 7749, 571, 4480, 7750, 1830, 7751, 3570, 2583, 1523, 2424, 7752, 2089, 984, # 6278 + 4481, 3683, 1959, 7753, 3684, 852, 923, 2795, 3466, 3685, 969, 1519, 999, 2048, 2320, 1705, # 6294 + 7754, 3095, 615, 1662, 151, 597, 3992, 2405, 2321, 1049, 275, 4482, 3686, 4193, 568, 3687, # 6310 + 3571, 2480, 4194, 3688, 7755, 2425, 2270, 409, 3218, 7756, 1566, 2874, 3467, 1002, 769, 2840, # 6326 + 194, 2090, 3149, 3689, 2222, 3294, 4195, 628, 1505, 7757, 7758, 1763, 2177, 3001, 3993, 521, # 6342 + 1161, 2584, 1787, 2203, 2406, 4483, 3994, 1625, 4196, 4197, 412, 42, 3096, 464, 7759, 2632, # 6358 + 4484, 3363, 1760, 1571, 2875, 3468, 2530, 1219, 2204, 3814, 2633, 2140, 2368, 4485, 4486, 3295, # 6374 + 1651, 3364, 3572, 7760, 7761, 3573, 2481, 3469, 7762, 3690, 7763, 7764, 2271, 2091, 460, 7765, # 6390 + 4487, 7766, 3002, 962, 588, 3574, 289, 3219, 2634, 1116, 52, 7767, 3047, 1796, 7768, 7769, # 6406 + 7770, 1467, 7771, 1598, 1143, 3691, 4198, 1984, 1734, 1067, 4488, 1280, 3365, 465, 4489, 1572, # 6422 + 510, 7772, 1927, 2241, 1812, 1644, 3575, 7773, 4490, 3692, 7774, 7775, 2663, 1573, 1534, 7776, # 6438 + 7777, 4199, 536, 1807, 1761, 3470, 3815, 3150, 2635, 7778, 7779, 7780, 4491, 3471, 2915, 1911, # 6454 + 2796, 7781, 3296, 1122, 377, 3220, 7782, 360, 7783, 7784, 4200, 1529, 551, 7785, 2059, 3693, # 6470 + 1769, 2426, 7786, 2916, 4201, 3297, 3097, 2322, 2108, 2030, 4492, 1404, 136, 1468, 1479, 672, # 6486 + 1171, 3221, 2303, 271, 3151, 7787, 2762, 7788, 2049, 678, 2727, 865, 1947, 4493, 7789, 2013, # 6502 + 3995, 2956, 7790, 2728, 2223, 1397, 3048, 3694, 4494, 4495, 1735, 2917, 3366, 3576, 7791, 3816, # 6518 + 509, 2841, 2453, 2876, 3817, 7792, 7793, 3152, 3153, 4496, 4202, 2531, 4497, 2304, 1166, 1010, # 6534 + 552, 681, 1887, 7794, 7795, 2957, 2958, 3996, 1287, 1596, 1861, 3154, 358, 453, 736, 175, # 6550 + 478, 1117, 905, 1167, 1097, 7796, 1853, 1530, 7797, 1706, 7798, 2178, 3472, 2287, 3695, 3473, # 6566 + 3577, 4203, 2092, 4204, 7799, 3367, 1193, 2482, 4205, 1458, 2190, 2205, 1862, 1888, 1421, 3298, # 6582 + 2918, 3049, 2179, 3474, 595, 2122, 7800, 3997, 7801, 7802, 4206, 1707, 2636, 223, 3696, 1359, # 6598 + 751, 3098, 183, 3475, 7803, 2797, 3003, 419, 2369, 633, 704, 3818, 2389, 241, 7804, 7805, # 6614 + 7806, 838, 3004, 3697, 2272, 2763, 2454, 3819, 1938, 2050, 3998, 1309, 3099, 2242, 1181, 7807, # 6630 + 1136, 2206, 3820, 2370, 1446, 4207, 2305, 4498, 7808, 7809, 4208, 1055, 2605, 484, 3698, 7810, # 6646 + 3999, 625, 4209, 2273, 3368, 1499, 4210, 4000, 7811, 4001, 4211, 3222, 2274, 2275, 3476, 7812, # 6662 + 7813, 2764, 808, 2606, 3699, 3369, 4002, 4212, 3100, 2532, 526, 3370, 3821, 4213, 955, 7814, # 6678 + 1620, 4214, 2637, 2427, 7815, 1429, 3700, 1669, 1831, 994, 928, 7816, 3578, 1260, 7817, 7818, # 6694 + 7819, 1948, 2288, 741, 2919, 1626, 4215, 2729, 2455, 867, 1184, 362, 3371, 1392, 7820, 7821, # 6710 + 4003, 4216, 1770, 1736, 3223, 2920, 4499, 4500, 1928, 2698, 1459, 1158, 7822, 3050, 3372, 2877, # 6726 + 1292, 1929, 2506, 2842, 3701, 1985, 1187, 2071, 2014, 2607, 4217, 7823, 2566, 2507, 2169, 3702, # 6742 + 2483, 3299, 7824, 3703, 4501, 7825, 7826, 666, 1003, 3005, 1022, 3579, 4218, 7827, 4502, 1813, # 6758 + 2253, 574, 3822, 1603, 295, 1535, 705, 3823, 4219, 283, 858, 417, 7828, 7829, 3224, 4503, # 6774 + 4504, 3051, 1220, 1889, 1046, 2276, 2456, 4004, 1393, 1599, 689, 2567, 388, 4220, 7830, 2484, # 6790 + 802, 7831, 2798, 3824, 2060, 1405, 2254, 7832, 4505, 3825, 2109, 1052, 1345, 3225, 1585, 7833, # 6806 + 809, 7834, 7835, 7836, 575, 2730, 3477, 956, 1552, 1469, 1144, 2323, 7837, 2324, 1560, 2457, # 6822 + 3580, 3226, 4005, 616, 2207, 3155, 2180, 2289, 7838, 1832, 7839, 3478, 4506, 7840, 1319, 3704, # 6838 + 3705, 1211, 3581, 1023, 3227, 1293, 2799, 7841, 7842, 7843, 3826, 607, 2306, 3827, 762, 2878, # 6854 + 1439, 4221, 1360, 7844, 1485, 3052, 7845, 4507, 1038, 4222, 1450, 2061, 2638, 4223, 1379, 4508, # 6870 + 2585, 7846, 7847, 4224, 1352, 1414, 2325, 2921, 1172, 7848, 7849, 3828, 3829, 7850, 1797, 1451, # 6886 + 7851, 7852, 7853, 7854, 2922, 4006, 4007, 2485, 2346, 411, 4008, 4009, 3582, 3300, 3101, 4509, # 6902 + 1561, 2664, 1452, 4010, 1375, 7855, 7856, 47, 2959, 316, 7857, 1406, 1591, 2923, 3156, 7858, # 6918 + 1025, 2141, 3102, 3157, 354, 2731, 884, 2224, 4225, 2407, 508, 3706, 726, 3583, 996, 2428, # 6934 + 3584, 729, 7859, 392, 2191, 1453, 4011, 4510, 3707, 7860, 7861, 2458, 3585, 2608, 1675, 2800, # 6950 + 919, 2347, 2960, 2348, 1270, 4511, 4012, 73, 7862, 7863, 647, 7864, 3228, 2843, 2255, 1550, # 6966 + 1346, 3006, 7865, 1332, 883, 3479, 7866, 7867, 7868, 7869, 3301, 2765, 7870, 1212, 831, 1347, # 6982 + 4226, 4512, 2326, 3830, 1863, 3053, 720, 3831, 4513, 4514, 3832, 7871, 4227, 7872, 7873, 4515, # 6998 + 7874, 7875, 1798, 4516, 3708, 2609, 4517, 3586, 1645, 2371, 7876, 7877, 2924, 669, 2208, 2665, # 7014 + 2429, 7878, 2879, 7879, 7880, 1028, 3229, 7881, 4228, 2408, 7882, 2256, 1353, 7883, 7884, 4518, # 7030 + 3158, 518, 7885, 4013, 7886, 4229, 1960, 7887, 2142, 4230, 7888, 7889, 3007, 2349, 2350, 3833, # 7046 + 516, 1833, 1454, 4014, 2699, 4231, 4519, 2225, 2610, 1971, 1129, 3587, 7890, 2766, 7891, 2961, # 7062 + 1422, 577, 1470, 3008, 1524, 3373, 7892, 7893, 432, 4232, 3054, 3480, 7894, 2586, 1455, 2508, # 7078 + 2226, 1972, 1175, 7895, 1020, 2732, 4015, 3481, 4520, 7896, 2733, 7897, 1743, 1361, 3055, 3482, # 7094 + 2639, 4016, 4233, 4521, 2290, 895, 924, 4234, 2170, 331, 2243, 3056, 166, 1627, 3057, 1098, # 7110 + 7898, 1232, 2880, 2227, 3374, 4522, 657, 403, 1196, 2372, 542, 3709, 3375, 1600, 4235, 3483, # 7126 + 7899, 4523, 2767, 3230, 576, 530, 1362, 7900, 4524, 2533, 2666, 3710, 4017, 7901, 842, 3834, # 7142 + 7902, 2801, 2031, 1014, 4018, 213, 2700, 3376, 665, 621, 4236, 7903, 3711, 2925, 2430, 7904, # 7158 + 2431, 3302, 3588, 3377, 7905, 4237, 2534, 4238, 4525, 3589, 1682, 4239, 3484, 1380, 7906, 724, # 7174 + 2277, 600, 1670, 7907, 1337, 1233, 4526, 3103, 2244, 7908, 1621, 4527, 7909, 651, 4240, 7910, # 7190 + 1612, 4241, 2611, 7911, 2844, 7912, 2734, 2307, 3058, 7913, 716, 2459, 3059, 174, 1255, 2701, # 7206 + 4019, 3590, 548, 1320, 1398, 728, 4020, 1574, 7914, 1890, 1197, 3060, 4021, 7915, 3061, 3062, # 7222 + 3712, 3591, 3713, 747, 7916, 635, 4242, 4528, 7917, 7918, 7919, 4243, 7920, 7921, 4529, 7922, # 7238 + 3378, 4530, 2432, 451, 7923, 3714, 2535, 2072, 4244, 2735, 4245, 4022, 7924, 1764, 4531, 7925, # 7254 + 4246, 350, 7926, 2278, 2390, 2486, 7927, 4247, 4023, 2245, 1434, 4024, 488, 4532, 458, 4248, # 7270 + 4025, 3715, 771, 1330, 2391, 3835, 2568, 3159, 2159, 2409, 1553, 2667, 3160, 4249, 7928, 2487, # 7286 + 2881, 2612, 1720, 2702, 4250, 3379, 4533, 7929, 2536, 4251, 7930, 3231, 4252, 2768, 7931, 2015, # 7302 + 2736, 7932, 1155, 1017, 3716, 3836, 7933, 3303, 2308, 201, 1864, 4253, 1430, 7934, 4026, 7935, # 7318 + 7936, 7937, 7938, 7939, 4254, 1604, 7940, 414, 1865, 371, 2587, 4534, 4535, 3485, 2016, 3104, # 7334 + 4536, 1708, 960, 4255, 887, 389, 2171, 1536, 1663, 1721, 7941, 2228, 4027, 2351, 2926, 1580, # 7350 + 7942, 7943, 7944, 1744, 7945, 2537, 4537, 4538, 7946, 4539, 7947, 2073, 7948, 7949, 3592, 3380, # 7366 + 2882, 4256, 7950, 4257, 2640, 3381, 2802, 673, 2703, 2460, 709, 3486, 4028, 3593, 4258, 7951, # 7382 + 1148, 502, 634, 7952, 7953, 1204, 4540, 3594, 1575, 4541, 2613, 3717, 7954, 3718, 3105, 948, # 7398 + 3232, 121, 1745, 3837, 1110, 7955, 4259, 3063, 2509, 3009, 4029, 3719, 1151, 1771, 3838, 1488, # 7414 + 4030, 1986, 7956, 2433, 3487, 7957, 7958, 2093, 7959, 4260, 3839, 1213, 1407, 2803, 531, 2737, # 7430 + 2538, 3233, 1011, 1537, 7960, 2769, 4261, 3106, 1061, 7961, 3720, 3721, 1866, 2883, 7962, 2017, # 7446 + 120, 4262, 4263, 2062, 3595, 3234, 2309, 3840, 2668, 3382, 1954, 4542, 7963, 7964, 3488, 1047, # 7462 + 2704, 1266, 7965, 1368, 4543, 2845, 649, 3383, 3841, 2539, 2738, 1102, 2846, 2669, 7966, 7967, # 7478 + 1999, 7968, 1111, 3596, 2962, 7969, 2488, 3842, 3597, 2804, 1854, 3384, 3722, 7970, 7971, 3385, # 7494 + 2410, 2884, 3304, 3235, 3598, 7972, 2569, 7973, 3599, 2805, 4031, 1460, 856, 7974, 3600, 7975, # 7510 + 2885, 2963, 7976, 2886, 3843, 7977, 4264, 632, 2510, 875, 3844, 1697, 3845, 2291, 7978, 7979, # 7526 + 4544, 3010, 1239, 580, 4545, 4265, 7980, 914, 936, 2074, 1190, 4032, 1039, 2123, 7981, 7982, # 7542 + 7983, 3386, 1473, 7984, 1354, 4266, 3846, 7985, 2172, 3064, 4033, 915, 3305, 4267, 4268, 3306, # 7558 + 1605, 1834, 7986, 2739, 398, 3601, 4269, 3847, 4034, 328, 1912, 2847, 4035, 3848, 1331, 4270, # 7574 + 3011, 937, 4271, 7987, 3602, 4036, 4037, 3387, 2160, 4546, 3388, 524, 742, 538, 3065, 1012, # 7590 + 7988, 7989, 3849, 2461, 7990, 658, 1103, 225, 3850, 7991, 7992, 4547, 7993, 4548, 7994, 3236, # 7606 + 1243, 7995, 4038, 963, 2246, 4549, 7996, 2705, 3603, 3161, 7997, 7998, 2588, 2327, 7999, 4550, # 7622 + 8000, 8001, 8002, 3489, 3307, 957, 3389, 2540, 2032, 1930, 2927, 2462, 870, 2018, 3604, 1746, # 7638 + 2770, 2771, 2434, 2463, 8003, 3851, 8004, 3723, 3107, 3724, 3490, 3390, 3725, 8005, 1179, 3066, # 7654 + 8006, 3162, 2373, 4272, 3726, 2541, 3163, 3108, 2740, 4039, 8007, 3391, 1556, 2542, 2292, 977, # 7670 + 2887, 2033, 4040, 1205, 3392, 8008, 1765, 3393, 3164, 2124, 1271, 1689, 714, 4551, 3491, 8009, # 7686 + 2328, 3852, 533, 4273, 3605, 2181, 617, 8010, 2464, 3308, 3492, 2310, 8011, 8012, 3165, 8013, # 7702 + 8014, 3853, 1987, 618, 427, 2641, 3493, 3394, 8015, 8016, 1244, 1690, 8017, 2806, 4274, 4552, # 7718 + 8018, 3494, 8019, 8020, 2279, 1576, 473, 3606, 4275, 3395, 972, 8021, 3607, 8022, 3067, 8023, # 7734 + 8024, 4553, 4554, 8025, 3727, 4041, 4042, 8026, 153, 4555, 356, 8027, 1891, 2888, 4276, 2143, # 7750 + 408, 803, 2352, 8028, 3854, 8029, 4277, 1646, 2570, 2511, 4556, 4557, 3855, 8030, 3856, 4278, # 7766 + 8031, 2411, 3396, 752, 8032, 8033, 1961, 2964, 8034, 746, 3012, 2465, 8035, 4279, 3728, 698, # 7782 + 4558, 1892, 4280, 3608, 2543, 4559, 3609, 3857, 8036, 3166, 3397, 8037, 1823, 1302, 4043, 2706, # 7798 + 3858, 1973, 4281, 8038, 4282, 3167, 823, 1303, 1288, 1236, 2848, 3495, 4044, 3398, 774, 3859, # 7814 + 8039, 1581, 4560, 1304, 2849, 3860, 4561, 8040, 2435, 2161, 1083, 3237, 4283, 4045, 4284, 344, # 7830 + 1173, 288, 2311, 454, 1683, 8041, 8042, 1461, 4562, 4046, 2589, 8043, 8044, 4563, 985, 894, # 7846 + 8045, 3399, 3168, 8046, 1913, 2928, 3729, 1988, 8047, 2110, 1974, 8048, 4047, 8049, 2571, 1194, # 7862 + 425, 8050, 4564, 3169, 1245, 3730, 4285, 8051, 8052, 2850, 8053, 636, 4565, 1855, 3861, 760, # 7878 + 1799, 8054, 4286, 2209, 1508, 4566, 4048, 1893, 1684, 2293, 8055, 8056, 8057, 4287, 4288, 2210, # 7894 + 479, 8058, 8059, 832, 8060, 4049, 2489, 8061, 2965, 2490, 3731, 990, 3109, 627, 1814, 2642, # 7910 + 4289, 1582, 4290, 2125, 2111, 3496, 4567, 8062, 799, 4291, 3170, 8063, 4568, 2112, 1737, 3013, # 7926 + 1018, 543, 754, 4292, 3309, 1676, 4569, 4570, 4050, 8064, 1489, 8065, 3497, 8066, 2614, 2889, # 7942 + 4051, 8067, 8068, 2966, 8069, 8070, 8071, 8072, 3171, 4571, 4572, 2182, 1722, 8073, 3238, 3239, # 7958 + 1842, 3610, 1715, 481, 365, 1975, 1856, 8074, 8075, 1962, 2491, 4573, 8076, 2126, 3611, 3240, # 7974 + 433, 1894, 2063, 2075, 8077, 602, 2741, 8078, 8079, 8080, 8081, 8082, 3014, 1628, 3400, 8083, # 7990 + 3172, 4574, 4052, 2890, 4575, 2512, 8084, 2544, 2772, 8085, 8086, 8087, 3310, 4576, 2891, 8088, # 8006 + 4577, 8089, 2851, 4578, 4579, 1221, 2967, 4053, 2513, 8090, 8091, 8092, 1867, 1989, 8093, 8094, # 8022 + 8095, 1895, 8096, 8097, 4580, 1896, 4054, 318, 8098, 2094, 4055, 4293, 8099, 8100, 485, 8101, # 8038 + 938, 3862, 553, 2670, 116, 8102, 3863, 3612, 8103, 3498, 2671, 2773, 3401, 3311, 2807, 8104, # 8054 + 3613, 2929, 4056, 1747, 2930, 2968, 8105, 8106, 207, 8107, 8108, 2672, 4581, 2514, 8109, 3015, # 8070 + 890, 3614, 3864, 8110, 1877, 3732, 3402, 8111, 2183, 2353, 3403, 1652, 8112, 8113, 8114, 941, # 8086 + 2294, 208, 3499, 4057, 2019, 330, 4294, 3865, 2892, 2492, 3733, 4295, 8115, 8116, 8117, 8118, # 8102 +) +# fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py new file mode 100644 index 00000000..a37ab189 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCTWDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import EUCTW_SM_MODEL + + +class EUCTWProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(EUCTW_SM_MODEL) + self.distribution_analyzer = EUCTWDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "EUC-TW" + + @property + def language(self) -> str: + return "Taiwan" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py new file mode 100644 index 00000000..b32bfc74 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py @@ -0,0 +1,284 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# GB2312 most frequently used character table +# +# Char to FreqOrder table , from hz6763 + +# 512 --> 0.79 -- 0.79 +# 1024 --> 0.92 -- 0.13 +# 2048 --> 0.98 -- 0.06 +# 6768 --> 1.00 -- 0.02 +# +# Ideal Distribution Ratio = 0.79135/(1-0.79135) = 3.79 +# Random Distribution Ration = 512 / (3755 - 512) = 0.157 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher that RDR + +GB2312_TYPICAL_DISTRIBUTION_RATIO = 0.9 + +GB2312_TABLE_SIZE = 3760 + +# fmt: off +GB2312_CHAR_TO_FREQ_ORDER = ( +1671, 749,1443,2364,3924,3807,2330,3921,1704,3463,2691,1511,1515, 572,3191,2205, +2361, 224,2558, 479,1711, 963,3162, 440,4060,1905,2966,2947,3580,2647,3961,3842, +2204, 869,4207, 970,2678,5626,2944,2956,1479,4048, 514,3595, 588,1346,2820,3409, + 249,4088,1746,1873,2047,1774, 581,1813, 358,1174,3590,1014,1561,4844,2245, 670, +1636,3112, 889,1286, 953, 556,2327,3060,1290,3141, 613, 185,3477,1367, 850,3820, +1715,2428,2642,2303,2732,3041,2562,2648,3566,3946,1349, 388,3098,2091,1360,3585, + 152,1687,1539, 738,1559, 59,1232,2925,2267,1388,1249,1741,1679,2960, 151,1566, +1125,1352,4271, 924,4296, 385,3166,4459, 310,1245,2850, 70,3285,2729,3534,3575, +2398,3298,3466,1960,2265, 217,3647, 864,1909,2084,4401,2773,1010,3269,5152, 853, +3051,3121,1244,4251,1895, 364,1499,1540,2313,1180,3655,2268, 562, 715,2417,3061, + 544, 336,3768,2380,1752,4075, 950, 280,2425,4382, 183,2759,3272, 333,4297,2155, +1688,2356,1444,1039,4540, 736,1177,3349,2443,2368,2144,2225, 565, 196,1482,3406, + 927,1335,4147, 692, 878,1311,1653,3911,3622,1378,4200,1840,2969,3149,2126,1816, +2534,1546,2393,2760, 737,2494, 13, 447, 245,2747, 38,2765,2129,2589,1079, 606, + 360, 471,3755,2890, 404, 848, 699,1785,1236, 370,2221,1023,3746,2074,2026,2023, +2388,1581,2119, 812,1141,3091,2536,1519, 804,2053, 406,1596,1090, 784, 548,4414, +1806,2264,2936,1100, 343,4114,5096, 622,3358, 743,3668,1510,1626,5020,3567,2513, +3195,4115,5627,2489,2991, 24,2065,2697,1087,2719, 48,1634, 315, 68, 985,2052, + 198,2239,1347,1107,1439, 597,2366,2172, 871,3307, 919,2487,2790,1867, 236,2570, +1413,3794, 906,3365,3381,1701,1982,1818,1524,2924,1205, 616,2586,2072,2004, 575, + 253,3099, 32,1365,1182, 197,1714,2454,1201, 554,3388,3224,2748, 756,2587, 250, +2567,1507,1517,3529,1922,2761,2337,3416,1961,1677,2452,2238,3153, 615, 911,1506, +1474,2495,1265,1906,2749,3756,3280,2161, 898,2714,1759,3450,2243,2444, 563, 26, +3286,2266,3769,3344,2707,3677, 611,1402, 531,1028,2871,4548,1375, 261,2948, 835, +1190,4134, 353, 840,2684,1900,3082,1435,2109,1207,1674, 329,1872,2781,4055,2686, +2104, 608,3318,2423,2957,2768,1108,3739,3512,3271,3985,2203,1771,3520,1418,2054, +1681,1153, 225,1627,2929, 162,2050,2511,3687,1954, 124,1859,2431,1684,3032,2894, + 585,4805,3969,2869,2704,2088,2032,2095,3656,2635,4362,2209, 256, 518,2042,2105, +3777,3657, 643,2298,1148,1779, 190, 989,3544, 414, 11,2135,2063,2979,1471, 403, +3678, 126, 770,1563, 671,2499,3216,2877, 600,1179, 307,2805,4937,1268,1297,2694, + 252,4032,1448,1494,1331,1394, 127,2256, 222,1647,1035,1481,3056,1915,1048, 873, +3651, 210, 33,1608,2516, 200,1520, 415, 102, 0,3389,1287, 817, 91,3299,2940, + 836,1814, 549,2197,1396,1669,2987,3582,2297,2848,4528,1070, 687, 20,1819, 121, +1552,1364,1461,1968,2617,3540,2824,2083, 177, 948,4938,2291, 110,4549,2066, 648, +3359,1755,2110,2114,4642,4845,1693,3937,3308,1257,1869,2123, 208,1804,3159,2992, +2531,2549,3361,2418,1350,2347,2800,2568,1291,2036,2680, 72, 842,1990, 212,1233, +1154,1586, 75,2027,3410,4900,1823,1337,2710,2676, 728,2810,1522,3026,4995, 157, + 755,1050,4022, 710, 785,1936,2194,2085,1406,2777,2400, 150,1250,4049,1206, 807, +1910, 534, 529,3309,1721,1660, 274, 39,2827, 661,2670,1578, 925,3248,3815,1094, +4278,4901,4252, 41,1150,3747,2572,2227,4501,3658,4902,3813,3357,3617,2884,2258, + 887, 538,4187,3199,1294,2439,3042,2329,2343,2497,1255, 107, 543,1527, 521,3478, +3568, 194,5062, 15, 961,3870,1241,1192,2664, 66,5215,3260,2111,1295,1127,2152, +3805,4135, 901,1164,1976, 398,1278, 530,1460, 748, 904,1054,1966,1426, 53,2909, + 509, 523,2279,1534, 536,1019, 239,1685, 460,2353, 673,1065,2401,3600,4298,2272, +1272,2363, 284,1753,3679,4064,1695, 81, 815,2677,2757,2731,1386, 859, 500,4221, +2190,2566, 757,1006,2519,2068,1166,1455, 337,2654,3203,1863,1682,1914,3025,1252, +1409,1366, 847, 714,2834,2038,3209, 964,2970,1901, 885,2553,1078,1756,3049, 301, +1572,3326, 688,2130,1996,2429,1805,1648,2930,3421,2750,3652,3088, 262,1158,1254, + 389,1641,1812, 526,1719, 923,2073,1073,1902, 468, 489,4625,1140, 857,2375,3070, +3319,2863, 380, 116,1328,2693,1161,2244, 273,1212,1884,2769,3011,1775,1142, 461, +3066,1200,2147,2212, 790, 702,2695,4222,1601,1058, 434,2338,5153,3640, 67,2360, +4099,2502, 618,3472,1329, 416,1132, 830,2782,1807,2653,3211,3510,1662, 192,2124, + 296,3979,1739,1611,3684, 23, 118, 324, 446,1239,1225, 293,2520,3814,3795,2535, +3116, 17,1074, 467,2692,2201, 387,2922, 45,1326,3055,1645,3659,2817, 958, 243, +1903,2320,1339,2825,1784,3289, 356, 576, 865,2315,2381,3377,3916,1088,3122,1713, +1655, 935, 628,4689,1034,1327, 441, 800, 720, 894,1979,2183,1528,5289,2702,1071, +4046,3572,2399,1571,3281, 79, 761,1103, 327, 134, 758,1899,1371,1615, 879, 442, + 215,2605,2579, 173,2048,2485,1057,2975,3317,1097,2253,3801,4263,1403,1650,2946, + 814,4968,3487,1548,2644,1567,1285, 2, 295,2636, 97, 946,3576, 832, 141,4257, +3273, 760,3821,3521,3156,2607, 949,1024,1733,1516,1803,1920,2125,2283,2665,3180, +1501,2064,3560,2171,1592, 803,3518,1416, 732,3897,4258,1363,1362,2458, 119,1427, + 602,1525,2608,1605,1639,3175, 694,3064, 10, 465, 76,2000,4846,4208, 444,3781, +1619,3353,2206,1273,3796, 740,2483, 320,1723,2377,3660,2619,1359,1137,1762,1724, +2345,2842,1850,1862, 912, 821,1866, 612,2625,1735,2573,3369,1093, 844, 89, 937, + 930,1424,3564,2413,2972,1004,3046,3019,2011, 711,3171,1452,4178, 428, 801,1943, + 432, 445,2811, 206,4136,1472, 730, 349, 73, 397,2802,2547, 998,1637,1167, 789, + 396,3217, 154,1218, 716,1120,1780,2819,4826,1931,3334,3762,2139,1215,2627, 552, +3664,3628,3232,1405,2383,3111,1356,2652,3577,3320,3101,1703, 640,1045,1370,1246, +4996, 371,1575,2436,1621,2210, 984,4033,1734,2638, 16,4529, 663,2755,3255,1451, +3917,2257,1253,1955,2234,1263,2951, 214,1229, 617, 485, 359,1831,1969, 473,2310, + 750,2058, 165, 80,2864,2419, 361,4344,2416,2479,1134, 796,3726,1266,2943, 860, +2715, 938, 390,2734,1313,1384, 248, 202, 877,1064,2854, 522,3907, 279,1602, 297, +2357, 395,3740, 137,2075, 944,4089,2584,1267,3802, 62,1533,2285, 178, 176, 780, +2440, 201,3707, 590, 478,1560,4354,2117,1075, 30, 74,4643,4004,1635,1441,2745, + 776,2596, 238,1077,1692,1912,2844, 605, 499,1742,3947, 241,3053, 980,1749, 936, +2640,4511,2582, 515,1543,2162,5322,2892,2993, 890,2148,1924, 665,1827,3581,1032, + 968,3163, 339,1044,1896, 270, 583,1791,1720,4367,1194,3488,3669, 43,2523,1657, + 163,2167, 290,1209,1622,3378, 550, 634,2508,2510, 695,2634,2384,2512,1476,1414, + 220,1469,2341,2138,2852,3183,2900,4939,2865,3502,1211,3680, 854,3227,1299,2976, +3172, 186,2998,1459, 443,1067,3251,1495, 321,1932,3054, 909, 753,1410,1828, 436, +2441,1119,1587,3164,2186,1258, 227, 231,1425,1890,3200,3942, 247, 959, 725,5254, +2741, 577,2158,2079, 929, 120, 174, 838,2813, 591,1115, 417,2024, 40,3240,1536, +1037, 291,4151,2354, 632,1298,2406,2500,3535,1825,1846,3451, 205,1171, 345,4238, + 18,1163, 811, 685,2208,1217, 425,1312,1508,1175,4308,2552,1033, 587,1381,3059, +2984,3482, 340,1316,4023,3972, 792,3176, 519, 777,4690, 918, 933,4130,2981,3741, + 90,3360,2911,2200,5184,4550, 609,3079,2030, 272,3379,2736, 363,3881,1130,1447, + 286, 779, 357,1169,3350,3137,1630,1220,2687,2391, 747,1277,3688,2618,2682,2601, +1156,3196,5290,4034,3102,1689,3596,3128, 874, 219,2783, 798, 508,1843,2461, 269, +1658,1776,1392,1913,2983,3287,2866,2159,2372, 829,4076, 46,4253,2873,1889,1894, + 915,1834,1631,2181,2318, 298, 664,2818,3555,2735, 954,3228,3117, 527,3511,2173, + 681,2712,3033,2247,2346,3467,1652, 155,2164,3382, 113,1994, 450, 899, 494, 994, +1237,2958,1875,2336,1926,3727, 545,1577,1550, 633,3473, 204,1305,3072,2410,1956, +2471, 707,2134, 841,2195,2196,2663,3843,1026,4940, 990,3252,4997, 368,1092, 437, +3212,3258,1933,1829, 675,2977,2893, 412, 943,3723,4644,3294,3283,2230,2373,5154, +2389,2241,2661,2323,1404,2524, 593, 787, 677,3008,1275,2059, 438,2709,2609,2240, +2269,2246,1446, 36,1568,1373,3892,1574,2301,1456,3962, 693,2276,5216,2035,1143, +2720,1919,1797,1811,2763,4137,2597,1830,1699,1488,1198,2090, 424,1694, 312,3634, +3390,4179,3335,2252,1214, 561,1059,3243,2295,2561, 975,5155,2321,2751,3772, 472, +1537,3282,3398,1047,2077,2348,2878,1323,3340,3076, 690,2906, 51, 369, 170,3541, +1060,2187,2688,3670,2541,1083,1683, 928,3918, 459, 109,4427, 599,3744,4286, 143, +2101,2730,2490, 82,1588,3036,2121, 281,1860, 477,4035,1238,2812,3020,2716,3312, +1530,2188,2055,1317, 843, 636,1808,1173,3495, 649, 181,1002, 147,3641,1159,2414, +3750,2289,2795, 813,3123,2610,1136,4368, 5,3391,4541,2174, 420, 429,1728, 754, +1228,2115,2219, 347,2223,2733, 735,1518,3003,2355,3134,1764,3948,3329,1888,2424, +1001,1234,1972,3321,3363,1672,1021,1450,1584, 226, 765, 655,2526,3404,3244,2302, +3665, 731, 594,2184, 319,1576, 621, 658,2656,4299,2099,3864,1279,2071,2598,2739, + 795,3086,3699,3908,1707,2352,2402,1382,3136,2475,1465,4847,3496,3865,1085,3004, +2591,1084, 213,2287,1963,3565,2250, 822, 793,4574,3187,1772,1789,3050, 595,1484, +1959,2770,1080,2650, 456, 422,2996, 940,3322,4328,4345,3092,2742, 965,2784, 739, +4124, 952,1358,2498,2949,2565, 332,2698,2378, 660,2260,2473,4194,3856,2919, 535, +1260,2651,1208,1428,1300,1949,1303,2942, 433,2455,2450,1251,1946, 614,1269, 641, +1306,1810,2737,3078,2912, 564,2365,1419,1415,1497,4460,2367,2185,1379,3005,1307, +3218,2175,1897,3063, 682,1157,4040,4005,1712,1160,1941,1399, 394, 402,2952,1573, +1151,2986,2404, 862, 299,2033,1489,3006, 346, 171,2886,3401,1726,2932, 168,2533, + 47,2507,1030,3735,1145,3370,1395,1318,1579,3609,4560,2857,4116,1457,2529,1965, + 504,1036,2690,2988,2405, 745,5871, 849,2397,2056,3081, 863,2359,3857,2096, 99, +1397,1769,2300,4428,1643,3455,1978,1757,3718,1440, 35,4879,3742,1296,4228,2280, + 160,5063,1599,2013, 166, 520,3479,1646,3345,3012, 490,1937,1545,1264,2182,2505, +1096,1188,1369,1436,2421,1667,2792,2460,1270,2122, 727,3167,2143, 806,1706,1012, +1800,3037, 960,2218,1882, 805, 139,2456,1139,1521, 851,1052,3093,3089, 342,2039, + 744,5097,1468,1502,1585,2087, 223, 939, 326,2140,2577, 892,2481,1623,4077, 982, +3708, 135,2131, 87,2503,3114,2326,1106, 876,1616, 547,2997,2831,2093,3441,4530, +4314, 9,3256,4229,4148, 659,1462,1986,1710,2046,2913,2231,4090,4880,5255,3392, +3274,1368,3689,4645,1477, 705,3384,3635,1068,1529,2941,1458,3782,1509, 100,1656, +2548, 718,2339, 408,1590,2780,3548,1838,4117,3719,1345,3530, 717,3442,2778,3220, +2898,1892,4590,3614,3371,2043,1998,1224,3483, 891, 635, 584,2559,3355, 733,1766, +1729,1172,3789,1891,2307, 781,2982,2271,1957,1580,5773,2633,2005,4195,3097,1535, +3213,1189,1934,5693,3262, 586,3118,1324,1598, 517,1564,2217,1868,1893,4445,3728, +2703,3139,1526,1787,1992,3882,2875,1549,1199,1056,2224,1904,2711,5098,4287, 338, +1993,3129,3489,2689,1809,2815,1997, 957,1855,3898,2550,3275,3057,1105,1319, 627, +1505,1911,1883,3526, 698,3629,3456,1833,1431, 746, 77,1261,2017,2296,1977,1885, + 125,1334,1600, 525,1798,1109,2222,1470,1945, 559,2236,1186,3443,2476,1929,1411, +2411,3135,1777,3372,2621,1841,1613,3229, 668,1430,1839,2643,2916, 195,1989,2671, +2358,1387, 629,3205,2293,5256,4439, 123,1310, 888,1879,4300,3021,3605,1003,1162, +3192,2910,2010, 140,2395,2859, 55,1082,2012,2901, 662, 419,2081,1438, 680,2774, +4654,3912,1620,1731,1625,5035,4065,2328, 512,1344, 802,5443,2163,2311,2537, 524, +3399, 98,1155,2103,1918,2606,3925,2816,1393,2465,1504,3773,2177,3963,1478,4346, + 180,1113,4655,3461,2028,1698, 833,2696,1235,1322,1594,4408,3623,3013,3225,2040, +3022, 541,2881, 607,3632,2029,1665,1219, 639,1385,1686,1099,2803,3231,1938,3188, +2858, 427, 676,2772,1168,2025, 454,3253,2486,3556, 230,1950, 580, 791,1991,1280, +1086,1974,2034, 630, 257,3338,2788,4903,1017, 86,4790, 966,2789,1995,1696,1131, + 259,3095,4188,1308, 179,1463,5257, 289,4107,1248, 42,3413,1725,2288, 896,1947, + 774,4474,4254, 604,3430,4264, 392,2514,2588, 452, 237,1408,3018, 988,4531,1970, +3034,3310, 540,2370,1562,1288,2990, 502,4765,1147, 4,1853,2708, 207, 294,2814, +4078,2902,2509, 684, 34,3105,3532,2551, 644, 709,2801,2344, 573,1727,3573,3557, +2021,1081,3100,4315,2100,3681, 199,2263,1837,2385, 146,3484,1195,2776,3949, 997, +1939,3973,1008,1091,1202,1962,1847,1149,4209,5444,1076, 493, 117,5400,2521, 972, +1490,2934,1796,4542,2374,1512,2933,2657, 413,2888,1135,2762,2314,2156,1355,2369, + 766,2007,2527,2170,3124,2491,2593,2632,4757,2437, 234,3125,3591,1898,1750,1376, +1942,3468,3138, 570,2127,2145,3276,4131, 962, 132,1445,4196, 19, 941,3624,3480, +3366,1973,1374,4461,3431,2629, 283,2415,2275, 808,2887,3620,2112,2563,1353,3610, + 955,1089,3103,1053, 96, 88,4097, 823,3808,1583, 399, 292,4091,3313, 421,1128, + 642,4006, 903,2539,1877,2082, 596, 29,4066,1790, 722,2157, 130, 995,1569, 769, +1485, 464, 513,2213, 288,1923,1101,2453,4316, 133, 486,2445, 50, 625, 487,2207, + 57, 423, 481,2962, 159,3729,1558, 491, 303, 482, 501, 240,2837, 112,3648,2392, +1783, 362, 8,3433,3422, 610,2793,3277,1390,1284,1654, 21,3823, 734, 367, 623, + 193, 287, 374,1009,1483, 816, 476, 313,2255,2340,1262,2150,2899,1146,2581, 782, +2116,1659,2018,1880, 255,3586,3314,1110,2867,2137,2564, 986,2767,5185,2006, 650, + 158, 926, 762, 881,3157,2717,2362,3587, 306,3690,3245,1542,3077,2427,1691,2478, +2118,2985,3490,2438, 539,2305, 983, 129,1754, 355,4201,2386, 827,2923, 104,1773, +2838,2771, 411,2905,3919, 376, 767, 122,1114, 828,2422,1817,3506, 266,3460,1007, +1609,4998, 945,2612,4429,2274, 726,1247,1964,2914,2199,2070,4002,4108, 657,3323, +1422, 579, 455,2764,4737,1222,2895,1670, 824,1223,1487,2525, 558, 861,3080, 598, +2659,2515,1967, 752,2583,2376,2214,4180, 977, 704,2464,4999,2622,4109,1210,2961, + 819,1541, 142,2284, 44, 418, 457,1126,3730,4347,4626,1644,1876,3671,1864, 302, +1063,5694, 624, 723,1984,3745,1314,1676,2488,1610,1449,3558,3569,2166,2098, 409, +1011,2325,3704,2306, 818,1732,1383,1824,1844,3757, 999,2705,3497,1216,1423,2683, +2426,2954,2501,2726,2229,1475,2554,5064,1971,1794,1666,2014,1343, 783, 724, 191, +2434,1354,2220,5065,1763,2752,2472,4152, 131, 175,2885,3434, 92,1466,4920,2616, +3871,3872,3866, 128,1551,1632, 669,1854,3682,4691,4125,1230, 188,2973,3290,1302, +1213, 560,3266, 917, 763,3909,3249,1760, 868,1958, 764,1782,2097, 145,2277,3774, +4462, 64,1491,3062, 971,2132,3606,2442, 221,1226,1617, 218, 323,1185,3207,3147, + 571, 619,1473,1005,1744,2281, 449,1887,2396,3685, 275, 375,3816,1743,3844,3731, + 845,1983,2350,4210,1377, 773, 967,3499,3052,3743,2725,4007,1697,1022,3943,1464, +3264,2855,2722,1952,1029,2839,2467, 84,4383,2215, 820,1391,2015,2448,3672, 377, +1948,2168, 797,2545,3536,2578,2645, 94,2874,1678, 405,1259,3071, 771, 546,1315, + 470,1243,3083, 895,2468, 981, 969,2037, 846,4181, 653,1276,2928, 14,2594, 557, +3007,2474, 156, 902,1338,1740,2574, 537,2518, 973,2282,2216,2433,1928, 138,2903, +1293,2631,1612, 646,3457, 839,2935, 111, 496,2191,2847, 589,3186, 149,3994,2060, +4031,2641,4067,3145,1870, 37,3597,2136,1025,2051,3009,3383,3549,1121,1016,3261, +1301, 251,2446,2599,2153, 872,3246, 637, 334,3705, 831, 884, 921,3065,3140,4092, +2198,1944, 246,2964, 108,2045,1152,1921,2308,1031, 203,3173,4170,1907,3890, 810, +1401,2003,1690, 506, 647,1242,2828,1761,1649,3208,2249,1589,3709,2931,5156,1708, + 498, 666,2613, 834,3817,1231, 184,2851,1124, 883,3197,2261,3710,1765,1553,2658, +1178,2639,2351, 93,1193, 942,2538,2141,4402, 235,1821, 870,1591,2192,1709,1871, +3341,1618,4126,2595,2334, 603, 651, 69, 701, 268,2662,3411,2555,1380,1606, 503, + 448, 254,2371,2646, 574,1187,2309,1770, 322,2235,1292,1801, 305, 566,1133, 229, +2067,2057, 706, 167, 483,2002,2672,3295,1820,3561,3067, 316, 378,2746,3452,1112, + 136,1981, 507,1651,2917,1117, 285,4591, 182,2580,3522,1304, 335,3303,1835,2504, +1795,1792,2248, 674,1018,2106,2449,1857,2292,2845, 976,3047,1781,2600,2727,1389, +1281, 52,3152, 153, 265,3950, 672,3485,3951,4463, 430,1183, 365, 278,2169, 27, +1407,1336,2304, 209,1340,1730,2202,1852,2403,2883, 979,1737,1062, 631,2829,2542, +3876,2592, 825,2086,2226,3048,3625, 352,1417,3724, 542, 991, 431,1351,3938,1861, +2294, 826,1361,2927,3142,3503,1738, 463,2462,2723, 582,1916,1595,2808, 400,3845, +3891,2868,3621,2254, 58,2492,1123, 910,2160,2614,1372,1603,1196,1072,3385,1700, +3267,1980, 696, 480,2430, 920, 799,1570,2920,1951,2041,4047,2540,1321,4223,2469, +3562,2228,1271,2602, 401,2833,3351,2575,5157, 907,2312,1256, 410, 263,3507,1582, + 996, 678,1849,2316,1480, 908,3545,2237, 703,2322, 667,1826,2849,1531,2604,2999, +2407,3146,2151,2630,1786,3711, 469,3542, 497,3899,2409, 858, 837,4446,3393,1274, + 786, 620,1845,2001,3311, 484, 308,3367,1204,1815,3691,2332,1532,2557,1842,2020, +2724,1927,2333,4440, 567, 22,1673,2728,4475,1987,1858,1144,1597, 101,1832,3601, + 12, 974,3783,4391, 951,1412, 1,3720, 453,4608,4041, 528,1041,1027,3230,2628, +1129, 875,1051,3291,1203,2262,1069,2860,2799,2149,2615,3278, 144,1758,3040, 31, + 475,1680, 366,2685,3184, 311,1642,4008,2466,5036,1593,1493,2809, 216,1420,1668, + 233, 304,2128,3284, 232,1429,1768,1040,2008,3407,2740,2967,2543, 242,2133, 778, +1565,2022,2620, 505,2189,2756,1098,2273, 372,1614, 708, 553,2846,2094,2278, 169, +3626,2835,4161, 228,2674,3165, 809,1454,1309, 466,1705,1095, 900,3423, 880,2667, +3751,5258,2317,3109,2571,4317,2766,1503,1342, 866,4447,1118, 63,2076, 314,1881, +1348,1061, 172, 978,3515,1747, 532, 511,3970, 6, 601, 905,2699,3300,1751, 276, +1467,3725,2668, 65,4239,2544,2779,2556,1604, 578,2451,1802, 992,2331,2624,1320, +3446, 713,1513,1013, 103,2786,2447,1661, 886,1702, 916, 654,3574,2031,1556, 751, +2178,2821,2179,1498,1538,2176, 271, 914,2251,2080,1325, 638,1953,2937,3877,2432, +2754, 95,3265,1716, 260,1227,4083, 775, 106,1357,3254, 426,1607, 555,2480, 772, +1985, 244,2546, 474, 495,1046,2611,1851,2061, 71,2089,1675,2590, 742,3758,2843, +3222,1433, 267,2180,2576,2826,2233,2092,3913,2435, 956,1745,3075, 856,2113,1116, + 451, 3,1988,2896,1398, 993,2463,1878,2049,1341,2718,2721,2870,2108, 712,2904, +4363,2753,2324, 277,2872,2349,2649, 384, 987, 435, 691,3000, 922, 164,3939, 652, +1500,1184,4153,2482,3373,2165,4848,2335,3775,3508,3154,2806,2830,1554,2102,1664, +2530,1434,2408, 893,1547,2623,3447,2832,2242,2532,3169,2856,3223,2078, 49,3770, +3469, 462, 318, 656,2259,3250,3069, 679,1629,2758, 344,1138,1104,3120,1836,1283, +3115,2154,1437,4448, 934, 759,1999, 794,2862,1038, 533,2560,1722,2342, 855,2626, +1197,1663,4476,3127, 85,4240,2528, 25,1111,1181,3673, 407,3470,4561,2679,2713, + 768,1925,2841,3986,1544,1165, 932, 373,1240,2146,1930,2673, 721,4766, 354,4333, + 391,2963, 187, 61,3364,1442,1102, 330,1940,1767, 341,3809,4118, 393,2496,2062, +2211, 105, 331, 300, 439, 913,1332, 626, 379,3304,1557, 328, 689,3952, 309,1555, + 931, 317,2517,3027, 325, 569, 686,2107,3084, 60,1042,1333,2794, 264,3177,4014, +1628, 258,3712, 7,4464,1176,1043,1778, 683, 114,1975, 78,1492, 383,1886, 510, + 386, 645,5291,2891,2069,3305,4138,3867,2939,2603,2493,1935,1066,1848,3588,1015, +1282,1289,4609, 697,1453,3044,2666,3611,1856,2412, 54, 719,1330, 568,3778,2459, +1748, 788, 492, 551,1191,1000, 488,3394,3763, 282,1799, 348,2016,1523,3155,2390, +1049, 382,2019,1788,1170, 729,2968,3523, 897,3926,2785,2938,3292, 350,2319,3238, +1718,1717,2655,3453,3143,4465, 161,2889,2980,2009,1421, 56,1908,1640,2387,2232, +1917,1874,2477,4921, 148, 83,3438, 592,4245,2882,1822,1055, 741, 115,1496,1624, + 381,1638,4592,1020, 516,3214, 458, 947,4575,1432, 211,1514,2926,1865,2142, 189, + 852,1221,1400,1486, 882,2299,4036, 351, 28,1122, 700,6479,6480,6481,6482,6483, #last 512 +) +# fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py new file mode 100644 index 00000000..d423e731 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import GB2312DistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import GB2312_SM_MODEL + + +class GB2312Prober(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(GB2312_SM_MODEL) + self.distribution_analyzer = GB2312DistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "GB2312" + + @property + def language(self) -> str: + return "Chinese" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py new file mode 100644 index 00000000..785d0057 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py @@ -0,0 +1,316 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Shy Shalom +# Portions created by the Initial Developer are Copyright (C) 2005 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Optional, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState +from .sbcharsetprober import SingleByteCharSetProber + +# This prober doesn't actually recognize a language or a charset. +# It is a helper prober for the use of the Hebrew model probers + +### General ideas of the Hebrew charset recognition ### +# +# Four main charsets exist in Hebrew: +# "ISO-8859-8" - Visual Hebrew +# "windows-1255" - Logical Hebrew +# "ISO-8859-8-I" - Logical Hebrew +# "x-mac-hebrew" - ?? Logical Hebrew ?? +# +# Both "ISO" charsets use a completely identical set of code points, whereas +# "windows-1255" and "x-mac-hebrew" are two different proper supersets of +# these code points. windows-1255 defines additional characters in the range +# 0x80-0x9F as some misc punctuation marks as well as some Hebrew-specific +# diacritics and additional 'Yiddish' ligature letters in the range 0xc0-0xd6. +# x-mac-hebrew defines similar additional code points but with a different +# mapping. +# +# As far as an average Hebrew text with no diacritics is concerned, all four +# charsets are identical with respect to code points. Meaning that for the +# main Hebrew alphabet, all four map the same values to all 27 Hebrew letters +# (including final letters). +# +# The dominant difference between these charsets is their directionality. +# "Visual" directionality means that the text is ordered as if the renderer is +# not aware of a BIDI rendering algorithm. The renderer sees the text and +# draws it from left to right. The text itself when ordered naturally is read +# backwards. A buffer of Visual Hebrew generally looks like so: +# "[last word of first line spelled backwards] [whole line ordered backwards +# and spelled backwards] [first word of first line spelled backwards] +# [end of line] [last word of second line] ... etc' " +# adding punctuation marks, numbers and English text to visual text is +# naturally also "visual" and from left to right. +# +# "Logical" directionality means the text is ordered "naturally" according to +# the order it is read. It is the responsibility of the renderer to display +# the text from right to left. A BIDI algorithm is used to place general +# punctuation marks, numbers and English text in the text. +# +# Texts in x-mac-hebrew are almost impossible to find on the Internet. From +# what little evidence I could find, it seems that its general directionality +# is Logical. +# +# To sum up all of the above, the Hebrew probing mechanism knows about two +# charsets: +# Visual Hebrew - "ISO-8859-8" - backwards text - Words and sentences are +# backwards while line order is natural. For charset recognition purposes +# the line order is unimportant (In fact, for this implementation, even +# word order is unimportant). +# Logical Hebrew - "windows-1255" - normal, naturally ordered text. +# +# "ISO-8859-8-I" is a subset of windows-1255 and doesn't need to be +# specifically identified. +# "x-mac-hebrew" is also identified as windows-1255. A text in x-mac-hebrew +# that contain special punctuation marks or diacritics is displayed with +# some unconverted characters showing as question marks. This problem might +# be corrected using another model prober for x-mac-hebrew. Due to the fact +# that x-mac-hebrew texts are so rare, writing another model prober isn't +# worth the effort and performance hit. +# +#### The Prober #### +# +# The prober is divided between two SBCharSetProbers and a HebrewProber, +# all of which are managed, created, fed data, inquired and deleted by the +# SBCSGroupProber. The two SBCharSetProbers identify that the text is in +# fact some kind of Hebrew, Logical or Visual. The final decision about which +# one is it is made by the HebrewProber by combining final-letter scores +# with the scores of the two SBCharSetProbers to produce a final answer. +# +# The SBCSGroupProber is responsible for stripping the original text of HTML +# tags, English characters, numbers, low-ASCII punctuation characters, spaces +# and new lines. It reduces any sequence of such characters to a single space. +# The buffer fed to each prober in the SBCS group prober is pure text in +# high-ASCII. +# The two SBCharSetProbers (model probers) share the same language model: +# Win1255Model. +# The first SBCharSetProber uses the model normally as any other +# SBCharSetProber does, to recognize windows-1255, upon which this model was +# built. The second SBCharSetProber is told to make the pair-of-letter +# lookup in the language model backwards. This in practice exactly simulates +# a visual Hebrew model using the windows-1255 logical Hebrew model. +# +# The HebrewProber is not using any language model. All it does is look for +# final-letter evidence suggesting the text is either logical Hebrew or visual +# Hebrew. Disjointed from the model probers, the results of the HebrewProber +# alone are meaningless. HebrewProber always returns 0.00 as confidence +# since it never identifies a charset by itself. Instead, the pointer to the +# HebrewProber is passed to the model probers as a helper "Name Prober". +# When the Group prober receives a positive identification from any prober, +# it asks for the name of the charset identified. If the prober queried is a +# Hebrew model prober, the model prober forwards the call to the +# HebrewProber to make the final decision. In the HebrewProber, the +# decision is made according to the final-letters scores maintained and Both +# model probers scores. The answer is returned in the form of the name of the +# charset identified, either "windows-1255" or "ISO-8859-8". + + +class HebrewProber(CharSetProber): + SPACE = 0x20 + # windows-1255 / ISO-8859-8 code points of interest + FINAL_KAF = 0xEA + NORMAL_KAF = 0xEB + FINAL_MEM = 0xED + NORMAL_MEM = 0xEE + FINAL_NUN = 0xEF + NORMAL_NUN = 0xF0 + FINAL_PE = 0xF3 + NORMAL_PE = 0xF4 + FINAL_TSADI = 0xF5 + NORMAL_TSADI = 0xF6 + + # Minimum Visual vs Logical final letter score difference. + # If the difference is below this, don't rely solely on the final letter score + # distance. + MIN_FINAL_CHAR_DISTANCE = 5 + + # Minimum Visual vs Logical model score difference. + # If the difference is below this, don't rely at all on the model score + # distance. + MIN_MODEL_DISTANCE = 0.01 + + VISUAL_HEBREW_NAME = "ISO-8859-8" + LOGICAL_HEBREW_NAME = "windows-1255" + + def __init__(self) -> None: + super().__init__() + self._final_char_logical_score = 0 + self._final_char_visual_score = 0 + self._prev = self.SPACE + self._before_prev = self.SPACE + self._logical_prober: Optional[SingleByteCharSetProber] = None + self._visual_prober: Optional[SingleByteCharSetProber] = None + self.reset() + + def reset(self) -> None: + self._final_char_logical_score = 0 + self._final_char_visual_score = 0 + # The two last characters seen in the previous buffer, + # mPrev and mBeforePrev are initialized to space in order to simulate + # a word delimiter at the beginning of the data + self._prev = self.SPACE + self._before_prev = self.SPACE + # These probers are owned by the group prober. + + def set_model_probers( + self, + logical_prober: SingleByteCharSetProber, + visual_prober: SingleByteCharSetProber, + ) -> None: + self._logical_prober = logical_prober + self._visual_prober = visual_prober + + def is_final(self, c: int) -> bool: + return c in [ + self.FINAL_KAF, + self.FINAL_MEM, + self.FINAL_NUN, + self.FINAL_PE, + self.FINAL_TSADI, + ] + + def is_non_final(self, c: int) -> bool: + # The normal Tsadi is not a good Non-Final letter due to words like + # 'lechotet' (to chat) containing an apostrophe after the tsadi. This + # apostrophe is converted to a space in FilterWithoutEnglishLetters + # causing the Non-Final tsadi to appear at an end of a word even + # though this is not the case in the original text. + # The letters Pe and Kaf rarely display a related behavior of not being + # a good Non-Final letter. Words like 'Pop', 'Winamp' and 'Mubarak' + # for example legally end with a Non-Final Pe or Kaf. However, the + # benefit of these letters as Non-Final letters outweighs the damage + # since these words are quite rare. + return c in [self.NORMAL_KAF, self.NORMAL_MEM, self.NORMAL_NUN, self.NORMAL_PE] + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + # Final letter analysis for logical-visual decision. + # Look for evidence that the received buffer is either logical Hebrew + # or visual Hebrew. + # The following cases are checked: + # 1) A word longer than 1 letter, ending with a final letter. This is + # an indication that the text is laid out "naturally" since the + # final letter really appears at the end. +1 for logical score. + # 2) A word longer than 1 letter, ending with a Non-Final letter. In + # normal Hebrew, words ending with Kaf, Mem, Nun, Pe or Tsadi, + # should not end with the Non-Final form of that letter. Exceptions + # to this rule are mentioned above in isNonFinal(). This is an + # indication that the text is laid out backwards. +1 for visual + # score + # 3) A word longer than 1 letter, starting with a final letter. Final + # letters should not appear at the beginning of a word. This is an + # indication that the text is laid out backwards. +1 for visual + # score. + # + # The visual score and logical score are accumulated throughout the + # text and are finally checked against each other in GetCharSetName(). + # No checking for final letters in the middle of words is done since + # that case is not an indication for either Logical or Visual text. + # + # We automatically filter out all 7-bit characters (replace them with + # spaces) so the word boundary detection works properly. [MAP] + + if self.state == ProbingState.NOT_ME: + # Both model probers say it's not them. No reason to continue. + return ProbingState.NOT_ME + + byte_str = self.filter_high_byte_only(byte_str) + + for cur in byte_str: + if cur == self.SPACE: + # We stand on a space - a word just ended + if self._before_prev != self.SPACE: + # next-to-last char was not a space so self._prev is not a + # 1 letter word + if self.is_final(self._prev): + # case (1) [-2:not space][-1:final letter][cur:space] + self._final_char_logical_score += 1 + elif self.is_non_final(self._prev): + # case (2) [-2:not space][-1:Non-Final letter][ + # cur:space] + self._final_char_visual_score += 1 + else: + # Not standing on a space + if ( + (self._before_prev == self.SPACE) + and (self.is_final(self._prev)) + and (cur != self.SPACE) + ): + # case (3) [-2:space][-1:final letter][cur:not space] + self._final_char_visual_score += 1 + self._before_prev = self._prev + self._prev = cur + + # Forever detecting, till the end or until both model probers return + # ProbingState.NOT_ME (handled above) + return ProbingState.DETECTING + + @property + def charset_name(self) -> str: + assert self._logical_prober is not None + assert self._visual_prober is not None + + # Make the decision: is it Logical or Visual? + # If the final letter score distance is dominant enough, rely on it. + finalsub = self._final_char_logical_score - self._final_char_visual_score + if finalsub >= self.MIN_FINAL_CHAR_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if finalsub <= -self.MIN_FINAL_CHAR_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # It's not dominant enough, try to rely on the model scores instead. + modelsub = ( + self._logical_prober.get_confidence() - self._visual_prober.get_confidence() + ) + if modelsub > self.MIN_MODEL_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if modelsub < -self.MIN_MODEL_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # Still no good, back to final letter distance, maybe it'll save the + # day. + if finalsub < 0.0: + return self.VISUAL_HEBREW_NAME + + # (finalsub > 0 - Logical) or (don't know what to do) default to + # Logical. + return self.LOGICAL_HEBREW_NAME + + @property + def language(self) -> str: + return "Hebrew" + + @property + def state(self) -> ProbingState: + assert self._logical_prober is not None + assert self._visual_prober is not None + + # Remain active as long as any of the model probers are active. + if (self._logical_prober.state == ProbingState.NOT_ME) and ( + self._visual_prober.state == ProbingState.NOT_ME + ): + return ProbingState.NOT_ME + return ProbingState.DETECTING diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py new file mode 100644 index 00000000..3293576e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py @@ -0,0 +1,325 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology +# +# Japanese frequency table, applied to both S-JIS and EUC-JP +# They are sorted in order. + +# 128 --> 0.77094 +# 256 --> 0.85710 +# 512 --> 0.92635 +# 1024 --> 0.97130 +# 2048 --> 0.99431 +# +# Ideal Distribution Ratio = 0.92635 / (1-0.92635) = 12.58 +# Random Distribution Ration = 512 / (2965+62+83+86-512) = 0.191 +# +# Typical Distribution Ratio, 25% of IDR + +JIS_TYPICAL_DISTRIBUTION_RATIO = 3.0 + +# Char to FreqOrder table , +JIS_TABLE_SIZE = 4368 + +# fmt: off +JIS_CHAR_TO_FREQ_ORDER = ( + 40, 1, 6, 182, 152, 180, 295,2127, 285, 381,3295,4304,3068,4606,3165,3510, # 16 +3511,1822,2785,4607,1193,2226,5070,4608, 171,2996,1247, 18, 179,5071, 856,1661, # 32 +1262,5072, 619, 127,3431,3512,3230,1899,1700, 232, 228,1294,1298, 284, 283,2041, # 48 +2042,1061,1062, 48, 49, 44, 45, 433, 434,1040,1041, 996, 787,2997,1255,4305, # 64 +2108,4609,1684,1648,5073,5074,5075,5076,5077,5078,3687,5079,4610,5080,3927,3928, # 80 +5081,3296,3432, 290,2285,1471,2187,5082,2580,2825,1303,2140,1739,1445,2691,3375, # 96 +1691,3297,4306,4307,4611, 452,3376,1182,2713,3688,3069,4308,5083,5084,5085,5086, # 112 +5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102, # 128 +5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,4097,5113,5114,5115,5116,5117, # 144 +5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133, # 160 +5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149, # 176 +5150,5151,5152,4612,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164, # 192 +5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,1472, 598, 618, 820,1205, # 208 +1309,1412,1858,1307,1692,5176,5177,5178,5179,5180,5181,5182,1142,1452,1234,1172, # 224 +1875,2043,2149,1793,1382,2973, 925,2404,1067,1241, 960,1377,2935,1491, 919,1217, # 240 +1865,2030,1406,1499,2749,4098,5183,5184,5185,5186,5187,5188,2561,4099,3117,1804, # 256 +2049,3689,4309,3513,1663,5189,3166,3118,3298,1587,1561,3433,5190,3119,1625,2998, # 272 +3299,4613,1766,3690,2786,4614,5191,5192,5193,5194,2161, 26,3377, 2,3929, 20, # 288 +3691, 47,4100, 50, 17, 16, 35, 268, 27, 243, 42, 155, 24, 154, 29, 184, # 304 + 4, 91, 14, 92, 53, 396, 33, 289, 9, 37, 64, 620, 21, 39, 321, 5, # 320 + 12, 11, 52, 13, 3, 208, 138, 0, 7, 60, 526, 141, 151,1069, 181, 275, # 336 +1591, 83, 132,1475, 126, 331, 829, 15, 69, 160, 59, 22, 157, 55,1079, 312, # 352 + 109, 38, 23, 25, 10, 19, 79,5195, 61, 382,1124, 8, 30,5196,5197,5198, # 368 +5199,5200,5201,5202,5203,5204,5205,5206, 89, 62, 74, 34,2416, 112, 139, 196, # 384 + 271, 149, 84, 607, 131, 765, 46, 88, 153, 683, 76, 874, 101, 258, 57, 80, # 400 + 32, 364, 121,1508, 169,1547, 68, 235, 145,2999, 41, 360,3027, 70, 63, 31, # 416 + 43, 259, 262,1383, 99, 533, 194, 66, 93, 846, 217, 192, 56, 106, 58, 565, # 432 + 280, 272, 311, 256, 146, 82, 308, 71, 100, 128, 214, 655, 110, 261, 104,1140, # 448 + 54, 51, 36, 87, 67,3070, 185,2618,2936,2020, 28,1066,2390,2059,5207,5208, # 464 +5209,5210,5211,5212,5213,5214,5215,5216,4615,5217,5218,5219,5220,5221,5222,5223, # 480 +5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,3514,5237,5238, # 496 +5239,5240,5241,5242,5243,5244,2297,2031,4616,4310,3692,5245,3071,5246,3598,5247, # 512 +4617,3231,3515,5248,4101,4311,4618,3808,4312,4102,5249,4103,4104,3599,5250,5251, # 528 +5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267, # 544 +5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283, # 560 +5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299, # 576 +5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315, # 592 +5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331, # 608 +5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347, # 624 +5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363, # 640 +5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379, # 656 +5380,5381, 363, 642,2787,2878,2788,2789,2316,3232,2317,3434,2011, 165,1942,3930, # 672 +3931,3932,3933,5382,4619,5383,4620,5384,5385,5386,5387,5388,5389,5390,5391,5392, # 688 +5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408, # 704 +5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424, # 720 +5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440, # 736 +5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456, # 752 +5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472, # 768 +5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488, # 784 +5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504, # 800 +5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520, # 816 +5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536, # 832 +5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552, # 848 +5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568, # 864 +5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584, # 880 +5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600, # 896 +5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616, # 912 +5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632, # 928 +5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648, # 944 +5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664, # 960 +5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680, # 976 +5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696, # 992 +5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712, # 1008 +5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728, # 1024 +5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744, # 1040 +5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760, # 1056 +5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776, # 1072 +5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792, # 1088 +5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808, # 1104 +5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824, # 1120 +5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840, # 1136 +5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856, # 1152 +5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872, # 1168 +5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888, # 1184 +5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904, # 1200 +5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920, # 1216 +5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936, # 1232 +5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952, # 1248 +5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968, # 1264 +5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984, # 1280 +5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000, # 1296 +6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016, # 1312 +6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032, # 1328 +6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048, # 1344 +6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064, # 1360 +6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080, # 1376 +6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096, # 1392 +6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112, # 1408 +6113,6114,2044,2060,4621, 997,1235, 473,1186,4622, 920,3378,6115,6116, 379,1108, # 1424 +4313,2657,2735,3934,6117,3809, 636,3233, 573,1026,3693,3435,2974,3300,2298,4105, # 1440 + 854,2937,2463, 393,2581,2417, 539, 752,1280,2750,2480, 140,1161, 440, 708,1569, # 1456 + 665,2497,1746,1291,1523,3000, 164,1603, 847,1331, 537,1997, 486, 508,1693,2418, # 1472 +1970,2227, 878,1220, 299,1030, 969, 652,2751, 624,1137,3301,2619, 65,3302,2045, # 1488 +1761,1859,3120,1930,3694,3516, 663,1767, 852, 835,3695, 269, 767,2826,2339,1305, # 1504 + 896,1150, 770,1616,6118, 506,1502,2075,1012,2519, 775,2520,2975,2340,2938,4314, # 1520 +3028,2086,1224,1943,2286,6119,3072,4315,2240,1273,1987,3935,1557, 175, 597, 985, # 1536 +3517,2419,2521,1416,3029, 585, 938,1931,1007,1052,1932,1685,6120,3379,4316,4623, # 1552 + 804, 599,3121,1333,2128,2539,1159,1554,2032,3810, 687,2033,2904, 952, 675,1467, # 1568 +3436,6121,2241,1096,1786,2440,1543,1924, 980,1813,2228, 781,2692,1879, 728,1918, # 1584 +3696,4624, 548,1950,4625,1809,1088,1356,3303,2522,1944, 502, 972, 373, 513,2827, # 1600 + 586,2377,2391,1003,1976,1631,6122,2464,1084, 648,1776,4626,2141, 324, 962,2012, # 1616 +2177,2076,1384, 742,2178,1448,1173,1810, 222, 102, 301, 445, 125,2420, 662,2498, # 1632 + 277, 200,1476,1165,1068, 224,2562,1378,1446, 450,1880, 659, 791, 582,4627,2939, # 1648 +3936,1516,1274, 555,2099,3697,1020,1389,1526,3380,1762,1723,1787,2229, 412,2114, # 1664 +1900,2392,3518, 512,2597, 427,1925,2341,3122,1653,1686,2465,2499, 697, 330, 273, # 1680 + 380,2162, 951, 832, 780, 991,1301,3073, 965,2270,3519, 668,2523,2636,1286, 535, # 1696 +1407, 518, 671, 957,2658,2378, 267, 611,2197,3030,6123, 248,2299, 967,1799,2356, # 1712 + 850,1418,3437,1876,1256,1480,2828,1718,6124,6125,1755,1664,2405,6126,4628,2879, # 1728 +2829, 499,2179, 676,4629, 557,2329,2214,2090, 325,3234, 464, 811,3001, 992,2342, # 1744 +2481,1232,1469, 303,2242, 466,1070,2163, 603,1777,2091,4630,2752,4631,2714, 322, # 1760 +2659,1964,1768, 481,2188,1463,2330,2857,3600,2092,3031,2421,4632,2318,2070,1849, # 1776 +2598,4633,1302,2254,1668,1701,2422,3811,2905,3032,3123,2046,4106,1763,1694,4634, # 1792 +1604, 943,1724,1454, 917, 868,2215,1169,2940, 552,1145,1800,1228,1823,1955, 316, # 1808 +1080,2510, 361,1807,2830,4107,2660,3381,1346,1423,1134,4108,6127, 541,1263,1229, # 1824 +1148,2540, 545, 465,1833,2880,3438,1901,3074,2482, 816,3937, 713,1788,2500, 122, # 1840 +1575, 195,1451,2501,1111,6128, 859, 374,1225,2243,2483,4317, 390,1033,3439,3075, # 1856 +2524,1687, 266, 793,1440,2599, 946, 779, 802, 507, 897,1081, 528,2189,1292, 711, # 1872 +1866,1725,1167,1640, 753, 398,2661,1053, 246, 348,4318, 137,1024,3440,1600,2077, # 1888 +2129, 825,4319, 698, 238, 521, 187,2300,1157,2423,1641,1605,1464,1610,1097,2541, # 1904 +1260,1436, 759,2255,1814,2150, 705,3235, 409,2563,3304, 561,3033,2005,2564, 726, # 1920 +1956,2343,3698,4109, 949,3812,3813,3520,1669, 653,1379,2525, 881,2198, 632,2256, # 1936 +1027, 778,1074, 733,1957, 514,1481,2466, 554,2180, 702,3938,1606,1017,1398,6129, # 1952 +1380,3521, 921, 993,1313, 594, 449,1489,1617,1166, 768,1426,1360, 495,1794,3601, # 1968 +1177,3602,1170,4320,2344, 476, 425,3167,4635,3168,1424, 401,2662,1171,3382,1998, # 1984 +1089,4110, 477,3169, 474,6130,1909, 596,2831,1842, 494, 693,1051,1028,1207,3076, # 2000 + 606,2115, 727,2790,1473,1115, 743,3522, 630, 805,1532,4321,2021, 366,1057, 838, # 2016 + 684,1114,2142,4322,2050,1492,1892,1808,2271,3814,2424,1971,1447,1373,3305,1090, # 2032 +1536,3939,3523,3306,1455,2199, 336, 369,2331,1035, 584,2393, 902, 718,2600,6131, # 2048 +2753, 463,2151,1149,1611,2467, 715,1308,3124,1268, 343,1413,3236,1517,1347,2663, # 2064 +2093,3940,2022,1131,1553,2100,2941,1427,3441,2942,1323,2484,6132,1980, 872,2368, # 2080 +2441,2943, 320,2369,2116,1082, 679,1933,3941,2791,3815, 625,1143,2023, 422,2200, # 2096 +3816,6133, 730,1695, 356,2257,1626,2301,2858,2637,1627,1778, 937, 883,2906,2693, # 2112 +3002,1769,1086, 400,1063,1325,3307,2792,4111,3077, 456,2345,1046, 747,6134,1524, # 2128 + 884,1094,3383,1474,2164,1059, 974,1688,2181,2258,1047, 345,1665,1187, 358, 875, # 2144 +3170, 305, 660,3524,2190,1334,1135,3171,1540,1649,2542,1527, 927, 968,2793, 885, # 2160 +1972,1850, 482, 500,2638,1218,1109,1085,2543,1654,2034, 876, 78,2287,1482,1277, # 2176 + 861,1675,1083,1779, 724,2754, 454, 397,1132,1612,2332, 893, 672,1237, 257,2259, # 2192 +2370, 135,3384, 337,2244, 547, 352, 340, 709,2485,1400, 788,1138,2511, 540, 772, # 2208 +1682,2260,2272,2544,2013,1843,1902,4636,1999,1562,2288,4637,2201,1403,1533, 407, # 2224 + 576,3308,1254,2071, 978,3385, 170, 136,1201,3125,2664,3172,2394, 213, 912, 873, # 2240 +3603,1713,2202, 699,3604,3699, 813,3442, 493, 531,1054, 468,2907,1483, 304, 281, # 2256 +4112,1726,1252,2094, 339,2319,2130,2639, 756,1563,2944, 748, 571,2976,1588,2425, # 2272 +2715,1851,1460,2426,1528,1392,1973,3237, 288,3309, 685,3386, 296, 892,2716,2216, # 2288 +1570,2245, 722,1747,2217, 905,3238,1103,6135,1893,1441,1965, 251,1805,2371,3700, # 2304 +2601,1919,1078, 75,2182,1509,1592,1270,2640,4638,2152,6136,3310,3817, 524, 706, # 2320 +1075, 292,3818,1756,2602, 317, 98,3173,3605,3525,1844,2218,3819,2502, 814, 567, # 2336 + 385,2908,1534,6137, 534,1642,3239, 797,6138,1670,1529, 953,4323, 188,1071, 538, # 2352 + 178, 729,3240,2109,1226,1374,2000,2357,2977, 731,2468,1116,2014,2051,6139,1261, # 2368 +1593, 803,2859,2736,3443, 556, 682, 823,1541,6140,1369,2289,1706,2794, 845, 462, # 2384 +2603,2665,1361, 387, 162,2358,1740, 739,1770,1720,1304,1401,3241,1049, 627,1571, # 2400 +2427,3526,1877,3942,1852,1500, 431,1910,1503, 677, 297,2795, 286,1433,1038,1198, # 2416 +2290,1133,1596,4113,4639,2469,1510,1484,3943,6141,2442, 108, 712,4640,2372, 866, # 2432 +3701,2755,3242,1348, 834,1945,1408,3527,2395,3243,1811, 824, 994,1179,2110,1548, # 2448 +1453, 790,3003, 690,4324,4325,2832,2909,3820,1860,3821, 225,1748, 310, 346,1780, # 2464 +2470, 821,1993,2717,2796, 828, 877,3528,2860,2471,1702,2165,2910,2486,1789, 453, # 2480 + 359,2291,1676, 73,1164,1461,1127,3311, 421, 604, 314,1037, 589, 116,2487, 737, # 2496 + 837,1180, 111, 244, 735,6142,2261,1861,1362, 986, 523, 418, 581,2666,3822, 103, # 2512 + 855, 503,1414,1867,2488,1091, 657,1597, 979, 605,1316,4641,1021,2443,2078,2001, # 2528 +1209, 96, 587,2166,1032, 260,1072,2153, 173, 94, 226,3244, 819,2006,4642,4114, # 2544 +2203, 231,1744, 782, 97,2667, 786,3387, 887, 391, 442,2219,4326,1425,6143,2694, # 2560 + 633,1544,1202, 483,2015, 592,2052,1958,2472,1655, 419, 129,4327,3444,3312,1714, # 2576 +1257,3078,4328,1518,1098, 865,1310,1019,1885,1512,1734, 469,2444, 148, 773, 436, # 2592 +1815,1868,1128,1055,4329,1245,2756,3445,2154,1934,1039,4643, 579,1238, 932,2320, # 2608 + 353, 205, 801, 115,2428, 944,2321,1881, 399,2565,1211, 678, 766,3944, 335,2101, # 2624 +1459,1781,1402,3945,2737,2131,1010, 844, 981,1326,1013, 550,1816,1545,2620,1335, # 2640 +1008, 371,2881, 936,1419,1613,3529,1456,1395,2273,1834,2604,1317,2738,2503, 416, # 2656 +1643,4330, 806,1126, 229, 591,3946,1314,1981,1576,1837,1666, 347,1790, 977,3313, # 2672 + 764,2861,1853, 688,2429,1920,1462, 77, 595, 415,2002,3034, 798,1192,4115,6144, # 2688 +2978,4331,3035,2695,2582,2072,2566, 430,2430,1727, 842,1396,3947,3702, 613, 377, # 2704 + 278, 236,1417,3388,3314,3174, 757,1869, 107,3530,6145,1194, 623,2262, 207,1253, # 2720 +2167,3446,3948, 492,1117,1935, 536,1838,2757,1246,4332, 696,2095,2406,1393,1572, # 2736 +3175,1782, 583, 190, 253,1390,2230, 830,3126,3389, 934,3245,1703,1749,2979,1870, # 2752 +2545,1656,2204, 869,2346,4116,3176,1817, 496,1764,4644, 942,1504, 404,1903,1122, # 2768 +1580,3606,2945,1022, 515, 372,1735, 955,2431,3036,6146,2797,1110,2302,2798, 617, # 2784 +6147, 441, 762,1771,3447,3607,3608,1904, 840,3037, 86, 939,1385, 572,1370,2445, # 2800 +1336, 114,3703, 898, 294, 203,3315, 703,1583,2274, 429, 961,4333,1854,1951,3390, # 2816 +2373,3704,4334,1318,1381, 966,1911,2322,1006,1155, 309, 989, 458,2718,1795,1372, # 2832 +1203, 252,1689,1363,3177, 517,1936, 168,1490, 562, 193,3823,1042,4117,1835, 551, # 2848 + 470,4645, 395, 489,3448,1871,1465,2583,2641, 417,1493, 279,1295, 511,1236,1119, # 2864 + 72,1231,1982,1812,3004, 871,1564, 984,3449,1667,2696,2096,4646,2347,2833,1673, # 2880 +3609, 695,3246,2668, 807,1183,4647, 890, 388,2333,1801,1457,2911,1765,1477,1031, # 2896 +3316,3317,1278,3391,2799,2292,2526, 163,3450,4335,2669,1404,1802,6148,2323,2407, # 2912 +1584,1728,1494,1824,1269, 298, 909,3318,1034,1632, 375, 776,1683,2061, 291, 210, # 2928 +1123, 809,1249,1002,2642,3038, 206,1011,2132, 144, 975, 882,1565, 342, 667, 754, # 2944 +1442,2143,1299,2303,2062, 447, 626,2205,1221,2739,2912,1144,1214,2206,2584, 760, # 2960 +1715, 614, 950,1281,2670,2621, 810, 577,1287,2546,4648, 242,2168, 250,2643, 691, # 2976 + 123,2644, 647, 313,1029, 689,1357,2946,1650, 216, 771,1339,1306, 808,2063, 549, # 2992 + 913,1371,2913,2914,6149,1466,1092,1174,1196,1311,2605,2396,1783,1796,3079, 406, # 3008 +2671,2117,3949,4649, 487,1825,2220,6150,2915, 448,2348,1073,6151,2397,1707, 130, # 3024 + 900,1598, 329, 176,1959,2527,1620,6152,2275,4336,3319,1983,2191,3705,3610,2155, # 3040 +3706,1912,1513,1614,6153,1988, 646, 392,2304,1589,3320,3039,1826,1239,1352,1340, # 3056 +2916, 505,2567,1709,1437,2408,2547, 906,6154,2672, 384,1458,1594,1100,1329, 710, # 3072 + 423,3531,2064,2231,2622,1989,2673,1087,1882, 333, 841,3005,1296,2882,2379, 580, # 3088 +1937,1827,1293,2585, 601, 574, 249,1772,4118,2079,1120, 645, 901,1176,1690, 795, # 3104 +2207, 478,1434, 516,1190,1530, 761,2080, 930,1264, 355, 435,1552, 644,1791, 987, # 3120 + 220,1364,1163,1121,1538, 306,2169,1327,1222, 546,2645, 218, 241, 610,1704,3321, # 3136 +1984,1839,1966,2528, 451,6155,2586,3707,2568, 907,3178, 254,2947, 186,1845,4650, # 3152 + 745, 432,1757, 428,1633, 888,2246,2221,2489,3611,2118,1258,1265, 956,3127,1784, # 3168 +4337,2490, 319, 510, 119, 457,3612, 274,2035,2007,4651,1409,3128, 970,2758, 590, # 3184 +2800, 661,2247,4652,2008,3950,1420,1549,3080,3322,3951,1651,1375,2111, 485,2491, # 3200 +1429,1156,6156,2548,2183,1495, 831,1840,2529,2446, 501,1657, 307,1894,3247,1341, # 3216 + 666, 899,2156,1539,2549,1559, 886, 349,2208,3081,2305,1736,3824,2170,2759,1014, # 3232 +1913,1386, 542,1397,2948, 490, 368, 716, 362, 159, 282,2569,1129,1658,1288,1750, # 3248 +2674, 276, 649,2016, 751,1496, 658,1818,1284,1862,2209,2087,2512,3451, 622,2834, # 3264 + 376, 117,1060,2053,1208,1721,1101,1443, 247,1250,3179,1792,3952,2760,2398,3953, # 3280 +6157,2144,3708, 446,2432,1151,2570,3452,2447,2761,2835,1210,2448,3082, 424,2222, # 3296 +1251,2449,2119,2836, 504,1581,4338, 602, 817, 857,3825,2349,2306, 357,3826,1470, # 3312 +1883,2883, 255, 958, 929,2917,3248, 302,4653,1050,1271,1751,2307,1952,1430,2697, # 3328 +2719,2359, 354,3180, 777, 158,2036,4339,1659,4340,4654,2308,2949,2248,1146,2232, # 3344 +3532,2720,1696,2623,3827,6158,3129,1550,2698,1485,1297,1428, 637, 931,2721,2145, # 3360 + 914,2550,2587, 81,2450, 612, 827,2646,1242,4655,1118,2884, 472,1855,3181,3533, # 3376 +3534, 569,1353,2699,1244,1758,2588,4119,2009,2762,2171,3709,1312,1531,6159,1152, # 3392 +1938, 134,1830, 471,3710,2276,1112,1535,3323,3453,3535, 982,1337,2950, 488, 826, # 3408 + 674,1058,1628,4120,2017, 522,2399, 211, 568,1367,3454, 350, 293,1872,1139,3249, # 3424 +1399,1946,3006,1300,2360,3324, 588, 736,6160,2606, 744, 669,3536,3828,6161,1358, # 3440 + 199, 723, 848, 933, 851,1939,1505,1514,1338,1618,1831,4656,1634,3613, 443,2740, # 3456 +3829, 717,1947, 491,1914,6162,2551,1542,4121,1025,6163,1099,1223, 198,3040,2722, # 3472 + 370, 410,1905,2589, 998,1248,3182,2380, 519,1449,4122,1710, 947, 928,1153,4341, # 3488 +2277, 344,2624,1511, 615, 105, 161,1212,1076,1960,3130,2054,1926,1175,1906,2473, # 3504 + 414,1873,2801,6164,2309, 315,1319,3325, 318,2018,2146,2157, 963, 631, 223,4342, # 3520 +4343,2675, 479,3711,1197,2625,3712,2676,2361,6165,4344,4123,6166,2451,3183,1886, # 3536 +2184,1674,1330,1711,1635,1506, 799, 219,3250,3083,3954,1677,3713,3326,2081,3614, # 3552 +1652,2073,4657,1147,3041,1752, 643,1961, 147,1974,3955,6167,1716,2037, 918,3007, # 3568 +1994, 120,1537, 118, 609,3184,4345, 740,3455,1219, 332,1615,3830,6168,1621,2980, # 3584 +1582, 783, 212, 553,2350,3714,1349,2433,2082,4124, 889,6169,2310,1275,1410, 973, # 3600 + 166,1320,3456,1797,1215,3185,2885,1846,2590,2763,4658, 629, 822,3008, 763, 940, # 3616 +1990,2862, 439,2409,1566,1240,1622, 926,1282,1907,2764, 654,2210,1607, 327,1130, # 3632 +3956,1678,1623,6170,2434,2192, 686, 608,3831,3715, 903,3957,3042,6171,2741,1522, # 3648 +1915,1105,1555,2552,1359, 323,3251,4346,3457, 738,1354,2553,2311,2334,1828,2003, # 3664 +3832,1753,2351,1227,6172,1887,4125,1478,6173,2410,1874,1712,1847, 520,1204,2607, # 3680 + 264,4659, 836,2677,2102, 600,4660,3833,2278,3084,6174,4347,3615,1342, 640, 532, # 3696 + 543,2608,1888,2400,2591,1009,4348,1497, 341,1737,3616,2723,1394, 529,3252,1321, # 3712 + 983,4661,1515,2120, 971,2592, 924, 287,1662,3186,4349,2700,4350,1519, 908,1948, # 3728 +2452, 156, 796,1629,1486,2223,2055, 694,4126,1259,1036,3392,1213,2249,2742,1889, # 3744 +1230,3958,1015, 910, 408, 559,3617,4662, 746, 725, 935,4663,3959,3009,1289, 563, # 3760 + 867,4664,3960,1567,2981,2038,2626, 988,2263,2381,4351, 143,2374, 704,1895,6175, # 3776 +1188,3716,2088, 673,3085,2362,4352, 484,1608,1921,2765,2918, 215, 904,3618,3537, # 3792 + 894, 509, 976,3043,2701,3961,4353,2837,2982, 498,6176,6177,1102,3538,1332,3393, # 3808 +1487,1636,1637, 233, 245,3962, 383, 650, 995,3044, 460,1520,1206,2352, 749,3327, # 3824 + 530, 700, 389,1438,1560,1773,3963,2264, 719,2951,2724,3834, 870,1832,1644,1000, # 3840 + 839,2474,3717, 197,1630,3394, 365,2886,3964,1285,2133, 734, 922, 818,1106, 732, # 3856 + 480,2083,1774,3458, 923,2279,1350, 221,3086, 85,2233,2234,3835,1585,3010,2147, # 3872 +1387,1705,2382,1619,2475, 133, 239,2802,1991,1016,2084,2383, 411,2838,1113, 651, # 3888 +1985,1160,3328, 990,1863,3087,1048,1276,2647, 265,2627,1599,3253,2056, 150, 638, # 3904 +2019, 656, 853, 326,1479, 680,1439,4354,1001,1759, 413,3459,3395,2492,1431, 459, # 3920 +4355,1125,3329,2265,1953,1450,2065,2863, 849, 351,2678,3131,3254,3255,1104,1577, # 3936 + 227,1351,1645,2453,2193,1421,2887, 812,2121, 634, 95,2435, 201,2312,4665,1646, # 3952 +1671,2743,1601,2554,2702,2648,2280,1315,1366,2089,3132,1573,3718,3965,1729,1189, # 3968 + 328,2679,1077,1940,1136, 558,1283, 964,1195, 621,2074,1199,1743,3460,3619,1896, # 3984 +1916,1890,3836,2952,1154,2112,1064, 862, 378,3011,2066,2113,2803,1568,2839,6178, # 4000 +3088,2919,1941,1660,2004,1992,2194, 142, 707,1590,1708,1624,1922,1023,1836,1233, # 4016 +1004,2313, 789, 741,3620,6179,1609,2411,1200,4127,3719,3720,4666,2057,3721, 593, # 4032 +2840, 367,2920,1878,6180,3461,1521, 628,1168, 692,2211,2649, 300, 720,2067,2571, # 4048 +2953,3396, 959,2504,3966,3539,3462,1977, 701,6181, 954,1043, 800, 681, 183,3722, # 4064 +1803,1730,3540,4128,2103, 815,2314, 174, 467, 230,2454,1093,2134, 755,3541,3397, # 4080 +1141,1162,6182,1738,2039, 270,3256,2513,1005,1647,2185,3837, 858,1679,1897,1719, # 4096 +2954,2324,1806, 402, 670, 167,4129,1498,2158,2104, 750,6183, 915, 189,1680,1551, # 4112 + 455,4356,1501,2455, 405,1095,2955, 338,1586,1266,1819, 570, 641,1324, 237,1556, # 4128 +2650,1388,3723,6184,1368,2384,1343,1978,3089,2436, 879,3724, 792,1191, 758,3012, # 4144 +1411,2135,1322,4357, 240,4667,1848,3725,1574,6185, 420,3045,1546,1391, 714,4358, # 4160 +1967, 941,1864, 863, 664, 426, 560,1731,2680,1785,2864,1949,2363, 403,3330,1415, # 4176 +1279,2136,1697,2335, 204, 721,2097,3838, 90,6186,2085,2505, 191,3967, 124,2148, # 4192 +1376,1798,1178,1107,1898,1405, 860,4359,1243,1272,2375,2983,1558,2456,1638, 113, # 4208 +3621, 578,1923,2609, 880, 386,4130, 784,2186,2266,1422,2956,2172,1722, 497, 263, # 4224 +2514,1267,2412,2610, 177,2703,3542, 774,1927,1344, 616,1432,1595,1018, 172,4360, # 4240 +2325, 911,4361, 438,1468,3622, 794,3968,2024,2173,1681,1829,2957, 945, 895,3090, # 4256 + 575,2212,2476, 475,2401,2681, 785,2744,1745,2293,2555,1975,3133,2865, 394,4668, # 4272 +3839, 635,4131, 639, 202,1507,2195,2766,1345,1435,2572,3726,1908,1184,1181,2457, # 4288 +3727,3134,4362, 843,2611, 437, 916,4669, 234, 769,1884,3046,3047,3623, 833,6187, # 4304 +1639,2250,2402,1355,1185,2010,2047, 999, 525,1732,1290,1488,2612, 948,1578,3728, # 4320 +2413,2477,1216,2725,2159, 334,3840,1328,3624,2921,1525,4132, 564,1056, 891,4363, # 4336 +1444,1698,2385,2251,3729,1365,2281,2235,1717,6188, 864,3841,2515, 444, 527,2767, # 4352 +2922,3625, 544, 461,6189, 566, 209,2437,3398,2098,1065,2068,3331,3626,3257,2137, # 4368 #last 512 +) +# fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py new file mode 100644 index 00000000..c1296999 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py @@ -0,0 +1,2382 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# The frequency data itself is the same as euc-kr. +# This is just a mapping table to euc-kr. + +JOHAB_TO_EUCKR_ORDER_TABLE = { + 0x8861: 0, + 0x8862: 1, + 0x8865: 2, + 0x8868: 3, + 0x8869: 4, + 0x886A: 5, + 0x886B: 6, + 0x8871: 7, + 0x8873: 8, + 0x8874: 9, + 0x8875: 10, + 0x8876: 11, + 0x8877: 12, + 0x8878: 13, + 0x8879: 14, + 0x887B: 15, + 0x887C: 16, + 0x887D: 17, + 0x8881: 18, + 0x8882: 19, + 0x8885: 20, + 0x8889: 21, + 0x8891: 22, + 0x8893: 23, + 0x8895: 24, + 0x8896: 25, + 0x8897: 26, + 0x88A1: 27, + 0x88A2: 28, + 0x88A5: 29, + 0x88A9: 30, + 0x88B5: 31, + 0x88B7: 32, + 0x88C1: 33, + 0x88C5: 34, + 0x88C9: 35, + 0x88E1: 36, + 0x88E2: 37, + 0x88E5: 38, + 0x88E8: 39, + 0x88E9: 40, + 0x88EB: 41, + 0x88F1: 42, + 0x88F3: 43, + 0x88F5: 44, + 0x88F6: 45, + 0x88F7: 46, + 0x88F8: 47, + 0x88FB: 48, + 0x88FC: 49, + 0x88FD: 50, + 0x8941: 51, + 0x8945: 52, + 0x8949: 53, + 0x8951: 54, + 0x8953: 55, + 0x8955: 56, + 0x8956: 57, + 0x8957: 58, + 0x8961: 59, + 0x8962: 60, + 0x8963: 61, + 0x8965: 62, + 0x8968: 63, + 0x8969: 64, + 0x8971: 65, + 0x8973: 66, + 0x8975: 67, + 0x8976: 68, + 0x8977: 69, + 0x897B: 70, + 0x8981: 71, + 0x8985: 72, + 0x8989: 73, + 0x8993: 74, + 0x8995: 75, + 0x89A1: 76, + 0x89A2: 77, + 0x89A5: 78, + 0x89A8: 79, + 0x89A9: 80, + 0x89AB: 81, + 0x89AD: 82, + 0x89B0: 83, + 0x89B1: 84, + 0x89B3: 85, + 0x89B5: 86, + 0x89B7: 87, + 0x89B8: 88, + 0x89C1: 89, + 0x89C2: 90, + 0x89C5: 91, + 0x89C9: 92, + 0x89CB: 93, + 0x89D1: 94, + 0x89D3: 95, + 0x89D5: 96, + 0x89D7: 97, + 0x89E1: 98, + 0x89E5: 99, + 0x89E9: 100, + 0x89F3: 101, + 0x89F6: 102, + 0x89F7: 103, + 0x8A41: 104, + 0x8A42: 105, + 0x8A45: 106, + 0x8A49: 107, + 0x8A51: 108, + 0x8A53: 109, + 0x8A55: 110, + 0x8A57: 111, + 0x8A61: 112, + 0x8A65: 113, + 0x8A69: 114, + 0x8A73: 115, + 0x8A75: 116, + 0x8A81: 117, + 0x8A82: 118, + 0x8A85: 119, + 0x8A88: 120, + 0x8A89: 121, + 0x8A8A: 122, + 0x8A8B: 123, + 0x8A90: 124, + 0x8A91: 125, + 0x8A93: 126, + 0x8A95: 127, + 0x8A97: 128, + 0x8A98: 129, + 0x8AA1: 130, + 0x8AA2: 131, + 0x8AA5: 132, + 0x8AA9: 133, + 0x8AB6: 134, + 0x8AB7: 135, + 0x8AC1: 136, + 0x8AD5: 137, + 0x8AE1: 138, + 0x8AE2: 139, + 0x8AE5: 140, + 0x8AE9: 141, + 0x8AF1: 142, + 0x8AF3: 143, + 0x8AF5: 144, + 0x8B41: 145, + 0x8B45: 146, + 0x8B49: 147, + 0x8B61: 148, + 0x8B62: 149, + 0x8B65: 150, + 0x8B68: 151, + 0x8B69: 152, + 0x8B6A: 153, + 0x8B71: 154, + 0x8B73: 155, + 0x8B75: 156, + 0x8B77: 157, + 0x8B81: 158, + 0x8BA1: 159, + 0x8BA2: 160, + 0x8BA5: 161, + 0x8BA8: 162, + 0x8BA9: 163, + 0x8BAB: 164, + 0x8BB1: 165, + 0x8BB3: 166, + 0x8BB5: 167, + 0x8BB7: 168, + 0x8BB8: 169, + 0x8BBC: 170, + 0x8C61: 171, + 0x8C62: 172, + 0x8C63: 173, + 0x8C65: 174, + 0x8C69: 175, + 0x8C6B: 176, + 0x8C71: 177, + 0x8C73: 178, + 0x8C75: 179, + 0x8C76: 180, + 0x8C77: 181, + 0x8C7B: 182, + 0x8C81: 183, + 0x8C82: 184, + 0x8C85: 185, + 0x8C89: 186, + 0x8C91: 187, + 0x8C93: 188, + 0x8C95: 189, + 0x8C96: 190, + 0x8C97: 191, + 0x8CA1: 192, + 0x8CA2: 193, + 0x8CA9: 194, + 0x8CE1: 195, + 0x8CE2: 196, + 0x8CE3: 197, + 0x8CE5: 198, + 0x8CE9: 199, + 0x8CF1: 200, + 0x8CF3: 201, + 0x8CF5: 202, + 0x8CF6: 203, + 0x8CF7: 204, + 0x8D41: 205, + 0x8D42: 206, + 0x8D45: 207, + 0x8D51: 208, + 0x8D55: 209, + 0x8D57: 210, + 0x8D61: 211, + 0x8D65: 212, + 0x8D69: 213, + 0x8D75: 214, + 0x8D76: 215, + 0x8D7B: 216, + 0x8D81: 217, + 0x8DA1: 218, + 0x8DA2: 219, + 0x8DA5: 220, + 0x8DA7: 221, + 0x8DA9: 222, + 0x8DB1: 223, + 0x8DB3: 224, + 0x8DB5: 225, + 0x8DB7: 226, + 0x8DB8: 227, + 0x8DB9: 228, + 0x8DC1: 229, + 0x8DC2: 230, + 0x8DC9: 231, + 0x8DD6: 232, + 0x8DD7: 233, + 0x8DE1: 234, + 0x8DE2: 235, + 0x8DF7: 236, + 0x8E41: 237, + 0x8E45: 238, + 0x8E49: 239, + 0x8E51: 240, + 0x8E53: 241, + 0x8E57: 242, + 0x8E61: 243, + 0x8E81: 244, + 0x8E82: 245, + 0x8E85: 246, + 0x8E89: 247, + 0x8E90: 248, + 0x8E91: 249, + 0x8E93: 250, + 0x8E95: 251, + 0x8E97: 252, + 0x8E98: 253, + 0x8EA1: 254, + 0x8EA9: 255, + 0x8EB6: 256, + 0x8EB7: 257, + 0x8EC1: 258, + 0x8EC2: 259, + 0x8EC5: 260, + 0x8EC9: 261, + 0x8ED1: 262, + 0x8ED3: 263, + 0x8ED6: 264, + 0x8EE1: 265, + 0x8EE5: 266, + 0x8EE9: 267, + 0x8EF1: 268, + 0x8EF3: 269, + 0x8F41: 270, + 0x8F61: 271, + 0x8F62: 272, + 0x8F65: 273, + 0x8F67: 274, + 0x8F69: 275, + 0x8F6B: 276, + 0x8F70: 277, + 0x8F71: 278, + 0x8F73: 279, + 0x8F75: 280, + 0x8F77: 281, + 0x8F7B: 282, + 0x8FA1: 283, + 0x8FA2: 284, + 0x8FA5: 285, + 0x8FA9: 286, + 0x8FB1: 287, + 0x8FB3: 288, + 0x8FB5: 289, + 0x8FB7: 290, + 0x9061: 291, + 0x9062: 292, + 0x9063: 293, + 0x9065: 294, + 0x9068: 295, + 0x9069: 296, + 0x906A: 297, + 0x906B: 298, + 0x9071: 299, + 0x9073: 300, + 0x9075: 301, + 0x9076: 302, + 0x9077: 303, + 0x9078: 304, + 0x9079: 305, + 0x907B: 306, + 0x907D: 307, + 0x9081: 308, + 0x9082: 309, + 0x9085: 310, + 0x9089: 311, + 0x9091: 312, + 0x9093: 313, + 0x9095: 314, + 0x9096: 315, + 0x9097: 316, + 0x90A1: 317, + 0x90A2: 318, + 0x90A5: 319, + 0x90A9: 320, + 0x90B1: 321, + 0x90B7: 322, + 0x90E1: 323, + 0x90E2: 324, + 0x90E4: 325, + 0x90E5: 326, + 0x90E9: 327, + 0x90EB: 328, + 0x90EC: 329, + 0x90F1: 330, + 0x90F3: 331, + 0x90F5: 332, + 0x90F6: 333, + 0x90F7: 334, + 0x90FD: 335, + 0x9141: 336, + 0x9142: 337, + 0x9145: 338, + 0x9149: 339, + 0x9151: 340, + 0x9153: 341, + 0x9155: 342, + 0x9156: 343, + 0x9157: 344, + 0x9161: 345, + 0x9162: 346, + 0x9165: 347, + 0x9169: 348, + 0x9171: 349, + 0x9173: 350, + 0x9176: 351, + 0x9177: 352, + 0x917A: 353, + 0x9181: 354, + 0x9185: 355, + 0x91A1: 356, + 0x91A2: 357, + 0x91A5: 358, + 0x91A9: 359, + 0x91AB: 360, + 0x91B1: 361, + 0x91B3: 362, + 0x91B5: 363, + 0x91B7: 364, + 0x91BC: 365, + 0x91BD: 366, + 0x91C1: 367, + 0x91C5: 368, + 0x91C9: 369, + 0x91D6: 370, + 0x9241: 371, + 0x9245: 372, + 0x9249: 373, + 0x9251: 374, + 0x9253: 375, + 0x9255: 376, + 0x9261: 377, + 0x9262: 378, + 0x9265: 379, + 0x9269: 380, + 0x9273: 381, + 0x9275: 382, + 0x9277: 383, + 0x9281: 384, + 0x9282: 385, + 0x9285: 386, + 0x9288: 387, + 0x9289: 388, + 0x9291: 389, + 0x9293: 390, + 0x9295: 391, + 0x9297: 392, + 0x92A1: 393, + 0x92B6: 394, + 0x92C1: 395, + 0x92E1: 396, + 0x92E5: 397, + 0x92E9: 398, + 0x92F1: 399, + 0x92F3: 400, + 0x9341: 401, + 0x9342: 402, + 0x9349: 403, + 0x9351: 404, + 0x9353: 405, + 0x9357: 406, + 0x9361: 407, + 0x9362: 408, + 0x9365: 409, + 0x9369: 410, + 0x936A: 411, + 0x936B: 412, + 0x9371: 413, + 0x9373: 414, + 0x9375: 415, + 0x9377: 416, + 0x9378: 417, + 0x937C: 418, + 0x9381: 419, + 0x9385: 420, + 0x9389: 421, + 0x93A1: 422, + 0x93A2: 423, + 0x93A5: 424, + 0x93A9: 425, + 0x93AB: 426, + 0x93B1: 427, + 0x93B3: 428, + 0x93B5: 429, + 0x93B7: 430, + 0x93BC: 431, + 0x9461: 432, + 0x9462: 433, + 0x9463: 434, + 0x9465: 435, + 0x9468: 436, + 0x9469: 437, + 0x946A: 438, + 0x946B: 439, + 0x946C: 440, + 0x9470: 441, + 0x9471: 442, + 0x9473: 443, + 0x9475: 444, + 0x9476: 445, + 0x9477: 446, + 0x9478: 447, + 0x9479: 448, + 0x947D: 449, + 0x9481: 450, + 0x9482: 451, + 0x9485: 452, + 0x9489: 453, + 0x9491: 454, + 0x9493: 455, + 0x9495: 456, + 0x9496: 457, + 0x9497: 458, + 0x94A1: 459, + 0x94E1: 460, + 0x94E2: 461, + 0x94E3: 462, + 0x94E5: 463, + 0x94E8: 464, + 0x94E9: 465, + 0x94EB: 466, + 0x94EC: 467, + 0x94F1: 468, + 0x94F3: 469, + 0x94F5: 470, + 0x94F7: 471, + 0x94F9: 472, + 0x94FC: 473, + 0x9541: 474, + 0x9542: 475, + 0x9545: 476, + 0x9549: 477, + 0x9551: 478, + 0x9553: 479, + 0x9555: 480, + 0x9556: 481, + 0x9557: 482, + 0x9561: 483, + 0x9565: 484, + 0x9569: 485, + 0x9576: 486, + 0x9577: 487, + 0x9581: 488, + 0x9585: 489, + 0x95A1: 490, + 0x95A2: 491, + 0x95A5: 492, + 0x95A8: 493, + 0x95A9: 494, + 0x95AB: 495, + 0x95AD: 496, + 0x95B1: 497, + 0x95B3: 498, + 0x95B5: 499, + 0x95B7: 500, + 0x95B9: 501, + 0x95BB: 502, + 0x95C1: 503, + 0x95C5: 504, + 0x95C9: 505, + 0x95E1: 506, + 0x95F6: 507, + 0x9641: 508, + 0x9645: 509, + 0x9649: 510, + 0x9651: 511, + 0x9653: 512, + 0x9655: 513, + 0x9661: 514, + 0x9681: 515, + 0x9682: 516, + 0x9685: 517, + 0x9689: 518, + 0x9691: 519, + 0x9693: 520, + 0x9695: 521, + 0x9697: 522, + 0x96A1: 523, + 0x96B6: 524, + 0x96C1: 525, + 0x96D7: 526, + 0x96E1: 527, + 0x96E5: 528, + 0x96E9: 529, + 0x96F3: 530, + 0x96F5: 531, + 0x96F7: 532, + 0x9741: 533, + 0x9745: 534, + 0x9749: 535, + 0x9751: 536, + 0x9757: 537, + 0x9761: 538, + 0x9762: 539, + 0x9765: 540, + 0x9768: 541, + 0x9769: 542, + 0x976B: 543, + 0x9771: 544, + 0x9773: 545, + 0x9775: 546, + 0x9777: 547, + 0x9781: 548, + 0x97A1: 549, + 0x97A2: 550, + 0x97A5: 551, + 0x97A8: 552, + 0x97A9: 553, + 0x97B1: 554, + 0x97B3: 555, + 0x97B5: 556, + 0x97B6: 557, + 0x97B7: 558, + 0x97B8: 559, + 0x9861: 560, + 0x9862: 561, + 0x9865: 562, + 0x9869: 563, + 0x9871: 564, + 0x9873: 565, + 0x9875: 566, + 0x9876: 567, + 0x9877: 568, + 0x987D: 569, + 0x9881: 570, + 0x9882: 571, + 0x9885: 572, + 0x9889: 573, + 0x9891: 574, + 0x9893: 575, + 0x9895: 576, + 0x9896: 577, + 0x9897: 578, + 0x98E1: 579, + 0x98E2: 580, + 0x98E5: 581, + 0x98E9: 582, + 0x98EB: 583, + 0x98EC: 584, + 0x98F1: 585, + 0x98F3: 586, + 0x98F5: 587, + 0x98F6: 588, + 0x98F7: 589, + 0x98FD: 590, + 0x9941: 591, + 0x9942: 592, + 0x9945: 593, + 0x9949: 594, + 0x9951: 595, + 0x9953: 596, + 0x9955: 597, + 0x9956: 598, + 0x9957: 599, + 0x9961: 600, + 0x9976: 601, + 0x99A1: 602, + 0x99A2: 603, + 0x99A5: 604, + 0x99A9: 605, + 0x99B7: 606, + 0x99C1: 607, + 0x99C9: 608, + 0x99E1: 609, + 0x9A41: 610, + 0x9A45: 611, + 0x9A81: 612, + 0x9A82: 613, + 0x9A85: 614, + 0x9A89: 615, + 0x9A90: 616, + 0x9A91: 617, + 0x9A97: 618, + 0x9AC1: 619, + 0x9AE1: 620, + 0x9AE5: 621, + 0x9AE9: 622, + 0x9AF1: 623, + 0x9AF3: 624, + 0x9AF7: 625, + 0x9B61: 626, + 0x9B62: 627, + 0x9B65: 628, + 0x9B68: 629, + 0x9B69: 630, + 0x9B71: 631, + 0x9B73: 632, + 0x9B75: 633, + 0x9B81: 634, + 0x9B85: 635, + 0x9B89: 636, + 0x9B91: 637, + 0x9B93: 638, + 0x9BA1: 639, + 0x9BA5: 640, + 0x9BA9: 641, + 0x9BB1: 642, + 0x9BB3: 643, + 0x9BB5: 644, + 0x9BB7: 645, + 0x9C61: 646, + 0x9C62: 647, + 0x9C65: 648, + 0x9C69: 649, + 0x9C71: 650, + 0x9C73: 651, + 0x9C75: 652, + 0x9C76: 653, + 0x9C77: 654, + 0x9C78: 655, + 0x9C7C: 656, + 0x9C7D: 657, + 0x9C81: 658, + 0x9C82: 659, + 0x9C85: 660, + 0x9C89: 661, + 0x9C91: 662, + 0x9C93: 663, + 0x9C95: 664, + 0x9C96: 665, + 0x9C97: 666, + 0x9CA1: 667, + 0x9CA2: 668, + 0x9CA5: 669, + 0x9CB5: 670, + 0x9CB7: 671, + 0x9CE1: 672, + 0x9CE2: 673, + 0x9CE5: 674, + 0x9CE9: 675, + 0x9CF1: 676, + 0x9CF3: 677, + 0x9CF5: 678, + 0x9CF6: 679, + 0x9CF7: 680, + 0x9CFD: 681, + 0x9D41: 682, + 0x9D42: 683, + 0x9D45: 684, + 0x9D49: 685, + 0x9D51: 686, + 0x9D53: 687, + 0x9D55: 688, + 0x9D57: 689, + 0x9D61: 690, + 0x9D62: 691, + 0x9D65: 692, + 0x9D69: 693, + 0x9D71: 694, + 0x9D73: 695, + 0x9D75: 696, + 0x9D76: 697, + 0x9D77: 698, + 0x9D81: 699, + 0x9D85: 700, + 0x9D93: 701, + 0x9D95: 702, + 0x9DA1: 703, + 0x9DA2: 704, + 0x9DA5: 705, + 0x9DA9: 706, + 0x9DB1: 707, + 0x9DB3: 708, + 0x9DB5: 709, + 0x9DB7: 710, + 0x9DC1: 711, + 0x9DC5: 712, + 0x9DD7: 713, + 0x9DF6: 714, + 0x9E41: 715, + 0x9E45: 716, + 0x9E49: 717, + 0x9E51: 718, + 0x9E53: 719, + 0x9E55: 720, + 0x9E57: 721, + 0x9E61: 722, + 0x9E65: 723, + 0x9E69: 724, + 0x9E73: 725, + 0x9E75: 726, + 0x9E77: 727, + 0x9E81: 728, + 0x9E82: 729, + 0x9E85: 730, + 0x9E89: 731, + 0x9E91: 732, + 0x9E93: 733, + 0x9E95: 734, + 0x9E97: 735, + 0x9EA1: 736, + 0x9EB6: 737, + 0x9EC1: 738, + 0x9EE1: 739, + 0x9EE2: 740, + 0x9EE5: 741, + 0x9EE9: 742, + 0x9EF1: 743, + 0x9EF5: 744, + 0x9EF7: 745, + 0x9F41: 746, + 0x9F42: 747, + 0x9F45: 748, + 0x9F49: 749, + 0x9F51: 750, + 0x9F53: 751, + 0x9F55: 752, + 0x9F57: 753, + 0x9F61: 754, + 0x9F62: 755, + 0x9F65: 756, + 0x9F69: 757, + 0x9F71: 758, + 0x9F73: 759, + 0x9F75: 760, + 0x9F77: 761, + 0x9F78: 762, + 0x9F7B: 763, + 0x9F7C: 764, + 0x9FA1: 765, + 0x9FA2: 766, + 0x9FA5: 767, + 0x9FA9: 768, + 0x9FB1: 769, + 0x9FB3: 770, + 0x9FB5: 771, + 0x9FB7: 772, + 0xA061: 773, + 0xA062: 774, + 0xA065: 775, + 0xA067: 776, + 0xA068: 777, + 0xA069: 778, + 0xA06A: 779, + 0xA06B: 780, + 0xA071: 781, + 0xA073: 782, + 0xA075: 783, + 0xA077: 784, + 0xA078: 785, + 0xA07B: 786, + 0xA07D: 787, + 0xA081: 788, + 0xA082: 789, + 0xA085: 790, + 0xA089: 791, + 0xA091: 792, + 0xA093: 793, + 0xA095: 794, + 0xA096: 795, + 0xA097: 796, + 0xA098: 797, + 0xA0A1: 798, + 0xA0A2: 799, + 0xA0A9: 800, + 0xA0B7: 801, + 0xA0E1: 802, + 0xA0E2: 803, + 0xA0E5: 804, + 0xA0E9: 805, + 0xA0EB: 806, + 0xA0F1: 807, + 0xA0F3: 808, + 0xA0F5: 809, + 0xA0F7: 810, + 0xA0F8: 811, + 0xA0FD: 812, + 0xA141: 813, + 0xA142: 814, + 0xA145: 815, + 0xA149: 816, + 0xA151: 817, + 0xA153: 818, + 0xA155: 819, + 0xA156: 820, + 0xA157: 821, + 0xA161: 822, + 0xA162: 823, + 0xA165: 824, + 0xA169: 825, + 0xA175: 826, + 0xA176: 827, + 0xA177: 828, + 0xA179: 829, + 0xA181: 830, + 0xA1A1: 831, + 0xA1A2: 832, + 0xA1A4: 833, + 0xA1A5: 834, + 0xA1A9: 835, + 0xA1AB: 836, + 0xA1B1: 837, + 0xA1B3: 838, + 0xA1B5: 839, + 0xA1B7: 840, + 0xA1C1: 841, + 0xA1C5: 842, + 0xA1D6: 843, + 0xA1D7: 844, + 0xA241: 845, + 0xA245: 846, + 0xA249: 847, + 0xA253: 848, + 0xA255: 849, + 0xA257: 850, + 0xA261: 851, + 0xA265: 852, + 0xA269: 853, + 0xA273: 854, + 0xA275: 855, + 0xA281: 856, + 0xA282: 857, + 0xA283: 858, + 0xA285: 859, + 0xA288: 860, + 0xA289: 861, + 0xA28A: 862, + 0xA28B: 863, + 0xA291: 864, + 0xA293: 865, + 0xA295: 866, + 0xA297: 867, + 0xA29B: 868, + 0xA29D: 869, + 0xA2A1: 870, + 0xA2A5: 871, + 0xA2A9: 872, + 0xA2B3: 873, + 0xA2B5: 874, + 0xA2C1: 875, + 0xA2E1: 876, + 0xA2E5: 877, + 0xA2E9: 878, + 0xA341: 879, + 0xA345: 880, + 0xA349: 881, + 0xA351: 882, + 0xA355: 883, + 0xA361: 884, + 0xA365: 885, + 0xA369: 886, + 0xA371: 887, + 0xA375: 888, + 0xA3A1: 889, + 0xA3A2: 890, + 0xA3A5: 891, + 0xA3A8: 892, + 0xA3A9: 893, + 0xA3AB: 894, + 0xA3B1: 895, + 0xA3B3: 896, + 0xA3B5: 897, + 0xA3B6: 898, + 0xA3B7: 899, + 0xA3B9: 900, + 0xA3BB: 901, + 0xA461: 902, + 0xA462: 903, + 0xA463: 904, + 0xA464: 905, + 0xA465: 906, + 0xA468: 907, + 0xA469: 908, + 0xA46A: 909, + 0xA46B: 910, + 0xA46C: 911, + 0xA471: 912, + 0xA473: 913, + 0xA475: 914, + 0xA477: 915, + 0xA47B: 916, + 0xA481: 917, + 0xA482: 918, + 0xA485: 919, + 0xA489: 920, + 0xA491: 921, + 0xA493: 922, + 0xA495: 923, + 0xA496: 924, + 0xA497: 925, + 0xA49B: 926, + 0xA4A1: 927, + 0xA4A2: 928, + 0xA4A5: 929, + 0xA4B3: 930, + 0xA4E1: 931, + 0xA4E2: 932, + 0xA4E5: 933, + 0xA4E8: 934, + 0xA4E9: 935, + 0xA4EB: 936, + 0xA4F1: 937, + 0xA4F3: 938, + 0xA4F5: 939, + 0xA4F7: 940, + 0xA4F8: 941, + 0xA541: 942, + 0xA542: 943, + 0xA545: 944, + 0xA548: 945, + 0xA549: 946, + 0xA551: 947, + 0xA553: 948, + 0xA555: 949, + 0xA556: 950, + 0xA557: 951, + 0xA561: 952, + 0xA562: 953, + 0xA565: 954, + 0xA569: 955, + 0xA573: 956, + 0xA575: 957, + 0xA576: 958, + 0xA577: 959, + 0xA57B: 960, + 0xA581: 961, + 0xA585: 962, + 0xA5A1: 963, + 0xA5A2: 964, + 0xA5A3: 965, + 0xA5A5: 966, + 0xA5A9: 967, + 0xA5B1: 968, + 0xA5B3: 969, + 0xA5B5: 970, + 0xA5B7: 971, + 0xA5C1: 972, + 0xA5C5: 973, + 0xA5D6: 974, + 0xA5E1: 975, + 0xA5F6: 976, + 0xA641: 977, + 0xA642: 978, + 0xA645: 979, + 0xA649: 980, + 0xA651: 981, + 0xA653: 982, + 0xA661: 983, + 0xA665: 984, + 0xA681: 985, + 0xA682: 986, + 0xA685: 987, + 0xA688: 988, + 0xA689: 989, + 0xA68A: 990, + 0xA68B: 991, + 0xA691: 992, + 0xA693: 993, + 0xA695: 994, + 0xA697: 995, + 0xA69B: 996, + 0xA69C: 997, + 0xA6A1: 998, + 0xA6A9: 999, + 0xA6B6: 1000, + 0xA6C1: 1001, + 0xA6E1: 1002, + 0xA6E2: 1003, + 0xA6E5: 1004, + 0xA6E9: 1005, + 0xA6F7: 1006, + 0xA741: 1007, + 0xA745: 1008, + 0xA749: 1009, + 0xA751: 1010, + 0xA755: 1011, + 0xA757: 1012, + 0xA761: 1013, + 0xA762: 1014, + 0xA765: 1015, + 0xA769: 1016, + 0xA771: 1017, + 0xA773: 1018, + 0xA775: 1019, + 0xA7A1: 1020, + 0xA7A2: 1021, + 0xA7A5: 1022, + 0xA7A9: 1023, + 0xA7AB: 1024, + 0xA7B1: 1025, + 0xA7B3: 1026, + 0xA7B5: 1027, + 0xA7B7: 1028, + 0xA7B8: 1029, + 0xA7B9: 1030, + 0xA861: 1031, + 0xA862: 1032, + 0xA865: 1033, + 0xA869: 1034, + 0xA86B: 1035, + 0xA871: 1036, + 0xA873: 1037, + 0xA875: 1038, + 0xA876: 1039, + 0xA877: 1040, + 0xA87D: 1041, + 0xA881: 1042, + 0xA882: 1043, + 0xA885: 1044, + 0xA889: 1045, + 0xA891: 1046, + 0xA893: 1047, + 0xA895: 1048, + 0xA896: 1049, + 0xA897: 1050, + 0xA8A1: 1051, + 0xA8A2: 1052, + 0xA8B1: 1053, + 0xA8E1: 1054, + 0xA8E2: 1055, + 0xA8E5: 1056, + 0xA8E8: 1057, + 0xA8E9: 1058, + 0xA8F1: 1059, + 0xA8F5: 1060, + 0xA8F6: 1061, + 0xA8F7: 1062, + 0xA941: 1063, + 0xA957: 1064, + 0xA961: 1065, + 0xA962: 1066, + 0xA971: 1067, + 0xA973: 1068, + 0xA975: 1069, + 0xA976: 1070, + 0xA977: 1071, + 0xA9A1: 1072, + 0xA9A2: 1073, + 0xA9A5: 1074, + 0xA9A9: 1075, + 0xA9B1: 1076, + 0xA9B3: 1077, + 0xA9B7: 1078, + 0xAA41: 1079, + 0xAA61: 1080, + 0xAA77: 1081, + 0xAA81: 1082, + 0xAA82: 1083, + 0xAA85: 1084, + 0xAA89: 1085, + 0xAA91: 1086, + 0xAA95: 1087, + 0xAA97: 1088, + 0xAB41: 1089, + 0xAB57: 1090, + 0xAB61: 1091, + 0xAB65: 1092, + 0xAB69: 1093, + 0xAB71: 1094, + 0xAB73: 1095, + 0xABA1: 1096, + 0xABA2: 1097, + 0xABA5: 1098, + 0xABA9: 1099, + 0xABB1: 1100, + 0xABB3: 1101, + 0xABB5: 1102, + 0xABB7: 1103, + 0xAC61: 1104, + 0xAC62: 1105, + 0xAC64: 1106, + 0xAC65: 1107, + 0xAC68: 1108, + 0xAC69: 1109, + 0xAC6A: 1110, + 0xAC6B: 1111, + 0xAC71: 1112, + 0xAC73: 1113, + 0xAC75: 1114, + 0xAC76: 1115, + 0xAC77: 1116, + 0xAC7B: 1117, + 0xAC81: 1118, + 0xAC82: 1119, + 0xAC85: 1120, + 0xAC89: 1121, + 0xAC91: 1122, + 0xAC93: 1123, + 0xAC95: 1124, + 0xAC96: 1125, + 0xAC97: 1126, + 0xACA1: 1127, + 0xACA2: 1128, + 0xACA5: 1129, + 0xACA9: 1130, + 0xACB1: 1131, + 0xACB3: 1132, + 0xACB5: 1133, + 0xACB7: 1134, + 0xACC1: 1135, + 0xACC5: 1136, + 0xACC9: 1137, + 0xACD1: 1138, + 0xACD7: 1139, + 0xACE1: 1140, + 0xACE2: 1141, + 0xACE3: 1142, + 0xACE4: 1143, + 0xACE5: 1144, + 0xACE8: 1145, + 0xACE9: 1146, + 0xACEB: 1147, + 0xACEC: 1148, + 0xACF1: 1149, + 0xACF3: 1150, + 0xACF5: 1151, + 0xACF6: 1152, + 0xACF7: 1153, + 0xACFC: 1154, + 0xAD41: 1155, + 0xAD42: 1156, + 0xAD45: 1157, + 0xAD49: 1158, + 0xAD51: 1159, + 0xAD53: 1160, + 0xAD55: 1161, + 0xAD56: 1162, + 0xAD57: 1163, + 0xAD61: 1164, + 0xAD62: 1165, + 0xAD65: 1166, + 0xAD69: 1167, + 0xAD71: 1168, + 0xAD73: 1169, + 0xAD75: 1170, + 0xAD76: 1171, + 0xAD77: 1172, + 0xAD81: 1173, + 0xAD85: 1174, + 0xAD89: 1175, + 0xAD97: 1176, + 0xADA1: 1177, + 0xADA2: 1178, + 0xADA3: 1179, + 0xADA5: 1180, + 0xADA9: 1181, + 0xADAB: 1182, + 0xADB1: 1183, + 0xADB3: 1184, + 0xADB5: 1185, + 0xADB7: 1186, + 0xADBB: 1187, + 0xADC1: 1188, + 0xADC2: 1189, + 0xADC5: 1190, + 0xADC9: 1191, + 0xADD7: 1192, + 0xADE1: 1193, + 0xADE5: 1194, + 0xADE9: 1195, + 0xADF1: 1196, + 0xADF5: 1197, + 0xADF6: 1198, + 0xAE41: 1199, + 0xAE45: 1200, + 0xAE49: 1201, + 0xAE51: 1202, + 0xAE53: 1203, + 0xAE55: 1204, + 0xAE61: 1205, + 0xAE62: 1206, + 0xAE65: 1207, + 0xAE69: 1208, + 0xAE71: 1209, + 0xAE73: 1210, + 0xAE75: 1211, + 0xAE77: 1212, + 0xAE81: 1213, + 0xAE82: 1214, + 0xAE85: 1215, + 0xAE88: 1216, + 0xAE89: 1217, + 0xAE91: 1218, + 0xAE93: 1219, + 0xAE95: 1220, + 0xAE97: 1221, + 0xAE99: 1222, + 0xAE9B: 1223, + 0xAE9C: 1224, + 0xAEA1: 1225, + 0xAEB6: 1226, + 0xAEC1: 1227, + 0xAEC2: 1228, + 0xAEC5: 1229, + 0xAEC9: 1230, + 0xAED1: 1231, + 0xAED7: 1232, + 0xAEE1: 1233, + 0xAEE2: 1234, + 0xAEE5: 1235, + 0xAEE9: 1236, + 0xAEF1: 1237, + 0xAEF3: 1238, + 0xAEF5: 1239, + 0xAEF7: 1240, + 0xAF41: 1241, + 0xAF42: 1242, + 0xAF49: 1243, + 0xAF51: 1244, + 0xAF55: 1245, + 0xAF57: 1246, + 0xAF61: 1247, + 0xAF62: 1248, + 0xAF65: 1249, + 0xAF69: 1250, + 0xAF6A: 1251, + 0xAF71: 1252, + 0xAF73: 1253, + 0xAF75: 1254, + 0xAF77: 1255, + 0xAFA1: 1256, + 0xAFA2: 1257, + 0xAFA5: 1258, + 0xAFA8: 1259, + 0xAFA9: 1260, + 0xAFB0: 1261, + 0xAFB1: 1262, + 0xAFB3: 1263, + 0xAFB5: 1264, + 0xAFB7: 1265, + 0xAFBC: 1266, + 0xB061: 1267, + 0xB062: 1268, + 0xB064: 1269, + 0xB065: 1270, + 0xB069: 1271, + 0xB071: 1272, + 0xB073: 1273, + 0xB076: 1274, + 0xB077: 1275, + 0xB07D: 1276, + 0xB081: 1277, + 0xB082: 1278, + 0xB085: 1279, + 0xB089: 1280, + 0xB091: 1281, + 0xB093: 1282, + 0xB096: 1283, + 0xB097: 1284, + 0xB0B7: 1285, + 0xB0E1: 1286, + 0xB0E2: 1287, + 0xB0E5: 1288, + 0xB0E9: 1289, + 0xB0EB: 1290, + 0xB0F1: 1291, + 0xB0F3: 1292, + 0xB0F6: 1293, + 0xB0F7: 1294, + 0xB141: 1295, + 0xB145: 1296, + 0xB149: 1297, + 0xB185: 1298, + 0xB1A1: 1299, + 0xB1A2: 1300, + 0xB1A5: 1301, + 0xB1A8: 1302, + 0xB1A9: 1303, + 0xB1AB: 1304, + 0xB1B1: 1305, + 0xB1B3: 1306, + 0xB1B7: 1307, + 0xB1C1: 1308, + 0xB1C2: 1309, + 0xB1C5: 1310, + 0xB1D6: 1311, + 0xB1E1: 1312, + 0xB1F6: 1313, + 0xB241: 1314, + 0xB245: 1315, + 0xB249: 1316, + 0xB251: 1317, + 0xB253: 1318, + 0xB261: 1319, + 0xB281: 1320, + 0xB282: 1321, + 0xB285: 1322, + 0xB289: 1323, + 0xB291: 1324, + 0xB293: 1325, + 0xB297: 1326, + 0xB2A1: 1327, + 0xB2B6: 1328, + 0xB2C1: 1329, + 0xB2E1: 1330, + 0xB2E5: 1331, + 0xB357: 1332, + 0xB361: 1333, + 0xB362: 1334, + 0xB365: 1335, + 0xB369: 1336, + 0xB36B: 1337, + 0xB370: 1338, + 0xB371: 1339, + 0xB373: 1340, + 0xB381: 1341, + 0xB385: 1342, + 0xB389: 1343, + 0xB391: 1344, + 0xB3A1: 1345, + 0xB3A2: 1346, + 0xB3A5: 1347, + 0xB3A9: 1348, + 0xB3B1: 1349, + 0xB3B3: 1350, + 0xB3B5: 1351, + 0xB3B7: 1352, + 0xB461: 1353, + 0xB462: 1354, + 0xB465: 1355, + 0xB466: 1356, + 0xB467: 1357, + 0xB469: 1358, + 0xB46A: 1359, + 0xB46B: 1360, + 0xB470: 1361, + 0xB471: 1362, + 0xB473: 1363, + 0xB475: 1364, + 0xB476: 1365, + 0xB477: 1366, + 0xB47B: 1367, + 0xB47C: 1368, + 0xB481: 1369, + 0xB482: 1370, + 0xB485: 1371, + 0xB489: 1372, + 0xB491: 1373, + 0xB493: 1374, + 0xB495: 1375, + 0xB496: 1376, + 0xB497: 1377, + 0xB4A1: 1378, + 0xB4A2: 1379, + 0xB4A5: 1380, + 0xB4A9: 1381, + 0xB4AC: 1382, + 0xB4B1: 1383, + 0xB4B3: 1384, + 0xB4B5: 1385, + 0xB4B7: 1386, + 0xB4BB: 1387, + 0xB4BD: 1388, + 0xB4C1: 1389, + 0xB4C5: 1390, + 0xB4C9: 1391, + 0xB4D3: 1392, + 0xB4E1: 1393, + 0xB4E2: 1394, + 0xB4E5: 1395, + 0xB4E6: 1396, + 0xB4E8: 1397, + 0xB4E9: 1398, + 0xB4EA: 1399, + 0xB4EB: 1400, + 0xB4F1: 1401, + 0xB4F3: 1402, + 0xB4F4: 1403, + 0xB4F5: 1404, + 0xB4F6: 1405, + 0xB4F7: 1406, + 0xB4F8: 1407, + 0xB4FA: 1408, + 0xB4FC: 1409, + 0xB541: 1410, + 0xB542: 1411, + 0xB545: 1412, + 0xB549: 1413, + 0xB551: 1414, + 0xB553: 1415, + 0xB555: 1416, + 0xB557: 1417, + 0xB561: 1418, + 0xB562: 1419, + 0xB563: 1420, + 0xB565: 1421, + 0xB569: 1422, + 0xB56B: 1423, + 0xB56C: 1424, + 0xB571: 1425, + 0xB573: 1426, + 0xB574: 1427, + 0xB575: 1428, + 0xB576: 1429, + 0xB577: 1430, + 0xB57B: 1431, + 0xB57C: 1432, + 0xB57D: 1433, + 0xB581: 1434, + 0xB585: 1435, + 0xB589: 1436, + 0xB591: 1437, + 0xB593: 1438, + 0xB595: 1439, + 0xB596: 1440, + 0xB5A1: 1441, + 0xB5A2: 1442, + 0xB5A5: 1443, + 0xB5A9: 1444, + 0xB5AA: 1445, + 0xB5AB: 1446, + 0xB5AD: 1447, + 0xB5B0: 1448, + 0xB5B1: 1449, + 0xB5B3: 1450, + 0xB5B5: 1451, + 0xB5B7: 1452, + 0xB5B9: 1453, + 0xB5C1: 1454, + 0xB5C2: 1455, + 0xB5C5: 1456, + 0xB5C9: 1457, + 0xB5D1: 1458, + 0xB5D3: 1459, + 0xB5D5: 1460, + 0xB5D6: 1461, + 0xB5D7: 1462, + 0xB5E1: 1463, + 0xB5E2: 1464, + 0xB5E5: 1465, + 0xB5F1: 1466, + 0xB5F5: 1467, + 0xB5F7: 1468, + 0xB641: 1469, + 0xB642: 1470, + 0xB645: 1471, + 0xB649: 1472, + 0xB651: 1473, + 0xB653: 1474, + 0xB655: 1475, + 0xB657: 1476, + 0xB661: 1477, + 0xB662: 1478, + 0xB665: 1479, + 0xB669: 1480, + 0xB671: 1481, + 0xB673: 1482, + 0xB675: 1483, + 0xB677: 1484, + 0xB681: 1485, + 0xB682: 1486, + 0xB685: 1487, + 0xB689: 1488, + 0xB68A: 1489, + 0xB68B: 1490, + 0xB691: 1491, + 0xB693: 1492, + 0xB695: 1493, + 0xB697: 1494, + 0xB6A1: 1495, + 0xB6A2: 1496, + 0xB6A5: 1497, + 0xB6A9: 1498, + 0xB6B1: 1499, + 0xB6B3: 1500, + 0xB6B6: 1501, + 0xB6B7: 1502, + 0xB6C1: 1503, + 0xB6C2: 1504, + 0xB6C5: 1505, + 0xB6C9: 1506, + 0xB6D1: 1507, + 0xB6D3: 1508, + 0xB6D7: 1509, + 0xB6E1: 1510, + 0xB6E2: 1511, + 0xB6E5: 1512, + 0xB6E9: 1513, + 0xB6F1: 1514, + 0xB6F3: 1515, + 0xB6F5: 1516, + 0xB6F7: 1517, + 0xB741: 1518, + 0xB742: 1519, + 0xB745: 1520, + 0xB749: 1521, + 0xB751: 1522, + 0xB753: 1523, + 0xB755: 1524, + 0xB757: 1525, + 0xB759: 1526, + 0xB761: 1527, + 0xB762: 1528, + 0xB765: 1529, + 0xB769: 1530, + 0xB76F: 1531, + 0xB771: 1532, + 0xB773: 1533, + 0xB775: 1534, + 0xB777: 1535, + 0xB778: 1536, + 0xB779: 1537, + 0xB77A: 1538, + 0xB77B: 1539, + 0xB77C: 1540, + 0xB77D: 1541, + 0xB781: 1542, + 0xB785: 1543, + 0xB789: 1544, + 0xB791: 1545, + 0xB795: 1546, + 0xB7A1: 1547, + 0xB7A2: 1548, + 0xB7A5: 1549, + 0xB7A9: 1550, + 0xB7AA: 1551, + 0xB7AB: 1552, + 0xB7B0: 1553, + 0xB7B1: 1554, + 0xB7B3: 1555, + 0xB7B5: 1556, + 0xB7B6: 1557, + 0xB7B7: 1558, + 0xB7B8: 1559, + 0xB7BC: 1560, + 0xB861: 1561, + 0xB862: 1562, + 0xB865: 1563, + 0xB867: 1564, + 0xB868: 1565, + 0xB869: 1566, + 0xB86B: 1567, + 0xB871: 1568, + 0xB873: 1569, + 0xB875: 1570, + 0xB876: 1571, + 0xB877: 1572, + 0xB878: 1573, + 0xB881: 1574, + 0xB882: 1575, + 0xB885: 1576, + 0xB889: 1577, + 0xB891: 1578, + 0xB893: 1579, + 0xB895: 1580, + 0xB896: 1581, + 0xB897: 1582, + 0xB8A1: 1583, + 0xB8A2: 1584, + 0xB8A5: 1585, + 0xB8A7: 1586, + 0xB8A9: 1587, + 0xB8B1: 1588, + 0xB8B7: 1589, + 0xB8C1: 1590, + 0xB8C5: 1591, + 0xB8C9: 1592, + 0xB8E1: 1593, + 0xB8E2: 1594, + 0xB8E5: 1595, + 0xB8E9: 1596, + 0xB8EB: 1597, + 0xB8F1: 1598, + 0xB8F3: 1599, + 0xB8F5: 1600, + 0xB8F7: 1601, + 0xB8F8: 1602, + 0xB941: 1603, + 0xB942: 1604, + 0xB945: 1605, + 0xB949: 1606, + 0xB951: 1607, + 0xB953: 1608, + 0xB955: 1609, + 0xB957: 1610, + 0xB961: 1611, + 0xB965: 1612, + 0xB969: 1613, + 0xB971: 1614, + 0xB973: 1615, + 0xB976: 1616, + 0xB977: 1617, + 0xB981: 1618, + 0xB9A1: 1619, + 0xB9A2: 1620, + 0xB9A5: 1621, + 0xB9A9: 1622, + 0xB9AB: 1623, + 0xB9B1: 1624, + 0xB9B3: 1625, + 0xB9B5: 1626, + 0xB9B7: 1627, + 0xB9B8: 1628, + 0xB9B9: 1629, + 0xB9BD: 1630, + 0xB9C1: 1631, + 0xB9C2: 1632, + 0xB9C9: 1633, + 0xB9D3: 1634, + 0xB9D5: 1635, + 0xB9D7: 1636, + 0xB9E1: 1637, + 0xB9F6: 1638, + 0xB9F7: 1639, + 0xBA41: 1640, + 0xBA45: 1641, + 0xBA49: 1642, + 0xBA51: 1643, + 0xBA53: 1644, + 0xBA55: 1645, + 0xBA57: 1646, + 0xBA61: 1647, + 0xBA62: 1648, + 0xBA65: 1649, + 0xBA77: 1650, + 0xBA81: 1651, + 0xBA82: 1652, + 0xBA85: 1653, + 0xBA89: 1654, + 0xBA8A: 1655, + 0xBA8B: 1656, + 0xBA91: 1657, + 0xBA93: 1658, + 0xBA95: 1659, + 0xBA97: 1660, + 0xBAA1: 1661, + 0xBAB6: 1662, + 0xBAC1: 1663, + 0xBAE1: 1664, + 0xBAE2: 1665, + 0xBAE5: 1666, + 0xBAE9: 1667, + 0xBAF1: 1668, + 0xBAF3: 1669, + 0xBAF5: 1670, + 0xBB41: 1671, + 0xBB45: 1672, + 0xBB49: 1673, + 0xBB51: 1674, + 0xBB61: 1675, + 0xBB62: 1676, + 0xBB65: 1677, + 0xBB69: 1678, + 0xBB71: 1679, + 0xBB73: 1680, + 0xBB75: 1681, + 0xBB77: 1682, + 0xBBA1: 1683, + 0xBBA2: 1684, + 0xBBA5: 1685, + 0xBBA8: 1686, + 0xBBA9: 1687, + 0xBBAB: 1688, + 0xBBB1: 1689, + 0xBBB3: 1690, + 0xBBB5: 1691, + 0xBBB7: 1692, + 0xBBB8: 1693, + 0xBBBB: 1694, + 0xBBBC: 1695, + 0xBC61: 1696, + 0xBC62: 1697, + 0xBC65: 1698, + 0xBC67: 1699, + 0xBC69: 1700, + 0xBC6C: 1701, + 0xBC71: 1702, + 0xBC73: 1703, + 0xBC75: 1704, + 0xBC76: 1705, + 0xBC77: 1706, + 0xBC81: 1707, + 0xBC82: 1708, + 0xBC85: 1709, + 0xBC89: 1710, + 0xBC91: 1711, + 0xBC93: 1712, + 0xBC95: 1713, + 0xBC96: 1714, + 0xBC97: 1715, + 0xBCA1: 1716, + 0xBCA5: 1717, + 0xBCB7: 1718, + 0xBCE1: 1719, + 0xBCE2: 1720, + 0xBCE5: 1721, + 0xBCE9: 1722, + 0xBCF1: 1723, + 0xBCF3: 1724, + 0xBCF5: 1725, + 0xBCF6: 1726, + 0xBCF7: 1727, + 0xBD41: 1728, + 0xBD57: 1729, + 0xBD61: 1730, + 0xBD76: 1731, + 0xBDA1: 1732, + 0xBDA2: 1733, + 0xBDA5: 1734, + 0xBDA9: 1735, + 0xBDB1: 1736, + 0xBDB3: 1737, + 0xBDB5: 1738, + 0xBDB7: 1739, + 0xBDB9: 1740, + 0xBDC1: 1741, + 0xBDC2: 1742, + 0xBDC9: 1743, + 0xBDD6: 1744, + 0xBDE1: 1745, + 0xBDF6: 1746, + 0xBE41: 1747, + 0xBE45: 1748, + 0xBE49: 1749, + 0xBE51: 1750, + 0xBE53: 1751, + 0xBE77: 1752, + 0xBE81: 1753, + 0xBE82: 1754, + 0xBE85: 1755, + 0xBE89: 1756, + 0xBE91: 1757, + 0xBE93: 1758, + 0xBE97: 1759, + 0xBEA1: 1760, + 0xBEB6: 1761, + 0xBEB7: 1762, + 0xBEE1: 1763, + 0xBF41: 1764, + 0xBF61: 1765, + 0xBF71: 1766, + 0xBF75: 1767, + 0xBF77: 1768, + 0xBFA1: 1769, + 0xBFA2: 1770, + 0xBFA5: 1771, + 0xBFA9: 1772, + 0xBFB1: 1773, + 0xBFB3: 1774, + 0xBFB7: 1775, + 0xBFB8: 1776, + 0xBFBD: 1777, + 0xC061: 1778, + 0xC062: 1779, + 0xC065: 1780, + 0xC067: 1781, + 0xC069: 1782, + 0xC071: 1783, + 0xC073: 1784, + 0xC075: 1785, + 0xC076: 1786, + 0xC077: 1787, + 0xC078: 1788, + 0xC081: 1789, + 0xC082: 1790, + 0xC085: 1791, + 0xC089: 1792, + 0xC091: 1793, + 0xC093: 1794, + 0xC095: 1795, + 0xC096: 1796, + 0xC097: 1797, + 0xC0A1: 1798, + 0xC0A5: 1799, + 0xC0A7: 1800, + 0xC0A9: 1801, + 0xC0B1: 1802, + 0xC0B7: 1803, + 0xC0E1: 1804, + 0xC0E2: 1805, + 0xC0E5: 1806, + 0xC0E9: 1807, + 0xC0F1: 1808, + 0xC0F3: 1809, + 0xC0F5: 1810, + 0xC0F6: 1811, + 0xC0F7: 1812, + 0xC141: 1813, + 0xC142: 1814, + 0xC145: 1815, + 0xC149: 1816, + 0xC151: 1817, + 0xC153: 1818, + 0xC155: 1819, + 0xC157: 1820, + 0xC161: 1821, + 0xC165: 1822, + 0xC176: 1823, + 0xC181: 1824, + 0xC185: 1825, + 0xC197: 1826, + 0xC1A1: 1827, + 0xC1A2: 1828, + 0xC1A5: 1829, + 0xC1A9: 1830, + 0xC1B1: 1831, + 0xC1B3: 1832, + 0xC1B5: 1833, + 0xC1B7: 1834, + 0xC1C1: 1835, + 0xC1C5: 1836, + 0xC1C9: 1837, + 0xC1D7: 1838, + 0xC241: 1839, + 0xC245: 1840, + 0xC249: 1841, + 0xC251: 1842, + 0xC253: 1843, + 0xC255: 1844, + 0xC257: 1845, + 0xC261: 1846, + 0xC271: 1847, + 0xC281: 1848, + 0xC282: 1849, + 0xC285: 1850, + 0xC289: 1851, + 0xC291: 1852, + 0xC293: 1853, + 0xC295: 1854, + 0xC297: 1855, + 0xC2A1: 1856, + 0xC2B6: 1857, + 0xC2C1: 1858, + 0xC2C5: 1859, + 0xC2E1: 1860, + 0xC2E5: 1861, + 0xC2E9: 1862, + 0xC2F1: 1863, + 0xC2F3: 1864, + 0xC2F5: 1865, + 0xC2F7: 1866, + 0xC341: 1867, + 0xC345: 1868, + 0xC349: 1869, + 0xC351: 1870, + 0xC357: 1871, + 0xC361: 1872, + 0xC362: 1873, + 0xC365: 1874, + 0xC369: 1875, + 0xC371: 1876, + 0xC373: 1877, + 0xC375: 1878, + 0xC377: 1879, + 0xC3A1: 1880, + 0xC3A2: 1881, + 0xC3A5: 1882, + 0xC3A8: 1883, + 0xC3A9: 1884, + 0xC3AA: 1885, + 0xC3B1: 1886, + 0xC3B3: 1887, + 0xC3B5: 1888, + 0xC3B7: 1889, + 0xC461: 1890, + 0xC462: 1891, + 0xC465: 1892, + 0xC469: 1893, + 0xC471: 1894, + 0xC473: 1895, + 0xC475: 1896, + 0xC477: 1897, + 0xC481: 1898, + 0xC482: 1899, + 0xC485: 1900, + 0xC489: 1901, + 0xC491: 1902, + 0xC493: 1903, + 0xC495: 1904, + 0xC496: 1905, + 0xC497: 1906, + 0xC4A1: 1907, + 0xC4A2: 1908, + 0xC4B7: 1909, + 0xC4E1: 1910, + 0xC4E2: 1911, + 0xC4E5: 1912, + 0xC4E8: 1913, + 0xC4E9: 1914, + 0xC4F1: 1915, + 0xC4F3: 1916, + 0xC4F5: 1917, + 0xC4F6: 1918, + 0xC4F7: 1919, + 0xC541: 1920, + 0xC542: 1921, + 0xC545: 1922, + 0xC549: 1923, + 0xC551: 1924, + 0xC553: 1925, + 0xC555: 1926, + 0xC557: 1927, + 0xC561: 1928, + 0xC565: 1929, + 0xC569: 1930, + 0xC571: 1931, + 0xC573: 1932, + 0xC575: 1933, + 0xC576: 1934, + 0xC577: 1935, + 0xC581: 1936, + 0xC5A1: 1937, + 0xC5A2: 1938, + 0xC5A5: 1939, + 0xC5A9: 1940, + 0xC5B1: 1941, + 0xC5B3: 1942, + 0xC5B5: 1943, + 0xC5B7: 1944, + 0xC5C1: 1945, + 0xC5C2: 1946, + 0xC5C5: 1947, + 0xC5C9: 1948, + 0xC5D1: 1949, + 0xC5D7: 1950, + 0xC5E1: 1951, + 0xC5F7: 1952, + 0xC641: 1953, + 0xC649: 1954, + 0xC661: 1955, + 0xC681: 1956, + 0xC682: 1957, + 0xC685: 1958, + 0xC689: 1959, + 0xC691: 1960, + 0xC693: 1961, + 0xC695: 1962, + 0xC697: 1963, + 0xC6A1: 1964, + 0xC6A5: 1965, + 0xC6A9: 1966, + 0xC6B7: 1967, + 0xC6C1: 1968, + 0xC6D7: 1969, + 0xC6E1: 1970, + 0xC6E2: 1971, + 0xC6E5: 1972, + 0xC6E9: 1973, + 0xC6F1: 1974, + 0xC6F3: 1975, + 0xC6F5: 1976, + 0xC6F7: 1977, + 0xC741: 1978, + 0xC745: 1979, + 0xC749: 1980, + 0xC751: 1981, + 0xC761: 1982, + 0xC762: 1983, + 0xC765: 1984, + 0xC769: 1985, + 0xC771: 1986, + 0xC773: 1987, + 0xC777: 1988, + 0xC7A1: 1989, + 0xC7A2: 1990, + 0xC7A5: 1991, + 0xC7A9: 1992, + 0xC7B1: 1993, + 0xC7B3: 1994, + 0xC7B5: 1995, + 0xC7B7: 1996, + 0xC861: 1997, + 0xC862: 1998, + 0xC865: 1999, + 0xC869: 2000, + 0xC86A: 2001, + 0xC871: 2002, + 0xC873: 2003, + 0xC875: 2004, + 0xC876: 2005, + 0xC877: 2006, + 0xC881: 2007, + 0xC882: 2008, + 0xC885: 2009, + 0xC889: 2010, + 0xC891: 2011, + 0xC893: 2012, + 0xC895: 2013, + 0xC896: 2014, + 0xC897: 2015, + 0xC8A1: 2016, + 0xC8B7: 2017, + 0xC8E1: 2018, + 0xC8E2: 2019, + 0xC8E5: 2020, + 0xC8E9: 2021, + 0xC8EB: 2022, + 0xC8F1: 2023, + 0xC8F3: 2024, + 0xC8F5: 2025, + 0xC8F6: 2026, + 0xC8F7: 2027, + 0xC941: 2028, + 0xC942: 2029, + 0xC945: 2030, + 0xC949: 2031, + 0xC951: 2032, + 0xC953: 2033, + 0xC955: 2034, + 0xC957: 2035, + 0xC961: 2036, + 0xC965: 2037, + 0xC976: 2038, + 0xC981: 2039, + 0xC985: 2040, + 0xC9A1: 2041, + 0xC9A2: 2042, + 0xC9A5: 2043, + 0xC9A9: 2044, + 0xC9B1: 2045, + 0xC9B3: 2046, + 0xC9B5: 2047, + 0xC9B7: 2048, + 0xC9BC: 2049, + 0xC9C1: 2050, + 0xC9C5: 2051, + 0xC9E1: 2052, + 0xCA41: 2053, + 0xCA45: 2054, + 0xCA55: 2055, + 0xCA57: 2056, + 0xCA61: 2057, + 0xCA81: 2058, + 0xCA82: 2059, + 0xCA85: 2060, + 0xCA89: 2061, + 0xCA91: 2062, + 0xCA93: 2063, + 0xCA95: 2064, + 0xCA97: 2065, + 0xCAA1: 2066, + 0xCAB6: 2067, + 0xCAC1: 2068, + 0xCAE1: 2069, + 0xCAE2: 2070, + 0xCAE5: 2071, + 0xCAE9: 2072, + 0xCAF1: 2073, + 0xCAF3: 2074, + 0xCAF7: 2075, + 0xCB41: 2076, + 0xCB45: 2077, + 0xCB49: 2078, + 0xCB51: 2079, + 0xCB57: 2080, + 0xCB61: 2081, + 0xCB62: 2082, + 0xCB65: 2083, + 0xCB68: 2084, + 0xCB69: 2085, + 0xCB6B: 2086, + 0xCB71: 2087, + 0xCB73: 2088, + 0xCB75: 2089, + 0xCB81: 2090, + 0xCB85: 2091, + 0xCB89: 2092, + 0xCB91: 2093, + 0xCB93: 2094, + 0xCBA1: 2095, + 0xCBA2: 2096, + 0xCBA5: 2097, + 0xCBA9: 2098, + 0xCBB1: 2099, + 0xCBB3: 2100, + 0xCBB5: 2101, + 0xCBB7: 2102, + 0xCC61: 2103, + 0xCC62: 2104, + 0xCC63: 2105, + 0xCC65: 2106, + 0xCC69: 2107, + 0xCC6B: 2108, + 0xCC71: 2109, + 0xCC73: 2110, + 0xCC75: 2111, + 0xCC76: 2112, + 0xCC77: 2113, + 0xCC7B: 2114, + 0xCC81: 2115, + 0xCC82: 2116, + 0xCC85: 2117, + 0xCC89: 2118, + 0xCC91: 2119, + 0xCC93: 2120, + 0xCC95: 2121, + 0xCC96: 2122, + 0xCC97: 2123, + 0xCCA1: 2124, + 0xCCA2: 2125, + 0xCCE1: 2126, + 0xCCE2: 2127, + 0xCCE5: 2128, + 0xCCE9: 2129, + 0xCCF1: 2130, + 0xCCF3: 2131, + 0xCCF5: 2132, + 0xCCF6: 2133, + 0xCCF7: 2134, + 0xCD41: 2135, + 0xCD42: 2136, + 0xCD45: 2137, + 0xCD49: 2138, + 0xCD51: 2139, + 0xCD53: 2140, + 0xCD55: 2141, + 0xCD57: 2142, + 0xCD61: 2143, + 0xCD65: 2144, + 0xCD69: 2145, + 0xCD71: 2146, + 0xCD73: 2147, + 0xCD76: 2148, + 0xCD77: 2149, + 0xCD81: 2150, + 0xCD89: 2151, + 0xCD93: 2152, + 0xCD95: 2153, + 0xCDA1: 2154, + 0xCDA2: 2155, + 0xCDA5: 2156, + 0xCDA9: 2157, + 0xCDB1: 2158, + 0xCDB3: 2159, + 0xCDB5: 2160, + 0xCDB7: 2161, + 0xCDC1: 2162, + 0xCDD7: 2163, + 0xCE41: 2164, + 0xCE45: 2165, + 0xCE61: 2166, + 0xCE65: 2167, + 0xCE69: 2168, + 0xCE73: 2169, + 0xCE75: 2170, + 0xCE81: 2171, + 0xCE82: 2172, + 0xCE85: 2173, + 0xCE88: 2174, + 0xCE89: 2175, + 0xCE8B: 2176, + 0xCE91: 2177, + 0xCE93: 2178, + 0xCE95: 2179, + 0xCE97: 2180, + 0xCEA1: 2181, + 0xCEB7: 2182, + 0xCEE1: 2183, + 0xCEE5: 2184, + 0xCEE9: 2185, + 0xCEF1: 2186, + 0xCEF5: 2187, + 0xCF41: 2188, + 0xCF45: 2189, + 0xCF49: 2190, + 0xCF51: 2191, + 0xCF55: 2192, + 0xCF57: 2193, + 0xCF61: 2194, + 0xCF65: 2195, + 0xCF69: 2196, + 0xCF71: 2197, + 0xCF73: 2198, + 0xCF75: 2199, + 0xCFA1: 2200, + 0xCFA2: 2201, + 0xCFA5: 2202, + 0xCFA9: 2203, + 0xCFB1: 2204, + 0xCFB3: 2205, + 0xCFB5: 2206, + 0xCFB7: 2207, + 0xD061: 2208, + 0xD062: 2209, + 0xD065: 2210, + 0xD069: 2211, + 0xD06E: 2212, + 0xD071: 2213, + 0xD073: 2214, + 0xD075: 2215, + 0xD077: 2216, + 0xD081: 2217, + 0xD082: 2218, + 0xD085: 2219, + 0xD089: 2220, + 0xD091: 2221, + 0xD093: 2222, + 0xD095: 2223, + 0xD096: 2224, + 0xD097: 2225, + 0xD0A1: 2226, + 0xD0B7: 2227, + 0xD0E1: 2228, + 0xD0E2: 2229, + 0xD0E5: 2230, + 0xD0E9: 2231, + 0xD0EB: 2232, + 0xD0F1: 2233, + 0xD0F3: 2234, + 0xD0F5: 2235, + 0xD0F7: 2236, + 0xD141: 2237, + 0xD142: 2238, + 0xD145: 2239, + 0xD149: 2240, + 0xD151: 2241, + 0xD153: 2242, + 0xD155: 2243, + 0xD157: 2244, + 0xD161: 2245, + 0xD162: 2246, + 0xD165: 2247, + 0xD169: 2248, + 0xD171: 2249, + 0xD173: 2250, + 0xD175: 2251, + 0xD176: 2252, + 0xD177: 2253, + 0xD181: 2254, + 0xD185: 2255, + 0xD189: 2256, + 0xD193: 2257, + 0xD1A1: 2258, + 0xD1A2: 2259, + 0xD1A5: 2260, + 0xD1A9: 2261, + 0xD1AE: 2262, + 0xD1B1: 2263, + 0xD1B3: 2264, + 0xD1B5: 2265, + 0xD1B7: 2266, + 0xD1BB: 2267, + 0xD1C1: 2268, + 0xD1C2: 2269, + 0xD1C5: 2270, + 0xD1C9: 2271, + 0xD1D5: 2272, + 0xD1D7: 2273, + 0xD1E1: 2274, + 0xD1E2: 2275, + 0xD1E5: 2276, + 0xD1F5: 2277, + 0xD1F7: 2278, + 0xD241: 2279, + 0xD242: 2280, + 0xD245: 2281, + 0xD249: 2282, + 0xD253: 2283, + 0xD255: 2284, + 0xD257: 2285, + 0xD261: 2286, + 0xD265: 2287, + 0xD269: 2288, + 0xD273: 2289, + 0xD275: 2290, + 0xD281: 2291, + 0xD282: 2292, + 0xD285: 2293, + 0xD289: 2294, + 0xD28E: 2295, + 0xD291: 2296, + 0xD295: 2297, + 0xD297: 2298, + 0xD2A1: 2299, + 0xD2A5: 2300, + 0xD2A9: 2301, + 0xD2B1: 2302, + 0xD2B7: 2303, + 0xD2C1: 2304, + 0xD2C2: 2305, + 0xD2C5: 2306, + 0xD2C9: 2307, + 0xD2D7: 2308, + 0xD2E1: 2309, + 0xD2E2: 2310, + 0xD2E5: 2311, + 0xD2E9: 2312, + 0xD2F1: 2313, + 0xD2F3: 2314, + 0xD2F5: 2315, + 0xD2F7: 2316, + 0xD341: 2317, + 0xD342: 2318, + 0xD345: 2319, + 0xD349: 2320, + 0xD351: 2321, + 0xD355: 2322, + 0xD357: 2323, + 0xD361: 2324, + 0xD362: 2325, + 0xD365: 2326, + 0xD367: 2327, + 0xD368: 2328, + 0xD369: 2329, + 0xD36A: 2330, + 0xD371: 2331, + 0xD373: 2332, + 0xD375: 2333, + 0xD377: 2334, + 0xD37B: 2335, + 0xD381: 2336, + 0xD385: 2337, + 0xD389: 2338, + 0xD391: 2339, + 0xD393: 2340, + 0xD397: 2341, + 0xD3A1: 2342, + 0xD3A2: 2343, + 0xD3A5: 2344, + 0xD3A9: 2345, + 0xD3B1: 2346, + 0xD3B3: 2347, + 0xD3B5: 2348, + 0xD3B7: 2349, +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py new file mode 100644 index 00000000..d7364ba6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import JOHABDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import JOHAB_SM_MODEL + + +class JOHABProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(JOHAB_SM_MODEL) + self.distribution_analyzer = JOHABDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "Johab" + + @property + def language(self) -> str: + return "Korean" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py new file mode 100644 index 00000000..2f53bdda --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py @@ -0,0 +1,238 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Tuple, Union + +# This is hiragana 2-char sequence table, the number in each cell represents its frequency category +# fmt: off +jp2_char_context = ( + (0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), + (2, 4, 0, 4, 0, 3, 0, 4, 0, 3, 4, 4, 4, 2, 4, 3, 3, 4, 3, 2, 3, 3, 4, 2, 3, 3, 3, 2, 4, 1, 4, 3, 3, 1, 5, 4, 3, 4, 3, 4, 3, 5, 3, 0, 3, 5, 4, 2, 0, 3, 1, 0, 3, 3, 0, 3, 3, 0, 1, 1, 0, 4, 3, 0, 3, 3, 0, 4, 0, 2, 0, 3, 5, 5, 5, 5, 4, 0, 4, 1, 0, 3, 4), + (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2), + (0, 4, 0, 5, 0, 5, 0, 4, 0, 4, 5, 4, 4, 3, 5, 3, 5, 1, 5, 3, 4, 3, 4, 4, 3, 4, 3, 3, 4, 3, 5, 4, 4, 3, 5, 5, 3, 5, 5, 5, 3, 5, 5, 3, 4, 5, 5, 3, 1, 3, 2, 0, 3, 4, 0, 4, 2, 0, 4, 2, 1, 5, 3, 2, 3, 5, 0, 4, 0, 2, 0, 5, 4, 4, 5, 4, 5, 0, 4, 0, 0, 4, 4), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 3, 0, 4, 0, 3, 0, 3, 0, 4, 5, 4, 3, 3, 3, 3, 4, 3, 5, 4, 4, 3, 5, 4, 4, 3, 4, 3, 4, 4, 4, 4, 5, 3, 4, 4, 3, 4, 5, 5, 4, 5, 5, 1, 4, 5, 4, 3, 0, 3, 3, 1, 3, 3, 0, 4, 4, 0, 3, 3, 1, 5, 3, 3, 3, 5, 0, 4, 0, 3, 0, 4, 4, 3, 4, 3, 3, 0, 4, 1, 1, 3, 4), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 4, 0, 3, 0, 3, 0, 4, 0, 3, 4, 4, 3, 2, 2, 1, 2, 1, 3, 1, 3, 3, 3, 3, 3, 4, 3, 1, 3, 3, 5, 3, 3, 0, 4, 3, 0, 5, 4, 3, 3, 5, 4, 4, 3, 4, 4, 5, 0, 1, 2, 0, 1, 2, 0, 2, 2, 0, 1, 0, 0, 5, 2, 2, 1, 4, 0, 3, 0, 1, 0, 4, 4, 3, 5, 4, 3, 0, 2, 1, 0, 4, 3), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 3, 0, 5, 0, 4, 0, 2, 1, 4, 4, 2, 4, 1, 4, 2, 4, 2, 4, 3, 3, 3, 4, 3, 3, 3, 3, 1, 4, 2, 3, 3, 3, 1, 4, 4, 1, 1, 1, 4, 3, 3, 2, 0, 2, 4, 3, 2, 0, 3, 3, 0, 3, 1, 1, 0, 0, 0, 3, 3, 0, 4, 2, 2, 3, 4, 0, 4, 0, 3, 0, 4, 4, 5, 3, 4, 4, 0, 3, 0, 0, 1, 4), + (1, 4, 0, 4, 0, 4, 0, 4, 0, 3, 5, 4, 4, 3, 4, 3, 5, 4, 3, 3, 4, 3, 5, 4, 4, 4, 4, 3, 4, 2, 4, 3, 3, 1, 5, 4, 3, 2, 4, 5, 4, 5, 5, 4, 4, 5, 4, 4, 0, 3, 2, 2, 3, 3, 0, 4, 3, 1, 3, 2, 1, 4, 3, 3, 4, 5, 0, 3, 0, 2, 0, 4, 5, 5, 4, 5, 4, 0, 4, 0, 0, 5, 4), + (0, 5, 0, 5, 0, 4, 0, 3, 0, 4, 4, 3, 4, 3, 3, 3, 4, 0, 4, 4, 4, 3, 4, 3, 4, 3, 3, 1, 4, 2, 4, 3, 4, 0, 5, 4, 1, 4, 5, 4, 4, 5, 3, 2, 4, 3, 4, 3, 2, 4, 1, 3, 3, 3, 2, 3, 2, 0, 4, 3, 3, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 5, 4, 4, 4, 3, 0, 4, 1, 0, 1, 3), + (0, 3, 1, 4, 0, 3, 0, 2, 0, 3, 4, 4, 3, 1, 4, 2, 3, 3, 4, 3, 4, 3, 4, 3, 4, 4, 3, 2, 3, 1, 5, 4, 4, 1, 4, 4, 3, 5, 4, 4, 3, 5, 5, 4, 3, 4, 4, 3, 1, 2, 3, 1, 2, 2, 0, 3, 2, 0, 3, 1, 0, 5, 3, 3, 3, 4, 3, 3, 3, 3, 4, 4, 4, 4, 5, 4, 2, 0, 3, 3, 2, 4, 3), + (0, 2, 0, 3, 0, 1, 0, 1, 0, 0, 3, 2, 0, 0, 2, 0, 1, 0, 2, 1, 3, 3, 3, 1, 2, 3, 1, 0, 1, 0, 4, 2, 1, 1, 3, 3, 0, 4, 3, 3, 1, 4, 3, 3, 0, 3, 3, 2, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 4, 1, 0, 2, 3, 2, 2, 2, 1, 3, 3, 3, 4, 4, 3, 2, 0, 3, 1, 0, 3, 3), + (0, 4, 0, 4, 0, 3, 0, 3, 0, 4, 4, 4, 3, 3, 3, 3, 3, 3, 4, 3, 4, 2, 4, 3, 4, 3, 3, 2, 4, 3, 4, 5, 4, 1, 4, 5, 3, 5, 4, 5, 3, 5, 4, 0, 3, 5, 5, 3, 1, 3, 3, 2, 2, 3, 0, 3, 4, 1, 3, 3, 2, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 5, 4, 4, 5, 3, 0, 4, 1, 0, 3, 4), + (0, 2, 0, 3, 0, 3, 0, 0, 0, 2, 2, 2, 1, 0, 1, 0, 0, 0, 3, 0, 3, 0, 3, 0, 1, 3, 1, 0, 3, 1, 3, 3, 3, 1, 3, 3, 3, 0, 1, 3, 1, 3, 4, 0, 0, 3, 1, 1, 0, 3, 2, 0, 0, 0, 0, 1, 3, 0, 1, 0, 0, 3, 3, 2, 0, 3, 0, 0, 0, 0, 0, 3, 4, 3, 4, 3, 3, 0, 3, 0, 0, 2, 3), + (2, 3, 0, 3, 0, 2, 0, 1, 0, 3, 3, 4, 3, 1, 3, 1, 1, 1, 3, 1, 4, 3, 4, 3, 3, 3, 0, 0, 3, 1, 5, 4, 3, 1, 4, 3, 2, 5, 5, 4, 4, 4, 4, 3, 3, 4, 4, 4, 0, 2, 1, 1, 3, 2, 0, 1, 2, 0, 0, 1, 0, 4, 1, 3, 3, 3, 0, 3, 0, 1, 0, 4, 4, 4, 5, 5, 3, 0, 2, 0, 0, 4, 4), + (0, 2, 0, 1, 0, 3, 1, 3, 0, 2, 3, 3, 3, 0, 3, 1, 0, 0, 3, 0, 3, 2, 3, 1, 3, 2, 1, 1, 0, 0, 4, 2, 1, 0, 2, 3, 1, 4, 3, 2, 0, 4, 4, 3, 1, 3, 1, 3, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 4, 1, 1, 1, 2, 0, 3, 0, 0, 0, 3, 4, 2, 4, 3, 2, 0, 1, 0, 0, 3, 3), + (0, 1, 0, 4, 0, 5, 0, 4, 0, 2, 4, 4, 2, 3, 3, 2, 3, 3, 5, 3, 3, 3, 4, 3, 4, 2, 3, 0, 4, 3, 3, 3, 4, 1, 4, 3, 2, 1, 5, 5, 3, 4, 5, 1, 3, 5, 4, 2, 0, 3, 3, 0, 1, 3, 0, 4, 2, 0, 1, 3, 1, 4, 3, 3, 3, 3, 0, 3, 0, 1, 0, 3, 4, 4, 4, 5, 5, 0, 3, 0, 1, 4, 5), + (0, 2, 0, 3, 0, 3, 0, 0, 0, 2, 3, 1, 3, 0, 4, 0, 1, 1, 3, 0, 3, 4, 3, 2, 3, 1, 0, 3, 3, 2, 3, 1, 3, 0, 2, 3, 0, 2, 1, 4, 1, 2, 2, 0, 0, 3, 3, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 0, 3, 2, 1, 3, 3, 0, 2, 0, 2, 0, 0, 3, 3, 1, 2, 4, 0, 3, 0, 2, 2, 3), + (2, 4, 0, 5, 0, 4, 0, 4, 0, 2, 4, 4, 4, 3, 4, 3, 3, 3, 1, 2, 4, 3, 4, 3, 4, 4, 5, 0, 3, 3, 3, 3, 2, 0, 4, 3, 1, 4, 3, 4, 1, 4, 4, 3, 3, 4, 4, 3, 1, 2, 3, 0, 4, 2, 0, 4, 1, 0, 3, 3, 0, 4, 3, 3, 3, 4, 0, 4, 0, 2, 0, 3, 5, 3, 4, 5, 2, 0, 3, 0, 0, 4, 5), + (0, 3, 0, 4, 0, 1, 0, 1, 0, 1, 3, 2, 2, 1, 3, 0, 3, 0, 2, 0, 2, 0, 3, 0, 2, 0, 0, 0, 1, 0, 1, 1, 0, 0, 3, 1, 0, 0, 0, 4, 0, 3, 1, 0, 2, 1, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 2, 2, 3, 1, 0, 3, 0, 0, 0, 1, 4, 4, 4, 3, 0, 0, 4, 0, 0, 1, 4), + (1, 4, 1, 5, 0, 3, 0, 3, 0, 4, 5, 4, 4, 3, 5, 3, 3, 4, 4, 3, 4, 1, 3, 3, 3, 3, 2, 1, 4, 1, 5, 4, 3, 1, 4, 4, 3, 5, 4, 4, 3, 5, 4, 3, 3, 4, 4, 4, 0, 3, 3, 1, 2, 3, 0, 3, 1, 0, 3, 3, 0, 5, 4, 4, 4, 4, 4, 4, 3, 3, 5, 4, 4, 3, 3, 5, 4, 0, 3, 2, 0, 4, 4), + (0, 2, 0, 3, 0, 1, 0, 0, 0, 1, 3, 3, 3, 2, 4, 1, 3, 0, 3, 1, 3, 0, 2, 2, 1, 1, 0, 0, 2, 0, 4, 3, 1, 0, 4, 3, 0, 4, 4, 4, 1, 4, 3, 1, 1, 3, 3, 1, 0, 2, 0, 0, 1, 3, 0, 0, 0, 0, 2, 0, 0, 4, 3, 2, 4, 3, 5, 4, 3, 3, 3, 4, 3, 3, 4, 3, 3, 0, 2, 1, 0, 3, 3), + (0, 2, 0, 4, 0, 3, 0, 2, 0, 2, 5, 5, 3, 4, 4, 4, 4, 1, 4, 3, 3, 0, 4, 3, 4, 3, 1, 3, 3, 2, 4, 3, 0, 3, 4, 3, 0, 3, 4, 4, 2, 4, 4, 0, 4, 5, 3, 3, 2, 2, 1, 1, 1, 2, 0, 1, 5, 0, 3, 3, 2, 4, 3, 3, 3, 4, 0, 3, 0, 2, 0, 4, 4, 3, 5, 5, 0, 0, 3, 0, 2, 3, 3), + (0, 3, 0, 4, 0, 3, 0, 1, 0, 3, 4, 3, 3, 1, 3, 3, 3, 0, 3, 1, 3, 0, 4, 3, 3, 1, 1, 0, 3, 0, 3, 3, 0, 0, 4, 4, 0, 1, 5, 4, 3, 3, 5, 0, 3, 3, 4, 3, 0, 2, 0, 1, 1, 1, 0, 1, 3, 0, 1, 2, 1, 3, 3, 2, 3, 3, 0, 3, 0, 1, 0, 1, 3, 3, 4, 4, 1, 0, 1, 2, 2, 1, 3), + (0, 1, 0, 4, 0, 4, 0, 3, 0, 1, 3, 3, 3, 2, 3, 1, 1, 0, 3, 0, 3, 3, 4, 3, 2, 4, 2, 0, 1, 0, 4, 3, 2, 0, 4, 3, 0, 5, 3, 3, 2, 4, 4, 4, 3, 3, 3, 4, 0, 1, 3, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 4, 2, 3, 3, 3, 0, 3, 0, 0, 0, 4, 4, 4, 5, 3, 2, 0, 3, 3, 0, 3, 5), + (0, 2, 0, 3, 0, 0, 0, 3, 0, 1, 3, 0, 2, 0, 0, 0, 1, 0, 3, 1, 1, 3, 3, 0, 0, 3, 0, 0, 3, 0, 2, 3, 1, 0, 3, 1, 0, 3, 3, 2, 0, 4, 2, 2, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 0, 1, 0, 0, 0, 1, 3, 1, 2, 0, 0, 0, 1, 0, 0, 1, 4), + (0, 3, 0, 3, 0, 5, 0, 1, 0, 2, 4, 3, 1, 3, 3, 2, 1, 1, 5, 2, 1, 0, 5, 1, 2, 0, 0, 0, 3, 3, 2, 2, 3, 2, 4, 3, 0, 0, 3, 3, 1, 3, 3, 0, 2, 5, 3, 4, 0, 3, 3, 0, 1, 2, 0, 2, 2, 0, 3, 2, 0, 2, 2, 3, 3, 3, 0, 2, 0, 1, 0, 3, 4, 4, 2, 5, 4, 0, 3, 0, 0, 3, 5), + (0, 3, 0, 3, 0, 3, 0, 1, 0, 3, 3, 3, 3, 0, 3, 0, 2, 0, 2, 1, 1, 0, 2, 0, 1, 0, 0, 0, 2, 1, 0, 0, 1, 0, 3, 2, 0, 0, 3, 3, 1, 2, 3, 1, 0, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 3, 1, 2, 3, 0, 3, 0, 1, 0, 3, 2, 1, 0, 4, 3, 0, 1, 1, 0, 3, 3), + (0, 4, 0, 5, 0, 3, 0, 3, 0, 4, 5, 5, 4, 3, 5, 3, 4, 3, 5, 3, 3, 2, 5, 3, 4, 4, 4, 3, 4, 3, 4, 5, 5, 3, 4, 4, 3, 4, 4, 5, 4, 4, 4, 3, 4, 5, 5, 4, 2, 3, 4, 2, 3, 4, 0, 3, 3, 1, 4, 3, 2, 4, 3, 3, 5, 5, 0, 3, 0, 3, 0, 5, 5, 5, 5, 4, 4, 0, 4, 0, 1, 4, 4), + (0, 4, 0, 4, 0, 3, 0, 3, 0, 3, 5, 4, 4, 2, 3, 2, 5, 1, 3, 2, 5, 1, 4, 2, 3, 2, 3, 3, 4, 3, 3, 3, 3, 2, 5, 4, 1, 3, 3, 5, 3, 4, 4, 0, 4, 4, 3, 1, 1, 3, 1, 0, 2, 3, 0, 2, 3, 0, 3, 0, 0, 4, 3, 1, 3, 4, 0, 3, 0, 2, 0, 4, 4, 4, 3, 4, 5, 0, 4, 0, 0, 3, 4), + (0, 3, 0, 3, 0, 3, 1, 2, 0, 3, 4, 4, 3, 3, 3, 0, 2, 2, 4, 3, 3, 1, 3, 3, 3, 1, 1, 0, 3, 1, 4, 3, 2, 3, 4, 4, 2, 4, 4, 4, 3, 4, 4, 3, 2, 4, 4, 3, 1, 3, 3, 1, 3, 3, 0, 4, 1, 0, 2, 2, 1, 4, 3, 2, 3, 3, 5, 4, 3, 3, 5, 4, 4, 3, 3, 0, 4, 0, 3, 2, 2, 4, 4), + (0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 2, 1, 3, 0, 0, 0, 0, 0, 2, 0, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 1, 0, 1, 1, 3, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 0, 3, 4, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1), + (0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 4, 1, 4, 0, 3, 0, 4, 0, 3, 0, 4, 0, 3, 0, 3, 0, 4, 1, 5, 1, 4, 0, 0, 3, 0, 5, 0, 5, 2, 0, 1, 0, 0, 0, 2, 1, 4, 0, 1, 3, 0, 0, 3, 0, 0, 3, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0), + (1, 4, 0, 5, 0, 3, 0, 2, 0, 3, 5, 4, 4, 3, 4, 3, 5, 3, 4, 3, 3, 0, 4, 3, 3, 3, 3, 3, 3, 2, 4, 4, 3, 1, 3, 4, 4, 5, 4, 4, 3, 4, 4, 1, 3, 5, 4, 3, 3, 3, 1, 2, 2, 3, 3, 1, 3, 1, 3, 3, 3, 5, 3, 3, 4, 5, 0, 3, 0, 3, 0, 3, 4, 3, 4, 4, 3, 0, 3, 0, 2, 4, 3), + (0, 1, 0, 4, 0, 0, 0, 0, 0, 1, 4, 0, 4, 1, 4, 2, 4, 0, 3, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 3, 1, 1, 1, 0, 3, 0, 0, 0, 1, 2, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 3, 2, 0, 2, 2, 0, 1, 0, 0, 0, 2, 3, 2, 3, 3, 0, 0, 0, 0, 2, 1, 0), + (0, 5, 1, 5, 0, 3, 0, 3, 0, 5, 4, 4, 5, 1, 5, 3, 3, 0, 4, 3, 4, 3, 5, 3, 4, 3, 3, 2, 4, 3, 4, 3, 3, 0, 3, 3, 1, 4, 4, 3, 4, 4, 4, 3, 4, 5, 5, 3, 2, 3, 1, 1, 3, 3, 1, 3, 1, 1, 3, 3, 2, 4, 5, 3, 3, 5, 0, 4, 0, 3, 0, 4, 4, 3, 5, 3, 3, 0, 3, 4, 0, 4, 3), + (0, 5, 0, 5, 0, 3, 0, 2, 0, 4, 4, 3, 5, 2, 4, 3, 3, 3, 4, 4, 4, 3, 5, 3, 5, 3, 3, 1, 4, 0, 4, 3, 3, 0, 3, 3, 0, 4, 4, 4, 4, 5, 4, 3, 3, 5, 5, 3, 2, 3, 1, 2, 3, 2, 0, 1, 0, 0, 3, 2, 2, 4, 4, 3, 1, 5, 0, 4, 0, 3, 0, 4, 3, 1, 3, 2, 1, 0, 3, 3, 0, 3, 3), + (0, 4, 0, 5, 0, 5, 0, 4, 0, 4, 5, 5, 5, 3, 4, 3, 3, 2, 5, 4, 4, 3, 5, 3, 5, 3, 4, 0, 4, 3, 4, 4, 3, 2, 4, 4, 3, 4, 5, 4, 4, 5, 5, 0, 3, 5, 5, 4, 1, 3, 3, 2, 3, 3, 1, 3, 1, 0, 4, 3, 1, 4, 4, 3, 4, 5, 0, 4, 0, 2, 0, 4, 3, 4, 4, 3, 3, 0, 4, 0, 0, 5, 5), + (0, 4, 0, 4, 0, 5, 0, 1, 1, 3, 3, 4, 4, 3, 4, 1, 3, 0, 5, 1, 3, 0, 3, 1, 3, 1, 1, 0, 3, 0, 3, 3, 4, 0, 4, 3, 0, 4, 4, 4, 3, 4, 4, 0, 3, 5, 4, 1, 0, 3, 0, 0, 2, 3, 0, 3, 1, 0, 3, 1, 0, 3, 2, 1, 3, 5, 0, 3, 0, 1, 0, 3, 2, 3, 3, 4, 4, 0, 2, 2, 0, 4, 4), + (2, 4, 0, 5, 0, 4, 0, 3, 0, 4, 5, 5, 4, 3, 5, 3, 5, 3, 5, 3, 5, 2, 5, 3, 4, 3, 3, 4, 3, 4, 5, 3, 2, 1, 5, 4, 3, 2, 3, 4, 5, 3, 4, 1, 2, 5, 4, 3, 0, 3, 3, 0, 3, 2, 0, 2, 3, 0, 4, 1, 0, 3, 4, 3, 3, 5, 0, 3, 0, 1, 0, 4, 5, 5, 5, 4, 3, 0, 4, 2, 0, 3, 5), + (0, 5, 0, 4, 0, 4, 0, 2, 0, 5, 4, 3, 4, 3, 4, 3, 3, 3, 4, 3, 4, 2, 5, 3, 5, 3, 4, 1, 4, 3, 4, 4, 4, 0, 3, 5, 0, 4, 4, 4, 4, 5, 3, 1, 3, 4, 5, 3, 3, 3, 3, 3, 3, 3, 0, 2, 2, 0, 3, 3, 2, 4, 3, 3, 3, 5, 3, 4, 1, 3, 3, 5, 3, 2, 0, 0, 0, 0, 4, 3, 1, 3, 3), + (0, 1, 0, 3, 0, 3, 0, 1, 0, 1, 3, 3, 3, 2, 3, 3, 3, 0, 3, 0, 0, 0, 3, 1, 3, 0, 0, 0, 2, 2, 2, 3, 0, 0, 3, 2, 0, 1, 2, 4, 1, 3, 3, 0, 0, 3, 3, 3, 0, 1, 0, 0, 2, 1, 0, 0, 3, 0, 3, 1, 0, 3, 0, 0, 1, 3, 0, 2, 0, 1, 0, 3, 3, 1, 3, 3, 0, 0, 1, 1, 0, 3, 3), + (0, 2, 0, 3, 0, 2, 1, 4, 0, 2, 2, 3, 1, 1, 3, 1, 1, 0, 2, 0, 3, 1, 2, 3, 1, 3, 0, 0, 1, 0, 4, 3, 2, 3, 3, 3, 1, 4, 2, 3, 3, 3, 3, 1, 0, 3, 1, 4, 0, 1, 1, 0, 1, 2, 0, 1, 1, 0, 1, 1, 0, 3, 1, 3, 2, 2, 0, 1, 0, 0, 0, 2, 3, 3, 3, 1, 0, 0, 0, 0, 0, 2, 3), + (0, 5, 0, 4, 0, 5, 0, 2, 0, 4, 5, 5, 3, 3, 4, 3, 3, 1, 5, 4, 4, 2, 4, 4, 4, 3, 4, 2, 4, 3, 5, 5, 4, 3, 3, 4, 3, 3, 5, 5, 4, 5, 5, 1, 3, 4, 5, 3, 1, 4, 3, 1, 3, 3, 0, 3, 3, 1, 4, 3, 1, 4, 5, 3, 3, 5, 0, 4, 0, 3, 0, 5, 3, 3, 1, 4, 3, 0, 4, 0, 1, 5, 3), + (0, 5, 0, 5, 0, 4, 0, 2, 0, 4, 4, 3, 4, 3, 3, 3, 3, 3, 5, 4, 4, 4, 4, 4, 4, 5, 3, 3, 5, 2, 4, 4, 4, 3, 4, 4, 3, 3, 4, 4, 5, 5, 3, 3, 4, 3, 4, 3, 3, 4, 3, 3, 3, 3, 1, 2, 2, 1, 4, 3, 3, 5, 4, 4, 3, 4, 0, 4, 0, 3, 0, 4, 4, 4, 4, 4, 1, 0, 4, 2, 0, 2, 4), + (0, 4, 0, 4, 0, 3, 0, 1, 0, 3, 5, 2, 3, 0, 3, 0, 2, 1, 4, 2, 3, 3, 4, 1, 4, 3, 3, 2, 4, 1, 3, 3, 3, 0, 3, 3, 0, 0, 3, 3, 3, 5, 3, 3, 3, 3, 3, 2, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 1, 0, 0, 3, 1, 2, 2, 3, 0, 3, 0, 2, 0, 4, 4, 3, 3, 4, 1, 0, 3, 0, 0, 2, 4), + (0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 3, 1, 3, 0, 3, 2, 0, 0, 0, 1, 0, 3, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 2, 0, 0, 0, 0, 0, 0, 2), + (0, 2, 1, 3, 0, 2, 0, 2, 0, 3, 3, 3, 3, 1, 3, 1, 3, 3, 3, 3, 3, 3, 4, 2, 2, 1, 2, 1, 4, 0, 4, 3, 1, 3, 3, 3, 2, 4, 3, 5, 4, 3, 3, 3, 3, 3, 3, 3, 0, 1, 3, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 4, 2, 0, 2, 3, 0, 3, 3, 0, 3, 3, 4, 2, 3, 1, 4, 0, 1, 2, 0, 2, 3), + (0, 3, 0, 3, 0, 1, 0, 3, 0, 2, 3, 3, 3, 0, 3, 1, 2, 0, 3, 3, 2, 3, 3, 2, 3, 2, 3, 1, 3, 0, 4, 3, 2, 0, 3, 3, 1, 4, 3, 3, 2, 3, 4, 3, 1, 3, 3, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 4, 1, 1, 0, 3, 0, 3, 1, 0, 2, 3, 3, 3, 3, 3, 1, 0, 0, 2, 0, 3, 3), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3), + (0, 2, 0, 3, 1, 3, 0, 3, 0, 2, 3, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1, 3, 0, 2, 3, 1, 1, 4, 3, 3, 2, 3, 3, 1, 2, 2, 4, 1, 3, 3, 0, 1, 4, 2, 3, 0, 1, 3, 0, 3, 0, 0, 1, 3, 0, 2, 0, 0, 3, 3, 2, 1, 3, 0, 3, 0, 2, 0, 3, 4, 4, 4, 3, 1, 0, 3, 0, 0, 3, 3), + (0, 2, 0, 1, 0, 2, 0, 0, 0, 1, 3, 2, 2, 1, 3, 0, 1, 1, 3, 0, 3, 2, 3, 1, 2, 0, 2, 0, 1, 1, 3, 3, 3, 0, 3, 3, 1, 1, 2, 3, 2, 3, 3, 1, 2, 3, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 2, 1, 2, 1, 3, 0, 3, 0, 0, 0, 3, 4, 4, 4, 3, 2, 0, 2, 0, 0, 2, 4), + (0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 3), + (0, 3, 0, 3, 0, 2, 0, 3, 0, 3, 3, 3, 2, 3, 2, 2, 2, 0, 3, 1, 3, 3, 3, 2, 3, 3, 0, 0, 3, 0, 3, 2, 2, 0, 2, 3, 1, 4, 3, 4, 3, 3, 2, 3, 1, 5, 4, 4, 0, 3, 1, 2, 1, 3, 0, 3, 1, 1, 2, 0, 2, 3, 1, 3, 1, 3, 0, 3, 0, 1, 0, 3, 3, 4, 4, 2, 1, 0, 2, 1, 0, 2, 4), + (0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 4, 2, 5, 1, 4, 0, 2, 0, 2, 1, 3, 1, 4, 0, 2, 1, 0, 0, 2, 1, 4, 1, 1, 0, 3, 3, 0, 5, 1, 3, 2, 3, 3, 1, 0, 3, 2, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 1, 0, 3, 0, 2, 0, 1, 0, 3, 3, 3, 4, 3, 3, 0, 0, 0, 0, 2, 3), + (0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 3), + (0, 1, 0, 3, 0, 4, 0, 3, 0, 2, 4, 3, 1, 0, 3, 2, 2, 1, 3, 1, 2, 2, 3, 1, 1, 1, 2, 1, 3, 0, 1, 2, 0, 1, 3, 2, 1, 3, 0, 5, 5, 1, 0, 0, 1, 3, 2, 1, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 3, 4, 0, 1, 1, 1, 3, 2, 0, 2, 0, 1, 0, 2, 3, 3, 1, 2, 3, 0, 1, 0, 1, 0, 4), + (0, 0, 0, 1, 0, 3, 0, 3, 0, 2, 2, 1, 0, 0, 4, 0, 3, 0, 3, 1, 3, 0, 3, 0, 3, 0, 1, 0, 3, 0, 3, 1, 3, 0, 3, 3, 0, 0, 1, 2, 1, 1, 1, 0, 1, 2, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 2, 0, 0, 2, 0, 0, 0, 0, 2, 3, 3, 3, 3, 0, 0, 0, 0, 1, 4), + (0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 3, 1, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 2, 3, 0, 0, 2, 2, 3, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 2, 3), + (2, 4, 0, 5, 0, 5, 0, 4, 0, 3, 4, 3, 3, 3, 4, 3, 3, 3, 4, 3, 4, 4, 5, 4, 5, 5, 5, 2, 3, 0, 5, 5, 4, 1, 5, 4, 3, 1, 5, 4, 3, 4, 4, 3, 3, 4, 3, 3, 0, 3, 2, 0, 2, 3, 0, 3, 0, 0, 3, 3, 0, 5, 3, 2, 3, 3, 0, 3, 0, 3, 0, 3, 4, 5, 4, 5, 3, 0, 4, 3, 0, 3, 4), + (0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 3, 4, 3, 2, 3, 2, 3, 0, 4, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 2, 4, 3, 3, 1, 3, 4, 3, 4, 4, 4, 3, 4, 4, 3, 2, 4, 4, 1, 0, 2, 0, 0, 1, 1, 0, 2, 0, 0, 3, 1, 0, 5, 3, 2, 1, 3, 0, 3, 0, 1, 2, 4, 3, 2, 4, 3, 3, 0, 3, 2, 0, 4, 4), + (0, 3, 0, 3, 0, 1, 0, 0, 0, 1, 4, 3, 3, 2, 3, 1, 3, 1, 4, 2, 3, 2, 4, 2, 3, 4, 3, 0, 2, 2, 3, 3, 3, 0, 3, 3, 3, 0, 3, 4, 1, 3, 3, 0, 3, 4, 3, 3, 0, 1, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 0, 3, 1, 2, 1, 3, 0, 4, 0, 1, 0, 4, 3, 3, 4, 3, 3, 0, 2, 0, 0, 3, 3), + (0, 3, 0, 4, 0, 1, 0, 3, 0, 3, 4, 3, 3, 0, 3, 3, 3, 1, 3, 1, 3, 3, 4, 3, 3, 3, 0, 0, 3, 1, 5, 3, 3, 1, 3, 3, 2, 5, 4, 3, 3, 4, 5, 3, 2, 5, 3, 4, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 4, 2, 2, 1, 3, 0, 3, 0, 2, 0, 4, 4, 3, 5, 3, 2, 0, 1, 1, 0, 3, 4), + (0, 5, 0, 4, 0, 5, 0, 2, 0, 4, 4, 3, 3, 2, 3, 3, 3, 1, 4, 3, 4, 1, 5, 3, 4, 3, 4, 0, 4, 2, 4, 3, 4, 1, 5, 4, 0, 4, 4, 4, 4, 5, 4, 1, 3, 5, 4, 2, 1, 4, 1, 1, 3, 2, 0, 3, 1, 0, 3, 2, 1, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 4, 4, 3, 3, 3, 0, 4, 2, 0, 3, 4), + (1, 4, 0, 4, 0, 3, 0, 1, 0, 3, 3, 3, 1, 1, 3, 3, 2, 2, 3, 3, 1, 0, 3, 2, 2, 1, 2, 0, 3, 1, 2, 1, 2, 0, 3, 2, 0, 2, 2, 3, 3, 4, 3, 0, 3, 3, 1, 2, 0, 1, 1, 3, 1, 2, 0, 0, 3, 0, 1, 1, 0, 3, 2, 2, 3, 3, 0, 3, 0, 0, 0, 2, 3, 3, 4, 3, 3, 0, 1, 0, 0, 1, 4), + (0, 4, 0, 4, 0, 4, 0, 0, 0, 3, 4, 4, 3, 1, 4, 2, 3, 2, 3, 3, 3, 1, 4, 3, 4, 0, 3, 0, 4, 2, 3, 3, 2, 2, 5, 4, 2, 1, 3, 4, 3, 4, 3, 1, 3, 3, 4, 2, 0, 2, 1, 0, 3, 3, 0, 0, 2, 0, 3, 1, 0, 4, 4, 3, 4, 3, 0, 4, 0, 1, 0, 2, 4, 4, 4, 4, 4, 0, 3, 2, 0, 3, 3), + (0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2), + (0, 2, 0, 3, 0, 4, 0, 4, 0, 1, 3, 3, 3, 0, 4, 0, 2, 1, 2, 1, 1, 1, 2, 0, 3, 1, 1, 0, 1, 0, 3, 1, 0, 0, 3, 3, 2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 2, 2, 0, 3, 1, 0, 0, 1, 0, 1, 1, 0, 1, 2, 0, 3, 0, 0, 0, 0, 1, 0, 0, 3, 3, 4, 3, 1, 0, 1, 0, 3, 0, 2), + (0, 0, 0, 3, 0, 5, 0, 0, 0, 0, 1, 0, 2, 0, 3, 1, 0, 1, 3, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 4, 0, 0, 0, 2, 3, 0, 1, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 3), + (0, 2, 0, 5, 0, 5, 0, 1, 0, 2, 4, 3, 3, 2, 5, 1, 3, 2, 3, 3, 3, 0, 4, 1, 2, 0, 3, 0, 4, 0, 2, 2, 1, 1, 5, 3, 0, 0, 1, 4, 2, 3, 2, 0, 3, 3, 3, 2, 0, 2, 4, 1, 1, 2, 0, 1, 1, 0, 3, 1, 0, 1, 3, 1, 2, 3, 0, 2, 0, 0, 0, 1, 3, 5, 4, 4, 4, 0, 3, 0, 0, 1, 3), + (0, 4, 0, 5, 0, 4, 0, 4, 0, 4, 5, 4, 3, 3, 4, 3, 3, 3, 4, 3, 4, 4, 5, 3, 4, 5, 4, 2, 4, 2, 3, 4, 3, 1, 4, 4, 1, 3, 5, 4, 4, 5, 5, 4, 4, 5, 5, 5, 2, 3, 3, 1, 4, 3, 1, 3, 3, 0, 3, 3, 1, 4, 3, 4, 4, 4, 0, 3, 0, 4, 0, 3, 3, 4, 4, 5, 0, 0, 4, 3, 0, 4, 5), + (0, 4, 0, 4, 0, 3, 0, 3, 0, 3, 4, 4, 4, 3, 3, 2, 4, 3, 4, 3, 4, 3, 5, 3, 4, 3, 2, 1, 4, 2, 4, 4, 3, 1, 3, 4, 2, 4, 5, 5, 3, 4, 5, 4, 1, 5, 4, 3, 0, 3, 2, 2, 3, 2, 1, 3, 1, 0, 3, 3, 3, 5, 3, 3, 3, 5, 4, 4, 2, 3, 3, 4, 3, 3, 3, 2, 1, 0, 3, 2, 1, 4, 3), + (0, 4, 0, 5, 0, 4, 0, 3, 0, 3, 5, 5, 3, 2, 4, 3, 4, 0, 5, 4, 4, 1, 4, 4, 4, 3, 3, 3, 4, 3, 5, 5, 2, 3, 3, 4, 1, 2, 5, 5, 3, 5, 5, 2, 3, 5, 5, 4, 0, 3, 2, 0, 3, 3, 1, 1, 5, 1, 4, 1, 0, 4, 3, 2, 3, 5, 0, 4, 0, 3, 0, 5, 4, 3, 4, 3, 0, 0, 4, 1, 0, 4, 4), + (1, 3, 0, 4, 0, 2, 0, 2, 0, 2, 5, 5, 3, 3, 3, 3, 3, 0, 4, 2, 3, 4, 4, 4, 3, 4, 0, 0, 3, 4, 5, 4, 3, 3, 3, 3, 2, 5, 5, 4, 5, 5, 5, 4, 3, 5, 5, 5, 1, 3, 1, 0, 1, 0, 0, 3, 2, 0, 4, 2, 0, 5, 2, 3, 2, 4, 1, 3, 0, 3, 0, 4, 5, 4, 5, 4, 3, 0, 4, 2, 0, 5, 4), + (0, 3, 0, 4, 0, 5, 0, 3, 0, 3, 4, 4, 3, 2, 3, 2, 3, 3, 3, 3, 3, 2, 4, 3, 3, 2, 2, 0, 3, 3, 3, 3, 3, 1, 3, 3, 3, 0, 4, 4, 3, 4, 4, 1, 1, 4, 4, 2, 0, 3, 1, 0, 1, 1, 0, 4, 1, 0, 2, 3, 1, 3, 3, 1, 3, 4, 0, 3, 0, 1, 0, 3, 1, 3, 0, 0, 1, 0, 2, 0, 0, 4, 4), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 3, 0, 3, 0, 2, 0, 3, 0, 1, 5, 4, 3, 3, 3, 1, 4, 2, 1, 2, 3, 4, 4, 2, 4, 4, 5, 0, 3, 1, 4, 3, 4, 0, 4, 3, 3, 3, 2, 3, 2, 5, 3, 4, 3, 2, 2, 3, 0, 0, 3, 0, 2, 1, 0, 1, 2, 0, 0, 0, 0, 2, 1, 1, 3, 1, 0, 2, 0, 4, 0, 3, 4, 4, 4, 5, 2, 0, 2, 0, 0, 1, 3), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 4, 2, 1, 1, 0, 1, 0, 3, 2, 0, 0, 3, 1, 1, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 4, 0, 4, 2, 1, 0, 0, 0, 0, 0, 1), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 2, 0, 2, 1, 0, 0, 1, 2, 1, 0, 1, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2), + (0, 4, 0, 4, 0, 4, 0, 3, 0, 4, 4, 3, 4, 2, 4, 3, 2, 0, 4, 4, 4, 3, 5, 3, 5, 3, 3, 2, 4, 2, 4, 3, 4, 3, 1, 4, 0, 2, 3, 4, 4, 4, 3, 3, 3, 4, 4, 4, 3, 4, 1, 3, 4, 3, 2, 1, 2, 1, 3, 3, 3, 4, 4, 3, 3, 5, 0, 4, 0, 3, 0, 4, 3, 3, 3, 2, 1, 0, 3, 0, 0, 3, 3), + (0, 4, 0, 3, 0, 3, 0, 3, 0, 3, 5, 5, 3, 3, 3, 3, 4, 3, 4, 3, 3, 3, 4, 4, 4, 3, 3, 3, 3, 4, 3, 5, 3, 3, 1, 3, 2, 4, 5, 5, 5, 5, 4, 3, 4, 5, 5, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 1, 2, 3, 2, 4, 3, 3, 3, 4, 0, 4, 0, 2, 0, 4, 3, 2, 2, 1, 2, 0, 3, 0, 0, 4, 1), +) +# fmt: on + + +class JapaneseContextAnalysis: + NUM_OF_CATEGORY = 6 + DONT_KNOW = -1 + ENOUGH_REL_THRESHOLD = 100 + MAX_REL_THRESHOLD = 1000 + MINIMUM_DATA_THRESHOLD = 4 + + def __init__(self) -> None: + self._total_rel = 0 + self._rel_sample: List[int] = [] + self._need_to_skip_char_num = 0 + self._last_char_order = -1 + self._done = False + self.reset() + + def reset(self) -> None: + self._total_rel = 0 # total sequence received + # category counters, each integer counts sequence in its category + self._rel_sample = [0] * self.NUM_OF_CATEGORY + # if last byte in current buffer is not the last byte of a character, + # we need to know how many bytes to skip in next buffer + self._need_to_skip_char_num = 0 + self._last_char_order = -1 # The order of previous char + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + + def feed(self, byte_str: Union[bytes, bytearray], num_bytes: int) -> None: + if self._done: + return + + # The buffer we got is byte oriented, and a character may span in more than one + # buffers. In case the last one or two byte in last buffer is not + # complete, we record how many byte needed to complete that character + # and skip these bytes here. We can choose to record those bytes as + # well and analyse the character once it is complete, but since a + # character will not make much difference, by simply skipping + # this character will simply our logic and improve performance. + i = self._need_to_skip_char_num + while i < num_bytes: + order, char_len = self.get_order(byte_str[i : i + 2]) + i += char_len + if i > num_bytes: + self._need_to_skip_char_num = i - num_bytes + self._last_char_order = -1 + else: + if (order != -1) and (self._last_char_order != -1): + self._total_rel += 1 + if self._total_rel > self.MAX_REL_THRESHOLD: + self._done = True + break + self._rel_sample[ + jp2_char_context[self._last_char_order][order] + ] += 1 + self._last_char_order = order + + def got_enough_data(self) -> bool: + return self._total_rel > self.ENOUGH_REL_THRESHOLD + + def get_confidence(self) -> float: + # This is just one way to calculate confidence. It works well for me. + if self._total_rel > self.MINIMUM_DATA_THRESHOLD: + return (self._total_rel - self._rel_sample[0]) / self._total_rel + return self.DONT_KNOW + + def get_order(self, _: Union[bytes, bytearray]) -> Tuple[int, int]: + return -1, 1 + + +class SJISContextAnalysis(JapaneseContextAnalysis): + def __init__(self) -> None: + super().__init__() + self._charset_name = "SHIFT_JIS" + + @property + def charset_name(self) -> str: + return self._charset_name + + def get_order(self, byte_str: Union[bytes, bytearray]) -> Tuple[int, int]: + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (0x81 <= first_char <= 0x9F) or (0xE0 <= first_char <= 0xFC): + char_len = 2 + if (first_char == 0x87) or (0xFA <= first_char <= 0xFC): + self._charset_name = "CP932" + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 202) and (0x9F <= second_char <= 0xF1): + return second_char - 0x9F, char_len + + return -1, char_len + + +class EUCJPContextAnalysis(JapaneseContextAnalysis): + def get_order(self, byte_str: Union[bytes, bytearray]) -> Tuple[int, int]: + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (first_char == 0x8E) or (0xA1 <= first_char <= 0xFE): + char_len = 2 + elif first_char == 0x8F: + char_len = 3 + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 0xA4) and (0xA1 <= second_char <= 0xF3): + return second_char - 0xA1, char_len + + return -1, char_len diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py new file mode 100644 index 00000000..99466821 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py @@ -0,0 +1,4649 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +BULGARIAN_LANG_MODEL = { + 63: { # 'e' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 1, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 45: { # '\xad' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 1, # 'М' + 36: 0, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 31: { # 'А' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 1, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 2, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 2, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 0, # 'и' + 26: 2, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 32: { # 'Б' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 1, # 'Щ' + 61: 2, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 35: { # 'В' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 2, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 2, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 43: { # 'Г' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 1, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 37: { # 'Д' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 2, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 44: { # 'Е' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 2, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 0, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 55: { # 'Ж' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 47: { # 'З' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 40: { # 'И' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 2, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 2, # 'Я' + 1: 1, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 3, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 0, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 59: { # 'Й' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 33: { # 'К' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 46: { # 'Л' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 2, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 38: { # 'М' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 36: { # 'Н' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 2, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 41: { # 'О' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 2, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 2, # 'ч' + 27: 0, # 'ш' + 24: 2, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 30: { # 'П' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 2, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 39: { # 'Р' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 2, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 28: { # 'С' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 3, # 'А' + 32: 2, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 34: { # 'Т' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 51: { # 'У' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 2, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 48: { # 'Ф' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 49: { # 'Х' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 53: { # 'Ц' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 50: { # 'Ч' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 54: { # 'Ш' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 57: { # 'Щ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 61: { # 'Ъ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 60: { # 'Ю' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 1, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 0, # 'е' + 23: 2, # 'ж' + 15: 1, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 56: { # 'Я' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 1, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 1: { # 'а' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 18: { # 'б' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 0, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 2, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 3, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 9: { # 'в' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 0, # 'в' + 20: 2, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 20: { # 'г' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 11: { # 'д' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 1, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 3: { # 'е' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 2, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 23: { # 'ж' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 15: { # 'з' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 2: { # 'и' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 1, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 26: { # 'й' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 12: { # 'к' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 3, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 10: { # 'л' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 1, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 3, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 14: { # 'м' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 6: { # 'н' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 2, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 3, # 'ф' + 25: 2, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 4: { # 'о' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 13: { # 'п' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 7: { # 'р' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 2, # 'ч' + 27: 3, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 8: { # 'с' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 5: { # 'т' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 19: { # 'у' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 2, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 2, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 29: { # 'ф' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 2, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 25: { # 'х' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 22: { # 'ц' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 21: { # 'ч' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 27: { # 'ш' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 24: { # 'щ' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 17: { # 'ъ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 1, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 3, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 2, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 52: { # 'ь' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 42: { # 'ю' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 1, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 1, # 'е' + 23: 2, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 1, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 16: { # 'я' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 1, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 3, # 'х' + 22: 2, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 2, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 58: { # 'є' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 62: { # '№' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +ISO_8859_5_BULGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 77, # 'A' + 66: 90, # 'B' + 67: 99, # 'C' + 68: 100, # 'D' + 69: 72, # 'E' + 70: 109, # 'F' + 71: 107, # 'G' + 72: 101, # 'H' + 73: 79, # 'I' + 74: 185, # 'J' + 75: 81, # 'K' + 76: 102, # 'L' + 77: 76, # 'M' + 78: 94, # 'N' + 79: 82, # 'O' + 80: 110, # 'P' + 81: 186, # 'Q' + 82: 108, # 'R' + 83: 91, # 'S' + 84: 74, # 'T' + 85: 119, # 'U' + 86: 84, # 'V' + 87: 96, # 'W' + 88: 111, # 'X' + 89: 187, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 65, # 'a' + 98: 69, # 'b' + 99: 70, # 'c' + 100: 66, # 'd' + 101: 63, # 'e' + 102: 68, # 'f' + 103: 112, # 'g' + 104: 103, # 'h' + 105: 92, # 'i' + 106: 194, # 'j' + 107: 104, # 'k' + 108: 95, # 'l' + 109: 86, # 'm' + 110: 87, # 'n' + 111: 71, # 'o' + 112: 116, # 'p' + 113: 195, # 'q' + 114: 85, # 'r' + 115: 93, # 's' + 116: 97, # 't' + 117: 113, # 'u' + 118: 196, # 'v' + 119: 197, # 'w' + 120: 198, # 'x' + 121: 199, # 'y' + 122: 200, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 194, # '\x80' + 129: 195, # '\x81' + 130: 196, # '\x82' + 131: 197, # '\x83' + 132: 198, # '\x84' + 133: 199, # '\x85' + 134: 200, # '\x86' + 135: 201, # '\x87' + 136: 202, # '\x88' + 137: 203, # '\x89' + 138: 204, # '\x8a' + 139: 205, # '\x8b' + 140: 206, # '\x8c' + 141: 207, # '\x8d' + 142: 208, # '\x8e' + 143: 209, # '\x8f' + 144: 210, # '\x90' + 145: 211, # '\x91' + 146: 212, # '\x92' + 147: 213, # '\x93' + 148: 214, # '\x94' + 149: 215, # '\x95' + 150: 216, # '\x96' + 151: 217, # '\x97' + 152: 218, # '\x98' + 153: 219, # '\x99' + 154: 220, # '\x9a' + 155: 221, # '\x9b' + 156: 222, # '\x9c' + 157: 223, # '\x9d' + 158: 224, # '\x9e' + 159: 225, # '\x9f' + 160: 81, # '\xa0' + 161: 226, # 'Ё' + 162: 227, # 'Ђ' + 163: 228, # 'Ѓ' + 164: 229, # 'Є' + 165: 230, # 'Ѕ' + 166: 105, # 'І' + 167: 231, # 'Ї' + 168: 232, # 'Ј' + 169: 233, # 'Љ' + 170: 234, # 'Њ' + 171: 235, # 'Ћ' + 172: 236, # 'Ќ' + 173: 45, # '\xad' + 174: 237, # 'Ў' + 175: 238, # 'Џ' + 176: 31, # 'А' + 177: 32, # 'Б' + 178: 35, # 'В' + 179: 43, # 'Г' + 180: 37, # 'Д' + 181: 44, # 'Е' + 182: 55, # 'Ж' + 183: 47, # 'З' + 184: 40, # 'И' + 185: 59, # 'Й' + 186: 33, # 'К' + 187: 46, # 'Л' + 188: 38, # 'М' + 189: 36, # 'Н' + 190: 41, # 'О' + 191: 30, # 'П' + 192: 39, # 'Р' + 193: 28, # 'С' + 194: 34, # 'Т' + 195: 51, # 'У' + 196: 48, # 'Ф' + 197: 49, # 'Х' + 198: 53, # 'Ц' + 199: 50, # 'Ч' + 200: 54, # 'Ш' + 201: 57, # 'Щ' + 202: 61, # 'Ъ' + 203: 239, # 'Ы' + 204: 67, # 'Ь' + 205: 240, # 'Э' + 206: 60, # 'Ю' + 207: 56, # 'Я' + 208: 1, # 'а' + 209: 18, # 'б' + 210: 9, # 'в' + 211: 20, # 'г' + 212: 11, # 'д' + 213: 3, # 'е' + 214: 23, # 'ж' + 215: 15, # 'з' + 216: 2, # 'и' + 217: 26, # 'й' + 218: 12, # 'к' + 219: 10, # 'л' + 220: 14, # 'м' + 221: 6, # 'н' + 222: 4, # 'о' + 223: 13, # 'п' + 224: 7, # 'р' + 225: 8, # 'с' + 226: 5, # 'т' + 227: 19, # 'у' + 228: 29, # 'ф' + 229: 25, # 'х' + 230: 22, # 'ц' + 231: 21, # 'ч' + 232: 27, # 'ш' + 233: 24, # 'щ' + 234: 17, # 'ъ' + 235: 75, # 'ы' + 236: 52, # 'ь' + 237: 241, # 'э' + 238: 42, # 'ю' + 239: 16, # 'я' + 240: 62, # '№' + 241: 242, # 'ё' + 242: 243, # 'ђ' + 243: 244, # 'ѓ' + 244: 58, # 'є' + 245: 245, # 'ѕ' + 246: 98, # 'і' + 247: 246, # 'ї' + 248: 247, # 'ј' + 249: 248, # 'љ' + 250: 249, # 'њ' + 251: 250, # 'ћ' + 252: 251, # 'ќ' + 253: 91, # '§' + 254: 252, # 'ў' + 255: 253, # 'џ' +} + +ISO_8859_5_BULGARIAN_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-5", + language="Bulgarian", + char_to_order_map=ISO_8859_5_BULGARIAN_CHAR_TO_ORDER, + language_model=BULGARIAN_LANG_MODEL, + typical_positive_ratio=0.969392, + keep_ascii_letters=False, + alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", +) + +WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 77, # 'A' + 66: 90, # 'B' + 67: 99, # 'C' + 68: 100, # 'D' + 69: 72, # 'E' + 70: 109, # 'F' + 71: 107, # 'G' + 72: 101, # 'H' + 73: 79, # 'I' + 74: 185, # 'J' + 75: 81, # 'K' + 76: 102, # 'L' + 77: 76, # 'M' + 78: 94, # 'N' + 79: 82, # 'O' + 80: 110, # 'P' + 81: 186, # 'Q' + 82: 108, # 'R' + 83: 91, # 'S' + 84: 74, # 'T' + 85: 119, # 'U' + 86: 84, # 'V' + 87: 96, # 'W' + 88: 111, # 'X' + 89: 187, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 65, # 'a' + 98: 69, # 'b' + 99: 70, # 'c' + 100: 66, # 'd' + 101: 63, # 'e' + 102: 68, # 'f' + 103: 112, # 'g' + 104: 103, # 'h' + 105: 92, # 'i' + 106: 194, # 'j' + 107: 104, # 'k' + 108: 95, # 'l' + 109: 86, # 'm' + 110: 87, # 'n' + 111: 71, # 'o' + 112: 116, # 'p' + 113: 195, # 'q' + 114: 85, # 'r' + 115: 93, # 's' + 116: 97, # 't' + 117: 113, # 'u' + 118: 196, # 'v' + 119: 197, # 'w' + 120: 198, # 'x' + 121: 199, # 'y' + 122: 200, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 206, # 'Ђ' + 129: 207, # 'Ѓ' + 130: 208, # '‚' + 131: 209, # 'ѓ' + 132: 210, # '„' + 133: 211, # '…' + 134: 212, # '†' + 135: 213, # '‡' + 136: 120, # '€' + 137: 214, # '‰' + 138: 215, # 'Љ' + 139: 216, # '‹' + 140: 217, # 'Њ' + 141: 218, # 'Ќ' + 142: 219, # 'Ћ' + 143: 220, # 'Џ' + 144: 221, # 'ђ' + 145: 78, # '‘' + 146: 64, # '’' + 147: 83, # '“' + 148: 121, # '”' + 149: 98, # '•' + 150: 117, # '–' + 151: 105, # '—' + 152: 222, # None + 153: 223, # '™' + 154: 224, # 'љ' + 155: 225, # '›' + 156: 226, # 'њ' + 157: 227, # 'ќ' + 158: 228, # 'ћ' + 159: 229, # 'џ' + 160: 88, # '\xa0' + 161: 230, # 'Ў' + 162: 231, # 'ў' + 163: 232, # 'Ј' + 164: 233, # '¤' + 165: 122, # 'Ґ' + 166: 89, # '¦' + 167: 106, # '§' + 168: 234, # 'Ё' + 169: 235, # '©' + 170: 236, # 'Є' + 171: 237, # '«' + 172: 238, # '¬' + 173: 45, # '\xad' + 174: 239, # '®' + 175: 240, # 'Ї' + 176: 73, # '°' + 177: 80, # '±' + 178: 118, # 'І' + 179: 114, # 'і' + 180: 241, # 'ґ' + 181: 242, # 'µ' + 182: 243, # '¶' + 183: 244, # '·' + 184: 245, # 'ё' + 185: 62, # '№' + 186: 58, # 'є' + 187: 246, # '»' + 188: 247, # 'ј' + 189: 248, # 'Ѕ' + 190: 249, # 'ѕ' + 191: 250, # 'ї' + 192: 31, # 'А' + 193: 32, # 'Б' + 194: 35, # 'В' + 195: 43, # 'Г' + 196: 37, # 'Д' + 197: 44, # 'Е' + 198: 55, # 'Ж' + 199: 47, # 'З' + 200: 40, # 'И' + 201: 59, # 'Й' + 202: 33, # 'К' + 203: 46, # 'Л' + 204: 38, # 'М' + 205: 36, # 'Н' + 206: 41, # 'О' + 207: 30, # 'П' + 208: 39, # 'Р' + 209: 28, # 'С' + 210: 34, # 'Т' + 211: 51, # 'У' + 212: 48, # 'Ф' + 213: 49, # 'Х' + 214: 53, # 'Ц' + 215: 50, # 'Ч' + 216: 54, # 'Ш' + 217: 57, # 'Щ' + 218: 61, # 'Ъ' + 219: 251, # 'Ы' + 220: 67, # 'Ь' + 221: 252, # 'Э' + 222: 60, # 'Ю' + 223: 56, # 'Я' + 224: 1, # 'а' + 225: 18, # 'б' + 226: 9, # 'в' + 227: 20, # 'г' + 228: 11, # 'д' + 229: 3, # 'е' + 230: 23, # 'ж' + 231: 15, # 'з' + 232: 2, # 'и' + 233: 26, # 'й' + 234: 12, # 'к' + 235: 10, # 'л' + 236: 14, # 'м' + 237: 6, # 'н' + 238: 4, # 'о' + 239: 13, # 'п' + 240: 7, # 'р' + 241: 8, # 'с' + 242: 5, # 'т' + 243: 19, # 'у' + 244: 29, # 'ф' + 245: 25, # 'х' + 246: 22, # 'ц' + 247: 21, # 'ч' + 248: 27, # 'ш' + 249: 24, # 'щ' + 250: 17, # 'ъ' + 251: 75, # 'ы' + 252: 52, # 'ь' + 253: 253, # 'э' + 254: 42, # 'ю' + 255: 16, # 'я' +} + +WINDOWS_1251_BULGARIAN_MODEL = SingleByteCharSetModel( + charset_name="windows-1251", + language="Bulgarian", + char_to_order_map=WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER, + language_model=BULGARIAN_LANG_MODEL, + typical_positive_ratio=0.969392, + keep_ascii_letters=False, + alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py new file mode 100644 index 00000000..cfb8639e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py @@ -0,0 +1,4397 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +GREEK_LANG_MODEL = { + 60: { # 'e' + 60: 2, # 'e' + 55: 1, # 'o' + 58: 2, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 55: { # 'o' + 60: 0, # 'e' + 55: 2, # 'o' + 58: 2, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 58: { # 't' + 60: 2, # 'e' + 55: 1, # 'o' + 58: 1, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 1, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 36: { # '·' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 61: { # 'Ά' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 1, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 1, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 46: { # 'Έ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 2, # 'β' + 20: 2, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 1, # 'σ' + 2: 2, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 54: { # 'Ό' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 31: { # 'Α' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 2, # 'Β' + 43: 2, # 'Γ' + 41: 1, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 2, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 1, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 2, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 2, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 1, # 'θ' + 5: 0, # 'ι' + 11: 2, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 2, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 51: { # 'Β' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 1, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 43: { # 'Γ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 1, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 41: { # 'Δ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 1, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 34: { # 'Ε' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 2, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 1, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 2, # 'Χ' + 57: 2, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 1, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 1, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 1, # 'ύ' + 27: 0, # 'ώ' + }, + 40: { # 'Η' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 2, # 'Θ' + 47: 0, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 52: { # 'Θ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 1, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 47: { # 'Ι' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 1, # 'Β' + 43: 1, # 'Γ' + 41: 2, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 2, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 1, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 1, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 44: { # 'Κ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 1, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 1, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 53: { # 'Λ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 2, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 2, # 'Σ' + 33: 0, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 1, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 38: { # 'Μ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 2, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 2, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 49: { # 'Ν' + 60: 2, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 1, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 1, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 59: { # 'Ξ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 39: { # 'Ο' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 1, # 'Β' + 43: 2, # 'Γ' + 41: 2, # 'Δ' + 34: 2, # 'Ε' + 40: 1, # 'Η' + 52: 2, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 2, # 'Φ' + 50: 2, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 1, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 35: { # 'Π' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 2, # 'Λ' + 38: 1, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 1, # 'έ' + 22: 1, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 3, # 'ώ' + }, + 48: { # 'Ρ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 1, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 1, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 37: { # 'Σ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 2, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 2, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 2, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 2, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 33: { # 'Τ' + 60: 0, # 'e' + 55: 1, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 2, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 45: { # 'Υ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 2, # 'Η' + 52: 2, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 1, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 56: { # 'Φ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 1, # 'ύ' + 27: 1, # 'ώ' + }, + 50: { # 'Χ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 1, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 1, # 'Ω' + 17: 2, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 57: { # 'Ω' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 2, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 17: { # 'ά' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 3, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 3, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 18: { # 'έ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 3, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 22: { # 'ή' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 15: { # 'ί' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 3, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 1, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 1: { # 'α' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 2, # 'ε' + 32: 3, # 'ζ' + 13: 1, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 29: { # 'β' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 2, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 3, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 20: { # 'γ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 21: { # 'δ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 3: { # 'ε' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 2, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 2, # 'ε' + 32: 2, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 32: { # 'ζ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 2, # 'ώ' + }, + 13: { # 'η' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 25: { # 'θ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 1, # 'λ' + 10: 3, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 5: { # 'ι' + 60: 0, # 'e' + 55: 1, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 0, # 'ύ' + 27: 3, # 'ώ' + }, + 11: { # 'κ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 16: { # 'λ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 1, # 'β' + 20: 2, # 'γ' + 21: 1, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 10: { # 'μ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 3, # 'φ' + 23: 0, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 6: { # 'ν' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 1, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 30: { # 'ξ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 3, # 'ύ' + 27: 1, # 'ώ' + }, + 4: { # 'ο' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 2, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 1, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 9: { # 'π' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 3, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 2, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 8: { # 'ρ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 1, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 3, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 14: { # 'ς' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 7: { # 'σ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 2: { # 'τ' + 60: 0, # 'e' + 55: 2, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 12: { # 'υ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 2, # 'ε' + 32: 2, # 'ζ' + 13: 2, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 2, # 'ώ' + }, + 28: { # 'φ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 1, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 23: { # 'χ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 42: { # 'ψ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 1, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 24: { # 'ω' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 1, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 19: { # 'ό' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 1, # 'ε' + 32: 2, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 1, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 26: { # 'ύ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 2, # 'β' + 20: 2, # 'γ' + 21: 1, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 27: { # 'ώ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 1, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 1, # 'η' + 25: 2, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 1, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 1, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1253_GREEK_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 82, # 'A' + 66: 100, # 'B' + 67: 104, # 'C' + 68: 94, # 'D' + 69: 98, # 'E' + 70: 101, # 'F' + 71: 116, # 'G' + 72: 102, # 'H' + 73: 111, # 'I' + 74: 187, # 'J' + 75: 117, # 'K' + 76: 92, # 'L' + 77: 88, # 'M' + 78: 113, # 'N' + 79: 85, # 'O' + 80: 79, # 'P' + 81: 118, # 'Q' + 82: 105, # 'R' + 83: 83, # 'S' + 84: 67, # 'T' + 85: 114, # 'U' + 86: 119, # 'V' + 87: 95, # 'W' + 88: 99, # 'X' + 89: 109, # 'Y' + 90: 188, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 72, # 'a' + 98: 70, # 'b' + 99: 80, # 'c' + 100: 81, # 'd' + 101: 60, # 'e' + 102: 96, # 'f' + 103: 93, # 'g' + 104: 89, # 'h' + 105: 68, # 'i' + 106: 120, # 'j' + 107: 97, # 'k' + 108: 77, # 'l' + 109: 86, # 'm' + 110: 69, # 'n' + 111: 55, # 'o' + 112: 78, # 'p' + 113: 115, # 'q' + 114: 65, # 'r' + 115: 66, # 's' + 116: 58, # 't' + 117: 76, # 'u' + 118: 106, # 'v' + 119: 103, # 'w' + 120: 87, # 'x' + 121: 107, # 'y' + 122: 112, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 255, # '€' + 129: 255, # None + 130: 255, # '‚' + 131: 255, # 'ƒ' + 132: 255, # '„' + 133: 255, # '…' + 134: 255, # '†' + 135: 255, # '‡' + 136: 255, # None + 137: 255, # '‰' + 138: 255, # None + 139: 255, # '‹' + 140: 255, # None + 141: 255, # None + 142: 255, # None + 143: 255, # None + 144: 255, # None + 145: 255, # '‘' + 146: 255, # '’' + 147: 255, # '“' + 148: 255, # '”' + 149: 255, # '•' + 150: 255, # '–' + 151: 255, # '—' + 152: 255, # None + 153: 255, # '™' + 154: 255, # None + 155: 255, # '›' + 156: 255, # None + 157: 255, # None + 158: 255, # None + 159: 255, # None + 160: 253, # '\xa0' + 161: 233, # '΅' + 162: 61, # 'Ά' + 163: 253, # '£' + 164: 253, # '¤' + 165: 253, # '¥' + 166: 253, # '¦' + 167: 253, # '§' + 168: 253, # '¨' + 169: 253, # '©' + 170: 253, # None + 171: 253, # '«' + 172: 253, # '¬' + 173: 74, # '\xad' + 174: 253, # '®' + 175: 253, # '―' + 176: 253, # '°' + 177: 253, # '±' + 178: 253, # '²' + 179: 253, # '³' + 180: 247, # '΄' + 181: 253, # 'µ' + 182: 253, # '¶' + 183: 36, # '·' + 184: 46, # 'Έ' + 185: 71, # 'Ή' + 186: 73, # 'Ί' + 187: 253, # '»' + 188: 54, # 'Ό' + 189: 253, # '½' + 190: 108, # 'Ύ' + 191: 123, # 'Ώ' + 192: 110, # 'ΐ' + 193: 31, # 'Α' + 194: 51, # 'Β' + 195: 43, # 'Γ' + 196: 41, # 'Δ' + 197: 34, # 'Ε' + 198: 91, # 'Ζ' + 199: 40, # 'Η' + 200: 52, # 'Θ' + 201: 47, # 'Ι' + 202: 44, # 'Κ' + 203: 53, # 'Λ' + 204: 38, # 'Μ' + 205: 49, # 'Ν' + 206: 59, # 'Ξ' + 207: 39, # 'Ο' + 208: 35, # 'Π' + 209: 48, # 'Ρ' + 210: 250, # None + 211: 37, # 'Σ' + 212: 33, # 'Τ' + 213: 45, # 'Υ' + 214: 56, # 'Φ' + 215: 50, # 'Χ' + 216: 84, # 'Ψ' + 217: 57, # 'Ω' + 218: 120, # 'Ϊ' + 219: 121, # 'Ϋ' + 220: 17, # 'ά' + 221: 18, # 'έ' + 222: 22, # 'ή' + 223: 15, # 'ί' + 224: 124, # 'ΰ' + 225: 1, # 'α' + 226: 29, # 'β' + 227: 20, # 'γ' + 228: 21, # 'δ' + 229: 3, # 'ε' + 230: 32, # 'ζ' + 231: 13, # 'η' + 232: 25, # 'θ' + 233: 5, # 'ι' + 234: 11, # 'κ' + 235: 16, # 'λ' + 236: 10, # 'μ' + 237: 6, # 'ν' + 238: 30, # 'ξ' + 239: 4, # 'ο' + 240: 9, # 'π' + 241: 8, # 'ρ' + 242: 14, # 'ς' + 243: 7, # 'σ' + 244: 2, # 'τ' + 245: 12, # 'υ' + 246: 28, # 'φ' + 247: 23, # 'χ' + 248: 42, # 'ψ' + 249: 24, # 'ω' + 250: 64, # 'ϊ' + 251: 75, # 'ϋ' + 252: 19, # 'ό' + 253: 26, # 'ύ' + 254: 27, # 'ώ' + 255: 253, # None +} + +WINDOWS_1253_GREEK_MODEL = SingleByteCharSetModel( + charset_name="windows-1253", + language="Greek", + char_to_order_map=WINDOWS_1253_GREEK_CHAR_TO_ORDER, + language_model=GREEK_LANG_MODEL, + typical_positive_ratio=0.982851, + keep_ascii_letters=False, + alphabet="ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ", +) + +ISO_8859_7_GREEK_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 82, # 'A' + 66: 100, # 'B' + 67: 104, # 'C' + 68: 94, # 'D' + 69: 98, # 'E' + 70: 101, # 'F' + 71: 116, # 'G' + 72: 102, # 'H' + 73: 111, # 'I' + 74: 187, # 'J' + 75: 117, # 'K' + 76: 92, # 'L' + 77: 88, # 'M' + 78: 113, # 'N' + 79: 85, # 'O' + 80: 79, # 'P' + 81: 118, # 'Q' + 82: 105, # 'R' + 83: 83, # 'S' + 84: 67, # 'T' + 85: 114, # 'U' + 86: 119, # 'V' + 87: 95, # 'W' + 88: 99, # 'X' + 89: 109, # 'Y' + 90: 188, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 72, # 'a' + 98: 70, # 'b' + 99: 80, # 'c' + 100: 81, # 'd' + 101: 60, # 'e' + 102: 96, # 'f' + 103: 93, # 'g' + 104: 89, # 'h' + 105: 68, # 'i' + 106: 120, # 'j' + 107: 97, # 'k' + 108: 77, # 'l' + 109: 86, # 'm' + 110: 69, # 'n' + 111: 55, # 'o' + 112: 78, # 'p' + 113: 115, # 'q' + 114: 65, # 'r' + 115: 66, # 's' + 116: 58, # 't' + 117: 76, # 'u' + 118: 106, # 'v' + 119: 103, # 'w' + 120: 87, # 'x' + 121: 107, # 'y' + 122: 112, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 255, # '\x80' + 129: 255, # '\x81' + 130: 255, # '\x82' + 131: 255, # '\x83' + 132: 255, # '\x84' + 133: 255, # '\x85' + 134: 255, # '\x86' + 135: 255, # '\x87' + 136: 255, # '\x88' + 137: 255, # '\x89' + 138: 255, # '\x8a' + 139: 255, # '\x8b' + 140: 255, # '\x8c' + 141: 255, # '\x8d' + 142: 255, # '\x8e' + 143: 255, # '\x8f' + 144: 255, # '\x90' + 145: 255, # '\x91' + 146: 255, # '\x92' + 147: 255, # '\x93' + 148: 255, # '\x94' + 149: 255, # '\x95' + 150: 255, # '\x96' + 151: 255, # '\x97' + 152: 255, # '\x98' + 153: 255, # '\x99' + 154: 255, # '\x9a' + 155: 255, # '\x9b' + 156: 255, # '\x9c' + 157: 255, # '\x9d' + 158: 255, # '\x9e' + 159: 255, # '\x9f' + 160: 253, # '\xa0' + 161: 233, # '‘' + 162: 90, # '’' + 163: 253, # '£' + 164: 253, # '€' + 165: 253, # '₯' + 166: 253, # '¦' + 167: 253, # '§' + 168: 253, # '¨' + 169: 253, # '©' + 170: 253, # 'ͺ' + 171: 253, # '«' + 172: 253, # '¬' + 173: 74, # '\xad' + 174: 253, # None + 175: 253, # '―' + 176: 253, # '°' + 177: 253, # '±' + 178: 253, # '²' + 179: 253, # '³' + 180: 247, # '΄' + 181: 248, # '΅' + 182: 61, # 'Ά' + 183: 36, # '·' + 184: 46, # 'Έ' + 185: 71, # 'Ή' + 186: 73, # 'Ί' + 187: 253, # '»' + 188: 54, # 'Ό' + 189: 253, # '½' + 190: 108, # 'Ύ' + 191: 123, # 'Ώ' + 192: 110, # 'ΐ' + 193: 31, # 'Α' + 194: 51, # 'Β' + 195: 43, # 'Γ' + 196: 41, # 'Δ' + 197: 34, # 'Ε' + 198: 91, # 'Ζ' + 199: 40, # 'Η' + 200: 52, # 'Θ' + 201: 47, # 'Ι' + 202: 44, # 'Κ' + 203: 53, # 'Λ' + 204: 38, # 'Μ' + 205: 49, # 'Ν' + 206: 59, # 'Ξ' + 207: 39, # 'Ο' + 208: 35, # 'Π' + 209: 48, # 'Ρ' + 210: 250, # None + 211: 37, # 'Σ' + 212: 33, # 'Τ' + 213: 45, # 'Υ' + 214: 56, # 'Φ' + 215: 50, # 'Χ' + 216: 84, # 'Ψ' + 217: 57, # 'Ω' + 218: 120, # 'Ϊ' + 219: 121, # 'Ϋ' + 220: 17, # 'ά' + 221: 18, # 'έ' + 222: 22, # 'ή' + 223: 15, # 'ί' + 224: 124, # 'ΰ' + 225: 1, # 'α' + 226: 29, # 'β' + 227: 20, # 'γ' + 228: 21, # 'δ' + 229: 3, # 'ε' + 230: 32, # 'ζ' + 231: 13, # 'η' + 232: 25, # 'θ' + 233: 5, # 'ι' + 234: 11, # 'κ' + 235: 16, # 'λ' + 236: 10, # 'μ' + 237: 6, # 'ν' + 238: 30, # 'ξ' + 239: 4, # 'ο' + 240: 9, # 'π' + 241: 8, # 'ρ' + 242: 14, # 'ς' + 243: 7, # 'σ' + 244: 2, # 'τ' + 245: 12, # 'υ' + 246: 28, # 'φ' + 247: 23, # 'χ' + 248: 42, # 'ψ' + 249: 24, # 'ω' + 250: 64, # 'ϊ' + 251: 75, # 'ϋ' + 252: 19, # 'ό' + 253: 26, # 'ύ' + 254: 27, # 'ώ' + 255: 253, # None +} + +ISO_8859_7_GREEK_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-7", + language="Greek", + char_to_order_map=ISO_8859_7_GREEK_CHAR_TO_ORDER, + language_model=GREEK_LANG_MODEL, + typical_positive_ratio=0.982851, + keep_ascii_letters=False, + alphabet="ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py new file mode 100644 index 00000000..56d29758 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py @@ -0,0 +1,4380 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +HEBREW_LANG_MODEL = { + 50: { # 'a' + 50: 0, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 2, # 'l' + 54: 2, # 'n' + 49: 0, # 'o' + 51: 2, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 0, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 60: { # 'c' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 61: { # 'd' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 0, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 42: { # 'e' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 2, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 2, # 'l' + 54: 2, # 'n' + 49: 1, # 'o' + 51: 2, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 1, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 53: { # 'i' + 50: 1, # 'a' + 60: 2, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 0, # 'i' + 56: 1, # 'l' + 54: 2, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 56: { # 'l' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 2, # 'e' + 53: 2, # 'i' + 56: 2, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 54: { # 'n' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 49: { # 'o' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 2, # 'n' + 49: 1, # 'o' + 51: 2, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 51: { # 'r' + 50: 2, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 2, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 43: { # 's' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 2, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 2, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 44: { # 't' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 2, # 'e' + 53: 2, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 63: { # 'u' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 34: { # '\xa0' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 1, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 2, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 55: { # '´' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 2, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 1, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 48: { # '¼' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 39: { # '½' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 57: { # '¾' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 30: { # 'ְ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 2, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 0, # 'ף' + 18: 2, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 59: { # 'ֱ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 1, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 41: { # 'ֲ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 33: { # 'ִ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 2, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 37: { # 'ֵ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 1, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 36: { # 'ֶ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 1, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 2, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 31: { # 'ַ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 29: { # 'ָ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 2, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 35: { # 'ֹ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 62: { # 'ֻ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 1, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 28: { # 'ּ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 3, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 3, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 3, # 'ַ' + 29: 3, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 2, # 'ׁ' + 45: 1, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 2, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 2, # 'מ' + 23: 1, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 38: { # 'ׁ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 2, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 45: { # 'ׂ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 2, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 9: { # 'א' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 2, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 8: { # 'ב' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 1, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 20: { # 'ג' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 2, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 16: { # 'ד' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 3: { # 'ה' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 3, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 0, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 2: { # 'ו' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 3, # 'ֹ' + 62: 0, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 24: { # 'ז' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 1, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 1, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 14: { # 'ח' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 1, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 22: { # 'ט' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 1, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 2, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 1: { # 'י' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 25: { # 'ך' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 15: { # 'כ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 4: { # 'ל' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 3, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 11: { # 'ם' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 6: { # 'מ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 0, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 23: { # 'ן' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 12: { # 'נ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 19: { # 'ס' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 2, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 1, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 13: { # 'ע' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 1, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 26: { # 'ף' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 18: { # 'פ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 2, # 'ב' + 20: 3, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 27: { # 'ץ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 21: { # 'צ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 1, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 0, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 17: { # 'ק' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 7: { # 'ר' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 2, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 10: { # 'ש' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 3, # 'ׁ' + 45: 2, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 5: { # 'ת' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 1, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 32: { # '–' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 52: { # '’' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 47: { # '“' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 46: { # '”' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 58: { # '†' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 2, # '†' + 40: 0, # '…' + }, + 40: { # '…' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1255_HEBREW_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 69, # 'A' + 66: 91, # 'B' + 67: 79, # 'C' + 68: 80, # 'D' + 69: 92, # 'E' + 70: 89, # 'F' + 71: 97, # 'G' + 72: 90, # 'H' + 73: 68, # 'I' + 74: 111, # 'J' + 75: 112, # 'K' + 76: 82, # 'L' + 77: 73, # 'M' + 78: 95, # 'N' + 79: 85, # 'O' + 80: 78, # 'P' + 81: 121, # 'Q' + 82: 86, # 'R' + 83: 71, # 'S' + 84: 67, # 'T' + 85: 102, # 'U' + 86: 107, # 'V' + 87: 84, # 'W' + 88: 114, # 'X' + 89: 103, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 50, # 'a' + 98: 74, # 'b' + 99: 60, # 'c' + 100: 61, # 'd' + 101: 42, # 'e' + 102: 76, # 'f' + 103: 70, # 'g' + 104: 64, # 'h' + 105: 53, # 'i' + 106: 105, # 'j' + 107: 93, # 'k' + 108: 56, # 'l' + 109: 65, # 'm' + 110: 54, # 'n' + 111: 49, # 'o' + 112: 66, # 'p' + 113: 110, # 'q' + 114: 51, # 'r' + 115: 43, # 's' + 116: 44, # 't' + 117: 63, # 'u' + 118: 81, # 'v' + 119: 77, # 'w' + 120: 98, # 'x' + 121: 75, # 'y' + 122: 108, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 124, # '€' + 129: 202, # None + 130: 203, # '‚' + 131: 204, # 'ƒ' + 132: 205, # '„' + 133: 40, # '…' + 134: 58, # '†' + 135: 206, # '‡' + 136: 207, # 'ˆ' + 137: 208, # '‰' + 138: 209, # None + 139: 210, # '‹' + 140: 211, # None + 141: 212, # None + 142: 213, # None + 143: 214, # None + 144: 215, # None + 145: 83, # '‘' + 146: 52, # '’' + 147: 47, # '“' + 148: 46, # '”' + 149: 72, # '•' + 150: 32, # '–' + 151: 94, # '—' + 152: 216, # '˜' + 153: 113, # '™' + 154: 217, # None + 155: 109, # '›' + 156: 218, # None + 157: 219, # None + 158: 220, # None + 159: 221, # None + 160: 34, # '\xa0' + 161: 116, # '¡' + 162: 222, # '¢' + 163: 118, # '£' + 164: 100, # '₪' + 165: 223, # '¥' + 166: 224, # '¦' + 167: 117, # '§' + 168: 119, # '¨' + 169: 104, # '©' + 170: 125, # '×' + 171: 225, # '«' + 172: 226, # '¬' + 173: 87, # '\xad' + 174: 99, # '®' + 175: 227, # '¯' + 176: 106, # '°' + 177: 122, # '±' + 178: 123, # '²' + 179: 228, # '³' + 180: 55, # '´' + 181: 229, # 'µ' + 182: 230, # '¶' + 183: 101, # '·' + 184: 231, # '¸' + 185: 232, # '¹' + 186: 120, # '÷' + 187: 233, # '»' + 188: 48, # '¼' + 189: 39, # '½' + 190: 57, # '¾' + 191: 234, # '¿' + 192: 30, # 'ְ' + 193: 59, # 'ֱ' + 194: 41, # 'ֲ' + 195: 88, # 'ֳ' + 196: 33, # 'ִ' + 197: 37, # 'ֵ' + 198: 36, # 'ֶ' + 199: 31, # 'ַ' + 200: 29, # 'ָ' + 201: 35, # 'ֹ' + 202: 235, # None + 203: 62, # 'ֻ' + 204: 28, # 'ּ' + 205: 236, # 'ֽ' + 206: 126, # '־' + 207: 237, # 'ֿ' + 208: 238, # '׀' + 209: 38, # 'ׁ' + 210: 45, # 'ׂ' + 211: 239, # '׃' + 212: 240, # 'װ' + 213: 241, # 'ױ' + 214: 242, # 'ײ' + 215: 243, # '׳' + 216: 127, # '״' + 217: 244, # None + 218: 245, # None + 219: 246, # None + 220: 247, # None + 221: 248, # None + 222: 249, # None + 223: 250, # None + 224: 9, # 'א' + 225: 8, # 'ב' + 226: 20, # 'ג' + 227: 16, # 'ד' + 228: 3, # 'ה' + 229: 2, # 'ו' + 230: 24, # 'ז' + 231: 14, # 'ח' + 232: 22, # 'ט' + 233: 1, # 'י' + 234: 25, # 'ך' + 235: 15, # 'כ' + 236: 4, # 'ל' + 237: 11, # 'ם' + 238: 6, # 'מ' + 239: 23, # 'ן' + 240: 12, # 'נ' + 241: 19, # 'ס' + 242: 13, # 'ע' + 243: 26, # 'ף' + 244: 18, # 'פ' + 245: 27, # 'ץ' + 246: 21, # 'צ' + 247: 17, # 'ק' + 248: 7, # 'ר' + 249: 10, # 'ש' + 250: 5, # 'ת' + 251: 251, # None + 252: 252, # None + 253: 128, # '\u200e' + 254: 96, # '\u200f' + 255: 253, # None +} + +WINDOWS_1255_HEBREW_MODEL = SingleByteCharSetModel( + charset_name="windows-1255", + language="Hebrew", + char_to_order_map=WINDOWS_1255_HEBREW_CHAR_TO_ORDER, + language_model=HEBREW_LANG_MODEL, + typical_positive_ratio=0.984004, + keep_ascii_letters=False, + alphabet="אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py new file mode 100644 index 00000000..09a0d326 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py @@ -0,0 +1,4649 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +HUNGARIAN_LANG_MODEL = { + 28: { # 'A' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 2, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 2, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 2, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 1, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 40: { # 'B' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 3, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 54: { # 'C' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 3, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 45: { # 'D' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 32: { # 'E' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 2, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 50: { # 'F' + 28: 1, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 0, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 49: { # 'G' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 2, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 38: { # 'H' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 0, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 1, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 2, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 39: { # 'I' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 2, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 53: { # 'J' + 28: 2, # 'A' + 40: 0, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 0, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 36: { # 'K' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 2, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 41: { # 'L' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 34: { # 'M' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 3, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 1, # 'ű' + }, + 35: { # 'N' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 2, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 2, # 'Y' + 52: 1, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 47: { # 'O' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 2, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 46: { # 'P' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 3, # 'á' + 15: 2, # 'é' + 30: 0, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 43: { # 'R' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 2, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 2, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 33: { # 'S' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 3, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 1, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 37: { # 'T' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 57: { # 'U' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 48: { # 'V' + 28: 2, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 55: { # 'Y' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 2, # 'Z' + 2: 1, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 52: { # 'Z' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 1, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 2: { # 'a' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 18: { # 'b' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 26: { # 'c' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 1, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 2, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 2, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 17: { # 'd' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 2, # 'k' + 6: 1, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 1: { # 'e' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 2, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 27: { # 'f' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 3, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 3, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 12: { # 'g' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 20: { # 'h' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 9: { # 'i' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 3, # 'ó' + 24: 1, # 'ö' + 31: 2, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 1, # 'ű' + }, + 22: { # 'j' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 1, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 1, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 7: { # 'k' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 1, # 'ú' + 29: 3, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 6: { # 'l' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 3, # 'ő' + 56: 1, # 'ű' + }, + 13: { # 'm' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 1, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 3, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 2, # 'ű' + }, + 4: { # 'n' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 1, # 'x' + 16: 3, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 8: { # 'o' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 23: { # 'p' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 10: { # 'r' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 2, # 'ű' + }, + 5: { # 's' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 3: { # 't' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 1, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 3, # 'ő' + 56: 2, # 'ű' + }, + 21: { # 'u' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 2, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 1, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 1, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 19: { # 'v' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 2, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 62: { # 'x' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 16: { # 'y' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 2, # 'ű' + }, + 11: { # 'z' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 51: { # 'Á' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 44: { # 'É' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 61: { # 'Í' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 0, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 58: { # 'Ó' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 2, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 59: { # 'Ö' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 60: { # 'Ú' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 2, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 63: { # 'Ü' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 14: { # 'á' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 15: { # 'é' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 30: { # 'í' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 25: { # 'ó' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 1, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 24: { # 'ö' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 0, # 'a' + 18: 3, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 31: { # 'ú' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 3, # 'j' + 7: 1, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 29: { # 'ü' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 0, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 42: { # 'ő' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 56: { # 'ű' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 28, # 'A' + 66: 40, # 'B' + 67: 54, # 'C' + 68: 45, # 'D' + 69: 32, # 'E' + 70: 50, # 'F' + 71: 49, # 'G' + 72: 38, # 'H' + 73: 39, # 'I' + 74: 53, # 'J' + 75: 36, # 'K' + 76: 41, # 'L' + 77: 34, # 'M' + 78: 35, # 'N' + 79: 47, # 'O' + 80: 46, # 'P' + 81: 72, # 'Q' + 82: 43, # 'R' + 83: 33, # 'S' + 84: 37, # 'T' + 85: 57, # 'U' + 86: 48, # 'V' + 87: 64, # 'W' + 88: 68, # 'X' + 89: 55, # 'Y' + 90: 52, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 2, # 'a' + 98: 18, # 'b' + 99: 26, # 'c' + 100: 17, # 'd' + 101: 1, # 'e' + 102: 27, # 'f' + 103: 12, # 'g' + 104: 20, # 'h' + 105: 9, # 'i' + 106: 22, # 'j' + 107: 7, # 'k' + 108: 6, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 8, # 'o' + 112: 23, # 'p' + 113: 67, # 'q' + 114: 10, # 'r' + 115: 5, # 's' + 116: 3, # 't' + 117: 21, # 'u' + 118: 19, # 'v' + 119: 65, # 'w' + 120: 62, # 'x' + 121: 16, # 'y' + 122: 11, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 161, # '€' + 129: 162, # None + 130: 163, # '‚' + 131: 164, # None + 132: 165, # '„' + 133: 166, # '…' + 134: 167, # '†' + 135: 168, # '‡' + 136: 169, # None + 137: 170, # '‰' + 138: 171, # 'Š' + 139: 172, # '‹' + 140: 173, # 'Ś' + 141: 174, # 'Ť' + 142: 175, # 'Ž' + 143: 176, # 'Ź' + 144: 177, # None + 145: 178, # '‘' + 146: 179, # '’' + 147: 180, # '“' + 148: 78, # '”' + 149: 181, # '•' + 150: 69, # '–' + 151: 182, # '—' + 152: 183, # None + 153: 184, # '™' + 154: 185, # 'š' + 155: 186, # '›' + 156: 187, # 'ś' + 157: 188, # 'ť' + 158: 189, # 'ž' + 159: 190, # 'ź' + 160: 191, # '\xa0' + 161: 192, # 'ˇ' + 162: 193, # '˘' + 163: 194, # 'Ł' + 164: 195, # '¤' + 165: 196, # 'Ą' + 166: 197, # '¦' + 167: 76, # '§' + 168: 198, # '¨' + 169: 199, # '©' + 170: 200, # 'Ş' + 171: 201, # '«' + 172: 202, # '¬' + 173: 203, # '\xad' + 174: 204, # '®' + 175: 205, # 'Ż' + 176: 81, # '°' + 177: 206, # '±' + 178: 207, # '˛' + 179: 208, # 'ł' + 180: 209, # '´' + 181: 210, # 'µ' + 182: 211, # '¶' + 183: 212, # '·' + 184: 213, # '¸' + 185: 214, # 'ą' + 186: 215, # 'ş' + 187: 216, # '»' + 188: 217, # 'Ľ' + 189: 218, # '˝' + 190: 219, # 'ľ' + 191: 220, # 'ż' + 192: 221, # 'Ŕ' + 193: 51, # 'Á' + 194: 83, # 'Â' + 195: 222, # 'Ă' + 196: 80, # 'Ä' + 197: 223, # 'Ĺ' + 198: 224, # 'Ć' + 199: 225, # 'Ç' + 200: 226, # 'Č' + 201: 44, # 'É' + 202: 227, # 'Ę' + 203: 228, # 'Ë' + 204: 229, # 'Ě' + 205: 61, # 'Í' + 206: 230, # 'Î' + 207: 231, # 'Ď' + 208: 232, # 'Đ' + 209: 233, # 'Ń' + 210: 234, # 'Ň' + 211: 58, # 'Ó' + 212: 235, # 'Ô' + 213: 66, # 'Ő' + 214: 59, # 'Ö' + 215: 236, # '×' + 216: 237, # 'Ř' + 217: 238, # 'Ů' + 218: 60, # 'Ú' + 219: 70, # 'Ű' + 220: 63, # 'Ü' + 221: 239, # 'Ý' + 222: 240, # 'Ţ' + 223: 241, # 'ß' + 224: 84, # 'ŕ' + 225: 14, # 'á' + 226: 75, # 'â' + 227: 242, # 'ă' + 228: 71, # 'ä' + 229: 82, # 'ĺ' + 230: 243, # 'ć' + 231: 73, # 'ç' + 232: 244, # 'č' + 233: 15, # 'é' + 234: 85, # 'ę' + 235: 79, # 'ë' + 236: 86, # 'ě' + 237: 30, # 'í' + 238: 77, # 'î' + 239: 87, # 'ď' + 240: 245, # 'đ' + 241: 246, # 'ń' + 242: 247, # 'ň' + 243: 25, # 'ó' + 244: 74, # 'ô' + 245: 42, # 'ő' + 246: 24, # 'ö' + 247: 248, # '÷' + 248: 249, # 'ř' + 249: 250, # 'ů' + 250: 31, # 'ú' + 251: 56, # 'ű' + 252: 29, # 'ü' + 253: 251, # 'ý' + 254: 252, # 'ţ' + 255: 253, # '˙' +} + +WINDOWS_1250_HUNGARIAN_MODEL = SingleByteCharSetModel( + charset_name="windows-1250", + language="Hungarian", + char_to_order_map=WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER, + language_model=HUNGARIAN_LANG_MODEL, + typical_positive_ratio=0.947368, + keep_ascii_letters=True, + alphabet="ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű", +) + +ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 28, # 'A' + 66: 40, # 'B' + 67: 54, # 'C' + 68: 45, # 'D' + 69: 32, # 'E' + 70: 50, # 'F' + 71: 49, # 'G' + 72: 38, # 'H' + 73: 39, # 'I' + 74: 53, # 'J' + 75: 36, # 'K' + 76: 41, # 'L' + 77: 34, # 'M' + 78: 35, # 'N' + 79: 47, # 'O' + 80: 46, # 'P' + 81: 71, # 'Q' + 82: 43, # 'R' + 83: 33, # 'S' + 84: 37, # 'T' + 85: 57, # 'U' + 86: 48, # 'V' + 87: 64, # 'W' + 88: 68, # 'X' + 89: 55, # 'Y' + 90: 52, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 2, # 'a' + 98: 18, # 'b' + 99: 26, # 'c' + 100: 17, # 'd' + 101: 1, # 'e' + 102: 27, # 'f' + 103: 12, # 'g' + 104: 20, # 'h' + 105: 9, # 'i' + 106: 22, # 'j' + 107: 7, # 'k' + 108: 6, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 8, # 'o' + 112: 23, # 'p' + 113: 67, # 'q' + 114: 10, # 'r' + 115: 5, # 's' + 116: 3, # 't' + 117: 21, # 'u' + 118: 19, # 'v' + 119: 65, # 'w' + 120: 62, # 'x' + 121: 16, # 'y' + 122: 11, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 159, # '\x80' + 129: 160, # '\x81' + 130: 161, # '\x82' + 131: 162, # '\x83' + 132: 163, # '\x84' + 133: 164, # '\x85' + 134: 165, # '\x86' + 135: 166, # '\x87' + 136: 167, # '\x88' + 137: 168, # '\x89' + 138: 169, # '\x8a' + 139: 170, # '\x8b' + 140: 171, # '\x8c' + 141: 172, # '\x8d' + 142: 173, # '\x8e' + 143: 174, # '\x8f' + 144: 175, # '\x90' + 145: 176, # '\x91' + 146: 177, # '\x92' + 147: 178, # '\x93' + 148: 179, # '\x94' + 149: 180, # '\x95' + 150: 181, # '\x96' + 151: 182, # '\x97' + 152: 183, # '\x98' + 153: 184, # '\x99' + 154: 185, # '\x9a' + 155: 186, # '\x9b' + 156: 187, # '\x9c' + 157: 188, # '\x9d' + 158: 189, # '\x9e' + 159: 190, # '\x9f' + 160: 191, # '\xa0' + 161: 192, # 'Ą' + 162: 193, # '˘' + 163: 194, # 'Ł' + 164: 195, # '¤' + 165: 196, # 'Ľ' + 166: 197, # 'Ś' + 167: 75, # '§' + 168: 198, # '¨' + 169: 199, # 'Š' + 170: 200, # 'Ş' + 171: 201, # 'Ť' + 172: 202, # 'Ź' + 173: 203, # '\xad' + 174: 204, # 'Ž' + 175: 205, # 'Ż' + 176: 79, # '°' + 177: 206, # 'ą' + 178: 207, # '˛' + 179: 208, # 'ł' + 180: 209, # '´' + 181: 210, # 'ľ' + 182: 211, # 'ś' + 183: 212, # 'ˇ' + 184: 213, # '¸' + 185: 214, # 'š' + 186: 215, # 'ş' + 187: 216, # 'ť' + 188: 217, # 'ź' + 189: 218, # '˝' + 190: 219, # 'ž' + 191: 220, # 'ż' + 192: 221, # 'Ŕ' + 193: 51, # 'Á' + 194: 81, # 'Â' + 195: 222, # 'Ă' + 196: 78, # 'Ä' + 197: 223, # 'Ĺ' + 198: 224, # 'Ć' + 199: 225, # 'Ç' + 200: 226, # 'Č' + 201: 44, # 'É' + 202: 227, # 'Ę' + 203: 228, # 'Ë' + 204: 229, # 'Ě' + 205: 61, # 'Í' + 206: 230, # 'Î' + 207: 231, # 'Ď' + 208: 232, # 'Đ' + 209: 233, # 'Ń' + 210: 234, # 'Ň' + 211: 58, # 'Ó' + 212: 235, # 'Ô' + 213: 66, # 'Ő' + 214: 59, # 'Ö' + 215: 236, # '×' + 216: 237, # 'Ř' + 217: 238, # 'Ů' + 218: 60, # 'Ú' + 219: 69, # 'Ű' + 220: 63, # 'Ü' + 221: 239, # 'Ý' + 222: 240, # 'Ţ' + 223: 241, # 'ß' + 224: 82, # 'ŕ' + 225: 14, # 'á' + 226: 74, # 'â' + 227: 242, # 'ă' + 228: 70, # 'ä' + 229: 80, # 'ĺ' + 230: 243, # 'ć' + 231: 72, # 'ç' + 232: 244, # 'č' + 233: 15, # 'é' + 234: 83, # 'ę' + 235: 77, # 'ë' + 236: 84, # 'ě' + 237: 30, # 'í' + 238: 76, # 'î' + 239: 85, # 'ď' + 240: 245, # 'đ' + 241: 246, # 'ń' + 242: 247, # 'ň' + 243: 25, # 'ó' + 244: 73, # 'ô' + 245: 42, # 'ő' + 246: 24, # 'ö' + 247: 248, # '÷' + 248: 249, # 'ř' + 249: 250, # 'ů' + 250: 31, # 'ú' + 251: 56, # 'ű' + 252: 29, # 'ü' + 253: 251, # 'ý' + 254: 252, # 'ţ' + 255: 253, # '˙' +} + +ISO_8859_2_HUNGARIAN_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-2", + language="Hungarian", + char_to_order_map=ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER, + language_model=HUNGARIAN_LANG_MODEL, + typical_positive_ratio=0.947368, + keep_ascii_letters=True, + alphabet="ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py new file mode 100644 index 00000000..39a53889 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py @@ -0,0 +1,5725 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +RUSSIAN_LANG_MODEL = { + 37: { # 'А' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 44: { # 'Б' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 33: { # 'В' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 0, # 'ю' + 16: 1, # 'я' + }, + 46: { # 'Г' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 41: { # 'Д' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 3, # 'ж' + 20: 1, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 48: { # 'Е' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 2, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 1, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 56: { # 'Ж' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 1, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 2, # 'ю' + 16: 0, # 'я' + }, + 51: { # 'З' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 1, # 'я' + }, + 42: { # 'И' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 2, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 60: { # 'Й' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 36: { # 'К' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 49: { # 'Л' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 1, # 'я' + }, + 38: { # 'М' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 1, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 31: { # 'Н' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 2, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 34: { # 'О' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 2, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 2, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 35: { # 'П' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 1, # 'с' + 6: 1, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 2, # 'я' + }, + 45: { # 'Р' + 37: 2, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 2, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 32: { # 'С' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 2, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 40: { # 'Т' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 52: { # 'У' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 1, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 1, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 53: { # 'Ф' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 1, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 55: { # 'Х' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 58: { # 'Ц' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 50: { # 'Ч' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 57: { # 'Ш' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 63: { # 'Щ' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 62: { # 'Ы' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 61: { # 'Ь' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 47: { # 'Э' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 59: { # 'Ю' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 43: { # 'Я' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 1, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 3: { # 'а' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 21: { # 'б' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 10: { # 'в' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 19: { # 'г' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 13: { # 'д' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 3, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 2: { # 'е' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 24: { # 'ж' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 1, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 20: { # 'з' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 4: { # 'и' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 23: { # 'й' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 11: { # 'к' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 3, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 8: { # 'л' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 3, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 12: { # 'м' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 5: { # 'н' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 2, # 'щ' + 54: 1, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 1: { # 'о' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 15: { # 'п' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 9: { # 'р' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 7: { # 'с' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 6: { # 'т' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 2, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 14: { # 'у' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 2, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 2, # 'я' + }, + 39: { # 'ф' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 26: { # 'х' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 3, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 28: { # 'ц' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 1, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 22: { # 'ч' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 3, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 25: { # 'ш' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 29: { # 'щ' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 2, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 54: { # 'ъ' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 18: { # 'ы' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 1, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 2, # 'я' + }, + 17: { # 'ь' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 0, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 0, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 30: { # 'э' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 27: { # 'ю' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 1, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 1, # 'я' + }, + 16: { # 'я' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 2, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 2, # 'ю' + 16: 2, # 'я' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +IBM866_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 37, # 'А' + 129: 44, # 'Б' + 130: 33, # 'В' + 131: 46, # 'Г' + 132: 41, # 'Д' + 133: 48, # 'Е' + 134: 56, # 'Ж' + 135: 51, # 'З' + 136: 42, # 'И' + 137: 60, # 'Й' + 138: 36, # 'К' + 139: 49, # 'Л' + 140: 38, # 'М' + 141: 31, # 'Н' + 142: 34, # 'О' + 143: 35, # 'П' + 144: 45, # 'Р' + 145: 32, # 'С' + 146: 40, # 'Т' + 147: 52, # 'У' + 148: 53, # 'Ф' + 149: 55, # 'Х' + 150: 58, # 'Ц' + 151: 50, # 'Ч' + 152: 57, # 'Ш' + 153: 63, # 'Щ' + 154: 70, # 'Ъ' + 155: 62, # 'Ы' + 156: 61, # 'Ь' + 157: 47, # 'Э' + 158: 59, # 'Ю' + 159: 43, # 'Я' + 160: 3, # 'а' + 161: 21, # 'б' + 162: 10, # 'в' + 163: 19, # 'г' + 164: 13, # 'д' + 165: 2, # 'е' + 166: 24, # 'ж' + 167: 20, # 'з' + 168: 4, # 'и' + 169: 23, # 'й' + 170: 11, # 'к' + 171: 8, # 'л' + 172: 12, # 'м' + 173: 5, # 'н' + 174: 1, # 'о' + 175: 15, # 'п' + 176: 191, # '░' + 177: 192, # '▒' + 178: 193, # '▓' + 179: 194, # '│' + 180: 195, # '┤' + 181: 196, # '╡' + 182: 197, # '╢' + 183: 198, # '╖' + 184: 199, # '╕' + 185: 200, # '╣' + 186: 201, # '║' + 187: 202, # '╗' + 188: 203, # '╝' + 189: 204, # '╜' + 190: 205, # '╛' + 191: 206, # '┐' + 192: 207, # '└' + 193: 208, # '┴' + 194: 209, # '┬' + 195: 210, # '├' + 196: 211, # '─' + 197: 212, # '┼' + 198: 213, # '╞' + 199: 214, # '╟' + 200: 215, # '╚' + 201: 216, # '╔' + 202: 217, # '╩' + 203: 218, # '╦' + 204: 219, # '╠' + 205: 220, # '═' + 206: 221, # '╬' + 207: 222, # '╧' + 208: 223, # '╨' + 209: 224, # '╤' + 210: 225, # '╥' + 211: 226, # '╙' + 212: 227, # '╘' + 213: 228, # '╒' + 214: 229, # '╓' + 215: 230, # '╫' + 216: 231, # '╪' + 217: 232, # '┘' + 218: 233, # '┌' + 219: 234, # '█' + 220: 235, # '▄' + 221: 236, # '▌' + 222: 237, # '▐' + 223: 238, # '▀' + 224: 9, # 'р' + 225: 7, # 'с' + 226: 6, # 'т' + 227: 14, # 'у' + 228: 39, # 'ф' + 229: 26, # 'х' + 230: 28, # 'ц' + 231: 22, # 'ч' + 232: 25, # 'ш' + 233: 29, # 'щ' + 234: 54, # 'ъ' + 235: 18, # 'ы' + 236: 17, # 'ь' + 237: 30, # 'э' + 238: 27, # 'ю' + 239: 16, # 'я' + 240: 239, # 'Ё' + 241: 68, # 'ё' + 242: 240, # 'Є' + 243: 241, # 'є' + 244: 242, # 'Ї' + 245: 243, # 'ї' + 246: 244, # 'Ў' + 247: 245, # 'ў' + 248: 246, # '°' + 249: 247, # '∙' + 250: 248, # '·' + 251: 249, # '√' + 252: 250, # '№' + 253: 251, # '¤' + 254: 252, # '■' + 255: 255, # '\xa0' +} + +IBM866_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="IBM866", + language="Russian", + char_to_order_map=IBM866_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # 'Ђ' + 129: 192, # 'Ѓ' + 130: 193, # '‚' + 131: 194, # 'ѓ' + 132: 195, # '„' + 133: 196, # '…' + 134: 197, # '†' + 135: 198, # '‡' + 136: 199, # '€' + 137: 200, # '‰' + 138: 201, # 'Љ' + 139: 202, # '‹' + 140: 203, # 'Њ' + 141: 204, # 'Ќ' + 142: 205, # 'Ћ' + 143: 206, # 'Џ' + 144: 207, # 'ђ' + 145: 208, # '‘' + 146: 209, # '’' + 147: 210, # '“' + 148: 211, # '”' + 149: 212, # '•' + 150: 213, # '–' + 151: 214, # '—' + 152: 215, # None + 153: 216, # '™' + 154: 217, # 'љ' + 155: 218, # '›' + 156: 219, # 'њ' + 157: 220, # 'ќ' + 158: 221, # 'ћ' + 159: 222, # 'џ' + 160: 223, # '\xa0' + 161: 224, # 'Ў' + 162: 225, # 'ў' + 163: 226, # 'Ј' + 164: 227, # '¤' + 165: 228, # 'Ґ' + 166: 229, # '¦' + 167: 230, # '§' + 168: 231, # 'Ё' + 169: 232, # '©' + 170: 233, # 'Є' + 171: 234, # '«' + 172: 235, # '¬' + 173: 236, # '\xad' + 174: 237, # '®' + 175: 238, # 'Ї' + 176: 239, # '°' + 177: 240, # '±' + 178: 241, # 'І' + 179: 242, # 'і' + 180: 243, # 'ґ' + 181: 244, # 'µ' + 182: 245, # '¶' + 183: 246, # '·' + 184: 68, # 'ё' + 185: 247, # '№' + 186: 248, # 'є' + 187: 249, # '»' + 188: 250, # 'ј' + 189: 251, # 'Ѕ' + 190: 252, # 'ѕ' + 191: 253, # 'ї' + 192: 37, # 'А' + 193: 44, # 'Б' + 194: 33, # 'В' + 195: 46, # 'Г' + 196: 41, # 'Д' + 197: 48, # 'Е' + 198: 56, # 'Ж' + 199: 51, # 'З' + 200: 42, # 'И' + 201: 60, # 'Й' + 202: 36, # 'К' + 203: 49, # 'Л' + 204: 38, # 'М' + 205: 31, # 'Н' + 206: 34, # 'О' + 207: 35, # 'П' + 208: 45, # 'Р' + 209: 32, # 'С' + 210: 40, # 'Т' + 211: 52, # 'У' + 212: 53, # 'Ф' + 213: 55, # 'Х' + 214: 58, # 'Ц' + 215: 50, # 'Ч' + 216: 57, # 'Ш' + 217: 63, # 'Щ' + 218: 70, # 'Ъ' + 219: 62, # 'Ы' + 220: 61, # 'Ь' + 221: 47, # 'Э' + 222: 59, # 'Ю' + 223: 43, # 'Я' + 224: 3, # 'а' + 225: 21, # 'б' + 226: 10, # 'в' + 227: 19, # 'г' + 228: 13, # 'д' + 229: 2, # 'е' + 230: 24, # 'ж' + 231: 20, # 'з' + 232: 4, # 'и' + 233: 23, # 'й' + 234: 11, # 'к' + 235: 8, # 'л' + 236: 12, # 'м' + 237: 5, # 'н' + 238: 1, # 'о' + 239: 15, # 'п' + 240: 9, # 'р' + 241: 7, # 'с' + 242: 6, # 'т' + 243: 14, # 'у' + 244: 39, # 'ф' + 245: 26, # 'х' + 246: 28, # 'ц' + 247: 22, # 'ч' + 248: 25, # 'ш' + 249: 29, # 'щ' + 250: 54, # 'ъ' + 251: 18, # 'ы' + 252: 17, # 'ь' + 253: 30, # 'э' + 254: 27, # 'ю' + 255: 16, # 'я' +} + +WINDOWS_1251_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="windows-1251", + language="Russian", + char_to_order_map=WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +IBM855_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # 'ђ' + 129: 192, # 'Ђ' + 130: 193, # 'ѓ' + 131: 194, # 'Ѓ' + 132: 68, # 'ё' + 133: 195, # 'Ё' + 134: 196, # 'є' + 135: 197, # 'Є' + 136: 198, # 'ѕ' + 137: 199, # 'Ѕ' + 138: 200, # 'і' + 139: 201, # 'І' + 140: 202, # 'ї' + 141: 203, # 'Ї' + 142: 204, # 'ј' + 143: 205, # 'Ј' + 144: 206, # 'љ' + 145: 207, # 'Љ' + 146: 208, # 'њ' + 147: 209, # 'Њ' + 148: 210, # 'ћ' + 149: 211, # 'Ћ' + 150: 212, # 'ќ' + 151: 213, # 'Ќ' + 152: 214, # 'ў' + 153: 215, # 'Ў' + 154: 216, # 'џ' + 155: 217, # 'Џ' + 156: 27, # 'ю' + 157: 59, # 'Ю' + 158: 54, # 'ъ' + 159: 70, # 'Ъ' + 160: 3, # 'а' + 161: 37, # 'А' + 162: 21, # 'б' + 163: 44, # 'Б' + 164: 28, # 'ц' + 165: 58, # 'Ц' + 166: 13, # 'д' + 167: 41, # 'Д' + 168: 2, # 'е' + 169: 48, # 'Е' + 170: 39, # 'ф' + 171: 53, # 'Ф' + 172: 19, # 'г' + 173: 46, # 'Г' + 174: 218, # '«' + 175: 219, # '»' + 176: 220, # '░' + 177: 221, # '▒' + 178: 222, # '▓' + 179: 223, # '│' + 180: 224, # '┤' + 181: 26, # 'х' + 182: 55, # 'Х' + 183: 4, # 'и' + 184: 42, # 'И' + 185: 225, # '╣' + 186: 226, # '║' + 187: 227, # '╗' + 188: 228, # '╝' + 189: 23, # 'й' + 190: 60, # 'Й' + 191: 229, # '┐' + 192: 230, # '└' + 193: 231, # '┴' + 194: 232, # '┬' + 195: 233, # '├' + 196: 234, # '─' + 197: 235, # '┼' + 198: 11, # 'к' + 199: 36, # 'К' + 200: 236, # '╚' + 201: 237, # '╔' + 202: 238, # '╩' + 203: 239, # '╦' + 204: 240, # '╠' + 205: 241, # '═' + 206: 242, # '╬' + 207: 243, # '¤' + 208: 8, # 'л' + 209: 49, # 'Л' + 210: 12, # 'м' + 211: 38, # 'М' + 212: 5, # 'н' + 213: 31, # 'Н' + 214: 1, # 'о' + 215: 34, # 'О' + 216: 15, # 'п' + 217: 244, # '┘' + 218: 245, # '┌' + 219: 246, # '█' + 220: 247, # '▄' + 221: 35, # 'П' + 222: 16, # 'я' + 223: 248, # '▀' + 224: 43, # 'Я' + 225: 9, # 'р' + 226: 45, # 'Р' + 227: 7, # 'с' + 228: 32, # 'С' + 229: 6, # 'т' + 230: 40, # 'Т' + 231: 14, # 'у' + 232: 52, # 'У' + 233: 24, # 'ж' + 234: 56, # 'Ж' + 235: 10, # 'в' + 236: 33, # 'В' + 237: 17, # 'ь' + 238: 61, # 'Ь' + 239: 249, # '№' + 240: 250, # '\xad' + 241: 18, # 'ы' + 242: 62, # 'Ы' + 243: 20, # 'з' + 244: 51, # 'З' + 245: 25, # 'ш' + 246: 57, # 'Ш' + 247: 30, # 'э' + 248: 47, # 'Э' + 249: 29, # 'щ' + 250: 63, # 'Щ' + 251: 22, # 'ч' + 252: 50, # 'Ч' + 253: 251, # '§' + 254: 252, # '■' + 255: 255, # '\xa0' +} + +IBM855_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="IBM855", + language="Russian", + char_to_order_map=IBM855_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +KOI8_R_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # '─' + 129: 192, # '│' + 130: 193, # '┌' + 131: 194, # '┐' + 132: 195, # '└' + 133: 196, # '┘' + 134: 197, # '├' + 135: 198, # '┤' + 136: 199, # '┬' + 137: 200, # '┴' + 138: 201, # '┼' + 139: 202, # '▀' + 140: 203, # '▄' + 141: 204, # '█' + 142: 205, # '▌' + 143: 206, # '▐' + 144: 207, # '░' + 145: 208, # '▒' + 146: 209, # '▓' + 147: 210, # '⌠' + 148: 211, # '■' + 149: 212, # '∙' + 150: 213, # '√' + 151: 214, # '≈' + 152: 215, # '≤' + 153: 216, # '≥' + 154: 217, # '\xa0' + 155: 218, # '⌡' + 156: 219, # '°' + 157: 220, # '²' + 158: 221, # '·' + 159: 222, # '÷' + 160: 223, # '═' + 161: 224, # '║' + 162: 225, # '╒' + 163: 68, # 'ё' + 164: 226, # '╓' + 165: 227, # '╔' + 166: 228, # '╕' + 167: 229, # '╖' + 168: 230, # '╗' + 169: 231, # '╘' + 170: 232, # '╙' + 171: 233, # '╚' + 172: 234, # '╛' + 173: 235, # '╜' + 174: 236, # '╝' + 175: 237, # '╞' + 176: 238, # '╟' + 177: 239, # '╠' + 178: 240, # '╡' + 179: 241, # 'Ё' + 180: 242, # '╢' + 181: 243, # '╣' + 182: 244, # '╤' + 183: 245, # '╥' + 184: 246, # '╦' + 185: 247, # '╧' + 186: 248, # '╨' + 187: 249, # '╩' + 188: 250, # '╪' + 189: 251, # '╫' + 190: 252, # '╬' + 191: 253, # '©' + 192: 27, # 'ю' + 193: 3, # 'а' + 194: 21, # 'б' + 195: 28, # 'ц' + 196: 13, # 'д' + 197: 2, # 'е' + 198: 39, # 'ф' + 199: 19, # 'г' + 200: 26, # 'х' + 201: 4, # 'и' + 202: 23, # 'й' + 203: 11, # 'к' + 204: 8, # 'л' + 205: 12, # 'м' + 206: 5, # 'н' + 207: 1, # 'о' + 208: 15, # 'п' + 209: 16, # 'я' + 210: 9, # 'р' + 211: 7, # 'с' + 212: 6, # 'т' + 213: 14, # 'у' + 214: 24, # 'ж' + 215: 10, # 'в' + 216: 17, # 'ь' + 217: 18, # 'ы' + 218: 20, # 'з' + 219: 25, # 'ш' + 220: 30, # 'э' + 221: 29, # 'щ' + 222: 22, # 'ч' + 223: 54, # 'ъ' + 224: 59, # 'Ю' + 225: 37, # 'А' + 226: 44, # 'Б' + 227: 58, # 'Ц' + 228: 41, # 'Д' + 229: 48, # 'Е' + 230: 53, # 'Ф' + 231: 46, # 'Г' + 232: 55, # 'Х' + 233: 42, # 'И' + 234: 60, # 'Й' + 235: 36, # 'К' + 236: 49, # 'Л' + 237: 38, # 'М' + 238: 31, # 'Н' + 239: 34, # 'О' + 240: 35, # 'П' + 241: 43, # 'Я' + 242: 45, # 'Р' + 243: 32, # 'С' + 244: 40, # 'Т' + 245: 52, # 'У' + 246: 56, # 'Ж' + 247: 33, # 'В' + 248: 61, # 'Ь' + 249: 62, # 'Ы' + 250: 51, # 'З' + 251: 57, # 'Ш' + 252: 47, # 'Э' + 253: 63, # 'Щ' + 254: 50, # 'Ч' + 255: 70, # 'Ъ' +} + +KOI8_R_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="KOI8-R", + language="Russian", + char_to_order_map=KOI8_R_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 37, # 'А' + 129: 44, # 'Б' + 130: 33, # 'В' + 131: 46, # 'Г' + 132: 41, # 'Д' + 133: 48, # 'Е' + 134: 56, # 'Ж' + 135: 51, # 'З' + 136: 42, # 'И' + 137: 60, # 'Й' + 138: 36, # 'К' + 139: 49, # 'Л' + 140: 38, # 'М' + 141: 31, # 'Н' + 142: 34, # 'О' + 143: 35, # 'П' + 144: 45, # 'Р' + 145: 32, # 'С' + 146: 40, # 'Т' + 147: 52, # 'У' + 148: 53, # 'Ф' + 149: 55, # 'Х' + 150: 58, # 'Ц' + 151: 50, # 'Ч' + 152: 57, # 'Ш' + 153: 63, # 'Щ' + 154: 70, # 'Ъ' + 155: 62, # 'Ы' + 156: 61, # 'Ь' + 157: 47, # 'Э' + 158: 59, # 'Ю' + 159: 43, # 'Я' + 160: 191, # '†' + 161: 192, # '°' + 162: 193, # 'Ґ' + 163: 194, # '£' + 164: 195, # '§' + 165: 196, # '•' + 166: 197, # '¶' + 167: 198, # 'І' + 168: 199, # '®' + 169: 200, # '©' + 170: 201, # '™' + 171: 202, # 'Ђ' + 172: 203, # 'ђ' + 173: 204, # '≠' + 174: 205, # 'Ѓ' + 175: 206, # 'ѓ' + 176: 207, # '∞' + 177: 208, # '±' + 178: 209, # '≤' + 179: 210, # '≥' + 180: 211, # 'і' + 181: 212, # 'µ' + 182: 213, # 'ґ' + 183: 214, # 'Ј' + 184: 215, # 'Є' + 185: 216, # 'є' + 186: 217, # 'Ї' + 187: 218, # 'ї' + 188: 219, # 'Љ' + 189: 220, # 'љ' + 190: 221, # 'Њ' + 191: 222, # 'њ' + 192: 223, # 'ј' + 193: 224, # 'Ѕ' + 194: 225, # '¬' + 195: 226, # '√' + 196: 227, # 'ƒ' + 197: 228, # '≈' + 198: 229, # '∆' + 199: 230, # '«' + 200: 231, # '»' + 201: 232, # '…' + 202: 233, # '\xa0' + 203: 234, # 'Ћ' + 204: 235, # 'ћ' + 205: 236, # 'Ќ' + 206: 237, # 'ќ' + 207: 238, # 'ѕ' + 208: 239, # '–' + 209: 240, # '—' + 210: 241, # '“' + 211: 242, # '”' + 212: 243, # '‘' + 213: 244, # '’' + 214: 245, # '÷' + 215: 246, # '„' + 216: 247, # 'Ў' + 217: 248, # 'ў' + 218: 249, # 'Џ' + 219: 250, # 'џ' + 220: 251, # '№' + 221: 252, # 'Ё' + 222: 68, # 'ё' + 223: 16, # 'я' + 224: 3, # 'а' + 225: 21, # 'б' + 226: 10, # 'в' + 227: 19, # 'г' + 228: 13, # 'д' + 229: 2, # 'е' + 230: 24, # 'ж' + 231: 20, # 'з' + 232: 4, # 'и' + 233: 23, # 'й' + 234: 11, # 'к' + 235: 8, # 'л' + 236: 12, # 'м' + 237: 5, # 'н' + 238: 1, # 'о' + 239: 15, # 'п' + 240: 9, # 'р' + 241: 7, # 'с' + 242: 6, # 'т' + 243: 14, # 'у' + 244: 39, # 'ф' + 245: 26, # 'х' + 246: 28, # 'ц' + 247: 22, # 'ч' + 248: 25, # 'ш' + 249: 29, # 'щ' + 250: 54, # 'ъ' + 251: 18, # 'ы' + 252: 17, # 'ь' + 253: 30, # 'э' + 254: 27, # 'ю' + 255: 255, # '€' +} + +MACCYRILLIC_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="MacCyrillic", + language="Russian", + char_to_order_map=MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +ISO_8859_5_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # '\x80' + 129: 192, # '\x81' + 130: 193, # '\x82' + 131: 194, # '\x83' + 132: 195, # '\x84' + 133: 196, # '\x85' + 134: 197, # '\x86' + 135: 198, # '\x87' + 136: 199, # '\x88' + 137: 200, # '\x89' + 138: 201, # '\x8a' + 139: 202, # '\x8b' + 140: 203, # '\x8c' + 141: 204, # '\x8d' + 142: 205, # '\x8e' + 143: 206, # '\x8f' + 144: 207, # '\x90' + 145: 208, # '\x91' + 146: 209, # '\x92' + 147: 210, # '\x93' + 148: 211, # '\x94' + 149: 212, # '\x95' + 150: 213, # '\x96' + 151: 214, # '\x97' + 152: 215, # '\x98' + 153: 216, # '\x99' + 154: 217, # '\x9a' + 155: 218, # '\x9b' + 156: 219, # '\x9c' + 157: 220, # '\x9d' + 158: 221, # '\x9e' + 159: 222, # '\x9f' + 160: 223, # '\xa0' + 161: 224, # 'Ё' + 162: 225, # 'Ђ' + 163: 226, # 'Ѓ' + 164: 227, # 'Є' + 165: 228, # 'Ѕ' + 166: 229, # 'І' + 167: 230, # 'Ї' + 168: 231, # 'Ј' + 169: 232, # 'Љ' + 170: 233, # 'Њ' + 171: 234, # 'Ћ' + 172: 235, # 'Ќ' + 173: 236, # '\xad' + 174: 237, # 'Ў' + 175: 238, # 'Џ' + 176: 37, # 'А' + 177: 44, # 'Б' + 178: 33, # 'В' + 179: 46, # 'Г' + 180: 41, # 'Д' + 181: 48, # 'Е' + 182: 56, # 'Ж' + 183: 51, # 'З' + 184: 42, # 'И' + 185: 60, # 'Й' + 186: 36, # 'К' + 187: 49, # 'Л' + 188: 38, # 'М' + 189: 31, # 'Н' + 190: 34, # 'О' + 191: 35, # 'П' + 192: 45, # 'Р' + 193: 32, # 'С' + 194: 40, # 'Т' + 195: 52, # 'У' + 196: 53, # 'Ф' + 197: 55, # 'Х' + 198: 58, # 'Ц' + 199: 50, # 'Ч' + 200: 57, # 'Ш' + 201: 63, # 'Щ' + 202: 70, # 'Ъ' + 203: 62, # 'Ы' + 204: 61, # 'Ь' + 205: 47, # 'Э' + 206: 59, # 'Ю' + 207: 43, # 'Я' + 208: 3, # 'а' + 209: 21, # 'б' + 210: 10, # 'в' + 211: 19, # 'г' + 212: 13, # 'д' + 213: 2, # 'е' + 214: 24, # 'ж' + 215: 20, # 'з' + 216: 4, # 'и' + 217: 23, # 'й' + 218: 11, # 'к' + 219: 8, # 'л' + 220: 12, # 'м' + 221: 5, # 'н' + 222: 1, # 'о' + 223: 15, # 'п' + 224: 9, # 'р' + 225: 7, # 'с' + 226: 6, # 'т' + 227: 14, # 'у' + 228: 39, # 'ф' + 229: 26, # 'х' + 230: 28, # 'ц' + 231: 22, # 'ч' + 232: 25, # 'ш' + 233: 29, # 'щ' + 234: 54, # 'ъ' + 235: 18, # 'ы' + 236: 17, # 'ь' + 237: 30, # 'э' + 238: 27, # 'ю' + 239: 16, # 'я' + 240: 239, # '№' + 241: 68, # 'ё' + 242: 240, # 'ђ' + 243: 241, # 'ѓ' + 244: 242, # 'є' + 245: 243, # 'ѕ' + 246: 244, # 'і' + 247: 245, # 'ї' + 248: 246, # 'ј' + 249: 247, # 'љ' + 250: 248, # 'њ' + 251: 249, # 'ћ' + 252: 250, # 'ќ' + 253: 251, # '§' + 254: 252, # 'ў' + 255: 255, # 'џ' +} + +ISO_8859_5_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-5", + language="Russian", + char_to_order_map=ISO_8859_5_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py new file mode 100644 index 00000000..489cad93 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py @@ -0,0 +1,4380 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +THAI_LANG_MODEL = { + 5: { # 'ก' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 3, # 'ฎ' + 57: 2, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 2, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 2, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 3, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 1, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 30: { # 'ข' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 0, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 2, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 2, # 'ี' + 40: 3, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 24: { # 'ค' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 2, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 3, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 8: { # 'ง' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 1, # 'ฉ' + 34: 2, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 2, # 'ศ' + 46: 1, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 3, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 26: { # 'จ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 3, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 52: { # 'ฉ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 1, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 34: { # 'ช' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 1, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 51: { # 'ซ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 3, # 'ึ' + 27: 2, # 'ื' + 32: 1, # 'ุ' + 35: 1, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 1, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 47: { # 'ญ' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 3, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 2, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 58: { # 'ฎ' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 1, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 57: { # 'ฏ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 49: { # 'ฐ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 53: { # 'ฑ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 55: { # 'ฒ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 43: { # 'ณ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 3, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 3, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 3, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 20: { # 'ด' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 2, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 1, # 'ึ' + 27: 2, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 2, # 'ๆ' + 37: 2, # '็' + 6: 1, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 19: { # 'ต' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 2, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 2, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 1, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 2, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 44: { # 'ถ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 3, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 14: { # 'ท' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 3, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 3, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 1, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 3, # 'ศ' + 46: 1, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 48: { # 'ธ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 2, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 2, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 3: { # 'น' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 2, # 'ถ' + 14: 3, # 'ท' + 48: 3, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 1, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 3, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 3, # 'โ' + 29: 3, # 'ใ' + 33: 3, # 'ไ' + 50: 2, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 17: { # 'บ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 1, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 2, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 2, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 25: { # 'ป' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 1, # 'ฎ' + 57: 3, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 1, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 2, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 1, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 39: { # 'ผ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 1, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 0, # 'ุ' + 35: 3, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 1, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 62: { # 'ฝ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 1, # 'ี' + 40: 2, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 1, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 31: { # 'พ' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 2, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 1, # 'ึ' + 27: 3, # 'ื' + 32: 1, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 0, # '่' + 7: 1, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 54: { # 'ฟ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 45: { # 'ภ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 2, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 9: { # 'ม' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 2, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 1, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 2, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 16: { # 'ย' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 2, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 1, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 2, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 2: { # 'ร' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 2, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 3, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 3, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 3, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 2, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 2, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 3, # 'เ' + 28: 3, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 61: { # 'ฤ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 2, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 15: { # 'ล' + 5: 2, # 'ก' + 30: 3, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 3, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 2, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 2, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 12: { # 'ว' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 2, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 42: { # 'ศ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 2, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 3, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 2, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 46: { # 'ษ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 2, # 'ฎ' + 57: 1, # 'ฏ' + 49: 2, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 18: { # 'ส' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 3, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 2, # 'ภ' + 9: 3, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 0, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 1, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 21: { # 'ห' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 4: { # 'อ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 63: { # 'ฯ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 22: { # 'ะ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 1, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 10: { # 'ั' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 3, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 2, # 'ฐ' + 53: 0, # 'ฑ' + 55: 3, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 1: { # 'า' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 1, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 2, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 3, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 3, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 36: { # 'ำ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 23: { # 'ิ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 3, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 2, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 3, # 'ศ' + 46: 2, # 'ษ' + 18: 2, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 13: { # 'ี' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 40: { # 'ึ' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 3, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 27: { # 'ื' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 32: { # 'ุ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 3, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 1, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 1, # 'ศ' + 46: 2, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 35: { # 'ู' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 11: { # 'เ' + 5: 3, # 'ก' + 30: 3, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 3, # 'ฉ' + 34: 3, # 'ช' + 51: 2, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 3, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 3, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 28: { # 'แ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 3, # 'ต' + 44: 2, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 3, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 41: { # 'โ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 1, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 29: { # 'ใ' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 33: { # 'ไ' + 5: 1, # 'ก' + 30: 2, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 1, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 2, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 50: { # 'ๆ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 37: { # '็' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 6: { # '่' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 7: { # '้' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 38: { # '์' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 1, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 56: { # '๑' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 2, # '๑' + 59: 1, # '๒' + 60: 1, # '๕' + }, + 59: { # '๒' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 1, # '๑' + 59: 1, # '๒' + 60: 3, # '๕' + }, + 60: { # '๕' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 2, # '๑' + 59: 1, # '๒' + 60: 0, # '๕' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +TIS_620_THAI_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 182, # 'A' + 66: 106, # 'B' + 67: 107, # 'C' + 68: 100, # 'D' + 69: 183, # 'E' + 70: 184, # 'F' + 71: 185, # 'G' + 72: 101, # 'H' + 73: 94, # 'I' + 74: 186, # 'J' + 75: 187, # 'K' + 76: 108, # 'L' + 77: 109, # 'M' + 78: 110, # 'N' + 79: 111, # 'O' + 80: 188, # 'P' + 81: 189, # 'Q' + 82: 190, # 'R' + 83: 89, # 'S' + 84: 95, # 'T' + 85: 112, # 'U' + 86: 113, # 'V' + 87: 191, # 'W' + 88: 192, # 'X' + 89: 193, # 'Y' + 90: 194, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 64, # 'a' + 98: 72, # 'b' + 99: 73, # 'c' + 100: 114, # 'd' + 101: 74, # 'e' + 102: 115, # 'f' + 103: 116, # 'g' + 104: 102, # 'h' + 105: 81, # 'i' + 106: 201, # 'j' + 107: 117, # 'k' + 108: 90, # 'l' + 109: 103, # 'm' + 110: 78, # 'n' + 111: 82, # 'o' + 112: 96, # 'p' + 113: 202, # 'q' + 114: 91, # 'r' + 115: 79, # 's' + 116: 84, # 't' + 117: 104, # 'u' + 118: 105, # 'v' + 119: 97, # 'w' + 120: 98, # 'x' + 121: 92, # 'y' + 122: 203, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 209, # '\x80' + 129: 210, # '\x81' + 130: 211, # '\x82' + 131: 212, # '\x83' + 132: 213, # '\x84' + 133: 88, # '\x85' + 134: 214, # '\x86' + 135: 215, # '\x87' + 136: 216, # '\x88' + 137: 217, # '\x89' + 138: 218, # '\x8a' + 139: 219, # '\x8b' + 140: 220, # '\x8c' + 141: 118, # '\x8d' + 142: 221, # '\x8e' + 143: 222, # '\x8f' + 144: 223, # '\x90' + 145: 224, # '\x91' + 146: 99, # '\x92' + 147: 85, # '\x93' + 148: 83, # '\x94' + 149: 225, # '\x95' + 150: 226, # '\x96' + 151: 227, # '\x97' + 152: 228, # '\x98' + 153: 229, # '\x99' + 154: 230, # '\x9a' + 155: 231, # '\x9b' + 156: 232, # '\x9c' + 157: 233, # '\x9d' + 158: 234, # '\x9e' + 159: 235, # '\x9f' + 160: 236, # None + 161: 5, # 'ก' + 162: 30, # 'ข' + 163: 237, # 'ฃ' + 164: 24, # 'ค' + 165: 238, # 'ฅ' + 166: 75, # 'ฆ' + 167: 8, # 'ง' + 168: 26, # 'จ' + 169: 52, # 'ฉ' + 170: 34, # 'ช' + 171: 51, # 'ซ' + 172: 119, # 'ฌ' + 173: 47, # 'ญ' + 174: 58, # 'ฎ' + 175: 57, # 'ฏ' + 176: 49, # 'ฐ' + 177: 53, # 'ฑ' + 178: 55, # 'ฒ' + 179: 43, # 'ณ' + 180: 20, # 'ด' + 181: 19, # 'ต' + 182: 44, # 'ถ' + 183: 14, # 'ท' + 184: 48, # 'ธ' + 185: 3, # 'น' + 186: 17, # 'บ' + 187: 25, # 'ป' + 188: 39, # 'ผ' + 189: 62, # 'ฝ' + 190: 31, # 'พ' + 191: 54, # 'ฟ' + 192: 45, # 'ภ' + 193: 9, # 'ม' + 194: 16, # 'ย' + 195: 2, # 'ร' + 196: 61, # 'ฤ' + 197: 15, # 'ล' + 198: 239, # 'ฦ' + 199: 12, # 'ว' + 200: 42, # 'ศ' + 201: 46, # 'ษ' + 202: 18, # 'ส' + 203: 21, # 'ห' + 204: 76, # 'ฬ' + 205: 4, # 'อ' + 206: 66, # 'ฮ' + 207: 63, # 'ฯ' + 208: 22, # 'ะ' + 209: 10, # 'ั' + 210: 1, # 'า' + 211: 36, # 'ำ' + 212: 23, # 'ิ' + 213: 13, # 'ี' + 214: 40, # 'ึ' + 215: 27, # 'ื' + 216: 32, # 'ุ' + 217: 35, # 'ู' + 218: 86, # 'ฺ' + 219: 240, # None + 220: 241, # None + 221: 242, # None + 222: 243, # None + 223: 244, # '฿' + 224: 11, # 'เ' + 225: 28, # 'แ' + 226: 41, # 'โ' + 227: 29, # 'ใ' + 228: 33, # 'ไ' + 229: 245, # 'ๅ' + 230: 50, # 'ๆ' + 231: 37, # '็' + 232: 6, # '่' + 233: 7, # '้' + 234: 67, # '๊' + 235: 77, # '๋' + 236: 38, # '์' + 237: 93, # 'ํ' + 238: 246, # '๎' + 239: 247, # '๏' + 240: 68, # '๐' + 241: 56, # '๑' + 242: 59, # '๒' + 243: 65, # '๓' + 244: 69, # '๔' + 245: 60, # '๕' + 246: 70, # '๖' + 247: 80, # '๗' + 248: 71, # '๘' + 249: 87, # '๙' + 250: 248, # '๚' + 251: 249, # '๛' + 252: 250, # None + 253: 251, # None + 254: 252, # None + 255: 253, # None +} + +TIS_620_THAI_MODEL = SingleByteCharSetModel( + charset_name="TIS-620", + language="Thai", + char_to_order_map=TIS_620_THAI_CHAR_TO_ORDER, + language_model=THAI_LANG_MODEL, + typical_positive_ratio=0.926386, + keep_ascii_letters=False, + alphabet="กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py new file mode 100644 index 00000000..291857c2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py @@ -0,0 +1,4380 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +TURKISH_LANG_MODEL = { + 23: { # 'A' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 37: { # 'B' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 47: { # 'C' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 39: { # 'D' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 0, # 'ş' + }, + 29: { # 'E' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 52: { # 'F' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 1, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 2, # 'ş' + }, + 36: { # 'G' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 2, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 1, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 45: { # 'H' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 2, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 2, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 53: { # 'I' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 60: { # 'J' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 16: { # 'K' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 1, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 49: { # 'L' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 2, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 20: { # 'M' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 0, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 46: { # 'N' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 42: { # 'O' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 2, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 48: { # 'P' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 44: { # 'R' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 35: { # 'S' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 1, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 2, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 31: { # 'T' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 2, # 't' + 14: 2, # 'u' + 32: 1, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 51: { # 'U' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 38: { # 'V' + 23: 1, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 1, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 62: { # 'W' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 43: { # 'Y' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 0, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 1, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 56: { # 'Z' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 1: { # 'a' + 23: 3, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 1, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 21: { # 'b' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 3, # 'g' + 25: 1, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 2, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 28: { # 'c' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 2, # 'T' + 51: 2, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 3, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 1, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 1, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 2, # 'ş' + }, + 12: { # 'd' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 2: { # 'e' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 18: { # 'f' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 1, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 1, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 27: { # 'g' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 25: { # 'h' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 3: { # 'i' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 1, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 3, # 'g' + 25: 1, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 24: { # 'j' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 10: { # 'k' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 2, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 5: { # 'l' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 1, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 2, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 13: { # 'm' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 2, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 4: { # 'n' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 15: { # 'o' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 2, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 2, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 2, # 'ş' + }, + 26: { # 'p' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 7: { # 'r' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 1, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 8: { # 's' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 9: { # 't' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 14: { # 'u' + 23: 3, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 2, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 2, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 32: { # 'v' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 57: { # 'w' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 1, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 58: { # 'x' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 11: { # 'y' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 22: { # 'z' + 23: 2, # 'A' + 37: 2, # 'B' + 47: 1, # 'C' + 39: 2, # 'D' + 29: 3, # 'E' + 52: 1, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 2, # 'N' + 42: 2, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 3, # 'T' + 51: 2, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 1, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 2, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 1, # 'Ş' + 19: 2, # 'ş' + }, + 63: { # '·' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 54: { # 'Ç' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 3, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 50: { # 'Ö' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 2, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 1, # 'N' + 42: 2, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 1, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 1, # 's' + 9: 2, # 't' + 14: 0, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 55: { # 'Ü' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 59: { # 'â' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 0, # 'ş' + }, + 33: { # 'ç' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 0, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 61: { # 'î' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 1, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 34: { # 'ö' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 1, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 3, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 1, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 17: { # 'ü' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 30: { # 'ğ' + 23: 0, # 'A' + 37: 2, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 2, # 'N' + 42: 2, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 3, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 2, # 'İ' + 6: 2, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 41: { # 'İ' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 2, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 6: { # 'ı' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 40: { # 'Ş' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 2, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 0, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 3, # 'f' + 27: 0, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 1, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 1, # 'ü' + 30: 2, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 2, # 'ş' + }, + 19: { # 'ş' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 2, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 1, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +ISO_8859_9_TURKISH_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 255, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 255, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 255, # ' ' + 33: 255, # '!' + 34: 255, # '"' + 35: 255, # '#' + 36: 255, # '$' + 37: 255, # '%' + 38: 255, # '&' + 39: 255, # "'" + 40: 255, # '(' + 41: 255, # ')' + 42: 255, # '*' + 43: 255, # '+' + 44: 255, # ',' + 45: 255, # '-' + 46: 255, # '.' + 47: 255, # '/' + 48: 255, # '0' + 49: 255, # '1' + 50: 255, # '2' + 51: 255, # '3' + 52: 255, # '4' + 53: 255, # '5' + 54: 255, # '6' + 55: 255, # '7' + 56: 255, # '8' + 57: 255, # '9' + 58: 255, # ':' + 59: 255, # ';' + 60: 255, # '<' + 61: 255, # '=' + 62: 255, # '>' + 63: 255, # '?' + 64: 255, # '@' + 65: 23, # 'A' + 66: 37, # 'B' + 67: 47, # 'C' + 68: 39, # 'D' + 69: 29, # 'E' + 70: 52, # 'F' + 71: 36, # 'G' + 72: 45, # 'H' + 73: 53, # 'I' + 74: 60, # 'J' + 75: 16, # 'K' + 76: 49, # 'L' + 77: 20, # 'M' + 78: 46, # 'N' + 79: 42, # 'O' + 80: 48, # 'P' + 81: 69, # 'Q' + 82: 44, # 'R' + 83: 35, # 'S' + 84: 31, # 'T' + 85: 51, # 'U' + 86: 38, # 'V' + 87: 62, # 'W' + 88: 65, # 'X' + 89: 43, # 'Y' + 90: 56, # 'Z' + 91: 255, # '[' + 92: 255, # '\\' + 93: 255, # ']' + 94: 255, # '^' + 95: 255, # '_' + 96: 255, # '`' + 97: 1, # 'a' + 98: 21, # 'b' + 99: 28, # 'c' + 100: 12, # 'd' + 101: 2, # 'e' + 102: 18, # 'f' + 103: 27, # 'g' + 104: 25, # 'h' + 105: 3, # 'i' + 106: 24, # 'j' + 107: 10, # 'k' + 108: 5, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 15, # 'o' + 112: 26, # 'p' + 113: 64, # 'q' + 114: 7, # 'r' + 115: 8, # 's' + 116: 9, # 't' + 117: 14, # 'u' + 118: 32, # 'v' + 119: 57, # 'w' + 120: 58, # 'x' + 121: 11, # 'y' + 122: 22, # 'z' + 123: 255, # '{' + 124: 255, # '|' + 125: 255, # '}' + 126: 255, # '~' + 127: 255, # '\x7f' + 128: 180, # '\x80' + 129: 179, # '\x81' + 130: 178, # '\x82' + 131: 177, # '\x83' + 132: 176, # '\x84' + 133: 175, # '\x85' + 134: 174, # '\x86' + 135: 173, # '\x87' + 136: 172, # '\x88' + 137: 171, # '\x89' + 138: 170, # '\x8a' + 139: 169, # '\x8b' + 140: 168, # '\x8c' + 141: 167, # '\x8d' + 142: 166, # '\x8e' + 143: 165, # '\x8f' + 144: 164, # '\x90' + 145: 163, # '\x91' + 146: 162, # '\x92' + 147: 161, # '\x93' + 148: 160, # '\x94' + 149: 159, # '\x95' + 150: 101, # '\x96' + 151: 158, # '\x97' + 152: 157, # '\x98' + 153: 156, # '\x99' + 154: 155, # '\x9a' + 155: 154, # '\x9b' + 156: 153, # '\x9c' + 157: 152, # '\x9d' + 158: 151, # '\x9e' + 159: 106, # '\x9f' + 160: 150, # '\xa0' + 161: 149, # '¡' + 162: 148, # '¢' + 163: 147, # '£' + 164: 146, # '¤' + 165: 145, # '¥' + 166: 144, # '¦' + 167: 100, # '§' + 168: 143, # '¨' + 169: 142, # '©' + 170: 141, # 'ª' + 171: 140, # '«' + 172: 139, # '¬' + 173: 138, # '\xad' + 174: 137, # '®' + 175: 136, # '¯' + 176: 94, # '°' + 177: 80, # '±' + 178: 93, # '²' + 179: 135, # '³' + 180: 105, # '´' + 181: 134, # 'µ' + 182: 133, # '¶' + 183: 63, # '·' + 184: 132, # '¸' + 185: 131, # '¹' + 186: 130, # 'º' + 187: 129, # '»' + 188: 128, # '¼' + 189: 127, # '½' + 190: 126, # '¾' + 191: 125, # '¿' + 192: 124, # 'À' + 193: 104, # 'Á' + 194: 73, # 'Â' + 195: 99, # 'Ã' + 196: 79, # 'Ä' + 197: 85, # 'Å' + 198: 123, # 'Æ' + 199: 54, # 'Ç' + 200: 122, # 'È' + 201: 98, # 'É' + 202: 92, # 'Ê' + 203: 121, # 'Ë' + 204: 120, # 'Ì' + 205: 91, # 'Í' + 206: 103, # 'Î' + 207: 119, # 'Ï' + 208: 68, # 'Ğ' + 209: 118, # 'Ñ' + 210: 117, # 'Ò' + 211: 97, # 'Ó' + 212: 116, # 'Ô' + 213: 115, # 'Õ' + 214: 50, # 'Ö' + 215: 90, # '×' + 216: 114, # 'Ø' + 217: 113, # 'Ù' + 218: 112, # 'Ú' + 219: 111, # 'Û' + 220: 55, # 'Ü' + 221: 41, # 'İ' + 222: 40, # 'Ş' + 223: 86, # 'ß' + 224: 89, # 'à' + 225: 70, # 'á' + 226: 59, # 'â' + 227: 78, # 'ã' + 228: 71, # 'ä' + 229: 82, # 'å' + 230: 88, # 'æ' + 231: 33, # 'ç' + 232: 77, # 'è' + 233: 66, # 'é' + 234: 84, # 'ê' + 235: 83, # 'ë' + 236: 110, # 'ì' + 237: 75, # 'í' + 238: 61, # 'î' + 239: 96, # 'ï' + 240: 30, # 'ğ' + 241: 67, # 'ñ' + 242: 109, # 'ò' + 243: 74, # 'ó' + 244: 87, # 'ô' + 245: 102, # 'õ' + 246: 34, # 'ö' + 247: 95, # '÷' + 248: 81, # 'ø' + 249: 108, # 'ù' + 250: 76, # 'ú' + 251: 72, # 'û' + 252: 17, # 'ü' + 253: 6, # 'ı' + 254: 19, # 'ş' + 255: 107, # 'ÿ' +} + +ISO_8859_9_TURKISH_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-9", + language="Turkish", + char_to_order_map=ISO_8859_9_TURKISH_CHAR_TO_ORDER, + language_model=TURKISH_LANG_MODEL, + typical_positive_ratio=0.97029, + keep_ascii_letters=True, + alphabet="ABCDEFGHIJKLMNOPRSTUVYZabcdefghijklmnoprstuvyzÂÇÎÖÛÜâçîöûüĞğİıŞş", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py new file mode 100644 index 00000000..59a01d91 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py @@ -0,0 +1,147 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState + +FREQ_CAT_NUM = 4 + +UDF = 0 # undefined +OTH = 1 # other +ASC = 2 # ascii capital letter +ASS = 3 # ascii small letter +ACV = 4 # accent capital vowel +ACO = 5 # accent capital other +ASV = 6 # accent small vowel +ASO = 7 # accent small other +CLASS_NUM = 8 # total classes + +# fmt: off +Latin1_CharToClass = ( + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F + OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 + ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F + OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 + ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F + OTH, UDF, OTH, ASO, OTH, OTH, OTH, OTH, # 80 - 87 + OTH, OTH, ACO, OTH, ACO, UDF, ACO, UDF, # 88 - 8F + UDF, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 90 - 97 + OTH, OTH, ASO, OTH, ASO, UDF, ASO, ACO, # 98 - 9F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A0 - A7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A8 - AF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B8 - BF + ACV, ACV, ACV, ACV, ACV, ACV, ACO, ACO, # C0 - C7 + ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # C8 - CF + ACO, ACO, ACV, ACV, ACV, ACV, ACV, OTH, # D0 - D7 + ACV, ACV, ACV, ACV, ACV, ACO, ACO, ACO, # D8 - DF + ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASO, # E0 - E7 + ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # E8 - EF + ASO, ASO, ASV, ASV, ASV, ASV, ASV, OTH, # F0 - F7 + ASV, ASV, ASV, ASV, ASV, ASO, ASO, ASO, # F8 - FF +) + +# 0 : illegal +# 1 : very unlikely +# 2 : normal +# 3 : very likely +Latin1ClassModel = ( +# UDF OTH ASC ASS ACV ACO ASV ASO + 0, 0, 0, 0, 0, 0, 0, 0, # UDF + 0, 3, 3, 3, 3, 3, 3, 3, # OTH + 0, 3, 3, 3, 3, 3, 3, 3, # ASC + 0, 3, 3, 3, 1, 1, 3, 3, # ASS + 0, 3, 3, 3, 1, 2, 1, 2, # ACV + 0, 3, 3, 3, 3, 3, 3, 3, # ACO + 0, 3, 1, 3, 1, 1, 1, 3, # ASV + 0, 3, 1, 3, 1, 1, 3, 3, # ASO +) +# fmt: on + + +class Latin1Prober(CharSetProber): + def __init__(self) -> None: + super().__init__() + self._last_char_class = OTH + self._freq_counter: List[int] = [] + self.reset() + + def reset(self) -> None: + self._last_char_class = OTH + self._freq_counter = [0] * FREQ_CAT_NUM + super().reset() + + @property + def charset_name(self) -> str: + return "ISO-8859-1" + + @property + def language(self) -> str: + return "" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + byte_str = self.remove_xml_tags(byte_str) + for c in byte_str: + char_class = Latin1_CharToClass[c] + freq = Latin1ClassModel[(self._last_char_class * CLASS_NUM) + char_class] + if freq == 0: + self._state = ProbingState.NOT_ME + break + self._freq_counter[freq] += 1 + self._last_char_class = char_class + + return self.state + + def get_confidence(self) -> float: + if self.state == ProbingState.NOT_ME: + return 0.01 + + total = sum(self._freq_counter) + confidence = ( + 0.0 + if total < 0.01 + else (self._freq_counter[3] - self._freq_counter[1] * 20.0) / total + ) + confidence = max(confidence, 0.0) + # lower the confidence of latin1 so that other more accurate + # detector can take priority. + confidence *= 0.73 + return confidence diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py new file mode 100644 index 00000000..1425d10e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py @@ -0,0 +1,162 @@ +######################## BEGIN LICENSE BLOCK ######################## +# This code was modified from latin1prober.py by Rob Speer . +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Rob Speer - adapt to MacRoman encoding +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState + +FREQ_CAT_NUM = 4 + +UDF = 0 # undefined +OTH = 1 # other +ASC = 2 # ascii capital letter +ASS = 3 # ascii small letter +ACV = 4 # accent capital vowel +ACO = 5 # accent capital other +ASV = 6 # accent small vowel +ASO = 7 # accent small other +ODD = 8 # character that is unlikely to appear +CLASS_NUM = 9 # total classes + +# The change from Latin1 is that we explicitly look for extended characters +# that are infrequently-occurring symbols, and consider them to always be +# improbable. This should let MacRoman get out of the way of more likely +# encodings in most situations. + +# fmt: off +MacRoman_CharToClass = ( + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F + OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 + ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F + OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 + ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F + ACV, ACV, ACO, ACV, ACO, ACV, ACV, ASV, # 80 - 87 + ASV, ASV, ASV, ASV, ASV, ASO, ASV, ASV, # 88 - 8F + ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASV, # 90 - 97 + ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # 98 - 9F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, ASO, # A0 - A7 + OTH, OTH, ODD, ODD, OTH, OTH, ACV, ACV, # A8 - AF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 + OTH, OTH, OTH, OTH, OTH, OTH, ASV, ASV, # B8 - BF + OTH, OTH, ODD, OTH, ODD, OTH, OTH, OTH, # C0 - C7 + OTH, OTH, OTH, ACV, ACV, ACV, ACV, ASV, # C8 - CF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, ODD, # D0 - D7 + ASV, ACV, ODD, OTH, OTH, OTH, OTH, OTH, # D8 - DF + OTH, OTH, OTH, OTH, OTH, ACV, ACV, ACV, # E0 - E7 + ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # E8 - EF + ODD, ACV, ACV, ACV, ACV, ASV, ODD, ODD, # F0 - F7 + ODD, ODD, ODD, ODD, ODD, ODD, ODD, ODD, # F8 - FF +) + +# 0 : illegal +# 1 : very unlikely +# 2 : normal +# 3 : very likely +MacRomanClassModel = ( +# UDF OTH ASC ASS ACV ACO ASV ASO ODD + 0, 0, 0, 0, 0, 0, 0, 0, 0, # UDF + 0, 3, 3, 3, 3, 3, 3, 3, 1, # OTH + 0, 3, 3, 3, 3, 3, 3, 3, 1, # ASC + 0, 3, 3, 3, 1, 1, 3, 3, 1, # ASS + 0, 3, 3, 3, 1, 2, 1, 2, 1, # ACV + 0, 3, 3, 3, 3, 3, 3, 3, 1, # ACO + 0, 3, 1, 3, 1, 1, 1, 3, 1, # ASV + 0, 3, 1, 3, 1, 1, 3, 3, 1, # ASO + 0, 1, 1, 1, 1, 1, 1, 1, 1, # ODD +) +# fmt: on + + +class MacRomanProber(CharSetProber): + def __init__(self) -> None: + super().__init__() + self._last_char_class = OTH + self._freq_counter: List[int] = [] + self.reset() + + def reset(self) -> None: + self._last_char_class = OTH + self._freq_counter = [0] * FREQ_CAT_NUM + + # express the prior that MacRoman is a somewhat rare encoding; + # this can be done by starting out in a slightly improbable state + # that must be overcome + self._freq_counter[2] = 10 + + super().reset() + + @property + def charset_name(self) -> str: + return "MacRoman" + + @property + def language(self) -> str: + return "" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + byte_str = self.remove_xml_tags(byte_str) + for c in byte_str: + char_class = MacRoman_CharToClass[c] + freq = MacRomanClassModel[(self._last_char_class * CLASS_NUM) + char_class] + if freq == 0: + self._state = ProbingState.NOT_ME + break + self._freq_counter[freq] += 1 + self._last_char_class = char_class + + return self.state + + def get_confidence(self) -> float: + if self.state == ProbingState.NOT_ME: + return 0.01 + + total = sum(self._freq_counter) + confidence = ( + 0.0 + if total < 0.01 + else (self._freq_counter[3] - self._freq_counter[1] * 20.0) / total + ) + confidence = max(confidence, 0.0) + # lower the confidence of MacRoman so that other more accurate + # detector can take priority. + confidence *= 0.73 + return confidence diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py new file mode 100644 index 00000000..666307e8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py @@ -0,0 +1,95 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Optional, Union + +from .chardistribution import CharDistributionAnalysis +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import LanguageFilter, MachineState, ProbingState + + +class MultiByteCharSetProber(CharSetProber): + """ + MultiByteCharSetProber + """ + + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self.distribution_analyzer: Optional[CharDistributionAnalysis] = None + self.coding_sm: Optional[CodingStateMachine] = None + self._last_char = bytearray(b"\0\0") + + def reset(self) -> None: + super().reset() + if self.coding_sm: + self.coding_sm.reset() + if self.distribution_analyzer: + self.distribution_analyzer.reset() + self._last_char = bytearray(b"\0\0") + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + assert self.coding_sm is not None + assert self.distribution_analyzer is not None + + for i, byte in enumerate(byte_str): + coding_state = self.coding_sm.next_state(byte) + if coding_state == MachineState.ERROR: + self.logger.debug( + "%s %s prober hit error at byte %s", + self.charset_name, + self.language, + i, + ) + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if self.distribution_analyzer.got_enough_data() and ( + self.get_confidence() > self.SHORTCUT_THRESHOLD + ): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + assert self.distribution_analyzer is not None + return self.distribution_analyzer.get_confidence() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py new file mode 100644 index 00000000..6cb9cc7b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py @@ -0,0 +1,57 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .big5prober import Big5Prober +from .charsetgroupprober import CharSetGroupProber +from .cp949prober import CP949Prober +from .enums import LanguageFilter +from .eucjpprober import EUCJPProber +from .euckrprober import EUCKRProber +from .euctwprober import EUCTWProber +from .gb2312prober import GB2312Prober +from .johabprober import JOHABProber +from .sjisprober import SJISProber +from .utf8prober import UTF8Prober + + +class MBCSGroupProber(CharSetGroupProber): + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self.probers = [ + UTF8Prober(), + SJISProber(), + EUCJPProber(), + GB2312Prober(), + EUCKRProber(), + CP949Prober(), + Big5Prober(), + EUCTWProber(), + JOHABProber(), + ] + self.reset() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py new file mode 100644 index 00000000..7bbe97e6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py @@ -0,0 +1,661 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .codingstatemachinedict import CodingStateMachineDict +from .enums import MachineState + +# BIG5 + +# fmt: off +BIG5_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 #allow 0x00 as legal value + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 1, # 78 - 7f + 4, 4, 4, 4, 4, 4, 4, 4, # 80 - 87 + 4, 4, 4, 4, 4, 4, 4, 4, # 88 - 8f + 4, 4, 4, 4, 4, 4, 4, 4, # 90 - 97 + 4, 4, 4, 4, 4, 4, 4, 4, # 98 - 9f + 4, 3, 3, 3, 3, 3, 3, 3, # a0 - a7 + 3, 3, 3, 3, 3, 3, 3, 3, # a8 - af + 3, 3, 3, 3, 3, 3, 3, 3, # b0 - b7 + 3, 3, 3, 3, 3, 3, 3, 3, # b8 - bf + 3, 3, 3, 3, 3, 3, 3, 3, # c0 - c7 + 3, 3, 3, 3, 3, 3, 3, 3, # c8 - cf + 3, 3, 3, 3, 3, 3, 3, 3, # d0 - d7 + 3, 3, 3, 3, 3, 3, 3, 3, # d8 - df + 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 + 3, 3, 3, 3, 3, 3, 3, 3, # e8 - ef + 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 + 3, 3, 3, 3, 3, 3, 3, 0 # f8 - ff +) + +BIG5_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,#08-0f + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START#10-17 +) +# fmt: on + +BIG5_CHAR_LEN_TABLE = (0, 1, 1, 2, 0) + +BIG5_SM_MODEL: CodingStateMachineDict = { + "class_table": BIG5_CLS, + "class_factor": 5, + "state_table": BIG5_ST, + "char_len_table": BIG5_CHAR_LEN_TABLE, + "name": "Big5", +} + +# CP949 +# fmt: off +CP949_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, # 00 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, # 10 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 3f + 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, # 40 - 4f + 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, # 50 - 5f + 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, # 60 - 6f + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, # 70 - 7f + 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, # 80 - 8f + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, # 90 - 9f + 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, # a0 - af + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, # b0 - bf + 7, 7, 7, 7, 7, 7, 9, 2, 2, 3, 2, 2, 2, 2, 2, 2, # c0 - cf + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, # d0 - df + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, # e0 - ef + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, # f0 - ff +) + +CP949_ST = ( +#cls= 0 1 2 3 4 5 6 7 8 9 # previous state = + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START, 4, 5,MachineState.ERROR, 6, # MachineState.START + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, # MachineState.ERROR + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME, # MachineState.ITS_ME + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 3 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 4 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 5 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 6 +) +# fmt: on + +CP949_CHAR_LEN_TABLE = (0, 1, 2, 0, 1, 1, 2, 2, 0, 2) + +CP949_SM_MODEL: CodingStateMachineDict = { + "class_table": CP949_CLS, + "class_factor": 10, + "state_table": CP949_ST, + "char_len_table": CP949_CHAR_LEN_TABLE, + "name": "CP949", +} + +# EUC-JP +# fmt: off +EUCJP_CLS = ( + 4, 4, 4, 4, 4, 4, 4, 4, # 00 - 07 + 4, 4, 4, 4, 4, 4, 5, 5, # 08 - 0f + 4, 4, 4, 4, 4, 4, 4, 4, # 10 - 17 + 4, 4, 4, 5, 4, 4, 4, 4, # 18 - 1f + 4, 4, 4, 4, 4, 4, 4, 4, # 20 - 27 + 4, 4, 4, 4, 4, 4, 4, 4, # 28 - 2f + 4, 4, 4, 4, 4, 4, 4, 4, # 30 - 37 + 4, 4, 4, 4, 4, 4, 4, 4, # 38 - 3f + 4, 4, 4, 4, 4, 4, 4, 4, # 40 - 47 + 4, 4, 4, 4, 4, 4, 4, 4, # 48 - 4f + 4, 4, 4, 4, 4, 4, 4, 4, # 50 - 57 + 4, 4, 4, 4, 4, 4, 4, 4, # 58 - 5f + 4, 4, 4, 4, 4, 4, 4, 4, # 60 - 67 + 4, 4, 4, 4, 4, 4, 4, 4, # 68 - 6f + 4, 4, 4, 4, 4, 4, 4, 4, # 70 - 77 + 4, 4, 4, 4, 4, 4, 4, 4, # 78 - 7f + 5, 5, 5, 5, 5, 5, 5, 5, # 80 - 87 + 5, 5, 5, 5, 5, 5, 1, 3, # 88 - 8f + 5, 5, 5, 5, 5, 5, 5, 5, # 90 - 97 + 5, 5, 5, 5, 5, 5, 5, 5, # 98 - 9f + 5, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 + 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef + 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 + 0, 0, 0, 0, 0, 0, 0, 5 # f8 - ff +) + +EUCJP_ST = ( + 3, 4, 3, 5,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 3,MachineState.ERROR,#18-1f + 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START#20-27 +) +# fmt: on + +EUCJP_CHAR_LEN_TABLE = (2, 2, 2, 3, 1, 0) + +EUCJP_SM_MODEL: CodingStateMachineDict = { + "class_table": EUCJP_CLS, + "class_factor": 6, + "state_table": EUCJP_ST, + "char_len_table": EUCJP_CHAR_LEN_TABLE, + "name": "EUC-JP", +} + +# EUC-KR +# fmt: off +EUCKR_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 1, 1, 1, 1, 1, 1, 1, 1, # 40 - 47 + 1, 1, 1, 1, 1, 1, 1, 1, # 48 - 4f + 1, 1, 1, 1, 1, 1, 1, 1, # 50 - 57 + 1, 1, 1, 1, 1, 1, 1, 1, # 58 - 5f + 1, 1, 1, 1, 1, 1, 1, 1, # 60 - 67 + 1, 1, 1, 1, 1, 1, 1, 1, # 68 - 6f + 1, 1, 1, 1, 1, 1, 1, 1, # 70 - 77 + 1, 1, 1, 1, 1, 1, 1, 1, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 3, 3, 3, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 3, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 0 # f8 - ff +) + +EUCKR_ST = ( + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #08-0f +) +# fmt: on + +EUCKR_CHAR_LEN_TABLE = (0, 1, 2, 0) + +EUCKR_SM_MODEL: CodingStateMachineDict = { + "class_table": EUCKR_CLS, + "class_factor": 4, + "state_table": EUCKR_ST, + "char_len_table": EUCKR_CHAR_LEN_TABLE, + "name": "EUC-KR", +} + +# JOHAB +# fmt: off +JOHAB_CLS = ( + 4,4,4,4,4,4,4,4, # 00 - 07 + 4,4,4,4,4,4,0,0, # 08 - 0f + 4,4,4,4,4,4,4,4, # 10 - 17 + 4,4,4,0,4,4,4,4, # 18 - 1f + 4,4,4,4,4,4,4,4, # 20 - 27 + 4,4,4,4,4,4,4,4, # 28 - 2f + 4,3,3,3,3,3,3,3, # 30 - 37 + 3,3,3,3,3,3,3,3, # 38 - 3f + 3,1,1,1,1,1,1,1, # 40 - 47 + 1,1,1,1,1,1,1,1, # 48 - 4f + 1,1,1,1,1,1,1,1, # 50 - 57 + 1,1,1,1,1,1,1,1, # 58 - 5f + 1,1,1,1,1,1,1,1, # 60 - 67 + 1,1,1,1,1,1,1,1, # 68 - 6f + 1,1,1,1,1,1,1,1, # 70 - 77 + 1,1,1,1,1,1,1,2, # 78 - 7f + 6,6,6,6,8,8,8,8, # 80 - 87 + 8,8,8,8,8,8,8,8, # 88 - 8f + 8,7,7,7,7,7,7,7, # 90 - 97 + 7,7,7,7,7,7,7,7, # 98 - 9f + 7,7,7,7,7,7,7,7, # a0 - a7 + 7,7,7,7,7,7,7,7, # a8 - af + 7,7,7,7,7,7,7,7, # b0 - b7 + 7,7,7,7,7,7,7,7, # b8 - bf + 7,7,7,7,7,7,7,7, # c0 - c7 + 7,7,7,7,7,7,7,7, # c8 - cf + 7,7,7,7,5,5,5,5, # d0 - d7 + 5,9,9,9,9,9,9,5, # d8 - df + 9,9,9,9,9,9,9,9, # e0 - e7 + 9,9,9,9,9,9,9,9, # e8 - ef + 9,9,9,9,9,9,9,9, # f0 - f7 + 9,9,5,5,5,5,5,0 # f8 - ff +) + +JOHAB_ST = ( +# cls = 0 1 2 3 4 5 6 7 8 9 + MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.ERROR ,MachineState.ERROR ,3 ,3 ,4 , # MachineState.START + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME, # MachineState.ITS_ME + MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR , # MachineState.ERROR + MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.ERROR ,MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START , # 3 + MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START , # 4 +) +# fmt: on + +JOHAB_CHAR_LEN_TABLE = (0, 1, 1, 1, 1, 0, 0, 2, 2, 2) + +JOHAB_SM_MODEL: CodingStateMachineDict = { + "class_table": JOHAB_CLS, + "class_factor": 10, + "state_table": JOHAB_ST, + "char_len_table": JOHAB_CHAR_LEN_TABLE, + "name": "Johab", +} + +# EUC-TW +# fmt: off +EUCTW_CLS = ( + 2, 2, 2, 2, 2, 2, 2, 2, # 00 - 07 + 2, 2, 2, 2, 2, 2, 0, 0, # 08 - 0f + 2, 2, 2, 2, 2, 2, 2, 2, # 10 - 17 + 2, 2, 2, 0, 2, 2, 2, 2, # 18 - 1f + 2, 2, 2, 2, 2, 2, 2, 2, # 20 - 27 + 2, 2, 2, 2, 2, 2, 2, 2, # 28 - 2f + 2, 2, 2, 2, 2, 2, 2, 2, # 30 - 37 + 2, 2, 2, 2, 2, 2, 2, 2, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 2, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 6, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 3, 4, 4, 4, 4, 4, 4, # a0 - a7 + 5, 5, 1, 1, 1, 1, 1, 1, # a8 - af + 1, 1, 1, 1, 1, 1, 1, 1, # b0 - b7 + 1, 1, 1, 1, 1, 1, 1, 1, # b8 - bf + 1, 1, 3, 1, 3, 3, 3, 3, # c0 - c7 + 3, 3, 3, 3, 3, 3, 3, 3, # c8 - cf + 3, 3, 3, 3, 3, 3, 3, 3, # d0 - d7 + 3, 3, 3, 3, 3, 3, 3, 3, # d8 - df + 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 + 3, 3, 3, 3, 3, 3, 3, 3, # e8 - ef + 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 + 3, 3, 3, 3, 3, 3, 3, 0 # f8 - ff +) + +EUCTW_ST = ( + MachineState.ERROR,MachineState.ERROR,MachineState.START, 3, 3, 3, 4,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,MachineState.ERROR,#10-17 + MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,#20-27 + MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) +# fmt: on + +EUCTW_CHAR_LEN_TABLE = (0, 0, 1, 2, 2, 2, 3) + +EUCTW_SM_MODEL: CodingStateMachineDict = { + "class_table": EUCTW_CLS, + "class_factor": 7, + "state_table": EUCTW_ST, + "char_len_table": EUCTW_CHAR_LEN_TABLE, + "name": "x-euc-tw", +} + +# GB2312 +# fmt: off +GB2312_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 3, 3, 3, 3, 3, 3, 3, 3, # 30 - 37 + 3, 3, 1, 1, 1, 1, 1, 1, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 4, # 78 - 7f + 5, 6, 6, 6, 6, 6, 6, 6, # 80 - 87 + 6, 6, 6, 6, 6, 6, 6, 6, # 88 - 8f + 6, 6, 6, 6, 6, 6, 6, 6, # 90 - 97 + 6, 6, 6, 6, 6, 6, 6, 6, # 98 - 9f + 6, 6, 6, 6, 6, 6, 6, 6, # a0 - a7 + 6, 6, 6, 6, 6, 6, 6, 6, # a8 - af + 6, 6, 6, 6, 6, 6, 6, 6, # b0 - b7 + 6, 6, 6, 6, 6, 6, 6, 6, # b8 - bf + 6, 6, 6, 6, 6, 6, 6, 6, # c0 - c7 + 6, 6, 6, 6, 6, 6, 6, 6, # c8 - cf + 6, 6, 6, 6, 6, 6, 6, 6, # d0 - d7 + 6, 6, 6, 6, 6, 6, 6, 6, # d8 - df + 6, 6, 6, 6, 6, 6, 6, 6, # e0 - e7 + 6, 6, 6, 6, 6, 6, 6, 6, # e8 - ef + 6, 6, 6, 6, 6, 6, 6, 6, # f0 - f7 + 6, 6, 6, 6, 6, 6, 6, 0 # f8 - ff +) + +GB2312_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, 3,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,#10-17 + 4,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ERROR,MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#20-27 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) +# fmt: on + +# To be accurate, the length of class 6 can be either 2 or 4. +# But it is not necessary to discriminate between the two since +# it is used for frequency analysis only, and we are validating +# each code range there as well. So it is safe to set it to be +# 2 here. +GB2312_CHAR_LEN_TABLE = (0, 1, 1, 1, 1, 1, 2) + +GB2312_SM_MODEL: CodingStateMachineDict = { + "class_table": GB2312_CLS, + "class_factor": 7, + "state_table": GB2312_ST, + "char_len_table": GB2312_CHAR_LEN_TABLE, + "name": "GB2312", +} + +# Shift_JIS +# fmt: off +SJIS_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 1, # 78 - 7f + 3, 3, 3, 3, 3, 2, 2, 3, # 80 - 87 + 3, 3, 3, 3, 3, 3, 3, 3, # 88 - 8f + 3, 3, 3, 3, 3, 3, 3, 3, # 90 - 97 + 3, 3, 3, 3, 3, 3, 3, 3, # 98 - 9f + #0xa0 is illegal in sjis encoding, but some pages does + #contain such byte. We need to be more error forgiven. + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 + 3, 3, 3, 3, 3, 4, 4, 4, # e8 - ef + 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 + 3, 3, 3, 3, 3, 0, 0, 0, # f8 - ff +) + +SJIS_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START #10-17 +) +# fmt: on + +SJIS_CHAR_LEN_TABLE = (0, 1, 1, 2, 0, 0) + +SJIS_SM_MODEL: CodingStateMachineDict = { + "class_table": SJIS_CLS, + "class_factor": 6, + "state_table": SJIS_ST, + "char_len_table": SJIS_CHAR_LEN_TABLE, + "name": "Shift_JIS", +} + +# UCS2-BE +# fmt: off +UCS2BE_CLS = ( + 0, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 1, 0, 0, 2, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 3, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 3, 3, 3, 3, 3, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 0, 0, 0, 0, 0, 0, 0, # a0 - a7 + 0, 0, 0, 0, 0, 0, 0, 0, # a8 - af + 0, 0, 0, 0, 0, 0, 0, 0, # b0 - b7 + 0, 0, 0, 0, 0, 0, 0, 0, # b8 - bf + 0, 0, 0, 0, 0, 0, 0, 0, # c0 - c7 + 0, 0, 0, 0, 0, 0, 0, 0, # c8 - cf + 0, 0, 0, 0, 0, 0, 0, 0, # d0 - d7 + 0, 0, 0, 0, 0, 0, 0, 0, # d8 - df + 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 + 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef + 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 + 0, 0, 0, 0, 0, 0, 4, 5 # f8 - ff +) + +UCS2BE_ST = ( + 5, 7, 7,MachineState.ERROR, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,#10-17 + 6, 6, 6, 6, 6,MachineState.ITS_ME, 6, 6,#18-1f + 6, 6, 6, 6, 5, 7, 7,MachineState.ERROR,#20-27 + 5, 8, 6, 6,MachineState.ERROR, 6, 6, 6,#28-2f + 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) +# fmt: on + +UCS2BE_CHAR_LEN_TABLE = (2, 2, 2, 0, 2, 2) + +UCS2BE_SM_MODEL: CodingStateMachineDict = { + "class_table": UCS2BE_CLS, + "class_factor": 6, + "state_table": UCS2BE_ST, + "char_len_table": UCS2BE_CHAR_LEN_TABLE, + "name": "UTF-16BE", +} + +# UCS2-LE +# fmt: off +UCS2LE_CLS = ( + 0, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 1, 0, 0, 2, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 3, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 3, 3, 3, 3, 3, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 0, 0, 0, 0, 0, 0, 0, # a0 - a7 + 0, 0, 0, 0, 0, 0, 0, 0, # a8 - af + 0, 0, 0, 0, 0, 0, 0, 0, # b0 - b7 + 0, 0, 0, 0, 0, 0, 0, 0, # b8 - bf + 0, 0, 0, 0, 0, 0, 0, 0, # c0 - c7 + 0, 0, 0, 0, 0, 0, 0, 0, # c8 - cf + 0, 0, 0, 0, 0, 0, 0, 0, # d0 - d7 + 0, 0, 0, 0, 0, 0, 0, 0, # d8 - df + 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 + 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef + 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 + 0, 0, 0, 0, 0, 0, 4, 5 # f8 - ff +) + +UCS2LE_ST = ( + 6, 6, 7, 6, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 5, 5, 5,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#10-17 + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR, 6, 6,#18-1f + 7, 6, 8, 8, 5, 5, 5,MachineState.ERROR,#20-27 + 5, 5, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5,#28-2f + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) +# fmt: on + +UCS2LE_CHAR_LEN_TABLE = (2, 2, 2, 2, 2, 2) + +UCS2LE_SM_MODEL: CodingStateMachineDict = { + "class_table": UCS2LE_CLS, + "class_factor": 6, + "state_table": UCS2LE_ST, + "char_len_table": UCS2LE_CHAR_LEN_TABLE, + "name": "UTF-16LE", +} + +# UTF-8 +# fmt: off +UTF8_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 #allow 0x00 as a legal value + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 1, 1, 1, 1, 1, 1, 1, 1, # 40 - 47 + 1, 1, 1, 1, 1, 1, 1, 1, # 48 - 4f + 1, 1, 1, 1, 1, 1, 1, 1, # 50 - 57 + 1, 1, 1, 1, 1, 1, 1, 1, # 58 - 5f + 1, 1, 1, 1, 1, 1, 1, 1, # 60 - 67 + 1, 1, 1, 1, 1, 1, 1, 1, # 68 - 6f + 1, 1, 1, 1, 1, 1, 1, 1, # 70 - 77 + 1, 1, 1, 1, 1, 1, 1, 1, # 78 - 7f + 2, 2, 2, 2, 3, 3, 3, 3, # 80 - 87 + 4, 4, 4, 4, 4, 4, 4, 4, # 88 - 8f + 4, 4, 4, 4, 4, 4, 4, 4, # 90 - 97 + 4, 4, 4, 4, 4, 4, 4, 4, # 98 - 9f + 5, 5, 5, 5, 5, 5, 5, 5, # a0 - a7 + 5, 5, 5, 5, 5, 5, 5, 5, # a8 - af + 5, 5, 5, 5, 5, 5, 5, 5, # b0 - b7 + 5, 5, 5, 5, 5, 5, 5, 5, # b8 - bf + 0, 0, 6, 6, 6, 6, 6, 6, # c0 - c7 + 6, 6, 6, 6, 6, 6, 6, 6, # c8 - cf + 6, 6, 6, 6, 6, 6, 6, 6, # d0 - d7 + 6, 6, 6, 6, 6, 6, 6, 6, # d8 - df + 7, 8, 8, 8, 8, 8, 8, 8, # e0 - e7 + 8, 8, 8, 8, 8, 9, 8, 8, # e8 - ef + 10, 11, 11, 11, 11, 11, 11, 11, # f0 - f7 + 12, 13, 13, 13, 14, 15, 0, 0 # f8 - ff +) + +UTF8_ST = ( + MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12, 10,#00-07 + 9, 11, 8, 7, 6, 5, 4, 3,#08-0f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#20-27 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#28-2f + MachineState.ERROR,MachineState.ERROR, 5, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#30-37 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#38-3f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#40-47 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#48-4f + MachineState.ERROR,MachineState.ERROR, 7, 7, 7, 7,MachineState.ERROR,MachineState.ERROR,#50-57 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#58-5f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 7, 7,MachineState.ERROR,MachineState.ERROR,#60-67 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#68-6f + MachineState.ERROR,MachineState.ERROR, 9, 9, 9, 9,MachineState.ERROR,MachineState.ERROR,#70-77 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#78-7f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 9,MachineState.ERROR,MachineState.ERROR,#80-87 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#88-8f + MachineState.ERROR,MachineState.ERROR, 12, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,#90-97 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#98-9f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12,MachineState.ERROR,MachineState.ERROR,#a0-a7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#a8-af + MachineState.ERROR,MachineState.ERROR, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b0-b7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b8-bf + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,#c0-c7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR #c8-cf +) +# fmt: on + +UTF8_CHAR_LEN_TABLE = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) + +UTF8_SM_MODEL: CodingStateMachineDict = { + "class_table": UTF8_CLS, + "class_factor": 16, + "state_table": UTF8_ST, + "char_len_table": UTF8_CHAR_LEN_TABLE, + "name": "UTF-8", +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf5cd785ea0714a8bbfb83c4737e5a582eab8f30 GIT binary patch literal 252 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 m8aQ)ab@$-g)VL{1#uPQ None: + super().__init__() + self.name = name + self.iso_code = iso_code + self.use_ascii = use_ascii + self.charsets = charsets + if self.use_ascii: + if alphabet: + alphabet += ascii_letters + else: + alphabet = ascii_letters + elif not alphabet: + raise ValueError("Must supply alphabet if use_ascii is False") + self.alphabet = "".join(sorted(set(alphabet))) if alphabet else None + self.wiki_start_pages = wiki_start_pages + + def __repr__(self) -> str: + param_str = ", ".join( + f"{k}={v!r}" for k, v in self.__dict__.items() if not k.startswith("_") + ) + return f"{self.__class__.__name__}({param_str})" + + +LANGUAGES = { + "Arabic": Language( + name="Arabic", + iso_code="ar", + use_ascii=False, + # We only support encodings that use isolated + # forms, because the current recommendation is + # that the rendering system handles presentation + # forms. This means we purposefully skip IBM864. + charsets=["ISO-8859-6", "WINDOWS-1256", "CP720", "CP864"], + alphabet="ءآأؤإئابةتثجحخدذرزسشصضطظعغػؼؽؾؿـفقكلمنهوىيًٌٍَُِّ", + wiki_start_pages=["الصفحة_الرئيسية"], + ), + "Belarusian": Language( + name="Belarusian", + iso_code="be", + use_ascii=False, + charsets=["ISO-8859-5", "WINDOWS-1251", "IBM866", "MacCyrillic"], + alphabet="АБВГДЕЁЖЗІЙКЛМНОПРСТУЎФХЦЧШЫЬЭЮЯабвгдеёжзійклмнопрстуўфхцчшыьэюяʼ", + wiki_start_pages=["Галоўная_старонка"], + ), + "Bulgarian": Language( + name="Bulgarian", + iso_code="bg", + use_ascii=False, + charsets=["ISO-8859-5", "WINDOWS-1251", "IBM855"], + alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", + wiki_start_pages=["Начална_страница"], + ), + "Czech": Language( + name="Czech", + iso_code="cz", + use_ascii=True, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="áčďéěíňóřšťúůýžÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ", + wiki_start_pages=["Hlavní_strana"], + ), + "Danish": Language( + name="Danish", + iso_code="da", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="æøåÆØÅ", + wiki_start_pages=["Forside"], + ), + "German": Language( + name="German", + iso_code="de", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="äöüßẞÄÖÜ", + wiki_start_pages=["Wikipedia:Hauptseite"], + ), + "Greek": Language( + name="Greek", + iso_code="el", + use_ascii=False, + charsets=["ISO-8859-7", "WINDOWS-1253"], + alphabet="αβγδεζηθικλμνξοπρσςτυφχψωάέήίόύώΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΣΤΥΦΧΨΩΆΈΉΊΌΎΏ", + wiki_start_pages=["Πύλη:Κύρια"], + ), + "English": Language( + name="English", + iso_code="en", + use_ascii=True, + charsets=["ISO-8859-1", "WINDOWS-1252", "MacRoman"], + wiki_start_pages=["Main_Page"], + ), + "Esperanto": Language( + name="Esperanto", + iso_code="eo", + # Q, W, X, and Y not used at all + use_ascii=False, + charsets=["ISO-8859-3"], + alphabet="abcĉdefgĝhĥijĵklmnoprsŝtuŭvzABCĈDEFGĜHĤIJĴKLMNOPRSŜTUŬVZ", + wiki_start_pages=["Vikipedio:Ĉefpaĝo"], + ), + "Spanish": Language( + name="Spanish", + iso_code="es", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ñáéíóúüÑÁÉÍÓÚÜ", + wiki_start_pages=["Wikipedia:Portada"], + ), + "Estonian": Language( + name="Estonian", + iso_code="et", + use_ascii=False, + charsets=["ISO-8859-4", "ISO-8859-13", "WINDOWS-1257"], + # C, F, Š, Q, W, X, Y, Z, Ž are only for + # loanwords + alphabet="ABDEGHIJKLMNOPRSTUVÕÄÖÜabdeghijklmnoprstuvõäöü", + wiki_start_pages=["Esileht"], + ), + "Finnish": Language( + name="Finnish", + iso_code="fi", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ÅÄÖŠŽåäöšž", + wiki_start_pages=["Wikipedia:Etusivu"], + ), + "French": Language( + name="French", + iso_code="fr", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="œàâçèéîïùûêŒÀÂÇÈÉÎÏÙÛÊ", + wiki_start_pages=["Wikipédia:Accueil_principal", "Bœuf (animal)"], + ), + "Hebrew": Language( + name="Hebrew", + iso_code="he", + use_ascii=False, + charsets=["ISO-8859-8", "WINDOWS-1255"], + alphabet="אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ", + wiki_start_pages=["עמוד_ראשי"], + ), + "Croatian": Language( + name="Croatian", + iso_code="hr", + # Q, W, X, Y are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="abcčćdđefghijklmnoprsštuvzžABCČĆDĐEFGHIJKLMNOPRSŠTUVZŽ", + wiki_start_pages=["Glavna_stranica"], + ), + "Hungarian": Language( + name="Hungarian", + iso_code="hu", + # Q, W, X, Y are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="abcdefghijklmnoprstuvzáéíóöőúüűABCDEFGHIJKLMNOPRSTUVZÁÉÍÓÖŐÚÜŰ", + wiki_start_pages=["Kezdőlap"], + ), + "Italian": Language( + name="Italian", + iso_code="it", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ÀÈÉÌÒÓÙàèéìòóù", + wiki_start_pages=["Pagina_principale"], + ), + "Lithuanian": Language( + name="Lithuanian", + iso_code="lt", + use_ascii=False, + charsets=["ISO-8859-13", "WINDOWS-1257", "ISO-8859-4"], + # Q, W, and X not used at all + alphabet="AĄBCČDEĘĖFGHIĮYJKLMNOPRSŠTUŲŪVZŽaąbcčdeęėfghiįyjklmnoprsštuųūvzž", + wiki_start_pages=["Pagrindinis_puslapis"], + ), + "Latvian": Language( + name="Latvian", + iso_code="lv", + use_ascii=False, + charsets=["ISO-8859-13", "WINDOWS-1257", "ISO-8859-4"], + # Q, W, X, Y are only for loanwords + alphabet="AĀBCČDEĒFGĢHIĪJKĶLĻMNŅOPRSŠTUŪVZŽaābcčdeēfgģhiījkķlļmnņoprsštuūvzž", + wiki_start_pages=["Sākumlapa"], + ), + "Macedonian": Language( + name="Macedonian", + iso_code="mk", + use_ascii=False, + charsets=["ISO-8859-5", "WINDOWS-1251", "MacCyrillic", "IBM855"], + alphabet="АБВГДЃЕЖЗЅИЈКЛЉМНЊОПРСТЌУФХЦЧЏШабвгдѓежзѕијклљмнњопрстќуфхцчџш", + wiki_start_pages=["Главна_страница"], + ), + "Dutch": Language( + name="Dutch", + iso_code="nl", + use_ascii=True, + charsets=["ISO-8859-1", "WINDOWS-1252", "MacRoman"], + wiki_start_pages=["Hoofdpagina"], + ), + "Polish": Language( + name="Polish", + iso_code="pl", + # Q and X are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="AĄBCĆDEĘFGHIJKLŁMNŃOÓPRSŚTUWYZŹŻaąbcćdeęfghijklłmnńoóprsśtuwyzźż", + wiki_start_pages=["Wikipedia:Strona_główna"], + ), + "Portuguese": Language( + name="Portuguese", + iso_code="pt", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ÁÂÃÀÇÉÊÍÓÔÕÚáâãàçéêíóôõú", + wiki_start_pages=["Wikipédia:Página_principal"], + ), + "Romanian": Language( + name="Romanian", + iso_code="ro", + use_ascii=True, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="ăâîșțĂÂÎȘȚ", + wiki_start_pages=["Pagina_principală"], + ), + "Russian": Language( + name="Russian", + iso_code="ru", + use_ascii=False, + charsets=[ + "ISO-8859-5", + "WINDOWS-1251", + "KOI8-R", + "MacCyrillic", + "IBM866", + "IBM855", + ], + alphabet="абвгдеёжзийклмнопрстуфхцчшщъыьэюяАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ", + wiki_start_pages=["Заглавная_страница"], + ), + "Slovak": Language( + name="Slovak", + iso_code="sk", + use_ascii=True, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="áäčďéíĺľňóôŕšťúýžÁÄČĎÉÍĹĽŇÓÔŔŠŤÚÝŽ", + wiki_start_pages=["Hlavná_stránka"], + ), + "Slovene": Language( + name="Slovene", + iso_code="sl", + # Q, W, X, Y are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="abcčdefghijklmnoprsštuvzžABCČDEFGHIJKLMNOPRSŠTUVZŽ", + wiki_start_pages=["Glavna_stran"], + ), + # Serbian can be written in both Latin and Cyrillic, but there's no + # simple way to get the Latin alphabet pages from Wikipedia through + # the API, so for now we just support Cyrillic. + "Serbian": Language( + name="Serbian", + iso_code="sr", + alphabet="АБВГДЂЕЖЗИЈКЛЉМНЊОПРСТЋУФХЦЧЏШабвгдђежзијклљмнњопрстћуфхцчџш", + charsets=["ISO-8859-5", "WINDOWS-1251", "MacCyrillic", "IBM855"], + wiki_start_pages=["Главна_страна"], + ), + "Thai": Language( + name="Thai", + iso_code="th", + use_ascii=False, + charsets=["ISO-8859-11", "TIS-620", "CP874"], + alphabet="กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛", + wiki_start_pages=["หน้าหลัก"], + ), + "Turkish": Language( + name="Turkish", + iso_code="tr", + # Q, W, and X are not used by Turkish + use_ascii=False, + charsets=["ISO-8859-3", "ISO-8859-9", "WINDOWS-1254"], + alphabet="abcçdefgğhıijklmnoöprsştuüvyzâîûABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZÂÎÛ", + wiki_start_pages=["Ana_Sayfa"], + ), + "Vietnamese": Language( + name="Vietnamese", + iso_code="vi", + use_ascii=False, + # Windows-1258 is the only common 8-bit + # Vietnamese encoding supported by Python. + # From Wikipedia: + # For systems that lack support for Unicode, + # dozens of 8-bit Vietnamese code pages are + # available.[1] The most common are VISCII + # (TCVN 5712:1993), VPS, and Windows-1258.[3] + # Where ASCII is required, such as when + # ensuring readability in plain text e-mail, + # Vietnamese letters are often encoded + # according to Vietnamese Quoted-Readable + # (VIQR) or VSCII Mnemonic (VSCII-MNEM),[4] + # though usage of either variable-width + # scheme has declined dramatically following + # the adoption of Unicode on the World Wide + # Web. + charsets=["WINDOWS-1258"], + alphabet="aăâbcdđeêghiklmnoôơpqrstuưvxyAĂÂBCDĐEÊGHIKLMNOÔƠPQRSTUƯVXY", + wiki_start_pages=["Chữ_Quốc_ngữ"], + ), +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py new file mode 100644 index 00000000..7d36e64c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py @@ -0,0 +1,16 @@ +from typing import TYPE_CHECKING, Optional + +if TYPE_CHECKING: + # TypedDict was introduced in Python 3.8. + # + # TODO: Remove the else block and TYPE_CHECKING check when dropping support + # for Python 3.7. + from typing import TypedDict + + class ResultDict(TypedDict): + encoding: Optional[str] + confidence: float + language: Optional[str] + +else: + ResultDict = dict diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py new file mode 100644 index 00000000..0ffbcdd2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py @@ -0,0 +1,162 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Dict, List, NamedTuple, Optional, Union + +from .charsetprober import CharSetProber +from .enums import CharacterCategory, ProbingState, SequenceLikelihood + + +class SingleByteCharSetModel(NamedTuple): + charset_name: str + language: str + char_to_order_map: Dict[int, int] + language_model: Dict[int, Dict[int, int]] + typical_positive_ratio: float + keep_ascii_letters: bool + alphabet: str + + +class SingleByteCharSetProber(CharSetProber): + SAMPLE_SIZE = 64 + SB_ENOUGH_REL_THRESHOLD = 1024 # 0.25 * SAMPLE_SIZE^2 + POSITIVE_SHORTCUT_THRESHOLD = 0.95 + NEGATIVE_SHORTCUT_THRESHOLD = 0.05 + + def __init__( + self, + model: SingleByteCharSetModel, + is_reversed: bool = False, + name_prober: Optional[CharSetProber] = None, + ) -> None: + super().__init__() + self._model = model + # TRUE if we need to reverse every pair in the model lookup + self._reversed = is_reversed + # Optional auxiliary prober for name decision + self._name_prober = name_prober + self._last_order = 255 + self._seq_counters: List[int] = [] + self._total_seqs = 0 + self._total_char = 0 + self._control_char = 0 + self._freq_char = 0 + self.reset() + + def reset(self) -> None: + super().reset() + # char order of last character + self._last_order = 255 + self._seq_counters = [0] * SequenceLikelihood.get_num_categories() + self._total_seqs = 0 + self._total_char = 0 + self._control_char = 0 + # characters that fall in our sampling range + self._freq_char = 0 + + @property + def charset_name(self) -> Optional[str]: + if self._name_prober: + return self._name_prober.charset_name + return self._model.charset_name + + @property + def language(self) -> Optional[str]: + if self._name_prober: + return self._name_prober.language + return self._model.language + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + # TODO: Make filter_international_words keep things in self.alphabet + if not self._model.keep_ascii_letters: + byte_str = self.filter_international_words(byte_str) + else: + byte_str = self.remove_xml_tags(byte_str) + if not byte_str: + return self.state + char_to_order_map = self._model.char_to_order_map + language_model = self._model.language_model + for char in byte_str: + order = char_to_order_map.get(char, CharacterCategory.UNDEFINED) + # XXX: This was SYMBOL_CAT_ORDER before, with a value of 250, but + # CharacterCategory.SYMBOL is actually 253, so we use CONTROL + # to make it closer to the original intent. The only difference + # is whether or not we count digits and control characters for + # _total_char purposes. + if order < CharacterCategory.CONTROL: + self._total_char += 1 + if order < self.SAMPLE_SIZE: + self._freq_char += 1 + if self._last_order < self.SAMPLE_SIZE: + self._total_seqs += 1 + if not self._reversed: + lm_cat = language_model[self._last_order][order] + else: + lm_cat = language_model[order][self._last_order] + self._seq_counters[lm_cat] += 1 + self._last_order = order + + charset_name = self._model.charset_name + if self.state == ProbingState.DETECTING: + if self._total_seqs > self.SB_ENOUGH_REL_THRESHOLD: + confidence = self.get_confidence() + if confidence > self.POSITIVE_SHORTCUT_THRESHOLD: + self.logger.debug( + "%s confidence = %s, we have a winner", charset_name, confidence + ) + self._state = ProbingState.FOUND_IT + elif confidence < self.NEGATIVE_SHORTCUT_THRESHOLD: + self.logger.debug( + "%s confidence = %s, below negative shortcut threshold %s", + charset_name, + confidence, + self.NEGATIVE_SHORTCUT_THRESHOLD, + ) + self._state = ProbingState.NOT_ME + + return self.state + + def get_confidence(self) -> float: + r = 0.01 + if self._total_seqs > 0: + r = ( + ( + self._seq_counters[SequenceLikelihood.POSITIVE] + + 0.25 * self._seq_counters[SequenceLikelihood.LIKELY] + ) + / self._total_seqs + / self._model.typical_positive_ratio + ) + # The more control characters (proportionnaly to the size + # of the text), the less confident we become in the current + # charset. + r = r * (self._total_char - self._control_char) / self._total_char + r = r * self._freq_char / self._total_char + if r >= 1.0: + r = 0.99 + return r diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py new file mode 100644 index 00000000..890ae846 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py @@ -0,0 +1,88 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetgroupprober import CharSetGroupProber +from .hebrewprober import HebrewProber +from .langbulgarianmodel import ISO_8859_5_BULGARIAN_MODEL, WINDOWS_1251_BULGARIAN_MODEL +from .langgreekmodel import ISO_8859_7_GREEK_MODEL, WINDOWS_1253_GREEK_MODEL +from .langhebrewmodel import WINDOWS_1255_HEBREW_MODEL + +# from .langhungarianmodel import (ISO_8859_2_HUNGARIAN_MODEL, +# WINDOWS_1250_HUNGARIAN_MODEL) +from .langrussianmodel import ( + IBM855_RUSSIAN_MODEL, + IBM866_RUSSIAN_MODEL, + ISO_8859_5_RUSSIAN_MODEL, + KOI8_R_RUSSIAN_MODEL, + MACCYRILLIC_RUSSIAN_MODEL, + WINDOWS_1251_RUSSIAN_MODEL, +) +from .langthaimodel import TIS_620_THAI_MODEL +from .langturkishmodel import ISO_8859_9_TURKISH_MODEL +from .sbcharsetprober import SingleByteCharSetProber + + +class SBCSGroupProber(CharSetGroupProber): + def __init__(self) -> None: + super().__init__() + hebrew_prober = HebrewProber() + logical_hebrew_prober = SingleByteCharSetProber( + WINDOWS_1255_HEBREW_MODEL, is_reversed=False, name_prober=hebrew_prober + ) + # TODO: See if using ISO-8859-8 Hebrew model works better here, since + # it's actually the visual one + visual_hebrew_prober = SingleByteCharSetProber( + WINDOWS_1255_HEBREW_MODEL, is_reversed=True, name_prober=hebrew_prober + ) + hebrew_prober.set_model_probers(logical_hebrew_prober, visual_hebrew_prober) + # TODO: ORDER MATTERS HERE. I changed the order vs what was in master + # and several tests failed that did not before. Some thought + # should be put into the ordering, and we should consider making + # order not matter here, because that is very counter-intuitive. + self.probers = [ + SingleByteCharSetProber(WINDOWS_1251_RUSSIAN_MODEL), + SingleByteCharSetProber(KOI8_R_RUSSIAN_MODEL), + SingleByteCharSetProber(ISO_8859_5_RUSSIAN_MODEL), + SingleByteCharSetProber(MACCYRILLIC_RUSSIAN_MODEL), + SingleByteCharSetProber(IBM866_RUSSIAN_MODEL), + SingleByteCharSetProber(IBM855_RUSSIAN_MODEL), + SingleByteCharSetProber(ISO_8859_7_GREEK_MODEL), + SingleByteCharSetProber(WINDOWS_1253_GREEK_MODEL), + SingleByteCharSetProber(ISO_8859_5_BULGARIAN_MODEL), + SingleByteCharSetProber(WINDOWS_1251_BULGARIAN_MODEL), + # TODO: Restore Hungarian encodings (iso-8859-2 and windows-1250) + # after we retrain model. + # SingleByteCharSetProber(ISO_8859_2_HUNGARIAN_MODEL), + # SingleByteCharSetProber(WINDOWS_1250_HUNGARIAN_MODEL), + SingleByteCharSetProber(TIS_620_THAI_MODEL), + SingleByteCharSetProber(ISO_8859_9_TURKISH_MODEL), + hebrew_prober, + logical_hebrew_prober, + visual_hebrew_prober, + ] + self.reset() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py new file mode 100644 index 00000000..91df0779 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py @@ -0,0 +1,105 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Union + +from .chardistribution import SJISDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .enums import MachineState, ProbingState +from .jpcntx import SJISContextAnalysis +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import SJIS_SM_MODEL + + +class SJISProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(SJIS_SM_MODEL) + self.distribution_analyzer = SJISDistributionAnalysis() + self.context_analyzer = SJISContextAnalysis() + self.reset() + + def reset(self) -> None: + super().reset() + self.context_analyzer.reset() + + @property + def charset_name(self) -> str: + return self.context_analyzer.charset_name + + @property + def language(self) -> str: + return "Japanese" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + assert self.coding_sm is not None + assert self.distribution_analyzer is not None + + for i, byte in enumerate(byte_str): + coding_state = self.coding_sm.next_state(byte) + if coding_state == MachineState.ERROR: + self.logger.debug( + "%s %s prober hit error at byte %s", + self.charset_name, + self.language, + i, + ) + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte + self.context_analyzer.feed( + self._last_char[2 - char_len :], char_len + ) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed( + byte_str[i + 1 - char_len : i + 3 - char_len], char_len + ) + self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if self.context_analyzer.got_enough_data() and ( + self.get_confidence() > self.SHORTCUT_THRESHOLD + ): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + assert self.distribution_analyzer is not None + + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py new file mode 100644 index 00000000..30c441dc --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py @@ -0,0 +1,362 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### +""" +Module containing the UniversalDetector detector class, which is the primary +class a user of ``chardet`` should use. + +:author: Mark Pilgrim (initial port to Python) +:author: Shy Shalom (original C code) +:author: Dan Blanchard (major refactoring for 3.0) +:author: Ian Cordasco +""" + + +import codecs +import logging +import re +from typing import List, Optional, Union + +from .charsetgroupprober import CharSetGroupProber +from .charsetprober import CharSetProber +from .enums import InputState, LanguageFilter, ProbingState +from .escprober import EscCharSetProber +from .latin1prober import Latin1Prober +from .macromanprober import MacRomanProber +from .mbcsgroupprober import MBCSGroupProber +from .resultdict import ResultDict +from .sbcsgroupprober import SBCSGroupProber +from .utf1632prober import UTF1632Prober + + +class UniversalDetector: + """ + The ``UniversalDetector`` class underlies the ``chardet.detect`` function + and coordinates all of the different charset probers. + + To get a ``dict`` containing an encoding and its confidence, you can simply + run: + + .. code:: + + u = UniversalDetector() + u.feed(some_bytes) + u.close() + detected = u.result + + """ + + MINIMUM_THRESHOLD = 0.20 + HIGH_BYTE_DETECTOR = re.compile(b"[\x80-\xFF]") + ESC_DETECTOR = re.compile(b"(\033|~{)") + WIN_BYTE_DETECTOR = re.compile(b"[\x80-\x9F]") + ISO_WIN_MAP = { + "iso-8859-1": "Windows-1252", + "iso-8859-2": "Windows-1250", + "iso-8859-5": "Windows-1251", + "iso-8859-6": "Windows-1256", + "iso-8859-7": "Windows-1253", + "iso-8859-8": "Windows-1255", + "iso-8859-9": "Windows-1254", + "iso-8859-13": "Windows-1257", + } + # Based on https://encoding.spec.whatwg.org/#names-and-labels + # but altered to match Python names for encodings and remove mappings + # that break tests. + LEGACY_MAP = { + "ascii": "Windows-1252", + "iso-8859-1": "Windows-1252", + "tis-620": "ISO-8859-11", + "iso-8859-9": "Windows-1254", + "gb2312": "GB18030", + "euc-kr": "CP949", + "utf-16le": "UTF-16", + } + + def __init__( + self, + lang_filter: LanguageFilter = LanguageFilter.ALL, + should_rename_legacy: bool = False, + ) -> None: + self._esc_charset_prober: Optional[EscCharSetProber] = None + self._utf1632_prober: Optional[UTF1632Prober] = None + self._charset_probers: List[CharSetProber] = [] + self.result: ResultDict = { + "encoding": None, + "confidence": 0.0, + "language": None, + } + self.done = False + self._got_data = False + self._input_state = InputState.PURE_ASCII + self._last_char = b"" + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + self._has_win_bytes = False + self.should_rename_legacy = should_rename_legacy + self.reset() + + @property + def input_state(self) -> int: + return self._input_state + + @property + def has_win_bytes(self) -> bool: + return self._has_win_bytes + + @property + def charset_probers(self) -> List[CharSetProber]: + return self._charset_probers + + def reset(self) -> None: + """ + Reset the UniversalDetector and all of its probers back to their + initial states. This is called by ``__init__``, so you only need to + call this directly in between analyses of different documents. + """ + self.result = {"encoding": None, "confidence": 0.0, "language": None} + self.done = False + self._got_data = False + self._has_win_bytes = False + self._input_state = InputState.PURE_ASCII + self._last_char = b"" + if self._esc_charset_prober: + self._esc_charset_prober.reset() + if self._utf1632_prober: + self._utf1632_prober.reset() + for prober in self._charset_probers: + prober.reset() + + def feed(self, byte_str: Union[bytes, bytearray]) -> None: + """ + Takes a chunk of a document and feeds it through all of the relevant + charset probers. + + After calling ``feed``, you can check the value of the ``done`` + attribute to see if you need to continue feeding the + ``UniversalDetector`` more data, or if it has made a prediction + (in the ``result`` attribute). + + .. note:: + You should always call ``close`` when you're done feeding in your + document if ``done`` is not already ``True``. + """ + if self.done: + return + + if not byte_str: + return + + if not isinstance(byte_str, bytearray): + byte_str = bytearray(byte_str) + + # First check for known BOMs, since these are guaranteed to be correct + if not self._got_data: + # If the data starts with BOM, we know it is UTF + if byte_str.startswith(codecs.BOM_UTF8): + # EF BB BF UTF-8 with BOM + self.result = { + "encoding": "UTF-8-SIG", + "confidence": 1.0, + "language": "", + } + elif byte_str.startswith((codecs.BOM_UTF32_LE, codecs.BOM_UTF32_BE)): + # FF FE 00 00 UTF-32, little-endian BOM + # 00 00 FE FF UTF-32, big-endian BOM + self.result = {"encoding": "UTF-32", "confidence": 1.0, "language": ""} + elif byte_str.startswith(b"\xFE\xFF\x00\x00"): + # FE FF 00 00 UCS-4, unusual octet order BOM (3412) + self.result = { + # TODO: This encoding is not supported by Python. Should remove? + "encoding": "X-ISO-10646-UCS-4-3412", + "confidence": 1.0, + "language": "", + } + elif byte_str.startswith(b"\x00\x00\xFF\xFE"): + # 00 00 FF FE UCS-4, unusual octet order BOM (2143) + self.result = { + # TODO: This encoding is not supported by Python. Should remove? + "encoding": "X-ISO-10646-UCS-4-2143", + "confidence": 1.0, + "language": "", + } + elif byte_str.startswith((codecs.BOM_LE, codecs.BOM_BE)): + # FF FE UTF-16, little endian BOM + # FE FF UTF-16, big endian BOM + self.result = {"encoding": "UTF-16", "confidence": 1.0, "language": ""} + + self._got_data = True + if self.result["encoding"] is not None: + self.done = True + return + + # If none of those matched and we've only see ASCII so far, check + # for high bytes and escape sequences + if self._input_state == InputState.PURE_ASCII: + if self.HIGH_BYTE_DETECTOR.search(byte_str): + self._input_state = InputState.HIGH_BYTE + elif ( + self._input_state == InputState.PURE_ASCII + and self.ESC_DETECTOR.search(self._last_char + byte_str) + ): + self._input_state = InputState.ESC_ASCII + + self._last_char = byte_str[-1:] + + # next we will look to see if it is appears to be either a UTF-16 or + # UTF-32 encoding + if not self._utf1632_prober: + self._utf1632_prober = UTF1632Prober() + + if self._utf1632_prober.state == ProbingState.DETECTING: + if self._utf1632_prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = { + "encoding": self._utf1632_prober.charset_name, + "confidence": self._utf1632_prober.get_confidence(), + "language": "", + } + self.done = True + return + + # If we've seen escape sequences, use the EscCharSetProber, which + # uses a simple state machine to check for known escape sequences in + # HZ and ISO-2022 encodings, since those are the only encodings that + # use such sequences. + if self._input_state == InputState.ESC_ASCII: + if not self._esc_charset_prober: + self._esc_charset_prober = EscCharSetProber(self.lang_filter) + if self._esc_charset_prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = { + "encoding": self._esc_charset_prober.charset_name, + "confidence": self._esc_charset_prober.get_confidence(), + "language": self._esc_charset_prober.language, + } + self.done = True + # If we've seen high bytes (i.e., those with values greater than 127), + # we need to do more complicated checks using all our multi-byte and + # single-byte probers that are left. The single-byte probers + # use character bigram distributions to determine the encoding, whereas + # the multi-byte probers use a combination of character unigram and + # bigram distributions. + elif self._input_state == InputState.HIGH_BYTE: + if not self._charset_probers: + self._charset_probers = [MBCSGroupProber(self.lang_filter)] + # If we're checking non-CJK encodings, use single-byte prober + if self.lang_filter & LanguageFilter.NON_CJK: + self._charset_probers.append(SBCSGroupProber()) + self._charset_probers.append(Latin1Prober()) + self._charset_probers.append(MacRomanProber()) + for prober in self._charset_probers: + if prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = { + "encoding": prober.charset_name, + "confidence": prober.get_confidence(), + "language": prober.language, + } + self.done = True + break + if self.WIN_BYTE_DETECTOR.search(byte_str): + self._has_win_bytes = True + + def close(self) -> ResultDict: + """ + Stop analyzing the current document and come up with a final + prediction. + + :returns: The ``result`` attribute, a ``dict`` with the keys + `encoding`, `confidence`, and `language`. + """ + # Don't bother with checks if we're already done + if self.done: + return self.result + self.done = True + + if not self._got_data: + self.logger.debug("no data received!") + + # Default to ASCII if it is all we've seen so far + elif self._input_state == InputState.PURE_ASCII: + self.result = {"encoding": "ascii", "confidence": 1.0, "language": ""} + + # If we have seen non-ASCII, return the best that met MINIMUM_THRESHOLD + elif self._input_state == InputState.HIGH_BYTE: + prober_confidence = None + max_prober_confidence = 0.0 + max_prober = None + for prober in self._charset_probers: + if not prober: + continue + prober_confidence = prober.get_confidence() + if prober_confidence > max_prober_confidence: + max_prober_confidence = prober_confidence + max_prober = prober + if max_prober and (max_prober_confidence > self.MINIMUM_THRESHOLD): + charset_name = max_prober.charset_name + assert charset_name is not None + lower_charset_name = charset_name.lower() + confidence = max_prober.get_confidence() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith("iso-8859"): + if self._has_win_bytes: + charset_name = self.ISO_WIN_MAP.get( + lower_charset_name, charset_name + ) + # Rename legacy encodings with superset encodings if asked + if self.should_rename_legacy: + charset_name = self.LEGACY_MAP.get( + (charset_name or "").lower(), charset_name + ) + self.result = { + "encoding": charset_name, + "confidence": confidence, + "language": max_prober.language, + } + + # Log all prober confidences if none met MINIMUM_THRESHOLD + if self.logger.getEffectiveLevel() <= logging.DEBUG: + if self.result["encoding"] is None: + self.logger.debug("no probers hit minimum threshold") + for group_prober in self._charset_probers: + if not group_prober: + continue + if isinstance(group_prober, CharSetGroupProber): + for prober in group_prober.probers: + self.logger.debug( + "%s %s confidence = %s", + prober.charset_name, + prober.language, + prober.get_confidence(), + ) + else: + self.logger.debug( + "%s %s confidence = %s", + group_prober.charset_name, + group_prober.language, + group_prober.get_confidence(), + ) + return self.result diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py new file mode 100644 index 00000000..6bdec63d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py @@ -0,0 +1,225 @@ +######################## BEGIN LICENSE BLOCK ######################## +# +# Contributor(s): +# Jason Zavaglia +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### +from typing import List, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState + + +class UTF1632Prober(CharSetProber): + """ + This class simply looks for occurrences of zero bytes, and infers + whether the file is UTF16 or UTF32 (low-endian or big-endian) + For instance, files looking like ( \0 \0 \0 [nonzero] )+ + have a good probability to be UTF32BE. Files looking like ( \0 [nonzero] )+ + may be guessed to be UTF16BE, and inversely for little-endian varieties. + """ + + # how many logical characters to scan before feeling confident of prediction + MIN_CHARS_FOR_DETECTION = 20 + # a fixed constant ratio of expected zeros or non-zeros in modulo-position. + EXPECTED_RATIO = 0.94 + + def __init__(self) -> None: + super().__init__() + self.position = 0 + self.zeros_at_mod = [0] * 4 + self.nonzeros_at_mod = [0] * 4 + self._state = ProbingState.DETECTING + self.quad = [0, 0, 0, 0] + self.invalid_utf16be = False + self.invalid_utf16le = False + self.invalid_utf32be = False + self.invalid_utf32le = False + self.first_half_surrogate_pair_detected_16be = False + self.first_half_surrogate_pair_detected_16le = False + self.reset() + + def reset(self) -> None: + super().reset() + self.position = 0 + self.zeros_at_mod = [0] * 4 + self.nonzeros_at_mod = [0] * 4 + self._state = ProbingState.DETECTING + self.invalid_utf16be = False + self.invalid_utf16le = False + self.invalid_utf32be = False + self.invalid_utf32le = False + self.first_half_surrogate_pair_detected_16be = False + self.first_half_surrogate_pair_detected_16le = False + self.quad = [0, 0, 0, 0] + + @property + def charset_name(self) -> str: + if self.is_likely_utf32be(): + return "utf-32be" + if self.is_likely_utf32le(): + return "utf-32le" + if self.is_likely_utf16be(): + return "utf-16be" + if self.is_likely_utf16le(): + return "utf-16le" + # default to something valid + return "utf-16" + + @property + def language(self) -> str: + return "" + + def approx_32bit_chars(self) -> float: + return max(1.0, self.position / 4.0) + + def approx_16bit_chars(self) -> float: + return max(1.0, self.position / 2.0) + + def is_likely_utf32be(self) -> bool: + approx_chars = self.approx_32bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + self.zeros_at_mod[0] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[1] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[2] / approx_chars > self.EXPECTED_RATIO + and self.nonzeros_at_mod[3] / approx_chars > self.EXPECTED_RATIO + and not self.invalid_utf32be + ) + + def is_likely_utf32le(self) -> bool: + approx_chars = self.approx_32bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + self.nonzeros_at_mod[0] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[1] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[2] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[3] / approx_chars > self.EXPECTED_RATIO + and not self.invalid_utf32le + ) + + def is_likely_utf16be(self) -> bool: + approx_chars = self.approx_16bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + (self.nonzeros_at_mod[1] + self.nonzeros_at_mod[3]) / approx_chars + > self.EXPECTED_RATIO + and (self.zeros_at_mod[0] + self.zeros_at_mod[2]) / approx_chars + > self.EXPECTED_RATIO + and not self.invalid_utf16be + ) + + def is_likely_utf16le(self) -> bool: + approx_chars = self.approx_16bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + (self.nonzeros_at_mod[0] + self.nonzeros_at_mod[2]) / approx_chars + > self.EXPECTED_RATIO + and (self.zeros_at_mod[1] + self.zeros_at_mod[3]) / approx_chars + > self.EXPECTED_RATIO + and not self.invalid_utf16le + ) + + def validate_utf32_characters(self, quad: List[int]) -> None: + """ + Validate if the quad of bytes is valid UTF-32. + + UTF-32 is valid in the range 0x00000000 - 0x0010FFFF + excluding 0x0000D800 - 0x0000DFFF + + https://en.wikipedia.org/wiki/UTF-32 + """ + if ( + quad[0] != 0 + or quad[1] > 0x10 + or (quad[0] == 0 and quad[1] == 0 and 0xD8 <= quad[2] <= 0xDF) + ): + self.invalid_utf32be = True + if ( + quad[3] != 0 + or quad[2] > 0x10 + or (quad[3] == 0 and quad[2] == 0 and 0xD8 <= quad[1] <= 0xDF) + ): + self.invalid_utf32le = True + + def validate_utf16_characters(self, pair: List[int]) -> None: + """ + Validate if the pair of bytes is valid UTF-16. + + UTF-16 is valid in the range 0x0000 - 0xFFFF excluding 0xD800 - 0xFFFF + with an exception for surrogate pairs, which must be in the range + 0xD800-0xDBFF followed by 0xDC00-0xDFFF + + https://en.wikipedia.org/wiki/UTF-16 + """ + if not self.first_half_surrogate_pair_detected_16be: + if 0xD8 <= pair[0] <= 0xDB: + self.first_half_surrogate_pair_detected_16be = True + elif 0xDC <= pair[0] <= 0xDF: + self.invalid_utf16be = True + else: + if 0xDC <= pair[0] <= 0xDF: + self.first_half_surrogate_pair_detected_16be = False + else: + self.invalid_utf16be = True + + if not self.first_half_surrogate_pair_detected_16le: + if 0xD8 <= pair[1] <= 0xDB: + self.first_half_surrogate_pair_detected_16le = True + elif 0xDC <= pair[1] <= 0xDF: + self.invalid_utf16le = True + else: + if 0xDC <= pair[1] <= 0xDF: + self.first_half_surrogate_pair_detected_16le = False + else: + self.invalid_utf16le = True + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for c in byte_str: + mod4 = self.position % 4 + self.quad[mod4] = c + if mod4 == 3: + self.validate_utf32_characters(self.quad) + self.validate_utf16_characters(self.quad[0:2]) + self.validate_utf16_characters(self.quad[2:4]) + if c == 0: + self.zeros_at_mod[mod4] += 1 + else: + self.nonzeros_at_mod[mod4] += 1 + self.position += 1 + return self.state + + @property + def state(self) -> ProbingState: + if self._state in {ProbingState.NOT_ME, ProbingState.FOUND_IT}: + # terminal, decided states + return self._state + if self.get_confidence() > 0.80: + self._state = ProbingState.FOUND_IT + elif self.position > 4 * 1024: + # if we get to 4kb into the file, and we can't conclude it's UTF, + # let's give up + self._state = ProbingState.NOT_ME + return self._state + + def get_confidence(self) -> float: + return ( + 0.85 + if ( + self.is_likely_utf16le() + or self.is_likely_utf16be() + or self.is_likely_utf32le() + or self.is_likely_utf32be() + ) + else 0.00 + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py new file mode 100644 index 00000000..d96354d9 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py @@ -0,0 +1,82 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Union + +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import MachineState, ProbingState +from .mbcssm import UTF8_SM_MODEL + + +class UTF8Prober(CharSetProber): + ONE_CHAR_PROB = 0.5 + + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(UTF8_SM_MODEL) + self._num_mb_chars = 0 + self.reset() + + def reset(self) -> None: + super().reset() + self.coding_sm.reset() + self._num_mb_chars = 0 + + @property + def charset_name(self) -> str: + return "utf-8" + + @property + def language(self) -> str: + return "" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for c in byte_str: + coding_state = self.coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + if self.coding_sm.get_current_charlen() >= 2: + self._num_mb_chars += 1 + + if self.state == ProbingState.DETECTING: + if self.get_confidence() > self.SHORTCUT_THRESHOLD: + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + unlike = 0.99 + if self._num_mb_chars < 6: + unlike *= self.ONE_CHAR_PROB**self._num_mb_chars + return 1.0 - unlike + return unlike diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py new file mode 100644 index 00000000..c5e9d85c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py @@ -0,0 +1,9 @@ +""" +This module exists only to simplify retrieving the version number of chardet +from within setuptools and from chardet subpackages. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + +__version__ = "5.1.0" +VERSION = __version__.split(".") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py new file mode 100644 index 00000000..383101cd --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py @@ -0,0 +1,7 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from .initialise import init, deinit, reinit, colorama_text, just_fix_windows_console +from .ansi import Fore, Back, Style, Cursor +from .ansitowin32 import AnsiToWin32 + +__version__ = '0.4.6' + diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0e70ef888f858a66f6ccd25ec2b750dc99abbf5 GIT binary patch literal 544 zcmXw0J8u**5cb|a?y+|%5J=FafMONh8txDkLV`qy2AU*7a${|7Cpi;)y|R6GSvq<; z3Vs8>g$f}WO9&(iM2D0v72||V@y+AYc)l5bo=ipr?cSI7%TYwguaI0@?|*Rq0)vmF zCUqoaWjCS6)&e{c>d zQlE%MIG@#U<;|6!EVR_7QWbY_=KSq9E9>~NIO7}9)Out2LN``RC=#DM*9Ls@tXiD< zbl-Ine73tXR+}R7`P0UV1N~Yw^V!?M%)wG(Z-hkKmIE zd(9x^!vNt#CJ#&=7^hLod}hX%70%aStk4bTpU63u$i)Y`)C%ZHbz}rcx(D{u>6Y&6 zW4EacZ12Guq;3^7ZhKdwVxTW|y^=6J&{|q5R4XB{(*wC_71||IEtd*eXj7%ALy?rMn4%0(s_RYN?V3B5)~2}Z z?Ak6>1)u>PV%R`cIDmCDP#3tim@ba4Fq}FZodX1)5X`M2|rA{hW zuFR*ZYX&o_E@i2zZGzFYQw?U-U8}wdmYU6k3HsNqx>0j7;R>bGsWsPaOlPySp1EmV zvl`U2jEv1zv#4cpUY$Bsqd|3?G`!(E{2A0sFQq_L>iq>a3RI-7a{}N#aRI&J_6Q|p zlRWNyu>oDCgjgYIUztnmk9=ItSLV6wxGXJkMf?DcPQCm~cFkU=*;V5*vuG__pw2bd zZe%O=75ApWXsSSO(3;&?r*$`#x34pYW)}oKCzoxz=47q)MvY?c$*O(RF`C)T4O+jE zty!0|ji$S1*FVgh{vhjEEWs@IHF>SP;MBdfzO(`H%0oUv|Xjk;rH8ciNU=XBTB zk#C1#NJgP{_5-xYvq=2QiS6Zklef?8RCXh&CrYXV9b|+p9~cB%KLuf!EsvE=g50<` zN|XUp8@>-dP6Jhol{}YciY1^*buG6>9l;fYq#!)xP*)dLHV%3Ms&fE9__n?8_VkXr z8~M>gc{g(OiE@;o?<3CrcU$=>!%Tbxdk8@~;#ag&>4&ot?|2V>4 z5XOtGy(>O+`x6a?e}P>3IU%1*o6^-mats!R#OS99lkVbzbQTLg~aDRH_-nA z?JjP-D4V|i*ZtE;B6mMhNYhI+J*{%tv=|RNuEAXArsb~jz$$eO*JV5ak%NMWY4}CO zp|vYqsT=E*t2d0=b?TtQsZ`2~w4knAb<5TDjpTrgOy4#IBb`qGTBI8!`w#6X_vU{f za%lRC!qbU^_s{(G%!3cVop|@zp|>9>56o{4y}zwK8#}n8?3fQ1{(k(MV;_Ax_RALm z7%zgOoK`q2hpy;459_*j1cDsZ^*>%WYF-aJ4huf=;z{_(4ue4eZn%T2ZIO;IpnB7a zo+=mzrJr=2pMhy;;{&ku65JyJ(+8~rtqiRStpcsz48q+4cS+Nq4)L&H1CAn_Rr~Yd z0{>2C4R#-se&mqMd70&7??4Zi>JCob-wNN#`Hk4CWiu=1k%|79lt_MA*%`n0o70>UP6@I4WUSR!+OU=MBI#W@N9*UFyodYJ!8`rGVo;=Qjb zyNOdzf~R^JEVc14O#4_48Ug7b`w7Y-9`G(?rw}mp*e?*K5k5f>yM)o=rL|xS;TTj0 zlN{4pQs3z)BhUr)v{;|v=#fK`m^C zw1^qjqGm*knNcln#4WP_c0Qa(r0~x{`)c=&#Ddchz zSrzWjBTi-oDS>_ zeE-Z6#x9o&^9$TxUR+wpm3T;mwVo@L_OkJ3n1vx=Zi%-s#Msz)YZf8@bSx>PTk~Fk z;J|WPVw=#WlRTj7rd`!_<_Dd{5%7sE-b~`bEuOaGeaZdy<*T&ndXEs?UJ==1BgFb# z!Q%mv6QY5u;*YsMFK(wjKEDk9%6swrn%#zZFh(5|p39OXy-;LHc^)Q#cuRijk0FFx z@(+GVI)ZSlgOY%5FepuL`@001?t!p$diy|^K+~O?kS4!qb_q1y6BE*uCr@=xC{l7e j)Fsfoh>~#f&QweJJ~Zw%$vcNz>i40EJ8#|c3$FeN!p%%@ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a96da8ba24e98686892a08e63cea558a292d5649 GIT binary patch literal 16473 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a32f338cbd0fcabadfaac907c8efa7e87cc32f9c GIT binary patch literal 3602 zcmcgvO>7&-6`t8$a+h3^wtnb{vMkezoQ6syBDRaRK-0iTqPTIxikZ;-G1i0!HgY4tAUZ272kS#{#)X{(+da0yu~ZG&e@Z)V=?yqS65dyiivlW_#);OeE>el4Mr9$Rx+J3@zT@Q0*KbEvgy>^(v(wn z9h-PjU&f19%aqJmE+f>7QQ{I-GHlyR9c7GKr>cy+PN_q0pe?TNli%iNoq3X@aR*lymMuh@joj!uCx z#$tZ#3@M+<+t#UkWs%J~<-=ny9m=~FBcl~#>a;OK+2DO8=}e;ld{3Vk+BdYKWHyvYB>7NFt!bH6Eps(@PaA%`u4gup6iI%qB{m|^K5@b1 z(fgU_(e>C7`A_(Wyv>HV{RkW4+b$yp)GteetYr-du>d6~u#mY(AlGg?Y#1!%1}@}e z%1x9;IpKy!xuwxAPPlFPV|*eD)g1)VKvj+R~1Mpm_vd)kW|GSc>o zrBnQyK~aGb>YoE;mr-4IGi|l&sE+H>j2tLUb;e~yF>x?@4zuu!b6nM@ilKDO3rDhD zz=(Ft@36ih0~povAmis2g=qoD^#d*Co2~0y=+LDU>T0MRJM5r=*dexU2ma=weD4n7 zBN{Olx-55qJrk^+>kGJc%lZR8xIu7)d3l0X$wV&Y$uR82-!bf}4`fev7hNyvdlg|kq61!o^5>@f_B@^M z0wAKqn5P^!lwSe;hA^5ID1 z_@}>Bd$^S|C z9~w$Lv#zB+*mZH&)!1EasJW;AqP`JcO7xA&40iJR*@gHn2=e9%Ni<(5-@-WODh3Xyv5~4qy<=4`31-x@P z-r)d1GAvw4alGe+185&z3`}wXd9eMTuu*GcYHYnS1^Yl z?!r&{T)x@5lwYCxjFo;j{l;43soewmAME`ZgO8&Yz$%~gsEeQ4j z50G{FGX%iuo2$C41i}94P)}a~sbf&x8juD8uxR>w^`-ii+HG~PsinSB2Y{}t=@s?B zr;{rOUwNRV0Ce5^uAcZq@pr{ry?>tg>)Us`PBh+Zs$FYp<~E=%y)i9VK=fon&Y&Tt6HROrpy<3Td@ zN4bW5{7Ay<&|%mCu2cap36AhIq%AYzO^0QDw-@&b8J^ifjJHn3dJBIw{4MQHR3w_5gp##Z-LSN{7 zUJ*Lw&vA(9NIfzaJ|iq?mEb{X0_I!z59WBweZdKM&jS4c^jb-gr@OOG)rO=O;t!8+ zJdow0^azMNg-FU>qo;Dg3ZX97IxC8wL=Es2oH$V3LqHnnOI2U*-uKCLvv=>cAKv=; zBN_L+azTBdcdzM#tNP$wJ=;tVEKhzod11V%cQxJ;cau}b3k3+seh`gApyb8{d9Uve zbOZi|Fh{rzKd<8{tDnOSagJN90J4{At(`Z@kRDTEpOn9r(DSKK@I?FRyvVvl* literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9081efb6f0895bf92290e3935d1d6b69c9b728d4 GIT binary patch literal 8178 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6b0ada52c225de45d4069d498e8869e07ef87825 GIT binary patch literal 9140 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 I>?!Ae0aAvnhyVZp literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py new file mode 100644 index 00000000..11ec695f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py @@ -0,0 +1,102 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +''' +This module generates ANSI character codes to printing colors to terminals. +See: http://en.wikipedia.org/wiki/ANSI_escape_code +''' + +CSI = '\033[' +OSC = '\033]' +BEL = '\a' + + +def code_to_chars(code): + return CSI + str(code) + 'm' + +def set_title(title): + return OSC + '2;' + title + BEL + +def clear_screen(mode=2): + return CSI + str(mode) + 'J' + +def clear_line(mode=2): + return CSI + str(mode) + 'K' + + +class AnsiCodes(object): + def __init__(self): + # the subclasses declare class attributes which are numbers. + # Upon instantiation we define instance attributes, which are the same + # as the class attributes but wrapped with the ANSI escape sequence + for name in dir(self): + if not name.startswith('_'): + value = getattr(self, name) + setattr(self, name, code_to_chars(value)) + + +class AnsiCursor(object): + def UP(self, n=1): + return CSI + str(n) + 'A' + def DOWN(self, n=1): + return CSI + str(n) + 'B' + def FORWARD(self, n=1): + return CSI + str(n) + 'C' + def BACK(self, n=1): + return CSI + str(n) + 'D' + def POS(self, x=1, y=1): + return CSI + str(y) + ';' + str(x) + 'H' + + +class AnsiFore(AnsiCodes): + BLACK = 30 + RED = 31 + GREEN = 32 + YELLOW = 33 + BLUE = 34 + MAGENTA = 35 + CYAN = 36 + WHITE = 37 + RESET = 39 + + # These are fairly well supported, but not part of the standard. + LIGHTBLACK_EX = 90 + LIGHTRED_EX = 91 + LIGHTGREEN_EX = 92 + LIGHTYELLOW_EX = 93 + LIGHTBLUE_EX = 94 + LIGHTMAGENTA_EX = 95 + LIGHTCYAN_EX = 96 + LIGHTWHITE_EX = 97 + + +class AnsiBack(AnsiCodes): + BLACK = 40 + RED = 41 + GREEN = 42 + YELLOW = 43 + BLUE = 44 + MAGENTA = 45 + CYAN = 46 + WHITE = 47 + RESET = 49 + + # These are fairly well supported, but not part of the standard. + LIGHTBLACK_EX = 100 + LIGHTRED_EX = 101 + LIGHTGREEN_EX = 102 + LIGHTYELLOW_EX = 103 + LIGHTBLUE_EX = 104 + LIGHTMAGENTA_EX = 105 + LIGHTCYAN_EX = 106 + LIGHTWHITE_EX = 107 + + +class AnsiStyle(AnsiCodes): + BRIGHT = 1 + DIM = 2 + NORMAL = 22 + RESET_ALL = 0 + +Fore = AnsiFore() +Back = AnsiBack() +Style = AnsiStyle() +Cursor = AnsiCursor() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py new file mode 100644 index 00000000..abf209e6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py @@ -0,0 +1,277 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import re +import sys +import os + +from .ansi import AnsiFore, AnsiBack, AnsiStyle, Style, BEL +from .winterm import enable_vt_processing, WinTerm, WinColor, WinStyle +from .win32 import windll, winapi_test + + +winterm = None +if windll is not None: + winterm = WinTerm() + + +class StreamWrapper(object): + ''' + Wraps a stream (such as stdout), acting as a transparent proxy for all + attribute access apart from method 'write()', which is delegated to our + Converter instance. + ''' + def __init__(self, wrapped, converter): + # double-underscore everything to prevent clashes with names of + # attributes on the wrapped stream object. + self.__wrapped = wrapped + self.__convertor = converter + + def __getattr__(self, name): + return getattr(self.__wrapped, name) + + def __enter__(self, *args, **kwargs): + # special method lookup bypasses __getattr__/__getattribute__, see + # https://stackoverflow.com/questions/12632894/why-doesnt-getattr-work-with-exit + # thus, contextlib magic methods are not proxied via __getattr__ + return self.__wrapped.__enter__(*args, **kwargs) + + def __exit__(self, *args, **kwargs): + return self.__wrapped.__exit__(*args, **kwargs) + + def __setstate__(self, state): + self.__dict__ = state + + def __getstate__(self): + return self.__dict__ + + def write(self, text): + self.__convertor.write(text) + + def isatty(self): + stream = self.__wrapped + if 'PYCHARM_HOSTED' in os.environ: + if stream is not None and (stream is sys.__stdout__ or stream is sys.__stderr__): + return True + try: + stream_isatty = stream.isatty + except AttributeError: + return False + else: + return stream_isatty() + + @property + def closed(self): + stream = self.__wrapped + try: + return stream.closed + # AttributeError in the case that the stream doesn't support being closed + # ValueError for the case that the stream has already been detached when atexit runs + except (AttributeError, ValueError): + return True + + +class AnsiToWin32(object): + ''' + Implements a 'write()' method which, on Windows, will strip ANSI character + sequences from the text, and if outputting to a tty, will convert them into + win32 function calls. + ''' + ANSI_CSI_RE = re.compile('\001?\033\\[((?:\\d|;)*)([a-zA-Z])\002?') # Control Sequence Introducer + ANSI_OSC_RE = re.compile('\001?\033\\]([^\a]*)(\a)\002?') # Operating System Command + + def __init__(self, wrapped, convert=None, strip=None, autoreset=False): + # The wrapped stream (normally sys.stdout or sys.stderr) + self.wrapped = wrapped + + # should we reset colors to defaults after every .write() + self.autoreset = autoreset + + # create the proxy wrapping our output stream + self.stream = StreamWrapper(wrapped, self) + + on_windows = os.name == 'nt' + # We test if the WinAPI works, because even if we are on Windows + # we may be using a terminal that doesn't support the WinAPI + # (e.g. Cygwin Terminal). In this case it's up to the terminal + # to support the ANSI codes. + conversion_supported = on_windows and winapi_test() + try: + fd = wrapped.fileno() + except Exception: + fd = -1 + system_has_native_ansi = not on_windows or enable_vt_processing(fd) + have_tty = not self.stream.closed and self.stream.isatty() + need_conversion = conversion_supported and not system_has_native_ansi + + # should we strip ANSI sequences from our output? + if strip is None: + strip = need_conversion or not have_tty + self.strip = strip + + # should we should convert ANSI sequences into win32 calls? + if convert is None: + convert = need_conversion and have_tty + self.convert = convert + + # dict of ansi codes to win32 functions and parameters + self.win32_calls = self.get_win32_calls() + + # are we wrapping stderr? + self.on_stderr = self.wrapped is sys.stderr + + def should_wrap(self): + ''' + True if this class is actually needed. If false, then the output + stream will not be affected, nor will win32 calls be issued, so + wrapping stdout is not actually required. This will generally be + False on non-Windows platforms, unless optional functionality like + autoreset has been requested using kwargs to init() + ''' + return self.convert or self.strip or self.autoreset + + def get_win32_calls(self): + if self.convert and winterm: + return { + AnsiStyle.RESET_ALL: (winterm.reset_all, ), + AnsiStyle.BRIGHT: (winterm.style, WinStyle.BRIGHT), + AnsiStyle.DIM: (winterm.style, WinStyle.NORMAL), + AnsiStyle.NORMAL: (winterm.style, WinStyle.NORMAL), + AnsiFore.BLACK: (winterm.fore, WinColor.BLACK), + AnsiFore.RED: (winterm.fore, WinColor.RED), + AnsiFore.GREEN: (winterm.fore, WinColor.GREEN), + AnsiFore.YELLOW: (winterm.fore, WinColor.YELLOW), + AnsiFore.BLUE: (winterm.fore, WinColor.BLUE), + AnsiFore.MAGENTA: (winterm.fore, WinColor.MAGENTA), + AnsiFore.CYAN: (winterm.fore, WinColor.CYAN), + AnsiFore.WHITE: (winterm.fore, WinColor.GREY), + AnsiFore.RESET: (winterm.fore, ), + AnsiFore.LIGHTBLACK_EX: (winterm.fore, WinColor.BLACK, True), + AnsiFore.LIGHTRED_EX: (winterm.fore, WinColor.RED, True), + AnsiFore.LIGHTGREEN_EX: (winterm.fore, WinColor.GREEN, True), + AnsiFore.LIGHTYELLOW_EX: (winterm.fore, WinColor.YELLOW, True), + AnsiFore.LIGHTBLUE_EX: (winterm.fore, WinColor.BLUE, True), + AnsiFore.LIGHTMAGENTA_EX: (winterm.fore, WinColor.MAGENTA, True), + AnsiFore.LIGHTCYAN_EX: (winterm.fore, WinColor.CYAN, True), + AnsiFore.LIGHTWHITE_EX: (winterm.fore, WinColor.GREY, True), + AnsiBack.BLACK: (winterm.back, WinColor.BLACK), + AnsiBack.RED: (winterm.back, WinColor.RED), + AnsiBack.GREEN: (winterm.back, WinColor.GREEN), + AnsiBack.YELLOW: (winterm.back, WinColor.YELLOW), + AnsiBack.BLUE: (winterm.back, WinColor.BLUE), + AnsiBack.MAGENTA: (winterm.back, WinColor.MAGENTA), + AnsiBack.CYAN: (winterm.back, WinColor.CYAN), + AnsiBack.WHITE: (winterm.back, WinColor.GREY), + AnsiBack.RESET: (winterm.back, ), + AnsiBack.LIGHTBLACK_EX: (winterm.back, WinColor.BLACK, True), + AnsiBack.LIGHTRED_EX: (winterm.back, WinColor.RED, True), + AnsiBack.LIGHTGREEN_EX: (winterm.back, WinColor.GREEN, True), + AnsiBack.LIGHTYELLOW_EX: (winterm.back, WinColor.YELLOW, True), + AnsiBack.LIGHTBLUE_EX: (winterm.back, WinColor.BLUE, True), + AnsiBack.LIGHTMAGENTA_EX: (winterm.back, WinColor.MAGENTA, True), + AnsiBack.LIGHTCYAN_EX: (winterm.back, WinColor.CYAN, True), + AnsiBack.LIGHTWHITE_EX: (winterm.back, WinColor.GREY, True), + } + return dict() + + def write(self, text): + if self.strip or self.convert: + self.write_and_convert(text) + else: + self.wrapped.write(text) + self.wrapped.flush() + if self.autoreset: + self.reset_all() + + + def reset_all(self): + if self.convert: + self.call_win32('m', (0,)) + elif not self.strip and not self.stream.closed: + self.wrapped.write(Style.RESET_ALL) + + + def write_and_convert(self, text): + ''' + Write the given text to our wrapped stream, stripping any ANSI + sequences from the text, and optionally converting them into win32 + calls. + ''' + cursor = 0 + text = self.convert_osc(text) + for match in self.ANSI_CSI_RE.finditer(text): + start, end = match.span() + self.write_plain_text(text, cursor, start) + self.convert_ansi(*match.groups()) + cursor = end + self.write_plain_text(text, cursor, len(text)) + + + def write_plain_text(self, text, start, end): + if start < end: + self.wrapped.write(text[start:end]) + self.wrapped.flush() + + + def convert_ansi(self, paramstring, command): + if self.convert: + params = self.extract_params(command, paramstring) + self.call_win32(command, params) + + + def extract_params(self, command, paramstring): + if command in 'Hf': + params = tuple(int(p) if len(p) != 0 else 1 for p in paramstring.split(';')) + while len(params) < 2: + # defaults: + params = params + (1,) + else: + params = tuple(int(p) for p in paramstring.split(';') if len(p) != 0) + if len(params) == 0: + # defaults: + if command in 'JKm': + params = (0,) + elif command in 'ABCD': + params = (1,) + + return params + + + def call_win32(self, command, params): + if command == 'm': + for param in params: + if param in self.win32_calls: + func_args = self.win32_calls[param] + func = func_args[0] + args = func_args[1:] + kwargs = dict(on_stderr=self.on_stderr) + func(*args, **kwargs) + elif command in 'J': + winterm.erase_screen(params[0], on_stderr=self.on_stderr) + elif command in 'K': + winterm.erase_line(params[0], on_stderr=self.on_stderr) + elif command in 'Hf': # cursor position - absolute + winterm.set_cursor_position(params, on_stderr=self.on_stderr) + elif command in 'ABCD': # cursor position - relative + n = params[0] + # A - up, B - down, C - forward, D - back + x, y = {'A': (0, -n), 'B': (0, n), 'C': (n, 0), 'D': (-n, 0)}[command] + winterm.cursor_adjust(x, y, on_stderr=self.on_stderr) + + + def convert_osc(self, text): + for match in self.ANSI_OSC_RE.finditer(text): + start, end = match.span() + text = text[:start] + text[end:] + paramstring, command = match.groups() + if command == BEL: + if paramstring.count(";") == 1: + params = paramstring.split(";") + # 0 - change title and icon (we will only change title) + # 1 - change icon (we don't support this) + # 2 - change title + if params[0] in '02': + winterm.set_title(params[1]) + return text + + + def flush(self): + self.wrapped.flush() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py new file mode 100644 index 00000000..d5fd4b71 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py @@ -0,0 +1,121 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import atexit +import contextlib +import sys + +from .ansitowin32 import AnsiToWin32 + + +def _wipe_internal_state_for_tests(): + global orig_stdout, orig_stderr + orig_stdout = None + orig_stderr = None + + global wrapped_stdout, wrapped_stderr + wrapped_stdout = None + wrapped_stderr = None + + global atexit_done + atexit_done = False + + global fixed_windows_console + fixed_windows_console = False + + try: + # no-op if it wasn't registered + atexit.unregister(reset_all) + except AttributeError: + # python 2: no atexit.unregister. Oh well, we did our best. + pass + + +def reset_all(): + if AnsiToWin32 is not None: # Issue #74: objects might become None at exit + AnsiToWin32(orig_stdout).reset_all() + + +def init(autoreset=False, convert=None, strip=None, wrap=True): + + if not wrap and any([autoreset, convert, strip]): + raise ValueError('wrap=False conflicts with any other arg=True') + + global wrapped_stdout, wrapped_stderr + global orig_stdout, orig_stderr + + orig_stdout = sys.stdout + orig_stderr = sys.stderr + + if sys.stdout is None: + wrapped_stdout = None + else: + sys.stdout = wrapped_stdout = \ + wrap_stream(orig_stdout, convert, strip, autoreset, wrap) + if sys.stderr is None: + wrapped_stderr = None + else: + sys.stderr = wrapped_stderr = \ + wrap_stream(orig_stderr, convert, strip, autoreset, wrap) + + global atexit_done + if not atexit_done: + atexit.register(reset_all) + atexit_done = True + + +def deinit(): + if orig_stdout is not None: + sys.stdout = orig_stdout + if orig_stderr is not None: + sys.stderr = orig_stderr + + +def just_fix_windows_console(): + global fixed_windows_console + + if sys.platform != "win32": + return + if fixed_windows_console: + return + if wrapped_stdout is not None or wrapped_stderr is not None: + # Someone already ran init() and it did stuff, so we won't second-guess them + return + + # On newer versions of Windows, AnsiToWin32.__init__ will implicitly enable the + # native ANSI support in the console as a side-effect. We only need to actually + # replace sys.stdout/stderr if we're in the old-style conversion mode. + new_stdout = AnsiToWin32(sys.stdout, convert=None, strip=None, autoreset=False) + if new_stdout.convert: + sys.stdout = new_stdout + new_stderr = AnsiToWin32(sys.stderr, convert=None, strip=None, autoreset=False) + if new_stderr.convert: + sys.stderr = new_stderr + + fixed_windows_console = True + +@contextlib.contextmanager +def colorama_text(*args, **kwargs): + init(*args, **kwargs) + try: + yield + finally: + deinit() + + +def reinit(): + if wrapped_stdout is not None: + sys.stdout = wrapped_stdout + if wrapped_stderr is not None: + sys.stderr = wrapped_stderr + + +def wrap_stream(stream, convert, strip, autoreset, wrap): + if wrap: + wrapper = AnsiToWin32(stream, + convert=convert, strip=strip, autoreset=autoreset) + if wrapper.should_wrap(): + stream = wrapper.stream + return stream + + +# Use this for initial setup as well, to reduce code duplication +_wipe_internal_state_for_tests() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py new file mode 100644 index 00000000..8c5661e9 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py @@ -0,0 +1 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..081ca8c7c740204b0ce6bc91f64989453a3946d7 GIT binary patch literal 250 zcmZ8byN<#z5R7?9=p_DuhJqqlao3)%Il2=x&|4<#5eqwOc}-CMfgbS*d4wiS8E$&go8K|l@+QtDC%DKl3;df)by^y9m+sffc3xwVB5 Hz8%>U3d>3S literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..131239a2618ca671cc01b2df7688126047b6647d GIT binary patch literal 5519 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..050b14d9aeaea7106b881711aadfdbbb72b002ab GIT binary patch literal 11800 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 R(@DPS^!M!NzuLzE{6Fto7CQg{ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..71cf6336d7c19537c2c094b5f26b44710118f246 GIT binary patch literal 4956 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8416ecc72b6c01f44c3526c265896bc77482d868 GIT binary patch literal 6664 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 M(?C@CLxcnRZ@0dhUjP6A literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py new file mode 100644 index 00000000..0a20c80f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py @@ -0,0 +1,76 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main + +from ..ansi import Back, Fore, Style +from ..ansitowin32 import AnsiToWin32 + +stdout_orig = sys.stdout +stderr_orig = sys.stderr + + +class AnsiTest(TestCase): + + def setUp(self): + # sanity check: stdout should be a file or StringIO object. + # It will only be AnsiToWin32 if init() has previously wrapped it + self.assertNotEqual(type(sys.stdout), AnsiToWin32) + self.assertNotEqual(type(sys.stderr), AnsiToWin32) + + def tearDown(self): + sys.stdout = stdout_orig + sys.stderr = stderr_orig + + + def testForeAttributes(self): + self.assertEqual(Fore.BLACK, '\033[30m') + self.assertEqual(Fore.RED, '\033[31m') + self.assertEqual(Fore.GREEN, '\033[32m') + self.assertEqual(Fore.YELLOW, '\033[33m') + self.assertEqual(Fore.BLUE, '\033[34m') + self.assertEqual(Fore.MAGENTA, '\033[35m') + self.assertEqual(Fore.CYAN, '\033[36m') + self.assertEqual(Fore.WHITE, '\033[37m') + self.assertEqual(Fore.RESET, '\033[39m') + + # Check the light, extended versions. + self.assertEqual(Fore.LIGHTBLACK_EX, '\033[90m') + self.assertEqual(Fore.LIGHTRED_EX, '\033[91m') + self.assertEqual(Fore.LIGHTGREEN_EX, '\033[92m') + self.assertEqual(Fore.LIGHTYELLOW_EX, '\033[93m') + self.assertEqual(Fore.LIGHTBLUE_EX, '\033[94m') + self.assertEqual(Fore.LIGHTMAGENTA_EX, '\033[95m') + self.assertEqual(Fore.LIGHTCYAN_EX, '\033[96m') + self.assertEqual(Fore.LIGHTWHITE_EX, '\033[97m') + + + def testBackAttributes(self): + self.assertEqual(Back.BLACK, '\033[40m') + self.assertEqual(Back.RED, '\033[41m') + self.assertEqual(Back.GREEN, '\033[42m') + self.assertEqual(Back.YELLOW, '\033[43m') + self.assertEqual(Back.BLUE, '\033[44m') + self.assertEqual(Back.MAGENTA, '\033[45m') + self.assertEqual(Back.CYAN, '\033[46m') + self.assertEqual(Back.WHITE, '\033[47m') + self.assertEqual(Back.RESET, '\033[49m') + + # Check the light, extended versions. + self.assertEqual(Back.LIGHTBLACK_EX, '\033[100m') + self.assertEqual(Back.LIGHTRED_EX, '\033[101m') + self.assertEqual(Back.LIGHTGREEN_EX, '\033[102m') + self.assertEqual(Back.LIGHTYELLOW_EX, '\033[103m') + self.assertEqual(Back.LIGHTBLUE_EX, '\033[104m') + self.assertEqual(Back.LIGHTMAGENTA_EX, '\033[105m') + self.assertEqual(Back.LIGHTCYAN_EX, '\033[106m') + self.assertEqual(Back.LIGHTWHITE_EX, '\033[107m') + + + def testStyleAttributes(self): + self.assertEqual(Style.DIM, '\033[2m') + self.assertEqual(Style.NORMAL, '\033[22m') + self.assertEqual(Style.BRIGHT, '\033[1m') + + +if __name__ == '__main__': + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py new file mode 100644 index 00000000..91ca551f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py @@ -0,0 +1,294 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from io import StringIO, TextIOWrapper +from unittest import TestCase, main +try: + from contextlib import ExitStack +except ImportError: + # python 2 + from contextlib2 import ExitStack + +try: + from unittest.mock import MagicMock, Mock, patch +except ImportError: + from mock import MagicMock, Mock, patch + +from ..ansitowin32 import AnsiToWin32, StreamWrapper +from ..win32 import ENABLE_VIRTUAL_TERMINAL_PROCESSING +from .utils import osname + + +class StreamWrapperTest(TestCase): + + def testIsAProxy(self): + mockStream = Mock() + wrapper = StreamWrapper(mockStream, None) + self.assertTrue( wrapper.random_attr is mockStream.random_attr ) + + def testDelegatesWrite(self): + mockStream = Mock() + mockConverter = Mock() + wrapper = StreamWrapper(mockStream, mockConverter) + wrapper.write('hello') + self.assertTrue(mockConverter.write.call_args, (('hello',), {})) + + def testDelegatesContext(self): + mockConverter = Mock() + s = StringIO() + with StreamWrapper(s, mockConverter) as fp: + fp.write(u'hello') + self.assertTrue(s.closed) + + def testProxyNoContextManager(self): + mockStream = MagicMock() + mockStream.__enter__.side_effect = AttributeError() + mockConverter = Mock() + with self.assertRaises(AttributeError) as excinfo: + with StreamWrapper(mockStream, mockConverter) as wrapper: + wrapper.write('hello') + + def test_closed_shouldnt_raise_on_closed_stream(self): + stream = StringIO() + stream.close() + wrapper = StreamWrapper(stream, None) + self.assertEqual(wrapper.closed, True) + + def test_closed_shouldnt_raise_on_detached_stream(self): + stream = TextIOWrapper(StringIO()) + stream.detach() + wrapper = StreamWrapper(stream, None) + self.assertEqual(wrapper.closed, True) + +class AnsiToWin32Test(TestCase): + + def testInit(self): + mockStdout = Mock() + auto = Mock() + stream = AnsiToWin32(mockStdout, autoreset=auto) + self.assertEqual(stream.wrapped, mockStdout) + self.assertEqual(stream.autoreset, auto) + + @patch('colorama.ansitowin32.winterm', None) + @patch('colorama.ansitowin32.winapi_test', lambda *_: True) + def testStripIsTrueOnWindows(self): + with osname('nt'): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout) + self.assertTrue(stream.strip) + + def testStripIsFalseOffWindows(self): + with osname('posix'): + mockStdout = Mock(closed=False) + stream = AnsiToWin32(mockStdout) + self.assertFalse(stream.strip) + + def testWriteStripsAnsi(self): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout) + stream.wrapped = Mock() + stream.write_and_convert = Mock() + stream.strip = True + + stream.write('abc') + + self.assertFalse(stream.wrapped.write.called) + self.assertEqual(stream.write_and_convert.call_args, (('abc',), {})) + + def testWriteDoesNotStripAnsi(self): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout) + stream.wrapped = Mock() + stream.write_and_convert = Mock() + stream.strip = False + stream.convert = False + + stream.write('abc') + + self.assertFalse(stream.write_and_convert.called) + self.assertEqual(stream.wrapped.write.call_args, (('abc',), {})) + + def assert_autoresets(self, convert, autoreset=True): + stream = AnsiToWin32(Mock()) + stream.convert = convert + stream.reset_all = Mock() + stream.autoreset = autoreset + stream.winterm = Mock() + + stream.write('abc') + + self.assertEqual(stream.reset_all.called, autoreset) + + def testWriteAutoresets(self): + self.assert_autoresets(convert=True) + self.assert_autoresets(convert=False) + self.assert_autoresets(convert=True, autoreset=False) + self.assert_autoresets(convert=False, autoreset=False) + + def testWriteAndConvertWritesPlainText(self): + stream = AnsiToWin32(Mock()) + stream.write_and_convert( 'abc' ) + self.assertEqual( stream.wrapped.write.call_args, (('abc',), {}) ) + + def testWriteAndConvertStripsAllValidAnsi(self): + stream = AnsiToWin32(Mock()) + stream.call_win32 = Mock() + data = [ + 'abc\033[mdef', + 'abc\033[0mdef', + 'abc\033[2mdef', + 'abc\033[02mdef', + 'abc\033[002mdef', + 'abc\033[40mdef', + 'abc\033[040mdef', + 'abc\033[0;1mdef', + 'abc\033[40;50mdef', + 'abc\033[50;30;40mdef', + 'abc\033[Adef', + 'abc\033[0Gdef', + 'abc\033[1;20;128Hdef', + ] + for datum in data: + stream.wrapped.write.reset_mock() + stream.write_and_convert( datum ) + self.assertEqual( + [args[0] for args in stream.wrapped.write.call_args_list], + [ ('abc',), ('def',) ] + ) + + def testWriteAndConvertSkipsEmptySnippets(self): + stream = AnsiToWin32(Mock()) + stream.call_win32 = Mock() + stream.write_and_convert( '\033[40m\033[41m' ) + self.assertFalse( stream.wrapped.write.called ) + + def testWriteAndConvertCallsWin32WithParamsAndCommand(self): + stream = AnsiToWin32(Mock()) + stream.convert = True + stream.call_win32 = Mock() + stream.extract_params = Mock(return_value='params') + data = { + 'abc\033[adef': ('a', 'params'), + 'abc\033[;;bdef': ('b', 'params'), + 'abc\033[0cdef': ('c', 'params'), + 'abc\033[;;0;;Gdef': ('G', 'params'), + 'abc\033[1;20;128Hdef': ('H', 'params'), + } + for datum, expected in data.items(): + stream.call_win32.reset_mock() + stream.write_and_convert( datum ) + self.assertEqual( stream.call_win32.call_args[0], expected ) + + def test_reset_all_shouldnt_raise_on_closed_orig_stdout(self): + stream = StringIO() + converter = AnsiToWin32(stream) + stream.close() + + converter.reset_all() + + def test_wrap_shouldnt_raise_on_closed_orig_stdout(self): + stream = StringIO() + stream.close() + with \ + patch("colorama.ansitowin32.os.name", "nt"), \ + patch("colorama.ansitowin32.winapi_test", lambda: True): + converter = AnsiToWin32(stream) + self.assertTrue(converter.strip) + self.assertFalse(converter.convert) + + def test_wrap_shouldnt_raise_on_missing_closed_attr(self): + with \ + patch("colorama.ansitowin32.os.name", "nt"), \ + patch("colorama.ansitowin32.winapi_test", lambda: True): + converter = AnsiToWin32(object()) + self.assertTrue(converter.strip) + self.assertFalse(converter.convert) + + def testExtractParams(self): + stream = AnsiToWin32(Mock()) + data = { + '': (0,), + ';;': (0,), + '2': (2,), + ';;002;;': (2,), + '0;1': (0, 1), + ';;003;;456;;': (3, 456), + '11;22;33;44;55': (11, 22, 33, 44, 55), + } + for datum, expected in data.items(): + self.assertEqual(stream.extract_params('m', datum), expected) + + def testCallWin32UsesLookup(self): + listener = Mock() + stream = AnsiToWin32(listener) + stream.win32_calls = { + 1: (lambda *_, **__: listener(11),), + 2: (lambda *_, **__: listener(22),), + 3: (lambda *_, **__: listener(33),), + } + stream.call_win32('m', (3, 1, 99, 2)) + self.assertEqual( + [a[0][0] for a in listener.call_args_list], + [33, 11, 22] ) + + def test_osc_codes(self): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout, convert=True) + with patch('colorama.ansitowin32.winterm') as winterm: + data = [ + '\033]0\x07', # missing arguments + '\033]0;foo\x08', # wrong OSC command + '\033]0;colorama_test_title\x07', # should work + '\033]1;colorama_test_title\x07', # wrong set command + '\033]2;colorama_test_title\x07', # should work + '\033]' + ';' * 64 + '\x08', # see issue #247 + ] + for code in data: + stream.write(code) + self.assertEqual(winterm.set_title.call_count, 2) + + def test_native_windows_ansi(self): + with ExitStack() as stack: + def p(a, b): + stack.enter_context(patch(a, b, create=True)) + # Pretend to be on Windows + p("colorama.ansitowin32.os.name", "nt") + p("colorama.ansitowin32.winapi_test", lambda: True) + p("colorama.win32.winapi_test", lambda: True) + p("colorama.winterm.win32.windll", "non-None") + p("colorama.winterm.get_osfhandle", lambda _: 1234) + + # Pretend that our mock stream has native ANSI support + p( + "colorama.winterm.win32.GetConsoleMode", + lambda _: ENABLE_VIRTUAL_TERMINAL_PROCESSING, + ) + SetConsoleMode = Mock() + p("colorama.winterm.win32.SetConsoleMode", SetConsoleMode) + + stdout = Mock() + stdout.closed = False + stdout.isatty.return_value = True + stdout.fileno.return_value = 1 + + # Our fake console says it has native vt support, so AnsiToWin32 should + # enable that support and do nothing else. + stream = AnsiToWin32(stdout) + SetConsoleMode.assert_called_with(1234, ENABLE_VIRTUAL_TERMINAL_PROCESSING) + self.assertFalse(stream.strip) + self.assertFalse(stream.convert) + self.assertFalse(stream.should_wrap()) + + # Now let's pretend we're on an old Windows console, that doesn't have + # native ANSI support. + p("colorama.winterm.win32.GetConsoleMode", lambda _: 0) + SetConsoleMode = Mock() + p("colorama.winterm.win32.SetConsoleMode", SetConsoleMode) + + stream = AnsiToWin32(stdout) + SetConsoleMode.assert_called_with(1234, ENABLE_VIRTUAL_TERMINAL_PROCESSING) + self.assertTrue(stream.strip) + self.assertTrue(stream.convert) + self.assertTrue(stream.should_wrap()) + + +if __name__ == '__main__': + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py new file mode 100644 index 00000000..89f9b075 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py @@ -0,0 +1,189 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main, skipUnless + +try: + from unittest.mock import patch, Mock +except ImportError: + from mock import patch, Mock + +from ..ansitowin32 import StreamWrapper +from ..initialise import init, just_fix_windows_console, _wipe_internal_state_for_tests +from .utils import osname, replace_by + +orig_stdout = sys.stdout +orig_stderr = sys.stderr + + +class InitTest(TestCase): + + @skipUnless(sys.stdout.isatty(), "sys.stdout is not a tty") + def setUp(self): + # sanity check + self.assertNotWrapped() + + def tearDown(self): + _wipe_internal_state_for_tests() + sys.stdout = orig_stdout + sys.stderr = orig_stderr + + def assertWrapped(self): + self.assertIsNot(sys.stdout, orig_stdout, 'stdout should be wrapped') + self.assertIsNot(sys.stderr, orig_stderr, 'stderr should be wrapped') + self.assertTrue(isinstance(sys.stdout, StreamWrapper), + 'bad stdout wrapper') + self.assertTrue(isinstance(sys.stderr, StreamWrapper), + 'bad stderr wrapper') + + def assertNotWrapped(self): + self.assertIs(sys.stdout, orig_stdout, 'stdout should not be wrapped') + self.assertIs(sys.stderr, orig_stderr, 'stderr should not be wrapped') + + @patch('colorama.initialise.reset_all') + @patch('colorama.ansitowin32.winapi_test', lambda *_: True) + @patch('colorama.ansitowin32.enable_vt_processing', lambda *_: False) + def testInitWrapsOnWindows(self, _): + with osname("nt"): + init() + self.assertWrapped() + + @patch('colorama.initialise.reset_all') + @patch('colorama.ansitowin32.winapi_test', lambda *_: False) + def testInitDoesntWrapOnEmulatedWindows(self, _): + with osname("nt"): + init() + self.assertNotWrapped() + + def testInitDoesntWrapOnNonWindows(self): + with osname("posix"): + init() + self.assertNotWrapped() + + def testInitDoesntWrapIfNone(self): + with replace_by(None): + init() + # We can't use assertNotWrapped here because replace_by(None) + # changes stdout/stderr already. + self.assertIsNone(sys.stdout) + self.assertIsNone(sys.stderr) + + def testInitAutoresetOnWrapsOnAllPlatforms(self): + with osname("posix"): + init(autoreset=True) + self.assertWrapped() + + def testInitWrapOffDoesntWrapOnWindows(self): + with osname("nt"): + init(wrap=False) + self.assertNotWrapped() + + def testInitWrapOffIncompatibleWithAutoresetOn(self): + self.assertRaises(ValueError, lambda: init(autoreset=True, wrap=False)) + + @patch('colorama.win32.SetConsoleTextAttribute') + @patch('colorama.initialise.AnsiToWin32') + def testAutoResetPassedOn(self, mockATW32, _): + with osname("nt"): + init(autoreset=True) + self.assertEqual(len(mockATW32.call_args_list), 2) + self.assertEqual(mockATW32.call_args_list[1][1]['autoreset'], True) + self.assertEqual(mockATW32.call_args_list[0][1]['autoreset'], True) + + @patch('colorama.initialise.AnsiToWin32') + def testAutoResetChangeable(self, mockATW32): + with osname("nt"): + init() + + init(autoreset=True) + self.assertEqual(len(mockATW32.call_args_list), 4) + self.assertEqual(mockATW32.call_args_list[2][1]['autoreset'], True) + self.assertEqual(mockATW32.call_args_list[3][1]['autoreset'], True) + + init() + self.assertEqual(len(mockATW32.call_args_list), 6) + self.assertEqual( + mockATW32.call_args_list[4][1]['autoreset'], False) + self.assertEqual( + mockATW32.call_args_list[5][1]['autoreset'], False) + + + @patch('colorama.initialise.atexit.register') + def testAtexitRegisteredOnlyOnce(self, mockRegister): + init() + self.assertTrue(mockRegister.called) + mockRegister.reset_mock() + init() + self.assertFalse(mockRegister.called) + + +class JustFixWindowsConsoleTest(TestCase): + def _reset(self): + _wipe_internal_state_for_tests() + sys.stdout = orig_stdout + sys.stderr = orig_stderr + + def tearDown(self): + self._reset() + + @patch("colorama.ansitowin32.winapi_test", lambda: True) + def testJustFixWindowsConsole(self): + if sys.platform != "win32": + # just_fix_windows_console should be a no-op + just_fix_windows_console() + self.assertIs(sys.stdout, orig_stdout) + self.assertIs(sys.stderr, orig_stderr) + else: + def fake_std(): + # Emulate stdout=not a tty, stderr=tty + # to check that we handle both cases correctly + stdout = Mock() + stdout.closed = False + stdout.isatty.return_value = False + stdout.fileno.return_value = 1 + sys.stdout = stdout + + stderr = Mock() + stderr.closed = False + stderr.isatty.return_value = True + stderr.fileno.return_value = 2 + sys.stderr = stderr + + for native_ansi in [False, True]: + with patch( + 'colorama.ansitowin32.enable_vt_processing', + lambda *_: native_ansi + ): + self._reset() + fake_std() + + # Regular single-call test + prev_stdout = sys.stdout + prev_stderr = sys.stderr + just_fix_windows_console() + self.assertIs(sys.stdout, prev_stdout) + if native_ansi: + self.assertIs(sys.stderr, prev_stderr) + else: + self.assertIsNot(sys.stderr, prev_stderr) + + # second call without resetting is always a no-op + prev_stdout = sys.stdout + prev_stderr = sys.stderr + just_fix_windows_console() + self.assertIs(sys.stdout, prev_stdout) + self.assertIs(sys.stderr, prev_stderr) + + self._reset() + fake_std() + + # If init() runs first, just_fix_windows_console should be a no-op + init() + prev_stdout = sys.stdout + prev_stderr = sys.stderr + just_fix_windows_console() + self.assertIs(prev_stdout, sys.stdout) + self.assertIs(prev_stderr, sys.stderr) + + +if __name__ == '__main__': + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py new file mode 100644 index 00000000..0f84e4be --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py @@ -0,0 +1,57 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main + +from ..ansitowin32 import StreamWrapper, AnsiToWin32 +from .utils import pycharm, replace_by, replace_original_by, StreamTTY, StreamNonTTY + + +def is_a_tty(stream): + return StreamWrapper(stream, None).isatty() + +class IsattyTest(TestCase): + + def test_TTY(self): + tty = StreamTTY() + self.assertTrue(is_a_tty(tty)) + with pycharm(): + self.assertTrue(is_a_tty(tty)) + + def test_nonTTY(self): + non_tty = StreamNonTTY() + self.assertFalse(is_a_tty(non_tty)) + with pycharm(): + self.assertFalse(is_a_tty(non_tty)) + + def test_withPycharm(self): + with pycharm(): + self.assertTrue(is_a_tty(sys.stderr)) + self.assertTrue(is_a_tty(sys.stdout)) + + def test_withPycharmTTYOverride(self): + tty = StreamTTY() + with pycharm(), replace_by(tty): + self.assertTrue(is_a_tty(tty)) + + def test_withPycharmNonTTYOverride(self): + non_tty = StreamNonTTY() + with pycharm(), replace_by(non_tty): + self.assertFalse(is_a_tty(non_tty)) + + def test_withPycharmNoneOverride(self): + with pycharm(): + with replace_by(None), replace_original_by(None): + self.assertFalse(is_a_tty(None)) + self.assertFalse(is_a_tty(StreamNonTTY())) + self.assertTrue(is_a_tty(StreamTTY())) + + def test_withPycharmStreamWrapped(self): + with pycharm(): + self.assertTrue(AnsiToWin32(StreamTTY()).stream.isatty()) + self.assertFalse(AnsiToWin32(StreamNonTTY()).stream.isatty()) + self.assertTrue(AnsiToWin32(sys.stdout).stream.isatty()) + self.assertTrue(AnsiToWin32(sys.stderr).stream.isatty()) + + +if __name__ == '__main__': + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py new file mode 100644 index 00000000..472fafb4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py @@ -0,0 +1,49 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from contextlib import contextmanager +from io import StringIO +import sys +import os + + +class StreamTTY(StringIO): + def isatty(self): + return True + +class StreamNonTTY(StringIO): + def isatty(self): + return False + +@contextmanager +def osname(name): + orig = os.name + os.name = name + yield + os.name = orig + +@contextmanager +def replace_by(stream): + orig_stdout = sys.stdout + orig_stderr = sys.stderr + sys.stdout = stream + sys.stderr = stream + yield + sys.stdout = orig_stdout + sys.stderr = orig_stderr + +@contextmanager +def replace_original_by(stream): + orig_stdout = sys.__stdout__ + orig_stderr = sys.__stderr__ + sys.__stdout__ = stream + sys.__stderr__ = stream + yield + sys.__stdout__ = orig_stdout + sys.__stderr__ = orig_stderr + +@contextmanager +def pycharm(): + os.environ["PYCHARM_HOSTED"] = "1" + non_tty = StreamNonTTY() + with replace_by(non_tty), replace_original_by(non_tty): + yield + del os.environ["PYCHARM_HOSTED"] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py new file mode 100644 index 00000000..d0955f9e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py @@ -0,0 +1,131 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main, skipUnless + +try: + from unittest.mock import Mock, patch +except ImportError: + from mock import Mock, patch + +from ..winterm import WinColor, WinStyle, WinTerm + + +class WinTermTest(TestCase): + + @patch('colorama.winterm.win32') + def testInit(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 7 + 6 * 16 + 8 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + self.assertEqual(term._fore, 7) + self.assertEqual(term._back, 6) + self.assertEqual(term._style, 8) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testGetAttrs(self): + term = WinTerm() + + term._fore = 0 + term._back = 0 + term._style = 0 + self.assertEqual(term.get_attrs(), 0) + + term._fore = WinColor.YELLOW + self.assertEqual(term.get_attrs(), WinColor.YELLOW) + + term._back = WinColor.MAGENTA + self.assertEqual( + term.get_attrs(), + WinColor.YELLOW + WinColor.MAGENTA * 16) + + term._style = WinStyle.BRIGHT + self.assertEqual( + term.get_attrs(), + WinColor.YELLOW + WinColor.MAGENTA * 16 + WinStyle.BRIGHT) + + @patch('colorama.winterm.win32') + def testResetAll(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 1 + 2 * 16 + 8 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + + term.set_console = Mock() + term._fore = -1 + term._back = -1 + term._style = -1 + + term.reset_all() + + self.assertEqual(term._fore, 1) + self.assertEqual(term._back, 2) + self.assertEqual(term._style, 8) + self.assertEqual(term.set_console.called, True) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testFore(self): + term = WinTerm() + term.set_console = Mock() + term._fore = 0 + + term.fore(5) + + self.assertEqual(term._fore, 5) + self.assertEqual(term.set_console.called, True) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testBack(self): + term = WinTerm() + term.set_console = Mock() + term._back = 0 + + term.back(5) + + self.assertEqual(term._back, 5) + self.assertEqual(term.set_console.called, True) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testStyle(self): + term = WinTerm() + term.set_console = Mock() + term._style = 0 + + term.style(22) + + self.assertEqual(term._style, 22) + self.assertEqual(term.set_console.called, True) + + @patch('colorama.winterm.win32') + def testSetConsole(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 0 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + term.windll = Mock() + + term.set_console() + + self.assertEqual( + mockWin32.SetConsoleTextAttribute.call_args, + ((mockWin32.STDOUT, term.get_attrs()), {}) + ) + + @patch('colorama.winterm.win32') + def testSetConsoleOnStderr(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 0 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + term.windll = Mock() + + term.set_console(on_stderr=True) + + self.assertEqual( + mockWin32.SetConsoleTextAttribute.call_args, + ((mockWin32.STDERR, term.get_attrs()), {}) + ) + + +if __name__ == '__main__': + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py new file mode 100644 index 00000000..841b0e27 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py @@ -0,0 +1,180 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. + +# from winbase.h +STDOUT = -11 +STDERR = -12 + +ENABLE_VIRTUAL_TERMINAL_PROCESSING = 0x0004 + +try: + import ctypes + from ctypes import LibraryLoader + windll = LibraryLoader(ctypes.WinDLL) + from ctypes import wintypes +except (AttributeError, ImportError): + windll = None + SetConsoleTextAttribute = lambda *_: None + winapi_test = lambda *_: None +else: + from ctypes import byref, Structure, c_char, POINTER + + COORD = wintypes._COORD + + class CONSOLE_SCREEN_BUFFER_INFO(Structure): + """struct in wincon.h.""" + _fields_ = [ + ("dwSize", COORD), + ("dwCursorPosition", COORD), + ("wAttributes", wintypes.WORD), + ("srWindow", wintypes.SMALL_RECT), + ("dwMaximumWindowSize", COORD), + ] + def __str__(self): + return '(%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d)' % ( + self.dwSize.Y, self.dwSize.X + , self.dwCursorPosition.Y, self.dwCursorPosition.X + , self.wAttributes + , self.srWindow.Top, self.srWindow.Left, self.srWindow.Bottom, self.srWindow.Right + , self.dwMaximumWindowSize.Y, self.dwMaximumWindowSize.X + ) + + _GetStdHandle = windll.kernel32.GetStdHandle + _GetStdHandle.argtypes = [ + wintypes.DWORD, + ] + _GetStdHandle.restype = wintypes.HANDLE + + _GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo + _GetConsoleScreenBufferInfo.argtypes = [ + wintypes.HANDLE, + POINTER(CONSOLE_SCREEN_BUFFER_INFO), + ] + _GetConsoleScreenBufferInfo.restype = wintypes.BOOL + + _SetConsoleTextAttribute = windll.kernel32.SetConsoleTextAttribute + _SetConsoleTextAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + ] + _SetConsoleTextAttribute.restype = wintypes.BOOL + + _SetConsoleCursorPosition = windll.kernel32.SetConsoleCursorPosition + _SetConsoleCursorPosition.argtypes = [ + wintypes.HANDLE, + COORD, + ] + _SetConsoleCursorPosition.restype = wintypes.BOOL + + _FillConsoleOutputCharacterA = windll.kernel32.FillConsoleOutputCharacterA + _FillConsoleOutputCharacterA.argtypes = [ + wintypes.HANDLE, + c_char, + wintypes.DWORD, + COORD, + POINTER(wintypes.DWORD), + ] + _FillConsoleOutputCharacterA.restype = wintypes.BOOL + + _FillConsoleOutputAttribute = windll.kernel32.FillConsoleOutputAttribute + _FillConsoleOutputAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + wintypes.DWORD, + COORD, + POINTER(wintypes.DWORD), + ] + _FillConsoleOutputAttribute.restype = wintypes.BOOL + + _SetConsoleTitleW = windll.kernel32.SetConsoleTitleW + _SetConsoleTitleW.argtypes = [ + wintypes.LPCWSTR + ] + _SetConsoleTitleW.restype = wintypes.BOOL + + _GetConsoleMode = windll.kernel32.GetConsoleMode + _GetConsoleMode.argtypes = [ + wintypes.HANDLE, + POINTER(wintypes.DWORD) + ] + _GetConsoleMode.restype = wintypes.BOOL + + _SetConsoleMode = windll.kernel32.SetConsoleMode + _SetConsoleMode.argtypes = [ + wintypes.HANDLE, + wintypes.DWORD + ] + _SetConsoleMode.restype = wintypes.BOOL + + def _winapi_test(handle): + csbi = CONSOLE_SCREEN_BUFFER_INFO() + success = _GetConsoleScreenBufferInfo( + handle, byref(csbi)) + return bool(success) + + def winapi_test(): + return any(_winapi_test(h) for h in + (_GetStdHandle(STDOUT), _GetStdHandle(STDERR))) + + def GetConsoleScreenBufferInfo(stream_id=STDOUT): + handle = _GetStdHandle(stream_id) + csbi = CONSOLE_SCREEN_BUFFER_INFO() + success = _GetConsoleScreenBufferInfo( + handle, byref(csbi)) + return csbi + + def SetConsoleTextAttribute(stream_id, attrs): + handle = _GetStdHandle(stream_id) + return _SetConsoleTextAttribute(handle, attrs) + + def SetConsoleCursorPosition(stream_id, position, adjust=True): + position = COORD(*position) + # If the position is out of range, do nothing. + if position.Y <= 0 or position.X <= 0: + return + # Adjust for Windows' SetConsoleCursorPosition: + # 1. being 0-based, while ANSI is 1-based. + # 2. expecting (x,y), while ANSI uses (y,x). + adjusted_position = COORD(position.Y - 1, position.X - 1) + if adjust: + # Adjust for viewport's scroll position + sr = GetConsoleScreenBufferInfo(STDOUT).srWindow + adjusted_position.Y += sr.Top + adjusted_position.X += sr.Left + # Resume normal processing + handle = _GetStdHandle(stream_id) + return _SetConsoleCursorPosition(handle, adjusted_position) + + def FillConsoleOutputCharacter(stream_id, char, length, start): + handle = _GetStdHandle(stream_id) + char = c_char(char.encode()) + length = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + # Note that this is hard-coded for ANSI (vs wide) bytes. + success = _FillConsoleOutputCharacterA( + handle, char, length, start, byref(num_written)) + return num_written.value + + def FillConsoleOutputAttribute(stream_id, attr, length, start): + ''' FillConsoleOutputAttribute( hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten )''' + handle = _GetStdHandle(stream_id) + attribute = wintypes.WORD(attr) + length = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + # Note that this is hard-coded for ANSI (vs wide) bytes. + return _FillConsoleOutputAttribute( + handle, attribute, length, start, byref(num_written)) + + def SetConsoleTitle(title): + return _SetConsoleTitleW(title) + + def GetConsoleMode(handle): + mode = wintypes.DWORD() + success = _GetConsoleMode(handle, byref(mode)) + if not success: + raise ctypes.WinError() + return mode.value + + def SetConsoleMode(handle, mode): + success = _SetConsoleMode(handle, mode) + if not success: + raise ctypes.WinError() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py new file mode 100644 index 00000000..aad867e8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py @@ -0,0 +1,195 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +try: + from msvcrt import get_osfhandle +except ImportError: + def get_osfhandle(_): + raise OSError("This isn't windows!") + + +from . import win32 + +# from wincon.h +class WinColor(object): + BLACK = 0 + BLUE = 1 + GREEN = 2 + CYAN = 3 + RED = 4 + MAGENTA = 5 + YELLOW = 6 + GREY = 7 + +# from wincon.h +class WinStyle(object): + NORMAL = 0x00 # dim text, dim background + BRIGHT = 0x08 # bright text, dim background + BRIGHT_BACKGROUND = 0x80 # dim text, bright background + +class WinTerm(object): + + def __init__(self): + self._default = win32.GetConsoleScreenBufferInfo(win32.STDOUT).wAttributes + self.set_attrs(self._default) + self._default_fore = self._fore + self._default_back = self._back + self._default_style = self._style + # In order to emulate LIGHT_EX in windows, we borrow the BRIGHT style. + # So that LIGHT_EX colors and BRIGHT style do not clobber each other, + # we track them separately, since LIGHT_EX is overwritten by Fore/Back + # and BRIGHT is overwritten by Style codes. + self._light = 0 + + def get_attrs(self): + return self._fore + self._back * 16 + (self._style | self._light) + + def set_attrs(self, value): + self._fore = value & 7 + self._back = (value >> 4) & 7 + self._style = value & (WinStyle.BRIGHT | WinStyle.BRIGHT_BACKGROUND) + + def reset_all(self, on_stderr=None): + self.set_attrs(self._default) + self.set_console(attrs=self._default) + self._light = 0 + + def fore(self, fore=None, light=False, on_stderr=False): + if fore is None: + fore = self._default_fore + self._fore = fore + # Emulate LIGHT_EX with BRIGHT Style + if light: + self._light |= WinStyle.BRIGHT + else: + self._light &= ~WinStyle.BRIGHT + self.set_console(on_stderr=on_stderr) + + def back(self, back=None, light=False, on_stderr=False): + if back is None: + back = self._default_back + self._back = back + # Emulate LIGHT_EX with BRIGHT_BACKGROUND Style + if light: + self._light |= WinStyle.BRIGHT_BACKGROUND + else: + self._light &= ~WinStyle.BRIGHT_BACKGROUND + self.set_console(on_stderr=on_stderr) + + def style(self, style=None, on_stderr=False): + if style is None: + style = self._default_style + self._style = style + self.set_console(on_stderr=on_stderr) + + def set_console(self, attrs=None, on_stderr=False): + if attrs is None: + attrs = self.get_attrs() + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleTextAttribute(handle, attrs) + + def get_position(self, handle): + position = win32.GetConsoleScreenBufferInfo(handle).dwCursorPosition + # Because Windows coordinates are 0-based, + # and win32.SetConsoleCursorPosition expects 1-based. + position.X += 1 + position.Y += 1 + return position + + def set_cursor_position(self, position=None, on_stderr=False): + if position is None: + # I'm not currently tracking the position, so there is no default. + # position = self.get_position() + return + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleCursorPosition(handle, position) + + def cursor_adjust(self, x, y, on_stderr=False): + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + position = self.get_position(handle) + adjusted_position = (position.Y + y, position.X + x) + win32.SetConsoleCursorPosition(handle, adjusted_position, adjust=False) + + def erase_screen(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the screen. + # 1 should clear from the cursor to the beginning of the screen. + # 2 should clear the entire screen, and move cursor to (1,1) + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + # get the number of character cells in the current buffer + cells_in_screen = csbi.dwSize.X * csbi.dwSize.Y + # get number of character cells before current cursor position + cells_before_cursor = csbi.dwSize.X * csbi.dwCursorPosition.Y + csbi.dwCursorPosition.X + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = cells_in_screen - cells_before_cursor + elif mode == 1: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_before_cursor + elif mode == 2: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_in_screen + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + if mode == 2: + # put the cursor where needed + win32.SetConsoleCursorPosition(handle, (1, 1)) + + def erase_line(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the line. + # 1 should clear from the cursor to the beginning of the line. + # 2 should clear the entire line. + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = csbi.dwSize.X - csbi.dwCursorPosition.X + elif mode == 1: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwCursorPosition.X + elif mode == 2: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwSize.X + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + + def set_title(self, title): + win32.SetConsoleTitle(title) + + +def enable_vt_processing(fd): + if win32.windll is None or not win32.winapi_test(): + return False + + try: + handle = get_osfhandle(fd) + mode = win32.GetConsoleMode(handle) + win32.SetConsoleMode( + handle, + mode | win32.ENABLE_VIRTUAL_TERMINAL_PROCESSING, + ) + + mode = win32.GetConsoleMode(handle) + if mode & win32.ENABLE_VIRTUAL_TERMINAL_PROCESSING: + return True + # Can get TypeError in testsuite where 'fd' is a Mock() + except (OSError, TypeError): + return False diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 00000000..e999438f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import logging + +__version__ = '0.3.8' + + +class DistlibException(Exception): + pass + + +try: + from logging import NullHandler +except ImportError: # pragma: no cover + + class NullHandler(logging.Handler): + + def handle(self, record): + pass + + def emit(self, record): + pass + + def createLock(self): + self.lock = None + + +logger = logging.getLogger(__name__) +logger.addHandler(NullHandler()) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72ebec483d98bb00af8909d456c1cde8fbc065a3 GIT binary patch literal 1321 zcmaJ=J8u&~5S~4sFFreOULoXRlu%eGJ{}DPLP8{hNWl#>adSHEHufcF@3D7DxQHS} z3JQ=2DZ*cf@+*+&s3L@jPC`PWqO;-%p;XMAZ5$9{i*ILV=kd+#?1#R-Ea19w@Ur?; z0r*CT&eGaK^F0c?;DEzCD1)PvnF9C0No|3na%Df&vMZ-_vPpYTQ_Cs?1vo7CcY<|y zp4n$@51s4F=ejo?2|d;Q_Mv0TAYxO%)6*bFC^qKTFnwDDmK|8-$+wWbT>G{m>QlQXv&* zOtWs)xM{{&)2s<+)g!srG@q_oUh8HLnv~+?jZqafZd9x%(&e5p%Y&6r_{Jl#6s}v6 z=V$pE_k>^L^)P==tjd5J50ij1kA?68!>#!qr`s7@tOr(P6xVot%|J$mAB9y>zgfI~ z!wB4v&-j+TVpVux_^xl5XyyoMI4$~yX}WbcG|i$PNfn7DK=lS`ge^E!Gg9y93oOo+ zRz2^5Rd+lt|J|$!wC*;`VOvm6ISQgm(@{=GY9TFiXk_DX{jq3hnnYq3BG_XknL&9^ ziPeC6OR*-oEu<5WS3WOkMq{m-FxePB#j4oSoyYqo)vyVNy@N>&|4%4sE|ZjU0Hr_j zsJ!Ne8-u5_kme$JoFSkV*`0Yo8K)5-sb?4k`Y6xABz>|XNRnYYRZrL}1ttekACP~$ zu&gb)74ikV-8g?bZC5`=E|eDw92t8t`)WR6Q7UMX%9iw1We)*Sko2eI2my7q^`_Lr zF`+VGE8_rVkxy2u+0XmNmUuAs6>}qEd0|l{jbOFv$RCABSB3{SjJYM8QhifXrvfp z&3<45U;EE(=8iSS^w-fb;MU0WvGFhJRAU0NmtI`>tdAb(qi=70)TcMKL(o3M&;bl> zU)`Dc1o@whNywZzf*cz^R`vAw>&mX!7C!*RMjDkTNmq8Xy9&HhM(<9h-c2yXUn;&K Aw*UYD literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..03f989fcb2f4858512d85c040425895ef3a29d55 GIT binary patch literal 45657 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 W6;PS&?CI{#vSVfX|D}{i`u_k^uQ>w% literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e5cb28bfb06ace79c86f8fdfeff9c11f9f92e054 GIT binary patch literal 66079 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 Rdu?Zcci-={@>sY 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 E0Jf(L4gdfE literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7cdd51fa815864583b9e1e65d6902d51b3f69d1e GIT binary patch literal 60210 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 N$AqQq7ov#me**;^yO96@ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9a23ec93b17e7d7767924838741d9a31c3a8c013 GIT binary patch literal 15177 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 C+TL0K literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3d771b41caa7cb6ee98e521bb78e1e641d448a84 GIT binary patch literal 7734 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..833a8deb8ffb6cde1b6d11d58fb2e7867f8b10ec GIT binary patch literal 41851 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 ikz_l@+_x`k?6cXIaJpebx~ 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8e91b7a0161e25ffd472bc6189d985406f678c5 GIT binary patch literal 17377 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7522c16ae407c79ab93a29216df58a9f9f80023f GIT binary patch literal 19632 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 ...' % action) + + thedir = convert_path(words[1]) + patterns = [convert_path(word) for word in words[2:]] + + elif action in ('graft', 'prune'): + if len(words) != 2: + raise DistlibException( + '%r expects a single ' % action) + + dir_pattern = convert_path(words[1]) + + else: + raise DistlibException('unknown action %r' % action) + + return action, patterns, thedir, dir_pattern + + def _include_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Select strings (presumably filenames) from 'self.files' that + match 'pattern', a Unix-style wildcard (glob) pattern. + + Patterns are not quite the same as implemented by the 'fnmatch' + module: '*' and '?' match non-special characters, where "special" + is platform-dependent: slash on Unix; colon, slash, and backslash on + DOS/Windows; and colon on Mac OS. + + If 'anchor' is true (the default), then the pattern match is more + stringent: "*.py" will match "foo.py" but not "foo/bar.py". If + 'anchor' is false, both of these will match. + + If 'prefix' is supplied, then only filenames starting with 'prefix' + (itself a pattern) and ending with 'pattern', with anything in between + them, will match. 'anchor' is ignored in this case. + + If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and + 'pattern' is assumed to be either a string containing a regex or a + regex object -- no translation is done, the regex is just compiled + and used as-is. + + Selected strings will be added to self.files. + + Return True if files are found. + """ + # XXX docstring lying about what the special chars are? + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + + # delayed loading of allfiles list + if self.allfiles is None: + self.findall() + + for name in self.allfiles: + if pattern_re.search(name): + self.files.add(name) + found = True + return found + + def _exclude_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Remove strings (presumably filenames) from 'files' that match + 'pattern'. + + Other parameters are the same as for 'include_pattern()', above. + The list 'self.files' is modified in place. Return True if files are + found. + + This API is public to allow e.g. exclusion of SCM subdirs, e.g. when + packaging source distributions + """ + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + for f in list(self.files): + if pattern_re.search(f): + self.files.remove(f) + found = True + return found + + def _translate_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Translate a shell-like wildcard pattern to a compiled regular + expression. + + Return the compiled regex. If 'is_regex' true, + then 'pattern' is directly compiled to a regex (if it's a string) + or just returned as-is (assumes it's a regex object). + """ + if is_regex: + if isinstance(pattern, str): + return re.compile(pattern) + else: + return pattern + + if _PYTHON_VERSION > (3, 2): + # ditch start and end characters + start, _, end = self._glob_to_re('_').partition('_') + + if pattern: + pattern_re = self._glob_to_re(pattern) + if _PYTHON_VERSION > (3, 2): + assert pattern_re.startswith(start) and pattern_re.endswith(end) + else: + pattern_re = '' + + base = re.escape(os.path.join(self.base, '')) + if prefix is not None: + # ditch end of pattern character + if _PYTHON_VERSION <= (3, 2): + empty_pattern = self._glob_to_re('') + prefix_re = self._glob_to_re(prefix)[:-len(empty_pattern)] + else: + prefix_re = self._glob_to_re(prefix) + assert prefix_re.startswith(start) and prefix_re.endswith(end) + prefix_re = prefix_re[len(start): len(prefix_re) - len(end)] + sep = os.sep + if os.sep == '\\': + sep = r'\\' + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + sep.join((prefix_re, + '.*' + pattern_re)) + else: + pattern_re = pattern_re[len(start): len(pattern_re) - len(end)] + pattern_re = r'%s%s%s%s.*%s%s' % (start, base, prefix_re, sep, + pattern_re, end) + else: # no prefix -- respect anchor flag + if anchor: + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + pattern_re + else: + pattern_re = r'%s%s%s' % (start, base, pattern_re[len(start):]) + + return re.compile(pattern_re) + + def _glob_to_re(self, pattern): + """Translate a shell-like glob pattern to a regular expression. + + Return a string containing the regex. Differs from + 'fnmatch.translate()' in that '*' does not match "special characters" + (which are platform-specific). + """ + pattern_re = fnmatch.translate(pattern) + + # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which + # IMHO is wrong -- '?' and '*' aren't supposed to match slash in Unix, + # and by extension they shouldn't match such "special characters" under + # any OS. So change all non-escaped dots in the RE to match any + # character except the special characters (currently: just os.sep). + sep = os.sep + if os.sep == '\\': + # we're using a regex to manipulate a regex, so we need + # to escape the backslash twice + sep = r'\\\\' + escaped = r'\1[^%s]' % sep + pattern_re = re.sub(r'((? y, + '!=': lambda x, y: x != y, + '<': lambda x, y: x < y, + '<=': lambda x, y: x == y or x < y, + '>': lambda x, y: x > y, + '>=': lambda x, y: x == y or x > y, + 'and': lambda x, y: x and y, + 'or': lambda x, y: x or y, + 'in': lambda x, y: x in y, + 'not in': lambda x, y: x not in y, + } + + def evaluate(self, expr, context): + """ + Evaluate a marker expression returned by the :func:`parse_requirement` + function in the specified context. + """ + if isinstance(expr, string_types): + if expr[0] in '\'"': + result = expr[1:-1] + else: + if expr not in context: + raise SyntaxError('unknown variable: %s' % expr) + result = context[expr] + else: + assert isinstance(expr, dict) + op = expr['op'] + if op not in self.operations: + raise NotImplementedError('op not implemented: %s' % op) + elhs = expr['lhs'] + erhs = expr['rhs'] + if _is_literal(expr['lhs']) and _is_literal(expr['rhs']): + raise SyntaxError('invalid comparison: %s %s %s' % + (elhs, op, erhs)) + + lhs = self.evaluate(elhs, context) + rhs = self.evaluate(erhs, context) + if ((_is_version_marker(elhs) or _is_version_marker(erhs)) + and op in ('<', '<=', '>', '>=', '===', '==', '!=', '~=')): + lhs = LV(lhs) + rhs = LV(rhs) + elif _is_version_marker(elhs) and op in ('in', 'not in'): + lhs = LV(lhs) + rhs = _get_versions(rhs) + result = self.operations[op](lhs, rhs) + return result + + +_DIGITS = re.compile(r'\d+\.\d+') + + +def default_context(): + + def format_full_version(info): + version = '%s.%s.%s' % (info.major, info.minor, info.micro) + kind = info.releaselevel + if kind != 'final': + version += kind[0] + str(info.serial) + return version + + if hasattr(sys, 'implementation'): + implementation_version = format_full_version( + sys.implementation.version) + implementation_name = sys.implementation.name + else: + implementation_version = '0' + implementation_name = '' + + ppv = platform.python_version() + m = _DIGITS.match(ppv) + pv = m.group(0) + result = { + 'implementation_name': implementation_name, + 'implementation_version': implementation_version, + 'os_name': os.name, + 'platform_machine': platform.machine(), + 'platform_python_implementation': platform.python_implementation(), + 'platform_release': platform.release(), + 'platform_system': platform.system(), + 'platform_version': platform.version(), + 'platform_in_venv': str(in_venv()), + 'python_full_version': ppv, + 'python_version': pv, + 'sys_platform': sys.platform, + } + return result + + +DEFAULT_CONTEXT = default_context() +del default_context + +evaluator = Evaluator() + + +def interpret(marker, execution_context=None): + """ + Interpret a marker and return a result depending on environment. + + :param marker: The marker to interpret. + :type marker: str + :param execution_context: The context used for name lookup. + :type execution_context: mapping + """ + try: + expr, rest = parse_marker(marker) + except Exception as e: + raise SyntaxError('Unable to interpret marker syntax: %s: %s' % + (marker, e)) + if rest and rest[0] != '#': + raise SyntaxError('unexpected trailing data in marker: %s: %s' % + (marker, rest)) + context = dict(DEFAULT_CONTEXT) + if execution_context: + context.update(execution_context) + return evaluator.evaluate(expr, context) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py new file mode 100644 index 00000000..7189aeef --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py @@ -0,0 +1,1068 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Implementation of the Metadata for Python packages PEPs. + +Supports all metadata formats (1.0, 1.1, 1.2, 1.3/2.1 and 2.2). +""" +from __future__ import unicode_literals + +import codecs +from email import message_from_file +import json +import logging +import re + + +from . import DistlibException, __version__ +from .compat import StringIO, string_types, text_type +from .markers import interpret +from .util import extract_by_key, get_extras +from .version import get_scheme, PEP440_VERSION_RE + +logger = logging.getLogger(__name__) + + +class MetadataMissingError(DistlibException): + """A required metadata is missing""" + + +class MetadataConflictError(DistlibException): + """Attempt to read or write metadata fields that are conflictual.""" + + +class MetadataUnrecognizedVersionError(DistlibException): + """Unknown metadata version number.""" + + +class MetadataInvalidError(DistlibException): + """A metadata value is invalid""" + +# public API of this module +__all__ = ['Metadata', 'PKG_INFO_ENCODING', 'PKG_INFO_PREFERRED_VERSION'] + +# Encoding used for the PKG-INFO files +PKG_INFO_ENCODING = 'utf-8' + +# preferred version. Hopefully will be changed +# to 1.2 once PEP 345 is supported everywhere +PKG_INFO_PREFERRED_VERSION = '1.1' + +_LINE_PREFIX_1_2 = re.compile('\n \\|') +_LINE_PREFIX_PRE_1_2 = re.compile('\n ') +_241_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'License') + +_314_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'License', 'Classifier', 'Download-URL', 'Obsoletes', + 'Provides', 'Requires') + +_314_MARKERS = ('Obsoletes', 'Provides', 'Requires', 'Classifier', + 'Download-URL') + +_345_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', + 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External') + +_345_MARKERS = ('Provides-Dist', 'Requires-Dist', 'Requires-Python', + 'Obsoletes-Dist', 'Requires-External', 'Maintainer', + 'Maintainer-email', 'Project-URL') + +_426_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', + 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External', 'Private-Version', + 'Obsoleted-By', 'Setup-Requires-Dist', 'Extension', + 'Provides-Extra') + +_426_MARKERS = ('Private-Version', 'Provides-Extra', 'Obsoleted-By', + 'Setup-Requires-Dist', 'Extension') + +# See issue #106: Sometimes 'Requires' and 'Provides' occur wrongly in +# the metadata. Include them in the tuple literal below to allow them +# (for now). +# Ditto for Obsoletes - see issue #140. +_566_FIELDS = _426_FIELDS + ('Description-Content-Type', + 'Requires', 'Provides', 'Obsoletes') + +_566_MARKERS = ('Description-Content-Type',) + +_643_MARKERS = ('Dynamic', 'License-File') + +_643_FIELDS = _566_FIELDS + _643_MARKERS + +_ALL_FIELDS = set() +_ALL_FIELDS.update(_241_FIELDS) +_ALL_FIELDS.update(_314_FIELDS) +_ALL_FIELDS.update(_345_FIELDS) +_ALL_FIELDS.update(_426_FIELDS) +_ALL_FIELDS.update(_566_FIELDS) +_ALL_FIELDS.update(_643_FIELDS) + +EXTRA_RE = re.compile(r'''extra\s*==\s*("([^"]+)"|'([^']+)')''') + + +def _version2fieldlist(version): + if version == '1.0': + return _241_FIELDS + elif version == '1.1': + return _314_FIELDS + elif version == '1.2': + return _345_FIELDS + elif version in ('1.3', '2.1'): + # avoid adding field names if already there + return _345_FIELDS + tuple(f for f in _566_FIELDS if f not in _345_FIELDS) + elif version == '2.0': + raise ValueError('Metadata 2.0 is withdrawn and not supported') + # return _426_FIELDS + elif version == '2.2': + return _643_FIELDS + raise MetadataUnrecognizedVersionError(version) + + +def _best_version(fields): + """Detect the best version depending on the fields used.""" + def _has_marker(keys, markers): + return any(marker in keys for marker in markers) + + keys = [key for key, value in fields.items() if value not in ([], 'UNKNOWN', None)] + possible_versions = ['1.0', '1.1', '1.2', '1.3', '2.1', '2.2'] # 2.0 removed + + # first let's try to see if a field is not part of one of the version + for key in keys: + if key not in _241_FIELDS and '1.0' in possible_versions: + possible_versions.remove('1.0') + logger.debug('Removed 1.0 due to %s', key) + if key not in _314_FIELDS and '1.1' in possible_versions: + possible_versions.remove('1.1') + logger.debug('Removed 1.1 due to %s', key) + if key not in _345_FIELDS and '1.2' in possible_versions: + possible_versions.remove('1.2') + logger.debug('Removed 1.2 due to %s', key) + if key not in _566_FIELDS and '1.3' in possible_versions: + possible_versions.remove('1.3') + logger.debug('Removed 1.3 due to %s', key) + if key not in _566_FIELDS and '2.1' in possible_versions: + if key != 'Description': # In 2.1, description allowed after headers + possible_versions.remove('2.1') + logger.debug('Removed 2.1 due to %s', key) + if key not in _643_FIELDS and '2.2' in possible_versions: + possible_versions.remove('2.2') + logger.debug('Removed 2.2 due to %s', key) + # if key not in _426_FIELDS and '2.0' in possible_versions: + # possible_versions.remove('2.0') + # logger.debug('Removed 2.0 due to %s', key) + + # possible_version contains qualified versions + if len(possible_versions) == 1: + return possible_versions[0] # found ! + elif len(possible_versions) == 0: + logger.debug('Out of options - unknown metadata set: %s', fields) + raise MetadataConflictError('Unknown metadata set') + + # let's see if one unique marker is found + is_1_1 = '1.1' in possible_versions and _has_marker(keys, _314_MARKERS) + is_1_2 = '1.2' in possible_versions and _has_marker(keys, _345_MARKERS) + is_2_1 = '2.1' in possible_versions and _has_marker(keys, _566_MARKERS) + # is_2_0 = '2.0' in possible_versions and _has_marker(keys, _426_MARKERS) + is_2_2 = '2.2' in possible_versions and _has_marker(keys, _643_MARKERS) + if int(is_1_1) + int(is_1_2) + int(is_2_1) + int(is_2_2) > 1: + raise MetadataConflictError('You used incompatible 1.1/1.2/2.1/2.2 fields') + + # we have the choice, 1.0, or 1.2, 2.1 or 2.2 + # - 1.0 has a broken Summary field but works with all tools + # - 1.1 is to avoid + # - 1.2 fixes Summary but has little adoption + # - 2.1 adds more features + # - 2.2 is the latest + if not is_1_1 and not is_1_2 and not is_2_1 and not is_2_2: + # we couldn't find any specific marker + if PKG_INFO_PREFERRED_VERSION in possible_versions: + return PKG_INFO_PREFERRED_VERSION + if is_1_1: + return '1.1' + if is_1_2: + return '1.2' + if is_2_1: + return '2.1' + # if is_2_2: + # return '2.2' + + return '2.2' + +# This follows the rules about transforming keys as described in +# https://www.python.org/dev/peps/pep-0566/#id17 +_ATTR2FIELD = { + name.lower().replace("-", "_"): name for name in _ALL_FIELDS +} +_FIELD2ATTR = {field: attr for attr, field in _ATTR2FIELD.items()} + +_PREDICATE_FIELDS = ('Requires-Dist', 'Obsoletes-Dist', 'Provides-Dist') +_VERSIONS_FIELDS = ('Requires-Python',) +_VERSION_FIELDS = ('Version',) +_LISTFIELDS = ('Platform', 'Classifier', 'Obsoletes', + 'Requires', 'Provides', 'Obsoletes-Dist', + 'Provides-Dist', 'Requires-Dist', 'Requires-External', + 'Project-URL', 'Supported-Platform', 'Setup-Requires-Dist', + 'Provides-Extra', 'Extension', 'License-File') +_LISTTUPLEFIELDS = ('Project-URL',) + +_ELEMENTSFIELD = ('Keywords',) + +_UNICODEFIELDS = ('Author', 'Maintainer', 'Summary', 'Description') + +_MISSING = object() + +_FILESAFE = re.compile('[^A-Za-z0-9.]+') + + +def _get_name_and_version(name, version, for_filename=False): + """Return the distribution name with version. + + If for_filename is true, return a filename-escaped form.""" + if for_filename: + # For both name and version any runs of non-alphanumeric or '.' + # characters are replaced with a single '-'. Additionally any + # spaces in the version string become '.' + name = _FILESAFE.sub('-', name) + version = _FILESAFE.sub('-', version.replace(' ', '.')) + return '%s-%s' % (name, version) + + +class LegacyMetadata(object): + """The legacy metadata of a release. + + Supports versions 1.0, 1.1, 1.2, 2.0 and 1.3/2.1 (auto-detected). You can + instantiate the class with one of these arguments (or none): + - *path*, the path to a metadata file + - *fileobj* give a file-like object with metadata as content + - *mapping* is a dict-like object + - *scheme* is a version scheme name + """ + # TODO document the mapping API and UNKNOWN default key + + def __init__(self, path=None, fileobj=None, mapping=None, + scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._fields = {} + self.requires_files = [] + self._dependencies = None + self.scheme = scheme + if path is not None: + self.read(path) + elif fileobj is not None: + self.read_file(fileobj) + elif mapping is not None: + self.update(mapping) + self.set_metadata_version() + + def set_metadata_version(self): + self._fields['Metadata-Version'] = _best_version(self._fields) + + def _write_field(self, fileobj, name, value): + fileobj.write('%s: %s\n' % (name, value)) + + def __getitem__(self, name): + return self.get(name) + + def __setitem__(self, name, value): + return self.set(name, value) + + def __delitem__(self, name): + field_name = self._convert_name(name) + try: + del self._fields[field_name] + except KeyError: + raise KeyError(name) + + def __contains__(self, name): + return (name in self._fields or + self._convert_name(name) in self._fields) + + def _convert_name(self, name): + if name in _ALL_FIELDS: + return name + name = name.replace('-', '_').lower() + return _ATTR2FIELD.get(name, name) + + def _default_value(self, name): + if name in _LISTFIELDS or name in _ELEMENTSFIELD: + return [] + return 'UNKNOWN' + + def _remove_line_prefix(self, value): + if self.metadata_version in ('1.0', '1.1'): + return _LINE_PREFIX_PRE_1_2.sub('\n', value) + else: + return _LINE_PREFIX_1_2.sub('\n', value) + + def __getattr__(self, name): + if name in _ATTR2FIELD: + return self[name] + raise AttributeError(name) + + # + # Public API + # + +# dependencies = property(_get_dependencies, _set_dependencies) + + def get_fullname(self, filesafe=False): + """Return the distribution name with version. + + If filesafe is true, return a filename-escaped form.""" + return _get_name_and_version(self['Name'], self['Version'], filesafe) + + def is_field(self, name): + """return True if name is a valid metadata key""" + name = self._convert_name(name) + return name in _ALL_FIELDS + + def is_multi_field(self, name): + name = self._convert_name(name) + return name in _LISTFIELDS + + def read(self, filepath): + """Read the metadata values from a file path.""" + fp = codecs.open(filepath, 'r', encoding='utf-8') + try: + self.read_file(fp) + finally: + fp.close() + + def read_file(self, fileob): + """Read the metadata values from a file object.""" + msg = message_from_file(fileob) + self._fields['Metadata-Version'] = msg['metadata-version'] + + # When reading, get all the fields we can + for field in _ALL_FIELDS: + if field not in msg: + continue + if field in _LISTFIELDS: + # we can have multiple lines + values = msg.get_all(field) + if field in _LISTTUPLEFIELDS and values is not None: + values = [tuple(value.split(',')) for value in values] + self.set(field, values) + else: + # single line + value = msg[field] + if value is not None and value != 'UNKNOWN': + self.set(field, value) + + # PEP 566 specifies that the body be used for the description, if + # available + body = msg.get_payload() + self["Description"] = body if body else self["Description"] + # logger.debug('Attempting to set metadata for %s', self) + # self.set_metadata_version() + + def write(self, filepath, skip_unknown=False): + """Write the metadata fields to filepath.""" + fp = codecs.open(filepath, 'w', encoding='utf-8') + try: + self.write_file(fp, skip_unknown) + finally: + fp.close() + + def write_file(self, fileobject, skip_unknown=False): + """Write the PKG-INFO format data to a file object.""" + self.set_metadata_version() + + for field in _version2fieldlist(self['Metadata-Version']): + values = self.get(field) + if skip_unknown and values in ('UNKNOWN', [], ['UNKNOWN']): + continue + if field in _ELEMENTSFIELD: + self._write_field(fileobject, field, ','.join(values)) + continue + if field not in _LISTFIELDS: + if field == 'Description': + if self.metadata_version in ('1.0', '1.1'): + values = values.replace('\n', '\n ') + else: + values = values.replace('\n', '\n |') + values = [values] + + if field in _LISTTUPLEFIELDS: + values = [','.join(value) for value in values] + + for value in values: + self._write_field(fileobject, field, value) + + def update(self, other=None, **kwargs): + """Set metadata values from the given iterable `other` and kwargs. + + Behavior is like `dict.update`: If `other` has a ``keys`` method, + they are looped over and ``self[key]`` is assigned ``other[key]``. + Else, ``other`` is an iterable of ``(key, value)`` iterables. + + Keys that don't match a metadata field or that have an empty value are + dropped. + """ + def _set(key, value): + if key in _ATTR2FIELD and value: + self.set(self._convert_name(key), value) + + if not other: + # other is None or empty container + pass + elif hasattr(other, 'keys'): + for k in other.keys(): + _set(k, other[k]) + else: + for k, v in other: + _set(k, v) + + if kwargs: + for k, v in kwargs.items(): + _set(k, v) + + def set(self, name, value): + """Control then set a metadata field.""" + name = self._convert_name(name) + + if ((name in _ELEMENTSFIELD or name == 'Platform') and + not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [v.strip() for v in value.split(',')] + else: + value = [] + elif (name in _LISTFIELDS and + not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [value] + else: + value = [] + + if logger.isEnabledFor(logging.WARNING): + project_name = self['Name'] + + scheme = get_scheme(self.scheme) + if name in _PREDICATE_FIELDS and value is not None: + for v in value: + # check that the values are valid + if not scheme.is_valid_matcher(v.split(';')[0]): + logger.warning( + "'%s': '%s' is not valid (field '%s')", + project_name, v, name) + # FIXME this rejects UNKNOWN, is that right? + elif name in _VERSIONS_FIELDS and value is not None: + if not scheme.is_valid_constraint_list(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", + project_name, value, name) + elif name in _VERSION_FIELDS and value is not None: + if not scheme.is_valid_version(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", + project_name, value, name) + + if name in _UNICODEFIELDS: + if name == 'Description': + value = self._remove_line_prefix(value) + + self._fields[name] = value + + def get(self, name, default=_MISSING): + """Get a metadata field.""" + name = self._convert_name(name) + if name not in self._fields: + if default is _MISSING: + default = self._default_value(name) + return default + if name in _UNICODEFIELDS: + value = self._fields[name] + return value + elif name in _LISTFIELDS: + value = self._fields[name] + if value is None: + return [] + res = [] + for val in value: + if name not in _LISTTUPLEFIELDS: + res.append(val) + else: + # That's for Project-URL + res.append((val[0], val[1])) + return res + + elif name in _ELEMENTSFIELD: + value = self._fields[name] + if isinstance(value, string_types): + return value.split(',') + return self._fields[name] + + def check(self, strict=False): + """Check if the metadata is compliant. If strict is True then raise if + no Name or Version are provided""" + self.set_metadata_version() + + # XXX should check the versions (if the file was loaded) + missing, warnings = [], [] + + for attr in ('Name', 'Version'): # required by PEP 345 + if attr not in self: + missing.append(attr) + + if strict and missing != []: + msg = 'missing required metadata: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + + for attr in ('Home-page', 'Author'): + if attr not in self: + missing.append(attr) + + # checking metadata 1.2 (XXX needs to check 1.1, 1.0) + if self['Metadata-Version'] != '1.2': + return missing, warnings + + scheme = get_scheme(self.scheme) + + def are_valid_constraints(value): + for v in value: + if not scheme.is_valid_matcher(v.split(';')[0]): + return False + return True + + for fields, controller in ((_PREDICATE_FIELDS, are_valid_constraints), + (_VERSIONS_FIELDS, + scheme.is_valid_constraint_list), + (_VERSION_FIELDS, + scheme.is_valid_version)): + for field in fields: + value = self.get(field, None) + if value is not None and not controller(value): + warnings.append("Wrong value for '%s': %s" % (field, value)) + + return missing, warnings + + def todict(self, skip_missing=False): + """Return fields as a dict. + + Field names will be converted to use the underscore-lowercase style + instead of hyphen-mixed case (i.e. home_page instead of Home-page). + This is as per https://www.python.org/dev/peps/pep-0566/#id17. + """ + self.set_metadata_version() + + fields = _version2fieldlist(self['Metadata-Version']) + + data = {} + + for field_name in fields: + if not skip_missing or field_name in self._fields: + key = _FIELD2ATTR[field_name] + if key != 'project_url': + data[key] = self[field_name] + else: + data[key] = [','.join(u) for u in self[field_name]] + + return data + + def add_requirements(self, requirements): + if self['Metadata-Version'] == '1.1': + # we can't have 1.1 metadata *and* Setuptools requires + for field in ('Obsoletes', 'Requires', 'Provides'): + if field in self: + del self[field] + self['Requires-Dist'] += requirements + + # Mapping API + # TODO could add iter* variants + + def keys(self): + return list(_version2fieldlist(self['Metadata-Version'])) + + def __iter__(self): + for key in self.keys(): + yield key + + def values(self): + return [self[key] for key in self.keys()] + + def items(self): + return [(key, self[key]) for key in self.keys()] + + def __repr__(self): + return '<%s %s %s>' % (self.__class__.__name__, self.name, + self.version) + + +METADATA_FILENAME = 'pydist.json' +WHEEL_METADATA_FILENAME = 'metadata.json' +LEGACY_METADATA_FILENAME = 'METADATA' + + +class Metadata(object): + """ + The metadata of a release. This implementation uses 2.1 + metadata where possible. If not possible, it wraps a LegacyMetadata + instance which handles the key-value metadata format. + """ + + METADATA_VERSION_MATCHER = re.compile(r'^\d+(\.\d+)*$') + + NAME_MATCHER = re.compile('^[0-9A-Z]([0-9A-Z_.-]*[0-9A-Z])?$', re.I) + + FIELDNAME_MATCHER = re.compile('^[A-Z]([0-9A-Z-]*[0-9A-Z])?$', re.I) + + VERSION_MATCHER = PEP440_VERSION_RE + + SUMMARY_MATCHER = re.compile('.{1,2047}') + + METADATA_VERSION = '2.0' + + GENERATOR = 'distlib (%s)' % __version__ + + MANDATORY_KEYS = { + 'name': (), + 'version': (), + 'summary': ('legacy',), + } + + INDEX_KEYS = ('name version license summary description author ' + 'author_email keywords platform home_page classifiers ' + 'download_url') + + DEPENDENCY_KEYS = ('extras run_requires test_requires build_requires ' + 'dev_requires provides meta_requires obsoleted_by ' + 'supports_environments') + + SYNTAX_VALIDATORS = { + 'metadata_version': (METADATA_VERSION_MATCHER, ()), + 'name': (NAME_MATCHER, ('legacy',)), + 'version': (VERSION_MATCHER, ('legacy',)), + 'summary': (SUMMARY_MATCHER, ('legacy',)), + 'dynamic': (FIELDNAME_MATCHER, ('legacy',)), + } + + __slots__ = ('_legacy', '_data', 'scheme') + + def __init__(self, path=None, fileobj=None, mapping=None, + scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._legacy = None + self._data = None + self.scheme = scheme + #import pdb; pdb.set_trace() + if mapping is not None: + try: + self._validate_mapping(mapping, scheme) + self._data = mapping + except MetadataUnrecognizedVersionError: + self._legacy = LegacyMetadata(mapping=mapping, scheme=scheme) + self.validate() + else: + data = None + if path: + with open(path, 'rb') as f: + data = f.read() + elif fileobj: + data = fileobj.read() + if data is None: + # Initialised with no args - to be added + self._data = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + else: + if not isinstance(data, text_type): + data = data.decode('utf-8') + try: + self._data = json.loads(data) + self._validate_mapping(self._data, scheme) + except ValueError: + # Note: MetadataUnrecognizedVersionError does not + # inherit from ValueError (it's a DistlibException, + # which should not inherit from ValueError). + # The ValueError comes from the json.load - if that + # succeeds and we get a validation error, we want + # that to propagate + self._legacy = LegacyMetadata(fileobj=StringIO(data), + scheme=scheme) + self.validate() + + common_keys = set(('name', 'version', 'license', 'keywords', 'summary')) + + none_list = (None, list) + none_dict = (None, dict) + + mapped_keys = { + 'run_requires': ('Requires-Dist', list), + 'build_requires': ('Setup-Requires-Dist', list), + 'dev_requires': none_list, + 'test_requires': none_list, + 'meta_requires': none_list, + 'extras': ('Provides-Extra', list), + 'modules': none_list, + 'namespaces': none_list, + 'exports': none_dict, + 'commands': none_dict, + 'classifiers': ('Classifier', list), + 'source_url': ('Download-URL', None), + 'metadata_version': ('Metadata-Version', None), + } + + del none_list, none_dict + + def __getattribute__(self, key): + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, maker = mapped[key] + if self._legacy: + if lk is None: + result = None if maker is None else maker() + else: + result = self._legacy.get(lk) + else: + value = None if maker is None else maker() + if key not in ('commands', 'exports', 'modules', 'namespaces', + 'classifiers'): + result = self._data.get(key, value) + else: + # special cases for PEP 459 + sentinel = object() + result = sentinel + d = self._data.get('extensions') + if d: + if key == 'commands': + result = d.get('python.commands', value) + elif key == 'classifiers': + d = d.get('python.details') + if d: + result = d.get(key, value) + else: + d = d.get('python.exports') + if not d: + d = self._data.get('python.exports') + if d: + result = d.get(key, value) + if result is sentinel: + result = value + elif key not in common: + result = object.__getattribute__(self, key) + elif self._legacy: + result = self._legacy.get(key) + else: + result = self._data.get(key) + return result + + def _validate_value(self, key, value, scheme=None): + if key in self.SYNTAX_VALIDATORS: + pattern, exclusions = self.SYNTAX_VALIDATORS[key] + if (scheme or self.scheme) not in exclusions: + m = pattern.match(value) + if not m: + raise MetadataInvalidError("'%s' is an invalid value for " + "the '%s' property" % (value, + key)) + + def __setattr__(self, key, value): + self._validate_value(key, value) + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, _ = mapped[key] + if self._legacy: + if lk is None: + raise NotImplementedError + self._legacy[lk] = value + elif key not in ('commands', 'exports', 'modules', 'namespaces', + 'classifiers'): + self._data[key] = value + else: + # special cases for PEP 459 + d = self._data.setdefault('extensions', {}) + if key == 'commands': + d['python.commands'] = value + elif key == 'classifiers': + d = d.setdefault('python.details', {}) + d[key] = value + else: + d = d.setdefault('python.exports', {}) + d[key] = value + elif key not in common: + object.__setattr__(self, key, value) + else: + if key == 'keywords': + if isinstance(value, string_types): + value = value.strip() + if value: + value = value.split() + else: + value = [] + if self._legacy: + self._legacy[key] = value + else: + self._data[key] = value + + @property + def name_and_version(self): + return _get_name_and_version(self.name, self.version, True) + + @property + def provides(self): + if self._legacy: + result = self._legacy['Provides-Dist'] + else: + result = self._data.setdefault('provides', []) + s = '%s (%s)' % (self.name, self.version) + if s not in result: + result.append(s) + return result + + @provides.setter + def provides(self, value): + if self._legacy: + self._legacy['Provides-Dist'] = value + else: + self._data['provides'] = value + + def get_requirements(self, reqts, extras=None, env=None): + """ + Base method to get dependencies, given a set of extras + to satisfy and an optional environment context. + :param reqts: A list of sometimes-wanted dependencies, + perhaps dependent on extras and environment. + :param extras: A list of optional components being requested. + :param env: An optional environment for marker evaluation. + """ + if self._legacy: + result = reqts + else: + result = [] + extras = get_extras(extras or [], self.extras) + for d in reqts: + if 'extra' not in d and 'environment' not in d: + # unconditional + include = True + else: + if 'extra' not in d: + # Not extra-dependent - only environment-dependent + include = True + else: + include = d.get('extra') in extras + if include: + # Not excluded because of extras, check environment + marker = d.get('environment') + if marker: + include = interpret(marker, env) + if include: + result.extend(d['requires']) + for key in ('build', 'dev', 'test'): + e = ':%s:' % key + if e in extras: + extras.remove(e) + # A recursive call, but it should terminate since 'test' + # has been removed from the extras + reqts = self._data.get('%s_requires' % key, []) + result.extend(self.get_requirements(reqts, extras=extras, + env=env)) + return result + + @property + def dictionary(self): + if self._legacy: + return self._from_legacy() + return self._data + + @property + def dependencies(self): + if self._legacy: + raise NotImplementedError + else: + return extract_by_key(self._data, self.DEPENDENCY_KEYS) + + @dependencies.setter + def dependencies(self, value): + if self._legacy: + raise NotImplementedError + else: + self._data.update(value) + + def _validate_mapping(self, mapping, scheme): + if mapping.get('metadata_version') != self.METADATA_VERSION: + raise MetadataUnrecognizedVersionError() + missing = [] + for key, exclusions in self.MANDATORY_KEYS.items(): + if key not in mapping: + if scheme not in exclusions: + missing.append(key) + if missing: + msg = 'Missing metadata items: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + for k, v in mapping.items(): + self._validate_value(k, v, scheme) + + def validate(self): + if self._legacy: + missing, warnings = self._legacy.check(True) + if missing or warnings: + logger.warning('Metadata: missing: %s, warnings: %s', + missing, warnings) + else: + self._validate_mapping(self._data, self.scheme) + + def todict(self): + if self._legacy: + return self._legacy.todict(True) + else: + result = extract_by_key(self._data, self.INDEX_KEYS) + return result + + def _from_legacy(self): + assert self._legacy and not self._data + result = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + lmd = self._legacy.todict(True) # skip missing ones + for k in ('name', 'version', 'license', 'summary', 'description', + 'classifier'): + if k in lmd: + if k == 'classifier': + nk = 'classifiers' + else: + nk = k + result[nk] = lmd[k] + kw = lmd.get('Keywords', []) + if kw == ['']: + kw = [] + result['keywords'] = kw + keys = (('requires_dist', 'run_requires'), + ('setup_requires_dist', 'build_requires')) + for ok, nk in keys: + if ok in lmd and lmd[ok]: + result[nk] = [{'requires': lmd[ok]}] + result['provides'] = self.provides + author = {} + maintainer = {} + return result + + LEGACY_MAPPING = { + 'name': 'Name', + 'version': 'Version', + ('extensions', 'python.details', 'license'): 'License', + 'summary': 'Summary', + 'description': 'Description', + ('extensions', 'python.project', 'project_urls', 'Home'): 'Home-page', + ('extensions', 'python.project', 'contacts', 0, 'name'): 'Author', + ('extensions', 'python.project', 'contacts', 0, 'email'): 'Author-email', + 'source_url': 'Download-URL', + ('extensions', 'python.details', 'classifiers'): 'Classifier', + } + + def _to_legacy(self): + def process_entries(entries): + reqts = set() + for e in entries: + extra = e.get('extra') + env = e.get('environment') + rlist = e['requires'] + for r in rlist: + if not env and not extra: + reqts.add(r) + else: + marker = '' + if extra: + marker = 'extra == "%s"' % extra + if env: + if marker: + marker = '(%s) and %s' % (env, marker) + else: + marker = env + reqts.add(';'.join((r, marker))) + return reqts + + assert self._data and not self._legacy + result = LegacyMetadata() + nmd = self._data + # import pdb; pdb.set_trace() + for nk, ok in self.LEGACY_MAPPING.items(): + if not isinstance(nk, tuple): + if nk in nmd: + result[ok] = nmd[nk] + else: + d = nmd + found = True + for k in nk: + try: + d = d[k] + except (KeyError, IndexError): + found = False + break + if found: + result[ok] = d + r1 = process_entries(self.run_requires + self.meta_requires) + r2 = process_entries(self.build_requires + self.dev_requires) + if self.extras: + result['Provides-Extra'] = sorted(self.extras) + result['Requires-Dist'] = sorted(r1) + result['Setup-Requires-Dist'] = sorted(r2) + # TODO: any other fields wanted + return result + + def write(self, path=None, fileobj=None, legacy=False, skip_unknown=True): + if [path, fileobj].count(None) != 1: + raise ValueError('Exactly one of path and fileobj is needed') + self.validate() + if legacy: + if self._legacy: + legacy_md = self._legacy + else: + legacy_md = self._to_legacy() + if path: + legacy_md.write(path, skip_unknown=skip_unknown) + else: + legacy_md.write_file(fileobj, skip_unknown=skip_unknown) + else: + if self._legacy: + d = self._from_legacy() + else: + d = self._data + if fileobj: + json.dump(d, fileobj, ensure_ascii=True, indent=2, + sort_keys=True) + else: + with codecs.open(path, 'w', 'utf-8') as f: + json.dump(d, f, ensure_ascii=True, indent=2, + sort_keys=True) + + def add_requirements(self, requirements): + if self._legacy: + self._legacy.add_requirements(requirements) + else: + run_requires = self._data.setdefault('run_requires', []) + always = None + for entry in run_requires: + if 'environment' not in entry and 'extra' not in entry: + always = entry + break + if always is None: + always = { 'requires': requirements } + run_requires.insert(0, always) + else: + rset = set(always['requires']) | set(requirements) + always['requires'] = sorted(rset) + + def __repr__(self): + name = self.name or '(no name)' + version = self.version or 'no version' + return '<%s %s %s (%s)>' % (self.__class__.__name__, + self.metadata_version, name, version) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py new file mode 100644 index 00000000..fef52aa1 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py @@ -0,0 +1,358 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import bisect +import io +import logging +import os +import pkgutil +import sys +import types +import zipimport + +from . import DistlibException +from .util import cached_property, get_cache_base, Cache + +logger = logging.getLogger(__name__) + + +cache = None # created when needed + + +class ResourceCache(Cache): + def __init__(self, base=None): + if base is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('resource-cache')) + super(ResourceCache, self).__init__(base) + + def is_stale(self, resource, path): + """ + Is the cache stale for the given resource? + + :param resource: The :class:`Resource` being cached. + :param path: The path of the resource in the cache. + :return: True if the cache is stale. + """ + # Cache invalidation is a hard problem :-) + return True + + def get(self, resource): + """ + Get a resource into the cache, + + :param resource: A :class:`Resource` instance. + :return: The pathname of the resource in the cache. + """ + prefix, path = resource.finder.get_cache_info(resource) + if prefix is None: + result = path + else: + result = os.path.join(self.base, self.prefix_to_dir(prefix), path) + dirname = os.path.dirname(result) + if not os.path.isdir(dirname): + os.makedirs(dirname) + if not os.path.exists(result): + stale = True + else: + stale = self.is_stale(resource, path) + if stale: + # write the bytes of the resource to the cache location + with open(result, 'wb') as f: + f.write(resource.bytes) + return result + + +class ResourceBase(object): + def __init__(self, finder, name): + self.finder = finder + self.name = name + + +class Resource(ResourceBase): + """ + A class representing an in-package resource, such as a data file. This is + not normally instantiated by user code, but rather by a + :class:`ResourceFinder` which manages the resource. + """ + is_container = False # Backwards compatibility + + def as_stream(self): + """ + Get the resource as a stream. + + This is not a property to make it obvious that it returns a new stream + each time. + """ + return self.finder.get_stream(self) + + @cached_property + def file_path(self): + global cache + if cache is None: + cache = ResourceCache() + return cache.get(self) + + @cached_property + def bytes(self): + return self.finder.get_bytes(self) + + @cached_property + def size(self): + return self.finder.get_size(self) + + +class ResourceContainer(ResourceBase): + is_container = True # Backwards compatibility + + @cached_property + def resources(self): + return self.finder.get_resources(self) + + +class ResourceFinder(object): + """ + Resource finder for file system resources. + """ + + if sys.platform.startswith('java'): + skipped_extensions = ('.pyc', '.pyo', '.class') + else: + skipped_extensions = ('.pyc', '.pyo') + + def __init__(self, module): + self.module = module + self.loader = getattr(module, '__loader__', None) + self.base = os.path.dirname(getattr(module, '__file__', '')) + + def _adjust_path(self, path): + return os.path.realpath(path) + + def _make_path(self, resource_name): + # Issue #50: need to preserve type of path on Python 2.x + # like os.path._get_sep + if isinstance(resource_name, bytes): # should only happen on 2.x + sep = b'/' + else: + sep = '/' + parts = resource_name.split(sep) + parts.insert(0, self.base) + result = os.path.join(*parts) + return self._adjust_path(result) + + def _find(self, path): + return os.path.exists(path) + + def get_cache_info(self, resource): + return None, resource.path + + def find(self, resource_name): + path = self._make_path(resource_name) + if not self._find(path): + result = None + else: + if self._is_directory(path): + result = ResourceContainer(self, resource_name) + else: + result = Resource(self, resource_name) + result.path = path + return result + + def get_stream(self, resource): + return open(resource.path, 'rb') + + def get_bytes(self, resource): + with open(resource.path, 'rb') as f: + return f.read() + + def get_size(self, resource): + return os.path.getsize(resource.path) + + def get_resources(self, resource): + def allowed(f): + return (f != '__pycache__' and not + f.endswith(self.skipped_extensions)) + return set([f for f in os.listdir(resource.path) if allowed(f)]) + + def is_container(self, resource): + return self._is_directory(resource.path) + + _is_directory = staticmethod(os.path.isdir) + + def iterator(self, resource_name): + resource = self.find(resource_name) + if resource is not None: + todo = [resource] + while todo: + resource = todo.pop(0) + yield resource + if resource.is_container: + rname = resource.name + for name in resource.resources: + if not rname: + new_name = name + else: + new_name = '/'.join([rname, name]) + child = self.find(new_name) + if child.is_container: + todo.append(child) + else: + yield child + + +class ZipResourceFinder(ResourceFinder): + """ + Resource finder for resources in .zip files. + """ + def __init__(self, module): + super(ZipResourceFinder, self).__init__(module) + archive = self.loader.archive + self.prefix_len = 1 + len(archive) + # PyPy doesn't have a _files attr on zipimporter, and you can't set one + if hasattr(self.loader, '_files'): + self._files = self.loader._files + else: + self._files = zipimport._zip_directory_cache[archive] + self.index = sorted(self._files) + + def _adjust_path(self, path): + return path + + def _find(self, path): + path = path[self.prefix_len:] + if path in self._files: + result = True + else: + if path and path[-1] != os.sep: + path = path + os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + if not result: + logger.debug('_find failed: %r %r', path, self.loader.prefix) + else: + logger.debug('_find worked: %r %r', path, self.loader.prefix) + return result + + def get_cache_info(self, resource): + prefix = self.loader.archive + path = resource.path[1 + len(prefix):] + return prefix, path + + def get_bytes(self, resource): + return self.loader.get_data(resource.path) + + def get_stream(self, resource): + return io.BytesIO(self.get_bytes(resource)) + + def get_size(self, resource): + path = resource.path[self.prefix_len:] + return self._files[path][3] + + def get_resources(self, resource): + path = resource.path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + plen = len(path) + result = set() + i = bisect.bisect(self.index, path) + while i < len(self.index): + if not self.index[i].startswith(path): + break + s = self.index[i][plen:] + result.add(s.split(os.sep, 1)[0]) # only immediate children + i += 1 + return result + + def _is_directory(self, path): + path = path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + return result + + +_finder_registry = { + type(None): ResourceFinder, + zipimport.zipimporter: ZipResourceFinder +} + +try: + # In Python 3.6, _frozen_importlib -> _frozen_importlib_external + try: + import _frozen_importlib_external as _fi + except ImportError: + import _frozen_importlib as _fi + _finder_registry[_fi.SourceFileLoader] = ResourceFinder + _finder_registry[_fi.FileFinder] = ResourceFinder + # See issue #146 + _finder_registry[_fi.SourcelessFileLoader] = ResourceFinder + del _fi +except (ImportError, AttributeError): + pass + + +def register_finder(loader, finder_maker): + _finder_registry[type(loader)] = finder_maker + + +_finder_cache = {} + + +def finder(package): + """ + Return a resource finder for a package. + :param package: The name of the package. + :return: A :class:`ResourceFinder` instance for the package. + """ + if package in _finder_cache: + result = _finder_cache[package] + else: + if package not in sys.modules: + __import__(package) + module = sys.modules[package] + path = getattr(module, '__path__', None) + if path is None: + raise DistlibException('You cannot get a finder for a module, ' + 'only for a package') + loader = getattr(module, '__loader__', None) + finder_maker = _finder_registry.get(type(loader)) + if finder_maker is None: + raise DistlibException('Unable to locate finder for %r' % package) + result = finder_maker(module) + _finder_cache[package] = result + return result + + +_dummy_module = types.ModuleType(str('__dummy__')) + + +def finder_for_path(path): + """ + Return a resource finder for a path, which should represent a container. + + :param path: The path. + :return: A :class:`ResourceFinder` instance for the path. + """ + result = None + # calls any path hooks, gets importer into cache + pkgutil.get_importer(path) + loader = sys.path_importer_cache.get(path) + finder = _finder_registry.get(type(loader)) + if finder: + module = _dummy_module + module.__file__ = os.path.join(path, '') + module.__loader__ = loader + result = finder(module) + return result diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py new file mode 100644 index 00000000..cfa45d2a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py @@ -0,0 +1,452 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from io import BytesIO +import logging +import os +import re +import struct +import sys +import time +from zipfile import ZipInfo + +from .compat import sysconfig, detect_encoding, ZipFile +from .resources import finder +from .util import (FileOperator, get_export_entry, convert_path, + get_executable, get_platform, in_venv) + +logger = logging.getLogger(__name__) + +_DEFAULT_MANIFEST = ''' + + + + + + + + + + + + +'''.strip() + +# check if Python is called on the first line with this expression +FIRST_LINE_RE = re.compile(b'^#!.*pythonw?[0-9.]*([ \t].*)?$') +SCRIPT_TEMPLATE = r'''# -*- coding: utf-8 -*- +import re +import sys +from %(module)s import %(import_name)s +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(%(func)s()) +''' + + +def enquote_executable(executable): + if ' ' in executable: + # make sure we quote only the executable in case of env + # for example /usr/bin/env "/dir with spaces/bin/jython" + # instead of "/usr/bin/env /dir with spaces/bin/jython" + # otherwise whole + if executable.startswith('/usr/bin/env '): + env, _executable = executable.split(' ', 1) + if ' ' in _executable and not _executable.startswith('"'): + executable = '%s "%s"' % (env, _executable) + else: + if not executable.startswith('"'): + executable = '"%s"' % executable + return executable + + +# Keep the old name around (for now), as there is at least one project using it! +_enquote_executable = enquote_executable + + +class ScriptMaker(object): + """ + A class to copy or create scripts from source scripts or callable + specifications. + """ + script_template = SCRIPT_TEMPLATE + + executable = None # for shebangs + + def __init__(self, + source_dir, + target_dir, + add_launchers=True, + dry_run=False, + fileop=None): + self.source_dir = source_dir + self.target_dir = target_dir + self.add_launchers = add_launchers + self.force = False + self.clobber = False + # It only makes sense to set mode bits on POSIX. + self.set_mode = (os.name == 'posix') or (os.name == 'java' + and os._name == 'posix') + self.variants = set(('', 'X.Y')) + self._fileop = fileop or FileOperator(dry_run) + + self._is_nt = os.name == 'nt' or (os.name == 'java' + and os._name == 'nt') + self.version_info = sys.version_info + + def _get_alternate_executable(self, executable, options): + if options.get('gui', False) and self._is_nt: # pragma: no cover + dn, fn = os.path.split(executable) + fn = fn.replace('python', 'pythonw') + executable = os.path.join(dn, fn) + return executable + + if sys.platform.startswith('java'): # pragma: no cover + + def _is_shell(self, executable): + """ + Determine if the specified executable is a script + (contains a #! line) + """ + try: + with open(executable) as fp: + return fp.read(2) == '#!' + except (OSError, IOError): + logger.warning('Failed to open %s', executable) + return False + + def _fix_jython_executable(self, executable): + if self._is_shell(executable): + # Workaround for Jython is not needed on Linux systems. + import java + + if java.lang.System.getProperty('os.name') == 'Linux': + return executable + elif executable.lower().endswith('jython.exe'): + # Use wrapper exe for Jython on Windows + return executable + return '/usr/bin/env %s' % executable + + def _build_shebang(self, executable, post_interp): + """ + Build a shebang line. In the simple case (on Windows, or a shebang line + which is not too long or contains spaces) use a simple formulation for + the shebang. Otherwise, use /bin/sh as the executable, with a contrived + shebang which allows the script to run either under Python or sh, using + suitable quoting. Thanks to Harald Nordgren for his input. + + See also: http://www.in-ulm.de/~mascheck/various/shebang/#length + https://hg.mozilla.org/mozilla-central/file/tip/mach + """ + if os.name != 'posix': + simple_shebang = True + else: + # Add 3 for '#!' prefix and newline suffix. + shebang_length = len(executable) + len(post_interp) + 3 + if sys.platform == 'darwin': + max_shebang_length = 512 + else: + max_shebang_length = 127 + simple_shebang = ((b' ' not in executable) + and (shebang_length <= max_shebang_length)) + + if simple_shebang: + result = b'#!' + executable + post_interp + b'\n' + else: + result = b'#!/bin/sh\n' + result += b"'''exec' " + executable + post_interp + b' "$0" "$@"\n' + result += b"' '''" + return result + + def _get_shebang(self, encoding, post_interp=b'', options=None): + enquote = True + if self.executable: + executable = self.executable + enquote = False # assume this will be taken care of + elif not sysconfig.is_python_build(): + executable = get_executable() + elif in_venv(): # pragma: no cover + executable = os.path.join( + sysconfig.get_path('scripts'), + 'python%s' % sysconfig.get_config_var('EXE')) + else: # pragma: no cover + if os.name == 'nt': + # for Python builds from source on Windows, no Python executables with + # a version suffix are created, so we use python.exe + executable = os.path.join( + sysconfig.get_config_var('BINDIR'), + 'python%s' % (sysconfig.get_config_var('EXE'))) + else: + executable = os.path.join( + sysconfig.get_config_var('BINDIR'), + 'python%s%s' % (sysconfig.get_config_var('VERSION'), + sysconfig.get_config_var('EXE'))) + if options: + executable = self._get_alternate_executable(executable, options) + + if sys.platform.startswith('java'): # pragma: no cover + executable = self._fix_jython_executable(executable) + + # Normalise case for Windows - COMMENTED OUT + # executable = os.path.normcase(executable) + # N.B. The normalising operation above has been commented out: See + # issue #124. Although paths in Windows are generally case-insensitive, + # they aren't always. For example, a path containing a ẞ (which is a + # LATIN CAPITAL LETTER SHARP S - U+1E9E) is normcased to ß (which is a + # LATIN SMALL LETTER SHARP S' - U+00DF). The two are not considered by + # Windows as equivalent in path names. + + # If the user didn't specify an executable, it may be necessary to + # cater for executable paths with spaces (not uncommon on Windows) + if enquote: + executable = enquote_executable(executable) + # Issue #51: don't use fsencode, since we later try to + # check that the shebang is decodable using utf-8. + executable = executable.encode('utf-8') + # in case of IronPython, play safe and enable frames support + if (sys.platform == 'cli' and '-X:Frames' not in post_interp + and '-X:FullFrames' not in post_interp): # pragma: no cover + post_interp += b' -X:Frames' + shebang = self._build_shebang(executable, post_interp) + # Python parser starts to read a script using UTF-8 until + # it gets a #coding:xxx cookie. The shebang has to be the + # first line of a file, the #coding:xxx cookie cannot be + # written before. So the shebang has to be decodable from + # UTF-8. + try: + shebang.decode('utf-8') + except UnicodeDecodeError: # pragma: no cover + raise ValueError('The shebang (%r) is not decodable from utf-8' % + shebang) + # If the script is encoded to a custom encoding (use a + # #coding:xxx cookie), the shebang has to be decodable from + # the script encoding too. + if encoding != 'utf-8': + try: + shebang.decode(encoding) + except UnicodeDecodeError: # pragma: no cover + raise ValueError('The shebang (%r) is not decodable ' + 'from the script encoding (%r)' % + (shebang, encoding)) + return shebang + + def _get_script_text(self, entry): + return self.script_template % dict( + module=entry.prefix, + import_name=entry.suffix.split('.')[0], + func=entry.suffix) + + manifest = _DEFAULT_MANIFEST + + def get_manifest(self, exename): + base = os.path.basename(exename) + return self.manifest % base + + def _write_script(self, names, shebang, script_bytes, filenames, ext): + use_launcher = self.add_launchers and self._is_nt + linesep = os.linesep.encode('utf-8') + if not shebang.endswith(linesep): + shebang += linesep + if not use_launcher: + script_bytes = shebang + script_bytes + else: # pragma: no cover + if ext == 'py': + launcher = self._get_launcher('t') + else: + launcher = self._get_launcher('w') + stream = BytesIO() + with ZipFile(stream, 'w') as zf: + source_date_epoch = os.environ.get('SOURCE_DATE_EPOCH') + if source_date_epoch: + date_time = time.gmtime(int(source_date_epoch))[:6] + zinfo = ZipInfo(filename='__main__.py', + date_time=date_time) + zf.writestr(zinfo, script_bytes) + else: + zf.writestr('__main__.py', script_bytes) + zip_data = stream.getvalue() + script_bytes = launcher + shebang + zip_data + for name in names: + outname = os.path.join(self.target_dir, name) + if use_launcher: # pragma: no cover + n, e = os.path.splitext(outname) + if e.startswith('.py'): + outname = n + outname = '%s.exe' % outname + try: + self._fileop.write_binary_file(outname, script_bytes) + except Exception: + # Failed writing an executable - it might be in use. + logger.warning('Failed to write executable - trying to ' + 'use .deleteme logic') + dfname = '%s.deleteme' % outname + if os.path.exists(dfname): + os.remove(dfname) # Not allowed to fail here + os.rename(outname, dfname) # nor here + self._fileop.write_binary_file(outname, script_bytes) + logger.debug('Able to replace executable using ' + '.deleteme logic') + try: + os.remove(dfname) + except Exception: + pass # still in use - ignore error + else: + if self._is_nt and not outname.endswith( + '.' + ext): # pragma: no cover + outname = '%s.%s' % (outname, ext) + if os.path.exists(outname) and not self.clobber: + logger.warning('Skipping existing file %s', outname) + continue + self._fileop.write_binary_file(outname, script_bytes) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + + variant_separator = '-' + + def get_script_filenames(self, name): + result = set() + if '' in self.variants: + result.add(name) + if 'X' in self.variants: + result.add('%s%s' % (name, self.version_info[0])) + if 'X.Y' in self.variants: + result.add('%s%s%s.%s' % + (name, self.variant_separator, self.version_info[0], + self.version_info[1])) + return result + + def _make_script(self, entry, filenames, options=None): + post_interp = b'' + if options: + args = options.get('interpreter_args', []) + if args: + args = ' %s' % ' '.join(args) + post_interp = args.encode('utf-8') + shebang = self._get_shebang('utf-8', post_interp, options=options) + script = self._get_script_text(entry).encode('utf-8') + scriptnames = self.get_script_filenames(entry.name) + if options and options.get('gui', False): + ext = 'pyw' + else: + ext = 'py' + self._write_script(scriptnames, shebang, script, filenames, ext) + + def _copy_script(self, script, filenames): + adjust = False + script = os.path.join(self.source_dir, convert_path(script)) + outname = os.path.join(self.target_dir, os.path.basename(script)) + if not self.force and not self._fileop.newer(script, outname): + logger.debug('not copying %s (up-to-date)', script) + return + + # Always open the file, but ignore failures in dry-run mode -- + # that way, we'll get accurate feedback if we can read the + # script. + try: + f = open(script, 'rb') + except IOError: # pragma: no cover + if not self.dry_run: + raise + f = None + else: + first_line = f.readline() + if not first_line: # pragma: no cover + logger.warning('%s is an empty file (skipping)', script) + return + + match = FIRST_LINE_RE.match(first_line.replace(b'\r\n', b'\n')) + if match: + adjust = True + post_interp = match.group(1) or b'' + + if not adjust: + if f: + f.close() + self._fileop.copy_file(script, outname) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + else: + logger.info('copying and adjusting %s -> %s', script, + self.target_dir) + if not self._fileop.dry_run: + encoding, lines = detect_encoding(f.readline) + f.seek(0) + shebang = self._get_shebang(encoding, post_interp) + if b'pythonw' in first_line: # pragma: no cover + ext = 'pyw' + else: + ext = 'py' + n = os.path.basename(outname) + self._write_script([n], shebang, f.read(), filenames, ext) + if f: + f.close() + + @property + def dry_run(self): + return self._fileop.dry_run + + @dry_run.setter + def dry_run(self, value): + self._fileop.dry_run = value + + if os.name == 'nt' or (os.name == 'java' + and os._name == 'nt'): # pragma: no cover + # Executable launcher support. + # Launchers are from https://bitbucket.org/vinay.sajip/simple_launcher/ + + def _get_launcher(self, kind): + if struct.calcsize('P') == 8: # 64-bit + bits = '64' + else: + bits = '32' + platform_suffix = '-arm' if get_platform() == 'win-arm64' else '' + name = '%s%s%s.exe' % (kind, bits, platform_suffix) + # Issue 31: don't hardcode an absolute package name, but + # determine it relative to the current package + distlib_package = __name__.rsplit('.', 1)[0] + resource = finder(distlib_package).find(name) + if not resource: + msg = ('Unable to find resource %s in package %s' % + (name, distlib_package)) + raise ValueError(msg) + return resource.bytes + + # Public API follows + + def make(self, specification, options=None): + """ + Make a script. + + :param specification: The specification, which is either a valid export + entry specification (to make a script from a + callable) or a filename (to make a script by + copying from a source location). + :param options: A dictionary of options controlling script generation. + :return: A list of all absolute pathnames written to. + """ + filenames = [] + entry = get_export_entry(specification) + if entry is None: + self._copy_script(specification, filenames) + else: + self._make_script(entry, filenames, options=options) + return filenames + + def make_multiple(self, specifications, options=None): + """ + Take a list of specifications and make scripts from them, + :param specifications: A list of specifications. + :return: A list of all absolute pathnames written to, + """ + filenames = [] + for specification in specifications: + filenames.extend(self.make(specification, options)) + return filenames diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py new file mode 100644 index 00000000..ba58858d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py @@ -0,0 +1,2025 @@ +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import codecs +from collections import deque +import contextlib +import csv +from glob import iglob as std_iglob +import io +import json +import logging +import os +import py_compile +import re +import socket +try: + import ssl +except ImportError: # pragma: no cover + ssl = None +import subprocess +import sys +import tarfile +import tempfile +import textwrap + +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import time + +from . import DistlibException +from .compat import (string_types, text_type, shutil, raw_input, StringIO, + cache_from_source, urlopen, urljoin, httplib, xmlrpclib, + HTTPHandler, BaseConfigurator, valid_ident, + Container, configparser, URLError, ZipFile, fsdecode, + unquote, urlparse) + +logger = logging.getLogger(__name__) + +# +# Requirement parsing code as per PEP 508 +# + +IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') +VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') +COMPARE_OP = re.compile(r'^(<=?|>=?|={2,3}|[~!]=)\s*') +MARKER_OP = re.compile(r'^((<=?)|(>=?)|={2,3}|[~!]=|in|not\s+in)\s*') +OR = re.compile(r'^or\b\s*') +AND = re.compile(r'^and\b\s*') +NON_SPACE = re.compile(r'(\S+)\s*') +STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') + + +def parse_marker(marker_string): + """ + Parse a marker string and return a dictionary containing a marker expression. + + The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in + the expression grammar, or strings. A string contained in quotes is to be + interpreted as a literal string, and a string not contained in quotes is a + variable (such as os_name). + """ + + def marker_var(remaining): + # either identifier, or literal string + m = IDENTIFIER.match(remaining) + if m: + result = m.groups()[0] + remaining = remaining[m.end():] + elif not remaining: + raise SyntaxError('unexpected end of input') + else: + q = remaining[0] + if q not in '\'"': + raise SyntaxError('invalid expression: %s' % remaining) + oq = '\'"'.replace(q, '') + remaining = remaining[1:] + parts = [q] + while remaining: + # either a string chunk, or oq, or q to terminate + if remaining[0] == q: + break + elif remaining[0] == oq: + parts.append(oq) + remaining = remaining[1:] + else: + m = STRING_CHUNK.match(remaining) + if not m: + raise SyntaxError('error in string literal: %s' % + remaining) + parts.append(m.groups()[0]) + remaining = remaining[m.end():] + else: + s = ''.join(parts) + raise SyntaxError('unterminated string: %s' % s) + parts.append(q) + result = ''.join(parts) + remaining = remaining[1:].lstrip() # skip past closing quote + return result, remaining + + def marker_expr(remaining): + if remaining and remaining[0] == '(': + result, remaining = marker(remaining[1:].lstrip()) + if remaining[0] != ')': + raise SyntaxError('unterminated parenthesis: %s' % remaining) + remaining = remaining[1:].lstrip() + else: + lhs, remaining = marker_var(remaining) + while remaining: + m = MARKER_OP.match(remaining) + if not m: + break + op = m.groups()[0] + remaining = remaining[m.end():] + rhs, remaining = marker_var(remaining) + lhs = {'op': op, 'lhs': lhs, 'rhs': rhs} + result = lhs + return result, remaining + + def marker_and(remaining): + lhs, remaining = marker_expr(remaining) + while remaining: + m = AND.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_expr(remaining) + lhs = {'op': 'and', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + def marker(remaining): + lhs, remaining = marker_and(remaining) + while remaining: + m = OR.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_and(remaining) + lhs = {'op': 'or', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + return marker(marker_string) + + +def parse_requirement(req): + """ + Parse a requirement passed in as a string. Return a Container + whose attributes contain the various parts of the requirement. + """ + remaining = req.strip() + if not remaining or remaining.startswith('#'): + return None + m = IDENTIFIER.match(remaining) + if not m: + raise SyntaxError('name expected: %s' % remaining) + distname = m.groups()[0] + remaining = remaining[m.end():] + extras = mark_expr = versions = uri = None + if remaining and remaining[0] == '[': + i = remaining.find(']', 1) + if i < 0: + raise SyntaxError('unterminated extra: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + extras = [] + while s: + m = IDENTIFIER.match(s) + if not m: + raise SyntaxError('malformed extra: %s' % s) + extras.append(m.groups()[0]) + s = s[m.end():] + if not s: + break + if s[0] != ',': + raise SyntaxError('comma expected in extras: %s' % s) + s = s[1:].lstrip() + if not extras: + extras = None + if remaining: + if remaining[0] == '@': + # it's a URI + remaining = remaining[1:].lstrip() + m = NON_SPACE.match(remaining) + if not m: + raise SyntaxError('invalid URI: %s' % remaining) + uri = m.groups()[0] + t = urlparse(uri) + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not (t.scheme and t.netloc): + raise SyntaxError('Invalid URL: %s' % uri) + remaining = remaining[m.end():].lstrip() + else: + + def get_versions(ver_remaining): + """ + Return a list of operator, version tuples if any are + specified, else None. + """ + m = COMPARE_OP.match(ver_remaining) + versions = None + if m: + versions = [] + while True: + op = m.groups()[0] + ver_remaining = ver_remaining[m.end():] + m = VERSION_IDENTIFIER.match(ver_remaining) + if not m: + raise SyntaxError('invalid version: %s' % + ver_remaining) + v = m.groups()[0] + versions.append((op, v)) + ver_remaining = ver_remaining[m.end():] + if not ver_remaining or ver_remaining[0] != ',': + break + ver_remaining = ver_remaining[1:].lstrip() + # Some packages have a trailing comma which would break things + # See issue #148 + if not ver_remaining: + break + m = COMPARE_OP.match(ver_remaining) + if not m: + raise SyntaxError('invalid constraint: %s' % + ver_remaining) + if not versions: + versions = None + return versions, ver_remaining + + if remaining[0] != '(': + versions, remaining = get_versions(remaining) + else: + i = remaining.find(')', 1) + if i < 0: + raise SyntaxError('unterminated parenthesis: %s' % + remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + # As a special diversion from PEP 508, allow a version number + # a.b.c in parentheses as a synonym for ~= a.b.c (because this + # is allowed in earlier PEPs) + if COMPARE_OP.match(s): + versions, _ = get_versions(s) + else: + m = VERSION_IDENTIFIER.match(s) + if not m: + raise SyntaxError('invalid constraint: %s' % s) + v = m.groups()[0] + s = s[m.end():].lstrip() + if s: + raise SyntaxError('invalid constraint: %s' % s) + versions = [('~=', v)] + + if remaining: + if remaining[0] != ';': + raise SyntaxError('invalid requirement: %s' % remaining) + remaining = remaining[1:].lstrip() + + mark_expr, remaining = parse_marker(remaining) + + if remaining and remaining[0] != '#': + raise SyntaxError('unexpected trailing data: %s' % remaining) + + if not versions: + rs = distname + else: + rs = '%s %s' % (distname, ', '.join( + ['%s %s' % con for con in versions])) + return Container(name=distname, + extras=extras, + constraints=versions, + marker=mark_expr, + url=uri, + requirement=rs) + + +def get_resources_dests(resources_root, rules): + """Find destinations for resources files""" + + def get_rel_path(root, path): + # normalizes and returns a lstripped-/-separated path + root = root.replace(os.path.sep, '/') + path = path.replace(os.path.sep, '/') + assert path.startswith(root) + return path[len(root):].lstrip('/') + + destinations = {} + for base, suffix, dest in rules: + prefix = os.path.join(resources_root, base) + for abs_base in iglob(prefix): + abs_glob = os.path.join(abs_base, suffix) + for abs_path in iglob(abs_glob): + resource_file = get_rel_path(resources_root, abs_path) + if dest is None: # remove the entry if it was here + destinations.pop(resource_file, None) + else: + rel_path = get_rel_path(abs_base, abs_path) + rel_dest = dest.replace(os.path.sep, '/').rstrip('/') + destinations[resource_file] = rel_dest + '/' + rel_path + return destinations + + +def in_venv(): + if hasattr(sys, 'real_prefix'): + # virtualenv venvs + result = True + else: + # PEP 405 venvs + result = sys.prefix != getattr(sys, 'base_prefix', sys.prefix) + return result + + +def get_executable(): + # The __PYVENV_LAUNCHER__ dance is apparently no longer needed, as + # changes to the stub launcher mean that sys.executable always points + # to the stub on OS X + # if sys.platform == 'darwin' and ('__PYVENV_LAUNCHER__' + # in os.environ): + # result = os.environ['__PYVENV_LAUNCHER__'] + # else: + # result = sys.executable + # return result + # Avoid normcasing: see issue #143 + # result = os.path.normcase(sys.executable) + result = sys.executable + if not isinstance(result, text_type): + result = fsdecode(result) + return result + + +def proceed(prompt, allowed_chars, error_prompt=None, default=None): + p = prompt + while True: + s = raw_input(p) + p = prompt + if not s and default: + s = default + if s: + c = s[0].lower() + if c in allowed_chars: + break + if error_prompt: + p = '%c: %s\n%s' % (c, error_prompt, prompt) + return c + + +def extract_by_key(d, keys): + if isinstance(keys, string_types): + keys = keys.split() + result = {} + for key in keys: + if key in d: + result[key] = d[key] + return result + + +def read_exports(stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + # Try to load as JSON, falling back on legacy format + data = stream.read() + stream = StringIO(data) + try: + jdata = json.load(stream) + result = jdata['extensions']['python.exports']['exports'] + for group, entries in result.items(): + for k, v in entries.items(): + s = '%s = %s' % (k, v) + entry = get_export_entry(s) + assert entry is not None + entries[k] = entry + return result + except Exception: + stream.seek(0, 0) + + def read_stream(cp, stream): + if hasattr(cp, 'read_file'): + cp.read_file(stream) + else: + cp.readfp(stream) + + cp = configparser.ConfigParser() + try: + read_stream(cp, stream) + except configparser.MissingSectionHeaderError: + stream.close() + data = textwrap.dedent(data) + stream = StringIO(data) + read_stream(cp, stream) + + result = {} + for key in cp.sections(): + result[key] = entries = {} + for name, value in cp.items(key): + s = '%s = %s' % (name, value) + entry = get_export_entry(s) + assert entry is not None + # entry.dist = self + entries[name] = entry + return result + + +def write_exports(exports, stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getwriter('utf-8')(stream) + cp = configparser.ConfigParser() + for k, v in exports.items(): + # TODO check k, v for valid values + cp.add_section(k) + for entry in v.values(): + if entry.suffix is None: + s = entry.prefix + else: + s = '%s:%s' % (entry.prefix, entry.suffix) + if entry.flags: + s = '%s [%s]' % (s, ', '.join(entry.flags)) + cp.set(k, entry.name, s) + cp.write(stream) + + +@contextlib.contextmanager +def tempdir(): + td = tempfile.mkdtemp() + try: + yield td + finally: + shutil.rmtree(td) + + +@contextlib.contextmanager +def chdir(d): + cwd = os.getcwd() + try: + os.chdir(d) + yield + finally: + os.chdir(cwd) + + +@contextlib.contextmanager +def socket_timeout(seconds=15): + cto = socket.getdefaulttimeout() + try: + socket.setdefaulttimeout(seconds) + yield + finally: + socket.setdefaulttimeout(cto) + + +class cached_property(object): + + def __init__(self, func): + self.func = func + # for attr in ('__name__', '__module__', '__doc__'): + # setattr(self, attr, getattr(func, attr, None)) + + def __get__(self, obj, cls=None): + if obj is None: + return self + value = self.func(obj) + object.__setattr__(obj, self.func.__name__, value) + # obj.__dict__[self.func.__name__] = value = self.func(obj) + return value + + +def convert_path(pathname): + """Return 'pathname' as a name that will work on the native filesystem. + + The path is split on '/' and put back together again using the current + directory separator. Needed because filenames in the setup script are + always supplied in Unix style, and have to be converted to the local + convention before we can actually use them in the filesystem. Raises + ValueError on non-Unix-ish systems if 'pathname' either starts or + ends with a slash. + """ + if os.sep == '/': + return pathname + if not pathname: + return pathname + if pathname[0] == '/': + raise ValueError("path '%s' cannot be absolute" % pathname) + if pathname[-1] == '/': + raise ValueError("path '%s' cannot end with '/'" % pathname) + + paths = pathname.split('/') + while os.curdir in paths: + paths.remove(os.curdir) + if not paths: + return os.curdir + return os.path.join(*paths) + + +class FileOperator(object): + + def __init__(self, dry_run=False): + self.dry_run = dry_run + self.ensured = set() + self._init_record() + + def _init_record(self): + self.record = False + self.files_written = set() + self.dirs_created = set() + + def record_as_written(self, path): + if self.record: + self.files_written.add(path) + + def newer(self, source, target): + """Tell if the target is newer than the source. + + Returns true if 'source' exists and is more recently modified than + 'target', or if 'source' exists and 'target' doesn't. + + Returns false if both exist and 'target' is the same age or younger + than 'source'. Raise PackagingFileError if 'source' does not exist. + + Note that this test is not very accurate: files created in the same + second will have the same "age". + """ + if not os.path.exists(source): + raise DistlibException("file '%r' does not exist" % + os.path.abspath(source)) + if not os.path.exists(target): + return True + + return os.stat(source).st_mtime > os.stat(target).st_mtime + + def copy_file(self, infile, outfile, check=True): + """Copy a file respecting dry-run and force flags. + """ + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying %s to %s', infile, outfile) + if not self.dry_run: + msg = None + if check: + if os.path.islink(outfile): + msg = '%s is a symlink' % outfile + elif os.path.exists(outfile) and not os.path.isfile(outfile): + msg = '%s is a non-regular file' % outfile + if msg: + raise ValueError(msg + ' which would be overwritten') + shutil.copyfile(infile, outfile) + self.record_as_written(outfile) + + def copy_stream(self, instream, outfile, encoding=None): + assert not os.path.isdir(outfile) + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying stream %s to %s', instream, outfile) + if not self.dry_run: + if encoding is None: + outstream = open(outfile, 'wb') + else: + outstream = codecs.open(outfile, 'w', encoding=encoding) + try: + shutil.copyfileobj(instream, outstream) + finally: + outstream.close() + self.record_as_written(outfile) + + def write_binary_file(self, path, data): + self.ensure_dir(os.path.dirname(path)) + if not self.dry_run: + if os.path.exists(path): + os.remove(path) + with open(path, 'wb') as f: + f.write(data) + self.record_as_written(path) + + def write_text_file(self, path, data, encoding): + self.write_binary_file(path, data.encode(encoding)) + + def set_mode(self, bits, mask, files): + if os.name == 'posix' or (os.name == 'java' and os._name == 'posix'): + # Set the executable bits (owner, group, and world) on + # all the files specified. + for f in files: + if self.dry_run: + logger.info("changing mode of %s", f) + else: + mode = (os.stat(f).st_mode | bits) & mask + logger.info("changing mode of %s to %o", f, mode) + os.chmod(f, mode) + + set_executable_mode = lambda s, f: s.set_mode(0o555, 0o7777, f) + + def ensure_dir(self, path): + path = os.path.abspath(path) + if path not in self.ensured and not os.path.exists(path): + self.ensured.add(path) + d, f = os.path.split(path) + self.ensure_dir(d) + logger.info('Creating %s' % path) + if not self.dry_run: + os.mkdir(path) + if self.record: + self.dirs_created.add(path) + + def byte_compile(self, + path, + optimize=False, + force=False, + prefix=None, + hashed_invalidation=False): + dpath = cache_from_source(path, not optimize) + logger.info('Byte-compiling %s to %s', path, dpath) + if not self.dry_run: + if force or self.newer(path, dpath): + if not prefix: + diagpath = None + else: + assert path.startswith(prefix) + diagpath = path[len(prefix):] + compile_kwargs = {} + if hashed_invalidation and hasattr(py_compile, + 'PycInvalidationMode'): + compile_kwargs[ + 'invalidation_mode'] = py_compile.PycInvalidationMode.CHECKED_HASH + py_compile.compile(path, dpath, diagpath, True, + **compile_kwargs) # raise error + self.record_as_written(dpath) + return dpath + + def ensure_removed(self, path): + if os.path.exists(path): + if os.path.isdir(path) and not os.path.islink(path): + logger.debug('Removing directory tree at %s', path) + if not self.dry_run: + shutil.rmtree(path) + if self.record: + if path in self.dirs_created: + self.dirs_created.remove(path) + else: + if os.path.islink(path): + s = 'link' + else: + s = 'file' + logger.debug('Removing %s %s', s, path) + if not self.dry_run: + os.remove(path) + if self.record: + if path in self.files_written: + self.files_written.remove(path) + + def is_writable(self, path): + result = False + while not result: + if os.path.exists(path): + result = os.access(path, os.W_OK) + break + parent = os.path.dirname(path) + if parent == path: + break + path = parent + return result + + def commit(self): + """ + Commit recorded changes, turn off recording, return + changes. + """ + assert self.record + result = self.files_written, self.dirs_created + self._init_record() + return result + + def rollback(self): + if not self.dry_run: + for f in list(self.files_written): + if os.path.exists(f): + os.remove(f) + # dirs should all be empty now, except perhaps for + # __pycache__ subdirs + # reverse so that subdirs appear before their parents + dirs = sorted(self.dirs_created, reverse=True) + for d in dirs: + flist = os.listdir(d) + if flist: + assert flist == ['__pycache__'] + sd = os.path.join(d, flist[0]) + os.rmdir(sd) + os.rmdir(d) # should fail if non-empty + self._init_record() + + +def resolve(module_name, dotted_path): + if module_name in sys.modules: + mod = sys.modules[module_name] + else: + mod = __import__(module_name) + if dotted_path is None: + result = mod + else: + parts = dotted_path.split('.') + result = getattr(mod, parts.pop(0)) + for p in parts: + result = getattr(result, p) + return result + + +class ExportEntry(object): + + def __init__(self, name, prefix, suffix, flags): + self.name = name + self.prefix = prefix + self.suffix = suffix + self.flags = flags + + @cached_property + def value(self): + return resolve(self.prefix, self.suffix) + + def __repr__(self): # pragma: no cover + return '' % (self.name, self.prefix, + self.suffix, self.flags) + + def __eq__(self, other): + if not isinstance(other, ExportEntry): + result = False + else: + result = (self.name == other.name and self.prefix == other.prefix + and self.suffix == other.suffix + and self.flags == other.flags) + return result + + __hash__ = object.__hash__ + + +ENTRY_RE = re.compile( + r'''(?P([^\[]\S*)) + \s*=\s*(?P(\w+)([:\.]\w+)*) + \s*(\[\s*(?P[\w-]+(=\w+)?(,\s*\w+(=\w+)?)*)\s*\])? + ''', re.VERBOSE) + + +def get_export_entry(specification): + m = ENTRY_RE.search(specification) + if not m: + result = None + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + else: + d = m.groupdict() + name = d['name'] + path = d['callable'] + colons = path.count(':') + if colons == 0: + prefix, suffix = path, None + else: + if colons != 1: + raise DistlibException("Invalid specification " + "'%s'" % specification) + prefix, suffix = path.split(':') + flags = d['flags'] + if flags is None: + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + flags = [] + else: + flags = [f.strip() for f in flags.split(',')] + result = ExportEntry(name, prefix, suffix, flags) + return result + + +def get_cache_base(suffix=None): + """ + Return the default base location for distlib caches. If the directory does + not exist, it is created. Use the suffix provided for the base directory, + and default to '.distlib' if it isn't provided. + + On Windows, if LOCALAPPDATA is defined in the environment, then it is + assumed to be a directory, and will be the parent directory of the result. + On POSIX, and on Windows if LOCALAPPDATA is not defined, the user's home + directory - using os.expanduser('~') - will be the parent directory of + the result. + + The result is just the directory '.distlib' in the parent directory as + determined above, or with the name specified with ``suffix``. + """ + if suffix is None: + suffix = '.distlib' + if os.name == 'nt' and 'LOCALAPPDATA' in os.environ: + result = os.path.expandvars('$localappdata') + else: + # Assume posix, or old Windows + result = os.path.expanduser('~') + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if os.path.isdir(result): + usable = os.access(result, os.W_OK) + if not usable: + logger.warning('Directory exists but is not writable: %s', result) + else: + try: + os.makedirs(result) + usable = True + except OSError: + logger.warning('Unable to create %s', result, exc_info=True) + usable = False + if not usable: + result = tempfile.mkdtemp() + logger.warning('Default location unusable, using %s', result) + return os.path.join(result, suffix) + + +def path_to_cache_dir(path): + """ + Convert an absolute path to a directory name for use in a cache. + + The algorithm used is: + + #. On Windows, any ``':'`` in the drive is replaced with ``'---'``. + #. Any occurrence of ``os.sep`` is replaced with ``'--'``. + #. ``'.cache'`` is appended. + """ + d, p = os.path.splitdrive(os.path.abspath(path)) + if d: + d = d.replace(':', '---') + p = p.replace(os.sep, '--') + return d + p + '.cache' + + +def ensure_slash(s): + if not s.endswith('/'): + return s + '/' + return s + + +def parse_credentials(netloc): + username = password = None + if '@' in netloc: + prefix, netloc = netloc.rsplit('@', 1) + if ':' not in prefix: + username = prefix + else: + username, password = prefix.split(':', 1) + if username: + username = unquote(username) + if password: + password = unquote(password) + return username, password, netloc + + +def get_process_umask(): + result = os.umask(0o22) + os.umask(result) + return result + + +def is_string_sequence(seq): + result = True + i = None + for i, s in enumerate(seq): + if not isinstance(s, string_types): + result = False + break + assert i is not None + return result + + +PROJECT_NAME_AND_VERSION = re.compile( + '([a-z0-9_]+([.-][a-z_][a-z0-9_]*)*)-' + '([a-z0-9_.+-]+)', re.I) +PYTHON_VERSION = re.compile(r'-py(\d\.?\d?)') + + +def split_filename(filename, project_name=None): + """ + Extract name, version, python version from a filename (no extension) + + Return name, version, pyver or None + """ + result = None + pyver = None + filename = unquote(filename).replace(' ', '-') + m = PYTHON_VERSION.search(filename) + if m: + pyver = m.group(1) + filename = filename[:m.start()] + if project_name and len(filename) > len(project_name) + 1: + m = re.match(re.escape(project_name) + r'\b', filename) + if m: + n = m.end() + result = filename[:n], filename[n + 1:], pyver + if result is None: + m = PROJECT_NAME_AND_VERSION.match(filename) + if m: + result = m.group(1), m.group(3), pyver + return result + + +# Allow spaces in name because of legacy dists like "Twisted Core" +NAME_VERSION_RE = re.compile(r'(?P[\w .-]+)\s*' + r'\(\s*(?P[^\s)]+)\)$') + + +def parse_name_and_version(p): + """ + A utility method used to get name and version from a string. + + From e.g. a Provides-Dist value. + + :param p: A value in a form 'foo (1.0)' + :return: The name and version as a tuple. + """ + m = NAME_VERSION_RE.match(p) + if not m: + raise DistlibException('Ill-formed name/version string: \'%s\'' % p) + d = m.groupdict() + return d['name'].strip().lower(), d['ver'] + + +def get_extras(requested, available): + result = set() + requested = set(requested or []) + available = set(available or []) + if '*' in requested: + requested.remove('*') + result |= available + for r in requested: + if r == '-': + result.add(r) + elif r.startswith('-'): + unwanted = r[1:] + if unwanted not in available: + logger.warning('undeclared extra: %s' % unwanted) + if unwanted in result: + result.remove(unwanted) + else: + if r not in available: + logger.warning('undeclared extra: %s' % r) + result.add(r) + return result + + +# +# Extended metadata functionality +# + + +def _get_external_data(url): + result = {} + try: + # urlopen might fail if it runs into redirections, + # because of Python issue #13696. Fixed in locators + # using a custom redirect handler. + resp = urlopen(url) + headers = resp.info() + ct = headers.get('Content-Type') + if not ct.startswith('application/json'): + logger.debug('Unexpected response for JSON request: %s', ct) + else: + reader = codecs.getreader('utf-8')(resp) + # data = reader.read().decode('utf-8') + # result = json.loads(data) + result = json.load(reader) + except Exception as e: + logger.exception('Failed to get external data for %s: %s', url, e) + return result + + +_external_data_base_url = 'https://www.red-dove.com/pypi/projects/' + + +def get_project_data(name): + url = '%s/%s/project.json' % (name[0].upper(), name) + url = urljoin(_external_data_base_url, url) + result = _get_external_data(url) + return result + + +def get_package_data(name, version): + url = '%s/%s/package-%s.json' % (name[0].upper(), name, version) + url = urljoin(_external_data_base_url, url) + return _get_external_data(url) + + +class Cache(object): + """ + A class implementing a cache for resources that need to live in the file system + e.g. shared libraries. This class was moved from resources to here because it + could be used by other modules, e.g. the wheel module. + """ + + def __init__(self, base): + """ + Initialise an instance. + + :param base: The base directory where the cache should be located. + """ + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if not os.path.isdir(base): # pragma: no cover + os.makedirs(base) + if (os.stat(base).st_mode & 0o77) != 0: + logger.warning('Directory \'%s\' is not private', base) + self.base = os.path.abspath(os.path.normpath(base)) + + def prefix_to_dir(self, prefix): + """ + Converts a resource prefix to a directory name in the cache. + """ + return path_to_cache_dir(prefix) + + def clear(self): + """ + Clear the cache. + """ + not_removed = [] + for fn in os.listdir(self.base): + fn = os.path.join(self.base, fn) + try: + if os.path.islink(fn) or os.path.isfile(fn): + os.remove(fn) + elif os.path.isdir(fn): + shutil.rmtree(fn) + except Exception: + not_removed.append(fn) + return not_removed + + +class EventMixin(object): + """ + A very simple publish/subscribe system. + """ + + def __init__(self): + self._subscribers = {} + + def add(self, event, subscriber, append=True): + """ + Add a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be added (and called when the + event is published). + :param append: Whether to append or prepend the subscriber to an + existing subscriber list for the event. + """ + subs = self._subscribers + if event not in subs: + subs[event] = deque([subscriber]) + else: + sq = subs[event] + if append: + sq.append(subscriber) + else: + sq.appendleft(subscriber) + + def remove(self, event, subscriber): + """ + Remove a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be removed. + """ + subs = self._subscribers + if event not in subs: + raise ValueError('No subscribers: %r' % event) + subs[event].remove(subscriber) + + def get_subscribers(self, event): + """ + Return an iterator for the subscribers for an event. + :param event: The event to return subscribers for. + """ + return iter(self._subscribers.get(event, ())) + + def publish(self, event, *args, **kwargs): + """ + Publish a event and return a list of values returned by its + subscribers. + + :param event: The event to publish. + :param args: The positional arguments to pass to the event's + subscribers. + :param kwargs: The keyword arguments to pass to the event's + subscribers. + """ + result = [] + for subscriber in self.get_subscribers(event): + try: + value = subscriber(event, *args, **kwargs) + except Exception: + logger.exception('Exception during event publication') + value = None + result.append(value) + logger.debug('publish %s: args = %s, kwargs = %s, result = %s', event, + args, kwargs, result) + return result + + +# +# Simple sequencing +# +class Sequencer(object): + + def __init__(self): + self._preds = {} + self._succs = {} + self._nodes = set() # nodes with no preds/succs + + def add_node(self, node): + self._nodes.add(node) + + def remove_node(self, node, edges=False): + if node in self._nodes: + self._nodes.remove(node) + if edges: + for p in set(self._preds.get(node, ())): + self.remove(p, node) + for s in set(self._succs.get(node, ())): + self.remove(node, s) + # Remove empties + for k, v in list(self._preds.items()): + if not v: + del self._preds[k] + for k, v in list(self._succs.items()): + if not v: + del self._succs[k] + + def add(self, pred, succ): + assert pred != succ + self._preds.setdefault(succ, set()).add(pred) + self._succs.setdefault(pred, set()).add(succ) + + def remove(self, pred, succ): + assert pred != succ + try: + preds = self._preds[succ] + succs = self._succs[pred] + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of anything' % succ) + try: + preds.remove(pred) + succs.remove(succ) + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of %r' % (succ, pred)) + + def is_step(self, step): + return (step in self._preds or step in self._succs + or step in self._nodes) + + def get_steps(self, final): + if not self.is_step(final): + raise ValueError('Unknown: %r' % final) + result = [] + todo = [] + seen = set() + todo.append(final) + while todo: + step = todo.pop(0) + if step in seen: + # if a step was already seen, + # move it to the end (so it will appear earlier + # when reversed on return) ... but not for the + # final step, as that would be confusing for + # users + if step != final: + result.remove(step) + result.append(step) + else: + seen.add(step) + result.append(step) + preds = self._preds.get(step, ()) + todo.extend(preds) + return reversed(result) + + @property + def strong_connections(self): + # http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm + index_counter = [0] + stack = [] + lowlinks = {} + index = {} + result = [] + + graph = self._succs + + def strongconnect(node): + # set the depth index for this node to the smallest unused index + index[node] = index_counter[0] + lowlinks[node] = index_counter[0] + index_counter[0] += 1 + stack.append(node) + + # Consider successors + try: + successors = graph[node] + except Exception: + successors = [] + for successor in successors: + if successor not in lowlinks: + # Successor has not yet been visited + strongconnect(successor) + lowlinks[node] = min(lowlinks[node], lowlinks[successor]) + elif successor in stack: + # the successor is in the stack and hence in the current + # strongly connected component (SCC) + lowlinks[node] = min(lowlinks[node], index[successor]) + + # If `node` is a root node, pop the stack and generate an SCC + if lowlinks[node] == index[node]: + connected_component = [] + + while True: + successor = stack.pop() + connected_component.append(successor) + if successor == node: + break + component = tuple(connected_component) + # storing the result + result.append(component) + + for node in graph: + if node not in lowlinks: + strongconnect(node) + + return result + + @property + def dot(self): + result = ['digraph G {'] + for succ in self._preds: + preds = self._preds[succ] + for pred in preds: + result.append(' %s -> %s;' % (pred, succ)) + for node in self._nodes: + result.append(' %s;' % node) + result.append('}') + return '\n'.join(result) + + +# +# Unarchiving functionality for zip, tar, tgz, tbz, whl +# + +ARCHIVE_EXTENSIONS = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz', + '.whl') + + +def unarchive(archive_filename, dest_dir, format=None, check=True): + + def check_path(path): + if not isinstance(path, text_type): + path = path.decode('utf-8') + p = os.path.abspath(os.path.join(dest_dir, path)) + if not p.startswith(dest_dir) or p[plen] != os.sep: + raise ValueError('path outside destination: %r' % p) + + dest_dir = os.path.abspath(dest_dir) + plen = len(dest_dir) + archive = None + if format is None: + if archive_filename.endswith(('.zip', '.whl')): + format = 'zip' + elif archive_filename.endswith(('.tar.gz', '.tgz')): + format = 'tgz' + mode = 'r:gz' + elif archive_filename.endswith(('.tar.bz2', '.tbz')): + format = 'tbz' + mode = 'r:bz2' + elif archive_filename.endswith('.tar'): + format = 'tar' + mode = 'r' + else: # pragma: no cover + raise ValueError('Unknown format for %r' % archive_filename) + try: + if format == 'zip': + archive = ZipFile(archive_filename, 'r') + if check: + names = archive.namelist() + for name in names: + check_path(name) + else: + archive = tarfile.open(archive_filename, mode) + if check: + names = archive.getnames() + for name in names: + check_path(name) + if format != 'zip' and sys.version_info[0] < 3: + # See Python issue 17153. If the dest path contains Unicode, + # tarfile extraction fails on Python 2.x if a member path name + # contains non-ASCII characters - it leads to an implicit + # bytes -> unicode conversion using ASCII to decode. + for tarinfo in archive.getmembers(): + if not isinstance(tarinfo.name, text_type): + tarinfo.name = tarinfo.name.decode('utf-8') + + # Limit extraction of dangerous items, if this Python + # allows it easily. If not, just trust the input. + # See: https://docs.python.org/3/library/tarfile.html#extraction-filters + def extraction_filter(member, path): + """Run tarfile.tar_filter, but raise the expected ValueError""" + # This is only called if the current Python has tarfile filters + try: + return tarfile.tar_filter(member, path) + except tarfile.FilterError as exc: + raise ValueError(str(exc)) + + archive.extraction_filter = extraction_filter + + archive.extractall(dest_dir) + + finally: + if archive: + archive.close() + + +def zip_dir(directory): + """zip a directory tree into a BytesIO object""" + result = io.BytesIO() + dlen = len(directory) + with ZipFile(result, "w") as zf: + for root, dirs, files in os.walk(directory): + for name in files: + full = os.path.join(root, name) + rel = root[dlen:] + dest = os.path.join(rel, name) + zf.write(full, dest) + return result + + +# +# Simple progress bar +# + +UNITS = ('', 'K', 'M', 'G', 'T', 'P') + + +class Progress(object): + unknown = 'UNKNOWN' + + def __init__(self, minval=0, maxval=100): + assert maxval is None or maxval >= minval + self.min = self.cur = minval + self.max = maxval + self.started = None + self.elapsed = 0 + self.done = False + + def update(self, curval): + assert self.min <= curval + assert self.max is None or curval <= self.max + self.cur = curval + now = time.time() + if self.started is None: + self.started = now + else: + self.elapsed = now - self.started + + def increment(self, incr): + assert incr >= 0 + self.update(self.cur + incr) + + def start(self): + self.update(self.min) + return self + + def stop(self): + if self.max is not None: + self.update(self.max) + self.done = True + + @property + def maximum(self): + return self.unknown if self.max is None else self.max + + @property + def percentage(self): + if self.done: + result = '100 %' + elif self.max is None: + result = ' ?? %' + else: + v = 100.0 * (self.cur - self.min) / (self.max - self.min) + result = '%3d %%' % v + return result + + def format_duration(self, duration): + if (duration <= 0) and self.max is None or self.cur == self.min: + result = '??:??:??' + # elif duration < 1: + # result = '--:--:--' + else: + result = time.strftime('%H:%M:%S', time.gmtime(duration)) + return result + + @property + def ETA(self): + if self.done: + prefix = 'Done' + t = self.elapsed + # import pdb; pdb.set_trace() + else: + prefix = 'ETA ' + if self.max is None: + t = -1 + elif self.elapsed == 0 or (self.cur == self.min): + t = 0 + else: + # import pdb; pdb.set_trace() + t = float(self.max - self.min) + t /= self.cur - self.min + t = (t - 1) * self.elapsed + return '%s: %s' % (prefix, self.format_duration(t)) + + @property + def speed(self): + if self.elapsed == 0: + result = 0.0 + else: + result = (self.cur - self.min) / self.elapsed + for unit in UNITS: + if result < 1000: + break + result /= 1000.0 + return '%d %sB/s' % (result, unit) + + +# +# Glob functionality +# + +RICH_GLOB = re.compile(r'\{([^}]*)\}') +_CHECK_RECURSIVE_GLOB = re.compile(r'[^/\\,{]\*\*|\*\*[^/\\,}]') +_CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') + + +def iglob(path_glob): + """Extended globbing function that supports ** and {opt1,opt2,opt3}.""" + if _CHECK_RECURSIVE_GLOB.search(path_glob): + msg = """invalid glob %r: recursive glob "**" must be used alone""" + raise ValueError(msg % path_glob) + if _CHECK_MISMATCH_SET.search(path_glob): + msg = """invalid glob %r: mismatching set marker '{' or '}'""" + raise ValueError(msg % path_glob) + return _iglob(path_glob) + + +def _iglob(path_glob): + rich_path_glob = RICH_GLOB.split(path_glob, 1) + if len(rich_path_glob) > 1: + assert len(rich_path_glob) == 3, rich_path_glob + prefix, set, suffix = rich_path_glob + for item in set.split(','): + for path in _iglob(''.join((prefix, item, suffix))): + yield path + else: + if '**' not in path_glob: + for item in std_iglob(path_glob): + yield item + else: + prefix, radical = path_glob.split('**', 1) + if prefix == '': + prefix = '.' + if radical == '': + radical = '*' + else: + # we support both + radical = radical.lstrip('/') + radical = radical.lstrip('\\') + for path, dir, files in os.walk(prefix): + path = os.path.normpath(path) + for fn in _iglob(os.path.join(path, radical)): + yield fn + + +if ssl: + from .compat import (HTTPSHandler as BaseHTTPSHandler, match_hostname, + CertificateError) + + # + # HTTPSConnection which verifies certificates/matches domains + # + + class HTTPSConnection(httplib.HTTPSConnection): + ca_certs = None # set this to the path to the certs file (.pem) + check_domain = True # only used if ca_certs is not None + + # noinspection PyPropertyAccess + def connect(self): + sock = socket.create_connection((self.host, self.port), + self.timeout) + if getattr(self, '_tunnel_host', False): + self.sock = sock + self._tunnel() + + context = ssl.SSLContext(ssl.PROTOCOL_SSLv23) + if hasattr(ssl, 'OP_NO_SSLv2'): + context.options |= ssl.OP_NO_SSLv2 + if getattr(self, 'cert_file', None): + context.load_cert_chain(self.cert_file, self.key_file) + kwargs = {} + if self.ca_certs: + context.verify_mode = ssl.CERT_REQUIRED + context.load_verify_locations(cafile=self.ca_certs) + if getattr(ssl, 'HAS_SNI', False): + kwargs['server_hostname'] = self.host + + self.sock = context.wrap_socket(sock, **kwargs) + if self.ca_certs and self.check_domain: + try: + match_hostname(self.sock.getpeercert(), self.host) + logger.debug('Host verified: %s', self.host) + except CertificateError: # pragma: no cover + self.sock.shutdown(socket.SHUT_RDWR) + self.sock.close() + raise + + class HTTPSHandler(BaseHTTPSHandler): + + def __init__(self, ca_certs, check_domain=True): + BaseHTTPSHandler.__init__(self) + self.ca_certs = ca_certs + self.check_domain = check_domain + + def _conn_maker(self, *args, **kwargs): + """ + This is called to create a connection instance. Normally you'd + pass a connection class to do_open, but it doesn't actually check for + a class, and just expects a callable. As long as we behave just as a + constructor would have, we should be OK. If it ever changes so that + we *must* pass a class, we'll create an UnsafeHTTPSConnection class + which just sets check_domain to False in the class definition, and + choose which one to pass to do_open. + """ + result = HTTPSConnection(*args, **kwargs) + if self.ca_certs: + result.ca_certs = self.ca_certs + result.check_domain = self.check_domain + return result + + def https_open(self, req): + try: + return self.do_open(self._conn_maker, req) + except URLError as e: + if 'certificate verify failed' in str(e.reason): + raise CertificateError( + 'Unable to verify server certificate ' + 'for %s' % req.host) + else: + raise + + # + # To prevent against mixing HTTP traffic with HTTPS (examples: A Man-In-The- + # Middle proxy using HTTP listens on port 443, or an index mistakenly serves + # HTML containing a http://xyz link when it should be https://xyz), + # you can use the following handler class, which does not allow HTTP traffic. + # + # It works by inheriting from HTTPHandler - so build_opener won't add a + # handler for HTTP itself. + # + class HTTPSOnlyHandler(HTTPSHandler, HTTPHandler): + + def http_open(self, req): + raise URLError( + 'Unexpected HTTP request on what should be a secure ' + 'connection: %s' % req) + + +# +# XML-RPC with timeouts +# +class Transport(xmlrpclib.Transport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.Transport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, x509 = self.get_host_info(host) + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPConnection(h) + return self._connection[1] + + +if ssl: + + class SafeTransport(xmlrpclib.SafeTransport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.SafeTransport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, kwargs = self.get_host_info(host) + if not kwargs: + kwargs = {} + kwargs['timeout'] = self.timeout + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPSConnection( + h, None, **kwargs) + return self._connection[1] + + +class ServerProxy(xmlrpclib.ServerProxy): + + def __init__(self, uri, **kwargs): + self.timeout = timeout = kwargs.pop('timeout', None) + # The above classes only come into play if a timeout + # is specified + if timeout is not None: + # scheme = splittype(uri) # deprecated as of Python 3.8 + scheme = urlparse(uri)[0] + use_datetime = kwargs.get('use_datetime', 0) + if scheme == 'https': + tcls = SafeTransport + else: + tcls = Transport + kwargs['transport'] = t = tcls(timeout, use_datetime=use_datetime) + self.transport = t + xmlrpclib.ServerProxy.__init__(self, uri, **kwargs) + + +# +# CSV functionality. This is provided because on 2.x, the csv module can't +# handle Unicode. However, we need to deal with Unicode in e.g. RECORD files. +# + + +def _csv_open(fn, mode, **kwargs): + if sys.version_info[0] < 3: + mode += 'b' + else: + kwargs['newline'] = '' + # Python 3 determines encoding from locale. Force 'utf-8' + # file encoding to match other forced utf-8 encoding + kwargs['encoding'] = 'utf-8' + return open(fn, mode, **kwargs) + + +class CSVBase(object): + defaults = { + 'delimiter': str(','), # The strs are used because we need native + 'quotechar': str('"'), # str in the csv API (2.x won't take + 'lineterminator': str('\n') # Unicode) + } + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.stream.close() + + +class CSVReader(CSVBase): + + def __init__(self, **kwargs): + if 'stream' in kwargs: + stream = kwargs['stream'] + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + self.stream = stream + else: + self.stream = _csv_open(kwargs['path'], 'r') + self.reader = csv.reader(self.stream, **self.defaults) + + def __iter__(self): + return self + + def next(self): + result = next(self.reader) + if sys.version_info[0] < 3: + for i, item in enumerate(result): + if not isinstance(item, text_type): + result[i] = item.decode('utf-8') + return result + + __next__ = next + + +class CSVWriter(CSVBase): + + def __init__(self, fn, **kwargs): + self.stream = _csv_open(fn, 'w') + self.writer = csv.writer(self.stream, **self.defaults) + + def writerow(self, row): + if sys.version_info[0] < 3: + r = [] + for item in row: + if isinstance(item, text_type): + item = item.encode('utf-8') + r.append(item) + row = r + self.writer.writerow(row) + + +# +# Configurator functionality +# + + +class Configurator(BaseConfigurator): + + value_converters = dict(BaseConfigurator.value_converters) + value_converters['inc'] = 'inc_convert' + + def __init__(self, config, base=None): + super(Configurator, self).__init__(config) + self.base = base or os.getcwd() + + def configure_custom(self, config): + + def convert(o): + if isinstance(o, (list, tuple)): + result = type(o)([convert(i) for i in o]) + elif isinstance(o, dict): + if '()' in o: + result = self.configure_custom(o) + else: + result = {} + for k in o: + result[k] = convert(o[k]) + else: + result = self.convert(o) + return result + + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + args = config.pop('[]', ()) + if args: + args = tuple([convert(o) for o in args]) + items = [(k, convert(config[k])) for k in config if valid_ident(k)] + kwargs = dict(items) + result = c(*args, **kwargs) + if props: + for n, v in props.items(): + setattr(result, n, convert(v)) + return result + + def __getitem__(self, key): + result = self.config[key] + if isinstance(result, dict) and '()' in result: + self.config[key] = result = self.configure_custom(result) + return result + + def inc_convert(self, value): + """Default converter for the inc:// protocol.""" + if not os.path.isabs(value): + value = os.path.join(self.base, value) + with codecs.open(value, 'r', encoding='utf-8') as f: + result = json.load(f) + return result + + +class SubprocessMixin(object): + """ + Mixin for running subprocesses and capturing their output + """ + + def __init__(self, verbose=False, progress=None): + self.verbose = verbose + self.progress = progress + + def reader(self, stream, context): + """ + Read lines from a subprocess' output stream and either pass to a progress + callable (if specified) or write progress information to sys.stderr. + """ + progress = self.progress + verbose = self.verbose + while True: + s = stream.readline() + if not s: + break + if progress is not None: + progress(s, context) + else: + if not verbose: + sys.stderr.write('.') + else: + sys.stderr.write(s.decode('utf-8')) + sys.stderr.flush() + stream.close() + + def run_command(self, cmd, **kwargs): + p = subprocess.Popen(cmd, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + **kwargs) + t1 = threading.Thread(target=self.reader, args=(p.stdout, 'stdout')) + t1.start() + t2 = threading.Thread(target=self.reader, args=(p.stderr, 'stderr')) + t2.start() + p.wait() + t1.join() + t2.join() + if self.progress is not None: + self.progress('done.', 'main') + elif self.verbose: + sys.stderr.write('done.\n') + return p + + +def normalize_name(name): + """Normalize a python package name a la PEP 503""" + # https://www.python.org/dev/peps/pep-0503/#normalized-names + return re.sub('[-_.]+', '-', name).lower() + + +# def _get_pypirc_command(): +# """ +# Get the distutils command for interacting with PyPI configurations. +# :return: the command. +# """ +# from distutils.core import Distribution +# from distutils.config import PyPIRCCommand +# d = Distribution() +# return PyPIRCCommand(d) + + +class PyPIRCFile(object): + + DEFAULT_REPOSITORY = 'https://upload.pypi.org/legacy/' + DEFAULT_REALM = 'pypi' + + def __init__(self, fn=None, url=None): + if fn is None: + fn = os.path.join(os.path.expanduser('~'), '.pypirc') + self.filename = fn + self.url = url + + def read(self): + result = {} + + if os.path.exists(self.filename): + repository = self.url or self.DEFAULT_REPOSITORY + + config = configparser.RawConfigParser() + config.read(self.filename) + sections = config.sections() + if 'distutils' in sections: + # let's get the list of servers + index_servers = config.get('distutils', 'index-servers') + _servers = [ + server.strip() for server in index_servers.split('\n') + if server.strip() != '' + ] + if _servers == []: + # nothing set, let's try to get the default pypi + if 'pypi' in sections: + _servers = ['pypi'] + else: + for server in _servers: + result = {'server': server} + result['username'] = config.get(server, 'username') + + # optional params + for key, default in (('repository', + self.DEFAULT_REPOSITORY), + ('realm', self.DEFAULT_REALM), + ('password', None)): + if config.has_option(server, key): + result[key] = config.get(server, key) + else: + result[key] = default + + # work around people having "repository" for the "pypi" + # section of their config set to the HTTP (rather than + # HTTPS) URL + if (server == 'pypi' and repository + in (self.DEFAULT_REPOSITORY, 'pypi')): + result['repository'] = self.DEFAULT_REPOSITORY + elif (result['server'] != repository + and result['repository'] != repository): + result = {} + elif 'server-login' in sections: + # old format + server = 'server-login' + if config.has_option(server, 'repository'): + repository = config.get(server, 'repository') + else: + repository = self.DEFAULT_REPOSITORY + result = { + 'username': config.get(server, 'username'), + 'password': config.get(server, 'password'), + 'repository': repository, + 'server': server, + 'realm': self.DEFAULT_REALM + } + return result + + def update(self, username, password): + # import pdb; pdb.set_trace() + config = configparser.RawConfigParser() + fn = self.filename + config.read(fn) + if not config.has_section('pypi'): + config.add_section('pypi') + config.set('pypi', 'username', username) + config.set('pypi', 'password', password) + with open(fn, 'w') as f: + config.write(f) + + +def _load_pypirc(index): + """ + Read the PyPI access configuration as supported by distutils. + """ + return PyPIRCFile(url=index.url).read() + + +def _store_pypirc(index): + PyPIRCFile().update(index.username, index.password) + + +# +# get_platform()/get_host_platform() copied from Python 3.10.a0 source, with some minor +# tweaks +# + + +def get_host_platform(): + """Return a string that identifies the current platform. This is used mainly to + distinguish platform-specific build directories and platform-specific built + distributions. Typically includes the OS name and version and the + architecture (as supplied by 'os.uname()'), although the exact information + included depends on the OS; eg. on Linux, the kernel version isn't + particularly important. + + Examples of returned values: + linux-i586 + linux-alpha (?) + solaris-2.6-sun4u + + Windows will return one of: + win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win32 (all others - specifically, sys.platform is returned) + + For other non-POSIX platforms, currently just returns 'sys.platform'. + + """ + if os.name == 'nt': + if 'amd64' in sys.version.lower(): + return 'win-amd64' + if '(arm)' in sys.version.lower(): + return 'win-arm32' + if '(arm64)' in sys.version.lower(): + return 'win-arm64' + return sys.platform + + # Set for cross builds explicitly + if "_PYTHON_HOST_PLATFORM" in os.environ: + return os.environ["_PYTHON_HOST_PLATFORM"] + + if os.name != 'posix' or not hasattr(os, 'uname'): + # XXX what about the architecture? NT is Intel or Alpha, + # Mac OS is M68k or PPC, etc. + return sys.platform + + # Try to distinguish various flavours of Unix + + (osname, host, release, version, machine) = os.uname() + + # Convert the OS name to lowercase, remove '/' characters, and translate + # spaces (for "Power Macintosh") + osname = osname.lower().replace('/', '') + machine = machine.replace(' ', '_').replace('/', '-') + + if osname[:5] == 'linux': + # At least on Linux/Intel, 'machine' is the processor -- + # i386, etc. + # XXX what about Alpha, SPARC, etc? + return "%s-%s" % (osname, machine) + + elif osname[:5] == 'sunos': + if release[0] >= '5': # SunOS 5 == Solaris 2 + osname = 'solaris' + release = '%d.%s' % (int(release[0]) - 3, release[2:]) + # We can't use 'platform.architecture()[0]' because a + # bootstrap problem. We use a dict to get an error + # if some suspicious happens. + bitness = {2147483647: '32bit', 9223372036854775807: '64bit'} + machine += '.%s' % bitness[sys.maxsize] + # fall through to standard osname-release-machine representation + elif osname[:3] == 'aix': + from _aix_support import aix_platform + return aix_platform() + elif osname[:6] == 'cygwin': + osname = 'cygwin' + rel_re = re.compile(r'[\d.]+', re.ASCII) + m = rel_re.match(release) + if m: + release = m.group() + elif osname[:6] == 'darwin': + import _osx_support + try: + from distutils import sysconfig + except ImportError: + import sysconfig + osname, release, machine = _osx_support.get_platform_osx( + sysconfig.get_config_vars(), osname, release, machine) + + return '%s-%s-%s' % (osname, release, machine) + + +_TARGET_TO_PLAT = { + 'x86': 'win32', + 'x64': 'win-amd64', + 'arm': 'win-arm32', +} + + +def get_platform(): + if os.name != 'nt': + return get_host_platform() + cross_compilation_target = os.environ.get('VSCMD_ARG_TGT_ARCH') + if cross_compilation_target not in _TARGET_TO_PLAT: + return get_host_platform() + return _TARGET_TO_PLAT[cross_compilation_target] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py new file mode 100644 index 00000000..14171ac9 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py @@ -0,0 +1,751 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Implementation of a flexible versioning scheme providing support for PEP-440, +setuptools-compatible and semantic versioning. +""" + +import logging +import re + +from .compat import string_types +from .util import parse_requirement + +__all__ = ['NormalizedVersion', 'NormalizedMatcher', + 'LegacyVersion', 'LegacyMatcher', + 'SemanticVersion', 'SemanticMatcher', + 'UnsupportedVersionError', 'get_scheme'] + +logger = logging.getLogger(__name__) + + +class UnsupportedVersionError(ValueError): + """This is an unsupported version.""" + pass + + +class Version(object): + def __init__(self, s): + self._string = s = s.strip() + self._parts = parts = self.parse(s) + assert isinstance(parts, tuple) + assert len(parts) > 0 + + def parse(self, s): + raise NotImplementedError('please implement in a subclass') + + def _check_compatible(self, other): + if type(self) != type(other): + raise TypeError('cannot compare %r and %r' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + def __lt__(self, other): + self._check_compatible(other) + return self._parts < other._parts + + def __gt__(self, other): + return not (self.__lt__(other) or self.__eq__(other)) + + def __le__(self, other): + return self.__lt__(other) or self.__eq__(other) + + def __ge__(self, other): + return self.__gt__(other) or self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self._parts) + + def __repr__(self): + return "%s('%s')" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + @property + def is_prerelease(self): + raise NotImplementedError('Please implement in subclasses.') + + +class Matcher(object): + version_class = None + + # value is either a callable or the name of a method + _operators = { + '<': lambda v, c, p: v < c, + '>': lambda v, c, p: v > c, + '<=': lambda v, c, p: v == c or v < c, + '>=': lambda v, c, p: v == c or v > c, + '==': lambda v, c, p: v == c, + '===': lambda v, c, p: v == c, + # by default, compatible => >=. + '~=': lambda v, c, p: v == c or v > c, + '!=': lambda v, c, p: v != c, + } + + # this is a method only to support alternative implementations + # via overriding + def parse_requirement(self, s): + return parse_requirement(s) + + def __init__(self, s): + if self.version_class is None: + raise ValueError('Please specify a version class') + self._string = s = s.strip() + r = self.parse_requirement(s) + if not r: + raise ValueError('Not valid: %r' % s) + self.name = r.name + self.key = self.name.lower() # for case-insensitive comparisons + clist = [] + if r.constraints: + # import pdb; pdb.set_trace() + for op, s in r.constraints: + if s.endswith('.*'): + if op not in ('==', '!='): + raise ValueError('\'.*\' not allowed for ' + '%r constraints' % op) + # Could be a partial version (e.g. for '2.*') which + # won't parse as a version, so keep it as a string + vn, prefix = s[:-2], True + # Just to check that vn is a valid version + self.version_class(vn) + else: + # Should parse as a version, so we can create an + # instance for the comparison + vn, prefix = self.version_class(s), False + clist.append((op, vn, prefix)) + self._parts = tuple(clist) + + def match(self, version): + """ + Check if the provided version matches the constraints. + + :param version: The version to match against this instance. + :type version: String or :class:`Version` instance. + """ + if isinstance(version, string_types): + version = self.version_class(version) + for operator, constraint, prefix in self._parts: + f = self._operators.get(operator) + if isinstance(f, string_types): + f = getattr(self, f) + if not f: + msg = ('%r not implemented ' + 'for %s' % (operator, self.__class__.__name__)) + raise NotImplementedError(msg) + if not f(version, constraint, prefix): + return False + return True + + @property + def exact_version(self): + result = None + if len(self._parts) == 1 and self._parts[0][0] in ('==', '==='): + result = self._parts[0][1] + return result + + def _check_compatible(self, other): + if type(self) != type(other) or self.name != other.name: + raise TypeError('cannot compare %s and %s' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self.key == other.key and self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self.key) + hash(self._parts) + + def __repr__(self): + return "%s(%r)" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + +PEP440_VERSION_RE = re.compile(r'^v?(\d+!)?(\d+(\.\d+)*)((a|alpha|b|beta|c|rc|pre|preview)(\d+)?)?' + r'(\.(post|r|rev)(\d+)?)?([._-]?(dev)(\d+)?)?' + r'(\+([a-zA-Z\d]+(\.[a-zA-Z\d]+)?))?$', re.I) + + +def _pep_440_key(s): + s = s.strip() + m = PEP440_VERSION_RE.match(s) + if not m: + raise UnsupportedVersionError('Not a valid version: %s' % s) + groups = m.groups() + nums = tuple(int(v) for v in groups[1].split('.')) + while len(nums) > 1 and nums[-1] == 0: + nums = nums[:-1] + + if not groups[0]: + epoch = 0 + else: + epoch = int(groups[0][:-1]) + pre = groups[4:6] + post = groups[7:9] + dev = groups[10:12] + local = groups[13] + if pre == (None, None): + pre = () + else: + if pre[1] is None: + pre = pre[0], 0 + else: + pre = pre[0], int(pre[1]) + if post == (None, None): + post = () + else: + if post[1] is None: + post = post[0], 0 + else: + post = post[0], int(post[1]) + if dev == (None, None): + dev = () + else: + if dev[1] is None: + dev = dev[0], 0 + else: + dev = dev[0], int(dev[1]) + if local is None: + local = () + else: + parts = [] + for part in local.split('.'): + # to ensure that numeric compares as > lexicographic, avoid + # comparing them directly, but encode a tuple which ensures + # correct sorting + if part.isdigit(): + part = (1, int(part)) + else: + part = (0, part) + parts.append(part) + local = tuple(parts) + if not pre: + # either before pre-release, or final release and after + if not post and dev: + # before pre-release + pre = ('a', -1) # to sort before a0 + else: + pre = ('z',) # to sort after all pre-releases + # now look at the state of post and dev. + if not post: + post = ('_',) # sort before 'a' + if not dev: + dev = ('final',) + + return epoch, nums, pre, post, dev, local + + +_normalized_key = _pep_440_key + + +class NormalizedVersion(Version): + """A rational version. + + Good: + 1.2 # equivalent to "1.2.0" + 1.2.0 + 1.2a1 + 1.2.3a2 + 1.2.3b1 + 1.2.3c1 + 1.2.3.4 + TODO: fill this out + + Bad: + 1 # minimum two numbers + 1.2a # release level must have a release serial + 1.2.3b + """ + def parse(self, s): + result = _normalized_key(s) + # _normalized_key loses trailing zeroes in the release + # clause, since that's needed to ensure that X.Y == X.Y.0 == X.Y.0.0 + # However, PEP 440 prefix matching needs it: for example, + # (~= 1.4.5.0) matches differently to (~= 1.4.5.0.0). + m = PEP440_VERSION_RE.match(s) # must succeed + groups = m.groups() + self._release_clause = tuple(int(v) for v in groups[1].split('.')) + return result + + PREREL_TAGS = set(['a', 'b', 'c', 'rc', 'dev']) + + @property + def is_prerelease(self): + return any(t[0] in self.PREREL_TAGS for t in self._parts if t) + + +def _match_prefix(x, y): + x = str(x) + y = str(y) + if x == y: + return True + if not x.startswith(y): + return False + n = len(y) + return x[n] == '.' + + +class NormalizedMatcher(Matcher): + version_class = NormalizedVersion + + # value is either a callable or the name of a method + _operators = { + '~=': '_match_compatible', + '<': '_match_lt', + '>': '_match_gt', + '<=': '_match_le', + '>=': '_match_ge', + '==': '_match_eq', + '===': '_match_arbitrary', + '!=': '_match_ne', + } + + def _adjust_local(self, version, constraint, prefix): + if prefix: + strip_local = '+' not in constraint and version._parts[-1] + else: + # both constraint and version are + # NormalizedVersion instances. + # If constraint does not have a local component, + # ensure the version doesn't, either. + strip_local = not constraint._parts[-1] and version._parts[-1] + if strip_local: + s = version._string.split('+', 1)[0] + version = self.version_class(s) + return version, constraint + + def _match_lt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version >= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_gt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version <= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_le(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version <= constraint + + def _match_ge(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version >= constraint + + def _match_eq(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version == constraint) + else: + result = _match_prefix(version, constraint) + return result + + def _match_arbitrary(self, version, constraint, prefix): + return str(version) == str(constraint) + + def _match_ne(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version != constraint) + else: + result = not _match_prefix(version, constraint) + return result + + def _match_compatible(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version == constraint: + return True + if version < constraint: + return False +# if not prefix: +# return True + release_clause = constraint._release_clause + if len(release_clause) > 1: + release_clause = release_clause[:-1] + pfx = '.'.join([str(i) for i in release_clause]) + return _match_prefix(version, pfx) + + +_REPLACEMENTS = ( + (re.compile('[.+-]$'), ''), # remove trailing puncts + (re.compile(r'^[.](\d)'), r'0.\1'), # .N -> 0.N at start + (re.compile('^[.-]'), ''), # remove leading puncts + (re.compile(r'^\((.*)\)$'), r'\1'), # remove parentheses + (re.compile(r'^v(ersion)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile(r'^r(ev)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\b(alfa|apha)\b'), 'alpha'), # misspelt alpha + (re.compile(r'\b(pre-alpha|prealpha)\b'), + 'pre.alpha'), # standardise + (re.compile(r'\(beta\)$'), 'beta'), # remove parentheses +) + +_SUFFIX_REPLACEMENTS = ( + (re.compile('^[:~._+-]+'), ''), # remove leading puncts + (re.compile('[,*")([\\]]'), ''), # remove unwanted chars + (re.compile('[~:+_ -]'), '.'), # replace illegal chars + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\.$'), ''), # trailing '.' +) + +_NUMERIC_PREFIX = re.compile(r'(\d+(\.\d+)*)') + + +def _suggest_semantic_version(s): + """ + Try to suggest a semantic form for a version for which + _suggest_normalized_version couldn't come up with anything. + """ + result = s.strip().lower() + for pat, repl in _REPLACEMENTS: + result = pat.sub(repl, result) + if not result: + result = '0.0.0' + + # Now look for numeric prefix, and separate it out from + # the rest. + # import pdb; pdb.set_trace() + m = _NUMERIC_PREFIX.match(result) + if not m: + prefix = '0.0.0' + suffix = result + else: + prefix = m.groups()[0].split('.') + prefix = [int(i) for i in prefix] + while len(prefix) < 3: + prefix.append(0) + if len(prefix) == 3: + suffix = result[m.end():] + else: + suffix = '.'.join([str(i) for i in prefix[3:]]) + result[m.end():] + prefix = prefix[:3] + prefix = '.'.join([str(i) for i in prefix]) + suffix = suffix.strip() + if suffix: + # import pdb; pdb.set_trace() + # massage the suffix. + for pat, repl in _SUFFIX_REPLACEMENTS: + suffix = pat.sub(repl, suffix) + + if not suffix: + result = prefix + else: + sep = '-' if 'dev' in suffix else '+' + result = prefix + sep + suffix + if not is_semver(result): + result = None + return result + + +def _suggest_normalized_version(s): + """Suggest a normalized version close to the given version string. + + If you have a version string that isn't rational (i.e. NormalizedVersion + doesn't like it) then you might be able to get an equivalent (or close) + rational version from this function. + + This does a number of simple normalizations to the given string, based + on observation of versions currently in use on PyPI. Given a dump of + those version during PyCon 2009, 4287 of them: + - 2312 (53.93%) match NormalizedVersion without change + with the automatic suggestion + - 3474 (81.04%) match when using this suggestion method + + @param s {str} An irrational version string. + @returns A rational version string, or None, if couldn't determine one. + """ + try: + _normalized_key(s) + return s # already rational + except UnsupportedVersionError: + pass + + rs = s.lower() + + # part of this could use maketrans + for orig, repl in (('-alpha', 'a'), ('-beta', 'b'), ('alpha', 'a'), + ('beta', 'b'), ('rc', 'c'), ('-final', ''), + ('-pre', 'c'), + ('-release', ''), ('.release', ''), ('-stable', ''), + ('+', '.'), ('_', '.'), (' ', ''), ('.final', ''), + ('final', '')): + rs = rs.replace(orig, repl) + + # if something ends with dev or pre, we add a 0 + rs = re.sub(r"pre$", r"pre0", rs) + rs = re.sub(r"dev$", r"dev0", rs) + + # if we have something like "b-2" or "a.2" at the end of the + # version, that is probably beta, alpha, etc + # let's remove the dash or dot + rs = re.sub(r"([abc]|rc)[\-\.](\d+)$", r"\1\2", rs) + + # 1.0-dev-r371 -> 1.0.dev371 + # 0.1-dev-r79 -> 0.1.dev79 + rs = re.sub(r"[\-\.](dev)[\-\.]?r?(\d+)$", r".\1\2", rs) + + # Clean: 2.0.a.3, 2.0.b1, 0.9.0~c1 + rs = re.sub(r"[.~]?([abc])\.?", r"\1", rs) + + # Clean: v0.3, v1.0 + if rs.startswith('v'): + rs = rs[1:] + + # Clean leading '0's on numbers. + # TODO: unintended side-effect on, e.g., "2003.05.09" + # PyPI stats: 77 (~2%) better + rs = re.sub(r"\b0+(\d+)(?!\d)", r"\1", rs) + + # Clean a/b/c with no version. E.g. "1.0a" -> "1.0a0". Setuptools infers + # zero. + # PyPI stats: 245 (7.56%) better + rs = re.sub(r"(\d+[abc])$", r"\g<1>0", rs) + + # the 'dev-rNNN' tag is a dev tag + rs = re.sub(r"\.?(dev-r|dev\.r)\.?(\d+)$", r".dev\2", rs) + + # clean the - when used as a pre delimiter + rs = re.sub(r"-(a|b|c)(\d+)$", r"\1\2", rs) + + # a terminal "dev" or "devel" can be changed into ".dev0" + rs = re.sub(r"[\.\-](dev|devel)$", r".dev0", rs) + + # a terminal "dev" can be changed into ".dev0" + rs = re.sub(r"(?![\.\-])dev$", r".dev0", rs) + + # a terminal "final" or "stable" can be removed + rs = re.sub(r"(final|stable)$", "", rs) + + # The 'r' and the '-' tags are post release tags + # 0.4a1.r10 -> 0.4a1.post10 + # 0.9.33-17222 -> 0.9.33.post17222 + # 0.9.33-r17222 -> 0.9.33.post17222 + rs = re.sub(r"\.?(r|-|-r)\.?(\d+)$", r".post\2", rs) + + # Clean 'r' instead of 'dev' usage: + # 0.9.33+r17222 -> 0.9.33.dev17222 + # 1.0dev123 -> 1.0.dev123 + # 1.0.git123 -> 1.0.dev123 + # 1.0.bzr123 -> 1.0.dev123 + # 0.1a0dev.123 -> 0.1a0.dev123 + # PyPI stats: ~150 (~4%) better + rs = re.sub(r"\.?(dev|git|bzr)\.?(\d+)$", r".dev\2", rs) + + # Clean '.pre' (normalized from '-pre' above) instead of 'c' usage: + # 0.2.pre1 -> 0.2c1 + # 0.2-c1 -> 0.2c1 + # 1.0preview123 -> 1.0c123 + # PyPI stats: ~21 (0.62%) better + rs = re.sub(r"\.?(pre|preview|-c)(\d+)$", r"c\g<2>", rs) + + # Tcl/Tk uses "px" for their post release markers + rs = re.sub(r"p(\d+)$", r".post\1", rs) + + try: + _normalized_key(rs) + except UnsupportedVersionError: + rs = None + return rs + +# +# Legacy version processing (distribute-compatible) +# + + +_VERSION_PART = re.compile(r'([a-z]+|\d+|[\.-])', re.I) +_VERSION_REPLACE = { + 'pre': 'c', + 'preview': 'c', + '-': 'final-', + 'rc': 'c', + 'dev': '@', + '': None, + '.': None, +} + + +def _legacy_key(s): + def get_parts(s): + result = [] + for p in _VERSION_PART.split(s.lower()): + p = _VERSION_REPLACE.get(p, p) + if p: + if '0' <= p[:1] <= '9': + p = p.zfill(8) + else: + p = '*' + p + result.append(p) + result.append('*final') + return result + + result = [] + for p in get_parts(s): + if p.startswith('*'): + if p < '*final': + while result and result[-1] == '*final-': + result.pop() + while result and result[-1] == '00000000': + result.pop() + result.append(p) + return tuple(result) + + +class LegacyVersion(Version): + def parse(self, s): + return _legacy_key(s) + + @property + def is_prerelease(self): + result = False + for x in self._parts: + if (isinstance(x, string_types) and x.startswith('*') and + x < '*final'): + result = True + break + return result + + +class LegacyMatcher(Matcher): + version_class = LegacyVersion + + _operators = dict(Matcher._operators) + _operators['~='] = '_match_compatible' + + numeric_re = re.compile(r'^(\d+(\.\d+)*)') + + def _match_compatible(self, version, constraint, prefix): + if version < constraint: + return False + m = self.numeric_re.match(str(constraint)) + if not m: + logger.warning('Cannot compute compatible match for version %s ' + ' and constraint %s', version, constraint) + return True + s = m.groups()[0] + if '.' in s: + s = s.rsplit('.', 1)[0] + return _match_prefix(version, s) + +# +# Semantic versioning +# + + +_SEMVER_RE = re.compile(r'^(\d+)\.(\d+)\.(\d+)' + r'(-[a-z0-9]+(\.[a-z0-9-]+)*)?' + r'(\+[a-z0-9]+(\.[a-z0-9-]+)*)?$', re.I) + + +def is_semver(s): + return _SEMVER_RE.match(s) + + +def _semantic_key(s): + def make_tuple(s, absent): + if s is None: + result = (absent,) + else: + parts = s[1:].split('.') + # We can't compare ints and strings on Python 3, so fudge it + # by zero-filling numeric values so simulate a numeric comparison + result = tuple([p.zfill(8) if p.isdigit() else p for p in parts]) + return result + + m = is_semver(s) + if not m: + raise UnsupportedVersionError(s) + groups = m.groups() + major, minor, patch = [int(i) for i in groups[:3]] + # choose the '|' and '*' so that versions sort correctly + pre, build = make_tuple(groups[3], '|'), make_tuple(groups[5], '*') + return (major, minor, patch), pre, build + + +class SemanticVersion(Version): + def parse(self, s): + return _semantic_key(s) + + @property + def is_prerelease(self): + return self._parts[1][0] != '|' + + +class SemanticMatcher(Matcher): + version_class = SemanticVersion + + +class VersionScheme(object): + def __init__(self, key, matcher, suggester=None): + self.key = key + self.matcher = matcher + self.suggester = suggester + + def is_valid_version(self, s): + try: + self.matcher.version_class(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_matcher(self, s): + try: + self.matcher(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_constraint_list(self, s): + """ + Used for processing some metadata fields + """ + # See issue #140. Be tolerant of a single trailing comma. + if s.endswith(','): + s = s[:-1] + return self.is_valid_matcher('dummy_name (%s)' % s) + + def suggest(self, s): + if self.suggester is None: + result = None + else: + result = self.suggester(s) + return result + + +_SCHEMES = { + 'normalized': VersionScheme(_normalized_key, NormalizedMatcher, + _suggest_normalized_version), + 'legacy': VersionScheme(_legacy_key, LegacyMatcher, lambda self, s: s), + 'semantic': VersionScheme(_semantic_key, SemanticMatcher, + _suggest_semantic_version), +} + +_SCHEMES['default'] = _SCHEMES['normalized'] + + +def get_scheme(name): + if name not in _SCHEMES: + raise ValueError('unknown scheme name: %r' % name) + return _SCHEMES[name] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py new file mode 100644 index 00000000..4a5a30e1 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py @@ -0,0 +1,1099 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import base64 +import codecs +import datetime +from email import message_from_file +import hashlib +import json +import logging +import os +import posixpath +import re +import shutil +import sys +import tempfile +import zipfile + +from . import __version__, DistlibException +from .compat import sysconfig, ZipFile, fsdecode, text_type, filter +from .database import InstalledDistribution +from .metadata import Metadata, WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME +from .util import (FileOperator, convert_path, CSVReader, CSVWriter, Cache, + cached_property, get_cache_base, read_exports, tempdir, + get_platform) +from .version import NormalizedVersion, UnsupportedVersionError + +logger = logging.getLogger(__name__) + +cache = None # created when needed + +if hasattr(sys, 'pypy_version_info'): # pragma: no cover + IMP_PREFIX = 'pp' +elif sys.platform.startswith('java'): # pragma: no cover + IMP_PREFIX = 'jy' +elif sys.platform == 'cli': # pragma: no cover + IMP_PREFIX = 'ip' +else: + IMP_PREFIX = 'cp' + +VER_SUFFIX = sysconfig.get_config_var('py_version_nodot') +if not VER_SUFFIX: # pragma: no cover + VER_SUFFIX = '%s%s' % sys.version_info[:2] +PYVER = 'py' + VER_SUFFIX +IMPVER = IMP_PREFIX + VER_SUFFIX + +ARCH = get_platform().replace('-', '_').replace('.', '_') + +ABI = sysconfig.get_config_var('SOABI') +if ABI and ABI.startswith('cpython-'): + ABI = ABI.replace('cpython-', 'cp').split('-')[0] +else: + + def _derive_abi(): + parts = ['cp', VER_SUFFIX] + if sysconfig.get_config_var('Py_DEBUG'): + parts.append('d') + if IMP_PREFIX == 'cp': + vi = sys.version_info[:2] + if vi < (3, 8): + wpm = sysconfig.get_config_var('WITH_PYMALLOC') + if wpm is None: + wpm = True + if wpm: + parts.append('m') + if vi < (3, 3): + us = sysconfig.get_config_var('Py_UNICODE_SIZE') + if us == 4 or (us is None and sys.maxunicode == 0x10FFFF): + parts.append('u') + return ''.join(parts) + + ABI = _derive_abi() + del _derive_abi + +FILENAME_RE = re.compile( + r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))? +-(?P\w+\d+(\.\w+\d+)*) +-(?P\w+) +-(?P\w+(\.\w+)*) +\.whl$ +''', re.IGNORECASE | re.VERBOSE) + +NAME_VERSION_RE = re.compile( + r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))?$ +''', re.IGNORECASE | re.VERBOSE) + +SHEBANG_RE = re.compile(br'\s*#![^\r\n]*') +SHEBANG_DETAIL_RE = re.compile(br'^(\s*#!("[^"]+"|\S+))\s+(.*)$') +SHEBANG_PYTHON = b'#!python' +SHEBANG_PYTHONW = b'#!pythonw' + +if os.sep == '/': + to_posix = lambda o: o +else: + to_posix = lambda o: o.replace(os.sep, '/') + +if sys.version_info[0] < 3: + import imp +else: + imp = None + import importlib.machinery + import importlib.util + + +def _get_suffixes(): + if imp: + return [s[0] for s in imp.get_suffixes()] + else: + return importlib.machinery.EXTENSION_SUFFIXES + + +def _load_dynamic(name, path): + # https://docs.python.org/3/library/importlib.html#importing-a-source-file-directly + if imp: + return imp.load_dynamic(name, path) + else: + spec = importlib.util.spec_from_file_location(name, path) + module = importlib.util.module_from_spec(spec) + sys.modules[name] = module + spec.loader.exec_module(module) + return module + + +class Mounter(object): + + def __init__(self): + self.impure_wheels = {} + self.libs = {} + + def add(self, pathname, extensions): + self.impure_wheels[pathname] = extensions + self.libs.update(extensions) + + def remove(self, pathname): + extensions = self.impure_wheels.pop(pathname) + for k, v in extensions: + if k in self.libs: + del self.libs[k] + + def find_module(self, fullname, path=None): + if fullname in self.libs: + result = self + else: + result = None + return result + + def load_module(self, fullname): + if fullname in sys.modules: + result = sys.modules[fullname] + else: + if fullname not in self.libs: + raise ImportError('unable to find extension for %s' % fullname) + result = _load_dynamic(fullname, self.libs[fullname]) + result.__loader__ = self + parts = fullname.rsplit('.', 1) + if len(parts) > 1: + result.__package__ = parts[0] + return result + + +_hook = Mounter() + + +class Wheel(object): + """ + Class to build and install from Wheel files (PEP 427). + """ + + wheel_version = (1, 1) + hash_kind = 'sha256' + + def __init__(self, filename=None, sign=False, verify=False): + """ + Initialise an instance using a (valid) filename. + """ + self.sign = sign + self.should_verify = verify + self.buildver = '' + self.pyver = [PYVER] + self.abi = ['none'] + self.arch = ['any'] + self.dirname = os.getcwd() + if filename is None: + self.name = 'dummy' + self.version = '0.1' + self._filename = self.filename + else: + m = NAME_VERSION_RE.match(filename) + if m: + info = m.groupdict('') + self.name = info['nm'] + # Reinstate the local version separator + self.version = info['vn'].replace('_', '-') + self.buildver = info['bn'] + self._filename = self.filename + else: + dirname, filename = os.path.split(filename) + m = FILENAME_RE.match(filename) + if not m: + raise DistlibException('Invalid name or ' + 'filename: %r' % filename) + if dirname: + self.dirname = os.path.abspath(dirname) + self._filename = filename + info = m.groupdict('') + self.name = info['nm'] + self.version = info['vn'] + self.buildver = info['bn'] + self.pyver = info['py'].split('.') + self.abi = info['bi'].split('.') + self.arch = info['ar'].split('.') + + @property + def filename(self): + """ + Build and return a filename from the various components. + """ + if self.buildver: + buildver = '-' + self.buildver + else: + buildver = '' + pyver = '.'.join(self.pyver) + abi = '.'.join(self.abi) + arch = '.'.join(self.arch) + # replace - with _ as a local version separator + version = self.version.replace('-', '_') + return '%s-%s%s-%s-%s-%s.whl' % (self.name, version, buildver, pyver, + abi, arch) + + @property + def exists(self): + path = os.path.join(self.dirname, self.filename) + return os.path.isfile(path) + + @property + def tags(self): + for pyver in self.pyver: + for abi in self.abi: + for arch in self.arch: + yield pyver, abi, arch + + @cached_property + def metadata(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + wrapper = codecs.getreader('utf-8') + with ZipFile(pathname, 'r') as zf: + self.get_wheel_metadata(zf) + # wv = wheel_metadata['Wheel-Version'].split('.', 1) + # file_version = tuple([int(i) for i in wv]) + # if file_version < (1, 1): + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME, + # LEGACY_METADATA_FILENAME] + # else: + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME] + fns = [WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME] + result = None + for fn in fns: + try: + metadata_filename = posixpath.join(info_dir, fn) + with zf.open(metadata_filename) as bf: + wf = wrapper(bf) + result = Metadata(fileobj=wf) + if result: + break + except KeyError: + pass + if not result: + raise ValueError('Invalid wheel, because metadata is ' + 'missing: looked in %s' % ', '.join(fns)) + return result + + def get_wheel_metadata(self, zf): + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + metadata_filename = posixpath.join(info_dir, 'WHEEL') + with zf.open(metadata_filename) as bf: + wf = codecs.getreader('utf-8')(bf) + message = message_from_file(wf) + return dict(message) + + @cached_property + def info(self): + pathname = os.path.join(self.dirname, self.filename) + with ZipFile(pathname, 'r') as zf: + result = self.get_wheel_metadata(zf) + return result + + def process_shebang(self, data): + m = SHEBANG_RE.match(data) + if m: + end = m.end() + shebang, data_after_shebang = data[:end], data[end:] + # Preserve any arguments after the interpreter + if b'pythonw' in shebang.lower(): + shebang_python = SHEBANG_PYTHONW + else: + shebang_python = SHEBANG_PYTHON + m = SHEBANG_DETAIL_RE.match(shebang) + if m: + args = b' ' + m.groups()[-1] + else: + args = b'' + shebang = shebang_python + args + data = shebang + data_after_shebang + else: + cr = data.find(b'\r') + lf = data.find(b'\n') + if cr < 0 or cr > lf: + term = b'\n' + else: + if data[cr:cr + 2] == b'\r\n': + term = b'\r\n' + else: + term = b'\r' + data = SHEBANG_PYTHON + term + data + return data + + def get_hash(self, data, hash_kind=None): + if hash_kind is None: + hash_kind = self.hash_kind + try: + hasher = getattr(hashlib, hash_kind) + except AttributeError: + raise DistlibException('Unsupported hash algorithm: %r' % + hash_kind) + result = hasher(data).digest() + result = base64.urlsafe_b64encode(result).rstrip(b'=').decode('ascii') + return hash_kind, result + + def write_record(self, records, record_path, archive_record_path): + records = list(records) # make a copy, as mutated + records.append((archive_record_path, '', '')) + with CSVWriter(record_path) as writer: + for row in records: + writer.writerow(row) + + def write_records(self, info, libdir, archive_paths): + records = [] + distinfo, info_dir = info + # hasher = getattr(hashlib, self.hash_kind) + for ap, p in archive_paths: + with open(p, 'rb') as f: + data = f.read() + digest = '%s=%s' % self.get_hash(data) + size = os.path.getsize(p) + records.append((ap, digest, size)) + + p = os.path.join(distinfo, 'RECORD') + ap = to_posix(os.path.join(info_dir, 'RECORD')) + self.write_record(records, p, ap) + archive_paths.append((ap, p)) + + def build_zip(self, pathname, archive_paths): + with ZipFile(pathname, 'w', zipfile.ZIP_DEFLATED) as zf: + for ap, p in archive_paths: + logger.debug('Wrote %s to %s in wheel', p, ap) + zf.write(p, ap) + + def build(self, paths, tags=None, wheel_version=None): + """ + Build a wheel from files in specified paths, and use any specified tags + when determining the name of the wheel. + """ + if tags is None: + tags = {} + + libkey = list(filter(lambda o: o in paths, ('purelib', 'platlib')))[0] + if libkey == 'platlib': + is_pure = 'false' + default_pyver = [IMPVER] + default_abi = [ABI] + default_arch = [ARCH] + else: + is_pure = 'true' + default_pyver = [PYVER] + default_abi = ['none'] + default_arch = ['any'] + + self.pyver = tags.get('pyver', default_pyver) + self.abi = tags.get('abi', default_abi) + self.arch = tags.get('arch', default_arch) + + libdir = paths[libkey] + + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + archive_paths = [] + + # First, stuff which is not in site-packages + for key in ('data', 'headers', 'scripts'): + if key not in paths: + continue + path = paths[key] + if os.path.isdir(path): + for root, dirs, files in os.walk(path): + for fn in files: + p = fsdecode(os.path.join(root, fn)) + rp = os.path.relpath(p, path) + ap = to_posix(os.path.join(data_dir, key, rp)) + archive_paths.append((ap, p)) + if key == 'scripts' and not p.endswith('.exe'): + with open(p, 'rb') as f: + data = f.read() + data = self.process_shebang(data) + with open(p, 'wb') as f: + f.write(data) + + # Now, stuff which is in site-packages, other than the + # distinfo stuff. + path = libdir + distinfo = None + for root, dirs, files in os.walk(path): + if root == path: + # At the top level only, save distinfo for later + # and skip it for now + for i, dn in enumerate(dirs): + dn = fsdecode(dn) + if dn.endswith('.dist-info'): + distinfo = os.path.join(root, dn) + del dirs[i] + break + assert distinfo, '.dist-info directory expected, not found' + + for fn in files: + # comment out next suite to leave .pyc files in + if fsdecode(fn).endswith(('.pyc', '.pyo')): + continue + p = os.path.join(root, fn) + rp = to_posix(os.path.relpath(p, path)) + archive_paths.append((rp, p)) + + # Now distinfo. Assumed to be flat, i.e. os.listdir is enough. + files = os.listdir(distinfo) + for fn in files: + if fn not in ('RECORD', 'INSTALLER', 'SHARED', 'WHEEL'): + p = fsdecode(os.path.join(distinfo, fn)) + ap = to_posix(os.path.join(info_dir, fn)) + archive_paths.append((ap, p)) + + wheel_metadata = [ + 'Wheel-Version: %d.%d' % (wheel_version or self.wheel_version), + 'Generator: distlib %s' % __version__, + 'Root-Is-Purelib: %s' % is_pure, + ] + for pyver, abi, arch in self.tags: + wheel_metadata.append('Tag: %s-%s-%s' % (pyver, abi, arch)) + p = os.path.join(distinfo, 'WHEEL') + with open(p, 'w') as f: + f.write('\n'.join(wheel_metadata)) + ap = to_posix(os.path.join(info_dir, 'WHEEL')) + archive_paths.append((ap, p)) + + # sort the entries by archive path. Not needed by any spec, but it + # keeps the archive listing and RECORD tidier than they would otherwise + # be. Use the number of path segments to keep directory entries together, + # and keep the dist-info stuff at the end. + def sorter(t): + ap = t[0] + n = ap.count('/') + if '.dist-info' in ap: + n += 10000 + return (n, ap) + + archive_paths = sorted(archive_paths, key=sorter) + + # Now, at last, RECORD. + # Paths in here are archive paths - nothing else makes sense. + self.write_records((distinfo, info_dir), libdir, archive_paths) + # Now, ready to build the zip file + pathname = os.path.join(self.dirname, self.filename) + self.build_zip(pathname, archive_paths) + return pathname + + def skip_entry(self, arcname): + """ + Determine whether an archive entry should be skipped when verifying + or installing. + """ + # The signature file won't be in RECORD, + # and we don't currently don't do anything with it + # We also skip directories, as they won't be in RECORD + # either. See: + # + # https://github.com/pypa/wheel/issues/294 + # https://github.com/pypa/wheel/issues/287 + # https://github.com/pypa/wheel/pull/289 + # + return arcname.endswith(('/', '/RECORD.jws')) + + def install(self, paths, maker, **kwargs): + """ + Install a wheel to the specified paths. If kwarg ``warner`` is + specified, it should be a callable, which will be called with two + tuples indicating the wheel version of this software and the wheel + version in the file, if there is a discrepancy in the versions. + This can be used to issue any warnings to raise any exceptions. + If kwarg ``lib_only`` is True, only the purelib/platlib files are + installed, and the headers, scripts, data and dist-info metadata are + not written. If kwarg ``bytecode_hashed_invalidation`` is True, written + bytecode will try to use file-hash based invalidation (PEP-552) on + supported interpreter versions (CPython 2.7+). + + The return value is a :class:`InstalledDistribution` instance unless + ``options.lib_only`` is True, in which case the return value is ``None``. + """ + + dry_run = maker.dry_run + warner = kwargs.get('warner') + lib_only = kwargs.get('lib_only', False) + bc_hashed_invalidation = kwargs.get('bytecode_hashed_invalidation', + False) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message = message_from_file(wf) + wv = message['Wheel-Version'].split('.', 1) + file_version = tuple([int(i) for i in wv]) + if (file_version != self.wheel_version) and warner: + warner(self.wheel_version, file_version) + + if message['Root-Is-Purelib'] == 'true': + libdir = paths['purelib'] + else: + libdir = paths['platlib'] + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + data_pfx = posixpath.join(data_dir, '') + info_pfx = posixpath.join(info_dir, '') + script_pfx = posixpath.join(data_dir, 'scripts', '') + + # make a new instance rather than a copy of maker's, + # as we mutate it + fileop = FileOperator(dry_run=dry_run) + fileop.record = True # so we can rollback if needed + + bc = not sys.dont_write_bytecode # Double negatives. Lovely! + + outfiles = [] # for RECORD writing + + # for script copying/shebang processing + workdir = tempfile.mkdtemp() + # set target dir later + # we default add_launchers to False, as the + # Python Launcher should be used instead + maker.source_dir = workdir + maker.target_dir = None + try: + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + if lib_only and u_arcname.startswith((info_pfx, data_pfx)): + logger.debug('lib_only: skipping %s', u_arcname) + continue + is_script = (u_arcname.startswith(script_pfx) + and not u_arcname.endswith('.exe')) + + if u_arcname.startswith(data_pfx): + _, where, rp = u_arcname.split('/', 2) + outfile = os.path.join(paths[where], convert_path(rp)) + else: + # meant for site-packages. + if u_arcname in (wheel_metadata_name, record_name): + continue + outfile = os.path.join(libdir, convert_path(u_arcname)) + if not is_script: + with zf.open(arcname) as bf: + fileop.copy_stream(bf, outfile) + # Issue #147: permission bits aren't preserved. Using + # zf.extract(zinfo, libdir) should have worked, but didn't, + # see https://www.thetopsites.net/article/53834422.shtml + # So ... manually preserve permission bits as given in zinfo + if os.name == 'posix': + # just set the normal permission bits + os.chmod(outfile, + (zinfo.external_attr >> 16) & 0x1FF) + outfiles.append(outfile) + # Double check the digest of the written file + if not dry_run and row[1]: + with open(outfile, 'rb') as bf: + data = bf.read() + _, newdigest = self.get_hash(data, kind) + if newdigest != digest: + raise DistlibException('digest mismatch ' + 'on write for ' + '%s' % outfile) + if bc and outfile.endswith('.py'): + try: + pyc = fileop.byte_compile( + outfile, + hashed_invalidation=bc_hashed_invalidation) + outfiles.append(pyc) + except Exception: + # Don't give up if byte-compilation fails, + # but log it and perhaps warn the user + logger.warning('Byte-compilation failed', + exc_info=True) + else: + fn = os.path.basename(convert_path(arcname)) + workname = os.path.join(workdir, fn) + with zf.open(arcname) as bf: + fileop.copy_stream(bf, workname) + + dn, fn = os.path.split(outfile) + maker.target_dir = dn + filenames = maker.make(fn) + fileop.set_executable_mode(filenames) + outfiles.extend(filenames) + + if lib_only: + logger.debug('lib_only: returning None') + dist = None + else: + # Generate scripts + + # Try to get pydist.json so we can see if there are + # any commands to generate. If this fails (e.g. because + # of a legacy wheel), log a warning but don't give up. + commands = None + file_version = self.info['Wheel-Version'] + if file_version == '1.0': + # Use legacy info + ep = posixpath.join(info_dir, 'entry_points.txt') + try: + with zf.open(ep) as bwf: + epdata = read_exports(bwf) + commands = {} + for key in ('console', 'gui'): + k = '%s_scripts' % key + if k in epdata: + commands['wrap_%s' % key] = d = {} + for v in epdata[k].values(): + s = '%s:%s' % (v.prefix, v.suffix) + if v.flags: + s += ' [%s]' % ','.join(v.flags) + d[v.name] = s + except Exception: + logger.warning('Unable to read legacy script ' + 'metadata, so cannot generate ' + 'scripts') + else: + try: + with zf.open(metadata_name) as bwf: + wf = wrapper(bwf) + commands = json.load(wf).get('extensions') + if commands: + commands = commands.get('python.commands') + except Exception: + logger.warning('Unable to read JSON metadata, so ' + 'cannot generate scripts') + if commands: + console_scripts = commands.get('wrap_console', {}) + gui_scripts = commands.get('wrap_gui', {}) + if console_scripts or gui_scripts: + script_dir = paths.get('scripts', '') + if not os.path.isdir(script_dir): + raise ValueError('Valid script path not ' + 'specified') + maker.target_dir = script_dir + for k, v in console_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script) + fileop.set_executable_mode(filenames) + + if gui_scripts: + options = {'gui': True} + for k, v in gui_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script, options) + fileop.set_executable_mode(filenames) + + p = os.path.join(libdir, info_dir) + dist = InstalledDistribution(p) + + # Write SHARED + paths = dict(paths) # don't change passed in dict + del paths['purelib'] + del paths['platlib'] + paths['lib'] = libdir + p = dist.write_shared_locations(paths, dry_run) + if p: + outfiles.append(p) + + # Write RECORD + dist.write_installed_files(outfiles, paths['prefix'], + dry_run) + return dist + except Exception: # pragma: no cover + logger.exception('installation failed.') + fileop.rollback() + raise + finally: + shutil.rmtree(workdir) + + def _get_dylib_cache(self): + global cache + if cache is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('dylib-cache'), + '%s.%s' % sys.version_info[:2]) + cache = Cache(base) + return cache + + def _get_extensions(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + arcname = posixpath.join(info_dir, 'EXTENSIONS') + wrapper = codecs.getreader('utf-8') + result = [] + with ZipFile(pathname, 'r') as zf: + try: + with zf.open(arcname) as bf: + wf = wrapper(bf) + extensions = json.load(wf) + cache = self._get_dylib_cache() + prefix = cache.prefix_to_dir(pathname) + cache_base = os.path.join(cache.base, prefix) + if not os.path.isdir(cache_base): + os.makedirs(cache_base) + for name, relpath in extensions.items(): + dest = os.path.join(cache_base, convert_path(relpath)) + if not os.path.exists(dest): + extract = True + else: + file_time = os.stat(dest).st_mtime + file_time = datetime.datetime.fromtimestamp( + file_time) + info = zf.getinfo(relpath) + wheel_time = datetime.datetime(*info.date_time) + extract = wheel_time > file_time + if extract: + zf.extract(relpath, cache_base) + result.append((name, dest)) + except KeyError: + pass + return result + + def is_compatible(self): + """ + Determine if a wheel is compatible with the running system. + """ + return is_compatible(self) + + def is_mountable(self): + """ + Determine if a wheel is asserted as mountable by its metadata. + """ + return True # for now - metadata details TBD + + def mount(self, append=False): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if not self.is_compatible(): + msg = 'Wheel %s not compatible with this Python.' % pathname + raise DistlibException(msg) + if not self.is_mountable(): + msg = 'Wheel %s is marked as not mountable.' % pathname + raise DistlibException(msg) + if pathname in sys.path: + logger.debug('%s already in path', pathname) + else: + if append: + sys.path.append(pathname) + else: + sys.path.insert(0, pathname) + extensions = self._get_extensions() + if extensions: + if _hook not in sys.meta_path: + sys.meta_path.append(_hook) + _hook.add(pathname, extensions) + + def unmount(self): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if pathname not in sys.path: + logger.debug('%s not in path', pathname) + else: + sys.path.remove(pathname) + if pathname in _hook.impure_wheels: + _hook.remove(pathname) + if not _hook.impure_wheels: + if _hook in sys.meta_path: + sys.meta_path.remove(_hook) + + def verify(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + # data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + # metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message_from_file(wf) + # wv = message['Wheel-Version'].split('.', 1) + # file_version = tuple([int(i) for i in wv]) + # TODO version verification + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + # See issue #115: some wheels have .. in their entries, but + # in the filename ... e.g. __main__..py ! So the check is + # updated to look for .. in the directory portions + p = u_arcname.split('/') + if '..' in p: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + def update(self, modifier, dest_dir=None, **kwargs): + """ + Update the contents of a wheel in a generic way. The modifier should + be a callable which expects a dictionary argument: its keys are + archive-entry paths, and its values are absolute filesystem paths + where the contents the corresponding archive entries can be found. The + modifier is free to change the contents of the files pointed to, add + new entries and remove entries, before returning. This method will + extract the entire contents of the wheel to a temporary location, call + the modifier, and then use the passed (and possibly updated) + dictionary to write a new wheel. If ``dest_dir`` is specified, the new + wheel is written there -- otherwise, the original wheel is overwritten. + + The modifier should return True if it updated the wheel, else False. + This method returns the same value the modifier returns. + """ + + def get_version(path_map, info_dir): + version = path = None + key = '%s/%s' % (info_dir, LEGACY_METADATA_FILENAME) + if key not in path_map: + key = '%s/PKG-INFO' % info_dir + if key in path_map: + path = path_map[key] + version = Metadata(path=path).version + return version, path + + def update_version(version, path): + updated = None + try: + NormalizedVersion(version) + i = version.find('-') + if i < 0: + updated = '%s+1' % version + else: + parts = [int(s) for s in version[i + 1:].split('.')] + parts[-1] += 1 + updated = '%s+%s' % (version[:i], '.'.join( + str(i) for i in parts)) + except UnsupportedVersionError: + logger.debug( + 'Cannot update non-compliant (PEP-440) ' + 'version %r', version) + if updated: + md = Metadata(path=path) + md.version = updated + legacy = path.endswith(LEGACY_METADATA_FILENAME) + md.write(path=path, legacy=legacy) + logger.debug('Version updated from %r to %r', version, updated) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + record_name = posixpath.join(info_dir, 'RECORD') + with tempdir() as workdir: + with ZipFile(pathname, 'r') as zf: + path_map = {} + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if u_arcname == record_name: + continue + if '..' in u_arcname: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + zf.extract(zinfo, workdir) + path = os.path.join(workdir, convert_path(u_arcname)) + path_map[u_arcname] = path + + # Remember the version. + original_version, _ = get_version(path_map, info_dir) + # Files extracted. Call the modifier. + modified = modifier(path_map, **kwargs) + if modified: + # Something changed - need to build a new wheel. + current_version, path = get_version(path_map, info_dir) + if current_version and (current_version == original_version): + # Add or update local version to signify changes. + update_version(current_version, path) + # Decide where the new wheel goes. + if dest_dir is None: + fd, newpath = tempfile.mkstemp(suffix='.whl', + prefix='wheel-update-', + dir=workdir) + os.close(fd) + else: + if not os.path.isdir(dest_dir): + raise DistlibException('Not a directory: %r' % + dest_dir) + newpath = os.path.join(dest_dir, self.filename) + archive_paths = list(path_map.items()) + distinfo = os.path.join(workdir, info_dir) + info = distinfo, info_dir + self.write_records(info, workdir, archive_paths) + self.build_zip(newpath, archive_paths) + if dest_dir is None: + shutil.copyfile(newpath, pathname) + return modified + + +def _get_glibc_version(): + import platform + ver = platform.libc_ver() + result = [] + if ver[0] == 'glibc': + for s in ver[1].split('.'): + result.append(int(s) if s.isdigit() else 0) + result = tuple(result) + return result + + +def compatible_tags(): + """ + Return (pyver, abi, arch) tuples compatible with this Python. + """ + versions = [VER_SUFFIX] + major = VER_SUFFIX[0] + for minor in range(sys.version_info[1] - 1, -1, -1): + versions.append(''.join([major, str(minor)])) + + abis = [] + for suffix in _get_suffixes(): + if suffix.startswith('.abi'): + abis.append(suffix.split('.', 2)[1]) + abis.sort() + if ABI != 'none': + abis.insert(0, ABI) + abis.append('none') + result = [] + + arches = [ARCH] + if sys.platform == 'darwin': + m = re.match(r'(\w+)_(\d+)_(\d+)_(\w+)$', ARCH) + if m: + name, major, minor, arch = m.groups() + minor = int(minor) + matches = [arch] + if arch in ('i386', 'ppc'): + matches.append('fat') + if arch in ('i386', 'ppc', 'x86_64'): + matches.append('fat3') + if arch in ('ppc64', 'x86_64'): + matches.append('fat64') + if arch in ('i386', 'x86_64'): + matches.append('intel') + if arch in ('i386', 'x86_64', 'intel', 'ppc', 'ppc64'): + matches.append('universal') + while minor >= 0: + for match in matches: + s = '%s_%s_%s_%s' % (name, major, minor, match) + if s != ARCH: # already there + arches.append(s) + minor -= 1 + + # Most specific - our Python version, ABI and arch + for abi in abis: + for arch in arches: + result.append((''.join((IMP_PREFIX, versions[0])), abi, arch)) + # manylinux + if abi != 'none' and sys.platform.startswith('linux'): + arch = arch.replace('linux_', '') + parts = _get_glibc_version() + if len(parts) == 2: + if parts >= (2, 5): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux1_%s' % arch)) + if parts >= (2, 12): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2010_%s' % arch)) + if parts >= (2, 17): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2014_%s' % arch)) + result.append( + (''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux_%s_%s_%s' % (parts[0], parts[1], arch))) + + # where no ABI / arch dependency, but IMP_PREFIX dependency + for i, version in enumerate(versions): + result.append((''.join((IMP_PREFIX, version)), 'none', 'any')) + if i == 0: + result.append((''.join((IMP_PREFIX, version[0])), 'none', 'any')) + + # no IMP_PREFIX, ABI or arch dependency + for i, version in enumerate(versions): + result.append((''.join(('py', version)), 'none', 'any')) + if i == 0: + result.append((''.join(('py', version[0])), 'none', 'any')) + + return set(result) + + +COMPATIBLE_TAGS = compatible_tags() + +del compatible_tags + + +def is_compatible(wheel, tags=None): + if not isinstance(wheel, Wheel): + wheel = Wheel(wheel) # assume it's a filename + result = False + if tags is None: + tags = COMPATIBLE_TAGS + for ver, abi, arch in tags: + if ver in wheel.pyver and abi in wheel.abi and arch in wheel.arch: + result = True + break + return result diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py new file mode 100644 index 00000000..7686fe85 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py @@ -0,0 +1,54 @@ +from .distro import ( + NORMALIZED_DISTRO_ID, + NORMALIZED_LSB_ID, + NORMALIZED_OS_ID, + LinuxDistribution, + __version__, + build_number, + codename, + distro_release_attr, + distro_release_info, + id, + info, + like, + linux_distribution, + lsb_release_attr, + lsb_release_info, + major_version, + minor_version, + name, + os_release_attr, + os_release_info, + uname_attr, + uname_info, + version, + version_parts, +) + +__all__ = [ + "NORMALIZED_DISTRO_ID", + "NORMALIZED_LSB_ID", + "NORMALIZED_OS_ID", + "LinuxDistribution", + "build_number", + "codename", + "distro_release_attr", + "distro_release_info", + "id", + "info", + "like", + "linux_distribution", + "lsb_release_attr", + "lsb_release_info", + "major_version", + "minor_version", + "name", + "os_release_attr", + "os_release_info", + "uname_attr", + "uname_info", + "version", + "version_parts", +] + +__version__ = __version__ diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py new file mode 100644 index 00000000..0c01d5b0 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py @@ -0,0 +1,4 @@ +from .distro import main + +if __name__ == "__main__": + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..809d56a22aa4204df8b65dc3e4a36cf1a8bb2451 GIT binary patch literal 1012 zcmcJOyKmbt5XL20@mujTv6G?5(!oPQ^npx8fwt}tAP*qU#D$O}CSk%81yXY2t=+qH z>fWt?OQ#N9w07ziG(&())yXm7pzT-=KO8^u?mLpwSI?_j*?9cz!`b(OW&Oa(d^q>P z%~ckBvH~lxr3E&%!J!TmXaQX6!V+DAA}vCRmY___P@xs5(kj$w4eGQG9`#_EE<=Mh zph=t1qAh6CHgsqQy0i-`bOl!FD)eX%`m}Fbr&i#6w&@zrDo+ao_otoN5Bh0$|KM=% z)$R^`J7mM1(b3@n+Zm><1$B4y8l~ofbTG;{?TRqD8VVC@F-~Hk!nDTNglm(9jHUH) zB4ohA1jbyaJLNBN~V%qJ?N9I*2Y}1+j|gA^M0l#CnGP!FpPp-S1!B zOStj>wvd(>^QC0$i*=K^S$7}FnF3Bu{jnBYk|8%2v5Lq@oy3>E<{Lvk;ZjAw!+7J3 zO0?l*PX&qOn@37XLj**Uy+x_-yORQ({ESHzWV}!awDP zL?R;DdxwG2WOf~dF%gQGv8`x&SAGGx!%Mx9b%?)$+0JlXuxmRtmg>S?X_tHyD8c literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2f5e25877c707d5b0dd071716419ebb05197060 GIT binary patch literal 344 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

@3RzNcvOScTa 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 C;VHcU literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py new file mode 100644 index 00000000..89e18680 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py @@ -0,0 +1,1399 @@ +#!/usr/bin/env python +# Copyright 2015,2016,2017 Nir Cohen +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +The ``distro`` package (``distro`` stands for Linux Distribution) provides +information about the Linux distribution it runs on, such as a reliable +machine-readable distro ID, or version information. + +It is the recommended replacement for Python's original +:py:func:`platform.linux_distribution` function, but it provides much more +functionality. An alternative implementation became necessary because Python +3.5 deprecated this function, and Python 3.8 removed it altogether. Its +predecessor function :py:func:`platform.dist` was already deprecated since +Python 2.6 and removed in Python 3.8. Still, there are many cases in which +access to OS distribution information is needed. See `Python issue 1322 +`_ for more information. +""" + +import argparse +import json +import logging +import os +import re +import shlex +import subprocess +import sys +import warnings +from typing import ( + Any, + Callable, + Dict, + Iterable, + Optional, + Sequence, + TextIO, + Tuple, + Type, +) + +try: + from typing import TypedDict +except ImportError: + # Python 3.7 + TypedDict = dict + +__version__ = "1.8.0" + + +class VersionDict(TypedDict): + major: str + minor: str + build_number: str + + +class InfoDict(TypedDict): + id: str + version: str + version_parts: VersionDict + like: str + codename: str + + +_UNIXCONFDIR = os.environ.get("UNIXCONFDIR", "/etc") +_UNIXUSRLIBDIR = os.environ.get("UNIXUSRLIBDIR", "/usr/lib") +_OS_RELEASE_BASENAME = "os-release" + +#: Translation table for normalizing the "ID" attribute defined in os-release +#: files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as defined in the os-release file, translated to lower case, +#: with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_OS_ID = { + "ol": "oracle", # Oracle Linux + "opensuse-leap": "opensuse", # Newer versions of OpenSuSE report as opensuse-leap +} + +#: Translation table for normalizing the "Distributor ID" attribute returned by +#: the lsb_release command, for use by the :func:`distro.id` method. +#: +#: * Key: Value as returned by the lsb_release command, translated to lower +#: case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_LSB_ID = { + "enterpriseenterpriseas": "oracle", # Oracle Enterprise Linux 4 + "enterpriseenterpriseserver": "oracle", # Oracle Linux 5 + "redhatenterpriseworkstation": "rhel", # RHEL 6, 7 Workstation + "redhatenterpriseserver": "rhel", # RHEL 6, 7 Server + "redhatenterprisecomputenode": "rhel", # RHEL 6 ComputeNode +} + +#: Translation table for normalizing the distro ID derived from the file name +#: of distro release files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as derived from the file name of a distro release file, +#: translated to lower case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_DISTRO_ID = { + "redhat": "rhel", # RHEL 6.x, 7.x +} + +# Pattern for content of distro release file (reversed) +_DISTRO_RELEASE_CONTENT_REVERSED_PATTERN = re.compile( + r"(?:[^)]*\)(.*)\()? *(?:STL )?([\d.+\-a-z]*\d) *(?:esaeler *)?(.+)" +) + +# Pattern for base file name of distro release file +_DISTRO_RELEASE_BASENAME_PATTERN = re.compile(r"(\w+)[-_](release|version)$") + +# Base file names to be looked up for if _UNIXCONFDIR is not readable. +_DISTRO_RELEASE_BASENAMES = [ + "SuSE-release", + "arch-release", + "base-release", + "centos-release", + "fedora-release", + "gentoo-release", + "mageia-release", + "mandrake-release", + "mandriva-release", + "mandrivalinux-release", + "manjaro-release", + "oracle-release", + "redhat-release", + "rocky-release", + "sl-release", + "slackware-version", +] + +# Base file names to be ignored when searching for distro release file +_DISTRO_RELEASE_IGNORE_BASENAMES = ( + "debian_version", + "lsb-release", + "oem-release", + _OS_RELEASE_BASENAME, + "system-release", + "plesk-release", + "iredmail-release", +) + + +def linux_distribution(full_distribution_name: bool = True) -> Tuple[str, str, str]: + """ + .. deprecated:: 1.6.0 + + :func:`distro.linux_distribution()` is deprecated. It should only be + used as a compatibility shim with Python's + :py:func:`platform.linux_distribution()`. Please use :func:`distro.id`, + :func:`distro.version` and :func:`distro.name` instead. + + Return information about the current OS distribution as a tuple + ``(id_name, version, codename)`` with items as follows: + + * ``id_name``: If *full_distribution_name* is false, the result of + :func:`distro.id`. Otherwise, the result of :func:`distro.name`. + + * ``version``: The result of :func:`distro.version`. + + * ``codename``: The extra item (usually in parentheses) after the + os-release version number, or the result of :func:`distro.codename`. + + The interface of this function is compatible with the original + :py:func:`platform.linux_distribution` function, supporting a subset of + its parameters. + + The data it returns may not exactly be the same, because it uses more data + sources than the original function, and that may lead to different data if + the OS distribution is not consistent across multiple data sources it + provides (there are indeed such distributions ...). + + Another reason for differences is the fact that the :func:`distro.id` + method normalizes the distro ID string to a reliable machine-readable value + for a number of popular OS distributions. + """ + warnings.warn( + "distro.linux_distribution() is deprecated. It should only be used as a " + "compatibility shim with Python's platform.linux_distribution(). Please use " + "distro.id(), distro.version() and distro.name() instead.", + DeprecationWarning, + stacklevel=2, + ) + return _distro.linux_distribution(full_distribution_name) + + +def id() -> str: + """ + Return the distro ID of the current distribution, as a + machine-readable string. + + For a number of OS distributions, the returned distro ID value is + *reliable*, in the sense that it is documented and that it does not change + across releases of the distribution. + + This package maintains the following reliable distro ID values: + + ============== ========================================= + Distro ID Distribution + ============== ========================================= + "ubuntu" Ubuntu + "debian" Debian + "rhel" RedHat Enterprise Linux + "centos" CentOS + "fedora" Fedora + "sles" SUSE Linux Enterprise Server + "opensuse" openSUSE + "amzn" Amazon Linux + "arch" Arch Linux + "buildroot" Buildroot + "cloudlinux" CloudLinux OS + "exherbo" Exherbo Linux + "gentoo" GenToo Linux + "ibm_powerkvm" IBM PowerKVM + "kvmibm" KVM for IBM z Systems + "linuxmint" Linux Mint + "mageia" Mageia + "mandriva" Mandriva Linux + "parallels" Parallels + "pidora" Pidora + "raspbian" Raspbian + "oracle" Oracle Linux (and Oracle Enterprise Linux) + "scientific" Scientific Linux + "slackware" Slackware + "xenserver" XenServer + "openbsd" OpenBSD + "netbsd" NetBSD + "freebsd" FreeBSD + "midnightbsd" MidnightBSD + "rocky" Rocky Linux + "aix" AIX + "guix" Guix System + ============== ========================================= + + If you have a need to get distros for reliable IDs added into this set, + or if you find that the :func:`distro.id` function returns a different + distro ID for one of the listed distros, please create an issue in the + `distro issue tracker`_. + + **Lookup hierarchy and transformations:** + + First, the ID is obtained from the following sources, in the specified + order. The first available and non-empty value is used: + + * the value of the "ID" attribute of the os-release file, + + * the value of the "Distributor ID" attribute returned by the lsb_release + command, + + * the first part of the file name of the distro release file, + + The so determined ID value then passes the following transformations, + before it is returned by this method: + + * it is translated to lower case, + + * blanks (which should not be there anyway) are translated to underscores, + + * a normalization of the ID is performed, based upon + `normalization tables`_. The purpose of this normalization is to ensure + that the ID is as reliable as possible, even across incompatible changes + in the OS distributions. A common reason for an incompatible change is + the addition of an os-release file, or the addition of the lsb_release + command, with ID values that differ from what was previously determined + from the distro release file name. + """ + return _distro.id() + + +def name(pretty: bool = False) -> str: + """ + Return the name of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the name is returned without version or codename. + (e.g. "CentOS Linux") + + If *pretty* is true, the version and codename are appended. + (e.g. "CentOS Linux 7.1.1503 (Core)") + + **Lookup hierarchy:** + + The name is obtained from the following sources, in the specified order. + The first available and non-empty value is used: + + * If *pretty* is false: + + - the value of the "NAME" attribute of the os-release file, + + - the value of the "Distributor ID" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file. + + * If *pretty* is true: + + - the value of the "PRETTY_NAME" attribute of the os-release file, + + - the value of the "Description" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file, appended + with the value of the pretty version ("" and "" + fields) of the distro release file, if available. + """ + return _distro.name(pretty) + + +def version(pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the version is returned without codename (e.g. + "7.0"). + + If *pretty* is true, the codename in parenthesis is appended, if the + codename is non-empty (e.g. "7.0 (Maipo)"). + + Some distributions provide version numbers with different precisions in + the different sources of distribution information. Examining the different + sources in a fixed priority order does not always yield the most precise + version (e.g. for Debian 8.2, or CentOS 7.1). + + Some other distributions may not provide this kind of information. In these + cases, an empty string would be returned. This behavior can be observed + with rolling releases distributions (e.g. Arch Linux). + + The *best* parameter can be used to control the approach for the returned + version: + + If *best* is false, the first non-empty version number in priority order of + the examined sources is returned. + + If *best* is true, the most precise version number out of all examined + sources is returned. + + **Lookup hierarchy:** + + In all cases, the version number is obtained from the following sources. + If *best* is false, this order represents the priority order: + + * the value of the "VERSION_ID" attribute of the os-release file, + * the value of the "Release" attribute returned by the lsb_release + command, + * the version number parsed from the "" field of the first line + of the distro release file, + * the version number parsed from the "PRETTY_NAME" attribute of the + os-release file, if it follows the format of the distro release files. + * the version number parsed from the "Description" attribute returned by + the lsb_release command, if it follows the format of the distro release + files. + """ + return _distro.version(pretty, best) + + +def version_parts(best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the current OS distribution as a tuple + ``(major, minor, build_number)`` with items as follows: + + * ``major``: The result of :func:`distro.major_version`. + + * ``minor``: The result of :func:`distro.minor_version`. + + * ``build_number``: The result of :func:`distro.build_number`. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.version_parts(best) + + +def major_version(best: bool = False) -> str: + """ + Return the major version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The major version is the first + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.major_version(best) + + +def minor_version(best: bool = False) -> str: + """ + Return the minor version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The minor version is the second + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.minor_version(best) + + +def build_number(best: bool = False) -> str: + """ + Return the build number of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The build number is the third part + of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.build_number(best) + + +def like() -> str: + """ + Return a space-separated list of distro IDs of distributions that are + closely related to the current OS distribution in regards to packaging + and programming interfaces, for example distributions the current + distribution is a derivative from. + + **Lookup hierarchy:** + + This information item is only provided by the os-release file. + For details, see the description of the "ID_LIKE" attribute in the + `os-release man page + `_. + """ + return _distro.like() + + +def codename() -> str: + """ + Return the codename for the release of the current OS distribution, + as a string. + + If the distribution does not have a codename, an empty string is returned. + + Note that the returned codename is not always really a codename. For + example, openSUSE returns "x86_64". This function does not handle such + cases in any special way and just returns the string it finds, if any. + + **Lookup hierarchy:** + + * the codename within the "VERSION" attribute of the os-release file, if + provided, + + * the value of the "Codename" attribute returned by the lsb_release + command, + + * the value of the "" field of the distro release file. + """ + return _distro.codename() + + +def info(pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information items about the current OS + distribution in a dictionary, as shown in the following example: + + .. sourcecode:: python + + { + 'id': 'rhel', + 'version': '7.0', + 'version_parts': { + 'major': '7', + 'minor': '0', + 'build_number': '' + }, + 'like': 'fedora', + 'codename': 'Maipo' + } + + The dictionary structure and keys are always the same, regardless of which + information items are available in the underlying data sources. The values + for the various keys are as follows: + + * ``id``: The result of :func:`distro.id`. + + * ``version``: The result of :func:`distro.version`. + + * ``version_parts -> major``: The result of :func:`distro.major_version`. + + * ``version_parts -> minor``: The result of :func:`distro.minor_version`. + + * ``version_parts -> build_number``: The result of + :func:`distro.build_number`. + + * ``like``: The result of :func:`distro.like`. + + * ``codename``: The result of :func:`distro.codename`. + + For a description of the *pretty* and *best* parameters, see the + :func:`distro.version` method. + """ + return _distro.info(pretty, best) + + +def os_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the os-release file data source of the current OS distribution. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_info() + + +def lsb_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the lsb_release command data source of the current OS distribution. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_info() + + +def distro_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_info() + + +def uname_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + """ + return _distro.uname_info() + + +def os_release_attr(attribute: str) -> str: + """ + Return a single named information item from the os-release file data source + of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_attr(attribute) + + +def lsb_release_attr(attribute: str) -> str: + """ + Return a single named information item from the lsb_release command output + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_attr(attribute) + + +def distro_release_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_attr(attribute) + + +def uname_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + """ + return _distro.uname_attr(attribute) + + +try: + from functools import cached_property +except ImportError: + # Python < 3.8 + class cached_property: # type: ignore + """A version of @property which caches the value. On access, it calls the + underlying function and sets the value in `__dict__` so future accesses + will not re-call the property. + """ + + def __init__(self, f: Callable[[Any], Any]) -> None: + self._fname = f.__name__ + self._f = f + + def __get__(self, obj: Any, owner: Type[Any]) -> Any: + assert obj is not None, f"call {self._fname} on an instance" + ret = obj.__dict__[self._fname] = self._f(obj) + return ret + + +class LinuxDistribution: + """ + Provides information about a OS distribution. + + This package creates a private module-global instance of this class with + default initialization arguments, that is used by the + `consolidated accessor functions`_ and `single source accessor functions`_. + By using default initialization arguments, that module-global instance + returns data about the current OS distribution (i.e. the distro this + package runs on). + + Normally, it is not necessary to create additional instances of this class. + However, in situations where control is needed over the exact data sources + that are used, instances of this class can be created with a specific + distro release file, or a specific os-release file, or without invoking the + lsb_release command. + """ + + def __init__( + self, + include_lsb: Optional[bool] = None, + os_release_file: str = "", + distro_release_file: str = "", + include_uname: Optional[bool] = None, + root_dir: Optional[str] = None, + include_oslevel: Optional[bool] = None, + ) -> None: + """ + The initialization method of this class gathers information from the + available data sources, and stores that in private instance attributes. + Subsequent access to the information items uses these private instance + attributes, so that the data sources are read only once. + + Parameters: + + * ``include_lsb`` (bool): Controls whether the + `lsb_release command output`_ is included as a data source. + + If the lsb_release command is not available in the program execution + path, the data source for the lsb_release command will be empty. + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is to be used as a data source. + + An empty string (the default) will cause the default path name to + be used (see `os-release file`_ for details). + + If the specified or defaulted os-release file does not exist, the + data source for the os-release file will be empty. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is to be used as a data source. + + An empty string (the default) will cause a default search algorithm + to be used (see `distro release file`_ for details). + + If the specified distro release file does not exist, or if no default + distro release file can be found, the data source for the distro + release file will be empty. + + * ``include_uname`` (bool): Controls whether uname command output is + included as a data source. If the uname command is not available in + the program execution path the data source for the uname command will + be empty. + + * ``root_dir`` (string): The absolute path to the root directory to use + to find distro-related information files. Note that ``include_*`` + parameters must not be enabled in combination with ``root_dir``. + + * ``include_oslevel`` (bool): Controls whether (AIX) oslevel command + output is included as a data source. If the oslevel command is not + available in the program execution path the data source will be + empty. + + Public instance attributes: + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``include_lsb`` (bool): The result of the ``include_lsb`` parameter. + This controls whether the lsb information will be loaded. + + * ``include_uname`` (bool): The result of the ``include_uname`` + parameter. This controls whether the uname information will + be loaded. + + * ``include_oslevel`` (bool): The result of the ``include_oslevel`` + parameter. This controls whether (AIX) oslevel information will be + loaded. + + * ``root_dir`` (string): The result of the ``root_dir`` parameter. + The absolute path to the root directory to use to find distro-related + information files. + + Raises: + + * :py:exc:`ValueError`: Initialization parameters combination is not + supported. + + * :py:exc:`OSError`: Some I/O issue with an os-release file or distro + release file. + + * :py:exc:`UnicodeError`: A data source has unexpected characters or + uses an unexpected encoding. + """ + self.root_dir = root_dir + self.etc_dir = os.path.join(root_dir, "etc") if root_dir else _UNIXCONFDIR + self.usr_lib_dir = ( + os.path.join(root_dir, "usr/lib") if root_dir else _UNIXUSRLIBDIR + ) + + if os_release_file: + self.os_release_file = os_release_file + else: + etc_dir_os_release_file = os.path.join(self.etc_dir, _OS_RELEASE_BASENAME) + usr_lib_os_release_file = os.path.join( + self.usr_lib_dir, _OS_RELEASE_BASENAME + ) + + # NOTE: The idea is to respect order **and** have it set + # at all times for API backwards compatibility. + if os.path.isfile(etc_dir_os_release_file) or not os.path.isfile( + usr_lib_os_release_file + ): + self.os_release_file = etc_dir_os_release_file + else: + self.os_release_file = usr_lib_os_release_file + + self.distro_release_file = distro_release_file or "" # updated later + + is_root_dir_defined = root_dir is not None + if is_root_dir_defined and (include_lsb or include_uname or include_oslevel): + raise ValueError( + "Including subprocess data sources from specific root_dir is disallowed" + " to prevent false information" + ) + self.include_lsb = ( + include_lsb if include_lsb is not None else not is_root_dir_defined + ) + self.include_uname = ( + include_uname if include_uname is not None else not is_root_dir_defined + ) + self.include_oslevel = ( + include_oslevel if include_oslevel is not None else not is_root_dir_defined + ) + + def __repr__(self) -> str: + """Return repr of all info""" + return ( + "LinuxDistribution(" + "os_release_file={self.os_release_file!r}, " + "distro_release_file={self.distro_release_file!r}, " + "include_lsb={self.include_lsb!r}, " + "include_uname={self.include_uname!r}, " + "include_oslevel={self.include_oslevel!r}, " + "root_dir={self.root_dir!r}, " + "_os_release_info={self._os_release_info!r}, " + "_lsb_release_info={self._lsb_release_info!r}, " + "_distro_release_info={self._distro_release_info!r}, " + "_uname_info={self._uname_info!r}, " + "_oslevel_info={self._oslevel_info!r})".format(self=self) + ) + + def linux_distribution( + self, full_distribution_name: bool = True + ) -> Tuple[str, str, str]: + """ + Return information about the OS distribution that is compatible + with Python's :func:`platform.linux_distribution`, supporting a subset + of its parameters. + + For details, see :func:`distro.linux_distribution`. + """ + return ( + self.name() if full_distribution_name else self.id(), + self.version(), + self._os_release_info.get("release_codename") or self.codename(), + ) + + def id(self) -> str: + """Return the distro ID of the OS distribution, as a string. + + For details, see :func:`distro.id`. + """ + + def normalize(distro_id: str, table: Dict[str, str]) -> str: + distro_id = distro_id.lower().replace(" ", "_") + return table.get(distro_id, distro_id) + + distro_id = self.os_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_OS_ID) + + distro_id = self.lsb_release_attr("distributor_id") + if distro_id: + return normalize(distro_id, NORMALIZED_LSB_ID) + + distro_id = self.distro_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + distro_id = self.uname_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + return "" + + def name(self, pretty: bool = False) -> str: + """ + Return the name of the OS distribution, as a string. + + For details, see :func:`distro.name`. + """ + name = ( + self.os_release_attr("name") + or self.lsb_release_attr("distributor_id") + or self.distro_release_attr("name") + or self.uname_attr("name") + ) + if pretty: + name = self.os_release_attr("pretty_name") or self.lsb_release_attr( + "description" + ) + if not name: + name = self.distro_release_attr("name") or self.uname_attr("name") + version = self.version(pretty=True) + if version: + name = f"{name} {version}" + return name or "" + + def version(self, pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the OS distribution, as a string. + + For details, see :func:`distro.version`. + """ + versions = [ + self.os_release_attr("version_id"), + self.lsb_release_attr("release"), + self.distro_release_attr("version_id"), + self._parse_distro_release_content(self.os_release_attr("pretty_name")).get( + "version_id", "" + ), + self._parse_distro_release_content( + self.lsb_release_attr("description") + ).get("version_id", ""), + self.uname_attr("release"), + ] + if self.uname_attr("id").startswith("aix"): + # On AIX platforms, prefer oslevel command output. + versions.insert(0, self.oslevel_info()) + elif self.id() == "debian" or "debian" in self.like().split(): + # On Debian-like, add debian_version file content to candidates list. + versions.append(self._debian_version) + version = "" + if best: + # This algorithm uses the last version in priority order that has + # the best precision. If the versions are not in conflict, that + # does not matter; otherwise, using the last one instead of the + # first one might be considered a surprise. + for v in versions: + if v.count(".") > version.count(".") or version == "": + version = v + else: + for v in versions: + if v != "": + version = v + break + if pretty and version and self.codename(): + version = f"{version} ({self.codename()})" + return version + + def version_parts(self, best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the OS distribution, as a tuple of version + numbers. + + For details, see :func:`distro.version_parts`. + """ + version_str = self.version(best=best) + if version_str: + version_regex = re.compile(r"(\d+)\.?(\d+)?\.?(\d+)?") + matches = version_regex.match(version_str) + if matches: + major, minor, build_number = matches.groups() + return major, minor or "", build_number or "" + return "", "", "" + + def major_version(self, best: bool = False) -> str: + """ + Return the major version number of the current distribution. + + For details, see :func:`distro.major_version`. + """ + return self.version_parts(best)[0] + + def minor_version(self, best: bool = False) -> str: + """ + Return the minor version number of the current distribution. + + For details, see :func:`distro.minor_version`. + """ + return self.version_parts(best)[1] + + def build_number(self, best: bool = False) -> str: + """ + Return the build number of the current distribution. + + For details, see :func:`distro.build_number`. + """ + return self.version_parts(best)[2] + + def like(self) -> str: + """ + Return the IDs of distributions that are like the OS distribution. + + For details, see :func:`distro.like`. + """ + return self.os_release_attr("id_like") or "" + + def codename(self) -> str: + """ + Return the codename of the OS distribution. + + For details, see :func:`distro.codename`. + """ + try: + # Handle os_release specially since distros might purposefully set + # this to empty string to have no codename + return self._os_release_info["codename"] + except KeyError: + return ( + self.lsb_release_attr("codename") + or self.distro_release_attr("codename") + or "" + ) + + def info(self, pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information about the OS + distribution. + + For details, see :func:`distro.info`. + """ + return dict( + id=self.id(), + version=self.version(pretty, best), + version_parts=dict( + major=self.major_version(best), + minor=self.minor_version(best), + build_number=self.build_number(best), + ), + like=self.like(), + codename=self.codename(), + ) + + def os_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the os-release file data source of the OS distribution. + + For details, see :func:`distro.os_release_info`. + """ + return self._os_release_info + + def lsb_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the lsb_release command data source of the OS + distribution. + + For details, see :func:`distro.lsb_release_info`. + """ + return self._lsb_release_info + + def distro_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the distro release file data source of the OS + distribution. + + For details, see :func:`distro.distro_release_info`. + """ + return self._distro_release_info + + def uname_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the uname command data source of the OS distribution. + + For details, see :func:`distro.uname_info`. + """ + return self._uname_info + + def oslevel_info(self) -> str: + """ + Return AIX' oslevel command output. + """ + return self._oslevel_info + + def os_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the os-release file data + source of the OS distribution. + + For details, see :func:`distro.os_release_attr`. + """ + return self._os_release_info.get(attribute, "") + + def lsb_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the lsb_release command + output data source of the OS distribution. + + For details, see :func:`distro.lsb_release_attr`. + """ + return self._lsb_release_info.get(attribute, "") + + def distro_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the OS distribution. + + For details, see :func:`distro.distro_release_attr`. + """ + return self._distro_release_info.get(attribute, "") + + def uname_attr(self, attribute: str) -> str: + """ + Return a single named information item from the uname command + output data source of the OS distribution. + + For details, see :func:`distro.uname_attr`. + """ + return self._uname_info.get(attribute, "") + + @cached_property + def _os_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified os-release file. + + Returns: + A dictionary containing all information items. + """ + if os.path.isfile(self.os_release_file): + with open(self.os_release_file, encoding="utf-8") as release_file: + return self._parse_os_release_content(release_file) + return {} + + @staticmethod + def _parse_os_release_content(lines: TextIO) -> Dict[str, str]: + """ + Parse the lines of an os-release file. + + Parameters: + + * lines: Iterable through the lines in the os-release file. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + lexer = shlex.shlex(lines, posix=True) + lexer.whitespace_split = True + + tokens = list(lexer) + for token in tokens: + # At this point, all shell-like parsing has been done (i.e. + # comments processed, quotes and backslash escape sequences + # processed, multi-line values assembled, trailing newlines + # stripped, etc.), so the tokens are now either: + # * variable assignments: var=value + # * commands or their arguments (not allowed in os-release) + # Ignore any tokens that are not variable assignments + if "=" in token: + k, v = token.split("=", 1) + props[k.lower()] = v + + if "version" in props: + # extract release codename (if any) from version attribute + match = re.search(r"\((\D+)\)|,\s*(\D+)", props["version"]) + if match: + release_codename = match.group(1) or match.group(2) + props["codename"] = props["release_codename"] = release_codename + + if "version_codename" in props: + # os-release added a version_codename field. Use that in + # preference to anything else Note that some distros purposefully + # do not have code names. They should be setting + # version_codename="" + props["codename"] = props["version_codename"] + elif "ubuntu_codename" in props: + # Same as above but a non-standard field name used on older Ubuntus + props["codename"] = props["ubuntu_codename"] + + return props + + @cached_property + def _lsb_release_info(self) -> Dict[str, str]: + """ + Get the information items from the lsb_release command output. + + Returns: + A dictionary containing all information items. + """ + if not self.include_lsb: + return {} + try: + cmd = ("lsb_release", "-a") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + # Command not found or lsb_release returned error + except (OSError, subprocess.CalledProcessError): + return {} + content = self._to_str(stdout).splitlines() + return self._parse_lsb_release_content(content) + + @staticmethod + def _parse_lsb_release_content(lines: Iterable[str]) -> Dict[str, str]: + """ + Parse the output of the lsb_release command. + + Parameters: + + * lines: Iterable through the lines of the lsb_release output. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + for line in lines: + kv = line.strip("\n").split(":", 1) + if len(kv) != 2: + # Ignore lines without colon. + continue + k, v = kv + props.update({k.replace(" ", "_").lower(): v.strip()}) + return props + + @cached_property + def _uname_info(self) -> Dict[str, str]: + if not self.include_uname: + return {} + try: + cmd = ("uname", "-rs") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + except OSError: + return {} + content = self._to_str(stdout).splitlines() + return self._parse_uname_content(content) + + @cached_property + def _oslevel_info(self) -> str: + if not self.include_oslevel: + return "" + try: + stdout = subprocess.check_output("oslevel", stderr=subprocess.DEVNULL) + except (OSError, subprocess.CalledProcessError): + return "" + return self._to_str(stdout).strip() + + @cached_property + def _debian_version(self) -> str: + try: + with open( + os.path.join(self.etc_dir, "debian_version"), encoding="ascii" + ) as fp: + return fp.readline().rstrip() + except FileNotFoundError: + return "" + + @staticmethod + def _parse_uname_content(lines: Sequence[str]) -> Dict[str, str]: + if not lines: + return {} + props = {} + match = re.search(r"^([^\s]+)\s+([\d\.]+)", lines[0].strip()) + if match: + name, version = match.groups() + + # This is to prevent the Linux kernel version from + # appearing as the 'best' version on otherwise + # identifiable distributions. + if name == "Linux": + return {} + props["id"] = name.lower() + props["name"] = name + props["release"] = version + return props + + @staticmethod + def _to_str(bytestring: bytes) -> str: + encoding = sys.getfilesystemencoding() + return bytestring.decode(encoding) + + @cached_property + def _distro_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified distro release file. + + Returns: + A dictionary containing all information items. + """ + if self.distro_release_file: + # If it was specified, we use it and parse what we can, even if + # its file name or content does not match the expected pattern. + distro_info = self._parse_distro_release_file(self.distro_release_file) + basename = os.path.basename(self.distro_release_file) + # The file name pattern for user-specified distro release files + # is somewhat more tolerant (compared to when searching for the + # file), because we want to use what was specified as best as + # possible. + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + else: + try: + basenames = [ + basename + for basename in os.listdir(self.etc_dir) + if basename not in _DISTRO_RELEASE_IGNORE_BASENAMES + and os.path.isfile(os.path.join(self.etc_dir, basename)) + ] + # We sort for repeatability in cases where there are multiple + # distro specific files; e.g. CentOS, Oracle, Enterprise all + # containing `redhat-release` on top of their own. + basenames.sort() + except OSError: + # This may occur when /etc is not readable but we can't be + # sure about the *-release files. Check common entries of + # /etc for information. If they turn out to not be there the + # error is handled in `_parse_distro_release_file()`. + basenames = _DISTRO_RELEASE_BASENAMES + for basename in basenames: + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if match is None: + continue + filepath = os.path.join(self.etc_dir, basename) + distro_info = self._parse_distro_release_file(filepath) + # The name is always present if the pattern matches. + if "name" not in distro_info: + continue + self.distro_release_file = filepath + break + else: # the loop didn't "break": no candidate. + return {} + + if match is not None: + distro_info["id"] = match.group(1) + + # CloudLinux < 7: manually enrich info with proper id. + if "cloudlinux" in distro_info.get("name", "").lower(): + distro_info["id"] = "cloudlinux" + + return distro_info + + def _parse_distro_release_file(self, filepath: str) -> Dict[str, str]: + """ + Parse a distro release file. + + Parameters: + + * filepath: Path name of the distro release file. + + Returns: + A dictionary containing all information items. + """ + try: + with open(filepath, encoding="utf-8") as fp: + # Only parse the first line. For instance, on SLES there + # are multiple lines. We don't want them... + return self._parse_distro_release_content(fp.readline()) + except OSError: + # Ignore not being able to read a specific, seemingly version + # related file. + # See https://github.com/python-distro/distro/issues/162 + return {} + + @staticmethod + def _parse_distro_release_content(line: str) -> Dict[str, str]: + """ + Parse a line from a distro release file. + + Parameters: + * line: Line from the distro release file. Must be a unicode string + or a UTF-8 encoded byte string. + + Returns: + A dictionary containing all information items. + """ + matches = _DISTRO_RELEASE_CONTENT_REVERSED_PATTERN.match(line.strip()[::-1]) + distro_info = {} + if matches: + # regexp ensures non-None + distro_info["name"] = matches.group(3)[::-1] + if matches.group(2): + distro_info["version_id"] = matches.group(2)[::-1] + if matches.group(1): + distro_info["codename"] = matches.group(1)[::-1] + elif line: + distro_info["name"] = line.strip() + return distro_info + + +_distro = LinuxDistribution() + + +def main() -> None: + logger = logging.getLogger(__name__) + logger.setLevel(logging.DEBUG) + logger.addHandler(logging.StreamHandler(sys.stdout)) + + parser = argparse.ArgumentParser(description="OS distro info tool") + parser.add_argument( + "--json", "-j", help="Output in machine readable format", action="store_true" + ) + + parser.add_argument( + "--root-dir", + "-r", + type=str, + dest="root_dir", + help="Path to the root filesystem directory (defaults to /)", + ) + + args = parser.parse_args() + + if args.root_dir: + dist = LinuxDistribution( + include_lsb=False, + include_uname=False, + include_oslevel=False, + root_dir=args.root_dir, + ) + else: + dist = _distro + + if args.json: + logger.info(json.dumps(dist.info(), indent=4, sort_keys=True)) + else: + logger.info("Name: %s", dist.name(pretty=True)) + distribution_version = dist.version(pretty=True) + logger.info("Version: %s", distribution_version) + distribution_codename = dist.codename() + logger.info("Codename: %s", distribution_codename) + + +if __name__ == "__main__": + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py new file mode 100644 index 00000000..a40eeafc --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py @@ -0,0 +1,44 @@ +from .package_data import __version__ +from .core import ( + IDNABidiError, + IDNAError, + InvalidCodepoint, + InvalidCodepointContext, + alabel, + check_bidi, + check_hyphen_ok, + check_initial_combiner, + check_label, + check_nfc, + decode, + encode, + ulabel, + uts46_remap, + valid_contextj, + valid_contexto, + valid_label_length, + valid_string_length, +) +from .intranges import intranges_contain + +__all__ = [ + "IDNABidiError", + "IDNAError", + "InvalidCodepoint", + "InvalidCodepointContext", + "alabel", + "check_bidi", + "check_hyphen_ok", + "check_initial_combiner", + "check_label", + "check_nfc", + "decode", + "encode", + "intranges_contain", + "ulabel", + "uts46_remap", + "valid_contextj", + "valid_contexto", + "valid_label_length", + "valid_string_length", +] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c960c7df50b7745828dd974fcfba8add5f8b9c78 GIT binary patch literal 933 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 D-+13a literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d18db67b35d333f8d25397c9ac55b5aa6e078255 GIT binary patch literal 16334 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py new file mode 100644 index 00000000..1ca9ba62 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py @@ -0,0 +1,112 @@ +from .core import encode, decode, alabel, ulabel, IDNAError +import codecs +import re +from typing import Tuple, Optional + +_unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]') + +class Codec(codecs.Codec): + + def encode(self, data: str, errors: str = 'strict') -> Tuple[bytes, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return b"", 0 + + return encode(data), len(data) + + def decode(self, data: bytes, errors: str = 'strict') -> Tuple[str, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return '', 0 + + return decode(data), len(data) + +class IncrementalEncoder(codecs.BufferedIncrementalEncoder): + def _buffer_encode(self, data: str, errors: str, final: bool) -> Tuple[str, int]: # type: ignore + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return "", 0 + + labels = _unicode_dots_re.split(data) + trailing_dot = '' + if labels: + if not labels[-1]: + trailing_dot = '.' + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = '.' + + result = [] + size = 0 + for label in labels: + result.append(alabel(label)) + if size: + size += 1 + size += len(label) + + # Join with U+002E + result_str = '.'.join(result) + trailing_dot # type: ignore + size += len(trailing_dot) + return result_str, size + +class IncrementalDecoder(codecs.BufferedIncrementalDecoder): + def _buffer_decode(self, data: str, errors: str, final: bool) -> Tuple[str, int]: # type: ignore + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return ('', 0) + + labels = _unicode_dots_re.split(data) + trailing_dot = '' + if labels: + if not labels[-1]: + trailing_dot = '.' + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = '.' + + result = [] + size = 0 + for label in labels: + result.append(ulabel(label)) + if size: + size += 1 + size += len(label) + + result_str = '.'.join(result) + trailing_dot + size += len(trailing_dot) + return (result_str, size) + + +class StreamWriter(Codec, codecs.StreamWriter): + pass + + +class StreamReader(Codec, codecs.StreamReader): + pass + + +def getregentry() -> codecs.CodecInfo: + # Compatibility as a search_function for codecs.register() + return codecs.CodecInfo( + name='idna', + encode=Codec().encode, # type: ignore + decode=Codec().decode, # type: ignore + incrementalencoder=IncrementalEncoder, + incrementaldecoder=IncrementalDecoder, + streamwriter=StreamWriter, + streamreader=StreamReader, + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py new file mode 100644 index 00000000..786e6bda --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py @@ -0,0 +1,13 @@ +from .core import * +from .codec import * +from typing import Any, Union + +def ToASCII(label: str) -> bytes: + return encode(label) + +def ToUnicode(label: Union[bytes, bytearray]) -> str: + return decode(label) + +def nameprep(s: Any) -> None: + raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol') + diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py new file mode 100644 index 00000000..4f300371 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py @@ -0,0 +1,400 @@ +from . import idnadata +import bisect +import unicodedata +import re +from typing import Union, Optional +from .intranges import intranges_contain + +_virama_combining_class = 9 +_alabel_prefix = b'xn--' +_unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]') + +class IDNAError(UnicodeError): + """ Base exception for all IDNA-encoding related problems """ + pass + + +class IDNABidiError(IDNAError): + """ Exception when bidirectional requirements are not satisfied """ + pass + + +class InvalidCodepoint(IDNAError): + """ Exception when a disallowed or unallocated codepoint is used """ + pass + + +class InvalidCodepointContext(IDNAError): + """ Exception when the codepoint is not valid in the context it is used """ + pass + + +def _combining_class(cp: int) -> int: + v = unicodedata.combining(chr(cp)) + if v == 0: + if not unicodedata.name(chr(cp)): + raise ValueError('Unknown character in unicodedata') + return v + +def _is_script(cp: str, script: str) -> bool: + return intranges_contain(ord(cp), idnadata.scripts[script]) + +def _punycode(s: str) -> bytes: + return s.encode('punycode') + +def _unot(s: int) -> str: + return 'U+{:04X}'.format(s) + + +def valid_label_length(label: Union[bytes, str]) -> bool: + if len(label) > 63: + return False + return True + + +def valid_string_length(label: Union[bytes, str], trailing_dot: bool) -> bool: + if len(label) > (254 if trailing_dot else 253): + return False + return True + + +def check_bidi(label: str, check_ltr: bool = False) -> bool: + # Bidi rules should only be applied if string contains RTL characters + bidi_label = False + for (idx, cp) in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + if direction == '': + # String likely comes from a newer version of Unicode + raise IDNABidiError('Unknown directionality in label {} at position {}'.format(repr(label), idx)) + if direction in ['R', 'AL', 'AN']: + bidi_label = True + if not bidi_label and not check_ltr: + return True + + # Bidi rule 1 + direction = unicodedata.bidirectional(label[0]) + if direction in ['R', 'AL']: + rtl = True + elif direction == 'L': + rtl = False + else: + raise IDNABidiError('First codepoint in label {} must be directionality L, R or AL'.format(repr(label))) + + valid_ending = False + number_type = None # type: Optional[str] + for (idx, cp) in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + + if rtl: + # Bidi rule 2 + if not direction in ['R', 'AL', 'AN', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: + raise IDNABidiError('Invalid direction for codepoint at position {} in a right-to-left label'.format(idx)) + # Bidi rule 3 + if direction in ['R', 'AL', 'EN', 'AN']: + valid_ending = True + elif direction != 'NSM': + valid_ending = False + # Bidi rule 4 + if direction in ['AN', 'EN']: + if not number_type: + number_type = direction + else: + if number_type != direction: + raise IDNABidiError('Can not mix numeral types in a right-to-left label') + else: + # Bidi rule 5 + if not direction in ['L', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: + raise IDNABidiError('Invalid direction for codepoint at position {} in a left-to-right label'.format(idx)) + # Bidi rule 6 + if direction in ['L', 'EN']: + valid_ending = True + elif direction != 'NSM': + valid_ending = False + + if not valid_ending: + raise IDNABidiError('Label ends with illegal codepoint directionality') + + return True + + +def check_initial_combiner(label: str) -> bool: + if unicodedata.category(label[0])[0] == 'M': + raise IDNAError('Label begins with an illegal combining character') + return True + + +def check_hyphen_ok(label: str) -> bool: + if label[2:4] == '--': + raise IDNAError('Label has disallowed hyphens in 3rd and 4th position') + if label[0] == '-' or label[-1] == '-': + raise IDNAError('Label must not start or end with a hyphen') + return True + + +def check_nfc(label: str) -> None: + if unicodedata.normalize('NFC', label) != label: + raise IDNAError('Label must be in Normalization Form C') + + +def valid_contextj(label: str, pos: int) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x200c: + + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + + ok = False + for i in range(pos-1, -1, -1): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord('T'): + continue + if joining_type in [ord('L'), ord('D')]: + ok = True + break + + if not ok: + return False + + ok = False + for i in range(pos+1, len(label)): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord('T'): + continue + if joining_type in [ord('R'), ord('D')]: + ok = True + break + return ok + + if cp_value == 0x200d: + + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + return False + + else: + + return False + + +def valid_contexto(label: str, pos: int, exception: bool = False) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x00b7: + if 0 < pos < len(label)-1: + if ord(label[pos - 1]) == 0x006c and ord(label[pos + 1]) == 0x006c: + return True + return False + + elif cp_value == 0x0375: + if pos < len(label)-1 and len(label) > 1: + return _is_script(label[pos + 1], 'Greek') + return False + + elif cp_value == 0x05f3 or cp_value == 0x05f4: + if pos > 0: + return _is_script(label[pos - 1], 'Hebrew') + return False + + elif cp_value == 0x30fb: + for cp in label: + if cp == '\u30fb': + continue + if _is_script(cp, 'Hiragana') or _is_script(cp, 'Katakana') or _is_script(cp, 'Han'): + return True + return False + + elif 0x660 <= cp_value <= 0x669: + for cp in label: + if 0x6f0 <= ord(cp) <= 0x06f9: + return False + return True + + elif 0x6f0 <= cp_value <= 0x6f9: + for cp in label: + if 0x660 <= ord(cp) <= 0x0669: + return False + return True + + return False + + +def check_label(label: Union[str, bytes, bytearray]) -> None: + if isinstance(label, (bytes, bytearray)): + label = label.decode('utf-8') + if len(label) == 0: + raise IDNAError('Empty Label') + + check_nfc(label) + check_hyphen_ok(label) + check_initial_combiner(label) + + for (pos, cp) in enumerate(label): + cp_value = ord(cp) + if intranges_contain(cp_value, idnadata.codepoint_classes['PVALID']): + continue + elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTJ']): + try: + if not valid_contextj(label, pos): + raise InvalidCodepointContext('Joiner {} not allowed at position {} in {}'.format( + _unot(cp_value), pos+1, repr(label))) + except ValueError: + raise IDNAError('Unknown codepoint adjacent to joiner {} at position {} in {}'.format( + _unot(cp_value), pos+1, repr(label))) + elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTO']): + if not valid_contexto(label, pos): + raise InvalidCodepointContext('Codepoint {} not allowed at position {} in {}'.format(_unot(cp_value), pos+1, repr(label))) + else: + raise InvalidCodepoint('Codepoint {} at position {} of {} not allowed'.format(_unot(cp_value), pos+1, repr(label))) + + check_bidi(label) + + +def alabel(label: str) -> bytes: + try: + label_bytes = label.encode('ascii') + ulabel(label_bytes) + if not valid_label_length(label_bytes): + raise IDNAError('Label too long') + return label_bytes + except UnicodeEncodeError: + pass + + if not label: + raise IDNAError('No Input') + + label = str(label) + check_label(label) + label_bytes = _punycode(label) + label_bytes = _alabel_prefix + label_bytes + + if not valid_label_length(label_bytes): + raise IDNAError('Label too long') + + return label_bytes + + +def ulabel(label: Union[str, bytes, bytearray]) -> str: + if not isinstance(label, (bytes, bytearray)): + try: + label_bytes = label.encode('ascii') + except UnicodeEncodeError: + check_label(label) + return label + else: + label_bytes = label + + label_bytes = label_bytes.lower() + if label_bytes.startswith(_alabel_prefix): + label_bytes = label_bytes[len(_alabel_prefix):] + if not label_bytes: + raise IDNAError('Malformed A-label, no Punycode eligible content found') + if label_bytes.decode('ascii')[-1] == '-': + raise IDNAError('A-label must not end with a hyphen') + else: + check_label(label_bytes) + return label_bytes.decode('ascii') + + try: + label = label_bytes.decode('punycode') + except UnicodeError: + raise IDNAError('Invalid A-label') + check_label(label) + return label + + +def uts46_remap(domain: str, std3_rules: bool = True, transitional: bool = False) -> str: + """Re-map the characters in the string according to UTS46 processing.""" + from .uts46data import uts46data + output = '' + + for pos, char in enumerate(domain): + code_point = ord(char) + try: + uts46row = uts46data[code_point if code_point < 256 else + bisect.bisect_left(uts46data, (code_point, 'Z')) - 1] + status = uts46row[1] + replacement = None # type: Optional[str] + if len(uts46row) == 3: + replacement = uts46row[2] # type: ignore + if (status == 'V' or + (status == 'D' and not transitional) or + (status == '3' and not std3_rules and replacement is None)): + output += char + elif replacement is not None and (status == 'M' or + (status == '3' and not std3_rules) or + (status == 'D' and transitional)): + output += replacement + elif status != 'I': + raise IndexError() + except IndexError: + raise InvalidCodepoint( + 'Codepoint {} not allowed at position {} in {}'.format( + _unot(code_point), pos + 1, repr(domain))) + + return unicodedata.normalize('NFC', output) + + +def encode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False, transitional: bool = False) -> bytes: + if isinstance(s, (bytes, bytearray)): + try: + s = s.decode('ascii') + except UnicodeDecodeError: + raise IDNAError('should pass a unicode string to the function rather than a byte string.') + if uts46: + s = uts46_remap(s, std3_rules, transitional) + trailing_dot = False + result = [] + if strict: + labels = s.split('.') + else: + labels = _unicode_dots_re.split(s) + if not labels or labels == ['']: + raise IDNAError('Empty domain') + if labels[-1] == '': + del labels[-1] + trailing_dot = True + for label in labels: + s = alabel(label) + if s: + result.append(s) + else: + raise IDNAError('Empty label') + if trailing_dot: + result.append(b'') + s = b'.'.join(result) + if not valid_string_length(s, trailing_dot): + raise IDNAError('Domain too long') + return s + + +def decode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False) -> str: + try: + if isinstance(s, (bytes, bytearray)): + s = s.decode('ascii') + except UnicodeDecodeError: + raise IDNAError('Invalid ASCII in A-label') + if uts46: + s = uts46_remap(s, std3_rules, False) + trailing_dot = False + result = [] + if not strict: + labels = _unicode_dots_re.split(s) + else: + labels = s.split('.') + if not labels or labels == ['']: + raise IDNAError('Empty domain') + if not labels[-1]: + del labels[-1] + trailing_dot = True + for label in labels: + s = ulabel(label) + if s: + result.append(s) + else: + raise IDNAError('Empty label') + if trailing_dot: + result.append('') + return '.'.join(result) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py new file mode 100644 index 00000000..67db4625 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py @@ -0,0 +1,2151 @@ +# This file is automatically generated by tools/idna-data + +__version__ = '15.0.0' +scripts = { + 'Greek': ( + 0x37000000374, + 0x37500000378, + 0x37a0000037e, + 0x37f00000380, + 0x38400000385, + 0x38600000387, + 0x3880000038b, + 0x38c0000038d, + 0x38e000003a2, + 0x3a3000003e2, + 0x3f000000400, + 0x1d2600001d2b, + 0x1d5d00001d62, + 0x1d6600001d6b, + 0x1dbf00001dc0, + 0x1f0000001f16, + 0x1f1800001f1e, + 0x1f2000001f46, + 0x1f4800001f4e, + 0x1f5000001f58, + 0x1f5900001f5a, + 0x1f5b00001f5c, + 0x1f5d00001f5e, + 0x1f5f00001f7e, + 0x1f8000001fb5, + 0x1fb600001fc5, + 0x1fc600001fd4, + 0x1fd600001fdc, + 0x1fdd00001ff0, + 0x1ff200001ff5, + 0x1ff600001fff, + 0x212600002127, + 0xab650000ab66, + 0x101400001018f, + 0x101a0000101a1, + 0x1d2000001d246, + ), + 'Han': ( + 0x2e8000002e9a, + 0x2e9b00002ef4, + 0x2f0000002fd6, + 0x300500003006, + 0x300700003008, + 0x30210000302a, + 0x30380000303c, + 0x340000004dc0, + 0x4e000000a000, + 0xf9000000fa6e, + 0xfa700000fada, + 0x16fe200016fe4, + 0x16ff000016ff2, + 0x200000002a6e0, + 0x2a7000002b73a, + 0x2b7400002b81e, + 0x2b8200002cea2, + 0x2ceb00002ebe1, + 0x2f8000002fa1e, + 0x300000003134b, + 0x31350000323b0, + ), + 'Hebrew': ( + 0x591000005c8, + 0x5d0000005eb, + 0x5ef000005f5, + 0xfb1d0000fb37, + 0xfb380000fb3d, + 0xfb3e0000fb3f, + 0xfb400000fb42, + 0xfb430000fb45, + 0xfb460000fb50, + ), + 'Hiragana': ( + 0x304100003097, + 0x309d000030a0, + 0x1b0010001b120, + 0x1b1320001b133, + 0x1b1500001b153, + 0x1f2000001f201, + ), + 'Katakana': ( + 0x30a1000030fb, + 0x30fd00003100, + 0x31f000003200, + 0x32d0000032ff, + 0x330000003358, + 0xff660000ff70, + 0xff710000ff9e, + 0x1aff00001aff4, + 0x1aff50001affc, + 0x1affd0001afff, + 0x1b0000001b001, + 0x1b1200001b123, + 0x1b1550001b156, + 0x1b1640001b168, + ), +} +joining_types = { + 0x600: 85, + 0x601: 85, + 0x602: 85, + 0x603: 85, + 0x604: 85, + 0x605: 85, + 0x608: 85, + 0x60b: 85, + 0x620: 68, + 0x621: 85, + 0x622: 82, + 0x623: 82, + 0x624: 82, + 0x625: 82, + 0x626: 68, + 0x627: 82, + 0x628: 68, + 0x629: 82, + 0x62a: 68, + 0x62b: 68, + 0x62c: 68, + 0x62d: 68, + 0x62e: 68, + 0x62f: 82, + 0x630: 82, + 0x631: 82, + 0x632: 82, + 0x633: 68, + 0x634: 68, + 0x635: 68, + 0x636: 68, + 0x637: 68, + 0x638: 68, + 0x639: 68, + 0x63a: 68, + 0x63b: 68, + 0x63c: 68, + 0x63d: 68, + 0x63e: 68, + 0x63f: 68, + 0x640: 67, + 0x641: 68, + 0x642: 68, + 0x643: 68, + 0x644: 68, + 0x645: 68, + 0x646: 68, + 0x647: 68, + 0x648: 82, + 0x649: 68, + 0x64a: 68, + 0x66e: 68, + 0x66f: 68, + 0x671: 82, + 0x672: 82, + 0x673: 82, + 0x674: 85, + 0x675: 82, + 0x676: 82, + 0x677: 82, + 0x678: 68, + 0x679: 68, + 0x67a: 68, + 0x67b: 68, + 0x67c: 68, + 0x67d: 68, + 0x67e: 68, + 0x67f: 68, + 0x680: 68, + 0x681: 68, + 0x682: 68, + 0x683: 68, + 0x684: 68, + 0x685: 68, + 0x686: 68, + 0x687: 68, + 0x688: 82, + 0x689: 82, + 0x68a: 82, + 0x68b: 82, + 0x68c: 82, + 0x68d: 82, + 0x68e: 82, + 0x68f: 82, + 0x690: 82, + 0x691: 82, + 0x692: 82, + 0x693: 82, + 0x694: 82, + 0x695: 82, + 0x696: 82, + 0x697: 82, + 0x698: 82, + 0x699: 82, + 0x69a: 68, + 0x69b: 68, + 0x69c: 68, + 0x69d: 68, + 0x69e: 68, + 0x69f: 68, + 0x6a0: 68, + 0x6a1: 68, + 0x6a2: 68, + 0x6a3: 68, + 0x6a4: 68, + 0x6a5: 68, + 0x6a6: 68, + 0x6a7: 68, + 0x6a8: 68, + 0x6a9: 68, + 0x6aa: 68, + 0x6ab: 68, + 0x6ac: 68, + 0x6ad: 68, + 0x6ae: 68, + 0x6af: 68, + 0x6b0: 68, + 0x6b1: 68, + 0x6b2: 68, + 0x6b3: 68, + 0x6b4: 68, + 0x6b5: 68, + 0x6b6: 68, + 0x6b7: 68, + 0x6b8: 68, + 0x6b9: 68, + 0x6ba: 68, + 0x6bb: 68, + 0x6bc: 68, + 0x6bd: 68, + 0x6be: 68, + 0x6bf: 68, + 0x6c0: 82, + 0x6c1: 68, + 0x6c2: 68, + 0x6c3: 82, + 0x6c4: 82, + 0x6c5: 82, + 0x6c6: 82, + 0x6c7: 82, + 0x6c8: 82, + 0x6c9: 82, + 0x6ca: 82, + 0x6cb: 82, + 0x6cc: 68, + 0x6cd: 82, + 0x6ce: 68, + 0x6cf: 82, + 0x6d0: 68, + 0x6d1: 68, + 0x6d2: 82, + 0x6d3: 82, + 0x6d5: 82, + 0x6dd: 85, + 0x6ee: 82, + 0x6ef: 82, + 0x6fa: 68, + 0x6fb: 68, + 0x6fc: 68, + 0x6ff: 68, + 0x70f: 84, + 0x710: 82, + 0x712: 68, + 0x713: 68, + 0x714: 68, + 0x715: 82, + 0x716: 82, + 0x717: 82, + 0x718: 82, + 0x719: 82, + 0x71a: 68, + 0x71b: 68, + 0x71c: 68, + 0x71d: 68, + 0x71e: 82, + 0x71f: 68, + 0x720: 68, + 0x721: 68, + 0x722: 68, + 0x723: 68, + 0x724: 68, + 0x725: 68, + 0x726: 68, + 0x727: 68, + 0x728: 82, + 0x729: 68, + 0x72a: 82, + 0x72b: 68, + 0x72c: 82, + 0x72d: 68, + 0x72e: 68, + 0x72f: 82, + 0x74d: 82, + 0x74e: 68, + 0x74f: 68, + 0x750: 68, + 0x751: 68, + 0x752: 68, + 0x753: 68, + 0x754: 68, + 0x755: 68, + 0x756: 68, + 0x757: 68, + 0x758: 68, + 0x759: 82, + 0x75a: 82, + 0x75b: 82, + 0x75c: 68, + 0x75d: 68, + 0x75e: 68, + 0x75f: 68, + 0x760: 68, + 0x761: 68, + 0x762: 68, + 0x763: 68, + 0x764: 68, + 0x765: 68, + 0x766: 68, + 0x767: 68, + 0x768: 68, + 0x769: 68, + 0x76a: 68, + 0x76b: 82, + 0x76c: 82, + 0x76d: 68, + 0x76e: 68, + 0x76f: 68, + 0x770: 68, + 0x771: 82, + 0x772: 68, + 0x773: 82, + 0x774: 82, + 0x775: 68, + 0x776: 68, + 0x777: 68, + 0x778: 82, + 0x779: 82, + 0x77a: 68, + 0x77b: 68, + 0x77c: 68, + 0x77d: 68, + 0x77e: 68, + 0x77f: 68, + 0x7ca: 68, + 0x7cb: 68, + 0x7cc: 68, + 0x7cd: 68, + 0x7ce: 68, + 0x7cf: 68, + 0x7d0: 68, + 0x7d1: 68, + 0x7d2: 68, + 0x7d3: 68, + 0x7d4: 68, + 0x7d5: 68, + 0x7d6: 68, + 0x7d7: 68, + 0x7d8: 68, + 0x7d9: 68, + 0x7da: 68, + 0x7db: 68, + 0x7dc: 68, + 0x7dd: 68, + 0x7de: 68, + 0x7df: 68, + 0x7e0: 68, + 0x7e1: 68, + 0x7e2: 68, + 0x7e3: 68, + 0x7e4: 68, + 0x7e5: 68, + 0x7e6: 68, + 0x7e7: 68, + 0x7e8: 68, + 0x7e9: 68, + 0x7ea: 68, + 0x7fa: 67, + 0x840: 82, + 0x841: 68, + 0x842: 68, + 0x843: 68, + 0x844: 68, + 0x845: 68, + 0x846: 82, + 0x847: 82, + 0x848: 68, + 0x849: 82, + 0x84a: 68, + 0x84b: 68, + 0x84c: 68, + 0x84d: 68, + 0x84e: 68, + 0x84f: 68, + 0x850: 68, + 0x851: 68, + 0x852: 68, + 0x853: 68, + 0x854: 82, + 0x855: 68, + 0x856: 82, + 0x857: 82, + 0x858: 82, + 0x860: 68, + 0x861: 85, + 0x862: 68, + 0x863: 68, + 0x864: 68, + 0x865: 68, + 0x866: 85, + 0x867: 82, + 0x868: 68, + 0x869: 82, + 0x86a: 82, + 0x870: 82, + 0x871: 82, + 0x872: 82, + 0x873: 82, + 0x874: 82, + 0x875: 82, + 0x876: 82, + 0x877: 82, + 0x878: 82, + 0x879: 82, + 0x87a: 82, + 0x87b: 82, + 0x87c: 82, + 0x87d: 82, + 0x87e: 82, + 0x87f: 82, + 0x880: 82, + 0x881: 82, + 0x882: 82, + 0x883: 67, + 0x884: 67, + 0x885: 67, + 0x886: 68, + 0x887: 85, + 0x888: 85, + 0x889: 68, + 0x88a: 68, + 0x88b: 68, + 0x88c: 68, + 0x88d: 68, + 0x88e: 82, + 0x890: 85, + 0x891: 85, + 0x8a0: 68, + 0x8a1: 68, + 0x8a2: 68, + 0x8a3: 68, + 0x8a4: 68, + 0x8a5: 68, + 0x8a6: 68, + 0x8a7: 68, + 0x8a8: 68, + 0x8a9: 68, + 0x8aa: 82, + 0x8ab: 82, + 0x8ac: 82, + 0x8ad: 85, + 0x8ae: 82, + 0x8af: 68, + 0x8b0: 68, + 0x8b1: 82, + 0x8b2: 82, + 0x8b3: 68, + 0x8b4: 68, + 0x8b5: 68, + 0x8b6: 68, + 0x8b7: 68, + 0x8b8: 68, + 0x8b9: 82, + 0x8ba: 68, + 0x8bb: 68, + 0x8bc: 68, + 0x8bd: 68, + 0x8be: 68, + 0x8bf: 68, + 0x8c0: 68, + 0x8c1: 68, + 0x8c2: 68, + 0x8c3: 68, + 0x8c4: 68, + 0x8c5: 68, + 0x8c6: 68, + 0x8c7: 68, + 0x8c8: 68, + 0x8e2: 85, + 0x1806: 85, + 0x1807: 68, + 0x180a: 67, + 0x180e: 85, + 0x1820: 68, + 0x1821: 68, + 0x1822: 68, + 0x1823: 68, + 0x1824: 68, + 0x1825: 68, + 0x1826: 68, + 0x1827: 68, + 0x1828: 68, + 0x1829: 68, + 0x182a: 68, + 0x182b: 68, + 0x182c: 68, + 0x182d: 68, + 0x182e: 68, + 0x182f: 68, + 0x1830: 68, + 0x1831: 68, + 0x1832: 68, + 0x1833: 68, + 0x1834: 68, + 0x1835: 68, + 0x1836: 68, + 0x1837: 68, + 0x1838: 68, + 0x1839: 68, + 0x183a: 68, + 0x183b: 68, + 0x183c: 68, + 0x183d: 68, + 0x183e: 68, + 0x183f: 68, + 0x1840: 68, + 0x1841: 68, + 0x1842: 68, + 0x1843: 68, + 0x1844: 68, + 0x1845: 68, + 0x1846: 68, + 0x1847: 68, + 0x1848: 68, + 0x1849: 68, + 0x184a: 68, + 0x184b: 68, + 0x184c: 68, + 0x184d: 68, + 0x184e: 68, + 0x184f: 68, + 0x1850: 68, + 0x1851: 68, + 0x1852: 68, + 0x1853: 68, + 0x1854: 68, + 0x1855: 68, + 0x1856: 68, + 0x1857: 68, + 0x1858: 68, + 0x1859: 68, + 0x185a: 68, + 0x185b: 68, + 0x185c: 68, + 0x185d: 68, + 0x185e: 68, + 0x185f: 68, + 0x1860: 68, + 0x1861: 68, + 0x1862: 68, + 0x1863: 68, + 0x1864: 68, + 0x1865: 68, + 0x1866: 68, + 0x1867: 68, + 0x1868: 68, + 0x1869: 68, + 0x186a: 68, + 0x186b: 68, + 0x186c: 68, + 0x186d: 68, + 0x186e: 68, + 0x186f: 68, + 0x1870: 68, + 0x1871: 68, + 0x1872: 68, + 0x1873: 68, + 0x1874: 68, + 0x1875: 68, + 0x1876: 68, + 0x1877: 68, + 0x1878: 68, + 0x1880: 85, + 0x1881: 85, + 0x1882: 85, + 0x1883: 85, + 0x1884: 85, + 0x1885: 84, + 0x1886: 84, + 0x1887: 68, + 0x1888: 68, + 0x1889: 68, + 0x188a: 68, + 0x188b: 68, + 0x188c: 68, + 0x188d: 68, + 0x188e: 68, + 0x188f: 68, + 0x1890: 68, + 0x1891: 68, + 0x1892: 68, + 0x1893: 68, + 0x1894: 68, + 0x1895: 68, + 0x1896: 68, + 0x1897: 68, + 0x1898: 68, + 0x1899: 68, + 0x189a: 68, + 0x189b: 68, + 0x189c: 68, + 0x189d: 68, + 0x189e: 68, + 0x189f: 68, + 0x18a0: 68, + 0x18a1: 68, + 0x18a2: 68, + 0x18a3: 68, + 0x18a4: 68, + 0x18a5: 68, + 0x18a6: 68, + 0x18a7: 68, + 0x18a8: 68, + 0x18aa: 68, + 0x200c: 85, + 0x200d: 67, + 0x202f: 85, + 0x2066: 85, + 0x2067: 85, + 0x2068: 85, + 0x2069: 85, + 0xa840: 68, + 0xa841: 68, + 0xa842: 68, + 0xa843: 68, + 0xa844: 68, + 0xa845: 68, + 0xa846: 68, + 0xa847: 68, + 0xa848: 68, + 0xa849: 68, + 0xa84a: 68, + 0xa84b: 68, + 0xa84c: 68, + 0xa84d: 68, + 0xa84e: 68, + 0xa84f: 68, + 0xa850: 68, + 0xa851: 68, + 0xa852: 68, + 0xa853: 68, + 0xa854: 68, + 0xa855: 68, + 0xa856: 68, + 0xa857: 68, + 0xa858: 68, + 0xa859: 68, + 0xa85a: 68, + 0xa85b: 68, + 0xa85c: 68, + 0xa85d: 68, + 0xa85e: 68, + 0xa85f: 68, + 0xa860: 68, + 0xa861: 68, + 0xa862: 68, + 0xa863: 68, + 0xa864: 68, + 0xa865: 68, + 0xa866: 68, + 0xa867: 68, + 0xa868: 68, + 0xa869: 68, + 0xa86a: 68, + 0xa86b: 68, + 0xa86c: 68, + 0xa86d: 68, + 0xa86e: 68, + 0xa86f: 68, + 0xa870: 68, + 0xa871: 68, + 0xa872: 76, + 0xa873: 85, + 0x10ac0: 68, + 0x10ac1: 68, + 0x10ac2: 68, + 0x10ac3: 68, + 0x10ac4: 68, + 0x10ac5: 82, + 0x10ac6: 85, + 0x10ac7: 82, + 0x10ac8: 85, + 0x10ac9: 82, + 0x10aca: 82, + 0x10acb: 85, + 0x10acc: 85, + 0x10acd: 76, + 0x10ace: 82, + 0x10acf: 82, + 0x10ad0: 82, + 0x10ad1: 82, + 0x10ad2: 82, + 0x10ad3: 68, + 0x10ad4: 68, + 0x10ad5: 68, + 0x10ad6: 68, + 0x10ad7: 76, + 0x10ad8: 68, + 0x10ad9: 68, + 0x10ada: 68, + 0x10adb: 68, + 0x10adc: 68, + 0x10add: 82, + 0x10ade: 68, + 0x10adf: 68, + 0x10ae0: 68, + 0x10ae1: 82, + 0x10ae2: 85, + 0x10ae3: 85, + 0x10ae4: 82, + 0x10aeb: 68, + 0x10aec: 68, + 0x10aed: 68, + 0x10aee: 68, + 0x10aef: 82, + 0x10b80: 68, + 0x10b81: 82, + 0x10b82: 68, + 0x10b83: 82, + 0x10b84: 82, + 0x10b85: 82, + 0x10b86: 68, + 0x10b87: 68, + 0x10b88: 68, + 0x10b89: 82, + 0x10b8a: 68, + 0x10b8b: 68, + 0x10b8c: 82, + 0x10b8d: 68, + 0x10b8e: 82, + 0x10b8f: 82, + 0x10b90: 68, + 0x10b91: 82, + 0x10ba9: 82, + 0x10baa: 82, + 0x10bab: 82, + 0x10bac: 82, + 0x10bad: 68, + 0x10bae: 68, + 0x10baf: 85, + 0x10d00: 76, + 0x10d01: 68, + 0x10d02: 68, + 0x10d03: 68, + 0x10d04: 68, + 0x10d05: 68, + 0x10d06: 68, + 0x10d07: 68, + 0x10d08: 68, + 0x10d09: 68, + 0x10d0a: 68, + 0x10d0b: 68, + 0x10d0c: 68, + 0x10d0d: 68, + 0x10d0e: 68, + 0x10d0f: 68, + 0x10d10: 68, + 0x10d11: 68, + 0x10d12: 68, + 0x10d13: 68, + 0x10d14: 68, + 0x10d15: 68, + 0x10d16: 68, + 0x10d17: 68, + 0x10d18: 68, + 0x10d19: 68, + 0x10d1a: 68, + 0x10d1b: 68, + 0x10d1c: 68, + 0x10d1d: 68, + 0x10d1e: 68, + 0x10d1f: 68, + 0x10d20: 68, + 0x10d21: 68, + 0x10d22: 82, + 0x10d23: 68, + 0x10f30: 68, + 0x10f31: 68, + 0x10f32: 68, + 0x10f33: 82, + 0x10f34: 68, + 0x10f35: 68, + 0x10f36: 68, + 0x10f37: 68, + 0x10f38: 68, + 0x10f39: 68, + 0x10f3a: 68, + 0x10f3b: 68, + 0x10f3c: 68, + 0x10f3d: 68, + 0x10f3e: 68, + 0x10f3f: 68, + 0x10f40: 68, + 0x10f41: 68, + 0x10f42: 68, + 0x10f43: 68, + 0x10f44: 68, + 0x10f45: 85, + 0x10f51: 68, + 0x10f52: 68, + 0x10f53: 68, + 0x10f54: 82, + 0x10f70: 68, + 0x10f71: 68, + 0x10f72: 68, + 0x10f73: 68, + 0x10f74: 82, + 0x10f75: 82, + 0x10f76: 68, + 0x10f77: 68, + 0x10f78: 68, + 0x10f79: 68, + 0x10f7a: 68, + 0x10f7b: 68, + 0x10f7c: 68, + 0x10f7d: 68, + 0x10f7e: 68, + 0x10f7f: 68, + 0x10f80: 68, + 0x10f81: 68, + 0x10fb0: 68, + 0x10fb1: 85, + 0x10fb2: 68, + 0x10fb3: 68, + 0x10fb4: 82, + 0x10fb5: 82, + 0x10fb6: 82, + 0x10fb7: 85, + 0x10fb8: 68, + 0x10fb9: 82, + 0x10fba: 82, + 0x10fbb: 68, + 0x10fbc: 68, + 0x10fbd: 82, + 0x10fbe: 68, + 0x10fbf: 68, + 0x10fc0: 85, + 0x10fc1: 68, + 0x10fc2: 82, + 0x10fc3: 82, + 0x10fc4: 68, + 0x10fc5: 85, + 0x10fc6: 85, + 0x10fc7: 85, + 0x10fc8: 85, + 0x10fc9: 82, + 0x10fca: 68, + 0x10fcb: 76, + 0x110bd: 85, + 0x110cd: 85, + 0x1e900: 68, + 0x1e901: 68, + 0x1e902: 68, + 0x1e903: 68, + 0x1e904: 68, + 0x1e905: 68, + 0x1e906: 68, + 0x1e907: 68, + 0x1e908: 68, + 0x1e909: 68, + 0x1e90a: 68, + 0x1e90b: 68, + 0x1e90c: 68, + 0x1e90d: 68, + 0x1e90e: 68, + 0x1e90f: 68, + 0x1e910: 68, + 0x1e911: 68, + 0x1e912: 68, + 0x1e913: 68, + 0x1e914: 68, + 0x1e915: 68, + 0x1e916: 68, + 0x1e917: 68, + 0x1e918: 68, + 0x1e919: 68, + 0x1e91a: 68, + 0x1e91b: 68, + 0x1e91c: 68, + 0x1e91d: 68, + 0x1e91e: 68, + 0x1e91f: 68, + 0x1e920: 68, + 0x1e921: 68, + 0x1e922: 68, + 0x1e923: 68, + 0x1e924: 68, + 0x1e925: 68, + 0x1e926: 68, + 0x1e927: 68, + 0x1e928: 68, + 0x1e929: 68, + 0x1e92a: 68, + 0x1e92b: 68, + 0x1e92c: 68, + 0x1e92d: 68, + 0x1e92e: 68, + 0x1e92f: 68, + 0x1e930: 68, + 0x1e931: 68, + 0x1e932: 68, + 0x1e933: 68, + 0x1e934: 68, + 0x1e935: 68, + 0x1e936: 68, + 0x1e937: 68, + 0x1e938: 68, + 0x1e939: 68, + 0x1e93a: 68, + 0x1e93b: 68, + 0x1e93c: 68, + 0x1e93d: 68, + 0x1e93e: 68, + 0x1e93f: 68, + 0x1e940: 68, + 0x1e941: 68, + 0x1e942: 68, + 0x1e943: 68, + 0x1e94b: 84, +} +codepoint_classes = { + 'PVALID': ( + 0x2d0000002e, + 0x300000003a, + 0x610000007b, + 0xdf000000f7, + 0xf800000100, + 0x10100000102, + 0x10300000104, + 0x10500000106, + 0x10700000108, + 0x1090000010a, + 0x10b0000010c, + 0x10d0000010e, + 0x10f00000110, + 0x11100000112, + 0x11300000114, + 0x11500000116, + 0x11700000118, + 0x1190000011a, + 0x11b0000011c, + 0x11d0000011e, + 0x11f00000120, + 0x12100000122, + 0x12300000124, + 0x12500000126, + 0x12700000128, + 0x1290000012a, + 0x12b0000012c, + 0x12d0000012e, + 0x12f00000130, + 0x13100000132, + 0x13500000136, + 0x13700000139, + 0x13a0000013b, + 0x13c0000013d, + 0x13e0000013f, + 0x14200000143, + 0x14400000145, + 0x14600000147, + 0x14800000149, + 0x14b0000014c, + 0x14d0000014e, + 0x14f00000150, + 0x15100000152, + 0x15300000154, + 0x15500000156, + 0x15700000158, + 0x1590000015a, + 0x15b0000015c, + 0x15d0000015e, + 0x15f00000160, + 0x16100000162, + 0x16300000164, + 0x16500000166, + 0x16700000168, + 0x1690000016a, + 0x16b0000016c, + 0x16d0000016e, + 0x16f00000170, + 0x17100000172, + 0x17300000174, + 0x17500000176, + 0x17700000178, + 0x17a0000017b, + 0x17c0000017d, + 0x17e0000017f, + 0x18000000181, + 0x18300000184, + 0x18500000186, + 0x18800000189, + 0x18c0000018e, + 0x19200000193, + 0x19500000196, + 0x1990000019c, + 0x19e0000019f, + 0x1a1000001a2, + 0x1a3000001a4, + 0x1a5000001a6, + 0x1a8000001a9, + 0x1aa000001ac, + 0x1ad000001ae, + 0x1b0000001b1, + 0x1b4000001b5, + 0x1b6000001b7, + 0x1b9000001bc, + 0x1bd000001c4, + 0x1ce000001cf, + 0x1d0000001d1, + 0x1d2000001d3, + 0x1d4000001d5, + 0x1d6000001d7, + 0x1d8000001d9, + 0x1da000001db, + 0x1dc000001de, + 0x1df000001e0, + 0x1e1000001e2, + 0x1e3000001e4, + 0x1e5000001e6, + 0x1e7000001e8, + 0x1e9000001ea, + 0x1eb000001ec, + 0x1ed000001ee, + 0x1ef000001f1, + 0x1f5000001f6, + 0x1f9000001fa, + 0x1fb000001fc, + 0x1fd000001fe, + 0x1ff00000200, + 0x20100000202, + 0x20300000204, + 0x20500000206, + 0x20700000208, + 0x2090000020a, + 0x20b0000020c, + 0x20d0000020e, + 0x20f00000210, + 0x21100000212, + 0x21300000214, + 0x21500000216, + 0x21700000218, + 0x2190000021a, + 0x21b0000021c, + 0x21d0000021e, + 0x21f00000220, + 0x22100000222, + 0x22300000224, + 0x22500000226, + 0x22700000228, + 0x2290000022a, + 0x22b0000022c, + 0x22d0000022e, + 0x22f00000230, + 0x23100000232, + 0x2330000023a, + 0x23c0000023d, + 0x23f00000241, + 0x24200000243, + 0x24700000248, + 0x2490000024a, + 0x24b0000024c, + 0x24d0000024e, + 0x24f000002b0, + 0x2b9000002c2, + 0x2c6000002d2, + 0x2ec000002ed, + 0x2ee000002ef, + 0x30000000340, + 0x34200000343, + 0x3460000034f, + 0x35000000370, + 0x37100000372, + 0x37300000374, + 0x37700000378, + 0x37b0000037e, + 0x39000000391, + 0x3ac000003cf, + 0x3d7000003d8, + 0x3d9000003da, + 0x3db000003dc, + 0x3dd000003de, + 0x3df000003e0, + 0x3e1000003e2, + 0x3e3000003e4, + 0x3e5000003e6, + 0x3e7000003e8, + 0x3e9000003ea, + 0x3eb000003ec, + 0x3ed000003ee, + 0x3ef000003f0, + 0x3f3000003f4, + 0x3f8000003f9, + 0x3fb000003fd, + 0x43000000460, + 0x46100000462, + 0x46300000464, + 0x46500000466, + 0x46700000468, + 0x4690000046a, + 0x46b0000046c, + 0x46d0000046e, + 0x46f00000470, + 0x47100000472, + 0x47300000474, + 0x47500000476, + 0x47700000478, + 0x4790000047a, + 0x47b0000047c, + 0x47d0000047e, + 0x47f00000480, + 0x48100000482, + 0x48300000488, + 0x48b0000048c, + 0x48d0000048e, + 0x48f00000490, + 0x49100000492, + 0x49300000494, + 0x49500000496, + 0x49700000498, + 0x4990000049a, + 0x49b0000049c, + 0x49d0000049e, + 0x49f000004a0, + 0x4a1000004a2, + 0x4a3000004a4, + 0x4a5000004a6, + 0x4a7000004a8, + 0x4a9000004aa, + 0x4ab000004ac, + 0x4ad000004ae, + 0x4af000004b0, + 0x4b1000004b2, + 0x4b3000004b4, + 0x4b5000004b6, + 0x4b7000004b8, + 0x4b9000004ba, + 0x4bb000004bc, + 0x4bd000004be, + 0x4bf000004c0, + 0x4c2000004c3, + 0x4c4000004c5, + 0x4c6000004c7, + 0x4c8000004c9, + 0x4ca000004cb, + 0x4cc000004cd, + 0x4ce000004d0, + 0x4d1000004d2, + 0x4d3000004d4, + 0x4d5000004d6, + 0x4d7000004d8, + 0x4d9000004da, + 0x4db000004dc, + 0x4dd000004de, + 0x4df000004e0, + 0x4e1000004e2, + 0x4e3000004e4, + 0x4e5000004e6, + 0x4e7000004e8, + 0x4e9000004ea, + 0x4eb000004ec, + 0x4ed000004ee, + 0x4ef000004f0, + 0x4f1000004f2, + 0x4f3000004f4, + 0x4f5000004f6, + 0x4f7000004f8, + 0x4f9000004fa, + 0x4fb000004fc, + 0x4fd000004fe, + 0x4ff00000500, + 0x50100000502, + 0x50300000504, + 0x50500000506, + 0x50700000508, + 0x5090000050a, + 0x50b0000050c, + 0x50d0000050e, + 0x50f00000510, + 0x51100000512, + 0x51300000514, + 0x51500000516, + 0x51700000518, + 0x5190000051a, + 0x51b0000051c, + 0x51d0000051e, + 0x51f00000520, + 0x52100000522, + 0x52300000524, + 0x52500000526, + 0x52700000528, + 0x5290000052a, + 0x52b0000052c, + 0x52d0000052e, + 0x52f00000530, + 0x5590000055a, + 0x56000000587, + 0x58800000589, + 0x591000005be, + 0x5bf000005c0, + 0x5c1000005c3, + 0x5c4000005c6, + 0x5c7000005c8, + 0x5d0000005eb, + 0x5ef000005f3, + 0x6100000061b, + 0x62000000640, + 0x64100000660, + 0x66e00000675, + 0x679000006d4, + 0x6d5000006dd, + 0x6df000006e9, + 0x6ea000006f0, + 0x6fa00000700, + 0x7100000074b, + 0x74d000007b2, + 0x7c0000007f6, + 0x7fd000007fe, + 0x8000000082e, + 0x8400000085c, + 0x8600000086b, + 0x87000000888, + 0x8890000088f, + 0x898000008e2, + 0x8e300000958, + 0x96000000964, + 0x96600000970, + 0x97100000984, + 0x9850000098d, + 0x98f00000991, + 0x993000009a9, + 0x9aa000009b1, + 0x9b2000009b3, + 0x9b6000009ba, + 0x9bc000009c5, + 0x9c7000009c9, + 0x9cb000009cf, + 0x9d7000009d8, + 0x9e0000009e4, + 0x9e6000009f2, + 0x9fc000009fd, + 0x9fe000009ff, + 0xa0100000a04, + 0xa0500000a0b, + 0xa0f00000a11, + 0xa1300000a29, + 0xa2a00000a31, + 0xa3200000a33, + 0xa3500000a36, + 0xa3800000a3a, + 0xa3c00000a3d, + 0xa3e00000a43, + 0xa4700000a49, + 0xa4b00000a4e, + 0xa5100000a52, + 0xa5c00000a5d, + 0xa6600000a76, + 0xa8100000a84, + 0xa8500000a8e, + 0xa8f00000a92, + 0xa9300000aa9, + 0xaaa00000ab1, + 0xab200000ab4, + 0xab500000aba, + 0xabc00000ac6, + 0xac700000aca, + 0xacb00000ace, + 0xad000000ad1, + 0xae000000ae4, + 0xae600000af0, + 0xaf900000b00, + 0xb0100000b04, + 0xb0500000b0d, + 0xb0f00000b11, + 0xb1300000b29, + 0xb2a00000b31, + 0xb3200000b34, + 0xb3500000b3a, + 0xb3c00000b45, + 0xb4700000b49, + 0xb4b00000b4e, + 0xb5500000b58, + 0xb5f00000b64, + 0xb6600000b70, + 0xb7100000b72, + 0xb8200000b84, + 0xb8500000b8b, + 0xb8e00000b91, + 0xb9200000b96, + 0xb9900000b9b, + 0xb9c00000b9d, + 0xb9e00000ba0, + 0xba300000ba5, + 0xba800000bab, + 0xbae00000bba, + 0xbbe00000bc3, + 0xbc600000bc9, + 0xbca00000bce, + 0xbd000000bd1, + 0xbd700000bd8, + 0xbe600000bf0, + 0xc0000000c0d, + 0xc0e00000c11, + 0xc1200000c29, + 0xc2a00000c3a, + 0xc3c00000c45, + 0xc4600000c49, + 0xc4a00000c4e, + 0xc5500000c57, + 0xc5800000c5b, + 0xc5d00000c5e, + 0xc6000000c64, + 0xc6600000c70, + 0xc8000000c84, + 0xc8500000c8d, + 0xc8e00000c91, + 0xc9200000ca9, + 0xcaa00000cb4, + 0xcb500000cba, + 0xcbc00000cc5, + 0xcc600000cc9, + 0xcca00000cce, + 0xcd500000cd7, + 0xcdd00000cdf, + 0xce000000ce4, + 0xce600000cf0, + 0xcf100000cf4, + 0xd0000000d0d, + 0xd0e00000d11, + 0xd1200000d45, + 0xd4600000d49, + 0xd4a00000d4f, + 0xd5400000d58, + 0xd5f00000d64, + 0xd6600000d70, + 0xd7a00000d80, + 0xd8100000d84, + 0xd8500000d97, + 0xd9a00000db2, + 0xdb300000dbc, + 0xdbd00000dbe, + 0xdc000000dc7, + 0xdca00000dcb, + 0xdcf00000dd5, + 0xdd600000dd7, + 0xdd800000de0, + 0xde600000df0, + 0xdf200000df4, + 0xe0100000e33, + 0xe3400000e3b, + 0xe4000000e4f, + 0xe5000000e5a, + 0xe8100000e83, + 0xe8400000e85, + 0xe8600000e8b, + 0xe8c00000ea4, + 0xea500000ea6, + 0xea700000eb3, + 0xeb400000ebe, + 0xec000000ec5, + 0xec600000ec7, + 0xec800000ecf, + 0xed000000eda, + 0xede00000ee0, + 0xf0000000f01, + 0xf0b00000f0c, + 0xf1800000f1a, + 0xf2000000f2a, + 0xf3500000f36, + 0xf3700000f38, + 0xf3900000f3a, + 0xf3e00000f43, + 0xf4400000f48, + 0xf4900000f4d, + 0xf4e00000f52, + 0xf5300000f57, + 0xf5800000f5c, + 0xf5d00000f69, + 0xf6a00000f6d, + 0xf7100000f73, + 0xf7400000f75, + 0xf7a00000f81, + 0xf8200000f85, + 0xf8600000f93, + 0xf9400000f98, + 0xf9900000f9d, + 0xf9e00000fa2, + 0xfa300000fa7, + 0xfa800000fac, + 0xfad00000fb9, + 0xfba00000fbd, + 0xfc600000fc7, + 0x10000000104a, + 0x10500000109e, + 0x10d0000010fb, + 0x10fd00001100, + 0x120000001249, + 0x124a0000124e, + 0x125000001257, + 0x125800001259, + 0x125a0000125e, + 0x126000001289, + 0x128a0000128e, + 0x1290000012b1, + 0x12b2000012b6, + 0x12b8000012bf, + 0x12c0000012c1, + 0x12c2000012c6, + 0x12c8000012d7, + 0x12d800001311, + 0x131200001316, + 0x13180000135b, + 0x135d00001360, + 0x138000001390, + 0x13a0000013f6, + 0x14010000166d, + 0x166f00001680, + 0x16810000169b, + 0x16a0000016eb, + 0x16f1000016f9, + 0x170000001716, + 0x171f00001735, + 0x174000001754, + 0x17600000176d, + 0x176e00001771, + 0x177200001774, + 0x1780000017b4, + 0x17b6000017d4, + 0x17d7000017d8, + 0x17dc000017de, + 0x17e0000017ea, + 0x18100000181a, + 0x182000001879, + 0x1880000018ab, + 0x18b0000018f6, + 0x19000000191f, + 0x19200000192c, + 0x19300000193c, + 0x19460000196e, + 0x197000001975, + 0x1980000019ac, + 0x19b0000019ca, + 0x19d0000019da, + 0x1a0000001a1c, + 0x1a2000001a5f, + 0x1a6000001a7d, + 0x1a7f00001a8a, + 0x1a9000001a9a, + 0x1aa700001aa8, + 0x1ab000001abe, + 0x1abf00001acf, + 0x1b0000001b4d, + 0x1b5000001b5a, + 0x1b6b00001b74, + 0x1b8000001bf4, + 0x1c0000001c38, + 0x1c4000001c4a, + 0x1c4d00001c7e, + 0x1cd000001cd3, + 0x1cd400001cfb, + 0x1d0000001d2c, + 0x1d2f00001d30, + 0x1d3b00001d3c, + 0x1d4e00001d4f, + 0x1d6b00001d78, + 0x1d7900001d9b, + 0x1dc000001e00, + 0x1e0100001e02, + 0x1e0300001e04, + 0x1e0500001e06, + 0x1e0700001e08, + 0x1e0900001e0a, + 0x1e0b00001e0c, + 0x1e0d00001e0e, + 0x1e0f00001e10, + 0x1e1100001e12, + 0x1e1300001e14, + 0x1e1500001e16, + 0x1e1700001e18, + 0x1e1900001e1a, + 0x1e1b00001e1c, + 0x1e1d00001e1e, + 0x1e1f00001e20, + 0x1e2100001e22, + 0x1e2300001e24, + 0x1e2500001e26, + 0x1e2700001e28, + 0x1e2900001e2a, + 0x1e2b00001e2c, + 0x1e2d00001e2e, + 0x1e2f00001e30, + 0x1e3100001e32, + 0x1e3300001e34, + 0x1e3500001e36, + 0x1e3700001e38, + 0x1e3900001e3a, + 0x1e3b00001e3c, + 0x1e3d00001e3e, + 0x1e3f00001e40, + 0x1e4100001e42, + 0x1e4300001e44, + 0x1e4500001e46, + 0x1e4700001e48, + 0x1e4900001e4a, + 0x1e4b00001e4c, + 0x1e4d00001e4e, + 0x1e4f00001e50, + 0x1e5100001e52, + 0x1e5300001e54, + 0x1e5500001e56, + 0x1e5700001e58, + 0x1e5900001e5a, + 0x1e5b00001e5c, + 0x1e5d00001e5e, + 0x1e5f00001e60, + 0x1e6100001e62, + 0x1e6300001e64, + 0x1e6500001e66, + 0x1e6700001e68, + 0x1e6900001e6a, + 0x1e6b00001e6c, + 0x1e6d00001e6e, + 0x1e6f00001e70, + 0x1e7100001e72, + 0x1e7300001e74, + 0x1e7500001e76, + 0x1e7700001e78, + 0x1e7900001e7a, + 0x1e7b00001e7c, + 0x1e7d00001e7e, + 0x1e7f00001e80, + 0x1e8100001e82, + 0x1e8300001e84, + 0x1e8500001e86, + 0x1e8700001e88, + 0x1e8900001e8a, + 0x1e8b00001e8c, + 0x1e8d00001e8e, + 0x1e8f00001e90, + 0x1e9100001e92, + 0x1e9300001e94, + 0x1e9500001e9a, + 0x1e9c00001e9e, + 0x1e9f00001ea0, + 0x1ea100001ea2, + 0x1ea300001ea4, + 0x1ea500001ea6, + 0x1ea700001ea8, + 0x1ea900001eaa, + 0x1eab00001eac, + 0x1ead00001eae, + 0x1eaf00001eb0, + 0x1eb100001eb2, + 0x1eb300001eb4, + 0x1eb500001eb6, + 0x1eb700001eb8, + 0x1eb900001eba, + 0x1ebb00001ebc, + 0x1ebd00001ebe, + 0x1ebf00001ec0, + 0x1ec100001ec2, + 0x1ec300001ec4, + 0x1ec500001ec6, + 0x1ec700001ec8, + 0x1ec900001eca, + 0x1ecb00001ecc, + 0x1ecd00001ece, + 0x1ecf00001ed0, + 0x1ed100001ed2, + 0x1ed300001ed4, + 0x1ed500001ed6, + 0x1ed700001ed8, + 0x1ed900001eda, + 0x1edb00001edc, + 0x1edd00001ede, + 0x1edf00001ee0, + 0x1ee100001ee2, + 0x1ee300001ee4, + 0x1ee500001ee6, + 0x1ee700001ee8, + 0x1ee900001eea, + 0x1eeb00001eec, + 0x1eed00001eee, + 0x1eef00001ef0, + 0x1ef100001ef2, + 0x1ef300001ef4, + 0x1ef500001ef6, + 0x1ef700001ef8, + 0x1ef900001efa, + 0x1efb00001efc, + 0x1efd00001efe, + 0x1eff00001f08, + 0x1f1000001f16, + 0x1f2000001f28, + 0x1f3000001f38, + 0x1f4000001f46, + 0x1f5000001f58, + 0x1f6000001f68, + 0x1f7000001f71, + 0x1f7200001f73, + 0x1f7400001f75, + 0x1f7600001f77, + 0x1f7800001f79, + 0x1f7a00001f7b, + 0x1f7c00001f7d, + 0x1fb000001fb2, + 0x1fb600001fb7, + 0x1fc600001fc7, + 0x1fd000001fd3, + 0x1fd600001fd8, + 0x1fe000001fe3, + 0x1fe400001fe8, + 0x1ff600001ff7, + 0x214e0000214f, + 0x218400002185, + 0x2c3000002c60, + 0x2c6100002c62, + 0x2c6500002c67, + 0x2c6800002c69, + 0x2c6a00002c6b, + 0x2c6c00002c6d, + 0x2c7100002c72, + 0x2c7300002c75, + 0x2c7600002c7c, + 0x2c8100002c82, + 0x2c8300002c84, + 0x2c8500002c86, + 0x2c8700002c88, + 0x2c8900002c8a, + 0x2c8b00002c8c, + 0x2c8d00002c8e, + 0x2c8f00002c90, + 0x2c9100002c92, + 0x2c9300002c94, + 0x2c9500002c96, + 0x2c9700002c98, + 0x2c9900002c9a, + 0x2c9b00002c9c, + 0x2c9d00002c9e, + 0x2c9f00002ca0, + 0x2ca100002ca2, + 0x2ca300002ca4, + 0x2ca500002ca6, + 0x2ca700002ca8, + 0x2ca900002caa, + 0x2cab00002cac, + 0x2cad00002cae, + 0x2caf00002cb0, + 0x2cb100002cb2, + 0x2cb300002cb4, + 0x2cb500002cb6, + 0x2cb700002cb8, + 0x2cb900002cba, + 0x2cbb00002cbc, + 0x2cbd00002cbe, + 0x2cbf00002cc0, + 0x2cc100002cc2, + 0x2cc300002cc4, + 0x2cc500002cc6, + 0x2cc700002cc8, + 0x2cc900002cca, + 0x2ccb00002ccc, + 0x2ccd00002cce, + 0x2ccf00002cd0, + 0x2cd100002cd2, + 0x2cd300002cd4, + 0x2cd500002cd6, + 0x2cd700002cd8, + 0x2cd900002cda, + 0x2cdb00002cdc, + 0x2cdd00002cde, + 0x2cdf00002ce0, + 0x2ce100002ce2, + 0x2ce300002ce5, + 0x2cec00002ced, + 0x2cee00002cf2, + 0x2cf300002cf4, + 0x2d0000002d26, + 0x2d2700002d28, + 0x2d2d00002d2e, + 0x2d3000002d68, + 0x2d7f00002d97, + 0x2da000002da7, + 0x2da800002daf, + 0x2db000002db7, + 0x2db800002dbf, + 0x2dc000002dc7, + 0x2dc800002dcf, + 0x2dd000002dd7, + 0x2dd800002ddf, + 0x2de000002e00, + 0x2e2f00002e30, + 0x300500003008, + 0x302a0000302e, + 0x303c0000303d, + 0x304100003097, + 0x30990000309b, + 0x309d0000309f, + 0x30a1000030fb, + 0x30fc000030ff, + 0x310500003130, + 0x31a0000031c0, + 0x31f000003200, + 0x340000004dc0, + 0x4e000000a48d, + 0xa4d00000a4fe, + 0xa5000000a60d, + 0xa6100000a62c, + 0xa6410000a642, + 0xa6430000a644, + 0xa6450000a646, + 0xa6470000a648, + 0xa6490000a64a, + 0xa64b0000a64c, + 0xa64d0000a64e, + 0xa64f0000a650, + 0xa6510000a652, + 0xa6530000a654, + 0xa6550000a656, + 0xa6570000a658, + 0xa6590000a65a, + 0xa65b0000a65c, + 0xa65d0000a65e, + 0xa65f0000a660, + 0xa6610000a662, + 0xa6630000a664, + 0xa6650000a666, + 0xa6670000a668, + 0xa6690000a66a, + 0xa66b0000a66c, + 0xa66d0000a670, + 0xa6740000a67e, + 0xa67f0000a680, + 0xa6810000a682, + 0xa6830000a684, + 0xa6850000a686, + 0xa6870000a688, + 0xa6890000a68a, + 0xa68b0000a68c, + 0xa68d0000a68e, + 0xa68f0000a690, + 0xa6910000a692, + 0xa6930000a694, + 0xa6950000a696, + 0xa6970000a698, + 0xa6990000a69a, + 0xa69b0000a69c, + 0xa69e0000a6e6, + 0xa6f00000a6f2, + 0xa7170000a720, + 0xa7230000a724, + 0xa7250000a726, + 0xa7270000a728, + 0xa7290000a72a, + 0xa72b0000a72c, + 0xa72d0000a72e, + 0xa72f0000a732, + 0xa7330000a734, + 0xa7350000a736, + 0xa7370000a738, + 0xa7390000a73a, + 0xa73b0000a73c, + 0xa73d0000a73e, + 0xa73f0000a740, + 0xa7410000a742, + 0xa7430000a744, + 0xa7450000a746, + 0xa7470000a748, + 0xa7490000a74a, + 0xa74b0000a74c, + 0xa74d0000a74e, + 0xa74f0000a750, + 0xa7510000a752, + 0xa7530000a754, + 0xa7550000a756, + 0xa7570000a758, + 0xa7590000a75a, + 0xa75b0000a75c, + 0xa75d0000a75e, + 0xa75f0000a760, + 0xa7610000a762, + 0xa7630000a764, + 0xa7650000a766, + 0xa7670000a768, + 0xa7690000a76a, + 0xa76b0000a76c, + 0xa76d0000a76e, + 0xa76f0000a770, + 0xa7710000a779, + 0xa77a0000a77b, + 0xa77c0000a77d, + 0xa77f0000a780, + 0xa7810000a782, + 0xa7830000a784, + 0xa7850000a786, + 0xa7870000a789, + 0xa78c0000a78d, + 0xa78e0000a790, + 0xa7910000a792, + 0xa7930000a796, + 0xa7970000a798, + 0xa7990000a79a, + 0xa79b0000a79c, + 0xa79d0000a79e, + 0xa79f0000a7a0, + 0xa7a10000a7a2, + 0xa7a30000a7a4, + 0xa7a50000a7a6, + 0xa7a70000a7a8, + 0xa7a90000a7aa, + 0xa7af0000a7b0, + 0xa7b50000a7b6, + 0xa7b70000a7b8, + 0xa7b90000a7ba, + 0xa7bb0000a7bc, + 0xa7bd0000a7be, + 0xa7bf0000a7c0, + 0xa7c10000a7c2, + 0xa7c30000a7c4, + 0xa7c80000a7c9, + 0xa7ca0000a7cb, + 0xa7d10000a7d2, + 0xa7d30000a7d4, + 0xa7d50000a7d6, + 0xa7d70000a7d8, + 0xa7d90000a7da, + 0xa7f20000a7f5, + 0xa7f60000a7f8, + 0xa7fa0000a828, + 0xa82c0000a82d, + 0xa8400000a874, + 0xa8800000a8c6, + 0xa8d00000a8da, + 0xa8e00000a8f8, + 0xa8fb0000a8fc, + 0xa8fd0000a92e, + 0xa9300000a954, + 0xa9800000a9c1, + 0xa9cf0000a9da, + 0xa9e00000a9ff, + 0xaa000000aa37, + 0xaa400000aa4e, + 0xaa500000aa5a, + 0xaa600000aa77, + 0xaa7a0000aac3, + 0xaadb0000aade, + 0xaae00000aaf0, + 0xaaf20000aaf7, + 0xab010000ab07, + 0xab090000ab0f, + 0xab110000ab17, + 0xab200000ab27, + 0xab280000ab2f, + 0xab300000ab5b, + 0xab600000ab69, + 0xabc00000abeb, + 0xabec0000abee, + 0xabf00000abfa, + 0xac000000d7a4, + 0xfa0e0000fa10, + 0xfa110000fa12, + 0xfa130000fa15, + 0xfa1f0000fa20, + 0xfa210000fa22, + 0xfa230000fa25, + 0xfa270000fa2a, + 0xfb1e0000fb1f, + 0xfe200000fe30, + 0xfe730000fe74, + 0x100000001000c, + 0x1000d00010027, + 0x100280001003b, + 0x1003c0001003e, + 0x1003f0001004e, + 0x100500001005e, + 0x10080000100fb, + 0x101fd000101fe, + 0x102800001029d, + 0x102a0000102d1, + 0x102e0000102e1, + 0x1030000010320, + 0x1032d00010341, + 0x103420001034a, + 0x103500001037b, + 0x103800001039e, + 0x103a0000103c4, + 0x103c8000103d0, + 0x104280001049e, + 0x104a0000104aa, + 0x104d8000104fc, + 0x1050000010528, + 0x1053000010564, + 0x10597000105a2, + 0x105a3000105b2, + 0x105b3000105ba, + 0x105bb000105bd, + 0x1060000010737, + 0x1074000010756, + 0x1076000010768, + 0x1078000010786, + 0x10787000107b1, + 0x107b2000107bb, + 0x1080000010806, + 0x1080800010809, + 0x1080a00010836, + 0x1083700010839, + 0x1083c0001083d, + 0x1083f00010856, + 0x1086000010877, + 0x108800001089f, + 0x108e0000108f3, + 0x108f4000108f6, + 0x1090000010916, + 0x109200001093a, + 0x10980000109b8, + 0x109be000109c0, + 0x10a0000010a04, + 0x10a0500010a07, + 0x10a0c00010a14, + 0x10a1500010a18, + 0x10a1900010a36, + 0x10a3800010a3b, + 0x10a3f00010a40, + 0x10a6000010a7d, + 0x10a8000010a9d, + 0x10ac000010ac8, + 0x10ac900010ae7, + 0x10b0000010b36, + 0x10b4000010b56, + 0x10b6000010b73, + 0x10b8000010b92, + 0x10c0000010c49, + 0x10cc000010cf3, + 0x10d0000010d28, + 0x10d3000010d3a, + 0x10e8000010eaa, + 0x10eab00010ead, + 0x10eb000010eb2, + 0x10efd00010f1d, + 0x10f2700010f28, + 0x10f3000010f51, + 0x10f7000010f86, + 0x10fb000010fc5, + 0x10fe000010ff7, + 0x1100000011047, + 0x1106600011076, + 0x1107f000110bb, + 0x110c2000110c3, + 0x110d0000110e9, + 0x110f0000110fa, + 0x1110000011135, + 0x1113600011140, + 0x1114400011148, + 0x1115000011174, + 0x1117600011177, + 0x11180000111c5, + 0x111c9000111cd, + 0x111ce000111db, + 0x111dc000111dd, + 0x1120000011212, + 0x1121300011238, + 0x1123e00011242, + 0x1128000011287, + 0x1128800011289, + 0x1128a0001128e, + 0x1128f0001129e, + 0x1129f000112a9, + 0x112b0000112eb, + 0x112f0000112fa, + 0x1130000011304, + 0x113050001130d, + 0x1130f00011311, + 0x1131300011329, + 0x1132a00011331, + 0x1133200011334, + 0x113350001133a, + 0x1133b00011345, + 0x1134700011349, + 0x1134b0001134e, + 0x1135000011351, + 0x1135700011358, + 0x1135d00011364, + 0x113660001136d, + 0x1137000011375, + 0x114000001144b, + 0x114500001145a, + 0x1145e00011462, + 0x11480000114c6, + 0x114c7000114c8, + 0x114d0000114da, + 0x11580000115b6, + 0x115b8000115c1, + 0x115d8000115de, + 0x1160000011641, + 0x1164400011645, + 0x116500001165a, + 0x11680000116b9, + 0x116c0000116ca, + 0x117000001171b, + 0x1171d0001172c, + 0x117300001173a, + 0x1174000011747, + 0x118000001183b, + 0x118c0000118ea, + 0x118ff00011907, + 0x119090001190a, + 0x1190c00011914, + 0x1191500011917, + 0x1191800011936, + 0x1193700011939, + 0x1193b00011944, + 0x119500001195a, + 0x119a0000119a8, + 0x119aa000119d8, + 0x119da000119e2, + 0x119e3000119e5, + 0x11a0000011a3f, + 0x11a4700011a48, + 0x11a5000011a9a, + 0x11a9d00011a9e, + 0x11ab000011af9, + 0x11c0000011c09, + 0x11c0a00011c37, + 0x11c3800011c41, + 0x11c5000011c5a, + 0x11c7200011c90, + 0x11c9200011ca8, + 0x11ca900011cb7, + 0x11d0000011d07, + 0x11d0800011d0a, + 0x11d0b00011d37, + 0x11d3a00011d3b, + 0x11d3c00011d3e, + 0x11d3f00011d48, + 0x11d5000011d5a, + 0x11d6000011d66, + 0x11d6700011d69, + 0x11d6a00011d8f, + 0x11d9000011d92, + 0x11d9300011d99, + 0x11da000011daa, + 0x11ee000011ef7, + 0x11f0000011f11, + 0x11f1200011f3b, + 0x11f3e00011f43, + 0x11f5000011f5a, + 0x11fb000011fb1, + 0x120000001239a, + 0x1248000012544, + 0x12f9000012ff1, + 0x1300000013430, + 0x1344000013456, + 0x1440000014647, + 0x1680000016a39, + 0x16a4000016a5f, + 0x16a6000016a6a, + 0x16a7000016abf, + 0x16ac000016aca, + 0x16ad000016aee, + 0x16af000016af5, + 0x16b0000016b37, + 0x16b4000016b44, + 0x16b5000016b5a, + 0x16b6300016b78, + 0x16b7d00016b90, + 0x16e6000016e80, + 0x16f0000016f4b, + 0x16f4f00016f88, + 0x16f8f00016fa0, + 0x16fe000016fe2, + 0x16fe300016fe5, + 0x16ff000016ff2, + 0x17000000187f8, + 0x1880000018cd6, + 0x18d0000018d09, + 0x1aff00001aff4, + 0x1aff50001affc, + 0x1affd0001afff, + 0x1b0000001b123, + 0x1b1320001b133, + 0x1b1500001b153, + 0x1b1550001b156, + 0x1b1640001b168, + 0x1b1700001b2fc, + 0x1bc000001bc6b, + 0x1bc700001bc7d, + 0x1bc800001bc89, + 0x1bc900001bc9a, + 0x1bc9d0001bc9f, + 0x1cf000001cf2e, + 0x1cf300001cf47, + 0x1da000001da37, + 0x1da3b0001da6d, + 0x1da750001da76, + 0x1da840001da85, + 0x1da9b0001daa0, + 0x1daa10001dab0, + 0x1df000001df1f, + 0x1df250001df2b, + 0x1e0000001e007, + 0x1e0080001e019, + 0x1e01b0001e022, + 0x1e0230001e025, + 0x1e0260001e02b, + 0x1e0300001e06e, + 0x1e08f0001e090, + 0x1e1000001e12d, + 0x1e1300001e13e, + 0x1e1400001e14a, + 0x1e14e0001e14f, + 0x1e2900001e2af, + 0x1e2c00001e2fa, + 0x1e4d00001e4fa, + 0x1e7e00001e7e7, + 0x1e7e80001e7ec, + 0x1e7ed0001e7ef, + 0x1e7f00001e7ff, + 0x1e8000001e8c5, + 0x1e8d00001e8d7, + 0x1e9220001e94c, + 0x1e9500001e95a, + 0x200000002a6e0, + 0x2a7000002b73a, + 0x2b7400002b81e, + 0x2b8200002cea2, + 0x2ceb00002ebe1, + 0x300000003134b, + 0x31350000323b0, + ), + 'CONTEXTJ': ( + 0x200c0000200e, + ), + 'CONTEXTO': ( + 0xb7000000b8, + 0x37500000376, + 0x5f3000005f5, + 0x6600000066a, + 0x6f0000006fa, + 0x30fb000030fc, + ), +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py new file mode 100644 index 00000000..6a43b047 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py @@ -0,0 +1,54 @@ +""" +Given a list of integers, made up of (hopefully) a small number of long runs +of consecutive integers, compute a representation of the form +((start1, end1), (start2, end2) ...). Then answer the question "was x present +in the original list?" in time O(log(# runs)). +""" + +import bisect +from typing import List, Tuple + +def intranges_from_list(list_: List[int]) -> Tuple[int, ...]: + """Represent a list of integers as a sequence of ranges: + ((start_0, end_0), (start_1, end_1), ...), such that the original + integers are exactly those x such that start_i <= x < end_i for some i. + + Ranges are encoded as single integers (start << 32 | end), not as tuples. + """ + + sorted_list = sorted(list_) + ranges = [] + last_write = -1 + for i in range(len(sorted_list)): + if i+1 < len(sorted_list): + if sorted_list[i] == sorted_list[i+1]-1: + continue + current_range = sorted_list[last_write+1:i+1] + ranges.append(_encode_range(current_range[0], current_range[-1] + 1)) + last_write = i + + return tuple(ranges) + +def _encode_range(start: int, end: int) -> int: + return (start << 32) | end + +def _decode_range(r: int) -> Tuple[int, int]: + return (r >> 32), (r & ((1 << 32) - 1)) + + +def intranges_contain(int_: int, ranges: Tuple[int, ...]) -> bool: + """Determine if `int_` falls into one of the ranges in `ranges`.""" + tuple_ = _encode_range(int_, 0) + pos = bisect.bisect_left(ranges, tuple_) + # we could be immediately ahead of a tuple (start, end) + # with start < int_ <= end + if pos > 0: + left, right = _decode_range(ranges[pos-1]) + if left <= int_ < right: + return True + # or we could be immediately behind a tuple (int_, end) + if pos < len(ranges): + left, _ = _decode_range(ranges[pos]) + if left == int_: + return True + return False diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py new file mode 100644 index 00000000..8501893b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py @@ -0,0 +1,2 @@ +__version__ = '3.4' + diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py new file mode 100644 index 00000000..186796c1 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py @@ -0,0 +1,8600 @@ +# This file is automatically generated by tools/idna-data +# vim: set fileencoding=utf-8 : + +from typing import List, Tuple, Union + + +"""IDNA Mapping Table from UTS46.""" + + +__version__ = '15.0.0' +def _seg_0() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x0, '3'), + (0x1, '3'), + (0x2, '3'), + (0x3, '3'), + (0x4, '3'), + (0x5, '3'), + (0x6, '3'), + (0x7, '3'), + (0x8, '3'), + (0x9, '3'), + (0xA, '3'), + (0xB, '3'), + (0xC, '3'), + (0xD, '3'), + (0xE, '3'), + (0xF, '3'), + (0x10, '3'), + (0x11, '3'), + (0x12, '3'), + (0x13, '3'), + (0x14, '3'), + (0x15, '3'), + (0x16, '3'), + (0x17, '3'), + (0x18, '3'), + (0x19, '3'), + (0x1A, '3'), + (0x1B, '3'), + (0x1C, '3'), + (0x1D, '3'), + (0x1E, '3'), + (0x1F, '3'), + (0x20, '3'), + (0x21, '3'), + (0x22, '3'), + (0x23, '3'), + (0x24, '3'), + (0x25, '3'), + (0x26, '3'), + (0x27, '3'), + (0x28, '3'), + (0x29, '3'), + (0x2A, '3'), + (0x2B, '3'), + (0x2C, '3'), + (0x2D, 'V'), + (0x2E, 'V'), + (0x2F, '3'), + (0x30, 'V'), + (0x31, 'V'), + (0x32, 'V'), + (0x33, 'V'), + (0x34, 'V'), + (0x35, 'V'), + (0x36, 'V'), + (0x37, 'V'), + (0x38, 'V'), + (0x39, 'V'), + (0x3A, '3'), + (0x3B, '3'), + (0x3C, '3'), + (0x3D, '3'), + (0x3E, '3'), + (0x3F, '3'), + (0x40, '3'), + (0x41, 'M', 'a'), + (0x42, 'M', 'b'), + (0x43, 'M', 'c'), + (0x44, 'M', 'd'), + (0x45, 'M', 'e'), + (0x46, 'M', 'f'), + (0x47, 'M', 'g'), + (0x48, 'M', 'h'), + (0x49, 'M', 'i'), + (0x4A, 'M', 'j'), + (0x4B, 'M', 'k'), + (0x4C, 'M', 'l'), + (0x4D, 'M', 'm'), + (0x4E, 'M', 'n'), + (0x4F, 'M', 'o'), + (0x50, 'M', 'p'), + (0x51, 'M', 'q'), + (0x52, 'M', 'r'), + (0x53, 'M', 's'), + (0x54, 'M', 't'), + (0x55, 'M', 'u'), + (0x56, 'M', 'v'), + (0x57, 'M', 'w'), + (0x58, 'M', 'x'), + (0x59, 'M', 'y'), + (0x5A, 'M', 'z'), + (0x5B, '3'), + (0x5C, '3'), + (0x5D, '3'), + (0x5E, '3'), + (0x5F, '3'), + (0x60, '3'), + (0x61, 'V'), + (0x62, 'V'), + (0x63, 'V'), + ] + +def _seg_1() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x64, 'V'), + (0x65, 'V'), + (0x66, 'V'), + (0x67, 'V'), + (0x68, 'V'), + (0x69, 'V'), + (0x6A, 'V'), + (0x6B, 'V'), + (0x6C, 'V'), + (0x6D, 'V'), + (0x6E, 'V'), + (0x6F, 'V'), + (0x70, 'V'), + (0x71, 'V'), + (0x72, 'V'), + (0x73, 'V'), + (0x74, 'V'), + (0x75, 'V'), + (0x76, 'V'), + (0x77, 'V'), + (0x78, 'V'), + (0x79, 'V'), + (0x7A, 'V'), + (0x7B, '3'), + (0x7C, '3'), + (0x7D, '3'), + (0x7E, '3'), + (0x7F, '3'), + (0x80, 'X'), + (0x81, 'X'), + (0x82, 'X'), + (0x83, 'X'), + (0x84, 'X'), + (0x85, 'X'), + (0x86, 'X'), + (0x87, 'X'), + (0x88, 'X'), + (0x89, 'X'), + (0x8A, 'X'), + (0x8B, 'X'), + (0x8C, 'X'), + (0x8D, 'X'), + (0x8E, 'X'), + (0x8F, 'X'), + (0x90, 'X'), + (0x91, 'X'), + (0x92, 'X'), + (0x93, 'X'), + (0x94, 'X'), + (0x95, 'X'), + (0x96, 'X'), + (0x97, 'X'), + (0x98, 'X'), + (0x99, 'X'), + (0x9A, 'X'), + (0x9B, 'X'), + (0x9C, 'X'), + (0x9D, 'X'), + (0x9E, 'X'), + (0x9F, 'X'), + (0xA0, '3', ' '), + (0xA1, 'V'), + (0xA2, 'V'), + (0xA3, 'V'), + (0xA4, 'V'), + (0xA5, 'V'), + (0xA6, 'V'), + (0xA7, 'V'), + (0xA8, '3', ' ̈'), + (0xA9, 'V'), + (0xAA, 'M', 'a'), + (0xAB, 'V'), + (0xAC, 'V'), + (0xAD, 'I'), + (0xAE, 'V'), + (0xAF, '3', ' ̄'), + (0xB0, 'V'), + (0xB1, 'V'), + (0xB2, 'M', '2'), + (0xB3, 'M', '3'), + (0xB4, '3', ' ́'), + (0xB5, 'M', 'μ'), + (0xB6, 'V'), + (0xB7, 'V'), + (0xB8, '3', ' ̧'), + (0xB9, 'M', '1'), + (0xBA, 'M', 'o'), + (0xBB, 'V'), + (0xBC, 'M', '1⁄4'), + (0xBD, 'M', '1⁄2'), + (0xBE, 'M', '3⁄4'), + (0xBF, 'V'), + (0xC0, 'M', 'à'), + (0xC1, 'M', 'á'), + (0xC2, 'M', 'â'), + (0xC3, 'M', 'ã'), + (0xC4, 'M', 'ä'), + (0xC5, 'M', 'å'), + (0xC6, 'M', 'æ'), + (0xC7, 'M', 'ç'), + ] + +def _seg_2() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC8, 'M', 'è'), + (0xC9, 'M', 'é'), + (0xCA, 'M', 'ê'), + (0xCB, 'M', 'ë'), + (0xCC, 'M', 'ì'), + (0xCD, 'M', 'í'), + (0xCE, 'M', 'î'), + (0xCF, 'M', 'ï'), + (0xD0, 'M', 'ð'), + (0xD1, 'M', 'ñ'), + (0xD2, 'M', 'ò'), + (0xD3, 'M', 'ó'), + (0xD4, 'M', 'ô'), + (0xD5, 'M', 'õ'), + (0xD6, 'M', 'ö'), + (0xD7, 'V'), + (0xD8, 'M', 'ø'), + (0xD9, 'M', 'ù'), + (0xDA, 'M', 'ú'), + (0xDB, 'M', 'û'), + (0xDC, 'M', 'ü'), + (0xDD, 'M', 'ý'), + (0xDE, 'M', 'þ'), + (0xDF, 'D', 'ss'), + (0xE0, 'V'), + (0xE1, 'V'), + (0xE2, 'V'), + (0xE3, 'V'), + (0xE4, 'V'), + (0xE5, 'V'), + (0xE6, 'V'), + (0xE7, 'V'), + (0xE8, 'V'), + (0xE9, 'V'), + (0xEA, 'V'), + (0xEB, 'V'), + (0xEC, 'V'), + (0xED, 'V'), + (0xEE, 'V'), + (0xEF, 'V'), + (0xF0, 'V'), + (0xF1, 'V'), + (0xF2, 'V'), + (0xF3, 'V'), + (0xF4, 'V'), + (0xF5, 'V'), + (0xF6, 'V'), + (0xF7, 'V'), + (0xF8, 'V'), + (0xF9, 'V'), + (0xFA, 'V'), + (0xFB, 'V'), + (0xFC, 'V'), + (0xFD, 'V'), + (0xFE, 'V'), + (0xFF, 'V'), + (0x100, 'M', 'ā'), + (0x101, 'V'), + (0x102, 'M', 'ă'), + (0x103, 'V'), + (0x104, 'M', 'ą'), + (0x105, 'V'), + (0x106, 'M', 'ć'), + (0x107, 'V'), + (0x108, 'M', 'ĉ'), + (0x109, 'V'), + (0x10A, 'M', 'ċ'), + (0x10B, 'V'), + (0x10C, 'M', 'č'), + (0x10D, 'V'), + (0x10E, 'M', 'ď'), + (0x10F, 'V'), + (0x110, 'M', 'đ'), + (0x111, 'V'), + (0x112, 'M', 'ē'), + (0x113, 'V'), + (0x114, 'M', 'ĕ'), + (0x115, 'V'), + (0x116, 'M', 'ė'), + (0x117, 'V'), + (0x118, 'M', 'ę'), + (0x119, 'V'), + (0x11A, 'M', 'ě'), + (0x11B, 'V'), + (0x11C, 'M', 'ĝ'), + (0x11D, 'V'), + (0x11E, 'M', 'ğ'), + (0x11F, 'V'), + (0x120, 'M', 'ġ'), + (0x121, 'V'), + (0x122, 'M', 'ģ'), + (0x123, 'V'), + (0x124, 'M', 'ĥ'), + (0x125, 'V'), + (0x126, 'M', 'ħ'), + (0x127, 'V'), + (0x128, 'M', 'ĩ'), + (0x129, 'V'), + (0x12A, 'M', 'ī'), + (0x12B, 'V'), + ] + +def _seg_3() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x12C, 'M', 'ĭ'), + (0x12D, 'V'), + (0x12E, 'M', 'į'), + (0x12F, 'V'), + (0x130, 'M', 'i̇'), + (0x131, 'V'), + (0x132, 'M', 'ij'), + (0x134, 'M', 'ĵ'), + (0x135, 'V'), + (0x136, 'M', 'ķ'), + (0x137, 'V'), + (0x139, 'M', 'ĺ'), + (0x13A, 'V'), + (0x13B, 'M', 'ļ'), + (0x13C, 'V'), + (0x13D, 'M', 'ľ'), + (0x13E, 'V'), + (0x13F, 'M', 'l·'), + (0x141, 'M', 'ł'), + (0x142, 'V'), + (0x143, 'M', 'ń'), + (0x144, 'V'), + (0x145, 'M', 'ņ'), + (0x146, 'V'), + (0x147, 'M', 'ň'), + (0x148, 'V'), + (0x149, 'M', 'ʼn'), + (0x14A, 'M', 'ŋ'), + (0x14B, 'V'), + (0x14C, 'M', 'ō'), + (0x14D, 'V'), + (0x14E, 'M', 'ŏ'), + (0x14F, 'V'), + (0x150, 'M', 'ő'), + (0x151, 'V'), + (0x152, 'M', 'œ'), + (0x153, 'V'), + (0x154, 'M', 'ŕ'), + (0x155, 'V'), + (0x156, 'M', 'ŗ'), + (0x157, 'V'), + (0x158, 'M', 'ř'), + (0x159, 'V'), + (0x15A, 'M', 'ś'), + (0x15B, 'V'), + (0x15C, 'M', 'ŝ'), + (0x15D, 'V'), + (0x15E, 'M', 'ş'), + (0x15F, 'V'), + (0x160, 'M', 'š'), + (0x161, 'V'), + (0x162, 'M', 'ţ'), + (0x163, 'V'), + (0x164, 'M', 'ť'), + (0x165, 'V'), + (0x166, 'M', 'ŧ'), + (0x167, 'V'), + (0x168, 'M', 'ũ'), + (0x169, 'V'), + (0x16A, 'M', 'ū'), + (0x16B, 'V'), + (0x16C, 'M', 'ŭ'), + (0x16D, 'V'), + (0x16E, 'M', 'ů'), + (0x16F, 'V'), + (0x170, 'M', 'ű'), + (0x171, 'V'), + (0x172, 'M', 'ų'), + (0x173, 'V'), + (0x174, 'M', 'ŵ'), + (0x175, 'V'), + (0x176, 'M', 'ŷ'), + (0x177, 'V'), + (0x178, 'M', 'ÿ'), + (0x179, 'M', 'ź'), + (0x17A, 'V'), + (0x17B, 'M', 'ż'), + (0x17C, 'V'), + (0x17D, 'M', 'ž'), + (0x17E, 'V'), + (0x17F, 'M', 's'), + (0x180, 'V'), + (0x181, 'M', 'ɓ'), + (0x182, 'M', 'ƃ'), + (0x183, 'V'), + (0x184, 'M', 'ƅ'), + (0x185, 'V'), + (0x186, 'M', 'ɔ'), + (0x187, 'M', 'ƈ'), + (0x188, 'V'), + (0x189, 'M', 'ɖ'), + (0x18A, 'M', 'ɗ'), + (0x18B, 'M', 'ƌ'), + (0x18C, 'V'), + (0x18E, 'M', 'ǝ'), + (0x18F, 'M', 'ə'), + (0x190, 'M', 'ɛ'), + (0x191, 'M', 'ƒ'), + (0x192, 'V'), + (0x193, 'M', 'ɠ'), + ] + +def _seg_4() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x194, 'M', 'ɣ'), + (0x195, 'V'), + (0x196, 'M', 'ɩ'), + (0x197, 'M', 'ɨ'), + (0x198, 'M', 'ƙ'), + (0x199, 'V'), + (0x19C, 'M', 'ɯ'), + (0x19D, 'M', 'ɲ'), + (0x19E, 'V'), + (0x19F, 'M', 'ɵ'), + (0x1A0, 'M', 'ơ'), + (0x1A1, 'V'), + (0x1A2, 'M', 'ƣ'), + (0x1A3, 'V'), + (0x1A4, 'M', 'ƥ'), + (0x1A5, 'V'), + (0x1A6, 'M', 'ʀ'), + (0x1A7, 'M', 'ƨ'), + (0x1A8, 'V'), + (0x1A9, 'M', 'ʃ'), + (0x1AA, 'V'), + (0x1AC, 'M', 'ƭ'), + (0x1AD, 'V'), + (0x1AE, 'M', 'ʈ'), + (0x1AF, 'M', 'ư'), + (0x1B0, 'V'), + (0x1B1, 'M', 'ʊ'), + (0x1B2, 'M', 'ʋ'), + (0x1B3, 'M', 'ƴ'), + (0x1B4, 'V'), + (0x1B5, 'M', 'ƶ'), + (0x1B6, 'V'), + (0x1B7, 'M', 'ʒ'), + (0x1B8, 'M', 'ƹ'), + (0x1B9, 'V'), + (0x1BC, 'M', 'ƽ'), + (0x1BD, 'V'), + (0x1C4, 'M', 'dž'), + (0x1C7, 'M', 'lj'), + (0x1CA, 'M', 'nj'), + (0x1CD, 'M', 'ǎ'), + (0x1CE, 'V'), + (0x1CF, 'M', 'ǐ'), + (0x1D0, 'V'), + (0x1D1, 'M', 'ǒ'), + (0x1D2, 'V'), + (0x1D3, 'M', 'ǔ'), + (0x1D4, 'V'), + (0x1D5, 'M', 'ǖ'), + (0x1D6, 'V'), + (0x1D7, 'M', 'ǘ'), + (0x1D8, 'V'), + (0x1D9, 'M', 'ǚ'), + (0x1DA, 'V'), + (0x1DB, 'M', 'ǜ'), + (0x1DC, 'V'), + (0x1DE, 'M', 'ǟ'), + (0x1DF, 'V'), + (0x1E0, 'M', 'ǡ'), + (0x1E1, 'V'), + (0x1E2, 'M', 'ǣ'), + (0x1E3, 'V'), + (0x1E4, 'M', 'ǥ'), + (0x1E5, 'V'), + (0x1E6, 'M', 'ǧ'), + (0x1E7, 'V'), + (0x1E8, 'M', 'ǩ'), + (0x1E9, 'V'), + (0x1EA, 'M', 'ǫ'), + (0x1EB, 'V'), + (0x1EC, 'M', 'ǭ'), + (0x1ED, 'V'), + (0x1EE, 'M', 'ǯ'), + (0x1EF, 'V'), + (0x1F1, 'M', 'dz'), + (0x1F4, 'M', 'ǵ'), + (0x1F5, 'V'), + (0x1F6, 'M', 'ƕ'), + (0x1F7, 'M', 'ƿ'), + (0x1F8, 'M', 'ǹ'), + (0x1F9, 'V'), + (0x1FA, 'M', 'ǻ'), + (0x1FB, 'V'), + (0x1FC, 'M', 'ǽ'), + (0x1FD, 'V'), + (0x1FE, 'M', 'ǿ'), + (0x1FF, 'V'), + (0x200, 'M', 'ȁ'), + (0x201, 'V'), + (0x202, 'M', 'ȃ'), + (0x203, 'V'), + (0x204, 'M', 'ȅ'), + (0x205, 'V'), + (0x206, 'M', 'ȇ'), + (0x207, 'V'), + (0x208, 'M', 'ȉ'), + (0x209, 'V'), + (0x20A, 'M', 'ȋ'), + (0x20B, 'V'), + (0x20C, 'M', 'ȍ'), + ] + +def _seg_5() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x20D, 'V'), + (0x20E, 'M', 'ȏ'), + (0x20F, 'V'), + (0x210, 'M', 'ȑ'), + (0x211, 'V'), + (0x212, 'M', 'ȓ'), + (0x213, 'V'), + (0x214, 'M', 'ȕ'), + (0x215, 'V'), + (0x216, 'M', 'ȗ'), + (0x217, 'V'), + (0x218, 'M', 'ș'), + (0x219, 'V'), + (0x21A, 'M', 'ț'), + (0x21B, 'V'), + (0x21C, 'M', 'ȝ'), + (0x21D, 'V'), + (0x21E, 'M', 'ȟ'), + (0x21F, 'V'), + (0x220, 'M', 'ƞ'), + (0x221, 'V'), + (0x222, 'M', 'ȣ'), + (0x223, 'V'), + (0x224, 'M', 'ȥ'), + (0x225, 'V'), + (0x226, 'M', 'ȧ'), + (0x227, 'V'), + (0x228, 'M', 'ȩ'), + (0x229, 'V'), + (0x22A, 'M', 'ȫ'), + (0x22B, 'V'), + (0x22C, 'M', 'ȭ'), + (0x22D, 'V'), + (0x22E, 'M', 'ȯ'), + (0x22F, 'V'), + (0x230, 'M', 'ȱ'), + (0x231, 'V'), + (0x232, 'M', 'ȳ'), + (0x233, 'V'), + (0x23A, 'M', 'ⱥ'), + (0x23B, 'M', 'ȼ'), + (0x23C, 'V'), + (0x23D, 'M', 'ƚ'), + (0x23E, 'M', 'ⱦ'), + (0x23F, 'V'), + (0x241, 'M', 'ɂ'), + (0x242, 'V'), + (0x243, 'M', 'ƀ'), + (0x244, 'M', 'ʉ'), + (0x245, 'M', 'ʌ'), + (0x246, 'M', 'ɇ'), + (0x247, 'V'), + (0x248, 'M', 'ɉ'), + (0x249, 'V'), + (0x24A, 'M', 'ɋ'), + (0x24B, 'V'), + (0x24C, 'M', 'ɍ'), + (0x24D, 'V'), + (0x24E, 'M', 'ɏ'), + (0x24F, 'V'), + (0x2B0, 'M', 'h'), + (0x2B1, 'M', 'ɦ'), + (0x2B2, 'M', 'j'), + (0x2B3, 'M', 'r'), + (0x2B4, 'M', 'ɹ'), + (0x2B5, 'M', 'ɻ'), + (0x2B6, 'M', 'ʁ'), + (0x2B7, 'M', 'w'), + (0x2B8, 'M', 'y'), + (0x2B9, 'V'), + (0x2D8, '3', ' ̆'), + (0x2D9, '3', ' ̇'), + (0x2DA, '3', ' ̊'), + (0x2DB, '3', ' ̨'), + (0x2DC, '3', ' ̃'), + (0x2DD, '3', ' ̋'), + (0x2DE, 'V'), + (0x2E0, 'M', 'ɣ'), + (0x2E1, 'M', 'l'), + (0x2E2, 'M', 's'), + (0x2E3, 'M', 'x'), + (0x2E4, 'M', 'ʕ'), + (0x2E5, 'V'), + (0x340, 'M', '̀'), + (0x341, 'M', '́'), + (0x342, 'V'), + (0x343, 'M', '̓'), + (0x344, 'M', '̈́'), + (0x345, 'M', 'ι'), + (0x346, 'V'), + (0x34F, 'I'), + (0x350, 'V'), + (0x370, 'M', 'ͱ'), + (0x371, 'V'), + (0x372, 'M', 'ͳ'), + (0x373, 'V'), + (0x374, 'M', 'ʹ'), + (0x375, 'V'), + (0x376, 'M', 'ͷ'), + (0x377, 'V'), + ] + +def _seg_6() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x378, 'X'), + (0x37A, '3', ' ι'), + (0x37B, 'V'), + (0x37E, '3', ';'), + (0x37F, 'M', 'ϳ'), + (0x380, 'X'), + (0x384, '3', ' ́'), + (0x385, '3', ' ̈́'), + (0x386, 'M', 'ά'), + (0x387, 'M', '·'), + (0x388, 'M', 'έ'), + (0x389, 'M', 'ή'), + (0x38A, 'M', 'ί'), + (0x38B, 'X'), + (0x38C, 'M', 'ό'), + (0x38D, 'X'), + (0x38E, 'M', 'ύ'), + (0x38F, 'M', 'ώ'), + (0x390, 'V'), + (0x391, 'M', 'α'), + (0x392, 'M', 'β'), + (0x393, 'M', 'γ'), + (0x394, 'M', 'δ'), + (0x395, 'M', 'ε'), + (0x396, 'M', 'ζ'), + (0x397, 'M', 'η'), + (0x398, 'M', 'θ'), + (0x399, 'M', 'ι'), + (0x39A, 'M', 'κ'), + (0x39B, 'M', 'λ'), + (0x39C, 'M', 'μ'), + (0x39D, 'M', 'ν'), + (0x39E, 'M', 'ξ'), + (0x39F, 'M', 'ο'), + (0x3A0, 'M', 'π'), + (0x3A1, 'M', 'ρ'), + (0x3A2, 'X'), + (0x3A3, 'M', 'σ'), + (0x3A4, 'M', 'τ'), + (0x3A5, 'M', 'υ'), + (0x3A6, 'M', 'φ'), + (0x3A7, 'M', 'χ'), + (0x3A8, 'M', 'ψ'), + (0x3A9, 'M', 'ω'), + (0x3AA, 'M', 'ϊ'), + (0x3AB, 'M', 'ϋ'), + (0x3AC, 'V'), + (0x3C2, 'D', 'σ'), + (0x3C3, 'V'), + (0x3CF, 'M', 'ϗ'), + (0x3D0, 'M', 'β'), + (0x3D1, 'M', 'θ'), + (0x3D2, 'M', 'υ'), + (0x3D3, 'M', 'ύ'), + (0x3D4, 'M', 'ϋ'), + (0x3D5, 'M', 'φ'), + (0x3D6, 'M', 'π'), + (0x3D7, 'V'), + (0x3D8, 'M', 'ϙ'), + (0x3D9, 'V'), + (0x3DA, 'M', 'ϛ'), + (0x3DB, 'V'), + (0x3DC, 'M', 'ϝ'), + (0x3DD, 'V'), + (0x3DE, 'M', 'ϟ'), + (0x3DF, 'V'), + (0x3E0, 'M', 'ϡ'), + (0x3E1, 'V'), + (0x3E2, 'M', 'ϣ'), + (0x3E3, 'V'), + (0x3E4, 'M', 'ϥ'), + (0x3E5, 'V'), + (0x3E6, 'M', 'ϧ'), + (0x3E7, 'V'), + (0x3E8, 'M', 'ϩ'), + (0x3E9, 'V'), + (0x3EA, 'M', 'ϫ'), + (0x3EB, 'V'), + (0x3EC, 'M', 'ϭ'), + (0x3ED, 'V'), + (0x3EE, 'M', 'ϯ'), + (0x3EF, 'V'), + (0x3F0, 'M', 'κ'), + (0x3F1, 'M', 'ρ'), + (0x3F2, 'M', 'σ'), + (0x3F3, 'V'), + (0x3F4, 'M', 'θ'), + (0x3F5, 'M', 'ε'), + (0x3F6, 'V'), + (0x3F7, 'M', 'ϸ'), + (0x3F8, 'V'), + (0x3F9, 'M', 'σ'), + (0x3FA, 'M', 'ϻ'), + (0x3FB, 'V'), + (0x3FD, 'M', 'ͻ'), + (0x3FE, 'M', 'ͼ'), + (0x3FF, 'M', 'ͽ'), + (0x400, 'M', 'ѐ'), + (0x401, 'M', 'ё'), + (0x402, 'M', 'ђ'), + ] + +def _seg_7() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x403, 'M', 'ѓ'), + (0x404, 'M', 'є'), + (0x405, 'M', 'ѕ'), + (0x406, 'M', 'і'), + (0x407, 'M', 'ї'), + (0x408, 'M', 'ј'), + (0x409, 'M', 'љ'), + (0x40A, 'M', 'њ'), + (0x40B, 'M', 'ћ'), + (0x40C, 'M', 'ќ'), + (0x40D, 'M', 'ѝ'), + (0x40E, 'M', 'ў'), + (0x40F, 'M', 'џ'), + (0x410, 'M', 'а'), + (0x411, 'M', 'б'), + (0x412, 'M', 'в'), + (0x413, 'M', 'г'), + (0x414, 'M', 'д'), + (0x415, 'M', 'е'), + (0x416, 'M', 'ж'), + (0x417, 'M', 'з'), + (0x418, 'M', 'и'), + (0x419, 'M', 'й'), + (0x41A, 'M', 'к'), + (0x41B, 'M', 'л'), + (0x41C, 'M', 'м'), + (0x41D, 'M', 'н'), + (0x41E, 'M', 'о'), + (0x41F, 'M', 'п'), + (0x420, 'M', 'р'), + (0x421, 'M', 'с'), + (0x422, 'M', 'т'), + (0x423, 'M', 'у'), + (0x424, 'M', 'ф'), + (0x425, 'M', 'х'), + (0x426, 'M', 'ц'), + (0x427, 'M', 'ч'), + (0x428, 'M', 'ш'), + (0x429, 'M', 'щ'), + (0x42A, 'M', 'ъ'), + (0x42B, 'M', 'ы'), + (0x42C, 'M', 'ь'), + (0x42D, 'M', 'э'), + (0x42E, 'M', 'ю'), + (0x42F, 'M', 'я'), + (0x430, 'V'), + (0x460, 'M', 'ѡ'), + (0x461, 'V'), + (0x462, 'M', 'ѣ'), + (0x463, 'V'), + (0x464, 'M', 'ѥ'), + (0x465, 'V'), + (0x466, 'M', 'ѧ'), + (0x467, 'V'), + (0x468, 'M', 'ѩ'), + (0x469, 'V'), + (0x46A, 'M', 'ѫ'), + (0x46B, 'V'), + (0x46C, 'M', 'ѭ'), + (0x46D, 'V'), + (0x46E, 'M', 'ѯ'), + (0x46F, 'V'), + (0x470, 'M', 'ѱ'), + (0x471, 'V'), + (0x472, 'M', 'ѳ'), + (0x473, 'V'), + (0x474, 'M', 'ѵ'), + (0x475, 'V'), + (0x476, 'M', 'ѷ'), + (0x477, 'V'), + (0x478, 'M', 'ѹ'), + (0x479, 'V'), + (0x47A, 'M', 'ѻ'), + (0x47B, 'V'), + (0x47C, 'M', 'ѽ'), + (0x47D, 'V'), + (0x47E, 'M', 'ѿ'), + (0x47F, 'V'), + (0x480, 'M', 'ҁ'), + (0x481, 'V'), + (0x48A, 'M', 'ҋ'), + (0x48B, 'V'), + (0x48C, 'M', 'ҍ'), + (0x48D, 'V'), + (0x48E, 'M', 'ҏ'), + (0x48F, 'V'), + (0x490, 'M', 'ґ'), + (0x491, 'V'), + (0x492, 'M', 'ғ'), + (0x493, 'V'), + (0x494, 'M', 'ҕ'), + (0x495, 'V'), + (0x496, 'M', 'җ'), + (0x497, 'V'), + (0x498, 'M', 'ҙ'), + (0x499, 'V'), + (0x49A, 'M', 'қ'), + (0x49B, 'V'), + (0x49C, 'M', 'ҝ'), + (0x49D, 'V'), + ] + +def _seg_8() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x49E, 'M', 'ҟ'), + (0x49F, 'V'), + (0x4A0, 'M', 'ҡ'), + (0x4A1, 'V'), + (0x4A2, 'M', 'ң'), + (0x4A3, 'V'), + (0x4A4, 'M', 'ҥ'), + (0x4A5, 'V'), + (0x4A6, 'M', 'ҧ'), + (0x4A7, 'V'), + (0x4A8, 'M', 'ҩ'), + (0x4A9, 'V'), + (0x4AA, 'M', 'ҫ'), + (0x4AB, 'V'), + (0x4AC, 'M', 'ҭ'), + (0x4AD, 'V'), + (0x4AE, 'M', 'ү'), + (0x4AF, 'V'), + (0x4B0, 'M', 'ұ'), + (0x4B1, 'V'), + (0x4B2, 'M', 'ҳ'), + (0x4B3, 'V'), + (0x4B4, 'M', 'ҵ'), + (0x4B5, 'V'), + (0x4B6, 'M', 'ҷ'), + (0x4B7, 'V'), + (0x4B8, 'M', 'ҹ'), + (0x4B9, 'V'), + (0x4BA, 'M', 'һ'), + (0x4BB, 'V'), + (0x4BC, 'M', 'ҽ'), + (0x4BD, 'V'), + (0x4BE, 'M', 'ҿ'), + (0x4BF, 'V'), + (0x4C0, 'X'), + (0x4C1, 'M', 'ӂ'), + (0x4C2, 'V'), + (0x4C3, 'M', 'ӄ'), + (0x4C4, 'V'), + (0x4C5, 'M', 'ӆ'), + (0x4C6, 'V'), + (0x4C7, 'M', 'ӈ'), + (0x4C8, 'V'), + (0x4C9, 'M', 'ӊ'), + (0x4CA, 'V'), + (0x4CB, 'M', 'ӌ'), + (0x4CC, 'V'), + (0x4CD, 'M', 'ӎ'), + (0x4CE, 'V'), + (0x4D0, 'M', 'ӑ'), + (0x4D1, 'V'), + (0x4D2, 'M', 'ӓ'), + (0x4D3, 'V'), + (0x4D4, 'M', 'ӕ'), + (0x4D5, 'V'), + (0x4D6, 'M', 'ӗ'), + (0x4D7, 'V'), + (0x4D8, 'M', 'ә'), + (0x4D9, 'V'), + (0x4DA, 'M', 'ӛ'), + (0x4DB, 'V'), + (0x4DC, 'M', 'ӝ'), + (0x4DD, 'V'), + (0x4DE, 'M', 'ӟ'), + (0x4DF, 'V'), + (0x4E0, 'M', 'ӡ'), + (0x4E1, 'V'), + (0x4E2, 'M', 'ӣ'), + (0x4E3, 'V'), + (0x4E4, 'M', 'ӥ'), + (0x4E5, 'V'), + (0x4E6, 'M', 'ӧ'), + (0x4E7, 'V'), + (0x4E8, 'M', 'ө'), + (0x4E9, 'V'), + (0x4EA, 'M', 'ӫ'), + (0x4EB, 'V'), + (0x4EC, 'M', 'ӭ'), + (0x4ED, 'V'), + (0x4EE, 'M', 'ӯ'), + (0x4EF, 'V'), + (0x4F0, 'M', 'ӱ'), + (0x4F1, 'V'), + (0x4F2, 'M', 'ӳ'), + (0x4F3, 'V'), + (0x4F4, 'M', 'ӵ'), + (0x4F5, 'V'), + (0x4F6, 'M', 'ӷ'), + (0x4F7, 'V'), + (0x4F8, 'M', 'ӹ'), + (0x4F9, 'V'), + (0x4FA, 'M', 'ӻ'), + (0x4FB, 'V'), + (0x4FC, 'M', 'ӽ'), + (0x4FD, 'V'), + (0x4FE, 'M', 'ӿ'), + (0x4FF, 'V'), + (0x500, 'M', 'ԁ'), + (0x501, 'V'), + (0x502, 'M', 'ԃ'), + ] + +def _seg_9() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x503, 'V'), + (0x504, 'M', 'ԅ'), + (0x505, 'V'), + (0x506, 'M', 'ԇ'), + (0x507, 'V'), + (0x508, 'M', 'ԉ'), + (0x509, 'V'), + (0x50A, 'M', 'ԋ'), + (0x50B, 'V'), + (0x50C, 'M', 'ԍ'), + (0x50D, 'V'), + (0x50E, 'M', 'ԏ'), + (0x50F, 'V'), + (0x510, 'M', 'ԑ'), + (0x511, 'V'), + (0x512, 'M', 'ԓ'), + (0x513, 'V'), + (0x514, 'M', 'ԕ'), + (0x515, 'V'), + (0x516, 'M', 'ԗ'), + (0x517, 'V'), + (0x518, 'M', 'ԙ'), + (0x519, 'V'), + (0x51A, 'M', 'ԛ'), + (0x51B, 'V'), + (0x51C, 'M', 'ԝ'), + (0x51D, 'V'), + (0x51E, 'M', 'ԟ'), + (0x51F, 'V'), + (0x520, 'M', 'ԡ'), + (0x521, 'V'), + (0x522, 'M', 'ԣ'), + (0x523, 'V'), + (0x524, 'M', 'ԥ'), + (0x525, 'V'), + (0x526, 'M', 'ԧ'), + (0x527, 'V'), + (0x528, 'M', 'ԩ'), + (0x529, 'V'), + (0x52A, 'M', 'ԫ'), + (0x52B, 'V'), + (0x52C, 'M', 'ԭ'), + (0x52D, 'V'), + (0x52E, 'M', 'ԯ'), + (0x52F, 'V'), + (0x530, 'X'), + (0x531, 'M', 'ա'), + (0x532, 'M', 'բ'), + (0x533, 'M', 'գ'), + (0x534, 'M', 'դ'), + (0x535, 'M', 'ե'), + (0x536, 'M', 'զ'), + (0x537, 'M', 'է'), + (0x538, 'M', 'ը'), + (0x539, 'M', 'թ'), + (0x53A, 'M', 'ժ'), + (0x53B, 'M', 'ի'), + (0x53C, 'M', 'լ'), + (0x53D, 'M', 'խ'), + (0x53E, 'M', 'ծ'), + (0x53F, 'M', 'կ'), + (0x540, 'M', 'հ'), + (0x541, 'M', 'ձ'), + (0x542, 'M', 'ղ'), + (0x543, 'M', 'ճ'), + (0x544, 'M', 'մ'), + (0x545, 'M', 'յ'), + (0x546, 'M', 'ն'), + (0x547, 'M', 'շ'), + (0x548, 'M', 'ո'), + (0x549, 'M', 'չ'), + (0x54A, 'M', 'պ'), + (0x54B, 'M', 'ջ'), + (0x54C, 'M', 'ռ'), + (0x54D, 'M', 'ս'), + (0x54E, 'M', 'վ'), + (0x54F, 'M', 'տ'), + (0x550, 'M', 'ր'), + (0x551, 'M', 'ց'), + (0x552, 'M', 'ւ'), + (0x553, 'M', 'փ'), + (0x554, 'M', 'ք'), + (0x555, 'M', 'օ'), + (0x556, 'M', 'ֆ'), + (0x557, 'X'), + (0x559, 'V'), + (0x587, 'M', 'եւ'), + (0x588, 'V'), + (0x58B, 'X'), + (0x58D, 'V'), + (0x590, 'X'), + (0x591, 'V'), + (0x5C8, 'X'), + (0x5D0, 'V'), + (0x5EB, 'X'), + (0x5EF, 'V'), + (0x5F5, 'X'), + (0x606, 'V'), + (0x61C, 'X'), + (0x61D, 'V'), + ] + +def _seg_10() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x675, 'M', 'اٴ'), + (0x676, 'M', 'وٴ'), + (0x677, 'M', 'ۇٴ'), + (0x678, 'M', 'يٴ'), + (0x679, 'V'), + (0x6DD, 'X'), + (0x6DE, 'V'), + (0x70E, 'X'), + (0x710, 'V'), + (0x74B, 'X'), + (0x74D, 'V'), + (0x7B2, 'X'), + (0x7C0, 'V'), + (0x7FB, 'X'), + (0x7FD, 'V'), + (0x82E, 'X'), + (0x830, 'V'), + (0x83F, 'X'), + (0x840, 'V'), + (0x85C, 'X'), + (0x85E, 'V'), + (0x85F, 'X'), + (0x860, 'V'), + (0x86B, 'X'), + (0x870, 'V'), + (0x88F, 'X'), + (0x898, 'V'), + (0x8E2, 'X'), + (0x8E3, 'V'), + (0x958, 'M', 'क़'), + (0x959, 'M', 'ख़'), + (0x95A, 'M', 'ग़'), + (0x95B, 'M', 'ज़'), + (0x95C, 'M', 'ड़'), + (0x95D, 'M', 'ढ़'), + (0x95E, 'M', 'फ़'), + (0x95F, 'M', 'य़'), + (0x960, 'V'), + (0x984, 'X'), + (0x985, 'V'), + (0x98D, 'X'), + (0x98F, 'V'), + (0x991, 'X'), + (0x993, 'V'), + (0x9A9, 'X'), + (0x9AA, 'V'), + (0x9B1, 'X'), + (0x9B2, 'V'), + (0x9B3, 'X'), + (0x9B6, 'V'), + (0x9BA, 'X'), + (0x9BC, 'V'), + (0x9C5, 'X'), + (0x9C7, 'V'), + (0x9C9, 'X'), + (0x9CB, 'V'), + (0x9CF, 'X'), + (0x9D7, 'V'), + (0x9D8, 'X'), + (0x9DC, 'M', 'ড়'), + (0x9DD, 'M', 'ঢ়'), + (0x9DE, 'X'), + (0x9DF, 'M', 'য়'), + (0x9E0, 'V'), + (0x9E4, 'X'), + (0x9E6, 'V'), + (0x9FF, 'X'), + (0xA01, 'V'), + (0xA04, 'X'), + (0xA05, 'V'), + (0xA0B, 'X'), + (0xA0F, 'V'), + (0xA11, 'X'), + (0xA13, 'V'), + (0xA29, 'X'), + (0xA2A, 'V'), + (0xA31, 'X'), + (0xA32, 'V'), + (0xA33, 'M', 'ਲ਼'), + (0xA34, 'X'), + (0xA35, 'V'), + (0xA36, 'M', 'ਸ਼'), + (0xA37, 'X'), + (0xA38, 'V'), + (0xA3A, 'X'), + (0xA3C, 'V'), + (0xA3D, 'X'), + (0xA3E, 'V'), + (0xA43, 'X'), + (0xA47, 'V'), + (0xA49, 'X'), + (0xA4B, 'V'), + (0xA4E, 'X'), + (0xA51, 'V'), + (0xA52, 'X'), + (0xA59, 'M', 'ਖ਼'), + (0xA5A, 'M', 'ਗ਼'), + (0xA5B, 'M', 'ਜ਼'), + (0xA5C, 'V'), + (0xA5D, 'X'), + ] + +def _seg_11() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA5E, 'M', 'ਫ਼'), + (0xA5F, 'X'), + (0xA66, 'V'), + (0xA77, 'X'), + (0xA81, 'V'), + (0xA84, 'X'), + (0xA85, 'V'), + (0xA8E, 'X'), + (0xA8F, 'V'), + (0xA92, 'X'), + (0xA93, 'V'), + (0xAA9, 'X'), + (0xAAA, 'V'), + (0xAB1, 'X'), + (0xAB2, 'V'), + (0xAB4, 'X'), + (0xAB5, 'V'), + (0xABA, 'X'), + (0xABC, 'V'), + (0xAC6, 'X'), + (0xAC7, 'V'), + (0xACA, 'X'), + (0xACB, 'V'), + (0xACE, 'X'), + (0xAD0, 'V'), + (0xAD1, 'X'), + (0xAE0, 'V'), + (0xAE4, 'X'), + (0xAE6, 'V'), + (0xAF2, 'X'), + (0xAF9, 'V'), + (0xB00, 'X'), + (0xB01, 'V'), + (0xB04, 'X'), + (0xB05, 'V'), + (0xB0D, 'X'), + (0xB0F, 'V'), + (0xB11, 'X'), + (0xB13, 'V'), + (0xB29, 'X'), + (0xB2A, 'V'), + (0xB31, 'X'), + (0xB32, 'V'), + (0xB34, 'X'), + (0xB35, 'V'), + (0xB3A, 'X'), + (0xB3C, 'V'), + (0xB45, 'X'), + (0xB47, 'V'), + (0xB49, 'X'), + (0xB4B, 'V'), + (0xB4E, 'X'), + (0xB55, 'V'), + (0xB58, 'X'), + (0xB5C, 'M', 'ଡ଼'), + (0xB5D, 'M', 'ଢ଼'), + (0xB5E, 'X'), + (0xB5F, 'V'), + (0xB64, 'X'), + (0xB66, 'V'), + (0xB78, 'X'), + (0xB82, 'V'), + (0xB84, 'X'), + (0xB85, 'V'), + (0xB8B, 'X'), + (0xB8E, 'V'), + (0xB91, 'X'), + (0xB92, 'V'), + (0xB96, 'X'), + (0xB99, 'V'), + (0xB9B, 'X'), + (0xB9C, 'V'), + (0xB9D, 'X'), + (0xB9E, 'V'), + (0xBA0, 'X'), + (0xBA3, 'V'), + (0xBA5, 'X'), + (0xBA8, 'V'), + (0xBAB, 'X'), + (0xBAE, 'V'), + (0xBBA, 'X'), + (0xBBE, 'V'), + (0xBC3, 'X'), + (0xBC6, 'V'), + (0xBC9, 'X'), + (0xBCA, 'V'), + (0xBCE, 'X'), + (0xBD0, 'V'), + (0xBD1, 'X'), + (0xBD7, 'V'), + (0xBD8, 'X'), + (0xBE6, 'V'), + (0xBFB, 'X'), + (0xC00, 'V'), + (0xC0D, 'X'), + (0xC0E, 'V'), + (0xC11, 'X'), + (0xC12, 'V'), + (0xC29, 'X'), + (0xC2A, 'V'), + ] + +def _seg_12() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC3A, 'X'), + (0xC3C, 'V'), + (0xC45, 'X'), + (0xC46, 'V'), + (0xC49, 'X'), + (0xC4A, 'V'), + (0xC4E, 'X'), + (0xC55, 'V'), + (0xC57, 'X'), + (0xC58, 'V'), + (0xC5B, 'X'), + (0xC5D, 'V'), + (0xC5E, 'X'), + (0xC60, 'V'), + (0xC64, 'X'), + (0xC66, 'V'), + (0xC70, 'X'), + (0xC77, 'V'), + (0xC8D, 'X'), + (0xC8E, 'V'), + (0xC91, 'X'), + (0xC92, 'V'), + (0xCA9, 'X'), + (0xCAA, 'V'), + (0xCB4, 'X'), + (0xCB5, 'V'), + (0xCBA, 'X'), + (0xCBC, 'V'), + (0xCC5, 'X'), + (0xCC6, 'V'), + (0xCC9, 'X'), + (0xCCA, 'V'), + (0xCCE, 'X'), + (0xCD5, 'V'), + (0xCD7, 'X'), + (0xCDD, 'V'), + (0xCDF, 'X'), + (0xCE0, 'V'), + (0xCE4, 'X'), + (0xCE6, 'V'), + (0xCF0, 'X'), + (0xCF1, 'V'), + (0xCF4, 'X'), + (0xD00, 'V'), + (0xD0D, 'X'), + (0xD0E, 'V'), + (0xD11, 'X'), + (0xD12, 'V'), + (0xD45, 'X'), + (0xD46, 'V'), + (0xD49, 'X'), + (0xD4A, 'V'), + (0xD50, 'X'), + (0xD54, 'V'), + (0xD64, 'X'), + (0xD66, 'V'), + (0xD80, 'X'), + (0xD81, 'V'), + (0xD84, 'X'), + (0xD85, 'V'), + (0xD97, 'X'), + (0xD9A, 'V'), + (0xDB2, 'X'), + (0xDB3, 'V'), + (0xDBC, 'X'), + (0xDBD, 'V'), + (0xDBE, 'X'), + (0xDC0, 'V'), + (0xDC7, 'X'), + (0xDCA, 'V'), + (0xDCB, 'X'), + (0xDCF, 'V'), + (0xDD5, 'X'), + (0xDD6, 'V'), + (0xDD7, 'X'), + (0xDD8, 'V'), + (0xDE0, 'X'), + (0xDE6, 'V'), + (0xDF0, 'X'), + (0xDF2, 'V'), + (0xDF5, 'X'), + (0xE01, 'V'), + (0xE33, 'M', 'ํา'), + (0xE34, 'V'), + (0xE3B, 'X'), + (0xE3F, 'V'), + (0xE5C, 'X'), + (0xE81, 'V'), + (0xE83, 'X'), + (0xE84, 'V'), + (0xE85, 'X'), + (0xE86, 'V'), + (0xE8B, 'X'), + (0xE8C, 'V'), + (0xEA4, 'X'), + (0xEA5, 'V'), + (0xEA6, 'X'), + (0xEA7, 'V'), + (0xEB3, 'M', 'ໍາ'), + (0xEB4, 'V'), + ] + +def _seg_13() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xEBE, 'X'), + (0xEC0, 'V'), + (0xEC5, 'X'), + (0xEC6, 'V'), + (0xEC7, 'X'), + (0xEC8, 'V'), + (0xECF, 'X'), + (0xED0, 'V'), + (0xEDA, 'X'), + (0xEDC, 'M', 'ຫນ'), + (0xEDD, 'M', 'ຫມ'), + (0xEDE, 'V'), + (0xEE0, 'X'), + (0xF00, 'V'), + (0xF0C, 'M', '་'), + (0xF0D, 'V'), + (0xF43, 'M', 'གྷ'), + (0xF44, 'V'), + (0xF48, 'X'), + (0xF49, 'V'), + (0xF4D, 'M', 'ཌྷ'), + (0xF4E, 'V'), + (0xF52, 'M', 'དྷ'), + (0xF53, 'V'), + (0xF57, 'M', 'བྷ'), + (0xF58, 'V'), + (0xF5C, 'M', 'ཛྷ'), + (0xF5D, 'V'), + (0xF69, 'M', 'ཀྵ'), + (0xF6A, 'V'), + (0xF6D, 'X'), + (0xF71, 'V'), + (0xF73, 'M', 'ཱི'), + (0xF74, 'V'), + (0xF75, 'M', 'ཱུ'), + (0xF76, 'M', 'ྲྀ'), + (0xF77, 'M', 'ྲཱྀ'), + (0xF78, 'M', 'ླྀ'), + (0xF79, 'M', 'ླཱྀ'), + (0xF7A, 'V'), + (0xF81, 'M', 'ཱྀ'), + (0xF82, 'V'), + (0xF93, 'M', 'ྒྷ'), + (0xF94, 'V'), + (0xF98, 'X'), + (0xF99, 'V'), + (0xF9D, 'M', 'ྜྷ'), + (0xF9E, 'V'), + (0xFA2, 'M', 'ྡྷ'), + (0xFA3, 'V'), + (0xFA7, 'M', 'ྦྷ'), + (0xFA8, 'V'), + (0xFAC, 'M', 'ྫྷ'), + (0xFAD, 'V'), + (0xFB9, 'M', 'ྐྵ'), + (0xFBA, 'V'), + (0xFBD, 'X'), + (0xFBE, 'V'), + (0xFCD, 'X'), + (0xFCE, 'V'), + (0xFDB, 'X'), + (0x1000, 'V'), + (0x10A0, 'X'), + (0x10C7, 'M', 'ⴧ'), + (0x10C8, 'X'), + (0x10CD, 'M', 'ⴭ'), + (0x10CE, 'X'), + (0x10D0, 'V'), + (0x10FC, 'M', 'ნ'), + (0x10FD, 'V'), + (0x115F, 'X'), + (0x1161, 'V'), + (0x1249, 'X'), + (0x124A, 'V'), + (0x124E, 'X'), + (0x1250, 'V'), + (0x1257, 'X'), + (0x1258, 'V'), + (0x1259, 'X'), + (0x125A, 'V'), + (0x125E, 'X'), + (0x1260, 'V'), + (0x1289, 'X'), + (0x128A, 'V'), + (0x128E, 'X'), + (0x1290, 'V'), + (0x12B1, 'X'), + (0x12B2, 'V'), + (0x12B6, 'X'), + (0x12B8, 'V'), + (0x12BF, 'X'), + (0x12C0, 'V'), + (0x12C1, 'X'), + (0x12C2, 'V'), + (0x12C6, 'X'), + (0x12C8, 'V'), + (0x12D7, 'X'), + (0x12D8, 'V'), + (0x1311, 'X'), + (0x1312, 'V'), + ] + +def _seg_14() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1316, 'X'), + (0x1318, 'V'), + (0x135B, 'X'), + (0x135D, 'V'), + (0x137D, 'X'), + (0x1380, 'V'), + (0x139A, 'X'), + (0x13A0, 'V'), + (0x13F6, 'X'), + (0x13F8, 'M', 'Ᏸ'), + (0x13F9, 'M', 'Ᏹ'), + (0x13FA, 'M', 'Ᏺ'), + (0x13FB, 'M', 'Ᏻ'), + (0x13FC, 'M', 'Ᏼ'), + (0x13FD, 'M', 'Ᏽ'), + (0x13FE, 'X'), + (0x1400, 'V'), + (0x1680, 'X'), + (0x1681, 'V'), + (0x169D, 'X'), + (0x16A0, 'V'), + (0x16F9, 'X'), + (0x1700, 'V'), + (0x1716, 'X'), + (0x171F, 'V'), + (0x1737, 'X'), + (0x1740, 'V'), + (0x1754, 'X'), + (0x1760, 'V'), + (0x176D, 'X'), + (0x176E, 'V'), + (0x1771, 'X'), + (0x1772, 'V'), + (0x1774, 'X'), + (0x1780, 'V'), + (0x17B4, 'X'), + (0x17B6, 'V'), + (0x17DE, 'X'), + (0x17E0, 'V'), + (0x17EA, 'X'), + (0x17F0, 'V'), + (0x17FA, 'X'), + (0x1800, 'V'), + (0x1806, 'X'), + (0x1807, 'V'), + (0x180B, 'I'), + (0x180E, 'X'), + (0x180F, 'I'), + (0x1810, 'V'), + (0x181A, 'X'), + (0x1820, 'V'), + (0x1879, 'X'), + (0x1880, 'V'), + (0x18AB, 'X'), + (0x18B0, 'V'), + (0x18F6, 'X'), + (0x1900, 'V'), + (0x191F, 'X'), + (0x1920, 'V'), + (0x192C, 'X'), + (0x1930, 'V'), + (0x193C, 'X'), + (0x1940, 'V'), + (0x1941, 'X'), + (0x1944, 'V'), + (0x196E, 'X'), + (0x1970, 'V'), + (0x1975, 'X'), + (0x1980, 'V'), + (0x19AC, 'X'), + (0x19B0, 'V'), + (0x19CA, 'X'), + (0x19D0, 'V'), + (0x19DB, 'X'), + (0x19DE, 'V'), + (0x1A1C, 'X'), + (0x1A1E, 'V'), + (0x1A5F, 'X'), + (0x1A60, 'V'), + (0x1A7D, 'X'), + (0x1A7F, 'V'), + (0x1A8A, 'X'), + (0x1A90, 'V'), + (0x1A9A, 'X'), + (0x1AA0, 'V'), + (0x1AAE, 'X'), + (0x1AB0, 'V'), + (0x1ACF, 'X'), + (0x1B00, 'V'), + (0x1B4D, 'X'), + (0x1B50, 'V'), + (0x1B7F, 'X'), + (0x1B80, 'V'), + (0x1BF4, 'X'), + (0x1BFC, 'V'), + (0x1C38, 'X'), + (0x1C3B, 'V'), + (0x1C4A, 'X'), + (0x1C4D, 'V'), + (0x1C80, 'M', 'в'), + ] + +def _seg_15() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1C81, 'M', 'д'), + (0x1C82, 'M', 'о'), + (0x1C83, 'M', 'с'), + (0x1C84, 'M', 'т'), + (0x1C86, 'M', 'ъ'), + (0x1C87, 'M', 'ѣ'), + (0x1C88, 'M', 'ꙋ'), + (0x1C89, 'X'), + (0x1C90, 'M', 'ა'), + (0x1C91, 'M', 'ბ'), + (0x1C92, 'M', 'გ'), + (0x1C93, 'M', 'დ'), + (0x1C94, 'M', 'ე'), + (0x1C95, 'M', 'ვ'), + (0x1C96, 'M', 'ზ'), + (0x1C97, 'M', 'თ'), + (0x1C98, 'M', 'ი'), + (0x1C99, 'M', 'კ'), + (0x1C9A, 'M', 'ლ'), + (0x1C9B, 'M', 'მ'), + (0x1C9C, 'M', 'ნ'), + (0x1C9D, 'M', 'ო'), + (0x1C9E, 'M', 'პ'), + (0x1C9F, 'M', 'ჟ'), + (0x1CA0, 'M', 'რ'), + (0x1CA1, 'M', 'ს'), + (0x1CA2, 'M', 'ტ'), + (0x1CA3, 'M', 'უ'), + (0x1CA4, 'M', 'ფ'), + (0x1CA5, 'M', 'ქ'), + (0x1CA6, 'M', 'ღ'), + (0x1CA7, 'M', 'ყ'), + (0x1CA8, 'M', 'შ'), + (0x1CA9, 'M', 'ჩ'), + (0x1CAA, 'M', 'ც'), + (0x1CAB, 'M', 'ძ'), + (0x1CAC, 'M', 'წ'), + (0x1CAD, 'M', 'ჭ'), + (0x1CAE, 'M', 'ხ'), + (0x1CAF, 'M', 'ჯ'), + (0x1CB0, 'M', 'ჰ'), + (0x1CB1, 'M', 'ჱ'), + (0x1CB2, 'M', 'ჲ'), + (0x1CB3, 'M', 'ჳ'), + (0x1CB4, 'M', 'ჴ'), + (0x1CB5, 'M', 'ჵ'), + (0x1CB6, 'M', 'ჶ'), + (0x1CB7, 'M', 'ჷ'), + (0x1CB8, 'M', 'ჸ'), + (0x1CB9, 'M', 'ჹ'), + (0x1CBA, 'M', 'ჺ'), + (0x1CBB, 'X'), + (0x1CBD, 'M', 'ჽ'), + (0x1CBE, 'M', 'ჾ'), + (0x1CBF, 'M', 'ჿ'), + (0x1CC0, 'V'), + (0x1CC8, 'X'), + (0x1CD0, 'V'), + (0x1CFB, 'X'), + (0x1D00, 'V'), + (0x1D2C, 'M', 'a'), + (0x1D2D, 'M', 'æ'), + (0x1D2E, 'M', 'b'), + (0x1D2F, 'V'), + (0x1D30, 'M', 'd'), + (0x1D31, 'M', 'e'), + (0x1D32, 'M', 'ǝ'), + (0x1D33, 'M', 'g'), + (0x1D34, 'M', 'h'), + (0x1D35, 'M', 'i'), + (0x1D36, 'M', 'j'), + (0x1D37, 'M', 'k'), + (0x1D38, 'M', 'l'), + (0x1D39, 'M', 'm'), + (0x1D3A, 'M', 'n'), + (0x1D3B, 'V'), + (0x1D3C, 'M', 'o'), + (0x1D3D, 'M', 'ȣ'), + (0x1D3E, 'M', 'p'), + (0x1D3F, 'M', 'r'), + (0x1D40, 'M', 't'), + (0x1D41, 'M', 'u'), + (0x1D42, 'M', 'w'), + (0x1D43, 'M', 'a'), + (0x1D44, 'M', 'ɐ'), + (0x1D45, 'M', 'ɑ'), + (0x1D46, 'M', 'ᴂ'), + (0x1D47, 'M', 'b'), + (0x1D48, 'M', 'd'), + (0x1D49, 'M', 'e'), + (0x1D4A, 'M', 'ə'), + (0x1D4B, 'M', 'ɛ'), + (0x1D4C, 'M', 'ɜ'), + (0x1D4D, 'M', 'g'), + (0x1D4E, 'V'), + (0x1D4F, 'M', 'k'), + (0x1D50, 'M', 'm'), + (0x1D51, 'M', 'ŋ'), + (0x1D52, 'M', 'o'), + (0x1D53, 'M', 'ɔ'), + ] + +def _seg_16() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D54, 'M', 'ᴖ'), + (0x1D55, 'M', 'ᴗ'), + (0x1D56, 'M', 'p'), + (0x1D57, 'M', 't'), + (0x1D58, 'M', 'u'), + (0x1D59, 'M', 'ᴝ'), + (0x1D5A, 'M', 'ɯ'), + (0x1D5B, 'M', 'v'), + (0x1D5C, 'M', 'ᴥ'), + (0x1D5D, 'M', 'β'), + (0x1D5E, 'M', 'γ'), + (0x1D5F, 'M', 'δ'), + (0x1D60, 'M', 'φ'), + (0x1D61, 'M', 'χ'), + (0x1D62, 'M', 'i'), + (0x1D63, 'M', 'r'), + (0x1D64, 'M', 'u'), + (0x1D65, 'M', 'v'), + (0x1D66, 'M', 'β'), + (0x1D67, 'M', 'γ'), + (0x1D68, 'M', 'ρ'), + (0x1D69, 'M', 'φ'), + (0x1D6A, 'M', 'χ'), + (0x1D6B, 'V'), + (0x1D78, 'M', 'н'), + (0x1D79, 'V'), + (0x1D9B, 'M', 'ɒ'), + (0x1D9C, 'M', 'c'), + (0x1D9D, 'M', 'ɕ'), + (0x1D9E, 'M', 'ð'), + (0x1D9F, 'M', 'ɜ'), + (0x1DA0, 'M', 'f'), + (0x1DA1, 'M', 'ɟ'), + (0x1DA2, 'M', 'ɡ'), + (0x1DA3, 'M', 'ɥ'), + (0x1DA4, 'M', 'ɨ'), + (0x1DA5, 'M', 'ɩ'), + (0x1DA6, 'M', 'ɪ'), + (0x1DA7, 'M', 'ᵻ'), + (0x1DA8, 'M', 'ʝ'), + (0x1DA9, 'M', 'ɭ'), + (0x1DAA, 'M', 'ᶅ'), + (0x1DAB, 'M', 'ʟ'), + (0x1DAC, 'M', 'ɱ'), + (0x1DAD, 'M', 'ɰ'), + (0x1DAE, 'M', 'ɲ'), + (0x1DAF, 'M', 'ɳ'), + (0x1DB0, 'M', 'ɴ'), + (0x1DB1, 'M', 'ɵ'), + (0x1DB2, 'M', 'ɸ'), + (0x1DB3, 'M', 'ʂ'), + (0x1DB4, 'M', 'ʃ'), + (0x1DB5, 'M', 'ƫ'), + (0x1DB6, 'M', 'ʉ'), + (0x1DB7, 'M', 'ʊ'), + (0x1DB8, 'M', 'ᴜ'), + (0x1DB9, 'M', 'ʋ'), + (0x1DBA, 'M', 'ʌ'), + (0x1DBB, 'M', 'z'), + (0x1DBC, 'M', 'ʐ'), + (0x1DBD, 'M', 'ʑ'), + (0x1DBE, 'M', 'ʒ'), + (0x1DBF, 'M', 'θ'), + (0x1DC0, 'V'), + (0x1E00, 'M', 'ḁ'), + (0x1E01, 'V'), + (0x1E02, 'M', 'ḃ'), + (0x1E03, 'V'), + (0x1E04, 'M', 'ḅ'), + (0x1E05, 'V'), + (0x1E06, 'M', 'ḇ'), + (0x1E07, 'V'), + (0x1E08, 'M', 'ḉ'), + (0x1E09, 'V'), + (0x1E0A, 'M', 'ḋ'), + (0x1E0B, 'V'), + (0x1E0C, 'M', 'ḍ'), + (0x1E0D, 'V'), + (0x1E0E, 'M', 'ḏ'), + (0x1E0F, 'V'), + (0x1E10, 'M', 'ḑ'), + (0x1E11, 'V'), + (0x1E12, 'M', 'ḓ'), + (0x1E13, 'V'), + (0x1E14, 'M', 'ḕ'), + (0x1E15, 'V'), + (0x1E16, 'M', 'ḗ'), + (0x1E17, 'V'), + (0x1E18, 'M', 'ḙ'), + (0x1E19, 'V'), + (0x1E1A, 'M', 'ḛ'), + (0x1E1B, 'V'), + (0x1E1C, 'M', 'ḝ'), + (0x1E1D, 'V'), + (0x1E1E, 'M', 'ḟ'), + (0x1E1F, 'V'), + (0x1E20, 'M', 'ḡ'), + (0x1E21, 'V'), + (0x1E22, 'M', 'ḣ'), + (0x1E23, 'V'), + ] + +def _seg_17() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E24, 'M', 'ḥ'), + (0x1E25, 'V'), + (0x1E26, 'M', 'ḧ'), + (0x1E27, 'V'), + (0x1E28, 'M', 'ḩ'), + (0x1E29, 'V'), + (0x1E2A, 'M', 'ḫ'), + (0x1E2B, 'V'), + (0x1E2C, 'M', 'ḭ'), + (0x1E2D, 'V'), + (0x1E2E, 'M', 'ḯ'), + (0x1E2F, 'V'), + (0x1E30, 'M', 'ḱ'), + (0x1E31, 'V'), + (0x1E32, 'M', 'ḳ'), + (0x1E33, 'V'), + (0x1E34, 'M', 'ḵ'), + (0x1E35, 'V'), + (0x1E36, 'M', 'ḷ'), + (0x1E37, 'V'), + (0x1E38, 'M', 'ḹ'), + (0x1E39, 'V'), + (0x1E3A, 'M', 'ḻ'), + (0x1E3B, 'V'), + (0x1E3C, 'M', 'ḽ'), + (0x1E3D, 'V'), + (0x1E3E, 'M', 'ḿ'), + (0x1E3F, 'V'), + (0x1E40, 'M', 'ṁ'), + (0x1E41, 'V'), + (0x1E42, 'M', 'ṃ'), + (0x1E43, 'V'), + (0x1E44, 'M', 'ṅ'), + (0x1E45, 'V'), + (0x1E46, 'M', 'ṇ'), + (0x1E47, 'V'), + (0x1E48, 'M', 'ṉ'), + (0x1E49, 'V'), + (0x1E4A, 'M', 'ṋ'), + (0x1E4B, 'V'), + (0x1E4C, 'M', 'ṍ'), + (0x1E4D, 'V'), + (0x1E4E, 'M', 'ṏ'), + (0x1E4F, 'V'), + (0x1E50, 'M', 'ṑ'), + (0x1E51, 'V'), + (0x1E52, 'M', 'ṓ'), + (0x1E53, 'V'), + (0x1E54, 'M', 'ṕ'), + (0x1E55, 'V'), + (0x1E56, 'M', 'ṗ'), + (0x1E57, 'V'), + (0x1E58, 'M', 'ṙ'), + (0x1E59, 'V'), + (0x1E5A, 'M', 'ṛ'), + (0x1E5B, 'V'), + (0x1E5C, 'M', 'ṝ'), + (0x1E5D, 'V'), + (0x1E5E, 'M', 'ṟ'), + (0x1E5F, 'V'), + (0x1E60, 'M', 'ṡ'), + (0x1E61, 'V'), + (0x1E62, 'M', 'ṣ'), + (0x1E63, 'V'), + (0x1E64, 'M', 'ṥ'), + (0x1E65, 'V'), + (0x1E66, 'M', 'ṧ'), + (0x1E67, 'V'), + (0x1E68, 'M', 'ṩ'), + (0x1E69, 'V'), + (0x1E6A, 'M', 'ṫ'), + (0x1E6B, 'V'), + (0x1E6C, 'M', 'ṭ'), + (0x1E6D, 'V'), + (0x1E6E, 'M', 'ṯ'), + (0x1E6F, 'V'), + (0x1E70, 'M', 'ṱ'), + (0x1E71, 'V'), + (0x1E72, 'M', 'ṳ'), + (0x1E73, 'V'), + (0x1E74, 'M', 'ṵ'), + (0x1E75, 'V'), + (0x1E76, 'M', 'ṷ'), + (0x1E77, 'V'), + (0x1E78, 'M', 'ṹ'), + (0x1E79, 'V'), + (0x1E7A, 'M', 'ṻ'), + (0x1E7B, 'V'), + (0x1E7C, 'M', 'ṽ'), + (0x1E7D, 'V'), + (0x1E7E, 'M', 'ṿ'), + (0x1E7F, 'V'), + (0x1E80, 'M', 'ẁ'), + (0x1E81, 'V'), + (0x1E82, 'M', 'ẃ'), + (0x1E83, 'V'), + (0x1E84, 'M', 'ẅ'), + (0x1E85, 'V'), + (0x1E86, 'M', 'ẇ'), + (0x1E87, 'V'), + ] + +def _seg_18() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E88, 'M', 'ẉ'), + (0x1E89, 'V'), + (0x1E8A, 'M', 'ẋ'), + (0x1E8B, 'V'), + (0x1E8C, 'M', 'ẍ'), + (0x1E8D, 'V'), + (0x1E8E, 'M', 'ẏ'), + (0x1E8F, 'V'), + (0x1E90, 'M', 'ẑ'), + (0x1E91, 'V'), + (0x1E92, 'M', 'ẓ'), + (0x1E93, 'V'), + (0x1E94, 'M', 'ẕ'), + (0x1E95, 'V'), + (0x1E9A, 'M', 'aʾ'), + (0x1E9B, 'M', 'ṡ'), + (0x1E9C, 'V'), + (0x1E9E, 'M', 'ss'), + (0x1E9F, 'V'), + (0x1EA0, 'M', 'ạ'), + (0x1EA1, 'V'), + (0x1EA2, 'M', 'ả'), + (0x1EA3, 'V'), + (0x1EA4, 'M', 'ấ'), + (0x1EA5, 'V'), + (0x1EA6, 'M', 'ầ'), + (0x1EA7, 'V'), + (0x1EA8, 'M', 'ẩ'), + (0x1EA9, 'V'), + (0x1EAA, 'M', 'ẫ'), + (0x1EAB, 'V'), + (0x1EAC, 'M', 'ậ'), + (0x1EAD, 'V'), + (0x1EAE, 'M', 'ắ'), + (0x1EAF, 'V'), + (0x1EB0, 'M', 'ằ'), + (0x1EB1, 'V'), + (0x1EB2, 'M', 'ẳ'), + (0x1EB3, 'V'), + (0x1EB4, 'M', 'ẵ'), + (0x1EB5, 'V'), + (0x1EB6, 'M', 'ặ'), + (0x1EB7, 'V'), + (0x1EB8, 'M', 'ẹ'), + (0x1EB9, 'V'), + (0x1EBA, 'M', 'ẻ'), + (0x1EBB, 'V'), + (0x1EBC, 'M', 'ẽ'), + (0x1EBD, 'V'), + (0x1EBE, 'M', 'ế'), + (0x1EBF, 'V'), + (0x1EC0, 'M', 'ề'), + (0x1EC1, 'V'), + (0x1EC2, 'M', 'ể'), + (0x1EC3, 'V'), + (0x1EC4, 'M', 'ễ'), + (0x1EC5, 'V'), + (0x1EC6, 'M', 'ệ'), + (0x1EC7, 'V'), + (0x1EC8, 'M', 'ỉ'), + (0x1EC9, 'V'), + (0x1ECA, 'M', 'ị'), + (0x1ECB, 'V'), + (0x1ECC, 'M', 'ọ'), + (0x1ECD, 'V'), + (0x1ECE, 'M', 'ỏ'), + (0x1ECF, 'V'), + (0x1ED0, 'M', 'ố'), + (0x1ED1, 'V'), + (0x1ED2, 'M', 'ồ'), + (0x1ED3, 'V'), + (0x1ED4, 'M', 'ổ'), + (0x1ED5, 'V'), + (0x1ED6, 'M', 'ỗ'), + (0x1ED7, 'V'), + (0x1ED8, 'M', 'ộ'), + (0x1ED9, 'V'), + (0x1EDA, 'M', 'ớ'), + (0x1EDB, 'V'), + (0x1EDC, 'M', 'ờ'), + (0x1EDD, 'V'), + (0x1EDE, 'M', 'ở'), + (0x1EDF, 'V'), + (0x1EE0, 'M', 'ỡ'), + (0x1EE1, 'V'), + (0x1EE2, 'M', 'ợ'), + (0x1EE3, 'V'), + (0x1EE4, 'M', 'ụ'), + (0x1EE5, 'V'), + (0x1EE6, 'M', 'ủ'), + (0x1EE7, 'V'), + (0x1EE8, 'M', 'ứ'), + (0x1EE9, 'V'), + (0x1EEA, 'M', 'ừ'), + (0x1EEB, 'V'), + (0x1EEC, 'M', 'ử'), + (0x1EED, 'V'), + (0x1EEE, 'M', 'ữ'), + (0x1EEF, 'V'), + (0x1EF0, 'M', 'ự'), + ] + +def _seg_19() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EF1, 'V'), + (0x1EF2, 'M', 'ỳ'), + (0x1EF3, 'V'), + (0x1EF4, 'M', 'ỵ'), + (0x1EF5, 'V'), + (0x1EF6, 'M', 'ỷ'), + (0x1EF7, 'V'), + (0x1EF8, 'M', 'ỹ'), + (0x1EF9, 'V'), + (0x1EFA, 'M', 'ỻ'), + (0x1EFB, 'V'), + (0x1EFC, 'M', 'ỽ'), + (0x1EFD, 'V'), + (0x1EFE, 'M', 'ỿ'), + (0x1EFF, 'V'), + (0x1F08, 'M', 'ἀ'), + (0x1F09, 'M', 'ἁ'), + (0x1F0A, 'M', 'ἂ'), + (0x1F0B, 'M', 'ἃ'), + (0x1F0C, 'M', 'ἄ'), + (0x1F0D, 'M', 'ἅ'), + (0x1F0E, 'M', 'ἆ'), + (0x1F0F, 'M', 'ἇ'), + (0x1F10, 'V'), + (0x1F16, 'X'), + (0x1F18, 'M', 'ἐ'), + (0x1F19, 'M', 'ἑ'), + (0x1F1A, 'M', 'ἒ'), + (0x1F1B, 'M', 'ἓ'), + (0x1F1C, 'M', 'ἔ'), + (0x1F1D, 'M', 'ἕ'), + (0x1F1E, 'X'), + (0x1F20, 'V'), + (0x1F28, 'M', 'ἠ'), + (0x1F29, 'M', 'ἡ'), + (0x1F2A, 'M', 'ἢ'), + (0x1F2B, 'M', 'ἣ'), + (0x1F2C, 'M', 'ἤ'), + (0x1F2D, 'M', 'ἥ'), + (0x1F2E, 'M', 'ἦ'), + (0x1F2F, 'M', 'ἧ'), + (0x1F30, 'V'), + (0x1F38, 'M', 'ἰ'), + (0x1F39, 'M', 'ἱ'), + (0x1F3A, 'M', 'ἲ'), + (0x1F3B, 'M', 'ἳ'), + (0x1F3C, 'M', 'ἴ'), + (0x1F3D, 'M', 'ἵ'), + (0x1F3E, 'M', 'ἶ'), + (0x1F3F, 'M', 'ἷ'), + (0x1F40, 'V'), + (0x1F46, 'X'), + (0x1F48, 'M', 'ὀ'), + (0x1F49, 'M', 'ὁ'), + (0x1F4A, 'M', 'ὂ'), + (0x1F4B, 'M', 'ὃ'), + (0x1F4C, 'M', 'ὄ'), + (0x1F4D, 'M', 'ὅ'), + (0x1F4E, 'X'), + (0x1F50, 'V'), + (0x1F58, 'X'), + (0x1F59, 'M', 'ὑ'), + (0x1F5A, 'X'), + (0x1F5B, 'M', 'ὓ'), + (0x1F5C, 'X'), + (0x1F5D, 'M', 'ὕ'), + (0x1F5E, 'X'), + (0x1F5F, 'M', 'ὗ'), + (0x1F60, 'V'), + (0x1F68, 'M', 'ὠ'), + (0x1F69, 'M', 'ὡ'), + (0x1F6A, 'M', 'ὢ'), + (0x1F6B, 'M', 'ὣ'), + (0x1F6C, 'M', 'ὤ'), + (0x1F6D, 'M', 'ὥ'), + (0x1F6E, 'M', 'ὦ'), + (0x1F6F, 'M', 'ὧ'), + (0x1F70, 'V'), + (0x1F71, 'M', 'ά'), + (0x1F72, 'V'), + (0x1F73, 'M', 'έ'), + (0x1F74, 'V'), + (0x1F75, 'M', 'ή'), + (0x1F76, 'V'), + (0x1F77, 'M', 'ί'), + (0x1F78, 'V'), + (0x1F79, 'M', 'ό'), + (0x1F7A, 'V'), + (0x1F7B, 'M', 'ύ'), + (0x1F7C, 'V'), + (0x1F7D, 'M', 'ώ'), + (0x1F7E, 'X'), + (0x1F80, 'M', 'ἀι'), + (0x1F81, 'M', 'ἁι'), + (0x1F82, 'M', 'ἂι'), + (0x1F83, 'M', 'ἃι'), + (0x1F84, 'M', 'ἄι'), + (0x1F85, 'M', 'ἅι'), + (0x1F86, 'M', 'ἆι'), + (0x1F87, 'M', 'ἇι'), + ] + +def _seg_20() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F88, 'M', 'ἀι'), + (0x1F89, 'M', 'ἁι'), + (0x1F8A, 'M', 'ἂι'), + (0x1F8B, 'M', 'ἃι'), + (0x1F8C, 'M', 'ἄι'), + (0x1F8D, 'M', 'ἅι'), + (0x1F8E, 'M', 'ἆι'), + (0x1F8F, 'M', 'ἇι'), + (0x1F90, 'M', 'ἠι'), + (0x1F91, 'M', 'ἡι'), + (0x1F92, 'M', 'ἢι'), + (0x1F93, 'M', 'ἣι'), + (0x1F94, 'M', 'ἤι'), + (0x1F95, 'M', 'ἥι'), + (0x1F96, 'M', 'ἦι'), + (0x1F97, 'M', 'ἧι'), + (0x1F98, 'M', 'ἠι'), + (0x1F99, 'M', 'ἡι'), + (0x1F9A, 'M', 'ἢι'), + (0x1F9B, 'M', 'ἣι'), + (0x1F9C, 'M', 'ἤι'), + (0x1F9D, 'M', 'ἥι'), + (0x1F9E, 'M', 'ἦι'), + (0x1F9F, 'M', 'ἧι'), + (0x1FA0, 'M', 'ὠι'), + (0x1FA1, 'M', 'ὡι'), + (0x1FA2, 'M', 'ὢι'), + (0x1FA3, 'M', 'ὣι'), + (0x1FA4, 'M', 'ὤι'), + (0x1FA5, 'M', 'ὥι'), + (0x1FA6, 'M', 'ὦι'), + (0x1FA7, 'M', 'ὧι'), + (0x1FA8, 'M', 'ὠι'), + (0x1FA9, 'M', 'ὡι'), + (0x1FAA, 'M', 'ὢι'), + (0x1FAB, 'M', 'ὣι'), + (0x1FAC, 'M', 'ὤι'), + (0x1FAD, 'M', 'ὥι'), + (0x1FAE, 'M', 'ὦι'), + (0x1FAF, 'M', 'ὧι'), + (0x1FB0, 'V'), + (0x1FB2, 'M', 'ὰι'), + (0x1FB3, 'M', 'αι'), + (0x1FB4, 'M', 'άι'), + (0x1FB5, 'X'), + (0x1FB6, 'V'), + (0x1FB7, 'M', 'ᾶι'), + (0x1FB8, 'M', 'ᾰ'), + (0x1FB9, 'M', 'ᾱ'), + (0x1FBA, 'M', 'ὰ'), + (0x1FBB, 'M', 'ά'), + (0x1FBC, 'M', 'αι'), + (0x1FBD, '3', ' ̓'), + (0x1FBE, 'M', 'ι'), + (0x1FBF, '3', ' ̓'), + (0x1FC0, '3', ' ͂'), + (0x1FC1, '3', ' ̈͂'), + (0x1FC2, 'M', 'ὴι'), + (0x1FC3, 'M', 'ηι'), + (0x1FC4, 'M', 'ήι'), + (0x1FC5, 'X'), + (0x1FC6, 'V'), + (0x1FC7, 'M', 'ῆι'), + (0x1FC8, 'M', 'ὲ'), + (0x1FC9, 'M', 'έ'), + (0x1FCA, 'M', 'ὴ'), + (0x1FCB, 'M', 'ή'), + (0x1FCC, 'M', 'ηι'), + (0x1FCD, '3', ' ̓̀'), + (0x1FCE, '3', ' ̓́'), + (0x1FCF, '3', ' ̓͂'), + (0x1FD0, 'V'), + (0x1FD3, 'M', 'ΐ'), + (0x1FD4, 'X'), + (0x1FD6, 'V'), + (0x1FD8, 'M', 'ῐ'), + (0x1FD9, 'M', 'ῑ'), + (0x1FDA, 'M', 'ὶ'), + (0x1FDB, 'M', 'ί'), + (0x1FDC, 'X'), + (0x1FDD, '3', ' ̔̀'), + (0x1FDE, '3', ' ̔́'), + (0x1FDF, '3', ' ̔͂'), + (0x1FE0, 'V'), + (0x1FE3, 'M', 'ΰ'), + (0x1FE4, 'V'), + (0x1FE8, 'M', 'ῠ'), + (0x1FE9, 'M', 'ῡ'), + (0x1FEA, 'M', 'ὺ'), + (0x1FEB, 'M', 'ύ'), + (0x1FEC, 'M', 'ῥ'), + (0x1FED, '3', ' ̈̀'), + (0x1FEE, '3', ' ̈́'), + (0x1FEF, '3', '`'), + (0x1FF0, 'X'), + (0x1FF2, 'M', 'ὼι'), + (0x1FF3, 'M', 'ωι'), + (0x1FF4, 'M', 'ώι'), + (0x1FF5, 'X'), + (0x1FF6, 'V'), + ] + +def _seg_21() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FF7, 'M', 'ῶι'), + (0x1FF8, 'M', 'ὸ'), + (0x1FF9, 'M', 'ό'), + (0x1FFA, 'M', 'ὼ'), + (0x1FFB, 'M', 'ώ'), + (0x1FFC, 'M', 'ωι'), + (0x1FFD, '3', ' ́'), + (0x1FFE, '3', ' ̔'), + (0x1FFF, 'X'), + (0x2000, '3', ' '), + (0x200B, 'I'), + (0x200C, 'D', ''), + (0x200E, 'X'), + (0x2010, 'V'), + (0x2011, 'M', '‐'), + (0x2012, 'V'), + (0x2017, '3', ' ̳'), + (0x2018, 'V'), + (0x2024, 'X'), + (0x2027, 'V'), + (0x2028, 'X'), + (0x202F, '3', ' '), + (0x2030, 'V'), + (0x2033, 'M', '′′'), + (0x2034, 'M', '′′′'), + (0x2035, 'V'), + (0x2036, 'M', '‵‵'), + (0x2037, 'M', '‵‵‵'), + (0x2038, 'V'), + (0x203C, '3', '!!'), + (0x203D, 'V'), + (0x203E, '3', ' ̅'), + (0x203F, 'V'), + (0x2047, '3', '??'), + (0x2048, '3', '?!'), + (0x2049, '3', '!?'), + (0x204A, 'V'), + (0x2057, 'M', '′′′′'), + (0x2058, 'V'), + (0x205F, '3', ' '), + (0x2060, 'I'), + (0x2061, 'X'), + (0x2064, 'I'), + (0x2065, 'X'), + (0x2070, 'M', '0'), + (0x2071, 'M', 'i'), + (0x2072, 'X'), + (0x2074, 'M', '4'), + (0x2075, 'M', '5'), + (0x2076, 'M', '6'), + (0x2077, 'M', '7'), + (0x2078, 'M', '8'), + (0x2079, 'M', '9'), + (0x207A, '3', '+'), + (0x207B, 'M', '−'), + (0x207C, '3', '='), + (0x207D, '3', '('), + (0x207E, '3', ')'), + (0x207F, 'M', 'n'), + (0x2080, 'M', '0'), + (0x2081, 'M', '1'), + (0x2082, 'M', '2'), + (0x2083, 'M', '3'), + (0x2084, 'M', '4'), + (0x2085, 'M', '5'), + (0x2086, 'M', '6'), + (0x2087, 'M', '7'), + (0x2088, 'M', '8'), + (0x2089, 'M', '9'), + (0x208A, '3', '+'), + (0x208B, 'M', '−'), + (0x208C, '3', '='), + (0x208D, '3', '('), + (0x208E, '3', ')'), + (0x208F, 'X'), + (0x2090, 'M', 'a'), + (0x2091, 'M', 'e'), + (0x2092, 'M', 'o'), + (0x2093, 'M', 'x'), + (0x2094, 'M', 'ə'), + (0x2095, 'M', 'h'), + (0x2096, 'M', 'k'), + (0x2097, 'M', 'l'), + (0x2098, 'M', 'm'), + (0x2099, 'M', 'n'), + (0x209A, 'M', 'p'), + (0x209B, 'M', 's'), + (0x209C, 'M', 't'), + (0x209D, 'X'), + (0x20A0, 'V'), + (0x20A8, 'M', 'rs'), + (0x20A9, 'V'), + (0x20C1, 'X'), + (0x20D0, 'V'), + (0x20F1, 'X'), + (0x2100, '3', 'a/c'), + (0x2101, '3', 'a/s'), + (0x2102, 'M', 'c'), + (0x2103, 'M', '°c'), + (0x2104, 'V'), + ] + +def _seg_22() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2105, '3', 'c/o'), + (0x2106, '3', 'c/u'), + (0x2107, 'M', 'ɛ'), + (0x2108, 'V'), + (0x2109, 'M', '°f'), + (0x210A, 'M', 'g'), + (0x210B, 'M', 'h'), + (0x210F, 'M', 'ħ'), + (0x2110, 'M', 'i'), + (0x2112, 'M', 'l'), + (0x2114, 'V'), + (0x2115, 'M', 'n'), + (0x2116, 'M', 'no'), + (0x2117, 'V'), + (0x2119, 'M', 'p'), + (0x211A, 'M', 'q'), + (0x211B, 'M', 'r'), + (0x211E, 'V'), + (0x2120, 'M', 'sm'), + (0x2121, 'M', 'tel'), + (0x2122, 'M', 'tm'), + (0x2123, 'V'), + (0x2124, 'M', 'z'), + (0x2125, 'V'), + (0x2126, 'M', 'ω'), + (0x2127, 'V'), + (0x2128, 'M', 'z'), + (0x2129, 'V'), + (0x212A, 'M', 'k'), + (0x212B, 'M', 'å'), + (0x212C, 'M', 'b'), + (0x212D, 'M', 'c'), + (0x212E, 'V'), + (0x212F, 'M', 'e'), + (0x2131, 'M', 'f'), + (0x2132, 'X'), + (0x2133, 'M', 'm'), + (0x2134, 'M', 'o'), + (0x2135, 'M', 'א'), + (0x2136, 'M', 'ב'), + (0x2137, 'M', 'ג'), + (0x2138, 'M', 'ד'), + (0x2139, 'M', 'i'), + (0x213A, 'V'), + (0x213B, 'M', 'fax'), + (0x213C, 'M', 'π'), + (0x213D, 'M', 'γ'), + (0x213F, 'M', 'π'), + (0x2140, 'M', '∑'), + (0x2141, 'V'), + (0x2145, 'M', 'd'), + (0x2147, 'M', 'e'), + (0x2148, 'M', 'i'), + (0x2149, 'M', 'j'), + (0x214A, 'V'), + (0x2150, 'M', '1⁄7'), + (0x2151, 'M', '1⁄9'), + (0x2152, 'M', '1⁄10'), + (0x2153, 'M', '1⁄3'), + (0x2154, 'M', '2⁄3'), + (0x2155, 'M', '1⁄5'), + (0x2156, 'M', '2⁄5'), + (0x2157, 'M', '3⁄5'), + (0x2158, 'M', '4⁄5'), + (0x2159, 'M', '1⁄6'), + (0x215A, 'M', '5⁄6'), + (0x215B, 'M', '1⁄8'), + (0x215C, 'M', '3⁄8'), + (0x215D, 'M', '5⁄8'), + (0x215E, 'M', '7⁄8'), + (0x215F, 'M', '1⁄'), + (0x2160, 'M', 'i'), + (0x2161, 'M', 'ii'), + (0x2162, 'M', 'iii'), + (0x2163, 'M', 'iv'), + (0x2164, 'M', 'v'), + (0x2165, 'M', 'vi'), + (0x2166, 'M', 'vii'), + (0x2167, 'M', 'viii'), + (0x2168, 'M', 'ix'), + (0x2169, 'M', 'x'), + (0x216A, 'M', 'xi'), + (0x216B, 'M', 'xii'), + (0x216C, 'M', 'l'), + (0x216D, 'M', 'c'), + (0x216E, 'M', 'd'), + (0x216F, 'M', 'm'), + (0x2170, 'M', 'i'), + (0x2171, 'M', 'ii'), + (0x2172, 'M', 'iii'), + (0x2173, 'M', 'iv'), + (0x2174, 'M', 'v'), + (0x2175, 'M', 'vi'), + (0x2176, 'M', 'vii'), + (0x2177, 'M', 'viii'), + (0x2178, 'M', 'ix'), + (0x2179, 'M', 'x'), + (0x217A, 'M', 'xi'), + (0x217B, 'M', 'xii'), + (0x217C, 'M', 'l'), + ] + +def _seg_23() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x217D, 'M', 'c'), + (0x217E, 'M', 'd'), + (0x217F, 'M', 'm'), + (0x2180, 'V'), + (0x2183, 'X'), + (0x2184, 'V'), + (0x2189, 'M', '0⁄3'), + (0x218A, 'V'), + (0x218C, 'X'), + (0x2190, 'V'), + (0x222C, 'M', '∫∫'), + (0x222D, 'M', '∫∫∫'), + (0x222E, 'V'), + (0x222F, 'M', '∮∮'), + (0x2230, 'M', '∮∮∮'), + (0x2231, 'V'), + (0x2260, '3'), + (0x2261, 'V'), + (0x226E, '3'), + (0x2270, 'V'), + (0x2329, 'M', '〈'), + (0x232A, 'M', '〉'), + (0x232B, 'V'), + (0x2427, 'X'), + (0x2440, 'V'), + (0x244B, 'X'), + (0x2460, 'M', '1'), + (0x2461, 'M', '2'), + (0x2462, 'M', '3'), + (0x2463, 'M', '4'), + (0x2464, 'M', '5'), + (0x2465, 'M', '6'), + (0x2466, 'M', '7'), + (0x2467, 'M', '8'), + (0x2468, 'M', '9'), + (0x2469, 'M', '10'), + (0x246A, 'M', '11'), + (0x246B, 'M', '12'), + (0x246C, 'M', '13'), + (0x246D, 'M', '14'), + (0x246E, 'M', '15'), + (0x246F, 'M', '16'), + (0x2470, 'M', '17'), + (0x2471, 'M', '18'), + (0x2472, 'M', '19'), + (0x2473, 'M', '20'), + (0x2474, '3', '(1)'), + (0x2475, '3', '(2)'), + (0x2476, '3', '(3)'), + (0x2477, '3', '(4)'), + (0x2478, '3', '(5)'), + (0x2479, '3', '(6)'), + (0x247A, '3', '(7)'), + (0x247B, '3', '(8)'), + (0x247C, '3', '(9)'), + (0x247D, '3', '(10)'), + (0x247E, '3', '(11)'), + (0x247F, '3', '(12)'), + (0x2480, '3', '(13)'), + (0x2481, '3', '(14)'), + (0x2482, '3', '(15)'), + (0x2483, '3', '(16)'), + (0x2484, '3', '(17)'), + (0x2485, '3', '(18)'), + (0x2486, '3', '(19)'), + (0x2487, '3', '(20)'), + (0x2488, 'X'), + (0x249C, '3', '(a)'), + (0x249D, '3', '(b)'), + (0x249E, '3', '(c)'), + (0x249F, '3', '(d)'), + (0x24A0, '3', '(e)'), + (0x24A1, '3', '(f)'), + (0x24A2, '3', '(g)'), + (0x24A3, '3', '(h)'), + (0x24A4, '3', '(i)'), + (0x24A5, '3', '(j)'), + (0x24A6, '3', '(k)'), + (0x24A7, '3', '(l)'), + (0x24A8, '3', '(m)'), + (0x24A9, '3', '(n)'), + (0x24AA, '3', '(o)'), + (0x24AB, '3', '(p)'), + (0x24AC, '3', '(q)'), + (0x24AD, '3', '(r)'), + (0x24AE, '3', '(s)'), + (0x24AF, '3', '(t)'), + (0x24B0, '3', '(u)'), + (0x24B1, '3', '(v)'), + (0x24B2, '3', '(w)'), + (0x24B3, '3', '(x)'), + (0x24B4, '3', '(y)'), + (0x24B5, '3', '(z)'), + (0x24B6, 'M', 'a'), + (0x24B7, 'M', 'b'), + (0x24B8, 'M', 'c'), + (0x24B9, 'M', 'd'), + (0x24BA, 'M', 'e'), + (0x24BB, 'M', 'f'), + (0x24BC, 'M', 'g'), + ] + +def _seg_24() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x24BD, 'M', 'h'), + (0x24BE, 'M', 'i'), + (0x24BF, 'M', 'j'), + (0x24C0, 'M', 'k'), + (0x24C1, 'M', 'l'), + (0x24C2, 'M', 'm'), + (0x24C3, 'M', 'n'), + (0x24C4, 'M', 'o'), + (0x24C5, 'M', 'p'), + (0x24C6, 'M', 'q'), + (0x24C7, 'M', 'r'), + (0x24C8, 'M', 's'), + (0x24C9, 'M', 't'), + (0x24CA, 'M', 'u'), + (0x24CB, 'M', 'v'), + (0x24CC, 'M', 'w'), + (0x24CD, 'M', 'x'), + (0x24CE, 'M', 'y'), + (0x24CF, 'M', 'z'), + (0x24D0, 'M', 'a'), + (0x24D1, 'M', 'b'), + (0x24D2, 'M', 'c'), + (0x24D3, 'M', 'd'), + (0x24D4, 'M', 'e'), + (0x24D5, 'M', 'f'), + (0x24D6, 'M', 'g'), + (0x24D7, 'M', 'h'), + (0x24D8, 'M', 'i'), + (0x24D9, 'M', 'j'), + (0x24DA, 'M', 'k'), + (0x24DB, 'M', 'l'), + (0x24DC, 'M', 'm'), + (0x24DD, 'M', 'n'), + (0x24DE, 'M', 'o'), + (0x24DF, 'M', 'p'), + (0x24E0, 'M', 'q'), + (0x24E1, 'M', 'r'), + (0x24E2, 'M', 's'), + (0x24E3, 'M', 't'), + (0x24E4, 'M', 'u'), + (0x24E5, 'M', 'v'), + (0x24E6, 'M', 'w'), + (0x24E7, 'M', 'x'), + (0x24E8, 'M', 'y'), + (0x24E9, 'M', 'z'), + (0x24EA, 'M', '0'), + (0x24EB, 'V'), + (0x2A0C, 'M', '∫∫∫∫'), + (0x2A0D, 'V'), + (0x2A74, '3', '::='), + (0x2A75, '3', '=='), + (0x2A76, '3', '==='), + (0x2A77, 'V'), + (0x2ADC, 'M', '⫝̸'), + (0x2ADD, 'V'), + (0x2B74, 'X'), + (0x2B76, 'V'), + (0x2B96, 'X'), + (0x2B97, 'V'), + (0x2C00, 'M', 'ⰰ'), + (0x2C01, 'M', 'ⰱ'), + (0x2C02, 'M', 'ⰲ'), + (0x2C03, 'M', 'ⰳ'), + (0x2C04, 'M', 'ⰴ'), + (0x2C05, 'M', 'ⰵ'), + (0x2C06, 'M', 'ⰶ'), + (0x2C07, 'M', 'ⰷ'), + (0x2C08, 'M', 'ⰸ'), + (0x2C09, 'M', 'ⰹ'), + (0x2C0A, 'M', 'ⰺ'), + (0x2C0B, 'M', 'ⰻ'), + (0x2C0C, 'M', 'ⰼ'), + (0x2C0D, 'M', 'ⰽ'), + (0x2C0E, 'M', 'ⰾ'), + (0x2C0F, 'M', 'ⰿ'), + (0x2C10, 'M', 'ⱀ'), + (0x2C11, 'M', 'ⱁ'), + (0x2C12, 'M', 'ⱂ'), + (0x2C13, 'M', 'ⱃ'), + (0x2C14, 'M', 'ⱄ'), + (0x2C15, 'M', 'ⱅ'), + (0x2C16, 'M', 'ⱆ'), + (0x2C17, 'M', 'ⱇ'), + (0x2C18, 'M', 'ⱈ'), + (0x2C19, 'M', 'ⱉ'), + (0x2C1A, 'M', 'ⱊ'), + (0x2C1B, 'M', 'ⱋ'), + (0x2C1C, 'M', 'ⱌ'), + (0x2C1D, 'M', 'ⱍ'), + (0x2C1E, 'M', 'ⱎ'), + (0x2C1F, 'M', 'ⱏ'), + (0x2C20, 'M', 'ⱐ'), + (0x2C21, 'M', 'ⱑ'), + (0x2C22, 'M', 'ⱒ'), + (0x2C23, 'M', 'ⱓ'), + (0x2C24, 'M', 'ⱔ'), + (0x2C25, 'M', 'ⱕ'), + (0x2C26, 'M', 'ⱖ'), + (0x2C27, 'M', 'ⱗ'), + (0x2C28, 'M', 'ⱘ'), + ] + +def _seg_25() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2C29, 'M', 'ⱙ'), + (0x2C2A, 'M', 'ⱚ'), + (0x2C2B, 'M', 'ⱛ'), + (0x2C2C, 'M', 'ⱜ'), + (0x2C2D, 'M', 'ⱝ'), + (0x2C2E, 'M', 'ⱞ'), + (0x2C2F, 'M', 'ⱟ'), + (0x2C30, 'V'), + (0x2C60, 'M', 'ⱡ'), + (0x2C61, 'V'), + (0x2C62, 'M', 'ɫ'), + (0x2C63, 'M', 'ᵽ'), + (0x2C64, 'M', 'ɽ'), + (0x2C65, 'V'), + (0x2C67, 'M', 'ⱨ'), + (0x2C68, 'V'), + (0x2C69, 'M', 'ⱪ'), + (0x2C6A, 'V'), + (0x2C6B, 'M', 'ⱬ'), + (0x2C6C, 'V'), + (0x2C6D, 'M', 'ɑ'), + (0x2C6E, 'M', 'ɱ'), + (0x2C6F, 'M', 'ɐ'), + (0x2C70, 'M', 'ɒ'), + (0x2C71, 'V'), + (0x2C72, 'M', 'ⱳ'), + (0x2C73, 'V'), + (0x2C75, 'M', 'ⱶ'), + (0x2C76, 'V'), + (0x2C7C, 'M', 'j'), + (0x2C7D, 'M', 'v'), + (0x2C7E, 'M', 'ȿ'), + (0x2C7F, 'M', 'ɀ'), + (0x2C80, 'M', 'ⲁ'), + (0x2C81, 'V'), + (0x2C82, 'M', 'ⲃ'), + (0x2C83, 'V'), + (0x2C84, 'M', 'ⲅ'), + (0x2C85, 'V'), + (0x2C86, 'M', 'ⲇ'), + (0x2C87, 'V'), + (0x2C88, 'M', 'ⲉ'), + (0x2C89, 'V'), + (0x2C8A, 'M', 'ⲋ'), + (0x2C8B, 'V'), + (0x2C8C, 'M', 'ⲍ'), + (0x2C8D, 'V'), + (0x2C8E, 'M', 'ⲏ'), + (0x2C8F, 'V'), + (0x2C90, 'M', 'ⲑ'), + (0x2C91, 'V'), + (0x2C92, 'M', 'ⲓ'), + (0x2C93, 'V'), + (0x2C94, 'M', 'ⲕ'), + (0x2C95, 'V'), + (0x2C96, 'M', 'ⲗ'), + (0x2C97, 'V'), + (0x2C98, 'M', 'ⲙ'), + (0x2C99, 'V'), + (0x2C9A, 'M', 'ⲛ'), + (0x2C9B, 'V'), + (0x2C9C, 'M', 'ⲝ'), + (0x2C9D, 'V'), + (0x2C9E, 'M', 'ⲟ'), + (0x2C9F, 'V'), + (0x2CA0, 'M', 'ⲡ'), + (0x2CA1, 'V'), + (0x2CA2, 'M', 'ⲣ'), + (0x2CA3, 'V'), + (0x2CA4, 'M', 'ⲥ'), + (0x2CA5, 'V'), + (0x2CA6, 'M', 'ⲧ'), + (0x2CA7, 'V'), + (0x2CA8, 'M', 'ⲩ'), + (0x2CA9, 'V'), + (0x2CAA, 'M', 'ⲫ'), + (0x2CAB, 'V'), + (0x2CAC, 'M', 'ⲭ'), + (0x2CAD, 'V'), + (0x2CAE, 'M', 'ⲯ'), + (0x2CAF, 'V'), + (0x2CB0, 'M', 'ⲱ'), + (0x2CB1, 'V'), + (0x2CB2, 'M', 'ⲳ'), + (0x2CB3, 'V'), + (0x2CB4, 'M', 'ⲵ'), + (0x2CB5, 'V'), + (0x2CB6, 'M', 'ⲷ'), + (0x2CB7, 'V'), + (0x2CB8, 'M', 'ⲹ'), + (0x2CB9, 'V'), + (0x2CBA, 'M', 'ⲻ'), + (0x2CBB, 'V'), + (0x2CBC, 'M', 'ⲽ'), + (0x2CBD, 'V'), + (0x2CBE, 'M', 'ⲿ'), + (0x2CBF, 'V'), + (0x2CC0, 'M', 'ⳁ'), + (0x2CC1, 'V'), + (0x2CC2, 'M', 'ⳃ'), + ] + +def _seg_26() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2CC3, 'V'), + (0x2CC4, 'M', 'ⳅ'), + (0x2CC5, 'V'), + (0x2CC6, 'M', 'ⳇ'), + (0x2CC7, 'V'), + (0x2CC8, 'M', 'ⳉ'), + (0x2CC9, 'V'), + (0x2CCA, 'M', 'ⳋ'), + (0x2CCB, 'V'), + (0x2CCC, 'M', 'ⳍ'), + (0x2CCD, 'V'), + (0x2CCE, 'M', 'ⳏ'), + (0x2CCF, 'V'), + (0x2CD0, 'M', 'ⳑ'), + (0x2CD1, 'V'), + (0x2CD2, 'M', 'ⳓ'), + (0x2CD3, 'V'), + (0x2CD4, 'M', 'ⳕ'), + (0x2CD5, 'V'), + (0x2CD6, 'M', 'ⳗ'), + (0x2CD7, 'V'), + (0x2CD8, 'M', 'ⳙ'), + (0x2CD9, 'V'), + (0x2CDA, 'M', 'ⳛ'), + (0x2CDB, 'V'), + (0x2CDC, 'M', 'ⳝ'), + (0x2CDD, 'V'), + (0x2CDE, 'M', 'ⳟ'), + (0x2CDF, 'V'), + (0x2CE0, 'M', 'ⳡ'), + (0x2CE1, 'V'), + (0x2CE2, 'M', 'ⳣ'), + (0x2CE3, 'V'), + (0x2CEB, 'M', 'ⳬ'), + (0x2CEC, 'V'), + (0x2CED, 'M', 'ⳮ'), + (0x2CEE, 'V'), + (0x2CF2, 'M', 'ⳳ'), + (0x2CF3, 'V'), + (0x2CF4, 'X'), + (0x2CF9, 'V'), + (0x2D26, 'X'), + (0x2D27, 'V'), + (0x2D28, 'X'), + (0x2D2D, 'V'), + (0x2D2E, 'X'), + (0x2D30, 'V'), + (0x2D68, 'X'), + (0x2D6F, 'M', 'ⵡ'), + (0x2D70, 'V'), + (0x2D71, 'X'), + (0x2D7F, 'V'), + (0x2D97, 'X'), + (0x2DA0, 'V'), + (0x2DA7, 'X'), + (0x2DA8, 'V'), + (0x2DAF, 'X'), + (0x2DB0, 'V'), + (0x2DB7, 'X'), + (0x2DB8, 'V'), + (0x2DBF, 'X'), + (0x2DC0, 'V'), + (0x2DC7, 'X'), + (0x2DC8, 'V'), + (0x2DCF, 'X'), + (0x2DD0, 'V'), + (0x2DD7, 'X'), + (0x2DD8, 'V'), + (0x2DDF, 'X'), + (0x2DE0, 'V'), + (0x2E5E, 'X'), + (0x2E80, 'V'), + (0x2E9A, 'X'), + (0x2E9B, 'V'), + (0x2E9F, 'M', '母'), + (0x2EA0, 'V'), + (0x2EF3, 'M', '龟'), + (0x2EF4, 'X'), + (0x2F00, 'M', '一'), + (0x2F01, 'M', '丨'), + (0x2F02, 'M', '丶'), + (0x2F03, 'M', '丿'), + (0x2F04, 'M', '乙'), + (0x2F05, 'M', '亅'), + (0x2F06, 'M', '二'), + (0x2F07, 'M', '亠'), + (0x2F08, 'M', '人'), + (0x2F09, 'M', '儿'), + (0x2F0A, 'M', '入'), + (0x2F0B, 'M', '八'), + (0x2F0C, 'M', '冂'), + (0x2F0D, 'M', '冖'), + (0x2F0E, 'M', '冫'), + (0x2F0F, 'M', '几'), + (0x2F10, 'M', '凵'), + (0x2F11, 'M', '刀'), + (0x2F12, 'M', '力'), + (0x2F13, 'M', '勹'), + (0x2F14, 'M', '匕'), + (0x2F15, 'M', '匚'), + ] + +def _seg_27() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F16, 'M', '匸'), + (0x2F17, 'M', '十'), + (0x2F18, 'M', '卜'), + (0x2F19, 'M', '卩'), + (0x2F1A, 'M', '厂'), + (0x2F1B, 'M', '厶'), + (0x2F1C, 'M', '又'), + (0x2F1D, 'M', '口'), + (0x2F1E, 'M', '囗'), + (0x2F1F, 'M', '土'), + (0x2F20, 'M', '士'), + (0x2F21, 'M', '夂'), + (0x2F22, 'M', '夊'), + (0x2F23, 'M', '夕'), + (0x2F24, 'M', '大'), + (0x2F25, 'M', '女'), + (0x2F26, 'M', '子'), + (0x2F27, 'M', '宀'), + (0x2F28, 'M', '寸'), + (0x2F29, 'M', '小'), + (0x2F2A, 'M', '尢'), + (0x2F2B, 'M', '尸'), + (0x2F2C, 'M', '屮'), + (0x2F2D, 'M', '山'), + (0x2F2E, 'M', '巛'), + (0x2F2F, 'M', '工'), + (0x2F30, 'M', '己'), + (0x2F31, 'M', '巾'), + (0x2F32, 'M', '干'), + (0x2F33, 'M', '幺'), + (0x2F34, 'M', '广'), + (0x2F35, 'M', '廴'), + (0x2F36, 'M', '廾'), + (0x2F37, 'M', '弋'), + (0x2F38, 'M', '弓'), + (0x2F39, 'M', '彐'), + (0x2F3A, 'M', '彡'), + (0x2F3B, 'M', '彳'), + (0x2F3C, 'M', '心'), + (0x2F3D, 'M', '戈'), + (0x2F3E, 'M', '戶'), + (0x2F3F, 'M', '手'), + (0x2F40, 'M', '支'), + (0x2F41, 'M', '攴'), + (0x2F42, 'M', '文'), + (0x2F43, 'M', '斗'), + (0x2F44, 'M', '斤'), + (0x2F45, 'M', '方'), + (0x2F46, 'M', '无'), + (0x2F47, 'M', '日'), + (0x2F48, 'M', '曰'), + (0x2F49, 'M', '月'), + (0x2F4A, 'M', '木'), + (0x2F4B, 'M', '欠'), + (0x2F4C, 'M', '止'), + (0x2F4D, 'M', '歹'), + (0x2F4E, 'M', '殳'), + (0x2F4F, 'M', '毋'), + (0x2F50, 'M', '比'), + (0x2F51, 'M', '毛'), + (0x2F52, 'M', '氏'), + (0x2F53, 'M', '气'), + (0x2F54, 'M', '水'), + (0x2F55, 'M', '火'), + (0x2F56, 'M', '爪'), + (0x2F57, 'M', '父'), + (0x2F58, 'M', '爻'), + (0x2F59, 'M', '爿'), + (0x2F5A, 'M', '片'), + (0x2F5B, 'M', '牙'), + (0x2F5C, 'M', '牛'), + (0x2F5D, 'M', '犬'), + (0x2F5E, 'M', '玄'), + (0x2F5F, 'M', '玉'), + (0x2F60, 'M', '瓜'), + (0x2F61, 'M', '瓦'), + (0x2F62, 'M', '甘'), + (0x2F63, 'M', '生'), + (0x2F64, 'M', '用'), + (0x2F65, 'M', '田'), + (0x2F66, 'M', '疋'), + (0x2F67, 'M', '疒'), + (0x2F68, 'M', '癶'), + (0x2F69, 'M', '白'), + (0x2F6A, 'M', '皮'), + (0x2F6B, 'M', '皿'), + (0x2F6C, 'M', '目'), + (0x2F6D, 'M', '矛'), + (0x2F6E, 'M', '矢'), + (0x2F6F, 'M', '石'), + (0x2F70, 'M', '示'), + (0x2F71, 'M', '禸'), + (0x2F72, 'M', '禾'), + (0x2F73, 'M', '穴'), + (0x2F74, 'M', '立'), + (0x2F75, 'M', '竹'), + (0x2F76, 'M', '米'), + (0x2F77, 'M', '糸'), + (0x2F78, 'M', '缶'), + (0x2F79, 'M', '网'), + ] + +def _seg_28() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F7A, 'M', '羊'), + (0x2F7B, 'M', '羽'), + (0x2F7C, 'M', '老'), + (0x2F7D, 'M', '而'), + (0x2F7E, 'M', '耒'), + (0x2F7F, 'M', '耳'), + (0x2F80, 'M', '聿'), + (0x2F81, 'M', '肉'), + (0x2F82, 'M', '臣'), + (0x2F83, 'M', '自'), + (0x2F84, 'M', '至'), + (0x2F85, 'M', '臼'), + (0x2F86, 'M', '舌'), + (0x2F87, 'M', '舛'), + (0x2F88, 'M', '舟'), + (0x2F89, 'M', '艮'), + (0x2F8A, 'M', '色'), + (0x2F8B, 'M', '艸'), + (0x2F8C, 'M', '虍'), + (0x2F8D, 'M', '虫'), + (0x2F8E, 'M', '血'), + (0x2F8F, 'M', '行'), + (0x2F90, 'M', '衣'), + (0x2F91, 'M', '襾'), + (0x2F92, 'M', '見'), + (0x2F93, 'M', '角'), + (0x2F94, 'M', '言'), + (0x2F95, 'M', '谷'), + (0x2F96, 'M', '豆'), + (0x2F97, 'M', '豕'), + (0x2F98, 'M', '豸'), + (0x2F99, 'M', '貝'), + (0x2F9A, 'M', '赤'), + (0x2F9B, 'M', '走'), + (0x2F9C, 'M', '足'), + (0x2F9D, 'M', '身'), + (0x2F9E, 'M', '車'), + (0x2F9F, 'M', '辛'), + (0x2FA0, 'M', '辰'), + (0x2FA1, 'M', '辵'), + (0x2FA2, 'M', '邑'), + (0x2FA3, 'M', '酉'), + (0x2FA4, 'M', '釆'), + (0x2FA5, 'M', '里'), + (0x2FA6, 'M', '金'), + (0x2FA7, 'M', '長'), + (0x2FA8, 'M', '門'), + (0x2FA9, 'M', '阜'), + (0x2FAA, 'M', '隶'), + (0x2FAB, 'M', '隹'), + (0x2FAC, 'M', '雨'), + (0x2FAD, 'M', '靑'), + (0x2FAE, 'M', '非'), + (0x2FAF, 'M', '面'), + (0x2FB0, 'M', '革'), + (0x2FB1, 'M', '韋'), + (0x2FB2, 'M', '韭'), + (0x2FB3, 'M', '音'), + (0x2FB4, 'M', '頁'), + (0x2FB5, 'M', '風'), + (0x2FB6, 'M', '飛'), + (0x2FB7, 'M', '食'), + (0x2FB8, 'M', '首'), + (0x2FB9, 'M', '香'), + (0x2FBA, 'M', '馬'), + (0x2FBB, 'M', '骨'), + (0x2FBC, 'M', '高'), + (0x2FBD, 'M', '髟'), + (0x2FBE, 'M', '鬥'), + (0x2FBF, 'M', '鬯'), + (0x2FC0, 'M', '鬲'), + (0x2FC1, 'M', '鬼'), + (0x2FC2, 'M', '魚'), + (0x2FC3, 'M', '鳥'), + (0x2FC4, 'M', '鹵'), + (0x2FC5, 'M', '鹿'), + (0x2FC6, 'M', '麥'), + (0x2FC7, 'M', '麻'), + (0x2FC8, 'M', '黃'), + (0x2FC9, 'M', '黍'), + (0x2FCA, 'M', '黑'), + (0x2FCB, 'M', '黹'), + (0x2FCC, 'M', '黽'), + (0x2FCD, 'M', '鼎'), + (0x2FCE, 'M', '鼓'), + (0x2FCF, 'M', '鼠'), + (0x2FD0, 'M', '鼻'), + (0x2FD1, 'M', '齊'), + (0x2FD2, 'M', '齒'), + (0x2FD3, 'M', '龍'), + (0x2FD4, 'M', '龜'), + (0x2FD5, 'M', '龠'), + (0x2FD6, 'X'), + (0x3000, '3', ' '), + (0x3001, 'V'), + (0x3002, 'M', '.'), + (0x3003, 'V'), + (0x3036, 'M', '〒'), + (0x3037, 'V'), + (0x3038, 'M', '十'), + ] + +def _seg_29() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3039, 'M', '卄'), + (0x303A, 'M', '卅'), + (0x303B, 'V'), + (0x3040, 'X'), + (0x3041, 'V'), + (0x3097, 'X'), + (0x3099, 'V'), + (0x309B, '3', ' ゙'), + (0x309C, '3', ' ゚'), + (0x309D, 'V'), + (0x309F, 'M', 'より'), + (0x30A0, 'V'), + (0x30FF, 'M', 'コト'), + (0x3100, 'X'), + (0x3105, 'V'), + (0x3130, 'X'), + (0x3131, 'M', 'ᄀ'), + (0x3132, 'M', 'ᄁ'), + (0x3133, 'M', 'ᆪ'), + (0x3134, 'M', 'ᄂ'), + (0x3135, 'M', 'ᆬ'), + (0x3136, 'M', 'ᆭ'), + (0x3137, 'M', 'ᄃ'), + (0x3138, 'M', 'ᄄ'), + (0x3139, 'M', 'ᄅ'), + (0x313A, 'M', 'ᆰ'), + (0x313B, 'M', 'ᆱ'), + (0x313C, 'M', 'ᆲ'), + (0x313D, 'M', 'ᆳ'), + (0x313E, 'M', 'ᆴ'), + (0x313F, 'M', 'ᆵ'), + (0x3140, 'M', 'ᄚ'), + (0x3141, 'M', 'ᄆ'), + (0x3142, 'M', 'ᄇ'), + (0x3143, 'M', 'ᄈ'), + (0x3144, 'M', 'ᄡ'), + (0x3145, 'M', 'ᄉ'), + (0x3146, 'M', 'ᄊ'), + (0x3147, 'M', 'ᄋ'), + (0x3148, 'M', 'ᄌ'), + (0x3149, 'M', 'ᄍ'), + (0x314A, 'M', 'ᄎ'), + (0x314B, 'M', 'ᄏ'), + (0x314C, 'M', 'ᄐ'), + (0x314D, 'M', 'ᄑ'), + (0x314E, 'M', 'ᄒ'), + (0x314F, 'M', 'ᅡ'), + (0x3150, 'M', 'ᅢ'), + (0x3151, 'M', 'ᅣ'), + (0x3152, 'M', 'ᅤ'), + (0x3153, 'M', 'ᅥ'), + (0x3154, 'M', 'ᅦ'), + (0x3155, 'M', 'ᅧ'), + (0x3156, 'M', 'ᅨ'), + (0x3157, 'M', 'ᅩ'), + (0x3158, 'M', 'ᅪ'), + (0x3159, 'M', 'ᅫ'), + (0x315A, 'M', 'ᅬ'), + (0x315B, 'M', 'ᅭ'), + (0x315C, 'M', 'ᅮ'), + (0x315D, 'M', 'ᅯ'), + (0x315E, 'M', 'ᅰ'), + (0x315F, 'M', 'ᅱ'), + (0x3160, 'M', 'ᅲ'), + (0x3161, 'M', 'ᅳ'), + (0x3162, 'M', 'ᅴ'), + (0x3163, 'M', 'ᅵ'), + (0x3164, 'X'), + (0x3165, 'M', 'ᄔ'), + (0x3166, 'M', 'ᄕ'), + (0x3167, 'M', 'ᇇ'), + (0x3168, 'M', 'ᇈ'), + (0x3169, 'M', 'ᇌ'), + (0x316A, 'M', 'ᇎ'), + (0x316B, 'M', 'ᇓ'), + (0x316C, 'M', 'ᇗ'), + (0x316D, 'M', 'ᇙ'), + (0x316E, 'M', 'ᄜ'), + (0x316F, 'M', 'ᇝ'), + (0x3170, 'M', 'ᇟ'), + (0x3171, 'M', 'ᄝ'), + (0x3172, 'M', 'ᄞ'), + (0x3173, 'M', 'ᄠ'), + (0x3174, 'M', 'ᄢ'), + (0x3175, 'M', 'ᄣ'), + (0x3176, 'M', 'ᄧ'), + (0x3177, 'M', 'ᄩ'), + (0x3178, 'M', 'ᄫ'), + (0x3179, 'M', 'ᄬ'), + (0x317A, 'M', 'ᄭ'), + (0x317B, 'M', 'ᄮ'), + (0x317C, 'M', 'ᄯ'), + (0x317D, 'M', 'ᄲ'), + (0x317E, 'M', 'ᄶ'), + (0x317F, 'M', 'ᅀ'), + (0x3180, 'M', 'ᅇ'), + (0x3181, 'M', 'ᅌ'), + (0x3182, 'M', 'ᇱ'), + (0x3183, 'M', 'ᇲ'), + (0x3184, 'M', 'ᅗ'), + ] + +def _seg_30() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3185, 'M', 'ᅘ'), + (0x3186, 'M', 'ᅙ'), + (0x3187, 'M', 'ᆄ'), + (0x3188, 'M', 'ᆅ'), + (0x3189, 'M', 'ᆈ'), + (0x318A, 'M', 'ᆑ'), + (0x318B, 'M', 'ᆒ'), + (0x318C, 'M', 'ᆔ'), + (0x318D, 'M', 'ᆞ'), + (0x318E, 'M', 'ᆡ'), + (0x318F, 'X'), + (0x3190, 'V'), + (0x3192, 'M', '一'), + (0x3193, 'M', '二'), + (0x3194, 'M', '三'), + (0x3195, 'M', '四'), + (0x3196, 'M', '上'), + (0x3197, 'M', '中'), + (0x3198, 'M', '下'), + (0x3199, 'M', '甲'), + (0x319A, 'M', '乙'), + (0x319B, 'M', '丙'), + (0x319C, 'M', '丁'), + (0x319D, 'M', '天'), + (0x319E, 'M', '地'), + (0x319F, 'M', '人'), + (0x31A0, 'V'), + (0x31E4, 'X'), + (0x31F0, 'V'), + (0x3200, '3', '(ᄀ)'), + (0x3201, '3', '(ᄂ)'), + (0x3202, '3', '(ᄃ)'), + (0x3203, '3', '(ᄅ)'), + (0x3204, '3', '(ᄆ)'), + (0x3205, '3', '(ᄇ)'), + (0x3206, '3', '(ᄉ)'), + (0x3207, '3', '(ᄋ)'), + (0x3208, '3', '(ᄌ)'), + (0x3209, '3', '(ᄎ)'), + (0x320A, '3', '(ᄏ)'), + (0x320B, '3', '(ᄐ)'), + (0x320C, '3', '(ᄑ)'), + (0x320D, '3', '(ᄒ)'), + (0x320E, '3', '(가)'), + (0x320F, '3', '(나)'), + (0x3210, '3', '(다)'), + (0x3211, '3', '(라)'), + (0x3212, '3', '(마)'), + (0x3213, '3', '(바)'), + (0x3214, '3', '(사)'), + (0x3215, '3', '(아)'), + (0x3216, '3', '(자)'), + (0x3217, '3', '(차)'), + (0x3218, '3', '(카)'), + (0x3219, '3', '(타)'), + (0x321A, '3', '(파)'), + (0x321B, '3', '(하)'), + (0x321C, '3', '(주)'), + (0x321D, '3', '(오전)'), + (0x321E, '3', '(오후)'), + (0x321F, 'X'), + (0x3220, '3', '(一)'), + (0x3221, '3', '(二)'), + (0x3222, '3', '(三)'), + (0x3223, '3', '(四)'), + (0x3224, '3', '(五)'), + (0x3225, '3', '(六)'), + (0x3226, '3', '(七)'), + (0x3227, '3', '(八)'), + (0x3228, '3', '(九)'), + (0x3229, '3', '(十)'), + (0x322A, '3', '(月)'), + (0x322B, '3', '(火)'), + (0x322C, '3', '(水)'), + (0x322D, '3', '(木)'), + (0x322E, '3', '(金)'), + (0x322F, '3', '(土)'), + (0x3230, '3', '(日)'), + (0x3231, '3', '(株)'), + (0x3232, '3', '(有)'), + (0x3233, '3', '(社)'), + (0x3234, '3', '(名)'), + (0x3235, '3', '(特)'), + (0x3236, '3', '(財)'), + (0x3237, '3', '(祝)'), + (0x3238, '3', '(労)'), + (0x3239, '3', '(代)'), + (0x323A, '3', '(呼)'), + (0x323B, '3', '(学)'), + (0x323C, '3', '(監)'), + (0x323D, '3', '(企)'), + (0x323E, '3', '(資)'), + (0x323F, '3', '(協)'), + (0x3240, '3', '(祭)'), + (0x3241, '3', '(休)'), + (0x3242, '3', '(自)'), + (0x3243, '3', '(至)'), + (0x3244, 'M', '問'), + (0x3245, 'M', '幼'), + (0x3246, 'M', '文'), + ] + +def _seg_31() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3247, 'M', '箏'), + (0x3248, 'V'), + (0x3250, 'M', 'pte'), + (0x3251, 'M', '21'), + (0x3252, 'M', '22'), + (0x3253, 'M', '23'), + (0x3254, 'M', '24'), + (0x3255, 'M', '25'), + (0x3256, 'M', '26'), + (0x3257, 'M', '27'), + (0x3258, 'M', '28'), + (0x3259, 'M', '29'), + (0x325A, 'M', '30'), + (0x325B, 'M', '31'), + (0x325C, 'M', '32'), + (0x325D, 'M', '33'), + (0x325E, 'M', '34'), + (0x325F, 'M', '35'), + (0x3260, 'M', 'ᄀ'), + (0x3261, 'M', 'ᄂ'), + (0x3262, 'M', 'ᄃ'), + (0x3263, 'M', 'ᄅ'), + (0x3264, 'M', 'ᄆ'), + (0x3265, 'M', 'ᄇ'), + (0x3266, 'M', 'ᄉ'), + (0x3267, 'M', 'ᄋ'), + (0x3268, 'M', 'ᄌ'), + (0x3269, 'M', 'ᄎ'), + (0x326A, 'M', 'ᄏ'), + (0x326B, 'M', 'ᄐ'), + (0x326C, 'M', 'ᄑ'), + (0x326D, 'M', 'ᄒ'), + (0x326E, 'M', '가'), + (0x326F, 'M', '나'), + (0x3270, 'M', '다'), + (0x3271, 'M', '라'), + (0x3272, 'M', '마'), + (0x3273, 'M', '바'), + (0x3274, 'M', '사'), + (0x3275, 'M', '아'), + (0x3276, 'M', '자'), + (0x3277, 'M', '차'), + (0x3278, 'M', '카'), + (0x3279, 'M', '타'), + (0x327A, 'M', '파'), + (0x327B, 'M', '하'), + (0x327C, 'M', '참고'), + (0x327D, 'M', '주의'), + (0x327E, 'M', '우'), + (0x327F, 'V'), + (0x3280, 'M', '一'), + (0x3281, 'M', '二'), + (0x3282, 'M', '三'), + (0x3283, 'M', '四'), + (0x3284, 'M', '五'), + (0x3285, 'M', '六'), + (0x3286, 'M', '七'), + (0x3287, 'M', '八'), + (0x3288, 'M', '九'), + (0x3289, 'M', '十'), + (0x328A, 'M', '月'), + (0x328B, 'M', '火'), + (0x328C, 'M', '水'), + (0x328D, 'M', '木'), + (0x328E, 'M', '金'), + (0x328F, 'M', '土'), + (0x3290, 'M', '日'), + (0x3291, 'M', '株'), + (0x3292, 'M', '有'), + (0x3293, 'M', '社'), + (0x3294, 'M', '名'), + (0x3295, 'M', '特'), + (0x3296, 'M', '財'), + (0x3297, 'M', '祝'), + (0x3298, 'M', '労'), + (0x3299, 'M', '秘'), + (0x329A, 'M', '男'), + (0x329B, 'M', '女'), + (0x329C, 'M', '適'), + (0x329D, 'M', '優'), + (0x329E, 'M', '印'), + (0x329F, 'M', '注'), + (0x32A0, 'M', '項'), + (0x32A1, 'M', '休'), + (0x32A2, 'M', '写'), + (0x32A3, 'M', '正'), + (0x32A4, 'M', '上'), + (0x32A5, 'M', '中'), + (0x32A6, 'M', '下'), + (0x32A7, 'M', '左'), + (0x32A8, 'M', '右'), + (0x32A9, 'M', '医'), + (0x32AA, 'M', '宗'), + (0x32AB, 'M', '学'), + (0x32AC, 'M', '監'), + (0x32AD, 'M', '企'), + (0x32AE, 'M', '資'), + (0x32AF, 'M', '協'), + (0x32B0, 'M', '夜'), + (0x32B1, 'M', '36'), + ] + +def _seg_32() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x32B2, 'M', '37'), + (0x32B3, 'M', '38'), + (0x32B4, 'M', '39'), + (0x32B5, 'M', '40'), + (0x32B6, 'M', '41'), + (0x32B7, 'M', '42'), + (0x32B8, 'M', '43'), + (0x32B9, 'M', '44'), + (0x32BA, 'M', '45'), + (0x32BB, 'M', '46'), + (0x32BC, 'M', '47'), + (0x32BD, 'M', '48'), + (0x32BE, 'M', '49'), + (0x32BF, 'M', '50'), + (0x32C0, 'M', '1月'), + (0x32C1, 'M', '2月'), + (0x32C2, 'M', '3月'), + (0x32C3, 'M', '4月'), + (0x32C4, 'M', '5月'), + (0x32C5, 'M', '6月'), + (0x32C6, 'M', '7月'), + (0x32C7, 'M', '8月'), + (0x32C8, 'M', '9月'), + (0x32C9, 'M', '10月'), + (0x32CA, 'M', '11月'), + (0x32CB, 'M', '12月'), + (0x32CC, 'M', 'hg'), + (0x32CD, 'M', 'erg'), + (0x32CE, 'M', 'ev'), + (0x32CF, 'M', 'ltd'), + (0x32D0, 'M', 'ア'), + (0x32D1, 'M', 'イ'), + (0x32D2, 'M', 'ウ'), + (0x32D3, 'M', 'エ'), + (0x32D4, 'M', 'オ'), + (0x32D5, 'M', 'カ'), + (0x32D6, 'M', 'キ'), + (0x32D7, 'M', 'ク'), + (0x32D8, 'M', 'ケ'), + (0x32D9, 'M', 'コ'), + (0x32DA, 'M', 'サ'), + (0x32DB, 'M', 'シ'), + (0x32DC, 'M', 'ス'), + (0x32DD, 'M', 'セ'), + (0x32DE, 'M', 'ソ'), + (0x32DF, 'M', 'タ'), + (0x32E0, 'M', 'チ'), + (0x32E1, 'M', 'ツ'), + (0x32E2, 'M', 'テ'), + (0x32E3, 'M', 'ト'), + (0x32E4, 'M', 'ナ'), + (0x32E5, 'M', 'ニ'), + (0x32E6, 'M', 'ヌ'), + (0x32E7, 'M', 'ネ'), + (0x32E8, 'M', 'ノ'), + (0x32E9, 'M', 'ハ'), + (0x32EA, 'M', 'ヒ'), + (0x32EB, 'M', 'フ'), + (0x32EC, 'M', 'ヘ'), + (0x32ED, 'M', 'ホ'), + (0x32EE, 'M', 'マ'), + (0x32EF, 'M', 'ミ'), + (0x32F0, 'M', 'ム'), + (0x32F1, 'M', 'メ'), + (0x32F2, 'M', 'モ'), + (0x32F3, 'M', 'ヤ'), + (0x32F4, 'M', 'ユ'), + (0x32F5, 'M', 'ヨ'), + (0x32F6, 'M', 'ラ'), + (0x32F7, 'M', 'リ'), + (0x32F8, 'M', 'ル'), + (0x32F9, 'M', 'レ'), + (0x32FA, 'M', 'ロ'), + (0x32FB, 'M', 'ワ'), + (0x32FC, 'M', 'ヰ'), + (0x32FD, 'M', 'ヱ'), + (0x32FE, 'M', 'ヲ'), + (0x32FF, 'M', '令和'), + (0x3300, 'M', 'アパート'), + (0x3301, 'M', 'アルファ'), + (0x3302, 'M', 'アンペア'), + (0x3303, 'M', 'アール'), + (0x3304, 'M', 'イニング'), + (0x3305, 'M', 'インチ'), + (0x3306, 'M', 'ウォン'), + (0x3307, 'M', 'エスクード'), + (0x3308, 'M', 'エーカー'), + (0x3309, 'M', 'オンス'), + (0x330A, 'M', 'オーム'), + (0x330B, 'M', 'カイリ'), + (0x330C, 'M', 'カラット'), + (0x330D, 'M', 'カロリー'), + (0x330E, 'M', 'ガロン'), + (0x330F, 'M', 'ガンマ'), + (0x3310, 'M', 'ギガ'), + (0x3311, 'M', 'ギニー'), + (0x3312, 'M', 'キュリー'), + (0x3313, 'M', 'ギルダー'), + (0x3314, 'M', 'キロ'), + (0x3315, 'M', 'キログラム'), + ] + +def _seg_33() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3316, 'M', 'キロメートル'), + (0x3317, 'M', 'キロワット'), + (0x3318, 'M', 'グラム'), + (0x3319, 'M', 'グラムトン'), + (0x331A, 'M', 'クルゼイロ'), + (0x331B, 'M', 'クローネ'), + (0x331C, 'M', 'ケース'), + (0x331D, 'M', 'コルナ'), + (0x331E, 'M', 'コーポ'), + (0x331F, 'M', 'サイクル'), + (0x3320, 'M', 'サンチーム'), + (0x3321, 'M', 'シリング'), + (0x3322, 'M', 'センチ'), + (0x3323, 'M', 'セント'), + (0x3324, 'M', 'ダース'), + (0x3325, 'M', 'デシ'), + (0x3326, 'M', 'ドル'), + (0x3327, 'M', 'トン'), + (0x3328, 'M', 'ナノ'), + (0x3329, 'M', 'ノット'), + (0x332A, 'M', 'ハイツ'), + (0x332B, 'M', 'パーセント'), + (0x332C, 'M', 'パーツ'), + (0x332D, 'M', 'バーレル'), + (0x332E, 'M', 'ピアストル'), + (0x332F, 'M', 'ピクル'), + (0x3330, 'M', 'ピコ'), + (0x3331, 'M', 'ビル'), + (0x3332, 'M', 'ファラッド'), + (0x3333, 'M', 'フィート'), + (0x3334, 'M', 'ブッシェル'), + (0x3335, 'M', 'フラン'), + (0x3336, 'M', 'ヘクタール'), + (0x3337, 'M', 'ペソ'), + (0x3338, 'M', 'ペニヒ'), + (0x3339, 'M', 'ヘルツ'), + (0x333A, 'M', 'ペンス'), + (0x333B, 'M', 'ページ'), + (0x333C, 'M', 'ベータ'), + (0x333D, 'M', 'ポイント'), + (0x333E, 'M', 'ボルト'), + (0x333F, 'M', 'ホン'), + (0x3340, 'M', 'ポンド'), + (0x3341, 'M', 'ホール'), + (0x3342, 'M', 'ホーン'), + (0x3343, 'M', 'マイクロ'), + (0x3344, 'M', 'マイル'), + (0x3345, 'M', 'マッハ'), + (0x3346, 'M', 'マルク'), + (0x3347, 'M', 'マンション'), + (0x3348, 'M', 'ミクロン'), + (0x3349, 'M', 'ミリ'), + (0x334A, 'M', 'ミリバール'), + (0x334B, 'M', 'メガ'), + (0x334C, 'M', 'メガトン'), + (0x334D, 'M', 'メートル'), + (0x334E, 'M', 'ヤード'), + (0x334F, 'M', 'ヤール'), + (0x3350, 'M', 'ユアン'), + (0x3351, 'M', 'リットル'), + (0x3352, 'M', 'リラ'), + (0x3353, 'M', 'ルピー'), + (0x3354, 'M', 'ルーブル'), + (0x3355, 'M', 'レム'), + (0x3356, 'M', 'レントゲン'), + (0x3357, 'M', 'ワット'), + (0x3358, 'M', '0点'), + (0x3359, 'M', '1点'), + (0x335A, 'M', '2点'), + (0x335B, 'M', '3点'), + (0x335C, 'M', '4点'), + (0x335D, 'M', '5点'), + (0x335E, 'M', '6点'), + (0x335F, 'M', '7点'), + (0x3360, 'M', '8点'), + (0x3361, 'M', '9点'), + (0x3362, 'M', '10点'), + (0x3363, 'M', '11点'), + (0x3364, 'M', '12点'), + (0x3365, 'M', '13点'), + (0x3366, 'M', '14点'), + (0x3367, 'M', '15点'), + (0x3368, 'M', '16点'), + (0x3369, 'M', '17点'), + (0x336A, 'M', '18点'), + (0x336B, 'M', '19点'), + (0x336C, 'M', '20点'), + (0x336D, 'M', '21点'), + (0x336E, 'M', '22点'), + (0x336F, 'M', '23点'), + (0x3370, 'M', '24点'), + (0x3371, 'M', 'hpa'), + (0x3372, 'M', 'da'), + (0x3373, 'M', 'au'), + (0x3374, 'M', 'bar'), + (0x3375, 'M', 'ov'), + (0x3376, 'M', 'pc'), + (0x3377, 'M', 'dm'), + (0x3378, 'M', 'dm2'), + (0x3379, 'M', 'dm3'), + ] + +def _seg_34() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x337A, 'M', 'iu'), + (0x337B, 'M', '平成'), + (0x337C, 'M', '昭和'), + (0x337D, 'M', '大正'), + (0x337E, 'M', '明治'), + (0x337F, 'M', '株式会社'), + (0x3380, 'M', 'pa'), + (0x3381, 'M', 'na'), + (0x3382, 'M', 'μa'), + (0x3383, 'M', 'ma'), + (0x3384, 'M', 'ka'), + (0x3385, 'M', 'kb'), + (0x3386, 'M', 'mb'), + (0x3387, 'M', 'gb'), + (0x3388, 'M', 'cal'), + (0x3389, 'M', 'kcal'), + (0x338A, 'M', 'pf'), + (0x338B, 'M', 'nf'), + (0x338C, 'M', 'μf'), + (0x338D, 'M', 'μg'), + (0x338E, 'M', 'mg'), + (0x338F, 'M', 'kg'), + (0x3390, 'M', 'hz'), + (0x3391, 'M', 'khz'), + (0x3392, 'M', 'mhz'), + (0x3393, 'M', 'ghz'), + (0x3394, 'M', 'thz'), + (0x3395, 'M', 'μl'), + (0x3396, 'M', 'ml'), + (0x3397, 'M', 'dl'), + (0x3398, 'M', 'kl'), + (0x3399, 'M', 'fm'), + (0x339A, 'M', 'nm'), + (0x339B, 'M', 'μm'), + (0x339C, 'M', 'mm'), + (0x339D, 'M', 'cm'), + (0x339E, 'M', 'km'), + (0x339F, 'M', 'mm2'), + (0x33A0, 'M', 'cm2'), + (0x33A1, 'M', 'm2'), + (0x33A2, 'M', 'km2'), + (0x33A3, 'M', 'mm3'), + (0x33A4, 'M', 'cm3'), + (0x33A5, 'M', 'm3'), + (0x33A6, 'M', 'km3'), + (0x33A7, 'M', 'm∕s'), + (0x33A8, 'M', 'm∕s2'), + (0x33A9, 'M', 'pa'), + (0x33AA, 'M', 'kpa'), + (0x33AB, 'M', 'mpa'), + (0x33AC, 'M', 'gpa'), + (0x33AD, 'M', 'rad'), + (0x33AE, 'M', 'rad∕s'), + (0x33AF, 'M', 'rad∕s2'), + (0x33B0, 'M', 'ps'), + (0x33B1, 'M', 'ns'), + (0x33B2, 'M', 'μs'), + (0x33B3, 'M', 'ms'), + (0x33B4, 'M', 'pv'), + (0x33B5, 'M', 'nv'), + (0x33B6, 'M', 'μv'), + (0x33B7, 'M', 'mv'), + (0x33B8, 'M', 'kv'), + (0x33B9, 'M', 'mv'), + (0x33BA, 'M', 'pw'), + (0x33BB, 'M', 'nw'), + (0x33BC, 'M', 'μw'), + (0x33BD, 'M', 'mw'), + (0x33BE, 'M', 'kw'), + (0x33BF, 'M', 'mw'), + (0x33C0, 'M', 'kω'), + (0x33C1, 'M', 'mω'), + (0x33C2, 'X'), + (0x33C3, 'M', 'bq'), + (0x33C4, 'M', 'cc'), + (0x33C5, 'M', 'cd'), + (0x33C6, 'M', 'c∕kg'), + (0x33C7, 'X'), + (0x33C8, 'M', 'db'), + (0x33C9, 'M', 'gy'), + (0x33CA, 'M', 'ha'), + (0x33CB, 'M', 'hp'), + (0x33CC, 'M', 'in'), + (0x33CD, 'M', 'kk'), + (0x33CE, 'M', 'km'), + (0x33CF, 'M', 'kt'), + (0x33D0, 'M', 'lm'), + (0x33D1, 'M', 'ln'), + (0x33D2, 'M', 'log'), + (0x33D3, 'M', 'lx'), + (0x33D4, 'M', 'mb'), + (0x33D5, 'M', 'mil'), + (0x33D6, 'M', 'mol'), + (0x33D7, 'M', 'ph'), + (0x33D8, 'X'), + (0x33D9, 'M', 'ppm'), + (0x33DA, 'M', 'pr'), + (0x33DB, 'M', 'sr'), + (0x33DC, 'M', 'sv'), + (0x33DD, 'M', 'wb'), + ] + +def _seg_35() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x33DE, 'M', 'v∕m'), + (0x33DF, 'M', 'a∕m'), + (0x33E0, 'M', '1日'), + (0x33E1, 'M', '2日'), + (0x33E2, 'M', '3日'), + (0x33E3, 'M', '4日'), + (0x33E4, 'M', '5日'), + (0x33E5, 'M', '6日'), + (0x33E6, 'M', '7日'), + (0x33E7, 'M', '8日'), + (0x33E8, 'M', '9日'), + (0x33E9, 'M', '10日'), + (0x33EA, 'M', '11日'), + (0x33EB, 'M', '12日'), + (0x33EC, 'M', '13日'), + (0x33ED, 'M', '14日'), + (0x33EE, 'M', '15日'), + (0x33EF, 'M', '16日'), + (0x33F0, 'M', '17日'), + (0x33F1, 'M', '18日'), + (0x33F2, 'M', '19日'), + (0x33F3, 'M', '20日'), + (0x33F4, 'M', '21日'), + (0x33F5, 'M', '22日'), + (0x33F6, 'M', '23日'), + (0x33F7, 'M', '24日'), + (0x33F8, 'M', '25日'), + (0x33F9, 'M', '26日'), + (0x33FA, 'M', '27日'), + (0x33FB, 'M', '28日'), + (0x33FC, 'M', '29日'), + (0x33FD, 'M', '30日'), + (0x33FE, 'M', '31日'), + (0x33FF, 'M', 'gal'), + (0x3400, 'V'), + (0xA48D, 'X'), + (0xA490, 'V'), + (0xA4C7, 'X'), + (0xA4D0, 'V'), + (0xA62C, 'X'), + (0xA640, 'M', 'ꙁ'), + (0xA641, 'V'), + (0xA642, 'M', 'ꙃ'), + (0xA643, 'V'), + (0xA644, 'M', 'ꙅ'), + (0xA645, 'V'), + (0xA646, 'M', 'ꙇ'), + (0xA647, 'V'), + (0xA648, 'M', 'ꙉ'), + (0xA649, 'V'), + (0xA64A, 'M', 'ꙋ'), + (0xA64B, 'V'), + (0xA64C, 'M', 'ꙍ'), + (0xA64D, 'V'), + (0xA64E, 'M', 'ꙏ'), + (0xA64F, 'V'), + (0xA650, 'M', 'ꙑ'), + (0xA651, 'V'), + (0xA652, 'M', 'ꙓ'), + (0xA653, 'V'), + (0xA654, 'M', 'ꙕ'), + (0xA655, 'V'), + (0xA656, 'M', 'ꙗ'), + (0xA657, 'V'), + (0xA658, 'M', 'ꙙ'), + (0xA659, 'V'), + (0xA65A, 'M', 'ꙛ'), + (0xA65B, 'V'), + (0xA65C, 'M', 'ꙝ'), + (0xA65D, 'V'), + (0xA65E, 'M', 'ꙟ'), + (0xA65F, 'V'), + (0xA660, 'M', 'ꙡ'), + (0xA661, 'V'), + (0xA662, 'M', 'ꙣ'), + (0xA663, 'V'), + (0xA664, 'M', 'ꙥ'), + (0xA665, 'V'), + (0xA666, 'M', 'ꙧ'), + (0xA667, 'V'), + (0xA668, 'M', 'ꙩ'), + (0xA669, 'V'), + (0xA66A, 'M', 'ꙫ'), + (0xA66B, 'V'), + (0xA66C, 'M', 'ꙭ'), + (0xA66D, 'V'), + (0xA680, 'M', 'ꚁ'), + (0xA681, 'V'), + (0xA682, 'M', 'ꚃ'), + (0xA683, 'V'), + (0xA684, 'M', 'ꚅ'), + (0xA685, 'V'), + (0xA686, 'M', 'ꚇ'), + (0xA687, 'V'), + (0xA688, 'M', 'ꚉ'), + (0xA689, 'V'), + (0xA68A, 'M', 'ꚋ'), + (0xA68B, 'V'), + (0xA68C, 'M', 'ꚍ'), + (0xA68D, 'V'), + ] + +def _seg_36() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA68E, 'M', 'ꚏ'), + (0xA68F, 'V'), + (0xA690, 'M', 'ꚑ'), + (0xA691, 'V'), + (0xA692, 'M', 'ꚓ'), + (0xA693, 'V'), + (0xA694, 'M', 'ꚕ'), + (0xA695, 'V'), + (0xA696, 'M', 'ꚗ'), + (0xA697, 'V'), + (0xA698, 'M', 'ꚙ'), + (0xA699, 'V'), + (0xA69A, 'M', 'ꚛ'), + (0xA69B, 'V'), + (0xA69C, 'M', 'ъ'), + (0xA69D, 'M', 'ь'), + (0xA69E, 'V'), + (0xA6F8, 'X'), + (0xA700, 'V'), + (0xA722, 'M', 'ꜣ'), + (0xA723, 'V'), + (0xA724, 'M', 'ꜥ'), + (0xA725, 'V'), + (0xA726, 'M', 'ꜧ'), + (0xA727, 'V'), + (0xA728, 'M', 'ꜩ'), + (0xA729, 'V'), + (0xA72A, 'M', 'ꜫ'), + (0xA72B, 'V'), + (0xA72C, 'M', 'ꜭ'), + (0xA72D, 'V'), + (0xA72E, 'M', 'ꜯ'), + (0xA72F, 'V'), + (0xA732, 'M', 'ꜳ'), + (0xA733, 'V'), + (0xA734, 'M', 'ꜵ'), + (0xA735, 'V'), + (0xA736, 'M', 'ꜷ'), + (0xA737, 'V'), + (0xA738, 'M', 'ꜹ'), + (0xA739, 'V'), + (0xA73A, 'M', 'ꜻ'), + (0xA73B, 'V'), + (0xA73C, 'M', 'ꜽ'), + (0xA73D, 'V'), + (0xA73E, 'M', 'ꜿ'), + (0xA73F, 'V'), + (0xA740, 'M', 'ꝁ'), + (0xA741, 'V'), + (0xA742, 'M', 'ꝃ'), + (0xA743, 'V'), + (0xA744, 'M', 'ꝅ'), + (0xA745, 'V'), + (0xA746, 'M', 'ꝇ'), + (0xA747, 'V'), + (0xA748, 'M', 'ꝉ'), + (0xA749, 'V'), + (0xA74A, 'M', 'ꝋ'), + (0xA74B, 'V'), + (0xA74C, 'M', 'ꝍ'), + (0xA74D, 'V'), + (0xA74E, 'M', 'ꝏ'), + (0xA74F, 'V'), + (0xA750, 'M', 'ꝑ'), + (0xA751, 'V'), + (0xA752, 'M', 'ꝓ'), + (0xA753, 'V'), + (0xA754, 'M', 'ꝕ'), + (0xA755, 'V'), + (0xA756, 'M', 'ꝗ'), + (0xA757, 'V'), + (0xA758, 'M', 'ꝙ'), + (0xA759, 'V'), + (0xA75A, 'M', 'ꝛ'), + (0xA75B, 'V'), + (0xA75C, 'M', 'ꝝ'), + (0xA75D, 'V'), + (0xA75E, 'M', 'ꝟ'), + (0xA75F, 'V'), + (0xA760, 'M', 'ꝡ'), + (0xA761, 'V'), + (0xA762, 'M', 'ꝣ'), + (0xA763, 'V'), + (0xA764, 'M', 'ꝥ'), + (0xA765, 'V'), + (0xA766, 'M', 'ꝧ'), + (0xA767, 'V'), + (0xA768, 'M', 'ꝩ'), + (0xA769, 'V'), + (0xA76A, 'M', 'ꝫ'), + (0xA76B, 'V'), + (0xA76C, 'M', 'ꝭ'), + (0xA76D, 'V'), + (0xA76E, 'M', 'ꝯ'), + (0xA76F, 'V'), + (0xA770, 'M', 'ꝯ'), + (0xA771, 'V'), + (0xA779, 'M', 'ꝺ'), + (0xA77A, 'V'), + (0xA77B, 'M', 'ꝼ'), + ] + +def _seg_37() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA77C, 'V'), + (0xA77D, 'M', 'ᵹ'), + (0xA77E, 'M', 'ꝿ'), + (0xA77F, 'V'), + (0xA780, 'M', 'ꞁ'), + (0xA781, 'V'), + (0xA782, 'M', 'ꞃ'), + (0xA783, 'V'), + (0xA784, 'M', 'ꞅ'), + (0xA785, 'V'), + (0xA786, 'M', 'ꞇ'), + (0xA787, 'V'), + (0xA78B, 'M', 'ꞌ'), + (0xA78C, 'V'), + (0xA78D, 'M', 'ɥ'), + (0xA78E, 'V'), + (0xA790, 'M', 'ꞑ'), + (0xA791, 'V'), + (0xA792, 'M', 'ꞓ'), + (0xA793, 'V'), + (0xA796, 'M', 'ꞗ'), + (0xA797, 'V'), + (0xA798, 'M', 'ꞙ'), + (0xA799, 'V'), + (0xA79A, 'M', 'ꞛ'), + (0xA79B, 'V'), + (0xA79C, 'M', 'ꞝ'), + (0xA79D, 'V'), + (0xA79E, 'M', 'ꞟ'), + (0xA79F, 'V'), + (0xA7A0, 'M', 'ꞡ'), + (0xA7A1, 'V'), + (0xA7A2, 'M', 'ꞣ'), + (0xA7A3, 'V'), + (0xA7A4, 'M', 'ꞥ'), + (0xA7A5, 'V'), + (0xA7A6, 'M', 'ꞧ'), + (0xA7A7, 'V'), + (0xA7A8, 'M', 'ꞩ'), + (0xA7A9, 'V'), + (0xA7AA, 'M', 'ɦ'), + (0xA7AB, 'M', 'ɜ'), + (0xA7AC, 'M', 'ɡ'), + (0xA7AD, 'M', 'ɬ'), + (0xA7AE, 'M', 'ɪ'), + (0xA7AF, 'V'), + (0xA7B0, 'M', 'ʞ'), + (0xA7B1, 'M', 'ʇ'), + (0xA7B2, 'M', 'ʝ'), + (0xA7B3, 'M', 'ꭓ'), + (0xA7B4, 'M', 'ꞵ'), + (0xA7B5, 'V'), + (0xA7B6, 'M', 'ꞷ'), + (0xA7B7, 'V'), + (0xA7B8, 'M', 'ꞹ'), + (0xA7B9, 'V'), + (0xA7BA, 'M', 'ꞻ'), + (0xA7BB, 'V'), + (0xA7BC, 'M', 'ꞽ'), + (0xA7BD, 'V'), + (0xA7BE, 'M', 'ꞿ'), + (0xA7BF, 'V'), + (0xA7C0, 'M', 'ꟁ'), + (0xA7C1, 'V'), + (0xA7C2, 'M', 'ꟃ'), + (0xA7C3, 'V'), + (0xA7C4, 'M', 'ꞔ'), + (0xA7C5, 'M', 'ʂ'), + (0xA7C6, 'M', 'ᶎ'), + (0xA7C7, 'M', 'ꟈ'), + (0xA7C8, 'V'), + (0xA7C9, 'M', 'ꟊ'), + (0xA7CA, 'V'), + (0xA7CB, 'X'), + (0xA7D0, 'M', 'ꟑ'), + (0xA7D1, 'V'), + (0xA7D2, 'X'), + (0xA7D3, 'V'), + (0xA7D4, 'X'), + (0xA7D5, 'V'), + (0xA7D6, 'M', 'ꟗ'), + (0xA7D7, 'V'), + (0xA7D8, 'M', 'ꟙ'), + (0xA7D9, 'V'), + (0xA7DA, 'X'), + (0xA7F2, 'M', 'c'), + (0xA7F3, 'M', 'f'), + (0xA7F4, 'M', 'q'), + (0xA7F5, 'M', 'ꟶ'), + (0xA7F6, 'V'), + (0xA7F8, 'M', 'ħ'), + (0xA7F9, 'M', 'œ'), + (0xA7FA, 'V'), + (0xA82D, 'X'), + (0xA830, 'V'), + (0xA83A, 'X'), + (0xA840, 'V'), + (0xA878, 'X'), + (0xA880, 'V'), + (0xA8C6, 'X'), + ] + +def _seg_38() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA8CE, 'V'), + (0xA8DA, 'X'), + (0xA8E0, 'V'), + (0xA954, 'X'), + (0xA95F, 'V'), + (0xA97D, 'X'), + (0xA980, 'V'), + (0xA9CE, 'X'), + (0xA9CF, 'V'), + (0xA9DA, 'X'), + (0xA9DE, 'V'), + (0xA9FF, 'X'), + (0xAA00, 'V'), + (0xAA37, 'X'), + (0xAA40, 'V'), + (0xAA4E, 'X'), + (0xAA50, 'V'), + (0xAA5A, 'X'), + (0xAA5C, 'V'), + (0xAAC3, 'X'), + (0xAADB, 'V'), + (0xAAF7, 'X'), + (0xAB01, 'V'), + (0xAB07, 'X'), + (0xAB09, 'V'), + (0xAB0F, 'X'), + (0xAB11, 'V'), + (0xAB17, 'X'), + (0xAB20, 'V'), + (0xAB27, 'X'), + (0xAB28, 'V'), + (0xAB2F, 'X'), + (0xAB30, 'V'), + (0xAB5C, 'M', 'ꜧ'), + (0xAB5D, 'M', 'ꬷ'), + (0xAB5E, 'M', 'ɫ'), + (0xAB5F, 'M', 'ꭒ'), + (0xAB60, 'V'), + (0xAB69, 'M', 'ʍ'), + (0xAB6A, 'V'), + (0xAB6C, 'X'), + (0xAB70, 'M', 'Ꭰ'), + (0xAB71, 'M', 'Ꭱ'), + (0xAB72, 'M', 'Ꭲ'), + (0xAB73, 'M', 'Ꭳ'), + (0xAB74, 'M', 'Ꭴ'), + (0xAB75, 'M', 'Ꭵ'), + (0xAB76, 'M', 'Ꭶ'), + (0xAB77, 'M', 'Ꭷ'), + (0xAB78, 'M', 'Ꭸ'), + (0xAB79, 'M', 'Ꭹ'), + (0xAB7A, 'M', 'Ꭺ'), + (0xAB7B, 'M', 'Ꭻ'), + (0xAB7C, 'M', 'Ꭼ'), + (0xAB7D, 'M', 'Ꭽ'), + (0xAB7E, 'M', 'Ꭾ'), + (0xAB7F, 'M', 'Ꭿ'), + (0xAB80, 'M', 'Ꮀ'), + (0xAB81, 'M', 'Ꮁ'), + (0xAB82, 'M', 'Ꮂ'), + (0xAB83, 'M', 'Ꮃ'), + (0xAB84, 'M', 'Ꮄ'), + (0xAB85, 'M', 'Ꮅ'), + (0xAB86, 'M', 'Ꮆ'), + (0xAB87, 'M', 'Ꮇ'), + (0xAB88, 'M', 'Ꮈ'), + (0xAB89, 'M', 'Ꮉ'), + (0xAB8A, 'M', 'Ꮊ'), + (0xAB8B, 'M', 'Ꮋ'), + (0xAB8C, 'M', 'Ꮌ'), + (0xAB8D, 'M', 'Ꮍ'), + (0xAB8E, 'M', 'Ꮎ'), + (0xAB8F, 'M', 'Ꮏ'), + (0xAB90, 'M', 'Ꮐ'), + (0xAB91, 'M', 'Ꮑ'), + (0xAB92, 'M', 'Ꮒ'), + (0xAB93, 'M', 'Ꮓ'), + (0xAB94, 'M', 'Ꮔ'), + (0xAB95, 'M', 'Ꮕ'), + (0xAB96, 'M', 'Ꮖ'), + (0xAB97, 'M', 'Ꮗ'), + (0xAB98, 'M', 'Ꮘ'), + (0xAB99, 'M', 'Ꮙ'), + (0xAB9A, 'M', 'Ꮚ'), + (0xAB9B, 'M', 'Ꮛ'), + (0xAB9C, 'M', 'Ꮜ'), + (0xAB9D, 'M', 'Ꮝ'), + (0xAB9E, 'M', 'Ꮞ'), + (0xAB9F, 'M', 'Ꮟ'), + (0xABA0, 'M', 'Ꮠ'), + (0xABA1, 'M', 'Ꮡ'), + (0xABA2, 'M', 'Ꮢ'), + (0xABA3, 'M', 'Ꮣ'), + (0xABA4, 'M', 'Ꮤ'), + (0xABA5, 'M', 'Ꮥ'), + (0xABA6, 'M', 'Ꮦ'), + (0xABA7, 'M', 'Ꮧ'), + (0xABA8, 'M', 'Ꮨ'), + (0xABA9, 'M', 'Ꮩ'), + (0xABAA, 'M', 'Ꮪ'), + ] + +def _seg_39() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xABAB, 'M', 'Ꮫ'), + (0xABAC, 'M', 'Ꮬ'), + (0xABAD, 'M', 'Ꮭ'), + (0xABAE, 'M', 'Ꮮ'), + (0xABAF, 'M', 'Ꮯ'), + (0xABB0, 'M', 'Ꮰ'), + (0xABB1, 'M', 'Ꮱ'), + (0xABB2, 'M', 'Ꮲ'), + (0xABB3, 'M', 'Ꮳ'), + (0xABB4, 'M', 'Ꮴ'), + (0xABB5, 'M', 'Ꮵ'), + (0xABB6, 'M', 'Ꮶ'), + (0xABB7, 'M', 'Ꮷ'), + (0xABB8, 'M', 'Ꮸ'), + (0xABB9, 'M', 'Ꮹ'), + (0xABBA, 'M', 'Ꮺ'), + (0xABBB, 'M', 'Ꮻ'), + (0xABBC, 'M', 'Ꮼ'), + (0xABBD, 'M', 'Ꮽ'), + (0xABBE, 'M', 'Ꮾ'), + (0xABBF, 'M', 'Ꮿ'), + (0xABC0, 'V'), + (0xABEE, 'X'), + (0xABF0, 'V'), + (0xABFA, 'X'), + (0xAC00, 'V'), + (0xD7A4, 'X'), + (0xD7B0, 'V'), + (0xD7C7, 'X'), + (0xD7CB, 'V'), + (0xD7FC, 'X'), + (0xF900, 'M', '豈'), + (0xF901, 'M', '更'), + (0xF902, 'M', '車'), + (0xF903, 'M', '賈'), + (0xF904, 'M', '滑'), + (0xF905, 'M', '串'), + (0xF906, 'M', '句'), + (0xF907, 'M', '龜'), + (0xF909, 'M', '契'), + (0xF90A, 'M', '金'), + (0xF90B, 'M', '喇'), + (0xF90C, 'M', '奈'), + (0xF90D, 'M', '懶'), + (0xF90E, 'M', '癩'), + (0xF90F, 'M', '羅'), + (0xF910, 'M', '蘿'), + (0xF911, 'M', '螺'), + (0xF912, 'M', '裸'), + (0xF913, 'M', '邏'), + (0xF914, 'M', '樂'), + (0xF915, 'M', '洛'), + (0xF916, 'M', '烙'), + (0xF917, 'M', '珞'), + (0xF918, 'M', '落'), + (0xF919, 'M', '酪'), + (0xF91A, 'M', '駱'), + (0xF91B, 'M', '亂'), + (0xF91C, 'M', '卵'), + (0xF91D, 'M', '欄'), + (0xF91E, 'M', '爛'), + (0xF91F, 'M', '蘭'), + (0xF920, 'M', '鸞'), + (0xF921, 'M', '嵐'), + (0xF922, 'M', '濫'), + (0xF923, 'M', '藍'), + (0xF924, 'M', '襤'), + (0xF925, 'M', '拉'), + (0xF926, 'M', '臘'), + (0xF927, 'M', '蠟'), + (0xF928, 'M', '廊'), + (0xF929, 'M', '朗'), + (0xF92A, 'M', '浪'), + (0xF92B, 'M', '狼'), + (0xF92C, 'M', '郎'), + (0xF92D, 'M', '來'), + (0xF92E, 'M', '冷'), + (0xF92F, 'M', '勞'), + (0xF930, 'M', '擄'), + (0xF931, 'M', '櫓'), + (0xF932, 'M', '爐'), + (0xF933, 'M', '盧'), + (0xF934, 'M', '老'), + (0xF935, 'M', '蘆'), + (0xF936, 'M', '虜'), + (0xF937, 'M', '路'), + (0xF938, 'M', '露'), + (0xF939, 'M', '魯'), + (0xF93A, 'M', '鷺'), + (0xF93B, 'M', '碌'), + (0xF93C, 'M', '祿'), + (0xF93D, 'M', '綠'), + (0xF93E, 'M', '菉'), + (0xF93F, 'M', '錄'), + (0xF940, 'M', '鹿'), + (0xF941, 'M', '論'), + (0xF942, 'M', '壟'), + (0xF943, 'M', '弄'), + (0xF944, 'M', '籠'), + (0xF945, 'M', '聾'), + ] + +def _seg_40() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF946, 'M', '牢'), + (0xF947, 'M', '磊'), + (0xF948, 'M', '賂'), + (0xF949, 'M', '雷'), + (0xF94A, 'M', '壘'), + (0xF94B, 'M', '屢'), + (0xF94C, 'M', '樓'), + (0xF94D, 'M', '淚'), + (0xF94E, 'M', '漏'), + (0xF94F, 'M', '累'), + (0xF950, 'M', '縷'), + (0xF951, 'M', '陋'), + (0xF952, 'M', '勒'), + (0xF953, 'M', '肋'), + (0xF954, 'M', '凜'), + (0xF955, 'M', '凌'), + (0xF956, 'M', '稜'), + (0xF957, 'M', '綾'), + (0xF958, 'M', '菱'), + (0xF959, 'M', '陵'), + (0xF95A, 'M', '讀'), + (0xF95B, 'M', '拏'), + (0xF95C, 'M', '樂'), + (0xF95D, 'M', '諾'), + (0xF95E, 'M', '丹'), + (0xF95F, 'M', '寧'), + (0xF960, 'M', '怒'), + (0xF961, 'M', '率'), + (0xF962, 'M', '異'), + (0xF963, 'M', '北'), + (0xF964, 'M', '磻'), + (0xF965, 'M', '便'), + (0xF966, 'M', '復'), + (0xF967, 'M', '不'), + (0xF968, 'M', '泌'), + (0xF969, 'M', '數'), + (0xF96A, 'M', '索'), + (0xF96B, 'M', '參'), + (0xF96C, 'M', '塞'), + (0xF96D, 'M', '省'), + (0xF96E, 'M', '葉'), + (0xF96F, 'M', '說'), + (0xF970, 'M', '殺'), + (0xF971, 'M', '辰'), + (0xF972, 'M', '沈'), + (0xF973, 'M', '拾'), + (0xF974, 'M', '若'), + (0xF975, 'M', '掠'), + (0xF976, 'M', '略'), + (0xF977, 'M', '亮'), + (0xF978, 'M', '兩'), + (0xF979, 'M', '凉'), + (0xF97A, 'M', '梁'), + (0xF97B, 'M', '糧'), + (0xF97C, 'M', '良'), + (0xF97D, 'M', '諒'), + (0xF97E, 'M', '量'), + (0xF97F, 'M', '勵'), + (0xF980, 'M', '呂'), + (0xF981, 'M', '女'), + (0xF982, 'M', '廬'), + (0xF983, 'M', '旅'), + (0xF984, 'M', '濾'), + (0xF985, 'M', '礪'), + (0xF986, 'M', '閭'), + (0xF987, 'M', '驪'), + (0xF988, 'M', '麗'), + (0xF989, 'M', '黎'), + (0xF98A, 'M', '力'), + (0xF98B, 'M', '曆'), + (0xF98C, 'M', '歷'), + (0xF98D, 'M', '轢'), + (0xF98E, 'M', '年'), + (0xF98F, 'M', '憐'), + (0xF990, 'M', '戀'), + (0xF991, 'M', '撚'), + (0xF992, 'M', '漣'), + (0xF993, 'M', '煉'), + (0xF994, 'M', '璉'), + (0xF995, 'M', '秊'), + (0xF996, 'M', '練'), + (0xF997, 'M', '聯'), + (0xF998, 'M', '輦'), + (0xF999, 'M', '蓮'), + (0xF99A, 'M', '連'), + (0xF99B, 'M', '鍊'), + (0xF99C, 'M', '列'), + (0xF99D, 'M', '劣'), + (0xF99E, 'M', '咽'), + (0xF99F, 'M', '烈'), + (0xF9A0, 'M', '裂'), + (0xF9A1, 'M', '說'), + (0xF9A2, 'M', '廉'), + (0xF9A3, 'M', '念'), + (0xF9A4, 'M', '捻'), + (0xF9A5, 'M', '殮'), + (0xF9A6, 'M', '簾'), + (0xF9A7, 'M', '獵'), + (0xF9A8, 'M', '令'), + (0xF9A9, 'M', '囹'), + ] + +def _seg_41() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF9AA, 'M', '寧'), + (0xF9AB, 'M', '嶺'), + (0xF9AC, 'M', '怜'), + (0xF9AD, 'M', '玲'), + (0xF9AE, 'M', '瑩'), + (0xF9AF, 'M', '羚'), + (0xF9B0, 'M', '聆'), + (0xF9B1, 'M', '鈴'), + (0xF9B2, 'M', '零'), + (0xF9B3, 'M', '靈'), + (0xF9B4, 'M', '領'), + (0xF9B5, 'M', '例'), + (0xF9B6, 'M', '禮'), + (0xF9B7, 'M', '醴'), + (0xF9B8, 'M', '隸'), + (0xF9B9, 'M', '惡'), + (0xF9BA, 'M', '了'), + (0xF9BB, 'M', '僚'), + (0xF9BC, 'M', '寮'), + (0xF9BD, 'M', '尿'), + (0xF9BE, 'M', '料'), + (0xF9BF, 'M', '樂'), + (0xF9C0, 'M', '燎'), + (0xF9C1, 'M', '療'), + (0xF9C2, 'M', '蓼'), + (0xF9C3, 'M', '遼'), + (0xF9C4, 'M', '龍'), + (0xF9C5, 'M', '暈'), + (0xF9C6, 'M', '阮'), + (0xF9C7, 'M', '劉'), + (0xF9C8, 'M', '杻'), + (0xF9C9, 'M', '柳'), + (0xF9CA, 'M', '流'), + (0xF9CB, 'M', '溜'), + (0xF9CC, 'M', '琉'), + (0xF9CD, 'M', '留'), + (0xF9CE, 'M', '硫'), + (0xF9CF, 'M', '紐'), + (0xF9D0, 'M', '類'), + (0xF9D1, 'M', '六'), + (0xF9D2, 'M', '戮'), + (0xF9D3, 'M', '陸'), + (0xF9D4, 'M', '倫'), + (0xF9D5, 'M', '崙'), + (0xF9D6, 'M', '淪'), + (0xF9D7, 'M', '輪'), + (0xF9D8, 'M', '律'), + (0xF9D9, 'M', '慄'), + (0xF9DA, 'M', '栗'), + (0xF9DB, 'M', '率'), + (0xF9DC, 'M', '隆'), + (0xF9DD, 'M', '利'), + (0xF9DE, 'M', '吏'), + (0xF9DF, 'M', '履'), + (0xF9E0, 'M', '易'), + (0xF9E1, 'M', '李'), + (0xF9E2, 'M', '梨'), + (0xF9E3, 'M', '泥'), + (0xF9E4, 'M', '理'), + (0xF9E5, 'M', '痢'), + (0xF9E6, 'M', '罹'), + (0xF9E7, 'M', '裏'), + (0xF9E8, 'M', '裡'), + (0xF9E9, 'M', '里'), + (0xF9EA, 'M', '離'), + (0xF9EB, 'M', '匿'), + (0xF9EC, 'M', '溺'), + (0xF9ED, 'M', '吝'), + (0xF9EE, 'M', '燐'), + (0xF9EF, 'M', '璘'), + (0xF9F0, 'M', '藺'), + (0xF9F1, 'M', '隣'), + (0xF9F2, 'M', '鱗'), + (0xF9F3, 'M', '麟'), + (0xF9F4, 'M', '林'), + (0xF9F5, 'M', '淋'), + (0xF9F6, 'M', '臨'), + (0xF9F7, 'M', '立'), + (0xF9F8, 'M', '笠'), + (0xF9F9, 'M', '粒'), + (0xF9FA, 'M', '狀'), + (0xF9FB, 'M', '炙'), + (0xF9FC, 'M', '識'), + (0xF9FD, 'M', '什'), + (0xF9FE, 'M', '茶'), + (0xF9FF, 'M', '刺'), + (0xFA00, 'M', '切'), + (0xFA01, 'M', '度'), + (0xFA02, 'M', '拓'), + (0xFA03, 'M', '糖'), + (0xFA04, 'M', '宅'), + (0xFA05, 'M', '洞'), + (0xFA06, 'M', '暴'), + (0xFA07, 'M', '輻'), + (0xFA08, 'M', '行'), + (0xFA09, 'M', '降'), + (0xFA0A, 'M', '見'), + (0xFA0B, 'M', '廓'), + (0xFA0C, 'M', '兀'), + (0xFA0D, 'M', '嗀'), + ] + +def _seg_42() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA0E, 'V'), + (0xFA10, 'M', '塚'), + (0xFA11, 'V'), + (0xFA12, 'M', '晴'), + (0xFA13, 'V'), + (0xFA15, 'M', '凞'), + (0xFA16, 'M', '猪'), + (0xFA17, 'M', '益'), + (0xFA18, 'M', '礼'), + (0xFA19, 'M', '神'), + (0xFA1A, 'M', '祥'), + (0xFA1B, 'M', '福'), + (0xFA1C, 'M', '靖'), + (0xFA1D, 'M', '精'), + (0xFA1E, 'M', '羽'), + (0xFA1F, 'V'), + (0xFA20, 'M', '蘒'), + (0xFA21, 'V'), + (0xFA22, 'M', '諸'), + (0xFA23, 'V'), + (0xFA25, 'M', '逸'), + (0xFA26, 'M', '都'), + (0xFA27, 'V'), + (0xFA2A, 'M', '飯'), + (0xFA2B, 'M', '飼'), + (0xFA2C, 'M', '館'), + (0xFA2D, 'M', '鶴'), + (0xFA2E, 'M', '郞'), + (0xFA2F, 'M', '隷'), + (0xFA30, 'M', '侮'), + (0xFA31, 'M', '僧'), + (0xFA32, 'M', '免'), + (0xFA33, 'M', '勉'), + (0xFA34, 'M', '勤'), + (0xFA35, 'M', '卑'), + (0xFA36, 'M', '喝'), + (0xFA37, 'M', '嘆'), + (0xFA38, 'M', '器'), + (0xFA39, 'M', '塀'), + (0xFA3A, 'M', '墨'), + (0xFA3B, 'M', '層'), + (0xFA3C, 'M', '屮'), + (0xFA3D, 'M', '悔'), + (0xFA3E, 'M', '慨'), + (0xFA3F, 'M', '憎'), + (0xFA40, 'M', '懲'), + (0xFA41, 'M', '敏'), + (0xFA42, 'M', '既'), + (0xFA43, 'M', '暑'), + (0xFA44, 'M', '梅'), + (0xFA45, 'M', '海'), + (0xFA46, 'M', '渚'), + (0xFA47, 'M', '漢'), + (0xFA48, 'M', '煮'), + (0xFA49, 'M', '爫'), + (0xFA4A, 'M', '琢'), + (0xFA4B, 'M', '碑'), + (0xFA4C, 'M', '社'), + (0xFA4D, 'M', '祉'), + (0xFA4E, 'M', '祈'), + (0xFA4F, 'M', '祐'), + (0xFA50, 'M', '祖'), + (0xFA51, 'M', '祝'), + (0xFA52, 'M', '禍'), + (0xFA53, 'M', '禎'), + (0xFA54, 'M', '穀'), + (0xFA55, 'M', '突'), + (0xFA56, 'M', '節'), + (0xFA57, 'M', '練'), + (0xFA58, 'M', '縉'), + (0xFA59, 'M', '繁'), + (0xFA5A, 'M', '署'), + (0xFA5B, 'M', '者'), + (0xFA5C, 'M', '臭'), + (0xFA5D, 'M', '艹'), + (0xFA5F, 'M', '著'), + (0xFA60, 'M', '褐'), + (0xFA61, 'M', '視'), + (0xFA62, 'M', '謁'), + (0xFA63, 'M', '謹'), + (0xFA64, 'M', '賓'), + (0xFA65, 'M', '贈'), + (0xFA66, 'M', '辶'), + (0xFA67, 'M', '逸'), + (0xFA68, 'M', '難'), + (0xFA69, 'M', '響'), + (0xFA6A, 'M', '頻'), + (0xFA6B, 'M', '恵'), + (0xFA6C, 'M', '𤋮'), + (0xFA6D, 'M', '舘'), + (0xFA6E, 'X'), + (0xFA70, 'M', '並'), + (0xFA71, 'M', '况'), + (0xFA72, 'M', '全'), + (0xFA73, 'M', '侀'), + (0xFA74, 'M', '充'), + (0xFA75, 'M', '冀'), + (0xFA76, 'M', '勇'), + (0xFA77, 'M', '勺'), + (0xFA78, 'M', '喝'), + ] + +def _seg_43() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA79, 'M', '啕'), + (0xFA7A, 'M', '喙'), + (0xFA7B, 'M', '嗢'), + (0xFA7C, 'M', '塚'), + (0xFA7D, 'M', '墳'), + (0xFA7E, 'M', '奄'), + (0xFA7F, 'M', '奔'), + (0xFA80, 'M', '婢'), + (0xFA81, 'M', '嬨'), + (0xFA82, 'M', '廒'), + (0xFA83, 'M', '廙'), + (0xFA84, 'M', '彩'), + (0xFA85, 'M', '徭'), + (0xFA86, 'M', '惘'), + (0xFA87, 'M', '慎'), + (0xFA88, 'M', '愈'), + (0xFA89, 'M', '憎'), + (0xFA8A, 'M', '慠'), + (0xFA8B, 'M', '懲'), + (0xFA8C, 'M', '戴'), + (0xFA8D, 'M', '揄'), + (0xFA8E, 'M', '搜'), + (0xFA8F, 'M', '摒'), + (0xFA90, 'M', '敖'), + (0xFA91, 'M', '晴'), + (0xFA92, 'M', '朗'), + (0xFA93, 'M', '望'), + (0xFA94, 'M', '杖'), + (0xFA95, 'M', '歹'), + (0xFA96, 'M', '殺'), + (0xFA97, 'M', '流'), + (0xFA98, 'M', '滛'), + (0xFA99, 'M', '滋'), + (0xFA9A, 'M', '漢'), + (0xFA9B, 'M', '瀞'), + (0xFA9C, 'M', '煮'), + (0xFA9D, 'M', '瞧'), + (0xFA9E, 'M', '爵'), + (0xFA9F, 'M', '犯'), + (0xFAA0, 'M', '猪'), + (0xFAA1, 'M', '瑱'), + (0xFAA2, 'M', '甆'), + (0xFAA3, 'M', '画'), + (0xFAA4, 'M', '瘝'), + (0xFAA5, 'M', '瘟'), + (0xFAA6, 'M', '益'), + (0xFAA7, 'M', '盛'), + (0xFAA8, 'M', '直'), + (0xFAA9, 'M', '睊'), + (0xFAAA, 'M', '着'), + (0xFAAB, 'M', '磌'), + (0xFAAC, 'M', '窱'), + (0xFAAD, 'M', '節'), + (0xFAAE, 'M', '类'), + (0xFAAF, 'M', '絛'), + (0xFAB0, 'M', '練'), + (0xFAB1, 'M', '缾'), + (0xFAB2, 'M', '者'), + (0xFAB3, 'M', '荒'), + (0xFAB4, 'M', '華'), + (0xFAB5, 'M', '蝹'), + (0xFAB6, 'M', '襁'), + (0xFAB7, 'M', '覆'), + (0xFAB8, 'M', '視'), + (0xFAB9, 'M', '調'), + (0xFABA, 'M', '諸'), + (0xFABB, 'M', '請'), + (0xFABC, 'M', '謁'), + (0xFABD, 'M', '諾'), + (0xFABE, 'M', '諭'), + (0xFABF, 'M', '謹'), + (0xFAC0, 'M', '變'), + (0xFAC1, 'M', '贈'), + (0xFAC2, 'M', '輸'), + (0xFAC3, 'M', '遲'), + (0xFAC4, 'M', '醙'), + (0xFAC5, 'M', '鉶'), + (0xFAC6, 'M', '陼'), + (0xFAC7, 'M', '難'), + (0xFAC8, 'M', '靖'), + (0xFAC9, 'M', '韛'), + (0xFACA, 'M', '響'), + (0xFACB, 'M', '頋'), + (0xFACC, 'M', '頻'), + (0xFACD, 'M', '鬒'), + (0xFACE, 'M', '龜'), + (0xFACF, 'M', '𢡊'), + (0xFAD0, 'M', '𢡄'), + (0xFAD1, 'M', '𣏕'), + (0xFAD2, 'M', '㮝'), + (0xFAD3, 'M', '䀘'), + (0xFAD4, 'M', '䀹'), + (0xFAD5, 'M', '𥉉'), + (0xFAD6, 'M', '𥳐'), + (0xFAD7, 'M', '𧻓'), + (0xFAD8, 'M', '齃'), + (0xFAD9, 'M', '龎'), + (0xFADA, 'X'), + (0xFB00, 'M', 'ff'), + (0xFB01, 'M', 'fi'), + ] + +def _seg_44() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFB02, 'M', 'fl'), + (0xFB03, 'M', 'ffi'), + (0xFB04, 'M', 'ffl'), + (0xFB05, 'M', 'st'), + (0xFB07, 'X'), + (0xFB13, 'M', 'մն'), + (0xFB14, 'M', 'մե'), + (0xFB15, 'M', 'մի'), + (0xFB16, 'M', 'վն'), + (0xFB17, 'M', 'մխ'), + (0xFB18, 'X'), + (0xFB1D, 'M', 'יִ'), + (0xFB1E, 'V'), + (0xFB1F, 'M', 'ײַ'), + (0xFB20, 'M', 'ע'), + (0xFB21, 'M', 'א'), + (0xFB22, 'M', 'ד'), + (0xFB23, 'M', 'ה'), + (0xFB24, 'M', 'כ'), + (0xFB25, 'M', 'ל'), + (0xFB26, 'M', 'ם'), + (0xFB27, 'M', 'ר'), + (0xFB28, 'M', 'ת'), + (0xFB29, '3', '+'), + (0xFB2A, 'M', 'שׁ'), + (0xFB2B, 'M', 'שׂ'), + (0xFB2C, 'M', 'שּׁ'), + (0xFB2D, 'M', 'שּׂ'), + (0xFB2E, 'M', 'אַ'), + (0xFB2F, 'M', 'אָ'), + (0xFB30, 'M', 'אּ'), + (0xFB31, 'M', 'בּ'), + (0xFB32, 'M', 'גּ'), + (0xFB33, 'M', 'דּ'), + (0xFB34, 'M', 'הּ'), + (0xFB35, 'M', 'וּ'), + (0xFB36, 'M', 'זּ'), + (0xFB37, 'X'), + (0xFB38, 'M', 'טּ'), + (0xFB39, 'M', 'יּ'), + (0xFB3A, 'M', 'ךּ'), + (0xFB3B, 'M', 'כּ'), + (0xFB3C, 'M', 'לּ'), + (0xFB3D, 'X'), + (0xFB3E, 'M', 'מּ'), + (0xFB3F, 'X'), + (0xFB40, 'M', 'נּ'), + (0xFB41, 'M', 'סּ'), + (0xFB42, 'X'), + (0xFB43, 'M', 'ףּ'), + (0xFB44, 'M', 'פּ'), + (0xFB45, 'X'), + (0xFB46, 'M', 'צּ'), + (0xFB47, 'M', 'קּ'), + (0xFB48, 'M', 'רּ'), + (0xFB49, 'M', 'שּ'), + (0xFB4A, 'M', 'תּ'), + (0xFB4B, 'M', 'וֹ'), + (0xFB4C, 'M', 'בֿ'), + (0xFB4D, 'M', 'כֿ'), + (0xFB4E, 'M', 'פֿ'), + (0xFB4F, 'M', 'אל'), + (0xFB50, 'M', 'ٱ'), + (0xFB52, 'M', 'ٻ'), + (0xFB56, 'M', 'پ'), + (0xFB5A, 'M', 'ڀ'), + (0xFB5E, 'M', 'ٺ'), + (0xFB62, 'M', 'ٿ'), + (0xFB66, 'M', 'ٹ'), + (0xFB6A, 'M', 'ڤ'), + (0xFB6E, 'M', 'ڦ'), + (0xFB72, 'M', 'ڄ'), + (0xFB76, 'M', 'ڃ'), + (0xFB7A, 'M', 'چ'), + (0xFB7E, 'M', 'ڇ'), + (0xFB82, 'M', 'ڍ'), + (0xFB84, 'M', 'ڌ'), + (0xFB86, 'M', 'ڎ'), + (0xFB88, 'M', 'ڈ'), + (0xFB8A, 'M', 'ژ'), + (0xFB8C, 'M', 'ڑ'), + (0xFB8E, 'M', 'ک'), + (0xFB92, 'M', 'گ'), + (0xFB96, 'M', 'ڳ'), + (0xFB9A, 'M', 'ڱ'), + (0xFB9E, 'M', 'ں'), + (0xFBA0, 'M', 'ڻ'), + (0xFBA4, 'M', 'ۀ'), + (0xFBA6, 'M', 'ہ'), + (0xFBAA, 'M', 'ھ'), + (0xFBAE, 'M', 'ے'), + (0xFBB0, 'M', 'ۓ'), + (0xFBB2, 'V'), + (0xFBC3, 'X'), + (0xFBD3, 'M', 'ڭ'), + (0xFBD7, 'M', 'ۇ'), + (0xFBD9, 'M', 'ۆ'), + (0xFBDB, 'M', 'ۈ'), + (0xFBDD, 'M', 'ۇٴ'), + (0xFBDE, 'M', 'ۋ'), + ] + +def _seg_45() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFBE0, 'M', 'ۅ'), + (0xFBE2, 'M', 'ۉ'), + (0xFBE4, 'M', 'ې'), + (0xFBE8, 'M', 'ى'), + (0xFBEA, 'M', 'ئا'), + (0xFBEC, 'M', 'ئە'), + (0xFBEE, 'M', 'ئو'), + (0xFBF0, 'M', 'ئۇ'), + (0xFBF2, 'M', 'ئۆ'), + (0xFBF4, 'M', 'ئۈ'), + (0xFBF6, 'M', 'ئې'), + (0xFBF9, 'M', 'ئى'), + (0xFBFC, 'M', 'ی'), + (0xFC00, 'M', 'ئج'), + (0xFC01, 'M', 'ئح'), + (0xFC02, 'M', 'ئم'), + (0xFC03, 'M', 'ئى'), + (0xFC04, 'M', 'ئي'), + (0xFC05, 'M', 'بج'), + (0xFC06, 'M', 'بح'), + (0xFC07, 'M', 'بخ'), + (0xFC08, 'M', 'بم'), + (0xFC09, 'M', 'بى'), + (0xFC0A, 'M', 'بي'), + (0xFC0B, 'M', 'تج'), + (0xFC0C, 'M', 'تح'), + (0xFC0D, 'M', 'تخ'), + (0xFC0E, 'M', 'تم'), + (0xFC0F, 'M', 'تى'), + (0xFC10, 'M', 'تي'), + (0xFC11, 'M', 'ثج'), + (0xFC12, 'M', 'ثم'), + (0xFC13, 'M', 'ثى'), + (0xFC14, 'M', 'ثي'), + (0xFC15, 'M', 'جح'), + (0xFC16, 'M', 'جم'), + (0xFC17, 'M', 'حج'), + (0xFC18, 'M', 'حم'), + (0xFC19, 'M', 'خج'), + (0xFC1A, 'M', 'خح'), + (0xFC1B, 'M', 'خم'), + (0xFC1C, 'M', 'سج'), + (0xFC1D, 'M', 'سح'), + (0xFC1E, 'M', 'سخ'), + (0xFC1F, 'M', 'سم'), + (0xFC20, 'M', 'صح'), + (0xFC21, 'M', 'صم'), + (0xFC22, 'M', 'ضج'), + (0xFC23, 'M', 'ضح'), + (0xFC24, 'M', 'ضخ'), + (0xFC25, 'M', 'ضم'), + (0xFC26, 'M', 'طح'), + (0xFC27, 'M', 'طم'), + (0xFC28, 'M', 'ظم'), + (0xFC29, 'M', 'عج'), + (0xFC2A, 'M', 'عم'), + (0xFC2B, 'M', 'غج'), + (0xFC2C, 'M', 'غم'), + (0xFC2D, 'M', 'فج'), + (0xFC2E, 'M', 'فح'), + (0xFC2F, 'M', 'فخ'), + (0xFC30, 'M', 'فم'), + (0xFC31, 'M', 'فى'), + (0xFC32, 'M', 'في'), + (0xFC33, 'M', 'قح'), + (0xFC34, 'M', 'قم'), + (0xFC35, 'M', 'قى'), + (0xFC36, 'M', 'قي'), + (0xFC37, 'M', 'كا'), + (0xFC38, 'M', 'كج'), + (0xFC39, 'M', 'كح'), + (0xFC3A, 'M', 'كخ'), + (0xFC3B, 'M', 'كل'), + (0xFC3C, 'M', 'كم'), + (0xFC3D, 'M', 'كى'), + (0xFC3E, 'M', 'كي'), + (0xFC3F, 'M', 'لج'), + (0xFC40, 'M', 'لح'), + (0xFC41, 'M', 'لخ'), + (0xFC42, 'M', 'لم'), + (0xFC43, 'M', 'لى'), + (0xFC44, 'M', 'لي'), + (0xFC45, 'M', 'مج'), + (0xFC46, 'M', 'مح'), + (0xFC47, 'M', 'مخ'), + (0xFC48, 'M', 'مم'), + (0xFC49, 'M', 'مى'), + (0xFC4A, 'M', 'مي'), + (0xFC4B, 'M', 'نج'), + (0xFC4C, 'M', 'نح'), + (0xFC4D, 'M', 'نخ'), + (0xFC4E, 'M', 'نم'), + (0xFC4F, 'M', 'نى'), + (0xFC50, 'M', 'ني'), + (0xFC51, 'M', 'هج'), + (0xFC52, 'M', 'هم'), + (0xFC53, 'M', 'هى'), + (0xFC54, 'M', 'هي'), + (0xFC55, 'M', 'يج'), + (0xFC56, 'M', 'يح'), + ] + +def _seg_46() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFC57, 'M', 'يخ'), + (0xFC58, 'M', 'يم'), + (0xFC59, 'M', 'يى'), + (0xFC5A, 'M', 'يي'), + (0xFC5B, 'M', 'ذٰ'), + (0xFC5C, 'M', 'رٰ'), + (0xFC5D, 'M', 'ىٰ'), + (0xFC5E, '3', ' ٌّ'), + (0xFC5F, '3', ' ٍّ'), + (0xFC60, '3', ' َّ'), + (0xFC61, '3', ' ُّ'), + (0xFC62, '3', ' ِّ'), + (0xFC63, '3', ' ّٰ'), + (0xFC64, 'M', 'ئر'), + (0xFC65, 'M', 'ئز'), + (0xFC66, 'M', 'ئم'), + (0xFC67, 'M', 'ئن'), + (0xFC68, 'M', 'ئى'), + (0xFC69, 'M', 'ئي'), + (0xFC6A, 'M', 'بر'), + (0xFC6B, 'M', 'بز'), + (0xFC6C, 'M', 'بم'), + (0xFC6D, 'M', 'بن'), + (0xFC6E, 'M', 'بى'), + (0xFC6F, 'M', 'بي'), + (0xFC70, 'M', 'تر'), + (0xFC71, 'M', 'تز'), + (0xFC72, 'M', 'تم'), + (0xFC73, 'M', 'تن'), + (0xFC74, 'M', 'تى'), + (0xFC75, 'M', 'تي'), + (0xFC76, 'M', 'ثر'), + (0xFC77, 'M', 'ثز'), + (0xFC78, 'M', 'ثم'), + (0xFC79, 'M', 'ثن'), + (0xFC7A, 'M', 'ثى'), + (0xFC7B, 'M', 'ثي'), + (0xFC7C, 'M', 'فى'), + (0xFC7D, 'M', 'في'), + (0xFC7E, 'M', 'قى'), + (0xFC7F, 'M', 'قي'), + (0xFC80, 'M', 'كا'), + (0xFC81, 'M', 'كل'), + (0xFC82, 'M', 'كم'), + (0xFC83, 'M', 'كى'), + (0xFC84, 'M', 'كي'), + (0xFC85, 'M', 'لم'), + (0xFC86, 'M', 'لى'), + (0xFC87, 'M', 'لي'), + (0xFC88, 'M', 'ما'), + (0xFC89, 'M', 'مم'), + (0xFC8A, 'M', 'نر'), + (0xFC8B, 'M', 'نز'), + (0xFC8C, 'M', 'نم'), + (0xFC8D, 'M', 'نن'), + (0xFC8E, 'M', 'نى'), + (0xFC8F, 'M', 'ني'), + (0xFC90, 'M', 'ىٰ'), + (0xFC91, 'M', 'ير'), + (0xFC92, 'M', 'يز'), + (0xFC93, 'M', 'يم'), + (0xFC94, 'M', 'ين'), + (0xFC95, 'M', 'يى'), + (0xFC96, 'M', 'يي'), + (0xFC97, 'M', 'ئج'), + (0xFC98, 'M', 'ئح'), + (0xFC99, 'M', 'ئخ'), + (0xFC9A, 'M', 'ئم'), + (0xFC9B, 'M', 'ئه'), + (0xFC9C, 'M', 'بج'), + (0xFC9D, 'M', 'بح'), + (0xFC9E, 'M', 'بخ'), + (0xFC9F, 'M', 'بم'), + (0xFCA0, 'M', 'به'), + (0xFCA1, 'M', 'تج'), + (0xFCA2, 'M', 'تح'), + (0xFCA3, 'M', 'تخ'), + (0xFCA4, 'M', 'تم'), + (0xFCA5, 'M', 'ته'), + (0xFCA6, 'M', 'ثم'), + (0xFCA7, 'M', 'جح'), + (0xFCA8, 'M', 'جم'), + (0xFCA9, 'M', 'حج'), + (0xFCAA, 'M', 'حم'), + (0xFCAB, 'M', 'خج'), + (0xFCAC, 'M', 'خم'), + (0xFCAD, 'M', 'سج'), + (0xFCAE, 'M', 'سح'), + (0xFCAF, 'M', 'سخ'), + (0xFCB0, 'M', 'سم'), + (0xFCB1, 'M', 'صح'), + (0xFCB2, 'M', 'صخ'), + (0xFCB3, 'M', 'صم'), + (0xFCB4, 'M', 'ضج'), + (0xFCB5, 'M', 'ضح'), + (0xFCB6, 'M', 'ضخ'), + (0xFCB7, 'M', 'ضم'), + (0xFCB8, 'M', 'طح'), + (0xFCB9, 'M', 'ظم'), + (0xFCBA, 'M', 'عج'), + ] + +def _seg_47() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFCBB, 'M', 'عم'), + (0xFCBC, 'M', 'غج'), + (0xFCBD, 'M', 'غم'), + (0xFCBE, 'M', 'فج'), + (0xFCBF, 'M', 'فح'), + (0xFCC0, 'M', 'فخ'), + (0xFCC1, 'M', 'فم'), + (0xFCC2, 'M', 'قح'), + (0xFCC3, 'M', 'قم'), + (0xFCC4, 'M', 'كج'), + (0xFCC5, 'M', 'كح'), + (0xFCC6, 'M', 'كخ'), + (0xFCC7, 'M', 'كل'), + (0xFCC8, 'M', 'كم'), + (0xFCC9, 'M', 'لج'), + (0xFCCA, 'M', 'لح'), + (0xFCCB, 'M', 'لخ'), + (0xFCCC, 'M', 'لم'), + (0xFCCD, 'M', 'له'), + (0xFCCE, 'M', 'مج'), + (0xFCCF, 'M', 'مح'), + (0xFCD0, 'M', 'مخ'), + (0xFCD1, 'M', 'مم'), + (0xFCD2, 'M', 'نج'), + (0xFCD3, 'M', 'نح'), + (0xFCD4, 'M', 'نخ'), + (0xFCD5, 'M', 'نم'), + (0xFCD6, 'M', 'نه'), + (0xFCD7, 'M', 'هج'), + (0xFCD8, 'M', 'هم'), + (0xFCD9, 'M', 'هٰ'), + (0xFCDA, 'M', 'يج'), + (0xFCDB, 'M', 'يح'), + (0xFCDC, 'M', 'يخ'), + (0xFCDD, 'M', 'يم'), + (0xFCDE, 'M', 'يه'), + (0xFCDF, 'M', 'ئم'), + (0xFCE0, 'M', 'ئه'), + (0xFCE1, 'M', 'بم'), + (0xFCE2, 'M', 'به'), + (0xFCE3, 'M', 'تم'), + (0xFCE4, 'M', 'ته'), + (0xFCE5, 'M', 'ثم'), + (0xFCE6, 'M', 'ثه'), + (0xFCE7, 'M', 'سم'), + (0xFCE8, 'M', 'سه'), + (0xFCE9, 'M', 'شم'), + (0xFCEA, 'M', 'شه'), + (0xFCEB, 'M', 'كل'), + (0xFCEC, 'M', 'كم'), + (0xFCED, 'M', 'لم'), + (0xFCEE, 'M', 'نم'), + (0xFCEF, 'M', 'نه'), + (0xFCF0, 'M', 'يم'), + (0xFCF1, 'M', 'يه'), + (0xFCF2, 'M', 'ـَّ'), + (0xFCF3, 'M', 'ـُّ'), + (0xFCF4, 'M', 'ـِّ'), + (0xFCF5, 'M', 'طى'), + (0xFCF6, 'M', 'طي'), + (0xFCF7, 'M', 'عى'), + (0xFCF8, 'M', 'عي'), + (0xFCF9, 'M', 'غى'), + (0xFCFA, 'M', 'غي'), + (0xFCFB, 'M', 'سى'), + (0xFCFC, 'M', 'سي'), + (0xFCFD, 'M', 'شى'), + (0xFCFE, 'M', 'شي'), + (0xFCFF, 'M', 'حى'), + (0xFD00, 'M', 'حي'), + (0xFD01, 'M', 'جى'), + (0xFD02, 'M', 'جي'), + (0xFD03, 'M', 'خى'), + (0xFD04, 'M', 'خي'), + (0xFD05, 'M', 'صى'), + (0xFD06, 'M', 'صي'), + (0xFD07, 'M', 'ضى'), + (0xFD08, 'M', 'ضي'), + (0xFD09, 'M', 'شج'), + (0xFD0A, 'M', 'شح'), + (0xFD0B, 'M', 'شخ'), + (0xFD0C, 'M', 'شم'), + (0xFD0D, 'M', 'شر'), + (0xFD0E, 'M', 'سر'), + (0xFD0F, 'M', 'صر'), + (0xFD10, 'M', 'ضر'), + (0xFD11, 'M', 'طى'), + (0xFD12, 'M', 'طي'), + (0xFD13, 'M', 'عى'), + (0xFD14, 'M', 'عي'), + (0xFD15, 'M', 'غى'), + (0xFD16, 'M', 'غي'), + (0xFD17, 'M', 'سى'), + (0xFD18, 'M', 'سي'), + (0xFD19, 'M', 'شى'), + (0xFD1A, 'M', 'شي'), + (0xFD1B, 'M', 'حى'), + (0xFD1C, 'M', 'حي'), + (0xFD1D, 'M', 'جى'), + (0xFD1E, 'M', 'جي'), + ] + +def _seg_48() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFD1F, 'M', 'خى'), + (0xFD20, 'M', 'خي'), + (0xFD21, 'M', 'صى'), + (0xFD22, 'M', 'صي'), + (0xFD23, 'M', 'ضى'), + (0xFD24, 'M', 'ضي'), + (0xFD25, 'M', 'شج'), + (0xFD26, 'M', 'شح'), + (0xFD27, 'M', 'شخ'), + (0xFD28, 'M', 'شم'), + (0xFD29, 'M', 'شر'), + (0xFD2A, 'M', 'سر'), + (0xFD2B, 'M', 'صر'), + (0xFD2C, 'M', 'ضر'), + (0xFD2D, 'M', 'شج'), + (0xFD2E, 'M', 'شح'), + (0xFD2F, 'M', 'شخ'), + (0xFD30, 'M', 'شم'), + (0xFD31, 'M', 'سه'), + (0xFD32, 'M', 'شه'), + (0xFD33, 'M', 'طم'), + (0xFD34, 'M', 'سج'), + (0xFD35, 'M', 'سح'), + (0xFD36, 'M', 'سخ'), + (0xFD37, 'M', 'شج'), + (0xFD38, 'M', 'شح'), + (0xFD39, 'M', 'شخ'), + (0xFD3A, 'M', 'طم'), + (0xFD3B, 'M', 'ظم'), + (0xFD3C, 'M', 'اً'), + (0xFD3E, 'V'), + (0xFD50, 'M', 'تجم'), + (0xFD51, 'M', 'تحج'), + (0xFD53, 'M', 'تحم'), + (0xFD54, 'M', 'تخم'), + (0xFD55, 'M', 'تمج'), + (0xFD56, 'M', 'تمح'), + (0xFD57, 'M', 'تمخ'), + (0xFD58, 'M', 'جمح'), + (0xFD5A, 'M', 'حمي'), + (0xFD5B, 'M', 'حمى'), + (0xFD5C, 'M', 'سحج'), + (0xFD5D, 'M', 'سجح'), + (0xFD5E, 'M', 'سجى'), + (0xFD5F, 'M', 'سمح'), + (0xFD61, 'M', 'سمج'), + (0xFD62, 'M', 'سمم'), + (0xFD64, 'M', 'صحح'), + (0xFD66, 'M', 'صمم'), + (0xFD67, 'M', 'شحم'), + (0xFD69, 'M', 'شجي'), + (0xFD6A, 'M', 'شمخ'), + (0xFD6C, 'M', 'شمم'), + (0xFD6E, 'M', 'ضحى'), + (0xFD6F, 'M', 'ضخم'), + (0xFD71, 'M', 'طمح'), + (0xFD73, 'M', 'طمم'), + (0xFD74, 'M', 'طمي'), + (0xFD75, 'M', 'عجم'), + (0xFD76, 'M', 'عمم'), + (0xFD78, 'M', 'عمى'), + (0xFD79, 'M', 'غمم'), + (0xFD7A, 'M', 'غمي'), + (0xFD7B, 'M', 'غمى'), + (0xFD7C, 'M', 'فخم'), + (0xFD7E, 'M', 'قمح'), + (0xFD7F, 'M', 'قمم'), + (0xFD80, 'M', 'لحم'), + (0xFD81, 'M', 'لحي'), + (0xFD82, 'M', 'لحى'), + (0xFD83, 'M', 'لجج'), + (0xFD85, 'M', 'لخم'), + (0xFD87, 'M', 'لمح'), + (0xFD89, 'M', 'محج'), + (0xFD8A, 'M', 'محم'), + (0xFD8B, 'M', 'محي'), + (0xFD8C, 'M', 'مجح'), + (0xFD8D, 'M', 'مجم'), + (0xFD8E, 'M', 'مخج'), + (0xFD8F, 'M', 'مخم'), + (0xFD90, 'X'), + (0xFD92, 'M', 'مجخ'), + (0xFD93, 'M', 'همج'), + (0xFD94, 'M', 'همم'), + (0xFD95, 'M', 'نحم'), + (0xFD96, 'M', 'نحى'), + (0xFD97, 'M', 'نجم'), + (0xFD99, 'M', 'نجى'), + (0xFD9A, 'M', 'نمي'), + (0xFD9B, 'M', 'نمى'), + (0xFD9C, 'M', 'يمم'), + (0xFD9E, 'M', 'بخي'), + (0xFD9F, 'M', 'تجي'), + (0xFDA0, 'M', 'تجى'), + (0xFDA1, 'M', 'تخي'), + (0xFDA2, 'M', 'تخى'), + (0xFDA3, 'M', 'تمي'), + (0xFDA4, 'M', 'تمى'), + (0xFDA5, 'M', 'جمي'), + (0xFDA6, 'M', 'جحى'), + ] + +def _seg_49() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFDA7, 'M', 'جمى'), + (0xFDA8, 'M', 'سخى'), + (0xFDA9, 'M', 'صحي'), + (0xFDAA, 'M', 'شحي'), + (0xFDAB, 'M', 'ضحي'), + (0xFDAC, 'M', 'لجي'), + (0xFDAD, 'M', 'لمي'), + (0xFDAE, 'M', 'يحي'), + (0xFDAF, 'M', 'يجي'), + (0xFDB0, 'M', 'يمي'), + (0xFDB1, 'M', 'ممي'), + (0xFDB2, 'M', 'قمي'), + (0xFDB3, 'M', 'نحي'), + (0xFDB4, 'M', 'قمح'), + (0xFDB5, 'M', 'لحم'), + (0xFDB6, 'M', 'عمي'), + (0xFDB7, 'M', 'كمي'), + (0xFDB8, 'M', 'نجح'), + (0xFDB9, 'M', 'مخي'), + (0xFDBA, 'M', 'لجم'), + (0xFDBB, 'M', 'كمم'), + (0xFDBC, 'M', 'لجم'), + (0xFDBD, 'M', 'نجح'), + (0xFDBE, 'M', 'جحي'), + (0xFDBF, 'M', 'حجي'), + (0xFDC0, 'M', 'مجي'), + (0xFDC1, 'M', 'فمي'), + (0xFDC2, 'M', 'بحي'), + (0xFDC3, 'M', 'كمم'), + (0xFDC4, 'M', 'عجم'), + (0xFDC5, 'M', 'صمم'), + (0xFDC6, 'M', 'سخي'), + (0xFDC7, 'M', 'نجي'), + (0xFDC8, 'X'), + (0xFDCF, 'V'), + (0xFDD0, 'X'), + (0xFDF0, 'M', 'صلے'), + (0xFDF1, 'M', 'قلے'), + (0xFDF2, 'M', 'الله'), + (0xFDF3, 'M', 'اكبر'), + (0xFDF4, 'M', 'محمد'), + (0xFDF5, 'M', 'صلعم'), + (0xFDF6, 'M', 'رسول'), + (0xFDF7, 'M', 'عليه'), + (0xFDF8, 'M', 'وسلم'), + (0xFDF9, 'M', 'صلى'), + (0xFDFA, '3', 'صلى الله عليه وسلم'), + (0xFDFB, '3', 'جل جلاله'), + (0xFDFC, 'M', 'ریال'), + (0xFDFD, 'V'), + (0xFE00, 'I'), + (0xFE10, '3', ','), + (0xFE11, 'M', '、'), + (0xFE12, 'X'), + (0xFE13, '3', ':'), + (0xFE14, '3', ';'), + (0xFE15, '3', '!'), + (0xFE16, '3', '?'), + (0xFE17, 'M', '〖'), + (0xFE18, 'M', '〗'), + (0xFE19, 'X'), + (0xFE20, 'V'), + (0xFE30, 'X'), + (0xFE31, 'M', '—'), + (0xFE32, 'M', '–'), + (0xFE33, '3', '_'), + (0xFE35, '3', '('), + (0xFE36, '3', ')'), + (0xFE37, '3', '{'), + (0xFE38, '3', '}'), + (0xFE39, 'M', '〔'), + (0xFE3A, 'M', '〕'), + (0xFE3B, 'M', '【'), + (0xFE3C, 'M', '】'), + (0xFE3D, 'M', '《'), + (0xFE3E, 'M', '》'), + (0xFE3F, 'M', '〈'), + (0xFE40, 'M', '〉'), + (0xFE41, 'M', '「'), + (0xFE42, 'M', '」'), + (0xFE43, 'M', '『'), + (0xFE44, 'M', '』'), + (0xFE45, 'V'), + (0xFE47, '3', '['), + (0xFE48, '3', ']'), + (0xFE49, '3', ' ̅'), + (0xFE4D, '3', '_'), + (0xFE50, '3', ','), + (0xFE51, 'M', '、'), + (0xFE52, 'X'), + (0xFE54, '3', ';'), + (0xFE55, '3', ':'), + (0xFE56, '3', '?'), + (0xFE57, '3', '!'), + (0xFE58, 'M', '—'), + (0xFE59, '3', '('), + (0xFE5A, '3', ')'), + (0xFE5B, '3', '{'), + (0xFE5C, '3', '}'), + (0xFE5D, 'M', '〔'), + ] + +def _seg_50() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFE5E, 'M', '〕'), + (0xFE5F, '3', '#'), + (0xFE60, '3', '&'), + (0xFE61, '3', '*'), + (0xFE62, '3', '+'), + (0xFE63, 'M', '-'), + (0xFE64, '3', '<'), + (0xFE65, '3', '>'), + (0xFE66, '3', '='), + (0xFE67, 'X'), + (0xFE68, '3', '\\'), + (0xFE69, '3', '$'), + (0xFE6A, '3', '%'), + (0xFE6B, '3', '@'), + (0xFE6C, 'X'), + (0xFE70, '3', ' ً'), + (0xFE71, 'M', 'ـً'), + (0xFE72, '3', ' ٌ'), + (0xFE73, 'V'), + (0xFE74, '3', ' ٍ'), + (0xFE75, 'X'), + (0xFE76, '3', ' َ'), + (0xFE77, 'M', 'ـَ'), + (0xFE78, '3', ' ُ'), + (0xFE79, 'M', 'ـُ'), + (0xFE7A, '3', ' ِ'), + (0xFE7B, 'M', 'ـِ'), + (0xFE7C, '3', ' ّ'), + (0xFE7D, 'M', 'ـّ'), + (0xFE7E, '3', ' ْ'), + (0xFE7F, 'M', 'ـْ'), + (0xFE80, 'M', 'ء'), + (0xFE81, 'M', 'آ'), + (0xFE83, 'M', 'أ'), + (0xFE85, 'M', 'ؤ'), + (0xFE87, 'M', 'إ'), + (0xFE89, 'M', 'ئ'), + (0xFE8D, 'M', 'ا'), + (0xFE8F, 'M', 'ب'), + (0xFE93, 'M', 'ة'), + (0xFE95, 'M', 'ت'), + (0xFE99, 'M', 'ث'), + (0xFE9D, 'M', 'ج'), + (0xFEA1, 'M', 'ح'), + (0xFEA5, 'M', 'خ'), + (0xFEA9, 'M', 'د'), + (0xFEAB, 'M', 'ذ'), + (0xFEAD, 'M', 'ر'), + (0xFEAF, 'M', 'ز'), + (0xFEB1, 'M', 'س'), + (0xFEB5, 'M', 'ش'), + (0xFEB9, 'M', 'ص'), + (0xFEBD, 'M', 'ض'), + (0xFEC1, 'M', 'ط'), + (0xFEC5, 'M', 'ظ'), + (0xFEC9, 'M', 'ع'), + (0xFECD, 'M', 'غ'), + (0xFED1, 'M', 'ف'), + (0xFED5, 'M', 'ق'), + (0xFED9, 'M', 'ك'), + (0xFEDD, 'M', 'ل'), + (0xFEE1, 'M', 'م'), + (0xFEE5, 'M', 'ن'), + (0xFEE9, 'M', 'ه'), + (0xFEED, 'M', 'و'), + (0xFEEF, 'M', 'ى'), + (0xFEF1, 'M', 'ي'), + (0xFEF5, 'M', 'لآ'), + (0xFEF7, 'M', 'لأ'), + (0xFEF9, 'M', 'لإ'), + (0xFEFB, 'M', 'لا'), + (0xFEFD, 'X'), + (0xFEFF, 'I'), + (0xFF00, 'X'), + (0xFF01, '3', '!'), + (0xFF02, '3', '"'), + (0xFF03, '3', '#'), + (0xFF04, '3', '$'), + (0xFF05, '3', '%'), + (0xFF06, '3', '&'), + (0xFF07, '3', '\''), + (0xFF08, '3', '('), + (0xFF09, '3', ')'), + (0xFF0A, '3', '*'), + (0xFF0B, '3', '+'), + (0xFF0C, '3', ','), + (0xFF0D, 'M', '-'), + (0xFF0E, 'M', '.'), + (0xFF0F, '3', '/'), + (0xFF10, 'M', '0'), + (0xFF11, 'M', '1'), + (0xFF12, 'M', '2'), + (0xFF13, 'M', '3'), + (0xFF14, 'M', '4'), + (0xFF15, 'M', '5'), + (0xFF16, 'M', '6'), + (0xFF17, 'M', '7'), + (0xFF18, 'M', '8'), + (0xFF19, 'M', '9'), + (0xFF1A, '3', ':'), + ] + +def _seg_51() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF1B, '3', ';'), + (0xFF1C, '3', '<'), + (0xFF1D, '3', '='), + (0xFF1E, '3', '>'), + (0xFF1F, '3', '?'), + (0xFF20, '3', '@'), + (0xFF21, 'M', 'a'), + (0xFF22, 'M', 'b'), + (0xFF23, 'M', 'c'), + (0xFF24, 'M', 'd'), + (0xFF25, 'M', 'e'), + (0xFF26, 'M', 'f'), + (0xFF27, 'M', 'g'), + (0xFF28, 'M', 'h'), + (0xFF29, 'M', 'i'), + (0xFF2A, 'M', 'j'), + (0xFF2B, 'M', 'k'), + (0xFF2C, 'M', 'l'), + (0xFF2D, 'M', 'm'), + (0xFF2E, 'M', 'n'), + (0xFF2F, 'M', 'o'), + (0xFF30, 'M', 'p'), + (0xFF31, 'M', 'q'), + (0xFF32, 'M', 'r'), + (0xFF33, 'M', 's'), + (0xFF34, 'M', 't'), + (0xFF35, 'M', 'u'), + (0xFF36, 'M', 'v'), + (0xFF37, 'M', 'w'), + (0xFF38, 'M', 'x'), + (0xFF39, 'M', 'y'), + (0xFF3A, 'M', 'z'), + (0xFF3B, '3', '['), + (0xFF3C, '3', '\\'), + (0xFF3D, '3', ']'), + (0xFF3E, '3', '^'), + (0xFF3F, '3', '_'), + (0xFF40, '3', '`'), + (0xFF41, 'M', 'a'), + (0xFF42, 'M', 'b'), + (0xFF43, 'M', 'c'), + (0xFF44, 'M', 'd'), + (0xFF45, 'M', 'e'), + (0xFF46, 'M', 'f'), + (0xFF47, 'M', 'g'), + (0xFF48, 'M', 'h'), + (0xFF49, 'M', 'i'), + (0xFF4A, 'M', 'j'), + (0xFF4B, 'M', 'k'), + (0xFF4C, 'M', 'l'), + (0xFF4D, 'M', 'm'), + (0xFF4E, 'M', 'n'), + (0xFF4F, 'M', 'o'), + (0xFF50, 'M', 'p'), + (0xFF51, 'M', 'q'), + (0xFF52, 'M', 'r'), + (0xFF53, 'M', 's'), + (0xFF54, 'M', 't'), + (0xFF55, 'M', 'u'), + (0xFF56, 'M', 'v'), + (0xFF57, 'M', 'w'), + (0xFF58, 'M', 'x'), + (0xFF59, 'M', 'y'), + (0xFF5A, 'M', 'z'), + (0xFF5B, '3', '{'), + (0xFF5C, '3', '|'), + (0xFF5D, '3', '}'), + (0xFF5E, '3', '~'), + (0xFF5F, 'M', '⦅'), + (0xFF60, 'M', '⦆'), + (0xFF61, 'M', '.'), + (0xFF62, 'M', '「'), + (0xFF63, 'M', '」'), + (0xFF64, 'M', '、'), + (0xFF65, 'M', '・'), + (0xFF66, 'M', 'ヲ'), + (0xFF67, 'M', 'ァ'), + (0xFF68, 'M', 'ィ'), + (0xFF69, 'M', 'ゥ'), + (0xFF6A, 'M', 'ェ'), + (0xFF6B, 'M', 'ォ'), + (0xFF6C, 'M', 'ャ'), + (0xFF6D, 'M', 'ュ'), + (0xFF6E, 'M', 'ョ'), + (0xFF6F, 'M', 'ッ'), + (0xFF70, 'M', 'ー'), + (0xFF71, 'M', 'ア'), + (0xFF72, 'M', 'イ'), + (0xFF73, 'M', 'ウ'), + (0xFF74, 'M', 'エ'), + (0xFF75, 'M', 'オ'), + (0xFF76, 'M', 'カ'), + (0xFF77, 'M', 'キ'), + (0xFF78, 'M', 'ク'), + (0xFF79, 'M', 'ケ'), + (0xFF7A, 'M', 'コ'), + (0xFF7B, 'M', 'サ'), + (0xFF7C, 'M', 'シ'), + (0xFF7D, 'M', 'ス'), + (0xFF7E, 'M', 'セ'), + ] + +def _seg_52() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF7F, 'M', 'ソ'), + (0xFF80, 'M', 'タ'), + (0xFF81, 'M', 'チ'), + (0xFF82, 'M', 'ツ'), + (0xFF83, 'M', 'テ'), + (0xFF84, 'M', 'ト'), + (0xFF85, 'M', 'ナ'), + (0xFF86, 'M', 'ニ'), + (0xFF87, 'M', 'ヌ'), + (0xFF88, 'M', 'ネ'), + (0xFF89, 'M', 'ノ'), + (0xFF8A, 'M', 'ハ'), + (0xFF8B, 'M', 'ヒ'), + (0xFF8C, 'M', 'フ'), + (0xFF8D, 'M', 'ヘ'), + (0xFF8E, 'M', 'ホ'), + (0xFF8F, 'M', 'マ'), + (0xFF90, 'M', 'ミ'), + (0xFF91, 'M', 'ム'), + (0xFF92, 'M', 'メ'), + (0xFF93, 'M', 'モ'), + (0xFF94, 'M', 'ヤ'), + (0xFF95, 'M', 'ユ'), + (0xFF96, 'M', 'ヨ'), + (0xFF97, 'M', 'ラ'), + (0xFF98, 'M', 'リ'), + (0xFF99, 'M', 'ル'), + (0xFF9A, 'M', 'レ'), + (0xFF9B, 'M', 'ロ'), + (0xFF9C, 'M', 'ワ'), + (0xFF9D, 'M', 'ン'), + (0xFF9E, 'M', '゙'), + (0xFF9F, 'M', '゚'), + (0xFFA0, 'X'), + (0xFFA1, 'M', 'ᄀ'), + (0xFFA2, 'M', 'ᄁ'), + (0xFFA3, 'M', 'ᆪ'), + (0xFFA4, 'M', 'ᄂ'), + (0xFFA5, 'M', 'ᆬ'), + (0xFFA6, 'M', 'ᆭ'), + (0xFFA7, 'M', 'ᄃ'), + (0xFFA8, 'M', 'ᄄ'), + (0xFFA9, 'M', 'ᄅ'), + (0xFFAA, 'M', 'ᆰ'), + (0xFFAB, 'M', 'ᆱ'), + (0xFFAC, 'M', 'ᆲ'), + (0xFFAD, 'M', 'ᆳ'), + (0xFFAE, 'M', 'ᆴ'), + (0xFFAF, 'M', 'ᆵ'), + (0xFFB0, 'M', 'ᄚ'), + (0xFFB1, 'M', 'ᄆ'), + (0xFFB2, 'M', 'ᄇ'), + (0xFFB3, 'M', 'ᄈ'), + (0xFFB4, 'M', 'ᄡ'), + (0xFFB5, 'M', 'ᄉ'), + (0xFFB6, 'M', 'ᄊ'), + (0xFFB7, 'M', 'ᄋ'), + (0xFFB8, 'M', 'ᄌ'), + (0xFFB9, 'M', 'ᄍ'), + (0xFFBA, 'M', 'ᄎ'), + (0xFFBB, 'M', 'ᄏ'), + (0xFFBC, 'M', 'ᄐ'), + (0xFFBD, 'M', 'ᄑ'), + (0xFFBE, 'M', 'ᄒ'), + (0xFFBF, 'X'), + (0xFFC2, 'M', 'ᅡ'), + (0xFFC3, 'M', 'ᅢ'), + (0xFFC4, 'M', 'ᅣ'), + (0xFFC5, 'M', 'ᅤ'), + (0xFFC6, 'M', 'ᅥ'), + (0xFFC7, 'M', 'ᅦ'), + (0xFFC8, 'X'), + (0xFFCA, 'M', 'ᅧ'), + (0xFFCB, 'M', 'ᅨ'), + (0xFFCC, 'M', 'ᅩ'), + (0xFFCD, 'M', 'ᅪ'), + (0xFFCE, 'M', 'ᅫ'), + (0xFFCF, 'M', 'ᅬ'), + (0xFFD0, 'X'), + (0xFFD2, 'M', 'ᅭ'), + (0xFFD3, 'M', 'ᅮ'), + (0xFFD4, 'M', 'ᅯ'), + (0xFFD5, 'M', 'ᅰ'), + (0xFFD6, 'M', 'ᅱ'), + (0xFFD7, 'M', 'ᅲ'), + (0xFFD8, 'X'), + (0xFFDA, 'M', 'ᅳ'), + (0xFFDB, 'M', 'ᅴ'), + (0xFFDC, 'M', 'ᅵ'), + (0xFFDD, 'X'), + (0xFFE0, 'M', '¢'), + (0xFFE1, 'M', '£'), + (0xFFE2, 'M', '¬'), + (0xFFE3, '3', ' ̄'), + (0xFFE4, 'M', '¦'), + (0xFFE5, 'M', '¥'), + (0xFFE6, 'M', '₩'), + (0xFFE7, 'X'), + (0xFFE8, 'M', '│'), + (0xFFE9, 'M', '←'), + ] + +def _seg_53() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFFEA, 'M', '↑'), + (0xFFEB, 'M', '→'), + (0xFFEC, 'M', '↓'), + (0xFFED, 'M', '■'), + (0xFFEE, 'M', '○'), + (0xFFEF, 'X'), + (0x10000, 'V'), + (0x1000C, 'X'), + (0x1000D, 'V'), + (0x10027, 'X'), + (0x10028, 'V'), + (0x1003B, 'X'), + (0x1003C, 'V'), + (0x1003E, 'X'), + (0x1003F, 'V'), + (0x1004E, 'X'), + (0x10050, 'V'), + (0x1005E, 'X'), + (0x10080, 'V'), + (0x100FB, 'X'), + (0x10100, 'V'), + (0x10103, 'X'), + (0x10107, 'V'), + (0x10134, 'X'), + (0x10137, 'V'), + (0x1018F, 'X'), + (0x10190, 'V'), + (0x1019D, 'X'), + (0x101A0, 'V'), + (0x101A1, 'X'), + (0x101D0, 'V'), + (0x101FE, 'X'), + (0x10280, 'V'), + (0x1029D, 'X'), + (0x102A0, 'V'), + (0x102D1, 'X'), + (0x102E0, 'V'), + (0x102FC, 'X'), + (0x10300, 'V'), + (0x10324, 'X'), + (0x1032D, 'V'), + (0x1034B, 'X'), + (0x10350, 'V'), + (0x1037B, 'X'), + (0x10380, 'V'), + (0x1039E, 'X'), + (0x1039F, 'V'), + (0x103C4, 'X'), + (0x103C8, 'V'), + (0x103D6, 'X'), + (0x10400, 'M', '𐐨'), + (0x10401, 'M', '𐐩'), + (0x10402, 'M', '𐐪'), + (0x10403, 'M', '𐐫'), + (0x10404, 'M', '𐐬'), + (0x10405, 'M', '𐐭'), + (0x10406, 'M', '𐐮'), + (0x10407, 'M', '𐐯'), + (0x10408, 'M', '𐐰'), + (0x10409, 'M', '𐐱'), + (0x1040A, 'M', '𐐲'), + (0x1040B, 'M', '𐐳'), + (0x1040C, 'M', '𐐴'), + (0x1040D, 'M', '𐐵'), + (0x1040E, 'M', '𐐶'), + (0x1040F, 'M', '𐐷'), + (0x10410, 'M', '𐐸'), + (0x10411, 'M', '𐐹'), + (0x10412, 'M', '𐐺'), + (0x10413, 'M', '𐐻'), + (0x10414, 'M', '𐐼'), + (0x10415, 'M', '𐐽'), + (0x10416, 'M', '𐐾'), + (0x10417, 'M', '𐐿'), + (0x10418, 'M', '𐑀'), + (0x10419, 'M', '𐑁'), + (0x1041A, 'M', '𐑂'), + (0x1041B, 'M', '𐑃'), + (0x1041C, 'M', '𐑄'), + (0x1041D, 'M', '𐑅'), + (0x1041E, 'M', '𐑆'), + (0x1041F, 'M', '𐑇'), + (0x10420, 'M', '𐑈'), + (0x10421, 'M', '𐑉'), + (0x10422, 'M', '𐑊'), + (0x10423, 'M', '𐑋'), + (0x10424, 'M', '𐑌'), + (0x10425, 'M', '𐑍'), + (0x10426, 'M', '𐑎'), + (0x10427, 'M', '𐑏'), + (0x10428, 'V'), + (0x1049E, 'X'), + (0x104A0, 'V'), + (0x104AA, 'X'), + (0x104B0, 'M', '𐓘'), + (0x104B1, 'M', '𐓙'), + (0x104B2, 'M', '𐓚'), + (0x104B3, 'M', '𐓛'), + (0x104B4, 'M', '𐓜'), + (0x104B5, 'M', '𐓝'), + ] + +def _seg_54() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x104B6, 'M', '𐓞'), + (0x104B7, 'M', '𐓟'), + (0x104B8, 'M', '𐓠'), + (0x104B9, 'M', '𐓡'), + (0x104BA, 'M', '𐓢'), + (0x104BB, 'M', '𐓣'), + (0x104BC, 'M', '𐓤'), + (0x104BD, 'M', '𐓥'), + (0x104BE, 'M', '𐓦'), + (0x104BF, 'M', '𐓧'), + (0x104C0, 'M', '𐓨'), + (0x104C1, 'M', '𐓩'), + (0x104C2, 'M', '𐓪'), + (0x104C3, 'M', '𐓫'), + (0x104C4, 'M', '𐓬'), + (0x104C5, 'M', '𐓭'), + (0x104C6, 'M', '𐓮'), + (0x104C7, 'M', '𐓯'), + (0x104C8, 'M', '𐓰'), + (0x104C9, 'M', '𐓱'), + (0x104CA, 'M', '𐓲'), + (0x104CB, 'M', '𐓳'), + (0x104CC, 'M', '𐓴'), + (0x104CD, 'M', '𐓵'), + (0x104CE, 'M', '𐓶'), + (0x104CF, 'M', '𐓷'), + (0x104D0, 'M', '𐓸'), + (0x104D1, 'M', '𐓹'), + (0x104D2, 'M', '𐓺'), + (0x104D3, 'M', '𐓻'), + (0x104D4, 'X'), + (0x104D8, 'V'), + (0x104FC, 'X'), + (0x10500, 'V'), + (0x10528, 'X'), + (0x10530, 'V'), + (0x10564, 'X'), + (0x1056F, 'V'), + (0x10570, 'M', '𐖗'), + (0x10571, 'M', '𐖘'), + (0x10572, 'M', '𐖙'), + (0x10573, 'M', '𐖚'), + (0x10574, 'M', '𐖛'), + (0x10575, 'M', '𐖜'), + (0x10576, 'M', '𐖝'), + (0x10577, 'M', '𐖞'), + (0x10578, 'M', '𐖟'), + (0x10579, 'M', '𐖠'), + (0x1057A, 'M', '𐖡'), + (0x1057B, 'X'), + (0x1057C, 'M', '𐖣'), + (0x1057D, 'M', '𐖤'), + (0x1057E, 'M', '𐖥'), + (0x1057F, 'M', '𐖦'), + (0x10580, 'M', '𐖧'), + (0x10581, 'M', '𐖨'), + (0x10582, 'M', '𐖩'), + (0x10583, 'M', '𐖪'), + (0x10584, 'M', '𐖫'), + (0x10585, 'M', '𐖬'), + (0x10586, 'M', '𐖭'), + (0x10587, 'M', '𐖮'), + (0x10588, 'M', '𐖯'), + (0x10589, 'M', '𐖰'), + (0x1058A, 'M', '𐖱'), + (0x1058B, 'X'), + (0x1058C, 'M', '𐖳'), + (0x1058D, 'M', '𐖴'), + (0x1058E, 'M', '𐖵'), + (0x1058F, 'M', '𐖶'), + (0x10590, 'M', '𐖷'), + (0x10591, 'M', '𐖸'), + (0x10592, 'M', '𐖹'), + (0x10593, 'X'), + (0x10594, 'M', '𐖻'), + (0x10595, 'M', '𐖼'), + (0x10596, 'X'), + (0x10597, 'V'), + (0x105A2, 'X'), + (0x105A3, 'V'), + (0x105B2, 'X'), + (0x105B3, 'V'), + (0x105BA, 'X'), + (0x105BB, 'V'), + (0x105BD, 'X'), + (0x10600, 'V'), + (0x10737, 'X'), + (0x10740, 'V'), + (0x10756, 'X'), + (0x10760, 'V'), + (0x10768, 'X'), + (0x10780, 'V'), + (0x10781, 'M', 'ː'), + (0x10782, 'M', 'ˑ'), + (0x10783, 'M', 'æ'), + (0x10784, 'M', 'ʙ'), + (0x10785, 'M', 'ɓ'), + (0x10786, 'X'), + (0x10787, 'M', 'ʣ'), + (0x10788, 'M', 'ꭦ'), + ] + +def _seg_55() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x10789, 'M', 'ʥ'), + (0x1078A, 'M', 'ʤ'), + (0x1078B, 'M', 'ɖ'), + (0x1078C, 'M', 'ɗ'), + (0x1078D, 'M', 'ᶑ'), + (0x1078E, 'M', 'ɘ'), + (0x1078F, 'M', 'ɞ'), + (0x10790, 'M', 'ʩ'), + (0x10791, 'M', 'ɤ'), + (0x10792, 'M', 'ɢ'), + (0x10793, 'M', 'ɠ'), + (0x10794, 'M', 'ʛ'), + (0x10795, 'M', 'ħ'), + (0x10796, 'M', 'ʜ'), + (0x10797, 'M', 'ɧ'), + (0x10798, 'M', 'ʄ'), + (0x10799, 'M', 'ʪ'), + (0x1079A, 'M', 'ʫ'), + (0x1079B, 'M', 'ɬ'), + (0x1079C, 'M', '𝼄'), + (0x1079D, 'M', 'ꞎ'), + (0x1079E, 'M', 'ɮ'), + (0x1079F, 'M', '𝼅'), + (0x107A0, 'M', 'ʎ'), + (0x107A1, 'M', '𝼆'), + (0x107A2, 'M', 'ø'), + (0x107A3, 'M', 'ɶ'), + (0x107A4, 'M', 'ɷ'), + (0x107A5, 'M', 'q'), + (0x107A6, 'M', 'ɺ'), + (0x107A7, 'M', '𝼈'), + (0x107A8, 'M', 'ɽ'), + (0x107A9, 'M', 'ɾ'), + (0x107AA, 'M', 'ʀ'), + (0x107AB, 'M', 'ʨ'), + (0x107AC, 'M', 'ʦ'), + (0x107AD, 'M', 'ꭧ'), + (0x107AE, 'M', 'ʧ'), + (0x107AF, 'M', 'ʈ'), + (0x107B0, 'M', 'ⱱ'), + (0x107B1, 'X'), + (0x107B2, 'M', 'ʏ'), + (0x107B3, 'M', 'ʡ'), + (0x107B4, 'M', 'ʢ'), + (0x107B5, 'M', 'ʘ'), + (0x107B6, 'M', 'ǀ'), + (0x107B7, 'M', 'ǁ'), + (0x107B8, 'M', 'ǂ'), + (0x107B9, 'M', '𝼊'), + (0x107BA, 'M', '𝼞'), + (0x107BB, 'X'), + (0x10800, 'V'), + (0x10806, 'X'), + (0x10808, 'V'), + (0x10809, 'X'), + (0x1080A, 'V'), + (0x10836, 'X'), + (0x10837, 'V'), + (0x10839, 'X'), + (0x1083C, 'V'), + (0x1083D, 'X'), + (0x1083F, 'V'), + (0x10856, 'X'), + (0x10857, 'V'), + (0x1089F, 'X'), + (0x108A7, 'V'), + (0x108B0, 'X'), + (0x108E0, 'V'), + (0x108F3, 'X'), + (0x108F4, 'V'), + (0x108F6, 'X'), + (0x108FB, 'V'), + (0x1091C, 'X'), + (0x1091F, 'V'), + (0x1093A, 'X'), + (0x1093F, 'V'), + (0x10940, 'X'), + (0x10980, 'V'), + (0x109B8, 'X'), + (0x109BC, 'V'), + (0x109D0, 'X'), + (0x109D2, 'V'), + (0x10A04, 'X'), + (0x10A05, 'V'), + (0x10A07, 'X'), + (0x10A0C, 'V'), + (0x10A14, 'X'), + (0x10A15, 'V'), + (0x10A18, 'X'), + (0x10A19, 'V'), + (0x10A36, 'X'), + (0x10A38, 'V'), + (0x10A3B, 'X'), + (0x10A3F, 'V'), + (0x10A49, 'X'), + (0x10A50, 'V'), + (0x10A59, 'X'), + (0x10A60, 'V'), + (0x10AA0, 'X'), + (0x10AC0, 'V'), + ] + +def _seg_56() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x10AE7, 'X'), + (0x10AEB, 'V'), + (0x10AF7, 'X'), + (0x10B00, 'V'), + (0x10B36, 'X'), + (0x10B39, 'V'), + (0x10B56, 'X'), + (0x10B58, 'V'), + (0x10B73, 'X'), + (0x10B78, 'V'), + (0x10B92, 'X'), + (0x10B99, 'V'), + (0x10B9D, 'X'), + (0x10BA9, 'V'), + (0x10BB0, 'X'), + (0x10C00, 'V'), + (0x10C49, 'X'), + (0x10C80, 'M', '𐳀'), + (0x10C81, 'M', '𐳁'), + (0x10C82, 'M', '𐳂'), + (0x10C83, 'M', '𐳃'), + (0x10C84, 'M', '𐳄'), + (0x10C85, 'M', '𐳅'), + (0x10C86, 'M', '𐳆'), + (0x10C87, 'M', '𐳇'), + (0x10C88, 'M', '𐳈'), + (0x10C89, 'M', '𐳉'), + (0x10C8A, 'M', '𐳊'), + (0x10C8B, 'M', '𐳋'), + (0x10C8C, 'M', '𐳌'), + (0x10C8D, 'M', '𐳍'), + (0x10C8E, 'M', '𐳎'), + (0x10C8F, 'M', '𐳏'), + (0x10C90, 'M', '𐳐'), + (0x10C91, 'M', '𐳑'), + (0x10C92, 'M', '𐳒'), + (0x10C93, 'M', '𐳓'), + (0x10C94, 'M', '𐳔'), + (0x10C95, 'M', '𐳕'), + (0x10C96, 'M', '𐳖'), + (0x10C97, 'M', '𐳗'), + (0x10C98, 'M', '𐳘'), + (0x10C99, 'M', '𐳙'), + (0x10C9A, 'M', '𐳚'), + (0x10C9B, 'M', '𐳛'), + (0x10C9C, 'M', '𐳜'), + (0x10C9D, 'M', '𐳝'), + (0x10C9E, 'M', '𐳞'), + (0x10C9F, 'M', '𐳟'), + (0x10CA0, 'M', '𐳠'), + (0x10CA1, 'M', '𐳡'), + (0x10CA2, 'M', '𐳢'), + (0x10CA3, 'M', '𐳣'), + (0x10CA4, 'M', '𐳤'), + (0x10CA5, 'M', '𐳥'), + (0x10CA6, 'M', '𐳦'), + (0x10CA7, 'M', '𐳧'), + (0x10CA8, 'M', '𐳨'), + (0x10CA9, 'M', '𐳩'), + (0x10CAA, 'M', '𐳪'), + (0x10CAB, 'M', '𐳫'), + (0x10CAC, 'M', '𐳬'), + (0x10CAD, 'M', '𐳭'), + (0x10CAE, 'M', '𐳮'), + (0x10CAF, 'M', '𐳯'), + (0x10CB0, 'M', '𐳰'), + (0x10CB1, 'M', '𐳱'), + (0x10CB2, 'M', '𐳲'), + (0x10CB3, 'X'), + (0x10CC0, 'V'), + (0x10CF3, 'X'), + (0x10CFA, 'V'), + (0x10D28, 'X'), + (0x10D30, 'V'), + (0x10D3A, 'X'), + (0x10E60, 'V'), + (0x10E7F, 'X'), + (0x10E80, 'V'), + (0x10EAA, 'X'), + (0x10EAB, 'V'), + (0x10EAE, 'X'), + (0x10EB0, 'V'), + (0x10EB2, 'X'), + (0x10EFD, 'V'), + (0x10F28, 'X'), + (0x10F30, 'V'), + (0x10F5A, 'X'), + (0x10F70, 'V'), + (0x10F8A, 'X'), + (0x10FB0, 'V'), + (0x10FCC, 'X'), + (0x10FE0, 'V'), + (0x10FF7, 'X'), + (0x11000, 'V'), + (0x1104E, 'X'), + (0x11052, 'V'), + (0x11076, 'X'), + (0x1107F, 'V'), + (0x110BD, 'X'), + (0x110BE, 'V'), + ] + +def _seg_57() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x110C3, 'X'), + (0x110D0, 'V'), + (0x110E9, 'X'), + (0x110F0, 'V'), + (0x110FA, 'X'), + (0x11100, 'V'), + (0x11135, 'X'), + (0x11136, 'V'), + (0x11148, 'X'), + (0x11150, 'V'), + (0x11177, 'X'), + (0x11180, 'V'), + (0x111E0, 'X'), + (0x111E1, 'V'), + (0x111F5, 'X'), + (0x11200, 'V'), + (0x11212, 'X'), + (0x11213, 'V'), + (0x11242, 'X'), + (0x11280, 'V'), + (0x11287, 'X'), + (0x11288, 'V'), + (0x11289, 'X'), + (0x1128A, 'V'), + (0x1128E, 'X'), + (0x1128F, 'V'), + (0x1129E, 'X'), + (0x1129F, 'V'), + (0x112AA, 'X'), + (0x112B0, 'V'), + (0x112EB, 'X'), + (0x112F0, 'V'), + (0x112FA, 'X'), + (0x11300, 'V'), + (0x11304, 'X'), + (0x11305, 'V'), + (0x1130D, 'X'), + (0x1130F, 'V'), + (0x11311, 'X'), + (0x11313, 'V'), + (0x11329, 'X'), + (0x1132A, 'V'), + (0x11331, 'X'), + (0x11332, 'V'), + (0x11334, 'X'), + (0x11335, 'V'), + (0x1133A, 'X'), + (0x1133B, 'V'), + (0x11345, 'X'), + (0x11347, 'V'), + (0x11349, 'X'), + (0x1134B, 'V'), + (0x1134E, 'X'), + (0x11350, 'V'), + (0x11351, 'X'), + (0x11357, 'V'), + (0x11358, 'X'), + (0x1135D, 'V'), + (0x11364, 'X'), + (0x11366, 'V'), + (0x1136D, 'X'), + (0x11370, 'V'), + (0x11375, 'X'), + (0x11400, 'V'), + (0x1145C, 'X'), + (0x1145D, 'V'), + (0x11462, 'X'), + (0x11480, 'V'), + (0x114C8, 'X'), + (0x114D0, 'V'), + (0x114DA, 'X'), + (0x11580, 'V'), + (0x115B6, 'X'), + (0x115B8, 'V'), + (0x115DE, 'X'), + (0x11600, 'V'), + (0x11645, 'X'), + (0x11650, 'V'), + (0x1165A, 'X'), + (0x11660, 'V'), + (0x1166D, 'X'), + (0x11680, 'V'), + (0x116BA, 'X'), + (0x116C0, 'V'), + (0x116CA, 'X'), + (0x11700, 'V'), + (0x1171B, 'X'), + (0x1171D, 'V'), + (0x1172C, 'X'), + (0x11730, 'V'), + (0x11747, 'X'), + (0x11800, 'V'), + (0x1183C, 'X'), + (0x118A0, 'M', '𑣀'), + (0x118A1, 'M', '𑣁'), + (0x118A2, 'M', '𑣂'), + (0x118A3, 'M', '𑣃'), + (0x118A4, 'M', '𑣄'), + (0x118A5, 'M', '𑣅'), + (0x118A6, 'M', '𑣆'), + ] + +def _seg_58() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x118A7, 'M', '𑣇'), + (0x118A8, 'M', '𑣈'), + (0x118A9, 'M', '𑣉'), + (0x118AA, 'M', '𑣊'), + (0x118AB, 'M', '𑣋'), + (0x118AC, 'M', '𑣌'), + (0x118AD, 'M', '𑣍'), + (0x118AE, 'M', '𑣎'), + (0x118AF, 'M', '𑣏'), + (0x118B0, 'M', '𑣐'), + (0x118B1, 'M', '𑣑'), + (0x118B2, 'M', '𑣒'), + (0x118B3, 'M', '𑣓'), + (0x118B4, 'M', '𑣔'), + (0x118B5, 'M', '𑣕'), + (0x118B6, 'M', '𑣖'), + (0x118B7, 'M', '𑣗'), + (0x118B8, 'M', '𑣘'), + (0x118B9, 'M', '𑣙'), + (0x118BA, 'M', '𑣚'), + (0x118BB, 'M', '𑣛'), + (0x118BC, 'M', '𑣜'), + (0x118BD, 'M', '𑣝'), + (0x118BE, 'M', '𑣞'), + (0x118BF, 'M', '𑣟'), + (0x118C0, 'V'), + (0x118F3, 'X'), + (0x118FF, 'V'), + (0x11907, 'X'), + (0x11909, 'V'), + (0x1190A, 'X'), + (0x1190C, 'V'), + (0x11914, 'X'), + (0x11915, 'V'), + (0x11917, 'X'), + (0x11918, 'V'), + (0x11936, 'X'), + (0x11937, 'V'), + (0x11939, 'X'), + (0x1193B, 'V'), + (0x11947, 'X'), + (0x11950, 'V'), + (0x1195A, 'X'), + (0x119A0, 'V'), + (0x119A8, 'X'), + (0x119AA, 'V'), + (0x119D8, 'X'), + (0x119DA, 'V'), + (0x119E5, 'X'), + (0x11A00, 'V'), + (0x11A48, 'X'), + (0x11A50, 'V'), + (0x11AA3, 'X'), + (0x11AB0, 'V'), + (0x11AF9, 'X'), + (0x11B00, 'V'), + (0x11B0A, 'X'), + (0x11C00, 'V'), + (0x11C09, 'X'), + (0x11C0A, 'V'), + (0x11C37, 'X'), + (0x11C38, 'V'), + (0x11C46, 'X'), + (0x11C50, 'V'), + (0x11C6D, 'X'), + (0x11C70, 'V'), + (0x11C90, 'X'), + (0x11C92, 'V'), + (0x11CA8, 'X'), + (0x11CA9, 'V'), + (0x11CB7, 'X'), + (0x11D00, 'V'), + (0x11D07, 'X'), + (0x11D08, 'V'), + (0x11D0A, 'X'), + (0x11D0B, 'V'), + (0x11D37, 'X'), + (0x11D3A, 'V'), + (0x11D3B, 'X'), + (0x11D3C, 'V'), + (0x11D3E, 'X'), + (0x11D3F, 'V'), + (0x11D48, 'X'), + (0x11D50, 'V'), + (0x11D5A, 'X'), + (0x11D60, 'V'), + (0x11D66, 'X'), + (0x11D67, 'V'), + (0x11D69, 'X'), + (0x11D6A, 'V'), + (0x11D8F, 'X'), + (0x11D90, 'V'), + (0x11D92, 'X'), + (0x11D93, 'V'), + (0x11D99, 'X'), + (0x11DA0, 'V'), + (0x11DAA, 'X'), + (0x11EE0, 'V'), + (0x11EF9, 'X'), + (0x11F00, 'V'), + ] + +def _seg_59() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x11F11, 'X'), + (0x11F12, 'V'), + (0x11F3B, 'X'), + (0x11F3E, 'V'), + (0x11F5A, 'X'), + (0x11FB0, 'V'), + (0x11FB1, 'X'), + (0x11FC0, 'V'), + (0x11FF2, 'X'), + (0x11FFF, 'V'), + (0x1239A, 'X'), + (0x12400, 'V'), + (0x1246F, 'X'), + (0x12470, 'V'), + (0x12475, 'X'), + (0x12480, 'V'), + (0x12544, 'X'), + (0x12F90, 'V'), + (0x12FF3, 'X'), + (0x13000, 'V'), + (0x13430, 'X'), + (0x13440, 'V'), + (0x13456, 'X'), + (0x14400, 'V'), + (0x14647, 'X'), + (0x16800, 'V'), + (0x16A39, 'X'), + (0x16A40, 'V'), + (0x16A5F, 'X'), + (0x16A60, 'V'), + (0x16A6A, 'X'), + (0x16A6E, 'V'), + (0x16ABF, 'X'), + (0x16AC0, 'V'), + (0x16ACA, 'X'), + (0x16AD0, 'V'), + (0x16AEE, 'X'), + (0x16AF0, 'V'), + (0x16AF6, 'X'), + (0x16B00, 'V'), + (0x16B46, 'X'), + (0x16B50, 'V'), + (0x16B5A, 'X'), + (0x16B5B, 'V'), + (0x16B62, 'X'), + (0x16B63, 'V'), + (0x16B78, 'X'), + (0x16B7D, 'V'), + (0x16B90, 'X'), + (0x16E40, 'M', '𖹠'), + (0x16E41, 'M', '𖹡'), + (0x16E42, 'M', '𖹢'), + (0x16E43, 'M', '𖹣'), + (0x16E44, 'M', '𖹤'), + (0x16E45, 'M', '𖹥'), + (0x16E46, 'M', '𖹦'), + (0x16E47, 'M', '𖹧'), + (0x16E48, 'M', '𖹨'), + (0x16E49, 'M', '𖹩'), + (0x16E4A, 'M', '𖹪'), + (0x16E4B, 'M', '𖹫'), + (0x16E4C, 'M', '𖹬'), + (0x16E4D, 'M', '𖹭'), + (0x16E4E, 'M', '𖹮'), + (0x16E4F, 'M', '𖹯'), + (0x16E50, 'M', '𖹰'), + (0x16E51, 'M', '𖹱'), + (0x16E52, 'M', '𖹲'), + (0x16E53, 'M', '𖹳'), + (0x16E54, 'M', '𖹴'), + (0x16E55, 'M', '𖹵'), + (0x16E56, 'M', '𖹶'), + (0x16E57, 'M', '𖹷'), + (0x16E58, 'M', '𖹸'), + (0x16E59, 'M', '𖹹'), + (0x16E5A, 'M', '𖹺'), + (0x16E5B, 'M', '𖹻'), + (0x16E5C, 'M', '𖹼'), + (0x16E5D, 'M', '𖹽'), + (0x16E5E, 'M', '𖹾'), + (0x16E5F, 'M', '𖹿'), + (0x16E60, 'V'), + (0x16E9B, 'X'), + (0x16F00, 'V'), + (0x16F4B, 'X'), + (0x16F4F, 'V'), + (0x16F88, 'X'), + (0x16F8F, 'V'), + (0x16FA0, 'X'), + (0x16FE0, 'V'), + (0x16FE5, 'X'), + (0x16FF0, 'V'), + (0x16FF2, 'X'), + (0x17000, 'V'), + (0x187F8, 'X'), + (0x18800, 'V'), + (0x18CD6, 'X'), + (0x18D00, 'V'), + (0x18D09, 'X'), + (0x1AFF0, 'V'), + ] + +def _seg_60() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1AFF4, 'X'), + (0x1AFF5, 'V'), + (0x1AFFC, 'X'), + (0x1AFFD, 'V'), + (0x1AFFF, 'X'), + (0x1B000, 'V'), + (0x1B123, 'X'), + (0x1B132, 'V'), + (0x1B133, 'X'), + (0x1B150, 'V'), + (0x1B153, 'X'), + (0x1B155, 'V'), + (0x1B156, 'X'), + (0x1B164, 'V'), + (0x1B168, 'X'), + (0x1B170, 'V'), + (0x1B2FC, 'X'), + (0x1BC00, 'V'), + (0x1BC6B, 'X'), + (0x1BC70, 'V'), + (0x1BC7D, 'X'), + (0x1BC80, 'V'), + (0x1BC89, 'X'), + (0x1BC90, 'V'), + (0x1BC9A, 'X'), + (0x1BC9C, 'V'), + (0x1BCA0, 'I'), + (0x1BCA4, 'X'), + (0x1CF00, 'V'), + (0x1CF2E, 'X'), + (0x1CF30, 'V'), + (0x1CF47, 'X'), + (0x1CF50, 'V'), + (0x1CFC4, 'X'), + (0x1D000, 'V'), + (0x1D0F6, 'X'), + (0x1D100, 'V'), + (0x1D127, 'X'), + (0x1D129, 'V'), + (0x1D15E, 'M', '𝅗𝅥'), + (0x1D15F, 'M', '𝅘𝅥'), + (0x1D160, 'M', '𝅘𝅥𝅮'), + (0x1D161, 'M', '𝅘𝅥𝅯'), + (0x1D162, 'M', '𝅘𝅥𝅰'), + (0x1D163, 'M', '𝅘𝅥𝅱'), + (0x1D164, 'M', '𝅘𝅥𝅲'), + (0x1D165, 'V'), + (0x1D173, 'X'), + (0x1D17B, 'V'), + (0x1D1BB, 'M', '𝆹𝅥'), + (0x1D1BC, 'M', '𝆺𝅥'), + (0x1D1BD, 'M', '𝆹𝅥𝅮'), + (0x1D1BE, 'M', '𝆺𝅥𝅮'), + (0x1D1BF, 'M', '𝆹𝅥𝅯'), + (0x1D1C0, 'M', '𝆺𝅥𝅯'), + (0x1D1C1, 'V'), + (0x1D1EB, 'X'), + (0x1D200, 'V'), + (0x1D246, 'X'), + (0x1D2C0, 'V'), + (0x1D2D4, 'X'), + (0x1D2E0, 'V'), + (0x1D2F4, 'X'), + (0x1D300, 'V'), + (0x1D357, 'X'), + (0x1D360, 'V'), + (0x1D379, 'X'), + (0x1D400, 'M', 'a'), + (0x1D401, 'M', 'b'), + (0x1D402, 'M', 'c'), + (0x1D403, 'M', 'd'), + (0x1D404, 'M', 'e'), + (0x1D405, 'M', 'f'), + (0x1D406, 'M', 'g'), + (0x1D407, 'M', 'h'), + (0x1D408, 'M', 'i'), + (0x1D409, 'M', 'j'), + (0x1D40A, 'M', 'k'), + (0x1D40B, 'M', 'l'), + (0x1D40C, 'M', 'm'), + (0x1D40D, 'M', 'n'), + (0x1D40E, 'M', 'o'), + (0x1D40F, 'M', 'p'), + (0x1D410, 'M', 'q'), + (0x1D411, 'M', 'r'), + (0x1D412, 'M', 's'), + (0x1D413, 'M', 't'), + (0x1D414, 'M', 'u'), + (0x1D415, 'M', 'v'), + (0x1D416, 'M', 'w'), + (0x1D417, 'M', 'x'), + (0x1D418, 'M', 'y'), + (0x1D419, 'M', 'z'), + (0x1D41A, 'M', 'a'), + (0x1D41B, 'M', 'b'), + (0x1D41C, 'M', 'c'), + (0x1D41D, 'M', 'd'), + (0x1D41E, 'M', 'e'), + (0x1D41F, 'M', 'f'), + (0x1D420, 'M', 'g'), + ] + +def _seg_61() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D421, 'M', 'h'), + (0x1D422, 'M', 'i'), + (0x1D423, 'M', 'j'), + (0x1D424, 'M', 'k'), + (0x1D425, 'M', 'l'), + (0x1D426, 'M', 'm'), + (0x1D427, 'M', 'n'), + (0x1D428, 'M', 'o'), + (0x1D429, 'M', 'p'), + (0x1D42A, 'M', 'q'), + (0x1D42B, 'M', 'r'), + (0x1D42C, 'M', 's'), + (0x1D42D, 'M', 't'), + (0x1D42E, 'M', 'u'), + (0x1D42F, 'M', 'v'), + (0x1D430, 'M', 'w'), + (0x1D431, 'M', 'x'), + (0x1D432, 'M', 'y'), + (0x1D433, 'M', 'z'), + (0x1D434, 'M', 'a'), + (0x1D435, 'M', 'b'), + (0x1D436, 'M', 'c'), + (0x1D437, 'M', 'd'), + (0x1D438, 'M', 'e'), + (0x1D439, 'M', 'f'), + (0x1D43A, 'M', 'g'), + (0x1D43B, 'M', 'h'), + (0x1D43C, 'M', 'i'), + (0x1D43D, 'M', 'j'), + (0x1D43E, 'M', 'k'), + (0x1D43F, 'M', 'l'), + (0x1D440, 'M', 'm'), + (0x1D441, 'M', 'n'), + (0x1D442, 'M', 'o'), + (0x1D443, 'M', 'p'), + (0x1D444, 'M', 'q'), + (0x1D445, 'M', 'r'), + (0x1D446, 'M', 's'), + (0x1D447, 'M', 't'), + (0x1D448, 'M', 'u'), + (0x1D449, 'M', 'v'), + (0x1D44A, 'M', 'w'), + (0x1D44B, 'M', 'x'), + (0x1D44C, 'M', 'y'), + (0x1D44D, 'M', 'z'), + (0x1D44E, 'M', 'a'), + (0x1D44F, 'M', 'b'), + (0x1D450, 'M', 'c'), + (0x1D451, 'M', 'd'), + (0x1D452, 'M', 'e'), + (0x1D453, 'M', 'f'), + (0x1D454, 'M', 'g'), + (0x1D455, 'X'), + (0x1D456, 'M', 'i'), + (0x1D457, 'M', 'j'), + (0x1D458, 'M', 'k'), + (0x1D459, 'M', 'l'), + (0x1D45A, 'M', 'm'), + (0x1D45B, 'M', 'n'), + (0x1D45C, 'M', 'o'), + (0x1D45D, 'M', 'p'), + (0x1D45E, 'M', 'q'), + (0x1D45F, 'M', 'r'), + (0x1D460, 'M', 's'), + (0x1D461, 'M', 't'), + (0x1D462, 'M', 'u'), + (0x1D463, 'M', 'v'), + (0x1D464, 'M', 'w'), + (0x1D465, 'M', 'x'), + (0x1D466, 'M', 'y'), + (0x1D467, 'M', 'z'), + (0x1D468, 'M', 'a'), + (0x1D469, 'M', 'b'), + (0x1D46A, 'M', 'c'), + (0x1D46B, 'M', 'd'), + (0x1D46C, 'M', 'e'), + (0x1D46D, 'M', 'f'), + (0x1D46E, 'M', 'g'), + (0x1D46F, 'M', 'h'), + (0x1D470, 'M', 'i'), + (0x1D471, 'M', 'j'), + (0x1D472, 'M', 'k'), + (0x1D473, 'M', 'l'), + (0x1D474, 'M', 'm'), + (0x1D475, 'M', 'n'), + (0x1D476, 'M', 'o'), + (0x1D477, 'M', 'p'), + (0x1D478, 'M', 'q'), + (0x1D479, 'M', 'r'), + (0x1D47A, 'M', 's'), + (0x1D47B, 'M', 't'), + (0x1D47C, 'M', 'u'), + (0x1D47D, 'M', 'v'), + (0x1D47E, 'M', 'w'), + (0x1D47F, 'M', 'x'), + (0x1D480, 'M', 'y'), + (0x1D481, 'M', 'z'), + (0x1D482, 'M', 'a'), + (0x1D483, 'M', 'b'), + (0x1D484, 'M', 'c'), + ] + +def _seg_62() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D485, 'M', 'd'), + (0x1D486, 'M', 'e'), + (0x1D487, 'M', 'f'), + (0x1D488, 'M', 'g'), + (0x1D489, 'M', 'h'), + (0x1D48A, 'M', 'i'), + (0x1D48B, 'M', 'j'), + (0x1D48C, 'M', 'k'), + (0x1D48D, 'M', 'l'), + (0x1D48E, 'M', 'm'), + (0x1D48F, 'M', 'n'), + (0x1D490, 'M', 'o'), + (0x1D491, 'M', 'p'), + (0x1D492, 'M', 'q'), + (0x1D493, 'M', 'r'), + (0x1D494, 'M', 's'), + (0x1D495, 'M', 't'), + (0x1D496, 'M', 'u'), + (0x1D497, 'M', 'v'), + (0x1D498, 'M', 'w'), + (0x1D499, 'M', 'x'), + (0x1D49A, 'M', 'y'), + (0x1D49B, 'M', 'z'), + (0x1D49C, 'M', 'a'), + (0x1D49D, 'X'), + (0x1D49E, 'M', 'c'), + (0x1D49F, 'M', 'd'), + (0x1D4A0, 'X'), + (0x1D4A2, 'M', 'g'), + (0x1D4A3, 'X'), + (0x1D4A5, 'M', 'j'), + (0x1D4A6, 'M', 'k'), + (0x1D4A7, 'X'), + (0x1D4A9, 'M', 'n'), + (0x1D4AA, 'M', 'o'), + (0x1D4AB, 'M', 'p'), + (0x1D4AC, 'M', 'q'), + (0x1D4AD, 'X'), + (0x1D4AE, 'M', 's'), + (0x1D4AF, 'M', 't'), + (0x1D4B0, 'M', 'u'), + (0x1D4B1, 'M', 'v'), + (0x1D4B2, 'M', 'w'), + (0x1D4B3, 'M', 'x'), + (0x1D4B4, 'M', 'y'), + (0x1D4B5, 'M', 'z'), + (0x1D4B6, 'M', 'a'), + (0x1D4B7, 'M', 'b'), + (0x1D4B8, 'M', 'c'), + (0x1D4B9, 'M', 'd'), + (0x1D4BA, 'X'), + (0x1D4BB, 'M', 'f'), + (0x1D4BC, 'X'), + (0x1D4BD, 'M', 'h'), + (0x1D4BE, 'M', 'i'), + (0x1D4BF, 'M', 'j'), + (0x1D4C0, 'M', 'k'), + (0x1D4C1, 'M', 'l'), + (0x1D4C2, 'M', 'm'), + (0x1D4C3, 'M', 'n'), + (0x1D4C4, 'X'), + (0x1D4C5, 'M', 'p'), + (0x1D4C6, 'M', 'q'), + (0x1D4C7, 'M', 'r'), + (0x1D4C8, 'M', 's'), + (0x1D4C9, 'M', 't'), + (0x1D4CA, 'M', 'u'), + (0x1D4CB, 'M', 'v'), + (0x1D4CC, 'M', 'w'), + (0x1D4CD, 'M', 'x'), + (0x1D4CE, 'M', 'y'), + (0x1D4CF, 'M', 'z'), + (0x1D4D0, 'M', 'a'), + (0x1D4D1, 'M', 'b'), + (0x1D4D2, 'M', 'c'), + (0x1D4D3, 'M', 'd'), + (0x1D4D4, 'M', 'e'), + (0x1D4D5, 'M', 'f'), + (0x1D4D6, 'M', 'g'), + (0x1D4D7, 'M', 'h'), + (0x1D4D8, 'M', 'i'), + (0x1D4D9, 'M', 'j'), + (0x1D4DA, 'M', 'k'), + (0x1D4DB, 'M', 'l'), + (0x1D4DC, 'M', 'm'), + (0x1D4DD, 'M', 'n'), + (0x1D4DE, 'M', 'o'), + (0x1D4DF, 'M', 'p'), + (0x1D4E0, 'M', 'q'), + (0x1D4E1, 'M', 'r'), + (0x1D4E2, 'M', 's'), + (0x1D4E3, 'M', 't'), + (0x1D4E4, 'M', 'u'), + (0x1D4E5, 'M', 'v'), + (0x1D4E6, 'M', 'w'), + (0x1D4E7, 'M', 'x'), + (0x1D4E8, 'M', 'y'), + (0x1D4E9, 'M', 'z'), + (0x1D4EA, 'M', 'a'), + (0x1D4EB, 'M', 'b'), + ] + +def _seg_63() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D4EC, 'M', 'c'), + (0x1D4ED, 'M', 'd'), + (0x1D4EE, 'M', 'e'), + (0x1D4EF, 'M', 'f'), + (0x1D4F0, 'M', 'g'), + (0x1D4F1, 'M', 'h'), + (0x1D4F2, 'M', 'i'), + (0x1D4F3, 'M', 'j'), + (0x1D4F4, 'M', 'k'), + (0x1D4F5, 'M', 'l'), + (0x1D4F6, 'M', 'm'), + (0x1D4F7, 'M', 'n'), + (0x1D4F8, 'M', 'o'), + (0x1D4F9, 'M', 'p'), + (0x1D4FA, 'M', 'q'), + (0x1D4FB, 'M', 'r'), + (0x1D4FC, 'M', 's'), + (0x1D4FD, 'M', 't'), + (0x1D4FE, 'M', 'u'), + (0x1D4FF, 'M', 'v'), + (0x1D500, 'M', 'w'), + (0x1D501, 'M', 'x'), + (0x1D502, 'M', 'y'), + (0x1D503, 'M', 'z'), + (0x1D504, 'M', 'a'), + (0x1D505, 'M', 'b'), + (0x1D506, 'X'), + (0x1D507, 'M', 'd'), + (0x1D508, 'M', 'e'), + (0x1D509, 'M', 'f'), + (0x1D50A, 'M', 'g'), + (0x1D50B, 'X'), + (0x1D50D, 'M', 'j'), + (0x1D50E, 'M', 'k'), + (0x1D50F, 'M', 'l'), + (0x1D510, 'M', 'm'), + (0x1D511, 'M', 'n'), + (0x1D512, 'M', 'o'), + (0x1D513, 'M', 'p'), + (0x1D514, 'M', 'q'), + (0x1D515, 'X'), + (0x1D516, 'M', 's'), + (0x1D517, 'M', 't'), + (0x1D518, 'M', 'u'), + (0x1D519, 'M', 'v'), + (0x1D51A, 'M', 'w'), + (0x1D51B, 'M', 'x'), + (0x1D51C, 'M', 'y'), + (0x1D51D, 'X'), + (0x1D51E, 'M', 'a'), + (0x1D51F, 'M', 'b'), + (0x1D520, 'M', 'c'), + (0x1D521, 'M', 'd'), + (0x1D522, 'M', 'e'), + (0x1D523, 'M', 'f'), + (0x1D524, 'M', 'g'), + (0x1D525, 'M', 'h'), + (0x1D526, 'M', 'i'), + (0x1D527, 'M', 'j'), + (0x1D528, 'M', 'k'), + (0x1D529, 'M', 'l'), + (0x1D52A, 'M', 'm'), + (0x1D52B, 'M', 'n'), + (0x1D52C, 'M', 'o'), + (0x1D52D, 'M', 'p'), + (0x1D52E, 'M', 'q'), + (0x1D52F, 'M', 'r'), + (0x1D530, 'M', 's'), + (0x1D531, 'M', 't'), + (0x1D532, 'M', 'u'), + (0x1D533, 'M', 'v'), + (0x1D534, 'M', 'w'), + (0x1D535, 'M', 'x'), + (0x1D536, 'M', 'y'), + (0x1D537, 'M', 'z'), + (0x1D538, 'M', 'a'), + (0x1D539, 'M', 'b'), + (0x1D53A, 'X'), + (0x1D53B, 'M', 'd'), + (0x1D53C, 'M', 'e'), + (0x1D53D, 'M', 'f'), + (0x1D53E, 'M', 'g'), + (0x1D53F, 'X'), + (0x1D540, 'M', 'i'), + (0x1D541, 'M', 'j'), + (0x1D542, 'M', 'k'), + (0x1D543, 'M', 'l'), + (0x1D544, 'M', 'm'), + (0x1D545, 'X'), + (0x1D546, 'M', 'o'), + (0x1D547, 'X'), + (0x1D54A, 'M', 's'), + (0x1D54B, 'M', 't'), + (0x1D54C, 'M', 'u'), + (0x1D54D, 'M', 'v'), + (0x1D54E, 'M', 'w'), + (0x1D54F, 'M', 'x'), + (0x1D550, 'M', 'y'), + (0x1D551, 'X'), + (0x1D552, 'M', 'a'), + ] + +def _seg_64() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D553, 'M', 'b'), + (0x1D554, 'M', 'c'), + (0x1D555, 'M', 'd'), + (0x1D556, 'M', 'e'), + (0x1D557, 'M', 'f'), + (0x1D558, 'M', 'g'), + (0x1D559, 'M', 'h'), + (0x1D55A, 'M', 'i'), + (0x1D55B, 'M', 'j'), + (0x1D55C, 'M', 'k'), + (0x1D55D, 'M', 'l'), + (0x1D55E, 'M', 'm'), + (0x1D55F, 'M', 'n'), + (0x1D560, 'M', 'o'), + (0x1D561, 'M', 'p'), + (0x1D562, 'M', 'q'), + (0x1D563, 'M', 'r'), + (0x1D564, 'M', 's'), + (0x1D565, 'M', 't'), + (0x1D566, 'M', 'u'), + (0x1D567, 'M', 'v'), + (0x1D568, 'M', 'w'), + (0x1D569, 'M', 'x'), + (0x1D56A, 'M', 'y'), + (0x1D56B, 'M', 'z'), + (0x1D56C, 'M', 'a'), + (0x1D56D, 'M', 'b'), + (0x1D56E, 'M', 'c'), + (0x1D56F, 'M', 'd'), + (0x1D570, 'M', 'e'), + (0x1D571, 'M', 'f'), + (0x1D572, 'M', 'g'), + (0x1D573, 'M', 'h'), + (0x1D574, 'M', 'i'), + (0x1D575, 'M', 'j'), + (0x1D576, 'M', 'k'), + (0x1D577, 'M', 'l'), + (0x1D578, 'M', 'm'), + (0x1D579, 'M', 'n'), + (0x1D57A, 'M', 'o'), + (0x1D57B, 'M', 'p'), + (0x1D57C, 'M', 'q'), + (0x1D57D, 'M', 'r'), + (0x1D57E, 'M', 's'), + (0x1D57F, 'M', 't'), + (0x1D580, 'M', 'u'), + (0x1D581, 'M', 'v'), + (0x1D582, 'M', 'w'), + (0x1D583, 'M', 'x'), + (0x1D584, 'M', 'y'), + (0x1D585, 'M', 'z'), + (0x1D586, 'M', 'a'), + (0x1D587, 'M', 'b'), + (0x1D588, 'M', 'c'), + (0x1D589, 'M', 'd'), + (0x1D58A, 'M', 'e'), + (0x1D58B, 'M', 'f'), + (0x1D58C, 'M', 'g'), + (0x1D58D, 'M', 'h'), + (0x1D58E, 'M', 'i'), + (0x1D58F, 'M', 'j'), + (0x1D590, 'M', 'k'), + (0x1D591, 'M', 'l'), + (0x1D592, 'M', 'm'), + (0x1D593, 'M', 'n'), + (0x1D594, 'M', 'o'), + (0x1D595, 'M', 'p'), + (0x1D596, 'M', 'q'), + (0x1D597, 'M', 'r'), + (0x1D598, 'M', 's'), + (0x1D599, 'M', 't'), + (0x1D59A, 'M', 'u'), + (0x1D59B, 'M', 'v'), + (0x1D59C, 'M', 'w'), + (0x1D59D, 'M', 'x'), + (0x1D59E, 'M', 'y'), + (0x1D59F, 'M', 'z'), + (0x1D5A0, 'M', 'a'), + (0x1D5A1, 'M', 'b'), + (0x1D5A2, 'M', 'c'), + (0x1D5A3, 'M', 'd'), + (0x1D5A4, 'M', 'e'), + (0x1D5A5, 'M', 'f'), + (0x1D5A6, 'M', 'g'), + (0x1D5A7, 'M', 'h'), + (0x1D5A8, 'M', 'i'), + (0x1D5A9, 'M', 'j'), + (0x1D5AA, 'M', 'k'), + (0x1D5AB, 'M', 'l'), + (0x1D5AC, 'M', 'm'), + (0x1D5AD, 'M', 'n'), + (0x1D5AE, 'M', 'o'), + (0x1D5AF, 'M', 'p'), + (0x1D5B0, 'M', 'q'), + (0x1D5B1, 'M', 'r'), + (0x1D5B2, 'M', 's'), + (0x1D5B3, 'M', 't'), + (0x1D5B4, 'M', 'u'), + (0x1D5B5, 'M', 'v'), + (0x1D5B6, 'M', 'w'), + ] + +def _seg_65() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D5B7, 'M', 'x'), + (0x1D5B8, 'M', 'y'), + (0x1D5B9, 'M', 'z'), + (0x1D5BA, 'M', 'a'), + (0x1D5BB, 'M', 'b'), + (0x1D5BC, 'M', 'c'), + (0x1D5BD, 'M', 'd'), + (0x1D5BE, 'M', 'e'), + (0x1D5BF, 'M', 'f'), + (0x1D5C0, 'M', 'g'), + (0x1D5C1, 'M', 'h'), + (0x1D5C2, 'M', 'i'), + (0x1D5C3, 'M', 'j'), + (0x1D5C4, 'M', 'k'), + (0x1D5C5, 'M', 'l'), + (0x1D5C6, 'M', 'm'), + (0x1D5C7, 'M', 'n'), + (0x1D5C8, 'M', 'o'), + (0x1D5C9, 'M', 'p'), + (0x1D5CA, 'M', 'q'), + (0x1D5CB, 'M', 'r'), + (0x1D5CC, 'M', 's'), + (0x1D5CD, 'M', 't'), + (0x1D5CE, 'M', 'u'), + (0x1D5CF, 'M', 'v'), + (0x1D5D0, 'M', 'w'), + (0x1D5D1, 'M', 'x'), + (0x1D5D2, 'M', 'y'), + (0x1D5D3, 'M', 'z'), + (0x1D5D4, 'M', 'a'), + (0x1D5D5, 'M', 'b'), + (0x1D5D6, 'M', 'c'), + (0x1D5D7, 'M', 'd'), + (0x1D5D8, 'M', 'e'), + (0x1D5D9, 'M', 'f'), + (0x1D5DA, 'M', 'g'), + (0x1D5DB, 'M', 'h'), + (0x1D5DC, 'M', 'i'), + (0x1D5DD, 'M', 'j'), + (0x1D5DE, 'M', 'k'), + (0x1D5DF, 'M', 'l'), + (0x1D5E0, 'M', 'm'), + (0x1D5E1, 'M', 'n'), + (0x1D5E2, 'M', 'o'), + (0x1D5E3, 'M', 'p'), + (0x1D5E4, 'M', 'q'), + (0x1D5E5, 'M', 'r'), + (0x1D5E6, 'M', 's'), + (0x1D5E7, 'M', 't'), + (0x1D5E8, 'M', 'u'), + (0x1D5E9, 'M', 'v'), + (0x1D5EA, 'M', 'w'), + (0x1D5EB, 'M', 'x'), + (0x1D5EC, 'M', 'y'), + (0x1D5ED, 'M', 'z'), + (0x1D5EE, 'M', 'a'), + (0x1D5EF, 'M', 'b'), + (0x1D5F0, 'M', 'c'), + (0x1D5F1, 'M', 'd'), + (0x1D5F2, 'M', 'e'), + (0x1D5F3, 'M', 'f'), + (0x1D5F4, 'M', 'g'), + (0x1D5F5, 'M', 'h'), + (0x1D5F6, 'M', 'i'), + (0x1D5F7, 'M', 'j'), + (0x1D5F8, 'M', 'k'), + (0x1D5F9, 'M', 'l'), + (0x1D5FA, 'M', 'm'), + (0x1D5FB, 'M', 'n'), + (0x1D5FC, 'M', 'o'), + (0x1D5FD, 'M', 'p'), + (0x1D5FE, 'M', 'q'), + (0x1D5FF, 'M', 'r'), + (0x1D600, 'M', 's'), + (0x1D601, 'M', 't'), + (0x1D602, 'M', 'u'), + (0x1D603, 'M', 'v'), + (0x1D604, 'M', 'w'), + (0x1D605, 'M', 'x'), + (0x1D606, 'M', 'y'), + (0x1D607, 'M', 'z'), + (0x1D608, 'M', 'a'), + (0x1D609, 'M', 'b'), + (0x1D60A, 'M', 'c'), + (0x1D60B, 'M', 'd'), + (0x1D60C, 'M', 'e'), + (0x1D60D, 'M', 'f'), + (0x1D60E, 'M', 'g'), + (0x1D60F, 'M', 'h'), + (0x1D610, 'M', 'i'), + (0x1D611, 'M', 'j'), + (0x1D612, 'M', 'k'), + (0x1D613, 'M', 'l'), + (0x1D614, 'M', 'm'), + (0x1D615, 'M', 'n'), + (0x1D616, 'M', 'o'), + (0x1D617, 'M', 'p'), + (0x1D618, 'M', 'q'), + (0x1D619, 'M', 'r'), + (0x1D61A, 'M', 's'), + ] + +def _seg_66() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D61B, 'M', 't'), + (0x1D61C, 'M', 'u'), + (0x1D61D, 'M', 'v'), + (0x1D61E, 'M', 'w'), + (0x1D61F, 'M', 'x'), + (0x1D620, 'M', 'y'), + (0x1D621, 'M', 'z'), + (0x1D622, 'M', 'a'), + (0x1D623, 'M', 'b'), + (0x1D624, 'M', 'c'), + (0x1D625, 'M', 'd'), + (0x1D626, 'M', 'e'), + (0x1D627, 'M', 'f'), + (0x1D628, 'M', 'g'), + (0x1D629, 'M', 'h'), + (0x1D62A, 'M', 'i'), + (0x1D62B, 'M', 'j'), + (0x1D62C, 'M', 'k'), + (0x1D62D, 'M', 'l'), + (0x1D62E, 'M', 'm'), + (0x1D62F, 'M', 'n'), + (0x1D630, 'M', 'o'), + (0x1D631, 'M', 'p'), + (0x1D632, 'M', 'q'), + (0x1D633, 'M', 'r'), + (0x1D634, 'M', 's'), + (0x1D635, 'M', 't'), + (0x1D636, 'M', 'u'), + (0x1D637, 'M', 'v'), + (0x1D638, 'M', 'w'), + (0x1D639, 'M', 'x'), + (0x1D63A, 'M', 'y'), + (0x1D63B, 'M', 'z'), + (0x1D63C, 'M', 'a'), + (0x1D63D, 'M', 'b'), + (0x1D63E, 'M', 'c'), + (0x1D63F, 'M', 'd'), + (0x1D640, 'M', 'e'), + (0x1D641, 'M', 'f'), + (0x1D642, 'M', 'g'), + (0x1D643, 'M', 'h'), + (0x1D644, 'M', 'i'), + (0x1D645, 'M', 'j'), + (0x1D646, 'M', 'k'), + (0x1D647, 'M', 'l'), + (0x1D648, 'M', 'm'), + (0x1D649, 'M', 'n'), + (0x1D64A, 'M', 'o'), + (0x1D64B, 'M', 'p'), + (0x1D64C, 'M', 'q'), + (0x1D64D, 'M', 'r'), + (0x1D64E, 'M', 's'), + (0x1D64F, 'M', 't'), + (0x1D650, 'M', 'u'), + (0x1D651, 'M', 'v'), + (0x1D652, 'M', 'w'), + (0x1D653, 'M', 'x'), + (0x1D654, 'M', 'y'), + (0x1D655, 'M', 'z'), + (0x1D656, 'M', 'a'), + (0x1D657, 'M', 'b'), + (0x1D658, 'M', 'c'), + (0x1D659, 'M', 'd'), + (0x1D65A, 'M', 'e'), + (0x1D65B, 'M', 'f'), + (0x1D65C, 'M', 'g'), + (0x1D65D, 'M', 'h'), + (0x1D65E, 'M', 'i'), + (0x1D65F, 'M', 'j'), + (0x1D660, 'M', 'k'), + (0x1D661, 'M', 'l'), + (0x1D662, 'M', 'm'), + (0x1D663, 'M', 'n'), + (0x1D664, 'M', 'o'), + (0x1D665, 'M', 'p'), + (0x1D666, 'M', 'q'), + (0x1D667, 'M', 'r'), + (0x1D668, 'M', 's'), + (0x1D669, 'M', 't'), + (0x1D66A, 'M', 'u'), + (0x1D66B, 'M', 'v'), + (0x1D66C, 'M', 'w'), + (0x1D66D, 'M', 'x'), + (0x1D66E, 'M', 'y'), + (0x1D66F, 'M', 'z'), + (0x1D670, 'M', 'a'), + (0x1D671, 'M', 'b'), + (0x1D672, 'M', 'c'), + (0x1D673, 'M', 'd'), + (0x1D674, 'M', 'e'), + (0x1D675, 'M', 'f'), + (0x1D676, 'M', 'g'), + (0x1D677, 'M', 'h'), + (0x1D678, 'M', 'i'), + (0x1D679, 'M', 'j'), + (0x1D67A, 'M', 'k'), + (0x1D67B, 'M', 'l'), + (0x1D67C, 'M', 'm'), + (0x1D67D, 'M', 'n'), + (0x1D67E, 'M', 'o'), + ] + +def _seg_67() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D67F, 'M', 'p'), + (0x1D680, 'M', 'q'), + (0x1D681, 'M', 'r'), + (0x1D682, 'M', 's'), + (0x1D683, 'M', 't'), + (0x1D684, 'M', 'u'), + (0x1D685, 'M', 'v'), + (0x1D686, 'M', 'w'), + (0x1D687, 'M', 'x'), + (0x1D688, 'M', 'y'), + (0x1D689, 'M', 'z'), + (0x1D68A, 'M', 'a'), + (0x1D68B, 'M', 'b'), + (0x1D68C, 'M', 'c'), + (0x1D68D, 'M', 'd'), + (0x1D68E, 'M', 'e'), + (0x1D68F, 'M', 'f'), + (0x1D690, 'M', 'g'), + (0x1D691, 'M', 'h'), + (0x1D692, 'M', 'i'), + (0x1D693, 'M', 'j'), + (0x1D694, 'M', 'k'), + (0x1D695, 'M', 'l'), + (0x1D696, 'M', 'm'), + (0x1D697, 'M', 'n'), + (0x1D698, 'M', 'o'), + (0x1D699, 'M', 'p'), + (0x1D69A, 'M', 'q'), + (0x1D69B, 'M', 'r'), + (0x1D69C, 'M', 's'), + (0x1D69D, 'M', 't'), + (0x1D69E, 'M', 'u'), + (0x1D69F, 'M', 'v'), + (0x1D6A0, 'M', 'w'), + (0x1D6A1, 'M', 'x'), + (0x1D6A2, 'M', 'y'), + (0x1D6A3, 'M', 'z'), + (0x1D6A4, 'M', 'ı'), + (0x1D6A5, 'M', 'ȷ'), + (0x1D6A6, 'X'), + (0x1D6A8, 'M', 'α'), + (0x1D6A9, 'M', 'β'), + (0x1D6AA, 'M', 'γ'), + (0x1D6AB, 'M', 'δ'), + (0x1D6AC, 'M', 'ε'), + (0x1D6AD, 'M', 'ζ'), + (0x1D6AE, 'M', 'η'), + (0x1D6AF, 'M', 'θ'), + (0x1D6B0, 'M', 'ι'), + (0x1D6B1, 'M', 'κ'), + (0x1D6B2, 'M', 'λ'), + (0x1D6B3, 'M', 'μ'), + (0x1D6B4, 'M', 'ν'), + (0x1D6B5, 'M', 'ξ'), + (0x1D6B6, 'M', 'ο'), + (0x1D6B7, 'M', 'π'), + (0x1D6B8, 'M', 'ρ'), + (0x1D6B9, 'M', 'θ'), + (0x1D6BA, 'M', 'σ'), + (0x1D6BB, 'M', 'τ'), + (0x1D6BC, 'M', 'υ'), + (0x1D6BD, 'M', 'φ'), + (0x1D6BE, 'M', 'χ'), + (0x1D6BF, 'M', 'ψ'), + (0x1D6C0, 'M', 'ω'), + (0x1D6C1, 'M', '∇'), + (0x1D6C2, 'M', 'α'), + (0x1D6C3, 'M', 'β'), + (0x1D6C4, 'M', 'γ'), + (0x1D6C5, 'M', 'δ'), + (0x1D6C6, 'M', 'ε'), + (0x1D6C7, 'M', 'ζ'), + (0x1D6C8, 'M', 'η'), + (0x1D6C9, 'M', 'θ'), + (0x1D6CA, 'M', 'ι'), + (0x1D6CB, 'M', 'κ'), + (0x1D6CC, 'M', 'λ'), + (0x1D6CD, 'M', 'μ'), + (0x1D6CE, 'M', 'ν'), + (0x1D6CF, 'M', 'ξ'), + (0x1D6D0, 'M', 'ο'), + (0x1D6D1, 'M', 'π'), + (0x1D6D2, 'M', 'ρ'), + (0x1D6D3, 'M', 'σ'), + (0x1D6D5, 'M', 'τ'), + (0x1D6D6, 'M', 'υ'), + (0x1D6D7, 'M', 'φ'), + (0x1D6D8, 'M', 'χ'), + (0x1D6D9, 'M', 'ψ'), + (0x1D6DA, 'M', 'ω'), + (0x1D6DB, 'M', '∂'), + (0x1D6DC, 'M', 'ε'), + (0x1D6DD, 'M', 'θ'), + (0x1D6DE, 'M', 'κ'), + (0x1D6DF, 'M', 'φ'), + (0x1D6E0, 'M', 'ρ'), + (0x1D6E1, 'M', 'π'), + (0x1D6E2, 'M', 'α'), + (0x1D6E3, 'M', 'β'), + (0x1D6E4, 'M', 'γ'), + ] + +def _seg_68() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D6E5, 'M', 'δ'), + (0x1D6E6, 'M', 'ε'), + (0x1D6E7, 'M', 'ζ'), + (0x1D6E8, 'M', 'η'), + (0x1D6E9, 'M', 'θ'), + (0x1D6EA, 'M', 'ι'), + (0x1D6EB, 'M', 'κ'), + (0x1D6EC, 'M', 'λ'), + (0x1D6ED, 'M', 'μ'), + (0x1D6EE, 'M', 'ν'), + (0x1D6EF, 'M', 'ξ'), + (0x1D6F0, 'M', 'ο'), + (0x1D6F1, 'M', 'π'), + (0x1D6F2, 'M', 'ρ'), + (0x1D6F3, 'M', 'θ'), + (0x1D6F4, 'M', 'σ'), + (0x1D6F5, 'M', 'τ'), + (0x1D6F6, 'M', 'υ'), + (0x1D6F7, 'M', 'φ'), + (0x1D6F8, 'M', 'χ'), + (0x1D6F9, 'M', 'ψ'), + (0x1D6FA, 'M', 'ω'), + (0x1D6FB, 'M', '∇'), + (0x1D6FC, 'M', 'α'), + (0x1D6FD, 'M', 'β'), + (0x1D6FE, 'M', 'γ'), + (0x1D6FF, 'M', 'δ'), + (0x1D700, 'M', 'ε'), + (0x1D701, 'M', 'ζ'), + (0x1D702, 'M', 'η'), + (0x1D703, 'M', 'θ'), + (0x1D704, 'M', 'ι'), + (0x1D705, 'M', 'κ'), + (0x1D706, 'M', 'λ'), + (0x1D707, 'M', 'μ'), + (0x1D708, 'M', 'ν'), + (0x1D709, 'M', 'ξ'), + (0x1D70A, 'M', 'ο'), + (0x1D70B, 'M', 'π'), + (0x1D70C, 'M', 'ρ'), + (0x1D70D, 'M', 'σ'), + (0x1D70F, 'M', 'τ'), + (0x1D710, 'M', 'υ'), + (0x1D711, 'M', 'φ'), + (0x1D712, 'M', 'χ'), + (0x1D713, 'M', 'ψ'), + (0x1D714, 'M', 'ω'), + (0x1D715, 'M', '∂'), + (0x1D716, 'M', 'ε'), + (0x1D717, 'M', 'θ'), + (0x1D718, 'M', 'κ'), + (0x1D719, 'M', 'φ'), + (0x1D71A, 'M', 'ρ'), + (0x1D71B, 'M', 'π'), + (0x1D71C, 'M', 'α'), + (0x1D71D, 'M', 'β'), + (0x1D71E, 'M', 'γ'), + (0x1D71F, 'M', 'δ'), + (0x1D720, 'M', 'ε'), + (0x1D721, 'M', 'ζ'), + (0x1D722, 'M', 'η'), + (0x1D723, 'M', 'θ'), + (0x1D724, 'M', 'ι'), + (0x1D725, 'M', 'κ'), + (0x1D726, 'M', 'λ'), + (0x1D727, 'M', 'μ'), + (0x1D728, 'M', 'ν'), + (0x1D729, 'M', 'ξ'), + (0x1D72A, 'M', 'ο'), + (0x1D72B, 'M', 'π'), + (0x1D72C, 'M', 'ρ'), + (0x1D72D, 'M', 'θ'), + (0x1D72E, 'M', 'σ'), + (0x1D72F, 'M', 'τ'), + (0x1D730, 'M', 'υ'), + (0x1D731, 'M', 'φ'), + (0x1D732, 'M', 'χ'), + (0x1D733, 'M', 'ψ'), + (0x1D734, 'M', 'ω'), + (0x1D735, 'M', '∇'), + (0x1D736, 'M', 'α'), + (0x1D737, 'M', 'β'), + (0x1D738, 'M', 'γ'), + (0x1D739, 'M', 'δ'), + (0x1D73A, 'M', 'ε'), + (0x1D73B, 'M', 'ζ'), + (0x1D73C, 'M', 'η'), + (0x1D73D, 'M', 'θ'), + (0x1D73E, 'M', 'ι'), + (0x1D73F, 'M', 'κ'), + (0x1D740, 'M', 'λ'), + (0x1D741, 'M', 'μ'), + (0x1D742, 'M', 'ν'), + (0x1D743, 'M', 'ξ'), + (0x1D744, 'M', 'ο'), + (0x1D745, 'M', 'π'), + (0x1D746, 'M', 'ρ'), + (0x1D747, 'M', 'σ'), + (0x1D749, 'M', 'τ'), + (0x1D74A, 'M', 'υ'), + ] + +def _seg_69() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D74B, 'M', 'φ'), + (0x1D74C, 'M', 'χ'), + (0x1D74D, 'M', 'ψ'), + (0x1D74E, 'M', 'ω'), + (0x1D74F, 'M', '∂'), + (0x1D750, 'M', 'ε'), + (0x1D751, 'M', 'θ'), + (0x1D752, 'M', 'κ'), + (0x1D753, 'M', 'φ'), + (0x1D754, 'M', 'ρ'), + (0x1D755, 'M', 'π'), + (0x1D756, 'M', 'α'), + (0x1D757, 'M', 'β'), + (0x1D758, 'M', 'γ'), + (0x1D759, 'M', 'δ'), + (0x1D75A, 'M', 'ε'), + (0x1D75B, 'M', 'ζ'), + (0x1D75C, 'M', 'η'), + (0x1D75D, 'M', 'θ'), + (0x1D75E, 'M', 'ι'), + (0x1D75F, 'M', 'κ'), + (0x1D760, 'M', 'λ'), + (0x1D761, 'M', 'μ'), + (0x1D762, 'M', 'ν'), + (0x1D763, 'M', 'ξ'), + (0x1D764, 'M', 'ο'), + (0x1D765, 'M', 'π'), + (0x1D766, 'M', 'ρ'), + (0x1D767, 'M', 'θ'), + (0x1D768, 'M', 'σ'), + (0x1D769, 'M', 'τ'), + (0x1D76A, 'M', 'υ'), + (0x1D76B, 'M', 'φ'), + (0x1D76C, 'M', 'χ'), + (0x1D76D, 'M', 'ψ'), + (0x1D76E, 'M', 'ω'), + (0x1D76F, 'M', '∇'), + (0x1D770, 'M', 'α'), + (0x1D771, 'M', 'β'), + (0x1D772, 'M', 'γ'), + (0x1D773, 'M', 'δ'), + (0x1D774, 'M', 'ε'), + (0x1D775, 'M', 'ζ'), + (0x1D776, 'M', 'η'), + (0x1D777, 'M', 'θ'), + (0x1D778, 'M', 'ι'), + (0x1D779, 'M', 'κ'), + (0x1D77A, 'M', 'λ'), + (0x1D77B, 'M', 'μ'), + (0x1D77C, 'M', 'ν'), + (0x1D77D, 'M', 'ξ'), + (0x1D77E, 'M', 'ο'), + (0x1D77F, 'M', 'π'), + (0x1D780, 'M', 'ρ'), + (0x1D781, 'M', 'σ'), + (0x1D783, 'M', 'τ'), + (0x1D784, 'M', 'υ'), + (0x1D785, 'M', 'φ'), + (0x1D786, 'M', 'χ'), + (0x1D787, 'M', 'ψ'), + (0x1D788, 'M', 'ω'), + (0x1D789, 'M', '∂'), + (0x1D78A, 'M', 'ε'), + (0x1D78B, 'M', 'θ'), + (0x1D78C, 'M', 'κ'), + (0x1D78D, 'M', 'φ'), + (0x1D78E, 'M', 'ρ'), + (0x1D78F, 'M', 'π'), + (0x1D790, 'M', 'α'), + (0x1D791, 'M', 'β'), + (0x1D792, 'M', 'γ'), + (0x1D793, 'M', 'δ'), + (0x1D794, 'M', 'ε'), + (0x1D795, 'M', 'ζ'), + (0x1D796, 'M', 'η'), + (0x1D797, 'M', 'θ'), + (0x1D798, 'M', 'ι'), + (0x1D799, 'M', 'κ'), + (0x1D79A, 'M', 'λ'), + (0x1D79B, 'M', 'μ'), + (0x1D79C, 'M', 'ν'), + (0x1D79D, 'M', 'ξ'), + (0x1D79E, 'M', 'ο'), + (0x1D79F, 'M', 'π'), + (0x1D7A0, 'M', 'ρ'), + (0x1D7A1, 'M', 'θ'), + (0x1D7A2, 'M', 'σ'), + (0x1D7A3, 'M', 'τ'), + (0x1D7A4, 'M', 'υ'), + (0x1D7A5, 'M', 'φ'), + (0x1D7A6, 'M', 'χ'), + (0x1D7A7, 'M', 'ψ'), + (0x1D7A8, 'M', 'ω'), + (0x1D7A9, 'M', '∇'), + (0x1D7AA, 'M', 'α'), + (0x1D7AB, 'M', 'β'), + (0x1D7AC, 'M', 'γ'), + (0x1D7AD, 'M', 'δ'), + (0x1D7AE, 'M', 'ε'), + (0x1D7AF, 'M', 'ζ'), + ] + +def _seg_70() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D7B0, 'M', 'η'), + (0x1D7B1, 'M', 'θ'), + (0x1D7B2, 'M', 'ι'), + (0x1D7B3, 'M', 'κ'), + (0x1D7B4, 'M', 'λ'), + (0x1D7B5, 'M', 'μ'), + (0x1D7B6, 'M', 'ν'), + (0x1D7B7, 'M', 'ξ'), + (0x1D7B8, 'M', 'ο'), + (0x1D7B9, 'M', 'π'), + (0x1D7BA, 'M', 'ρ'), + (0x1D7BB, 'M', 'σ'), + (0x1D7BD, 'M', 'τ'), + (0x1D7BE, 'M', 'υ'), + (0x1D7BF, 'M', 'φ'), + (0x1D7C0, 'M', 'χ'), + (0x1D7C1, 'M', 'ψ'), + (0x1D7C2, 'M', 'ω'), + (0x1D7C3, 'M', '∂'), + (0x1D7C4, 'M', 'ε'), + (0x1D7C5, 'M', 'θ'), + (0x1D7C6, 'M', 'κ'), + (0x1D7C7, 'M', 'φ'), + (0x1D7C8, 'M', 'ρ'), + (0x1D7C9, 'M', 'π'), + (0x1D7CA, 'M', 'ϝ'), + (0x1D7CC, 'X'), + (0x1D7CE, 'M', '0'), + (0x1D7CF, 'M', '1'), + (0x1D7D0, 'M', '2'), + (0x1D7D1, 'M', '3'), + (0x1D7D2, 'M', '4'), + (0x1D7D3, 'M', '5'), + (0x1D7D4, 'M', '6'), + (0x1D7D5, 'M', '7'), + (0x1D7D6, 'M', '8'), + (0x1D7D7, 'M', '9'), + (0x1D7D8, 'M', '0'), + (0x1D7D9, 'M', '1'), + (0x1D7DA, 'M', '2'), + (0x1D7DB, 'M', '3'), + (0x1D7DC, 'M', '4'), + (0x1D7DD, 'M', '5'), + (0x1D7DE, 'M', '6'), + (0x1D7DF, 'M', '7'), + (0x1D7E0, 'M', '8'), + (0x1D7E1, 'M', '9'), + (0x1D7E2, 'M', '0'), + (0x1D7E3, 'M', '1'), + (0x1D7E4, 'M', '2'), + (0x1D7E5, 'M', '3'), + (0x1D7E6, 'M', '4'), + (0x1D7E7, 'M', '5'), + (0x1D7E8, 'M', '6'), + (0x1D7E9, 'M', '7'), + (0x1D7EA, 'M', '8'), + (0x1D7EB, 'M', '9'), + (0x1D7EC, 'M', '0'), + (0x1D7ED, 'M', '1'), + (0x1D7EE, 'M', '2'), + (0x1D7EF, 'M', '3'), + (0x1D7F0, 'M', '4'), + (0x1D7F1, 'M', '5'), + (0x1D7F2, 'M', '6'), + (0x1D7F3, 'M', '7'), + (0x1D7F4, 'M', '8'), + (0x1D7F5, 'M', '9'), + (0x1D7F6, 'M', '0'), + (0x1D7F7, 'M', '1'), + (0x1D7F8, 'M', '2'), + (0x1D7F9, 'M', '3'), + (0x1D7FA, 'M', '4'), + (0x1D7FB, 'M', '5'), + (0x1D7FC, 'M', '6'), + (0x1D7FD, 'M', '7'), + (0x1D7FE, 'M', '8'), + (0x1D7FF, 'M', '9'), + (0x1D800, 'V'), + (0x1DA8C, 'X'), + (0x1DA9B, 'V'), + (0x1DAA0, 'X'), + (0x1DAA1, 'V'), + (0x1DAB0, 'X'), + (0x1DF00, 'V'), + (0x1DF1F, 'X'), + (0x1DF25, 'V'), + (0x1DF2B, 'X'), + (0x1E000, 'V'), + (0x1E007, 'X'), + (0x1E008, 'V'), + (0x1E019, 'X'), + (0x1E01B, 'V'), + (0x1E022, 'X'), + (0x1E023, 'V'), + (0x1E025, 'X'), + (0x1E026, 'V'), + (0x1E02B, 'X'), + (0x1E030, 'M', 'а'), + (0x1E031, 'M', 'б'), + (0x1E032, 'M', 'в'), + ] + +def _seg_71() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E033, 'M', 'г'), + (0x1E034, 'M', 'д'), + (0x1E035, 'M', 'е'), + (0x1E036, 'M', 'ж'), + (0x1E037, 'M', 'з'), + (0x1E038, 'M', 'и'), + (0x1E039, 'M', 'к'), + (0x1E03A, 'M', 'л'), + (0x1E03B, 'M', 'м'), + (0x1E03C, 'M', 'о'), + (0x1E03D, 'M', 'п'), + (0x1E03E, 'M', 'р'), + (0x1E03F, 'M', 'с'), + (0x1E040, 'M', 'т'), + (0x1E041, 'M', 'у'), + (0x1E042, 'M', 'ф'), + (0x1E043, 'M', 'х'), + (0x1E044, 'M', 'ц'), + (0x1E045, 'M', 'ч'), + (0x1E046, 'M', 'ш'), + (0x1E047, 'M', 'ы'), + (0x1E048, 'M', 'э'), + (0x1E049, 'M', 'ю'), + (0x1E04A, 'M', 'ꚉ'), + (0x1E04B, 'M', 'ә'), + (0x1E04C, 'M', 'і'), + (0x1E04D, 'M', 'ј'), + (0x1E04E, 'M', 'ө'), + (0x1E04F, 'M', 'ү'), + (0x1E050, 'M', 'ӏ'), + (0x1E051, 'M', 'а'), + (0x1E052, 'M', 'б'), + (0x1E053, 'M', 'в'), + (0x1E054, 'M', 'г'), + (0x1E055, 'M', 'д'), + (0x1E056, 'M', 'е'), + (0x1E057, 'M', 'ж'), + (0x1E058, 'M', 'з'), + (0x1E059, 'M', 'и'), + (0x1E05A, 'M', 'к'), + (0x1E05B, 'M', 'л'), + (0x1E05C, 'M', 'о'), + (0x1E05D, 'M', 'п'), + (0x1E05E, 'M', 'с'), + (0x1E05F, 'M', 'у'), + (0x1E060, 'M', 'ф'), + (0x1E061, 'M', 'х'), + (0x1E062, 'M', 'ц'), + (0x1E063, 'M', 'ч'), + (0x1E064, 'M', 'ш'), + (0x1E065, 'M', 'ъ'), + (0x1E066, 'M', 'ы'), + (0x1E067, 'M', 'ґ'), + (0x1E068, 'M', 'і'), + (0x1E069, 'M', 'ѕ'), + (0x1E06A, 'M', 'џ'), + (0x1E06B, 'M', 'ҫ'), + (0x1E06C, 'M', 'ꙑ'), + (0x1E06D, 'M', 'ұ'), + (0x1E06E, 'X'), + (0x1E08F, 'V'), + (0x1E090, 'X'), + (0x1E100, 'V'), + (0x1E12D, 'X'), + (0x1E130, 'V'), + (0x1E13E, 'X'), + (0x1E140, 'V'), + (0x1E14A, 'X'), + (0x1E14E, 'V'), + (0x1E150, 'X'), + (0x1E290, 'V'), + (0x1E2AF, 'X'), + (0x1E2C0, 'V'), + (0x1E2FA, 'X'), + (0x1E2FF, 'V'), + (0x1E300, 'X'), + (0x1E4D0, 'V'), + (0x1E4FA, 'X'), + (0x1E7E0, 'V'), + (0x1E7E7, 'X'), + (0x1E7E8, 'V'), + (0x1E7EC, 'X'), + (0x1E7ED, 'V'), + (0x1E7EF, 'X'), + (0x1E7F0, 'V'), + (0x1E7FF, 'X'), + (0x1E800, 'V'), + (0x1E8C5, 'X'), + (0x1E8C7, 'V'), + (0x1E8D7, 'X'), + (0x1E900, 'M', '𞤢'), + (0x1E901, 'M', '𞤣'), + (0x1E902, 'M', '𞤤'), + (0x1E903, 'M', '𞤥'), + (0x1E904, 'M', '𞤦'), + (0x1E905, 'M', '𞤧'), + (0x1E906, 'M', '𞤨'), + (0x1E907, 'M', '𞤩'), + (0x1E908, 'M', '𞤪'), + (0x1E909, 'M', '𞤫'), + ] + +def _seg_72() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E90A, 'M', '𞤬'), + (0x1E90B, 'M', '𞤭'), + (0x1E90C, 'M', '𞤮'), + (0x1E90D, 'M', '𞤯'), + (0x1E90E, 'M', '𞤰'), + (0x1E90F, 'M', '𞤱'), + (0x1E910, 'M', '𞤲'), + (0x1E911, 'M', '𞤳'), + (0x1E912, 'M', '𞤴'), + (0x1E913, 'M', '𞤵'), + (0x1E914, 'M', '𞤶'), + (0x1E915, 'M', '𞤷'), + (0x1E916, 'M', '𞤸'), + (0x1E917, 'M', '𞤹'), + (0x1E918, 'M', '𞤺'), + (0x1E919, 'M', '𞤻'), + (0x1E91A, 'M', '𞤼'), + (0x1E91B, 'M', '𞤽'), + (0x1E91C, 'M', '𞤾'), + (0x1E91D, 'M', '𞤿'), + (0x1E91E, 'M', '𞥀'), + (0x1E91F, 'M', '𞥁'), + (0x1E920, 'M', '𞥂'), + (0x1E921, 'M', '𞥃'), + (0x1E922, 'V'), + (0x1E94C, 'X'), + (0x1E950, 'V'), + (0x1E95A, 'X'), + (0x1E95E, 'V'), + (0x1E960, 'X'), + (0x1EC71, 'V'), + (0x1ECB5, 'X'), + (0x1ED01, 'V'), + (0x1ED3E, 'X'), + (0x1EE00, 'M', 'ا'), + (0x1EE01, 'M', 'ب'), + (0x1EE02, 'M', 'ج'), + (0x1EE03, 'M', 'د'), + (0x1EE04, 'X'), + (0x1EE05, 'M', 'و'), + (0x1EE06, 'M', 'ز'), + (0x1EE07, 'M', 'ح'), + (0x1EE08, 'M', 'ط'), + (0x1EE09, 'M', 'ي'), + (0x1EE0A, 'M', 'ك'), + (0x1EE0B, 'M', 'ل'), + (0x1EE0C, 'M', 'م'), + (0x1EE0D, 'M', 'ن'), + (0x1EE0E, 'M', 'س'), + (0x1EE0F, 'M', 'ع'), + (0x1EE10, 'M', 'ف'), + (0x1EE11, 'M', 'ص'), + (0x1EE12, 'M', 'ق'), + (0x1EE13, 'M', 'ر'), + (0x1EE14, 'M', 'ش'), + (0x1EE15, 'M', 'ت'), + (0x1EE16, 'M', 'ث'), + (0x1EE17, 'M', 'خ'), + (0x1EE18, 'M', 'ذ'), + (0x1EE19, 'M', 'ض'), + (0x1EE1A, 'M', 'ظ'), + (0x1EE1B, 'M', 'غ'), + (0x1EE1C, 'M', 'ٮ'), + (0x1EE1D, 'M', 'ں'), + (0x1EE1E, 'M', 'ڡ'), + (0x1EE1F, 'M', 'ٯ'), + (0x1EE20, 'X'), + (0x1EE21, 'M', 'ب'), + (0x1EE22, 'M', 'ج'), + (0x1EE23, 'X'), + (0x1EE24, 'M', 'ه'), + (0x1EE25, 'X'), + (0x1EE27, 'M', 'ح'), + (0x1EE28, 'X'), + (0x1EE29, 'M', 'ي'), + (0x1EE2A, 'M', 'ك'), + (0x1EE2B, 'M', 'ل'), + (0x1EE2C, 'M', 'م'), + (0x1EE2D, 'M', 'ن'), + (0x1EE2E, 'M', 'س'), + (0x1EE2F, 'M', 'ع'), + (0x1EE30, 'M', 'ف'), + (0x1EE31, 'M', 'ص'), + (0x1EE32, 'M', 'ق'), + (0x1EE33, 'X'), + (0x1EE34, 'M', 'ش'), + (0x1EE35, 'M', 'ت'), + (0x1EE36, 'M', 'ث'), + (0x1EE37, 'M', 'خ'), + (0x1EE38, 'X'), + (0x1EE39, 'M', 'ض'), + (0x1EE3A, 'X'), + (0x1EE3B, 'M', 'غ'), + (0x1EE3C, 'X'), + (0x1EE42, 'M', 'ج'), + (0x1EE43, 'X'), + (0x1EE47, 'M', 'ح'), + (0x1EE48, 'X'), + (0x1EE49, 'M', 'ي'), + (0x1EE4A, 'X'), + ] + +def _seg_73() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EE4B, 'M', 'ل'), + (0x1EE4C, 'X'), + (0x1EE4D, 'M', 'ن'), + (0x1EE4E, 'M', 'س'), + (0x1EE4F, 'M', 'ع'), + (0x1EE50, 'X'), + (0x1EE51, 'M', 'ص'), + (0x1EE52, 'M', 'ق'), + (0x1EE53, 'X'), + (0x1EE54, 'M', 'ش'), + (0x1EE55, 'X'), + (0x1EE57, 'M', 'خ'), + (0x1EE58, 'X'), + (0x1EE59, 'M', 'ض'), + (0x1EE5A, 'X'), + (0x1EE5B, 'M', 'غ'), + (0x1EE5C, 'X'), + (0x1EE5D, 'M', 'ں'), + (0x1EE5E, 'X'), + (0x1EE5F, 'M', 'ٯ'), + (0x1EE60, 'X'), + (0x1EE61, 'M', 'ب'), + (0x1EE62, 'M', 'ج'), + (0x1EE63, 'X'), + (0x1EE64, 'M', 'ه'), + (0x1EE65, 'X'), + (0x1EE67, 'M', 'ح'), + (0x1EE68, 'M', 'ط'), + (0x1EE69, 'M', 'ي'), + (0x1EE6A, 'M', 'ك'), + (0x1EE6B, 'X'), + (0x1EE6C, 'M', 'م'), + (0x1EE6D, 'M', 'ن'), + (0x1EE6E, 'M', 'س'), + (0x1EE6F, 'M', 'ع'), + (0x1EE70, 'M', 'ف'), + (0x1EE71, 'M', 'ص'), + (0x1EE72, 'M', 'ق'), + (0x1EE73, 'X'), + (0x1EE74, 'M', 'ش'), + (0x1EE75, 'M', 'ت'), + (0x1EE76, 'M', 'ث'), + (0x1EE77, 'M', 'خ'), + (0x1EE78, 'X'), + (0x1EE79, 'M', 'ض'), + (0x1EE7A, 'M', 'ظ'), + (0x1EE7B, 'M', 'غ'), + (0x1EE7C, 'M', 'ٮ'), + (0x1EE7D, 'X'), + (0x1EE7E, 'M', 'ڡ'), + (0x1EE7F, 'X'), + (0x1EE80, 'M', 'ا'), + (0x1EE81, 'M', 'ب'), + (0x1EE82, 'M', 'ج'), + (0x1EE83, 'M', 'د'), + (0x1EE84, 'M', 'ه'), + (0x1EE85, 'M', 'و'), + (0x1EE86, 'M', 'ز'), + (0x1EE87, 'M', 'ح'), + (0x1EE88, 'M', 'ط'), + (0x1EE89, 'M', 'ي'), + (0x1EE8A, 'X'), + (0x1EE8B, 'M', 'ل'), + (0x1EE8C, 'M', 'م'), + (0x1EE8D, 'M', 'ن'), + (0x1EE8E, 'M', 'س'), + (0x1EE8F, 'M', 'ع'), + (0x1EE90, 'M', 'ف'), + (0x1EE91, 'M', 'ص'), + (0x1EE92, 'M', 'ق'), + (0x1EE93, 'M', 'ر'), + (0x1EE94, 'M', 'ش'), + (0x1EE95, 'M', 'ت'), + (0x1EE96, 'M', 'ث'), + (0x1EE97, 'M', 'خ'), + (0x1EE98, 'M', 'ذ'), + (0x1EE99, 'M', 'ض'), + (0x1EE9A, 'M', 'ظ'), + (0x1EE9B, 'M', 'غ'), + (0x1EE9C, 'X'), + (0x1EEA1, 'M', 'ب'), + (0x1EEA2, 'M', 'ج'), + (0x1EEA3, 'M', 'د'), + (0x1EEA4, 'X'), + (0x1EEA5, 'M', 'و'), + (0x1EEA6, 'M', 'ز'), + (0x1EEA7, 'M', 'ح'), + (0x1EEA8, 'M', 'ط'), + (0x1EEA9, 'M', 'ي'), + (0x1EEAA, 'X'), + (0x1EEAB, 'M', 'ل'), + (0x1EEAC, 'M', 'م'), + (0x1EEAD, 'M', 'ن'), + (0x1EEAE, 'M', 'س'), + (0x1EEAF, 'M', 'ع'), + (0x1EEB0, 'M', 'ف'), + (0x1EEB1, 'M', 'ص'), + (0x1EEB2, 'M', 'ق'), + (0x1EEB3, 'M', 'ر'), + (0x1EEB4, 'M', 'ش'), + ] + +def _seg_74() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EEB5, 'M', 'ت'), + (0x1EEB6, 'M', 'ث'), + (0x1EEB7, 'M', 'خ'), + (0x1EEB8, 'M', 'ذ'), + (0x1EEB9, 'M', 'ض'), + (0x1EEBA, 'M', 'ظ'), + (0x1EEBB, 'M', 'غ'), + (0x1EEBC, 'X'), + (0x1EEF0, 'V'), + (0x1EEF2, 'X'), + (0x1F000, 'V'), + (0x1F02C, 'X'), + (0x1F030, 'V'), + (0x1F094, 'X'), + (0x1F0A0, 'V'), + (0x1F0AF, 'X'), + (0x1F0B1, 'V'), + (0x1F0C0, 'X'), + (0x1F0C1, 'V'), + (0x1F0D0, 'X'), + (0x1F0D1, 'V'), + (0x1F0F6, 'X'), + (0x1F101, '3', '0,'), + (0x1F102, '3', '1,'), + (0x1F103, '3', '2,'), + (0x1F104, '3', '3,'), + (0x1F105, '3', '4,'), + (0x1F106, '3', '5,'), + (0x1F107, '3', '6,'), + (0x1F108, '3', '7,'), + (0x1F109, '3', '8,'), + (0x1F10A, '3', '9,'), + (0x1F10B, 'V'), + (0x1F110, '3', '(a)'), + (0x1F111, '3', '(b)'), + (0x1F112, '3', '(c)'), + (0x1F113, '3', '(d)'), + (0x1F114, '3', '(e)'), + (0x1F115, '3', '(f)'), + (0x1F116, '3', '(g)'), + (0x1F117, '3', '(h)'), + (0x1F118, '3', '(i)'), + (0x1F119, '3', '(j)'), + (0x1F11A, '3', '(k)'), + (0x1F11B, '3', '(l)'), + (0x1F11C, '3', '(m)'), + (0x1F11D, '3', '(n)'), + (0x1F11E, '3', '(o)'), + (0x1F11F, '3', '(p)'), + (0x1F120, '3', '(q)'), + (0x1F121, '3', '(r)'), + (0x1F122, '3', '(s)'), + (0x1F123, '3', '(t)'), + (0x1F124, '3', '(u)'), + (0x1F125, '3', '(v)'), + (0x1F126, '3', '(w)'), + (0x1F127, '3', '(x)'), + (0x1F128, '3', '(y)'), + (0x1F129, '3', '(z)'), + (0x1F12A, 'M', '〔s〕'), + (0x1F12B, 'M', 'c'), + (0x1F12C, 'M', 'r'), + (0x1F12D, 'M', 'cd'), + (0x1F12E, 'M', 'wz'), + (0x1F12F, 'V'), + (0x1F130, 'M', 'a'), + (0x1F131, 'M', 'b'), + (0x1F132, 'M', 'c'), + (0x1F133, 'M', 'd'), + (0x1F134, 'M', 'e'), + (0x1F135, 'M', 'f'), + (0x1F136, 'M', 'g'), + (0x1F137, 'M', 'h'), + (0x1F138, 'M', 'i'), + (0x1F139, 'M', 'j'), + (0x1F13A, 'M', 'k'), + (0x1F13B, 'M', 'l'), + (0x1F13C, 'M', 'm'), + (0x1F13D, 'M', 'n'), + (0x1F13E, 'M', 'o'), + (0x1F13F, 'M', 'p'), + (0x1F140, 'M', 'q'), + (0x1F141, 'M', 'r'), + (0x1F142, 'M', 's'), + (0x1F143, 'M', 't'), + (0x1F144, 'M', 'u'), + (0x1F145, 'M', 'v'), + (0x1F146, 'M', 'w'), + (0x1F147, 'M', 'x'), + (0x1F148, 'M', 'y'), + (0x1F149, 'M', 'z'), + (0x1F14A, 'M', 'hv'), + (0x1F14B, 'M', 'mv'), + (0x1F14C, 'M', 'sd'), + (0x1F14D, 'M', 'ss'), + (0x1F14E, 'M', 'ppv'), + (0x1F14F, 'M', 'wc'), + (0x1F150, 'V'), + (0x1F16A, 'M', 'mc'), + (0x1F16B, 'M', 'md'), + ] + +def _seg_75() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F16C, 'M', 'mr'), + (0x1F16D, 'V'), + (0x1F190, 'M', 'dj'), + (0x1F191, 'V'), + (0x1F1AE, 'X'), + (0x1F1E6, 'V'), + (0x1F200, 'M', 'ほか'), + (0x1F201, 'M', 'ココ'), + (0x1F202, 'M', 'サ'), + (0x1F203, 'X'), + (0x1F210, 'M', '手'), + (0x1F211, 'M', '字'), + (0x1F212, 'M', '双'), + (0x1F213, 'M', 'デ'), + (0x1F214, 'M', '二'), + (0x1F215, 'M', '多'), + (0x1F216, 'M', '解'), + (0x1F217, 'M', '天'), + (0x1F218, 'M', '交'), + (0x1F219, 'M', '映'), + (0x1F21A, 'M', '無'), + (0x1F21B, 'M', '料'), + (0x1F21C, 'M', '前'), + (0x1F21D, 'M', '後'), + (0x1F21E, 'M', '再'), + (0x1F21F, 'M', '新'), + (0x1F220, 'M', '初'), + (0x1F221, 'M', '終'), + (0x1F222, 'M', '生'), + (0x1F223, 'M', '販'), + (0x1F224, 'M', '声'), + (0x1F225, 'M', '吹'), + (0x1F226, 'M', '演'), + (0x1F227, 'M', '投'), + (0x1F228, 'M', '捕'), + (0x1F229, 'M', '一'), + (0x1F22A, 'M', '三'), + (0x1F22B, 'M', '遊'), + (0x1F22C, 'M', '左'), + (0x1F22D, 'M', '中'), + (0x1F22E, 'M', '右'), + (0x1F22F, 'M', '指'), + (0x1F230, 'M', '走'), + (0x1F231, 'M', '打'), + (0x1F232, 'M', '禁'), + (0x1F233, 'M', '空'), + (0x1F234, 'M', '合'), + (0x1F235, 'M', '満'), + (0x1F236, 'M', '有'), + (0x1F237, 'M', '月'), + (0x1F238, 'M', '申'), + (0x1F239, 'M', '割'), + (0x1F23A, 'M', '営'), + (0x1F23B, 'M', '配'), + (0x1F23C, 'X'), + (0x1F240, 'M', '〔本〕'), + (0x1F241, 'M', '〔三〕'), + (0x1F242, 'M', '〔二〕'), + (0x1F243, 'M', '〔安〕'), + (0x1F244, 'M', '〔点〕'), + (0x1F245, 'M', '〔打〕'), + (0x1F246, 'M', '〔盗〕'), + (0x1F247, 'M', '〔勝〕'), + (0x1F248, 'M', '〔敗〕'), + (0x1F249, 'X'), + (0x1F250, 'M', '得'), + (0x1F251, 'M', '可'), + (0x1F252, 'X'), + (0x1F260, 'V'), + (0x1F266, 'X'), + (0x1F300, 'V'), + (0x1F6D8, 'X'), + (0x1F6DC, 'V'), + (0x1F6ED, 'X'), + (0x1F6F0, 'V'), + (0x1F6FD, 'X'), + (0x1F700, 'V'), + (0x1F777, 'X'), + (0x1F77B, 'V'), + (0x1F7DA, 'X'), + (0x1F7E0, 'V'), + (0x1F7EC, 'X'), + (0x1F7F0, 'V'), + (0x1F7F1, 'X'), + (0x1F800, 'V'), + (0x1F80C, 'X'), + (0x1F810, 'V'), + (0x1F848, 'X'), + (0x1F850, 'V'), + (0x1F85A, 'X'), + (0x1F860, 'V'), + (0x1F888, 'X'), + (0x1F890, 'V'), + (0x1F8AE, 'X'), + (0x1F8B0, 'V'), + (0x1F8B2, 'X'), + (0x1F900, 'V'), + (0x1FA54, 'X'), + (0x1FA60, 'V'), + (0x1FA6E, 'X'), + ] + +def _seg_76() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FA70, 'V'), + (0x1FA7D, 'X'), + (0x1FA80, 'V'), + (0x1FA89, 'X'), + (0x1FA90, 'V'), + (0x1FABE, 'X'), + (0x1FABF, 'V'), + (0x1FAC6, 'X'), + (0x1FACE, 'V'), + (0x1FADC, 'X'), + (0x1FAE0, 'V'), + (0x1FAE9, 'X'), + (0x1FAF0, 'V'), + (0x1FAF9, 'X'), + (0x1FB00, 'V'), + (0x1FB93, 'X'), + (0x1FB94, 'V'), + (0x1FBCB, 'X'), + (0x1FBF0, 'M', '0'), + (0x1FBF1, 'M', '1'), + (0x1FBF2, 'M', '2'), + (0x1FBF3, 'M', '3'), + (0x1FBF4, 'M', '4'), + (0x1FBF5, 'M', '5'), + (0x1FBF6, 'M', '6'), + (0x1FBF7, 'M', '7'), + (0x1FBF8, 'M', '8'), + (0x1FBF9, 'M', '9'), + (0x1FBFA, 'X'), + (0x20000, 'V'), + (0x2A6E0, 'X'), + (0x2A700, 'V'), + (0x2B73A, 'X'), + (0x2B740, 'V'), + (0x2B81E, 'X'), + (0x2B820, 'V'), + (0x2CEA2, 'X'), + (0x2CEB0, 'V'), + (0x2EBE1, 'X'), + (0x2F800, 'M', '丽'), + (0x2F801, 'M', '丸'), + (0x2F802, 'M', '乁'), + (0x2F803, 'M', '𠄢'), + (0x2F804, 'M', '你'), + (0x2F805, 'M', '侮'), + (0x2F806, 'M', '侻'), + (0x2F807, 'M', '倂'), + (0x2F808, 'M', '偺'), + (0x2F809, 'M', '備'), + (0x2F80A, 'M', '僧'), + (0x2F80B, 'M', '像'), + (0x2F80C, 'M', '㒞'), + (0x2F80D, 'M', '𠘺'), + (0x2F80E, 'M', '免'), + (0x2F80F, 'M', '兔'), + (0x2F810, 'M', '兤'), + (0x2F811, 'M', '具'), + (0x2F812, 'M', '𠔜'), + (0x2F813, 'M', '㒹'), + (0x2F814, 'M', '內'), + (0x2F815, 'M', '再'), + (0x2F816, 'M', '𠕋'), + (0x2F817, 'M', '冗'), + (0x2F818, 'M', '冤'), + (0x2F819, 'M', '仌'), + (0x2F81A, 'M', '冬'), + (0x2F81B, 'M', '况'), + (0x2F81C, 'M', '𩇟'), + (0x2F81D, 'M', '凵'), + (0x2F81E, 'M', '刃'), + (0x2F81F, 'M', '㓟'), + (0x2F820, 'M', '刻'), + (0x2F821, 'M', '剆'), + (0x2F822, 'M', '割'), + (0x2F823, 'M', '剷'), + (0x2F824, 'M', '㔕'), + (0x2F825, 'M', '勇'), + (0x2F826, 'M', '勉'), + (0x2F827, 'M', '勤'), + (0x2F828, 'M', '勺'), + (0x2F829, 'M', '包'), + (0x2F82A, 'M', '匆'), + (0x2F82B, 'M', '北'), + (0x2F82C, 'M', '卉'), + (0x2F82D, 'M', '卑'), + (0x2F82E, 'M', '博'), + (0x2F82F, 'M', '即'), + (0x2F830, 'M', '卽'), + (0x2F831, 'M', '卿'), + (0x2F834, 'M', '𠨬'), + (0x2F835, 'M', '灰'), + (0x2F836, 'M', '及'), + (0x2F837, 'M', '叟'), + (0x2F838, 'M', '𠭣'), + (0x2F839, 'M', '叫'), + (0x2F83A, 'M', '叱'), + (0x2F83B, 'M', '吆'), + (0x2F83C, 'M', '咞'), + (0x2F83D, 'M', '吸'), + (0x2F83E, 'M', '呈'), + ] + +def _seg_77() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F83F, 'M', '周'), + (0x2F840, 'M', '咢'), + (0x2F841, 'M', '哶'), + (0x2F842, 'M', '唐'), + (0x2F843, 'M', '啓'), + (0x2F844, 'M', '啣'), + (0x2F845, 'M', '善'), + (0x2F847, 'M', '喙'), + (0x2F848, 'M', '喫'), + (0x2F849, 'M', '喳'), + (0x2F84A, 'M', '嗂'), + (0x2F84B, 'M', '圖'), + (0x2F84C, 'M', '嘆'), + (0x2F84D, 'M', '圗'), + (0x2F84E, 'M', '噑'), + (0x2F84F, 'M', '噴'), + (0x2F850, 'M', '切'), + (0x2F851, 'M', '壮'), + (0x2F852, 'M', '城'), + (0x2F853, 'M', '埴'), + (0x2F854, 'M', '堍'), + (0x2F855, 'M', '型'), + (0x2F856, 'M', '堲'), + (0x2F857, 'M', '報'), + (0x2F858, 'M', '墬'), + (0x2F859, 'M', '𡓤'), + (0x2F85A, 'M', '売'), + (0x2F85B, 'M', '壷'), + (0x2F85C, 'M', '夆'), + (0x2F85D, 'M', '多'), + (0x2F85E, 'M', '夢'), + (0x2F85F, 'M', '奢'), + (0x2F860, 'M', '𡚨'), + (0x2F861, 'M', '𡛪'), + (0x2F862, 'M', '姬'), + (0x2F863, 'M', '娛'), + (0x2F864, 'M', '娧'), + (0x2F865, 'M', '姘'), + (0x2F866, 'M', '婦'), + (0x2F867, 'M', '㛮'), + (0x2F868, 'X'), + (0x2F869, 'M', '嬈'), + (0x2F86A, 'M', '嬾'), + (0x2F86C, 'M', '𡧈'), + (0x2F86D, 'M', '寃'), + (0x2F86E, 'M', '寘'), + (0x2F86F, 'M', '寧'), + (0x2F870, 'M', '寳'), + (0x2F871, 'M', '𡬘'), + (0x2F872, 'M', '寿'), + (0x2F873, 'M', '将'), + (0x2F874, 'X'), + (0x2F875, 'M', '尢'), + (0x2F876, 'M', '㞁'), + (0x2F877, 'M', '屠'), + (0x2F878, 'M', '屮'), + (0x2F879, 'M', '峀'), + (0x2F87A, 'M', '岍'), + (0x2F87B, 'M', '𡷤'), + (0x2F87C, 'M', '嵃'), + (0x2F87D, 'M', '𡷦'), + (0x2F87E, 'M', '嵮'), + (0x2F87F, 'M', '嵫'), + (0x2F880, 'M', '嵼'), + (0x2F881, 'M', '巡'), + (0x2F882, 'M', '巢'), + (0x2F883, 'M', '㠯'), + (0x2F884, 'M', '巽'), + (0x2F885, 'M', '帨'), + (0x2F886, 'M', '帽'), + (0x2F887, 'M', '幩'), + (0x2F888, 'M', '㡢'), + (0x2F889, 'M', '𢆃'), + (0x2F88A, 'M', '㡼'), + (0x2F88B, 'M', '庰'), + (0x2F88C, 'M', '庳'), + (0x2F88D, 'M', '庶'), + (0x2F88E, 'M', '廊'), + (0x2F88F, 'M', '𪎒'), + (0x2F890, 'M', '廾'), + (0x2F891, 'M', '𢌱'), + (0x2F893, 'M', '舁'), + (0x2F894, 'M', '弢'), + (0x2F896, 'M', '㣇'), + (0x2F897, 'M', '𣊸'), + (0x2F898, 'M', '𦇚'), + (0x2F899, 'M', '形'), + (0x2F89A, 'M', '彫'), + (0x2F89B, 'M', '㣣'), + (0x2F89C, 'M', '徚'), + (0x2F89D, 'M', '忍'), + (0x2F89E, 'M', '志'), + (0x2F89F, 'M', '忹'), + (0x2F8A0, 'M', '悁'), + (0x2F8A1, 'M', '㤺'), + (0x2F8A2, 'M', '㤜'), + (0x2F8A3, 'M', '悔'), + (0x2F8A4, 'M', '𢛔'), + (0x2F8A5, 'M', '惇'), + (0x2F8A6, 'M', '慈'), + ] + +def _seg_78() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F8A7, 'M', '慌'), + (0x2F8A8, 'M', '慎'), + (0x2F8A9, 'M', '慌'), + (0x2F8AA, 'M', '慺'), + (0x2F8AB, 'M', '憎'), + (0x2F8AC, 'M', '憲'), + (0x2F8AD, 'M', '憤'), + (0x2F8AE, 'M', '憯'), + (0x2F8AF, 'M', '懞'), + (0x2F8B0, 'M', '懲'), + (0x2F8B1, 'M', '懶'), + (0x2F8B2, 'M', '成'), + (0x2F8B3, 'M', '戛'), + (0x2F8B4, 'M', '扝'), + (0x2F8B5, 'M', '抱'), + (0x2F8B6, 'M', '拔'), + (0x2F8B7, 'M', '捐'), + (0x2F8B8, 'M', '𢬌'), + (0x2F8B9, 'M', '挽'), + (0x2F8BA, 'M', '拼'), + (0x2F8BB, 'M', '捨'), + (0x2F8BC, 'M', '掃'), + (0x2F8BD, 'M', '揤'), + (0x2F8BE, 'M', '𢯱'), + (0x2F8BF, 'M', '搢'), + (0x2F8C0, 'M', '揅'), + (0x2F8C1, 'M', '掩'), + (0x2F8C2, 'M', '㨮'), + (0x2F8C3, 'M', '摩'), + (0x2F8C4, 'M', '摾'), + (0x2F8C5, 'M', '撝'), + (0x2F8C6, 'M', '摷'), + (0x2F8C7, 'M', '㩬'), + (0x2F8C8, 'M', '敏'), + (0x2F8C9, 'M', '敬'), + (0x2F8CA, 'M', '𣀊'), + (0x2F8CB, 'M', '旣'), + (0x2F8CC, 'M', '書'), + (0x2F8CD, 'M', '晉'), + (0x2F8CE, 'M', '㬙'), + (0x2F8CF, 'M', '暑'), + (0x2F8D0, 'M', '㬈'), + (0x2F8D1, 'M', '㫤'), + (0x2F8D2, 'M', '冒'), + (0x2F8D3, 'M', '冕'), + (0x2F8D4, 'M', '最'), + (0x2F8D5, 'M', '暜'), + (0x2F8D6, 'M', '肭'), + (0x2F8D7, 'M', '䏙'), + (0x2F8D8, 'M', '朗'), + (0x2F8D9, 'M', '望'), + (0x2F8DA, 'M', '朡'), + (0x2F8DB, 'M', '杞'), + (0x2F8DC, 'M', '杓'), + (0x2F8DD, 'M', '𣏃'), + (0x2F8DE, 'M', '㭉'), + (0x2F8DF, 'M', '柺'), + (0x2F8E0, 'M', '枅'), + (0x2F8E1, 'M', '桒'), + (0x2F8E2, 'M', '梅'), + (0x2F8E3, 'M', '𣑭'), + (0x2F8E4, 'M', '梎'), + (0x2F8E5, 'M', '栟'), + (0x2F8E6, 'M', '椔'), + (0x2F8E7, 'M', '㮝'), + (0x2F8E8, 'M', '楂'), + (0x2F8E9, 'M', '榣'), + (0x2F8EA, 'M', '槪'), + (0x2F8EB, 'M', '檨'), + (0x2F8EC, 'M', '𣚣'), + (0x2F8ED, 'M', '櫛'), + (0x2F8EE, 'M', '㰘'), + (0x2F8EF, 'M', '次'), + (0x2F8F0, 'M', '𣢧'), + (0x2F8F1, 'M', '歔'), + (0x2F8F2, 'M', '㱎'), + (0x2F8F3, 'M', '歲'), + (0x2F8F4, 'M', '殟'), + (0x2F8F5, 'M', '殺'), + (0x2F8F6, 'M', '殻'), + (0x2F8F7, 'M', '𣪍'), + (0x2F8F8, 'M', '𡴋'), + (0x2F8F9, 'M', '𣫺'), + (0x2F8FA, 'M', '汎'), + (0x2F8FB, 'M', '𣲼'), + (0x2F8FC, 'M', '沿'), + (0x2F8FD, 'M', '泍'), + (0x2F8FE, 'M', '汧'), + (0x2F8FF, 'M', '洖'), + (0x2F900, 'M', '派'), + (0x2F901, 'M', '海'), + (0x2F902, 'M', '流'), + (0x2F903, 'M', '浩'), + (0x2F904, 'M', '浸'), + (0x2F905, 'M', '涅'), + (0x2F906, 'M', '𣴞'), + (0x2F907, 'M', '洴'), + (0x2F908, 'M', '港'), + (0x2F909, 'M', '湮'), + (0x2F90A, 'M', '㴳'), + ] + +def _seg_79() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F90B, 'M', '滋'), + (0x2F90C, 'M', '滇'), + (0x2F90D, 'M', '𣻑'), + (0x2F90E, 'M', '淹'), + (0x2F90F, 'M', '潮'), + (0x2F910, 'M', '𣽞'), + (0x2F911, 'M', '𣾎'), + (0x2F912, 'M', '濆'), + (0x2F913, 'M', '瀹'), + (0x2F914, 'M', '瀞'), + (0x2F915, 'M', '瀛'), + (0x2F916, 'M', '㶖'), + (0x2F917, 'M', '灊'), + (0x2F918, 'M', '災'), + (0x2F919, 'M', '灷'), + (0x2F91A, 'M', '炭'), + (0x2F91B, 'M', '𠔥'), + (0x2F91C, 'M', '煅'), + (0x2F91D, 'M', '𤉣'), + (0x2F91E, 'M', '熜'), + (0x2F91F, 'X'), + (0x2F920, 'M', '爨'), + (0x2F921, 'M', '爵'), + (0x2F922, 'M', '牐'), + (0x2F923, 'M', '𤘈'), + (0x2F924, 'M', '犀'), + (0x2F925, 'M', '犕'), + (0x2F926, 'M', '𤜵'), + (0x2F927, 'M', '𤠔'), + (0x2F928, 'M', '獺'), + (0x2F929, 'M', '王'), + (0x2F92A, 'M', '㺬'), + (0x2F92B, 'M', '玥'), + (0x2F92C, 'M', '㺸'), + (0x2F92E, 'M', '瑇'), + (0x2F92F, 'M', '瑜'), + (0x2F930, 'M', '瑱'), + (0x2F931, 'M', '璅'), + (0x2F932, 'M', '瓊'), + (0x2F933, 'M', '㼛'), + (0x2F934, 'M', '甤'), + (0x2F935, 'M', '𤰶'), + (0x2F936, 'M', '甾'), + (0x2F937, 'M', '𤲒'), + (0x2F938, 'M', '異'), + (0x2F939, 'M', '𢆟'), + (0x2F93A, 'M', '瘐'), + (0x2F93B, 'M', '𤾡'), + (0x2F93C, 'M', '𤾸'), + (0x2F93D, 'M', '𥁄'), + (0x2F93E, 'M', '㿼'), + (0x2F93F, 'M', '䀈'), + (0x2F940, 'M', '直'), + (0x2F941, 'M', '𥃳'), + (0x2F942, 'M', '𥃲'), + (0x2F943, 'M', '𥄙'), + (0x2F944, 'M', '𥄳'), + (0x2F945, 'M', '眞'), + (0x2F946, 'M', '真'), + (0x2F948, 'M', '睊'), + (0x2F949, 'M', '䀹'), + (0x2F94A, 'M', '瞋'), + (0x2F94B, 'M', '䁆'), + (0x2F94C, 'M', '䂖'), + (0x2F94D, 'M', '𥐝'), + (0x2F94E, 'M', '硎'), + (0x2F94F, 'M', '碌'), + (0x2F950, 'M', '磌'), + (0x2F951, 'M', '䃣'), + (0x2F952, 'M', '𥘦'), + (0x2F953, 'M', '祖'), + (0x2F954, 'M', '𥚚'), + (0x2F955, 'M', '𥛅'), + (0x2F956, 'M', '福'), + (0x2F957, 'M', '秫'), + (0x2F958, 'M', '䄯'), + (0x2F959, 'M', '穀'), + (0x2F95A, 'M', '穊'), + (0x2F95B, 'M', '穏'), + (0x2F95C, 'M', '𥥼'), + (0x2F95D, 'M', '𥪧'), + (0x2F95F, 'X'), + (0x2F960, 'M', '䈂'), + (0x2F961, 'M', '𥮫'), + (0x2F962, 'M', '篆'), + (0x2F963, 'M', '築'), + (0x2F964, 'M', '䈧'), + (0x2F965, 'M', '𥲀'), + (0x2F966, 'M', '糒'), + (0x2F967, 'M', '䊠'), + (0x2F968, 'M', '糨'), + (0x2F969, 'M', '糣'), + (0x2F96A, 'M', '紀'), + (0x2F96B, 'M', '𥾆'), + (0x2F96C, 'M', '絣'), + (0x2F96D, 'M', '䌁'), + (0x2F96E, 'M', '緇'), + (0x2F96F, 'M', '縂'), + (0x2F970, 'M', '繅'), + (0x2F971, 'M', '䌴'), + ] + +def _seg_80() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F972, 'M', '𦈨'), + (0x2F973, 'M', '𦉇'), + (0x2F974, 'M', '䍙'), + (0x2F975, 'M', '𦋙'), + (0x2F976, 'M', '罺'), + (0x2F977, 'M', '𦌾'), + (0x2F978, 'M', '羕'), + (0x2F979, 'M', '翺'), + (0x2F97A, 'M', '者'), + (0x2F97B, 'M', '𦓚'), + (0x2F97C, 'M', '𦔣'), + (0x2F97D, 'M', '聠'), + (0x2F97E, 'M', '𦖨'), + (0x2F97F, 'M', '聰'), + (0x2F980, 'M', '𣍟'), + (0x2F981, 'M', '䏕'), + (0x2F982, 'M', '育'), + (0x2F983, 'M', '脃'), + (0x2F984, 'M', '䐋'), + (0x2F985, 'M', '脾'), + (0x2F986, 'M', '媵'), + (0x2F987, 'M', '𦞧'), + (0x2F988, 'M', '𦞵'), + (0x2F989, 'M', '𣎓'), + (0x2F98A, 'M', '𣎜'), + (0x2F98B, 'M', '舁'), + (0x2F98C, 'M', '舄'), + (0x2F98D, 'M', '辞'), + (0x2F98E, 'M', '䑫'), + (0x2F98F, 'M', '芑'), + (0x2F990, 'M', '芋'), + (0x2F991, 'M', '芝'), + (0x2F992, 'M', '劳'), + (0x2F993, 'M', '花'), + (0x2F994, 'M', '芳'), + (0x2F995, 'M', '芽'), + (0x2F996, 'M', '苦'), + (0x2F997, 'M', '𦬼'), + (0x2F998, 'M', '若'), + (0x2F999, 'M', '茝'), + (0x2F99A, 'M', '荣'), + (0x2F99B, 'M', '莭'), + (0x2F99C, 'M', '茣'), + (0x2F99D, 'M', '莽'), + (0x2F99E, 'M', '菧'), + (0x2F99F, 'M', '著'), + (0x2F9A0, 'M', '荓'), + (0x2F9A1, 'M', '菊'), + (0x2F9A2, 'M', '菌'), + (0x2F9A3, 'M', '菜'), + (0x2F9A4, 'M', '𦰶'), + (0x2F9A5, 'M', '𦵫'), + (0x2F9A6, 'M', '𦳕'), + (0x2F9A7, 'M', '䔫'), + (0x2F9A8, 'M', '蓱'), + (0x2F9A9, 'M', '蓳'), + (0x2F9AA, 'M', '蔖'), + (0x2F9AB, 'M', '𧏊'), + (0x2F9AC, 'M', '蕤'), + (0x2F9AD, 'M', '𦼬'), + (0x2F9AE, 'M', '䕝'), + (0x2F9AF, 'M', '䕡'), + (0x2F9B0, 'M', '𦾱'), + (0x2F9B1, 'M', '𧃒'), + (0x2F9B2, 'M', '䕫'), + (0x2F9B3, 'M', '虐'), + (0x2F9B4, 'M', '虜'), + (0x2F9B5, 'M', '虧'), + (0x2F9B6, 'M', '虩'), + (0x2F9B7, 'M', '蚩'), + (0x2F9B8, 'M', '蚈'), + (0x2F9B9, 'M', '蜎'), + (0x2F9BA, 'M', '蛢'), + (0x2F9BB, 'M', '蝹'), + (0x2F9BC, 'M', '蜨'), + (0x2F9BD, 'M', '蝫'), + (0x2F9BE, 'M', '螆'), + (0x2F9BF, 'X'), + (0x2F9C0, 'M', '蟡'), + (0x2F9C1, 'M', '蠁'), + (0x2F9C2, 'M', '䗹'), + (0x2F9C3, 'M', '衠'), + (0x2F9C4, 'M', '衣'), + (0x2F9C5, 'M', '𧙧'), + (0x2F9C6, 'M', '裗'), + (0x2F9C7, 'M', '裞'), + (0x2F9C8, 'M', '䘵'), + (0x2F9C9, 'M', '裺'), + (0x2F9CA, 'M', '㒻'), + (0x2F9CB, 'M', '𧢮'), + (0x2F9CC, 'M', '𧥦'), + (0x2F9CD, 'M', '䚾'), + (0x2F9CE, 'M', '䛇'), + (0x2F9CF, 'M', '誠'), + (0x2F9D0, 'M', '諭'), + (0x2F9D1, 'M', '變'), + (0x2F9D2, 'M', '豕'), + (0x2F9D3, 'M', '𧲨'), + (0x2F9D4, 'M', '貫'), + (0x2F9D5, 'M', '賁'), + ] + +def _seg_81() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F9D6, 'M', '贛'), + (0x2F9D7, 'M', '起'), + (0x2F9D8, 'M', '𧼯'), + (0x2F9D9, 'M', '𠠄'), + (0x2F9DA, 'M', '跋'), + (0x2F9DB, 'M', '趼'), + (0x2F9DC, 'M', '跰'), + (0x2F9DD, 'M', '𠣞'), + (0x2F9DE, 'M', '軔'), + (0x2F9DF, 'M', '輸'), + (0x2F9E0, 'M', '𨗒'), + (0x2F9E1, 'M', '𨗭'), + (0x2F9E2, 'M', '邔'), + (0x2F9E3, 'M', '郱'), + (0x2F9E4, 'M', '鄑'), + (0x2F9E5, 'M', '𨜮'), + (0x2F9E6, 'M', '鄛'), + (0x2F9E7, 'M', '鈸'), + (0x2F9E8, 'M', '鋗'), + (0x2F9E9, 'M', '鋘'), + (0x2F9EA, 'M', '鉼'), + (0x2F9EB, 'M', '鏹'), + (0x2F9EC, 'M', '鐕'), + (0x2F9ED, 'M', '𨯺'), + (0x2F9EE, 'M', '開'), + (0x2F9EF, 'M', '䦕'), + (0x2F9F0, 'M', '閷'), + (0x2F9F1, 'M', '𨵷'), + (0x2F9F2, 'M', '䧦'), + (0x2F9F3, 'M', '雃'), + (0x2F9F4, 'M', '嶲'), + (0x2F9F5, 'M', '霣'), + (0x2F9F6, 'M', '𩅅'), + (0x2F9F7, 'M', '𩈚'), + (0x2F9F8, 'M', '䩮'), + (0x2F9F9, 'M', '䩶'), + (0x2F9FA, 'M', '韠'), + (0x2F9FB, 'M', '𩐊'), + (0x2F9FC, 'M', '䪲'), + (0x2F9FD, 'M', '𩒖'), + (0x2F9FE, 'M', '頋'), + (0x2FA00, 'M', '頩'), + (0x2FA01, 'M', '𩖶'), + (0x2FA02, 'M', '飢'), + (0x2FA03, 'M', '䬳'), + (0x2FA04, 'M', '餩'), + (0x2FA05, 'M', '馧'), + (0x2FA06, 'M', '駂'), + (0x2FA07, 'M', '駾'), + (0x2FA08, 'M', '䯎'), + (0x2FA09, 'M', '𩬰'), + (0x2FA0A, 'M', '鬒'), + (0x2FA0B, 'M', '鱀'), + (0x2FA0C, 'M', '鳽'), + (0x2FA0D, 'M', '䳎'), + (0x2FA0E, 'M', '䳭'), + (0x2FA0F, 'M', '鵧'), + (0x2FA10, 'M', '𪃎'), + (0x2FA11, 'M', '䳸'), + (0x2FA12, 'M', '𪄅'), + (0x2FA13, 'M', '𪈎'), + (0x2FA14, 'M', '𪊑'), + (0x2FA15, 'M', '麻'), + (0x2FA16, 'M', '䵖'), + (0x2FA17, 'M', '黹'), + (0x2FA18, 'M', '黾'), + (0x2FA19, 'M', '鼅'), + (0x2FA1A, 'M', '鼏'), + (0x2FA1B, 'M', '鼖'), + (0x2FA1C, 'M', '鼻'), + (0x2FA1D, 'M', '𪘀'), + (0x2FA1E, 'X'), + (0x30000, 'V'), + (0x3134B, 'X'), + (0x31350, 'V'), + (0x323B0, 'X'), + (0xE0100, 'I'), + (0xE01F0, 'X'), + ] + +uts46data = tuple( + _seg_0() + + _seg_1() + + _seg_2() + + _seg_3() + + _seg_4() + + _seg_5() + + _seg_6() + + _seg_7() + + _seg_8() + + _seg_9() + + _seg_10() + + _seg_11() + + _seg_12() + + _seg_13() + + _seg_14() + + _seg_15() + + _seg_16() + + _seg_17() + + _seg_18() + + _seg_19() + + _seg_20() + + _seg_21() + + _seg_22() + + _seg_23() + + _seg_24() + + _seg_25() + + _seg_26() + + _seg_27() + + _seg_28() + + _seg_29() + + _seg_30() + + _seg_31() + + _seg_32() + + _seg_33() + + _seg_34() + + _seg_35() + + _seg_36() + + _seg_37() + + _seg_38() + + _seg_39() + + _seg_40() + + _seg_41() + + _seg_42() + + _seg_43() + + _seg_44() + + _seg_45() + + _seg_46() + + _seg_47() + + _seg_48() + + _seg_49() + + _seg_50() + + _seg_51() + + _seg_52() + + _seg_53() + + _seg_54() + + _seg_55() + + _seg_56() + + _seg_57() + + _seg_58() + + _seg_59() + + _seg_60() + + _seg_61() + + _seg_62() + + _seg_63() + + _seg_64() + + _seg_65() + + _seg_66() + + _seg_67() + + _seg_68() + + _seg_69() + + _seg_70() + + _seg_71() + + _seg_72() + + _seg_73() + + _seg_74() + + _seg_75() + + _seg_76() + + _seg_77() + + _seg_78() + + _seg_79() + + _seg_80() + + _seg_81() +) # type: Tuple[Union[Tuple[int, str], Tuple[int, str, str]], ...] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py new file mode 100644 index 00000000..1300b866 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py @@ -0,0 +1,57 @@ +# coding: utf-8 +from .exceptions import * +from .ext import ExtType, Timestamp + +import os +import sys + + +version = (1, 0, 5) +__version__ = "1.0.5" + + +if os.environ.get("MSGPACK_PUREPYTHON") or sys.version_info[0] == 2: + from .fallback import Packer, unpackb, Unpacker +else: + try: + from ._cmsgpack import Packer, unpackb, Unpacker + except ImportError: + from .fallback import Packer, unpackb, Unpacker + + +def pack(o, stream, **kwargs): + """ + Pack object `o` and write it to `stream` + + See :class:`Packer` for options. + """ + packer = Packer(**kwargs) + stream.write(packer.pack(o)) + + +def packb(o, **kwargs): + """ + Pack object `o` and return packed bytes + + See :class:`Packer` for options. + """ + return Packer(**kwargs).pack(o) + + +def unpack(stream, **kwargs): + """ + Unpack an object from `stream`. + + Raises `ExtraData` when `stream` contains extra bytes. + See :class:`Unpacker` for options. + """ + data = stream.read() + return unpackb(data, **kwargs) + + +# alias for compatibility to simplejson/marshal/pickle. +load = unpack +loads = unpackb + +dump = pack +dumps = packb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5d6b7306447055ec0e2449fb0ab7dcfb6b1d9d97 GIT binary patch literal 1883 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 F{|DDQ8gu{v literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..74e455bf0ac16ab8a0c3e0ca1e904b1bfb3a8065 GIT binary patch literal 43628 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ℜV+Sus`Gn0Y@-p8zBxdf|y-gmZ%e~M{I!^ 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 34 + elif len(b) == 12: + nanoseconds, seconds = struct.unpack("!Iq", b) + else: + raise ValueError( + "Timestamp type can only be created from 32, 64, or 96-bit byte objects" + ) + return Timestamp(seconds, nanoseconds) + + def to_bytes(self): + """Pack this Timestamp object into bytes. + + Used for pure-Python msgpack packing. + + :returns data: Payload for EXT message with code -1 (timestamp type) + :rtype: bytes + """ + if (self.seconds >> 34) == 0: # seconds is non-negative and fits in 34 bits + data64 = self.nanoseconds << 34 | self.seconds + if data64 & 0xFFFFFFFF00000000 == 0: + # nanoseconds is zero and seconds < 2**32, so timestamp 32 + data = struct.pack("!L", data64) + else: + # timestamp 64 + data = struct.pack("!Q", data64) + else: + # timestamp 96 + data = struct.pack("!Iq", self.nanoseconds, self.seconds) + return data + + @staticmethod + def from_unix(unix_sec): + """Create a Timestamp from posix timestamp in seconds. + + :param unix_float: Posix timestamp in seconds. + :type unix_float: int or float. + """ + seconds = int(unix_sec // 1) + nanoseconds = int((unix_sec % 1) * 10**9) + return Timestamp(seconds, nanoseconds) + + def to_unix(self): + """Get the timestamp as a floating-point value. + + :returns: posix timestamp + :rtype: float + """ + return self.seconds + self.nanoseconds / 1e9 + + @staticmethod + def from_unix_nano(unix_ns): + """Create a Timestamp from posix timestamp in nanoseconds. + + :param int unix_ns: Posix timestamp in nanoseconds. + :rtype: Timestamp + """ + return Timestamp(*divmod(unix_ns, 10**9)) + + def to_unix_nano(self): + """Get the timestamp as a unixtime in nanoseconds. + + :returns: posix timestamp in nanoseconds + :rtype: int + """ + return self.seconds * 10**9 + self.nanoseconds + + def to_datetime(self): + """Get the timestamp as a UTC datetime. + + Python 2 is not supported. + + :rtype: datetime. + """ + return datetime.datetime.fromtimestamp(0, _utc) + datetime.timedelta( + seconds=self.to_unix() + ) + + @staticmethod + def from_datetime(dt): + """Create a Timestamp from datetime with tzinfo. + + Python 2 is not supported. + + :rtype: Timestamp + """ + return Timestamp.from_unix(dt.timestamp()) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py new file mode 100644 index 00000000..e8cebc1b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py @@ -0,0 +1,1010 @@ +"""Fallback pure Python implementation of msgpack""" +from datetime import datetime as _DateTime +import sys +import struct + + +PY2 = sys.version_info[0] == 2 +if PY2: + int_types = (int, long) + + def dict_iteritems(d): + return d.iteritems() + +else: + int_types = int + unicode = str + xrange = range + + def dict_iteritems(d): + return d.items() + + +if sys.version_info < (3, 5): + # Ugly hack... + RecursionError = RuntimeError + + def _is_recursionerror(e): + return ( + len(e.args) == 1 + and isinstance(e.args[0], str) + and e.args[0].startswith("maximum recursion depth exceeded") + ) + +else: + + def _is_recursionerror(e): + return True + + +if hasattr(sys, "pypy_version_info"): + # StringIO is slow on PyPy, StringIO is faster. However: PyPy's own + # StringBuilder is fastest. + from __pypy__ import newlist_hint + + try: + from __pypy__.builders import BytesBuilder as StringBuilder + except ImportError: + from __pypy__.builders import StringBuilder + USING_STRINGBUILDER = True + + class StringIO(object): + def __init__(self, s=b""): + if s: + self.builder = StringBuilder(len(s)) + self.builder.append(s) + else: + self.builder = StringBuilder() + + def write(self, s): + if isinstance(s, memoryview): + s = s.tobytes() + elif isinstance(s, bytearray): + s = bytes(s) + self.builder.append(s) + + def getvalue(self): + return self.builder.build() + +else: + USING_STRINGBUILDER = False + from io import BytesIO as StringIO + + newlist_hint = lambda size: [] + + +from .exceptions import BufferFull, OutOfData, ExtraData, FormatError, StackError + +from .ext import ExtType, Timestamp + + +EX_SKIP = 0 +EX_CONSTRUCT = 1 +EX_READ_ARRAY_HEADER = 2 +EX_READ_MAP_HEADER = 3 + +TYPE_IMMEDIATE = 0 +TYPE_ARRAY = 1 +TYPE_MAP = 2 +TYPE_RAW = 3 +TYPE_BIN = 4 +TYPE_EXT = 5 + +DEFAULT_RECURSE_LIMIT = 511 + + +def _check_type_strict(obj, t, type=type, tuple=tuple): + if type(t) is tuple: + return type(obj) in t + else: + return type(obj) is t + + +def _get_data_from_buffer(obj): + view = memoryview(obj) + if view.itemsize != 1: + raise ValueError("cannot unpack from multi-byte object") + return view + + +def unpackb(packed, **kwargs): + """ + Unpack an object from `packed`. + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``ValueError`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + + See :class:`Unpacker` for options. + """ + unpacker = Unpacker(None, max_buffer_size=len(packed), **kwargs) + unpacker.feed(packed) + try: + ret = unpacker._unpack() + except OutOfData: + raise ValueError("Unpack failed: incomplete input") + except RecursionError as e: + if _is_recursionerror(e): + raise StackError + raise + if unpacker._got_extradata(): + raise ExtraData(ret, unpacker._get_extradata()) + return ret + + +if sys.version_info < (2, 7, 6): + + def _unpack_from(f, b, o=0): + """Explicit type cast for legacy struct.unpack_from""" + return struct.unpack_from(f, bytes(b), o) + +else: + _unpack_from = struct.unpack_from + +_NO_FORMAT_USED = "" +_MSGPACK_HEADERS = { + 0xC4: (1, _NO_FORMAT_USED, TYPE_BIN), + 0xC5: (2, ">H", TYPE_BIN), + 0xC6: (4, ">I", TYPE_BIN), + 0xC7: (2, "Bb", TYPE_EXT), + 0xC8: (3, ">Hb", TYPE_EXT), + 0xC9: (5, ">Ib", TYPE_EXT), + 0xCA: (4, ">f"), + 0xCB: (8, ">d"), + 0xCC: (1, _NO_FORMAT_USED), + 0xCD: (2, ">H"), + 0xCE: (4, ">I"), + 0xCF: (8, ">Q"), + 0xD0: (1, "b"), + 0xD1: (2, ">h"), + 0xD2: (4, ">i"), + 0xD3: (8, ">q"), + 0xD4: (1, "b1s", TYPE_EXT), + 0xD5: (2, "b2s", TYPE_EXT), + 0xD6: (4, "b4s", TYPE_EXT), + 0xD7: (8, "b8s", TYPE_EXT), + 0xD8: (16, "b16s", TYPE_EXT), + 0xD9: (1, _NO_FORMAT_USED, TYPE_RAW), + 0xDA: (2, ">H", TYPE_RAW), + 0xDB: (4, ">I", TYPE_RAW), + 0xDC: (2, ">H", TYPE_ARRAY), + 0xDD: (4, ">I", TYPE_ARRAY), + 0xDE: (2, ">H", TYPE_MAP), + 0xDF: (4, ">I", TYPE_MAP), +} + + +class Unpacker(object): + """Streaming unpacker. + + Arguments: + + :param file_like: + File-like object having `.read(n)` method. + If specified, unpacker reads serialized data from it and :meth:`feed()` is not usable. + + :param int read_size: + Used as `file_like.read(read_size)`. (default: `min(16*1024, max_buffer_size)`) + + :param bool use_list: + If true, unpack msgpack array to Python list. + Otherwise, unpack to Python tuple. (default: True) + + :param bool raw: + If true, unpack msgpack raw to Python bytes. + Otherwise, unpack to Python str by decoding with UTF-8 encoding (default). + + :param int timestamp: + Control how timestamp type is unpacked: + + 0 - Timestamp + 1 - float (Seconds from the EPOCH) + 2 - int (Nanoseconds from the EPOCH) + 3 - datetime.datetime (UTC). Python 2 is not supported. + + :param bool strict_map_key: + If true (default), only str or bytes are accepted for map (dict) keys. + + :param callable object_hook: + When specified, it should be callable. + Unpacker calls it with a dict argument after unpacking msgpack map. + (See also simplejson) + + :param callable object_pairs_hook: + When specified, it should be callable. + Unpacker calls it with a list of key-value pairs after unpacking msgpack map. + (See also simplejson) + + :param str unicode_errors: + The error handler for decoding unicode. (default: 'strict') + This option should be used only when you have msgpack data which + contains invalid UTF-8 string. + + :param int max_buffer_size: + Limits size of data waiting unpacked. 0 means 2**32-1. + The default value is 100*1024*1024 (100MiB). + Raises `BufferFull` exception when it is insufficient. + You should set this parameter when unpacking data from untrusted source. + + :param int max_str_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of str. (default: max_buffer_size) + + :param int max_bin_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of bin. (default: max_buffer_size) + + :param int max_array_len: + Limits max length of array. + (default: max_buffer_size) + + :param int max_map_len: + Limits max length of map. + (default: max_buffer_size//2) + + :param int max_ext_len: + Deprecated, use *max_buffer_size* instead. + Limits max size of ext type. (default: max_buffer_size) + + Example of streaming deserialize from file-like object:: + + unpacker = Unpacker(file_like) + for o in unpacker: + process(o) + + Example of streaming deserialize from socket:: + + unpacker = Unpacker() + while True: + buf = sock.recv(1024**2) + if not buf: + break + unpacker.feed(buf) + for o in unpacker: + process(o) + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``OutOfData`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + """ + + def __init__( + self, + file_like=None, + read_size=0, + use_list=True, + raw=False, + timestamp=0, + strict_map_key=True, + object_hook=None, + object_pairs_hook=None, + list_hook=None, + unicode_errors=None, + max_buffer_size=100 * 1024 * 1024, + ext_hook=ExtType, + max_str_len=-1, + max_bin_len=-1, + max_array_len=-1, + max_map_len=-1, + max_ext_len=-1, + ): + if unicode_errors is None: + unicode_errors = "strict" + + if file_like is None: + self._feeding = True + else: + if not callable(file_like.read): + raise TypeError("`file_like.read` must be callable") + self.file_like = file_like + self._feeding = False + + #: array of bytes fed. + self._buffer = bytearray() + #: Which position we currently reads + self._buff_i = 0 + + # When Unpacker is used as an iterable, between the calls to next(), + # the buffer is not "consumed" completely, for efficiency sake. + # Instead, it is done sloppily. To make sure we raise BufferFull at + # the correct moments, we have to keep track of how sloppy we were. + # Furthermore, when the buffer is incomplete (that is: in the case + # we raise an OutOfData) we need to rollback the buffer to the correct + # state, which _buf_checkpoint records. + self._buf_checkpoint = 0 + + if not max_buffer_size: + max_buffer_size = 2**31 - 1 + if max_str_len == -1: + max_str_len = max_buffer_size + if max_bin_len == -1: + max_bin_len = max_buffer_size + if max_array_len == -1: + max_array_len = max_buffer_size + if max_map_len == -1: + max_map_len = max_buffer_size // 2 + if max_ext_len == -1: + max_ext_len = max_buffer_size + + self._max_buffer_size = max_buffer_size + if read_size > self._max_buffer_size: + raise ValueError("read_size must be smaller than max_buffer_size") + self._read_size = read_size or min(self._max_buffer_size, 16 * 1024) + self._raw = bool(raw) + self._strict_map_key = bool(strict_map_key) + self._unicode_errors = unicode_errors + self._use_list = use_list + if not (0 <= timestamp <= 3): + raise ValueError("timestamp must be 0..3") + self._timestamp = timestamp + self._list_hook = list_hook + self._object_hook = object_hook + self._object_pairs_hook = object_pairs_hook + self._ext_hook = ext_hook + self._max_str_len = max_str_len + self._max_bin_len = max_bin_len + self._max_array_len = max_array_len + self._max_map_len = max_map_len + self._max_ext_len = max_ext_len + self._stream_offset = 0 + + if list_hook is not None and not callable(list_hook): + raise TypeError("`list_hook` is not callable") + if object_hook is not None and not callable(object_hook): + raise TypeError("`object_hook` is not callable") + if object_pairs_hook is not None and not callable(object_pairs_hook): + raise TypeError("`object_pairs_hook` is not callable") + if object_hook is not None and object_pairs_hook is not None: + raise TypeError( + "object_pairs_hook and object_hook are mutually " "exclusive" + ) + if not callable(ext_hook): + raise TypeError("`ext_hook` is not callable") + + def feed(self, next_bytes): + assert self._feeding + view = _get_data_from_buffer(next_bytes) + if len(self._buffer) - self._buff_i + len(view) > self._max_buffer_size: + raise BufferFull + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Use extend here: INPLACE_ADD += doesn't reliably typecast memoryview in jython + self._buffer.extend(view) + + def _consume(self): + """Gets rid of the used parts of the buffer.""" + self._stream_offset += self._buff_i - self._buf_checkpoint + self._buf_checkpoint = self._buff_i + + def _got_extradata(self): + return self._buff_i < len(self._buffer) + + def _get_extradata(self): + return self._buffer[self._buff_i :] + + def read_bytes(self, n): + ret = self._read(n, raise_outofdata=False) + self._consume() + return ret + + def _read(self, n, raise_outofdata=True): + # (int) -> bytearray + self._reserve(n, raise_outofdata=raise_outofdata) + i = self._buff_i + ret = self._buffer[i : i + n] + self._buff_i = i + len(ret) + return ret + + def _reserve(self, n, raise_outofdata=True): + remain_bytes = len(self._buffer) - self._buff_i - n + + # Fast path: buffer has n bytes already + if remain_bytes >= 0: + return + + if self._feeding: + self._buff_i = self._buf_checkpoint + raise OutOfData + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Read from file + remain_bytes = -remain_bytes + if remain_bytes + len(self._buffer) > self._max_buffer_size: + raise BufferFull + while remain_bytes > 0: + to_read_bytes = max(self._read_size, remain_bytes) + read_data = self.file_like.read(to_read_bytes) + if not read_data: + break + assert isinstance(read_data, bytes) + self._buffer += read_data + remain_bytes -= len(read_data) + + if len(self._buffer) < n + self._buff_i and raise_outofdata: + self._buff_i = 0 # rollback + raise OutOfData + + def _read_header(self): + typ = TYPE_IMMEDIATE + n = 0 + obj = None + self._reserve(1) + b = self._buffer[self._buff_i] + self._buff_i += 1 + if b & 0b10000000 == 0: + obj = b + elif b & 0b11100000 == 0b11100000: + obj = -1 - (b ^ 0xFF) + elif b & 0b11100000 == 0b10100000: + n = b & 0b00011111 + typ = TYPE_RAW + if n > self._max_str_len: + raise ValueError("%s exceeds max_str_len(%s)" % (n, self._max_str_len)) + obj = self._read(n) + elif b & 0b11110000 == 0b10010000: + n = b & 0b00001111 + typ = TYPE_ARRAY + if n > self._max_array_len: + raise ValueError( + "%s exceeds max_array_len(%s)" % (n, self._max_array_len) + ) + elif b & 0b11110000 == 0b10000000: + n = b & 0b00001111 + typ = TYPE_MAP + if n > self._max_map_len: + raise ValueError("%s exceeds max_map_len(%s)" % (n, self._max_map_len)) + elif b == 0xC0: + obj = None + elif b == 0xC2: + obj = False + elif b == 0xC3: + obj = True + elif 0xC4 <= b <= 0xC6: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + n = _unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_bin_len: + raise ValueError("%s exceeds max_bin_len(%s)" % (n, self._max_bin_len)) + obj = self._read(n) + elif 0xC7 <= b <= 0xC9: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + L, n = _unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if L > self._max_ext_len: + raise ValueError("%s exceeds max_ext_len(%s)" % (L, self._max_ext_len)) + obj = self._read(L) + elif 0xCA <= b <= 0xD3: + size, fmt = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + obj = _unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + obj = self._buffer[self._buff_i] + self._buff_i += size + elif 0xD4 <= b <= 0xD8: + size, fmt, typ = _MSGPACK_HEADERS[b] + if self._max_ext_len < size: + raise ValueError( + "%s exceeds max_ext_len(%s)" % (size, self._max_ext_len) + ) + self._reserve(size + 1) + n, obj = _unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + 1 + elif 0xD9 <= b <= 0xDB: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + (n,) = _unpack_from(fmt, self._buffer, self._buff_i) + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_str_len: + raise ValueError("%s exceeds max_str_len(%s)" % (n, self._max_str_len)) + obj = self._read(n) + elif 0xDC <= b <= 0xDD: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = _unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_array_len: + raise ValueError( + "%s exceeds max_array_len(%s)" % (n, self._max_array_len) + ) + elif 0xDE <= b <= 0xDF: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = _unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_map_len: + raise ValueError("%s exceeds max_map_len(%s)" % (n, self._max_map_len)) + else: + raise FormatError("Unknown header: 0x%x" % b) + return typ, n, obj + + def _unpack(self, execute=EX_CONSTRUCT): + typ, n, obj = self._read_header() + + if execute == EX_READ_ARRAY_HEADER: + if typ != TYPE_ARRAY: + raise ValueError("Expected array") + return n + if execute == EX_READ_MAP_HEADER: + if typ != TYPE_MAP: + raise ValueError("Expected map") + return n + # TODO should we eliminate the recursion? + if typ == TYPE_ARRAY: + if execute == EX_SKIP: + for i in xrange(n): + # TODO check whether we need to call `list_hook` + self._unpack(EX_SKIP) + return + ret = newlist_hint(n) + for i in xrange(n): + ret.append(self._unpack(EX_CONSTRUCT)) + if self._list_hook is not None: + ret = self._list_hook(ret) + # TODO is the interaction between `list_hook` and `use_list` ok? + return ret if self._use_list else tuple(ret) + if typ == TYPE_MAP: + if execute == EX_SKIP: + for i in xrange(n): + # TODO check whether we need to call hooks + self._unpack(EX_SKIP) + self._unpack(EX_SKIP) + return + if self._object_pairs_hook is not None: + ret = self._object_pairs_hook( + (self._unpack(EX_CONSTRUCT), self._unpack(EX_CONSTRUCT)) + for _ in xrange(n) + ) + else: + ret = {} + for _ in xrange(n): + key = self._unpack(EX_CONSTRUCT) + if self._strict_map_key and type(key) not in (unicode, bytes): + raise ValueError( + "%s is not allowed for map key" % str(type(key)) + ) + if not PY2 and type(key) is str: + key = sys.intern(key) + ret[key] = self._unpack(EX_CONSTRUCT) + if self._object_hook is not None: + ret = self._object_hook(ret) + return ret + if execute == EX_SKIP: + return + if typ == TYPE_RAW: + if self._raw: + obj = bytes(obj) + else: + obj = obj.decode("utf_8", self._unicode_errors) + return obj + if typ == TYPE_BIN: + return bytes(obj) + if typ == TYPE_EXT: + if n == -1: # timestamp + ts = Timestamp.from_bytes(bytes(obj)) + if self._timestamp == 1: + return ts.to_unix() + elif self._timestamp == 2: + return ts.to_unix_nano() + elif self._timestamp == 3: + return ts.to_datetime() + else: + return ts + else: + return self._ext_hook(n, bytes(obj)) + assert typ == TYPE_IMMEDIATE + return obj + + def __iter__(self): + return self + + def __next__(self): + try: + ret = self._unpack(EX_CONSTRUCT) + self._consume() + return ret + except OutOfData: + self._consume() + raise StopIteration + except RecursionError: + raise StackError + + next = __next__ + + def skip(self): + self._unpack(EX_SKIP) + self._consume() + + def unpack(self): + try: + ret = self._unpack(EX_CONSTRUCT) + except RecursionError: + raise StackError + self._consume() + return ret + + def read_array_header(self): + ret = self._unpack(EX_READ_ARRAY_HEADER) + self._consume() + return ret + + def read_map_header(self): + ret = self._unpack(EX_READ_MAP_HEADER) + self._consume() + return ret + + def tell(self): + return self._stream_offset + + +class Packer(object): + """ + MessagePack Packer + + Usage:: + + packer = Packer() + astream.write(packer.pack(a)) + astream.write(packer.pack(b)) + + Packer's constructor has some keyword arguments: + + :param callable default: + Convert user type to builtin type that Packer supports. + See also simplejson's document. + + :param bool use_single_float: + Use single precision float type for float. (default: False) + + :param bool autoreset: + Reset buffer after each pack and return its content as `bytes`. (default: True). + If set this to false, use `bytes()` to get content and `.reset()` to clear buffer. + + :param bool use_bin_type: + Use bin type introduced in msgpack spec 2.0 for bytes. + It also enables str8 type for unicode. (default: True) + + :param bool strict_types: + If set to true, types will be checked to be exact. Derived classes + from serializable types will not be serialized and will be + treated as unsupported type and forwarded to default. + Additionally tuples will not be serialized as lists. + This is useful when trying to implement accurate serialization + for python types. + + :param bool datetime: + If set to true, datetime with tzinfo is packed into Timestamp type. + Note that the tzinfo is stripped in the timestamp. + You can get UTC datetime with `timestamp=3` option of the Unpacker. + (Python 2 is not supported). + + :param str unicode_errors: + The error handler for encoding unicode. (default: 'strict') + DO NOT USE THIS!! This option is kept for very specific usage. + + Example of streaming deserialize from file-like object:: + + unpacker = Unpacker(file_like) + for o in unpacker: + process(o) + + Example of streaming deserialize from socket:: + + unpacker = Unpacker() + while True: + buf = sock.recv(1024**2) + if not buf: + break + unpacker.feed(buf) + for o in unpacker: + process(o) + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``OutOfData`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + """ + + def __init__( + self, + default=None, + use_single_float=False, + autoreset=True, + use_bin_type=True, + strict_types=False, + datetime=False, + unicode_errors=None, + ): + self._strict_types = strict_types + self._use_float = use_single_float + self._autoreset = autoreset + self._use_bin_type = use_bin_type + self._buffer = StringIO() + if PY2 and datetime: + raise ValueError("datetime is not supported in Python 2") + self._datetime = bool(datetime) + self._unicode_errors = unicode_errors or "strict" + if default is not None: + if not callable(default): + raise TypeError("default must be callable") + self._default = default + + def _pack( + self, + obj, + nest_limit=DEFAULT_RECURSE_LIMIT, + check=isinstance, + check_type_strict=_check_type_strict, + ): + default_used = False + if self._strict_types: + check = check_type_strict + list_types = list + else: + list_types = (list, tuple) + while True: + if nest_limit < 0: + raise ValueError("recursion limit exceeded") + if obj is None: + return self._buffer.write(b"\xc0") + if check(obj, bool): + if obj: + return self._buffer.write(b"\xc3") + return self._buffer.write(b"\xc2") + if check(obj, int_types): + if 0 <= obj < 0x80: + return self._buffer.write(struct.pack("B", obj)) + if -0x20 <= obj < 0: + return self._buffer.write(struct.pack("b", obj)) + if 0x80 <= obj <= 0xFF: + return self._buffer.write(struct.pack("BB", 0xCC, obj)) + if -0x80 <= obj < 0: + return self._buffer.write(struct.pack(">Bb", 0xD0, obj)) + if 0xFF < obj <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xCD, obj)) + if -0x8000 <= obj < -0x80: + return self._buffer.write(struct.pack(">Bh", 0xD1, obj)) + if 0xFFFF < obj <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xCE, obj)) + if -0x80000000 <= obj < -0x8000: + return self._buffer.write(struct.pack(">Bi", 0xD2, obj)) + if 0xFFFFFFFF < obj <= 0xFFFFFFFFFFFFFFFF: + return self._buffer.write(struct.pack(">BQ", 0xCF, obj)) + if -0x8000000000000000 <= obj < -0x80000000: + return self._buffer.write(struct.pack(">Bq", 0xD3, obj)) + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = True + continue + raise OverflowError("Integer value out of range") + if check(obj, (bytes, bytearray)): + n = len(obj) + if n >= 2**32: + raise ValueError("%s is too large" % type(obj).__name__) + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, unicode): + obj = obj.encode("utf-8", self._unicode_errors) + n = len(obj) + if n >= 2**32: + raise ValueError("String is too large") + self._pack_raw_header(n) + return self._buffer.write(obj) + if check(obj, memoryview): + n = obj.nbytes + if n >= 2**32: + raise ValueError("Memoryview is too large") + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, float): + if self._use_float: + return self._buffer.write(struct.pack(">Bf", 0xCA, obj)) + return self._buffer.write(struct.pack(">Bd", 0xCB, obj)) + if check(obj, (ExtType, Timestamp)): + if check(obj, Timestamp): + code = -1 + data = obj.to_bytes() + else: + code = obj.code + data = obj.data + assert isinstance(code, int) + assert isinstance(data, bytes) + L = len(data) + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xC7, L)) + elif L <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xC8, L)) + else: + self._buffer.write(struct.pack(">BI", 0xC9, L)) + self._buffer.write(struct.pack("b", code)) + self._buffer.write(data) + return + if check(obj, list_types): + n = len(obj) + self._pack_array_header(n) + for i in xrange(n): + self._pack(obj[i], nest_limit - 1) + return + if check(obj, dict): + return self._pack_map_pairs( + len(obj), dict_iteritems(obj), nest_limit - 1 + ) + + if self._datetime and check(obj, _DateTime) and obj.tzinfo is not None: + obj = Timestamp.from_datetime(obj) + default_used = 1 + continue + + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = 1 + continue + + if self._datetime and check(obj, _DateTime): + raise ValueError("Cannot serialize %r where tzinfo=None" % (obj,)) + + raise TypeError("Cannot serialize %r" % (obj,)) + + def pack(self, obj): + try: + self._pack(obj) + except: + self._buffer = StringIO() # force reset + raise + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_map_pairs(self, pairs): + self._pack_map_pairs(len(pairs), pairs) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_array_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_array_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_map_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_map_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_ext_type(self, typecode, data): + if not isinstance(typecode, int): + raise TypeError("typecode must have int type.") + if not 0 <= typecode <= 127: + raise ValueError("typecode should be 0-127") + if not isinstance(data, bytes): + raise TypeError("data must have bytes type") + L = len(data) + if L > 0xFFFFFFFF: + raise ValueError("Too large data") + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(b"\xc7" + struct.pack("B", L)) + elif L <= 0xFFFF: + self._buffer.write(b"\xc8" + struct.pack(">H", L)) + else: + self._buffer.write(b"\xc9" + struct.pack(">I", L)) + self._buffer.write(struct.pack("B", typecode)) + self._buffer.write(data) + + def _pack_array_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x90 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDC, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDD, n)) + raise ValueError("Array is too large") + + def _pack_map_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x80 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDE, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDF, n)) + raise ValueError("Dict is too large") + + def _pack_map_pairs(self, n, pairs, nest_limit=DEFAULT_RECURSE_LIMIT): + self._pack_map_header(n) + for (k, v) in pairs: + self._pack(k, nest_limit - 1) + self._pack(v, nest_limit - 1) + + def _pack_raw_header(self, n): + if n <= 0x1F: + self._buffer.write(struct.pack("B", 0xA0 + n)) + elif self._use_bin_type and n <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xD9, n)) + elif n <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xDA, n)) + elif n <= 0xFFFFFFFF: + self._buffer.write(struct.pack(">BI", 0xDB, n)) + else: + raise ValueError("Raw is too large") + + def _pack_bin_header(self, n): + if not self._use_bin_type: + return self._pack_raw_header(n) + elif n <= 0xFF: + return self._buffer.write(struct.pack(">BB", 0xC4, n)) + elif n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xC5, n)) + elif n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xC6, n)) + else: + raise ValueError("Bin is too large") + + def bytes(self): + """Return internal buffer contents as bytes object""" + return self._buffer.getvalue() + + def reset(self): + """Reset internal buffer. + + This method is useful only when autoreset=False. + """ + self._buffer = StringIO() + + def getbuffer(self): + """Return view of internal buffer.""" + if USING_STRINGBUILDER or PY2: + return memoryview(self.bytes()) + else: + return self._buffer.getbuffer() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py new file mode 100644 index 00000000..3551bc2d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py @@ -0,0 +1,26 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +__all__ = [ + "__title__", + "__summary__", + "__uri__", + "__version__", + "__author__", + "__email__", + "__license__", + "__copyright__", +] + +__title__ = "packaging" +__summary__ = "Core utilities for Python packages" +__uri__ = "https://github.com/pypa/packaging" + +__version__ = "21.3" + +__author__ = "Donald Stufft and individual contributors" +__email__ = "donald@stufft.io" + +__license__ = "BSD-2-Clause or Apache-2.0" +__copyright__ = "2014-2019 %s" % __author__ diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py new file mode 100644 index 00000000..3c50c5dc --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py @@ -0,0 +1,25 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from .__about__ import ( + __author__, + __copyright__, + __email__, + __license__, + __summary__, + __title__, + __uri__, + __version__, +) + +__all__ = [ + "__title__", + "__summary__", + "__uri__", + "__version__", + "__author__", + "__email__", + "__license__", + "__copyright__", +] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca3908ddc9c06dbf251228c8ebbc9e34da3ac177 GIT binary patch literal 682 zcmYL`J#W-77{{G^>0R!c(g7jVp$bSH4wSe}8F&){?p6>|nX*{Ev+rWni6h&&Dw)F0 zTCpNFJ_}Q~Q>T;o0u|jl@#LzikK~{I*ndB^|Ni570|aq!@jW?jA@sLN?gH{nTu0FT zKnujsFDFLKi5=F8TdWBWsnRAp@mJ9hB55qDHZZoBgKqorYYkQGE;e}#UindET^+m zx)9l-dOB8``-K%!Siy}ySK9wlLb=Sp6>(ENNvzGyYm67dCdD+IsTAjBPVs%2PIMF= zSEGr_sAT?$E#`CU(~S8dV`3>-L8U)anbl%iSfx$1%Qn*YW+M%Ss`fsfOoAvFOIjH2 z!!*-t6;#4Ab>p{gH|R9zHUKY??ltH)Z~?#3H4xpL z<3yz#FX&VYF7bq$Q>$`(qUQFDf)NwG;vjcdo@QG|`KJh-zD=OV`hWK8LM$1pr#stWjxFfVWVZ_~{w@ALz> zr31~p0bI2m$N4vKhpoDI^$2;7Yj?F1)x*^wsC(<3hxKsny{reT?fu$a?>vKr-Tj|? N7rW2DdD?^h{{iX~)Uf~n literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86fa5b877dd22825f54fbb118c47898cebeacd68 GIT binary patch literal 518 zcmYk2J&zMH5QgpDB)gka5ETv0H54fli;oh~a4j@YxfwaxVPl=Ww(Q-Uwxp*-qQ8#c za@DohQqggj;-sq>X93~j(aiYOyfbsPSj-u{XV+hLx16ybDf#=dKf&P@1>acBYHpb2 zlG{vXHkY}b$cdfGsh!E0Eo5O!S#s8}I=keu8uI1jC-r2@@@5X8`fld}z|8_+>--RO zv+F3W0MIIJC_Di$dW&tuF^RpkDh#8j)16860-z6i6znlX?OK3k8A@^rMM9O3)(UyT zG+~x7A-rGClcn0Yp4>-8s{bcDHaWKY*D1LwLoJ{RE;{r?6>MUS-r literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..868056cb39e9998e8c4662f3a9e3d537f2605d4a GIT binary patch literal 12128 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 IW_C9J2cEcn;Q#;t literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..11211968828c1c549d3ae724e69cc6911567d641 GIT binary patch literal 3293 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 WQm8DhdWrV_s_vlben9}FAo@RGZUCJC literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a522c36130928413a110a825119b4f6c9ecf44ac GIT binary patch literal 31299 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 a=z4tk>ctxr^K?sHSv9`7aF3!)S^t0c?mZ0v literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e613da03484ab3ff75d6bf9539e78cd40bb9c1dd GIT binary patch literal 5920 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 TYR_5_RzYdaPpt4p=K22t74(;l literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py new file mode 100644 index 00000000..4c379aa6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py @@ -0,0 +1,301 @@ +import collections +import functools +import os +import re +import struct +import sys +import warnings +from typing import IO, Dict, Iterator, NamedTuple, Optional, Tuple + + +# Python does not provide platform information at sufficient granularity to +# identify the architecture of the running executable in some cases, so we +# determine it dynamically by reading the information from the running +# process. This only applies on Linux, which uses the ELF format. +class _ELFFileHeader: + # https://en.wikipedia.org/wiki/Executable_and_Linkable_Format#File_header + class _InvalidELFFileHeader(ValueError): + """ + An invalid ELF file header was found. + """ + + ELF_MAGIC_NUMBER = 0x7F454C46 + ELFCLASS32 = 1 + ELFCLASS64 = 2 + ELFDATA2LSB = 1 + ELFDATA2MSB = 2 + EM_386 = 3 + EM_S390 = 22 + EM_ARM = 40 + EM_X86_64 = 62 + EF_ARM_ABIMASK = 0xFF000000 + EF_ARM_ABI_VER5 = 0x05000000 + EF_ARM_ABI_FLOAT_HARD = 0x00000400 + + def __init__(self, file: IO[bytes]) -> None: + def unpack(fmt: str) -> int: + try: + data = file.read(struct.calcsize(fmt)) + result: Tuple[int, ...] = struct.unpack(fmt, data) + except struct.error: + raise _ELFFileHeader._InvalidELFFileHeader() + return result[0] + + self.e_ident_magic = unpack(">I") + if self.e_ident_magic != self.ELF_MAGIC_NUMBER: + raise _ELFFileHeader._InvalidELFFileHeader() + self.e_ident_class = unpack("B") + if self.e_ident_class not in {self.ELFCLASS32, self.ELFCLASS64}: + raise _ELFFileHeader._InvalidELFFileHeader() + self.e_ident_data = unpack("B") + if self.e_ident_data not in {self.ELFDATA2LSB, self.ELFDATA2MSB}: + raise _ELFFileHeader._InvalidELFFileHeader() + self.e_ident_version = unpack("B") + self.e_ident_osabi = unpack("B") + self.e_ident_abiversion = unpack("B") + self.e_ident_pad = file.read(7) + format_h = "H" + format_i = "I" + format_q = "Q" + format_p = format_i if self.e_ident_class == self.ELFCLASS32 else format_q + self.e_type = unpack(format_h) + self.e_machine = unpack(format_h) + self.e_version = unpack(format_i) + self.e_entry = unpack(format_p) + self.e_phoff = unpack(format_p) + self.e_shoff = unpack(format_p) + self.e_flags = unpack(format_i) + self.e_ehsize = unpack(format_h) + self.e_phentsize = unpack(format_h) + self.e_phnum = unpack(format_h) + self.e_shentsize = unpack(format_h) + self.e_shnum = unpack(format_h) + self.e_shstrndx = unpack(format_h) + + +def _get_elf_header() -> Optional[_ELFFileHeader]: + try: + with open(sys.executable, "rb") as f: + elf_header = _ELFFileHeader(f) + except (OSError, TypeError, _ELFFileHeader._InvalidELFFileHeader): + return None + return elf_header + + +def _is_linux_armhf() -> bool: + # hard-float ABI can be detected from the ELF header of the running + # process + # https://static.docs.arm.com/ihi0044/g/aaelf32.pdf + elf_header = _get_elf_header() + if elf_header is None: + return False + result = elf_header.e_ident_class == elf_header.ELFCLASS32 + result &= elf_header.e_ident_data == elf_header.ELFDATA2LSB + result &= elf_header.e_machine == elf_header.EM_ARM + result &= ( + elf_header.e_flags & elf_header.EF_ARM_ABIMASK + ) == elf_header.EF_ARM_ABI_VER5 + result &= ( + elf_header.e_flags & elf_header.EF_ARM_ABI_FLOAT_HARD + ) == elf_header.EF_ARM_ABI_FLOAT_HARD + return result + + +def _is_linux_i686() -> bool: + elf_header = _get_elf_header() + if elf_header is None: + return False + result = elf_header.e_ident_class == elf_header.ELFCLASS32 + result &= elf_header.e_ident_data == elf_header.ELFDATA2LSB + result &= elf_header.e_machine == elf_header.EM_386 + return result + + +def _have_compatible_abi(arch: str) -> bool: + if arch == "armv7l": + return _is_linux_armhf() + if arch == "i686": + return _is_linux_i686() + return arch in {"x86_64", "aarch64", "ppc64", "ppc64le", "s390x"} + + +# If glibc ever changes its major version, we need to know what the last +# minor version was, so we can build the complete list of all versions. +# For now, guess what the highest minor version might be, assume it will +# be 50 for testing. Once this actually happens, update the dictionary +# with the actual value. +_LAST_GLIBC_MINOR: Dict[int, int] = collections.defaultdict(lambda: 50) + + +class _GLibCVersion(NamedTuple): + major: int + minor: int + + +def _glibc_version_string_confstr() -> Optional[str]: + """ + Primary implementation of glibc_version_string using os.confstr. + """ + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module. + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c/Lib/platform.py#L175-L183 + try: + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17". + version_string = os.confstr("CS_GNU_LIBC_VERSION") + assert version_string is not None + _, version = version_string.split() + except (AssertionError, AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def _glibc_version_string_ctypes() -> Optional[str]: + """ + Fallback implementation of glibc_version_string using ctypes. + """ + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +def _glibc_version_string() -> Optional[str]: + """Returns glibc version string, or None if not using glibc.""" + return _glibc_version_string_confstr() or _glibc_version_string_ctypes() + + +def _parse_glibc_version(version_str: str) -> Tuple[int, int]: + """Parse glibc version. + + We use a regexp instead of str.split because we want to discard any + random junk that might come after the minor version -- this might happen + in patched/forked versions of glibc (e.g. Linaro's version of glibc + uses version strings like "2.20-2014.11"). See gh-3588. + """ + m = re.match(r"(?P[0-9]+)\.(?P[0-9]+)", version_str) + if not m: + warnings.warn( + "Expected glibc version with 2 components major.minor," + " got: %s" % version_str, + RuntimeWarning, + ) + return -1, -1 + return int(m.group("major")), int(m.group("minor")) + + +@functools.lru_cache() +def _get_glibc_version() -> Tuple[int, int]: + version_str = _glibc_version_string() + if version_str is None: + return (-1, -1) + return _parse_glibc_version(version_str) + + +# From PEP 513, PEP 600 +def _is_compatible(name: str, arch: str, version: _GLibCVersion) -> bool: + sys_glibc = _get_glibc_version() + if sys_glibc < version: + return False + # Check for presence of _manylinux module. + try: + import _manylinux # noqa + except ImportError: + return True + if hasattr(_manylinux, "manylinux_compatible"): + result = _manylinux.manylinux_compatible(version[0], version[1], arch) + if result is not None: + return bool(result) + return True + if version == _GLibCVersion(2, 5): + if hasattr(_manylinux, "manylinux1_compatible"): + return bool(_manylinux.manylinux1_compatible) + if version == _GLibCVersion(2, 12): + if hasattr(_manylinux, "manylinux2010_compatible"): + return bool(_manylinux.manylinux2010_compatible) + if version == _GLibCVersion(2, 17): + if hasattr(_manylinux, "manylinux2014_compatible"): + return bool(_manylinux.manylinux2014_compatible) + return True + + +_LEGACY_MANYLINUX_MAP = { + # CentOS 7 w/ glibc 2.17 (PEP 599) + (2, 17): "manylinux2014", + # CentOS 6 w/ glibc 2.12 (PEP 571) + (2, 12): "manylinux2010", + # CentOS 5 w/ glibc 2.5 (PEP 513) + (2, 5): "manylinux1", +} + + +def platform_tags(linux: str, arch: str) -> Iterator[str]: + if not _have_compatible_abi(arch): + return + # Oldest glibc to be supported regardless of architecture is (2, 17). + too_old_glibc2 = _GLibCVersion(2, 16) + if arch in {"x86_64", "i686"}: + # On x86/i686 also oldest glibc to be supported is (2, 5). + too_old_glibc2 = _GLibCVersion(2, 4) + current_glibc = _GLibCVersion(*_get_glibc_version()) + glibc_max_list = [current_glibc] + # We can assume compatibility across glibc major versions. + # https://sourceware.org/bugzilla/show_bug.cgi?id=24636 + # + # Build a list of maximum glibc versions so that we can + # output the canonical list of all glibc from current_glibc + # down to too_old_glibc2, including all intermediary versions. + for glibc_major in range(current_glibc.major - 1, 1, -1): + glibc_minor = _LAST_GLIBC_MINOR[glibc_major] + glibc_max_list.append(_GLibCVersion(glibc_major, glibc_minor)) + for glibc_max in glibc_max_list: + if glibc_max.major == too_old_glibc2.major: + min_minor = too_old_glibc2.minor + else: + # For other glibc major versions oldest supported is (x, 0). + min_minor = -1 + for glibc_minor in range(glibc_max.minor, min_minor, -1): + glibc_version = _GLibCVersion(glibc_max.major, glibc_minor) + tag = "manylinux_{}_{}".format(*glibc_version) + if _is_compatible(tag, arch, glibc_version): + yield linux.replace("linux", tag) + # Handle the legacy manylinux1, manylinux2010, manylinux2014 tags. + if glibc_version in _LEGACY_MANYLINUX_MAP: + legacy_tag = _LEGACY_MANYLINUX_MAP[glibc_version] + if _is_compatible(legacy_tag, arch, glibc_version): + yield linux.replace("linux", legacy_tag) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py new file mode 100644 index 00000000..8ac3059b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py @@ -0,0 +1,136 @@ +"""PEP 656 support. + +This module implements logic to detect if the currently running Python is +linked against musl, and what musl version is used. +""" + +import contextlib +import functools +import operator +import os +import re +import struct +import subprocess +import sys +from typing import IO, Iterator, NamedTuple, Optional, Tuple + + +def _read_unpacked(f: IO[bytes], fmt: str) -> Tuple[int, ...]: + return struct.unpack(fmt, f.read(struct.calcsize(fmt))) + + +def _parse_ld_musl_from_elf(f: IO[bytes]) -> Optional[str]: + """Detect musl libc location by parsing the Python executable. + + Based on: https://gist.github.com/lyssdod/f51579ae8d93c8657a5564aefc2ffbca + ELF header: https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.html + """ + f.seek(0) + try: + ident = _read_unpacked(f, "16B") + except struct.error: + return None + if ident[:4] != tuple(b"\x7fELF"): # Invalid magic, not ELF. + return None + f.seek(struct.calcsize("HHI"), 1) # Skip file type, machine, and version. + + try: + # e_fmt: Format for program header. + # p_fmt: Format for section header. + # p_idx: Indexes to find p_type, p_offset, and p_filesz. + e_fmt, p_fmt, p_idx = { + 1: ("IIIIHHH", "IIIIIIII", (0, 1, 4)), # 32-bit. + 2: ("QQQIHHH", "IIQQQQQQ", (0, 2, 5)), # 64-bit. + }[ident[4]] + except KeyError: + return None + else: + p_get = operator.itemgetter(*p_idx) + + # Find the interpreter section and return its content. + try: + _, e_phoff, _, _, _, e_phentsize, e_phnum = _read_unpacked(f, e_fmt) + except struct.error: + return None + for i in range(e_phnum + 1): + f.seek(e_phoff + e_phentsize * i) + try: + p_type, p_offset, p_filesz = p_get(_read_unpacked(f, p_fmt)) + except struct.error: + return None + if p_type != 3: # Not PT_INTERP. + continue + f.seek(p_offset) + interpreter = os.fsdecode(f.read(p_filesz)).strip("\0") + if "musl" not in interpreter: + return None + return interpreter + return None + + +class _MuslVersion(NamedTuple): + major: int + minor: int + + +def _parse_musl_version(output: str) -> Optional[_MuslVersion]: + lines = [n for n in (n.strip() for n in output.splitlines()) if n] + if len(lines) < 2 or lines[0][:4] != "musl": + return None + m = re.match(r"Version (\d+)\.(\d+)", lines[1]) + if not m: + return None + return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2))) + + +@functools.lru_cache() +def _get_musl_version(executable: str) -> Optional[_MuslVersion]: + """Detect currently-running musl runtime version. + + This is done by checking the specified executable's dynamic linking + information, and invoking the loader to parse its output for a version + string. If the loader is musl, the output would be something like:: + + musl libc (x86_64) + Version 1.2.2 + Dynamic Program Loader + """ + with contextlib.ExitStack() as stack: + try: + f = stack.enter_context(open(executable, "rb")) + except OSError: + return None + ld = _parse_ld_musl_from_elf(f) + if not ld: + return None + proc = subprocess.run([ld], stderr=subprocess.PIPE, universal_newlines=True) + return _parse_musl_version(proc.stderr) + + +def platform_tags(arch: str) -> Iterator[str]: + """Generate musllinux tags compatible to the current platform. + + :param arch: Should be the part of platform tag after the ``linux_`` + prefix, e.g. ``x86_64``. The ``linux_`` prefix is assumed as a + prerequisite for the current platform to be musllinux-compatible. + + :returns: An iterator of compatible musllinux tags. + """ + sys_musl = _get_musl_version(sys.executable) + if sys_musl is None: # Python not dynamically linked against musl. + return + for minor in range(sys_musl.minor, -1, -1): + yield f"musllinux_{sys_musl.major}_{minor}_{arch}" + + +if __name__ == "__main__": # pragma: no cover + import sysconfig + + plat = sysconfig.get_platform() + assert plat.startswith("linux-"), "not linux" + + print("plat:", plat) + print("musl:", _get_musl_version(sys.executable)) + print("tags:", end=" ") + for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])): + print(t, end="\n ") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py new file mode 100644 index 00000000..90a6465f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py @@ -0,0 +1,61 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + + +class InfinityType: + def __repr__(self) -> str: + return "Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return False + + def __le__(self, other: object) -> bool: + return False + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return True + + def __ge__(self, other: object) -> bool: + return True + + def __neg__(self: object) -> "NegativeInfinityType": + return NegativeInfinity + + +Infinity = InfinityType() + + +class NegativeInfinityType: + def __repr__(self) -> str: + return "-Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return True + + def __le__(self, other: object) -> bool: + return True + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return False + + def __ge__(self, other: object) -> bool: + return False + + def __neg__(self: object) -> InfinityType: + return Infinity + + +NegativeInfinity = NegativeInfinityType() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py new file mode 100644 index 00000000..540e7a4d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py @@ -0,0 +1,304 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import operator +import os +import platform +import sys +from typing import Any, Callable, Dict, List, Optional, Tuple, Union + +from pip._vendor.pyparsing import ( # noqa: N817 + Forward, + Group, + Literal as L, + ParseException, + ParseResults, + QuotedString, + ZeroOrMore, + stringEnd, + stringStart, +) + +from .specifiers import InvalidSpecifier, Specifier + +__all__ = [ + "InvalidMarker", + "UndefinedComparison", + "UndefinedEnvironmentName", + "Marker", + "default_environment", +] + +Operator = Callable[[str, str], bool] + + +class InvalidMarker(ValueError): + """ + An invalid marker was found, users should refer to PEP 508. + """ + + +class UndefinedComparison(ValueError): + """ + An invalid operation was attempted on a value that doesn't support it. + """ + + +class UndefinedEnvironmentName(ValueError): + """ + A name was attempted to be used that does not exist inside of the + environment. + """ + + +class Node: + def __init__(self, value: Any) -> None: + self.value = value + + def __str__(self) -> str: + return str(self.value) + + def __repr__(self) -> str: + return f"<{self.__class__.__name__}('{self}')>" + + def serialize(self) -> str: + raise NotImplementedError + + +class Variable(Node): + def serialize(self) -> str: + return str(self) + + +class Value(Node): + def serialize(self) -> str: + return f'"{self}"' + + +class Op(Node): + def serialize(self) -> str: + return str(self) + + +VARIABLE = ( + L("implementation_version") + | L("platform_python_implementation") + | L("implementation_name") + | L("python_full_version") + | L("platform_release") + | L("platform_version") + | L("platform_machine") + | L("platform_system") + | L("python_version") + | L("sys_platform") + | L("os_name") + | L("os.name") # PEP-345 + | L("sys.platform") # PEP-345 + | L("platform.version") # PEP-345 + | L("platform.machine") # PEP-345 + | L("platform.python_implementation") # PEP-345 + | L("python_implementation") # undocumented setuptools legacy + | L("extra") # PEP-508 +) +ALIASES = { + "os.name": "os_name", + "sys.platform": "sys_platform", + "platform.version": "platform_version", + "platform.machine": "platform_machine", + "platform.python_implementation": "platform_python_implementation", + "python_implementation": "platform_python_implementation", +} +VARIABLE.setParseAction(lambda s, l, t: Variable(ALIASES.get(t[0], t[0]))) + +VERSION_CMP = ( + L("===") | L("==") | L(">=") | L("<=") | L("!=") | L("~=") | L(">") | L("<") +) + +MARKER_OP = VERSION_CMP | L("not in") | L("in") +MARKER_OP.setParseAction(lambda s, l, t: Op(t[0])) + +MARKER_VALUE = QuotedString("'") | QuotedString('"') +MARKER_VALUE.setParseAction(lambda s, l, t: Value(t[0])) + +BOOLOP = L("and") | L("or") + +MARKER_VAR = VARIABLE | MARKER_VALUE + +MARKER_ITEM = Group(MARKER_VAR + MARKER_OP + MARKER_VAR) +MARKER_ITEM.setParseAction(lambda s, l, t: tuple(t[0])) + +LPAREN = L("(").suppress() +RPAREN = L(")").suppress() + +MARKER_EXPR = Forward() +MARKER_ATOM = MARKER_ITEM | Group(LPAREN + MARKER_EXPR + RPAREN) +MARKER_EXPR << MARKER_ATOM + ZeroOrMore(BOOLOP + MARKER_EXPR) + +MARKER = stringStart + MARKER_EXPR + stringEnd + + +def _coerce_parse_result(results: Union[ParseResults, List[Any]]) -> List[Any]: + if isinstance(results, ParseResults): + return [_coerce_parse_result(i) for i in results] + else: + return results + + +def _format_marker( + marker: Union[List[str], Tuple[Node, ...], str], first: Optional[bool] = True +) -> str: + + assert isinstance(marker, (list, tuple, str)) + + # Sometimes we have a structure like [[...]] which is a single item list + # where the single item is itself it's own list. In that case we want skip + # the rest of this function so that we don't get extraneous () on the + # outside. + if ( + isinstance(marker, list) + and len(marker) == 1 + and isinstance(marker[0], (list, tuple)) + ): + return _format_marker(marker[0]) + + if isinstance(marker, list): + inner = (_format_marker(m, first=False) for m in marker) + if first: + return " ".join(inner) + else: + return "(" + " ".join(inner) + ")" + elif isinstance(marker, tuple): + return " ".join([m.serialize() for m in marker]) + else: + return marker + + +_operators: Dict[str, Operator] = { + "in": lambda lhs, rhs: lhs in rhs, + "not in": lambda lhs, rhs: lhs not in rhs, + "<": operator.lt, + "<=": operator.le, + "==": operator.eq, + "!=": operator.ne, + ">=": operator.ge, + ">": operator.gt, +} + + +def _eval_op(lhs: str, op: Op, rhs: str) -> bool: + try: + spec = Specifier("".join([op.serialize(), rhs])) + except InvalidSpecifier: + pass + else: + return spec.contains(lhs) + + oper: Optional[Operator] = _operators.get(op.serialize()) + if oper is None: + raise UndefinedComparison(f"Undefined {op!r} on {lhs!r} and {rhs!r}.") + + return oper(lhs, rhs) + + +class Undefined: + pass + + +_undefined = Undefined() + + +def _get_env(environment: Dict[str, str], name: str) -> str: + value: Union[str, Undefined] = environment.get(name, _undefined) + + if isinstance(value, Undefined): + raise UndefinedEnvironmentName( + f"{name!r} does not exist in evaluation environment." + ) + + return value + + +def _evaluate_markers(markers: List[Any], environment: Dict[str, str]) -> bool: + groups: List[List[bool]] = [[]] + + for marker in markers: + assert isinstance(marker, (list, tuple, str)) + + if isinstance(marker, list): + groups[-1].append(_evaluate_markers(marker, environment)) + elif isinstance(marker, tuple): + lhs, op, rhs = marker + + if isinstance(lhs, Variable): + lhs_value = _get_env(environment, lhs.value) + rhs_value = rhs.value + else: + lhs_value = lhs.value + rhs_value = _get_env(environment, rhs.value) + + groups[-1].append(_eval_op(lhs_value, op, rhs_value)) + else: + assert marker in ["and", "or"] + if marker == "or": + groups.append([]) + + return any(all(item) for item in groups) + + +def format_full_version(info: "sys._version_info") -> str: + version = "{0.major}.{0.minor}.{0.micro}".format(info) + kind = info.releaselevel + if kind != "final": + version += kind[0] + str(info.serial) + return version + + +def default_environment() -> Dict[str, str]: + iver = format_full_version(sys.implementation.version) + implementation_name = sys.implementation.name + return { + "implementation_name": implementation_name, + "implementation_version": iver, + "os_name": os.name, + "platform_machine": platform.machine(), + "platform_release": platform.release(), + "platform_system": platform.system(), + "platform_version": platform.version(), + "python_full_version": platform.python_version(), + "platform_python_implementation": platform.python_implementation(), + "python_version": ".".join(platform.python_version_tuple()[:2]), + "sys_platform": sys.platform, + } + + +class Marker: + def __init__(self, marker: str) -> None: + try: + self._markers = _coerce_parse_result(MARKER.parseString(marker)) + except ParseException as e: + raise InvalidMarker( + f"Invalid marker: {marker!r}, parse error at " + f"{marker[e.loc : e.loc + 8]!r}" + ) + + def __str__(self) -> str: + return _format_marker(self._markers) + + def __repr__(self) -> str: + return f"" + + def evaluate(self, environment: Optional[Dict[str, str]] = None) -> bool: + """Evaluate a marker. + + Return the boolean from evaluating the given marker against the + environment. environment is an optional argument to override all or + part of the determined environment. + + The environment is determined from the current Python process. + """ + current_environment = default_environment() + if environment is not None: + current_environment.update(environment) + + return _evaluate_markers(self._markers, current_environment) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py new file mode 100644 index 00000000..1eab7dd6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py @@ -0,0 +1,146 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import re +import string +import urllib.parse +from typing import List, Optional as TOptional, Set + +from pip._vendor.pyparsing import ( # noqa + Combine, + Literal as L, + Optional, + ParseException, + Regex, + Word, + ZeroOrMore, + originalTextFor, + stringEnd, + stringStart, +) + +from .markers import MARKER_EXPR, Marker +from .specifiers import LegacySpecifier, Specifier, SpecifierSet + + +class InvalidRequirement(ValueError): + """ + An invalid requirement was found, users should refer to PEP 508. + """ + + +ALPHANUM = Word(string.ascii_letters + string.digits) + +LBRACKET = L("[").suppress() +RBRACKET = L("]").suppress() +LPAREN = L("(").suppress() +RPAREN = L(")").suppress() +COMMA = L(",").suppress() +SEMICOLON = L(";").suppress() +AT = L("@").suppress() + +PUNCTUATION = Word("-_.") +IDENTIFIER_END = ALPHANUM | (ZeroOrMore(PUNCTUATION) + ALPHANUM) +IDENTIFIER = Combine(ALPHANUM + ZeroOrMore(IDENTIFIER_END)) + +NAME = IDENTIFIER("name") +EXTRA = IDENTIFIER + +URI = Regex(r"[^ ]+")("url") +URL = AT + URI + +EXTRAS_LIST = EXTRA + ZeroOrMore(COMMA + EXTRA) +EXTRAS = (LBRACKET + Optional(EXTRAS_LIST) + RBRACKET)("extras") + +VERSION_PEP440 = Regex(Specifier._regex_str, re.VERBOSE | re.IGNORECASE) +VERSION_LEGACY = Regex(LegacySpecifier._regex_str, re.VERBOSE | re.IGNORECASE) + +VERSION_ONE = VERSION_PEP440 ^ VERSION_LEGACY +VERSION_MANY = Combine( + VERSION_ONE + ZeroOrMore(COMMA + VERSION_ONE), joinString=",", adjacent=False +)("_raw_spec") +_VERSION_SPEC = Optional((LPAREN + VERSION_MANY + RPAREN) | VERSION_MANY) +_VERSION_SPEC.setParseAction(lambda s, l, t: t._raw_spec or "") + +VERSION_SPEC = originalTextFor(_VERSION_SPEC)("specifier") +VERSION_SPEC.setParseAction(lambda s, l, t: t[1]) + +MARKER_EXPR = originalTextFor(MARKER_EXPR())("marker") +MARKER_EXPR.setParseAction( + lambda s, l, t: Marker(s[t._original_start : t._original_end]) +) +MARKER_SEPARATOR = SEMICOLON +MARKER = MARKER_SEPARATOR + MARKER_EXPR + +VERSION_AND_MARKER = VERSION_SPEC + Optional(MARKER) +URL_AND_MARKER = URL + Optional(MARKER) + +NAMED_REQUIREMENT = NAME + Optional(EXTRAS) + (URL_AND_MARKER | VERSION_AND_MARKER) + +REQUIREMENT = stringStart + NAMED_REQUIREMENT + stringEnd +# pyparsing isn't thread safe during initialization, so we do it eagerly, see +# issue #104 +REQUIREMENT.parseString("x[]") + + +class Requirement: + """Parse a requirement. + + Parse a given requirement string into its parts, such as name, specifier, + URL, and extras. Raises InvalidRequirement on a badly-formed requirement + string. + """ + + # TODO: Can we test whether something is contained within a requirement? + # If so how do we do that? Do we need to test against the _name_ of + # the thing as well as the version? What about the markers? + # TODO: Can we normalize the name and extra name? + + def __init__(self, requirement_string: str) -> None: + try: + req = REQUIREMENT.parseString(requirement_string) + except ParseException as e: + raise InvalidRequirement( + f'Parse error at "{ requirement_string[e.loc : e.loc + 8]!r}": {e.msg}' + ) + + self.name: str = req.name + if req.url: + parsed_url = urllib.parse.urlparse(req.url) + if parsed_url.scheme == "file": + if urllib.parse.urlunparse(parsed_url) != req.url: + raise InvalidRequirement("Invalid URL given") + elif not (parsed_url.scheme and parsed_url.netloc) or ( + not parsed_url.scheme and not parsed_url.netloc + ): + raise InvalidRequirement(f"Invalid URL: {req.url}") + self.url: TOptional[str] = req.url + else: + self.url = None + self.extras: Set[str] = set(req.extras.asList() if req.extras else []) + self.specifier: SpecifierSet = SpecifierSet(req.specifier) + self.marker: TOptional[Marker] = req.marker if req.marker else None + + def __str__(self) -> str: + parts: List[str] = [self.name] + + if self.extras: + formatted_extras = ",".join(sorted(self.extras)) + parts.append(f"[{formatted_extras}]") + + if self.specifier: + parts.append(str(self.specifier)) + + if self.url: + parts.append(f"@ {self.url}") + if self.marker: + parts.append(" ") + + if self.marker: + parts.append(f"; {self.marker}") + + return "".join(parts) + + def __repr__(self) -> str: + return f"" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py new file mode 100644 index 00000000..0e218a6f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py @@ -0,0 +1,802 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import abc +import functools +import itertools +import re +import warnings +from typing import ( + Callable, + Dict, + Iterable, + Iterator, + List, + Optional, + Pattern, + Set, + Tuple, + TypeVar, + Union, +) + +from .utils import canonicalize_version +from .version import LegacyVersion, Version, parse + +ParsedVersion = Union[Version, LegacyVersion] +UnparsedVersion = Union[Version, LegacyVersion, str] +VersionTypeVar = TypeVar("VersionTypeVar", bound=UnparsedVersion) +CallableOperator = Callable[[ParsedVersion, str], bool] + + +class InvalidSpecifier(ValueError): + """ + An invalid specifier was found, users should refer to PEP 440. + """ + + +class BaseSpecifier(metaclass=abc.ABCMeta): + @abc.abstractmethod + def __str__(self) -> str: + """ + Returns the str representation of this Specifier like object. This + should be representative of the Specifier itself. + """ + + @abc.abstractmethod + def __hash__(self) -> int: + """ + Returns a hash value for this Specifier like object. + """ + + @abc.abstractmethod + def __eq__(self, other: object) -> bool: + """ + Returns a boolean representing whether or not the two Specifier like + objects are equal. + """ + + @abc.abstractproperty + def prereleases(self) -> Optional[bool]: + """ + Returns whether or not pre-releases as a whole are allowed by this + specifier. + """ + + @prereleases.setter + def prereleases(self, value: bool) -> None: + """ + Sets whether or not pre-releases as a whole are allowed by this + specifier. + """ + + @abc.abstractmethod + def contains(self, item: str, prereleases: Optional[bool] = None) -> bool: + """ + Determines if the given item is contained within this specifier. + """ + + @abc.abstractmethod + def filter( + self, iterable: Iterable[VersionTypeVar], prereleases: Optional[bool] = None + ) -> Iterable[VersionTypeVar]: + """ + Takes an iterable of items and filters them so that only items which + are contained within this specifier are allowed in it. + """ + + +class _IndividualSpecifier(BaseSpecifier): + + _operators: Dict[str, str] = {} + _regex: Pattern[str] + + def __init__(self, spec: str = "", prereleases: Optional[bool] = None) -> None: + match = self._regex.search(spec) + if not match: + raise InvalidSpecifier(f"Invalid specifier: '{spec}'") + + self._spec: Tuple[str, str] = ( + match.group("operator").strip(), + match.group("version").strip(), + ) + + # Store whether or not this Specifier should accept prereleases + self._prereleases = prereleases + + def __repr__(self) -> str: + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"<{self.__class__.__name__}({str(self)!r}{pre})>" + + def __str__(self) -> str: + return "{}{}".format(*self._spec) + + @property + def _canonical_spec(self) -> Tuple[str, str]: + return self._spec[0], canonicalize_version(self._spec[1]) + + def __hash__(self) -> int: + return hash(self._canonical_spec) + + def __eq__(self, other: object) -> bool: + if isinstance(other, str): + try: + other = self.__class__(str(other)) + except InvalidSpecifier: + return NotImplemented + elif not isinstance(other, self.__class__): + return NotImplemented + + return self._canonical_spec == other._canonical_spec + + def _get_operator(self, op: str) -> CallableOperator: + operator_callable: CallableOperator = getattr( + self, f"_compare_{self._operators[op]}" + ) + return operator_callable + + def _coerce_version(self, version: UnparsedVersion) -> ParsedVersion: + if not isinstance(version, (LegacyVersion, Version)): + version = parse(version) + return version + + @property + def operator(self) -> str: + return self._spec[0] + + @property + def version(self) -> str: + return self._spec[1] + + @property + def prereleases(self) -> Optional[bool]: + return self._prereleases + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + def __contains__(self, item: str) -> bool: + return self.contains(item) + + def contains( + self, item: UnparsedVersion, prereleases: Optional[bool] = None + ) -> bool: + + # Determine if prereleases are to be allowed or not. + if prereleases is None: + prereleases = self.prereleases + + # Normalize item to a Version or LegacyVersion, this allows us to have + # a shortcut for ``"2.0" in Specifier(">=2") + normalized_item = self._coerce_version(item) + + # Determine if we should be supporting prereleases in this specifier + # or not, if we do not support prereleases than we can short circuit + # logic if this version is a prereleases. + if normalized_item.is_prerelease and not prereleases: + return False + + # Actually do the comparison to determine if this item is contained + # within this Specifier or not. + operator_callable: CallableOperator = self._get_operator(self.operator) + return operator_callable(normalized_item, self.version) + + def filter( + self, iterable: Iterable[VersionTypeVar], prereleases: Optional[bool] = None + ) -> Iterable[VersionTypeVar]: + + yielded = False + found_prereleases = [] + + kw = {"prereleases": prereleases if prereleases is not None else True} + + # Attempt to iterate over all the values in the iterable and if any of + # them match, yield them. + for version in iterable: + parsed_version = self._coerce_version(version) + + if self.contains(parsed_version, **kw): + # If our version is a prerelease, and we were not set to allow + # prereleases, then we'll store it for later in case nothing + # else matches this specifier. + if parsed_version.is_prerelease and not ( + prereleases or self.prereleases + ): + found_prereleases.append(version) + # Either this is not a prerelease, or we should have been + # accepting prereleases from the beginning. + else: + yielded = True + yield version + + # Now that we've iterated over everything, determine if we've yielded + # any values, and if we have not and we have any prereleases stored up + # then we will go ahead and yield the prereleases. + if not yielded and found_prereleases: + for version in found_prereleases: + yield version + + +class LegacySpecifier(_IndividualSpecifier): + + _regex_str = r""" + (?P(==|!=|<=|>=|<|>)) + \s* + (?P + [^,;\s)]* # Since this is a "legacy" specifier, and the version + # string can be just about anything, we match everything + # except for whitespace, a semi-colon for marker support, + # a closing paren since versions can be enclosed in + # them, and a comma since it's a version separator. + ) + """ + + _regex = re.compile(r"^\s*" + _regex_str + r"\s*$", re.VERBOSE | re.IGNORECASE) + + _operators = { + "==": "equal", + "!=": "not_equal", + "<=": "less_than_equal", + ">=": "greater_than_equal", + "<": "less_than", + ">": "greater_than", + } + + def __init__(self, spec: str = "", prereleases: Optional[bool] = None) -> None: + super().__init__(spec, prereleases) + + warnings.warn( + "Creating a LegacyVersion has been deprecated and will be " + "removed in the next major release", + DeprecationWarning, + ) + + def _coerce_version(self, version: UnparsedVersion) -> LegacyVersion: + if not isinstance(version, LegacyVersion): + version = LegacyVersion(str(version)) + return version + + def _compare_equal(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective == self._coerce_version(spec) + + def _compare_not_equal(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective != self._coerce_version(spec) + + def _compare_less_than_equal(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective <= self._coerce_version(spec) + + def _compare_greater_than_equal( + self, prospective: LegacyVersion, spec: str + ) -> bool: + return prospective >= self._coerce_version(spec) + + def _compare_less_than(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective < self._coerce_version(spec) + + def _compare_greater_than(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective > self._coerce_version(spec) + + +def _require_version_compare( + fn: Callable[["Specifier", ParsedVersion, str], bool] +) -> Callable[["Specifier", ParsedVersion, str], bool]: + @functools.wraps(fn) + def wrapped(self: "Specifier", prospective: ParsedVersion, spec: str) -> bool: + if not isinstance(prospective, Version): + return False + return fn(self, prospective, spec) + + return wrapped + + +class Specifier(_IndividualSpecifier): + + _regex_str = r""" + (?P(~=|==|!=|<=|>=|<|>|===)) + (?P + (?: + # The identity operators allow for an escape hatch that will + # do an exact string match of the version you wish to install. + # This will not be parsed by PEP 440 and we cannot determine + # any semantic meaning from it. This operator is discouraged + # but included entirely as an escape hatch. + (?<====) # Only match for the identity operator + \s* + [^\s]* # We just match everything, except for whitespace + # since we are only testing for strict identity. + ) + | + (?: + # The (non)equality operators allow for wild card and local + # versions to be specified so we have to define these two + # operators separately to enable that. + (?<===|!=) # Only match for equals and not equals + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)* # release + (?: # pre release + [-_\.]? + (a|b|c|rc|alpha|beta|pre|preview) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + + # You cannot use a wild card and a dev or local version + # together so group them with a | and make them optional. + (?: + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + (?:\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*)? # local + | + \.\* # Wild card syntax of .* + )? + ) + | + (?: + # The compatible operator requires at least two digits in the + # release segment. + (?<=~=) # Only match for the compatible operator + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)+ # release (We have a + instead of a *) + (?: # pre release + [-_\.]? + (a|b|c|rc|alpha|beta|pre|preview) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + ) + | + (?: + # All other operators only allow a sub set of what the + # (non)equality operators do. Specifically they do not allow + # local versions to be specified nor do they allow the prefix + # matching wild cards. + (?=": "greater_than_equal", + "<": "less_than", + ">": "greater_than", + "===": "arbitrary", + } + + @_require_version_compare + def _compare_compatible(self, prospective: ParsedVersion, spec: str) -> bool: + + # Compatible releases have an equivalent combination of >= and ==. That + # is that ~=2.2 is equivalent to >=2.2,==2.*. This allows us to + # implement this in terms of the other specifiers instead of + # implementing it ourselves. The only thing we need to do is construct + # the other specifiers. + + # We want everything but the last item in the version, but we want to + # ignore suffix segments. + prefix = ".".join( + list(itertools.takewhile(_is_not_suffix, _version_split(spec)))[:-1] + ) + + # Add the prefix notation to the end of our string + prefix += ".*" + + return self._get_operator(">=")(prospective, spec) and self._get_operator("==")( + prospective, prefix + ) + + @_require_version_compare + def _compare_equal(self, prospective: ParsedVersion, spec: str) -> bool: + + # We need special logic to handle prefix matching + if spec.endswith(".*"): + # In the case of prefix matching we want to ignore local segment. + prospective = Version(prospective.public) + # Split the spec out by dots, and pretend that there is an implicit + # dot in between a release segment and a pre-release segment. + split_spec = _version_split(spec[:-2]) # Remove the trailing .* + + # Split the prospective version out by dots, and pretend that there + # is an implicit dot in between a release segment and a pre-release + # segment. + split_prospective = _version_split(str(prospective)) + + # Shorten the prospective version to be the same length as the spec + # so that we can determine if the specifier is a prefix of the + # prospective version or not. + shortened_prospective = split_prospective[: len(split_spec)] + + # Pad out our two sides with zeros so that they both equal the same + # length. + padded_spec, padded_prospective = _pad_version( + split_spec, shortened_prospective + ) + + return padded_prospective == padded_spec + else: + # Convert our spec string into a Version + spec_version = Version(spec) + + # If the specifier does not have a local segment, then we want to + # act as if the prospective version also does not have a local + # segment. + if not spec_version.local: + prospective = Version(prospective.public) + + return prospective == spec_version + + @_require_version_compare + def _compare_not_equal(self, prospective: ParsedVersion, spec: str) -> bool: + return not self._compare_equal(prospective, spec) + + @_require_version_compare + def _compare_less_than_equal(self, prospective: ParsedVersion, spec: str) -> bool: + + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) <= Version(spec) + + @_require_version_compare + def _compare_greater_than_equal( + self, prospective: ParsedVersion, spec: str + ) -> bool: + + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) >= Version(spec) + + @_require_version_compare + def _compare_less_than(self, prospective: ParsedVersion, spec_str: str) -> bool: + + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is less than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective < spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a pre-release version, that we do not accept pre-release + # versions for the version mentioned in the specifier (e.g. <3.1 should + # not match 3.1.dev0, but should match 3.0.dev0). + if not spec.is_prerelease and prospective.is_prerelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # less than the spec version *and* it's not a pre-release of the same + # version in the spec. + return True + + @_require_version_compare + def _compare_greater_than(self, prospective: ParsedVersion, spec_str: str) -> bool: + + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is greater than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective > spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a post-release version, that we do not accept + # post-release versions for the version mentioned in the specifier + # (e.g. >3.1 should not match 3.0.post0, but should match 3.2.post0). + if not spec.is_postrelease and prospective.is_postrelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # Ensure that we do not allow a local version of the version mentioned + # in the specifier, which is technically greater than, to match. + if prospective.local is not None: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # greater than the spec version *and* it's not a pre-release of the + # same version in the spec. + return True + + def _compare_arbitrary(self, prospective: Version, spec: str) -> bool: + return str(prospective).lower() == str(spec).lower() + + @property + def prereleases(self) -> bool: + + # If there is an explicit prereleases set for this, then we'll just + # blindly use that. + if self._prereleases is not None: + return self._prereleases + + # Look at all of our specifiers and determine if they are inclusive + # operators, and if they are if they are including an explicit + # prerelease. + operator, version = self._spec + if operator in ["==", ">=", "<=", "~=", "==="]: + # The == specifier can include a trailing .*, if it does we + # want to remove before parsing. + if operator == "==" and version.endswith(".*"): + version = version[:-2] + + # Parse the version, and if it is a pre-release than this + # specifier allows pre-releases. + if parse(version).is_prerelease: + return True + + return False + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + +_prefix_regex = re.compile(r"^([0-9]+)((?:a|b|c|rc)[0-9]+)$") + + +def _version_split(version: str) -> List[str]: + result: List[str] = [] + for item in version.split("."): + match = _prefix_regex.search(item) + if match: + result.extend(match.groups()) + else: + result.append(item) + return result + + +def _is_not_suffix(segment: str) -> bool: + return not any( + segment.startswith(prefix) for prefix in ("dev", "a", "b", "rc", "post") + ) + + +def _pad_version(left: List[str], right: List[str]) -> Tuple[List[str], List[str]]: + left_split, right_split = [], [] + + # Get the release segment of our versions + left_split.append(list(itertools.takewhile(lambda x: x.isdigit(), left))) + right_split.append(list(itertools.takewhile(lambda x: x.isdigit(), right))) + + # Get the rest of our versions + left_split.append(left[len(left_split[0]) :]) + right_split.append(right[len(right_split[0]) :]) + + # Insert our padding + left_split.insert(1, ["0"] * max(0, len(right_split[0]) - len(left_split[0]))) + right_split.insert(1, ["0"] * max(0, len(left_split[0]) - len(right_split[0]))) + + return (list(itertools.chain(*left_split)), list(itertools.chain(*right_split))) + + +class SpecifierSet(BaseSpecifier): + def __init__( + self, specifiers: str = "", prereleases: Optional[bool] = None + ) -> None: + + # Split on , to break each individual specifier into it's own item, and + # strip each item to remove leading/trailing whitespace. + split_specifiers = [s.strip() for s in specifiers.split(",") if s.strip()] + + # Parsed each individual specifier, attempting first to make it a + # Specifier and falling back to a LegacySpecifier. + parsed: Set[_IndividualSpecifier] = set() + for specifier in split_specifiers: + try: + parsed.add(Specifier(specifier)) + except InvalidSpecifier: + parsed.add(LegacySpecifier(specifier)) + + # Turn our parsed specifiers into a frozen set and save them for later. + self._specs = frozenset(parsed) + + # Store our prereleases value so we can use it later to determine if + # we accept prereleases or not. + self._prereleases = prereleases + + def __repr__(self) -> str: + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"" + + def __str__(self) -> str: + return ",".join(sorted(str(s) for s in self._specs)) + + def __hash__(self) -> int: + return hash(self._specs) + + def __and__(self, other: Union["SpecifierSet", str]) -> "SpecifierSet": + if isinstance(other, str): + other = SpecifierSet(other) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + specifier = SpecifierSet() + specifier._specs = frozenset(self._specs | other._specs) + + if self._prereleases is None and other._prereleases is not None: + specifier._prereleases = other._prereleases + elif self._prereleases is not None and other._prereleases is None: + specifier._prereleases = self._prereleases + elif self._prereleases == other._prereleases: + specifier._prereleases = self._prereleases + else: + raise ValueError( + "Cannot combine SpecifierSets with True and False prerelease " + "overrides." + ) + + return specifier + + def __eq__(self, other: object) -> bool: + if isinstance(other, (str, _IndividualSpecifier)): + other = SpecifierSet(str(other)) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + return self._specs == other._specs + + def __len__(self) -> int: + return len(self._specs) + + def __iter__(self) -> Iterator[_IndividualSpecifier]: + return iter(self._specs) + + @property + def prereleases(self) -> Optional[bool]: + + # If we have been given an explicit prerelease modifier, then we'll + # pass that through here. + if self._prereleases is not None: + return self._prereleases + + # If we don't have any specifiers, and we don't have a forced value, + # then we'll just return None since we don't know if this should have + # pre-releases or not. + if not self._specs: + return None + + # Otherwise we'll see if any of the given specifiers accept + # prereleases, if any of them do we'll return True, otherwise False. + return any(s.prereleases for s in self._specs) + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + def __contains__(self, item: UnparsedVersion) -> bool: + return self.contains(item) + + def contains( + self, item: UnparsedVersion, prereleases: Optional[bool] = None + ) -> bool: + + # Ensure that our item is a Version or LegacyVersion instance. + if not isinstance(item, (LegacyVersion, Version)): + item = parse(item) + + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # We can determine if we're going to allow pre-releases by looking to + # see if any of the underlying items supports them. If none of them do + # and this item is a pre-release then we do not allow it and we can + # short circuit that here. + # Note: This means that 1.0.dev1 would not be contained in something + # like >=1.0.devabc however it would be in >=1.0.debabc,>0.0.dev0 + if not prereleases and item.is_prerelease: + return False + + # We simply dispatch to the underlying specs here to make sure that the + # given version is contained within all of them. + # Note: This use of all() here means that an empty set of specifiers + # will always return True, this is an explicit design decision. + return all(s.contains(item, prereleases=prereleases) for s in self._specs) + + def filter( + self, iterable: Iterable[VersionTypeVar], prereleases: Optional[bool] = None + ) -> Iterable[VersionTypeVar]: + + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # If we have any specifiers, then we want to wrap our iterable in the + # filter method for each one, this will act as a logical AND amongst + # each specifier. + if self._specs: + for spec in self._specs: + iterable = spec.filter(iterable, prereleases=bool(prereleases)) + return iterable + # If we do not have any specifiers, then we need to have a rough filter + # which will filter out any pre-releases, unless there are no final + # releases, and which will filter out LegacyVersion in general. + else: + filtered: List[VersionTypeVar] = [] + found_prereleases: List[VersionTypeVar] = [] + + item: UnparsedVersion + parsed_version: Union[Version, LegacyVersion] + + for item in iterable: + # Ensure that we some kind of Version class for this item. + if not isinstance(item, (LegacyVersion, Version)): + parsed_version = parse(item) + else: + parsed_version = item + + # Filter out any item which is parsed as a LegacyVersion + if isinstance(parsed_version, LegacyVersion): + continue + + # Store any item which is a pre-release for later unless we've + # already found a final version or we are accepting prereleases + if parsed_version.is_prerelease and not prereleases: + if not filtered: + found_prereleases.append(item) + else: + filtered.append(item) + + # If we've found no items except for pre-releases, then we'll go + # ahead and use the pre-releases + if not filtered and found_prereleases and prereleases is None: + return found_prereleases + + return filtered diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py new file mode 100644 index 00000000..9a3d25a7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py @@ -0,0 +1,487 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import logging +import platform +import sys +import sysconfig +from importlib.machinery import EXTENSION_SUFFIXES +from typing import ( + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Optional, + Sequence, + Tuple, + Union, + cast, +) + +from . import _manylinux, _musllinux + +logger = logging.getLogger(__name__) + +PythonVersion = Sequence[int] +MacVersion = Tuple[int, int] + +INTERPRETER_SHORT_NAMES: Dict[str, str] = { + "python": "py", # Generic. + "cpython": "cp", + "pypy": "pp", + "ironpython": "ip", + "jython": "jy", +} + + +_32_BIT_INTERPRETER = sys.maxsize <= 2 ** 32 + + +class Tag: + """ + A representation of the tag triple for a wheel. + + Instances are considered immutable and thus are hashable. Equality checking + is also supported. + """ + + __slots__ = ["_interpreter", "_abi", "_platform", "_hash"] + + def __init__(self, interpreter: str, abi: str, platform: str) -> None: + self._interpreter = interpreter.lower() + self._abi = abi.lower() + self._platform = platform.lower() + # The __hash__ of every single element in a Set[Tag] will be evaluated each time + # that a set calls its `.disjoint()` method, which may be called hundreds of + # times when scanning a page of links for packages with tags matching that + # Set[Tag]. Pre-computing the value here produces significant speedups for + # downstream consumers. + self._hash = hash((self._interpreter, self._abi, self._platform)) + + @property + def interpreter(self) -> str: + return self._interpreter + + @property + def abi(self) -> str: + return self._abi + + @property + def platform(self) -> str: + return self._platform + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Tag): + return NotImplemented + + return ( + (self._hash == other._hash) # Short-circuit ASAP for perf reasons. + and (self._platform == other._platform) + and (self._abi == other._abi) + and (self._interpreter == other._interpreter) + ) + + def __hash__(self) -> int: + return self._hash + + def __str__(self) -> str: + return f"{self._interpreter}-{self._abi}-{self._platform}" + + def __repr__(self) -> str: + return f"<{self} @ {id(self)}>" + + +def parse_tag(tag: str) -> FrozenSet[Tag]: + """ + Parses the provided tag (e.g. `py3-none-any`) into a frozenset of Tag instances. + + Returning a set is required due to the possibility that the tag is a + compressed tag set. + """ + tags = set() + interpreters, abis, platforms = tag.split("-") + for interpreter in interpreters.split("."): + for abi in abis.split("."): + for platform_ in platforms.split("."): + tags.add(Tag(interpreter, abi, platform_)) + return frozenset(tags) + + +def _get_config_var(name: str, warn: bool = False) -> Union[int, str, None]: + value = sysconfig.get_config_var(name) + if value is None and warn: + logger.debug( + "Config variable '%s' is unset, Python ABI tag may be incorrect", name + ) + return value + + +def _normalize_string(string: str) -> str: + return string.replace(".", "_").replace("-", "_") + + +def _abi3_applies(python_version: PythonVersion) -> bool: + """ + Determine if the Python version supports abi3. + + PEP 384 was first implemented in Python 3.2. + """ + return len(python_version) > 1 and tuple(python_version) >= (3, 2) + + +def _cpython_abis(py_version: PythonVersion, warn: bool = False) -> List[str]: + py_version = tuple(py_version) # To allow for version comparison. + abis = [] + version = _version_nodot(py_version[:2]) + debug = pymalloc = ucs4 = "" + with_debug = _get_config_var("Py_DEBUG", warn) + has_refcount = hasattr(sys, "gettotalrefcount") + # Windows doesn't set Py_DEBUG, so checking for support of debug-compiled + # extension modules is the best option. + # https://github.com/pypa/pip/issues/3383#issuecomment-173267692 + has_ext = "_d.pyd" in EXTENSION_SUFFIXES + if with_debug or (with_debug is None and (has_refcount or has_ext)): + debug = "d" + if py_version < (3, 8): + with_pymalloc = _get_config_var("WITH_PYMALLOC", warn) + if with_pymalloc or with_pymalloc is None: + pymalloc = "m" + if py_version < (3, 3): + unicode_size = _get_config_var("Py_UNICODE_SIZE", warn) + if unicode_size == 4 or ( + unicode_size is None and sys.maxunicode == 0x10FFFF + ): + ucs4 = "u" + elif debug: + # Debug builds can also load "normal" extension modules. + # We can also assume no UCS-4 or pymalloc requirement. + abis.append(f"cp{version}") + abis.insert( + 0, + "cp{version}{debug}{pymalloc}{ucs4}".format( + version=version, debug=debug, pymalloc=pymalloc, ucs4=ucs4 + ), + ) + return abis + + +def cpython_tags( + python_version: Optional[PythonVersion] = None, + abis: Optional[Iterable[str]] = None, + platforms: Optional[Iterable[str]] = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a CPython interpreter. + + The tags consist of: + - cp-- + - cp-abi3- + - cp-none- + - cp-abi3- # Older Python versions down to 3.2. + + If python_version only specifies a major version then user-provided ABIs and + the 'none' ABItag will be used. + + If 'abi3' or 'none' are specified in 'abis' then they will be yielded at + their normal position and not at the beginning. + """ + if not python_version: + python_version = sys.version_info[:2] + + interpreter = f"cp{_version_nodot(python_version[:2])}" + + if abis is None: + if len(python_version) > 1: + abis = _cpython_abis(python_version, warn) + else: + abis = [] + abis = list(abis) + # 'abi3' and 'none' are explicitly handled later. + for explicit_abi in ("abi3", "none"): + try: + abis.remove(explicit_abi) + except ValueError: + pass + + platforms = list(platforms or platform_tags()) + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + if _abi3_applies(python_version): + yield from (Tag(interpreter, "abi3", platform_) for platform_ in platforms) + yield from (Tag(interpreter, "none", platform_) for platform_ in platforms) + + if _abi3_applies(python_version): + for minor_version in range(python_version[1] - 1, 1, -1): + for platform_ in platforms: + interpreter = "cp{version}".format( + version=_version_nodot((python_version[0], minor_version)) + ) + yield Tag(interpreter, "abi3", platform_) + + +def _generic_abi() -> Iterator[str]: + abi = sysconfig.get_config_var("SOABI") + if abi: + yield _normalize_string(abi) + + +def generic_tags( + interpreter: Optional[str] = None, + abis: Optional[Iterable[str]] = None, + platforms: Optional[Iterable[str]] = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a generic interpreter. + + The tags consist of: + - -- + + The "none" ABI will be added if it was not explicitly provided. + """ + if not interpreter: + interp_name = interpreter_name() + interp_version = interpreter_version(warn=warn) + interpreter = "".join([interp_name, interp_version]) + if abis is None: + abis = _generic_abi() + platforms = list(platforms or platform_tags()) + abis = list(abis) + if "none" not in abis: + abis.append("none") + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + +def _py_interpreter_range(py_version: PythonVersion) -> Iterator[str]: + """ + Yields Python versions in descending order. + + After the latest version, the major-only version will be yielded, and then + all previous versions of that major version. + """ + if len(py_version) > 1: + yield f"py{_version_nodot(py_version[:2])}" + yield f"py{py_version[0]}" + if len(py_version) > 1: + for minor in range(py_version[1] - 1, -1, -1): + yield f"py{_version_nodot((py_version[0], minor))}" + + +def compatible_tags( + python_version: Optional[PythonVersion] = None, + interpreter: Optional[str] = None, + platforms: Optional[Iterable[str]] = None, +) -> Iterator[Tag]: + """ + Yields the sequence of tags that are compatible with a specific version of Python. + + The tags consist of: + - py*-none- + - -none-any # ... if `interpreter` is provided. + - py*-none-any + """ + if not python_version: + python_version = sys.version_info[:2] + platforms = list(platforms or platform_tags()) + for version in _py_interpreter_range(python_version): + for platform_ in platforms: + yield Tag(version, "none", platform_) + if interpreter: + yield Tag(interpreter, "none", "any") + for version in _py_interpreter_range(python_version): + yield Tag(version, "none", "any") + + +def _mac_arch(arch: str, is_32bit: bool = _32_BIT_INTERPRETER) -> str: + if not is_32bit: + return arch + + if arch.startswith("ppc"): + return "ppc" + + return "i386" + + +def _mac_binary_formats(version: MacVersion, cpu_arch: str) -> List[str]: + formats = [cpu_arch] + if cpu_arch == "x86_64": + if version < (10, 4): + return [] + formats.extend(["intel", "fat64", "fat32"]) + + elif cpu_arch == "i386": + if version < (10, 4): + return [] + formats.extend(["intel", "fat32", "fat"]) + + elif cpu_arch == "ppc64": + # TODO: Need to care about 32-bit PPC for ppc64 through 10.2? + if version > (10, 5) or version < (10, 4): + return [] + formats.append("fat64") + + elif cpu_arch == "ppc": + if version > (10, 6): + return [] + formats.extend(["fat32", "fat"]) + + if cpu_arch in {"arm64", "x86_64"}: + formats.append("universal2") + + if cpu_arch in {"x86_64", "i386", "ppc64", "ppc", "intel"}: + formats.append("universal") + + return formats + + +def mac_platforms( + version: Optional[MacVersion] = None, arch: Optional[str] = None +) -> Iterator[str]: + """ + Yields the platform tags for a macOS system. + + The `version` parameter is a two-item tuple specifying the macOS version to + generate platform tags for. The `arch` parameter is the CPU architecture to + generate platform tags for. Both parameters default to the appropriate value + for the current system. + """ + version_str, _, cpu_arch = platform.mac_ver() + if version is None: + version = cast("MacVersion", tuple(map(int, version_str.split(".")[:2]))) + else: + version = version + if arch is None: + arch = _mac_arch(cpu_arch) + else: + arch = arch + + if (10, 0) <= version and version < (11, 0): + # Prior to Mac OS 11, each yearly release of Mac OS bumped the + # "minor" version number. The major version was always 10. + for minor_version in range(version[1], -1, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=10, minor=minor_version, binary_format=binary_format + ) + + if version >= (11, 0): + # Starting with Mac OS 11, each yearly release bumps the major version + # number. The minor versions are now the midyear updates. + for major_version in range(version[0], 10, -1): + compat_version = major_version, 0 + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=major_version, minor=0, binary_format=binary_format + ) + + if version >= (11, 0): + # Mac OS 11 on x86_64 is compatible with binaries from previous releases. + # Arm64 support was introduced in 11.0, so no Arm binaries from previous + # releases exist. + # + # However, the "universal2" binary format can have a + # macOS version earlier than 11.0 when the x86_64 part of the binary supports + # that version of macOS. + if arch == "x86_64": + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + else: + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_format = "universal2" + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + + +def _linux_platforms(is_32bit: bool = _32_BIT_INTERPRETER) -> Iterator[str]: + linux = _normalize_string(sysconfig.get_platform()) + if is_32bit: + if linux == "linux_x86_64": + linux = "linux_i686" + elif linux == "linux_aarch64": + linux = "linux_armv7l" + _, arch = linux.split("_", 1) + yield from _manylinux.platform_tags(linux, arch) + yield from _musllinux.platform_tags(arch) + yield linux + + +def _generic_platforms() -> Iterator[str]: + yield _normalize_string(sysconfig.get_platform()) + + +def platform_tags() -> Iterator[str]: + """ + Provides the platform tags for this installation. + """ + if platform.system() == "Darwin": + return mac_platforms() + elif platform.system() == "Linux": + return _linux_platforms() + else: + return _generic_platforms() + + +def interpreter_name() -> str: + """ + Returns the name of the running interpreter. + """ + name = sys.implementation.name + return INTERPRETER_SHORT_NAMES.get(name) or name + + +def interpreter_version(*, warn: bool = False) -> str: + """ + Returns the version of the running interpreter. + """ + version = _get_config_var("py_version_nodot", warn=warn) + if version: + version = str(version) + else: + version = _version_nodot(sys.version_info[:2]) + return version + + +def _version_nodot(version: PythonVersion) -> str: + return "".join(map(str, version)) + + +def sys_tags(*, warn: bool = False) -> Iterator[Tag]: + """ + Returns the sequence of tag triples for the running interpreter. + + The order of the sequence corresponds to priority order for the + interpreter, from most to least important. + """ + + interp_name = interpreter_name() + if interp_name == "cp": + yield from cpython_tags(warn=warn) + else: + yield from generic_tags() + + if interp_name == "pp": + yield from compatible_tags(interpreter="pp3") + else: + yield from compatible_tags() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py new file mode 100644 index 00000000..bab11b80 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py @@ -0,0 +1,136 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import re +from typing import FrozenSet, NewType, Tuple, Union, cast + +from .tags import Tag, parse_tag +from .version import InvalidVersion, Version + +BuildTag = Union[Tuple[()], Tuple[int, str]] +NormalizedName = NewType("NormalizedName", str) + + +class InvalidWheelFilename(ValueError): + """ + An invalid wheel filename was found, users should refer to PEP 427. + """ + + +class InvalidSdistFilename(ValueError): + """ + An invalid sdist filename was found, users should refer to the packaging user guide. + """ + + +_canonicalize_regex = re.compile(r"[-_.]+") +# PEP 427: The build number must start with a digit. +_build_tag_regex = re.compile(r"(\d+)(.*)") + + +def canonicalize_name(name: str) -> NormalizedName: + # This is taken from PEP 503. + value = _canonicalize_regex.sub("-", name).lower() + return cast(NormalizedName, value) + + +def canonicalize_version(version: Union[Version, str]) -> str: + """ + This is very similar to Version.__str__, but has one subtle difference + with the way it handles the release segment. + """ + if isinstance(version, str): + try: + parsed = Version(version) + except InvalidVersion: + # Legacy versions cannot be normalized + return version + else: + parsed = version + + parts = [] + + # Epoch + if parsed.epoch != 0: + parts.append(f"{parsed.epoch}!") + + # Release segment + # NB: This strips trailing '.0's to normalize + parts.append(re.sub(r"(\.0)+$", "", ".".join(str(x) for x in parsed.release))) + + # Pre-release + if parsed.pre is not None: + parts.append("".join(str(x) for x in parsed.pre)) + + # Post-release + if parsed.post is not None: + parts.append(f".post{parsed.post}") + + # Development release + if parsed.dev is not None: + parts.append(f".dev{parsed.dev}") + + # Local version segment + if parsed.local is not None: + parts.append(f"+{parsed.local}") + + return "".join(parts) + + +def parse_wheel_filename( + filename: str, +) -> Tuple[NormalizedName, Version, BuildTag, FrozenSet[Tag]]: + if not filename.endswith(".whl"): + raise InvalidWheelFilename( + f"Invalid wheel filename (extension must be '.whl'): {filename}" + ) + + filename = filename[:-4] + dashes = filename.count("-") + if dashes not in (4, 5): + raise InvalidWheelFilename( + f"Invalid wheel filename (wrong number of parts): {filename}" + ) + + parts = filename.split("-", dashes - 2) + name_part = parts[0] + # See PEP 427 for the rules on escaping the project name + if "__" in name_part or re.match(r"^[\w\d._]*$", name_part, re.UNICODE) is None: + raise InvalidWheelFilename(f"Invalid project name: {filename}") + name = canonicalize_name(name_part) + version = Version(parts[1]) + if dashes == 5: + build_part = parts[2] + build_match = _build_tag_regex.match(build_part) + if build_match is None: + raise InvalidWheelFilename( + f"Invalid build number: {build_part} in '{filename}'" + ) + build = cast(BuildTag, (int(build_match.group(1)), build_match.group(2))) + else: + build = () + tags = parse_tag(parts[-1]) + return (name, version, build, tags) + + +def parse_sdist_filename(filename: str) -> Tuple[NormalizedName, Version]: + if filename.endswith(".tar.gz"): + file_stem = filename[: -len(".tar.gz")] + elif filename.endswith(".zip"): + file_stem = filename[: -len(".zip")] + else: + raise InvalidSdistFilename( + f"Invalid sdist filename (extension must be '.tar.gz' or '.zip'):" + f" {filename}" + ) + + # We are requiring a PEP 440 version, which cannot contain dashes, + # so we split on the last dash. + name_part, sep, version_part = file_stem.rpartition("-") + if not sep: + raise InvalidSdistFilename(f"Invalid sdist filename: {filename}") + + name = canonicalize_name(name_part) + version = Version(version_part) + return (name, version) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py new file mode 100644 index 00000000..de9a09a4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py @@ -0,0 +1,504 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import collections +import itertools +import re +import warnings +from typing import Callable, Iterator, List, Optional, SupportsInt, Tuple, Union + +from ._structures import Infinity, InfinityType, NegativeInfinity, NegativeInfinityType + +__all__ = ["parse", "Version", "LegacyVersion", "InvalidVersion", "VERSION_PATTERN"] + +InfiniteTypes = Union[InfinityType, NegativeInfinityType] +PrePostDevType = Union[InfiniteTypes, Tuple[str, int]] +SubLocalType = Union[InfiniteTypes, int, str] +LocalType = Union[ + NegativeInfinityType, + Tuple[ + Union[ + SubLocalType, + Tuple[SubLocalType, str], + Tuple[NegativeInfinityType, SubLocalType], + ], + ..., + ], +] +CmpKey = Tuple[ + int, Tuple[int, ...], PrePostDevType, PrePostDevType, PrePostDevType, LocalType +] +LegacyCmpKey = Tuple[int, Tuple[str, ...]] +VersionComparisonMethod = Callable[ + [Union[CmpKey, LegacyCmpKey], Union[CmpKey, LegacyCmpKey]], bool +] + +_Version = collections.namedtuple( + "_Version", ["epoch", "release", "dev", "pre", "post", "local"] +) + + +def parse(version: str) -> Union["LegacyVersion", "Version"]: + """ + Parse the given version string and return either a :class:`Version` object + or a :class:`LegacyVersion` object depending on if the given version is + a valid PEP 440 version or a legacy version. + """ + try: + return Version(version) + except InvalidVersion: + return LegacyVersion(version) + + +class InvalidVersion(ValueError): + """ + An invalid version was found, users should refer to PEP 440. + """ + + +class _BaseVersion: + _key: Union[CmpKey, LegacyCmpKey] + + def __hash__(self) -> int: + return hash(self._key) + + # Please keep the duplicated `isinstance` check + # in the six comparisons hereunder + # unless you find a way to avoid adding overhead function calls. + def __lt__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key < other._key + + def __le__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key <= other._key + + def __eq__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key == other._key + + def __ge__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key >= other._key + + def __gt__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key > other._key + + def __ne__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key != other._key + + +class LegacyVersion(_BaseVersion): + def __init__(self, version: str) -> None: + self._version = str(version) + self._key = _legacy_cmpkey(self._version) + + warnings.warn( + "Creating a LegacyVersion has been deprecated and will be " + "removed in the next major release", + DeprecationWarning, + ) + + def __str__(self) -> str: + return self._version + + def __repr__(self) -> str: + return f"" + + @property + def public(self) -> str: + return self._version + + @property + def base_version(self) -> str: + return self._version + + @property + def epoch(self) -> int: + return -1 + + @property + def release(self) -> None: + return None + + @property + def pre(self) -> None: + return None + + @property + def post(self) -> None: + return None + + @property + def dev(self) -> None: + return None + + @property + def local(self) -> None: + return None + + @property + def is_prerelease(self) -> bool: + return False + + @property + def is_postrelease(self) -> bool: + return False + + @property + def is_devrelease(self) -> bool: + return False + + +_legacy_version_component_re = re.compile(r"(\d+ | [a-z]+ | \.| -)", re.VERBOSE) + +_legacy_version_replacement_map = { + "pre": "c", + "preview": "c", + "-": "final-", + "rc": "c", + "dev": "@", +} + + +def _parse_version_parts(s: str) -> Iterator[str]: + for part in _legacy_version_component_re.split(s): + part = _legacy_version_replacement_map.get(part, part) + + if not part or part == ".": + continue + + if part[:1] in "0123456789": + # pad for numeric comparison + yield part.zfill(8) + else: + yield "*" + part + + # ensure that alpha/beta/candidate are before final + yield "*final" + + +def _legacy_cmpkey(version: str) -> LegacyCmpKey: + + # We hardcode an epoch of -1 here. A PEP 440 version can only have a epoch + # greater than or equal to 0. This will effectively put the LegacyVersion, + # which uses the defacto standard originally implemented by setuptools, + # as before all PEP 440 versions. + epoch = -1 + + # This scheme is taken from pkg_resources.parse_version setuptools prior to + # it's adoption of the packaging library. + parts: List[str] = [] + for part in _parse_version_parts(version.lower()): + if part.startswith("*"): + # remove "-" before a prerelease tag + if part < "*final": + while parts and parts[-1] == "*final-": + parts.pop() + + # remove trailing zeros from each series of numeric parts + while parts and parts[-1] == "00000000": + parts.pop() + + parts.append(part) + + return epoch, tuple(parts) + + +# Deliberately not anchored to the start and end of the string, to make it +# easier for 3rd party code to reuse +VERSION_PATTERN = r""" + v? + (?: + (?:(?P[0-9]+)!)? # epoch + (?P[0-9]+(?:\.[0-9]+)*) # release segment + (?P

                                          # pre-release
+            [-_\.]?
+            (?P(a|b|c|rc|alpha|beta|pre|preview))
+            [-_\.]?
+            (?P[0-9]+)?
+        )?
+        (?P                                         # post release
+            (?:-(?P[0-9]+))
+            |
+            (?:
+                [-_\.]?
+                (?Ppost|rev|r)
+                [-_\.]?
+                (?P[0-9]+)?
+            )
+        )?
+        (?P                                          # dev release
+            [-_\.]?
+            (?Pdev)
+            [-_\.]?
+            (?P[0-9]+)?
+        )?
+    )
+    (?:\+(?P[a-z0-9]+(?:[-_\.][a-z0-9]+)*))?       # local version
+"""
+
+
+class Version(_BaseVersion):
+
+    _regex = re.compile(r"^\s*" + VERSION_PATTERN + r"\s*$", re.VERBOSE | re.IGNORECASE)
+
+    def __init__(self, version: str) -> None:
+
+        # Validate the version and parse it into pieces
+        match = self._regex.search(version)
+        if not match:
+            raise InvalidVersion(f"Invalid version: '{version}'")
+
+        # Store the parsed out pieces of the version
+        self._version = _Version(
+            epoch=int(match.group("epoch")) if match.group("epoch") else 0,
+            release=tuple(int(i) for i in match.group("release").split(".")),
+            pre=_parse_letter_version(match.group("pre_l"), match.group("pre_n")),
+            post=_parse_letter_version(
+                match.group("post_l"), match.group("post_n1") or match.group("post_n2")
+            ),
+            dev=_parse_letter_version(match.group("dev_l"), match.group("dev_n")),
+            local=_parse_local_version(match.group("local")),
+        )
+
+        # Generate a key which will be used for sorting
+        self._key = _cmpkey(
+            self._version.epoch,
+            self._version.release,
+            self._version.pre,
+            self._version.post,
+            self._version.dev,
+            self._version.local,
+        )
+
+    def __repr__(self) -> str:
+        return f""
+
+    def __str__(self) -> str:
+        parts = []
+
+        # Epoch
+        if self.epoch != 0:
+            parts.append(f"{self.epoch}!")
+
+        # Release segment
+        parts.append(".".join(str(x) for x in self.release))
+
+        # Pre-release
+        if self.pre is not None:
+            parts.append("".join(str(x) for x in self.pre))
+
+        # Post-release
+        if self.post is not None:
+            parts.append(f".post{self.post}")
+
+        # Development release
+        if self.dev is not None:
+            parts.append(f".dev{self.dev}")
+
+        # Local version segment
+        if self.local is not None:
+            parts.append(f"+{self.local}")
+
+        return "".join(parts)
+
+    @property
+    def epoch(self) -> int:
+        _epoch: int = self._version.epoch
+        return _epoch
+
+    @property
+    def release(self) -> Tuple[int, ...]:
+        _release: Tuple[int, ...] = self._version.release
+        return _release
+
+    @property
+    def pre(self) -> Optional[Tuple[str, int]]:
+        _pre: Optional[Tuple[str, int]] = self._version.pre
+        return _pre
+
+    @property
+    def post(self) -> Optional[int]:
+        return self._version.post[1] if self._version.post else None
+
+    @property
+    def dev(self) -> Optional[int]:
+        return self._version.dev[1] if self._version.dev else None
+
+    @property
+    def local(self) -> Optional[str]:
+        if self._version.local:
+            return ".".join(str(x) for x in self._version.local)
+        else:
+            return None
+
+    @property
+    def public(self) -> str:
+        return str(self).split("+", 1)[0]
+
+    @property
+    def base_version(self) -> str:
+        parts = []
+
+        # Epoch
+        if self.epoch != 0:
+            parts.append(f"{self.epoch}!")
+
+        # Release segment
+        parts.append(".".join(str(x) for x in self.release))
+
+        return "".join(parts)
+
+    @property
+    def is_prerelease(self) -> bool:
+        return self.dev is not None or self.pre is not None
+
+    @property
+    def is_postrelease(self) -> bool:
+        return self.post is not None
+
+    @property
+    def is_devrelease(self) -> bool:
+        return self.dev is not None
+
+    @property
+    def major(self) -> int:
+        return self.release[0] if len(self.release) >= 1 else 0
+
+    @property
+    def minor(self) -> int:
+        return self.release[1] if len(self.release) >= 2 else 0
+
+    @property
+    def micro(self) -> int:
+        return self.release[2] if len(self.release) >= 3 else 0
+
+
+def _parse_letter_version(
+    letter: str, number: Union[str, bytes, SupportsInt]
+) -> Optional[Tuple[str, int]]:
+
+    if letter:
+        # We consider there to be an implicit 0 in a pre-release if there is
+        # not a numeral associated with it.
+        if number is None:
+            number = 0
+
+        # We normalize any letters to their lower case form
+        letter = letter.lower()
+
+        # We consider some words to be alternate spellings of other words and
+        # in those cases we want to normalize the spellings to our preferred
+        # spelling.
+        if letter == "alpha":
+            letter = "a"
+        elif letter == "beta":
+            letter = "b"
+        elif letter in ["c", "pre", "preview"]:
+            letter = "rc"
+        elif letter in ["rev", "r"]:
+            letter = "post"
+
+        return letter, int(number)
+    if not letter and number:
+        # We assume if we are given a number, but we are not given a letter
+        # then this is using the implicit post release syntax (e.g. 1.0-1)
+        letter = "post"
+
+        return letter, int(number)
+
+    return None
+
+
+_local_version_separators = re.compile(r"[\._-]")
+
+
+def _parse_local_version(local: str) -> Optional[LocalType]:
+    """
+    Takes a string like abc.1.twelve and turns it into ("abc", 1, "twelve").
+    """
+    if local is not None:
+        return tuple(
+            part.lower() if not part.isdigit() else int(part)
+            for part in _local_version_separators.split(local)
+        )
+    return None
+
+
+def _cmpkey(
+    epoch: int,
+    release: Tuple[int, ...],
+    pre: Optional[Tuple[str, int]],
+    post: Optional[Tuple[str, int]],
+    dev: Optional[Tuple[str, int]],
+    local: Optional[Tuple[SubLocalType]],
+) -> CmpKey:
+
+    # When we compare a release version, we want to compare it with all of the
+    # trailing zeros removed. So we'll use a reverse the list, drop all the now
+    # leading zeros until we come to something non zero, then take the rest
+    # re-reverse it back into the correct order and make it a tuple and use
+    # that for our sorting key.
+    _release = tuple(
+        reversed(list(itertools.dropwhile(lambda x: x == 0, reversed(release))))
+    )
+
+    # We need to "trick" the sorting algorithm to put 1.0.dev0 before 1.0a0.
+    # We'll do this by abusing the pre segment, but we _only_ want to do this
+    # if there is not a pre or a post segment. If we have one of those then
+    # the normal sorting rules will handle this case correctly.
+    if pre is None and post is None and dev is not None:
+        _pre: PrePostDevType = NegativeInfinity
+    # Versions without a pre-release (except as noted above) should sort after
+    # those with one.
+    elif pre is None:
+        _pre = Infinity
+    else:
+        _pre = pre
+
+    # Versions without a post segment should sort before those with one.
+    if post is None:
+        _post: PrePostDevType = NegativeInfinity
+
+    else:
+        _post = post
+
+    # Versions without a development segment should sort after those with one.
+    if dev is None:
+        _dev: PrePostDevType = Infinity
+
+    else:
+        _dev = dev
+
+    if local is None:
+        # Versions without a local segment should sort before those with one.
+        _local: LocalType = NegativeInfinity
+    else:
+        # Versions with a local segment need that segment parsed to implement
+        # the sorting rules in PEP440.
+        # - Alpha numeric segments sort before numeric segments
+        # - Alpha numeric segments sort lexicographically
+        # - Numeric segments sort numerically
+        # - Shorter versions sort before longer versions when the prefixes
+        #   match exactly
+        _local = tuple(
+            (i, "") if isinstance(i, int) else (NegativeInfinity, i) for i in local
+        )
+
+    return epoch, _release, _pre, _post, _dev, _local
diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py
new file mode 100644
index 00000000..ad279407
--- /dev/null
+++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py
@@ -0,0 +1,3361 @@
+"""
+Package resource API
+--------------------
+
+A resource is a logical file contained within a package, or a logical
+subdirectory thereof.  The package resource API expects resource names
+to have their path parts separated with ``/``, *not* whatever the local
+path separator is.  Do not use os.path operations to manipulate resource
+names being passed into the API.
+
+The package resource API is designed to work with normal filesystem packages,
+.egg files, and unpacked .egg files.  It can also work in a limited way with
+.zip files and with custom PEP 302 loaders that support the ``get_data()``
+method.
+
+This module is deprecated. Users are directed to :mod:`importlib.resources`,
+:mod:`importlib.metadata` and :pypi:`packaging` instead.
+"""
+
+import sys
+import os
+import io
+import time
+import re
+import types
+import zipfile
+import zipimport
+import warnings
+import stat
+import functools
+import pkgutil
+import operator
+import platform
+import collections
+import plistlib
+import email.parser
+import errno
+import tempfile
+import textwrap
+import inspect
+import ntpath
+import posixpath
+import importlib
+from pkgutil import get_importer
+
+try:
+    import _imp
+except ImportError:
+    # Python 3.2 compatibility
+    import imp as _imp
+
+try:
+    FileExistsError
+except NameError:
+    FileExistsError = OSError
+
+# capture these to bypass sandboxing
+from os import utime
+
+try:
+    from os import mkdir, rename, unlink
+
+    WRITE_SUPPORT = True
+except ImportError:
+    # no write support, probably under GAE
+    WRITE_SUPPORT = False
+
+from os import open as os_open
+from os.path import isdir, split
+
+try:
+    import importlib.machinery as importlib_machinery
+
+    # access attribute to force import under delayed import mechanisms.
+    importlib_machinery.__name__
+except ImportError:
+    importlib_machinery = None
+
+from pip._internal.utils._jaraco_text import (
+    yield_lines,
+    drop_comment,
+    join_continuation,
+)
+
+from pip._vendor import platformdirs
+from pip._vendor import packaging
+
+__import__('pip._vendor.packaging.version')
+__import__('pip._vendor.packaging.specifiers')
+__import__('pip._vendor.packaging.requirements')
+__import__('pip._vendor.packaging.markers')
+__import__('pip._vendor.packaging.utils')
+
+if sys.version_info < (3, 5):
+    raise RuntimeError("Python 3.5 or later is required")
+
+# declare some globals that will be defined later to
+# satisfy the linters.
+require = None
+working_set = None
+add_activation_listener = None
+resources_stream = None
+cleanup_resources = None
+resource_dir = None
+resource_stream = None
+set_extraction_path = None
+resource_isdir = None
+resource_string = None
+iter_entry_points = None
+resource_listdir = None
+resource_filename = None
+resource_exists = None
+_distribution_finders = None
+_namespace_handlers = None
+_namespace_packages = None
+
+
+warnings.warn(
+    "pkg_resources is deprecated as an API. "
+    "See https://setuptools.pypa.io/en/latest/pkg_resources.html",
+    DeprecationWarning,
+    stacklevel=2
+)
+
+
+_PEP440_FALLBACK = re.compile(r"^v?(?P(?:[0-9]+!)?[0-9]+(?:\.[0-9]+)*)", re.I)
+
+
+class PEP440Warning(RuntimeWarning):
+    """
+    Used when there is an issue with a version or specifier not complying with
+    PEP 440.
+    """
+
+
+parse_version = packaging.version.Version
+
+
+_state_vars = {}
+
+
+def _declare_state(vartype, **kw):
+    globals().update(kw)
+    _state_vars.update(dict.fromkeys(kw, vartype))
+
+
+def __getstate__():
+    state = {}
+    g = globals()
+    for k, v in _state_vars.items():
+        state[k] = g['_sget_' + v](g[k])
+    return state
+
+
+def __setstate__(state):
+    g = globals()
+    for k, v in state.items():
+        g['_sset_' + _state_vars[k]](k, g[k], v)
+    return state
+
+
+def _sget_dict(val):
+    return val.copy()
+
+
+def _sset_dict(key, ob, state):
+    ob.clear()
+    ob.update(state)
+
+
+def _sget_object(val):
+    return val.__getstate__()
+
+
+def _sset_object(key, ob, state):
+    ob.__setstate__(state)
+
+
+_sget_none = _sset_none = lambda *args: None
+
+
+def get_supported_platform():
+    """Return this platform's maximum compatible version.
+
+    distutils.util.get_platform() normally reports the minimum version
+    of macOS that would be required to *use* extensions produced by
+    distutils.  But what we want when checking compatibility is to know the
+    version of macOS that we are *running*.  To allow usage of packages that
+    explicitly require a newer version of macOS, we must also know the
+    current version of the OS.
+
+    If this condition occurs for any other platform with a version in its
+    platform strings, this function should be extended accordingly.
+    """
+    plat = get_build_platform()
+    m = macosVersionString.match(plat)
+    if m is not None and sys.platform == "darwin":
+        try:
+            plat = 'macosx-%s-%s' % ('.'.join(_macos_vers()[:2]), m.group(3))
+        except ValueError:
+            # not macOS
+            pass
+    return plat
+
+
+__all__ = [
+    # Basic resource access and distribution/entry point discovery
+    'require',
+    'run_script',
+    'get_provider',
+    'get_distribution',
+    'load_entry_point',
+    'get_entry_map',
+    'get_entry_info',
+    'iter_entry_points',
+    'resource_string',
+    'resource_stream',
+    'resource_filename',
+    'resource_listdir',
+    'resource_exists',
+    'resource_isdir',
+    # Environmental control
+    'declare_namespace',
+    'working_set',
+    'add_activation_listener',
+    'find_distributions',
+    'set_extraction_path',
+    'cleanup_resources',
+    'get_default_cache',
+    # Primary implementation classes
+    'Environment',
+    'WorkingSet',
+    'ResourceManager',
+    'Distribution',
+    'Requirement',
+    'EntryPoint',
+    # Exceptions
+    'ResolutionError',
+    'VersionConflict',
+    'DistributionNotFound',
+    'UnknownExtra',
+    'ExtractionError',
+    # Warnings
+    'PEP440Warning',
+    # Parsing functions and string utilities
+    'parse_requirements',
+    'parse_version',
+    'safe_name',
+    'safe_version',
+    'get_platform',
+    'compatible_platforms',
+    'yield_lines',
+    'split_sections',
+    'safe_extra',
+    'to_filename',
+    'invalid_marker',
+    'evaluate_marker',
+    # filesystem utilities
+    'ensure_directory',
+    'normalize_path',
+    # Distribution "precedence" constants
+    'EGG_DIST',
+    'BINARY_DIST',
+    'SOURCE_DIST',
+    'CHECKOUT_DIST',
+    'DEVELOP_DIST',
+    # "Provider" interfaces, implementations, and registration/lookup APIs
+    'IMetadataProvider',
+    'IResourceProvider',
+    'FileMetadata',
+    'PathMetadata',
+    'EggMetadata',
+    'EmptyProvider',
+    'empty_provider',
+    'NullProvider',
+    'EggProvider',
+    'DefaultProvider',
+    'ZipProvider',
+    'register_finder',
+    'register_namespace_handler',
+    'register_loader_type',
+    'fixup_namespace_packages',
+    'get_importer',
+    # Warnings
+    'PkgResourcesDeprecationWarning',
+    # Deprecated/backward compatibility only
+    'run_main',
+    'AvailableDistributions',
+]
+
+
+class ResolutionError(Exception):
+    """Abstract base for dependency resolution errors"""
+
+    def __repr__(self):
+        return self.__class__.__name__ + repr(self.args)
+
+
+class VersionConflict(ResolutionError):
+    """
+    An already-installed version conflicts with the requested version.
+
+    Should be initialized with the installed Distribution and the requested
+    Requirement.
+    """
+
+    _template = "{self.dist} is installed but {self.req} is required"
+
+    @property
+    def dist(self):
+        return self.args[0]
+
+    @property
+    def req(self):
+        return self.args[1]
+
+    def report(self):
+        return self._template.format(**locals())
+
+    def with_context(self, required_by):
+        """
+        If required_by is non-empty, return a version of self that is a
+        ContextualVersionConflict.
+        """
+        if not required_by:
+            return self
+        args = self.args + (required_by,)
+        return ContextualVersionConflict(*args)
+
+
+class ContextualVersionConflict(VersionConflict):
+    """
+    A VersionConflict that accepts a third parameter, the set of the
+    requirements that required the installed Distribution.
+    """
+
+    _template = VersionConflict._template + ' by {self.required_by}'
+
+    @property
+    def required_by(self):
+        return self.args[2]
+
+
+class DistributionNotFound(ResolutionError):
+    """A requested distribution was not found"""
+
+    _template = (
+        "The '{self.req}' distribution was not found "
+        "and is required by {self.requirers_str}"
+    )
+
+    @property
+    def req(self):
+        return self.args[0]
+
+    @property
+    def requirers(self):
+        return self.args[1]
+
+    @property
+    def requirers_str(self):
+        if not self.requirers:
+            return 'the application'
+        return ', '.join(self.requirers)
+
+    def report(self):
+        return self._template.format(**locals())
+
+    def __str__(self):
+        return self.report()
+
+
+class UnknownExtra(ResolutionError):
+    """Distribution doesn't have an "extra feature" of the given name"""
+
+
+_provider_factories = {}
+
+PY_MAJOR = '{}.{}'.format(*sys.version_info)
+EGG_DIST = 3
+BINARY_DIST = 2
+SOURCE_DIST = 1
+CHECKOUT_DIST = 0
+DEVELOP_DIST = -1
+
+
+def register_loader_type(loader_type, provider_factory):
+    """Register `provider_factory` to make providers for `loader_type`
+
+    `loader_type` is the type or class of a PEP 302 ``module.__loader__``,
+    and `provider_factory` is a function that, passed a *module* object,
+    returns an ``IResourceProvider`` for that module.
+    """
+    _provider_factories[loader_type] = provider_factory
+
+
+def get_provider(moduleOrReq):
+    """Return an IResourceProvider for the named module or requirement"""
+    if isinstance(moduleOrReq, Requirement):
+        return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
+    try:
+        module = sys.modules[moduleOrReq]
+    except KeyError:
+        __import__(moduleOrReq)
+        module = sys.modules[moduleOrReq]
+    loader = getattr(module, '__loader__', None)
+    return _find_adapter(_provider_factories, loader)(module)
+
+
+def _macos_vers(_cache=[]):
+    if not _cache:
+        version = platform.mac_ver()[0]
+        # fallback for MacPorts
+        if version == '':
+            plist = '/System/Library/CoreServices/SystemVersion.plist'
+            if os.path.exists(plist):
+                if hasattr(plistlib, 'readPlist'):
+                    plist_content = plistlib.readPlist(plist)
+                    if 'ProductVersion' in plist_content:
+                        version = plist_content['ProductVersion']
+
+        _cache.append(version.split('.'))
+    return _cache[0]
+
+
+def _macos_arch(machine):
+    return {'PowerPC': 'ppc', 'Power_Macintosh': 'ppc'}.get(machine, machine)
+
+
+def get_build_platform():
+    """Return this platform's string for platform-specific distributions
+
+    XXX Currently this is the same as ``distutils.util.get_platform()``, but it
+    needs some hacks for Linux and macOS.
+    """
+    from sysconfig import get_platform
+
+    plat = get_platform()
+    if sys.platform == "darwin" and not plat.startswith('macosx-'):
+        try:
+            version = _macos_vers()
+            machine = os.uname()[4].replace(" ", "_")
+            return "macosx-%d.%d-%s" % (
+                int(version[0]),
+                int(version[1]),
+                _macos_arch(machine),
+            )
+        except ValueError:
+            # if someone is running a non-Mac darwin system, this will fall
+            # through to the default implementation
+            pass
+    return plat
+
+
+macosVersionString = re.compile(r"macosx-(\d+)\.(\d+)-(.*)")
+darwinVersionString = re.compile(r"darwin-(\d+)\.(\d+)\.(\d+)-(.*)")
+# XXX backward compat
+get_platform = get_build_platform
+
+
+def compatible_platforms(provided, required):
+    """Can code for the `provided` platform run on the `required` platform?
+
+    Returns true if either platform is ``None``, or the platforms are equal.
+
+    XXX Needs compatibility checks for Linux and other unixy OSes.
+    """
+    if provided is None or required is None or provided == required:
+        # easy case
+        return True
+
+    # macOS special cases
+    reqMac = macosVersionString.match(required)
+    if reqMac:
+        provMac = macosVersionString.match(provided)
+
+        # is this a Mac package?
+        if not provMac:
+            # this is backwards compatibility for packages built before
+            # setuptools 0.6. All packages built after this point will
+            # use the new macOS designation.
+            provDarwin = darwinVersionString.match(provided)
+            if provDarwin:
+                dversion = int(provDarwin.group(1))
+                macosversion = "%s.%s" % (reqMac.group(1), reqMac.group(2))
+                if (
+                    dversion == 7
+                    and macosversion >= "10.3"
+                    or dversion == 8
+                    and macosversion >= "10.4"
+                ):
+                    return True
+            # egg isn't macOS or legacy darwin
+            return False
+
+        # are they the same major version and machine type?
+        if provMac.group(1) != reqMac.group(1) or provMac.group(3) != reqMac.group(3):
+            return False
+
+        # is the required OS major update >= the provided one?
+        if int(provMac.group(2)) > int(reqMac.group(2)):
+            return False
+
+        return True
+
+    # XXX Linux and other platforms' special cases should go here
+    return False
+
+
+def run_script(dist_spec, script_name):
+    """Locate distribution `dist_spec` and run its `script_name` script"""
+    ns = sys._getframe(1).f_globals
+    name = ns['__name__']
+    ns.clear()
+    ns['__name__'] = name
+    require(dist_spec)[0].run_script(script_name, ns)
+
+
+# backward compatibility
+run_main = run_script
+
+
+def get_distribution(dist):
+    """Return a current distribution object for a Requirement or string"""
+    if isinstance(dist, str):
+        dist = Requirement.parse(dist)
+    if isinstance(dist, Requirement):
+        dist = get_provider(dist)
+    if not isinstance(dist, Distribution):
+        raise TypeError("Expected string, Requirement, or Distribution", dist)
+    return dist
+
+
+def load_entry_point(dist, group, name):
+    """Return `name` entry point of `group` for `dist` or raise ImportError"""
+    return get_distribution(dist).load_entry_point(group, name)
+
+
+def get_entry_map(dist, group=None):
+    """Return the entry point map for `group`, or the full entry map"""
+    return get_distribution(dist).get_entry_map(group)
+
+
+def get_entry_info(dist, group, name):
+    """Return the EntryPoint object for `group`+`name`, or ``None``"""
+    return get_distribution(dist).get_entry_info(group, name)
+
+
+class IMetadataProvider:
+    def has_metadata(name):
+        """Does the package's distribution contain the named metadata?"""
+
+    def get_metadata(name):
+        """The named metadata resource as a string"""
+
+    def get_metadata_lines(name):
+        """Yield named metadata resource as list of non-blank non-comment lines
+
+        Leading and trailing whitespace is stripped from each line, and lines
+        with ``#`` as the first non-blank character are omitted."""
+
+    def metadata_isdir(name):
+        """Is the named metadata a directory?  (like ``os.path.isdir()``)"""
+
+    def metadata_listdir(name):
+        """List of metadata names in the directory (like ``os.listdir()``)"""
+
+    def run_script(script_name, namespace):
+        """Execute the named script in the supplied namespace dictionary"""
+
+
+class IResourceProvider(IMetadataProvider):
+    """An object that provides access to package resources"""
+
+    def get_resource_filename(manager, resource_name):
+        """Return a true filesystem path for `resource_name`
+
+        `manager` must be an ``IResourceManager``"""
+
+    def get_resource_stream(manager, resource_name):
+        """Return a readable file-like object for `resource_name`
+
+        `manager` must be an ``IResourceManager``"""
+
+    def get_resource_string(manager, resource_name):
+        """Return a string containing the contents of `resource_name`
+
+        `manager` must be an ``IResourceManager``"""
+
+    def has_resource(resource_name):
+        """Does the package contain the named resource?"""
+
+    def resource_isdir(resource_name):
+        """Is the named resource a directory?  (like ``os.path.isdir()``)"""
+
+    def resource_listdir(resource_name):
+        """List of resource names in the directory (like ``os.listdir()``)"""
+
+
+class WorkingSet:
+    """A collection of active distributions on sys.path (or a similar list)"""
+
+    def __init__(self, entries=None):
+        """Create working set from list of path entries (default=sys.path)"""
+        self.entries = []
+        self.entry_keys = {}
+        self.by_key = {}
+        self.normalized_to_canonical_keys = {}
+        self.callbacks = []
+
+        if entries is None:
+            entries = sys.path
+
+        for entry in entries:
+            self.add_entry(entry)
+
+    @classmethod
+    def _build_master(cls):
+        """
+        Prepare the master working set.
+        """
+        ws = cls()
+        try:
+            from __main__ import __requires__
+        except ImportError:
+            # The main program does not list any requirements
+            return ws
+
+        # ensure the requirements are met
+        try:
+            ws.require(__requires__)
+        except VersionConflict:
+            return cls._build_from_requirements(__requires__)
+
+        return ws
+
+    @classmethod
+    def _build_from_requirements(cls, req_spec):
+        """
+        Build a working set from a requirement spec. Rewrites sys.path.
+        """
+        # try it without defaults already on sys.path
+        # by starting with an empty path
+        ws = cls([])
+        reqs = parse_requirements(req_spec)
+        dists = ws.resolve(reqs, Environment())
+        for dist in dists:
+            ws.add(dist)
+
+        # add any missing entries from sys.path
+        for entry in sys.path:
+            if entry not in ws.entries:
+                ws.add_entry(entry)
+
+        # then copy back to sys.path
+        sys.path[:] = ws.entries
+        return ws
+
+    def add_entry(self, entry):
+        """Add a path item to ``.entries``, finding any distributions on it
+
+        ``find_distributions(entry, True)`` is used to find distributions
+        corresponding to the path entry, and they are added.  `entry` is
+        always appended to ``.entries``, even if it is already present.
+        (This is because ``sys.path`` can contain the same value more than
+        once, and the ``.entries`` of the ``sys.path`` WorkingSet should always
+        equal ``sys.path``.)
+        """
+        self.entry_keys.setdefault(entry, [])
+        self.entries.append(entry)
+        for dist in find_distributions(entry, True):
+            self.add(dist, entry, False)
+
+    def __contains__(self, dist):
+        """True if `dist` is the active distribution for its project"""
+        return self.by_key.get(dist.key) == dist
+
+    def find(self, req):
+        """Find a distribution matching requirement `req`
+
+        If there is an active distribution for the requested project, this
+        returns it as long as it meets the version requirement specified by
+        `req`.  But, if there is an active distribution for the project and it
+        does *not* meet the `req` requirement, ``VersionConflict`` is raised.
+        If there is no active distribution for the requested project, ``None``
+        is returned.
+        """
+        dist = self.by_key.get(req.key)
+
+        if dist is None:
+            canonical_key = self.normalized_to_canonical_keys.get(req.key)
+
+            if canonical_key is not None:
+                req.key = canonical_key
+                dist = self.by_key.get(canonical_key)
+
+        if dist is not None and dist not in req:
+            # XXX add more info
+            raise VersionConflict(dist, req)
+        return dist
+
+    def iter_entry_points(self, group, name=None):
+        """Yield entry point objects from `group` matching `name`
+
+        If `name` is None, yields all entry points in `group` from all
+        distributions in the working set, otherwise only ones matching
+        both `group` and `name` are yielded (in distribution order).
+        """
+        return (
+            entry
+            for dist in self
+            for entry in dist.get_entry_map(group).values()
+            if name is None or name == entry.name
+        )
+
+    def run_script(self, requires, script_name):
+        """Locate distribution for `requires` and run `script_name` script"""
+        ns = sys._getframe(1).f_globals
+        name = ns['__name__']
+        ns.clear()
+        ns['__name__'] = name
+        self.require(requires)[0].run_script(script_name, ns)
+
+    def __iter__(self):
+        """Yield distributions for non-duplicate projects in the working set
+
+        The yield order is the order in which the items' path entries were
+        added to the working set.
+        """
+        seen = {}
+        for item in self.entries:
+            if item not in self.entry_keys:
+                # workaround a cache issue
+                continue
+
+            for key in self.entry_keys[item]:
+                if key not in seen:
+                    seen[key] = 1
+                    yield self.by_key[key]
+
+    def add(self, dist, entry=None, insert=True, replace=False):
+        """Add `dist` to working set, associated with `entry`
+
+        If `entry` is unspecified, it defaults to the ``.location`` of `dist`.
+        On exit from this routine, `entry` is added to the end of the working
+        set's ``.entries`` (if it wasn't already present).
+
+        `dist` is only added to the working set if it's for a project that
+        doesn't already have a distribution in the set, unless `replace=True`.
+        If it's added, any callbacks registered with the ``subscribe()`` method
+        will be called.
+        """
+        if insert:
+            dist.insert_on(self.entries, entry, replace=replace)
+
+        if entry is None:
+            entry = dist.location
+        keys = self.entry_keys.setdefault(entry, [])
+        keys2 = self.entry_keys.setdefault(dist.location, [])
+        if not replace and dist.key in self.by_key:
+            # ignore hidden distros
+            return
+
+        self.by_key[dist.key] = dist
+        normalized_name = packaging.utils.canonicalize_name(dist.key)
+        self.normalized_to_canonical_keys[normalized_name] = dist.key
+        if dist.key not in keys:
+            keys.append(dist.key)
+        if dist.key not in keys2:
+            keys2.append(dist.key)
+        self._added_new(dist)
+
+    def resolve(
+        self,
+        requirements,
+        env=None,
+        installer=None,
+        replace_conflicting=False,
+        extras=None,
+    ):
+        """List all distributions needed to (recursively) meet `requirements`
+
+        `requirements` must be a sequence of ``Requirement`` objects.  `env`,
+        if supplied, should be an ``Environment`` instance.  If
+        not supplied, it defaults to all distributions available within any
+        entry or distribution in the working set.  `installer`, if supplied,
+        will be invoked with each requirement that cannot be met by an
+        already-installed distribution; it should return a ``Distribution`` or
+        ``None``.
+
+        Unless `replace_conflicting=True`, raises a VersionConflict exception
+        if
+        any requirements are found on the path that have the correct name but
+        the wrong version.  Otherwise, if an `installer` is supplied it will be
+        invoked to obtain the correct version of the requirement and activate
+        it.
+
+        `extras` is a list of the extras to be used with these requirements.
+        This is important because extra requirements may look like `my_req;
+        extra = "my_extra"`, which would otherwise be interpreted as a purely
+        optional requirement.  Instead, we want to be able to assert that these
+        requirements are truly required.
+        """
+
+        # set up the stack
+        requirements = list(requirements)[::-1]
+        # set of processed requirements
+        processed = {}
+        # key -> dist
+        best = {}
+        to_activate = []
+
+        req_extras = _ReqExtras()
+
+        # Mapping of requirement to set of distributions that required it;
+        # useful for reporting info about conflicts.
+        required_by = collections.defaultdict(set)
+
+        while requirements:
+            # process dependencies breadth-first
+            req = requirements.pop(0)
+            if req in processed:
+                # Ignore cyclic or redundant dependencies
+                continue
+
+            if not req_extras.markers_pass(req, extras):
+                continue
+
+            dist = self._resolve_dist(
+                req, best, replace_conflicting, env, installer, required_by, to_activate
+            )
+
+            # push the new requirements onto the stack
+            new_requirements = dist.requires(req.extras)[::-1]
+            requirements.extend(new_requirements)
+
+            # Register the new requirements needed by req
+            for new_requirement in new_requirements:
+                required_by[new_requirement].add(req.project_name)
+                req_extras[new_requirement] = req.extras
+
+            processed[req] = True
+
+        # return list of distros to activate
+        return to_activate
+
+    def _resolve_dist(
+        self, req, best, replace_conflicting, env, installer, required_by, to_activate
+    ):
+        dist = best.get(req.key)
+        if dist is None:
+            # Find the best distribution and add it to the map
+            dist = self.by_key.get(req.key)
+            if dist is None or (dist not in req and replace_conflicting):
+                ws = self
+                if env is None:
+                    if dist is None:
+                        env = Environment(self.entries)
+                    else:
+                        # Use an empty environment and workingset to avoid
+                        # any further conflicts with the conflicting
+                        # distribution
+                        env = Environment([])
+                        ws = WorkingSet([])
+                dist = best[req.key] = env.best_match(
+                    req, ws, installer, replace_conflicting=replace_conflicting
+                )
+                if dist is None:
+                    requirers = required_by.get(req, None)
+                    raise DistributionNotFound(req, requirers)
+            to_activate.append(dist)
+        if dist not in req:
+            # Oops, the "best" so far conflicts with a dependency
+            dependent_req = required_by[req]
+            raise VersionConflict(dist, req).with_context(dependent_req)
+        return dist
+
+    def find_plugins(self, plugin_env, full_env=None, installer=None, fallback=True):
+        """Find all activatable distributions in `plugin_env`
+
+        Example usage::
+
+            distributions, errors = working_set.find_plugins(
+                Environment(plugin_dirlist)
+            )
+            # add plugins+libs to sys.path
+            map(working_set.add, distributions)
+            # display errors
+            print('Could not load', errors)
+
+        The `plugin_env` should be an ``Environment`` instance that contains
+        only distributions that are in the project's "plugin directory" or
+        directories. The `full_env`, if supplied, should be an ``Environment``
+        contains all currently-available distributions.  If `full_env` is not
+        supplied, one is created automatically from the ``WorkingSet`` this
+        method is called on, which will typically mean that every directory on
+        ``sys.path`` will be scanned for distributions.
+
+        `installer` is a standard installer callback as used by the
+        ``resolve()`` method. The `fallback` flag indicates whether we should
+        attempt to resolve older versions of a plugin if the newest version
+        cannot be resolved.
+
+        This method returns a 2-tuple: (`distributions`, `error_info`), where
+        `distributions` is a list of the distributions found in `plugin_env`
+        that were loadable, along with any other distributions that are needed
+        to resolve their dependencies.  `error_info` is a dictionary mapping
+        unloadable plugin distributions to an exception instance describing the
+        error that occurred. Usually this will be a ``DistributionNotFound`` or
+        ``VersionConflict`` instance.
+        """
+
+        plugin_projects = list(plugin_env)
+        # scan project names in alphabetic order
+        plugin_projects.sort()
+
+        error_info = {}
+        distributions = {}
+
+        if full_env is None:
+            env = Environment(self.entries)
+            env += plugin_env
+        else:
+            env = full_env + plugin_env
+
+        shadow_set = self.__class__([])
+        # put all our entries in shadow_set
+        list(map(shadow_set.add, self))
+
+        for project_name in plugin_projects:
+            for dist in plugin_env[project_name]:
+                req = [dist.as_requirement()]
+
+                try:
+                    resolvees = shadow_set.resolve(req, env, installer)
+
+                except ResolutionError as v:
+                    # save error info
+                    error_info[dist] = v
+                    if fallback:
+                        # try the next older version of project
+                        continue
+                    else:
+                        # give up on this project, keep going
+                        break
+
+                else:
+                    list(map(shadow_set.add, resolvees))
+                    distributions.update(dict.fromkeys(resolvees))
+
+                    # success, no need to try any more versions of this project
+                    break
+
+        distributions = list(distributions)
+        distributions.sort()
+
+        return distributions, error_info
+
+    def require(self, *requirements):
+        """Ensure that distributions matching `requirements` are activated
+
+        `requirements` must be a string or a (possibly-nested) sequence
+        thereof, specifying the distributions and versions required.  The
+        return value is a sequence of the distributions that needed to be
+        activated to fulfill the requirements; all relevant distributions are
+        included, even if they were already activated in this working set.
+        """
+        needed = self.resolve(parse_requirements(requirements))
+
+        for dist in needed:
+            self.add(dist)
+
+        return needed
+
+    def subscribe(self, callback, existing=True):
+        """Invoke `callback` for all distributions
+
+        If `existing=True` (default),
+        call on all existing ones, as well.
+        """
+        if callback in self.callbacks:
+            return
+        self.callbacks.append(callback)
+        if not existing:
+            return
+        for dist in self:
+            callback(dist)
+
+    def _added_new(self, dist):
+        for callback in self.callbacks:
+            callback(dist)
+
+    def __getstate__(self):
+        return (
+            self.entries[:],
+            self.entry_keys.copy(),
+            self.by_key.copy(),
+            self.normalized_to_canonical_keys.copy(),
+            self.callbacks[:],
+        )
+
+    def __setstate__(self, e_k_b_n_c):
+        entries, keys, by_key, normalized_to_canonical_keys, callbacks = e_k_b_n_c
+        self.entries = entries[:]
+        self.entry_keys = keys.copy()
+        self.by_key = by_key.copy()
+        self.normalized_to_canonical_keys = normalized_to_canonical_keys.copy()
+        self.callbacks = callbacks[:]
+
+
+class _ReqExtras(dict):
+    """
+    Map each requirement to the extras that demanded it.
+    """
+
+    def markers_pass(self, req, extras=None):
+        """
+        Evaluate markers for req against each extra that
+        demanded it.
+
+        Return False if the req has a marker and fails
+        evaluation. Otherwise, return True.
+        """
+        extra_evals = (
+            req.marker.evaluate({'extra': extra})
+            for extra in self.get(req, ()) + (extras or (None,))
+        )
+        return not req.marker or any(extra_evals)
+
+
+class Environment:
+    """Searchable snapshot of distributions on a search path"""
+
+    def __init__(
+        self, search_path=None, platform=get_supported_platform(), python=PY_MAJOR
+    ):
+        """Snapshot distributions available on a search path
+
+        Any distributions found on `search_path` are added to the environment.
+        `search_path` should be a sequence of ``sys.path`` items.  If not
+        supplied, ``sys.path`` is used.
+
+        `platform` is an optional string specifying the name of the platform
+        that platform-specific distributions must be compatible with.  If
+        unspecified, it defaults to the current platform.  `python` is an
+        optional string naming the desired version of Python (e.g. ``'3.6'``);
+        it defaults to the current version.
+
+        You may explicitly set `platform` (and/or `python`) to ``None`` if you
+        wish to map *all* distributions, not just those compatible with the
+        running platform or Python version.
+        """
+        self._distmap = {}
+        self.platform = platform
+        self.python = python
+        self.scan(search_path)
+
+    def can_add(self, dist):
+        """Is distribution `dist` acceptable for this environment?
+
+        The distribution must match the platform and python version
+        requirements specified when this environment was created, or False
+        is returned.
+        """
+        py_compat = (
+            self.python is None
+            or dist.py_version is None
+            or dist.py_version == self.python
+        )
+        return py_compat and compatible_platforms(dist.platform, self.platform)
+
+    def remove(self, dist):
+        """Remove `dist` from the environment"""
+        self._distmap[dist.key].remove(dist)
+
+    def scan(self, search_path=None):
+        """Scan `search_path` for distributions usable in this environment
+
+        Any distributions found are added to the environment.
+        `search_path` should be a sequence of ``sys.path`` items.  If not
+        supplied, ``sys.path`` is used.  Only distributions conforming to
+        the platform/python version defined at initialization are added.
+        """
+        if search_path is None:
+            search_path = sys.path
+
+        for item in search_path:
+            for dist in find_distributions(item):
+                self.add(dist)
+
+    def __getitem__(self, project_name):
+        """Return a newest-to-oldest list of distributions for `project_name`
+
+        Uses case-insensitive `project_name` comparison, assuming all the
+        project's distributions use their project's name converted to all
+        lowercase as their key.
+
+        """
+        distribution_key = project_name.lower()
+        return self._distmap.get(distribution_key, [])
+
+    def add(self, dist):
+        """Add `dist` if we ``can_add()`` it and it has not already been added"""
+        if self.can_add(dist) and dist.has_version():
+            dists = self._distmap.setdefault(dist.key, [])
+            if dist not in dists:
+                dists.append(dist)
+                dists.sort(key=operator.attrgetter('hashcmp'), reverse=True)
+
+    def best_match(self, req, working_set, installer=None, replace_conflicting=False):
+        """Find distribution best matching `req` and usable on `working_set`
+
+        This calls the ``find(req)`` method of the `working_set` to see if a
+        suitable distribution is already active.  (This may raise
+        ``VersionConflict`` if an unsuitable version of the project is already
+        active in the specified `working_set`.)  If a suitable distribution
+        isn't active, this method returns the newest distribution in the
+        environment that meets the ``Requirement`` in `req`.  If no suitable
+        distribution is found, and `installer` is supplied, then the result of
+        calling the environment's ``obtain(req, installer)`` method will be
+        returned.
+        """
+        try:
+            dist = working_set.find(req)
+        except VersionConflict:
+            if not replace_conflicting:
+                raise
+            dist = None
+        if dist is not None:
+            return dist
+        for dist in self[req.key]:
+            if dist in req:
+                return dist
+        # try to download/install
+        return self.obtain(req, installer)
+
+    def obtain(self, requirement, installer=None):
+        """Obtain a distribution matching `requirement` (e.g. via download)
+
+        Obtain a distro that matches requirement (e.g. via download).  In the
+        base ``Environment`` class, this routine just returns
+        ``installer(requirement)``, unless `installer` is None, in which case
+        None is returned instead.  This method is a hook that allows subclasses
+        to attempt other ways of obtaining a distribution before falling back
+        to the `installer` argument."""
+        if installer is not None:
+            return installer(requirement)
+
+    def __iter__(self):
+        """Yield the unique project names of the available distributions"""
+        for key in self._distmap.keys():
+            if self[key]:
+                yield key
+
+    def __iadd__(self, other):
+        """In-place addition of a distribution or environment"""
+        if isinstance(other, Distribution):
+            self.add(other)
+        elif isinstance(other, Environment):
+            for project in other:
+                for dist in other[project]:
+                    self.add(dist)
+        else:
+            raise TypeError("Can't add %r to environment" % (other,))
+        return self
+
+    def __add__(self, other):
+        """Add an environment or distribution to an environment"""
+        new = self.__class__([], platform=None, python=None)
+        for env in self, other:
+            new += env
+        return new
+
+
+# XXX backward compatibility
+AvailableDistributions = Environment
+
+
+class ExtractionError(RuntimeError):
+    """An error occurred extracting a resource
+
+    The following attributes are available from instances of this exception:
+
+    manager
+        The resource manager that raised this exception
+
+    cache_path
+        The base directory for resource extraction
+
+    original_error
+        The exception instance that caused extraction to fail
+    """
+
+
+class ResourceManager:
+    """Manage resource extraction and packages"""
+
+    extraction_path = None
+
+    def __init__(self):
+        self.cached_files = {}
+
+    def resource_exists(self, package_or_requirement, resource_name):
+        """Does the named resource exist?"""
+        return get_provider(package_or_requirement).has_resource(resource_name)
+
+    def resource_isdir(self, package_or_requirement, resource_name):
+        """Is the named resource an existing directory?"""
+        return get_provider(package_or_requirement).resource_isdir(resource_name)
+
+    def resource_filename(self, package_or_requirement, resource_name):
+        """Return a true filesystem path for specified resource"""
+        return get_provider(package_or_requirement).get_resource_filename(
+            self, resource_name
+        )
+
+    def resource_stream(self, package_or_requirement, resource_name):
+        """Return a readable file-like object for specified resource"""
+        return get_provider(package_or_requirement).get_resource_stream(
+            self, resource_name
+        )
+
+    def resource_string(self, package_or_requirement, resource_name):
+        """Return specified resource as a string"""
+        return get_provider(package_or_requirement).get_resource_string(
+            self, resource_name
+        )
+
+    def resource_listdir(self, package_or_requirement, resource_name):
+        """List the contents of the named resource directory"""
+        return get_provider(package_or_requirement).resource_listdir(resource_name)
+
+    def extraction_error(self):
+        """Give an error message for problems extracting file(s)"""
+
+        old_exc = sys.exc_info()[1]
+        cache_path = self.extraction_path or get_default_cache()
+
+        tmpl = textwrap.dedent(
+            """
+            Can't extract file(s) to egg cache
+
+            The following error occurred while trying to extract file(s)
+            to the Python egg cache:
+
+              {old_exc}
+
+            The Python egg cache directory is currently set to:
+
+              {cache_path}
+
+            Perhaps your account does not have write access to this directory?
+            You can change the cache directory by setting the PYTHON_EGG_CACHE
+            environment variable to point to an accessible directory.
+            """
+        ).lstrip()
+        err = ExtractionError(tmpl.format(**locals()))
+        err.manager = self
+        err.cache_path = cache_path
+        err.original_error = old_exc
+        raise err
+
+    def get_cache_path(self, archive_name, names=()):
+        """Return absolute location in cache for `archive_name` and `names`
+
+        The parent directory of the resulting path will be created if it does
+        not already exist.  `archive_name` should be the base filename of the
+        enclosing egg (which may not be the name of the enclosing zipfile!),
+        including its ".egg" extension.  `names`, if provided, should be a
+        sequence of path name parts "under" the egg's extraction location.
+
+        This method should only be called by resource providers that need to
+        obtain an extraction location, and only for names they intend to
+        extract, as it tracks the generated names for possible cleanup later.
+        """
+        extract_path = self.extraction_path or get_default_cache()
+        target_path = os.path.join(extract_path, archive_name + '-tmp', *names)
+        try:
+            _bypass_ensure_directory(target_path)
+        except Exception:
+            self.extraction_error()
+
+        self._warn_unsafe_extraction_path(extract_path)
+
+        self.cached_files[target_path] = 1
+        return target_path
+
+    @staticmethod
+    def _warn_unsafe_extraction_path(path):
+        """
+        If the default extraction path is overridden and set to an insecure
+        location, such as /tmp, it opens up an opportunity for an attacker to
+        replace an extracted file with an unauthorized payload. Warn the user
+        if a known insecure location is used.
+
+        See Distribute #375 for more details.
+        """
+        if os.name == 'nt' and not path.startswith(os.environ['windir']):
+            # On Windows, permissions are generally restrictive by default
+            #  and temp directories are not writable by other users, so
+            #  bypass the warning.
+            return
+        mode = os.stat(path).st_mode
+        if mode & stat.S_IWOTH or mode & stat.S_IWGRP:
+            msg = (
+                "Extraction path is writable by group/others "
+                "and vulnerable to attack when "
+                "used with get_resource_filename ({path}). "
+                "Consider a more secure "
+                "location (set with .set_extraction_path or the "
+                "PYTHON_EGG_CACHE environment variable)."
+            ).format(**locals())
+            warnings.warn(msg, UserWarning)
+
+    def postprocess(self, tempname, filename):
+        """Perform any platform-specific postprocessing of `tempname`
+
+        This is where Mac header rewrites should be done; other platforms don't
+        have anything special they should do.
+
+        Resource providers should call this method ONLY after successfully
+        extracting a compressed resource.  They must NOT call it on resources
+        that are already in the filesystem.
+
+        `tempname` is the current (temporary) name of the file, and `filename`
+        is the name it will be renamed to by the caller after this routine
+        returns.
+        """
+
+        if os.name == 'posix':
+            # Make the resource executable
+            mode = ((os.stat(tempname).st_mode) | 0o555) & 0o7777
+            os.chmod(tempname, mode)
+
+    def set_extraction_path(self, path):
+        """Set the base path where resources will be extracted to, if needed.
+
+        If you do not call this routine before any extractions take place, the
+        path defaults to the return value of ``get_default_cache()``.  (Which
+        is based on the ``PYTHON_EGG_CACHE`` environment variable, with various
+        platform-specific fallbacks.  See that routine's documentation for more
+        details.)
+
+        Resources are extracted to subdirectories of this path based upon
+        information given by the ``IResourceProvider``.  You may set this to a
+        temporary directory, but then you must call ``cleanup_resources()`` to
+        delete the extracted files when done.  There is no guarantee that
+        ``cleanup_resources()`` will be able to remove all extracted files.
+
+        (Note: you may not change the extraction path for a given resource
+        manager once resources have been extracted, unless you first call
+        ``cleanup_resources()``.)
+        """
+        if self.cached_files:
+            raise ValueError("Can't change extraction path, files already extracted")
+
+        self.extraction_path = path
+
+    def cleanup_resources(self, force=False):
+        """
+        Delete all extracted resource files and directories, returning a list
+        of the file and directory names that could not be successfully removed.
+        This function does not have any concurrency protection, so it should
+        generally only be called when the extraction path is a temporary
+        directory exclusive to a single process.  This method is not
+        automatically called; you must call it explicitly or register it as an
+        ``atexit`` function if you wish to ensure cleanup of a temporary
+        directory used for extractions.
+        """
+        # XXX
+
+
+def get_default_cache():
+    """
+    Return the ``PYTHON_EGG_CACHE`` environment variable
+    or a platform-relevant user cache dir for an app
+    named "Python-Eggs".
+    """
+    return os.environ.get('PYTHON_EGG_CACHE') or platformdirs.user_cache_dir(
+        appname='Python-Eggs'
+    )
+
+
+def safe_name(name):
+    """Convert an arbitrary string to a standard distribution name
+
+    Any runs of non-alphanumeric/. characters are replaced with a single '-'.
+    """
+    return re.sub('[^A-Za-z0-9.]+', '-', name)
+
+
+def safe_version(version):
+    """
+    Convert an arbitrary string to a standard version string
+    """
+    try:
+        # normalize the version
+        return str(packaging.version.Version(version))
+    except packaging.version.InvalidVersion:
+        version = version.replace(' ', '.')
+        return re.sub('[^A-Za-z0-9.]+', '-', version)
+
+
+def _forgiving_version(version):
+    """Fallback when ``safe_version`` is not safe enough
+    >>> parse_version(_forgiving_version('0.23ubuntu1'))
+    
+    >>> parse_version(_forgiving_version('0.23-'))
+    
+    >>> parse_version(_forgiving_version('0.-_'))
+    
+    >>> parse_version(_forgiving_version('42.+?1'))
+    
+    >>> parse_version(_forgiving_version('hello world'))
+    
+    """
+    version = version.replace(' ', '.')
+    match = _PEP440_FALLBACK.search(version)
+    if match:
+        safe = match["safe"]
+        rest = version[len(safe):]
+    else:
+        safe = "0"
+        rest = version
+    local = f"sanitized.{_safe_segment(rest)}".strip(".")
+    return f"{safe}.dev0+{local}"
+
+
+def _safe_segment(segment):
+    """Convert an arbitrary string into a safe segment"""
+    segment = re.sub('[^A-Za-z0-9.]+', '-', segment)
+    segment = re.sub('-[^A-Za-z0-9]+', '-', segment)
+    return re.sub(r'\.[^A-Za-z0-9]+', '.', segment).strip(".-")
+
+
+def safe_extra(extra):
+    """Convert an arbitrary string to a standard 'extra' name
+
+    Any runs of non-alphanumeric characters are replaced with a single '_',
+    and the result is always lowercased.
+    """
+    return re.sub('[^A-Za-z0-9.-]+', '_', extra).lower()
+
+
+def to_filename(name):
+    """Convert a project or version name to its filename-escaped form
+
+    Any '-' characters are currently replaced with '_'.
+    """
+    return name.replace('-', '_')
+
+
+def invalid_marker(text):
+    """
+    Validate text as a PEP 508 environment marker; return an exception
+    if invalid or False otherwise.
+    """
+    try:
+        evaluate_marker(text)
+    except SyntaxError as e:
+        e.filename = None
+        e.lineno = None
+        return e
+    return False
+
+
+def evaluate_marker(text, extra=None):
+    """
+    Evaluate a PEP 508 environment marker.
+    Return a boolean indicating the marker result in this environment.
+    Raise SyntaxError if marker is invalid.
+
+    This implementation uses the 'pyparsing' module.
+    """
+    try:
+        marker = packaging.markers.Marker(text)
+        return marker.evaluate()
+    except packaging.markers.InvalidMarker as e:
+        raise SyntaxError(e) from e
+
+
+class NullProvider:
+    """Try to implement resources and metadata for arbitrary PEP 302 loaders"""
+
+    egg_name = None
+    egg_info = None
+    loader = None
+
+    def __init__(self, module):
+        self.loader = getattr(module, '__loader__', None)
+        self.module_path = os.path.dirname(getattr(module, '__file__', ''))
+
+    def get_resource_filename(self, manager, resource_name):
+        return self._fn(self.module_path, resource_name)
+
+    def get_resource_stream(self, manager, resource_name):
+        return io.BytesIO(self.get_resource_string(manager, resource_name))
+
+    def get_resource_string(self, manager, resource_name):
+        return self._get(self._fn(self.module_path, resource_name))
+
+    def has_resource(self, resource_name):
+        return self._has(self._fn(self.module_path, resource_name))
+
+    def _get_metadata_path(self, name):
+        return self._fn(self.egg_info, name)
+
+    def has_metadata(self, name):
+        if not self.egg_info:
+            return self.egg_info
+
+        path = self._get_metadata_path(name)
+        return self._has(path)
+
+    def get_metadata(self, name):
+        if not self.egg_info:
+            return ""
+        path = self._get_metadata_path(name)
+        value = self._get(path)
+        try:
+            return value.decode('utf-8')
+        except UnicodeDecodeError as exc:
+            # Include the path in the error message to simplify
+            # troubleshooting, and without changing the exception type.
+            exc.reason += ' in {} file at path: {}'.format(name, path)
+            raise
+
+    def get_metadata_lines(self, name):
+        return yield_lines(self.get_metadata(name))
+
+    def resource_isdir(self, resource_name):
+        return self._isdir(self._fn(self.module_path, resource_name))
+
+    def metadata_isdir(self, name):
+        return self.egg_info and self._isdir(self._fn(self.egg_info, name))
+
+    def resource_listdir(self, resource_name):
+        return self._listdir(self._fn(self.module_path, resource_name))
+
+    def metadata_listdir(self, name):
+        if self.egg_info:
+            return self._listdir(self._fn(self.egg_info, name))
+        return []
+
+    def run_script(self, script_name, namespace):
+        script = 'scripts/' + script_name
+        if not self.has_metadata(script):
+            raise ResolutionError(
+                "Script {script!r} not found in metadata at {self.egg_info!r}".format(
+                    **locals()
+                ),
+            )
+        script_text = self.get_metadata(script).replace('\r\n', '\n')
+        script_text = script_text.replace('\r', '\n')
+        script_filename = self._fn(self.egg_info, script)
+        namespace['__file__'] = script_filename
+        if os.path.exists(script_filename):
+            with open(script_filename) as fid:
+                source = fid.read()
+            code = compile(source, script_filename, 'exec')
+            exec(code, namespace, namespace)
+        else:
+            from linecache import cache
+
+            cache[script_filename] = (
+                len(script_text),
+                0,
+                script_text.split('\n'),
+                script_filename,
+            )
+            script_code = compile(script_text, script_filename, 'exec')
+            exec(script_code, namespace, namespace)
+
+    def _has(self, path):
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _isdir(self, path):
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _listdir(self, path):
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _fn(self, base, resource_name):
+        self._validate_resource_path(resource_name)
+        if resource_name:
+            return os.path.join(base, *resource_name.split('/'))
+        return base
+
+    @staticmethod
+    def _validate_resource_path(path):
+        """
+        Validate the resource paths according to the docs.
+        https://setuptools.pypa.io/en/latest/pkg_resources.html#basic-resource-access
+
+        >>> warned = getfixture('recwarn')
+        >>> warnings.simplefilter('always')
+        >>> vrp = NullProvider._validate_resource_path
+        >>> vrp('foo/bar.txt')
+        >>> bool(warned)
+        False
+        >>> vrp('../foo/bar.txt')
+        >>> bool(warned)
+        True
+        >>> warned.clear()
+        >>> vrp('/foo/bar.txt')
+        >>> bool(warned)
+        True
+        >>> vrp('foo/../../bar.txt')
+        >>> bool(warned)
+        True
+        >>> warned.clear()
+        >>> vrp('foo/f../bar.txt')
+        >>> bool(warned)
+        False
+
+        Windows path separators are straight-up disallowed.
+        >>> vrp(r'\\foo/bar.txt')
+        Traceback (most recent call last):
+        ...
+        ValueError: Use of .. or absolute path in a resource path \
+is not allowed.
+
+        >>> vrp(r'C:\\foo/bar.txt')
+        Traceback (most recent call last):
+        ...
+        ValueError: Use of .. or absolute path in a resource path \
+is not allowed.
+
+        Blank values are allowed
+
+        >>> vrp('')
+        >>> bool(warned)
+        False
+
+        Non-string values are not.
+
+        >>> vrp(None)
+        Traceback (most recent call last):
+        ...
+        AttributeError: ...
+        """
+        invalid = (
+            os.path.pardir in path.split(posixpath.sep)
+            or posixpath.isabs(path)
+            or ntpath.isabs(path)
+        )
+        if not invalid:
+            return
+
+        msg = "Use of .. or absolute path in a resource path is not allowed."
+
+        # Aggressively disallow Windows absolute paths
+        if ntpath.isabs(path) and not posixpath.isabs(path):
+            raise ValueError(msg)
+
+        # for compatibility, warn; in future
+        # raise ValueError(msg)
+        issue_warning(
+            msg[:-1] + " and will raise exceptions in a future release.",
+            DeprecationWarning,
+        )
+
+    def _get(self, path):
+        if hasattr(self.loader, 'get_data'):
+            return self.loader.get_data(path)
+        raise NotImplementedError(
+            "Can't perform this operation for loaders without 'get_data()'"
+        )
+
+
+register_loader_type(object, NullProvider)
+
+
+def _parents(path):
+    """
+    yield all parents of path including path
+    """
+    last = None
+    while path != last:
+        yield path
+        last = path
+        path, _ = os.path.split(path)
+
+
+class EggProvider(NullProvider):
+    """Provider based on a virtual filesystem"""
+
+    def __init__(self, module):
+        super().__init__(module)
+        self._setup_prefix()
+
+    def _setup_prefix(self):
+        # Assume that metadata may be nested inside a "basket"
+        # of multiple eggs and use module_path instead of .archive.
+        eggs = filter(_is_egg_path, _parents(self.module_path))
+        egg = next(eggs, None)
+        egg and self._set_egg(egg)
+
+    def _set_egg(self, path):
+        self.egg_name = os.path.basename(path)
+        self.egg_info = os.path.join(path, 'EGG-INFO')
+        self.egg_root = path
+
+
+class DefaultProvider(EggProvider):
+    """Provides access to package resources in the filesystem"""
+
+    def _has(self, path):
+        return os.path.exists(path)
+
+    def _isdir(self, path):
+        return os.path.isdir(path)
+
+    def _listdir(self, path):
+        return os.listdir(path)
+
+    def get_resource_stream(self, manager, resource_name):
+        return open(self._fn(self.module_path, resource_name), 'rb')
+
+    def _get(self, path):
+        with open(path, 'rb') as stream:
+            return stream.read()
+
+    @classmethod
+    def _register(cls):
+        loader_names = (
+            'SourceFileLoader',
+            'SourcelessFileLoader',
+        )
+        for name in loader_names:
+            loader_cls = getattr(importlib_machinery, name, type(None))
+            register_loader_type(loader_cls, cls)
+
+
+DefaultProvider._register()
+
+
+class EmptyProvider(NullProvider):
+    """Provider that returns nothing for all requests"""
+
+    module_path = None
+
+    _isdir = _has = lambda self, path: False
+
+    def _get(self, path):
+        return ''
+
+    def _listdir(self, path):
+        return []
+
+    def __init__(self):
+        pass
+
+
+empty_provider = EmptyProvider()
+
+
+class ZipManifests(dict):
+    """
+    zip manifest builder
+    """
+
+    @classmethod
+    def build(cls, path):
+        """
+        Build a dictionary similar to the zipimport directory
+        caches, except instead of tuples, store ZipInfo objects.
+
+        Use a platform-specific path separator (os.sep) for the path keys
+        for compatibility with pypy on Windows.
+        """
+        with zipfile.ZipFile(path) as zfile:
+            items = (
+                (
+                    name.replace('/', os.sep),
+                    zfile.getinfo(name),
+                )
+                for name in zfile.namelist()
+            )
+            return dict(items)
+
+    load = build
+
+
+class MemoizedZipManifests(ZipManifests):
+    """
+    Memoized zipfile manifests.
+    """
+
+    manifest_mod = collections.namedtuple('manifest_mod', 'manifest mtime')
+
+    def load(self, path):
+        """
+        Load a manifest at path or return a suitable manifest already loaded.
+        """
+        path = os.path.normpath(path)
+        mtime = os.stat(path).st_mtime
+
+        if path not in self or self[path].mtime != mtime:
+            manifest = self.build(path)
+            self[path] = self.manifest_mod(manifest, mtime)
+
+        return self[path].manifest
+
+
+class ZipProvider(EggProvider):
+    """Resource support for zips and eggs"""
+
+    eagers = None
+    _zip_manifests = MemoizedZipManifests()
+
+    def __init__(self, module):
+        super().__init__(module)
+        self.zip_pre = self.loader.archive + os.sep
+
+    def _zipinfo_name(self, fspath):
+        # Convert a virtual filename (full path to file) into a zipfile subpath
+        # usable with the zipimport directory cache for our target archive
+        fspath = fspath.rstrip(os.sep)
+        if fspath == self.loader.archive:
+            return ''
+        if fspath.startswith(self.zip_pre):
+            return fspath[len(self.zip_pre) :]
+        raise AssertionError("%s is not a subpath of %s" % (fspath, self.zip_pre))
+
+    def _parts(self, zip_path):
+        # Convert a zipfile subpath into an egg-relative path part list.
+        # pseudo-fs path
+        fspath = self.zip_pre + zip_path
+        if fspath.startswith(self.egg_root + os.sep):
+            return fspath[len(self.egg_root) + 1 :].split(os.sep)
+        raise AssertionError("%s is not a subpath of %s" % (fspath, self.egg_root))
+
+    @property
+    def zipinfo(self):
+        return self._zip_manifests.load(self.loader.archive)
+
+    def get_resource_filename(self, manager, resource_name):
+        if not self.egg_name:
+            raise NotImplementedError(
+                "resource_filename() only supported for .egg, not .zip"
+            )
+        # no need to lock for extraction, since we use temp names
+        zip_path = self._resource_to_zip(resource_name)
+        eagers = self._get_eager_resources()
+        if '/'.join(self._parts(zip_path)) in eagers:
+            for name in eagers:
+                self._extract_resource(manager, self._eager_to_zip(name))
+        return self._extract_resource(manager, zip_path)
+
+    @staticmethod
+    def _get_date_and_size(zip_stat):
+        size = zip_stat.file_size
+        # ymdhms+wday, yday, dst
+        date_time = zip_stat.date_time + (0, 0, -1)
+        # 1980 offset already done
+        timestamp = time.mktime(date_time)
+        return timestamp, size
+
+    # FIXME: 'ZipProvider._extract_resource' is too complex (12)
+    def _extract_resource(self, manager, zip_path):  # noqa: C901
+        if zip_path in self._index():
+            for name in self._index()[zip_path]:
+                last = self._extract_resource(manager, os.path.join(zip_path, name))
+            # return the extracted directory name
+            return os.path.dirname(last)
+
+        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
+
+        if not WRITE_SUPPORT:
+            raise IOError(
+                '"os.rename" and "os.unlink" are not supported ' 'on this platform'
+            )
+        try:
+            real_path = manager.get_cache_path(self.egg_name, self._parts(zip_path))
+
+            if self._is_current(real_path, zip_path):
+                return real_path
+
+            outf, tmpnam = _mkstemp(
+                ".$extract",
+                dir=os.path.dirname(real_path),
+            )
+            os.write(outf, self.loader.get_data(zip_path))
+            os.close(outf)
+            utime(tmpnam, (timestamp, timestamp))
+            manager.postprocess(tmpnam, real_path)
+
+            try:
+                rename(tmpnam, real_path)
+
+            except os.error:
+                if os.path.isfile(real_path):
+                    if self._is_current(real_path, zip_path):
+                        # the file became current since it was checked above,
+                        #  so proceed.
+                        return real_path
+                    # Windows, del old file and retry
+                    elif os.name == 'nt':
+                        unlink(real_path)
+                        rename(tmpnam, real_path)
+                        return real_path
+                raise
+
+        except os.error:
+            # report a user-friendly error
+            manager.extraction_error()
+
+        return real_path
+
+    def _is_current(self, file_path, zip_path):
+        """
+        Return True if the file_path is current for this zip_path
+        """
+        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
+        if not os.path.isfile(file_path):
+            return False
+        stat = os.stat(file_path)
+        if stat.st_size != size or stat.st_mtime != timestamp:
+            return False
+        # check that the contents match
+        zip_contents = self.loader.get_data(zip_path)
+        with open(file_path, 'rb') as f:
+            file_contents = f.read()
+        return zip_contents == file_contents
+
+    def _get_eager_resources(self):
+        if self.eagers is None:
+            eagers = []
+            for name in ('native_libs.txt', 'eager_resources.txt'):
+                if self.has_metadata(name):
+                    eagers.extend(self.get_metadata_lines(name))
+            self.eagers = eagers
+        return self.eagers
+
+    def _index(self):
+        try:
+            return self._dirindex
+        except AttributeError:
+            ind = {}
+            for path in self.zipinfo:
+                parts = path.split(os.sep)
+                while parts:
+                    parent = os.sep.join(parts[:-1])
+                    if parent in ind:
+                        ind[parent].append(parts[-1])
+                        break
+                    else:
+                        ind[parent] = [parts.pop()]
+            self._dirindex = ind
+            return ind
+
+    def _has(self, fspath):
+        zip_path = self._zipinfo_name(fspath)
+        return zip_path in self.zipinfo or zip_path in self._index()
+
+    def _isdir(self, fspath):
+        return self._zipinfo_name(fspath) in self._index()
+
+    def _listdir(self, fspath):
+        return list(self._index().get(self._zipinfo_name(fspath), ()))
+
+    def _eager_to_zip(self, resource_name):
+        return self._zipinfo_name(self._fn(self.egg_root, resource_name))
+
+    def _resource_to_zip(self, resource_name):
+        return self._zipinfo_name(self._fn(self.module_path, resource_name))
+
+
+register_loader_type(zipimport.zipimporter, ZipProvider)
+
+
+class FileMetadata(EmptyProvider):
+    """Metadata handler for standalone PKG-INFO files
+
+    Usage::
+
+        metadata = FileMetadata("/path/to/PKG-INFO")
+
+    This provider rejects all data and metadata requests except for PKG-INFO,
+    which is treated as existing, and will be the contents of the file at
+    the provided location.
+    """
+
+    def __init__(self, path):
+        self.path = path
+
+    def _get_metadata_path(self, name):
+        return self.path
+
+    def has_metadata(self, name):
+        return name == 'PKG-INFO' and os.path.isfile(self.path)
+
+    def get_metadata(self, name):
+        if name != 'PKG-INFO':
+            raise KeyError("No metadata except PKG-INFO is available")
+
+        with io.open(self.path, encoding='utf-8', errors="replace") as f:
+            metadata = f.read()
+        self._warn_on_replacement(metadata)
+        return metadata
+
+    def _warn_on_replacement(self, metadata):
+        replacement_char = '�'
+        if replacement_char in metadata:
+            tmpl = "{self.path} could not be properly decoded in UTF-8"
+            msg = tmpl.format(**locals())
+            warnings.warn(msg)
+
+    def get_metadata_lines(self, name):
+        return yield_lines(self.get_metadata(name))
+
+
+class PathMetadata(DefaultProvider):
+    """Metadata provider for egg directories
+
+    Usage::
+
+        # Development eggs:
+
+        egg_info = "/path/to/PackageName.egg-info"
+        base_dir = os.path.dirname(egg_info)
+        metadata = PathMetadata(base_dir, egg_info)
+        dist_name = os.path.splitext(os.path.basename(egg_info))[0]
+        dist = Distribution(basedir, project_name=dist_name, metadata=metadata)
+
+        # Unpacked egg directories:
+
+        egg_path = "/path/to/PackageName-ver-pyver-etc.egg"
+        metadata = PathMetadata(egg_path, os.path.join(egg_path,'EGG-INFO'))
+        dist = Distribution.from_filename(egg_path, metadata=metadata)
+    """
+
+    def __init__(self, path, egg_info):
+        self.module_path = path
+        self.egg_info = egg_info
+
+
+class EggMetadata(ZipProvider):
+    """Metadata provider for .egg files"""
+
+    def __init__(self, importer):
+        """Create a metadata provider from a zipimporter"""
+
+        self.zip_pre = importer.archive + os.sep
+        self.loader = importer
+        if importer.prefix:
+            self.module_path = os.path.join(importer.archive, importer.prefix)
+        else:
+            self.module_path = importer.archive
+        self._setup_prefix()
+
+
+_declare_state('dict', _distribution_finders={})
+
+
+def register_finder(importer_type, distribution_finder):
+    """Register `distribution_finder` to find distributions in sys.path items
+
+    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
+    handler), and `distribution_finder` is a callable that, passed a path
+    item and the importer instance, yields ``Distribution`` instances found on
+    that path item.  See ``pkg_resources.find_on_path`` for an example."""
+    _distribution_finders[importer_type] = distribution_finder
+
+
+def find_distributions(path_item, only=False):
+    """Yield distributions accessible via `path_item`"""
+    importer = get_importer(path_item)
+    finder = _find_adapter(_distribution_finders, importer)
+    return finder(importer, path_item, only)
+
+
+def find_eggs_in_zip(importer, path_item, only=False):
+    """
+    Find eggs in zip files; possibly multiple nested eggs.
+    """
+    if importer.archive.endswith('.whl'):
+        # wheels are not supported with this finder
+        # they don't have PKG-INFO metadata, and won't ever contain eggs
+        return
+    metadata = EggMetadata(importer)
+    if metadata.has_metadata('PKG-INFO'):
+        yield Distribution.from_filename(path_item, metadata=metadata)
+    if only:
+        # don't yield nested distros
+        return
+    for subitem in metadata.resource_listdir(''):
+        if _is_egg_path(subitem):
+            subpath = os.path.join(path_item, subitem)
+            dists = find_eggs_in_zip(zipimport.zipimporter(subpath), subpath)
+            for dist in dists:
+                yield dist
+        elif subitem.lower().endswith(('.dist-info', '.egg-info')):
+            subpath = os.path.join(path_item, subitem)
+            submeta = EggMetadata(zipimport.zipimporter(subpath))
+            submeta.egg_info = subpath
+            yield Distribution.from_location(path_item, subitem, submeta)
+
+
+register_finder(zipimport.zipimporter, find_eggs_in_zip)
+
+
+def find_nothing(importer, path_item, only=False):
+    return ()
+
+
+register_finder(object, find_nothing)
+
+
+def find_on_path(importer, path_item, only=False):
+    """Yield distributions accessible on a sys.path directory"""
+    path_item = _normalize_cached(path_item)
+
+    if _is_unpacked_egg(path_item):
+        yield Distribution.from_filename(
+            path_item,
+            metadata=PathMetadata(path_item, os.path.join(path_item, 'EGG-INFO')),
+        )
+        return
+
+    entries = (os.path.join(path_item, child) for child in safe_listdir(path_item))
+
+    # scan for .egg and .egg-info in directory
+    for entry in sorted(entries):
+        fullpath = os.path.join(path_item, entry)
+        factory = dist_factory(path_item, entry, only)
+        for dist in factory(fullpath):
+            yield dist
+
+
+def dist_factory(path_item, entry, only):
+    """Return a dist_factory for the given entry."""
+    lower = entry.lower()
+    is_egg_info = lower.endswith('.egg-info')
+    is_dist_info = lower.endswith('.dist-info') and os.path.isdir(
+        os.path.join(path_item, entry)
+    )
+    is_meta = is_egg_info or is_dist_info
+    return (
+        distributions_from_metadata
+        if is_meta
+        else find_distributions
+        if not only and _is_egg_path(entry)
+        else resolve_egg_link
+        if not only and lower.endswith('.egg-link')
+        else NoDists()
+    )
+
+
+class NoDists:
+    """
+    >>> bool(NoDists())
+    False
+
+    >>> list(NoDists()('anything'))
+    []
+    """
+
+    def __bool__(self):
+        return False
+
+    def __call__(self, fullpath):
+        return iter(())
+
+
+def safe_listdir(path):
+    """
+    Attempt to list contents of path, but suppress some exceptions.
+    """
+    try:
+        return os.listdir(path)
+    except (PermissionError, NotADirectoryError):
+        pass
+    except OSError as e:
+        # Ignore the directory if does not exist, not a directory or
+        # permission denied
+        if e.errno not in (errno.ENOTDIR, errno.EACCES, errno.ENOENT):
+            raise
+    return ()
+
+
+def distributions_from_metadata(path):
+    root = os.path.dirname(path)
+    if os.path.isdir(path):
+        if len(os.listdir(path)) == 0:
+            # empty metadata dir; skip
+            return
+        metadata = PathMetadata(root, path)
+    else:
+        metadata = FileMetadata(path)
+    entry = os.path.basename(path)
+    yield Distribution.from_location(
+        root,
+        entry,
+        metadata,
+        precedence=DEVELOP_DIST,
+    )
+
+
+def non_empty_lines(path):
+    """
+    Yield non-empty lines from file at path
+    """
+    with open(path) as f:
+        for line in f:
+            line = line.strip()
+            if line:
+                yield line
+
+
+def resolve_egg_link(path):
+    """
+    Given a path to an .egg-link, resolve distributions
+    present in the referenced path.
+    """
+    referenced_paths = non_empty_lines(path)
+    resolved_paths = (
+        os.path.join(os.path.dirname(path), ref) for ref in referenced_paths
+    )
+    dist_groups = map(find_distributions, resolved_paths)
+    return next(dist_groups, ())
+
+
+if hasattr(pkgutil, 'ImpImporter'):
+    register_finder(pkgutil.ImpImporter, find_on_path)
+
+register_finder(importlib_machinery.FileFinder, find_on_path)
+
+_declare_state('dict', _namespace_handlers={})
+_declare_state('dict', _namespace_packages={})
+
+
+def register_namespace_handler(importer_type, namespace_handler):
+    """Register `namespace_handler` to declare namespace packages
+
+    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
+    handler), and `namespace_handler` is a callable like this::
+
+        def namespace_handler(importer, path_entry, moduleName, module):
+            # return a path_entry to use for child packages
+
+    Namespace handlers are only called if the importer object has already
+    agreed that it can handle the relevant path item, and they should only
+    return a subpath if the module __path__ does not already contain an
+    equivalent subpath.  For an example namespace handler, see
+    ``pkg_resources.file_ns_handler``.
+    """
+    _namespace_handlers[importer_type] = namespace_handler
+
+
+def _handle_ns(packageName, path_item):
+    """Ensure that named package includes a subpath of path_item (if needed)"""
+
+    importer = get_importer(path_item)
+    if importer is None:
+        return None
+
+    # use find_spec (PEP 451) and fall-back to find_module (PEP 302)
+    try:
+        spec = importer.find_spec(packageName)
+    except AttributeError:
+        # capture warnings due to #1111
+        with warnings.catch_warnings():
+            warnings.simplefilter("ignore")
+            loader = importer.find_module(packageName)
+    else:
+        loader = spec.loader if spec else None
+
+    if loader is None:
+        return None
+    module = sys.modules.get(packageName)
+    if module is None:
+        module = sys.modules[packageName] = types.ModuleType(packageName)
+        module.__path__ = []
+        _set_parent_ns(packageName)
+    elif not hasattr(module, '__path__'):
+        raise TypeError("Not a package:", packageName)
+    handler = _find_adapter(_namespace_handlers, importer)
+    subpath = handler(importer, path_item, packageName, module)
+    if subpath is not None:
+        path = module.__path__
+        path.append(subpath)
+        importlib.import_module(packageName)
+        _rebuild_mod_path(path, packageName, module)
+    return subpath
+
+
+def _rebuild_mod_path(orig_path, package_name, module):
+    """
+    Rebuild module.__path__ ensuring that all entries are ordered
+    corresponding to their sys.path order
+    """
+    sys_path = [_normalize_cached(p) for p in sys.path]
+
+    def safe_sys_path_index(entry):
+        """
+        Workaround for #520 and #513.
+        """
+        try:
+            return sys_path.index(entry)
+        except ValueError:
+            return float('inf')
+
+    def position_in_sys_path(path):
+        """
+        Return the ordinal of the path based on its position in sys.path
+        """
+        path_parts = path.split(os.sep)
+        module_parts = package_name.count('.') + 1
+        parts = path_parts[:-module_parts]
+        return safe_sys_path_index(_normalize_cached(os.sep.join(parts)))
+
+    new_path = sorted(orig_path, key=position_in_sys_path)
+    new_path = [_normalize_cached(p) for p in new_path]
+
+    if isinstance(module.__path__, list):
+        module.__path__[:] = new_path
+    else:
+        module.__path__ = new_path
+
+
+def declare_namespace(packageName):
+    """Declare that package 'packageName' is a namespace package"""
+
+    msg = (
+        f"Deprecated call to `pkg_resources.declare_namespace({packageName!r})`.\n"
+        "Implementing implicit namespace packages (as specified in PEP 420) "
+        "is preferred to `pkg_resources.declare_namespace`. "
+        "See https://setuptools.pypa.io/en/latest/references/"
+        "keywords.html#keyword-namespace-packages"
+    )
+    warnings.warn(msg, DeprecationWarning, stacklevel=2)
+
+    _imp.acquire_lock()
+    try:
+        if packageName in _namespace_packages:
+            return
+
+        path = sys.path
+        parent, _, _ = packageName.rpartition('.')
+
+        if parent:
+            declare_namespace(parent)
+            if parent not in _namespace_packages:
+                __import__(parent)
+            try:
+                path = sys.modules[parent].__path__
+            except AttributeError as e:
+                raise TypeError("Not a package:", parent) from e
+
+        # Track what packages are namespaces, so when new path items are added,
+        # they can be updated
+        _namespace_packages.setdefault(parent or None, []).append(packageName)
+        _namespace_packages.setdefault(packageName, [])
+
+        for path_item in path:
+            # Ensure all the parent's path items are reflected in the child,
+            # if they apply
+            _handle_ns(packageName, path_item)
+
+    finally:
+        _imp.release_lock()
+
+
+def fixup_namespace_packages(path_item, parent=None):
+    """Ensure that previously-declared namespace packages include path_item"""
+    _imp.acquire_lock()
+    try:
+        for package in _namespace_packages.get(parent, ()):
+            subpath = _handle_ns(package, path_item)
+            if subpath:
+                fixup_namespace_packages(subpath, package)
+    finally:
+        _imp.release_lock()
+
+
+def file_ns_handler(importer, path_item, packageName, module):
+    """Compute an ns-package subpath for a filesystem or zipfile importer"""
+
+    subpath = os.path.join(path_item, packageName.split('.')[-1])
+    normalized = _normalize_cached(subpath)
+    for item in module.__path__:
+        if _normalize_cached(item) == normalized:
+            break
+    else:
+        # Only return the path if it's not already there
+        return subpath
+
+
+if hasattr(pkgutil, 'ImpImporter'):
+    register_namespace_handler(pkgutil.ImpImporter, file_ns_handler)
+
+register_namespace_handler(zipimport.zipimporter, file_ns_handler)
+register_namespace_handler(importlib_machinery.FileFinder, file_ns_handler)
+
+
+def null_ns_handler(importer, path_item, packageName, module):
+    return None
+
+
+register_namespace_handler(object, null_ns_handler)
+
+
+def normalize_path(filename):
+    """Normalize a file/dir name for comparison purposes"""
+    return os.path.normcase(os.path.realpath(os.path.normpath(_cygwin_patch(filename))))
+
+
+def _cygwin_patch(filename):  # pragma: nocover
+    """
+    Contrary to POSIX 2008, on Cygwin, getcwd (3) contains
+    symlink components. Using
+    os.path.abspath() works around this limitation. A fix in os.getcwd()
+    would probably better, in Cygwin even more so, except
+    that this seems to be by design...
+    """
+    return os.path.abspath(filename) if sys.platform == 'cygwin' else filename
+
+
+def _normalize_cached(filename, _cache={}):
+    try:
+        return _cache[filename]
+    except KeyError:
+        _cache[filename] = result = normalize_path(filename)
+        return result
+
+
+def _is_egg_path(path):
+    """
+    Determine if given path appears to be an egg.
+    """
+    return _is_zip_egg(path) or _is_unpacked_egg(path)
+
+
+def _is_zip_egg(path):
+    return (
+        path.lower().endswith('.egg')
+        and os.path.isfile(path)
+        and zipfile.is_zipfile(path)
+    )
+
+
+def _is_unpacked_egg(path):
+    """
+    Determine if given path appears to be an unpacked egg.
+    """
+    return path.lower().endswith('.egg') and os.path.isfile(
+        os.path.join(path, 'EGG-INFO', 'PKG-INFO')
+    )
+
+
+def _set_parent_ns(packageName):
+    parts = packageName.split('.')
+    name = parts.pop()
+    if parts:
+        parent = '.'.join(parts)
+        setattr(sys.modules[parent], name, sys.modules[packageName])
+
+
+MODULE = re.compile(r"\w+(\.\w+)*$").match
+EGG_NAME = re.compile(
+    r"""
+    (?P[^-]+) (
+        -(?P[^-]+) (
+            -py(?P[^-]+) (
+                -(?P.+)
+            )?
+        )?
+    )?
+    """,
+    re.VERBOSE | re.IGNORECASE,
+).match
+
+
+class EntryPoint:
+    """Object representing an advertised importable object"""
+
+    def __init__(self, name, module_name, attrs=(), extras=(), dist=None):
+        if not MODULE(module_name):
+            raise ValueError("Invalid module name", module_name)
+        self.name = name
+        self.module_name = module_name
+        self.attrs = tuple(attrs)
+        self.extras = tuple(extras)
+        self.dist = dist
+
+    def __str__(self):
+        s = "%s = %s" % (self.name, self.module_name)
+        if self.attrs:
+            s += ':' + '.'.join(self.attrs)
+        if self.extras:
+            s += ' [%s]' % ','.join(self.extras)
+        return s
+
+    def __repr__(self):
+        return "EntryPoint.parse(%r)" % str(self)
+
+    def load(self, require=True, *args, **kwargs):
+        """
+        Require packages for this EntryPoint, then resolve it.
+        """
+        if not require or args or kwargs:
+            warnings.warn(
+                "Parameters to load are deprecated.  Call .resolve and "
+                ".require separately.",
+                PkgResourcesDeprecationWarning,
+                stacklevel=2,
+            )
+        if require:
+            self.require(*args, **kwargs)
+        return self.resolve()
+
+    def resolve(self):
+        """
+        Resolve the entry point from its module and attrs.
+        """
+        module = __import__(self.module_name, fromlist=['__name__'], level=0)
+        try:
+            return functools.reduce(getattr, self.attrs, module)
+        except AttributeError as exc:
+            raise ImportError(str(exc)) from exc
+
+    def require(self, env=None, installer=None):
+        if self.extras and not self.dist:
+            raise UnknownExtra("Can't require() without a distribution", self)
+
+        # Get the requirements for this entry point with all its extras and
+        # then resolve them. We have to pass `extras` along when resolving so
+        # that the working set knows what extras we want. Otherwise, for
+        # dist-info distributions, the working set will assume that the
+        # requirements for that extra are purely optional and skip over them.
+        reqs = self.dist.requires(self.extras)
+        items = working_set.resolve(reqs, env, installer, extras=self.extras)
+        list(map(working_set.add, items))
+
+    pattern = re.compile(
+        r'\s*'
+        r'(?P.+?)\s*'
+        r'=\s*'
+        r'(?P[\w.]+)\s*'
+        r'(:\s*(?P[\w.]+))?\s*'
+        r'(?P\[.*\])?\s*$'
+    )
+
+    @classmethod
+    def parse(cls, src, dist=None):
+        """Parse a single entry point from string `src`
+
+        Entry point syntax follows the form::
+
+            name = some.module:some.attr [extra1, extra2]
+
+        The entry name and module name are required, but the ``:attrs`` and
+        ``[extras]`` parts are optional
+        """
+        m = cls.pattern.match(src)
+        if not m:
+            msg = "EntryPoint must be in 'name=module:attrs [extras]' format"
+            raise ValueError(msg, src)
+        res = m.groupdict()
+        extras = cls._parse_extras(res['extras'])
+        attrs = res['attr'].split('.') if res['attr'] else ()
+        return cls(res['name'], res['module'], attrs, extras, dist)
+
+    @classmethod
+    def _parse_extras(cls, extras_spec):
+        if not extras_spec:
+            return ()
+        req = Requirement.parse('x' + extras_spec)
+        if req.specs:
+            raise ValueError()
+        return req.extras
+
+    @classmethod
+    def parse_group(cls, group, lines, dist=None):
+        """Parse an entry point group"""
+        if not MODULE(group):
+            raise ValueError("Invalid group name", group)
+        this = {}
+        for line in yield_lines(lines):
+            ep = cls.parse(line, dist)
+            if ep.name in this:
+                raise ValueError("Duplicate entry point", group, ep.name)
+            this[ep.name] = ep
+        return this
+
+    @classmethod
+    def parse_map(cls, data, dist=None):
+        """Parse a map of entry point groups"""
+        if isinstance(data, dict):
+            data = data.items()
+        else:
+            data = split_sections(data)
+        maps = {}
+        for group, lines in data:
+            if group is None:
+                if not lines:
+                    continue
+                raise ValueError("Entry points must be listed in groups")
+            group = group.strip()
+            if group in maps:
+                raise ValueError("Duplicate group name", group)
+            maps[group] = cls.parse_group(group, lines, dist)
+        return maps
+
+
+def _version_from_file(lines):
+    """
+    Given an iterable of lines from a Metadata file, return
+    the value of the Version field, if present, or None otherwise.
+    """
+
+    def is_version_line(line):
+        return line.lower().startswith('version:')
+
+    version_lines = filter(is_version_line, lines)
+    line = next(iter(version_lines), '')
+    _, _, value = line.partition(':')
+    return safe_version(value.strip()) or None
+
+
+class Distribution:
+    """Wrap an actual or potential sys.path entry w/metadata"""
+
+    PKG_INFO = 'PKG-INFO'
+
+    def __init__(
+        self,
+        location=None,
+        metadata=None,
+        project_name=None,
+        version=None,
+        py_version=PY_MAJOR,
+        platform=None,
+        precedence=EGG_DIST,
+    ):
+        self.project_name = safe_name(project_name or 'Unknown')
+        if version is not None:
+            self._version = safe_version(version)
+        self.py_version = py_version
+        self.platform = platform
+        self.location = location
+        self.precedence = precedence
+        self._provider = metadata or empty_provider
+
+    @classmethod
+    def from_location(cls, location, basename, metadata=None, **kw):
+        project_name, version, py_version, platform = [None] * 4
+        basename, ext = os.path.splitext(basename)
+        if ext.lower() in _distributionImpl:
+            cls = _distributionImpl[ext.lower()]
+
+            match = EGG_NAME(basename)
+            if match:
+                project_name, version, py_version, platform = match.group(
+                    'name', 'ver', 'pyver', 'plat'
+                )
+        return cls(
+            location,
+            metadata,
+            project_name=project_name,
+            version=version,
+            py_version=py_version,
+            platform=platform,
+            **kw,
+        )._reload_version()
+
+    def _reload_version(self):
+        return self
+
+    @property
+    def hashcmp(self):
+        return (
+            self._forgiving_parsed_version,
+            self.precedence,
+            self.key,
+            self.location,
+            self.py_version or '',
+            self.platform or '',
+        )
+
+    def __hash__(self):
+        return hash(self.hashcmp)
+
+    def __lt__(self, other):
+        return self.hashcmp < other.hashcmp
+
+    def __le__(self, other):
+        return self.hashcmp <= other.hashcmp
+
+    def __gt__(self, other):
+        return self.hashcmp > other.hashcmp
+
+    def __ge__(self, other):
+        return self.hashcmp >= other.hashcmp
+
+    def __eq__(self, other):
+        if not isinstance(other, self.__class__):
+            # It's not a Distribution, so they are not equal
+            return False
+        return self.hashcmp == other.hashcmp
+
+    def __ne__(self, other):
+        return not self == other
+
+    # These properties have to be lazy so that we don't have to load any
+    # metadata until/unless it's actually needed.  (i.e., some distributions
+    # may not know their name or version without loading PKG-INFO)
+
+    @property
+    def key(self):
+        try:
+            return self._key
+        except AttributeError:
+            self._key = key = self.project_name.lower()
+            return key
+
+    @property
+    def parsed_version(self):
+        if not hasattr(self, "_parsed_version"):
+            try:
+                self._parsed_version = parse_version(self.version)
+            except packaging.version.InvalidVersion as ex:
+                info = f"(package: {self.project_name})"
+                if hasattr(ex, "add_note"):
+                    ex.add_note(info)  # PEP 678
+                    raise
+                raise packaging.version.InvalidVersion(f"{str(ex)} {info}") from None
+
+        return self._parsed_version
+
+    @property
+    def _forgiving_parsed_version(self):
+        try:
+            return self.parsed_version
+        except packaging.version.InvalidVersion as ex:
+            self._parsed_version = parse_version(_forgiving_version(self.version))
+
+            notes = "\n".join(getattr(ex, "__notes__", []))  # PEP 678
+            msg = f"""!!\n\n
+            *************************************************************************
+            {str(ex)}\n{notes}
+
+            This is a long overdue deprecation.
+            For the time being, `pkg_resources` will use `{self._parsed_version}`
+            as a replacement to avoid breaking existing environments,
+            but no future compatibility is guaranteed.
+
+            If you maintain package {self.project_name} you should implement
+            the relevant changes to adequate the project to PEP 440 immediately.
+            *************************************************************************
+            \n\n!!
+            """
+            warnings.warn(msg, DeprecationWarning)
+
+            return self._parsed_version
+
+    @property
+    def version(self):
+        try:
+            return self._version
+        except AttributeError as e:
+            version = self._get_version()
+            if version is None:
+                path = self._get_metadata_path_for_display(self.PKG_INFO)
+                msg = ("Missing 'Version:' header and/or {} file at path: {}").format(
+                    self.PKG_INFO, path
+                )
+                raise ValueError(msg, self) from e
+
+            return version
+
+    @property
+    def _dep_map(self):
+        """
+        A map of extra to its list of (direct) requirements
+        for this distribution, including the null extra.
+        """
+        try:
+            return self.__dep_map
+        except AttributeError:
+            self.__dep_map = self._filter_extras(self._build_dep_map())
+        return self.__dep_map
+
+    @staticmethod
+    def _filter_extras(dm):
+        """
+        Given a mapping of extras to dependencies, strip off
+        environment markers and filter out any dependencies
+        not matching the markers.
+        """
+        for extra in list(filter(None, dm)):
+            new_extra = extra
+            reqs = dm.pop(extra)
+            new_extra, _, marker = extra.partition(':')
+            fails_marker = marker and (
+                invalid_marker(marker) or not evaluate_marker(marker)
+            )
+            if fails_marker:
+                reqs = []
+            new_extra = safe_extra(new_extra) or None
+
+            dm.setdefault(new_extra, []).extend(reqs)
+        return dm
+
+    def _build_dep_map(self):
+        dm = {}
+        for name in 'requires.txt', 'depends.txt':
+            for extra, reqs in split_sections(self._get_metadata(name)):
+                dm.setdefault(extra, []).extend(parse_requirements(reqs))
+        return dm
+
+    def requires(self, extras=()):
+        """List of Requirements needed for this distro if `extras` are used"""
+        dm = self._dep_map
+        deps = []
+        deps.extend(dm.get(None, ()))
+        for ext in extras:
+            try:
+                deps.extend(dm[safe_extra(ext)])
+            except KeyError as e:
+                raise UnknownExtra(
+                    "%s has no such extra feature %r" % (self, ext)
+                ) from e
+        return deps
+
+    def _get_metadata_path_for_display(self, name):
+        """
+        Return the path to the given metadata file, if available.
+        """
+        try:
+            # We need to access _get_metadata_path() on the provider object
+            # directly rather than through this class's __getattr__()
+            # since _get_metadata_path() is marked private.
+            path = self._provider._get_metadata_path(name)
+
+        # Handle exceptions e.g. in case the distribution's metadata
+        # provider doesn't support _get_metadata_path().
+        except Exception:
+            return '[could not detect]'
+
+        return path
+
+    def _get_metadata(self, name):
+        if self.has_metadata(name):
+            for line in self.get_metadata_lines(name):
+                yield line
+
+    def _get_version(self):
+        lines = self._get_metadata(self.PKG_INFO)
+        version = _version_from_file(lines)
+
+        return version
+
+    def activate(self, path=None, replace=False):
+        """Ensure distribution is importable on `path` (default=sys.path)"""
+        if path is None:
+            path = sys.path
+        self.insert_on(path, replace=replace)
+        if path is sys.path:
+            fixup_namespace_packages(self.location)
+            for pkg in self._get_metadata('namespace_packages.txt'):
+                if pkg in sys.modules:
+                    declare_namespace(pkg)
+
+    def egg_name(self):
+        """Return what this distribution's standard .egg filename should be"""
+        filename = "%s-%s-py%s" % (
+            to_filename(self.project_name),
+            to_filename(self.version),
+            self.py_version or PY_MAJOR,
+        )
+
+        if self.platform:
+            filename += '-' + self.platform
+        return filename
+
+    def __repr__(self):
+        if self.location:
+            return "%s (%s)" % (self, self.location)
+        else:
+            return str(self)
+
+    def __str__(self):
+        try:
+            version = getattr(self, 'version', None)
+        except ValueError:
+            version = None
+        version = version or "[unknown version]"
+        return "%s %s" % (self.project_name, version)
+
+    def __getattr__(self, attr):
+        """Delegate all unrecognized public attributes to .metadata provider"""
+        if attr.startswith('_'):
+            raise AttributeError(attr)
+        return getattr(self._provider, attr)
+
+    def __dir__(self):
+        return list(
+            set(super(Distribution, self).__dir__())
+            | set(attr for attr in self._provider.__dir__() if not attr.startswith('_'))
+        )
+
+    @classmethod
+    def from_filename(cls, filename, metadata=None, **kw):
+        return cls.from_location(
+            _normalize_cached(filename), os.path.basename(filename), metadata, **kw
+        )
+
+    def as_requirement(self):
+        """Return a ``Requirement`` that matches this distribution exactly"""
+        if isinstance(self.parsed_version, packaging.version.Version):
+            spec = "%s==%s" % (self.project_name, self.parsed_version)
+        else:
+            spec = "%s===%s" % (self.project_name, self.parsed_version)
+
+        return Requirement.parse(spec)
+
+    def load_entry_point(self, group, name):
+        """Return the `name` entry point of `group` or raise ImportError"""
+        ep = self.get_entry_info(group, name)
+        if ep is None:
+            raise ImportError("Entry point %r not found" % ((group, name),))
+        return ep.load()
+
+    def get_entry_map(self, group=None):
+        """Return the entry point map for `group`, or the full entry map"""
+        try:
+            ep_map = self._ep_map
+        except AttributeError:
+            ep_map = self._ep_map = EntryPoint.parse_map(
+                self._get_metadata('entry_points.txt'), self
+            )
+        if group is not None:
+            return ep_map.get(group, {})
+        return ep_map
+
+    def get_entry_info(self, group, name):
+        """Return the EntryPoint object for `group`+`name`, or ``None``"""
+        return self.get_entry_map(group).get(name)
+
+    # FIXME: 'Distribution.insert_on' is too complex (13)
+    def insert_on(self, path, loc=None, replace=False):  # noqa: C901
+        """Ensure self.location is on path
+
+        If replace=False (default):
+            - If location is already in path anywhere, do nothing.
+            - Else:
+              - If it's an egg and its parent directory is on path,
+                insert just ahead of the parent.
+              - Else: add to the end of path.
+        If replace=True:
+            - If location is already on path anywhere (not eggs)
+              or higher priority than its parent (eggs)
+              do nothing.
+            - Else:
+              - If it's an egg and its parent directory is on path,
+                insert just ahead of the parent,
+                removing any lower-priority entries.
+              - Else: add it to the front of path.
+        """
+
+        loc = loc or self.location
+        if not loc:
+            return
+
+        nloc = _normalize_cached(loc)
+        bdir = os.path.dirname(nloc)
+        npath = [(p and _normalize_cached(p) or p) for p in path]
+
+        for p, item in enumerate(npath):
+            if item == nloc:
+                if replace:
+                    break
+                else:
+                    # don't modify path (even removing duplicates) if
+                    # found and not replace
+                    return
+            elif item == bdir and self.precedence == EGG_DIST:
+                # if it's an .egg, give it precedence over its directory
+                # UNLESS it's already been added to sys.path and replace=False
+                if (not replace) and nloc in npath[p:]:
+                    return
+                if path is sys.path:
+                    self.check_version_conflict()
+                path.insert(p, loc)
+                npath.insert(p, nloc)
+                break
+        else:
+            if path is sys.path:
+                self.check_version_conflict()
+            if replace:
+                path.insert(0, loc)
+            else:
+                path.append(loc)
+            return
+
+        # p is the spot where we found or inserted loc; now remove duplicates
+        while True:
+            try:
+                np = npath.index(nloc, p + 1)
+            except ValueError:
+                break
+            else:
+                del npath[np], path[np]
+                # ha!
+                p = np
+
+        return
+
+    def check_version_conflict(self):
+        if self.key == 'setuptools':
+            # ignore the inevitable setuptools self-conflicts  :(
+            return
+
+        nsp = dict.fromkeys(self._get_metadata('namespace_packages.txt'))
+        loc = normalize_path(self.location)
+        for modname in self._get_metadata('top_level.txt'):
+            if (
+                modname not in sys.modules
+                or modname in nsp
+                or modname in _namespace_packages
+            ):
+                continue
+            if modname in ('pkg_resources', 'setuptools', 'site'):
+                continue
+            fn = getattr(sys.modules[modname], '__file__', None)
+            if fn and (
+                normalize_path(fn).startswith(loc) or fn.startswith(self.location)
+            ):
+                continue
+            issue_warning(
+                "Module %s was already imported from %s, but %s is being added"
+                " to sys.path" % (modname, fn, self.location),
+            )
+
+    def has_version(self):
+        try:
+            self.version
+        except ValueError:
+            issue_warning("Unbuilt egg for " + repr(self))
+            return False
+        except SystemError:
+            # TODO: remove this except clause when python/cpython#103632 is fixed.
+            return False
+        return True
+
+    def clone(self, **kw):
+        """Copy this distribution, substituting in any changed keyword args"""
+        names = 'project_name version py_version platform location precedence'
+        for attr in names.split():
+            kw.setdefault(attr, getattr(self, attr, None))
+        kw.setdefault('metadata', self._provider)
+        return self.__class__(**kw)
+
+    @property
+    def extras(self):
+        return [dep for dep in self._dep_map if dep]
+
+
+class EggInfoDistribution(Distribution):
+    def _reload_version(self):
+        """
+        Packages installed by distutils (e.g. numpy or scipy),
+        which uses an old safe_version, and so
+        their version numbers can get mangled when
+        converted to filenames (e.g., 1.11.0.dev0+2329eae to
+        1.11.0.dev0_2329eae). These distributions will not be
+        parsed properly
+        downstream by Distribution and safe_version, so
+        take an extra step and try to get the version number from
+        the metadata file itself instead of the filename.
+        """
+        md_version = self._get_version()
+        if md_version:
+            self._version = md_version
+        return self
+
+
+class DistInfoDistribution(Distribution):
+    """
+    Wrap an actual or potential sys.path entry
+    w/metadata, .dist-info style.
+    """
+
+    PKG_INFO = 'METADATA'
+    EQEQ = re.compile(r"([\(,])\s*(\d.*?)\s*([,\)])")
+
+    @property
+    def _parsed_pkg_info(self):
+        """Parse and cache metadata"""
+        try:
+            return self._pkg_info
+        except AttributeError:
+            metadata = self.get_metadata(self.PKG_INFO)
+            self._pkg_info = email.parser.Parser().parsestr(metadata)
+            return self._pkg_info
+
+    @property
+    def _dep_map(self):
+        try:
+            return self.__dep_map
+        except AttributeError:
+            self.__dep_map = self._compute_dependencies()
+            return self.__dep_map
+
+    def _compute_dependencies(self):
+        """Recompute this distribution's dependencies."""
+        dm = self.__dep_map = {None: []}
+
+        reqs = []
+        # Including any condition expressions
+        for req in self._parsed_pkg_info.get_all('Requires-Dist') or []:
+            reqs.extend(parse_requirements(req))
+
+        def reqs_for_extra(extra):
+            for req in reqs:
+                if not req.marker or req.marker.evaluate({'extra': extra}):
+                    yield req
+
+        common = types.MappingProxyType(dict.fromkeys(reqs_for_extra(None)))
+        dm[None].extend(common)
+
+        for extra in self._parsed_pkg_info.get_all('Provides-Extra') or []:
+            s_extra = safe_extra(extra.strip())
+            dm[s_extra] = [r for r in reqs_for_extra(extra) if r not in common]
+
+        return dm
+
+
+_distributionImpl = {
+    '.egg': Distribution,
+    '.egg-info': EggInfoDistribution,
+    '.dist-info': DistInfoDistribution,
+}
+
+
+def issue_warning(*args, **kw):
+    level = 1
+    g = globals()
+    try:
+        # find the first stack frame that is *not* code in
+        # the pkg_resources module, to use for the warning
+        while sys._getframe(level).f_globals is g:
+            level += 1
+    except ValueError:
+        pass
+    warnings.warn(stacklevel=level + 1, *args, **kw)
+
+
+def parse_requirements(strs):
+    """
+    Yield ``Requirement`` objects for each specification in `strs`.
+
+    `strs` must be a string, or a (possibly-nested) iterable thereof.
+    """
+    return map(Requirement, join_continuation(map(drop_comment, yield_lines(strs))))
+
+
+class RequirementParseError(packaging.requirements.InvalidRequirement):
+    "Compatibility wrapper for InvalidRequirement"
+
+
+class Requirement(packaging.requirements.Requirement):
+    def __init__(self, requirement_string):
+        """DO NOT CALL THIS UNDOCUMENTED METHOD; use Requirement.parse()!"""
+        super(Requirement, self).__init__(requirement_string)
+        self.unsafe_name = self.name
+        project_name = safe_name(self.name)
+        self.project_name, self.key = project_name, project_name.lower()
+        self.specs = [(spec.operator, spec.version) for spec in self.specifier]
+        self.extras = tuple(map(safe_extra, self.extras))
+        self.hashCmp = (
+            self.key,
+            self.url,
+            self.specifier,
+            frozenset(self.extras),
+            str(self.marker) if self.marker else None,
+        )
+        self.__hash = hash(self.hashCmp)
+
+    def __eq__(self, other):
+        return isinstance(other, Requirement) and self.hashCmp == other.hashCmp
+
+    def __ne__(self, other):
+        return not self == other
+
+    def __contains__(self, item):
+        if isinstance(item, Distribution):
+            if item.key != self.key:
+                return False
+
+            item = item.version
+
+        # Allow prereleases always in order to match the previous behavior of
+        # this method. In the future this should be smarter and follow PEP 440
+        # more accurately.
+        return self.specifier.contains(item, prereleases=True)
+
+    def __hash__(self):
+        return self.__hash
+
+    def __repr__(self):
+        return "Requirement.parse(%r)" % str(self)
+
+    @staticmethod
+    def parse(s):
+        (req,) = parse_requirements(s)
+        return req
+
+
+def _always_object(classes):
+    """
+    Ensure object appears in the mro even
+    for old-style classes.
+    """
+    if object not in classes:
+        return classes + (object,)
+    return classes
+
+
+def _find_adapter(registry, ob):
+    """Return an adapter factory for `ob` from `registry`"""
+    types = _always_object(inspect.getmro(getattr(ob, '__class__', type(ob))))
+    for t in types:
+        if t in registry:
+            return registry[t]
+
+
+def ensure_directory(path):
+    """Ensure that the parent directory of `path` exists"""
+    dirname = os.path.dirname(path)
+    os.makedirs(dirname, exist_ok=True)
+
+
+def _bypass_ensure_directory(path):
+    """Sandbox-bypassing version of ensure_directory()"""
+    if not WRITE_SUPPORT:
+        raise IOError('"os.mkdir" not supported on this platform.')
+    dirname, filename = split(path)
+    if dirname and filename and not isdir(dirname):
+        _bypass_ensure_directory(dirname)
+        try:
+            mkdir(dirname, 0o755)
+        except FileExistsError:
+            pass
+
+
+def split_sections(s):
+    """Split a string or iterable thereof into (section, content) pairs
+
+    Each ``section`` is a stripped version of the section header ("[section]")
+    and each ``content`` is a list of stripped lines excluding blank lines and
+    comment-only lines.  If there are any such lines before the first section
+    header, they're returned in a first ``section`` of ``None``.
+    """
+    section = None
+    content = []
+    for line in yield_lines(s):
+        if line.startswith("["):
+            if line.endswith("]"):
+                if section or content:
+                    yield section, content
+                section = line[1:-1].strip()
+                content = []
+            else:
+                raise ValueError("Invalid section heading", line)
+        else:
+            content.append(line)
+
+    # wrap up last segment
+    yield section, content
+
+
+def _mkstemp(*args, **kw):
+    old_open = os.open
+    try:
+        # temporarily bypass sandboxing
+        os.open = os_open
+        return tempfile.mkstemp(*args, **kw)
+    finally:
+        # and then put it back
+        os.open = old_open
+
+
+# Silence the PEP440Warning by default, so that end users don't get hit by it
+# randomly just because they use pkg_resources. We want to append the rule
+# because we want earlier uses of filterwarnings to take precedence over this
+# one.
+warnings.filterwarnings("ignore", category=PEP440Warning, append=True)
+
+
+# from jaraco.functools 1.3
+def _call_aside(f, *args, **kwargs):
+    f(*args, **kwargs)
+    return f
+
+
+@_call_aside
+def _initialize(g=globals()):
+    "Set up global resource manager (deliberately not state-saved)"
+    manager = ResourceManager()
+    g['_manager'] = manager
+    g.update(
+        (name, getattr(manager, name))
+        for name in dir(manager)
+        if not name.startswith('_')
+    )
+
+
+class PkgResourcesDeprecationWarning(Warning):
+    """
+    Base class for warning about deprecations in ``pkg_resources``
+
+    This class is not derived from ``DeprecationWarning``, and as such is
+    visible by default.
+    """
+
+
+@_call_aside
+def _initialize_master_working_set():
+    """
+    Prepare the master working set and make the ``require()``
+    API available.
+
+    This function has explicit effects on the global state
+    of pkg_resources. It is intended to be invoked once at
+    the initialization of this module.
+
+    Invocation by other packages is unsupported and done
+    at their own risk.
+    """
+    working_set = WorkingSet._build_master()
+    _declare_state('object', working_set=working_set)
+
+    require = working_set.require
+    iter_entry_points = working_set.iter_entry_points
+    add_activation_listener = working_set.subscribe
+    run_script = working_set.run_script
+    # backward compatibility
+    run_main = run_script
+    # Activate all distributions already on sys.path with replace=False and
+    # ensure that all distributions added to the working set in the future
+    # (e.g. by calling ``require()``) will get activated as well,
+    # with higher priority (replace=True).
+    tuple(dist.activate(replace=False) for dist in working_set)
+    add_activation_listener(
+        lambda dist: dist.activate(replace=True),
+        existing=False,
+    )
+    working_set.entries = []
+    # match order
+    list(map(working_set.add_entry, sys.path))
+    globals().update(locals())
diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..4f35c2df127d0706e8e0419cdcab3f09c4b397e6
GIT binary patch
literal 146526
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

%0yrcA%4 z%)g;({~Ohtrh0!v)qkm?={`72OZUO3n`%?;tg$9-tXVpcF}7UOZEEZlwl5jVUU7Z; zyEB_j6kWdAMmcKdRg0zt(^_qR#(w0QbyKBxYOdKHxU6&~*jC-%HOl!&_f0KbJ>T~C J6h29N{~y8$@fQF9 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..427f2c97a83190f92edca3b82c0dd3623afed324 GIT binary patch literal 88308 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 C7$Wij literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c103976ed1a50700db2b3a6f3f4436bcbe973ed GIT binary patch literal 30418 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 V6>pw31k0AVf>oWGFK0;L{{b!Ztk?hm literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ff4faf80441f568af4b943376afd996c4e3b011 GIT binary patch literal 51913 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py new file mode 100644 index 00000000..e93dc27a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py @@ -0,0 +1,1138 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import absolute_import + +import os +import re +import shutil +import sys + +try: + import ssl +except ImportError: # pragma: no cover + ssl = None + +if sys.version_info[0] < 3: # pragma: no cover + from StringIO import StringIO + string_types = basestring, + text_type = unicode + from types import FileType as file_type + import __builtin__ as builtins + import ConfigParser as configparser + from urlparse import urlparse, urlunparse, urljoin, urlsplit, urlunsplit + from urllib import (urlretrieve, quote as _quote, unquote, url2pathname, + pathname2url, ContentTooShortError, splittype) + + def quote(s): + if isinstance(s, unicode): + s = s.encode('utf-8') + return _quote(s) + + import urllib2 + from urllib2 import (Request, urlopen, URLError, HTTPError, + HTTPBasicAuthHandler, HTTPPasswordMgr, HTTPHandler, + HTTPRedirectHandler, build_opener) + if ssl: + from urllib2 import HTTPSHandler + import httplib + import xmlrpclib + import Queue as queue + from HTMLParser import HTMLParser + import htmlentitydefs + raw_input = raw_input + from itertools import ifilter as filter + from itertools import ifilterfalse as filterfalse + + # Leaving this around for now, in case it needs resurrecting in some way + # _userprog = None + # def splituser(host): + # """splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'.""" + # global _userprog + # if _userprog is None: + # import re + # _userprog = re.compile('^(.*)@(.*)$') + + # match = _userprog.match(host) + # if match: return match.group(1, 2) + # return None, host + +else: # pragma: no cover + from io import StringIO + string_types = str, + text_type = str + from io import TextIOWrapper as file_type + import builtins + import configparser + from urllib.parse import (urlparse, urlunparse, urljoin, quote, unquote, + urlsplit, urlunsplit, splittype) + from urllib.request import (urlopen, urlretrieve, Request, url2pathname, + pathname2url, HTTPBasicAuthHandler, + HTTPPasswordMgr, HTTPHandler, + HTTPRedirectHandler, build_opener) + if ssl: + from urllib.request import HTTPSHandler + from urllib.error import HTTPError, URLError, ContentTooShortError + import http.client as httplib + import urllib.request as urllib2 + import xmlrpc.client as xmlrpclib + import queue + from html.parser import HTMLParser + import html.entities as htmlentitydefs + raw_input = input + from itertools import filterfalse + filter = filter + +try: + from ssl import match_hostname, CertificateError +except ImportError: # pragma: no cover + + class CertificateError(ValueError): + pass + + def _dnsname_match(dn, hostname, max_wildcards=1): + """Matching according to RFC 6125, section 6.4.3 + + http://tools.ietf.org/html/rfc6125#section-6.4.3 + """ + pats = [] + if not dn: + return False + + parts = dn.split('.') + leftmost, remainder = parts[0], parts[1:] + + wildcards = leftmost.count('*') + if wildcards > max_wildcards: + # Issue #17980: avoid denials of service by refusing more + # than one wildcard per fragment. A survey of established + # policy among SSL implementations showed it to be a + # reasonable choice. + raise CertificateError( + "too many wildcards in certificate DNS name: " + repr(dn)) + + # speed up common case w/o wildcards + if not wildcards: + return dn.lower() == hostname.lower() + + # RFC 6125, section 6.4.3, subitem 1. + # The client SHOULD NOT attempt to match a presented identifier in which + # the wildcard character comprises a label other than the left-most label. + if leftmost == '*': + # When '*' is a fragment by itself, it matches a non-empty dotless + # fragment. + pats.append('[^.]+') + elif leftmost.startswith('xn--') or hostname.startswith('xn--'): + # RFC 6125, section 6.4.3, subitem 3. + # The client SHOULD NOT attempt to match a presented identifier + # where the wildcard character is embedded within an A-label or + # U-label of an internationalized domain name. + pats.append(re.escape(leftmost)) + else: + # Otherwise, '*' matches any dotless string, e.g. www* + pats.append(re.escape(leftmost).replace(r'\*', '[^.]*')) + + # add the remaining fragments, ignore any wildcards + for frag in remainder: + pats.append(re.escape(frag)) + + pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE) + return pat.match(hostname) + + def match_hostname(cert, hostname): + """Verify that *cert* (in decoded format as returned by + SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125 + rules are followed, but IP addresses are not accepted for *hostname*. + + CertificateError is raised on failure. On success, the function + returns nothing. + """ + if not cert: + raise ValueError("empty or no certificate, match_hostname needs a " + "SSL socket or SSL context with either " + "CERT_OPTIONAL or CERT_REQUIRED") + dnsnames = [] + san = cert.get('subjectAltName', ()) + for key, value in san: + if key == 'DNS': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if not dnsnames: + # The subject is only checked when there is no dNSName entry + # in subjectAltName + for sub in cert.get('subject', ()): + for key, value in sub: + # XXX according to RFC 2818, the most specific Common Name + # must be used. + if key == 'commonName': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if len(dnsnames) > 1: + raise CertificateError("hostname %r " + "doesn't match either of %s" % + (hostname, ', '.join(map(repr, dnsnames)))) + elif len(dnsnames) == 1: + raise CertificateError("hostname %r " + "doesn't match %r" % + (hostname, dnsnames[0])) + else: + raise CertificateError("no appropriate commonName or " + "subjectAltName fields were found") + + +try: + from types import SimpleNamespace as Container +except ImportError: # pragma: no cover + + class Container(object): + """ + A generic container for when multiple values need to be returned + """ + + def __init__(self, **kwargs): + self.__dict__.update(kwargs) + + +try: + from shutil import which +except ImportError: # pragma: no cover + # Implementation from Python 3.3 + def which(cmd, mode=os.F_OK | os.X_OK, path=None): + """Given a command, mode, and a PATH string, return the path which + conforms to the given mode on the PATH, or None if there is no such + file. + + `mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result + of os.environ.get("PATH"), or can be overridden with a custom search + path. + + """ + + # Check that a given file can be accessed with the correct mode. + # Additionally check that `file` is not a directory, as on Windows + # directories pass the os.access check. + def _access_check(fn, mode): + return (os.path.exists(fn) and os.access(fn, mode) + and not os.path.isdir(fn)) + + # If we're given a path with a directory part, look it up directly rather + # than referring to PATH directories. This includes checking relative to the + # current directory, e.g. ./script + if os.path.dirname(cmd): + if _access_check(cmd, mode): + return cmd + return None + + if path is None: + path = os.environ.get("PATH", os.defpath) + if not path: + return None + path = path.split(os.pathsep) + + if sys.platform == "win32": + # The current directory takes precedence on Windows. + if os.curdir not in path: + path.insert(0, os.curdir) + + # PATHEXT is necessary to check on Windows. + pathext = os.environ.get("PATHEXT", "").split(os.pathsep) + # See if the given file matches any of the expected path extensions. + # This will allow us to short circuit when given "python.exe". + # If it does match, only test that one, otherwise we have to try + # others. + if any(cmd.lower().endswith(ext.lower()) for ext in pathext): + files = [cmd] + else: + files = [cmd + ext for ext in pathext] + else: + # On other platforms you don't have things like PATHEXT to tell you + # what file suffixes are executable, so just pass on cmd as-is. + files = [cmd] + + seen = set() + for dir in path: + normdir = os.path.normcase(dir) + if normdir not in seen: + seen.add(normdir) + for thefile in files: + name = os.path.join(dir, thefile) + if _access_check(name, mode): + return name + return None + + +# ZipFile is a context manager in 2.7, but not in 2.6 + +from zipfile import ZipFile as BaseZipFile + +if hasattr(BaseZipFile, '__enter__'): # pragma: no cover + ZipFile = BaseZipFile +else: # pragma: no cover + from zipfile import ZipExtFile as BaseZipExtFile + + class ZipExtFile(BaseZipExtFile): + + def __init__(self, base): + self.__dict__.update(base.__dict__) + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + class ZipFile(BaseZipFile): + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + def open(self, *args, **kwargs): + base = BaseZipFile.open(self, *args, **kwargs) + return ZipExtFile(base) + + +try: + from platform import python_implementation +except ImportError: # pragma: no cover + + def python_implementation(): + """Return a string identifying the Python implementation.""" + if 'PyPy' in sys.version: + return 'PyPy' + if os.name == 'java': + return 'Jython' + if sys.version.startswith('IronPython'): + return 'IronPython' + return 'CPython' + + +import sysconfig + +try: + callable = callable +except NameError: # pragma: no cover + from collections.abc import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode + fsdecode = os.fsdecode +except AttributeError: # pragma: no cover + # Issue #99: on some systems (e.g. containerised), + # sys.getfilesystemencoding() returns None, and we need a real value, + # so fall back to utf-8. From the CPython 2.7 docs relating to Unix and + # sys.getfilesystemencoding(): the return value is "the user’s preference + # according to the result of nl_langinfo(CODESET), or None if the + # nl_langinfo(CODESET) failed." + _fsencoding = sys.getfilesystemencoding() or 'utf-8' + if _fsencoding == 'mbcs': + _fserrors = 'strict' + else: + _fserrors = 'surrogateescape' + + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, text_type): + return filename.encode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + def fsdecode(filename): + if isinstance(filename, text_type): + return filename + elif isinstance(filename, bytes): + return filename.decode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + +try: + from tokenize import detect_encoding +except ImportError: # pragma: no cover + from codecs import BOM_UTF8, lookup + + cookie_re = re.compile(r"coding[:=]\s*([-\w.]+)") + + def _get_normal_name(orig_enc): + """Imitates get_normal_name in tokenizer.c.""" + # Only care about the first 12 characters. + enc = orig_enc[:12].lower().replace("_", "-") + if enc == "utf-8" or enc.startswith("utf-8-"): + return "utf-8" + if enc in ("latin-1", "iso-8859-1", "iso-latin-1") or \ + enc.startswith(("latin-1-", "iso-8859-1-", "iso-latin-1-")): + return "iso-8859-1" + return orig_enc + + def detect_encoding(readline): + """ + The detect_encoding() function is used to detect the encoding that should + be used to decode a Python source file. It requires one argument, readline, + in the same way as the tokenize() generator. + + It will call readline a maximum of twice, and return the encoding used + (as a string) and a list of any lines (left as bytes) it has read in. + + It detects the encoding from the presence of a utf-8 bom or an encoding + cookie as specified in pep-0263. If both a bom and a cookie are present, + but disagree, a SyntaxError will be raised. If the encoding cookie is an + invalid charset, raise a SyntaxError. Note that if a utf-8 bom is found, + 'utf-8-sig' is returned. + + If no encoding is specified, then the default of 'utf-8' will be returned. + """ + try: + filename = readline.__self__.name + except AttributeError: + filename = None + bom_found = False + encoding = None + default = 'utf-8' + + def read_or_stop(): + try: + return readline() + except StopIteration: + return b'' + + def find_cookie(line): + try: + # Decode as UTF-8. Either the line is an encoding declaration, + # in which case it should be pure ASCII, or it must be UTF-8 + # per default encoding. + line_string = line.decode('utf-8') + except UnicodeDecodeError: + msg = "invalid or missing encoding declaration" + if filename is not None: + msg = '{} for {!r}'.format(msg, filename) + raise SyntaxError(msg) + + matches = cookie_re.findall(line_string) + if not matches: + return None + encoding = _get_normal_name(matches[0]) + try: + codec = lookup(encoding) + except LookupError: + # This behaviour mimics the Python interpreter + if filename is None: + msg = "unknown encoding: " + encoding + else: + msg = "unknown encoding for {!r}: {}".format( + filename, encoding) + raise SyntaxError(msg) + + if bom_found: + if codec.name != 'utf-8': + # This behaviour mimics the Python interpreter + if filename is None: + msg = 'encoding problem: utf-8' + else: + msg = 'encoding problem for {!r}: utf-8'.format( + filename) + raise SyntaxError(msg) + encoding += '-sig' + return encoding + + first = read_or_stop() + if first.startswith(BOM_UTF8): + bom_found = True + first = first[3:] + default = 'utf-8-sig' + if not first: + return default, [] + + encoding = find_cookie(first) + if encoding: + return encoding, [first] + + second = read_or_stop() + if not second: + return default, [first] + + encoding = find_cookie(second) + if encoding: + return encoding, [first, second] + + return default, [first, second] + + +# For converting & <-> & etc. +try: + from html import escape +except ImportError: + from cgi import escape +if sys.version_info[:2] < (3, 4): + unescape = HTMLParser().unescape +else: + from html import unescape + +try: + from collections import ChainMap +except ImportError: # pragma: no cover + from collections import MutableMapping + + try: + from reprlib import recursive_repr as _recursive_repr + except ImportError: + + def _recursive_repr(fillvalue='...'): + ''' + Decorator to make a repr function return fillvalue for a recursive + call + ''' + + def decorating_function(user_function): + repr_running = set() + + def wrapper(self): + key = id(self), get_ident() + if key in repr_running: + return fillvalue + repr_running.add(key) + try: + result = user_function(self) + finally: + repr_running.discard(key) + return result + + # Can't use functools.wraps() here because of bootstrap issues + wrapper.__module__ = getattr(user_function, '__module__') + wrapper.__doc__ = getattr(user_function, '__doc__') + wrapper.__name__ = getattr(user_function, '__name__') + wrapper.__annotations__ = getattr(user_function, + '__annotations__', {}) + return wrapper + + return decorating_function + + class ChainMap(MutableMapping): + ''' + A ChainMap groups multiple dicts (or other mappings) together + to create a single, updateable view. + + The underlying mappings are stored in a list. That list is public and can + accessed or updated using the *maps* attribute. There is no other state. + + Lookups search the underlying mappings successively until a key is found. + In contrast, writes, updates, and deletions only operate on the first + mapping. + ''' + + def __init__(self, *maps): + '''Initialize a ChainMap by setting *maps* to the given mappings. + If no mappings are provided, a single empty dictionary is used. + + ''' + self.maps = list(maps) or [{}] # always at least one map + + def __missing__(self, key): + raise KeyError(key) + + def __getitem__(self, key): + for mapping in self.maps: + try: + return mapping[ + key] # can't use 'key in mapping' with defaultdict + except KeyError: + pass + return self.__missing__( + key) # support subclasses that define __missing__ + + def get(self, key, default=None): + return self[key] if key in self else default + + def __len__(self): + return len(set().union( + *self.maps)) # reuses stored hash values if possible + + def __iter__(self): + return iter(set().union(*self.maps)) + + def __contains__(self, key): + return any(key in m for m in self.maps) + + def __bool__(self): + return any(self.maps) + + @_recursive_repr() + def __repr__(self): + return '{0.__class__.__name__}({1})'.format( + self, ', '.join(map(repr, self.maps))) + + @classmethod + def fromkeys(cls, iterable, *args): + 'Create a ChainMap with a single dict created from the iterable.' + return cls(dict.fromkeys(iterable, *args)) + + def copy(self): + 'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]' + return self.__class__(self.maps[0].copy(), *self.maps[1:]) + + __copy__ = copy + + def new_child(self): # like Django's Context.push() + 'New ChainMap with a new dict followed by all previous maps.' + return self.__class__({}, *self.maps) + + @property + def parents(self): # like Django's Context.pop() + 'New ChainMap from maps[1:].' + return self.__class__(*self.maps[1:]) + + def __setitem__(self, key, value): + self.maps[0][key] = value + + def __delitem__(self, key): + try: + del self.maps[0][key] + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def popitem(self): + 'Remove and return an item pair from maps[0]. Raise KeyError is maps[0] is empty.' + try: + return self.maps[0].popitem() + except KeyError: + raise KeyError('No keys found in the first mapping.') + + def pop(self, key, *args): + 'Remove *key* from maps[0] and return its value. Raise KeyError if *key* not in maps[0].' + try: + return self.maps[0].pop(key, *args) + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def clear(self): + 'Clear maps[0], leaving maps[1:] intact.' + self.maps[0].clear() + + +try: + from importlib.util import cache_from_source # Python >= 3.4 +except ImportError: # pragma: no cover + + def cache_from_source(path, debug_override=None): + assert path.endswith('.py') + if debug_override is None: + debug_override = __debug__ + if debug_override: + suffix = 'c' + else: + suffix = 'o' + return path + suffix + + +try: + from collections import OrderedDict +except ImportError: # pragma: no cover + # {{{ http://code.activestate.com/recipes/576693/ (r9) + # Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy. + # Passes Python2.7's test suite and incorporates all the latest updates. + try: + from thread import get_ident as _get_ident + except ImportError: + from dummy_thread import get_ident as _get_ident + + try: + from _abcoll import KeysView, ValuesView, ItemsView + except ImportError: + pass + + class OrderedDict(dict): + 'Dictionary that remembers insertion order' + + # An inherited dict maps keys to values. + # The inherited dict provides __getitem__, __len__, __contains__, and get. + # The remaining methods are order-aware. + # Big-O running times for all methods are the same as for regular dictionaries. + + # The internal self.__map dictionary maps keys to links in a doubly linked list. + # The circular doubly linked list starts and ends with a sentinel element. + # The sentinel element never gets deleted (this simplifies the algorithm). + # Each link is stored as a list of length three: [PREV, NEXT, KEY]. + + def __init__(self, *args, **kwds): + '''Initialize an ordered dictionary. Signature is the same as for + regular dictionaries, but keyword arguments are not recommended + because their insertion order is arbitrary. + + ''' + if len(args) > 1: + raise TypeError('expected at most 1 arguments, got %d' % + len(args)) + try: + self.__root + except AttributeError: + self.__root = root = [] # sentinel node + root[:] = [root, root, None] + self.__map = {} + self.__update(*args, **kwds) + + def __setitem__(self, key, value, dict_setitem=dict.__setitem__): + 'od.__setitem__(i, y) <==> od[i]=y' + # Setting a new item creates a new link which goes at the end of the linked + # list, and the inherited dictionary is updated with the new key/value pair. + if key not in self: + root = self.__root + last = root[0] + last[1] = root[0] = self.__map[key] = [last, root, key] + dict_setitem(self, key, value) + + def __delitem__(self, key, dict_delitem=dict.__delitem__): + 'od.__delitem__(y) <==> del od[y]' + # Deleting an existing item uses self.__map to find the link which is + # then removed by updating the links in the predecessor and successor nodes. + dict_delitem(self, key) + link_prev, link_next, key = self.__map.pop(key) + link_prev[1] = link_next + link_next[0] = link_prev + + def __iter__(self): + 'od.__iter__() <==> iter(od)' + root = self.__root + curr = root[1] + while curr is not root: + yield curr[2] + curr = curr[1] + + def __reversed__(self): + 'od.__reversed__() <==> reversed(od)' + root = self.__root + curr = root[0] + while curr is not root: + yield curr[2] + curr = curr[0] + + def clear(self): + 'od.clear() -> None. Remove all items from od.' + try: + for node in self.__map.itervalues(): + del node[:] + root = self.__root + root[:] = [root, root, None] + self.__map.clear() + except AttributeError: + pass + dict.clear(self) + + def popitem(self, last=True): + '''od.popitem() -> (k, v), return and remove a (key, value) pair. + Pairs are returned in LIFO order if last is true or FIFO order if false. + + ''' + if not self: + raise KeyError('dictionary is empty') + root = self.__root + if last: + link = root[0] + link_prev = link[0] + link_prev[1] = root + root[0] = link_prev + else: + link = root[1] + link_next = link[1] + root[1] = link_next + link_next[0] = root + key = link[2] + del self.__map[key] + value = dict.pop(self, key) + return key, value + + # -- the following methods do not depend on the internal structure -- + + def keys(self): + 'od.keys() -> list of keys in od' + return list(self) + + def values(self): + 'od.values() -> list of values in od' + return [self[key] for key in self] + + def items(self): + 'od.items() -> list of (key, value) pairs in od' + return [(key, self[key]) for key in self] + + def iterkeys(self): + 'od.iterkeys() -> an iterator over the keys in od' + return iter(self) + + def itervalues(self): + 'od.itervalues -> an iterator over the values in od' + for k in self: + yield self[k] + + def iteritems(self): + 'od.iteritems -> an iterator over the (key, value) items in od' + for k in self: + yield (k, self[k]) + + def update(*args, **kwds): + '''od.update(E, **F) -> None. Update od from dict/iterable E and F. + + If E is a dict instance, does: for k in E: od[k] = E[k] + If E has a .keys() method, does: for k in E.keys(): od[k] = E[k] + Or if E is an iterable of items, does: for k, v in E: od[k] = v + In either case, this is followed by: for k, v in F.items(): od[k] = v + + ''' + if len(args) > 2: + raise TypeError('update() takes at most 2 positional ' + 'arguments (%d given)' % (len(args), )) + elif not args: + raise TypeError('update() takes at least 1 argument (0 given)') + self = args[0] + # Make progressively weaker assumptions about "other" + other = () + if len(args) == 2: + other = args[1] + if isinstance(other, dict): + for key in other: + self[key] = other[key] + elif hasattr(other, 'keys'): + for key in other.keys(): + self[key] = other[key] + else: + for key, value in other: + self[key] = value + for key, value in kwds.items(): + self[key] = value + + __update = update # let subclasses override update without breaking __init__ + + __marker = object() + + def pop(self, key, default=__marker): + '''od.pop(k[,d]) -> v, remove specified key and return the corresponding value. + If key is not found, d is returned if given, otherwise KeyError is raised. + + ''' + if key in self: + result = self[key] + del self[key] + return result + if default is self.__marker: + raise KeyError(key) + return default + + def setdefault(self, key, default=None): + 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od' + if key in self: + return self[key] + self[key] = default + return default + + def __repr__(self, _repr_running=None): + 'od.__repr__() <==> repr(od)' + if not _repr_running: + _repr_running = {} + call_key = id(self), _get_ident() + if call_key in _repr_running: + return '...' + _repr_running[call_key] = 1 + try: + if not self: + return '%s()' % (self.__class__.__name__, ) + return '%s(%r)' % (self.__class__.__name__, self.items()) + finally: + del _repr_running[call_key] + + def __reduce__(self): + 'Return state information for pickling' + items = [[k, self[k]] for k in self] + inst_dict = vars(self).copy() + for k in vars(OrderedDict()): + inst_dict.pop(k, None) + if inst_dict: + return (self.__class__, (items, ), inst_dict) + return self.__class__, (items, ) + + def copy(self): + 'od.copy() -> a shallow copy of od' + return self.__class__(self) + + @classmethod + def fromkeys(cls, iterable, value=None): + '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S + and values equal to v (which defaults to None). + + ''' + d = cls() + for key in iterable: + d[key] = value + return d + + def __eq__(self, other): + '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive + while comparison to a regular mapping is order-insensitive. + + ''' + if isinstance(other, OrderedDict): + return len(self) == len( + other) and self.items() == other.items() + return dict.__eq__(self, other) + + def __ne__(self, other): + return not self == other + + # -- the following methods are only used in Python 2.7 -- + + def viewkeys(self): + "od.viewkeys() -> a set-like object providing a view on od's keys" + return KeysView(self) + + def viewvalues(self): + "od.viewvalues() -> an object providing a view on od's values" + return ValuesView(self) + + def viewitems(self): + "od.viewitems() -> a set-like object providing a view on od's items" + return ItemsView(self) + + +try: + from logging.config import BaseConfigurator, valid_ident +except ImportError: # pragma: no cover + IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I) + + def valid_ident(s): + m = IDENTIFIER.match(s) + if not m: + raise ValueError('Not a valid Python identifier: %r' % s) + return True + + # The ConvertingXXX classes are wrappers around standard Python containers, + # and they serve to convert any suitable values in the container. The + # conversion converts base dicts, lists and tuples to their wrapped + # equivalents, whereas strings which match a conversion format are converted + # appropriately. + # + # Each wrapper should have a configurator attribute holding the actual + # configurator to use for conversion. + + class ConvertingDict(dict): + """A converting dictionary wrapper.""" + + def __getitem__(self, key): + value = dict.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def get(self, key, default=None): + value = dict.get(self, key, default) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, key, default=None): + value = dict.pop(self, key, default) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class ConvertingList(list): + """A converting list wrapper.""" + + def __getitem__(self, key): + value = list.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, idx=-1): + value = list.pop(self, idx) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + return result + + class ConvertingTuple(tuple): + """A converting tuple wrapper.""" + + def __getitem__(self, key): + value = tuple.__getitem__(self, key) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class BaseConfigurator(object): + """ + The configurator base class which defines some useful defaults. + """ + + CONVERT_PATTERN = re.compile(r'^(?P[a-z]+)://(?P.*)$') + + WORD_PATTERN = re.compile(r'^\s*(\w+)\s*') + DOT_PATTERN = re.compile(r'^\.\s*(\w+)\s*') + INDEX_PATTERN = re.compile(r'^\[\s*(\w+)\s*\]\s*') + DIGIT_PATTERN = re.compile(r'^\d+$') + + value_converters = { + 'ext': 'ext_convert', + 'cfg': 'cfg_convert', + } + + # We might want to use a different one, e.g. importlib + importer = staticmethod(__import__) + + def __init__(self, config): + self.config = ConvertingDict(config) + self.config.configurator = self + + def resolve(self, s): + """ + Resolve strings to objects using standard import and attribute + syntax. + """ + name = s.split('.') + used = name.pop(0) + try: + found = self.importer(used) + for frag in name: + used += '.' + frag + try: + found = getattr(found, frag) + except AttributeError: + self.importer(used) + found = getattr(found, frag) + return found + except ImportError: + e, tb = sys.exc_info()[1:] + v = ValueError('Cannot resolve %r: %s' % (s, e)) + v.__cause__, v.__traceback__ = e, tb + raise v + + def ext_convert(self, value): + """Default converter for the ext:// protocol.""" + return self.resolve(value) + + def cfg_convert(self, value): + """Default converter for the cfg:// protocol.""" + rest = value + m = self.WORD_PATTERN.match(rest) + if m is None: + raise ValueError("Unable to convert %r" % value) + else: + rest = rest[m.end():] + d = self.config[m.groups()[0]] + while rest: + m = self.DOT_PATTERN.match(rest) + if m: + d = d[m.groups()[0]] + else: + m = self.INDEX_PATTERN.match(rest) + if m: + idx = m.groups()[0] + if not self.DIGIT_PATTERN.match(idx): + d = d[idx] + else: + try: + n = int( + idx + ) # try as number first (most likely) + d = d[n] + except TypeError: + d = d[idx] + if m: + rest = rest[m.end():] + else: + raise ValueError('Unable to convert ' + '%r at %r' % (value, rest)) + # rest should be empty + return d + + def convert(self, value): + """ + Convert values to an appropriate type. dicts, lists and tuples are + replaced by their converting alternatives. Strings are checked to + see if they have a conversion format and are converted if they do. + """ + if not isinstance(value, ConvertingDict) and isinstance( + value, dict): + value = ConvertingDict(value) + value.configurator = self + elif not isinstance(value, ConvertingList) and isinstance( + value, list): + value = ConvertingList(value) + value.configurator = self + elif not isinstance(value, ConvertingTuple) and isinstance(value, tuple): + value = ConvertingTuple(value) + value.configurator = self + elif isinstance(value, string_types): + m = self.CONVERT_PATTERN.match(value) + if m: + d = m.groupdict() + prefix = d['prefix'] + converter = self.value_converters.get(prefix, None) + if converter: + suffix = d['suffix'] + converter = getattr(self, converter) + value = converter(suffix) + return value + + def configure_custom(self, config): + """Configure an object with a user-supplied factory.""" + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) + result = c(**kwargs) + if props: + for name, value in props.items(): + setattr(result, name, value) + return result + + def as_tuple(self, value): + """Utility function which converts lists to tuples.""" + if isinstance(value, list): + value = tuple(value) + return value diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py new file mode 100644 index 00000000..eb3765f1 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py @@ -0,0 +1,1359 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""PEP 376 implementation.""" + +from __future__ import unicode_literals + +import base64 +import codecs +import contextlib +import hashlib +import logging +import os +import posixpath +import sys +import zipimport + +from . import DistlibException, resources +from .compat import StringIO +from .version import get_scheme, UnsupportedVersionError +from .metadata import (Metadata, METADATA_FILENAME, WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME) +from .util import (parse_requirement, cached_property, parse_name_and_version, + read_exports, write_exports, CSVReader, CSVWriter) + +__all__ = [ + 'Distribution', 'BaseInstalledDistribution', 'InstalledDistribution', + 'EggInfoDistribution', 'DistributionPath' +] + +logger = logging.getLogger(__name__) + +EXPORTS_FILENAME = 'pydist-exports.json' +COMMANDS_FILENAME = 'pydist-commands.json' + +DIST_FILES = ('INSTALLER', METADATA_FILENAME, 'RECORD', 'REQUESTED', + 'RESOURCES', EXPORTS_FILENAME, 'SHARED') + +DISTINFO_EXT = '.dist-info' + + +class _Cache(object): + """ + A simple cache mapping names and .dist-info paths to distributions + """ + + def __init__(self): + """ + Initialise an instance. There is normally one for each DistributionPath. + """ + self.name = {} + self.path = {} + self.generated = False + + def clear(self): + """ + Clear the cache, setting it to its initial state. + """ + self.name.clear() + self.path.clear() + self.generated = False + + def add(self, dist): + """ + Add a distribution to the cache. + :param dist: The distribution to add. + """ + if dist.path not in self.path: + self.path[dist.path] = dist + self.name.setdefault(dist.key, []).append(dist) + + +class DistributionPath(object): + """ + Represents a set of distributions installed on a path (typically sys.path). + """ + + def __init__(self, path=None, include_egg=False): + """ + Create an instance from a path, optionally including legacy (distutils/ + setuptools/distribute) distributions. + :param path: The path to use, as a list of directories. If not specified, + sys.path is used. + :param include_egg: If True, this instance will look for and return legacy + distributions as well as those based on PEP 376. + """ + if path is None: + path = sys.path + self.path = path + self._include_dist = True + self._include_egg = include_egg + + self._cache = _Cache() + self._cache_egg = _Cache() + self._cache_enabled = True + self._scheme = get_scheme('default') + + def _get_cache_enabled(self): + return self._cache_enabled + + def _set_cache_enabled(self, value): + self._cache_enabled = value + + cache_enabled = property(_get_cache_enabled, _set_cache_enabled) + + def clear_cache(self): + """ + Clears the internal cache. + """ + self._cache.clear() + self._cache_egg.clear() + + def _yield_distributions(self): + """ + Yield .dist-info and/or .egg(-info) distributions. + """ + # We need to check if we've seen some resources already, because on + # some Linux systems (e.g. some Debian/Ubuntu variants) there are + # symlinks which alias other files in the environment. + seen = set() + for path in self.path: + finder = resources.finder_for_path(path) + if finder is None: + continue + r = finder.find('') + if not r or not r.is_container: + continue + rset = sorted(r.resources) + for entry in rset: + r = finder.find(entry) + if not r or r.path in seen: + continue + try: + if self._include_dist and entry.endswith(DISTINFO_EXT): + possible_filenames = [ + METADATA_FILENAME, WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME + ] + for metadata_filename in possible_filenames: + metadata_path = posixpath.join( + entry, metadata_filename) + pydist = finder.find(metadata_path) + if pydist: + break + else: + continue + + with contextlib.closing(pydist.as_stream()) as stream: + metadata = Metadata(fileobj=stream, + scheme='legacy') + logger.debug('Found %s', r.path) + seen.add(r.path) + yield new_dist_class(r.path, + metadata=metadata, + env=self) + elif self._include_egg and entry.endswith( + ('.egg-info', '.egg')): + logger.debug('Found %s', r.path) + seen.add(r.path) + yield old_dist_class(r.path, self) + except Exception as e: + msg = 'Unable to read distribution at %s, perhaps due to bad metadata: %s' + logger.warning(msg, r.path, e) + import warnings + warnings.warn(msg % (r.path, e), stacklevel=2) + + def _generate_cache(self): + """ + Scan the path for distributions and populate the cache with + those that are found. + """ + gen_dist = not self._cache.generated + gen_egg = self._include_egg and not self._cache_egg.generated + if gen_dist or gen_egg: + for dist in self._yield_distributions(): + if isinstance(dist, InstalledDistribution): + self._cache.add(dist) + else: + self._cache_egg.add(dist) + + if gen_dist: + self._cache.generated = True + if gen_egg: + self._cache_egg.generated = True + + @classmethod + def distinfo_dirname(cls, name, version): + """ + The *name* and *version* parameters are converted into their + filename-escaped form, i.e. any ``'-'`` characters are replaced + with ``'_'`` other than the one in ``'dist-info'`` and the one + separating the name from the version number. + + :parameter name: is converted to a standard distribution name by replacing + any runs of non- alphanumeric characters with a single + ``'-'``. + :type name: string + :parameter version: is converted to a standard version string. Spaces + become dots, and all other non-alphanumeric characters + (except dots) become dashes, with runs of multiple + dashes condensed to a single dash. + :type version: string + :returns: directory name + :rtype: string""" + name = name.replace('-', '_') + return '-'.join([name, version]) + DISTINFO_EXT + + def get_distributions(self): + """ + Provides an iterator that looks for distributions and returns + :class:`InstalledDistribution` or + :class:`EggInfoDistribution` instances for each one of them. + + :rtype: iterator of :class:`InstalledDistribution` and + :class:`EggInfoDistribution` instances + """ + if not self._cache_enabled: + for dist in self._yield_distributions(): + yield dist + else: + self._generate_cache() + + for dist in self._cache.path.values(): + yield dist + + if self._include_egg: + for dist in self._cache_egg.path.values(): + yield dist + + def get_distribution(self, name): + """ + Looks for a named distribution on the path. + + This function only returns the first result found, as no more than one + value is expected. If nothing is found, ``None`` is returned. + + :rtype: :class:`InstalledDistribution`, :class:`EggInfoDistribution` + or ``None`` + """ + result = None + name = name.lower() + if not self._cache_enabled: + for dist in self._yield_distributions(): + if dist.key == name: + result = dist + break + else: + self._generate_cache() + + if name in self._cache.name: + result = self._cache.name[name][0] + elif self._include_egg and name in self._cache_egg.name: + result = self._cache_egg.name[name][0] + return result + + def provides_distribution(self, name, version=None): + """ + Iterates over all distributions to find which distributions provide *name*. + If a *version* is provided, it will be used to filter the results. + + This function only returns the first result found, since no more than + one values are expected. If the directory is not found, returns ``None``. + + :parameter version: a version specifier that indicates the version + required, conforming to the format in ``PEP-345`` + + :type name: string + :type version: string + """ + matcher = None + if version is not None: + try: + matcher = self._scheme.matcher('%s (%s)' % (name, version)) + except ValueError: + raise DistlibException('invalid name or version: %r, %r' % + (name, version)) + + for dist in self.get_distributions(): + # We hit a problem on Travis where enum34 was installed and doesn't + # have a provides attribute ... + if not hasattr(dist, 'provides'): + logger.debug('No "provides": %s', dist) + else: + provided = dist.provides + + for p in provided: + p_name, p_ver = parse_name_and_version(p) + if matcher is None: + if p_name == name: + yield dist + break + else: + if p_name == name and matcher.match(p_ver): + yield dist + break + + def get_file_path(self, name, relative_path): + """ + Return the path to a resource file. + """ + dist = self.get_distribution(name) + if dist is None: + raise LookupError('no distribution named %r found' % name) + return dist.get_resource_path(relative_path) + + def get_exported_entries(self, category, name=None): + """ + Return all of the exported entries in a particular category. + + :param category: The category to search for entries. + :param name: If specified, only entries with that name are returned. + """ + for dist in self.get_distributions(): + r = dist.exports + if category in r: + d = r[category] + if name is not None: + if name in d: + yield d[name] + else: + for v in d.values(): + yield v + + +class Distribution(object): + """ + A base class for distributions, whether installed or from indexes. + Either way, it must have some metadata, so that's all that's needed + for construction. + """ + + build_time_dependency = False + """ + Set to True if it's known to be only a build-time dependency (i.e. + not needed after installation). + """ + + requested = False + """A boolean that indicates whether the ``REQUESTED`` metadata file is + present (in other words, whether the package was installed by user + request or it was installed as a dependency).""" + + def __init__(self, metadata): + """ + Initialise an instance. + :param metadata: The instance of :class:`Metadata` describing this + distribution. + """ + self.metadata = metadata + self.name = metadata.name + self.key = self.name.lower() # for case-insensitive comparisons + self.version = metadata.version + self.locator = None + self.digest = None + self.extras = None # additional features requested + self.context = None # environment marker overrides + self.download_urls = set() + self.digests = {} + + @property + def source_url(self): + """ + The source archive download URL for this distribution. + """ + return self.metadata.source_url + + download_url = source_url # Backward compatibility + + @property + def name_and_version(self): + """ + A utility property which displays the name and version in parentheses. + """ + return '%s (%s)' % (self.name, self.version) + + @property + def provides(self): + """ + A set of distribution names and versions provided by this distribution. + :return: A set of "name (version)" strings. + """ + plist = self.metadata.provides + s = '%s (%s)' % (self.name, self.version) + if s not in plist: + plist.append(s) + return plist + + def _get_requirements(self, req_attr): + md = self.metadata + reqts = getattr(md, req_attr) + logger.debug('%s: got requirements %r from metadata: %r', self.name, + req_attr, reqts) + return set( + md.get_requirements(reqts, extras=self.extras, env=self.context)) + + @property + def run_requires(self): + return self._get_requirements('run_requires') + + @property + def meta_requires(self): + return self._get_requirements('meta_requires') + + @property + def build_requires(self): + return self._get_requirements('build_requires') + + @property + def test_requires(self): + return self._get_requirements('test_requires') + + @property + def dev_requires(self): + return self._get_requirements('dev_requires') + + def matches_requirement(self, req): + """ + Say if this instance matches (fulfills) a requirement. + :param req: The requirement to match. + :rtype req: str + :return: True if it matches, else False. + """ + # Requirement may contain extras - parse to lose those + # from what's passed to the matcher + r = parse_requirement(req) + scheme = get_scheme(self.metadata.scheme) + try: + matcher = scheme.matcher(r.requirement) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + result = False + for p in self.provides: + p_name, p_ver = parse_name_and_version(p) + if p_name != name: + continue + try: + result = matcher.match(p_ver) + break + except UnsupportedVersionError: + pass + return result + + def __repr__(self): + """ + Return a textual representation of this instance, + """ + if self.source_url: + suffix = ' [%s]' % self.source_url + else: + suffix = '' + return '' % (self.name, self.version, suffix) + + def __eq__(self, other): + """ + See if this distribution is the same as another. + :param other: The distribution to compare with. To be equal to one + another. distributions must have the same type, name, + version and source_url. + :return: True if it is the same, else False. + """ + if type(other) is not type(self): + result = False + else: + result = (self.name == other.name and self.version == other.version + and self.source_url == other.source_url) + return result + + def __hash__(self): + """ + Compute hash in a way which matches the equality test. + """ + return hash(self.name) + hash(self.version) + hash(self.source_url) + + +class BaseInstalledDistribution(Distribution): + """ + This is the base class for installed distributions (whether PEP 376 or + legacy). + """ + + hasher = None + + def __init__(self, metadata, path, env=None): + """ + Initialise an instance. + :param metadata: An instance of :class:`Metadata` which describes the + distribution. This will normally have been initialised + from a metadata file in the ``path``. + :param path: The path of the ``.dist-info`` or ``.egg-info`` + directory for the distribution. + :param env: This is normally the :class:`DistributionPath` + instance where this distribution was found. + """ + super(BaseInstalledDistribution, self).__init__(metadata) + self.path = path + self.dist_path = env + + def get_hash(self, data, hasher=None): + """ + Get the hash of some data, using a particular hash algorithm, if + specified. + + :param data: The data to be hashed. + :type data: bytes + :param hasher: The name of a hash implementation, supported by hashlib, + or ``None``. Examples of valid values are ``'sha1'``, + ``'sha224'``, ``'sha384'``, '``sha256'``, ``'md5'`` and + ``'sha512'``. If no hasher is specified, the ``hasher`` + attribute of the :class:`InstalledDistribution` instance + is used. If the hasher is determined to be ``None``, MD5 + is used as the hashing algorithm. + :returns: The hash of the data. If a hasher was explicitly specified, + the returned hash will be prefixed with the specified hasher + followed by '='. + :rtype: str + """ + if hasher is None: + hasher = self.hasher + if hasher is None: + hasher = hashlib.md5 + prefix = '' + else: + hasher = getattr(hashlib, hasher) + prefix = '%s=' % self.hasher + digest = hasher(data).digest() + digest = base64.urlsafe_b64encode(digest).rstrip(b'=').decode('ascii') + return '%s%s' % (prefix, digest) + + +class InstalledDistribution(BaseInstalledDistribution): + """ + Created with the *path* of the ``.dist-info`` directory provided to the + constructor. It reads the metadata contained in ``pydist.json`` when it is + instantiated., or uses a passed in Metadata instance (useful for when + dry-run mode is being used). + """ + + hasher = 'sha256' + + def __init__(self, path, metadata=None, env=None): + self.modules = [] + self.finder = finder = resources.finder_for_path(path) + if finder is None: + raise ValueError('finder unavailable for %s' % path) + if env and env._cache_enabled and path in env._cache.path: + metadata = env._cache.path[path].metadata + elif metadata is None: + r = finder.find(METADATA_FILENAME) + # Temporary - for Wheel 0.23 support + if r is None: + r = finder.find(WHEEL_METADATA_FILENAME) + # Temporary - for legacy support + if r is None: + r = finder.find(LEGACY_METADATA_FILENAME) + if r is None: + raise ValueError('no %s found in %s' % + (METADATA_FILENAME, path)) + with contextlib.closing(r.as_stream()) as stream: + metadata = Metadata(fileobj=stream, scheme='legacy') + + super(InstalledDistribution, self).__init__(metadata, path, env) + + if env and env._cache_enabled: + env._cache.add(self) + + r = finder.find('REQUESTED') + self.requested = r is not None + p = os.path.join(path, 'top_level.txt') + if os.path.exists(p): + with open(p, 'rb') as f: + data = f.read().decode('utf-8') + self.modules = data.splitlines() + + def __repr__(self): + return '' % ( + self.name, self.version, self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def _get_records(self): + """ + Get the list of installed files for the distribution + :return: A list of tuples of path, hash and size. Note that hash and + size might be ``None`` for some entries. The path is exactly + as stored in the file (which is as in PEP 376). + """ + results = [] + r = self.get_distinfo_resource('RECORD') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as record_reader: + # Base location is parent dir of .dist-info dir + # base_location = os.path.dirname(self.path) + # base_location = os.path.abspath(base_location) + for row in record_reader: + missing = [None for i in range(len(row), 3)] + path, checksum, size = row + missing + # if not os.path.isabs(path): + # path = path.replace('/', os.sep) + # path = os.path.join(base_location, path) + results.append((path, checksum, size)) + return results + + @cached_property + def exports(self): + """ + Return the information exported by this distribution. + :return: A dictionary of exports, mapping an export category to a dict + of :class:`ExportEntry` instances describing the individual + export entries, and keyed by name. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + result = self.read_exports() + return result + + def read_exports(self): + """ + Read exports data from a file in .ini format. + + :return: A dictionary of exports, mapping an export category to a list + of :class:`ExportEntry` instances describing the individual + export entries. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + with contextlib.closing(r.as_stream()) as stream: + result = read_exports(stream) + return result + + def write_exports(self, exports): + """ + Write a dictionary of exports to a file in .ini format. + :param exports: A dictionary of exports, mapping an export category to + a list of :class:`ExportEntry` instances describing the + individual export entries. + """ + rf = self.get_distinfo_file(EXPORTS_FILENAME) + with open(rf, 'w') as f: + write_exports(exports, f) + + def get_resource_path(self, relative_path): + """ + NOTE: This API may change in the future. + + Return the absolute path to a resource file with the given relative + path. + + :param relative_path: The path, relative to .dist-info, of the resource + of interest. + :return: The absolute path where the resource is to be found. + """ + r = self.get_distinfo_resource('RESOURCES') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as resources_reader: + for relative, destination in resources_reader: + if relative == relative_path: + return destination + raise KeyError('no resource file with relative path %r ' + 'is installed' % relative_path) + + def list_installed_files(self): + """ + Iterates over the ``RECORD`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: iterator of (path, hash, size) + """ + for result in self._get_records(): + yield result + + def write_installed_files(self, paths, prefix, dry_run=False): + """ + Writes the ``RECORD`` file, using the ``paths`` iterable passed in. Any + existing ``RECORD`` file is silently overwritten. + + prefix is used to determine when to write absolute paths. + """ + prefix = os.path.join(prefix, '') + base = os.path.dirname(self.path) + base_under_prefix = base.startswith(prefix) + base = os.path.join(base, '') + record_path = self.get_distinfo_file('RECORD') + logger.info('creating %s', record_path) + if dry_run: + return None + with CSVWriter(record_path) as writer: + for path in paths: + if os.path.isdir(path) or path.endswith(('.pyc', '.pyo')): + # do not put size and hash, as in PEP-376 + hash_value = size = '' + else: + size = '%d' % os.path.getsize(path) + with open(path, 'rb') as fp: + hash_value = self.get_hash(fp.read()) + if path.startswith(base) or (base_under_prefix + and path.startswith(prefix)): + path = os.path.relpath(path, base) + writer.writerow((path, hash_value, size)) + + # add the RECORD file itself + if record_path.startswith(base): + record_path = os.path.relpath(record_path, base) + writer.writerow((record_path, '', '')) + return record_path + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + base = os.path.dirname(self.path) + record_path = self.get_distinfo_file('RECORD') + for path, hash_value, size in self.list_installed_files(): + if not os.path.isabs(path): + path = os.path.join(base, path) + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + elif os.path.isfile(path): + actual_size = str(os.path.getsize(path)) + if size and actual_size != size: + mismatches.append((path, 'size', size, actual_size)) + elif hash_value: + if '=' in hash_value: + hasher = hash_value.split('=', 1)[0] + else: + hasher = None + + with open(path, 'rb') as f: + actual_hash = self.get_hash(f.read(), hasher) + if actual_hash != hash_value: + mismatches.append( + (path, 'hash', hash_value, actual_hash)) + return mismatches + + @cached_property + def shared_locations(self): + """ + A dictionary of shared locations whose keys are in the set 'prefix', + 'purelib', 'platlib', 'scripts', 'headers', 'data' and 'namespace'. + The corresponding value is the absolute path of that category for + this distribution, and takes into account any paths selected by the + user at installation time (e.g. via command-line arguments). In the + case of the 'namespace' key, this would be a list of absolute paths + for the roots of namespace packages in this distribution. + + The first time this property is accessed, the relevant information is + read from the SHARED file in the .dist-info directory. + """ + result = {} + shared_path = os.path.join(self.path, 'SHARED') + if os.path.isfile(shared_path): + with codecs.open(shared_path, 'r', encoding='utf-8') as f: + lines = f.read().splitlines() + for line in lines: + key, value = line.split('=', 1) + if key == 'namespace': + result.setdefault(key, []).append(value) + else: + result[key] = value + return result + + def write_shared_locations(self, paths, dry_run=False): + """ + Write shared location information to the SHARED file in .dist-info. + :param paths: A dictionary as described in the documentation for + :meth:`shared_locations`. + :param dry_run: If True, the action is logged but no file is actually + written. + :return: The path of the file written to. + """ + shared_path = os.path.join(self.path, 'SHARED') + logger.info('creating %s', shared_path) + if dry_run: + return None + lines = [] + for key in ('prefix', 'lib', 'headers', 'scripts', 'data'): + path = paths[key] + if os.path.isdir(paths[key]): + lines.append('%s=%s' % (key, path)) + for ns in paths.get('namespace', ()): + lines.append('namespace=%s' % ns) + + with codecs.open(shared_path, 'w', encoding='utf-8') as f: + f.write('\n'.join(lines)) + return shared_path + + def get_distinfo_resource(self, path): + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + finder = resources.finder_for_path(self.path) + if finder is None: + raise DistlibException('Unable to get a finder for %s' % self.path) + return finder.find(path) + + def get_distinfo_file(self, path): + """ + Returns a path located under the ``.dist-info`` directory. Returns a + string representing the path. + + :parameter path: a ``'/'``-separated path relative to the + ``.dist-info`` directory or an absolute path; + If *path* is an absolute path and doesn't start + with the ``.dist-info`` directory path, + a :class:`DistlibException` is raised + :type path: str + :rtype: str + """ + # Check if it is an absolute path # XXX use relpath, add tests + if path.find(os.sep) >= 0: + # it's an absolute path? + distinfo_dirname, path = path.split(os.sep)[-2:] + if distinfo_dirname != self.path.split(os.sep)[-1]: + raise DistlibException( + 'dist-info file %r does not belong to the %r %s ' + 'distribution' % (path, self.name, self.version)) + + # The file must be relative + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + + return os.path.join(self.path, path) + + def list_distinfo_files(self): + """ + Iterates over the ``RECORD`` entries and returns paths for each line if + the path is pointing to a file located in the ``.dist-info`` directory + or one of its subdirectories. + + :returns: iterator of paths + """ + base = os.path.dirname(self.path) + for path, checksum, size in self._get_records(): + # XXX add separator or use real relpath algo + if not os.path.isabs(path): + path = os.path.join(base, path) + if path.startswith(self.path): + yield path + + def __eq__(self, other): + return (isinstance(other, InstalledDistribution) + and self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +class EggInfoDistribution(BaseInstalledDistribution): + """Created with the *path* of the ``.egg-info`` directory or file provided + to the constructor. It reads the metadata contained in the file itself, or + if the given path happens to be a directory, the metadata is read from the + file ``PKG-INFO`` under that directory.""" + + requested = True # as we have no way of knowing, assume it was + shared_locations = {} + + def __init__(self, path, env=None): + + def set_name_and_version(s, n, v): + s.name = n + s.key = n.lower() # for case-insensitive comparisons + s.version = v + + self.path = path + self.dist_path = env + if env and env._cache_enabled and path in env._cache_egg.path: + metadata = env._cache_egg.path[path].metadata + set_name_and_version(self, metadata.name, metadata.version) + else: + metadata = self._get_metadata(path) + + # Need to be set before caching + set_name_and_version(self, metadata.name, metadata.version) + + if env and env._cache_enabled: + env._cache_egg.add(self) + super(EggInfoDistribution, self).__init__(metadata, path, env) + + def _get_metadata(self, path): + requires = None + + def parse_requires_data(data): + """Create a list of dependencies from a requires.txt file. + + *data*: the contents of a setuptools-produced requires.txt file. + """ + reqs = [] + lines = data.splitlines() + for line in lines: + line = line.strip() + # sectioned files have bare newlines (separating sections) + if not line: # pragma: no cover + continue + if line.startswith('['): # pragma: no cover + logger.warning( + 'Unexpected line: quitting requirement scan: %r', line) + break + r = parse_requirement(line) + if not r: # pragma: no cover + logger.warning('Not recognised as a requirement: %r', line) + continue + if r.extras: # pragma: no cover + logger.warning('extra requirements in requires.txt are ' + 'not supported') + if not r.constraints: + reqs.append(r.name) + else: + cons = ', '.join('%s%s' % c for c in r.constraints) + reqs.append('%s (%s)' % (r.name, cons)) + return reqs + + def parse_requires_path(req_path): + """Create a list of dependencies from a requires.txt file. + + *req_path*: the path to a setuptools-produced requires.txt file. + """ + + reqs = [] + try: + with codecs.open(req_path, 'r', 'utf-8') as fp: + reqs = parse_requires_data(fp.read()) + except IOError: + pass + return reqs + + tl_path = tl_data = None + if path.endswith('.egg'): + if os.path.isdir(path): + p = os.path.join(path, 'EGG-INFO') + meta_path = os.path.join(p, 'PKG-INFO') + metadata = Metadata(path=meta_path, scheme='legacy') + req_path = os.path.join(p, 'requires.txt') + tl_path = os.path.join(p, 'top_level.txt') + requires = parse_requires_path(req_path) + else: + # FIXME handle the case where zipfile is not available + zipf = zipimport.zipimporter(path) + fileobj = StringIO( + zipf.get_data('EGG-INFO/PKG-INFO').decode('utf8')) + metadata = Metadata(fileobj=fileobj, scheme='legacy') + try: + data = zipf.get_data('EGG-INFO/requires.txt') + tl_data = zipf.get_data('EGG-INFO/top_level.txt').decode( + 'utf-8') + requires = parse_requires_data(data.decode('utf-8')) + except IOError: + requires = None + elif path.endswith('.egg-info'): + if os.path.isdir(path): + req_path = os.path.join(path, 'requires.txt') + requires = parse_requires_path(req_path) + path = os.path.join(path, 'PKG-INFO') + tl_path = os.path.join(path, 'top_level.txt') + metadata = Metadata(path=path, scheme='legacy') + else: + raise DistlibException('path must end with .egg-info or .egg, ' + 'got %r' % path) + + if requires: + metadata.add_requirements(requires) + # look for top-level modules in top_level.txt, if present + if tl_data is None: + if tl_path is not None and os.path.exists(tl_path): + with open(tl_path, 'rb') as f: + tl_data = f.read().decode('utf-8') + if not tl_data: + tl_data = [] + else: + tl_data = tl_data.splitlines() + self.modules = tl_data + return metadata + + def __repr__(self): + return '' % (self.name, self.version, + self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + for path, _, _ in self.list_installed_files(): + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + return mismatches + + def list_installed_files(self): + """ + Iterates over the ``installed-files.txt`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: a list of (path, hash, size) + """ + + def _md5(path): + f = open(path, 'rb') + try: + content = f.read() + finally: + f.close() + return hashlib.md5(content).hexdigest() + + def _size(path): + return os.stat(path).st_size + + record_path = os.path.join(self.path, 'installed-files.txt') + result = [] + if os.path.exists(record_path): + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + p = os.path.normpath(os.path.join(self.path, line)) + # "./" is present as a marker between installed files + # and installation metadata files + if not os.path.exists(p): + logger.warning('Non-existent file: %s', p) + if p.endswith(('.pyc', '.pyo')): + continue + # otherwise fall through and fail + if not os.path.isdir(p): + result.append((p, _md5(p), _size(p))) + result.append((record_path, None, None)) + return result + + def list_distinfo_files(self, absolute=False): + """ + Iterates over the ``installed-files.txt`` entries and returns paths for + each line if the path is pointing to a file located in the + ``.egg-info`` directory or one of its subdirectories. + + :parameter absolute: If *absolute* is ``True``, each returned path is + transformed into a local absolute path. Otherwise the + raw value from ``installed-files.txt`` is returned. + :type absolute: boolean + :returns: iterator of paths + """ + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + skip = True + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + if line == './': + skip = False + continue + if not skip: + p = os.path.normpath(os.path.join(self.path, line)) + if p.startswith(self.path): + if absolute: + yield p + else: + yield line + + def __eq__(self, other): + return (isinstance(other, EggInfoDistribution) + and self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +new_dist_class = InstalledDistribution +old_dist_class = EggInfoDistribution + + +class DependencyGraph(object): + """ + Represents a dependency graph between distributions. + + The dependency relationships are stored in an ``adjacency_list`` that maps + distributions to a list of ``(other, label)`` tuples where ``other`` + is a distribution and the edge is labeled with ``label`` (i.e. the version + specifier, if such was provided). Also, for more efficient traversal, for + every distribution ``x``, a list of predecessors is kept in + ``reverse_list[x]``. An edge from distribution ``a`` to + distribution ``b`` means that ``a`` depends on ``b``. If any missing + dependencies are found, they are stored in ``missing``, which is a + dictionary that maps distributions to a list of requirements that were not + provided by any other distributions. + """ + + def __init__(self): + self.adjacency_list = {} + self.reverse_list = {} + self.missing = {} + + def add_distribution(self, distribution): + """Add the *distribution* to the graph. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + """ + self.adjacency_list[distribution] = [] + self.reverse_list[distribution] = [] + # self.missing[distribution] = [] + + def add_edge(self, x, y, label=None): + """Add an edge from distribution *x* to distribution *y* with the given + *label*. + + :type x: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type y: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type label: ``str`` or ``None`` + """ + self.adjacency_list[x].append((y, label)) + # multiple edges are allowed, so be careful + if x not in self.reverse_list[y]: + self.reverse_list[y].append(x) + + def add_missing(self, distribution, requirement): + """ + Add a missing *requirement* for the given *distribution*. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + :type requirement: ``str`` + """ + logger.debug('%s missing %r', distribution, requirement) + self.missing.setdefault(distribution, []).append(requirement) + + def _repr_dist(self, dist): + return '%s %s' % (dist.name, dist.version) + + def repr_node(self, dist, level=1): + """Prints only a subgraph""" + output = [self._repr_dist(dist)] + for other, label in self.adjacency_list[dist]: + dist = self._repr_dist(other) + if label is not None: + dist = '%s [%s]' % (dist, label) + output.append(' ' * level + str(dist)) + suboutput = self.repr_node(other, level + 1) + subs = suboutput.split('\n') + output.extend(subs[1:]) + return '\n'.join(output) + + def to_dot(self, f, skip_disconnected=True): + """Writes a DOT output for the graph to the provided file *f*. + + If *skip_disconnected* is set to ``True``, then all distributions + that are not dependent on any other distribution are skipped. + + :type f: has to support ``file``-like operations + :type skip_disconnected: ``bool`` + """ + disconnected = [] + + f.write("digraph dependencies {\n") + for dist, adjs in self.adjacency_list.items(): + if len(adjs) == 0 and not skip_disconnected: + disconnected.append(dist) + for other, label in adjs: + if label is not None: + f.write('"%s" -> "%s" [label="%s"]\n' % + (dist.name, other.name, label)) + else: + f.write('"%s" -> "%s"\n' % (dist.name, other.name)) + if not skip_disconnected and len(disconnected) > 0: + f.write('subgraph disconnected {\n') + f.write('label = "Disconnected"\n') + f.write('bgcolor = red\n') + + for dist in disconnected: + f.write('"%s"' % dist.name) + f.write('\n') + f.write('}\n') + f.write('}\n') + + def topological_sort(self): + """ + Perform a topological sort of the graph. + :return: A tuple, the first element of which is a topologically sorted + list of distributions, and the second element of which is a + list of distributions that cannot be sorted because they have + circular dependencies and so form a cycle. + """ + result = [] + # Make a shallow copy of the adjacency list + alist = {} + for k, v in self.adjacency_list.items(): + alist[k] = v[:] + while True: + # See what we can remove in this run + to_remove = [] + for k, v in list(alist.items())[:]: + if not v: + to_remove.append(k) + del alist[k] + if not to_remove: + # What's left in alist (if anything) is a cycle. + break + # Remove from the adjacency list of others + for k, v in alist.items(): + alist[k] = [(d, r) for d, r in v if d not in to_remove] + logger.debug('Moving to result: %s', + ['%s (%s)' % (d.name, d.version) for d in to_remove]) + result.extend(to_remove) + return result, list(alist.keys()) + + def __repr__(self): + """Representation of the graph""" + output = [] + for dist, adjs in self.adjacency_list.items(): + output.append(self.repr_node(dist)) + return '\n'.join(output) + + +def make_graph(dists, scheme='default'): + """Makes a dependency graph from the given distributions. + + :parameter dists: a list of distributions + :type dists: list of :class:`distutils2.database.InstalledDistribution` and + :class:`distutils2.database.EggInfoDistribution` instances + :rtype: a :class:`DependencyGraph` instance + """ + scheme = get_scheme(scheme) + graph = DependencyGraph() + provided = {} # maps names to lists of (version, dist) tuples + + # first, build the graph and find out what's provided + for dist in dists: + graph.add_distribution(dist) + + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + provided.setdefault(name, []).append((version, dist)) + + # now make the edges + for dist in dists: + requires = (dist.run_requires | dist.meta_requires + | dist.build_requires | dist.dev_requires) + for req in requires: + try: + matcher = scheme.matcher(req) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', + req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + matched = False + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + graph.add_edge(dist, provider, req) + matched = True + break + if not matched: + graph.add_missing(dist, req) + return graph + + +def get_dependent_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + dependent on *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + dep = [dist] # dependent distributions + todo = graph.reverse_list[dist] # list of nodes we should inspect + + while todo: + d = todo.pop() + dep.append(d) + for succ in graph.reverse_list[d]: + if succ not in dep: + todo.append(succ) + + dep.pop(0) # remove dist from dep, was there to prevent infinite loops + return dep + + +def get_required_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + required by *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + in finding the dependencies. + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + req = set() # required distributions + todo = graph.adjacency_list[dist] # list of nodes we should inspect + seen = set(t[0] for t in todo) # already added to todo + + while todo: + d = todo.pop()[0] + req.add(d) + pred_list = graph.adjacency_list[d] + for pred in pred_list: + d = pred[0] + if d not in req and d not in seen: + seen.add(d) + todo.append(pred) + return req + + +def make_dist(name, version, **kwargs): + """ + A convenience method for making a dist given just a name and version. + """ + summary = kwargs.pop('summary', 'Placeholder for summary') + md = Metadata(**kwargs) + md.name = name + md.version = version + md.summary = summary or 'Placeholder for summary' + return Distribution(md) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py new file mode 100644 index 00000000..56cd2867 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py @@ -0,0 +1,508 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import hashlib +import logging +import os +import shutil +import subprocess +import tempfile +try: + from threading import Thread +except ImportError: # pragma: no cover + from dummy_threading import Thread + +from . import DistlibException +from .compat import (HTTPBasicAuthHandler, Request, HTTPPasswordMgr, + urlparse, build_opener, string_types) +from .util import zip_dir, ServerProxy + +logger = logging.getLogger(__name__) + +DEFAULT_INDEX = 'https://pypi.org/pypi' +DEFAULT_REALM = 'pypi' + + +class PackageIndex(object): + """ + This class represents a package index compatible with PyPI, the Python + Package Index. + """ + + boundary = b'----------ThIs_Is_tHe_distlib_index_bouNdaRY_$' + + def __init__(self, url=None): + """ + Initialise an instance. + + :param url: The URL of the index. If not specified, the URL for PyPI is + used. + """ + self.url = url or DEFAULT_INDEX + self.read_configuration() + scheme, netloc, path, params, query, frag = urlparse(self.url) + if params or query or frag or scheme not in ('http', 'https'): + raise DistlibException('invalid repository: %s' % self.url) + self.password_handler = None + self.ssl_verifier = None + self.gpg = None + self.gpg_home = None + with open(os.devnull, 'w') as sink: + # Use gpg by default rather than gpg2, as gpg2 insists on + # prompting for passwords + for s in ('gpg', 'gpg2'): + try: + rc = subprocess.check_call([s, '--version'], stdout=sink, + stderr=sink) + if rc == 0: + self.gpg = s + break + except OSError: + pass + + def _get_pypirc_command(self): + """ + Get the distutils command for interacting with PyPI configurations. + :return: the command. + """ + from .util import _get_pypirc_command as cmd + return cmd() + + def read_configuration(self): + """ + Read the PyPI access configuration as supported by distutils. This populates + ``username``, ``password``, ``realm`` and ``url`` attributes from the + configuration. + """ + from .util import _load_pypirc + cfg = _load_pypirc(self) + self.username = cfg.get('username') + self.password = cfg.get('password') + self.realm = cfg.get('realm', 'pypi') + self.url = cfg.get('repository', self.url) + + def save_configuration(self): + """ + Save the PyPI access configuration. You must have set ``username`` and + ``password`` attributes before calling this method. + """ + self.check_credentials() + from .util import _store_pypirc + _store_pypirc(self) + + def check_credentials(self): + """ + Check that ``username`` and ``password`` have been set, and raise an + exception if not. + """ + if self.username is None or self.password is None: + raise DistlibException('username and password must be set') + pm = HTTPPasswordMgr() + _, netloc, _, _, _, _ = urlparse(self.url) + pm.add_password(self.realm, netloc, self.username, self.password) + self.password_handler = HTTPBasicAuthHandler(pm) + + def register(self, metadata): # pragma: no cover + """ + Register a distribution on PyPI, using the provided metadata. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the distribution to be + registered. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + metadata.validate() + d = metadata.todict() + d[':action'] = 'verify' + request = self.encode_request(d.items(), []) + self.send_request(request) + d[':action'] = 'submit' + request = self.encode_request(d.items(), []) + return self.send_request(request) + + def _reader(self, name, stream, outbuf): + """ + Thread runner for reading lines of from a subprocess into a buffer. + + :param name: The logical name of the stream (used for logging only). + :param stream: The stream to read from. This will typically a pipe + connected to the output stream of a subprocess. + :param outbuf: The list to append the read lines to. + """ + while True: + s = stream.readline() + if not s: + break + s = s.decode('utf-8').rstrip() + outbuf.append(s) + logger.debug('%s: %s' % (name, s)) + stream.close() + + def get_sign_command(self, filename, signer, sign_password, keystore=None): # pragma: no cover + """ + Return a suitable command for signing a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The signing command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + if sign_password is not None: + cmd.extend(['--batch', '--passphrase-fd', '0']) + td = tempfile.mkdtemp() + sf = os.path.join(td, os.path.basename(filename) + '.asc') + cmd.extend(['--detach-sign', '--armor', '--local-user', + signer, '--output', sf, filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd, sf + + def run_command(self, cmd, input_data=None): + """ + Run a command in a child process , passing it any input data specified. + + :param cmd: The command to run. + :param input_data: If specified, this must be a byte string containing + data to be sent to the child process. + :return: A tuple consisting of the subprocess' exit code, a list of + lines read from the subprocess' ``stdout``, and a list of + lines read from the subprocess' ``stderr``. + """ + kwargs = { + 'stdout': subprocess.PIPE, + 'stderr': subprocess.PIPE, + } + if input_data is not None: + kwargs['stdin'] = subprocess.PIPE + stdout = [] + stderr = [] + p = subprocess.Popen(cmd, **kwargs) + # We don't use communicate() here because we may need to + # get clever with interacting with the command + t1 = Thread(target=self._reader, args=('stdout', p.stdout, stdout)) + t1.start() + t2 = Thread(target=self._reader, args=('stderr', p.stderr, stderr)) + t2.start() + if input_data is not None: + p.stdin.write(input_data) + p.stdin.close() + + p.wait() + t1.join() + t2.join() + return p.returncode, stdout, stderr + + def sign_file(self, filename, signer, sign_password, keystore=None): # pragma: no cover + """ + Sign a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The absolute pathname of the file where the signature is + stored. + """ + cmd, sig_file = self.get_sign_command(filename, signer, sign_password, + keystore) + rc, stdout, stderr = self.run_command(cmd, + sign_password.encode('utf-8')) + if rc != 0: + raise DistlibException('sign command failed with error ' + 'code %s' % rc) + return sig_file + + def upload_file(self, metadata, filename, signer=None, sign_password=None, + filetype='sdist', pyversion='source', keystore=None): + """ + Upload a release file to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the file to be uploaded. + :param filename: The pathname of the file to be uploaded. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param filetype: The type of the file being uploaded. This is the + distutils command which produced that file, e.g. + ``sdist`` or ``bdist_wheel``. + :param pyversion: The version of Python which the release relates + to. For code compatible with any Python, this would + be ``source``, otherwise it would be e.g. ``3.2``. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.exists(filename): + raise DistlibException('not found: %s' % filename) + metadata.validate() + d = metadata.todict() + sig_file = None + if signer: + if not self.gpg: + logger.warning('no signing program available - not signed') + else: + sig_file = self.sign_file(filename, signer, sign_password, + keystore) + with open(filename, 'rb') as f: + file_data = f.read() + md5_digest = hashlib.md5(file_data).hexdigest() + sha256_digest = hashlib.sha256(file_data).hexdigest() + d.update({ + ':action': 'file_upload', + 'protocol_version': '1', + 'filetype': filetype, + 'pyversion': pyversion, + 'md5_digest': md5_digest, + 'sha256_digest': sha256_digest, + }) + files = [('content', os.path.basename(filename), file_data)] + if sig_file: + with open(sig_file, 'rb') as f: + sig_data = f.read() + files.append(('gpg_signature', os.path.basename(sig_file), + sig_data)) + shutil.rmtree(os.path.dirname(sig_file)) + request = self.encode_request(d.items(), files) + return self.send_request(request) + + def upload_documentation(self, metadata, doc_dir): # pragma: no cover + """ + Upload documentation to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the documentation to be + uploaded. + :param doc_dir: The pathname of the directory which contains the + documentation. This should be the directory that + contains the ``index.html`` for the documentation. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.isdir(doc_dir): + raise DistlibException('not a directory: %r' % doc_dir) + fn = os.path.join(doc_dir, 'index.html') + if not os.path.exists(fn): + raise DistlibException('not found: %r' % fn) + metadata.validate() + name, version = metadata.name, metadata.version + zip_data = zip_dir(doc_dir).getvalue() + fields = [(':action', 'doc_upload'), + ('name', name), ('version', version)] + files = [('content', name, zip_data)] + request = self.encode_request(fields, files) + return self.send_request(request) + + def get_verify_command(self, signature_filename, data_filename, + keystore=None): + """ + Return a suitable command for verifying a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The verifying command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + cmd.extend(['--verify', signature_filename, data_filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd + + def verify_signature(self, signature_filename, data_filename, + keystore=None): + """ + Verify a signature for a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: True if the signature was verified, else False. + """ + if not self.gpg: + raise DistlibException('verification unavailable because gpg ' + 'unavailable') + cmd = self.get_verify_command(signature_filename, data_filename, + keystore) + rc, stdout, stderr = self.run_command(cmd) + if rc not in (0, 1): + raise DistlibException('verify command failed with error code %s' % rc) + return rc == 0 + + def download_file(self, url, destfile, digest=None, reporthook=None): + """ + This is a convenience method for downloading a file from an URL. + Normally, this will be a file from the index, though currently + no check is made for this (i.e. a file can be downloaded from + anywhere). + + The method is just like the :func:`urlretrieve` function in the + standard library, except that it allows digest computation to be + done during download and checking that the downloaded data + matched any expected value. + + :param url: The URL of the file to be downloaded (assumed to be + available via an HTTP GET request). + :param destfile: The pathname where the downloaded file is to be + saved. + :param digest: If specified, this must be a (hasher, value) + tuple, where hasher is the algorithm used (e.g. + ``'md5'``) and ``value`` is the expected value. + :param reporthook: The same as for :func:`urlretrieve` in the + standard library. + """ + if digest is None: + digester = None + logger.debug('No digest specified') + else: + if isinstance(digest, (list, tuple)): + hasher, digest = digest + else: + hasher = 'md5' + digester = getattr(hashlib, hasher)() + logger.debug('Digest specified: %s' % digest) + # The following code is equivalent to urlretrieve. + # We need to do it this way so that we can compute the + # digest of the file as we go. + with open(destfile, 'wb') as dfp: + # addinfourl is not a context manager on 2.x + # so we have to use try/finally + sfp = self.send_request(Request(url)) + try: + headers = sfp.info() + blocksize = 8192 + size = -1 + read = 0 + blocknum = 0 + if "content-length" in headers: + size = int(headers["Content-Length"]) + if reporthook: + reporthook(blocknum, blocksize, size) + while True: + block = sfp.read(blocksize) + if not block: + break + read += len(block) + dfp.write(block) + if digester: + digester.update(block) + blocknum += 1 + if reporthook: + reporthook(blocknum, blocksize, size) + finally: + sfp.close() + + # check that we got the whole file, if we can + if size >= 0 and read < size: + raise DistlibException( + 'retrieval incomplete: got only %d out of %d bytes' + % (read, size)) + # if we have a digest, it must match. + if digester: + actual = digester.hexdigest() + if digest != actual: + raise DistlibException('%s digest mismatch for %s: expected ' + '%s, got %s' % (hasher, destfile, + digest, actual)) + logger.debug('Digest verified: %s', digest) + + def send_request(self, req): + """ + Send a standard library :class:`Request` to PyPI and return its + response. + + :param req: The request to send. + :return: The HTTP response from PyPI (a standard library HTTPResponse). + """ + handlers = [] + if self.password_handler: + handlers.append(self.password_handler) + if self.ssl_verifier: + handlers.append(self.ssl_verifier) + opener = build_opener(*handlers) + return opener.open(req) + + def encode_request(self, fields, files): + """ + Encode fields and files for posting to an HTTP server. + + :param fields: The fields to send as a list of (fieldname, value) + tuples. + :param files: The files to send as a list of (fieldname, filename, + file_bytes) tuple. + """ + # Adapted from packaging, which in turn was adapted from + # http://code.activestate.com/recipes/146306 + + parts = [] + boundary = self.boundary + for k, values in fields: + if not isinstance(values, (list, tuple)): + values = [values] + + for v in values: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"' % + k).encode('utf-8'), + b'', + v.encode('utf-8'))) + for key, filename, value in files: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"; filename="%s"' % + (key, filename)).encode('utf-8'), + b'', + value)) + + parts.extend((b'--' + boundary + b'--', b'')) + + body = b'\r\n'.join(parts) + ct = b'multipart/form-data; boundary=' + boundary + headers = { + 'Content-type': ct, + 'Content-length': str(len(body)) + } + return Request(self.url, body, headers) + + def search(self, terms, operator=None): # pragma: no cover + if isinstance(terms, string_types): + terms = {'name': terms} + rpc_proxy = ServerProxy(self.url, timeout=3.0) + try: + return rpc_proxy.search(terms, operator or 'and') + finally: + rpc_proxy('close')() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py new file mode 100644 index 00000000..f9f0788f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py @@ -0,0 +1,1303 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# + +import gzip +from io import BytesIO +import json +import logging +import os +import posixpath +import re +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import zlib + +from . import DistlibException +from .compat import (urljoin, urlparse, urlunparse, url2pathname, pathname2url, + queue, quote, unescape, build_opener, + HTTPRedirectHandler as BaseRedirectHandler, text_type, + Request, HTTPError, URLError) +from .database import Distribution, DistributionPath, make_dist +from .metadata import Metadata, MetadataInvalidError +from .util import (cached_property, ensure_slash, split_filename, get_project_data, + parse_requirement, parse_name_and_version, ServerProxy, + normalize_name) +from .version import get_scheme, UnsupportedVersionError +from .wheel import Wheel, is_compatible + +logger = logging.getLogger(__name__) + +HASHER_HASH = re.compile(r'^(\w+)=([a-f0-9]+)') +CHARSET = re.compile(r';\s*charset\s*=\s*(.*)\s*$', re.I) +HTML_CONTENT_TYPE = re.compile('text/html|application/x(ht)?ml') +DEFAULT_INDEX = 'https://pypi.org/pypi' + + +def get_all_distribution_names(url=None): + """ + Return all distribution names known by an index. + :param url: The URL of the index. + :return: A list of all known distribution names. + """ + if url is None: + url = DEFAULT_INDEX + client = ServerProxy(url, timeout=3.0) + try: + return client.list_packages() + finally: + client('close')() + + +class RedirectHandler(BaseRedirectHandler): + """ + A class to work around a bug in some Python 3.2.x releases. + """ + # There's a bug in the base version for some 3.2.x + # (e.g. 3.2.2 on Ubuntu Oneiric). If a Location header + # returns e.g. /abc, it bails because it says the scheme '' + # is bogus, when actually it should use the request's + # URL for the scheme. See Python issue #13696. + def http_error_302(self, req, fp, code, msg, headers): + # Some servers (incorrectly) return multiple Location headers + # (so probably same goes for URI). Use first header. + newurl = None + for key in ('location', 'uri'): + if key in headers: + newurl = headers[key] + break + if newurl is None: # pragma: no cover + return + urlparts = urlparse(newurl) + if urlparts.scheme == '': + newurl = urljoin(req.get_full_url(), newurl) + if hasattr(headers, 'replace_header'): + headers.replace_header(key, newurl) + else: + headers[key] = newurl + return BaseRedirectHandler.http_error_302(self, req, fp, code, msg, + headers) + + http_error_301 = http_error_303 = http_error_307 = http_error_302 + + +class Locator(object): + """ + A base class for locators - things that locate distributions. + """ + source_extensions = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz') + binary_extensions = ('.egg', '.exe', '.whl') + excluded_extensions = ('.pdf',) + + # A list of tags indicating which wheels you want to match. The default + # value of None matches against the tags compatible with the running + # Python. If you want to match other values, set wheel_tags on a locator + # instance to a list of tuples (pyver, abi, arch) which you want to match. + wheel_tags = None + + downloadable_extensions = source_extensions + ('.whl',) + + def __init__(self, scheme='default'): + """ + Initialise an instance. + :param scheme: Because locators look for most recent versions, they + need to know the version scheme to use. This specifies + the current PEP-recommended scheme - use ``'legacy'`` + if you need to support existing distributions on PyPI. + """ + self._cache = {} + self.scheme = scheme + # Because of bugs in some of the handlers on some of the platforms, + # we use our own opener rather than just using urlopen. + self.opener = build_opener(RedirectHandler()) + # If get_project() is called from locate(), the matcher instance + # is set from the requirement passed to locate(). See issue #18 for + # why this can be useful to know. + self.matcher = None + self.errors = queue.Queue() + + def get_errors(self): + """ + Return any errors which have occurred. + """ + result = [] + while not self.errors.empty(): # pragma: no cover + try: + e = self.errors.get(False) + result.append(e) + except self.errors.Empty: + continue + self.errors.task_done() + return result + + def clear_errors(self): + """ + Clear any errors which may have been logged. + """ + # Just get the errors and throw them away + self.get_errors() + + def clear_cache(self): + self._cache.clear() + + def _get_scheme(self): + return self._scheme + + def _set_scheme(self, value): + self._scheme = value + + scheme = property(_get_scheme, _set_scheme) + + def _get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This should be implemented in subclasses. + + If called from a locate() request, self.matcher will be set to a + matcher for the requirement to satisfy, otherwise it will be None. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This calls _get_project to do all the work, and just implements a caching layer on top. + """ + if self._cache is None: # pragma: no cover + result = self._get_project(name) + elif name in self._cache: + result = self._cache[name] + else: + self.clear_errors() + result = self._get_project(name) + self._cache[name] = result + return result + + def score_url(self, url): + """ + Give an url a score which can be used to choose preferred URLs + for a given project release. + """ + t = urlparse(url) + basename = posixpath.basename(t.path) + compatible = True + is_wheel = basename.endswith('.whl') + is_downloadable = basename.endswith(self.downloadable_extensions) + if is_wheel: + compatible = is_compatible(Wheel(basename), self.wheel_tags) + return (t.scheme == 'https', 'pypi.org' in t.netloc, + is_downloadable, is_wheel, compatible, basename) + + def prefer_url(self, url1, url2): + """ + Choose one of two URLs where both are candidates for distribution + archives for the same version of a distribution (for example, + .tar.gz vs. zip). + + The current implementation favours https:// URLs over http://, archives + from PyPI over those from other locations, wheel compatibility (if a + wheel) and then the archive name. + """ + result = url2 + if url1: + s1 = self.score_url(url1) + s2 = self.score_url(url2) + if s1 > s2: + result = url1 + if result != url2: + logger.debug('Not replacing %r with %r', url1, url2) + else: + logger.debug('Replacing %r with %r', url1, url2) + return result + + def split_filename(self, filename, project_name): + """ + Attempt to split a filename in project name, version and Python version. + """ + return split_filename(filename, project_name) + + def convert_url_to_download_info(self, url, project_name): + """ + See if a URL is a candidate for a download URL for a project (the URL + has typically been scraped from an HTML page). + + If it is, a dictionary is returned with keys "name", "version", + "filename" and "url"; otherwise, None is returned. + """ + def same_project(name1, name2): + return normalize_name(name1) == normalize_name(name2) + + result = None + scheme, netloc, path, params, query, frag = urlparse(url) + if frag.lower().startswith('egg='): # pragma: no cover + logger.debug('%s: version hint in fragment: %r', + project_name, frag) + m = HASHER_HASH.match(frag) + if m: + algo, digest = m.groups() + else: + algo, digest = None, None + origpath = path + if path and path[-1] == '/': # pragma: no cover + path = path[:-1] + if path.endswith('.whl'): + try: + wheel = Wheel(path) + if not is_compatible(wheel, self.wheel_tags): + logger.debug('Wheel not compatible: %s', path) + else: + if project_name is None: + include = True + else: + include = same_project(wheel.name, project_name) + if include: + result = { + 'name': wheel.name, + 'version': wheel.version, + 'filename': wheel.filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + 'python-version': ', '.join( + ['.'.join(list(v[2:])) for v in wheel.pyver]), + } + except Exception: # pragma: no cover + logger.warning('invalid path for wheel: %s', path) + elif not path.endswith(self.downloadable_extensions): # pragma: no cover + logger.debug('Not downloadable: %s', path) + else: # downloadable extension + path = filename = posixpath.basename(path) + for ext in self.downloadable_extensions: + if path.endswith(ext): + path = path[:-len(ext)] + t = self.split_filename(path, project_name) + if not t: # pragma: no cover + logger.debug('No match for project/version: %s', path) + else: + name, version, pyver = t + if not project_name or same_project(project_name, name): + result = { + 'name': name, + 'version': version, + 'filename': filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + } + if pyver: # pragma: no cover + result['python-version'] = pyver + break + if result and algo: + result['%s_digest' % algo] = digest + return result + + def _get_digest(self, info): + """ + Get a digest from a dictionary by looking at a "digests" dictionary + or keys of the form 'algo_digest'. + + Returns a 2-tuple (algo, digest) if found, else None. Currently + looks only for SHA256, then MD5. + """ + result = None + if 'digests' in info: + digests = info['digests'] + for algo in ('sha256', 'md5'): + if algo in digests: + result = (algo, digests[algo]) + break + if not result: + for algo in ('sha256', 'md5'): + key = '%s_digest' % algo + if key in info: + result = (algo, info[key]) + break + return result + + def _update_version_data(self, result, info): + """ + Update a result dictionary (the final result from _get_project) with a + dictionary for a specific version, which typically holds information + gleaned from a filename or URL for an archive for the distribution. + """ + name = info.pop('name') + version = info.pop('version') + if version in result: + dist = result[version] + md = dist.metadata + else: + dist = make_dist(name, version, scheme=self.scheme) + md = dist.metadata + dist.digest = digest = self._get_digest(info) + url = info['url'] + result['digests'][url] = digest + if md.source_url != info['url']: + md.source_url = self.prefer_url(md.source_url, url) + result['urls'].setdefault(version, set()).add(url) + dist.locator = self + result[version] = dist + + def locate(self, requirement, prereleases=False): + """ + Find the most recent distribution which matches the given + requirement. + + :param requirement: A requirement of the form 'foo (1.0)' or perhaps + 'foo (>= 1.0, < 2.0, != 1.3)' + :param prereleases: If ``True``, allow pre-release versions + to be located. Otherwise, pre-release versions + are not returned. + :return: A :class:`Distribution` instance, or ``None`` if no such + distribution could be located. + """ + result = None + r = parse_requirement(requirement) + if r is None: # pragma: no cover + raise DistlibException('Not a valid requirement: %r' % requirement) + scheme = get_scheme(self.scheme) + self.matcher = matcher = scheme.matcher(r.requirement) + logger.debug('matcher: %s (%s)', matcher, type(matcher).__name__) + versions = self.get_project(r.name) + if len(versions) > 2: # urls and digests keys are present + # sometimes, versions are invalid + slist = [] + vcls = matcher.version_class + for k in versions: + if k in ('urls', 'digests'): + continue + try: + if not matcher.match(k): + pass # logger.debug('%s did not match %r', matcher, k) + else: + if prereleases or not vcls(k).is_prerelease: + slist.append(k) + except Exception: # pragma: no cover + logger.warning('error matching %s with %r', matcher, k) + pass # slist.append(k) + if len(slist) > 1: + slist = sorted(slist, key=scheme.key) + if slist: + logger.debug('sorted list: %s', slist) + version = slist[-1] + result = versions[version] + if result: + if r.extras: + result.extras = r.extras + result.download_urls = versions.get('urls', {}).get(version, set()) + d = {} + sd = versions.get('digests', {}) + for url in result.download_urls: + if url in sd: # pragma: no cover + d[url] = sd[url] + result.digests = d + self.matcher = None + return result + + +class PyPIRPCLocator(Locator): + """ + This locator uses XML-RPC to locate distributions. It therefore + cannot be used with simple mirrors (that only mirror file content). + """ + def __init__(self, url, **kwargs): + """ + Initialise an instance. + + :param url: The URL to use for XML-RPC. + :param kwargs: Passed to the superclass constructor. + """ + super(PyPIRPCLocator, self).__init__(**kwargs) + self.base_url = url + self.client = ServerProxy(url, timeout=3.0) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + return set(self.client.list_packages()) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + versions = self.client.package_releases(name, True) + for v in versions: + urls = self.client.release_urls(name, v) + data = self.client.release_data(name, v) + metadata = Metadata(scheme=self.scheme) + metadata.name = data['name'] + metadata.version = data['version'] + metadata.license = data.get('license') + metadata.keywords = data.get('keywords', []) + metadata.summary = data.get('summary') + dist = Distribution(metadata) + if urls: + info = urls[0] + metadata.source_url = info['url'] + dist.digest = self._get_digest(info) + dist.locator = self + result[v] = dist + for info in urls: + url = info['url'] + digest = self._get_digest(info) + result['urls'].setdefault(v, set()).add(url) + result['digests'][url] = digest + return result + + +class PyPIJSONLocator(Locator): + """ + This locator uses PyPI's JSON interface. It's very limited in functionality + and probably not worth using. + """ + def __init__(self, url, **kwargs): + super(PyPIJSONLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + url = urljoin(self.base_url, '%s/json' % quote(name)) + try: + resp = self.opener.open(url) + data = resp.read().decode() # for now + d = json.loads(data) + md = Metadata(scheme=self.scheme) + data = d['info'] + md.name = data['name'] + md.version = data['version'] + md.license = data.get('license') + md.keywords = data.get('keywords', []) + md.summary = data.get('summary') + dist = Distribution(md) + dist.locator = self + # urls = d['urls'] + result[md.version] = dist + for info in d['urls']: + url = info['url'] + dist.download_urls.add(url) + dist.digests[url] = self._get_digest(info) + result['urls'].setdefault(md.version, set()).add(url) + result['digests'][url] = self._get_digest(info) + # Now get other releases + for version, infos in d['releases'].items(): + if version == md.version: + continue # already done + omd = Metadata(scheme=self.scheme) + omd.name = md.name + omd.version = version + odist = Distribution(omd) + odist.locator = self + result[version] = odist + for info in infos: + url = info['url'] + odist.download_urls.add(url) + odist.digests[url] = self._get_digest(info) + result['urls'].setdefault(version, set()).add(url) + result['digests'][url] = self._get_digest(info) +# for info in urls: +# md.source_url = info['url'] +# dist.digest = self._get_digest(info) +# dist.locator = self +# for info in urls: +# url = info['url'] +# result['urls'].setdefault(md.version, set()).add(url) +# result['digests'][url] = self._get_digest(info) + except Exception as e: + self.errors.put(text_type(e)) + logger.exception('JSON fetch failed: %s', e) + return result + + +class Page(object): + """ + This class represents a scraped HTML page. + """ + # The following slightly hairy-looking regex just looks for the contents of + # an anchor link, which has an attribute "href" either immediately preceded + # or immediately followed by a "rel" attribute. The attribute values can be + # declared with double quotes, single quotes or no quotes - which leads to + # the length of the expression. + _href = re.compile(""" +(rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*))\\s+)? +href\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)) +(\\s+rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)))? +""", re.I | re.S | re.X) + _base = re.compile(r"""]+)""", re.I | re.S) + + def __init__(self, data, url): + """ + Initialise an instance with the Unicode page contents and the URL they + came from. + """ + self.data = data + self.base_url = self.url = url + m = self._base.search(self.data) + if m: + self.base_url = m.group(1) + + _clean_re = re.compile(r'[^a-z0-9$&+,/:;=?@.#%_\\|-]', re.I) + + @cached_property + def links(self): + """ + Return the URLs of all the links on a page together with information + about their "rel" attribute, for determining which ones to treat as + downloads and which ones to queue for further scraping. + """ + def clean(url): + "Tidy up an URL." + scheme, netloc, path, params, query, frag = urlparse(url) + return urlunparse((scheme, netloc, quote(path), + params, query, frag)) + + result = set() + for match in self._href.finditer(self.data): + d = match.groupdict('') + rel = (d['rel1'] or d['rel2'] or d['rel3'] or + d['rel4'] or d['rel5'] or d['rel6']) + url = d['url1'] or d['url2'] or d['url3'] + url = urljoin(self.base_url, url) + url = unescape(url) + url = self._clean_re.sub(lambda m: '%%%2x' % ord(m.group(0)), url) + result.add((url, rel)) + # We sort the result, hoping to bring the most recent versions + # to the front + result = sorted(result, key=lambda t: t[0], reverse=True) + return result + + +class SimpleScrapingLocator(Locator): + """ + A locator which scrapes HTML pages to locate downloads for a distribution. + This runs multiple threads to do the I/O; performance is at least as good + as pip's PackageFinder, which works in an analogous fashion. + """ + + # These are used to deal with various Content-Encoding schemes. + decoders = { + 'deflate': zlib.decompress, + 'gzip': lambda b: gzip.GzipFile(fileobj=BytesIO(b)).read(), + 'none': lambda b: b, + } + + def __init__(self, url, timeout=None, num_workers=10, **kwargs): + """ + Initialise an instance. + :param url: The root URL to use for scraping. + :param timeout: The timeout, in seconds, to be applied to requests. + This defaults to ``None`` (no timeout specified). + :param num_workers: The number of worker threads you want to do I/O, + This defaults to 10. + :param kwargs: Passed to the superclass. + """ + super(SimpleScrapingLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + self.timeout = timeout + self._page_cache = {} + self._seen = set() + self._to_fetch = queue.Queue() + self._bad_hosts = set() + self.skip_externals = False + self.num_workers = num_workers + self._lock = threading.RLock() + # See issue #45: we need to be resilient when the locator is used + # in a thread, e.g. with concurrent.futures. We can't use self._lock + # as it is for coordinating our internal threads - the ones created + # in _prepare_threads. + self._gplock = threading.RLock() + self.platform_check = False # See issue #112 + + def _prepare_threads(self): + """ + Threads are created only when get_project is called, and terminate + before it returns. They are there primarily to parallelise I/O (i.e. + fetching web pages). + """ + self._threads = [] + for i in range(self.num_workers): + t = threading.Thread(target=self._fetch) + t.daemon = True + t.start() + self._threads.append(t) + + def _wait_threads(self): + """ + Tell all the threads to terminate (by sending a sentinel value) and + wait for them to do so. + """ + # Note that you need two loops, since you can't say which + # thread will get each sentinel + for t in self._threads: + self._to_fetch.put(None) # sentinel + for t in self._threads: + t.join() + self._threads = [] + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + with self._gplock: + self.result = result + self.project_name = name + url = urljoin(self.base_url, '%s/' % quote(name)) + self._seen.clear() + self._page_cache.clear() + self._prepare_threads() + try: + logger.debug('Queueing %s', url) + self._to_fetch.put(url) + self._to_fetch.join() + finally: + self._wait_threads() + del self.result + return result + + platform_dependent = re.compile(r'\b(linux_(i\d86|x86_64|arm\w+)|' + r'win(32|_amd64)|macosx_?\d+)\b', re.I) + + def _is_platform_dependent(self, url): + """ + Does an URL refer to a platform-specific download? + """ + return self.platform_dependent.search(url) + + def _process_download(self, url): + """ + See if an URL is a suitable download for a project. + + If it is, register information in the result dictionary (for + _get_project) about the specific version it's for. + + Note that the return value isn't actually used other than as a boolean + value. + """ + if self.platform_check and self._is_platform_dependent(url): + info = None + else: + info = self.convert_url_to_download_info(url, self.project_name) + logger.debug('process_download: %s -> %s', url, info) + if info: + with self._lock: # needed because self.result is shared + self._update_version_data(self.result, info) + return info + + def _should_queue(self, link, referrer, rel): + """ + Determine whether a link URL from a referring page and with a + particular "rel" attribute should be queued for scraping. + """ + scheme, netloc, path, _, _, _ = urlparse(link) + if path.endswith(self.source_extensions + self.binary_extensions + + self.excluded_extensions): + result = False + elif self.skip_externals and not link.startswith(self.base_url): + result = False + elif not referrer.startswith(self.base_url): + result = False + elif rel not in ('homepage', 'download'): + result = False + elif scheme not in ('http', 'https', 'ftp'): + result = False + elif self._is_platform_dependent(link): + result = False + else: + host = netloc.split(':', 1)[0] + if host.lower() == 'localhost': + result = False + else: + result = True + logger.debug('should_queue: %s (%s) from %s -> %s', link, rel, + referrer, result) + return result + + def _fetch(self): + """ + Get a URL to fetch from the work queue, get the HTML page, examine its + links for download candidates and candidates for further scraping. + + This is a handy method to run in a thread. + """ + while True: + url = self._to_fetch.get() + try: + if url: + page = self.get_page(url) + if page is None: # e.g. after an error + continue + for link, rel in page.links: + if link not in self._seen: + try: + self._seen.add(link) + if (not self._process_download(link) and + self._should_queue(link, url, rel)): + logger.debug('Queueing %s from %s', link, url) + self._to_fetch.put(link) + except MetadataInvalidError: # e.g. invalid versions + pass + except Exception as e: # pragma: no cover + self.errors.put(text_type(e)) + finally: + # always do this, to avoid hangs :-) + self._to_fetch.task_done() + if not url: + # logger.debug('Sentinel seen, quitting.') + break + + def get_page(self, url): + """ + Get the HTML for an URL, possibly from an in-memory cache. + + XXX TODO Note: this cache is never actually cleared. It's assumed that + the data won't get stale over the lifetime of a locator instance (not + necessarily true for the default_locator). + """ + # http://peak.telecommunity.com/DevCenter/EasyInstall#package-index-api + scheme, netloc, path, _, _, _ = urlparse(url) + if scheme == 'file' and os.path.isdir(url2pathname(path)): + url = urljoin(ensure_slash(url), 'index.html') + + if url in self._page_cache: + result = self._page_cache[url] + logger.debug('Returning %s from cache: %s', url, result) + else: + host = netloc.split(':', 1)[0] + result = None + if host in self._bad_hosts: + logger.debug('Skipping %s due to bad host %s', url, host) + else: + req = Request(url, headers={'Accept-encoding': 'identity'}) + try: + logger.debug('Fetching %s', url) + resp = self.opener.open(req, timeout=self.timeout) + logger.debug('Fetched %s', url) + headers = resp.info() + content_type = headers.get('Content-Type', '') + if HTML_CONTENT_TYPE.match(content_type): + final_url = resp.geturl() + data = resp.read() + encoding = headers.get('Content-Encoding') + if encoding: + decoder = self.decoders[encoding] # fail if not found + data = decoder(data) + encoding = 'utf-8' + m = CHARSET.search(content_type) + if m: + encoding = m.group(1) + try: + data = data.decode(encoding) + except UnicodeError: # pragma: no cover + data = data.decode('latin-1') # fallback + result = Page(data, final_url) + self._page_cache[final_url] = result + except HTTPError as e: + if e.code != 404: + logger.exception('Fetch failed: %s: %s', url, e) + except URLError as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + with self._lock: + self._bad_hosts.add(host) + except Exception as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + finally: + self._page_cache[url] = result # even if None (failure) + return result + + _distname_re = re.compile(']*>([^<]+)<') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + page = self.get_page(self.base_url) + if not page: + raise DistlibException('Unable to get %s' % self.base_url) + for match in self._distname_re.finditer(page.data): + result.add(match.group(1)) + return result + + +class DirectoryLocator(Locator): + """ + This class locates distributions in a directory tree. + """ + + def __init__(self, path, **kwargs): + """ + Initialise an instance. + :param path: The root of the directory tree to search. + :param kwargs: Passed to the superclass constructor, + except for: + * recursive - if True (the default), subdirectories are + recursed into. If False, only the top-level directory + is searched, + """ + self.recursive = kwargs.pop('recursive', True) + super(DirectoryLocator, self).__init__(**kwargs) + path = os.path.abspath(path) + if not os.path.isdir(path): # pragma: no cover + raise DistlibException('Not a directory: %r' % path) + self.base_dir = path + + def should_include(self, filename, parent): + """ + Should a filename be considered as a candidate for a distribution + archive? As well as the filename, the directory which contains it + is provided, though not used by the current implementation. + """ + return filename.endswith(self.downloadable_extensions) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, name) + if info: + self._update_version_data(result, info) + if not self.recursive: + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, None) + if info: + result.add(info['name']) + if not self.recursive: + break + return result + + +class JSONLocator(Locator): + """ + This locator uses special extended metadata (not available on PyPI) and is + the basis of performant dependency resolution in distlib. Other locators + require archive downloads before dependencies can be determined! As you + might imagine, that can be slow. + """ + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + data = get_project_data(name) + if data: + for info in data.get('files', []): + if info['ptype'] != 'sdist' or info['pyversion'] != 'source': + continue + # We don't store summary in project metadata as it makes + # the data bigger for no benefit during dependency + # resolution + dist = make_dist(data['name'], info['version'], + summary=data.get('summary', + 'Placeholder for summary'), + scheme=self.scheme) + md = dist.metadata + md.source_url = info['url'] + # TODO SHA256 digest + if 'digest' in info and info['digest']: + dist.digest = ('md5', info['digest']) + md.dependencies = info.get('requirements', {}) + dist.exports = info.get('exports', {}) + result[dist.version] = dist + result['urls'].setdefault(dist.version, set()).add(info['url']) + return result + + +class DistPathLocator(Locator): + """ + This locator finds installed distributions in a path. It can be useful for + adding to an :class:`AggregatingLocator`. + """ + def __init__(self, distpath, **kwargs): + """ + Initialise an instance. + + :param distpath: A :class:`DistributionPath` instance to search. + """ + super(DistPathLocator, self).__init__(**kwargs) + assert isinstance(distpath, DistributionPath) + self.distpath = distpath + + def _get_project(self, name): + dist = self.distpath.get_distribution(name) + if dist is None: + result = {'urls': {}, 'digests': {}} + else: + result = { + dist.version: dist, + 'urls': {dist.version: set([dist.source_url])}, + 'digests': {dist.version: set([None])} + } + return result + + +class AggregatingLocator(Locator): + """ + This class allows you to chain and/or merge a list of locators. + """ + def __init__(self, *locators, **kwargs): + """ + Initialise an instance. + + :param locators: The list of locators to search. + :param kwargs: Passed to the superclass constructor, + except for: + * merge - if False (the default), the first successful + search from any of the locators is returned. If True, + the results from all locators are merged (this can be + slow). + """ + self.merge = kwargs.pop('merge', False) + self.locators = locators + super(AggregatingLocator, self).__init__(**kwargs) + + def clear_cache(self): + super(AggregatingLocator, self).clear_cache() + for locator in self.locators: + locator.clear_cache() + + def _set_scheme(self, value): + self._scheme = value + for locator in self.locators: + locator.scheme = value + + scheme = property(Locator.scheme.fget, _set_scheme) + + def _get_project(self, name): + result = {} + for locator in self.locators: + d = locator.get_project(name) + if d: + if self.merge: + files = result.get('urls', {}) + digests = result.get('digests', {}) + # next line could overwrite result['urls'], result['digests'] + result.update(d) + df = result.get('urls') + if files and df: + for k, v in files.items(): + if k in df: + df[k] |= v + else: + df[k] = v + dd = result.get('digests') + if digests and dd: + dd.update(digests) + else: + # See issue #18. If any dists are found and we're looking + # for specific constraints, we only return something if + # a match is found. For example, if a DirectoryLocator + # returns just foo (1.0) while we're looking for + # foo (>= 2.0), we'll pretend there was nothing there so + # that subsequent locators can be queried. Otherwise we + # would just return foo (1.0) which would then lead to a + # failure to find foo (>= 2.0), because other locators + # weren't searched. Note that this only matters when + # merge=False. + if self.matcher is None: + found = True + else: + found = False + for k in d: + if self.matcher.match(k): + found = True + break + if found: + result = d + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for locator in self.locators: + try: + result |= locator.get_distribution_names() + except NotImplementedError: + pass + return result + + +# We use a legacy scheme simply because most of the dists on PyPI use legacy +# versions which don't conform to PEP 440. +default_locator = AggregatingLocator( + # JSONLocator(), # don't use as PEP 426 is withdrawn + SimpleScrapingLocator('https://pypi.org/simple/', + timeout=3.0), + scheme='legacy') + +locate = default_locator.locate + + +class DependencyFinder(object): + """ + Locate dependencies for distributions. + """ + + def __init__(self, locator=None): + """ + Initialise an instance, using the specified locator + to locate distributions. + """ + self.locator = locator or default_locator + self.scheme = get_scheme(self.locator.scheme) + + def add_distribution(self, dist): + """ + Add a distribution to the finder. This will update internal information + about who provides what. + :param dist: The distribution to add. + """ + logger.debug('adding distribution %s', dist) + name = dist.key + self.dists_by_name[name] = dist + self.dists[(name, dist.version)] = dist + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + self.provided.setdefault(name, set()).add((version, dist)) + + def remove_distribution(self, dist): + """ + Remove a distribution from the finder. This will update internal + information about who provides what. + :param dist: The distribution to remove. + """ + logger.debug('removing distribution %s', dist) + name = dist.key + del self.dists_by_name[name] + del self.dists[(name, dist.version)] + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Remove from provided: %s, %s, %s', name, version, dist) + s = self.provided[name] + s.remove((version, dist)) + if not s: + del self.provided[name] + + def get_matcher(self, reqt): + """ + Get a version matcher for a requirement. + :param reqt: The requirement + :type reqt: str + :return: A version matcher (an instance of + :class:`distlib.version.Matcher`). + """ + try: + matcher = self.scheme.matcher(reqt) + except UnsupportedVersionError: # pragma: no cover + # XXX compat-mode if cannot read the version + name = reqt.split()[0] + matcher = self.scheme.matcher(name) + return matcher + + def find_providers(self, reqt): + """ + Find the distributions which can fulfill a requirement. + + :param reqt: The requirement. + :type reqt: str + :return: A set of distribution which can fulfill the requirement. + """ + matcher = self.get_matcher(reqt) + name = matcher.key # case-insensitive + result = set() + provided = self.provided + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + result.add(provider) + break + return result + + def try_to_replace(self, provider, other, problems): + """ + Attempt to replace one provider with another. This is typically used + when resolving dependencies from multiple sources, e.g. A requires + (B >= 1.0) while C requires (B >= 1.1). + + For successful replacement, ``provider`` must meet all the requirements + which ``other`` fulfills. + + :param provider: The provider we are trying to replace with. + :param other: The provider we're trying to replace. + :param problems: If False is returned, this will contain what + problems prevented replacement. This is currently + a tuple of the literal string 'cantreplace', + ``provider``, ``other`` and the set of requirements + that ``provider`` couldn't fulfill. + :return: True if we can replace ``other`` with ``provider``, else + False. + """ + rlist = self.reqts[other] + unmatched = set() + for s in rlist: + matcher = self.get_matcher(s) + if not matcher.match(provider.version): + unmatched.add(s) + if unmatched: + # can't replace other with provider + problems.add(('cantreplace', provider, other, + frozenset(unmatched))) + result = False + else: + # can replace other with provider + self.remove_distribution(other) + del self.reqts[other] + for s in rlist: + self.reqts.setdefault(provider, set()).add(s) + self.add_distribution(provider) + result = True + return result + + def find(self, requirement, meta_extras=None, prereleases=False): + """ + Find a distribution and all distributions it depends on. + + :param requirement: The requirement specifying the distribution to + find, or a Distribution instance. + :param meta_extras: A list of meta extras such as :test:, :build: and + so on. + :param prereleases: If ``True``, allow pre-release versions to be + returned - otherwise, don't return prereleases + unless they're all that's available. + + Return a set of :class:`Distribution` instances and a set of + problems. + + The distributions returned should be such that they have the + :attr:`required` attribute set to ``True`` if they were + from the ``requirement`` passed to ``find()``, and they have the + :attr:`build_time_dependency` attribute set to ``True`` unless they + are post-installation dependencies of the ``requirement``. + + The problems should be a tuple consisting of the string + ``'unsatisfied'`` and the requirement which couldn't be satisfied + by any distribution known to the locator. + """ + + self.provided = {} + self.dists = {} + self.dists_by_name = {} + self.reqts = {} + + meta_extras = set(meta_extras or []) + if ':*:' in meta_extras: + meta_extras.remove(':*:') + # :meta: and :run: are implicitly included + meta_extras |= set([':test:', ':build:', ':dev:']) + + if isinstance(requirement, Distribution): + dist = odist = requirement + logger.debug('passed %s as requirement', odist) + else: + dist = odist = self.locator.locate(requirement, + prereleases=prereleases) + if dist is None: + raise DistlibException('Unable to locate %r' % requirement) + logger.debug('located %s', odist) + dist.requested = True + problems = set() + todo = set([dist]) + install_dists = set([odist]) + while todo: + dist = todo.pop() + name = dist.key # case-insensitive + if name not in self.dists_by_name: + self.add_distribution(dist) + else: + # import pdb; pdb.set_trace() + other = self.dists_by_name[name] + if other != dist: + self.try_to_replace(dist, other, problems) + + ireqts = dist.run_requires | dist.meta_requires + sreqts = dist.build_requires + ereqts = set() + if meta_extras and dist in install_dists: + for key in ('test', 'build', 'dev'): + e = ':%s:' % key + if e in meta_extras: + ereqts |= getattr(dist, '%s_requires' % key) + all_reqts = ireqts | sreqts | ereqts + for r in all_reqts: + providers = self.find_providers(r) + if not providers: + logger.debug('No providers found for %r', r) + provider = self.locator.locate(r, prereleases=prereleases) + # If no provider is found and we didn't consider + # prereleases, consider them now. + if provider is None and not prereleases: + provider = self.locator.locate(r, prereleases=True) + if provider is None: + logger.debug('Cannot satisfy %r', r) + problems.add(('unsatisfied', r)) + else: + n, v = provider.key, provider.version + if (n, v) not in self.dists: + todo.add(provider) + providers.add(provider) + if r in ireqts and dist in install_dists: + install_dists.add(provider) + logger.debug('Adding %s to install_dists', + provider.name_and_version) + for p in providers: + name = p.key + if name not in self.dists_by_name: + self.reqts.setdefault(p, set()).add(r) + else: + other = self.dists_by_name[name] + if other != p: + # see if other can be replaced by p + self.try_to_replace(p, other, problems) + + dists = set(self.dists.values()) + for dist in dists: + dist.build_time_dependency = dist not in install_dists + if dist.build_time_dependency: + logger.debug('%s is a build-time dependency only.', + dist.name_and_version) + logger.debug('find done for %s', odist) + return dists, problems diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py new file mode 100644 index 00000000..420dcf12 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py @@ -0,0 +1,384 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Class representing the list of files in a distribution. + +Equivalent to distutils.filelist, but fixes some problems. +""" +import fnmatch +import logging +import os +import re +import sys + +from . import DistlibException +from .compat import fsdecode +from .util import convert_path + + +__all__ = ['Manifest'] + +logger = logging.getLogger(__name__) + +# a \ followed by some spaces + EOL +_COLLAPSE_PATTERN = re.compile('\\\\w*\n', re.M) +_COMMENTED_LINE = re.compile('#.*?(?=\n)|\n(?=$)', re.M | re.S) + +# +# Due to the different results returned by fnmatch.translate, we need +# to do slightly different processing for Python 2.7 and 3.2 ... this needed +# to be brought in for Python 3.6 onwards. +# +_PYTHON_VERSION = sys.version_info[:2] + + +class Manifest(object): + """ + A list of files built by exploring the filesystem and filtered by applying various + patterns to what we find there. + """ + + def __init__(self, base=None): + """ + Initialise an instance. + + :param base: The base directory to explore under. + """ + self.base = os.path.abspath(os.path.normpath(base or os.getcwd())) + self.prefix = self.base + os.sep + self.allfiles = None + self.files = set() + + # + # Public API + # + + def findall(self): + """Find all files under the base and set ``allfiles`` to the absolute + pathnames of files found. + """ + from stat import S_ISREG, S_ISDIR, S_ISLNK + + self.allfiles = allfiles = [] + root = self.base + stack = [root] + pop = stack.pop + push = stack.append + + while stack: + root = pop() + names = os.listdir(root) + + for name in names: + fullname = os.path.join(root, name) + + # Avoid excess stat calls -- just one will do, thank you! + stat = os.stat(fullname) + mode = stat.st_mode + if S_ISREG(mode): + allfiles.append(fsdecode(fullname)) + elif S_ISDIR(mode) and not S_ISLNK(mode): + push(fullname) + + def add(self, item): + """ + Add a file to the manifest. + + :param item: The pathname to add. This can be relative to the base. + """ + if not item.startswith(self.prefix): + item = os.path.join(self.base, item) + self.files.add(os.path.normpath(item)) + + def add_many(self, items): + """ + Add a list of files to the manifest. + + :param items: The pathnames to add. These can be relative to the base. + """ + for item in items: + self.add(item) + + def sorted(self, wantdirs=False): + """ + Return sorted files in directory order + """ + + def add_dir(dirs, d): + dirs.add(d) + logger.debug('add_dir added %s', d) + if d != self.base: + parent, _ = os.path.split(d) + assert parent not in ('', '/') + add_dir(dirs, parent) + + result = set(self.files) # make a copy! + if wantdirs: + dirs = set() + for f in result: + add_dir(dirs, os.path.dirname(f)) + result |= dirs + return [os.path.join(*path_tuple) for path_tuple in + sorted(os.path.split(path) for path in result)] + + def clear(self): + """Clear all collected files.""" + self.files = set() + self.allfiles = [] + + def process_directive(self, directive): + """ + Process a directive which either adds some files from ``allfiles`` to + ``files``, or removes some files from ``files``. + + :param directive: The directive to process. This should be in a format + compatible with distutils ``MANIFEST.in`` files: + + http://docs.python.org/distutils/sourcedist.html#commands + """ + # Parse the line: split it up, make sure the right number of words + # is there, and return the relevant words. 'action' is always + # defined: it's the first word of the line. Which of the other + # three are defined depends on the action; it'll be either + # patterns, (dir and patterns), or (dirpattern). + action, patterns, thedir, dirpattern = self._parse_directive(directive) + + # OK, now we know that the action is valid and we have the + # right number of words on the line for that action -- so we + # can proceed with minimal error-checking. + if action == 'include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=True): + logger.warning('no files found matching %r', pattern) + + elif action == 'exclude': + for pattern in patterns: + self._exclude_pattern(pattern, anchor=True) + + elif action == 'global-include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=False): + logger.warning('no files found matching %r ' + 'anywhere in distribution', pattern) + + elif action == 'global-exclude': + for pattern in patterns: + self._exclude_pattern(pattern, anchor=False) + + elif action == 'recursive-include': + for pattern in patterns: + if not self._include_pattern(pattern, prefix=thedir): + logger.warning('no files found matching %r ' + 'under directory %r', pattern, thedir) + + elif action == 'recursive-exclude': + for pattern in patterns: + self._exclude_pattern(pattern, prefix=thedir) + + elif action == 'graft': + if not self._include_pattern(None, prefix=dirpattern): + logger.warning('no directories found matching %r', + dirpattern) + + elif action == 'prune': + if not self._exclude_pattern(None, prefix=dirpattern): + logger.warning('no previously-included directories found ' + 'matching %r', dirpattern) + else: # pragma: no cover + # This should never happen, as it should be caught in + # _parse_template_line + raise DistlibException( + 'invalid action %r' % action) + + # + # Private API + # + + def _parse_directive(self, directive): + """ + Validate a directive. + :param directive: The directive to validate. + :return: A tuple of action, patterns, thedir, dir_patterns + """ + words = directive.split() + if len(words) == 1 and words[0] not in ('include', 'exclude', + 'global-include', + 'global-exclude', + 'recursive-include', + 'recursive-exclude', + 'graft', 'prune'): + # no action given, let's use the default 'include' + words.insert(0, 'include') + + action = words[0] + patterns = thedir = dir_pattern = None + + if action in ('include', 'exclude', + 'global-include', 'global-exclude'): + if len(words) < 2: + raise DistlibException( + '%r expects ...' % action) + + patterns = [convert_path(word) for word in words[1:]] + + elif action in ('recursive-include', 'recursive-exclude'): + if len(words) < 3: + raise DistlibException( + '%r expects

P977@=jz?8THiHI{OArcEU8@ilJ?o?oQVVKkGqjp|Db+O5 zI8|$QgbV=@LDZebi+dx=YLvK&O0F&Z6HG!m4DSZ_K~crsnmaWMMVr$_n}1)K+55eT zxuV^Z7Q6<1fCU<-i{^$Qng*8i@6+98_t%xPV+|UkCD-u5to}pWNUc z3+@GB1Kw9o`SDWarSH5nFYH(^4~hhD+0AP=zc_VuT1k2K&kQ{D?4Nx;?b)9a_A@32 z48}2k#ac@Un+G#}JVb}8Cm0M318Fic4vV!+E2!ZVqNg&kp_={i?TdBlmzB$TSo zes-1n7%E_hMy{elveamAN@&XR9C`Eb3Qa42Lz(0q1h7KhC%?;OYU^(tpM2qV_~y%V zrh43{$_<%~jhQX}%+~fy`;L!1y}bF*V^8stnIhmE$q31!utHW&8E;N3*;o=aebdG} z6H5-3baG|2Qv=hDZ@!o=-Lm9jdG4IqleLPcBd~iGv7%x!e3r22D=?O}&zffY|G);T zt-1YyxJ&_{KgU1MKQV4JKhI}ME0(lKy?>_hJGI$F&lxT9*ydU`6Wr2K-e^8B{o+jW z!2k?a9mms6C-6wtd|=6bgg2MXlrC`;&Td*};nFb}nhs2bmtYh+Fk@uFY$pre*~x-; z_kK)eWHmaVX%c8b{V&RC1ge9*e`{yY-{kMna{pWM@b^48?WMjoD}Bk|r~F;y#mW0; zVDL8-m;zC)4ANgqSjQrz))rRG-YBJAe;32-<}w*?G!>(l zwNq$1tzNf2-c(62O%TJTy)xXmE|~T(2jooA-V8PrLTT%^vpxSvgWfI3#K@_2>jB~g zpZ1l7B9pRTK1?3*UTQf5*FR8i2ad%A@!<)XiPQ~i3fa)x@ukHTb{*BK)#X`o+RoIq zOmnL(L9TTjfbD`z+~V3M*qOq-VtAsceUGwc3>v^C_Ayf(HK1*8t_!U^7E!{QpzQmt zFjz!Iu1B$ao4f`BT(uYaDi^#7ksArhhEG#YGpSueg2dElsEtq`@v)rh*1p2gkFzF< z;V;r~@^b|94tWR3`zm=~C-2APspS0z);u1-H)-12yo2&_w2A+mLbMAn z-+BHcgMl|K3mjkaK4*KM^S;kH-sjvbf~4nt&h;i#O?l-h2uLOaqSFn+b@jXN2a=8 znw|sdv{z47EZC~jwyLSUbGA)4ERQ{@VKXTq~PXD;9Kq&MzOmF-P?p1t7& z)4^BX5Ei(KG*>Ytq*{)=#~uC1V&81I;l^hKFQvT=%bcAzEH&F|3@NU1snW`y;BP0E zISQ9bFY>(QcIPrj;mS#)pLgB9u!2tjT_3-|Z{+b%1l~#)*2R`8_NQ8&Tj3C05hz`? sJ+<>xHZAZy{8Y;dN8w62`KgB8dh(=^KXAKpp{PDxRR1fEQVc8pKXE&v*Z=?k literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a2404b212043adeaebbec815742979419ea0b4a GIT binary patch literal 2304 zcmb7FO-vg{6rSDn+G_(g0nBfJg_s|Q+AgJuApMb$?IaZ`l|mvlPFl-&2UxIo-Pti< z%Sb57fuuRWrH+)gLh6M!sgz?+RiYev=miTR$SP8is;JG)1P)QuL*FhqL=jcgk#^pj z_cL$y&HLW`UQyvdFggl1C!Vjv| z#FFGAyt(EQ)}$?B1KuL>G7}LngYDQp#x}qn*dbXz1S;7uFA0);%py6iSt4cFGR8<{ zAS=h^l7LxUA=yF889rlHsp1+Rac1mZ=QCI%FRNQZa-8b+Gg!eSMpXi$s^DkC7sA6A zqQSElhlipgpG3mCa2{(ZRnf4Q(QAh>ol(hDP*oHhr?RSq2~kPbH5iZM6!nFbxGKrY zxGu;NR;Wxfy6tRuFcdyNqFV^;qgx54X`&3r8RHcDg9pmNx1)nJ59yg>=qr5=O|m7! z14=C={?5LZG~3bPwv)D!?E#h8JNpslSf%`Mzd2U2fTnbT2hJ$Y&azXD2oYZ5ryxFQ zSKuO**2ArDBgvX$VYY$3{IzZN+1uzlevVO2O8nveuSFBgXl-V+mcy+fj{WV?atx`U zP^x<)$K=pmM=6t6nG8CHs8G^+5NTolPj0z`++IRAf0#kD+$A)_c*}-$l;zWO%-5fF z$eQZw?>{l%>y;PbD&$?5vMw>0kfCx!v#w5wS%)~L5;08@r$qU4$TV1tU^0zK$pWfU zFe=NeP(g=nWksVgC60|+i)pH&^P?GxHQg#1LGRusjTOMwYBi38)YQ6l3+AcVCks-^-X>KL7g z5iExAG)}0gr14ilHBB@e_*9kB3GBO|stGM1CsPS*Xnk>YMvG+v{%NdC2NLpVAeEsL zs?z80eJ`NN6#G)K_*85hYk`!U3PfdvVxq(n0c8)Afi#s9nm?7%D@jb&a1=5Z-TN<6 z4~K0wPW=?7d9>-Sn;(8+JF@7>_bl~%n_jnd6dj!X}x!=8h zx+tKk+I-Ve(}H!&=2(z6oGk@s%eu|8T>Z%A*>Y8HxLOOY)>Wst?7C-NnZ1|2@A<9! zLHGT})$()O9J1HJ4vvaN%SNSGs1(=joy&cX?456MEE{vxeAgR4Ri z#6s+7bBE@0)@gddPW#$GL}I24>;}sqTnRq?M_t zCTDT{_18j!EPC-xxVYV(zjf6ot?iR)pr*9QzHMXBc!- zu%HYFxO&yO09T#Ne@8f^Yvq^&WaU_my#zbH+TT;c+0Ptc&64dqBSR&LF_GY}(paOK zSnA~Oh$*5@LyH#a1Qw+jjfrMPH2-OUlXDLzfCVTpg${cyI!9tNx>ch9sHE;3q?E{` zX^Qu-1C2c<0aT3C663Ma`Murt5kl$=nX3fS=$?|afph>qjl%RddNGfR!ZE&n%iWy6 zvUFv`-Cb~ZZI!A^f*atOMgKy-3_quc|&7|OABgQ`w;|BF60HHq$8J1MyFQwR@gvOH4 zi1DHkxPGM9n`R}f`thvsP{PBhnH`4M4I2(JtGlAnn4+lAhYW2rYGPLBz>^rIZ074n zv;!RXvyZ5)`lEz~T; z7yA|_uD7hAfugm62{E_&i^!lW7DzDA;wjYg(Kgq`)NeX#izfASnRJVHE~FQwTcK5# OSm4`sd9Wc~2>CDjt1*uN literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17b611e40a0623ca5f3c75b046e54984e0ba2b72 GIT binary patch literal 3000 zcmZuzO>7&-6`tk(^WT(3QLc&haP)u(_=3pY*fU?L0l9$^hQ?>YPgra+2vBH>H+xX zy_q+UGjG24&Hgo&iX&)Kom;iCh|oW%5jDQA?EejvZKNXw>5LvT8HEY@n8F410FCX|sTD=@;2mL)Z)Rn?Utd!V1wcapE zvuYYk2#f63<;Ti{n> z{QNw2*KBfa*0wBMrE4w{ViTB&Uon~s*l}P8tSr$C2dm3AQ5}fgav-Lx&e@K;xY5LZ zN_|HoPE9jSZ7GPGSTHuR{#I*w8I$V45fDoDjs2g1@-w&{jNn#~64M!lm64v+W0=!f z%~9ctvibbw-IVpwbaP z2Zwk+NYfxio9|sA_Nt-dqE@{6oD^O?l*8hxp;6a^bX<)Wq1j7yNLV@0ec7;dysoy0 z>5ER7G(Xvbgz1`#U88}0fnc{qtobVUjcm{hrN8|Go@Nj~qinwa>Ksv4Hz zs;V!*F#&Zx--J8Iz655d2~M>J;PXYbuSjY?870Bz9BeL=6vQTJDl#DaM3^^N?mB=c zwQ6dPqpA+w5>0aP`m;Ngn%%&a6>W(a*sNT@&NbI=Ru=4KcTFR>cmc0s({57C7iaAj z?5OgNt+z}(vuN997+#4x%MoMk&RRh&Qs|zUQ7o%)zPxB#k&LC)am{XwR+;v0GJ*>K%)Sq43umz zTO#~dL<-+nQm6Ph)I7msJyBt+ zkru^RK&Oyfh(;$7d1FiV%x@-vtzE$T4CUTU$;Im~1?OUk^*JCM4WNQG9TUeF06bW0Y#yIm zT)a}ml-i3^PI0Yfn7FutUDvQyU;vmhZa9Vo)NWO=&%!D~&rXg~L38KFp~_oUQ0Ih_ zt^j_pkThJBEk+?6JGGn3sT!`tJx$9LSjKmJtz!-YRi?q=U;^AFQUKQV8bd+Di8 zdg?B|pMJT`_F_3X*BzO_pUVP@)INQCG^`R(&} z&hI8q{QUgGWbTu9Z@$~jo`K-o$=k`j?CDPSG#F1rE|u=ZQ7ZSJUItb@bLc(&nSV3$ z)-d{PSe~6=KRf>VY=Qktfd{?B{GgPetZr!y46Ghk)keUZpeI%J! Optional[AuthInfo]: + ... + + @abstractmethod + def save_auth_info(self, url: str, username: str, password: str) -> None: + ... + + +class KeyRingNullProvider(KeyRingBaseProvider): + """Keyring null provider""" + + has_keyring = False + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return None + + +class KeyRingPythonProvider(KeyRingBaseProvider): + """Keyring interface which uses locally imported `keyring`""" + + has_keyring = True + + def __init__(self) -> None: + import keyring + + self.keyring = keyring + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + # Support keyring's get_credential interface which supports getting + # credentials without a username. This is only available for + # keyring>=15.2.0. + if hasattr(self.keyring, "get_credential"): + logger.debug("Getting credentials from keyring for %s", url) + cred = self.keyring.get_credential(url, username) + if cred is not None: + return cred.username, cred.password + return None + + if username is not None: + logger.debug("Getting password from keyring for %s", url) + password = self.keyring.get_password(url, username) + if password: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + self.keyring.set_password(url, username, password) + + +class KeyRingCliProvider(KeyRingBaseProvider): + """Provider which uses `keyring` cli + + Instead of calling the keyring package installed alongside pip + we call keyring on the command line which will enable pip to + use which ever installation of keyring is available first in + PATH. + """ + + has_keyring = True + + def __init__(self, cmd: str) -> None: + self.keyring = cmd + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + # This is the default implementation of keyring.get_credential + # https://github.com/jaraco/keyring/blob/97689324abcf01bd1793d49063e7ca01e03d7d07/keyring/backend.py#L134-L139 + if username is not None: + password = self._get_password(url, username) + if password is not None: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return self._set_password(url, username, password) + + def _get_password(self, service_name: str, username: str) -> Optional[str]: + """Mirror the implementation of keyring.get_password using cli""" + if self.keyring is None: + return None + + cmd = [self.keyring, "get", service_name, username] + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + res = subprocess.run( + cmd, + stdin=subprocess.DEVNULL, + stdout=subprocess.PIPE, + env=env, + ) + if res.returncode: + return None + return res.stdout.decode("utf-8").strip(os.linesep) + + def _set_password(self, service_name: str, username: str, password: str) -> None: + """Mirror the implementation of keyring.set_password using cli""" + if self.keyring is None: + return None + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + subprocess.run( + [self.keyring, "set", service_name, username], + input=f"{password}{os.linesep}".encode("utf-8"), + env=env, + check=True, + ) + return None + + +@lru_cache(maxsize=None) +def get_keyring_provider(provider: str) -> KeyRingBaseProvider: + logger.verbose("Keyring provider requested: %s", provider) + + # keyring has previously failed and been disabled + if KEYRING_DISABLED: + provider = "disabled" + if provider in ["import", "auto"]: + try: + impl = KeyRingPythonProvider() + logger.verbose("Keyring provider set: import") + return impl + except ImportError: + pass + except Exception as exc: + # In the event of an unexpected exception + # we should warn the user + msg = "Installed copy of keyring fails with exception %s" + if provider == "auto": + msg = msg + ", trying to find a keyring executable as a fallback" + logger.warning(msg, exc, exc_info=logger.isEnabledFor(logging.DEBUG)) + if provider in ["subprocess", "auto"]: + cli = shutil.which("keyring") + if cli and cli.startswith(sysconfig.get_path("scripts")): + # all code within this function is stolen from shutil.which implementation + @typing.no_type_check + def PATH_as_shutil_which_determines_it() -> str: + path = os.environ.get("PATH", None) + if path is None: + try: + path = os.confstr("CS_PATH") + except (AttributeError, ValueError): + # os.confstr() or CS_PATH is not available + path = os.defpath + # bpo-35755: Don't use os.defpath if the PATH environment variable is + # set to an empty string + + return path + + scripts = Path(sysconfig.get_path("scripts")) + + paths = [] + for path in PATH_as_shutil_which_determines_it().split(os.pathsep): + p = Path(path) + try: + if not p.samefile(scripts): + paths.append(path) + except FileNotFoundError: + pass + + path = os.pathsep.join(paths) + + cli = shutil.which("keyring", path=path) + + if cli: + logger.verbose("Keyring provider set: subprocess with executable %s", cli) + return KeyRingCliProvider(cli) + + logger.verbose("Keyring provider set: disabled") + return KeyRingNullProvider() + + +class MultiDomainBasicAuth(AuthBase): + def __init__( + self, + prompting: bool = True, + index_urls: Optional[List[str]] = None, + keyring_provider: str = "auto", + ) -> None: + self.prompting = prompting + self.index_urls = index_urls + self.keyring_provider = keyring_provider # type: ignore[assignment] + self.passwords: Dict[str, AuthInfo] = {} + # When the user is prompted to enter credentials and keyring is + # available, we will offer to save them. If the user accepts, + # this value is set to the credentials they entered. After the + # request authenticates, the caller should call + # ``save_credentials`` to save these. + self._credentials_to_save: Optional[Credentials] = None + + @property + def keyring_provider(self) -> KeyRingBaseProvider: + return get_keyring_provider(self._keyring_provider) + + @keyring_provider.setter + def keyring_provider(self, provider: str) -> None: + # The free function get_keyring_provider has been decorated with + # functools.cache. If an exception occurs in get_keyring_auth that + # cache will be cleared and keyring disabled, take that into account + # if you want to remove this indirection. + self._keyring_provider = provider + + @property + def use_keyring(self) -> bool: + # We won't use keyring when --no-input is passed unless + # a specific provider is requested because it might require + # user interaction + return self.prompting or self._keyring_provider not in ["auto", "disabled"] + + def _get_keyring_auth( + self, + url: Optional[str], + username: Optional[str], + ) -> Optional[AuthInfo]: + """Return the tuple auth for a given url from keyring.""" + # Do nothing if no url was provided + if not url: + return None + + try: + return self.keyring_provider.get_auth_info(url, username) + except Exception as exc: + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + global KEYRING_DISABLED + KEYRING_DISABLED = True + get_keyring_provider.cache_clear() + return None + + def _get_index_url(self, url: str) -> Optional[str]: + """Return the original index URL matching the requested URL. + + Cached or dynamically generated credentials may work against + the original index URL rather than just the netloc. + + The provided url should have had its username and password + removed already. If the original index url had credentials then + they will be included in the return value. + + Returns None if no matching index was found, or if --no-index + was specified by the user. + """ + if not url or not self.index_urls: + return None + + url = remove_auth_from_url(url).rstrip("/") + "/" + parsed_url = urllib.parse.urlsplit(url) + + candidates = [] + + for index in self.index_urls: + index = index.rstrip("/") + "/" + parsed_index = urllib.parse.urlsplit(remove_auth_from_url(index)) + if parsed_url == parsed_index: + return index + + if parsed_url.netloc != parsed_index.netloc: + continue + + candidate = urllib.parse.urlsplit(index) + candidates.append(candidate) + + if not candidates: + return None + + candidates.sort( + reverse=True, + key=lambda candidate: commonprefix( + [ + parsed_url.path, + candidate.path, + ] + ).rfind("/"), + ) + + return urllib.parse.urlunsplit(candidates[0]) + + def _get_new_credentials( + self, + original_url: str, + *, + allow_netrc: bool = True, + allow_keyring: bool = False, + ) -> AuthInfo: + """Find and return credentials for the specified URL.""" + # Split the credentials and netloc from the url. + url, netloc, url_user_password = split_auth_netloc_from_url( + original_url, + ) + + # Start with the credentials embedded in the url + username, password = url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in url for %s", netloc) + return url_user_password + + # Find a matching index url for this request + index_url = self._get_index_url(url) + if index_url: + # Split the credentials from the url. + index_info = split_auth_netloc_from_url(index_url) + if index_info: + index_url, _, index_url_user_password = index_info + logger.debug("Found index url %s", index_url) + + # If an index URL was found, try its embedded credentials + if index_url and index_url_user_password[0] is not None: + username, password = index_url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in index url for %s", netloc) + return index_url_user_password + + # Get creds from netrc if we still don't have them + if allow_netrc: + netrc_auth = get_netrc_auth(original_url) + if netrc_auth: + logger.debug("Found credentials in netrc for %s", netloc) + return netrc_auth + + # If we don't have a password and keyring is available, use it. + if allow_keyring: + # The index url is more specific than the netloc, so try it first + # fmt: off + kr_auth = ( + self._get_keyring_auth(index_url, username) or + self._get_keyring_auth(netloc, username) + ) + # fmt: on + if kr_auth: + logger.debug("Found credentials in keyring for %s", netloc) + return kr_auth + + return username, password + + def _get_url_and_credentials( + self, original_url: str + ) -> Tuple[str, Optional[str], Optional[str]]: + """Return the credentials to use for the provided URL. + + If allowed, netrc and keyring may be used to obtain the + correct credentials. + + Returns (url_without_credentials, username, password). Note + that even if the original URL contains credentials, this + function may return a different username and password. + """ + url, netloc, _ = split_auth_netloc_from_url(original_url) + + # Try to get credentials from original url + username, password = self._get_new_credentials(original_url) + + # If credentials not found, use any stored credentials for this netloc. + # Do this if either the username or the password is missing. + # This accounts for the situation in which the user has specified + # the username in the index url, but the password comes from keyring. + if (username is None or password is None) and netloc in self.passwords: + un, pw = self.passwords[netloc] + # It is possible that the cached credentials are for a different username, + # in which case the cache should be ignored. + if username is None or username == un: + username, password = un, pw + + if username is not None or password is not None: + # Convert the username and password if they're None, so that + # this netloc will show up as "cached" in the conditional above. + # Further, HTTPBasicAuth doesn't accept None, so it makes sense to + # cache the value that is going to be used. + username = username or "" + password = password or "" + + # Store any acquired credentials. + self.passwords[netloc] = (username, password) + + assert ( + # Credentials were found + (username is not None and password is not None) + # Credentials were not found + or (username is None and password is None) + ), f"Could not load credentials from url: {original_url}" + + return url, username, password + + def __call__(self, req: Request) -> Request: + # Get credentials for this request + url, username, password = self._get_url_and_credentials(req.url) + + # Set the url of the request to the url without any credentials + req.url = url + + if username is not None and password is not None: + # Send the basic auth with this request + req = HTTPBasicAuth(username, password)(req) + + # Attach a hook to handle 401 responses + req.register_hook("response", self.handle_401) + + return req + + # Factored out to allow for easy patching in tests + def _prompt_for_password( + self, netloc: str + ) -> Tuple[Optional[str], Optional[str], bool]: + username = ask_input(f"User for {netloc}: ") if self.prompting else None + if not username: + return None, None, False + if self.use_keyring: + auth = self._get_keyring_auth(netloc, username) + if auth and auth[0] is not None and auth[1] is not None: + return auth[0], auth[1], False + password = ask_password("Password: ") + return username, password, True + + # Factored out to allow for easy patching in tests + def _should_save_password_to_keyring(self) -> bool: + if ( + not self.prompting + or not self.use_keyring + or not self.keyring_provider.has_keyring + ): + return False + return ask("Save credentials to keyring [y/N]: ", ["y", "n"]) == "y" + + def handle_401(self, resp: Response, **kwargs: Any) -> Response: + # We only care about 401 responses, anything else we want to just + # pass through the actual response + if resp.status_code != 401: + return resp + + username, password = None, None + + # Query the keyring for credentials: + if self.use_keyring: + username, password = self._get_new_credentials( + resp.url, + allow_netrc=False, + allow_keyring=True, + ) + + # We are not able to prompt the user so simply return the response + if not self.prompting and not username and not password: + return resp + + parsed = urllib.parse.urlparse(resp.url) + + # Prompt the user for a new username and password + save = False + if not username and not password: + username, password, save = self._prompt_for_password(parsed.netloc) + + # Store the new username and password to use for future requests + self._credentials_to_save = None + if username is not None and password is not None: + self.passwords[parsed.netloc] = (username, password) + + # Prompt to save the password to keyring + if save and self._should_save_password_to_keyring(): + self._credentials_to_save = Credentials( + url=parsed.netloc, + username=username, + password=password, + ) + + # Consume content and release the original connection to allow our new + # request to reuse the same one. + # The result of the assignment isn't used, it's just needed to consume + # the content. + _ = resp.content + resp.raw.release_conn() + + # Add our new username and password to the request + req = HTTPBasicAuth(username or "", password or "")(resp.request) + req.register_hook("response", self.warn_on_401) + + # On successful request, save the credentials that were used to + # keyring. (Note that if the user responded "no" above, this member + # is not set and nothing will be saved.) + if self._credentials_to_save: + req.register_hook("response", self.save_credentials) + + # Send our new request + new_resp = resp.connection.send(req, **kwargs) + new_resp.history.append(resp) + + return new_resp + + def warn_on_401(self, resp: Response, **kwargs: Any) -> None: + """Response callback to warn about incorrect credentials.""" + if resp.status_code == 401: + logger.warning( + "401 Error, Credentials not correct for %s", + resp.request.url, + ) + + def save_credentials(self, resp: Response, **kwargs: Any) -> None: + """Response callback to save credentials on success.""" + assert ( + self.keyring_provider.has_keyring + ), "should never reach here without keyring" + + creds = self._credentials_to_save + self._credentials_to_save = None + if creds and resp.status_code < 400: + try: + logger.info("Saving credentials to keyring") + self.keyring_provider.save_auth_info( + creds.url, creds.username, creds.password + ) + except Exception: + logger.exception("Failed to save credentials") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py new file mode 100644 index 00000000..4d0fb545 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py @@ -0,0 +1,106 @@ +"""HTTP cache implementation. +""" + +import os +from contextlib import contextmanager +from datetime import datetime +from typing import BinaryIO, Generator, Optional, Union + +from pip._vendor.cachecontrol.cache import SeparateBodyBaseCache +from pip._vendor.cachecontrol.caches import SeparateBodyFileCache +from pip._vendor.requests.models import Response + +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import ensure_dir + + +def is_from_cache(response: Response) -> bool: + return getattr(response, "from_cache", False) + + +@contextmanager +def suppressed_cache_errors() -> Generator[None, None, None]: + """If we can't access the cache then we can just skip caching and process + requests as if caching wasn't enabled. + """ + try: + yield + except OSError: + pass + + +class SafeFileCache(SeparateBodyBaseCache): + """ + A file based cache which is safe to use even when the target directory may + not be accessible or writable. + + There is a race condition when two processes try to write and/or read the + same entry at the same time, since each entry consists of two separate + files (https://github.com/psf/cachecontrol/issues/324). We therefore have + additional logic that makes sure that both files to be present before + returning an entry; this fixes the read side of the race condition. + + For the write side, we assume that the server will only ever return the + same data for the same URL, which ought to be the case for files pip is + downloading. PyPI does not have a mechanism to swap out a wheel for + another wheel, for example. If this assumption is not true, the + CacheControl issue will need to be fixed. + """ + + def __init__(self, directory: str) -> None: + assert directory is not None, "Cache directory must not be None." + super().__init__() + self.directory = directory + + def _get_cache_path(self, name: str) -> str: + # From cachecontrol.caches.file_cache.FileCache._fn, brought into our + # class for backwards-compatibility and to avoid using a non-public + # method. + hashed = SeparateBodyFileCache.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> Optional[bytes]: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + with open(metadata_path, "rb") as f: + return f.read() + + def _write(self, path: str, data: bytes) -> None: + with suppressed_cache_errors(): + ensure_dir(os.path.dirname(path)) + + with adjacent_tmp_file(path) as f: + f.write(data) + + replace(f.name, path) + + def set( + self, key: str, value: bytes, expires: Union[int, datetime, None] = None + ) -> None: + path = self._get_cache_path(key) + self._write(path, value) + + def delete(self, key: str) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + os.remove(path) + with suppressed_cache_errors(): + os.remove(path + ".body") + + def get_body(self, key: str) -> Optional[BinaryIO]: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + return open(body_path, "rb") + + def set_body(self, key: str, body: bytes) -> None: + path = self._get_cache_path(key) + ".body" + self._write(path, body) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py new file mode 100644 index 00000000..d1d43541 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py @@ -0,0 +1,186 @@ +"""Download files with progress indicators. +""" +import email.message +import logging +import mimetypes +import os +from typing import Iterable, Optional, Tuple + +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.cli.progress_bars import get_download_progress_renderer +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.index import PyPI +from pip._internal.models.link import Link +from pip._internal.network.cache import is_from_cache +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.misc import format_size, redact_auth_from_url, splitext + +logger = logging.getLogger(__name__) + + +def _get_http_response_size(resp: Response) -> Optional[int]: + try: + return int(resp.headers["content-length"]) + except (ValueError, KeyError, TypeError): + return None + + +def _prepare_download( + resp: Response, + link: Link, + progress_bar: str, +) -> Iterable[bytes]: + total_length = _get_http_response_size(resp) + + if link.netloc == PyPI.file_storage_domain: + url = link.show_url + else: + url = link.url_without_fragment + + logged_url = redact_auth_from_url(url) + + if total_length: + logged_url = f"{logged_url} ({format_size(total_length)})" + + if is_from_cache(resp): + logger.info("Using cached %s", logged_url) + else: + logger.info("Downloading %s", logged_url) + + if logger.getEffectiveLevel() > logging.INFO: + show_progress = False + elif is_from_cache(resp): + show_progress = False + elif not total_length: + show_progress = True + elif total_length > (40 * 1000): + show_progress = True + else: + show_progress = False + + chunks = response_chunks(resp, CONTENT_CHUNK_SIZE) + + if not show_progress: + return chunks + + renderer = get_download_progress_renderer(bar_type=progress_bar, size=total_length) + return renderer(chunks) + + +def sanitize_content_filename(filename: str) -> str: + """ + Sanitize the "filename" value from a Content-Disposition header. + """ + return os.path.basename(filename) + + +def parse_content_disposition(content_disposition: str, default_filename: str) -> str: + """ + Parse the "filename" value from a Content-Disposition header, and + return the default filename if the result is empty. + """ + m = email.message.Message() + m["content-type"] = content_disposition + filename = m.get_param("filename") + if filename: + # We need to sanitize the filename to prevent directory traversal + # in case the filename contains ".." path parts. + filename = sanitize_content_filename(str(filename)) + return filename or default_filename + + +def _get_http_response_filename(resp: Response, link: Link) -> str: + """Get an ideal filename from the given HTTP response, falling back to + the link filename if not provided. + """ + filename = link.filename # fallback + # Have a look at the Content-Disposition header for a better guess + content_disposition = resp.headers.get("content-disposition") + if content_disposition: + filename = parse_content_disposition(content_disposition, filename) + ext: Optional[str] = splitext(filename)[1] + if not ext: + ext = mimetypes.guess_extension(resp.headers.get("content-type", "")) + if ext: + filename += ext + if not ext and link.url != resp.url: + ext = os.path.splitext(resp.url)[1] + if ext: + filename += ext + return filename + + +def _http_get_download(session: PipSession, link: Link) -> Response: + target_url = link.url.split("#", 1)[0] + resp = session.get(target_url, headers=HEADERS, stream=True) + raise_for_status(resp) + return resp + + +class Downloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__(self, link: Link, location: str) -> Tuple[str, str]: + """Download the file given by link into location.""" + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", e.response.status_code, link + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + return filepath, content_type + + +class BatchDownloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__( + self, links: Iterable[Link], location: str + ) -> Iterable[Tuple[Link, Tuple[str, str]]]: + """Download the files given by links into location.""" + for link in links: + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", + e.response.status_code, + link, + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + yield link, (filepath, content_type) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 00000000..82ec50d5 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py @@ -0,0 +1,210 @@ +"""Lazy ZIP over HTTP""" + +__all__ = ["HTTPRangeRequestUnsupported", "dist_from_wheel_url"] + +from bisect import bisect_left, bisect_right +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, Dict, Generator, List, Optional, Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.metadata import BaseDistribution, MemoryWheel, get_wheel_distribution +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url(name: str, url: str, session: PipSession) -> BaseDistribution: + """Return a distribution object from the given wheel URL. + + This uses HTTP range requests to only fetch the portion of the wheel + containing metadata, just enough for the object to be constructed. + If such requests are not supported, HTTPRangeRequestUnsupported + is raised. + """ + with LazyZipOverHTTP(url, session) as zf: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + wheel = MemoryWheel(zf.name, zf) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return get_wheel_distribution(wheel, canonicalize_name(name)) + + +class LazyZipOverHTTP: + """File-like object mapped to a ZIP file over HTTP. + + This uses HTTP range requests to lazily fetch the file's content, + which is supposed to be fed to ZipFile. If such requests are not + supported by the server, raise HTTPRangeRequestUnsupported + during initialization. + """ + + def __init__( + self, url: str, session: PipSession, chunk_size: int = CONTENT_CHUNK_SIZE + ) -> None: + head = session.head(url, headers=HEADERS) + raise_for_status(head) + assert head.status_code == 200 + self._session, self._url, self._chunk_size = session, url, chunk_size + self._length = int(head.headers["Content-Length"]) + self._file = NamedTemporaryFile() + self.truncate(self._length) + self._left: List[int] = [] + self._right: List[int] = [] + if "bytes" not in head.headers.get("Accept-Ranges", "none"): + raise HTTPRangeRequestUnsupported("range request is not supported") + self._check_zip() + + @property + def mode(self) -> str: + """Opening mode, which is always rb.""" + return "rb" + + @property + def name(self) -> str: + """Path to the underlying file.""" + return self._file.name + + def seekable(self) -> bool: + """Return whether random access is supported, which is True.""" + return True + + def close(self) -> None: + """Close the file.""" + self._file.close() + + @property + def closed(self) -> bool: + """Whether the file is closed.""" + return self._file.closed + + def read(self, size: int = -1) -> bytes: + """Read up to size bytes from the object and return them. + + As a convenience, if size is unspecified or -1, + all bytes until EOF are returned. Fewer than + size bytes may be returned if EOF is reached. + """ + download_size = max(size, self._chunk_size) + start, length = self.tell(), self._length + stop = length if size < 0 else min(start + download_size, length) + start = max(0, stop - download_size) + self._download(start, stop - 1) + return self._file.read(size) + + def readable(self) -> bool: + """Return whether the file is readable, which is True.""" + return True + + def seek(self, offset: int, whence: int = 0) -> int: + """Change stream position and return the new absolute position. + + Seek to offset relative position indicated by whence: + * 0: Start of stream (the default). pos should be >= 0; + * 1: Current position - pos may be negative; + * 2: End of stream - pos usually negative. + """ + return self._file.seek(offset, whence) + + def tell(self) -> int: + """Return the current position.""" + return self._file.tell() + + def truncate(self, size: Optional[int] = None) -> int: + """Resize the stream to the given size in bytes. + + If size is unspecified resize to the current position. + The current stream position isn't changed. + + Return the new file size. + """ + return self._file.truncate(size) + + def writable(self) -> bool: + """Return False.""" + return False + + def __enter__(self) -> "LazyZipOverHTTP": + self._file.__enter__() + return self + + def __exit__(self, *exc: Any) -> None: + self._file.__exit__(*exc) + + @contextmanager + def _stay(self) -> Generator[None, None, None]: + """Return a context manager keeping the position. + + At the end of the block, seek back to original position. + """ + pos = self.tell() + try: + yield + finally: + self.seek(pos) + + def _check_zip(self) -> None: + """Check and download until the file is a valid ZIP.""" + end = self._length - 1 + for start in reversed(range(0, end, self._chunk_size)): + self._download(start, end) + with self._stay(): + try: + # For read-only ZIP files, ZipFile only needs + # methods read, seek, seekable and tell. + ZipFile(self) # type: ignore + except BadZipFile: + pass + else: + break + + def _stream_response( + self, start: int, end: int, base_headers: Dict[str, str] = HEADERS + ) -> Response: + """Return HTTP response to a range request from start to end.""" + headers = base_headers.copy() + headers["Range"] = f"bytes={start}-{end}" + # TODO: Get range requests to be correctly cached + headers["Cache-Control"] = "no-cache" + return self._session.get(self._url, headers=headers, stream=True) + + def _merge( + self, start: int, end: int, left: int, right: int + ) -> Generator[Tuple[int, int], None, None]: + """Return a generator of intervals to be fetched. + + Args: + start (int): Start of needed interval + end (int): End of needed interval + left (int): Index of first overlapping downloaded data + right (int): Index after last overlapping downloaded data + """ + lslice, rslice = self._left[left:right], self._right[left:right] + i = start = min([start] + lslice[:1]) + end = max([end] + rslice[-1:]) + for j, k in zip(lslice, rslice): + if j > i: + yield i, j - 1 + i = k + 1 + if i <= end: + yield i, end + self._left[left:right], self._right[left:right] = [start], [end] + + def _download(self, start: int, end: int) -> None: + """Download bytes from start to end inclusively.""" + with self._stay(): + left = bisect_left(self._right, start) + right = bisect_right(self._left, end) + for start, end in self._merge(start, end, left, right): + response = self._stream_response(start, end) + response.raise_for_status() + self.seek(start) + for chunk in response_chunks(response, self._chunk_size): + self._file.write(chunk) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py new file mode 100644 index 00000000..f17efc52 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py @@ -0,0 +1,520 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +import email.utils +import io +import ipaddress +import json +import logging +import mimetypes +import os +import platform +import shutil +import subprocess +import sys +import urllib.parse +import warnings +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Generator, + List, + Mapping, + Optional, + Sequence, + Tuple, + Union, +) + +from pip._vendor import requests, urllib3 +from pip._vendor.cachecontrol import CacheControlAdapter as _BaseCacheControlAdapter +from pip._vendor.requests.adapters import DEFAULT_POOLBLOCK, BaseAdapter +from pip._vendor.requests.adapters import HTTPAdapter as _BaseHTTPAdapter +from pip._vendor.requests.models import PreparedRequest, Response +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3.connectionpool import ConnectionPool +from pip._vendor.urllib3.exceptions import InsecureRequestWarning + +from pip import __version__ +from pip._internal.metadata import get_default_environment +from pip._internal.models.link import Link +from pip._internal.network.auth import MultiDomainBasicAuth +from pip._internal.network.cache import SafeFileCache + +# Import ssl from compat so the initial import occurs in only one place. +from pip._internal.utils.compat import has_tls +from pip._internal.utils.glibc import libc_ver +from pip._internal.utils.misc import build_url_from_netloc, parse_netloc +from pip._internal.utils.urls import url_to_path + +if TYPE_CHECKING: + from ssl import SSLContext + + from pip._vendor.urllib3.poolmanager import PoolManager + + +logger = logging.getLogger(__name__) + +SecureOrigin = Tuple[str, str, Optional[Union[int, str]]] + + +# Ignore warning raised when using --trusted-host. +warnings.filterwarnings("ignore", category=InsecureRequestWarning) + + +SECURE_ORIGINS: List[SecureOrigin] = [ + # protocol, hostname, port + # Taken from Chrome's list of secure origins (See: http://bit.ly/1qrySKC) + ("https", "*", "*"), + ("*", "localhost", "*"), + ("*", "127.0.0.0/8", "*"), + ("*", "::1/128", "*"), + ("file", "*", None), + # ssh is always secure. + ("ssh", "*", "*"), +] + + +# These are environment variables present when running under various +# CI systems. For each variable, some CI systems that use the variable +# are indicated. The collection was chosen so that for each of a number +# of popular systems, at least one of the environment variables is used. +# This list is used to provide some indication of and lower bound for +# CI traffic to PyPI. Thus, it is okay if the list is not comprehensive. +# For more background, see: https://github.com/pypa/pip/issues/5499 +CI_ENVIRONMENT_VARIABLES = ( + # Azure Pipelines + "BUILD_BUILDID", + # Jenkins + "BUILD_ID", + # AppVeyor, CircleCI, Codeship, Gitlab CI, Shippable, Travis CI + "CI", + # Explicit environment variable. + "PIP_IS_CI", +) + + +def looks_like_ci() -> bool: + """ + Return whether it looks like pip is running under CI. + """ + # We don't use the method of checking for a tty (e.g. using isatty()) + # because some CI systems mimic a tty (e.g. Travis CI). Thus that + # method doesn't provide definitive information in either direction. + return any(name in os.environ for name in CI_ENVIRONMENT_VARIABLES) + + +def user_agent() -> str: + """ + Return a string representing the user agent. + """ + data: Dict[str, Any] = { + "installer": {"name": "pip", "version": __version__}, + "python": platform.python_version(), + "implementation": { + "name": platform.python_implementation(), + }, + } + + if data["implementation"]["name"] == "CPython": + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "PyPy": + pypy_version_info = sys.pypy_version_info # type: ignore + if pypy_version_info.releaselevel == "final": + pypy_version_info = pypy_version_info[:3] + data["implementation"]["version"] = ".".join( + [str(x) for x in pypy_version_info] + ) + elif data["implementation"]["name"] == "Jython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "IronPython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + + if sys.platform.startswith("linux"): + from pip._vendor import distro + + linux_distribution = distro.name(), distro.version(), distro.codename() + distro_infos: Dict[str, Any] = dict( + filter( + lambda x: x[1], + zip(["name", "version", "id"], linux_distribution), + ) + ) + libc = dict( + filter( + lambda x: x[1], + zip(["lib", "version"], libc_ver()), + ) + ) + if libc: + distro_infos["libc"] = libc + if distro_infos: + data["distro"] = distro_infos + + if sys.platform.startswith("darwin") and platform.mac_ver()[0]: + data["distro"] = {"name": "macOS", "version": platform.mac_ver()[0]} + + if platform.system(): + data.setdefault("system", {})["name"] = platform.system() + + if platform.release(): + data.setdefault("system", {})["release"] = platform.release() + + if platform.machine(): + data["cpu"] = platform.machine() + + if has_tls(): + import _ssl as ssl + + data["openssl_version"] = ssl.OPENSSL_VERSION + + setuptools_dist = get_default_environment().get_distribution("setuptools") + if setuptools_dist is not None: + data["setuptools_version"] = str(setuptools_dist.version) + + if shutil.which("rustc") is not None: + # If for any reason `rustc --version` fails, silently ignore it + try: + rustc_output = subprocess.check_output( + ["rustc", "--version"], stderr=subprocess.STDOUT, timeout=0.5 + ) + except Exception: + pass + else: + if rustc_output.startswith(b"rustc "): + # The format of `rustc --version` is: + # `b'rustc 1.52.1 (9bc8c42bb 2021-05-09)\n'` + # We extract just the middle (1.52.1) part + data["rustc_version"] = rustc_output.split(b" ")[1].decode() + + # Use None rather than False so as not to give the impression that + # pip knows it is not being run under CI. Rather, it is a null or + # inconclusive result. Also, we include some value rather than no + # value to make it easier to know that the check has been run. + data["ci"] = True if looks_like_ci() else None + + user_data = os.environ.get("PIP_USER_AGENT_USER_DATA") + if user_data is not None: + data["user_data"] = user_data + + return "{data[installer][name]}/{data[installer][version]} {json}".format( + data=data, + json=json.dumps(data, separators=(",", ":"), sort_keys=True), + ) + + +class LocalFSAdapter(BaseAdapter): + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: Optional[Union[float, Tuple[float, float]]] = None, + verify: Union[bool, str] = True, + cert: Optional[Union[str, Tuple[str, str]]] = None, + proxies: Optional[Mapping[str, str]] = None, + ) -> Response: + pathname = url_to_path(request.url) + + resp = Response() + resp.status_code = 200 + resp.url = request.url + + try: + stats = os.stat(pathname) + except OSError as exc: + # format the exception raised as a io.BytesIO object, + # to return a better error message: + resp.status_code = 404 + resp.reason = type(exc).__name__ + resp.raw = io.BytesIO(f"{resp.reason}: {exc}".encode("utf8")) + else: + modified = email.utils.formatdate(stats.st_mtime, usegmt=True) + content_type = mimetypes.guess_type(pathname)[0] or "text/plain" + resp.headers = CaseInsensitiveDict( + { + "Content-Type": content_type, + "Content-Length": stats.st_size, + "Last-Modified": modified, + } + ) + + resp.raw = open(pathname, "rb") + resp.close = resp.raw.close + + return resp + + def close(self) -> None: + pass + + +class _SSLContextAdapterMixin: + """Mixin to add the ``ssl_context`` constructor argument to HTTP adapters. + + The additional argument is forwarded directly to the pool manager. This allows us + to dynamically decide what SSL store to use at runtime, which is used to implement + the optional ``truststore`` backend. + """ + + def __init__( + self, + *, + ssl_context: Optional["SSLContext"] = None, + **kwargs: Any, + ) -> None: + self._ssl_context = ssl_context + super().__init__(**kwargs) + + def init_poolmanager( + self, + connections: int, + maxsize: int, + block: bool = DEFAULT_POOLBLOCK, + **pool_kwargs: Any, + ) -> "PoolManager": + if self._ssl_context is not None: + pool_kwargs.setdefault("ssl_context", self._ssl_context) + return super().init_poolmanager( # type: ignore[misc] + connections=connections, + maxsize=maxsize, + block=block, + **pool_kwargs, + ) + + +class HTTPAdapter(_SSLContextAdapterMixin, _BaseHTTPAdapter): + pass + + +class CacheControlAdapter(_SSLContextAdapterMixin, _BaseCacheControlAdapter): + pass + + +class InsecureHTTPAdapter(HTTPAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class InsecureCacheControlAdapter(CacheControlAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class PipSession(requests.Session): + timeout: Optional[int] = None + + def __init__( + self, + *args: Any, + retries: int = 0, + cache: Optional[str] = None, + trusted_hosts: Sequence[str] = (), + index_urls: Optional[List[str]] = None, + ssl_context: Optional["SSLContext"] = None, + **kwargs: Any, + ) -> None: + """ + :param trusted_hosts: Domains not to emit warnings for when not using + HTTPS. + """ + super().__init__(*args, **kwargs) + + # Namespace the attribute with "pip_" just in case to prevent + # possible conflicts with the base class. + self.pip_trusted_origins: List[Tuple[str, Optional[int]]] = [] + + # Attach our User Agent to the request + self.headers["User-Agent"] = user_agent() + + # Attach our Authentication handler to the session + self.auth = MultiDomainBasicAuth(index_urls=index_urls) + + # Create our urllib3.Retry instance which will allow us to customize + # how we handle retries. + retries = urllib3.Retry( + # Set the total number of retries that a particular request can + # have. + total=retries, + # A 503 error from PyPI typically means that the Fastly -> Origin + # connection got interrupted in some way. A 503 error in general + # is typically considered a transient error so we'll go ahead and + # retry it. + # A 500 may indicate transient error in Amazon S3 + # A 502 may be a transient error from a CDN like CloudFlare or CloudFront + # A 520 or 527 - may indicate transient error in CloudFlare + status_forcelist=[500, 502, 503, 520, 527], + # Add a small amount of back off between failed requests in + # order to prevent hammering the service. + backoff_factor=0.25, + ) # type: ignore + + # Our Insecure HTTPAdapter disables HTTPS validation. It does not + # support caching so we'll use it for all http:// URLs. + # If caching is disabled, we will also use it for + # https:// hosts that we've marked as ignoring + # TLS errors for (trusted-hosts). + insecure_adapter = InsecureHTTPAdapter(max_retries=retries) + + # We want to _only_ cache responses on securely fetched origins or when + # the host is specified as trusted. We do this because + # we can't validate the response of an insecurely/untrusted fetched + # origin, and we don't want someone to be able to poison the cache and + # require manual eviction from the cache to fix it. + if cache: + secure_adapter = CacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ssl_context=ssl_context, + ) + self._trusted_host_adapter = InsecureCacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + else: + secure_adapter = HTTPAdapter(max_retries=retries, ssl_context=ssl_context) + self._trusted_host_adapter = insecure_adapter + + self.mount("https://", secure_adapter) + self.mount("http://", insecure_adapter) + + # Enable file:// urls + self.mount("file://", LocalFSAdapter()) + + for host in trusted_hosts: + self.add_trusted_host(host, suppress_logging=True) + + def update_index_urls(self, new_index_urls: List[str]) -> None: + """ + :param new_index_urls: New index urls to update the authentication + handler with. + """ + self.auth.index_urls = new_index_urls + + def add_trusted_host( + self, host: str, source: Optional[str] = None, suppress_logging: bool = False + ) -> None: + """ + :param host: It is okay to provide a host that has previously been + added. + :param source: An optional source string, for logging where the host + string came from. + """ + if not suppress_logging: + msg = f"adding trusted host: {host!r}" + if source is not None: + msg += f" (from {source})" + logger.info(msg) + + parsed_host, parsed_port = parse_netloc(host) + if parsed_host is None: + raise ValueError(f"Trusted host URL must include a host part: {host!r}") + if (parsed_host, parsed_port) not in self.pip_trusted_origins: + self.pip_trusted_origins.append((parsed_host, parsed_port)) + + self.mount( + build_url_from_netloc(host, scheme="http") + "/", self._trusted_host_adapter + ) + self.mount(build_url_from_netloc(host) + "/", self._trusted_host_adapter) + if not parsed_port: + self.mount( + build_url_from_netloc(host, scheme="http") + ":", + self._trusted_host_adapter, + ) + # Mount wildcard ports for the same host. + self.mount(build_url_from_netloc(host) + ":", self._trusted_host_adapter) + + def iter_secure_origins(self) -> Generator[SecureOrigin, None, None]: + yield from SECURE_ORIGINS + for host, port in self.pip_trusted_origins: + yield ("*", host, "*" if port is None else port) + + def is_secure_origin(self, location: Link) -> bool: + # Determine if this url used a secure transport mechanism + parsed = urllib.parse.urlparse(str(location)) + origin_protocol, origin_host, origin_port = ( + parsed.scheme, + parsed.hostname, + parsed.port, + ) + + # The protocol to use to see if the protocol matches. + # Don't count the repository type as part of the protocol: in + # cases such as "git+ssh", only use "ssh". (I.e., Only verify against + # the last scheme.) + origin_protocol = origin_protocol.rsplit("+", 1)[-1] + + # Determine if our origin is a secure origin by looking through our + # hardcoded list of secure origins, as well as any additional ones + # configured on this PackageFinder instance. + for secure_origin in self.iter_secure_origins(): + secure_protocol, secure_host, secure_port = secure_origin + if origin_protocol != secure_protocol and secure_protocol != "*": + continue + + try: + addr = ipaddress.ip_address(origin_host or "") + network = ipaddress.ip_network(secure_host) + except ValueError: + # We don't have both a valid address or a valid network, so + # we'll check this origin against hostnames. + if ( + origin_host + and origin_host.lower() != secure_host.lower() + and secure_host != "*" + ): + continue + else: + # We have a valid address and network, so see if the address + # is contained within the network. + if addr not in network: + continue + + # Check to see if the port matches. + if ( + origin_port != secure_port + and secure_port != "*" + and secure_port is not None + ): + continue + + # If we've gotten here, then this origin matches the current + # secure origin and we should return True + return True + + # If we've gotten to this point, then the origin isn't secure and we + # will not accept it as a valid location to search. We will however + # log a warning that we are ignoring it. + logger.warning( + "The repository located at %s is not a trusted or secure host and " + "is being ignored. If this repository is available via HTTPS we " + "recommend you use HTTPS instead, otherwise you may silence " + "this warning and allow it anyway with '--trusted-host %s'.", + origin_host, + origin_host, + ) + + return False + + def request(self, method: str, url: str, *args: Any, **kwargs: Any) -> Response: + # Allow setting a default timeout on a session + kwargs.setdefault("timeout", self.timeout) + # Allow setting a default proxies on a session + kwargs.setdefault("proxies", self.proxies) + + # Dispatch the actual request + return super().request(method, url, *args, **kwargs) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py new file mode 100644 index 00000000..134848ae --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,96 @@ +from typing import Dict, Generator + +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.exceptions import NetworkConnectionError + +# The following comments and HTTP headers were originally added by +# Donald Stufft in git commit 22c562429a61bb77172039e480873fb239dd8c03. +# +# We use Accept-Encoding: identity here because requests defaults to +# accepting compressed responses. This breaks in a variety of ways +# depending on how the server is configured. +# - Some servers will notice that the file isn't a compressible file +# and will leave the file alone and with an empty Content-Encoding +# - Some servers will notice that the file is already compressed and +# will leave the file alone, adding a Content-Encoding: gzip header +# - Some servers won't notice anything at all and will take a file +# that's already been compressed and compress it again, and set +# the Content-Encoding: gzip header +# By setting this to request only the identity encoding we're hoping +# to eliminate the third case. Hopefully there does not exist a server +# which when given a file will notice it is already compressed and that +# you're not asking for a compressed file and will then decompress it +# before sending because if that's the case I don't think it'll ever be +# possible to make this work. +HEADERS: Dict[str, str] = {"Accept-Encoding": "identity"} + + +def raise_for_status(resp: Response) -> None: + http_error_msg = "" + if isinstance(resp.reason, bytes): + # We attempt to decode utf-8 first because some servers + # choose to localize their reason strings. If the string + # isn't utf-8, we fall back to iso-8859-1 for all other + # encodings. + try: + reason = resp.reason.decode("utf-8") + except UnicodeDecodeError: + reason = resp.reason.decode("iso-8859-1") + else: + reason = resp.reason + + if 400 <= resp.status_code < 500: + http_error_msg = ( + f"{resp.status_code} Client Error: {reason} for url: {resp.url}" + ) + + elif 500 <= resp.status_code < 600: + http_error_msg = ( + f"{resp.status_code} Server Error: {reason} for url: {resp.url}" + ) + + if http_error_msg: + raise NetworkConnectionError(http_error_msg, response=resp) + + +def response_chunks( + response: Response, chunk_size: int = CONTENT_CHUNK_SIZE +) -> Generator[bytes, None, None]: + """Given a requests Response, provide the data chunks.""" + try: + # Special case for urllib3. + for chunk in response.raw.stream( + chunk_size, + # We use decode_content=False here because we don't + # want urllib3 to mess with the raw bytes we get + # from the server. If we decompress inside of + # urllib3 then we cannot verify the checksum + # because the checksum will be of the compressed + # file. This breakage will only occur if the + # server adds a Content-Encoding header, which + # depends on how the server was configured: + # - Some servers will notice that the file isn't a + # compressible file and will leave the file alone + # and with an empty Content-Encoding + # - Some servers will notice that the file is + # already compressed and will leave the file + # alone and will add a Content-Encoding: gzip + # header + # - Some servers won't notice anything at all and + # will take a file that's already been compressed + # and compress it again and set the + # Content-Encoding: gzip header + # + # By setting this not to decode automatically we + # hope to eliminate problems with the second case. + decode_content=False, + ): + yield chunk + except AttributeError: + # Standard file-like object. + while True: + chunk = response.raw.read(chunk_size) + if not chunk: + break + yield chunk diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 00000000..22ec8d2f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py @@ -0,0 +1,62 @@ +"""xmlrpclib.Transport implementation +""" + +import logging +import urllib.parse +import xmlrpc.client +from typing import TYPE_CHECKING, Tuple + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status + +if TYPE_CHECKING: + from xmlrpc.client import _HostType, _Marshallable + + from _typeshed import SizedBuffer + +logger = logging.getLogger(__name__) + + +class PipXmlrpcTransport(xmlrpc.client.Transport): + """Provide a `xmlrpclib.Transport` implementation via a `PipSession` + object. + """ + + def __init__( + self, index_url: str, session: PipSession, use_datetime: bool = False + ) -> None: + super().__init__(use_datetime) + index_parts = urllib.parse.urlparse(index_url) + self._scheme = index_parts.scheme + self._session = session + + def request( + self, + host: "_HostType", + handler: str, + request_body: "SizedBuffer", + verbose: bool = False, + ) -> Tuple["_Marshallable", ...]: + assert isinstance(host, str) + parts = (self._scheme, host, handler, None, None, None) + url = urllib.parse.urlunparse(parts) + try: + headers = {"Content-Type": "text/xml"} + response = self._session.post( + url, + data=request_body, + headers=headers, + stream=True, + ) + raise_for_status(response) + self.verbose = verbose + return self.parse_response(response.raw) + except NetworkConnectionError as exc: + assert exc.response + logger.critical( + "HTTP error %s while getting %s", + exc.response.status_code, + url, + ) + raise diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..036ddc6e70bd141c2e432a91acd6368e9bfb0c92 GIT binary patch literal 248 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e884f21f7d9cc7f0b65799b40f75e19945a1f06 GIT binary patch literal 25798 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..52e998c648a367ad8cc9a4f755e3f6911c419a8c GIT binary patch literal 254 zcmZ8bJ8l9&4Bg=)AtdfVlOn~g71Bm&LK~W-U(JHUTFj2Enb}2qhxDm90B1?X88`u= zqsmN5p7iWzzbDzhv)MF@csPC6sh?B1$8{7pKUtqWs?{-bgE(DN=5~OZ8-%T{9HD_F z`dwgw5B>^!?Qp)t4h>6#Hq76+bspiJH?6_^li7HnMhqr5U-RDU9*Pca2Zkz;KGbZV zi>C#63Yd#t@AMWu2nm#A13Ie>u%Od{*m|g1G8-tPN1-eW>2H&l=KtEO8^>=|q)*~9 JR7$yFRDTpmOIH8@ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5dee92ff4e6aed05fd770ca49e70657410e74e1 GIT binary patch literal 7874 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..23c6191f5aa5f523568b3b08a9fb18a439fca483 GIT binary patch literal 1931 zcmZ`)&2Jk;6rb_#dTqy>G)QG9AoRN+l9B0dw(79?8ri6VY;31oT*0tPZpxD?5*9q!l|7}R z#Cyd}dum1XGL=kBr`@cVtK{On>h^j0N*?wZqS#p?**T)weMFnf*!j=pN`EU=(3X#1 zB%x(np{36gpD-(QsIR+p-l^$xl_eD4LuBBdbT`$ZR;0GH(A_5*VqKBj=mf$jgq(JU zE#K|hSW((|LD+v`w3S3doXjH7%D$iiWP8s}I*aVI_$A&zUSFWY{=~w|yj&Peqy z{YT|Kp6mi^4VRQ}N zgVC+a|HChL_yu*@?IxP&UIM`ecl>!EYjw+axW{#y@EYKb*t+BESI%G2PaHj2%;j_# zGjSfd9@a?$T~On-AS^(DtfLJl4o?8Ie4Fmu#IAC_Mb*YeLqKqRsu);bMS&s&J59VeE#E~Av z)`^+8VnU&r9n3cCgt$!Lh^58x6y=e;Kpnr3VFDjaB#8A1(LnEb=mqfFDBoiUD&4&; zFG|<(=cp;T3K6x&g_k0RV(flr)Tu{|d8^7C;u_}&Ukqtrl<8d9v>4IPktO2NK-92) z7TN(P#zks3TrxFFsml$=3tS?kQ#IP;R?8?ZLFpN;Q#FECSf~E6;?cJZ?u2Bj8!&DJ zPGFdhA3{bf*PubS@o*y!gOR+X7__3nZeQAq7dr&*3pDeeV7h^}`_aL}YlU|n%sw2R zxpDc)&})x|CfA21Z+!eDyZ;%=DrLN#LHnoHre-z<%U`4)YX=@_6YJWWqZl3xkf5+YEJGLet z`+HkO2aG=vhU32u7k_9z9G-q~b#33wKbw-^?e3_t{rHyMj;YPqr(OOoxc}`drAg^W zTpCq=9(@0_d|%4|egAZ}G@`DiwbGEfI;4pGhy*IDqe|&;c2!qFXLV93y{Q%kBGoi) zS~E>{0L(?B5Za;%8L%mX@O3e3)}c3ZCYoGyFxE(dU+gtYCJX7v^HOrXMuNEO{|A+? zKCc5`1(z51fZjp=p_eIz(5M9vJ9Q$#MQ(n`1s?2u}w*=Z@kx8Ke`mJPn68I K0(^D^jQtCXFc|p& literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eac1c592239e844d977c0992707b393c8859a45e GIT binary patch literal 1965 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 C3B>mR literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f3a17a9e32366ce6019eff89ce824d894b863577 GIT binary patch literal 2076 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 g%36^9_NvOXEq)UJ0f3+RdH?_b literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py new file mode 100644 index 00000000..37919322 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py @@ -0,0 +1,139 @@ +import contextlib +import hashlib +import logging +import os +from types import TracebackType +from typing import Dict, Generator, Optional, Set, Type, Union + +from pip._internal.models.link import Link +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +@contextlib.contextmanager +def update_env_context_manager(**changes: str) -> Generator[None, None, None]: + target = os.environ + + # Save values from the target and change them. + non_existent_marker = object() + saved_values: Dict[str, Union[object, str]] = {} + for name, new_value in changes.items(): + try: + saved_values[name] = target[name] + except KeyError: + saved_values[name] = non_existent_marker + target[name] = new_value + + try: + yield + finally: + # Restore original values in the target. + for name, original_value in saved_values.items(): + if original_value is non_existent_marker: + del target[name] + else: + assert isinstance(original_value, str) # for mypy + target[name] = original_value + + +@contextlib.contextmanager +def get_build_tracker() -> Generator["BuildTracker", None, None]: + root = os.environ.get("PIP_BUILD_TRACKER") + with contextlib.ExitStack() as ctx: + if root is None: + root = ctx.enter_context(TempDirectory(kind="build-tracker")).path + ctx.enter_context(update_env_context_manager(PIP_BUILD_TRACKER=root)) + logger.debug("Initialized build tracking at %s", root) + + with BuildTracker(root) as tracker: + yield tracker + + +class TrackerId(str): + """Uniquely identifying string provided to the build tracker.""" + + +class BuildTracker: + """Ensure that an sdist cannot request itself as a setup requirement. + + When an sdist is prepared, it identifies its setup requirements in the + context of ``BuildTracker.track()``. If a requirement shows up recursively, this + raises an exception. + + This stops fork bombs embedded in malicious packages.""" + + def __init__(self, root: str) -> None: + self._root = root + self._entries: Dict[TrackerId, InstallRequirement] = {} + logger.debug("Created build tracker: %s", self._root) + + def __enter__(self) -> "BuildTracker": + logger.debug("Entered build tracker: %s", self._root) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.cleanup() + + def _entry_path(self, key: TrackerId) -> str: + hashed = hashlib.sha224(key.encode()).hexdigest() + return os.path.join(self._root, hashed) + + def add(self, req: InstallRequirement, key: TrackerId) -> None: + """Add an InstallRequirement to build tracking.""" + + # Get the file to write information about this requirement. + entry_path = self._entry_path(key) + + # Try reading from the file. If it exists and can be read from, a build + # is already in progress, so a LookupError is raised. + try: + with open(entry_path) as fp: + contents = fp.read() + except FileNotFoundError: + pass + else: + message = "{} is already being built: {}".format(req.link, contents) + raise LookupError(message) + + # If we're here, req should really not be building already. + assert key not in self._entries + + # Start tracking this requirement. + with open(entry_path, "w", encoding="utf-8") as fp: + fp.write(str(req)) + self._entries[key] = req + + logger.debug("Added %s to build tracker %r", req, self._root) + + def remove(self, req: InstallRequirement, key: TrackerId) -> None: + """Remove an InstallRequirement from build tracking.""" + + # Delete the created file and the corresponding entry. + os.unlink(self._entry_path(key)) + del self._entries[key] + + logger.debug("Removed %s from build tracker %r", req, self._root) + + def cleanup(self) -> None: + for key, req in list(self._entries.items()): + self.remove(req, key) + + logger.debug("Removed build tracker: %r", self._root) + + @contextlib.contextmanager + def track(self, req: InstallRequirement, key: str) -> Generator[None, None, None]: + """Ensure that `key` cannot install itself as a setup requirement. + + :raises LookupError: If `key` was already provided in a parent invocation of + the context introduced by this method.""" + tracker_id = TrackerId(key) + self.add(req, tracker_id) + yield + self.remove(req, tracker_id) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 00000000..c66ac354 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py @@ -0,0 +1,39 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_metadata( + build_env: BuildEnvironment, backend: BuildBackendHookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 517. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that BuildBackendHookCaller implements a fallback for + # prepare_metadata_for_build_wheel, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message("Preparing metadata (pyproject.toml)") + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_wheel(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py new file mode 100644 index 00000000..27c69f0d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py @@ -0,0 +1,41 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_editable_metadata( + build_env: BuildEnvironment, backend: BuildBackendHookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 660. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that BuildBackendHookCaller implements a fallback for + # prepare_metadata_for_build_wheel/editable, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message( + "Preparing editable metadata (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_editable(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 00000000..e60988d6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py @@ -0,0 +1,74 @@ +"""Metadata generation logic for legacy source distributions. +""" + +import logging +import os + +from pip._internal.build_env import BuildEnvironment +from pip._internal.cli.spinners import open_spinner +from pip._internal.exceptions import ( + InstallationError, + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.setuptools_build import make_setuptools_egg_info_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +def _find_egg_info(directory: str) -> str: + """Find an .egg-info subdirectory in `directory`.""" + filenames = [f for f in os.listdir(directory) if f.endswith(".egg-info")] + + if not filenames: + raise InstallationError(f"No .egg-info directory found in {directory}") + + if len(filenames) > 1: + raise InstallationError( + "More than one .egg-info directory found in {}".format(directory) + ) + + return os.path.join(directory, filenames[0]) + + +def generate_metadata( + build_env: BuildEnvironment, + setup_py_path: str, + source_dir: str, + isolated: bool, + details: str, +) -> str: + """Generate metadata using setup.py-based defacto mechanisms. + + Returns the generated metadata directory. + """ + logger.debug( + "Running setup.py (path:%s) egg_info for package %s", + setup_py_path, + details, + ) + + egg_info_dir = TempDirectory(kind="pip-egg-info", globally_managed=True).path + + args = make_setuptools_egg_info_args( + setup_py_path, + egg_info_dir=egg_info_dir, + no_user_config=isolated, + ) + + with build_env: + with open_spinner("Preparing metadata (setup.py)") as spinner: + try: + call_subprocess( + args, + cwd=source_dir, + command_desc="python setup.py egg_info", + spinner=spinner, + ) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + # Return the .egg-info directory. + return _find_egg_info(egg_info_dir) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 00000000..064811ad --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py @@ -0,0 +1,37 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_pep517( + name: str, + backend: BuildBackendHookCaller, + metadata_directory: str, + tempd: str, +) -> Optional[str]: + """Build one InstallRequirement using the PEP 517 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", tempd) + + runner = runner_with_spinner_message( + f"Building wheel for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + wheel_name = backend.build_wheel( + tempd, + metadata_directory=metadata_directory, + ) + except Exception: + logger.error("Failed building wheel for %s", name) + return None + return os.path.join(tempd, wheel_name) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py new file mode 100644 index 00000000..719d69dd --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py @@ -0,0 +1,46 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller, HookMissing + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_editable( + name: str, + backend: BuildBackendHookCaller, + metadata_directory: str, + tempd: str, +) -> Optional[str]: + """Build one InstallRequirement using the PEP 660 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", tempd) + + runner = runner_with_spinner_message( + f"Building editable for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + wheel_name = backend.build_editable( + tempd, + metadata_directory=metadata_directory, + ) + except HookMissing as e: + logger.error( + "Cannot build editable %s because the build " + "backend does not have the %s hook", + name, + e, + ) + return None + except Exception: + logger.error("Failed building editable for %s", name) + return None + return os.path.join(tempd, wheel_name) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 00000000..c5f0492c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py @@ -0,0 +1,102 @@ +import logging +import os.path +from typing import List, Optional + +from pip._internal.cli.spinners import open_spinner +from pip._internal.utils.setuptools_build import make_setuptools_bdist_wheel_args +from pip._internal.utils.subprocess import call_subprocess, format_command_args + +logger = logging.getLogger(__name__) + + +def format_command_result( + command_args: List[str], + command_output: str, +) -> str: + """Format command information for logging.""" + command_desc = format_command_args(command_args) + text = f"Command arguments: {command_desc}\n" + + if not command_output: + text += "Command output: None" + elif logger.getEffectiveLevel() > logging.DEBUG: + text += "Command output: [use --verbose to show]" + else: + if not command_output.endswith("\n"): + command_output += "\n" + text += f"Command output:\n{command_output}" + + return text + + +def get_legacy_build_wheel_path( + names: List[str], + temp_dir: str, + name: str, + command_args: List[str], + command_output: str, +) -> Optional[str]: + """Return the path to the wheel in the temporary build directory.""" + # Sort for determinism. + names = sorted(names) + if not names: + msg = ("Legacy build of wheel for {!r} created no files.\n").format(name) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + return None + + if len(names) > 1: + msg = ( + "Legacy build of wheel for {!r} created more than one file.\n" + "Filenames (choosing first): {}\n" + ).format(name, names) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + + return os.path.join(temp_dir, names[0]) + + +def build_wheel_legacy( + name: str, + setup_py_path: str, + source_dir: str, + global_options: List[str], + build_options: List[str], + tempd: str, +) -> Optional[str]: + """Build one unpacked package using the "legacy" build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + wheel_args = make_setuptools_bdist_wheel_args( + setup_py_path, + global_options=global_options, + build_options=build_options, + destination_dir=tempd, + ) + + spin_message = f"Building wheel for {name} (setup.py)" + with open_spinner(spin_message) as spinner: + logger.debug("Destination directory: %s", tempd) + + try: + output = call_subprocess( + wheel_args, + command_desc="python setup.py bdist_wheel", + cwd=source_dir, + spinner=spinner, + ) + except Exception: + spinner.finish("error") + logger.error("Failed building wheel for %s", name) + return None + + names = os.listdir(tempd) + wheel_path = get_legacy_build_wheel_path( + names=names, + temp_dir=tempd, + name=name, + command_args=wheel_args, + command_output=output, + ) + return wheel_path diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py new file mode 100644 index 00000000..90c6a58a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,187 @@ +"""Validation of dependencies of packages +""" + +import logging +from typing import Callable, Dict, List, NamedTuple, Optional, Set, Tuple + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import LegacySpecifier +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import LegacyVersion + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import DistributionVersion +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.deprecation import deprecated + +logger = logging.getLogger(__name__) + + +class PackageDetails(NamedTuple): + version: DistributionVersion + dependencies: List[Requirement] + + +# Shorthands +PackageSet = Dict[NormalizedName, PackageDetails] +Missing = Tuple[NormalizedName, Requirement] +Conflicting = Tuple[NormalizedName, DistributionVersion, Requirement] + +MissingDict = Dict[NormalizedName, List[Missing]] +ConflictingDict = Dict[NormalizedName, List[Conflicting]] +CheckResult = Tuple[MissingDict, ConflictingDict] +ConflictDetails = Tuple[PackageSet, CheckResult] + + +def create_package_set_from_installed() -> Tuple[PackageSet, bool]: + """Converts a list of distributions into a PackageSet.""" + package_set = {} + problems = False + env = get_default_environment() + for dist in env.iter_installed_distributions(local_only=False, skip=()): + name = dist.canonical_name + try: + dependencies = list(dist.iter_dependencies()) + package_set[name] = PackageDetails(dist.version, dependencies) + except (OSError, ValueError) as e: + # Don't crash on unreadable or broken metadata. + logger.warning("Error parsing requirements for %s: %s", name, e) + problems = True + return package_set, problems + + +def check_package_set( + package_set: PackageSet, should_ignore: Optional[Callable[[str], bool]] = None +) -> CheckResult: + """Check if a package set is consistent + + If should_ignore is passed, it should be a callable that takes a + package name and returns a boolean. + """ + + warn_legacy_versions_and_specifiers(package_set) + + missing = {} + conflicting = {} + + for package_name, package_detail in package_set.items(): + # Info about dependencies of package_name + missing_deps: Set[Missing] = set() + conflicting_deps: Set[Conflicting] = set() + + if should_ignore and should_ignore(package_name): + continue + + for req in package_detail.dependencies: + name = canonicalize_name(req.name) + + # Check if it's missing + if name not in package_set: + missed = True + if req.marker is not None: + missed = req.marker.evaluate({"extra": ""}) + if missed: + missing_deps.add((name, req)) + continue + + # Check if there's a conflict + version = package_set[name].version + if not req.specifier.contains(version, prereleases=True): + conflicting_deps.add((name, version, req)) + + if missing_deps: + missing[package_name] = sorted(missing_deps, key=str) + if conflicting_deps: + conflicting[package_name] = sorted(conflicting_deps, key=str) + + return missing, conflicting + + +def check_install_conflicts(to_install: List[InstallRequirement]) -> ConflictDetails: + """For checking if the dependency graph would be consistent after \ + installing given requirements + """ + # Start from the current state + package_set, _ = create_package_set_from_installed() + # Install packages + would_be_installed = _simulate_installation_of(to_install, package_set) + + # Only warn about directly-dependent packages; create a whitelist of them + whitelist = _create_whitelist(would_be_installed, package_set) + + return ( + package_set, + check_package_set( + package_set, should_ignore=lambda name: name not in whitelist + ), + ) + + +def _simulate_installation_of( + to_install: List[InstallRequirement], package_set: PackageSet +) -> Set[NormalizedName]: + """Computes the version of packages after installing to_install.""" + # Keep track of packages that were installed + installed = set() + + # Modify it as installing requirement_set would (assuming no errors) + for inst_req in to_install: + abstract_dist = make_distribution_for_install_requirement(inst_req) + dist = abstract_dist.get_metadata_distribution() + name = dist.canonical_name + package_set[name] = PackageDetails(dist.version, list(dist.iter_dependencies())) + + installed.add(name) + + return installed + + +def _create_whitelist( + would_be_installed: Set[NormalizedName], package_set: PackageSet +) -> Set[NormalizedName]: + packages_affected = set(would_be_installed) + + for package_name in package_set: + if package_name in packages_affected: + continue + + for req in package_set[package_name].dependencies: + if canonicalize_name(req.name) in packages_affected: + packages_affected.add(package_name) + break + + return packages_affected + + +def warn_legacy_versions_and_specifiers(package_set: PackageSet) -> None: + for project_name, package_details in package_set.items(): + if isinstance(package_details.version, LegacyVersion): + deprecated( + reason=( + f"{project_name} {package_details.version} " + f"has a non-standard version number." + ), + replacement=( + f"to upgrade to a newer version of {project_name} " + f"or contact the author to suggest that they " + f"release a version with a conforming version number" + ), + issue=12063, + gone_in="24.1", + ) + for dep in package_details.dependencies: + if any(isinstance(spec, LegacySpecifier) for spec in dep.specifier): + deprecated( + reason=( + f"{project_name} {package_details.version} " + f"has a non-standard dependency specifier {dep}." + ), + replacement=( + f"to upgrade to a newer version of {project_name} " + f"or contact the author to suggest that they " + f"release a version with a conforming dependency specifiers" + ), + issue=12063, + gone_in="24.1", + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 00000000..35445684 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,255 @@ +import collections +import logging +import os +from typing import Container, Dict, Generator, Iterable, List, NamedTuple, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_file import COMMENT_RE +from pip._internal.utils.direct_url_helpers import direct_url_as_pep440_direct_reference + +logger = logging.getLogger(__name__) + + +class _EditableInfo(NamedTuple): + requirement: str + comments: List[str] + + +def freeze( + requirement: Optional[List[str]] = None, + local_only: bool = False, + user_only: bool = False, + paths: Optional[List[str]] = None, + isolated: bool = False, + exclude_editable: bool = False, + skip: Container[str] = (), +) -> Generator[str, None, None]: + installations: Dict[str, FrozenRequirement] = {} + + dists = get_environment(paths).iter_installed_distributions( + local_only=local_only, + skip=(), + user_only=user_only, + ) + for dist in dists: + req = FrozenRequirement.from_dist(dist) + if exclude_editable and req.editable: + continue + installations[req.canonical_name] = req + + if requirement: + # the options that don't get turned into an InstallRequirement + # should only be emitted once, even if the same option is in multiple + # requirements files, so we need to keep track of what has been emitted + # so that we don't emit it again if it's seen again + emitted_options: Set[str] = set() + # keep track of which files a requirement is in so that we can + # give an accurate warning if a requirement appears multiple times. + req_files: Dict[str, List[str]] = collections.defaultdict(list) + for req_file_path in requirement: + with open(req_file_path) as req_file: + for line in req_file: + if ( + not line.strip() + or line.strip().startswith("#") + or line.startswith( + ( + "-r", + "--requirement", + "-f", + "--find-links", + "-i", + "--index-url", + "--pre", + "--trusted-host", + "--process-dependency-links", + "--extra-index-url", + "--use-feature", + ) + ) + ): + line = line.rstrip() + if line not in emitted_options: + emitted_options.add(line) + yield line + continue + + if line.startswith("-e") or line.startswith("--editable"): + if line.startswith("-e"): + line = line[2:].strip() + else: + line = line[len("--editable") :].strip().lstrip("=") + line_req = install_req_from_editable( + line, + isolated=isolated, + ) + else: + line_req = install_req_from_line( + COMMENT_RE.sub("", line).strip(), + isolated=isolated, + ) + + if not line_req.name: + logger.info( + "Skipping line in requirement file [%s] because " + "it's not clear what it would install: %s", + req_file_path, + line.strip(), + ) + logger.info( + " (add #egg=PackageName to the URL to avoid" + " this warning)" + ) + else: + line_req_canonical_name = canonicalize_name(line_req.name) + if line_req_canonical_name not in installations: + # either it's not installed, or it is installed + # but has been processed already + if not req_files[line_req.name]: + logger.warning( + "Requirement file [%s] contains %s, but " + "package %r is not installed", + req_file_path, + COMMENT_RE.sub("", line).strip(), + line_req.name, + ) + else: + req_files[line_req.name].append(req_file_path) + else: + yield str(installations[line_req_canonical_name]).rstrip() + del installations[line_req_canonical_name] + req_files[line_req.name].append(req_file_path) + + # Warn about requirements that were included multiple times (in a + # single requirements file or in different requirements files). + for name, files in req_files.items(): + if len(files) > 1: + logger.warning( + "Requirement %s included multiple times [%s]", + name, + ", ".join(sorted(set(files))), + ) + + yield ("## The following requirements were added by pip freeze:") + for installation in sorted(installations.values(), key=lambda x: x.name.lower()): + if installation.canonical_name not in skip: + yield str(installation).rstrip() + + +def _format_as_name_version(dist: BaseDistribution) -> str: + dist_version = dist.version + if isinstance(dist_version, Version): + return f"{dist.raw_name}=={dist_version}" + return f"{dist.raw_name}==={dist_version}" + + +def _get_editable_info(dist: BaseDistribution) -> _EditableInfo: + """ + Compute and return values (req, comments) for use in + FrozenRequirement.from_dist(). + """ + editable_project_location = dist.editable_project_location + assert editable_project_location + location = os.path.normcase(os.path.abspath(editable_project_location)) + + from pip._internal.vcs import RemoteNotFoundError, RemoteNotValidError, vcs + + vcs_backend = vcs.get_backend_for_dir(location) + + if vcs_backend is None: + display = _format_as_name_version(dist) + logger.debug( + 'No VCS found for editable requirement "%s" in: %r', + display, + location, + ) + return _EditableInfo( + requirement=location, + comments=[f"# Editable install with no version control ({display})"], + ) + + vcs_name = type(vcs_backend).__name__ + + try: + req = vcs_backend.get_src_requirement(location, dist.raw_name) + except RemoteNotFoundError: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[f"# Editable {vcs_name} install with no remote ({display})"], + ) + except RemoteNotValidError as ex: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[ + f"# Editable {vcs_name} install ({display}) with either a deleted " + f"local remote or invalid URI:", + f"# '{ex.url}'", + ], + ) + except BadCommand: + logger.warning( + "cannot determine version of editable source in %s " + "(%s command not found in path)", + location, + vcs_backend.name, + ) + return _EditableInfo(requirement=location, comments=[]) + except InstallationError as exc: + logger.warning("Error when trying to get requirement for VCS system %s", exc) + else: + return _EditableInfo(requirement=req, comments=[]) + + logger.warning("Could not determine repository location of %s", location) + + return _EditableInfo( + requirement=location, + comments=["## !! Could not determine repository location"], + ) + + +class FrozenRequirement: + def __init__( + self, + name: str, + req: str, + editable: bool, + comments: Iterable[str] = (), + ) -> None: + self.name = name + self.canonical_name = canonicalize_name(name) + self.req = req + self.editable = editable + self.comments = comments + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "FrozenRequirement": + editable = dist.editable + if editable: + req, comments = _get_editable_info(dist) + else: + comments = [] + direct_url = dist.direct_url + if direct_url: + # if PEP 610 metadata is present, use it + req = direct_url_as_pep440_direct_reference(direct_url, dist.raw_name) + else: + # name==version requirement + req = _format_as_name_version(dist) + + return cls(dist.raw_name, req, editable, comments=comments) + + def __str__(self) -> str: + req = self.req + if self.editable: + req = f"-e {req}" + return "\n".join(list(self.comments) + [str(req)]) + "\n" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 00000000..24d6a5dd --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88b85b5a678b5988b5eacbc9eca647c01fa8ffef GIT binary patch literal 317 zcmXv~F-`+95IlznqDc9J8;VHWtspI;A)A)f-m`78+`U0VEkZ39PN9Z5`eh&s_w*Fj z(jlK?hnj4QCh%)oIgfDrcP@V*(jHW6H6}GLY3*eXMTe#XtrlSW(2$uG=NI5r!2A#d ztg;}K3FwT}Ko*@0icB=yrv?#K6@(~kzZ+fd-@9_hF>mU@r<#6_7-O3OV?#HL>n~Bu BVpjkF literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4d4fc449f57cce74964758947fad817a89c7157 GIT binary patch literal 1868 zcmZuyO>Epm6dtdC*53aln=VaD>(WNBh^*BgP=ydEP!6a~kqDPA2iI#)Hg0W?neisw zXpxG91Qk7$Q+wrtgwg{-f_u+gs6b*hqM}maz|B>ID&@o*dy_!ax0>hgy_uai^WOLD zpQ_ao0-3*mbG4u%^hg*x(wu-NKLWUoJk&*=$mF5^uac z@B{DNXw9c23UQQxujEG_AUhy^unvdLRcvQFCxisdp6qQqw9jC^?!swoHt0>x!fXA2 z^qjyZSvZFeVI)dls=6dv@%vP?B`ph80kzSJhsi4Nbw5FYmlcxprh4ydep~( zbq=$u35l&`vXZQe?3~LxNTkbr2MEWowM4u@fEPX#U10fP9AGiK;F5Lb46V)@u+$3t zo|WJAbm!zLOK^N)QWa*!er(x(lwb;NXptDxtczi@yn@zFliNYo^pI}en9SKbbMz2g zL|l^%L0v~%N03_n{QRfqe{P)o?#!>s*+0uKj`i7bYku51Id-*e*U#_bK#$&Qms9e!TVH(C8=2Vv;bx*R&MV( zx7iC2{d;-wnEXS1aaO&j=m77{s*6XAdvisBkEx3<7uz$uXxkofZJQTGO@T{XONKE# zspt!;fZ{DkO=mYXo!zddq80g}|IZE*KVY57W*IH`iD#|YBeR`tn9+zIdFImH*H^|c zZuD_-A!nd&+u|K%+q5OlBC`Zo*#iz_h4>ad0WYHBW3a8i0nG*!d6Txm6kh`NHK=OV literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..956538c75e4c5aaa97e24429d1b14c6bf15ca9e1 GIT binary patch literal 33910 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 G0seoFhnt@O literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1d148f5528b2c71dff63ac62c9e3a0f531ec50e GIT binary patch literal 2671 zcmZ`*U1%KF6~42xGqXRVUHwb8tZ4kx+6&TdRmUI)C!v-SwNVlqNrh%gSVlW{cgLDP z?%cJ!>I$2X2RRL`AS7`hP#5};AQjxVJcjzEP$;X&#o|`bgyf-q+e9u7CJ#M#cE?I= zdY3tK?z!jOd*=LncmLkil|nFnwEcGVmV(fid=iaxhuQxJFz+K1nSzaU{*Kv#6Vqdk zsEbZqk2{hsIkGN0imnKJU9=NUQcpT5J>{hJw4>^()1`Mg89n1<^{msacRM|LkJGF7 zhWc^4&*|6u1%zWbjt36Gc@+UmZLS>SbA8a1qBT>-L#Bd<%>)+lfGL!t9gqeIZ zt{(zP>O-NUCF5bf2D*b~*-XDF>xb(?PQ3>*^lDCKiD|>OjU^kim=-P9#4a_s>nveC`m7~`6lvYZEFOT9OeUDth+7hPSYX89Nx*X)p8fkEokIfD zKm%gEd ziz`Ad`znih?&`#1)e5wr>eXyh^IW^GEn%$&HK|#yMypseaoMQZRC7EN=b31^<<(Qa z_B#ciH*ruRR@gkR|ArdD^7kccEN)vauC%@X_IW5hCl!c)rRnr|8uGttIwEV^De>|QR|)>6T*)2ip5&QJcd5I~bp_(o~jsNkUBTYdpB z0Qw$~t5CA7LgZ@^ARx&5b=F%XRtX~9$rqQC3GkbLXz(47|DbQLp_Yo&{tfzBdZZbD zxjFjs4$$<-7wPO?_rL~zM_re`QU{wuKig5y@2Q7w{P-jBjyk@l9^O%p?5Sfr>d`%Q zbVnU)rR75Ey3*=KJp(^58Tjqo548t3YCGy^+qTuE^rhC7`@N`p_{LB(J9TS*J3Dpl z=ewD~yP2`=%-BuwPgi$NPJJ@Dee&G4_Uxy>Y-YxGGIQ5vcauF|BT+iLJ23hUiY3pk zzp&do^w!+2+W-3t*Du_d-CDRcu&J+K_@_GcwFK)AL{NUfEkd*J0$y!zoS&MW68`$k zsp)a?_VFa}x5uUFGs^8r1^Ap0)EE zNYDVR-HL5?aA*NhIa*mjIdS#sET)>_YTnW%T%yo~2GvS1j~bJD8o_}4q}`vLyGe_3 zoKK~AQO<{;A7}>HwlBf)_Eywb#vpdJ=)%xo!(%JN@Q>v~OTt0u?wXdnH|>-%CGG=7@P*BXSmTxAW(oAl<3}g z`ZHx{FFSlUt8HhsJ4a7{QvKWFo$P!wG5=MzZ#}&aswg)?egZEh!vzPIB;i3MJhFtR zh44rce$^1(o$L^_NWKW2WO^jeJ0TxM>3c8{;s=Kb!tawdriADc!bu1s99`H*xLMS1 z`5LwCAa8q>3il(#6=|tXalnS7{|gs8Z8smL3lk;=6bNh)1}}`l$A~=5kL6)|m^cS8 z3!v~Ec^0Ppq7D84q$LW1@GsQ;Z!~uo%{_>xh1dfWk^de>!qn#@$8Y}XBmBo=^Te53 zS3Z^ga2e!%|#w9c?S literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..18f0bd897328f7216880280094f75a4e75236703 GIT binary patch literal 18903 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7539d445da55cb8548522431b989832335804aba GIT binary patch literal 426 zcmXw#zfZzY5XWDE0%95=Vjz)$MH2>iQCDMvv_>Mdrav(0(vN*i6`%Yz1%l-1l<78J)2c zdcscXNjs&dY*uII=~`wJTQ~8*CJ`eUBNd|*L9C_M8AWTg1Vvf1f-Fn&n$yH5QF;-L zeOc_aWmRi-1hHp`l4?9in#ixq&$7^KOPXTbYwZqi@NN0v&x?}LZK|zDLD_ph!8Y0i zcJFYA#|RG0e&8S%@`#Km_Mw7b>C6mJl}A(LVt-3>Nr$g-BG_I~8aVV<$rZqALh(O=*q2YKG1)k|b%XJ{3CY=z& z!Zsoef4Fy_)p|A!cUT6m@s#|$b{LW1smoI3oa~`m!KG)SC*h0o}R5h IJ~)Z2zn_16djJ3c literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py new file mode 100644 index 00000000..e5950b90 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py @@ -0,0 +1,172 @@ +"""Logic that powers autocompletion installed by ``pip completion``. +""" + +import optparse +import os +import sys +from itertools import chain +from typing import Any, Iterable, List, Optional + +from pip._internal.cli.main_parser import create_main_parser +from pip._internal.commands import commands_dict, create_command +from pip._internal.metadata import get_default_environment + + +def autocomplete() -> None: + """Entry Point for completion of main and subcommand options.""" + # Don't complete if user hasn't sourced bash_completion file. + if "PIP_AUTO_COMPLETE" not in os.environ: + return + cwords = os.environ["COMP_WORDS"].split()[1:] + cword = int(os.environ["COMP_CWORD"]) + try: + current = cwords[cword - 1] + except IndexError: + current = "" + + parser = create_main_parser() + subcommands = list(commands_dict) + options = [] + + # subcommand + subcommand_name: Optional[str] = None + for word in cwords: + if word in subcommands: + subcommand_name = word + break + # subcommand options + if subcommand_name is not None: + # special case: 'help' subcommand has no options + if subcommand_name == "help": + sys.exit(1) + # special case: list locally installed dists for show and uninstall + should_list_installed = not current.startswith("-") and subcommand_name in [ + "show", + "uninstall", + ] + if should_list_installed: + env = get_default_environment() + lc = current.lower() + installed = [ + dist.canonical_name + for dist in env.iter_installed_distributions(local_only=True) + if dist.canonical_name.startswith(lc) + and dist.canonical_name not in cwords[1:] + ] + # if there are no dists installed, fall back to option completion + if installed: + for dist in installed: + print(dist) + sys.exit(1) + + should_list_installables = ( + not current.startswith("-") and subcommand_name == "install" + ) + if should_list_installables: + for path in auto_complete_paths(current, "path"): + print(path) + sys.exit(1) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + options += [ + (opt_str, opt.nargs) for opt_str in opt._long_opts + opt._short_opts + ] + + # filter out previously specified options from available options + prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] + options = [(x, v) for (x, v) in options if x not in prev_opts] + # filter options by current input + options = [(k, v) for k, v in options if k.startswith(current)] + # get completion type given cwords and available subcommand options + completion_type = get_path_completion_type( + cwords, + cword, + subcommand.parser.option_list_all, + ) + # get completion files and directories if ``completion_type`` is + # ````, ``