From 18adea8b03ca92e25f906def7d9d08138c56d643 Mon Sep 17 00:00:00 2001 From: BoonthichaSM <43932212+BoonthichaSaejia@users.noreply.github.com> Date: Sun, 23 Apr 2023 10:09:12 +0000 Subject: [PATCH] update day02 with finished bootcamp task --- 00-bootcamp-project/data/addresses.csv | 151 + 00-bootcamp-project/data/events.csv | 1430 +++ 00-bootcamp-project/data/order_items.csv | 863 ++ 00-bootcamp-project/data/orders.csv | 178 + 00-bootcamp-project/data/products.csv | 31 + 00-bootcamp-project/data/promos.csv | 7 + 00-bootcamp-project/data/users.csv | 3 + 00-bootcamp-project/load_table_addresses.py | 49 + 00-bootcamp-project/load_table_events.py | 47 + 00-bootcamp-project/load_table_order_items.py | 48 + 00-bootcamp-project/load_table_orders.py | 48 + 00-bootcamp-project/load_table_products.py | 48 + 00-bootcamp-project/load_table_promos.py | 48 + 00-bootcamp-project/load_table_users.py | 48 + 00-bootcamp-project/main-api.py | 53 + 00-bootcamp-project/main-postgres.py | 46 + 00-bootcamp-project/main-sftp.py | 28 + 00-bootcamp-project/main.py | 11 + 00-bootcamp-project/pipeline.conf | 16 + 00-bootcamp-project/poetry.lock | 1012 ++ 00-bootcamp-project/pyproject.toml | 20 + .../extracting-data-from-sources/apis/main.py | 2 +- .../postgresql/main.py | 8 +- .../de-lifecycle/bin/Activate.ps1 | 247 + .../de-lifecycle/bin/activate | 69 + .../de-lifecycle/bin/activate.csh | 26 + .../de-lifecycle/bin/activate.fish | 66 + .../de-lifecycle/bin/normalizer | 10 + .../de-lifecycle/bin/pip | 10 + .../de-lifecycle/bin/pip3 | 10 + .../de-lifecycle/bin/pip3.10 | 10 + .../de-lifecycle/bin/python | 1 + .../de-lifecycle/bin/python3 | 1 + .../de-lifecycle/bin/python3.10 | 1 + .../site-packages/_distutils_hack/__init__.py | 128 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5218 bytes .../__pycache__/override.cpython-310.pyc | Bin 0 -> 324 bytes .../site-packages/_distutils_hack/override.py | 1 + .../certifi-2022.12.7.dist-info/INSTALLER | 1 + .../certifi-2022.12.7.dist-info/LICENSE | 21 + .../certifi-2022.12.7.dist-info/METADATA | 83 + .../certifi-2022.12.7.dist-info/RECORD | 14 + .../certifi-2022.12.7.dist-info/WHEEL | 5 + .../certifi-2022.12.7.dist-info/top_level.txt | 1 + .../site-packages/certifi/__init__.py | 4 + .../site-packages/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 378 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 516 bytes .../certifi/__pycache__/core.cpython-310.pyc | Bin 0 -> 1986 bytes .../site-packages/certifi/cacert.pem | 4527 +++++++++ .../python3.10/site-packages/certifi/core.py | 108 + .../python3.10/site-packages/certifi/py.typed | 0 .../INSTALLER | 1 + .../LICENSE | 21 + .../METADATA | 616 ++ .../charset_normalizer-3.1.0.dist-info/RECORD | 35 + .../charset_normalizer-3.1.0.dist-info/WHEEL | 6 + .../entry_points.txt | 2 + .../top_level.txt | 1 + .../charset_normalizer/__init__.py | 45 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1649 bytes .../__pycache__/api.cpython-310.pyc | Bin 0 -> 10441 bytes .../__pycache__/cd.cpython-310.pyc | Bin 0 -> 9790 bytes .../__pycache__/constant.cpython-310.pyc | Bin 0 -> 17485 bytes .../__pycache__/legacy.cpython-310.pyc | Bin 0 -> 1940 bytes .../__pycache__/md.cpython-310.pyc | Bin 0 -> 14464 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 11599 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 8916 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 360 bytes .../site-packages/charset_normalizer/api.py | 554 ++ .../charset_normalizer/assets/__init__.py | 1440 +++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 10508 bytes .../site-packages/charset_normalizer/cd.py | 390 + .../charset_normalizer/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 280 bytes .../__pycache__/normalizer.cpython-310.pyc | Bin 0 -> 6562 bytes .../charset_normalizer/cli/normalizer.py | 296 + .../charset_normalizer/constant.py | 495 + .../charset_normalizer/legacy.py | 54 + .../md.cpython-310-x86_64-linux-gnu.so | Bin 0 -> 17496 bytes .../site-packages/charset_normalizer/md.py | 571 ++ .../md__mypyc.cpython-310-x86_64-linux-gnu.so | Bin 0 -> 424312 bytes .../charset_normalizer/models.py | 337 + .../site-packages/charset_normalizer/py.typed | 0 .../site-packages/charset_normalizer/utils.py | 414 + .../charset_normalizer/version.py | 6 + .../site-packages/distutils-precedence.pth | 1 + .../idna-3.4.dist-info/INSTALLER | 1 + .../idna-3.4.dist-info/LICENSE.md | 29 + .../site-packages/idna-3.4.dist-info/METADATA | 242 + .../site-packages/idna-3.4.dist-info/RECORD | 22 + .../site-packages/idna-3.4.dist-info/WHEEL | 4 + .../python3.10/site-packages/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 921 bytes .../idna/__pycache__/codec.cpython-310.pyc | Bin 0 -> 2892 bytes .../idna/__pycache__/compat.cpython-310.pyc | Bin 0 -> 821 bytes .../idna/__pycache__/core.cpython-310.pyc | Bin 0 -> 9778 bytes .../idna/__pycache__/idnadata.cpython-310.pyc | Bin 0 -> 38457 bytes .../__pycache__/intranges.cpython-310.pyc | Bin 0 -> 2058 bytes .../__pycache__/package_data.cpython-310.pyc | Bin 0 -> 285 bytes .../__pycache__/uts46data.cpython-310.pyc | Bin 0 -> 152472 bytes .../python3.10/site-packages/idna/codec.py | 112 + .../python3.10/site-packages/idna/compat.py | 13 + .../lib/python3.10/site-packages/idna/core.py | 400 + .../python3.10/site-packages/idna/idnadata.py | 2151 +++++ .../site-packages/idna/intranges.py | 54 + .../site-packages/idna/package_data.py | 2 + .../python3.10/site-packages/idna/py.typed | 0 .../site-packages/idna/uts46data.py | 8600 +++++++++++++++++ .../pip-22.0.4.dist-info/INSTALLER | 1 + .../pip-22.0.4.dist-info/LICENSE.txt | 20 + .../pip-22.0.4.dist-info/METADATA | 92 + .../site-packages/pip-22.0.4.dist-info/RECORD | 1053 ++ .../pip-22.0.4.dist-info/REQUESTED | 0 .../site-packages/pip-22.0.4.dist-info/WHEEL | 5 + .../pip-22.0.4.dist-info/entry_points.txt | 5 + .../pip-22.0.4.dist-info/top_level.txt | 1 + .../python3.10/site-packages/pip/__init__.py | 13 + .../python3.10/site-packages/pip/__main__.py | 31 + .../pip/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 717 bytes .../pip/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 679 bytes .../site-packages/pip/_internal/__init__.py | 19 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 838 bytes .../__pycache__/build_env.cpython-310.pyc | Bin 0 -> 9682 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 8465 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 11211 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 23210 bytes .../__pycache__/main.cpython-310.pyc | Bin 0 -> 703 bytes .../__pycache__/pyproject.cpython-310.pyc | Bin 0 -> 3622 bytes .../self_outdated_check.cpython-310.pyc | Bin 0 -> 4662 bytes .../__pycache__/wheel_builder.cpython-310.pyc | Bin 0 -> 9224 bytes .../site-packages/pip/_internal/build_env.py | 296 + .../site-packages/pip/_internal/cache.py | 264 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 358 bytes .../autocompletion.cpython-310.pyc | Bin 0 -> 5393 bytes .../__pycache__/base_command.cpython-310.pyc | Bin 0 -> 6433 bytes .../__pycache__/cmdoptions.cpython-310.pyc | Bin 0 -> 22633 bytes .../command_context.cpython-310.pyc | Bin 0 -> 1392 bytes .../cli/__pycache__/main.cpython-310.pyc | Bin 0 -> 1456 bytes .../__pycache__/main_parser.cpython-310.pyc | Bin 0 -> 2242 bytes .../cli/__pycache__/parser.cpython-310.pyc | Bin 0 -> 10029 bytes .../__pycache__/progress_bars.cpython-310.pyc | Bin 0 -> 9318 bytes .../__pycache__/req_command.cpython-310.pyc | Bin 0 -> 13619 bytes .../cli/__pycache__/spinners.cpython-310.pyc | Bin 0 -> 5032 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 437 bytes .../pip/_internal/cli/autocompletion.py | 171 + .../pip/_internal/cli/base_command.py | 223 + .../pip/_internal/cli/cmdoptions.py | 1018 ++ .../pip/_internal/cli/command_context.py | 27 + .../site-packages/pip/_internal/cli/main.py | 70 + .../pip/_internal/cli/main_parser.py | 87 + .../site-packages/pip/_internal/cli/parser.py | 292 + .../pip/_internal/cli/progress_bars.py | 321 + .../pip/_internal/cli/req_command.py | 506 + .../pip/_internal/cli/spinners.py | 157 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 127 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3221 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 6262 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 1655 bytes .../__pycache__/completion.cpython-310.pyc | Bin 0 -> 3222 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 8404 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 6771 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 4069 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 2720 bytes .../commands/__pycache__/hash.cpython-310.pyc | Bin 0 -> 2234 bytes .../commands/__pycache__/help.cpython-310.pyc | Bin 0 -> 1395 bytes .../__pycache__/index.cpython-310.pyc | Bin 0 -> 4718 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 17881 bytes .../commands/__pycache__/list.cpython-310.pyc | Bin 0 -> 10345 bytes .../__pycache__/search.cpython-310.pyc | Bin 0 -> 5448 bytes .../commands/__pycache__/show.cpython-310.pyc | Bin 0 -> 6201 bytes .../__pycache__/uninstall.cpython-310.pyc | Bin 0 -> 3192 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4924 bytes .../pip/_internal/commands/cache.py | 223 + .../pip/_internal/commands/check.py | 53 + .../pip/_internal/commands/completion.py | 96 + .../pip/_internal/commands/configuration.py | 266 + .../pip/_internal/commands/debug.py | 202 + .../pip/_internal/commands/download.py | 140 + .../pip/_internal/commands/freeze.py | 97 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/install.py | 771 ++ .../pip/_internal/commands/list.py | 361 + .../pip/_internal/commands/search.py | 174 + .../pip/_internal/commands/show.py | 178 + .../pip/_internal/commands/uninstall.py | 105 + .../pip/_internal/commands/wheel.py | 178 + .../pip/_internal/configuration.py | 366 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 885 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1942 bytes .../__pycache__/installed.cpython-310.pyc | Bin 0 -> 1319 bytes .../__pycache__/sdist.cpython-310.pyc | Bin 0 -> 4531 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1686 bytes .../pip/_internal/distributions/base.py | 36 + .../pip/_internal/distributions/installed.py | 20 + .../pip/_internal/distributions/sdist.py | 127 + .../pip/_internal/distributions/wheel.py | 31 + .../site-packages/pip/_internal/exceptions.py | 658 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 312 bytes .../__pycache__/collector.cpython-310.pyc | Bin 0 -> 18150 bytes .../package_finder.cpython-310.pyc | Bin 0 -> 28206 bytes .../index/__pycache__/sources.cpython-310.pyc | Bin 0 -> 7205 bytes .../pip/_internal/index/collector.py | 610 ++ .../pip/_internal/index/package_finder.py | 1004 ++ .../pip/_internal/index/sources.py | 224 + .../pip/_internal/locations/__init__.py | 520 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 12472 bytes .../__pycache__/_distutils.cpython-310.pyc | Bin 0 -> 4740 bytes .../__pycache__/_sysconfig.cpython-310.pyc | Bin 0 -> 6323 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1622 bytes .../pip/_internal/locations/_distutils.py | 169 + .../pip/_internal/locations/_sysconfig.py | 219 + .../pip/_internal/locations/base.py | 52 + .../site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 62 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2378 bytes .../metadata/__pycache__/base.cpython-310.pyc | Bin 0 -> 20932 bytes .../__pycache__/pkg_resources.cpython-310.pyc | Bin 0 -> 9948 bytes .../pip/_internal/metadata/base.py | 546 ++ .../pip/_internal/metadata/pkg_resources.py | 256 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 346 bytes .../__pycache__/candidate.cpython-310.pyc | Bin 0 -> 1498 bytes .../__pycache__/direct_url.cpython-310.pyc | Bin 0 -> 7375 bytes .../format_control.cpython-310.pyc | Bin 0 -> 2823 bytes .../models/__pycache__/index.cpython-310.pyc | Bin 0 -> 1315 bytes .../models/__pycache__/link.cpython-310.pyc | Bin 0 -> 10247 bytes .../models/__pycache__/scheme.cpython-310.pyc | Bin 0 -> 1114 bytes .../__pycache__/search_scope.cpython-310.pyc | Bin 0 -> 3569 bytes .../selection_prefs.cpython-310.pyc | Bin 0 -> 1776 bytes .../__pycache__/target_python.cpython-310.pyc | Bin 0 -> 3531 bytes .../models/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4422 bytes .../pip/_internal/models/candidate.py | 34 + .../pip/_internal/models/direct_url.py | 220 + .../pip/_internal/models/format_control.py | 80 + .../pip/_internal/models/index.py | 28 + .../pip/_internal/models/link.py | 288 + .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 129 + .../pip/_internal/models/selection_prefs.py | 51 + .../pip/_internal/models/target_python.py | 110 + .../pip/_internal/models/wheel.py | 89 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 334 bytes .../network/__pycache__/auth.cpython-310.pyc | Bin 0 -> 7614 bytes .../network/__pycache__/cache.cpython-310.pyc | Bin 0 -> 3015 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 5581 bytes .../__pycache__/lazy_wheel.cpython-310.pyc | Bin 0 -> 8489 bytes .../__pycache__/session.cpython-310.pyc | Bin 0 -> 10820 bytes .../network/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1530 bytes .../__pycache__/xmlrpc.cpython-310.pyc | Bin 0 -> 2147 bytes .../pip/_internal/network/auth.py | 323 + .../pip/_internal/network/cache.py | 69 + .../pip/_internal/network/download.py | 185 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 454 + .../pip/_internal/network/utils.py | 96 + .../pip/_internal/network/xmlrpc.py | 60 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 282 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 4095 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 6280 bytes .../__pycache__/prepare.cpython-310.pyc | Bin 0 -> 14978 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 288 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 1515 bytes .../metadata_editable.cpython-310.pyc | Bin 0 -> 1549 bytes .../metadata_legacy.cpython-310.pyc | Bin 0 -> 2460 bytes .../build/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1305 bytes .../wheel_editable.cpython-310.pyc | Bin 0 -> 1529 bytes .../__pycache__/wheel_legacy.cpython-310.pyc | Bin 0 -> 2845 bytes .../_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 | 149 + .../pip/_internal/operations/freeze.py | 254 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 346 bytes .../editable_legacy.cpython-310.pyc | Bin 0 -> 1633 bytes .../__pycache__/legacy.cpython-310.pyc | Bin 0 -> 3417 bytes .../install/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 21179 bytes .../operations/install/editable_legacy.py | 47 + .../_internal/operations/install/legacy.py | 120 + .../pip/_internal/operations/install/wheel.py | 738 ++ .../pip/_internal/operations/prepare.py | 642 ++ .../site-packages/pip/_internal/pyproject.py | 168 + .../pip/_internal/req/__init__.py | 94 + .../req/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2682 bytes .../__pycache__/constructors.cpython-310.pyc | Bin 0 -> 12247 bytes .../req/__pycache__/req_file.cpython-310.pyc | Bin 0 -> 13577 bytes .../__pycache__/req_install.cpython-310.pyc | Bin 0 -> 22262 bytes .../req/__pycache__/req_set.cpython-310.pyc | Bin 0 -> 5924 bytes .../__pycache__/req_tracker.cpython-310.pyc | Bin 0 -> 4390 bytes .../__pycache__/req_uninstall.cpython-310.pyc | Bin 0 -> 19032 bytes .../pip/_internal/req/constructors.py | 490 + .../pip/_internal/req/req_file.py | 536 + .../pip/_internal/req/req_install.py | 858 ++ .../pip/_internal/req/req_set.py | 189 + .../pip/_internal/req/req_tracker.py | 124 + .../pip/_internal/req/req_uninstall.py | 633 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 282 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1134 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 289 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 12376 bytes .../_internal/resolution/legacy/resolver.py | 467 + .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 293 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6536 bytes .../__pycache__/candidates.cpython-310.pyc | Bin 0 -> 18447 bytes .../__pycache__/factory.cpython-310.pyc | Bin 0 -> 19301 bytes .../found_candidates.cpython-310.pyc | Bin 0 -> 4953 bytes .../__pycache__/provider.cpython-310.pyc | Bin 0 -> 7795 bytes .../__pycache__/reporter.cpython-310.pyc | Bin 0 -> 3262 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 7551 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 8313 bytes .../_internal/resolution/resolvelib/base.py | 141 + .../resolution/resolvelib/candidates.py | 547 ++ .../resolution/resolvelib/factory.py | 739 ++ .../resolution/resolvelib/found_candidates.py | 155 + .../resolution/resolvelib/provider.py | 248 + .../resolution/resolvelib/reporter.py | 68 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 298 + .../pip/_internal/self_outdated_check.py | 189 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 277 bytes .../utils/__pycache__/_log.cpython-310.pyc | Bin 0 -> 1605 bytes .../utils/__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 1703 bytes .../utils/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1593 bytes .../compatibility_tags.cpython-310.pyc | Bin 0 -> 4162 bytes .../__pycache__/datetime.cpython-310.pyc | Bin 0 -> 600 bytes .../__pycache__/deprecation.cpython-310.pyc | Bin 0 -> 3402 bytes .../direct_url_helpers.cpython-310.pyc | Bin 0 -> 2168 bytes .../distutils_args.cpython-310.pyc | Bin 0 -> 1184 bytes .../__pycache__/egg_link.cpython-310.pyc | Bin 0 -> 2233 bytes .../__pycache__/encoding.cpython-310.pyc | Bin 0 -> 1390 bytes .../__pycache__/entrypoints.cpython-310.pyc | Bin 0 -> 1387 bytes .../__pycache__/filesystem.cpython-310.pyc | Bin 0 -> 5245 bytes .../__pycache__/filetypes.cpython-310.pyc | Bin 0 -> 1027 bytes .../utils/__pycache__/glibc.cpython-310.pyc | Bin 0 -> 1756 bytes .../utils/__pycache__/hashes.cpython-310.pyc | Bin 0 -> 5279 bytes .../inject_securetransport.cpython-310.pyc | Bin 0 -> 1072 bytes .../utils/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9718 bytes .../utils/__pycache__/misc.cpython-310.pyc | Bin 0 -> 18800 bytes .../utils/__pycache__/models.cpython-310.pyc | Bin 0 -> 2073 bytes .../__pycache__/packaging.cpython-310.pyc | Bin 0 -> 2165 bytes .../setuptools_build.cpython-310.pyc | Bin 0 -> 4680 bytes .../__pycache__/subprocess.cpython-310.pyc | Bin 0 -> 5859 bytes .../__pycache__/temp_dir.cpython-310.pyc | Bin 0 -> 7382 bytes .../__pycache__/unpacking.cpython-310.pyc | Bin 0 -> 6751 bytes .../utils/__pycache__/urls.cpython-310.pyc | Bin 0 -> 1678 bytes .../__pycache__/virtualenv.cpython-310.pyc | Bin 0 -> 3373 bytes .../utils/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4498 bytes .../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/distutils_args.py | 42 + .../pip/_internal/utils/egg_link.py | 75 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 27 + .../pip/_internal/utils/filesystem.py | 182 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 88 + .../pip/_internal/utils/hashes.py | 144 + .../_internal/utils/inject_securetransport.py | 35 + .../pip/_internal/utils/logging.py | 343 + .../site-packages/pip/_internal/utils/misc.py | 629 ++ .../pip/_internal/utils/models.py | 39 + .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/setuptools_build.py | 195 + .../pip/_internal/utils/subprocess.py | 260 + .../pip/_internal/utils/temp_dir.py | 246 + .../pip/_internal/utils/unpacking.py | 258 + .../site-packages/pip/_internal/utils/urls.py | 62 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 136 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 600 bytes .../vcs/__pycache__/bazaar.cpython-310.pyc | Bin 0 -> 3427 bytes .../vcs/__pycache__/git.cpython-310.pyc | Bin 0 -> 12630 bytes .../vcs/__pycache__/mercurial.cpython-310.pyc | Bin 0 -> 5146 bytes .../__pycache__/subversion.cpython-310.pyc | Bin 0 -> 8534 bytes .../versioncontrol.cpython-310.pyc | Bin 0 -> 21229 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 101 + .../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 | 377 + .../site-packages/pip/_vendor/__init__.py | 111 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3000 bytes .../__pycache__/distro.cpython-310.pyc | Bin 0 -> 38318 bytes .../_vendor/__pycache__/six.cpython-310.pyc | Bin 0 -> 27671 bytes .../typing_extensions.cpython-310.pyc | Bin 0 -> 66683 bytes .../pip/_vendor/cachecontrol/__init__.py | 18 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 728 bytes .../__pycache__/_cmd.cpython-310.pyc | Bin 0 -> 1666 bytes .../__pycache__/adapter.cpython-310.pyc | Bin 0 -> 3242 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 1932 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 842 bytes .../__pycache__/controller.cpython-310.pyc | Bin 0 -> 8302 bytes .../__pycache__/filewrapper.cpython-310.pyc | Bin 0 -> 2878 bytes .../__pycache__/heuristics.cpython-310.pyc | Bin 0 -> 4802 bytes .../__pycache__/serialize.cpython-310.pyc | Bin 0 -> 4337 bytes .../__pycache__/wrapper.cpython-310.pyc | Bin 0 -> 773 bytes .../pip/_vendor/cachecontrol/_cmd.py | 61 + .../pip/_vendor/cachecontrol/adapter.py | 137 + .../pip/_vendor/cachecontrol/cache.py | 43 + .../_vendor/cachecontrol/caches/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 379 bytes .../__pycache__/file_cache.cpython-310.pyc | Bin 0 -> 3453 bytes .../__pycache__/redis_cache.cpython-310.pyc | Bin 0 -> 1659 bytes .../_vendor/cachecontrol/caches/file_cache.py | 150 + .../cachecontrol/caches/redis_cache.py | 37 + .../pip/_vendor/cachecontrol/compat.py | 32 + .../pip/_vendor/cachecontrol/controller.py | 415 + .../pip/_vendor/cachecontrol/filewrapper.py | 111 + .../pip/_vendor/cachecontrol/heuristics.py | 139 + .../pip/_vendor/cachecontrol/serialize.py | 186 + .../pip/_vendor/cachecontrol/wrapper.py | 33 + .../pip/_vendor/certifi/__init__.py | 3 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 361 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 540 bytes .../certifi/__pycache__/core.cpython-310.pyc | Bin 0 -> 1635 bytes .../pip/_vendor/certifi/cacert.pem | 4362 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 76 + .../pip/_vendor/chardet/__init__.py | 83 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1985 bytes .../__pycache__/big5freq.cpython-310.pyc | Bin 0 -> 27264 bytes .../__pycache__/big5prober.cpython-310.pyc | Bin 0 -> 1215 bytes .../chardistribution.cpython-310.pyc | Bin 0 -> 5825 bytes .../charsetgroupprober.cpython-310.pyc | Bin 0 -> 2314 bytes .../__pycache__/charsetprober.cpython-310.pyc | Bin 0 -> 3568 bytes .../codingstatemachine.cpython-310.pyc | Bin 0 -> 2987 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 486 bytes .../__pycache__/cp949prober.cpython-310.pyc | Bin 0 -> 1222 bytes .../chardet/__pycache__/enums.cpython-310.pyc | Bin 0 -> 2669 bytes .../__pycache__/escprober.cpython-310.pyc | Bin 0 -> 2716 bytes .../chardet/__pycache__/escsm.cpython-310.pyc | Bin 0 -> 8463 bytes .../__pycache__/eucjpprober.cpython-310.pyc | Bin 0 -> 2520 bytes .../__pycache__/euckrfreq.cpython-310.pyc | Bin 0 -> 12148 bytes .../__pycache__/euckrprober.cpython-310.pyc | Bin 0 -> 1223 bytes .../__pycache__/euctwfreq.cpython-310.pyc | Bin 0 -> 27268 bytes .../__pycache__/euctwprober.cpython-310.pyc | Bin 0 -> 1223 bytes .../__pycache__/gb2312freq.cpython-310.pyc | Bin 0 -> 19192 bytes .../__pycache__/gb2312prober.cpython-310.pyc | Bin 0 -> 1231 bytes .../__pycache__/hebrewprober.cpython-310.pyc | Bin 0 -> 3108 bytes .../__pycache__/jisfreq.cpython-310.pyc | Bin 0 -> 22220 bytes .../__pycache__/jpcntx.cpython-310.pyc | Bin 0 -> 37727 bytes .../langbulgarianmodel.cpython-310.pyc | Bin 0 -> 48008 bytes .../langgreekmodel.cpython-310.pyc | Bin 0 -> 46198 bytes .../langhebrewmodel.cpython-310.pyc | Bin 0 -> 44647 bytes .../langhungarianmodel.cpython-310.pyc | Bin 0 -> 47968 bytes .../langrussianmodel.cpython-310.pyc | Bin 0 -> 61101 bytes .../__pycache__/langthaimodel.cpython-310.pyc | Bin 0 -> 44823 bytes .../langturkishmodel.cpython-310.pyc | Bin 0 -> 44664 bytes .../__pycache__/latin1prober.cpython-310.pyc | Bin 0 -> 4514 bytes .../mbcharsetprober.cpython-310.pyc | Bin 0 -> 2335 bytes .../mbcsgroupprober.cpython-310.pyc | Bin 0 -> 1218 bytes .../__pycache__/mbcssm.cpython-310.pyc | Bin 0 -> 18845 bytes .../sbcharsetprober.cpython-310.pyc | Bin 0 -> 3164 bytes .../sbcsgroupprober.cpython-310.pyc | Bin 0 -> 1787 bytes .../__pycache__/sjisprober.cpython-310.pyc | Bin 0 -> 2558 bytes .../universaldetector.cpython-310.pyc | Bin 0 -> 5910 bytes .../__pycache__/utf8prober.cpython-310.pyc | Bin 0 -> 2067 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 524 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 233 + .../pip/_vendor/chardet/charsetgroupprober.py | 107 + .../pip/_vendor/chardet/charsetprober.py | 145 + .../pip/_vendor/chardet/cli/__init__.py | 1 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 281 bytes .../__pycache__/chardetect.cpython-310.pyc | Bin 0 -> 2780 bytes .../pip/_vendor/chardet/cli/chardetect.py | 84 + .../pip/_vendor/chardet/codingstatemachine.py | 88 + .../pip/_vendor/chardet/compat.py | 36 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 76 + .../pip/_vendor/chardet/escprober.py | 101 + .../pip/_vendor/chardet/escsm.py | 246 + .../pip/_vendor/chardet/eucjpprober.py | 92 + .../pip/_vendor/chardet/euckrfreq.py | 195 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 387 + .../pip/_vendor/chardet/euctwprober.py | 46 + .../pip/_vendor/chardet/gb2312freq.py | 283 + .../pip/_vendor/chardet/gb2312prober.py | 46 + .../pip/_vendor/chardet/hebrewprober.py | 292 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/jpcntx.py | 233 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4398 +++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5718 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/latin1prober.py | 145 + .../pip/_vendor/chardet/mbcharsetprober.py | 91 + .../pip/_vendor/chardet/mbcsgroupprober.py | 54 + .../pip/_vendor/chardet/mbcssm.py | 572 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 286 bytes .../__pycache__/languages.cpython-310.pyc | Bin 0 -> 8048 bytes .../pip/_vendor/chardet/metadata/languages.py | 310 + .../pip/_vendor/chardet/sbcharsetprober.py | 145 + .../pip/_vendor/chardet/sbcsgroupprober.py | 83 + .../pip/_vendor/chardet/sjisprober.py | 92 + .../pip/_vendor/chardet/universaldetector.py | 286 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 529 bytes .../colorama/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 3090 bytes .../__pycache__/ansitowin32.cpython-310.pyc | Bin 0 -> 7988 bytes .../__pycache__/initialise.cpython-310.pyc | Bin 0 -> 1776 bytes .../__pycache__/win32.cpython-310.pyc | Bin 0 -> 4036 bytes .../__pycache__/winterm.cpython-310.pyc | Bin 0 -> 4653 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 258 + .../pip/_vendor/colorama/initialise.py | 80 + .../pip/_vendor/colorama/win32.py | 152 + .../pip/_vendor/colorama/winterm.py | 169 + .../pip/_vendor/distlib/__init__.py | 23 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1148 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 31622 bytes .../__pycache__/database.cpython-310.pyc | Bin 0 -> 42702 bytes .../distlib/__pycache__/index.cpython-310.pyc | Bin 0 -> 17403 bytes .../__pycache__/locators.cpython-310.pyc | Bin 0 -> 38469 bytes .../__pycache__/manifest.cpython-310.pyc | Bin 0 -> 10316 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 5040 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 26648 bytes .../__pycache__/resources.cpython-310.pyc | Bin 0 -> 11122 bytes .../__pycache__/scripts.cpython-310.pyc | Bin 0 -> 11340 bytes .../distlib/__pycache__/util.cpython-310.pyc | Bin 0 -> 52660 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 20237 bytes .../distlib/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 27395 bytes .../pip/_vendor/distlib/_backport/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 569 bytes .../__pycache__/misc.cpython-310.pyc | Bin 0 -> 1191 bytes .../__pycache__/shutil.cpython-310.pyc | Bin 0 -> 21628 bytes .../__pycache__/sysconfig.cpython-310.pyc | Bin 0 -> 15983 bytes .../__pycache__/tarfile.cpython-310.pyc | Bin 0 -> 62566 bytes .../pip/_vendor/distlib/_backport/misc.py | 41 + .../pip/_vendor/distlib/_backport/shutil.py | 764 ++ .../_vendor/distlib/_backport/sysconfig.cfg | 84 + .../_vendor/distlib/_backport/sysconfig.py | 786 ++ .../pip/_vendor/distlib/_backport/tarfile.py | 2607 +++++ .../pip/_vendor/distlib/compat.py | 1122 +++ .../pip/_vendor/distlib/database.py | 1339 +++ .../pip/_vendor/distlib/index.py | 509 + .../pip/_vendor/distlib/locators.py | 1300 +++ .../pip/_vendor/distlib/manifest.py | 393 + .../pip/_vendor/distlib/markers.py | 147 + .../pip/_vendor/distlib/metadata.py | 1058 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 429 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 96768 bytes .../pip/_vendor/distlib/t64-arm.exe | Bin 0 -> 180736 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 105984 bytes .../site-packages/pip/_vendor/distlib/util.py | 1969 ++++ .../pip/_vendor/distlib/version.py | 739 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 90112 bytes .../pip/_vendor/distlib/w64-arm.exe | Bin 0 -> 166400 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 99840 bytes .../pip/_vendor/distlib/wheel.py | 1053 ++ .../site-packages/pip/_vendor/distro.py | 1386 +++ .../pip/_vendor/html5lib/__init__.py | 35 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1388 bytes .../__pycache__/_ihatexml.cpython-310.pyc | Bin 0 -> 13945 bytes .../__pycache__/_inputstream.cpython-310.pyc | Bin 0 -> 21764 bytes .../__pycache__/_tokenizer.cpython-310.pyc | Bin 0 -> 37446 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 4882 bytes .../__pycache__/constants.cpython-310.pyc | Bin 0 -> 161347 bytes .../__pycache__/html5parser.cpython-310.pyc | Bin 0 -> 88605 bytes .../__pycache__/serializer.cpython-310.pyc | Bin 0 -> 10829 bytes .../pip/_vendor/html5lib/_ihatexml.py | 289 + .../pip/_vendor/html5lib/_inputstream.py | 918 ++ .../pip/_vendor/html5lib/_tokenizer.py | 1735 ++++ .../pip/_vendor/html5lib/_trie/__init__.py | 5 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 438 bytes .../_trie/__pycache__/_base.cpython-310.pyc | Bin 0 -> 1690 bytes .../_trie/__pycache__/py.cpython-310.pyc | Bin 0 -> 2353 bytes .../pip/_vendor/html5lib/_trie/_base.py | 40 + .../pip/_vendor/html5lib/_trie/py.py | 67 + .../pip/_vendor/html5lib/_utils.py | 159 + .../pip/_vendor/html5lib/constants.py | 2946 ++++++ .../pip/_vendor/html5lib/filters/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 286 bytes .../alphabeticalattributes.cpython-310.pyc | Bin 0 -> 1416 bytes .../filters/__pycache__/base.cpython-310.pyc | Bin 0 -> 956 bytes .../inject_meta_charset.cpython-310.pyc | Bin 0 -> 1954 bytes .../filters/__pycache__/lint.cpython-310.pyc | Bin 0 -> 2662 bytes .../__pycache__/optionaltags.cpython-310.pyc | Bin 0 -> 2815 bytes .../__pycache__/sanitizer.cpython-310.pyc | Bin 0 -> 20120 bytes .../__pycache__/whitespace.cpython-310.pyc | Bin 0 -> 1462 bytes .../filters/alphabeticalattributes.py | 29 + .../pip/_vendor/html5lib/filters/base.py | 12 + .../html5lib/filters/inject_meta_charset.py | 73 + .../pip/_vendor/html5lib/filters/lint.py | 93 + .../_vendor/html5lib/filters/optionaltags.py | 207 + .../pip/_vendor/html5lib/filters/sanitizer.py | 916 ++ .../_vendor/html5lib/filters/whitespace.py | 38 + .../pip/_vendor/html5lib/html5parser.py | 2795 ++++++ .../pip/_vendor/html5lib/serializer.py | 409 + .../_vendor/html5lib/treeadapters/__init__.py | 30 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1027 bytes .../__pycache__/genshi.cpython-310.pyc | Bin 0 -> 1639 bytes .../__pycache__/sax.cpython-310.pyc | Bin 0 -> 1546 bytes .../_vendor/html5lib/treeadapters/genshi.py | 54 + .../pip/_vendor/html5lib/treeadapters/sax.py | 50 + .../_vendor/html5lib/treebuilders/__init__.py | 88 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3418 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 11411 bytes .../__pycache__/dom.cpython-310.pyc | Bin 0 -> 9498 bytes .../__pycache__/etree.cpython-310.pyc | Bin 0 -> 11798 bytes .../__pycache__/etree_lxml.cpython-310.pyc | Bin 0 -> 13117 bytes .../pip/_vendor/html5lib/treebuilders/base.py | 417 + .../pip/_vendor/html5lib/treebuilders/dom.py | 239 + .../_vendor/html5lib/treebuilders/etree.py | 343 + .../html5lib/treebuilders/etree_lxml.py | 392 + .../_vendor/html5lib/treewalkers/__init__.py | 154 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4068 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 7029 bytes .../__pycache__/dom.cpython-310.pyc | Bin 0 -> 1800 bytes .../__pycache__/etree.cpython-310.pyc | Bin 0 -> 3558 bytes .../__pycache__/etree_lxml.cpython-310.pyc | Bin 0 -> 6645 bytes .../__pycache__/genshi.cpython-310.pyc | Bin 0 -> 2006 bytes .../pip/_vendor/html5lib/treewalkers/base.py | 252 + .../pip/_vendor/html5lib/treewalkers/dom.py | 43 + .../pip/_vendor/html5lib/treewalkers/etree.py | 131 + .../html5lib/treewalkers/etree_lxml.py | 215 + .../_vendor/html5lib/treewalkers/genshi.py | 69 + .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 933 bytes .../idna/__pycache__/codec.cpython-310.pyc | Bin 0 -> 2904 bytes .../idna/__pycache__/compat.cpython-310.pyc | Bin 0 -> 833 bytes .../idna/__pycache__/core.cpython-310.pyc | Bin 0 -> 9676 bytes .../idna/__pycache__/idnadata.cpython-310.pyc | Bin 0 -> 38311 bytes .../__pycache__/intranges.cpython-310.pyc | Bin 0 -> 2070 bytes .../__pycache__/package_data.cpython-310.pyc | Bin 0 -> 297 bytes .../__pycache__/uts46data.cpython-310.pyc | Bin 0 -> 151032 bytes .../site-packages/pip/_vendor/idna/codec.py | 112 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 397 + .../pip/_vendor/idna/idnadata.py | 2137 ++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8512 ++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 54 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1513 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 304 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 1894 bytes .../msgpack/__pycache__/ext.cpython-310.pyc | Bin 0 -> 6402 bytes .../__pycache__/fallback.cpython-310.pyc | Bin 0 -> 25531 bytes .../pip/_vendor/msgpack/_version.py | 1 + .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1012 ++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 676 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 532 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7386 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4698 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2791 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9375 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 4061 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 21613 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12282 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3661 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 13011 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/pep517/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 399 bytes .../pep517/__pycache__/build.cpython-310.pyc | Bin 0 -> 3682 bytes .../pep517/__pycache__/check.cpython-310.pyc | Bin 0 -> 4646 bytes .../__pycache__/colorlog.cpython-310.pyc | Bin 0 -> 3050 bytes .../pep517/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1623 bytes .../__pycache__/dirtools.cpython-310.pyc | Bin 0 -> 1441 bytes .../__pycache__/envbuild.cpython-310.pyc | Bin 0 -> 4464 bytes .../pep517/__pycache__/meta.cpython-310.pyc | Bin 0 -> 3046 bytes .../__pycache__/wrappers.cpython-310.pyc | Bin 0 -> 12392 bytes .../site-packages/pip/_vendor/pep517/build.py | 127 + .../site-packages/pip/_vendor/pep517/check.py | 207 + .../pip/_vendor/pep517/colorlog.py | 115 + .../pip/_vendor/pep517/compat.py | 51 + .../pip/_vendor/pep517/dirtools.py | 44 + .../pip/_vendor/pep517/envbuild.py | 171 + .../pip/_vendor/pep517/in_process/__init__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1007 bytes .../__pycache__/_in_process.cpython-310.pyc | Bin 0 -> 10154 bytes .../_vendor/pep517/in_process/_in_process.py | 363 + .../site-packages/pip/_vendor/pep517/meta.py | 92 + .../pip/_vendor/pep517/wrappers.py | 375 + .../pip/_vendor/pkg_resources/__init__.py | 3296 +++++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 99976 bytes .../__pycache__/py31compat.cpython-310.pyc | Bin 0 -> 746 bytes .../pip/_vendor/pkg_resources/py31compat.py | 23 + .../pip/_vendor/platformdirs/__init__.py | 331 + .../pip/_vendor/platformdirs/__main__.py | 46 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 10562 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 1322 bytes .../__pycache__/android.cpython-310.pyc | Bin 0 -> 4354 bytes .../__pycache__/api.cpython-310.pyc | Bin 0 -> 5288 bytes .../__pycache__/macos.cpython-310.pyc | Bin 0 -> 3276 bytes .../__pycache__/unix.cpython-310.pyc | Bin 0 -> 6977 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 381 bytes .../__pycache__/windows.cpython-310.pyc | Bin 0 -> 6520 bytes .../pip/_vendor/platformdirs/android.py | 119 + .../pip/_vendor/platformdirs/api.py | 156 + .../pip/_vendor/platformdirs/macos.py | 64 + .../pip/_vendor/platformdirs/unix.py | 181 + .../pip/_vendor/platformdirs/version.py | 4 + .../pip/_vendor/platformdirs/windows.py | 182 + .../pip/_vendor/progress/__init__.py | 189 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5818 bytes .../progress/__pycache__/bar.cpython-310.pyc | Bin 0 -> 2781 bytes .../__pycache__/colors.cpython-310.pyc | Bin 0 -> 1574 bytes .../__pycache__/counter.cpython-310.pyc | Bin 0 -> 1645 bytes .../__pycache__/spinner.cpython-310.pyc | Bin 0 -> 1475 bytes .../site-packages/pip/_vendor/progress/bar.py | 93 + .../pip/_vendor/progress/colors.py | 79 + .../pip/_vendor/progress/counter.py | 47 + .../pip/_vendor/progress/spinner.py | 45 + .../pip/_vendor/pygments/__init__.py | 83 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3086 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 674 bytes .../__pycache__/cmdline.cpython-310.pyc | Bin 0 -> 15539 bytes .../__pycache__/console.cpython-310.pyc | Bin 0 -> 1969 bytes .../__pycache__/filter.cpython-310.pyc | Bin 0 -> 2740 bytes .../__pycache__/formatter.cpython-310.pyc | Bin 0 -> 3096 bytes .../__pycache__/lexer.cpython-310.pyc | Bin 0 -> 24452 bytes .../__pycache__/modeline.cpython-310.pyc | Bin 0 -> 1278 bytes .../__pycache__/plugin.cpython-310.pyc | Bin 0 -> 2130 bytes .../__pycache__/regexopt.cpython-310.pyc | Bin 0 -> 3042 bytes .../__pycache__/scanner.cpython-310.pyc | Bin 0 -> 3643 bytes .../__pycache__/sphinxext.cpython-310.pyc | Bin 0 -> 4628 bytes .../__pycache__/style.cpython-310.pyc | Bin 0 -> 4665 bytes .../__pycache__/token.cpython-310.pyc | Bin 0 -> 4737 bytes .../__pycache__/unistring.cpython-310.pyc | Bin 0 -> 31291 bytes .../pygments/__pycache__/util.cpython-310.pyc | Bin 0 -> 9248 bytes .../pip/_vendor/pygments/cmdline.py | 663 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 71 + .../pip/_vendor/pygments/filters/__init__.py | 937 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 29603 bytes .../pip/_vendor/pygments/formatter.py | 94 + .../_vendor/pygments/formatters/__init__.py | 153 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4754 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 5621 bytes .../__pycache__/bbcode.cpython-310.pyc | Bin 0 -> 3171 bytes .../__pycache__/groff.cpython-310.pyc | Bin 0 -> 4444 bytes .../__pycache__/html.cpython-310.pyc | Bin 0 -> 29157 bytes .../__pycache__/img.cpython-310.pyc | Bin 0 -> 17583 bytes .../__pycache__/irc.cpython-310.pyc | Bin 0 -> 4674 bytes .../__pycache__/latex.cpython-310.pyc | Bin 0 -> 13580 bytes .../__pycache__/other.cpython-310.pyc | Bin 0 -> 4890 bytes .../__pycache__/pangomarkup.cpython-310.pyc | Bin 0 -> 2190 bytes .../__pycache__/rtf.cpython-310.pyc | Bin 0 -> 4220 bytes .../__pycache__/svg.cpython-310.pyc | Bin 0 -> 6418 bytes .../__pycache__/terminal.cpython-310.pyc | Bin 0 -> 4085 bytes .../__pycache__/terminal256.cpython-310.pyc | Bin 0 -> 9335 bytes .../_vendor/pygments/formatters/_mapping.py | 84 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 168 + .../pip/_vendor/pygments/formatters/html.py | 983 ++ .../pip/_vendor/pygments/formatters/img.py | 641 ++ .../pip/_vendor/pygments/formatters/irc.py | 179 + .../pip/_vendor/pygments/formatters/latex.py | 511 + .../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 | 879 ++ .../pip/_vendor/pygments/lexers/__init__.py | 341 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9270 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 58208 bytes .../lexers/__pycache__/python.cpython-310.pyc | Bin 0 -> 29469 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 580 ++ .../pip/_vendor/pygments/lexers/python.py | 1188 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 69 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 155 + .../pip/_vendor/pygments/style.py | 197 + .../pip/_vendor/pygments/styles/__init__.py | 93 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3306 bytes .../pip/_vendor/pygments/token.py | 212 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 308 + .../pip/_vendor/pyparsing/__init__.py | 328 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7211 bytes .../__pycache__/actions.cpython-310.pyc | Bin 0 -> 7268 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 10191 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 175385 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 9158 bytes .../__pycache__/helpers.cpython-310.pyc | Bin 0 -> 34853 bytes .../__pycache__/results.cpython-310.pyc | Bin 0 -> 24871 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 12188 bytes .../__pycache__/unicode.cpython-310.pyc | Bin 0 -> 9900 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 8691 bytes .../pip/_vendor/pyparsing/actions.py | 207 + .../pip/_vendor/pyparsing/common.py | 424 + .../pip/_vendor/pyparsing/core.py | 5789 +++++++++++ .../pip/_vendor/pyparsing/diagram/__init__.py | 593 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 15743 bytes .../pip/_vendor/pyparsing/exceptions.py | 267 + .../pip/_vendor/pyparsing/helpers.py | 1069 ++ .../pip/_vendor/pyparsing/results.py | 760 ++ .../pip/_vendor/pyparsing/testing.py | 331 + .../pip/_vendor/pyparsing/unicode.py | 332 + .../pip/_vendor/pyparsing/util.py | 235 + .../pip/_vendor/requests/__init__.py | 154 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4124 bytes .../__pycache__/__version__.cpython-310.pyc | Bin 0 -> 641 bytes .../_internal_utils.cpython-310.pyc | Bin 0 -> 1393 bytes .../__pycache__/adapters.cpython-310.pyc | Bin 0 -> 17129 bytes .../requests/__pycache__/api.cpython-310.pyc | Bin 0 -> 6740 bytes .../requests/__pycache__/auth.cpython-310.pyc | Bin 0 -> 8183 bytes .../__pycache__/certs.cpython-310.pyc | Bin 0 -> 725 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 1760 bytes .../__pycache__/cookies.cpython-310.pyc | Bin 0 -> 18785 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 5334 bytes .../requests/__pycache__/help.cpython-310.pyc | Bin 0 -> 2993 bytes .../__pycache__/hooks.cpython-310.pyc | Bin 0 -> 1080 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 24399 bytes .../__pycache__/packages.cpython-310.pyc | Bin 0 -> 594 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 19715 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 4757 bytes .../__pycache__/structures.cpython-310.pyc | Bin 0 -> 4539 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 24482 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 42 + .../pip/_vendor/requests/adapters.py | 538 ++ .../site-packages/pip/_vendor/requests/api.py | 159 + .../pip/_vendor/requests/auth.py | 305 + .../pip/_vendor/requests/certs.py | 18 + .../pip/_vendor/requests/compat.py | 77 + .../pip/_vendor/requests/cookies.py | 549 ++ .../pip/_vendor/requests/exceptions.py | 133 + .../pip/_vendor/requests/help.py | 132 + .../pip/_vendor/requests/hooks.py | 34 + .../pip/_vendor/requests/models.py | 973 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 771 ++ .../pip/_vendor/requests/status_codes.py | 123 + .../pip/_vendor/requests/structures.py | 105 + .../pip/_vendor/requests/utils.py | 1060 ++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 692 bytes .../__pycache__/providers.cpython-310.pyc | Bin 0 -> 6743 bytes .../__pycache__/reporters.cpython-310.pyc | Bin 0 -> 2663 bytes .../__pycache__/resolvers.cpython-310.pyc | Bin 0 -> 15216 bytes .../__pycache__/structs.cpython-310.pyc | Bin 0 -> 7249 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 287 bytes .../collections_abc.cpython-310.pyc | Bin 0 -> 463 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 482 + .../pip/_vendor/resolvelib/structs.py | 165 + .../pip/_vendor/rich/__init__.py | 172 + .../pip/_vendor/rich/__main__.py | 280 + .../rich/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5977 bytes .../rich/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 7411 bytes .../__pycache__/_cell_widths.cpython-310.pyc | Bin 0 -> 7900 bytes .../__pycache__/_emoji_codes.cpython-310.pyc | Bin 0 -> 360140 bytes .../_emoji_replace.cpython-310.pyc | Bin 0 -> 1280 bytes .../__pycache__/_extension.cpython-310.pyc | Bin 0 -> 581 bytes .../rich/__pycache__/_inspect.cpython-310.pyc | Bin 0 -> 6698 bytes .../__pycache__/_log_render.cpython-310.pyc | Bin 0 -> 2726 bytes .../rich/__pycache__/_loop.cpython-310.pyc | Bin 0 -> 1378 bytes .../__pycache__/_lru_cache.cpython-310.pyc | Bin 0 -> 1661 bytes .../__pycache__/_palettes.cpython-310.pyc | Bin 0 -> 5183 bytes .../rich/__pycache__/_pick.cpython-310.pyc | Bin 0 -> 726 bytes .../rich/__pycache__/_ratio.cpython-310.pyc | Bin 0 -> 5245 bytes .../__pycache__/_spinners.cpython-310.pyc | Bin 0 -> 15299 bytes .../rich/__pycache__/_stack.cpython-310.pyc | Bin 0 -> 924 bytes .../rich/__pycache__/_timer.cpython-310.pyc | Bin 0 -> 773 bytes .../rich/__pycache__/_windows.cpython-310.pyc | Bin 0 -> 1964 bytes .../rich/__pycache__/_wrap.cpython-310.pyc | Bin 0 -> 1602 bytes .../rich/__pycache__/abc.cpython-310.pyc | Bin 0 -> 1400 bytes .../rich/__pycache__/align.cpython-310.pyc | Bin 0 -> 8054 bytes .../rich/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 6103 bytes .../rich/__pycache__/bar.cpython-310.pyc | Bin 0 -> 3069 bytes .../rich/__pycache__/box.cpython-310.pyc | Bin 0 -> 7843 bytes .../rich/__pycache__/cells.cpython-310.pyc | Bin 0 -> 3585 bytes .../rich/__pycache__/color.cpython-310.pyc | Bin 0 -> 16841 bytes .../__pycache__/color_triplet.cpython-310.pyc | Bin 0 -> 1523 bytes .../rich/__pycache__/columns.cpython-310.pyc | Bin 0 -> 6283 bytes .../rich/__pycache__/console.cpython-310.pyc | Bin 0 -> 70530 bytes .../__pycache__/constrain.cpython-310.pyc | Bin 0 -> 1840 bytes .../__pycache__/containers.cpython-310.pyc | Bin 0 -> 6572 bytes .../rich/__pycache__/control.cpython-310.pyc | Bin 0 -> 6915 bytes .../default_styles.cpython-310.pyc | Bin 0 -> 6115 bytes .../rich/__pycache__/diagnose.cpython-310.pyc | Bin 0 -> 441 bytes .../rich/__pycache__/emoji.cpython-310.pyc | Bin 0 -> 3353 bytes .../rich/__pycache__/errors.cpython-310.pyc | Bin 0 -> 1613 bytes .../__pycache__/file_proxy.cpython-310.pyc | Bin 0 -> 2350 bytes .../rich/__pycache__/filesize.cpython-310.pyc | Bin 0 -> 2702 bytes .../__pycache__/highlighter.cpython-310.pyc | Bin 0 -> 5429 bytes .../rich/__pycache__/json.cpython-310.pyc | Bin 0 -> 4833 bytes .../rich/__pycache__/jupyter.cpython-310.pyc | Bin 0 -> 3912 bytes .../rich/__pycache__/layout.cpython-310.pyc | Bin 0 -> 14764 bytes .../rich/__pycache__/live.cpython-310.pyc | Bin 0 -> 11654 bytes .../__pycache__/live_render.cpython-310.pyc | Bin 0 -> 3488 bytes .../rich/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9382 bytes .../rich/__pycache__/markup.cpython-310.pyc | Bin 0 -> 5999 bytes .../rich/__pycache__/measure.cpython-310.pyc | Bin 0 -> 5144 bytes .../rich/__pycache__/padding.cpython-310.pyc | Bin 0 -> 4568 bytes .../rich/__pycache__/pager.cpython-310.pyc | Bin 0 -> 1581 bytes .../rich/__pycache__/palette.cpython-310.pyc | Bin 0 -> 3794 bytes .../rich/__pycache__/panel.cpython-310.pyc | Bin 0 -> 6477 bytes .../rich/__pycache__/pretty.cpython-310.pyc | Bin 0 -> 25195 bytes .../rich/__pycache__/progress.cpython-310.pyc | Bin 0 -> 33423 bytes .../__pycache__/progress_bar.cpython-310.pyc | Bin 0 -> 6793 bytes .../rich/__pycache__/prompt.cpython-310.pyc | Bin 0 -> 11387 bytes .../rich/__pycache__/protocol.cpython-310.pyc | Bin 0 -> 1457 bytes .../rich/__pycache__/region.cpython-310.pyc | Bin 0 -> 613 bytes .../rich/__pycache__/repr.cpython-310.pyc | Bin 0 -> 4126 bytes .../rich/__pycache__/rule.cpython-310.pyc | Bin 0 -> 3823 bytes .../rich/__pycache__/scope.cpython-310.pyc | Bin 0 -> 3074 bytes .../rich/__pycache__/screen.cpython-310.pyc | Bin 0 -> 1965 bytes .../rich/__pycache__/segment.cpython-310.pyc | Bin 0 -> 20655 bytes .../rich/__pycache__/spinner.cpython-310.pyc | Bin 0 -> 4485 bytes .../rich/__pycache__/status.cpython-310.pyc | Bin 0 -> 4679 bytes .../rich/__pycache__/style.cpython-310.pyc | Bin 0 -> 20608 bytes .../rich/__pycache__/styled.cpython-310.pyc | Bin 0 -> 1849 bytes .../rich/__pycache__/syntax.cpython-310.pyc | Bin 0 -> 19124 bytes .../rich/__pycache__/table.cpython-310.pyc | Bin 0 -> 27068 bytes .../rich/__pycache__/tabulate.cpython-310.pyc | Bin 0 -> 1842 bytes .../terminal_theme.cpython-310.pyc | Bin 0 -> 1806 bytes .../rich/__pycache__/text.cpython-310.pyc | Bin 0 -> 39382 bytes .../rich/__pycache__/theme.cpython-310.pyc | Bin 0 -> 4786 bytes .../rich/__pycache__/themes.cpython-310.pyc | Bin 0 -> 379 bytes .../__pycache__/traceback.cpython-310.pyc | Bin 0 -> 19625 bytes .../rich/__pycache__/tree.cpython-310.pyc | Bin 0 -> 7403 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/_extension.py | 10 + .../pip/_vendor/rich/_inspect.py | 210 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_lru_cache.py | 34 + .../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 | 848 ++ .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_windows.py | 72 + .../site-packages/pip/_vendor/rich/_wrap.py | 55 + .../site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 312 + .../site-packages/pip/_vendor/rich/ansi.py | 228 + .../site-packages/pip/_vendor/rich/bar.py | 94 + .../site-packages/pip/_vendor/rich/box.py | 483 + .../site-packages/pip/_vendor/rich/cells.py | 147 + .../site-packages/pip/_vendor/rich/color.py | 581 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2211 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 175 + .../pip/_vendor/rich/default_styles.py | 183 + .../pip/_vendor/rich/diagnose.py | 6 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 54 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 147 + .../site-packages/pip/_vendor/rich/json.py | 140 + .../site-packages/pip/_vendor/rich/jupyter.py | 92 + .../site-packages/pip/_vendor/rich/layout.py | 444 + .../site-packages/pip/_vendor/rich/live.py | 365 + .../pip/_vendor/rich/live_render.py | 113 + .../site-packages/pip/_vendor/rich/logging.py | 268 + .../site-packages/pip/_vendor/rich/markup.py | 244 + .../site-packages/pip/_vendor/rich/measure.py | 149 + .../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 | 250 + .../site-packages/pip/_vendor/rich/pretty.py | 903 ++ .../pip/_vendor/rich/progress.py | 1036 ++ .../pip/_vendor/rich/progress_bar.py | 216 + .../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 | 151 + .../site-packages/pip/_vendor/rich/rule.py | 115 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 720 ++ .../site-packages/pip/_vendor/rich/spinner.py | 134 + .../site-packages/pip/_vendor/rich/status.py | 132 + .../site-packages/pip/_vendor/rich/style.py | 785 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 735 ++ .../site-packages/pip/_vendor/rich/table.py | 968 ++ .../pip/_vendor/rich/tabulate.py | 51 + .../pip/_vendor/rich/terminal_theme.py | 55 + .../site-packages/pip/_vendor/rich/text.py | 1282 +++ .../site-packages/pip/_vendor/rich/theme.py | 112 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 678 ++ .../site-packages/pip/_vendor/rich/tree.py | 249 + .../site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 517 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16460 bytes .../__pycache__/_asyncio.cpython-310.pyc | Bin 0 -> 2700 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 1313 bytes .../__pycache__/after.cpython-310.pyc | Bin 0 -> 1317 bytes .../__pycache__/before.cpython-310.pyc | Bin 0 -> 1195 bytes .../__pycache__/before_sleep.cpython-310.pyc | Bin 0 -> 1497 bytes .../tenacity/__pycache__/nap.cpython-310.pyc | Bin 0 -> 1285 bytes .../__pycache__/retry.cpython-310.pyc | Bin 0 -> 8515 bytes .../tenacity/__pycache__/stop.cpython-310.pyc | Bin 0 -> 4103 bytes .../__pycache__/tornadoweb.cpython-310.pyc | Bin 0 -> 1850 bytes .../tenacity/__pycache__/wait.cpython-310.pyc | Bin 0 -> 8047 bytes .../pip/_vendor/tenacity/_asyncio.py | 92 + .../pip/_vendor/tenacity/_utils.py | 68 + .../pip/_vendor/tenacity/after.py | 46 + .../pip/_vendor/tenacity/before.py | 41 + .../pip/_vendor/tenacity/before_sleep.py | 58 + .../site-packages/pip/_vendor/tenacity/nap.py | 43 + .../pip/_vendor/tenacity/retry.py | 213 + .../pip/_vendor/tenacity/stop.py | 96 + .../pip/_vendor/tenacity/tornadoweb.py | 59 + .../pip/_vendor/tenacity/wait.py | 191 + .../pip/_vendor/tomli/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 465 bytes .../tomli/__pycache__/_parser.cpython-310.pyc | Bin 0 -> 16419 bytes .../tomli/__pycache__/_re.cpython-310.pyc | Bin 0 -> 2509 bytes .../pip/_vendor/tomli/_parser.py | 703 ++ .../site-packages/pip/_vendor/tomli/_re.py | 83 + .../pip/_vendor/typing_extensions.py | 2296 +++++ .../pip/_vendor/urllib3/__init__.py | 85 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2275 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 10949 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 299 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 13730 bytes .../connectionpool.cpython-310.pyc | Bin 0 -> 25460 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 11080 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 8271 bytes .../__pycache__/filepost.cpython-310.pyc | Bin 0 -> 2836 bytes .../__pycache__/poolmanager.cpython-310.pyc | Bin 0 -> 15288 bytes .../__pycache__/request.cpython-310.pyc | Bin 0 -> 5712 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 21013 bytes .../pip/_vendor/urllib3/_collections.py | 337 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 569 ++ .../pip/_vendor/urllib3/connectionpool.py | 1108 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 285 bytes .../_appengine_environ.cpython-310.pyc | Bin 0 -> 1465 bytes .../__pycache__/appengine.cpython-310.pyc | Bin 0 -> 8281 bytes .../__pycache__/ntlmpool.cpython-310.pyc | Bin 0 -> 3720 bytes .../__pycache__/pyopenssl.cpython-310.pyc | Bin 0 -> 15624 bytes .../securetransport.cpython-310.pyc | Bin 0 -> 22027 bytes .../contrib/__pycache__/socks.cpython-310.pyc | Bin 0 -> 5687 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 302 bytes .../__pycache__/bindings.cpython-310.pyc | Bin 0 -> 10798 bytes .../__pycache__/low_level.cpython-310.pyc | Bin 0 -> 9185 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 | 511 + .../urllib3/contrib/securetransport.py | 922 ++ .../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-310.pyc | Bin 0 -> 286 bytes .../packages/__pycache__/six.cpython-310.pyc | Bin 0 -> 27746 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 296 bytes .../__pycache__/makefile.cpython-310.pyc | Bin 0 -> 1396 bytes .../urllib3/packages/backports/makefile.py | 51 + .../pip/_vendor/urllib3/packages/six.py | 1077 +++ .../pip/_vendor/urllib3/poolmanager.py | 536 + .../pip/_vendor/urllib3/request.py | 170 + .../pip/_vendor/urllib3/response.py | 821 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1195 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 3523 bytes .../util/__pycache__/proxy.cpython-310.pyc | Bin 0 -> 1430 bytes .../util/__pycache__/queue.cpython-310.pyc | Bin 0 -> 1150 bytes .../util/__pycache__/request.cpython-310.pyc | Bin 0 -> 3558 bytes .../util/__pycache__/response.cpython-310.pyc | Bin 0 -> 2443 bytes .../util/__pycache__/retry.cpython-310.pyc | Bin 0 -> 16228 bytes .../util/__pycache__/ssl_.cpython-310.pyc | Bin 0 -> 11397 bytes .../ssl_match_hostname.cpython-310.pyc | Bin 0 -> 3367 bytes .../__pycache__/ssltransport.cpython-310.pyc | Bin 0 -> 7485 bytes .../util/__pycache__/timeout.cpython-310.pyc | Bin 0 -> 9027 bytes .../util/__pycache__/url.cpython-310.pyc | Bin 0 -> 10770 bytes .../util/__pycache__/wait.cpython-310.pyc | Bin 0 -> 3179 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 | 143 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 620 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 161 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 268 + .../pip/_vendor/urllib3/util/url.py | 432 + .../pip/_vendor/urllib3/util/wait.py | 153 + .../site-packages/pip/_vendor/vendor.txt | 25 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9832 bytes .../__pycache__/labels.cpython-310.pyc | Bin 0 -> 5322 bytes .../__pycache__/mklabels.cpython-310.pyc | Bin 0 -> 2027 bytes .../__pycache__/tests.cpython-310.pyc | Bin 0 -> 5129 bytes .../x_user_defined.cpython-310.pyc | Bin 0 -> 2678 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.10/site-packages/pip/py.typed | 4 + .../site-packages/pkg_resources/__init__.py | 3288 +++++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 100128 bytes .../pkg_resources/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 279 bytes .../__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 20340 bytes .../__pycache__/pyparsing.cpython-310.pyc | Bin 0 -> 198895 bytes .../pkg_resources/_vendor/appdirs.py | 608 ++ .../_vendor/packaging/__about__.py | 27 + .../_vendor/packaging/__init__.py | 26 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 795 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 641 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 1241 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2785 bytes .../__pycache__/_typing.cpython-310.pyc | Bin 0 -> 1597 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9282 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 4187 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 20548 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 17427 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 1732 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 13112 bytes .../_vendor/packaging/_compat.py | 38 + .../_vendor/packaging/_structures.py | 86 + .../_vendor/packaging/_typing.py | 48 + .../_vendor/packaging/markers.py | 328 + .../_vendor/packaging/requirements.py | 145 + .../_vendor/packaging/specifiers.py | 863 ++ .../pkg_resources/_vendor/packaging/tags.py | 751 ++ .../pkg_resources/_vendor/packaging/utils.py | 65 + .../_vendor/packaging/version.py | 535 + .../pkg_resources/_vendor/pyparsing.py | 5742 +++++++++++ .../pkg_resources/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2987 bytes .../__pycache__/setup.cpython-310.pyc | Bin 0 -> 407 bytes .../data/my-test-package-source/setup.py | 6 + .../requests-2.28.2.dist-info/INSTALLER | 1 + .../requests-2.28.2.dist-info/LICENSE | 175 + .../requests-2.28.2.dist-info/METADATA | 121 + .../requests-2.28.2.dist-info/RECORD | 43 + .../requests-2.28.2.dist-info/REQUESTED | 0 .../requests-2.28.2.dist-info/WHEEL | 5 + .../requests-2.28.2.dist-info/top_level.txt | 1 + .../site-packages/requests/__init__.py | 180 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3967 bytes .../__pycache__/__version__.cpython-310.pyc | Bin 0 -> 624 bytes .../_internal_utils.cpython-310.pyc | Bin 0 -> 1639 bytes .../__pycache__/adapters.cpython-310.pyc | Bin 0 -> 16901 bytes .../requests/__pycache__/api.cpython-310.pyc | Bin 0 -> 6728 bytes .../requests/__pycache__/auth.cpython-310.pyc | Bin 0 -> 8196 bytes .../__pycache__/certs.cpython-310.pyc | Bin 0 -> 701 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 1598 bytes .../__pycache__/cookies.cpython-310.pyc | Bin 0 -> 18771 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 5803 bytes .../requests/__pycache__/help.cpython-310.pyc | Bin 0 -> 2923 bytes .../__pycache__/hooks.cpython-310.pyc | Bin 0 -> 1068 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 24270 bytes .../__pycache__/packages.cpython-310.pyc | Bin 0 -> 795 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 19660 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 4747 bytes .../__pycache__/structures.cpython-310.pyc | Bin 0 -> 4512 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 24398 bytes .../site-packages/requests/__version__.py | 14 + .../site-packages/requests/_internal_utils.py | 48 + .../site-packages/requests/adapters.py | 584 ++ .../python3.10/site-packages/requests/api.py | 157 + .../python3.10/site-packages/requests/auth.py | 315 + .../site-packages/requests/certs.py | 17 + .../site-packages/requests/compat.py | 79 + .../site-packages/requests/cookies.py | 561 ++ .../site-packages/requests/exceptions.py | 141 + .../python3.10/site-packages/requests/help.py | 134 + .../site-packages/requests/hooks.py | 33 + .../site-packages/requests/models.py | 1034 ++ .../site-packages/requests/packages.py | 28 + .../site-packages/requests/sessions.py | 831 ++ .../site-packages/requests/status_codes.py | 128 + .../site-packages/requests/structures.py | 99 + .../site-packages/requests/utils.py | 1086 +++ .../setuptools-58.1.0.dist-info/INSTALLER | 1 + .../setuptools-58.1.0.dist-info/LICENSE | 19 + .../setuptools-58.1.0.dist-info/METADATA | 119 + .../setuptools-58.1.0.dist-info/RECORD | 296 + .../setuptools-58.1.0.dist-info/REQUESTED | 0 .../setuptools-58.1.0.dist-info/WHEEL | 5 + .../entry_points.txt | 56 + .../setuptools-58.1.0.dist-info/top_level.txt | 3 + .../site-packages/setuptools/__init__.py | 242 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 8683 bytes .../_deprecation_warning.cpython-310.pyc | Bin 0 -> 640 bytes .../__pycache__/_imp.cpython-310.pyc | Bin 0 -> 2166 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 5936 bytes .../__pycache__/build_meta.cpython-310.pyc | Bin 0 -> 9208 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 20996 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 947 bytes .../__pycache__/depends.cpython-310.pyc | Bin 0 -> 5360 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 36343 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 940 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 2036 bytes .../__pycache__/glob.cpython-310.pyc | Bin 0 -> 3825 bytes .../__pycache__/installer.cpython-310.pyc | Bin 0 -> 2843 bytes .../__pycache__/launch.cpython-310.pyc | Bin 0 -> 997 bytes .../__pycache__/monkey.cpython-310.pyc | Bin 0 -> 4725 bytes .../__pycache__/msvc.cpython-310.pyc | Bin 0 -> 42729 bytes .../__pycache__/namespaces.cpython-310.pyc | Bin 0 -> 3708 bytes .../__pycache__/package_index.cpython-310.pyc | Bin 0 -> 32582 bytes .../__pycache__/py34compat.cpython-310.pyc | Bin 0 -> 572 bytes .../__pycache__/sandbox.cpython-310.pyc | Bin 0 -> 15848 bytes .../__pycache__/unicode_utils.cpython-310.pyc | Bin 0 -> 1202 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 414 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 7440 bytes .../windows_support.cpython-310.pyc | Bin 0 -> 1115 bytes .../setuptools/_deprecation_warning.py | 7 + .../setuptools/_distutils/__init__.py | 15 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 546 bytes .../__pycache__/_msvccompiler.cpython-310.pyc | Bin 0 -> 13925 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 6653 bytes .../__pycache__/bcppcompiler.cpython-310.pyc | Bin 0 -> 6640 bytes .../__pycache__/ccompiler.cpython-310.pyc | Bin 0 -> 33367 bytes .../__pycache__/cmd.cpython-310.pyc | Bin 0 -> 14040 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 3681 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 6748 bytes .../cygwinccompiler.cpython-310.pyc | Bin 0 -> 8834 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 342 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 2863 bytes .../__pycache__/dir_util.cpython-310.pyc | Bin 0 -> 5974 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 34139 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 5084 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 7098 bytes .../__pycache__/fancy_getopt.cpython-310.pyc | Bin 0 -> 10724 bytes .../__pycache__/file_util.cpython-310.pyc | Bin 0 -> 6068 bytes .../__pycache__/filelist.cpython-310.pyc | Bin 0 -> 10914 bytes .../__pycache__/log.cpython-310.pyc | Bin 0 -> 2399 bytes .../__pycache__/msvc9compiler.cpython-310.pyc | Bin 0 -> 17654 bytes .../__pycache__/msvccompiler.cpython-310.pyc | Bin 0 -> 14873 bytes .../__pycache__/py35compat.cpython-310.pyc | Bin 0 -> 718 bytes .../__pycache__/py38compat.cpython-310.pyc | Bin 0 -> 515 bytes .../__pycache__/spawn.cpython-310.pyc | Bin 0 -> 2985 bytes .../__pycache__/sysconfig.cpython-310.pyc | Bin 0 -> 12652 bytes .../__pycache__/text_file.cpython-310.pyc | Bin 0 -> 8561 bytes .../__pycache__/unixccompiler.cpython-310.pyc | Bin 0 -> 6919 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 14305 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 7449 bytes .../versionpredicate.cpython-310.pyc | Bin 0 -> 5279 bytes .../setuptools/_distutils/_msvccompiler.py | 561 ++ .../setuptools/_distutils/archive_util.py | 256 + .../setuptools/_distutils/bcppcompiler.py | 393 + .../setuptools/_distutils/ccompiler.py | 1123 +++ .../setuptools/_distutils/cmd.py | 403 + .../setuptools/_distutils/command/__init__.py | 31 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 621 bytes .../command/__pycache__/bdist.cpython-310.pyc | Bin 0 -> 3755 bytes .../__pycache__/bdist_dumb.cpython-310.pyc | Bin 0 -> 3736 bytes .../__pycache__/bdist_msi.cpython-310.pyc | Bin 0 -> 19812 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 12378 bytes .../__pycache__/bdist_wininst.cpython-310.pyc | Bin 0 -> 8721 bytes .../command/__pycache__/build.cpython-310.pyc | Bin 0 -> 3983 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 4960 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 16357 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 9979 bytes .../__pycache__/build_scripts.cpython-310.pyc | Bin 0 -> 4102 bytes .../command/__pycache__/check.cpython-310.pyc | Bin 0 -> 5099 bytes .../command/__pycache__/clean.cpython-310.pyc | Bin 0 -> 2238 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 10420 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 13954 bytes .../__pycache__/install_data.cpython-310.pyc | Bin 0 -> 2437 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 3178 bytes .../install_headers.cpython-310.pyc | Bin 0 -> 1860 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 5262 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2289 bytes .../__pycache__/py37compat.cpython-310.pyc | Bin 0 -> 1134 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 8773 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 14589 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 5465 bytes .../setuptools/_distutils/command/bdist.py | 143 + .../_distutils/command/bdist_dumb.py | 123 + .../_distutils/command/bdist_msi.py | 749 ++ .../_distutils/command/bdist_rpm.py | 579 ++ .../_distutils/command/bdist_wininst.py | 377 + .../setuptools/_distutils/command/build.py | 157 + .../_distutils/command/build_clib.py | 209 + .../_distutils/command/build_ext.py | 757 ++ .../setuptools/_distutils/command/build_py.py | 392 + .../_distutils/command/build_scripts.py | 152 + .../setuptools/_distutils/command/check.py | 148 + .../setuptools/_distutils/command/clean.py | 76 + .../setuptools/_distutils/command/config.py | 344 + .../setuptools/_distutils/command/install.py | 678 ++ .../_distutils/command/install_data.py | 79 + .../_distutils/command/install_egg_info.py | 77 + .../_distutils/command/install_headers.py | 47 + .../_distutils/command/install_lib.py | 217 + .../_distutils/command/install_scripts.py | 60 + .../_distutils/command/py37compat.py | 30 + .../setuptools/_distutils/command/register.py | 304 + .../setuptools/_distutils/command/sdist.py | 494 + .../setuptools/_distutils/command/upload.py | 214 + .../setuptools/_distutils/config.py | 130 + .../setuptools/_distutils/core.py | 234 + .../setuptools/_distutils/cygwinccompiler.py | 414 + .../setuptools/_distutils/debug.py | 5 + .../setuptools/_distutils/dep_util.py | 92 + .../setuptools/_distutils/dir_util.py | 210 + .../setuptools/_distutils/dist.py | 1257 +++ .../setuptools/_distutils/errors.py | 97 + .../setuptools/_distutils/extension.py | 240 + .../setuptools/_distutils/fancy_getopt.py | 457 + .../setuptools/_distutils/file_util.py | 238 + .../setuptools/_distutils/filelist.py | 355 + .../setuptools/_distutils/log.py | 77 + .../setuptools/_distutils/msvc9compiler.py | 788 ++ .../setuptools/_distutils/msvccompiler.py | 643 ++ .../setuptools/_distutils/py35compat.py | 19 + .../setuptools/_distutils/py38compat.py | 7 + .../setuptools/_distutils/spawn.py | 106 + .../setuptools/_distutils/sysconfig.py | 578 ++ .../setuptools/_distutils/text_file.py | 286 + .../setuptools/_distutils/unixccompiler.py | 332 + .../setuptools/_distutils/util.py | 535 + .../setuptools/_distutils/version.py | 347 + .../setuptools/_distutils/versionpredicate.py | 166 + .../site-packages/setuptools/_imp.py | 82 + .../setuptools/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 276 bytes .../__pycache__/ordered_set.cpython-310.pyc | Bin 0 -> 16412 bytes .../__pycache__/pyparsing.cpython-310.pyc | Bin 0 -> 198892 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 357 bytes .../__pycache__/more.cpython-310.pyc | Bin 0 -> 110087 bytes .../__pycache__/recipes.cpython-310.pyc | Bin 0 -> 18057 bytes .../setuptools/_vendor/more_itertools/more.py | 3825 ++++++++ .../_vendor/more_itertools/recipes.py | 620 ++ .../setuptools/_vendor/ordered_set.py | 488 + .../setuptools/_vendor/packaging/__about__.py | 27 + .../setuptools/_vendor/packaging/__init__.py | 26 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 792 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 638 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 1238 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2782 bytes .../__pycache__/_typing.cpython-310.pyc | Bin 0 -> 1594 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9276 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 4181 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 20545 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 17424 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 1729 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 13109 bytes .../setuptools/_vendor/packaging/_compat.py | 38 + .../_vendor/packaging/_structures.py | 86 + .../setuptools/_vendor/packaging/_typing.py | 48 + .../setuptools/_vendor/packaging/markers.py | 328 + .../_vendor/packaging/requirements.py | 145 + .../_vendor/packaging/specifiers.py | 863 ++ .../setuptools/_vendor/packaging/tags.py | 751 ++ .../setuptools/_vendor/packaging/utils.py | 65 + .../setuptools/_vendor/packaging/version.py | 535 + .../setuptools/_vendor/pyparsing.py | 5742 +++++++++++ .../site-packages/setuptools/archive_util.py | 205 + .../site-packages/setuptools/build_meta.py | 281 + .../site-packages/setuptools/cli-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/cli-64.exe | Bin 0 -> 74752 bytes .../site-packages/setuptools/cli.exe | Bin 0 -> 65536 bytes .../setuptools/command/__init__.py | 8 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 465 bytes .../command/__pycache__/alias.cpython-310.pyc | Bin 0 -> 2467 bytes .../__pycache__/bdist_egg.cpython-310.pyc | Bin 0 -> 13193 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 1680 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 2556 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 9983 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 7960 bytes .../__pycache__/develop.cpython-310.pyc | Bin 0 -> 6243 bytes .../__pycache__/dist_info.cpython-310.pyc | Bin 0 -> 1485 bytes .../__pycache__/easy_install.cpython-310.pyc | Bin 0 -> 63817 bytes .../__pycache__/egg_info.cpython-310.pyc | Bin 0 -> 22111 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 4142 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 2519 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 4262 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2520 bytes .../__pycache__/py36compat.cpython-310.pyc | Bin 0 -> 4627 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 931 bytes .../__pycache__/rotate.cpython-310.pyc | Bin 0 -> 2598 bytes .../__pycache__/saveopts.cpython-310.pyc | Bin 0 -> 1017 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 6618 bytes .../__pycache__/setopt.cpython-310.pyc | Bin 0 -> 4779 bytes .../command/__pycache__/test.cpython-310.pyc | Bin 0 -> 8223 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 904 bytes .../__pycache__/upload_docs.cpython-310.pyc | Bin 0 -> 6273 bytes .../site-packages/setuptools/command/alias.py | 78 + .../setuptools/command/bdist_egg.py | 456 + .../setuptools/command/bdist_rpm.py | 40 + .../setuptools/command/build_clib.py | 101 + .../setuptools/command/build_ext.py | 328 + .../setuptools/command/build_py.py | 232 + .../setuptools/command/develop.py | 193 + .../setuptools/command/dist_info.py | 36 + .../setuptools/command/easy_install.py | 2290 +++++ .../setuptools/command/egg_info.py | 734 ++ .../setuptools/command/install.py | 125 + .../setuptools/command/install_egg_info.py | 62 + .../setuptools/command/install_lib.py | 122 + .../setuptools/command/install_scripts.py | 69 + .../setuptools/command/launcher manifest.xml | 15 + .../setuptools/command/py36compat.py | 134 + .../setuptools/command/register.py | 18 + .../setuptools/command/rotate.py | 64 + .../setuptools/command/saveopts.py | 22 + .../site-packages/setuptools/command/sdist.py | 189 + .../setuptools/command/setopt.py | 149 + .../site-packages/setuptools/command/test.py | 252 + .../setuptools/command/upload.py | 17 + .../setuptools/command/upload_docs.py | 202 + .../site-packages/setuptools/config.py | 749 ++ .../site-packages/setuptools/dep_util.py | 25 + .../site-packages/setuptools/depends.py | 175 + .../site-packages/setuptools/dist.py | 1150 +++ .../site-packages/setuptools/errors.py | 16 + .../site-packages/setuptools/extension.py | 55 + .../setuptools/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3026 bytes .../site-packages/setuptools/glob.py | 167 + .../site-packages/setuptools/gui-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/gui-64.exe | Bin 0 -> 75264 bytes .../site-packages/setuptools/gui.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/installer.py | 97 + .../site-packages/setuptools/launch.py | 36 + .../site-packages/setuptools/monkey.py | 177 + .../site-packages/setuptools/msvc.py | 1805 ++++ .../site-packages/setuptools/namespaces.py | 107 + .../site-packages/setuptools/package_index.py | 1119 +++ .../site-packages/setuptools/py34compat.py | 13 + .../site-packages/setuptools/sandbox.py | 530 + .../setuptools/script (dev).tmpl | 6 + .../site-packages/setuptools/script.tmpl | 3 + .../site-packages/setuptools/unicode_utils.py | 42 + .../site-packages/setuptools/version.py | 6 + .../site-packages/setuptools/wheel.py | 213 + .../setuptools/windows_support.py | 29 + .../urllib3-1.26.15.dist-info/INSTALLER | 1 + .../urllib3-1.26.15.dist-info/LICENSE.txt | 21 + .../urllib3-1.26.15.dist-info/METADATA | 1472 +++ .../urllib3-1.26.15.dist-info/RECORD | 82 + .../urllib3-1.26.15.dist-info/WHEEL | 6 + .../urllib3-1.26.15.dist-info/top_level.txt | 1 + .../site-packages/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2583 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 10937 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 288 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 13783 bytes .../connectionpool.cpython-310.pyc | Bin 0 -> 25501 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 11068 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 8259 bytes .../__pycache__/filepost.cpython-310.pyc | Bin 0 -> 2824 bytes .../__pycache__/poolmanager.cpython-310.pyc | Bin 0 -> 15293 bytes .../__pycache__/request.cpython-310.pyc | Bin 0 -> 5700 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 22697 bytes .../site-packages/urllib3/_collections.py | 337 + .../site-packages/urllib3/_version.py | 2 + .../site-packages/urllib3/connection.py | 572 ++ .../site-packages/urllib3/connectionpool.py | 1110 +++ .../site-packages/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 273 bytes .../_appengine_environ.cpython-310.pyc | Bin 0 -> 1453 bytes .../__pycache__/appengine.cpython-310.pyc | Bin 0 -> 8246 bytes .../__pycache__/ntlmpool.cpython-310.pyc | Bin 0 -> 3697 bytes .../__pycache__/pyopenssl.cpython-310.pyc | Bin 0 -> 15852 bytes .../securetransport.cpython-310.pyc | Bin 0 -> 21976 bytes .../contrib/__pycache__/socks.cpython-310.pyc | Bin 0 -> 5675 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 290 bytes .../__pycache__/bindings.cpython-310.pyc | Bin 0 -> 10786 bytes .../__pycache__/low_level.cpython-310.pyc | Bin 0 -> 9173 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../urllib3/contrib/appengine.py | 314 + .../site-packages/urllib3/contrib/ntlmpool.py | 130 + .../urllib3/contrib/pyopenssl.py | 518 + .../urllib3/contrib/securetransport.py | 921 ++ .../site-packages/urllib3/contrib/socks.py | 216 + .../site-packages/urllib3/exceptions.py | 323 + .../site-packages/urllib3/fields.py | 274 + .../site-packages/urllib3/filepost.py | 98 + .../urllib3/packages/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 274 bytes .../packages/__pycache__/six.cpython-310.pyc | Bin 0 -> 27734 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 284 bytes .../__pycache__/makefile.cpython-310.pyc | Bin 0 -> 1384 bytes .../urllib3/packages/backports/makefile.py | 51 + .../site-packages/urllib3/packages/six.py | 1076 +++ .../site-packages/urllib3/poolmanager.py | 537 + .../site-packages/urllib3/request.py | 170 + .../site-packages/urllib3/response.py | 885 ++ .../site-packages/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1183 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 3511 bytes .../util/__pycache__/proxy.cpython-310.pyc | Bin 0 -> 1418 bytes .../util/__pycache__/queue.cpython-310.pyc | Bin 0 -> 1138 bytes .../util/__pycache__/request.cpython-310.pyc | Bin 0 -> 3600 bytes .../util/__pycache__/response.cpython-310.pyc | Bin 0 -> 2431 bytes .../util/__pycache__/retry.cpython-310.pyc | Bin 0 -> 16221 bytes .../util/__pycache__/ssl_.cpython-310.pyc | Bin 0 -> 11373 bytes .../ssl_match_hostname.cpython-310.pyc | Bin 0 -> 3335 bytes .../__pycache__/ssltransport.cpython-310.pyc | Bin 0 -> 7473 bytes .../util/__pycache__/timeout.cpython-310.pyc | Bin 0 -> 9218 bytes .../util/__pycache__/url.cpython-310.pyc | Bin 0 -> 10769 bytes .../util/__pycache__/wait.cpython-310.pyc | Bin 0 -> 3167 bytes .../site-packages/urllib3/util/connection.py | 149 + .../site-packages/urllib3/util/proxy.py | 57 + .../site-packages/urllib3/util/queue.py | 22 + .../site-packages/urllib3/util/request.py | 146 + .../site-packages/urllib3/util/response.py | 107 + .../site-packages/urllib3/util/retry.py | 620 ++ .../site-packages/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 159 + .../urllib3/util/ssltransport.py | 221 + .../site-packages/urllib3/util/timeout.py | 271 + .../site-packages/urllib3/util/url.py | 435 + .../site-packages/urllib3/util/wait.py | 152 + .../de-lifecycle/lib64 | 1 + .../de-lifecycle/pyvenv.cfg | 3 + .../data-engineering-lifecycle/dogs.json | 1 + .../data-engineering-lifecycle/extract.py | 12 +- .../data-engineering-lifecycle/load.sh | 2 +- .../data-engineering-lifecycle/poetry.lock | 154 + .../data-engineering-lifecycle/pyproject.toml | 1 + .../requirements.txt | 5 + .../different-file-formats/homes.parquet | Bin 7972 -> 7972 bytes .../workshops/different-file-formats/main.py | 12 +- .../different-file-formats/users.avro | Bin 313 -> 313 bytes .../load_table_from_dataframe.py | 20 +- 1587 files changed, 295573 insertions(+), 15 deletions(-) create mode 100644 00-bootcamp-project/data/addresses.csv create mode 100644 00-bootcamp-project/data/events.csv create mode 100644 00-bootcamp-project/data/order_items.csv create mode 100644 00-bootcamp-project/data/orders.csv create mode 100644 00-bootcamp-project/data/products.csv create mode 100644 00-bootcamp-project/data/promos.csv create mode 100644 00-bootcamp-project/data/users.csv create mode 100644 00-bootcamp-project/load_table_addresses.py create mode 100644 00-bootcamp-project/load_table_events.py create mode 100644 00-bootcamp-project/load_table_order_items.py create mode 100644 00-bootcamp-project/load_table_orders.py create mode 100644 00-bootcamp-project/load_table_products.py create mode 100644 00-bootcamp-project/load_table_promos.py create mode 100644 00-bootcamp-project/load_table_users.py create mode 100644 00-bootcamp-project/main-api.py create mode 100644 00-bootcamp-project/main-postgres.py create mode 100644 00-bootcamp-project/main-sftp.py create mode 100644 00-bootcamp-project/main.py create mode 100644 00-bootcamp-project/pipeline.conf create mode 100644 00-bootcamp-project/poetry.lock create mode 100644 00-bootcamp-project/pyproject.toml create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/Activate.ps1 create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate.csh create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate.fish create mode 100755 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/normalizer create mode 100755 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip create mode 100755 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip3 create mode 100755 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip3.10 create mode 120000 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python create mode 120000 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python3 create mode 120000 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python3.10 create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/override.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/INSTALLER create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/LICENSE create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/METADATA create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/RECORD create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/WHEEL create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/top_level.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__main__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__pycache__/__main__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__pycache__/core.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/cacert.pem create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/core.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/py.typed create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/INSTALLER create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/LICENSE create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/METADATA create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/RECORD create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/WHEEL create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/entry_points.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/top_level.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/api.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/assets/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/assets/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cd.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/normalizer.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/normalizer.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/constant.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/legacy.py create mode 100755 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/md.cpython-310-x86_64-linux-gnu.so create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/md.py create mode 100755 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/md__mypyc.cpython-310-x86_64-linux-gnu.so create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/models.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/py.typed create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/distutils-precedence.pth create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/INSTALLER create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/LICENSE.md create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/METADATA create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/RECORD create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/WHEEL create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/codec.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/core.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/idnadata.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/package_data.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/uts46data.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/codec.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/core.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/idnadata.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/intranges.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/package_data.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/py.typed create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/uts46data.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/INSTALLER create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/LICENSE.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/METADATA create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/RECORD create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/REQUESTED create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/WHEEL create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/entry_points.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/top_level.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__main__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__pycache__/__main__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/build_env.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cache.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/base_command.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/command_context.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/main.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/parser.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/req_command.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/spinners.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/cache.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/check.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/completion.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/configuration.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/debug.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/download.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/freeze.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/hash.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/help.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/index.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/install.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/list.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/search.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/show.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/wheel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/configuration.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/base.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/installed.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/exceptions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/collector.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/package_finder.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/sources.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/base.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/main.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/base.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/candidate.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/direct_url.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/format_control.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/index.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/link.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/scheme.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/search_scope.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/target_python.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/wheel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/auth.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/cache.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/download.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/session.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/check.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/freeze.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/prepare.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/pyproject.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/constructors.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_file.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_install.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_set.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/base.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/_log.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/datetime.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/encoding.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/glibc.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/hashes.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/logging.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/misc.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/models.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/packaging.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/urls.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/wheel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/git.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/wheel_builder.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/core.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/enums.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/misc.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/shutil.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/tarfile.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/database.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/index.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/markers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/t64-arm.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/util.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/w64-arm.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distro.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_ihatexml.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_inputstream.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_tokenizer.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/_base.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/py.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/constants.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/base.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/lint.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/optionaltags.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/sanitizer.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/whitespace.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/html5parser.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/serializer.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/sax.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/base.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/dom.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/base.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/dom.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/codec.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/core.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/msgpack/_version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/markers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/packaging/version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/build.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/check.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/colorlog.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/dirtools.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/envbuild.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/meta.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pep517/wrappers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pkg_resources/py31compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/progress/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/colors.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/progress/bar.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/progress/colors.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/progress/counter.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/progress/spinner.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/console.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/filter.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/style.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/token.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pygments/util.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/actions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/common.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/core.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/diagram/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/exceptions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/helpers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/results.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/testing.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/unicode.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/pyparsing/util.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/__version__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/adapters.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/api.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/auth.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/certs.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/help.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/models.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/packages.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/sessions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/structures.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/requests/utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_lru_cache.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tabulate.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_lru_cache.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/abc.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/align.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/bar.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/box.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/cells.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/color.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/columns.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/console.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/containers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/control.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/errors.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/json.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/layout.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/live.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/live_render.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/logging.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/markup.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/measure.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/padding.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/pager.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/palette.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/panel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/progress.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/prompt.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/protocol.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/region.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/repr.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/rule.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/scope.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/screen.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/segment.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/spinner.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/status.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/style.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/styled.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/syntax.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/table.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/tabulate.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/text.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/theme.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/themes.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/traceback.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/rich/tree.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/six.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/after.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/before.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/typing_extensions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/request.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/vendor.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/py.typed create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_typing.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_structures.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_typing.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/markers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/requirements.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/specifiers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/tags.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/extern/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests-2.28.2.dist-info/INSTALLER create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests-2.28.2.dist-info/LICENSE create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests-2.28.2.dist-info/METADATA create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests-2.28.2.dist-info/RECORD create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests-2.28.2.dist-info/REQUESTED create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests-2.28.2.dist-info/WHEEL create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests-2.28.2.dist-info/top_level.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/__version__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/_internal_utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/adapters.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/api.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/auth.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/certs.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/cookies.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/exceptions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/help.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/hooks.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/models.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/packages.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/sessions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/status_codes.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/structures.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__pycache__/utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/__version__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/_internal_utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/adapters.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/api.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/auth.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/certs.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/cookies.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/exceptions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/help.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/hooks.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/models.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/packages.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/sessions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/status_codes.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/structures.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/requests/utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/INSTALLER create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/LICENSE create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/METADATA create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/RECORD create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/REQUESTED create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/WHEEL create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/entry_points.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools-58.1.0.dist-info/top_level.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/config.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/depends.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/dist.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/errors.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/extension.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/glob.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/installer.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/launch.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_deprecation_warning.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/py35compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/archive_util.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/bcppcompiler.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/cmd.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_msi.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_wininst.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/build.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/check.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/clean.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/config.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/install.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/py37compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/register.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/command/upload.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/config.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/core.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/debug.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/dist.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/errors.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/extension.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/file_util.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/filelist.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/log.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/msvc9compiler.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/msvccompiler.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/py35compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/py38compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/spawn.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/text_file.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/util.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_imp.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/ordered_set.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__about__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_typing.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/_compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/_typing.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/archive_util.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/build_meta.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/cli-32.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/cli-64.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/cli.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/alias.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/bdist_egg.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/build_clib.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/build_ext.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/build_py.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/develop.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/dist_info.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/easy_install.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/egg_info.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/install.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/install_egg_info.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/install_lib.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/install_scripts.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/launcher manifest.xml create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/py36compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/register.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/rotate.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/saveopts.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/sdist.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/setopt.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/test.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/upload.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/command/upload_docs.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/config.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/dep_util.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/depends.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/dist.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/errors.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/extension.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/extern/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/glob.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/gui-32.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/gui-64.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/gui.exe create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/installer.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/launch.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/monkey.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/msvc.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/namespaces.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/package_index.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/py34compat.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/sandbox.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/script (dev).tmpl create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/script.tmpl create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/unicode_utils.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/wheel.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/setuptools/windows_support.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3-1.26.15.dist-info/INSTALLER create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3-1.26.15.dist-info/LICENSE.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3-1.26.15.dist-info/METADATA create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3-1.26.15.dist-info/RECORD create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3-1.26.15.dist-info/WHEEL create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3-1.26.15.dist-info/top_level.txt create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__pycache__/_collections.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__pycache__/_version.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__pycache__/connection.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__pycache__/connectionpool.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__pycache__/exceptions.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__pycache__/fields.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__pycache__/filepost.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__pycache__/poolmanager.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__pycache__/request.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/__pycache__/response.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/_collections.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/_version.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/connection.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/connectionpool.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/__pycache__/appengine.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/__pycache__/socks.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/_appengine_environ.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/_securetransport/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/_securetransport/bindings.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/_securetransport/low_level.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/appengine.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/ntlmpool.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/pyopenssl.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/securetransport.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/contrib/socks.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/exceptions.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/fields.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/filepost.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/packages/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/packages/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/packages/__pycache__/six.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/packages/backports/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/packages/backports/makefile.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/packages/six.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/poolmanager.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/request.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/response.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__init__.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/__init__.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/connection.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/proxy.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/queue.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/request.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/response.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/retry.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/ssltransport.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/timeout.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/url.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/__pycache__/wait.cpython-310.pyc create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/connection.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/proxy.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/queue.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/request.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/response.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/retry.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/ssl_.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/ssl_match_hostname.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/ssltransport.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/timeout.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/url.py create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/urllib3/util/wait.py create mode 120000 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib64 create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/pyvenv.cfg create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/dogs.json create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/poetry.lock create mode 100644 01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/requirements.txt diff --git a/00-bootcamp-project/data/addresses.csv b/00-bootcamp-project/data/addresses.csv new file mode 100644 index 000000000..c2787a9a0 --- /dev/null +++ b/00-bootcamp-project/data/addresses.csv @@ -0,0 +1,151 @@ +address_id,address,zipcode,state,country +299ec70d-f1e7-4807-9d0e-6fd86e3ebcab,220 Artisan Park,92056,California,United States +957af504-cee3-4f3a-8f5a-eb5a5bd23b16,85717 Carberry Street,85062,Arizona,United States +ff8d0181-f21e-4235-bf7c-e5f917c6b55f,5423 Tennyson Alley,21282,Maryland,United States +b5d85492-b403-4f52-a42b-4363716f4cfb,4 Sutherland Alley,62723,Illinois,United States +e71bd22e-7711-405f-9d7e-2a7824d68a6a,226 Sherman Pass,33169,Florida,United States +cf12c9e1-2f85-47d7-b91e-2b0134b5ab2b,292 Chive Point,24029,Virginia,United States +959fc946-4baf-457f-8290-2a7d0e7fc3f7,6817 Red Cloud Lane,19172,Pennsylvania,United States +1c7f374e-04f5-4739-b791-e358d7cdd65a,3816 Brown Lane,35220,Alabama,United States +f79a5736-1e58-436a-aca9-bc4cf21fef09,3 Miller Point,75044,Texas,United States +28d7931e-b044-49f6-ac58-fabf1151055a,3 Harbort Hill,90805,California,United States +280bb1a8-d59e-4ada-b479-a4d47163130e,40 Farragut Crossing,25716,West Virginia,United States +609af927-16f8-450a-ade4-1e06724e9feb,78 Donald Crossing,23464,Virginia,United States +a4fbed7c-7bdd-465d-bdcd-ab0c4c68f300,2 Evergreen Hill,24009,Virginia,United States +53983579-4a64-432a-941e-c3d9c886bd77,59 Victoria Road,80005,Colorado,United States +4d9d28c3-6e38-48e7-9960-f244a3e72d9d,121 Meadow Ridge Drive,22093,Virginia,United States +18e90fce-7517-42c3-bd20-7028608da7df,410 Pierstorff Trail,14263,New York,United States +302bfd3c-795c-4eef-b1e7-627897f6861e,8 Bluejay Parkway,20046,District of Columbia,United States +a6dd4d60-8756-4967-8dd6-e7deaa538bc6,181 Kipling Street,52804,Iowa,United States +6155419f-3b93-43ef-a11a-b1dece0e7a37,1 Sullivan Plaza,35263,Alabama,United States +aa61ded6-4588-48dd-9759-1bd36ec5d787,90989 Pankratz Terrace,14604,New York,United States +1a61a755-cf38-43cd-be0d-7babfe8aaa26,4 Stone Corner Way,6912,Connecticut,United States +a8fa71b5-5d47-410f-b0c1-a16d20a05937,7 Corry Parkway,94705,California,United States +63260a1e-947f-42fe-b11f-12cea08830b6,19020 Clyde Gallagher Center,77240,Texas,United States +63fdd7ef-51f3-49e2-bdf2-22d46f68aacf,56 Iowa Point,44310,Ohio,United States +7ae529bf-b9d0-47ee-acd0-d55e0e6a0d32,573 Arizona Circle,76205,Texas,United States +91cdd4ef-b40f-48e0-b2f3-95b8620955eb,49407 Carey Crossing,85205,Arizona,United States +1ceb9167-9852-45a7-8109-57b077d8a2e0,1006 Brentwood Alley,98417,Washington,United States +c8e06217-c625-471f-8cdc-88c3e39f6b2c,40401 Sommers Point,27455,North Carolina,United States +4934ebb8-8950-4bd0-87ba-a1532716e54d,47039 Mesta Lane,90015,California,United States +89f9c593-3ac8-4f50-ab01-01b4a2e27eaa,5 Menomonie Center,79940,Texas,United States +4747877b-fb7d-4ec1-b42d-6b8f8707c984,4447 Montana Junction,59105,Montana,United States +25caf41f-ca5a-4cbb-bc2c-b5d9fcebe66b,6612 Barnett Court,79165,Texas,United States +131db634-55f8-4fb6-98f3-624ec32a94b8,99100 Oak Valley Circle,76011,Texas,United States +df4fbdd5-d7f9-4711-b1b6-2517808df91a,4106 Beilfuss Park,20551,District of Columbia,United States +71aa45c1-ce05-43b5-a52a-6145ab435c69,6868 Columbus Parkway,2305,Massachusetts,United States +d2fbe240-64ac-4feb-a360-8a9197f8b8ae,46922 Nobel Point,89087,Nevada,United States +62e197da-130d-48f9-95d1-8f67b5be1784,3 Eagan Street,75231,Texas,United States +04ac071b-da39-463c-ac62-e996547407c9,13 Derek Plaza,85271,Arizona,United States +bfee6b0f-d8ea-4626-9786-a0e1497bd07b,35 Fair Oaks Lane,32405,Florida,United States +e080edb5-bf24-43dd-a9cd-f1419a240fa7,11 Kim Lane,65218,Missouri,United States +76f13d82-1273-4144-8a41-45fc836c3540,86 Sycamore Place,94105,California,United States +0314fc1b-d832-4562-bda4-7dbe09d2868c,3429 Shopko Court,22119,Virginia,United States +cdac5d06-ad99-49f6-abb0-df87017dccfd,8580 Blue Bill Park Place,80279,Colorado,United States +874cd4e2-37d0-4e30-9773-0f9dcfa26838,4 Anthes Crossing,33261,Florida,United States +0c9ee6c6-4869-40aa-afd3-087cee73c051,52 Ohio Alley,49018,Michigan,United States +68a5c312-2205-45ec-ace1-166ff3f4b572,24 Arizona Lane,46221,Indiana,United States +f2dfb1e6-43bf-49ac-8d17-e1498079e08b,051 Hanover Junction,60505,Illinois,United States +47e8e06d-0612-4af0-89ed-48deafa4857a,9 Green Circle,79165,Texas,United States +89ab3752-1119-4f9e-9766-0d6883501434,677 Milwaukee Point,55407,Minnesota,United States +1d3482c6-e56b-47df-91f8-4b32bc908b2b,75 Brown Street,94975,California,United States +f785f0ae-f5d7-49a8-a4b7-95b470f7cb63,2 Logan Alley,22405,Virginia,United States +4983fb6f-b53f-4022-95ca-d17eb4974093,0 Hoffman Court,48206,Michigan,United States +6d31baf0-1ecd-42e0-b32f-645d084c3109,1080 1st Plaza,2203,Massachusetts,United States +2466034c-a22b-4b0e-95af-2d34160779bc,567 Crownhardt Court,31217,Georgia,United States +2c7bd191-c7c9-45d3-9dd0-612320bd9817,6585 Warbler Junction,47732,Indiana,United States +902bcb47-051b-4375-9dc0-485b3172b89b,59 Chinook Center,92160,California,United States +2b514c51-d01b-4d26-be99-4a1fa99bf322,4 Sutherland Hill,20508,District of Columbia,United States +9285957a-e1fd-4205-960e-f739a9c7dfd2,320 Rockefeller Point,91328,California,United States +dfe1082c-cb08-497f-9af9-9a7cf0aa70b5,85988 Glacier Hill Place,80940,Colorado,United States +fe794a2d-aa57-4ef1-8948-e0491e1ca3c1,98 Gale Road,28230,North Carolina,United States +fc458964-6e05-46e7-8717-c8c7798e78aa,110 Fairfield Park,45296,Ohio,United States +56078786-b8da-47a0-8a7c-befda74f8cd8,481 Petterle Point,94660,California,United States +26a10637-982b-4f9d-a243-de56b194427e,16735 Evergreen Street,89505,Nevada,United States +06dd400a-9d9e-48f3-9312-5a41f6038c8e,891 Merchant Place,21229,Maryland,United States +c9a6e260-e379-4b26-a36d-cf97e0eb03bc,8 Bartelt Lane,68144,Nebraska,United States +541b6c57-e5f2-4da7-baed-755e425a04d4,6 Bultman Street,33884,Florida,United States +2ccdea45-e41c-4845-8252-50c2f568e0db,2 Atwood Plaza,93094,California,United States +5a6a5b60-d54a-4ef7-9ae3-6bd9fd21a807,67955 Corben Center,80150,Colorado,United States +582148c7-44d6-4247-83ab-cd65557569b5,008 Pennsylvania Trail,35254,Alabama,United States +de7f84bd-9386-41a6-8dd0-cbafd5b58945,823 Myrtle Circle,79923,Texas,United States +be95b20d-a774-4572-b1ff-fd2c2c657568,6 Bluestem Avenue,66617,Kansas,United States +5eadcadd-a524-443f-8fcb-d0ef1981da0a,02897 Fairfield Junction,67205,Kansas,United States +058563af-f1de-48fe-a5ad-4514fe8964f4,99 Morrow Road,18763,Pennsylvania,United States +184b47dd-af07-4299-b872-5cfb6e4e7ac1,034 Blue Bill Park Plaza,76796,Texas,United States +dc7345f9-9c6b-45d5-a633-a07a4a355104,83 Hintze Avenue,73124,Oklahoma,United States +b3315b61-f1a6-4dbc-b08b-d65b38aa6f77,82992 Atwood Terrace,87592,New Mexico,United States +23f4d3fc-7192-44eb-a1c6-c3d93eed0a42,19120 Eastwood Point,65805,Missouri,United States +3a286955-76c1-4b50-b5fc-61e4e4e3be4d,107 Cambridge Terrace,18105,Pennsylvania,United States +7986bf80-2ce5-4fac-8e06-fc6db16dd2d9,044 Village Alley,73104,Oklahoma,United States +dd1048ba-46a5-4d80-a7e1-b1592c161a4c,23386 Hanson Street,97221,Oregon,United States +e21cfbf8-4b71-4028-a00f-83d79b8d1745,68 Canary Road,92825,California,United States +cc3b5481-169f-4fa0-8818-8d8e728773cd,3423 Delladonna Circle,50320,Iowa,United States +e6572a36-e4ae-4daa-8c05-692490c310a1,01 School Drive,32868,Florida,United States +4a9bcc05-a07b-4507-9d42-a2325a4844fa,255 Beilfuss Hill,71137,Louisiana,United States +5b281207-9295-4a31-a1bb-5ac383acca2a,583 Stephen Center,54915,Wisconsin,United States +96a40097-0030-4509-bb52-b3251fdef2b6,36613 Northridge Junction,11236,New York,United States +ea7dd7ad-1905-4873-9890-f1aa90439a29,7 Columbus Way,75185,Texas,United States +26f11eae-4214-4e99-8fc2-acc4718e30b7,8 Sunbrook Center,40210,Kentucky,United States +965dbeea-a6d5-467d-9683-914b744ad1ef,1 Kenwood Hill,22405,Virginia,United States +4da64e4e-655c-4fbe-bee2-3eb1014ace1b,454 Upham Drive,12242,New York,United States +be19b416-2a93-4ad7-8fdd-f0ae8f4eec2a,375 Hollow Ridge Point,15266,Pennsylvania,United States +4a30ec6b-111e-4142-9079-956394e1e4c7,23307 Everett Lane,77070,Texas,United States +db3e2e70-32f5-4f13-8302-63127ca0e3a8,362 Debs Way,88530,Texas,United States +027e0a9d-2bb0-4247-8989-365339741a93,6885 Annamark Alley,32215,Florida,United States +3b7ecb69-bf20-41be-b69f-59685b249be2,60 Scott Center,47747,Indiana,United States +34ddaf50-006e-47e6-b387-49d1544dd512,5 Moulton Pass,3804,New Hampshire,United States +44f03e5e-c121-44dd-80e2-b2d18860d57a,28 Moulton Alley,79491,Texas,United States +b8f77f86-d46a-412a-9dce-7b458a34618d,6096 Hovde Alley,76705,Texas,United States +fb0c8410-558a-4a65-bc50-6f82c32c7d1a,29425 Dawn Center,97216,Oregon,United States +02331e89-1736-4f12-85b9-ddd62545214b,430 Sauthoff Trail,75074,Texas,United States +47becc4c-db6c-4809-8562-c88a044ebfc9,09639 4th Lane,10060,New York,United States +8ebe35e6-51f2-444e-879b-a460d29d31cc,8 Onsgard Crossing,64144,Missouri,United States +edd6e563-bce1-4c84-859d-31cae681f40b,93 Comanche Junction,45454,Ohio,United States +d6e4e3d2-9e7c-454a-bae6-2339d80d23fd,3 Prairie Rose Crossing,20337,District of Columbia,United States +b75f3aaf-a993-400a-af77-389c1d1187a9,79 Heath Parkway,20078,District of Columbia,United States +eda39524-e26b-46b0-b628-af063f46f3d9,7 Grover Way,85083,Arizona,United States +ed96dbd0-193e-4906-ae8b-904f50bcb57a,93617 Grayhawk Circle,78426,Texas,United States +bffd2205-2234-4d52-8ec6-60ca76d18cf0,304 Walton Circle,89130,Nevada,United States +dfc2941f-aef1-4c70-a7f6-8105dda578f5,4 Utah Alley,36177,Alabama,United States +c1661061-176f-4e18-96a3-3ae16fdee80b,802 Sommers Lane,44511,Ohio,United States +7e949772-ab43-447f-a79d-3707a1793ed0,6 Anthes Alley,55417,Minnesota,United States +42e017a2-ca97-4f71-bf3c-d32605ef9d43,18 Linden Plaza,31605,Georgia,United States +d502f2e1-d34c-4b82-9834-15e50ab41a1b,71 Talisman Road,29424,South Carolina,United States +b2b4d6cd-3c94-40e0-99aa-9dd9ba011ca6,5 Pearson Street,92160,California,United States +8a46a3e5-4428-4744-855c-19d435fcf7af,197 Canary Crossing,78220,Texas,United States +ec7b6cfc-530f-40ed-bfa5-e3caa3b7ecbe,94563 Little Fleur Crossing,10469,New York,United States +6b49d7c6-6ede-4a8a-ade1-ec5888c7ce14,868 Coolidge Drive,22217,Virginia,United States +118d2c47-6c92-44b3-a52a-c58dac57adf2,2884 Sullivan Circle,39236,Mississippi,United States +71c60b11-0457-40c4-91ca-b86e0631f1eb,8 Morning Terrace,98175,Washington,United States +bee5bf4a-6525-4ef0-bdb2-fc1d8efe0570,9990 7th Point,34985,Florida,United States +7193c797-ae37-4347-89b8-5564e93645f6,029 Meadow Ridge Court,77005,Texas,United States +a81e134c-8135-44ab-bda4-66b29e5175ca,94 Cardinal Terrace,20525,District of Columbia,United States +5b760361-9ef1-49bd-a672-9acc2431d384,90517 Anhalt Point,29505,South Carolina,United States +abf50534-9e5b-4e95-9548-2008505f40a2,0 Messerschmidt Trail,47747,Indiana,United States +a96cbe83-ad12-4457-af40-1b5b5f373937,77 Harbort Drive,93762,California,United States +632eadda-3e81-492c-8108-d5982aeac84d,57 Pleasure Plaza,19805,Delaware,United States +2aaf2e91-8735-4def-82ca-31dce98ff634,19753 Beilfuss Road,78769,Texas,United States +adbda10f-8cab-4827-9d04-4b8b8f42cf11,5943 South Street,20456,District of Columbia,United States +1c6e9a5c-3fa8-4ac5-a4fe-5159a187c293,2397 La Follette Court,21211,Maryland,United States +d3dfe1e5-6826-49fe-9bfb-ef1022a20520,23 Dayton Circle,23605,Virginia,United States +27b514cc-7ff4-4451-b1ba-27bb2f5011c8,6 Myrtle Drive,76505,Texas,United States +d7f05c8c-d055-481f-a427-77aded0fd4ce,527 Monica Drive,30919,Georgia,United States +11f9f0ec-0cd6-4944-9dff-b577da0cc535,178 Crest Line Plaza,32259,Florida,United States +994b670f-e529-4a97-9826-448f7f9fbf80,48 Morning Circle,92844,California,United States +cdc9b750-8081-441d-9905-339732cbdc4a,42440 Spohn Hill,78405,Texas,United States +7a4821e6-4e7a-4894-bb35-70ffcf0c3aa8,7 Roxbury Alley,2208,Massachusetts,United States +24b83ef4-4f28-408a-bea9-171ddaf094a7,76 Northport Avenue,35810,Alabama,United States +8b7e7226-a1e0-4fbf-a0a9-60c38d3e3347,4631 Sachs Center,76192,Texas,United States +bc355137-f7dd-4461-83d3-f288994d450a,7 Eastwood Avenue,11388,New York,United States +82ef2b98-79dc-461c-855b-95c5d38ad6d3,8681 Merchant Trail,28235,North Carolina,United States +e40b6557-536e-478e-a405-eed9959aa9f7,3246 Hooker Street,2458,Massachusetts,United States +177f1c47-e34a-4c5d-b704-330376ba6ae2,0215 Lake View Crossing,95150,California,United States +48ee18eb-8ee7-4cd7-819b-a9c65184e4ac,0 Lunder Junction,47937,Indiana,United States +65ef7b5a-11db-4544-89a8-44e15f1a986f,03107 Homewood Center,64142,Missouri,United States +d0042646-63e0-434e-874c-aec1d434f2df,028 6th Way,66642,Kansas,United States +9b6a4ed6-6c27-4102-8d5f-5db7435e80ee,2148 8th Road,55446,Minnesota,United States +72f36ef2-3c89-413d-a2c0-f91e8221a052,975 Pond Hill,98042,Washington,United States +b77fd02e-2ad1-4235-8ea9-d9ea509d9c04,182 Elmside Drive,55172,Minnesota,United States +b3db1ec9-17b7-4b15-8f04-b2077048f428,2086 Russell Circle,92822,California,United States +a4214945-dbfc-4bc2-afe6-ab00f33edcfe,78 Cardinal Trail,93291,California,United States diff --git a/00-bootcamp-project/data/events.csv b/00-bootcamp-project/data/events.csv new file mode 100644 index 000000000..fc5f9c525 --- /dev/null +++ b/00-bootcamp-project/data/events.csv @@ -0,0 +1,1430 @@ +event_id,session_id,page_url,created_at,event_type,user,order,product +96d4b85f-db38-489c-ac55-e6528f177bc7,b6b8f3df-4165-4ca0-bc88-904c75eebbaf,https://greenery.com/checkout/1747e0c2-2649-4b8b-8048-540425302a8f,2021-02-10T10:35:35Z,checkout,e512189a-15a2-4325-b41d-6092f5c03bc9,1747e0c2-2649-4b8b-8048-540425302a8f, +f9296d7a-0d3c-4398-8fbe-f8e301bd507a,b6b8f3df-4165-4ca0-bc88-904c75eebbaf,https://greenery.com/shipping/1747e0c2-2649-4b8b-8048-540425302a8f,2021-02-10T13:35:38Z,package_shipped,e512189a-15a2-4325-b41d-6092f5c03bc9,1747e0c2-2649-4b8b-8048-540425302a8f, +12f0255a-83f9-4dcc-b284-123653082e4c,b6b8f3df-4165-4ca0-bc88-904c75eebbaf,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T10:34:55Z,add_to_cart,e512189a-15a2-4325-b41d-6092f5c03bc9,,80eda933-749d-4fc6-91d5-613d29eb126f +0efcf39a-794e-4afa-8e01-a9c0860d6581,b6b8f3df-4165-4ca0-bc88-904c75eebbaf,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T10:33:49Z,page_view,e512189a-15a2-4325-b41d-6092f5c03bc9,,80eda933-749d-4fc6-91d5-613d29eb126f +725c6900-29c1-4f33-820f-96b65c82d7f9,b6b8f3df-4165-4ca0-bc88-904c75eebbaf,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T10:32:58Z,add_to_cart,e512189a-15a2-4325-b41d-6092f5c03bc9,,5ceddd13-cf00-481f-9285-8340ab95d06d +1a587b88-7746-4cb2-aa43-0f441551ef11,b6b8f3df-4165-4ca0-bc88-904c75eebbaf,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T10:30:53Z,page_view,e512189a-15a2-4325-b41d-6092f5c03bc9,,5ceddd13-cf00-481f-9285-8340ab95d06d +0bc60792-01e8-44d9-8988-6e10eca58346,b6b8f3df-4165-4ca0-bc88-904c75eebbaf,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T10:30:12Z,add_to_cart,e512189a-15a2-4325-b41d-6092f5c03bc9,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +9343356b-ca78-449f-a2cb-37dd0d6f798d,b6b8f3df-4165-4ca0-bc88-904c75eebbaf,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T10:29:29Z,page_view,e512189a-15a2-4325-b41d-6092f5c03bc9,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +f1663650-08ad-4888-9906-c501b2c683cb,b6b8f3df-4165-4ca0-bc88-904c75eebbaf,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T10:34:29Z,page_view,e512189a-15a2-4325-b41d-6092f5c03bc9,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +0f0252db-e9b3-4472-b184-a7c184f07f4a,b6b8f3df-4165-4ca0-bc88-904c75eebbaf,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T10:32:57Z,page_view,e512189a-15a2-4325-b41d-6092f5c03bc9,,e8b6528e-a830-4d03-a027-473b411c7f02 +fefd9d8d-c8cc-4810-ba3d-f139b7e68340,b6b8f3df-4165-4ca0-bc88-904c75eebbaf,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T10:31:48Z,page_view,e512189a-15a2-4325-b41d-6092f5c03bc9,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +1561384a-242c-4194-aae8-c245a1b7ad99,2e5fe1ea-97e2-4aae-afe7-a09445013635,https://greenery.com/checkout/1eb77dda-3387-4242-ba28-0b371ea785cf,2021-02-10T15:22:54Z,checkout,393de08c-725c-457a-a591-16030480eb80,1eb77dda-3387-4242-ba28-0b371ea785cf, +67d3a129-8252-40dd-97ca-92b559e52283,2e5fe1ea-97e2-4aae-afe7-a09445013635,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T15:22:09Z,add_to_cart,393de08c-725c-457a-a591-16030480eb80,,80eda933-749d-4fc6-91d5-613d29eb126f +82a98070-ec10-40ea-a297-f1b163d1f32e,2e5fe1ea-97e2-4aae-afe7-a09445013635,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T15:20:31Z,page_view,393de08c-725c-457a-a591-16030480eb80,,80eda933-749d-4fc6-91d5-613d29eb126f +206a027d-1495-4f49-aabe-c392170267df,2e5fe1ea-97e2-4aae-afe7-a09445013635,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T15:19:58Z,add_to_cart,393de08c-725c-457a-a591-16030480eb80,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +14e5e630-f783-451c-bba0-9a5dde6ef93b,2e5fe1ea-97e2-4aae-afe7-a09445013635,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T15:18:34Z,page_view,393de08c-725c-457a-a591-16030480eb80,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +3ead7a61-0fc3-449a-9048-3923bf817748,2e5fe1ea-97e2-4aae-afe7-a09445013635,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T15:18:00Z,add_to_cart,393de08c-725c-457a-a591-16030480eb80,,c17e63f7-0d28-4a95-8248-b01ea354840e +b3ef7ff5-300f-4802-b30b-5f31fd525d17,2e5fe1ea-97e2-4aae-afe7-a09445013635,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T15:16:07Z,page_view,393de08c-725c-457a-a591-16030480eb80,,c17e63f7-0d28-4a95-8248-b01ea354840e +b3ee6594-a825-4629-95fe-c57595a96e48,2e5fe1ea-97e2-4aae-afe7-a09445013635,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T15:21:58Z,page_view,393de08c-725c-457a-a591-16030480eb80,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +af0b8825-e345-4cd5-a093-2d1b0a28a78c,2e5fe1ea-97e2-4aae-afe7-a09445013635,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T15:19:55Z,page_view,393de08c-725c-457a-a591-16030480eb80,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +c0feb65c-2658-4596-8f7f-62af956481ca,2e5fe1ea-97e2-4aae-afe7-a09445013635,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T15:17:51Z,page_view,393de08c-725c-457a-a591-16030480eb80,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +ce88c4fd-bf0d-4d7d-bb8c-f6bd6f6402f6,72245286-c520-444c-b1bd-6a178ae6d83f,https://greenery.com/checkout/529bcc4d-8fcc-42b5-b4c5-a0e2c8886686,2021-02-10T07:33:26Z,checkout,f47ac0f5-2afa-4e71-8328-bd881947159b,529bcc4d-8fcc-42b5-b4c5-a0e2c8886686, +09d461a3-3024-4efc-925a-391be67480c8,72245286-c520-444c-b1bd-6a178ae6d83f,https://greenery.com/shipping/529bcc4d-8fcc-42b5-b4c5-a0e2c8886686,2021-02-10T09:33:27Z,package_shipped,f47ac0f5-2afa-4e71-8328-bd881947159b,529bcc4d-8fcc-42b5-b4c5-a0e2c8886686, +d5034f11-d65d-4a7d-bb50-a9b31b20b9dc,72245286-c520-444c-b1bd-6a178ae6d83f,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T07:33:02Z,add_to_cart,f47ac0f5-2afa-4e71-8328-bd881947159b,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +5cf7f62c-10db-4c5b-99b5-c5510174a3ae,72245286-c520-444c-b1bd-6a178ae6d83f,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T07:31:44Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +0b8fa886-f030-434f-b050-10d468f903e9,72245286-c520-444c-b1bd-6a178ae6d83f,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T07:32:29Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +a3350ebc-2b31-4b47-b897-a2cccb39dc97,72245286-c520-444c-b1bd-6a178ae6d83f,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T07:30:44Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +95b8ccd8-4c89-4314-818f-1d370c5677bb,72245286-c520-444c-b1bd-6a178ae6d83f,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T07:29:29Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +00f0b98b-c4fa-43c7-8d3a-34264f373240,703dd92b-0822-477f-bac8-ec50060b51f9,https://greenery.com/checkout/d0cc9fd6-0ce6-42a4-a77e-fabb1b0962da,2021-02-10T20:17:30Z,checkout,7025daf6-54d9-44be-8282-7923def85169,d0cc9fd6-0ce6-42a4-a77e-fabb1b0962da, +3c779530-5831-4b10-bb34-d03e0d7da001,703dd92b-0822-477f-bac8-ec50060b51f9,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T20:16:53Z,add_to_cart,7025daf6-54d9-44be-8282-7923def85169,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +fa467bc8-adb6-45d9-8011-cdc89aa72e66,703dd92b-0822-477f-bac8-ec50060b51f9,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T20:14:48Z,page_view,7025daf6-54d9-44be-8282-7923def85169,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +b3bfeda9-d1cc-4a96-b657-b14d8957f839,703dd92b-0822-477f-bac8-ec50060b51f9,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T20:14:24Z,add_to_cart,7025daf6-54d9-44be-8282-7923def85169,,5ceddd13-cf00-481f-9285-8340ab95d06d +37e58680-bc05-4590-a930-4c51cf5d8f61,703dd92b-0822-477f-bac8-ec50060b51f9,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T20:12:50Z,page_view,7025daf6-54d9-44be-8282-7923def85169,,5ceddd13-cf00-481f-9285-8340ab95d06d +f77f075d-70d6-4114-8414-5d1297799c01,703dd92b-0822-477f-bac8-ec50060b51f9,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T20:16:04Z,page_view,7025daf6-54d9-44be-8282-7923def85169,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +403bdf86-b966-4145-b94f-c74e4b9502bb,703dd92b-0822-477f-bac8-ec50060b51f9,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T20:14:48Z,page_view,7025daf6-54d9-44be-8282-7923def85169,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +ec49b338-4bf5-4851-bff3-752d74429824,703dd92b-0822-477f-bac8-ec50060b51f9,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T20:12:56Z,page_view,7025daf6-54d9-44be-8282-7923def85169,,be49171b-9f72-4fc9-bf7a-9a52e259836b +991e1840-4530-4e89-b1cd-5808ff0f6a59,e614e1c7-2c0b-4d03-94e1-21ed256fc620,https://greenery.com/checkout/5f078a73-bc4b-4231-9c91-144060234d49,2021-02-10T15:11:36Z,checkout,c3a44de4-e6c8-4d02-93df-aff409356087,5f078a73-bc4b-4231-9c91-144060234d49, +d82a4140-ee2f-4f9a-9397-2ddea8c01ae1,e614e1c7-2c0b-4d03-94e1-21ed256fc620,https://greenery.com/shipping/5f078a73-bc4b-4231-9c91-144060234d49,2021-02-10T18:11:37Z,package_shipped,c3a44de4-e6c8-4d02-93df-aff409356087,5f078a73-bc4b-4231-9c91-144060234d49, +5be83f84-57cf-4f4a-8fb7-32a1ba0b754f,e614e1c7-2c0b-4d03-94e1-21ed256fc620,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T15:11:09Z,add_to_cart,c3a44de4-e6c8-4d02-93df-aff409356087,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +27df46e5-d7a8-4e2b-b937-41f6b6e5765b,e614e1c7-2c0b-4d03-94e1-21ed256fc620,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T15:10:33Z,page_view,c3a44de4-e6c8-4d02-93df-aff409356087,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +5c861f45-05d4-40bd-b341-a0dbef2d4f8a,e614e1c7-2c0b-4d03-94e1-21ed256fc620,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T15:10:14Z,add_to_cart,c3a44de4-e6c8-4d02-93df-aff409356087,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +a7bb27b5-f6de-4a58-ad6b-fd3e4a80a3b8,e614e1c7-2c0b-4d03-94e1-21ed256fc620,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T15:08:09Z,page_view,c3a44de4-e6c8-4d02-93df-aff409356087,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +ab5c187e-68a9-437d-ae1b-859f2f4bd4ef,e614e1c7-2c0b-4d03-94e1-21ed256fc620,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T15:09:31Z,page_view,c3a44de4-e6c8-4d02-93df-aff409356087,,80eda933-749d-4fc6-91d5-613d29eb126f +45438ca9-ec81-4c92-befb-457b15ee7d9d,e614e1c7-2c0b-4d03-94e1-21ed256fc620,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T15:08:16Z,page_view,c3a44de4-e6c8-4d02-93df-aff409356087,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +f25b0070-4ce3-4587-909e-d76015d3a7b3,174b71cf-f0f9-49ac-888c-6f73658f7588,https://greenery.com/checkout/2973c405-100e-4ece-af7f-077783132b3c,2021-02-10T04:30:19Z,checkout,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,2973c405-100e-4ece-af7f-077783132b3c, +b7ac6386-bf4f-4b0b-b693-398a5a198089,174b71cf-f0f9-49ac-888c-6f73658f7588,https://greenery.com/shipping/2973c405-100e-4ece-af7f-077783132b3c,2021-02-10T09:30:24Z,package_shipped,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,2973c405-100e-4ece-af7f-077783132b3c, +f67ef7cf-1c27-4780-bd95-d2018b27d6dd,174b71cf-f0f9-49ac-888c-6f73658f7588,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T04:29:44Z,add_to_cart,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,be49171b-9f72-4fc9-bf7a-9a52e259836b +da997c68-bf2a-4c93-b00c-73e313c49557,174b71cf-f0f9-49ac-888c-6f73658f7588,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T04:29:03Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,be49171b-9f72-4fc9-bf7a-9a52e259836b +bcdd8c79-b4d0-4f19-9296-5db12f279621,174b71cf-f0f9-49ac-888c-6f73658f7588,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T04:28:39Z,add_to_cart,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,e8b6528e-a830-4d03-a027-473b411c7f02 +7df32ae1-9ff8-4592-b8ec-2a98f3377bf0,174b71cf-f0f9-49ac-888c-6f73658f7588,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T04:27:37Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,e8b6528e-a830-4d03-a027-473b411c7f02 +c806788c-b84e-4ed1-b53b-2f5027806cc8,174b71cf-f0f9-49ac-888c-6f73658f7588,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T04:28:45Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +5da0ad9f-345b-45cd-8db6-b01db11c8816,a6b76939-9376-475f-9df4-b8c46d61b97c,https://greenery.com/checkout/01e059c6-9aee-4dfe-b5b5-8c403bb21a82,2021-02-10T12:51:14Z,checkout,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,01e059c6-9aee-4dfe-b5b5-8c403bb21a82, +4021a438-5d89-4a25-80c1-59eb5c9f8c9b,a6b76939-9376-475f-9df4-b8c46d61b97c,https://greenery.com/shipping/01e059c6-9aee-4dfe-b5b5-8c403bb21a82,2021-02-10T19:51:19Z,package_shipped,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,01e059c6-9aee-4dfe-b5b5-8c403bb21a82, +e131a739-3d20-4879-b731-fbe59919ff93,a6b76939-9376-475f-9df4-b8c46d61b97c,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T12:50:43Z,add_to_cart,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,689fb64e-a4a2-45c5-b9f2-480c2155624d +23fce3d3-ce1b-4bec-87b4-e2e25b39dcfe,a6b76939-9376-475f-9df4-b8c46d61b97c,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T12:49:32Z,page_view,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,689fb64e-a4a2-45c5-b9f2-480c2155624d +cc3388ae-8c48-4007-a3d0-0307c72e327e,a6b76939-9376-475f-9df4-b8c46d61b97c,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T12:50:08Z,page_view,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +8736ba5f-bce9-4994-ac5a-d733d88189e6,a6b76939-9376-475f-9df4-b8c46d61b97c,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T12:48:45Z,page_view,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +3a1ed3db-9130-4439-b224-e008f4db5db7,8fa0e696-92df-4e26-b313-7c0e643b833a,https://greenery.com/checkout/40f5d51c-0a3c-481a-96e8-0784818e082d,2021-02-10T17:47:02Z,checkout,6b116938-3785-4983-a5d7-33f6af32f0ba,40f5d51c-0a3c-481a-96e8-0784818e082d, +c7ff49fd-fde7-4ade-b06d-d9fb0727c854,8fa0e696-92df-4e26-b313-7c0e643b833a,https://greenery.com/shipping/40f5d51c-0a3c-481a-96e8-0784818e082d,2021-02-10T21:47:04Z,package_shipped,6b116938-3785-4983-a5d7-33f6af32f0ba,40f5d51c-0a3c-481a-96e8-0784818e082d, +3184eefe-b86a-4905-a72b-614afba6ec1c,8fa0e696-92df-4e26-b313-7c0e643b833a,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T17:46:11Z,add_to_cart,6b116938-3785-4983-a5d7-33f6af32f0ba,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +8bf06189-5afa-4ffd-9dff-7c4dc082c95b,8fa0e696-92df-4e26-b313-7c0e643b833a,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T17:44:53Z,page_view,6b116938-3785-4983-a5d7-33f6af32f0ba,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +60ed72d1-28a6-41ad-b40a-f314c0149323,8fa0e696-92df-4e26-b313-7c0e643b833a,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T17:44:16Z,add_to_cart,6b116938-3785-4983-a5d7-33f6af32f0ba,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +a787d494-23d5-4e4c-98c1-4b67c46eebe3,8fa0e696-92df-4e26-b313-7c0e643b833a,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T17:43:23Z,page_view,6b116938-3785-4983-a5d7-33f6af32f0ba,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +8d9d8dec-33a9-4883-85cc-4a0e86a9739f,8fa0e696-92df-4e26-b313-7c0e643b833a,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T17:42:39Z,add_to_cart,6b116938-3785-4983-a5d7-33f6af32f0ba,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +0e85f737-85d4-43ae-a39e-6809f0ce86b5,8fa0e696-92df-4e26-b313-7c0e643b833a,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T17:41:30Z,page_view,6b116938-3785-4983-a5d7-33f6af32f0ba,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +ccb7f9c6-13e7-411f-b765-5d287352ae3f,8fa0e696-92df-4e26-b313-7c0e643b833a,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T17:46:22Z,page_view,6b116938-3785-4983-a5d7-33f6af32f0ba,,e5ee99b6-519f-4218-8b41-62f48f59f700 +0d99df7f-c6ae-41c2-ae9e-65f4db6915dc,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/checkout/a11ec73d-efcb-4918-be37-fa6f812d22de,2021-02-10T19:10:41Z,checkout,96aa719e-c5a3-4645-ba89-16c304fb59b0,a11ec73d-efcb-4918-be37-fa6f812d22de, +d8c2ce02-4d6d-488e-96aa-12a6f49589a1,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T19:09:53Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +46b5c8ed-33f4-42c0-be97-996bdc3fc75e,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T19:09:00Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +15dc1ce2-6d17-4829-95b2-4bf42e14f1a8,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T19:08:17Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +01976922-da55-46ba-957a-1d9ec565b00a,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T19:07:25Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +b6c9bad9-05c8-40b8-9ceb-7ac0734b0292,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T19:06:46Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +92733471-2a97-44e1-bf6d-777596772fda,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T19:04:47Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +729c66b4-8ca4-4be9-bb70-421c2b4413df,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T19:04:09Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,e8b6528e-a830-4d03-a027-473b411c7f02 +2306a307-dcc9-46fe-bcad-4edec86012db,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T19:02:19Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,e8b6528e-a830-4d03-a027-473b411c7f02 +05ab1e58-b7c9-480a-bfa6-5927cdca966f,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T19:01:56Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +27b985c2-6907-410b-970d-be47d346ac51,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T19:00:39Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +7970221e-6ae6-4a92-ac97-e9c727d740f8,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T18:59:46Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,5ceddd13-cf00-481f-9285-8340ab95d06d +f6a342e9-622b-4f1d-9fb6-50ed67b72d8a,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T18:57:47Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,5ceddd13-cf00-481f-9285-8340ab95d06d +585bfb24-3039-426a-97f1-9a976a0ecd3d,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T18:57:17Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,c17e63f7-0d28-4a95-8248-b01ea354840e +19b96900-7728-416d-9e40-4364e59ccb91,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T18:55:54Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,c17e63f7-0d28-4a95-8248-b01ea354840e +1c0960a9-b45a-4312-840e-4f14bd54c54f,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T19:09:41Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +3ae363a0-d6b6-4e4c-b766-314ff7972700,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T19:09:02Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +873f0f62-9f90-418f-a639-b846e5169f3f,2cdbd9e2-52b9-4420-afac-14c0f3240f13,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T19:07:34Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +4a4efaa5-fa07-491f-8655-1c34cce4d507,eb3670e2-b9c4-4419-b43e-2844b93e4986,https://greenery.com/checkout/0ec01f36-fc49-456b-8ca5-7a7d5ea50df5,2021-02-10T06:45:36Z,checkout,c42fc8e5-9ab6-4fbf-84bf-40ff309bf24c,0ec01f36-fc49-456b-8ca5-7a7d5ea50df5, +d6648c6f-288a-4683-8066-8678f86dfa0f,eb3670e2-b9c4-4419-b43e-2844b93e4986,https://greenery.com/shipping/0ec01f36-fc49-456b-8ca5-7a7d5ea50df5,2021-02-10T09:45:40Z,package_shipped,c42fc8e5-9ab6-4fbf-84bf-40ff309bf24c,0ec01f36-fc49-456b-8ca5-7a7d5ea50df5, +29358c01-731c-4b4f-ad4b-caf4f4160348,eb3670e2-b9c4-4419-b43e-2844b93e4986,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T06:44:55Z,add_to_cart,c42fc8e5-9ab6-4fbf-84bf-40ff309bf24c,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +bc9daf3d-ece8-4a46-8683-529f67fc8f9c,eb3670e2-b9c4-4419-b43e-2844b93e4986,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T06:43:23Z,page_view,c42fc8e5-9ab6-4fbf-84bf-40ff309bf24c,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +a6708981-a61a-422d-a8a0-f745cec78bb3,eb3670e2-b9c4-4419-b43e-2844b93e4986,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T06:43:00Z,add_to_cart,c42fc8e5-9ab6-4fbf-84bf-40ff309bf24c,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +dd992590-c8a9-4041-b64a-aa649acd978b,eb3670e2-b9c4-4419-b43e-2844b93e4986,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T06:41:53Z,page_view,c42fc8e5-9ab6-4fbf-84bf-40ff309bf24c,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +1c5f274c-64d4-4721-b449-56db72b4a43f,eb3670e2-b9c4-4419-b43e-2844b93e4986,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T06:44:05Z,page_view,c42fc8e5-9ab6-4fbf-84bf-40ff309bf24c,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +7aaec8ce-9681-48de-85f5-ab85d450a9e1,e54cb14e-d935-406b-b2f6-88dcd70e1cdb,https://greenery.com/checkout/bb219a8e-f747-4cc5-ac19-9f505baed9ff,2021-02-10T06:06:55Z,checkout,6b116938-3785-4983-a5d7-33f6af32f0ba,bb219a8e-f747-4cc5-ac19-9f505baed9ff, +00bd3312-b869-416a-aa74-04eebc469888,e54cb14e-d935-406b-b2f6-88dcd70e1cdb,https://greenery.com/shipping/bb219a8e-f747-4cc5-ac19-9f505baed9ff,2021-02-10T08:06:56Z,package_shipped,6b116938-3785-4983-a5d7-33f6af32f0ba,bb219a8e-f747-4cc5-ac19-9f505baed9ff, +fa845459-ed70-4180-bb2a-e0052d4af82b,e54cb14e-d935-406b-b2f6-88dcd70e1cdb,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T06:06:37Z,add_to_cart,6b116938-3785-4983-a5d7-33f6af32f0ba,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +3da8c34e-8276-4d3e-bd71-db1c3974688f,e54cb14e-d935-406b-b2f6-88dcd70e1cdb,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T06:04:34Z,page_view,6b116938-3785-4983-a5d7-33f6af32f0ba,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +98a4c137-4b7e-4334-9c9d-696508ca812d,e54cb14e-d935-406b-b2f6-88dcd70e1cdb,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T06:03:43Z,add_to_cart,6b116938-3785-4983-a5d7-33f6af32f0ba,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +b31a0e64-9349-47c0-8d94-dd47b39be2f9,e54cb14e-d935-406b-b2f6-88dcd70e1cdb,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T06:01:38Z,page_view,6b116938-3785-4983-a5d7-33f6af32f0ba,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +2a6c04cd-b3bc-4376-b0fc-a74dd73ab9d3,e54cb14e-d935-406b-b2f6-88dcd70e1cdb,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T06:05:20Z,page_view,6b116938-3785-4983-a5d7-33f6af32f0ba,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +706af28e-7071-4880-bd8a-f91686ceced4,e54cb14e-d935-406b-b2f6-88dcd70e1cdb,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T06:04:40Z,page_view,6b116938-3785-4983-a5d7-33f6af32f0ba,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +584bac88-4bd9-42c7-a46c-152b40ac2d53,ee4d9b19-2757-4a77-b934-99a1d19a883c,https://greenery.com/checkout/03232fbc-033a-4ba9-b0d7-195b987682ef,2021-02-10T01:30:50Z,checkout,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,03232fbc-033a-4ba9-b0d7-195b987682ef, +7c071706-4426-48d6-86c0-0c2b7bf0178e,ee4d9b19-2757-4a77-b934-99a1d19a883c,https://greenery.com/shipping/03232fbc-033a-4ba9-b0d7-195b987682ef,2021-02-10T03:30:52Z,package_shipped,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,03232fbc-033a-4ba9-b0d7-195b987682ef, +546dd11d-efbc-415c-abf1-91fd4b1da19f,ee4d9b19-2757-4a77-b934-99a1d19a883c,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T01:30:00Z,add_to_cart,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,e8b6528e-a830-4d03-a027-473b411c7f02 +ea1eb26e-490b-40cc-b21a-3ccd574f21ce,ee4d9b19-2757-4a77-b934-99a1d19a883c,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T01:28:40Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,e8b6528e-a830-4d03-a027-473b411c7f02 +e8d8203c-0181-4c3b-9af1-a6b4157b16b5,ee4d9b19-2757-4a77-b934-99a1d19a883c,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T01:28:10Z,add_to_cart,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,615695d3-8ffd-4850-bcf7-944cf6d3685b +c9c81127-0937-4ad9-8ceb-7ce819bdf00f,ee4d9b19-2757-4a77-b934-99a1d19a883c,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T01:26:43Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,615695d3-8ffd-4850-bcf7-944cf6d3685b +5c1345c1-689d-4690-ab0e-e77e544896a8,ee4d9b19-2757-4a77-b934-99a1d19a883c,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T01:26:02Z,add_to_cart,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,5ceddd13-cf00-481f-9285-8340ab95d06d +dc10a8e7-d4d0-4184-82ab-28b31cf91702,ee4d9b19-2757-4a77-b934-99a1d19a883c,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T01:25:01Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,5ceddd13-cf00-481f-9285-8340ab95d06d +7e54afff-2f59-4a12-a724-a5396ba1c2fd,ee4d9b19-2757-4a77-b934-99a1d19a883c,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T01:28:57Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +ccb33edc-0b49-4c09-a2d6-00c36d274400,ee4d9b19-2757-4a77-b934-99a1d19a883c,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T01:27:46Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +0788420d-8508-427d-b923-379dc5327a92,e4caee28-d638-4e2e-a052-bfac459d8a3c,https://greenery.com/checkout/5f994f7e-2e13-4720-99ed-cfbdcdfd6e2a,2021-02-10T04:51:02Z,checkout,5555f2b6-d408-419f-aa60-22c0f0440f50,5f994f7e-2e13-4720-99ed-cfbdcdfd6e2a, +0dcf4090-72f1-4f71-9e5b-11d7d48dade3,e4caee28-d638-4e2e-a052-bfac459d8a3c,https://greenery.com/shipping/5f994f7e-2e13-4720-99ed-cfbdcdfd6e2a,2021-02-10T11:51:03Z,package_shipped,5555f2b6-d408-419f-aa60-22c0f0440f50,5f994f7e-2e13-4720-99ed-cfbdcdfd6e2a, +5c9d3774-1f72-4037-9b64-ffe6b48fbdb3,e4caee28-d638-4e2e-a052-bfac459d8a3c,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T04:50:32Z,add_to_cart,5555f2b6-d408-419f-aa60-22c0f0440f50,,35550082-a52d-4301-8f06-05b30f6f3616 +b91c8c65-5b87-4b01-b9b9-501d4f6042c6,e4caee28-d638-4e2e-a052-bfac459d8a3c,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T04:49:25Z,page_view,5555f2b6-d408-419f-aa60-22c0f0440f50,,35550082-a52d-4301-8f06-05b30f6f3616 +5a9f8fca-1a9f-415c-892b-f18ce3689741,e4caee28-d638-4e2e-a052-bfac459d8a3c,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T04:48:52Z,add_to_cart,5555f2b6-d408-419f-aa60-22c0f0440f50,,80eda933-749d-4fc6-91d5-613d29eb126f +1fe18a31-cf32-48d2-b997-6639486cbc3f,e4caee28-d638-4e2e-a052-bfac459d8a3c,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T04:47:40Z,page_view,5555f2b6-d408-419f-aa60-22c0f0440f50,,80eda933-749d-4fc6-91d5-613d29eb126f +0b1872d3-b72f-4817-ba81-28d172e26d4a,e4caee28-d638-4e2e-a052-bfac459d8a3c,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T04:49:55Z,page_view,5555f2b6-d408-419f-aa60-22c0f0440f50,,e5ee99b6-519f-4218-8b41-62f48f59f700 +80c166b1-e070-4979-83b6-138bf931c7d9,abd22171-a9b4-4d96-80a8-f1701c67ca60,https://greenery.com/checkout/608b352f-dc9d-4f97-bcd3-a6f0d9b567f4,2021-02-10T01:56:13Z,checkout,79bdfd27-a0a7-4e4f-9d75-0c12c72ce7f1,608b352f-dc9d-4f97-bcd3-a6f0d9b567f4, +af8d4456-84d2-4998-b992-9f55ed403467,abd22171-a9b4-4d96-80a8-f1701c67ca60,https://greenery.com/shipping/608b352f-dc9d-4f97-bcd3-a6f0d9b567f4,2021-02-10T04:56:15Z,package_shipped,79bdfd27-a0a7-4e4f-9d75-0c12c72ce7f1,608b352f-dc9d-4f97-bcd3-a6f0d9b567f4, +9cfdba51-4895-4c2e-bbf5-bf3c6d684829,abd22171-a9b4-4d96-80a8-f1701c67ca60,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T01:55:27Z,add_to_cart,79bdfd27-a0a7-4e4f-9d75-0c12c72ce7f1,,be49171b-9f72-4fc9-bf7a-9a52e259836b +620b2a69-e9ae-4e17-9a23-02354df01343,abd22171-a9b4-4d96-80a8-f1701c67ca60,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T01:54:21Z,page_view,79bdfd27-a0a7-4e4f-9d75-0c12c72ce7f1,,be49171b-9f72-4fc9-bf7a-9a52e259836b +dc0b75fc-5be6-4484-8000-ee60cfc7be01,abd22171-a9b4-4d96-80a8-f1701c67ca60,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T01:54:27Z,page_view,79bdfd27-a0a7-4e4f-9d75-0c12c72ce7f1,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +e6b3a3b0-81ff-4786-bf64-f6b5a558ee75,abd22171-a9b4-4d96-80a8-f1701c67ca60,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T01:53:35Z,page_view,79bdfd27-a0a7-4e4f-9d75-0c12c72ce7f1,,37e0062f-bd15-4c3e-b272-558a86d90598 +ae141af9-b497-4b54-8207-e3a356ef764c,61b2bc07-1dd8-4b2a-a135-f73e215ed6e0,https://greenery.com/checkout/630bc8fb-239e-49e8-9911-90f5ee5637c6,2021-02-10T00:06:49Z,checkout,4d3c9f53-0667-4a80-8259-12200fe75761,630bc8fb-239e-49e8-9911-90f5ee5637c6, +5a32b7df-a159-4d4b-ae4c-9e30e7592dba,61b2bc07-1dd8-4b2a-a135-f73e215ed6e0,https://greenery.com/shipping/630bc8fb-239e-49e8-9911-90f5ee5637c6,2021-02-10T05:06:54Z,package_shipped,4d3c9f53-0667-4a80-8259-12200fe75761,630bc8fb-239e-49e8-9911-90f5ee5637c6, +4b2d84d8-35bc-41e8-9575-97b941d6fcc0,61b2bc07-1dd8-4b2a-a135-f73e215ed6e0,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T00:06:27Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +ae99bbce-34ef-4054-a991-6a397bf2face,61b2bc07-1dd8-4b2a-a135-f73e215ed6e0,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T00:05:33Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +0116fd99-7b3d-41b8-9e88-f900197bd9bf,61b2bc07-1dd8-4b2a-a135-f73e215ed6e0,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T00:04:41Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,e5ee99b6-519f-4218-8b41-62f48f59f700 +dbacbdbd-7219-4c00-998a-10cb5bc695bc,61b2bc07-1dd8-4b2a-a135-f73e215ed6e0,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T00:03:51Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,e5ee99b6-519f-4218-8b41-62f48f59f700 +8a3bcfa3-cc1f-465c-979c-48e3bb754094,61b2bc07-1dd8-4b2a-a135-f73e215ed6e0,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T00:04:49Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +643e2261-9cac-4064-b479-34a92227af56,2fa3326a-7d3b-46bb-bfe0-54c48f7e3d4b,https://greenery.com/checkout/682824be-efb5-4ff6-a61b-70342f7d7606,2021-02-10T12:28:10Z,checkout,f47ac0f5-2afa-4e71-8328-bd881947159b,682824be-efb5-4ff6-a61b-70342f7d7606, +13c2d07f-6162-498e-97e5-0cf88d6a0899,2fa3326a-7d3b-46bb-bfe0-54c48f7e3d4b,https://greenery.com/shipping/682824be-efb5-4ff6-a61b-70342f7d7606,2021-02-10T20:28:15Z,package_shipped,f47ac0f5-2afa-4e71-8328-bd881947159b,682824be-efb5-4ff6-a61b-70342f7d7606, +6a506f46-96e1-4775-b2ee-b43eef5dc0ec,2fa3326a-7d3b-46bb-bfe0-54c48f7e3d4b,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T12:27:31Z,add_to_cart,f47ac0f5-2afa-4e71-8328-bd881947159b,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +8afdc404-4b0a-4cc6-8021-59442e696b93,2fa3326a-7d3b-46bb-bfe0-54c48f7e3d4b,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T12:25:44Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +aaa47c73-0bf5-47cd-8e77-f28f58cb8632,2fa3326a-7d3b-46bb-bfe0-54c48f7e3d4b,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T12:25:14Z,add_to_cart,f47ac0f5-2afa-4e71-8328-bd881947159b,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +e335fd6f-d6b5-4a4d-b228-4f1159fd298c,2fa3326a-7d3b-46bb-bfe0-54c48f7e3d4b,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T12:24:24Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +93528fb3-74aa-4a86-b2a0-81b4bfe73886,2fa3326a-7d3b-46bb-bfe0-54c48f7e3d4b,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T12:27:05Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +b7726a2f-1eb0-4fc0-9eaa-fa75ea3c9d1e,99c048cf-629a-4ce4-99d5-15b4dce79167,https://greenery.com/checkout/12c0a32d-2471-465f-9337-14b221af4fc3,2021-02-10T04:29:14Z,checkout,bbe518c7-5ea8-444e-acef-6c18be8336bc,12c0a32d-2471-465f-9337-14b221af4fc3, +d2bc8099-b153-4142-950e-c6fcb56ef669,99c048cf-629a-4ce4-99d5-15b4dce79167,https://greenery.com/shipping/12c0a32d-2471-465f-9337-14b221af4fc3,2021-02-10T08:29:17Z,package_shipped,bbe518c7-5ea8-444e-acef-6c18be8336bc,12c0a32d-2471-465f-9337-14b221af4fc3, +28e1a848-a80d-47db-bfb5-7ff3655f942d,99c048cf-629a-4ce4-99d5-15b4dce79167,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T04:28:26Z,add_to_cart,bbe518c7-5ea8-444e-acef-6c18be8336bc,,689fb64e-a4a2-45c5-b9f2-480c2155624d +12284a6f-3b45-435c-b88d-b33030997663,99c048cf-629a-4ce4-99d5-15b4dce79167,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T04:26:37Z,page_view,bbe518c7-5ea8-444e-acef-6c18be8336bc,,689fb64e-a4a2-45c5-b9f2-480c2155624d +d5128ef6-2c55-4cae-a516-024fb49d72c2,99c048cf-629a-4ce4-99d5-15b4dce79167,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T04:25:55Z,add_to_cart,bbe518c7-5ea8-444e-acef-6c18be8336bc,,e8b6528e-a830-4d03-a027-473b411c7f02 +697f0942-66d0-4556-8574-21a1713cf410,99c048cf-629a-4ce4-99d5-15b4dce79167,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T04:24:50Z,page_view,bbe518c7-5ea8-444e-acef-6c18be8336bc,,e8b6528e-a830-4d03-a027-473b411c7f02 +aa914471-a0d1-4b31-8064-bae1b976d844,c196a2fb-cc87-4a30-9cc9-e17f82ee6b3d,https://greenery.com/checkout/adbf3aa7-d301-46ea-873a-d8bc0d84d285,2021-02-10T23:45:48Z,checkout,376bc5b4-cb91-4fa3-9083-7dd7f1caa872,adbf3aa7-d301-46ea-873a-d8bc0d84d285, +c8930a86-16d9-4034-b107-a75702c199da,c196a2fb-cc87-4a30-9cc9-e17f82ee6b3d,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T23:45:22Z,add_to_cart,376bc5b4-cb91-4fa3-9083-7dd7f1caa872,,5ceddd13-cf00-481f-9285-8340ab95d06d +1b38fe29-513d-41b9-84c4-9295282b1021,c196a2fb-cc87-4a30-9cc9-e17f82ee6b3d,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T23:43:40Z,page_view,376bc5b4-cb91-4fa3-9083-7dd7f1caa872,,5ceddd13-cf00-481f-9285-8340ab95d06d +e6b16f00-27c1-41be-a0e0-95bdc14d6fae,c196a2fb-cc87-4a30-9cc9-e17f82ee6b3d,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T23:44:16Z,page_view,376bc5b4-cb91-4fa3-9083-7dd7f1caa872,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +69686dfd-28b9-4fb9-9583-17983562591f,c196a2fb-cc87-4a30-9cc9-e17f82ee6b3d,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T23:42:11Z,page_view,376bc5b4-cb91-4fa3-9083-7dd7f1caa872,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +4c7f7939-5933-4842-b0bf-5d8c6c3f07bf,c196a2fb-cc87-4a30-9cc9-e17f82ee6b3d,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T23:40:49Z,page_view,376bc5b4-cb91-4fa3-9083-7dd7f1caa872,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +7e1e7991-6b79-48fb-8a97-ac728c003bfd,c96119bf-3fdb-4a20-83ad-b092c0d2bd5a,https://greenery.com/checkout/e85b50e8-357e-45ff-8b8d-1890b9b7d0f0,2021-02-10T09:11:46Z,checkout,9cfa05e2-606b-4080-8bac-96e3986f1704,e85b50e8-357e-45ff-8b8d-1890b9b7d0f0, +d1924675-1d35-4c91-8cf3-b06ff9c41668,c96119bf-3fdb-4a20-83ad-b092c0d2bd5a,https://greenery.com/shipping/e85b50e8-357e-45ff-8b8d-1890b9b7d0f0,2021-02-10T14:11:47Z,package_shipped,9cfa05e2-606b-4080-8bac-96e3986f1704,e85b50e8-357e-45ff-8b8d-1890b9b7d0f0, +1ecf511c-6b95-42a1-9960-49aff35a4304,c96119bf-3fdb-4a20-83ad-b092c0d2bd5a,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T09:11:28Z,add_to_cart,9cfa05e2-606b-4080-8bac-96e3986f1704,,74aeb414-e3dd-4e8a-beef-0fa45225214d +c7ce736c-8d65-465c-82df-63533fea7444,c96119bf-3fdb-4a20-83ad-b092c0d2bd5a,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T09:10:34Z,page_view,9cfa05e2-606b-4080-8bac-96e3986f1704,,74aeb414-e3dd-4e8a-beef-0fa45225214d +6ae282e6-5583-41fc-9a20-a5c52b9aee6a,c96119bf-3fdb-4a20-83ad-b092c0d2bd5a,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T09:10:14Z,add_to_cart,9cfa05e2-606b-4080-8bac-96e3986f1704,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +99a0e31a-e7d9-4833-8e5b-73ad5bd14260,c96119bf-3fdb-4a20-83ad-b092c0d2bd5a,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T09:09:07Z,page_view,9cfa05e2-606b-4080-8bac-96e3986f1704,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +4418473b-eed2-4e15-bc2a-47b3394175ae,c96119bf-3fdb-4a20-83ad-b092c0d2bd5a,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T09:08:25Z,add_to_cart,9cfa05e2-606b-4080-8bac-96e3986f1704,,35550082-a52d-4301-8f06-05b30f6f3616 +9d0a031f-4eda-4523-af75-fbb20ada8637,c96119bf-3fdb-4a20-83ad-b092c0d2bd5a,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T09:07:09Z,page_view,9cfa05e2-606b-4080-8bac-96e3986f1704,,35550082-a52d-4301-8f06-05b30f6f3616 +f9af4dce-fdd1-490d-9ef4-f0879894cb92,c96119bf-3fdb-4a20-83ad-b092c0d2bd5a,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T09:10:49Z,page_view,9cfa05e2-606b-4080-8bac-96e3986f1704,,80eda933-749d-4fc6-91d5-613d29eb126f +adc476da-fb33-4f1b-8d01-d4ddd0ba8d6c,e61bbe49-5640-47d6-a03f-da1f92ed1167,https://greenery.com/checkout/08a14677-500a-4814-a60a-d83c3f6a8a37,2021-02-10T13:22:08Z,checkout,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,08a14677-500a-4814-a60a-d83c3f6a8a37, +ebaacdc9-8066-4d7c-bd8e-1e959fcce65b,e61bbe49-5640-47d6-a03f-da1f92ed1167,https://greenery.com/shipping/08a14677-500a-4814-a60a-d83c3f6a8a37,2021-02-10T16:22:13Z,package_shipped,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,08a14677-500a-4814-a60a-d83c3f6a8a37, +78cbf6a6-efaf-4865-892d-340f3175ec9c,e61bbe49-5640-47d6-a03f-da1f92ed1167,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T13:21:45Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +b68e3ce0-2660-49d4-9d32-9e88c03bdca8,e61bbe49-5640-47d6-a03f-da1f92ed1167,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T13:20:10Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +7068b635-e553-4828-a8e9-1afd93e60821,e61bbe49-5640-47d6-a03f-da1f92ed1167,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T13:19:51Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +39ac7137-f831-4741-bc65-c262cfd5f33b,e61bbe49-5640-47d6-a03f-da1f92ed1167,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T13:18:15Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +ef74108e-746b-4e77-8c47-6ad6a0592a04,e61bbe49-5640-47d6-a03f-da1f92ed1167,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T13:21:10Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +1c4d91e5-df7f-4f91-937e-7d3bb66effb8,e61bbe49-5640-47d6-a03f-da1f92ed1167,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T13:19:14Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +f0c0496e-8d45-4a03-bb13-6ab8198d8f90,18f518ac-4285-4fc2-8331-71384d8c9c05,https://greenery.com/checkout/7d0f805e-b354-4c27-b55d-310e49d06e4e,2021-02-10T17:49:54Z,checkout,48fd8fef-ef87-4609-aac6-a8495b2feb50,7d0f805e-b354-4c27-b55d-310e49d06e4e, +44fb589c-c6e9-4e63-af87-d8cb9ade841d,18f518ac-4285-4fc2-8331-71384d8c9c05,https://greenery.com/shipping/7d0f805e-b354-4c27-b55d-310e49d06e4e,2021-02-10T19:49:57Z,package_shipped,48fd8fef-ef87-4609-aac6-a8495b2feb50,7d0f805e-b354-4c27-b55d-310e49d06e4e, +305dc8bc-168a-410a-a57f-1164f7420bfd,18f518ac-4285-4fc2-8331-71384d8c9c05,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T17:49:05Z,add_to_cart,48fd8fef-ef87-4609-aac6-a8495b2feb50,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +e59b1749-ee1b-469e-bcf3-53ddb9938093,18f518ac-4285-4fc2-8331-71384d8c9c05,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T17:48:14Z,page_view,48fd8fef-ef87-4609-aac6-a8495b2feb50,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +1b2149bc-99e7-4070-8001-a23d11c047e3,18f518ac-4285-4fc2-8331-71384d8c9c05,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T17:47:29Z,add_to_cart,48fd8fef-ef87-4609-aac6-a8495b2feb50,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +cecb1231-2ff2-436b-910a-08fe8af4aa2d,18f518ac-4285-4fc2-8331-71384d8c9c05,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T17:46:28Z,page_view,48fd8fef-ef87-4609-aac6-a8495b2feb50,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +412a4e53-0078-44cc-9451-2472d0d85705,18f518ac-4285-4fc2-8331-71384d8c9c05,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T17:48:01Z,page_view,48fd8fef-ef87-4609-aac6-a8495b2feb50,,be49171b-9f72-4fc9-bf7a-9a52e259836b +986e05a0-da1d-4162-b004-cffd97b472ef,8f02491d-c6aa-47f3-860c-97fcf8aff96d,https://greenery.com/checkout/71eb1669-8706-4ef4-8a4c-0def78871dc4,2021-02-10T17:25:19Z,checkout,1550e197-9073-408e-a1ca-08f9dbac7f7a,71eb1669-8706-4ef4-8a4c-0def78871dc4, +a71daa28-d04c-4ae9-8a2f-a8cf811e3b8d,8f02491d-c6aa-47f3-860c-97fcf8aff96d,https://greenery.com/shipping/71eb1669-8706-4ef4-8a4c-0def78871dc4,2021-02-10T22:25:21Z,package_shipped,1550e197-9073-408e-a1ca-08f9dbac7f7a,71eb1669-8706-4ef4-8a4c-0def78871dc4, +1aa8bcf8-4194-4023-bf8b-5fc6e292ed8d,8f02491d-c6aa-47f3-860c-97fcf8aff96d,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T17:25:01Z,add_to_cart,1550e197-9073-408e-a1ca-08f9dbac7f7a,,37e0062f-bd15-4c3e-b272-558a86d90598 +24f615c8-158e-4a15-b3c2-6789671fe507,8f02491d-c6aa-47f3-860c-97fcf8aff96d,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T17:23:36Z,page_view,1550e197-9073-408e-a1ca-08f9dbac7f7a,,37e0062f-bd15-4c3e-b272-558a86d90598 +0b26822f-d604-4926-961f-961e89947b3b,faae95de-3fa4-4b4d-824a-4e9704f62860,https://greenery.com/checkout/8a7d1bfe-b9b2-4aae-9455-9533214ce43e,2021-02-10T10:26:02Z,checkout,c0f02267-3aca-4878-a0f9-3fe516f9ec17,8a7d1bfe-b9b2-4aae-9455-9533214ce43e, +4821707c-8a53-4cb1-b926-af70ee535f96,faae95de-3fa4-4b4d-824a-4e9704f62860,https://greenery.com/shipping/8a7d1bfe-b9b2-4aae-9455-9533214ce43e,2021-02-10T18:26:05Z,package_shipped,c0f02267-3aca-4878-a0f9-3fe516f9ec17,8a7d1bfe-b9b2-4aae-9455-9533214ce43e, +11371ca0-11d6-4d6d-a927-2f1ee3b6b950,faae95de-3fa4-4b4d-824a-4e9704f62860,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T10:25:37Z,add_to_cart,c0f02267-3aca-4878-a0f9-3fe516f9ec17,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +db1aeaa9-3ffd-4d19-aed9-0987312aa129,faae95de-3fa4-4b4d-824a-4e9704f62860,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T10:23:43Z,page_view,c0f02267-3aca-4878-a0f9-3fe516f9ec17,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +20c2cb93-1da8-47c9-bdc1-e0ff207197a4,faae95de-3fa4-4b4d-824a-4e9704f62860,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T10:23:16Z,add_to_cart,c0f02267-3aca-4878-a0f9-3fe516f9ec17,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +7ce2ca85-8b0f-4dc0-a43c-39e260b63815,faae95de-3fa4-4b4d-824a-4e9704f62860,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T10:22:13Z,page_view,c0f02267-3aca-4878-a0f9-3fe516f9ec17,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +29793b58-e11b-4bb5-8b24-ca0b4480312e,faae95de-3fa4-4b4d-824a-4e9704f62860,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T10:21:25Z,add_to_cart,c0f02267-3aca-4878-a0f9-3fe516f9ec17,,74aeb414-e3dd-4e8a-beef-0fa45225214d +ee019f5a-ca97-4b92-99a4-e0dca957e506,faae95de-3fa4-4b4d-824a-4e9704f62860,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T10:20:06Z,page_view,c0f02267-3aca-4878-a0f9-3fe516f9ec17,,74aeb414-e3dd-4e8a-beef-0fa45225214d +5a6c848b-b728-496f-be6b-6c76f1af1a1e,faae95de-3fa4-4b4d-824a-4e9704f62860,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T10:24:44Z,page_view,c0f02267-3aca-4878-a0f9-3fe516f9ec17,,689fb64e-a4a2-45c5-b9f2-480c2155624d +1adb10bb-610b-4e86-bc7a-cd2ee9eea871,aac2c6b1-673b-4f1d-938f-5aaab616d408,https://greenery.com/checkout/ef4b32fb-3859-441a-a4cc-1ca197f78aeb,2021-02-10T01:58:04Z,checkout,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,ef4b32fb-3859-441a-a4cc-1ca197f78aeb, +d421527d-e024-48b5-8ee2-6294a0adf59d,aac2c6b1-673b-4f1d-938f-5aaab616d408,https://greenery.com/shipping/ef4b32fb-3859-441a-a4cc-1ca197f78aeb,2021-02-10T05:58:09Z,package_shipped,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,ef4b32fb-3859-441a-a4cc-1ca197f78aeb, +d18a8d67-2db0-4b57-9483-f3dd3bb315ff,aac2c6b1-673b-4f1d-938f-5aaab616d408,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T01:57:13Z,add_to_cart,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +35245278-a3bd-4168-8b3c-34446d6e7e6d,aac2c6b1-673b-4f1d-938f-5aaab616d408,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T01:55:19Z,page_view,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +fff374d2-edd4-4d43-8d3e-39c546dc62d9,aac2c6b1-673b-4f1d-938f-5aaab616d408,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T01:54:24Z,add_to_cart,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +401f8213-cd20-40c9-9c26-09413ad36f9c,aac2c6b1-673b-4f1d-938f-5aaab616d408,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T01:52:40Z,page_view,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +b9811b5e-03c2-452b-86e2-f203b5fa9e23,11f605e0-0e57-4c9b-a345-8d3ca19608aa,https://greenery.com/checkout/8b006054-ad90-49c4-9685-2adabaf29fcc,2021-02-10T01:25:16Z,checkout,b6b40cce-8d02-4fe5-8bee-5eadbcb56a01,8b006054-ad90-49c4-9685-2adabaf29fcc, +500b441f-0860-4aee-88d0-9ae19f724209,11f605e0-0e57-4c9b-a345-8d3ca19608aa,https://greenery.com/shipping/8b006054-ad90-49c4-9685-2adabaf29fcc,2021-02-10T05:25:20Z,package_shipped,b6b40cce-8d02-4fe5-8bee-5eadbcb56a01,8b006054-ad90-49c4-9685-2adabaf29fcc, +d361cc71-7b3c-4ebd-b281-ad5aead683e5,11f605e0-0e57-4c9b-a345-8d3ca19608aa,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T01:25:01Z,add_to_cart,b6b40cce-8d02-4fe5-8bee-5eadbcb56a01,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +70fdf44d-45b3-402e-8c9d-fa17706829f9,11f605e0-0e57-4c9b-a345-8d3ca19608aa,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T01:23:09Z,page_view,b6b40cce-8d02-4fe5-8bee-5eadbcb56a01,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +082eca27-58ba-44b7-bf5f-7ce51b55f348,11f605e0-0e57-4c9b-a345-8d3ca19608aa,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T01:22:49Z,add_to_cart,b6b40cce-8d02-4fe5-8bee-5eadbcb56a01,,615695d3-8ffd-4850-bcf7-944cf6d3685b +5d3eaa60-9253-440f-b14d-01b7206200db,11f605e0-0e57-4c9b-a345-8d3ca19608aa,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T01:20:46Z,page_view,b6b40cce-8d02-4fe5-8bee-5eadbcb56a01,,615695d3-8ffd-4850-bcf7-944cf6d3685b +ef3f0cfe-ebd1-4c34-b9a2-3e348332e75f,11f605e0-0e57-4c9b-a345-8d3ca19608aa,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T01:24:37Z,page_view,b6b40cce-8d02-4fe5-8bee-5eadbcb56a01,,74aeb414-e3dd-4e8a-beef-0fa45225214d +cbea00c1-8f31-4dd7-b65d-8d582541c392,11f605e0-0e57-4c9b-a345-8d3ca19608aa,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T01:23:41Z,page_view,b6b40cce-8d02-4fe5-8bee-5eadbcb56a01,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +127f1b3b-bda7-40b6-b108-b053bf4ff18d,11f605e0-0e57-4c9b-a345-8d3ca19608aa,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T01:22:22Z,page_view,b6b40cce-8d02-4fe5-8bee-5eadbcb56a01,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +c6cd7cca-05ee-47e2-b6fa-9df150c29886,90244fe7-0f7e-4f79-8916-a6638bb4d4e0,https://greenery.com/checkout/e60286de-ae1c-4427-8b3c-3f019e93ac7a,2021-02-10T00:05:55Z,checkout,2816d806-e7b2-4721-a197-a60bd3082f35,e60286de-ae1c-4427-8b3c-3f019e93ac7a, +dc96524b-8216-4e4e-89d7-56c9cbc6fafe,90244fe7-0f7e-4f79-8916-a6638bb4d4e0,https://greenery.com/shipping/e60286de-ae1c-4427-8b3c-3f019e93ac7a,2021-02-10T03:05:59Z,package_shipped,2816d806-e7b2-4721-a197-a60bd3082f35,e60286de-ae1c-4427-8b3c-3f019e93ac7a, +07a517ae-0dd5-41ba-9ef2-0fa3001b63db,90244fe7-0f7e-4f79-8916-a6638bb4d4e0,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T00:05:29Z,add_to_cart,2816d806-e7b2-4721-a197-a60bd3082f35,,35550082-a52d-4301-8f06-05b30f6f3616 +fc1563fd-8160-4b75-ab3e-9e0bf78fcf5d,90244fe7-0f7e-4f79-8916-a6638bb4d4e0,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T00:04:20Z,page_view,2816d806-e7b2-4721-a197-a60bd3082f35,,35550082-a52d-4301-8f06-05b30f6f3616 +0b058282-876e-400d-95fc-9a16173437b4,90244fe7-0f7e-4f79-8916-a6638bb4d4e0,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T00:03:29Z,add_to_cart,2816d806-e7b2-4721-a197-a60bd3082f35,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +89dbb1ed-7c6b-4f10-a641-e8363525032d,90244fe7-0f7e-4f79-8916-a6638bb4d4e0,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T00:02:18Z,page_view,2816d806-e7b2-4721-a197-a60bd3082f35,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +e533dc06-7b96-484d-936e-484fb44c9212,90244fe7-0f7e-4f79-8916-a6638bb4d4e0,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T00:01:51Z,add_to_cart,2816d806-e7b2-4721-a197-a60bd3082f35,,a88a23ef-679c-4743-b151-dc7722040d8c +05fa2c06-8c04-4335-8b09-925874568ce8,90244fe7-0f7e-4f79-8916-a6638bb4d4e0,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T00:00:17Z,page_view,2816d806-e7b2-4721-a197-a60bd3082f35,,a88a23ef-679c-4743-b151-dc7722040d8c +e31f21c6-cc07-431f-b350-3507dfb74211,90244fe7-0f7e-4f79-8916-a6638bb4d4e0,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T00:05:21Z,page_view,2816d806-e7b2-4721-a197-a60bd3082f35,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +d311172b-3bff-4f2c-ba88-2ff7f957c7db,90244fe7-0f7e-4f79-8916-a6638bb4d4e0,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T00:03:46Z,page_view,2816d806-e7b2-4721-a197-a60bd3082f35,,74aeb414-e3dd-4e8a-beef-0fa45225214d +786fccd7-a287-480a-850d-4d25413db0f9,90244fe7-0f7e-4f79-8916-a6638bb4d4e0,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T00:02:36Z,page_view,2816d806-e7b2-4721-a197-a60bd3082f35,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +ba4e0601-14dc-4bc3-a8e9-968d8e1739c3,b963082f-ceab-43c0-bdc8-b536f224a1f2,https://greenery.com/checkout/095cd54c-8568-4245-9d7a-9c2f79c6a19e,2021-02-10T21:34:56Z,checkout,edbbae4b-6354-4a0b-9d43-d74c3f67b5de,095cd54c-8568-4245-9d7a-9c2f79c6a19e, +f0e62943-6a6e-4807-b875-e63434e7b658,b963082f-ceab-43c0-bdc8-b536f224a1f2,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T21:34:28Z,add_to_cart,edbbae4b-6354-4a0b-9d43-d74c3f67b5de,,689fb64e-a4a2-45c5-b9f2-480c2155624d +2567e0eb-153c-45c0-8bb5-6db1c121d07d,b963082f-ceab-43c0-bdc8-b536f224a1f2,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T21:33:17Z,page_view,edbbae4b-6354-4a0b-9d43-d74c3f67b5de,,689fb64e-a4a2-45c5-b9f2-480c2155624d +af79d535-7707-4992-8c37-efddd18275ad,b963082f-ceab-43c0-bdc8-b536f224a1f2,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T21:33:35Z,page_view,edbbae4b-6354-4a0b-9d43-d74c3f67b5de,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +a8c7c9c1-4787-4503-b213-50055d712880,b963082f-ceab-43c0-bdc8-b536f224a1f2,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T21:32:15Z,page_view,edbbae4b-6354-4a0b-9d43-d74c3f67b5de,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +31a221e4-de88-4f37-901d-02913931835b,b2894c6d-4e11-4259-ad12-15a1ac970bc2,https://greenery.com/checkout/b7e548f6-8f59-4552-8577-e0b895c858b4,2021-02-10T10:15:35Z,checkout,02414bff-285d-4008-9352-ad50839b729f,b7e548f6-8f59-4552-8577-e0b895c858b4, +edb02bae-85c8-4a62-bfa2-98f3817c7b71,b2894c6d-4e11-4259-ad12-15a1ac970bc2,https://greenery.com/shipping/b7e548f6-8f59-4552-8577-e0b895c858b4,2021-02-10T13:15:40Z,package_shipped,02414bff-285d-4008-9352-ad50839b729f,b7e548f6-8f59-4552-8577-e0b895c858b4, +2acc9b84-a0b3-47b1-9fd8-68486856b545,b2894c6d-4e11-4259-ad12-15a1ac970bc2,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T10:15:23Z,add_to_cart,02414bff-285d-4008-9352-ad50839b729f,,a88a23ef-679c-4743-b151-dc7722040d8c +ff2879b5-db8d-48ea-8a7a-1bac71ce1bb4,b2894c6d-4e11-4259-ad12-15a1ac970bc2,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T10:14:35Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,a88a23ef-679c-4743-b151-dc7722040d8c +62bbf928-6d92-402a-92db-4d922ed2fe74,b2894c6d-4e11-4259-ad12-15a1ac970bc2,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T10:13:46Z,add_to_cart,02414bff-285d-4008-9352-ad50839b729f,,5ceddd13-cf00-481f-9285-8340ab95d06d +7dbcb273-e728-4e4b-ab10-b8c006d303ef,b2894c6d-4e11-4259-ad12-15a1ac970bc2,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T10:12:31Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,5ceddd13-cf00-481f-9285-8340ab95d06d +e10323e8-a795-4942-8d3a-138e5cdc7e5d,b2894c6d-4e11-4259-ad12-15a1ac970bc2,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T10:14:55Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,80eda933-749d-4fc6-91d5-613d29eb126f +d3696c8b-b9de-40ed-acbf-2c5405dae2b7,b2894c6d-4e11-4259-ad12-15a1ac970bc2,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T10:14:07Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +c525f89b-25cb-4ae1-b997-c9c43403c129,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/checkout/7cbec68e-07c8-4476-86b4-90549db95454,2021-02-10T01:52:18Z,checkout,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,7cbec68e-07c8-4476-86b4-90549db95454, +240116c6-f3bc-49f1-84d2-1c37e3987be7,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/shipping/7cbec68e-07c8-4476-86b4-90549db95454,2021-02-10T06:52:22Z,package_shipped,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,7cbec68e-07c8-4476-86b4-90549db95454, +0d9bfc1f-07a0-414a-be20-e7df08629559,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T01:51:38Z,add_to_cart,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +e65ced51-21ff-48a1-8075-4184f64853f3,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T01:50:26Z,page_view,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +1f04a68b-d49a-4f4f-a4b2-e314b5349d42,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T01:49:55Z,add_to_cart,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +17ae6872-591c-4320-a5ea-352fabc5d67f,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T01:48:56Z,page_view,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +90473ef5-1a20-4907-b4c5-747b32fa278f,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T01:48:09Z,add_to_cart,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,e8b6528e-a830-4d03-a027-473b411c7f02 +253c3159-25e3-4748-91fd-6931ac9451d2,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T01:47:21Z,page_view,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,e8b6528e-a830-4d03-a027-473b411c7f02 +60d67ce4-d904-47e7-82e5-b830d6cd58a9,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T01:46:43Z,add_to_cart,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +27cd0aae-1da6-4026-b54f-048c872d5ec0,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T01:44:53Z,page_view,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +c6df4992-16de-446b-b7c1-5cbf6406d8b9,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T01:51:43Z,page_view,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,35550082-a52d-4301-8f06-05b30f6f3616 +5df1dd11-fa1c-4a86-88e9-7756ce9122c6,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T01:50:31Z,page_view,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +e61349d5-c025-47cb-8667-ddf1ac217f6f,36c5f8c2-8e00-4411-aeeb-62432a736a2d,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T01:49:19Z,page_view,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +28563313-8064-444c-8332-72770f0c2667,0187c9bb-0875-47ea-9a75-33fbe9d37bb1,https://greenery.com/checkout/e2510e94-b61f-4d8f-bf5f-7c13f609f272,2021-02-10T23:57:05Z,checkout,dc41b3dc-c270-46ce-a7b7-1f27c178765c,e2510e94-b61f-4d8f-bf5f-7c13f609f272, +1cf5d8a8-d6f7-48ee-ab3d-601efc59fd4c,0187c9bb-0875-47ea-9a75-33fbe9d37bb1,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T23:56:50Z,add_to_cart,dc41b3dc-c270-46ce-a7b7-1f27c178765c,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +40353995-baf8-4009-829c-c2a7f120cb7f,0187c9bb-0875-47ea-9a75-33fbe9d37bb1,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T23:55:43Z,page_view,dc41b3dc-c270-46ce-a7b7-1f27c178765c,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +17d1d088-6dd5-4f38-bea0-2fbd7c45dd9e,0187c9bb-0875-47ea-9a75-33fbe9d37bb1,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T23:54:54Z,add_to_cart,dc41b3dc-c270-46ce-a7b7-1f27c178765c,,80eda933-749d-4fc6-91d5-613d29eb126f +0fe2c85a-a593-4b55-a305-65ad2eaf3912,0187c9bb-0875-47ea-9a75-33fbe9d37bb1,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T23:53:23Z,page_view,dc41b3dc-c270-46ce-a7b7-1f27c178765c,,80eda933-749d-4fc6-91d5-613d29eb126f +8add0aa7-4098-4013-a18c-6a3a34829e6c,0187c9bb-0875-47ea-9a75-33fbe9d37bb1,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T23:52:51Z,add_to_cart,dc41b3dc-c270-46ce-a7b7-1f27c178765c,,e8b6528e-a830-4d03-a027-473b411c7f02 +3b3cf3c7-c545-4272-826c-00d64ed0c9d3,0187c9bb-0875-47ea-9a75-33fbe9d37bb1,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T23:51:46Z,page_view,dc41b3dc-c270-46ce-a7b7-1f27c178765c,,e8b6528e-a830-4d03-a027-473b411c7f02 +259097ee-9f66-4754-a648-b9c7cd99cc53,f042b5d9-bced-433f-9730-814683890309,https://greenery.com/checkout/0a5be7a1-f4b1-4833-b4fa-72a9276c63bf,2021-02-10T19:19:49Z,checkout,9cfa05e2-606b-4080-8bac-96e3986f1704,0a5be7a1-f4b1-4833-b4fa-72a9276c63bf, +2b2aabae-65a9-4d7c-8c03-d2bb351a1398,f042b5d9-bced-433f-9730-814683890309,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T19:19:03Z,add_to_cart,9cfa05e2-606b-4080-8bac-96e3986f1704,,74aeb414-e3dd-4e8a-beef-0fa45225214d +dbf30d5d-f114-4eb0-9f94-bc40086098d0,f042b5d9-bced-433f-9730-814683890309,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T19:17:29Z,page_view,9cfa05e2-606b-4080-8bac-96e3986f1704,,74aeb414-e3dd-4e8a-beef-0fa45225214d +bd0e0be4-d56b-4172-84d1-63829cd719ff,f042b5d9-bced-433f-9730-814683890309,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T19:17:50Z,page_view,9cfa05e2-606b-4080-8bac-96e3986f1704,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +360c452a-d283-4b74-9056-2bcea8c1322a,adc1d9ed-0622-4e84-be09-4c26657a2a70,https://greenery.com/checkout/1559d243-a71a-4568-ac1b-a6175099e006,2021-02-10T03:22:07Z,checkout,6cf2751f-d815-4fbc-b04a-245c1301574c,1559d243-a71a-4568-ac1b-a6175099e006, +d8a9a73f-16d8-447b-88f7-08e210845510,adc1d9ed-0622-4e84-be09-4c26657a2a70,https://greenery.com/shipping/1559d243-a71a-4568-ac1b-a6175099e006,2021-02-10T12:22:09Z,package_shipped,6cf2751f-d815-4fbc-b04a-245c1301574c,1559d243-a71a-4568-ac1b-a6175099e006, +38b37852-0625-492b-8efd-b0f1ddef38e6,adc1d9ed-0622-4e84-be09-4c26657a2a70,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T03:21:23Z,add_to_cart,6cf2751f-d815-4fbc-b04a-245c1301574c,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +d6944de8-bd85-482a-821c-cd28f3d47c75,adc1d9ed-0622-4e84-be09-4c26657a2a70,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T03:19:59Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +dd48bdde-6185-4196-a106-c1286d88b33e,adc1d9ed-0622-4e84-be09-4c26657a2a70,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T03:20:09Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,be49171b-9f72-4fc9-bf7a-9a52e259836b +40b98d80-bd27-423c-9252-2b1c6e68d80a,adc1d9ed-0622-4e84-be09-4c26657a2a70,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T03:18:06Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,e5ee99b6-519f-4218-8b41-62f48f59f700 +0afca31f-52d6-49a2-9f08-c90f59d3f812,3ffee768-fe01-431a-8c58-c28336de6e6b,https://greenery.com/checkout/0b926971-0595-47de-a881-26c82d880ed4,2021-02-10T12:42:45Z,checkout,f36630d8-e3d9-4e23-acc0-ffd86e661c26,0b926971-0595-47de-a881-26c82d880ed4, +33980de3-41d3-48d1-adea-f2a83597b02d,3ffee768-fe01-431a-8c58-c28336de6e6b,https://greenery.com/shipping/0b926971-0595-47de-a881-26c82d880ed4,2021-02-10T17:42:49Z,package_shipped,f36630d8-e3d9-4e23-acc0-ffd86e661c26,0b926971-0595-47de-a881-26c82d880ed4, +19592653-0ac1-4952-aa2a-fc3a45c4fd64,3ffee768-fe01-431a-8c58-c28336de6e6b,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T12:42:27Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +1b8c863e-c3f6-4c7f-b2f0-fb19f1acf57e,3ffee768-fe01-431a-8c58-c28336de6e6b,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T12:40:23Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +d2eb48f5-9d09-43b6-9622-64604564b5f5,3ffee768-fe01-431a-8c58-c28336de6e6b,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T12:39:33Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,37e0062f-bd15-4c3e-b272-558a86d90598 +b792380a-67a5-4acc-9a1d-ed893c18f13e,3ffee768-fe01-431a-8c58-c28336de6e6b,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T12:37:33Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,37e0062f-bd15-4c3e-b272-558a86d90598 +3a8fd26d-3333-4f3a-8490-ee07dc65eb52,3ffee768-fe01-431a-8c58-c28336de6e6b,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T12:41:14Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +5a8aaf59-e7d3-4f4d-9452-fc62f4ffc43d,6b4ffd7b-399a-4510-abeb-a0fc889f965e,https://greenery.com/checkout/fafde59f-fc4a-4d5f-865e-ff13c8ab6d06,2021-02-10T14:33:31Z,checkout,c4f8645d-471d-4c3b-aa5c-dd2f30115669,fafde59f-fc4a-4d5f-865e-ff13c8ab6d06, +bc6f0a3c-c441-4cc8-83f1-2ac96e07ea80,6b4ffd7b-399a-4510-abeb-a0fc889f965e,https://greenery.com/shipping/fafde59f-fc4a-4d5f-865e-ff13c8ab6d06,2021-02-10T17:33:34Z,package_shipped,c4f8645d-471d-4c3b-aa5c-dd2f30115669,fafde59f-fc4a-4d5f-865e-ff13c8ab6d06, +4856d71d-6b21-4439-bb02-ad93998ba5d3,6b4ffd7b-399a-4510-abeb-a0fc889f965e,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T14:33:05Z,add_to_cart,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,e8b6528e-a830-4d03-a027-473b411c7f02 +29f1288f-ea2c-49e7-8479-e5bc0a004df7,6b4ffd7b-399a-4510-abeb-a0fc889f965e,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T14:32:20Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,e8b6528e-a830-4d03-a027-473b411c7f02 +24029428-337d-4bc2-b802-a41d3cd65d81,6b4ffd7b-399a-4510-abeb-a0fc889f965e,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T14:31:49Z,add_to_cart,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +93b1b16f-fd59-4997-bd0b-53cc54e333ab,6b4ffd7b-399a-4510-abeb-a0fc889f965e,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T14:30:44Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +2922aba8-cb4a-45af-b332-a94d15b627b3,6b4ffd7b-399a-4510-abeb-a0fc889f965e,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T14:32:21Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +4ca676f9-c186-4e2f-bf50-80722e8cbe73,6b4ffd7b-399a-4510-abeb-a0fc889f965e,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T14:30:27Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +b2c918d0-d745-4717-a0ec-a2049364e6de,6b4ffd7b-399a-4510-abeb-a0fc889f965e,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T14:29:42Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,37e0062f-bd15-4c3e-b272-558a86d90598 +57fc4582-49d6-4abb-b2de-3e31a38a4ed3,7dafcb1a-6bb6-4ce0-95a0-5b3932ef6b87,https://greenery.com/checkout/497e5ef8-5bf6-424c-9d05-f5a467c2d23a,2021-02-10T16:55:47Z,checkout,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,497e5ef8-5bf6-424c-9d05-f5a467c2d23a, +545240a1-f6db-473b-8aef-7d9f41fafea6,7dafcb1a-6bb6-4ce0-95a0-5b3932ef6b87,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T16:55:10Z,add_to_cart,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +0cd32431-fb93-4002-82c0-4d5c052d11b9,7dafcb1a-6bb6-4ce0-95a0-5b3932ef6b87,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T16:54:03Z,page_view,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +9f78f22f-010e-4fd2-9ccb-d59af6c22d84,7dafcb1a-6bb6-4ce0-95a0-5b3932ef6b87,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T16:53:30Z,add_to_cart,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +bd8bccb3-2851-4748-acf7-9712011d45de,7dafcb1a-6bb6-4ce0-95a0-5b3932ef6b87,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T16:52:37Z,page_view,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +57b70a43-2279-4fed-8ded-95fb4fde53bd,7dafcb1a-6bb6-4ce0-95a0-5b3932ef6b87,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T16:55:11Z,page_view,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +fdf58f6f-9bc5-4283-bdfd-3a36067f221e,7dafcb1a-6bb6-4ce0-95a0-5b3932ef6b87,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T16:54:06Z,page_view,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +fb4ae71b-b40d-4c95-9c5e-42bfee48238d,7dafcb1a-6bb6-4ce0-95a0-5b3932ef6b87,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T16:53:14Z,page_view,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +490e3c30-c9a4-47a5-b7ab-185dde404dff,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/checkout/fa41614e-38dc-4cfb-ade8-4ffb9d1fed72,2021-02-10T14:17:34Z,checkout,c4f8645d-471d-4c3b-aa5c-dd2f30115669,fa41614e-38dc-4cfb-ade8-4ffb9d1fed72, +45f7fb4f-41ee-482f-bfab-74a3b0b6ab6f,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/shipping/fa41614e-38dc-4cfb-ade8-4ffb9d1fed72,2021-02-10T23:17:38Z,package_shipped,c4f8645d-471d-4c3b-aa5c-dd2f30115669,fa41614e-38dc-4cfb-ade8-4ffb9d1fed72, +952764bf-1375-490b-8546-94a3b3eaf41c,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T14:17:07Z,add_to_cart,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +37f34417-35cd-4a4c-b137-e9dcd32e2d84,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T14:16:30Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +14949577-b65f-467a-a846-95316b3d5d3d,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T14:15:39Z,add_to_cart,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +9f3e0940-fbe6-43f1-904a-2d6b6ff58e1c,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T14:14:20Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +5f76e28a-43d5-4433-b912-4491e2be4f59,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T14:13:50Z,add_to_cart,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,35550082-a52d-4301-8f06-05b30f6f3616 +e46cc9a6-a836-449e-a5bf-5aab9559926c,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T14:12:51Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,35550082-a52d-4301-8f06-05b30f6f3616 +3c3358ce-c025-40d8-b5df-1a07acd3d823,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T14:12:30Z,add_to_cart,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,615695d3-8ffd-4850-bcf7-944cf6d3685b +1f0cd12c-85f3-4ba1-a10d-9d50721ec045,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T14:11:27Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,615695d3-8ffd-4850-bcf7-944cf6d3685b +b28c0c76-7af6-41bc-8802-04d40e9276a0,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T14:16:32Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,74aeb414-e3dd-4e8a-beef-0fa45225214d +a6536d3d-1061-406f-8d71-e0b15d0b3dc9,de3a544b-e994-459b-a5f0-a56bfa616376,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T14:14:56Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,689fb64e-a4a2-45c5-b9f2-480c2155624d +52b05106-2d71-4df1-84f0-82408db91525,7e5fb5b6-799b-425c-b33b-458156d24534,https://greenery.com/checkout/e2281b91-8575-4da9-9a3a-ab0f19ec584e,2021-02-10T18:39:54Z,checkout,d165b2ff-dfe1-40d0-bda0-a25e82b95870,e2281b91-8575-4da9-9a3a-ab0f19ec584e, +98912d88-861d-4b71-865e-52593773493e,7e5fb5b6-799b-425c-b33b-458156d24534,https://greenery.com/shipping/e2281b91-8575-4da9-9a3a-ab0f19ec584e,2021-02-10T22:39:59Z,package_shipped,d165b2ff-dfe1-40d0-bda0-a25e82b95870,e2281b91-8575-4da9-9a3a-ab0f19ec584e, +efd1b022-3ee9-4a6c-9c6b-4198dad4e346,7e5fb5b6-799b-425c-b33b-458156d24534,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T18:39:17Z,add_to_cart,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,615695d3-8ffd-4850-bcf7-944cf6d3685b +f2c28dd0-58fa-484c-9740-6bf7c4232abd,7e5fb5b6-799b-425c-b33b-458156d24534,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T18:38:04Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,615695d3-8ffd-4850-bcf7-944cf6d3685b +55df1edf-07eb-40c1-aaed-bded6a6218c9,7e5fb5b6-799b-425c-b33b-458156d24534,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T18:38:20Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +a60c287a-387d-4a3c-b61a-7b20547c98ef,7e5fb5b6-799b-425c-b33b-458156d24534,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T18:37:28Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +93b5f3ce-3e8e-4bc7-9322-99e47780d732,41dfa570-071f-4e11-8bf5-d946a807ce5a,https://greenery.com/checkout/c20d15c3-b463-49d9-a114-905c83bbf357,2021-02-10T00:46:31Z,checkout,85362f90-0066-4b3b-b0d5-2e919acda80d,c20d15c3-b463-49d9-a114-905c83bbf357, +d66b4d33-1c44-4309-ab3d-a3ee5b8cbf26,41dfa570-071f-4e11-8bf5-d946a807ce5a,https://greenery.com/shipping/c20d15c3-b463-49d9-a114-905c83bbf357,2021-02-10T07:46:35Z,package_shipped,85362f90-0066-4b3b-b0d5-2e919acda80d,c20d15c3-b463-49d9-a114-905c83bbf357, +1f5d8a4d-2a80-4502-be0b-3a7b83902e1f,41dfa570-071f-4e11-8bf5-d946a807ce5a,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T00:45:56Z,add_to_cart,85362f90-0066-4b3b-b0d5-2e919acda80d,,e5ee99b6-519f-4218-8b41-62f48f59f700 +06c9f824-3eb9-4f89-aa82-f16c589d0ada,41dfa570-071f-4e11-8bf5-d946a807ce5a,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T00:44:28Z,page_view,85362f90-0066-4b3b-b0d5-2e919acda80d,,e5ee99b6-519f-4218-8b41-62f48f59f700 +27161edd-244b-4ee8-b1be-ab6797a74dc4,41dfa570-071f-4e11-8bf5-d946a807ce5a,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T00:43:43Z,add_to_cart,85362f90-0066-4b3b-b0d5-2e919acda80d,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +fc5ef512-0547-4f4e-abbf-00a6180656e5,41dfa570-071f-4e11-8bf5-d946a807ce5a,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T00:42:28Z,page_view,85362f90-0066-4b3b-b0d5-2e919acda80d,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +7ec01589-4ba7-4db9-9313-b4afc30922bc,3145596a-d207-4bf0-9acc-e2ebd4752656,https://greenery.com/checkout/a7cf9a95-2f89-4c41-bc7d-1ba891946f76,2021-02-10T09:59:37Z,checkout,17c49262-1f0c-46d1-a6ba-bacc19f08a86,a7cf9a95-2f89-4c41-bc7d-1ba891946f76, +0b19a695-5d78-4702-a707-c6d94ef6d7d6,3145596a-d207-4bf0-9acc-e2ebd4752656,https://greenery.com/shipping/a7cf9a95-2f89-4c41-bc7d-1ba891946f76,2021-02-10T11:59:41Z,package_shipped,17c49262-1f0c-46d1-a6ba-bacc19f08a86,a7cf9a95-2f89-4c41-bc7d-1ba891946f76, +5b26d001-4d23-4a21-a070-1d960c5a31f4,3145596a-d207-4bf0-9acc-e2ebd4752656,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T09:59:16Z,add_to_cart,17c49262-1f0c-46d1-a6ba-bacc19f08a86,,689fb64e-a4a2-45c5-b9f2-480c2155624d +e38ae0d7-a12a-4e56-beaf-b953958856b0,3145596a-d207-4bf0-9acc-e2ebd4752656,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T09:57:47Z,page_view,17c49262-1f0c-46d1-a6ba-bacc19f08a86,,689fb64e-a4a2-45c5-b9f2-480c2155624d +1b1c313b-061f-43d1-9d69-c760fd361621,3145596a-d207-4bf0-9acc-e2ebd4752656,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T09:57:01Z,add_to_cart,17c49262-1f0c-46d1-a6ba-bacc19f08a86,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +d6ed14e7-09ee-477a-8a12-e605376207eb,3145596a-d207-4bf0-9acc-e2ebd4752656,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T09:55:34Z,page_view,17c49262-1f0c-46d1-a6ba-bacc19f08a86,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +54931888-157c-40ad-aea1-61a1532defab,3145596a-d207-4bf0-9acc-e2ebd4752656,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T09:58:44Z,page_view,17c49262-1f0c-46d1-a6ba-bacc19f08a86,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +1a52a3ea-9c09-46fa-802f-dc5ca3835c72,f27fe57b-b623-48f2-9277-e26553f08e3d,https://greenery.com/checkout/d915aef6-3ddc-465a-a27d-e9a9f01eae18,2021-02-10T00:24:18Z,checkout,19ac513f-b77e-4808-ade4-284ece721d91,d915aef6-3ddc-465a-a27d-e9a9f01eae18, +b18e3679-513b-424c-888e-e6e83df8e8d8,f27fe57b-b623-48f2-9277-e26553f08e3d,https://greenery.com/shipping/d915aef6-3ddc-465a-a27d-e9a9f01eae18,2021-02-10T04:24:21Z,package_shipped,19ac513f-b77e-4808-ade4-284ece721d91,d915aef6-3ddc-465a-a27d-e9a9f01eae18, +73469f06-0bdf-437d-9e5d-337baec01090,f27fe57b-b623-48f2-9277-e26553f08e3d,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T00:23:50Z,add_to_cart,19ac513f-b77e-4808-ade4-284ece721d91,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +1347543e-3008-4756-b852-44f082c273d0,f27fe57b-b623-48f2-9277-e26553f08e3d,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T00:22:41Z,page_view,19ac513f-b77e-4808-ade4-284ece721d91,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +1896f9f1-348d-47e8-8005-4448826cb64b,8a558428-e848-4068-9416-fc8e2ad08a26,https://greenery.com/checkout/191f7ddb-6fac-4ced-905c-307b6b8a1f29,2021-02-10T04:25:11Z,checkout,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,191f7ddb-6fac-4ced-905c-307b6b8a1f29, +e8cb69e9-1104-476a-8a37-5ff6170a2a76,8a558428-e848-4068-9416-fc8e2ad08a26,https://greenery.com/shipping/191f7ddb-6fac-4ced-905c-307b6b8a1f29,2021-02-10T07:25:15Z,package_shipped,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,191f7ddb-6fac-4ced-905c-307b6b8a1f29, +3a08c76d-e227-477f-a15c-7c413e5466a5,8a558428-e848-4068-9416-fc8e2ad08a26,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T04:24:29Z,add_to_cart,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,689fb64e-a4a2-45c5-b9f2-480c2155624d +3f14f434-0a19-47f4-89ad-55b0cbd2bf85,8a558428-e848-4068-9416-fc8e2ad08a26,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T04:23:37Z,page_view,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,689fb64e-a4a2-45c5-b9f2-480c2155624d +0861338f-1201-4955-9f16-de0f5b221cbe,8a558428-e848-4068-9416-fc8e2ad08a26,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T04:23:18Z,add_to_cart,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,615695d3-8ffd-4850-bcf7-944cf6d3685b +b1240754-0f51-4158-b97a-30cb79d1817d,8a558428-e848-4068-9416-fc8e2ad08a26,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T04:21:58Z,page_view,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,615695d3-8ffd-4850-bcf7-944cf6d3685b +944e66fc-4353-4dee-889a-c1a69be07613,8a558428-e848-4068-9416-fc8e2ad08a26,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T04:23:17Z,page_view,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +2badcdf0-cea9-488f-beb7-9b2e248ef5f0,8a558428-e848-4068-9416-fc8e2ad08a26,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T04:21:54Z,page_view,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,80eda933-749d-4fc6-91d5-613d29eb126f +0915e292-8201-487f-abc2-54627749d686,8a558428-e848-4068-9416-fc8e2ad08a26,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T04:20:26Z,page_view,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +51cf16ef-c867-412b-8fe3-683f69c08b54,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/checkout/bd1b29ee-5f35-4a9f-94a5-9faaae412e12,2021-02-10T22:18:37Z,checkout,4340de09-99b5-451b-ada3-168228a08cf9,bd1b29ee-5f35-4a9f-94a5-9faaae412e12, +dce20056-b986-46e6-b275-65e409bd7da6,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T22:17:53Z,add_to_cart,4340de09-99b5-451b-ada3-168228a08cf9,,80eda933-749d-4fc6-91d5-613d29eb126f +b7a9b234-a6d1-441b-b581-26e83657cad5,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T22:16:03Z,page_view,4340de09-99b5-451b-ada3-168228a08cf9,,80eda933-749d-4fc6-91d5-613d29eb126f +fac371a5-1d71-4210-808e-c32fa31e48e4,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T22:15:20Z,add_to_cart,4340de09-99b5-451b-ada3-168228a08cf9,,37e0062f-bd15-4c3e-b272-558a86d90598 +ef36026a-9c62-4782-97bf-f10b303d909c,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T22:14:17Z,page_view,4340de09-99b5-451b-ada3-168228a08cf9,,37e0062f-bd15-4c3e-b272-558a86d90598 +cc52da52-7cec-4c7d-80db-bbbda3a6fb87,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T22:13:57Z,add_to_cart,4340de09-99b5-451b-ada3-168228a08cf9,,a88a23ef-679c-4743-b151-dc7722040d8c +74803013-2ecf-4eff-b785-f227bcf99357,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T22:12:11Z,page_view,4340de09-99b5-451b-ada3-168228a08cf9,,a88a23ef-679c-4743-b151-dc7722040d8c +362812e4-f584-4686-b87c-650d09ef4c79,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T22:11:28Z,add_to_cart,4340de09-99b5-451b-ada3-168228a08cf9,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +0204ee30-941d-45e2-bdf1-5ecd411dca2f,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T22:09:49Z,page_view,4340de09-99b5-451b-ada3-168228a08cf9,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +3963c1f5-8a5a-40e0-a616-4a1bf9f8700b,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T22:17:40Z,page_view,4340de09-99b5-451b-ada3-168228a08cf9,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +fc0ad9a2-a3c9-4470-9066-611d4a80a2d1,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T22:16:38Z,page_view,4340de09-99b5-451b-ada3-168228a08cf9,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +62b3b0e6-3c0b-441f-b371-4a0c9f41f2d5,3274972e-ca53-4ddf-8cf4-f5c2e1d77671,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T22:15:44Z,page_view,4340de09-99b5-451b-ada3-168228a08cf9,,689fb64e-a4a2-45c5-b9f2-480c2155624d +2504b99d-dd3c-43e0-8847-265b0ad8b246,a9607e6b-7146-4b2a-abe5-002406008f98,https://greenery.com/checkout/f6b6807a-864d-4fed-b22d-3f2638f21b74,2021-02-10T08:19:30Z,checkout,85362f90-0066-4b3b-b0d5-2e919acda80d,f6b6807a-864d-4fed-b22d-3f2638f21b74, +29dcb1b6-c471-4740-bdf6-25e67f36b44d,a9607e6b-7146-4b2a-abe5-002406008f98,https://greenery.com/shipping/f6b6807a-864d-4fed-b22d-3f2638f21b74,2021-02-10T16:19:35Z,package_shipped,85362f90-0066-4b3b-b0d5-2e919acda80d,f6b6807a-864d-4fed-b22d-3f2638f21b74, +c203b440-ca27-4e99-9cdd-66bededc138d,a9607e6b-7146-4b2a-abe5-002406008f98,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T08:19:16Z,add_to_cart,85362f90-0066-4b3b-b0d5-2e919acda80d,,74aeb414-e3dd-4e8a-beef-0fa45225214d +b8e1b471-893c-464a-bf7f-e9e383e6776c,a9607e6b-7146-4b2a-abe5-002406008f98,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T08:17:31Z,page_view,85362f90-0066-4b3b-b0d5-2e919acda80d,,74aeb414-e3dd-4e8a-beef-0fa45225214d +a0a6c1b5-09e7-40a2-9c93-bfdf5de0f430,a9607e6b-7146-4b2a-abe5-002406008f98,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T08:18:52Z,page_view,85362f90-0066-4b3b-b0d5-2e919acda80d,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +fd51cdf3-91c7-4251-b1d0-7d58aa2435c5,a9607e6b-7146-4b2a-abe5-002406008f98,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T08:17:31Z,page_view,85362f90-0066-4b3b-b0d5-2e919acda80d,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +3b938c5b-76ab-4ff4-8946-6a474605eecb,a9607e6b-7146-4b2a-abe5-002406008f98,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T08:16:39Z,page_view,85362f90-0066-4b3b-b0d5-2e919acda80d,,e8b6528e-a830-4d03-a027-473b411c7f02 +434a1fc3-380c-4cbb-8b05-459a38918ae6,5628ca47-f93e-4047-a5ac-76907423bf5f,https://greenery.com/checkout/5b13b820-a450-42d2-aaaa-a8a9c5fbd48c,2021-02-10T20:45:44Z,checkout,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,5b13b820-a450-42d2-aaaa-a8a9c5fbd48c, +1ebe4407-7f10-4a36-b25e-ee588a7776c6,5628ca47-f93e-4047-a5ac-76907423bf5f,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T20:45:22Z,add_to_cart,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,37e0062f-bd15-4c3e-b272-558a86d90598 +d437fdd5-525b-4d69-8211-b7f888218db7,5628ca47-f93e-4047-a5ac-76907423bf5f,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T20:44:36Z,page_view,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,37e0062f-bd15-4c3e-b272-558a86d90598 +3d1f8dbb-7c04-44b3-a623-0994bf0143e4,5628ca47-f93e-4047-a5ac-76907423bf5f,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T20:43:57Z,add_to_cart,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +cbb0d504-25a8-4816-bead-565df9b5e2c7,5628ca47-f93e-4047-a5ac-76907423bf5f,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T20:43:03Z,page_view,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +a7415ba7-e85e-486d-8a7e-99722d42caa6,5628ca47-f93e-4047-a5ac-76907423bf5f,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T20:44:41Z,page_view,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +71ba7882-39c1-4c08-98d4-abf86a236b6e,5628ca47-f93e-4047-a5ac-76907423bf5f,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T20:42:42Z,page_view,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,e8b6528e-a830-4d03-a027-473b411c7f02 +14c95544-9bb3-436f-aac9-b06fd062f9f7,c0e6e440-7825-43cc-a812-d33ee1850e34,https://greenery.com/checkout/06b914dd-d6fc-44ea-a52e-10eadebb5183,2021-02-10T17:29:54Z,checkout,58367695-0c22-415d-9704-bd8f73bb2e8f,06b914dd-d6fc-44ea-a52e-10eadebb5183, +b86c766f-e1e7-4326-a32d-8dbcc00bcb27,c0e6e440-7825-43cc-a812-d33ee1850e34,https://greenery.com/shipping/06b914dd-d6fc-44ea-a52e-10eadebb5183,2021-02-10T20:29:55Z,package_shipped,58367695-0c22-415d-9704-bd8f73bb2e8f,06b914dd-d6fc-44ea-a52e-10eadebb5183, +163f3ca2-89a1-42a7-99f6-ad1fd742a095,c0e6e440-7825-43cc-a812-d33ee1850e34,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T17:29:06Z,add_to_cart,58367695-0c22-415d-9704-bd8f73bb2e8f,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +572d527b-45c8-4cd6-a0d7-be66836c87e6,c0e6e440-7825-43cc-a812-d33ee1850e34,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T17:28:16Z,page_view,58367695-0c22-415d-9704-bd8f73bb2e8f,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +3d68deb3-f9ad-472c-a3e4-636a8d54c0ba,c0e6e440-7825-43cc-a812-d33ee1850e34,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T17:28:45Z,page_view,58367695-0c22-415d-9704-bd8f73bb2e8f,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +2569f068-f77f-4c79-8373-bd722921534e,c0e6e440-7825-43cc-a812-d33ee1850e34,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T17:27:32Z,page_view,58367695-0c22-415d-9704-bd8f73bb2e8f,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +67d7a766-5a79-45f4-9472-99966ce5237a,c0e6e440-7825-43cc-a812-d33ee1850e34,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T17:26:51Z,page_view,58367695-0c22-415d-9704-bd8f73bb2e8f,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +06059f66-d9f2-4a1d-bcbd-64257fb7da01,bd534748-4123-4e83-92bb-d7d3b91b220c,https://greenery.com/checkout/e9891ca7-3306-4f75-93fd-c04b976f9641,2021-02-10T19:21:16Z,checkout,707a74bd-593f-4bdc-85e3-b8ff6b538399,e9891ca7-3306-4f75-93fd-c04b976f9641, +2a59fbaf-2167-4406-a0e8-8e6509855c25,bd534748-4123-4e83-92bb-d7d3b91b220c,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T19:20:40Z,add_to_cart,707a74bd-593f-4bdc-85e3-b8ff6b538399,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +bf4abbad-5f86-4cfd-be93-8d2ba60c058d,bd534748-4123-4e83-92bb-d7d3b91b220c,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T19:18:51Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +f4b0713f-2154-4b95-b7a9-10dca08629e1,bd534748-4123-4e83-92bb-d7d3b91b220c,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T19:18:25Z,add_to_cart,707a74bd-593f-4bdc-85e3-b8ff6b538399,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +066d7534-d6e5-4229-aa2a-f8a289f5684f,bd534748-4123-4e83-92bb-d7d3b91b220c,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T19:16:22Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +9228b45f-3757-499e-9d65-beb51f7b8903,bd534748-4123-4e83-92bb-d7d3b91b220c,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T19:15:57Z,add_to_cart,707a74bd-593f-4bdc-85e3-b8ff6b538399,,be49171b-9f72-4fc9-bf7a-9a52e259836b +51e0d4bb-96b9-40c6-98a8-9df73d390a03,bd534748-4123-4e83-92bb-d7d3b91b220c,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T19:15:05Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,be49171b-9f72-4fc9-bf7a-9a52e259836b +987aa09d-77a3-41e5-8dcc-4821c433816f,bd534748-4123-4e83-92bb-d7d3b91b220c,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T19:20:27Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +0c02b5b9-62fe-4ed7-94c0-1fa3278f58de,2572840c-dbd3-4375-ba67-77f5e1612bc0,https://greenery.com/checkout/0669a520-9c7e-424d-a279-ee96f6f25aec,2021-02-10T13:37:29Z,checkout,78fe6452-8a56-4226-ae22-f372116b12ff,0669a520-9c7e-424d-a279-ee96f6f25aec, +f4498555-7d23-4106-b82d-c1749428b0f2,2572840c-dbd3-4375-ba67-77f5e1612bc0,https://greenery.com/shipping/0669a520-9c7e-424d-a279-ee96f6f25aec,2021-02-10T21:37:32Z,package_shipped,78fe6452-8a56-4226-ae22-f372116b12ff,0669a520-9c7e-424d-a279-ee96f6f25aec, +8b616496-a0d3-4583-8124-12275edf611e,2572840c-dbd3-4375-ba67-77f5e1612bc0,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T13:36:57Z,add_to_cart,78fe6452-8a56-4226-ae22-f372116b12ff,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +39f48829-1e20-4637-aa80-4ce43bcc7b4e,2572840c-dbd3-4375-ba67-77f5e1612bc0,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T13:35:33Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +b77d9ca0-7898-46a6-9b27-11817ee44192,2572840c-dbd3-4375-ba67-77f5e1612bc0,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T13:35:11Z,add_to_cart,78fe6452-8a56-4226-ae22-f372116b12ff,,e8b6528e-a830-4d03-a027-473b411c7f02 +d1ae4396-a5e7-4090-9d43-00f433fb23f6,2572840c-dbd3-4375-ba67-77f5e1612bc0,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T13:33:12Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,e8b6528e-a830-4d03-a027-473b411c7f02 +5f8dba16-d359-4381-aea2-cd45afeb0f6d,2572840c-dbd3-4375-ba67-77f5e1612bc0,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T13:35:44Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +9431dd93-7ea0-4937-ae6e-d9866df4322c,2572840c-dbd3-4375-ba67-77f5e1612bc0,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T13:34:26Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,5ceddd13-cf00-481f-9285-8340ab95d06d +f3b050e6-88ae-4990-bc7f-90921a2827d9,2572840c-dbd3-4375-ba67-77f5e1612bc0,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T13:33:00Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,be49171b-9f72-4fc9-bf7a-9a52e259836b +2fa5723c-e9ff-4926-bde3-101fcaf4f5b9,8c3e848b-5ab6-4371-b1c5-900a6bac3d36,https://greenery.com/checkout/0976f5e0-829b-4111-9ae8-3c444a1b26eb,2021-02-10T16:47:20Z,checkout,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,0976f5e0-829b-4111-9ae8-3c444a1b26eb, +82aaaf6a-9a70-49be-aa26-49f63f054546,8c3e848b-5ab6-4371-b1c5-900a6bac3d36,https://greenery.com/shipping/0976f5e0-829b-4111-9ae8-3c444a1b26eb,2021-02-10T18:47:23Z,package_shipped,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,0976f5e0-829b-4111-9ae8-3c444a1b26eb, +cbde8cb3-5d31-43d7-a5e9-d3981eac2431,8c3e848b-5ab6-4371-b1c5-900a6bac3d36,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T16:46:39Z,add_to_cart,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,,be49171b-9f72-4fc9-bf7a-9a52e259836b +5f1d413b-a3bd-46d6-8e37-7406d0b27bcb,8c3e848b-5ab6-4371-b1c5-900a6bac3d36,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T16:44:42Z,page_view,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,,be49171b-9f72-4fc9-bf7a-9a52e259836b +6d442715-ded1-48ed-b086-fc128ff88c91,8c3e848b-5ab6-4371-b1c5-900a6bac3d36,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T16:44:04Z,add_to_cart,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,,689fb64e-a4a2-45c5-b9f2-480c2155624d +579f63f7-f427-452c-915e-23c1e03254c0,8c3e848b-5ab6-4371-b1c5-900a6bac3d36,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T16:42:04Z,page_view,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,,689fb64e-a4a2-45c5-b9f2-480c2155624d +0099b6b7-5330-4e10-ad07-6dfbc0fa4b58,8c3e848b-5ab6-4371-b1c5-900a6bac3d36,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T16:41:41Z,add_to_cart,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +6b2cec8a-31f5-4f04-96d0-666ecf5b6f9f,8c3e848b-5ab6-4371-b1c5-900a6bac3d36,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T16:39:44Z,page_view,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +41a5b7a4-39e8-42bf-ac0b-2c3e5f95bfe7,8c3e848b-5ab6-4371-b1c5-900a6bac3d36,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T16:46:36Z,page_view,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +e849e94b-9cbc-49d7-9c10-2fcc7a47c471,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/checkout/da8cbe31-46f8-4b5c-806a-11ba9c40df9a,2021-02-10T11:38:49Z,checkout,f36630d8-e3d9-4e23-acc0-ffd86e661c26,da8cbe31-46f8-4b5c-806a-11ba9c40df9a, +c1c48594-643e-4fc3-976e-d6c88c6b8c58,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/shipping/da8cbe31-46f8-4b5c-806a-11ba9c40df9a,2021-02-10T16:38:51Z,package_shipped,f36630d8-e3d9-4e23-acc0-ffd86e661c26,da8cbe31-46f8-4b5c-806a-11ba9c40df9a, +98e2e3ac-6cfc-4c59-88b5-a9b0ae2b2f74,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T11:38:22Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +4b7f5407-5c15-4ab8-91cf-4b276fdefd72,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T11:36:17Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +dcb3dad0-f34a-448a-a22d-91ddcdcde1e2,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T11:35:37Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +81d221d9-aec2-4450-8654-f47054345b93,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T11:34:48Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +95bbaa58-3585-4cec-9c4c-f9aa20fdcf8f,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T11:34:08Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +a1dcb86c-6d34-4628-8449-06df8633be46,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T11:32:19Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +f64ea5d4-ddea-4f11-9ddf-22770302558e,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T11:31:31Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +43cb0d70-ffb7-41c4-ae82-04eca613a544,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T11:30:43Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +1b4caa6e-b9a4-49c7-ae3f-2697d8b05924,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T11:30:08Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +6f86162a-607a-4896-a5d5-e40dbf9896f3,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T11:28:34Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +e40094c1-f4f7-4e04-86b5-d81a56d4904a,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T11:27:55Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,a88a23ef-679c-4743-b151-dc7722040d8c +ce984139-f735-4788-9bbe-9f6a6a091f76,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T11:26:31Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,a88a23ef-679c-4743-b151-dc7722040d8c +546c6cd2-4b22-4839-8d38-5c4ae7916414,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T11:26:15Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +5029d8ea-c80c-4181-951c-b573f37efe8f,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T11:24:34Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +cb9517e6-ab5f-4c43-9c0d-eeaecfb8b9e7,de23ee93-557e-4614-b1e5-a2b29cb7126a,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T11:37:15Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +38855e5d-41e9-43dd-a246-689dff9180c5,3cf702b7-7e12-441b-8b87-1f361c1e9693,https://greenery.com/checkout/a2c0226b-46d1-4100-9eff-f9d5b3255850,2021-02-10T06:17:19Z,checkout,c4f8645d-471d-4c3b-aa5c-dd2f30115669,a2c0226b-46d1-4100-9eff-f9d5b3255850, +358ff22c-ad68-4fb7-a01d-6cdef6547be0,3cf702b7-7e12-441b-8b87-1f361c1e9693,https://greenery.com/shipping/a2c0226b-46d1-4100-9eff-f9d5b3255850,2021-02-10T13:17:21Z,package_shipped,c4f8645d-471d-4c3b-aa5c-dd2f30115669,a2c0226b-46d1-4100-9eff-f9d5b3255850, +6447c246-e6ec-44a4-847d-c81e0f732e20,3cf702b7-7e12-441b-8b87-1f361c1e9693,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T06:17:04Z,add_to_cart,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +516568a6-04bc-457d-9389-d3dff3b8ae8a,3cf702b7-7e12-441b-8b87-1f361c1e9693,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T06:16:12Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +cea2fdb1-f1d5-4a13-bc4a-25888bdee1c0,3cf702b7-7e12-441b-8b87-1f361c1e9693,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T06:15:56Z,add_to_cart,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,37e0062f-bd15-4c3e-b272-558a86d90598 +ec6bc76e-743e-47c8-906b-3e745b6dbb82,3cf702b7-7e12-441b-8b87-1f361c1e9693,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T06:14:24Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,37e0062f-bd15-4c3e-b272-558a86d90598 +18583ceb-d766-473f-a772-ace2722dbb75,3cf702b7-7e12-441b-8b87-1f361c1e9693,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T06:14:07Z,add_to_cart,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +95aaba29-41f8-49c9-a770-86ea493e8277,3cf702b7-7e12-441b-8b87-1f361c1e9693,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T06:12:48Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +78c11796-02fa-4dc4-b350-3cb7eadd5d70,3cf702b7-7e12-441b-8b87-1f361c1e9693,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T06:16:30Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +e3768b36-08d8-4b25-a98c-9b4b7e5301c4,3cf702b7-7e12-441b-8b87-1f361c1e9693,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T06:15:32Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,80eda933-749d-4fc6-91d5-613d29eb126f +bb6ee67b-5fd5-4dc4-94b0-407878875e3f,98edd2c1-545e-43d5-8fab-13a33b104a70,https://greenery.com/checkout/7148959b-5081-4702-83c5-d262cc357eae,2021-02-10T05:32:11Z,checkout,6d37adeb-4c53-4167-b170-c89e4bd1764a,7148959b-5081-4702-83c5-d262cc357eae, +bce72df4-dc84-461d-a589-f6afdcb577d3,98edd2c1-545e-43d5-8fab-13a33b104a70,https://greenery.com/shipping/7148959b-5081-4702-83c5-d262cc357eae,2021-02-10T13:32:12Z,package_shipped,6d37adeb-4c53-4167-b170-c89e4bd1764a,7148959b-5081-4702-83c5-d262cc357eae, +5c14bc21-380a-4c9a-a8dd-f356e39d1685,98edd2c1-545e-43d5-8fab-13a33b104a70,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T05:31:31Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,be49171b-9f72-4fc9-bf7a-9a52e259836b +54f9ef5c-ba54-4cd4-88d6-6fdb277caac2,98edd2c1-545e-43d5-8fab-13a33b104a70,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T05:30:38Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,be49171b-9f72-4fc9-bf7a-9a52e259836b +c8318dd7-bee0-4a5a-8d4b-39b53df4023c,98edd2c1-545e-43d5-8fab-13a33b104a70,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T05:31:24Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +64d8a07b-57bc-45c8-8c50-8c18d0d1de83,98edd2c1-545e-43d5-8fab-13a33b104a70,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T05:30:22Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +4873222d-6b5e-448f-9ada-234c23c3727e,9b9bd0fb-8dd8-42b9-8679-10477630f3dd,https://greenery.com/checkout/942af8de-9bef-48e3-8fda-2341f20d2fbe,2021-02-10T11:26:40Z,checkout,0babae9e-2656-4dcb-b454-47d88d47c920,942af8de-9bef-48e3-8fda-2341f20d2fbe, +c4ef118e-3c66-4217-8b66-77acc91114d1,9b9bd0fb-8dd8-42b9-8679-10477630f3dd,https://greenery.com/shipping/942af8de-9bef-48e3-8fda-2341f20d2fbe,2021-02-10T14:26:45Z,package_shipped,0babae9e-2656-4dcb-b454-47d88d47c920,942af8de-9bef-48e3-8fda-2341f20d2fbe, +56b9fb67-a950-4781-8c63-9bd125df4f2b,9b9bd0fb-8dd8-42b9-8679-10477630f3dd,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T11:26:16Z,add_to_cart,0babae9e-2656-4dcb-b454-47d88d47c920,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +95f77a61-1334-4eb0-8554-56797f1a525c,9b9bd0fb-8dd8-42b9-8679-10477630f3dd,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T11:24:34Z,page_view,0babae9e-2656-4dcb-b454-47d88d47c920,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +475f03d1-185a-4184-a718-43bfb2df48bf,9b9bd0fb-8dd8-42b9-8679-10477630f3dd,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T11:24:14Z,add_to_cart,0babae9e-2656-4dcb-b454-47d88d47c920,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +d5eca429-a373-4d8f-92b0-e596a4efc509,9b9bd0fb-8dd8-42b9-8679-10477630f3dd,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T11:23:12Z,page_view,0babae9e-2656-4dcb-b454-47d88d47c920,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +a0b9d0b3-7a8d-483f-9e64-34dd72ea5c6c,9b9bd0fb-8dd8-42b9-8679-10477630f3dd,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T11:22:54Z,add_to_cart,0babae9e-2656-4dcb-b454-47d88d47c920,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +e9fd3992-f0ed-4783-90f8-9e3ddf500b86,9b9bd0fb-8dd8-42b9-8679-10477630f3dd,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T11:21:58Z,page_view,0babae9e-2656-4dcb-b454-47d88d47c920,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +f1301902-463e-4e65-9cef-34474ed87f89,9b9bd0fb-8dd8-42b9-8679-10477630f3dd,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T11:25:49Z,page_view,0babae9e-2656-4dcb-b454-47d88d47c920,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +ad27312c-d2d3-4c05-9c2c-6fc7ee876ca5,9b9bd0fb-8dd8-42b9-8679-10477630f3dd,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T11:24:23Z,page_view,0babae9e-2656-4dcb-b454-47d88d47c920,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +88800ac0-fa7d-4bf8-9056-5072bfcffb33,9b9bd0fb-8dd8-42b9-8679-10477630f3dd,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T11:23:43Z,page_view,0babae9e-2656-4dcb-b454-47d88d47c920,,37e0062f-bd15-4c3e-b272-558a86d90598 +ac306420-444a-44cc-94c7-012d41ba2bed,b213e27b-4682-4a25-a61a-48fe77ab0018,https://greenery.com/checkout/bbd9db3c-9553-43b8-8223-c8d204ba5129,2021-02-10T18:24:41Z,checkout,8f61f71f-2321-4365-a17d-8e808b3151d2,bbd9db3c-9553-43b8-8223-c8d204ba5129, +d13a754d-fbd1-40e4-9777-534d1bc59e51,b213e27b-4682-4a25-a61a-48fe77ab0018,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T18:24:15Z,add_to_cart,8f61f71f-2321-4365-a17d-8e808b3151d2,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +c461967f-d817-4e02-9841-ea7b950c7b28,b213e27b-4682-4a25-a61a-48fe77ab0018,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T18:23:13Z,page_view,8f61f71f-2321-4365-a17d-8e808b3151d2,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +c8a0db31-ff24-454d-9b77-66e2c57f4370,b213e27b-4682-4a25-a61a-48fe77ab0018,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T18:23:55Z,page_view,8f61f71f-2321-4365-a17d-8e808b3151d2,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +a07e307f-3e4d-4dd3-b889-842b875942a2,b213e27b-4682-4a25-a61a-48fe77ab0018,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T18:22:10Z,page_view,8f61f71f-2321-4365-a17d-8e808b3151d2,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +e19897c4-56dc-4966-94c3-ed51691bd02c,b213e27b-4682-4a25-a61a-48fe77ab0018,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T18:20:59Z,page_view,8f61f71f-2321-4365-a17d-8e808b3151d2,,5ceddd13-cf00-481f-9285-8340ab95d06d +4d2d1218-ed77-4721-9eb0-b6913c9211d9,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/checkout/63505de8-b2e8-4588-8f0d-b1121bfb75f8,2021-02-10T13:05:55Z,checkout,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,63505de8-b2e8-4588-8f0d-b1121bfb75f8, +e57ea57b-43e5-4f63-8561-cfdd4c272306,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/shipping/63505de8-b2e8-4588-8f0d-b1121bfb75f8,2021-02-10T16:05:57Z,package_shipped,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,63505de8-b2e8-4588-8f0d-b1121bfb75f8, +67b7a353-ba6d-45ae-9622-113296e1068a,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T13:05:07Z,add_to_cart,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +41ab738f-63e5-406e-ae7f-f3d0ee694fdb,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T13:03:15Z,page_view,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +4e0d35b2-b5b9-4c21-b675-358e78677105,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T13:02:33Z,add_to_cart,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +8ed29b5a-6306-4320-a77e-b05181411e8d,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T13:01:35Z,page_view,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +669f192c-49f9-4d14-9e04-931bc2044b83,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T13:01:17Z,add_to_cart,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +7ca81af5-e9df-497d-9b58-c5c35f10eb53,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T12:59:38Z,page_view,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +7179fe24-daa0-4808-9094-ffca52793e57,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T12:58:57Z,add_to_cart,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,5ceddd13-cf00-481f-9285-8340ab95d06d +5455073d-3cf6-42c1-b7cf-b5f31e79249c,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T12:57:36Z,page_view,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,5ceddd13-cf00-481f-9285-8340ab95d06d +14a0d106-4f2c-40eb-9532-5c386287be17,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T13:04:47Z,page_view,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +90b20fcd-9e1f-4449-9eb6-3ea5f47dbbcb,4394ad8c-a55d-44d6-919a-8d0fb3ddeb31,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T13:03:45Z,page_view,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +2df063e1-a513-4afd-96e4-45a93374b0bb,3b7acfc2-2918-4309-b2ed-df7f3a25feb3,https://greenery.com/checkout/90ffdce6-ac7d-46e1-b2b1-310b41b2c789,2021-02-10T15:26:07Z,checkout,4dae48a6-8206-46eb-b629-fec4a99306ec,90ffdce6-ac7d-46e1-b2b1-310b41b2c789, +39c7e715-c3a5-4bcf-b94b-762f6be1fbe9,3b7acfc2-2918-4309-b2ed-df7f3a25feb3,https://greenery.com/shipping/90ffdce6-ac7d-46e1-b2b1-310b41b2c789,2021-02-10T18:26:12Z,package_shipped,4dae48a6-8206-46eb-b629-fec4a99306ec,90ffdce6-ac7d-46e1-b2b1-310b41b2c789, +0ad881f1-1431-4b31-a4e1-3867aabf3ba2,3b7acfc2-2918-4309-b2ed-df7f3a25feb3,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T15:25:17Z,add_to_cart,4dae48a6-8206-46eb-b629-fec4a99306ec,,a88a23ef-679c-4743-b151-dc7722040d8c +953ce89f-ef0d-44ec-97a3-5accc9269d83,3b7acfc2-2918-4309-b2ed-df7f3a25feb3,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T15:23:27Z,page_view,4dae48a6-8206-46eb-b629-fec4a99306ec,,a88a23ef-679c-4743-b151-dc7722040d8c +ce49fea3-a27f-434c-b21a-bc7d6d2a8714,3b7acfc2-2918-4309-b2ed-df7f3a25feb3,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T15:25:26Z,page_view,4dae48a6-8206-46eb-b629-fec4a99306ec,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +0a7f7997-cbd2-4cb6-95c3-ca3caa5637c0,3b7acfc2-2918-4309-b2ed-df7f3a25feb3,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T15:23:43Z,page_view,4dae48a6-8206-46eb-b629-fec4a99306ec,,e5ee99b6-519f-4218-8b41-62f48f59f700 +62964f28-0e4a-4f59-9e1c-9484bb695b38,3b7acfc2-2918-4309-b2ed-df7f3a25feb3,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T15:22:16Z,page_view,4dae48a6-8206-46eb-b629-fec4a99306ec,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +e662121a-cf66-4585-a710-baf6064ee94d,676b98f2-fbc5-4b56-8931-8d3111ea7df6,https://greenery.com/checkout/71c94abb-281b-44d8-b082-7848ae8e88d8,2021-02-10T23:55:16Z,checkout,d78268b1-7168-49f4-8f6f-db436afb5a6f,71c94abb-281b-44d8-b082-7848ae8e88d8, +8c411d7f-df02-4c6b-a406-b16745084c98,676b98f2-fbc5-4b56-8931-8d3111ea7df6,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T23:54:40Z,add_to_cart,d78268b1-7168-49f4-8f6f-db436afb5a6f,,615695d3-8ffd-4850-bcf7-944cf6d3685b +1af1a0ec-fa1b-4b8c-85a7-6d89bd191133,676b98f2-fbc5-4b56-8931-8d3111ea7df6,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T23:53:42Z,page_view,d78268b1-7168-49f4-8f6f-db436afb5a6f,,615695d3-8ffd-4850-bcf7-944cf6d3685b +93de87f2-b715-48f6-afbd-2b5fa50d9dbc,676b98f2-fbc5-4b56-8931-8d3111ea7df6,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T23:52:54Z,add_to_cart,d78268b1-7168-49f4-8f6f-db436afb5a6f,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +0a424b81-c4eb-440e-bd14-29b66150cf6b,676b98f2-fbc5-4b56-8931-8d3111ea7df6,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T23:52:10Z,page_view,d78268b1-7168-49f4-8f6f-db436afb5a6f,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +3248d734-c80c-4071-a775-2d285b1120f7,676b98f2-fbc5-4b56-8931-8d3111ea7df6,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T23:53:24Z,page_view,d78268b1-7168-49f4-8f6f-db436afb5a6f,,689fb64e-a4a2-45c5-b9f2-480c2155624d +04f5f7d9-3a6a-481b-ba99-51406db295a5,676b98f2-fbc5-4b56-8931-8d3111ea7df6,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T23:52:14Z,page_view,d78268b1-7168-49f4-8f6f-db436afb5a6f,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +5dbf5792-e2a5-4d98-9087-eda3d3a5bdd8,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/checkout/29d20dcd-d0c4-4bca-a52d-fc9363b5d7c6,2021-02-10T02:37:31Z,checkout,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,29d20dcd-d0c4-4bca-a52d-fc9363b5d7c6, +28129a68-f6a9-448d-8d1a-b48369474fb5,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T02:37:01Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,e5ee99b6-519f-4218-8b41-62f48f59f700 +c815222f-c1f6-458f-b3ad-0738ecd27059,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T02:36:10Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,e5ee99b6-519f-4218-8b41-62f48f59f700 +e5f76950-e7dd-4e22-be33-8b499e9d1b13,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T02:35:33Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,be49171b-9f72-4fc9-bf7a-9a52e259836b +f129b742-aa9a-41db-bdfc-ffb008bb26bb,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T02:34:17Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,be49171b-9f72-4fc9-bf7a-9a52e259836b +83c9b468-60e7-45d4-94f9-06c871b01d0c,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T02:33:28Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,5ceddd13-cf00-481f-9285-8340ab95d06d +519348c1-0092-4baf-a40b-2a0222b84253,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T02:32:32Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,5ceddd13-cf00-481f-9285-8340ab95d06d +1af2c058-a3bb-4ccc-9fa4-4b4976ec68f7,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T02:32:05Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,615695d3-8ffd-4850-bcf7-944cf6d3685b +48e7d391-c963-457c-b5e9-c80819e9a6df,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T02:30:44Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,615695d3-8ffd-4850-bcf7-944cf6d3685b +e0756014-cdf1-4a94-9ea2-b63985438a04,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T02:30:26Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +0104a867-8910-434e-b1ca-334b8d94bf3b,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T02:29:37Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +368caea1-6be4-40bd-ab18-8a97da868f95,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T02:36:10Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +fdc778e4-f7c9-48cf-bb74-8430981a47f4,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T02:34:07Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +793a9082-5585-47b6-b627-0370dd8e2e52,da3e6ce1-1c25-423b-9b18-2da855be15cb,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T02:33:15Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,74aeb414-e3dd-4e8a-beef-0fa45225214d +6e9b8673-4bbd-4fc1-a2c6-97d6e7a81e25,ec841ea3-f74f-475a-b62a-553df67ec533,https://greenery.com/checkout/6b2a45d9-fe4f-4b4d-896d-54c08a71a80f,2021-02-10T11:49:44Z,checkout,4d3c9f53-0667-4a80-8259-12200fe75761,6b2a45d9-fe4f-4b4d-896d-54c08a71a80f, +96263bd3-f18d-4cb0-b7af-9e0fd8c55b9f,ec841ea3-f74f-475a-b62a-553df67ec533,https://greenery.com/shipping/6b2a45d9-fe4f-4b4d-896d-54c08a71a80f,2021-02-10T20:49:46Z,package_shipped,4d3c9f53-0667-4a80-8259-12200fe75761,6b2a45d9-fe4f-4b4d-896d-54c08a71a80f, +7b5d9bb2-2bf3-4ce3-a273-15ed1c30a753,ec841ea3-f74f-475a-b62a-553df67ec533,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T11:49:03Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +6a663199-0610-400d-a2ff-49b862454f78,ec841ea3-f74f-475a-b62a-553df67ec533,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T11:48:07Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +9372495f-a213-4be1-ba43-9eec303abd53,ec841ea3-f74f-475a-b62a-553df67ec533,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T11:47:12Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +5d3fa807-12b6-4fd4-83aa-b7e1e9db49a0,ec841ea3-f74f-475a-b62a-553df67ec533,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T11:46:13Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +dc17072e-e91d-451a-bc24-87ffdb9f80e5,ec841ea3-f74f-475a-b62a-553df67ec533,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T11:48:01Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +b9738f20-5ed2-4da6-b381-a7cd40d14ea5,ec841ea3-f74f-475a-b62a-553df67ec533,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T11:46:22Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +d330b578-7979-4cdb-a355-6d998c2df511,ec841ea3-f74f-475a-b62a-553df67ec533,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T11:44:48Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,37e0062f-bd15-4c3e-b272-558a86d90598 +c4907ce9-c948-4b75-9d1d-617ec16b7ce1,83ec7518-e119-4ce0-a76e-f601dc33a2a8,https://greenery.com/checkout/1829f967-79c8-4998-ba9f-9d381728cedd,2021-02-10T21:22:37Z,checkout,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,1829f967-79c8-4998-ba9f-9d381728cedd, +31f98398-b587-4c30-9431-522d14f71819,83ec7518-e119-4ce0-a76e-f601dc33a2a8,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T21:22:25Z,add_to_cart,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +52680b66-f579-4a62-9ab3-3f141b407b55,83ec7518-e119-4ce0-a76e-f601dc33a2a8,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T21:20:37Z,page_view,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +527112a4-d6cd-4b10-b7c8-450eb5acf742,83ec7518-e119-4ce0-a76e-f601dc33a2a8,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T21:19:47Z,add_to_cart,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +75bfe6f0-7f71-4937-9dc0-4828b28df21d,83ec7518-e119-4ce0-a76e-f601dc33a2a8,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T21:19:03Z,page_view,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +c19fb06f-a670-400e-ad67-29bed886f174,6fac65bc-b603-4e1a-aaed-e5588092ab07,https://greenery.com/checkout/9d24b74d-0aaf-45ab-954e-5d8e435a3366,2021-02-10T17:46:25Z,checkout,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,9d24b74d-0aaf-45ab-954e-5d8e435a3366, +62059e2d-abbe-45e7-999f-1a8dda374ad9,6fac65bc-b603-4e1a-aaed-e5588092ab07,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T17:46:06Z,add_to_cart,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +9850ae6c-7b12-42da-a329-706dfcdfa707,6fac65bc-b603-4e1a-aaed-e5588092ab07,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T17:44:08Z,page_view,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +7e68bfbc-57a1-4683-aa91-fe04af3ed4a8,6fac65bc-b603-4e1a-aaed-e5588092ab07,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T17:43:29Z,add_to_cart,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,a88a23ef-679c-4743-b151-dc7722040d8c +b35411ec-d491-4125-adb4-6fd53d70ebd8,6fac65bc-b603-4e1a-aaed-e5588092ab07,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T17:42:49Z,page_view,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,a88a23ef-679c-4743-b151-dc7722040d8c +735cc4db-8e7f-47ca-9cf7-dc8c9560ad08,6fac65bc-b603-4e1a-aaed-e5588092ab07,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T17:45:34Z,page_view,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +5975a4ab-ab6e-463d-bc4f-09a3d18948da,e3095191-7b39-4e02-8ac5-4225006f5267,https://greenery.com/checkout/e2729b7d-e313-4a6f-9444-f7f65ae8db9a,2021-02-10T11:25:30Z,checkout,2bfd97fc-be3c-4137-8996-b44907a368d2,e2729b7d-e313-4a6f-9444-f7f65ae8db9a, +98f8af52-cfe3-467f-bef6-fef3ee0f48df,e3095191-7b39-4e02-8ac5-4225006f5267,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T11:25:15Z,add_to_cart,2bfd97fc-be3c-4137-8996-b44907a368d2,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +064bc53d-5f87-4c0c-8474-8044e4713529,e3095191-7b39-4e02-8ac5-4225006f5267,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T11:23:18Z,page_view,2bfd97fc-be3c-4137-8996-b44907a368d2,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +2b9e0ff4-ae7b-47f3-8ab8-4379404f4e9b,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/checkout/27897d11-f7a3-424a-bc4b-50c0487d12d1,2021-02-10T17:15:56Z,checkout,6d37adeb-4c53-4167-b170-c89e4bd1764a,27897d11-f7a3-424a-bc4b-50c0487d12d1, +3765ca24-948e-4f15-bec7-281db5be709e,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/shipping/27897d11-f7a3-424a-bc4b-50c0487d12d1,2021-02-10T21:15:59Z,package_shipped,6d37adeb-4c53-4167-b170-c89e4bd1764a,27897d11-f7a3-424a-bc4b-50c0487d12d1, +0a46fa33-0411-422b-a348-2b8834f2bba3,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T17:15:39Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,c17e63f7-0d28-4a95-8248-b01ea354840e +6cb57344-acb8-4a65-bc39-f5c561853e10,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T17:14:30Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,c17e63f7-0d28-4a95-8248-b01ea354840e +a2534a06-5727-4e51-b9b8-6d0943140629,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T17:13:48Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +ce8f5c2a-db20-4f9a-95b7-0354a4ebbb5e,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T17:12:50Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +5f6fc90b-2d67-4235-a222-e1311dad9b62,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T17:11:58Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +464d2892-8668-4d4d-adc9-3386fbe78d4b,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T17:10:45Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +9caf7b2a-dfbc-45ac-b7cf-a916629fc020,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T17:10:04Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +207d598a-fed4-4e2b-b3a9-64fad983be20,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T17:08:04Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +f4d93152-c14c-443c-9e8f-2245a1298478,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T17:13:53Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,5ceddd13-cf00-481f-9285-8340ab95d06d +8bb79e22-4d8d-4a3b-85fe-b7a8b8b150c0,c8c93a31-afde-480f-9030-49aabe25e655,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T17:12:19Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,5ceddd13-cf00-481f-9285-8340ab95d06d +65710d56-bda5-4949-9a62-92744078633a,b629cf42-0795-4552-8123-af13dfd4e3d6,https://greenery.com/checkout/c8ec734f-2f92-4d17-80bf-71de0afd713d,2021-02-10T13:01:56Z,checkout,467a047e-c8df-4304-8fc9-949acd7bcf4a,c8ec734f-2f92-4d17-80bf-71de0afd713d, +cdbe90e2-4572-48b6-bb28-215e7b2ac195,b629cf42-0795-4552-8123-af13dfd4e3d6,https://greenery.com/shipping/c8ec734f-2f92-4d17-80bf-71de0afd713d,2021-02-10T17:01:59Z,package_shipped,467a047e-c8df-4304-8fc9-949acd7bcf4a,c8ec734f-2f92-4d17-80bf-71de0afd713d, +a99e7628-80b0-4ce5-bd55-78269407b73a,b629cf42-0795-4552-8123-af13dfd4e3d6,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T13:01:16Z,add_to_cart,467a047e-c8df-4304-8fc9-949acd7bcf4a,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +ba9625ac-fb3c-4be3-b33b-dff457e98fb6,b629cf42-0795-4552-8123-af13dfd4e3d6,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T13:00:34Z,page_view,467a047e-c8df-4304-8fc9-949acd7bcf4a,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +d0f7b715-3fd0-48c0-bf65-e90e664900c3,b629cf42-0795-4552-8123-af13dfd4e3d6,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T13:00:48Z,page_view,467a047e-c8df-4304-8fc9-949acd7bcf4a,,689fb64e-a4a2-45c5-b9f2-480c2155624d +ca1e5e29-510c-4134-92a4-57c739e52405,b629cf42-0795-4552-8123-af13dfd4e3d6,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T12:59:10Z,page_view,467a047e-c8df-4304-8fc9-949acd7bcf4a,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +fcbc0f6f-640b-418d-b38e-9759058eef83,b629cf42-0795-4552-8123-af13dfd4e3d6,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T12:57:15Z,page_view,467a047e-c8df-4304-8fc9-949acd7bcf4a,,689fb64e-a4a2-45c5-b9f2-480c2155624d +e2aa6908-a085-4a08-836a-f65aa6c8d9e9,7723842a-34a3-46d0-b5c4-e255d3b24547,https://greenery.com/checkout/f7379c32-fa41-43e5-b979-26053b9a60a3,2021-02-10T07:32:19Z,checkout,48c5ab18-4e44-40cb-8776-a19da0a86ffa,f7379c32-fa41-43e5-b979-26053b9a60a3, +49ca1baa-144f-4a85-af69-ffed4f0dbce9,7723842a-34a3-46d0-b5c4-e255d3b24547,https://greenery.com/shipping/f7379c32-fa41-43e5-b979-26053b9a60a3,2021-02-10T13:32:20Z,package_shipped,48c5ab18-4e44-40cb-8776-a19da0a86ffa,f7379c32-fa41-43e5-b979-26053b9a60a3, +7409ebb8-082b-44fb-b467-901701623b62,7723842a-34a3-46d0-b5c4-e255d3b24547,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T07:32:00Z,add_to_cart,48c5ab18-4e44-40cb-8776-a19da0a86ffa,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +44e5222b-bde1-4854-be6f-87a123c4668c,7723842a-34a3-46d0-b5c4-e255d3b24547,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T07:30:00Z,page_view,48c5ab18-4e44-40cb-8776-a19da0a86ffa,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +ccb994d7-b7f2-46aa-837d-4a3bb6d98e77,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/checkout/3af487e1-401f-4269-a6a8-afd4d88c780c,2021-02-10T13:04:56Z,checkout,1fada2e4-1018-48f1-84dc-802dc99171fe,3af487e1-401f-4269-a6a8-afd4d88c780c, +65685423-746e-4ee3-9f61-59f21943c25f,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/shipping/3af487e1-401f-4269-a6a8-afd4d88c780c,2021-02-10T19:05:01Z,package_shipped,1fada2e4-1018-48f1-84dc-802dc99171fe,3af487e1-401f-4269-a6a8-afd4d88c780c, +59f95fc7-acd4-437b-835f-bd19105226ad,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T13:04:43Z,add_to_cart,1fada2e4-1018-48f1-84dc-802dc99171fe,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +3f2179dc-228d-4d3d-a66e-6ef3f116fbc8,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T13:03:04Z,page_view,1fada2e4-1018-48f1-84dc-802dc99171fe,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +07d4385a-5219-4e97-9f7a-e170b523d915,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T13:02:35Z,add_to_cart,1fada2e4-1018-48f1-84dc-802dc99171fe,,5ceddd13-cf00-481f-9285-8340ab95d06d +c92b263c-51f5-41ac-8068-078ed3f2c0af,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T13:01:40Z,page_view,1fada2e4-1018-48f1-84dc-802dc99171fe,,5ceddd13-cf00-481f-9285-8340ab95d06d +08bdc1fd-e552-4e0f-83c8-962c67d57713,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T13:01:06Z,add_to_cart,1fada2e4-1018-48f1-84dc-802dc99171fe,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +aa98ee12-3195-44f6-bb1d-5bbabd348664,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T12:59:12Z,page_view,1fada2e4-1018-48f1-84dc-802dc99171fe,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +40f5df85-c15b-4c65-af22-57681cafe8d0,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T12:58:34Z,add_to_cart,1fada2e4-1018-48f1-84dc-802dc99171fe,,689fb64e-a4a2-45c5-b9f2-480c2155624d +6abcfcfd-f398-479f-842b-6f5580cc98f1,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T12:57:34Z,page_view,1fada2e4-1018-48f1-84dc-802dc99171fe,,689fb64e-a4a2-45c5-b9f2-480c2155624d +e20d846c-6c1a-43f1-b3ab-c4e7e2a3aa6f,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T12:56:53Z,add_to_cart,1fada2e4-1018-48f1-84dc-802dc99171fe,,35550082-a52d-4301-8f06-05b30f6f3616 +aa49ed6b-3a00-4522-8afe-91fa94668024,b730424c-f469-480e-a330-ed8e576201da,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T12:55:46Z,page_view,1fada2e4-1018-48f1-84dc-802dc99171fe,,35550082-a52d-4301-8f06-05b30f6f3616 +92ed6a9b-0c79-4d0f-a194-be250b4714f2,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/checkout/b245fe74-2070-4203-848c-85d4b59f8eef,2021-02-10T12:43:14Z,checkout,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,b245fe74-2070-4203-848c-85d4b59f8eef, +a939e331-7064-479c-9777-bc8a638dd6de,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T12:42:37Z,add_to_cart,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,615695d3-8ffd-4850-bcf7-944cf6d3685b +a20ed5d6-db6a-4564-9791-7779ee742fd6,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T12:40:39Z,page_view,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,615695d3-8ffd-4850-bcf7-944cf6d3685b +f6820bd1-1268-4e96-abf6-08550b96159c,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T12:39:58Z,add_to_cart,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +27365b23-74fc-45de-a010-84a9012013cb,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T12:38:11Z,page_view,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +4f13e332-2b5b-422b-8a8a-94123e492d49,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T12:37:35Z,add_to_cart,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,5ceddd13-cf00-481f-9285-8340ab95d06d +aaa08446-49fc-4fd8-b7ad-cfae0dbc475b,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T12:36:09Z,page_view,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,5ceddd13-cf00-481f-9285-8340ab95d06d +cce4fe00-e3b4-4c3c-a619-273d5bbaf4ad,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T12:35:19Z,add_to_cart,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,e5ee99b6-519f-4218-8b41-62f48f59f700 +ed673579-b59f-482c-a8e0-aaaef69e603b,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T12:34:12Z,page_view,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,e5ee99b6-519f-4218-8b41-62f48f59f700 +7ae1212e-59b4-4cc0-9629-06e6d22d2271,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T12:41:45Z,page_view,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +52779d16-dc10-4bcf-aff0-1e2b3889d1c8,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T12:40:23Z,page_view,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +c2754207-b966-484e-942a-e5d3d81706ec,c444bc3b-67f3-4391-89a5-a84f09d2068b,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T12:39:04Z,page_view,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,35550082-a52d-4301-8f06-05b30f6f3616 +248d854a-e569-4d6e-a638-65bd1c423abe,025d699f-7682-41e1-9b1a-ec10e8c3a5eb,https://greenery.com/checkout/3c6072c0-399c-4250-86f4-86024e4a18c5,2021-02-10T01:31:15Z,checkout,d165b2ff-dfe1-40d0-bda0-a25e82b95870,3c6072c0-399c-4250-86f4-86024e4a18c5, +56bfbf74-636f-49e9-a67a-bcfacaacae38,025d699f-7682-41e1-9b1a-ec10e8c3a5eb,https://greenery.com/shipping/3c6072c0-399c-4250-86f4-86024e4a18c5,2021-02-10T07:31:19Z,package_shipped,d165b2ff-dfe1-40d0-bda0-a25e82b95870,3c6072c0-399c-4250-86f4-86024e4a18c5, +e9e8d181-b665-4ee4-89ed-550c93fc9c0a,025d699f-7682-41e1-9b1a-ec10e8c3a5eb,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T01:30:31Z,add_to_cart,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,37e0062f-bd15-4c3e-b272-558a86d90598 +6b00db26-e150-49f4-acf2-a0989a0be93c,025d699f-7682-41e1-9b1a-ec10e8c3a5eb,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T01:29:09Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,37e0062f-bd15-4c3e-b272-558a86d90598 +efb049e2-a294-4281-84a1-1edbe0d01038,c9547b6a-91d6-4209-941f-8cb68fb2013d,https://greenery.com/checkout/4c0ffd68-11fc-4dcd-b979-c910412a16bf,2021-02-10T02:30:35Z,checkout,29246f52-de26-4867-b464-7c5973526202,4c0ffd68-11fc-4dcd-b979-c910412a16bf, +fb3fc13d-039b-478b-bfbe-72c714cc1754,c9547b6a-91d6-4209-941f-8cb68fb2013d,https://greenery.com/shipping/4c0ffd68-11fc-4dcd-b979-c910412a16bf,2021-02-10T07:30:40Z,package_shipped,29246f52-de26-4867-b464-7c5973526202,4c0ffd68-11fc-4dcd-b979-c910412a16bf, +6999e629-8a83-4396-8972-af3a5a5b8f3f,c9547b6a-91d6-4209-941f-8cb68fb2013d,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T02:30:10Z,add_to_cart,29246f52-de26-4867-b464-7c5973526202,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +c7710d81-726f-44b2-b7d9-52214e4e0e94,c9547b6a-91d6-4209-941f-8cb68fb2013d,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T02:28:20Z,page_view,29246f52-de26-4867-b464-7c5973526202,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +f5a9b046-7fe4-43cf-a977-ec8e677a7f17,c9547b6a-91d6-4209-941f-8cb68fb2013d,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T02:27:48Z,add_to_cart,29246f52-de26-4867-b464-7c5973526202,,37e0062f-bd15-4c3e-b272-558a86d90598 +f1a66689-7acb-4838-8175-bbfc9b10d532,c9547b6a-91d6-4209-941f-8cb68fb2013d,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T02:26:35Z,page_view,29246f52-de26-4867-b464-7c5973526202,,37e0062f-bd15-4c3e-b272-558a86d90598 +0721a5ac-f2ab-4dbb-bf91-0ca213fce66d,c9547b6a-91d6-4209-941f-8cb68fb2013d,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T02:28:49Z,page_view,29246f52-de26-4867-b464-7c5973526202,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +bebe3f53-67b8-4d01-8132-10ea34d77b29,c9547b6a-91d6-4209-941f-8cb68fb2013d,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T02:28:01Z,page_view,29246f52-de26-4867-b464-7c5973526202,,a88a23ef-679c-4743-b151-dc7722040d8c +590f5013-59f5-4106-a35d-e1788084dd96,c22b164c-e263-40fd-aefe-66304d76c765,https://greenery.com/checkout/4d1f5b81-0ccc-4204-a6c8-f78c74882ded,2021-02-10T14:23:17Z,checkout,366bd18f-6a16-4f39-9177-080c11ce9f25,4d1f5b81-0ccc-4204-a6c8-f78c74882ded, +8349abd4-764d-499f-b796-2f95a4aa8a89,c22b164c-e263-40fd-aefe-66304d76c765,https://greenery.com/shipping/4d1f5b81-0ccc-4204-a6c8-f78c74882ded,2021-02-10T18:23:19Z,package_shipped,366bd18f-6a16-4f39-9177-080c11ce9f25,4d1f5b81-0ccc-4204-a6c8-f78c74882ded, +ec8b432a-5471-4beb-a544-67c6d9656215,c22b164c-e263-40fd-aefe-66304d76c765,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T14:22:30Z,add_to_cart,366bd18f-6a16-4f39-9177-080c11ce9f25,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +7cd2bf77-ca2c-4b8e-913d-2a9953608944,c22b164c-e263-40fd-aefe-66304d76c765,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T14:21:24Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +cac5b8be-006b-478d-824a-377c01b6c165,c22b164c-e263-40fd-aefe-66304d76c765,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T14:20:48Z,add_to_cart,366bd18f-6a16-4f39-9177-080c11ce9f25,,5ceddd13-cf00-481f-9285-8340ab95d06d +2a1601a3-8504-4561-aaef-9b7206625bb6,c22b164c-e263-40fd-aefe-66304d76c765,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T14:20:10Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,5ceddd13-cf00-481f-9285-8340ab95d06d +90de453f-7fd0-4813-ab1f-a7422fe473ee,c22b164c-e263-40fd-aefe-66304d76c765,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T14:22:36Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,e8b6528e-a830-4d03-a027-473b411c7f02 +4df7f4b1-5809-47ea-b59e-b32200c603c5,4b0a24f9-3ad3-4fef-abe7-099c1f42319e,https://greenery.com/checkout/871d9861-ea19-47a1-950d-c3198128acef,2021-02-10T13:55:25Z,checkout,bf7367be-d029-4255-81a1-3a295eeb9c56,871d9861-ea19-47a1-950d-c3198128acef, +e8d2b83b-ebb9-4f49-bf2c-14307c2c6b15,4b0a24f9-3ad3-4fef-abe7-099c1f42319e,https://greenery.com/shipping/871d9861-ea19-47a1-950d-c3198128acef,2021-02-10T17:55:26Z,package_shipped,bf7367be-d029-4255-81a1-3a295eeb9c56,871d9861-ea19-47a1-950d-c3198128acef, +c4c8a18a-8d0e-4982-b17c-cb5dc9bb128a,4b0a24f9-3ad3-4fef-abe7-099c1f42319e,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T13:54:45Z,add_to_cart,bf7367be-d029-4255-81a1-3a295eeb9c56,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +673cf785-9301-424e-aef8-7676f0c27e04,4b0a24f9-3ad3-4fef-abe7-099c1f42319e,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T13:52:51Z,page_view,bf7367be-d029-4255-81a1-3a295eeb9c56,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +650020a5-506a-44e6-8a21-bfea02d1964d,4b0a24f9-3ad3-4fef-abe7-099c1f42319e,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T13:52:07Z,add_to_cart,bf7367be-d029-4255-81a1-3a295eeb9c56,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +131cc4fa-bd9f-459f-9cd6-dceee9402183,4b0a24f9-3ad3-4fef-abe7-099c1f42319e,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T13:51:15Z,page_view,bf7367be-d029-4255-81a1-3a295eeb9c56,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +e0ed5226-4b11-47f7-b40d-bc04eeb96797,4b0a24f9-3ad3-4fef-abe7-099c1f42319e,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T13:53:28Z,page_view,bf7367be-d029-4255-81a1-3a295eeb9c56,,80eda933-749d-4fc6-91d5-613d29eb126f +879709e4-77c5-4ebd-8fb2-aa3e460d1f60,4b0a24f9-3ad3-4fef-abe7-099c1f42319e,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T13:51:51Z,page_view,bf7367be-d029-4255-81a1-3a295eeb9c56,,e5ee99b6-519f-4218-8b41-62f48f59f700 +86a6f246-4165-4e73-8355-9c7b6142c1ba,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/checkout/951d80a3-2947-4ec2-a5a4-c633662d25e9,2021-02-10T23:09:25Z,checkout,366bd18f-6a16-4f39-9177-080c11ce9f25,951d80a3-2947-4ec2-a5a4-c633662d25e9, +27948d9a-ca7d-453b-a98d-d99dae14e0bb,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T23:08:46Z,add_to_cart,366bd18f-6a16-4f39-9177-080c11ce9f25,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +03821a30-fd44-405e-a791-8068fe804ea7,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T23:07:04Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +022aa965-452b-4f83-9a37-3b10dd890642,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T23:06:21Z,add_to_cart,366bd18f-6a16-4f39-9177-080c11ce9f25,,80eda933-749d-4fc6-91d5-613d29eb126f +9f0e45e9-8e3e-47e5-bc25-b8107a0883c1,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T23:05:08Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,80eda933-749d-4fc6-91d5-613d29eb126f +674d84c7-d1f9-4b18-9592-5f132772186b,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T23:04:48Z,add_to_cart,366bd18f-6a16-4f39-9177-080c11ce9f25,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +6c2552fc-b665-4323-937e-1a6be2563a61,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T23:03:57Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +6098e676-ead1-457a-8f59-324a5ea13b23,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T23:03:26Z,add_to_cart,366bd18f-6a16-4f39-9177-080c11ce9f25,,be49171b-9f72-4fc9-bf7a-9a52e259836b +92934f0e-64aa-4662-8c6a-82681c330497,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T23:02:17Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,be49171b-9f72-4fc9-bf7a-9a52e259836b +f1d0dd30-2c50-40c1-854b-09c3c4c91834,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T23:07:30Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +d44dbd86-7542-4ca5-a1b7-9f955e11e373,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T23:06:54Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,c17e63f7-0d28-4a95-8248-b01ea354840e +10b6d22b-ff96-4094-a8f8-e78a853228ce,422ec83b-5fe0-48a0-82fc-d63e37f4f06a,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T23:06:16Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +454260d7-16e4-47a5-ac1d-5bd8886777c3,d4f6d5f8-2b75-4020-95f2-d54c95e2b831,https://greenery.com/checkout/bbb8264e-cb71-4967-8033-60d7a52ad2fc,2021-02-10T14:34:22Z,checkout,ab6cf98c-c16e-41b7-88ab-31f4db64caa2,bbb8264e-cb71-4967-8033-60d7a52ad2fc, +d4655f34-d715-48c0-9382-48d27037df7f,d4f6d5f8-2b75-4020-95f2-d54c95e2b831,https://greenery.com/shipping/bbb8264e-cb71-4967-8033-60d7a52ad2fc,2021-02-10T22:34:24Z,package_shipped,ab6cf98c-c16e-41b7-88ab-31f4db64caa2,bbb8264e-cb71-4967-8033-60d7a52ad2fc, +1375e3f8-e640-4b6f-8624-0430ccc88874,d4f6d5f8-2b75-4020-95f2-d54c95e2b831,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T14:33:48Z,add_to_cart,ab6cf98c-c16e-41b7-88ab-31f4db64caa2,,5ceddd13-cf00-481f-9285-8340ab95d06d +a7024d8d-e382-464a-8433-a5d2a17ada7e,d4f6d5f8-2b75-4020-95f2-d54c95e2b831,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T14:33:06Z,page_view,ab6cf98c-c16e-41b7-88ab-31f4db64caa2,,5ceddd13-cf00-481f-9285-8340ab95d06d +cfb00c85-9e12-4721-b48c-75c8d8a760c8,d4f6d5f8-2b75-4020-95f2-d54c95e2b831,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T14:32:38Z,add_to_cart,ab6cf98c-c16e-41b7-88ab-31f4db64caa2,,80eda933-749d-4fc6-91d5-613d29eb126f +b4da8926-950c-4087-b500-cb05eedb4275,d4f6d5f8-2b75-4020-95f2-d54c95e2b831,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T14:31:52Z,page_view,ab6cf98c-c16e-41b7-88ab-31f4db64caa2,,80eda933-749d-4fc6-91d5-613d29eb126f +0cd9244b-03ab-4f18-998b-099f27f692f5,d4f6d5f8-2b75-4020-95f2-d54c95e2b831,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T14:31:19Z,add_to_cart,ab6cf98c-c16e-41b7-88ab-31f4db64caa2,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +ddfdfb20-6ac5-46e1-9fe7-e1e71060ee72,d4f6d5f8-2b75-4020-95f2-d54c95e2b831,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T14:30:17Z,page_view,ab6cf98c-c16e-41b7-88ab-31f4db64caa2,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +806f32cb-9a20-4294-a29d-6b1b4dd8eb79,79c32349-f7af-45f1-9d69-c9f44815afe8,https://greenery.com/checkout/7f999c60-f004-4b75-8851-72498dfa47fc,2021-02-10T11:19:46Z,checkout,4d3c9f53-0667-4a80-8259-12200fe75761,7f999c60-f004-4b75-8851-72498dfa47fc, +2f554fd7-2db0-4f29-8394-cc7a4d82b21c,79c32349-f7af-45f1-9d69-c9f44815afe8,https://greenery.com/shipping/7f999c60-f004-4b75-8851-72498dfa47fc,2021-02-10T20:19:51Z,package_shipped,4d3c9f53-0667-4a80-8259-12200fe75761,7f999c60-f004-4b75-8851-72498dfa47fc, +bed6a7d4-79ca-4b00-8976-fe2d1ab67aa0,79c32349-f7af-45f1-9d69-c9f44815afe8,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T11:19:06Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +a896b5fa-954c-4bef-894f-b26e63aad03f,79c32349-f7af-45f1-9d69-c9f44815afe8,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T11:17:37Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +35a4de26-9e91-48a8-af75-41d5cfc6e8c6,79c32349-f7af-45f1-9d69-c9f44815afe8,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T11:17:19Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +cecc46f7-b0a9-4c8b-a656-457334e2fc2f,79c32349-f7af-45f1-9d69-c9f44815afe8,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T11:16:38Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +b5b0e385-16d1-4e28-b149-123c841a754d,79c32349-f7af-45f1-9d69-c9f44815afe8,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T11:15:58Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,689fb64e-a4a2-45c5-b9f2-480c2155624d +0323811d-02c8-45cb-bca4-58df992baae4,79c32349-f7af-45f1-9d69-c9f44815afe8,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T11:14:08Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,689fb64e-a4a2-45c5-b9f2-480c2155624d +56d0fc8e-1ec0-4ee7-9a80-22b3e90f506e,79c32349-f7af-45f1-9d69-c9f44815afe8,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T11:13:50Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +c2072c29-fc73-4122-bc96-88dfe7942d7a,79c32349-f7af-45f1-9d69-c9f44815afe8,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T11:11:59Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +f0d73dee-dcc5-4d67-949f-73e6f5806b25,a32f4dad-0ce6-476c-b2d8-39da0c849a0d,https://greenery.com/checkout/2795df92-ee7d-4992-bab2-15dbb2b2ab36,2021-02-10T11:26:54Z,checkout,9208a361-ea2f-4f75-a2b4-281b55df08a9,2795df92-ee7d-4992-bab2-15dbb2b2ab36, +3a01a9b6-fd1f-448e-8b19-44da9f2bad6e,a32f4dad-0ce6-476c-b2d8-39da0c849a0d,https://greenery.com/shipping/2795df92-ee7d-4992-bab2-15dbb2b2ab36,2021-02-10T17:26:57Z,package_shipped,9208a361-ea2f-4f75-a2b4-281b55df08a9,2795df92-ee7d-4992-bab2-15dbb2b2ab36, +cc34a80b-3a1a-4f6a-bcc3-117e659862c2,a32f4dad-0ce6-476c-b2d8-39da0c849a0d,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T11:26:09Z,add_to_cart,9208a361-ea2f-4f75-a2b4-281b55df08a9,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +33800ee4-0786-4c81-91b1-a763fc1ea820,a32f4dad-0ce6-476c-b2d8-39da0c849a0d,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T11:25:10Z,page_view,9208a361-ea2f-4f75-a2b4-281b55df08a9,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +af0af805-a56b-49cf-b0d7-e842b5522275,a32f4dad-0ce6-476c-b2d8-39da0c849a0d,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T11:24:18Z,add_to_cart,9208a361-ea2f-4f75-a2b4-281b55df08a9,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +142405fc-d246-4eab-bbc8-89f234693dfa,a32f4dad-0ce6-476c-b2d8-39da0c849a0d,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T11:22:38Z,page_view,9208a361-ea2f-4f75-a2b4-281b55df08a9,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +ac88e618-a3c6-431f-9f9f-a2a9ae23045c,a32f4dad-0ce6-476c-b2d8-39da0c849a0d,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T11:22:05Z,add_to_cart,9208a361-ea2f-4f75-a2b4-281b55df08a9,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +8a42c030-775d-4826-a714-7522a26bcc63,a32f4dad-0ce6-476c-b2d8-39da0c849a0d,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T11:21:18Z,page_view,9208a361-ea2f-4f75-a2b4-281b55df08a9,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +a4dc00b0-ca71-4494-8cf9-c4dc7a5f83a3,a32f4dad-0ce6-476c-b2d8-39da0c849a0d,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T11:20:43Z,add_to_cart,9208a361-ea2f-4f75-a2b4-281b55df08a9,,74aeb414-e3dd-4e8a-beef-0fa45225214d +5794e0a9-5535-4875-838f-751a0eb3f6a4,a32f4dad-0ce6-476c-b2d8-39da0c849a0d,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T11:19:51Z,page_view,9208a361-ea2f-4f75-a2b4-281b55df08a9,,74aeb414-e3dd-4e8a-beef-0fa45225214d +29811637-c1e4-4ef9-806c-5a04156d7477,a32f4dad-0ce6-476c-b2d8-39da0c849a0d,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T11:25:26Z,page_view,9208a361-ea2f-4f75-a2b4-281b55df08a9,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +19c9d72e-1ed7-4e15-b161-52363d4f5a04,06cebf18-eeda-47ae-96ec-0080899986d0,https://greenery.com/checkout/4d84f125-234d-4f3c-a54d-41172b453510,2021-02-10T03:45:35Z,checkout,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,4d84f125-234d-4f3c-a54d-41172b453510, +aba626d3-93ee-427e-b1e5-211cc152832f,06cebf18-eeda-47ae-96ec-0080899986d0,https://greenery.com/shipping/4d84f125-234d-4f3c-a54d-41172b453510,2021-02-10T12:45:36Z,package_shipped,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,4d84f125-234d-4f3c-a54d-41172b453510, +0ac1f36c-c146-49dd-a181-418b713678d0,06cebf18-eeda-47ae-96ec-0080899986d0,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T03:45:01Z,add_to_cart,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +cece3177-996a-47b3-99b1-4ee2eaac9cae,06cebf18-eeda-47ae-96ec-0080899986d0,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T03:43:34Z,page_view,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +28d852a3-aeac-4938-931f-824e7f01d75c,26fe5857-83a7-4873-a09f-42d3c26cbb9b,https://greenery.com/checkout/e3965ae6-8792-422f-bae0-ecbce4da50aa,2021-02-10T18:41:38Z,checkout,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,e3965ae6-8792-422f-bae0-ecbce4da50aa, +5db1f789-76c5-4458-b2e6-1e78f6c9d159,26fe5857-83a7-4873-a09f-42d3c26cbb9b,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T18:40:52Z,add_to_cart,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,615695d3-8ffd-4850-bcf7-944cf6d3685b +6065a258-884f-4a1b-a31f-5123139cb4e4,26fe5857-83a7-4873-a09f-42d3c26cbb9b,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T18:39:52Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,615695d3-8ffd-4850-bcf7-944cf6d3685b +c09f0786-1eb8-46ee-b8e4-ac16a29fb0c7,26fe5857-83a7-4873-a09f-42d3c26cbb9b,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T18:39:35Z,add_to_cart,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,74aeb414-e3dd-4e8a-beef-0fa45225214d +fd83b2aa-2a5c-4edc-b845-c4e0e33d60c3,26fe5857-83a7-4873-a09f-42d3c26cbb9b,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T18:37:44Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,74aeb414-e3dd-4e8a-beef-0fa45225214d +daa997a3-6a28-46e7-b811-027770d18f72,26fe5857-83a7-4873-a09f-42d3c26cbb9b,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T18:40:11Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +552253d8-50d4-4ad6-94ee-bb86feeccf54,26fe5857-83a7-4873-a09f-42d3c26cbb9b,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T18:38:47Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +75bbbbb2-a6b2-49fe-92e5-fdaee47c4101,26fe5857-83a7-4873-a09f-42d3c26cbb9b,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T18:37:17Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,e5ee99b6-519f-4218-8b41-62f48f59f700 +af716d45-99f0-42ce-aa83-ab6b4bad6f59,28dfbbe5-054a-4bb6-a26a-3f7ec578bd18,https://greenery.com/checkout/b6f9c559-8c79-409f-963f-2499e5ad315e,2021-02-10T14:02:54Z,checkout,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,b6f9c559-8c79-409f-963f-2499e5ad315e, +14cd5b85-fa55-49eb-aa87-7c40b47b813e,28dfbbe5-054a-4bb6-a26a-3f7ec578bd18,https://greenery.com/shipping/b6f9c559-8c79-409f-963f-2499e5ad315e,2021-02-10T19:02:56Z,package_shipped,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,b6f9c559-8c79-409f-963f-2499e5ad315e, +b8c562aa-d299-4744-89f2-368ddd8d5c51,28dfbbe5-054a-4bb6-a26a-3f7ec578bd18,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T14:02:26Z,add_to_cart,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +48bd92c0-e5b4-4a2d-9978-1d87e2c7b4de,28dfbbe5-054a-4bb6-a26a-3f7ec578bd18,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T14:00:26Z,page_view,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +7a90f78d-0519-4c30-9035-f226beef0a1e,28dfbbe5-054a-4bb6-a26a-3f7ec578bd18,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T14:00:10Z,add_to_cart,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,689fb64e-a4a2-45c5-b9f2-480c2155624d +79cf3903-b7de-4c98-a33e-7f9bca460256,28dfbbe5-054a-4bb6-a26a-3f7ec578bd18,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T13:58:54Z,page_view,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,689fb64e-a4a2-45c5-b9f2-480c2155624d +1437f4ac-750c-4434-b6a5-cf043221c401,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/checkout/88971e55-2d81-493c-bd7f-2e1efc4c0153,2021-02-10T13:27:06Z,checkout,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,88971e55-2d81-493c-bd7f-2e1efc4c0153, +485508f3-e6e5-4c24-b426-74ce35b62610,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/shipping/88971e55-2d81-493c-bd7f-2e1efc4c0153,2021-02-10T16:27:11Z,package_shipped,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,88971e55-2d81-493c-bd7f-2e1efc4c0153, +48a4d29c-271c-4b89-9443-2a9e006283c1,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T13:26:46Z,add_to_cart,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +ab88218c-39f9-4bec-9e25-90390e0e2172,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T13:26:07Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +3063a8a7-e549-427a-bfba-659c78457b66,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T13:25:17Z,add_to_cart,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,615695d3-8ffd-4850-bcf7-944cf6d3685b +5cceddcc-a141-48b2-8b81-127878f9cccc,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T13:24:23Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,615695d3-8ffd-4850-bcf7-944cf6d3685b +d9950b10-1ff3-4ad6-a404-abf8a220b4cc,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T13:24:03Z,add_to_cart,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,80eda933-749d-4fc6-91d5-613d29eb126f +c51aec2b-ce88-4aa4-b11f-126f678218d1,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T13:21:58Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,80eda933-749d-4fc6-91d5-613d29eb126f +e4a4cec4-c39b-4aa5-8a6e-ca55be81c676,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T13:21:39Z,add_to_cart,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +1fb80b37-be77-45b3-8900-30ca51d34768,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T13:20:51Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +548d4990-05a0-4a85-8f13-066073f50cb0,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T13:26:24Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,689fb64e-a4a2-45c5-b9f2-480c2155624d +9f1e0d98-6bf3-4837-9a91-3a818539dd16,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T13:25:10Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +e39e3b91-7545-4f7b-bc6b-f38a638f2e6c,b8d97928-a6e4-4590-a6a3-9df82b97d0f8,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T13:23:21Z,page_view,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,be49171b-9f72-4fc9-bf7a-9a52e259836b +e7134be1-ae2a-4273-974d-20a416ec947a,64119866-c227-43ae-b703-1c69fc1133af,https://greenery.com/checkout/973443f0-e2ff-472c-8469-f452d0beeeda,2021-02-10T10:55:41Z,checkout,f36630d8-e3d9-4e23-acc0-ffd86e661c26,973443f0-e2ff-472c-8469-f452d0beeeda, +d2750687-316d-4be9-82e3-4d003614c170,64119866-c227-43ae-b703-1c69fc1133af,https://greenery.com/shipping/973443f0-e2ff-472c-8469-f452d0beeeda,2021-02-10T13:55:44Z,package_shipped,f36630d8-e3d9-4e23-acc0-ffd86e661c26,973443f0-e2ff-472c-8469-f452d0beeeda, +0c178917-e98f-4535-9044-63d31452951c,64119866-c227-43ae-b703-1c69fc1133af,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T10:55:11Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +1a92e504-3fac-470c-883c-0a2198dc1cee,64119866-c227-43ae-b703-1c69fc1133af,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T10:53:46Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +43970735-4fdf-46f5-b495-20304559d4c6,64119866-c227-43ae-b703-1c69fc1133af,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T10:52:59Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +65e2e8c7-c5e8-4bf9-b34c-512f05a39584,64119866-c227-43ae-b703-1c69fc1133af,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T10:51:54Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +4eaadde3-9c0e-4fc1-9f72-38f8419c5967,64119866-c227-43ae-b703-1c69fc1133af,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T10:51:06Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,689fb64e-a4a2-45c5-b9f2-480c2155624d +1272a105-1a9e-48a2-ab93-17d7171a30f0,64119866-c227-43ae-b703-1c69fc1133af,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T10:50:04Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,689fb64e-a4a2-45c5-b9f2-480c2155624d +484c1e88-0515-4884-88db-a9e756ed199e,64119866-c227-43ae-b703-1c69fc1133af,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T10:49:37Z,add_to_cart,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +bf32902a-91df-45f5-89e7-de583a705f0f,64119866-c227-43ae-b703-1c69fc1133af,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T10:48:55Z,page_view,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +957c9ce2-f79e-4004-ae71-4325df22365b,0b8a92ab-3ac9-48ac-a2ed-ee44d8bb0013,https://greenery.com/checkout/74bae4ca-0322-4e54-ac94-ba84bc63657e,2021-02-10T05:43:21Z,checkout,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,74bae4ca-0322-4e54-ac94-ba84bc63657e, +20dd621a-6e09-4b01-b6e5-37e554bab227,0b8a92ab-3ac9-48ac-a2ed-ee44d8bb0013,https://greenery.com/shipping/74bae4ca-0322-4e54-ac94-ba84bc63657e,2021-02-10T13:43:24Z,package_shipped,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,74bae4ca-0322-4e54-ac94-ba84bc63657e, +2c6e0f33-eb4e-4bdf-a75a-80024b0529da,0b8a92ab-3ac9-48ac-a2ed-ee44d8bb0013,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T05:42:55Z,add_to_cart,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,35550082-a52d-4301-8f06-05b30f6f3616 +05b1e621-7363-409d-a7e9-b90a2c60a438,0b8a92ab-3ac9-48ac-a2ed-ee44d8bb0013,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T05:41:25Z,page_view,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,35550082-a52d-4301-8f06-05b30f6f3616 +15bfaf14-3dbd-4c88-bc7c-5f96fa0785ba,0b8a92ab-3ac9-48ac-a2ed-ee44d8bb0013,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T05:41:06Z,add_to_cart,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +3b2bc968-8aca-42eb-b311-7b11e9a2e2e0,0b8a92ab-3ac9-48ac-a2ed-ee44d8bb0013,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T05:39:43Z,page_view,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +b44dedb9-e08c-4196-b2a9-cee466a47ab9,0b8a92ab-3ac9-48ac-a2ed-ee44d8bb0013,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T05:39:10Z,add_to_cart,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,e8b6528e-a830-4d03-a027-473b411c7f02 +d8911ad7-9c2c-4425-848a-51eb3904bffc,0b8a92ab-3ac9-48ac-a2ed-ee44d8bb0013,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T05:38:30Z,page_view,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,e8b6528e-a830-4d03-a027-473b411c7f02 +67e586fc-9b2a-467f-a0b1-075bf1b3e6c5,0b8a92ab-3ac9-48ac-a2ed-ee44d8bb0013,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T05:42:20Z,page_view,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,689fb64e-a4a2-45c5-b9f2-480c2155624d +c3fd9c19-282c-44b1-9023-ddc2c1ec992e,a4291657-2069-4550-bb5b-23cb8979b4b3,https://greenery.com/checkout/4f4b3ac9-1308-4115-b7d7-abe956e17565,2021-02-10T10:47:34Z,checkout,78fe6452-8a56-4226-ae22-f372116b12ff,4f4b3ac9-1308-4115-b7d7-abe956e17565, +964c62c3-0b04-4234-b4e1-b8e9aa5fc874,a4291657-2069-4550-bb5b-23cb8979b4b3,https://greenery.com/shipping/4f4b3ac9-1308-4115-b7d7-abe956e17565,2021-02-10T16:47:36Z,package_shipped,78fe6452-8a56-4226-ae22-f372116b12ff,4f4b3ac9-1308-4115-b7d7-abe956e17565, +10ca8249-f715-4c43-b9ed-947b57d3dee7,a4291657-2069-4550-bb5b-23cb8979b4b3,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T10:47:09Z,add_to_cart,78fe6452-8a56-4226-ae22-f372116b12ff,,e8b6528e-a830-4d03-a027-473b411c7f02 +e19fa9af-8371-4148-b7a2-91bccfbda32d,a4291657-2069-4550-bb5b-23cb8979b4b3,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T10:46:06Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,e8b6528e-a830-4d03-a027-473b411c7f02 +43e1c208-f8e1-43e7-b797-07054a6f007f,a4291657-2069-4550-bb5b-23cb8979b4b3,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T10:45:37Z,add_to_cart,78fe6452-8a56-4226-ae22-f372116b12ff,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +976fce39-4f49-4e48-a940-e0c6da85e4f9,a4291657-2069-4550-bb5b-23cb8979b4b3,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T10:43:35Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +d4ac11e1-2bc5-4d2b-ab4b-a22738cb79b6,a4291657-2069-4550-bb5b-23cb8979b4b3,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T10:46:03Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,689fb64e-a4a2-45c5-b9f2-480c2155624d +13b05579-91d5-4c05-9859-2b55ac7d0c3e,a4291657-2069-4550-bb5b-23cb8979b4b3,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T10:45:07Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +c0fc3477-b0ec-4cb4-b8e5-b9f0b35f4644,a4291657-2069-4550-bb5b-23cb8979b4b3,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T10:44:25Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +4b29d72a-e84b-4389-91c2-2adffb2e2755,5b8fedc2-b7a2-4d51-875c-76db9fe8aa25,https://greenery.com/checkout/3f0de386-c2df-4cfe-98c1-bd986fdbd4c2,2021-02-10T13:57:45Z,checkout,b84e37bd-016f-4bd7-ab63-0ba81c57ea9a,3f0de386-c2df-4cfe-98c1-bd986fdbd4c2, +f3628875-647a-4cfe-ae2f-8e8b2a846856,5b8fedc2-b7a2-4d51-875c-76db9fe8aa25,https://greenery.com/shipping/3f0de386-c2df-4cfe-98c1-bd986fdbd4c2,2021-02-10T20:57:47Z,package_shipped,b84e37bd-016f-4bd7-ab63-0ba81c57ea9a,3f0de386-c2df-4cfe-98c1-bd986fdbd4c2, +218157e4-3844-4af2-8878-d558c93b08d4,5b8fedc2-b7a2-4d51-875c-76db9fe8aa25,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T13:57:13Z,add_to_cart,b84e37bd-016f-4bd7-ab63-0ba81c57ea9a,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +e899cfea-576f-4f25-9f7c-fb2f761606e6,5b8fedc2-b7a2-4d51-875c-76db9fe8aa25,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T13:56:16Z,page_view,b84e37bd-016f-4bd7-ab63-0ba81c57ea9a,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +3a4befde-6c4f-4c78-8391-2492478857f9,5b8fedc2-b7a2-4d51-875c-76db9fe8aa25,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T13:57:11Z,page_view,b84e37bd-016f-4bd7-ab63-0ba81c57ea9a,,5ceddd13-cf00-481f-9285-8340ab95d06d +83d64f75-46b1-4f22-a40d-ec127dd0e1a6,5b8fedc2-b7a2-4d51-875c-76db9fe8aa25,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T13:55:54Z,page_view,b84e37bd-016f-4bd7-ab63-0ba81c57ea9a,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +424e0f79-acc8-4a4a-990e-5a2cc5a0cf4f,a1fc9af7-fff6-479e-950d-01e1cc19c64e,https://greenery.com/checkout/2affb750-b1d9-4b84-b612-8381435bc669,2021-02-10T15:53:33Z,checkout,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,2affb750-b1d9-4b84-b612-8381435bc669, +9d1475d6-3294-4e56-9cd8-fcac727b8946,a1fc9af7-fff6-479e-950d-01e1cc19c64e,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T15:52:49Z,add_to_cart,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +a9efa3ff-5103-4722-b698-a197172355c5,a1fc9af7-fff6-479e-950d-01e1cc19c64e,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T15:51:58Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +4f18e6ba-3815-4ee3-b58d-882697725923,a1fc9af7-fff6-479e-950d-01e1cc19c64e,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T15:51:08Z,add_to_cart,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +bd6257d5-cf55-42c3-be71-631a079f96e5,a1fc9af7-fff6-479e-950d-01e1cc19c64e,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T15:49:10Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +caa3a614-f95d-4ce8-9afc-d225f356f459,a1fc9af7-fff6-479e-950d-01e1cc19c64e,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T15:52:05Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,be49171b-9f72-4fc9-bf7a-9a52e259836b +0903fdb2-ab14-40ea-9ad5-e1e99427c401,a1fc9af7-fff6-479e-950d-01e1cc19c64e,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T15:50:35Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +f724a114-42d7-4b6e-a4b8-cae31d1bd515,a1fc9af7-fff6-479e-950d-01e1cc19c64e,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T15:49:11Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,5ceddd13-cf00-481f-9285-8340ab95d06d +19963357-87ce-4009-8cc3-9846aacd266d,35b0ca2f-ecd3-419f-a105-f6ac9c366e5b,https://greenery.com/checkout/b08fa5c7-cb20-415f-ad6d-e0dfd1a23c65,2021-02-10T16:49:46Z,checkout,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,b08fa5c7-cb20-415f-ad6d-e0dfd1a23c65, +2b93a6fd-d4ff-4387-8ef8-a5e568d05914,35b0ca2f-ecd3-419f-a105-f6ac9c366e5b,https://greenery.com/shipping/b08fa5c7-cb20-415f-ad6d-e0dfd1a23c65,2021-02-10T18:49:51Z,package_shipped,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,b08fa5c7-cb20-415f-ad6d-e0dfd1a23c65, +7a253bb0-27bf-439c-af84-b2216c243a4d,35b0ca2f-ecd3-419f-a105-f6ac9c366e5b,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T16:49:26Z,add_to_cart,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +67abc09f-a3d1-4917-ae8b-968dc560fdb8,35b0ca2f-ecd3-419f-a105-f6ac9c366e5b,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T16:48:16Z,page_view,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +509a40f3-508b-429b-b6a0-ca899f72cebb,a7c7c7ff-086f-4543-b028-39466857798c,https://greenery.com/checkout/3772cac5-2ea2-4278-9166-f0703935a671,2021-02-10T09:27:58Z,checkout,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,3772cac5-2ea2-4278-9166-f0703935a671, +63d280b2-b8e9-44fc-925e-ef73fc76b784,a7c7c7ff-086f-4543-b028-39466857798c,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T09:27:26Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,80eda933-749d-4fc6-91d5-613d29eb126f +dce1a253-11ff-4e21-94a4-f76e36571e4d,a7c7c7ff-086f-4543-b028-39466857798c,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T09:26:42Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,80eda933-749d-4fc6-91d5-613d29eb126f +dd747d94-ccfc-4182-8a58-82e2d22f4cc4,a7c7c7ff-086f-4543-b028-39466857798c,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T09:26:25Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +b72de191-1868-45a4-b87b-8e8d684d777d,a7c7c7ff-086f-4543-b028-39466857798c,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T09:24:32Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +6c6bd80c-7dc2-4830-89f9-75f6a095969a,a7c7c7ff-086f-4543-b028-39466857798c,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T09:24:10Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,be49171b-9f72-4fc9-bf7a-9a52e259836b +ee8edf20-3205-448d-a3bc-e7cd3f0fc4f5,a7c7c7ff-086f-4543-b028-39466857798c,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T09:22:46Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,be49171b-9f72-4fc9-bf7a-9a52e259836b +96954561-51bd-40b4-8b14-14cae3a1ca13,a7c7c7ff-086f-4543-b028-39466857798c,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T09:26:48Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +4ded9e89-a32f-4c4f-beff-174fb94a1353,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/checkout/f684e5fd-154c-4b52-9b35-1ccc7e74190f,2021-02-10T05:29:08Z,checkout,96aa719e-c5a3-4645-ba89-16c304fb59b0,f684e5fd-154c-4b52-9b35-1ccc7e74190f, +4fb4204f-2a71-4370-9687-6ade63fba7a4,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/shipping/f684e5fd-154c-4b52-9b35-1ccc7e74190f,2021-02-10T14:29:13Z,package_shipped,96aa719e-c5a3-4645-ba89-16c304fb59b0,f684e5fd-154c-4b52-9b35-1ccc7e74190f, +ce746cec-20a6-4f3b-83d9-530134761abd,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T05:28:52Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +8ce0a130-911c-41eb-8069-c0e0965075a9,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T05:26:50Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +3ccd44ee-b163-4fca-b66e-29e5d8168c3d,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T05:26:00Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +cb409c10-b347-48a4-aa33-65945a39c1ab,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T05:24:35Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +0f0a66bd-a784-4b76-bc7a-4d78d012f7d5,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T05:24:16Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,80eda933-749d-4fc6-91d5-613d29eb126f +c5c2f172-b793-43fd-b655-5d59af7b5ef2,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T05:22:55Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,80eda933-749d-4fc6-91d5-613d29eb126f +20b4aa56-1a39-4021-82d0-0bf7d0d1a88f,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T05:22:38Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,35550082-a52d-4301-8f06-05b30f6f3616 +58f33667-47c5-4252-ad54-6135bb623216,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T05:21:33Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,35550082-a52d-4301-8f06-05b30f6f3616 +ffbc3701-1d7b-4943-b689-431077bdfcfa,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T05:20:41Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +49e2ab21-1768-42d8-9afe-c617c94cfefb,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T05:19:05Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +7454163d-85ed-4841-a248-2c183eb44e66,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T05:28:37Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +43524b63-dd1c-4937-bb52-78aeead48df3,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T05:26:58Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +b0a0a756-751f-4da4-8559-c790da938e90,e5f4b7e7-65aa-4b8d-8790-8c731effe229,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T05:25:05Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +311b9753-8449-49d5-83ec-3e296465f908,cdc395ec-ee58-4411-a190-e243a715217c,https://greenery.com/checkout/cb9cd4d2-3bce-4173-8303-62e581e91ac7,2021-02-10T08:58:38Z,checkout,bbe51ac6-6687-4cbe-9178-27d96f90836b,cb9cd4d2-3bce-4173-8303-62e581e91ac7, +308d7eee-6b2b-4a14-98b8-a3622bbbd044,cdc395ec-ee58-4411-a190-e243a715217c,https://greenery.com/shipping/cb9cd4d2-3bce-4173-8303-62e581e91ac7,2021-02-10T16:58:39Z,package_shipped,bbe51ac6-6687-4cbe-9178-27d96f90836b,cb9cd4d2-3bce-4173-8303-62e581e91ac7, +ffa9df10-47b2-43eb-bd90-38007061bd98,cdc395ec-ee58-4411-a190-e243a715217c,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T08:58:21Z,add_to_cart,bbe51ac6-6687-4cbe-9178-27d96f90836b,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +da22124a-7205-4247-ba46-df3a4735e610,cdc395ec-ee58-4411-a190-e243a715217c,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T08:56:56Z,page_view,bbe51ac6-6687-4cbe-9178-27d96f90836b,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +72004bde-d411-4fef-91ff-4b0d158b9513,cdc395ec-ee58-4411-a190-e243a715217c,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T08:56:34Z,add_to_cart,bbe51ac6-6687-4cbe-9178-27d96f90836b,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +e8882eb1-6f7d-4925-9cff-ef46d6c24f3f,cdc395ec-ee58-4411-a190-e243a715217c,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T08:54:50Z,page_view,bbe51ac6-6687-4cbe-9178-27d96f90836b,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +6f2fcac2-d724-4daf-962c-b378248a67f8,cdc395ec-ee58-4411-a190-e243a715217c,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T08:54:06Z,add_to_cart,bbe51ac6-6687-4cbe-9178-27d96f90836b,,5ceddd13-cf00-481f-9285-8340ab95d06d +7ea4761c-6e1a-42f7-847c-c8bc9aad3ee0,cdc395ec-ee58-4411-a190-e243a715217c,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T08:52:00Z,page_view,bbe51ac6-6687-4cbe-9178-27d96f90836b,,5ceddd13-cf00-481f-9285-8340ab95d06d +8b253972-d3c0-4fcb-9c46-25bbef453a09,cdc395ec-ee58-4411-a190-e243a715217c,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T08:57:59Z,page_view,bbe51ac6-6687-4cbe-9178-27d96f90836b,,37e0062f-bd15-4c3e-b272-558a86d90598 +8438d39b-63c9-4c80-ac09-f37ae7abce0d,68a03746-1ea6-4d23-b575-07720bdbf745,https://greenery.com/checkout/175d8fb5-2c45-45b5-9fe3-7b3987d05b2d,2021-02-10T17:08:26Z,checkout,6875a4d9-cdc6-43bc-a700-f6916e049e46,175d8fb5-2c45-45b5-9fe3-7b3987d05b2d, +31149b32-c069-4504-ae0a-4b7e6f1aea38,68a03746-1ea6-4d23-b575-07720bdbf745,https://greenery.com/shipping/175d8fb5-2c45-45b5-9fe3-7b3987d05b2d,2021-02-10T19:08:27Z,package_shipped,6875a4d9-cdc6-43bc-a700-f6916e049e46,175d8fb5-2c45-45b5-9fe3-7b3987d05b2d, +8587b0b7-c40b-44f5-a567-ea6a1d92eaec,68a03746-1ea6-4d23-b575-07720bdbf745,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T17:07:56Z,add_to_cart,6875a4d9-cdc6-43bc-a700-f6916e049e46,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +12a7de99-3e00-430a-a70e-554d57b4e3c9,68a03746-1ea6-4d23-b575-07720bdbf745,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T17:06:08Z,page_view,6875a4d9-cdc6-43bc-a700-f6916e049e46,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +df2a2842-5e05-4aac-81f9-fd70b0110f9d,68a03746-1ea6-4d23-b575-07720bdbf745,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T17:05:45Z,add_to_cart,6875a4d9-cdc6-43bc-a700-f6916e049e46,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +6f023982-79ee-4f8e-9ee3-5e8e55b7cbea,68a03746-1ea6-4d23-b575-07720bdbf745,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T17:03:48Z,page_view,6875a4d9-cdc6-43bc-a700-f6916e049e46,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +fe86de53-b93b-4df6-aa17-1e7160ab9437,68a03746-1ea6-4d23-b575-07720bdbf745,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T17:07:31Z,page_view,6875a4d9-cdc6-43bc-a700-f6916e049e46,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +9fd1d99d-e349-463e-b9c3-5f5f49b01047,68a03746-1ea6-4d23-b575-07720bdbf745,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T17:06:39Z,page_view,6875a4d9-cdc6-43bc-a700-f6916e049e46,,e8b6528e-a830-4d03-a027-473b411c7f02 +59876959-7a62-4e45-8b64-377f99f6cc95,9548d911-f944-45fb-8761-ba7c367d6c10,https://greenery.com/checkout/349b5ed3-cac3-401f-aef3-290bc0b8d5d7,2021-02-10T21:53:18Z,checkout,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,349b5ed3-cac3-401f-aef3-290bc0b8d5d7, +7e9df878-348b-496f-9f96-864503fa97a3,9548d911-f944-45fb-8761-ba7c367d6c10,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T21:52:55Z,add_to_cart,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +6851ac1f-ea50-4a51-bf8a-a73baa6f3f49,9548d911-f944-45fb-8761-ba7c367d6c10,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T21:52:16Z,page_view,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +9ac75d68-c7cb-4307-89b8-32ba0d3c1491,9548d911-f944-45fb-8761-ba7c367d6c10,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T21:51:54Z,add_to_cart,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,615695d3-8ffd-4850-bcf7-944cf6d3685b +c4bb2024-96fd-4ce3-8fd7-9d3ef70fa46f,9548d911-f944-45fb-8761-ba7c367d6c10,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T21:51:03Z,page_view,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,615695d3-8ffd-4850-bcf7-944cf6d3685b +24ad85a1-f24d-4c2d-acf9-8eb09affcd77,9548d911-f944-45fb-8761-ba7c367d6c10,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T21:52:02Z,page_view,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +dc4117c8-eba7-49ab-abfc-55a421a1f1a7,9548d911-f944-45fb-8761-ba7c367d6c10,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T21:50:51Z,page_view,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +fff05802-ba69-45b7-9315-0071d94330b5,9548d911-f944-45fb-8761-ba7c367d6c10,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T21:50:08Z,page_view,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +bc190df4-5bb5-4974-8521-7f53f8b989e4,c54a41ee-f212-4751-8dba-35628437ef0e,https://greenery.com/checkout/727e8c88-6cf8-497a-ae3c-3a781c5b70c3,2021-02-10T10:16:07Z,checkout,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,727e8c88-6cf8-497a-ae3c-3a781c5b70c3, +4bf210ed-da8f-4df9-ba73-59e4cce470fc,c54a41ee-f212-4751-8dba-35628437ef0e,https://greenery.com/shipping/727e8c88-6cf8-497a-ae3c-3a781c5b70c3,2021-02-10T16:16:11Z,package_shipped,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,727e8c88-6cf8-497a-ae3c-3a781c5b70c3, +b1183cfb-ba49-4e44-af97-57eaed62a4f9,c54a41ee-f212-4751-8dba-35628437ef0e,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T10:15:36Z,add_to_cart,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,5ceddd13-cf00-481f-9285-8340ab95d06d +0a8114e0-0ed5-4dcd-a697-d6bed6bb9da4,c54a41ee-f212-4751-8dba-35628437ef0e,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T10:13:34Z,page_view,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,5ceddd13-cf00-481f-9285-8340ab95d06d +8b5ab864-79ac-4bf3-91e6-e38f4922e48d,dd93c314-de5f-4564-ac56-1e6370cae6a3,https://greenery.com/checkout/b8674a2e-e825-4cde-8885-959b55d86c1a,2021-02-10T09:39:42Z,checkout,78fe6452-8a56-4226-ae22-f372116b12ff,b8674a2e-e825-4cde-8885-959b55d86c1a, +b9db8b86-7433-4dea-b748-e16de32d1465,dd93c314-de5f-4564-ac56-1e6370cae6a3,https://greenery.com/shipping/b8674a2e-e825-4cde-8885-959b55d86c1a,2021-02-10T16:39:44Z,package_shipped,78fe6452-8a56-4226-ae22-f372116b12ff,b8674a2e-e825-4cde-8885-959b55d86c1a, +4245fb9f-9056-42cf-b838-99e4ff232b08,dd93c314-de5f-4564-ac56-1e6370cae6a3,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T09:38:54Z,add_to_cart,78fe6452-8a56-4226-ae22-f372116b12ff,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +f46adfce-8f1a-45d7-a3b9-651eb67665fa,dd93c314-de5f-4564-ac56-1e6370cae6a3,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T09:37:04Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +167a4b24-1e8d-414b-b8d1-ed1eac06203b,519a09da-479d-46b8-a1a2-66599d028272,https://greenery.com/checkout/3944bd76-a630-4f50-9f41-b4e985b520ca,2021-02-10T03:44:09Z,checkout,b60b4bf2-44e4-4232-902b-79a50d448f8b,3944bd76-a630-4f50-9f41-b4e985b520ca, +32edcf59-27f8-4385-ae3d-b4f1a85e51be,519a09da-479d-46b8-a1a2-66599d028272,https://greenery.com/shipping/3944bd76-a630-4f50-9f41-b4e985b520ca,2021-02-10T09:44:13Z,package_shipped,b60b4bf2-44e4-4232-902b-79a50d448f8b,3944bd76-a630-4f50-9f41-b4e985b520ca, +8d9ce9ed-a0d1-4a66-856c-b1cd7f1e7a81,519a09da-479d-46b8-a1a2-66599d028272,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T03:43:47Z,add_to_cart,b60b4bf2-44e4-4232-902b-79a50d448f8b,,37e0062f-bd15-4c3e-b272-558a86d90598 +6f6f4908-df09-4900-8e9c-65f484d762e1,519a09da-479d-46b8-a1a2-66599d028272,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T03:42:23Z,page_view,b60b4bf2-44e4-4232-902b-79a50d448f8b,,37e0062f-bd15-4c3e-b272-558a86d90598 +6ab55f89-32ef-4c79-b5ae-015a4a4d4652,519a09da-479d-46b8-a1a2-66599d028272,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T03:42:02Z,add_to_cart,b60b4bf2-44e4-4232-902b-79a50d448f8b,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +6a1ca274-74a8-4d53-87c6-4c6254fce636,519a09da-479d-46b8-a1a2-66599d028272,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T03:41:10Z,page_view,b60b4bf2-44e4-4232-902b-79a50d448f8b,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +088fc144-9154-4142-834f-bfe77c1febe8,519a09da-479d-46b8-a1a2-66599d028272,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T03:40:41Z,add_to_cart,b60b4bf2-44e4-4232-902b-79a50d448f8b,,c17e63f7-0d28-4a95-8248-b01ea354840e +186c603a-0613-406a-b815-42614af5b571,519a09da-479d-46b8-a1a2-66599d028272,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T03:39:36Z,page_view,b60b4bf2-44e4-4232-902b-79a50d448f8b,,c17e63f7-0d28-4a95-8248-b01ea354840e +ec99de90-ba6a-42cb-8310-cc1c6078e9c0,519a09da-479d-46b8-a1a2-66599d028272,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T03:43:06Z,page_view,b60b4bf2-44e4-4232-902b-79a50d448f8b,,615695d3-8ffd-4850-bcf7-944cf6d3685b +75a5403b-ed17-4b1a-adb7-e499b06c5322,fb658364-2fe3-4e80-82df-c2a3c952e232,https://greenery.com/checkout/667f2f4e-4262-425d-bf66-9b600af692a6,2021-02-10T11:04:12Z,checkout,f47ac0f5-2afa-4e71-8328-bd881947159b,667f2f4e-4262-425d-bf66-9b600af692a6, +edb0352f-3efe-4982-87cf-655a55a47ed5,fb658364-2fe3-4e80-82df-c2a3c952e232,https://greenery.com/shipping/667f2f4e-4262-425d-bf66-9b600af692a6,2021-02-10T18:04:14Z,package_shipped,f47ac0f5-2afa-4e71-8328-bd881947159b,667f2f4e-4262-425d-bf66-9b600af692a6, +a71957d9-054b-4fcd-a85a-25e766f36d2f,fb658364-2fe3-4e80-82df-c2a3c952e232,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T11:03:50Z,add_to_cart,f47ac0f5-2afa-4e71-8328-bd881947159b,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +a93bdd18-10ce-48a9-a30c-20a70d91a6f9,fb658364-2fe3-4e80-82df-c2a3c952e232,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T11:02:20Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +92e6cbe5-3740-4d40-a4a2-d7580ed947f2,fb658364-2fe3-4e80-82df-c2a3c952e232,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T11:01:50Z,add_to_cart,f47ac0f5-2afa-4e71-8328-bd881947159b,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +44ac1cca-e7a5-46e9-9dc5-742152327b6e,fb658364-2fe3-4e80-82df-c2a3c952e232,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T10:59:49Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +8c2fe52c-a77e-4b39-9278-c651e284a994,fb658364-2fe3-4e80-82df-c2a3c952e232,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T10:58:56Z,add_to_cart,f47ac0f5-2afa-4e71-8328-bd881947159b,,74aeb414-e3dd-4e8a-beef-0fa45225214d +7784dac4-745e-4d4f-882b-878f2c514e7b,fb658364-2fe3-4e80-82df-c2a3c952e232,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T10:57:07Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,74aeb414-e3dd-4e8a-beef-0fa45225214d +856d2db3-6316-42c0-a6a2-2db4680cb550,9f21f0a9-8be1-4141-80af-e86c92dee16b,https://greenery.com/checkout/12a416f6-08d4-4db5-953e-d683ca9081f6,2021-02-10T20:23:17Z,checkout,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,12a416f6-08d4-4db5-953e-d683ca9081f6, +0a3f68e1-07d1-4c81-847b-ae9eb69a5340,9f21f0a9-8be1-4141-80af-e86c92dee16b,https://greenery.com/shipping/12a416f6-08d4-4db5-953e-d683ca9081f6,2021-02-10T22:23:20Z,package_shipped,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,12a416f6-08d4-4db5-953e-d683ca9081f6, +8d1c2756-7694-4c5a-9385-16d9acd6c71f,9f21f0a9-8be1-4141-80af-e86c92dee16b,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T20:22:26Z,add_to_cart,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +e31d073c-d2f7-48f9-81f0-018aac716e94,9f21f0a9-8be1-4141-80af-e86c92dee16b,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T20:21:45Z,page_view,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +9d57fa4c-52d8-47e5-8566-1c2f3b3b7a26,9f21f0a9-8be1-4141-80af-e86c92dee16b,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T20:21:11Z,add_to_cart,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,,37e0062f-bd15-4c3e-b272-558a86d90598 +01e61072-baed-4a10-a3a4-c42146d47498,9f21f0a9-8be1-4141-80af-e86c92dee16b,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T20:20:12Z,page_view,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,,37e0062f-bd15-4c3e-b272-558a86d90598 +390d7ae3-b78a-4394-a766-02cc22bd2dbd,9f21f0a9-8be1-4141-80af-e86c92dee16b,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T20:19:48Z,add_to_cart,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,,be49171b-9f72-4fc9-bf7a-9a52e259836b +b7691376-2978-42ca-ad20-642b131bad5a,9f21f0a9-8be1-4141-80af-e86c92dee16b,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T20:19:09Z,page_view,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,,be49171b-9f72-4fc9-bf7a-9a52e259836b +37fbeed3-2803-4dcd-867e-27efce96bd4a,9f21f0a9-8be1-4141-80af-e86c92dee16b,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T20:21:34Z,page_view,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +8f0deadc-360d-48d3-86e6-00c59b3bdaa8,9f21f0a9-8be1-4141-80af-e86c92dee16b,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T20:20:32Z,page_view,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,,80eda933-749d-4fc6-91d5-613d29eb126f +29a76ba4-5a55-48ea-81a1-f4f91b41c937,9f21f0a9-8be1-4141-80af-e86c92dee16b,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T20:19:22Z,page_view,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +1af0a08b-4fe8-4cce-8c33-2fb11def8508,56b6991b-05ed-48c0-862d-22689c4ebd2e,https://greenery.com/checkout/09431ff6-b550-4301-8d46-fde372e87af9,2021-02-10T00:01:00Z,checkout,5a9d6641-6ca6-48f0-af45-f411750f611a,09431ff6-b550-4301-8d46-fde372e87af9, +814450e9-02c8-49b1-b1bb-8fc5f3c72c96,56b6991b-05ed-48c0-862d-22689c4ebd2e,https://greenery.com/shipping/09431ff6-b550-4301-8d46-fde372e87af9,2021-02-10T04:01:02Z,package_shipped,5a9d6641-6ca6-48f0-af45-f411750f611a,09431ff6-b550-4301-8d46-fde372e87af9, +df25d77a-282d-4880-9b67-14316c806fa5,56b6991b-05ed-48c0-862d-22689c4ebd2e,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T00:00:44Z,add_to_cart,5a9d6641-6ca6-48f0-af45-f411750f611a,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +881ab483-be8f-4b8c-b60b-7ec2e7699850,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/checkout/ec9be902-7557-431c-824d-5c157c191697,2021-02-10T07:04:25Z,checkout,489039b3-4092-4ed0-9065-b87573c26f21,ec9be902-7557-431c-824d-5c157c191697, +b77bc79d-a28c-4c46-b47d-094cab2b9398,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/shipping/ec9be902-7557-431c-824d-5c157c191697,2021-02-10T14:04:30Z,package_shipped,489039b3-4092-4ed0-9065-b87573c26f21,ec9be902-7557-431c-824d-5c157c191697, +d82fe558-0a06-4e53-a28b-beeff05400a1,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T07:04:02Z,add_to_cart,489039b3-4092-4ed0-9065-b87573c26f21,,be49171b-9f72-4fc9-bf7a-9a52e259836b +db56a375-04bb-426f-8e97-7085b6ae7275,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T07:03:12Z,page_view,489039b3-4092-4ed0-9065-b87573c26f21,,be49171b-9f72-4fc9-bf7a-9a52e259836b +ffdc96c9-2fd4-4ab5-8ca9-b7cda20b08b0,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T07:02:37Z,add_to_cart,489039b3-4092-4ed0-9065-b87573c26f21,,e8b6528e-a830-4d03-a027-473b411c7f02 +2cc81603-d6cd-46fd-8d19-5e2c019dd4ab,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T07:00:54Z,page_view,489039b3-4092-4ed0-9065-b87573c26f21,,e8b6528e-a830-4d03-a027-473b411c7f02 +137374db-52c4-4bfd-87c8-46d3b583f16e,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T07:00:14Z,add_to_cart,489039b3-4092-4ed0-9065-b87573c26f21,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +e6702c4e-4ba4-4c8f-9d15-9fcbddbef052,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T06:58:45Z,page_view,489039b3-4092-4ed0-9065-b87573c26f21,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +55fa292e-2798-45f2-985b-979e0d99c51b,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T06:58:15Z,add_to_cart,489039b3-4092-4ed0-9065-b87573c26f21,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +bcbc28be-aae2-4f87-93ed-9af004f85d61,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T06:56:54Z,page_view,489039b3-4092-4ed0-9065-b87573c26f21,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +71be63b2-3c31-48dc-8f85-d31218102f60,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T06:56:14Z,add_to_cart,489039b3-4092-4ed0-9065-b87573c26f21,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +d901af32-84df-4bbf-9508-d982a0affe42,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T06:54:39Z,page_view,489039b3-4092-4ed0-9065-b87573c26f21,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +9d72e616-79b4-433c-9420-2ae73a8c7976,a04f14b2-b48a-4d5d-b101-1d19d06dc6e4,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T07:03:03Z,page_view,489039b3-4092-4ed0-9065-b87573c26f21,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +4594f051-98d3-4460-af91-3804fe3cf36b,b2730a16-c6aa-444f-89cd-0d8f02029836,https://greenery.com/checkout/c23de9da-73a2-437f-a2c2-bd257bc692c3,2021-02-10T20:54:15Z,checkout,7193aa74-ca9f-4769-b290-a817bd2e4266,c23de9da-73a2-437f-a2c2-bd257bc692c3, +4885eff6-c6ee-4582-895f-90a4fe80227e,b2730a16-c6aa-444f-89cd-0d8f02029836,https://greenery.com/shipping/c23de9da-73a2-437f-a2c2-bd257bc692c3,2021-02-10T22:54:20Z,package_shipped,7193aa74-ca9f-4769-b290-a817bd2e4266,c23de9da-73a2-437f-a2c2-bd257bc692c3, +152303ea-431d-4623-b975-a9a2a8e436d0,b2730a16-c6aa-444f-89cd-0d8f02029836,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T20:54:02Z,add_to_cart,7193aa74-ca9f-4769-b290-a817bd2e4266,,e8b6528e-a830-4d03-a027-473b411c7f02 +ca96ba7f-e042-44c1-ac45-05717daa21d2,b2730a16-c6aa-444f-89cd-0d8f02029836,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T20:52:26Z,page_view,7193aa74-ca9f-4769-b290-a817bd2e4266,,e8b6528e-a830-4d03-a027-473b411c7f02 +990fbb03-d893-4027-a32a-d525824b12e2,b2730a16-c6aa-444f-89cd-0d8f02029836,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T20:52:07Z,add_to_cart,7193aa74-ca9f-4769-b290-a817bd2e4266,,80eda933-749d-4fc6-91d5-613d29eb126f +d85f0272-c847-4f1a-843d-ea1842dc62f2,b2730a16-c6aa-444f-89cd-0d8f02029836,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T20:51:18Z,page_view,7193aa74-ca9f-4769-b290-a817bd2e4266,,80eda933-749d-4fc6-91d5-613d29eb126f +5d32168d-0f5f-4648-83ab-e2ebfa7c6bd5,b2730a16-c6aa-444f-89cd-0d8f02029836,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T20:52:18Z,page_view,7193aa74-ca9f-4769-b290-a817bd2e4266,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +77ef1657-efcf-44e7-a6ec-b3345f0888dd,b2730a16-c6aa-444f-89cd-0d8f02029836,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T20:50:52Z,page_view,7193aa74-ca9f-4769-b290-a817bd2e4266,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +a33bcb4d-2083-4cfb-9161-e8cbd233d44d,12087043-91c8-4db8-b3fa-a0192d6c375b,https://greenery.com/checkout/b9523b83-4b6f-41d3-8681-b946313ac6c3,2021-02-10T18:05:25Z,checkout,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,b9523b83-4b6f-41d3-8681-b946313ac6c3, +3f75afe8-af76-4191-ad48-d5e0a3fcbbb0,12087043-91c8-4db8-b3fa-a0192d6c375b,https://greenery.com/shipping/b9523b83-4b6f-41d3-8681-b946313ac6c3,2021-02-10T23:05:26Z,package_shipped,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,b9523b83-4b6f-41d3-8681-b946313ac6c3, +48c104c0-139d-4e4a-827a-df8032d7e38f,12087043-91c8-4db8-b3fa-a0192d6c375b,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T18:05:06Z,add_to_cart,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,74aeb414-e3dd-4e8a-beef-0fa45225214d +b29b0609-e73f-4ff6-b79f-5d426f38a669,12087043-91c8-4db8-b3fa-a0192d6c375b,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T18:03:07Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,74aeb414-e3dd-4e8a-beef-0fa45225214d +e9261e12-3054-4b0b-9f40-e357a076a486,12087043-91c8-4db8-b3fa-a0192d6c375b,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T18:02:20Z,add_to_cart,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +02f740e3-2022-4c0e-b471-f5e647d115b4,12087043-91c8-4db8-b3fa-a0192d6c375b,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T18:00:43Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +af3b2221-f095-4bea-82b4-a812f719d7cd,12087043-91c8-4db8-b3fa-a0192d6c375b,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T18:00:03Z,add_to_cart,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,e8b6528e-a830-4d03-a027-473b411c7f02 +043808a9-96e0-44f4-82c2-83b7abf2aee0,12087043-91c8-4db8-b3fa-a0192d6c375b,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T17:58:50Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,e8b6528e-a830-4d03-a027-473b411c7f02 +450ce380-4b08-42cb-87fc-07298a18321b,12087043-91c8-4db8-b3fa-a0192d6c375b,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T18:04:09Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +f5fa3ec7-995a-4257-aebd-0220cea7ac44,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/checkout/fd47d88b-69d6-403b-bf53-b108819098f0,2021-02-10T00:57:25Z,checkout,02414bff-285d-4008-9352-ad50839b729f,fd47d88b-69d6-403b-bf53-b108819098f0, +d63cfd5c-e331-480f-b749-1f0986e85175,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/shipping/fd47d88b-69d6-403b-bf53-b108819098f0,2021-02-10T06:57:30Z,package_shipped,02414bff-285d-4008-9352-ad50839b729f,fd47d88b-69d6-403b-bf53-b108819098f0, +ef35b049-f568-4182-9d65-98ad0882e804,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T00:56:45Z,add_to_cart,02414bff-285d-4008-9352-ad50839b729f,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +df7d9ca3-24a8-4773-a78a-8739d523c32d,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T00:54:56Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +e1805d37-12aa-4697-9242-5caeeed867e7,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T00:54:22Z,add_to_cart,02414bff-285d-4008-9352-ad50839b729f,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +3b25ba3d-852f-4736-961f-45dc66c3967a,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T00:52:16Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +1c6c06fc-06db-4864-bb12-652b80bb1d1e,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T00:51:20Z,add_to_cart,02414bff-285d-4008-9352-ad50839b729f,,35550082-a52d-4301-8f06-05b30f6f3616 +c31636bf-a815-48ef-9621-92c4220f3c20,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T00:50:23Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,35550082-a52d-4301-8f06-05b30f6f3616 +b1fac678-582b-4524-a87c-76b27b0e2e1d,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T00:50:05Z,add_to_cart,02414bff-285d-4008-9352-ad50839b729f,,e5ee99b6-519f-4218-8b41-62f48f59f700 +d457828d-ed59-404f-b144-44055dc0e08c,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T00:49:08Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,e5ee99b6-519f-4218-8b41-62f48f59f700 +d4e7cd8c-3e1a-4c23-ac75-efba24decddd,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T00:48:47Z,add_to_cart,02414bff-285d-4008-9352-ad50839b729f,,80eda933-749d-4fc6-91d5-613d29eb126f +95315175-d982-44a8-b460-c1a9381cb085,fbc046a7-9603-4922-8abd-0d535fb431c0,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T00:46:57Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,80eda933-749d-4fc6-91d5-613d29eb126f +1737a9e9-a41d-47e5-876e-63c139427626,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/checkout/8f024856-4bf8-4117-81ac-d61f62c91158,2021-02-10T20:13:49Z,checkout,dbc936d7-51da-4dfa-9dd9-7ce399b466df,8f024856-4bf8-4117-81ac-d61f62c91158, +46c04de3-a918-48dd-acdd-1cfa17e19fad,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/shipping/8f024856-4bf8-4117-81ac-d61f62c91158,2021-02-10T22:13:51Z,package_shipped,dbc936d7-51da-4dfa-9dd9-7ce399b466df,8f024856-4bf8-4117-81ac-d61f62c91158, +7318763a-48e9-4709-acb1-d97f98f0eff0,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T20:13:04Z,add_to_cart,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +0007a1f6-0123-4ab3-bac3-6dfefa832975,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T20:11:13Z,page_view,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +45c0a9a4-615a-45d3-af2c-3f15f29159a0,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T20:10:47Z,add_to_cart,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +6a6552e7-d36a-4317-98fe-cdf851a423bf,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T20:09:54Z,page_view,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +ff73bf73-6a33-4e4b-9bbf-78b6227a5cf3,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T20:09:15Z,add_to_cart,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +94dc0919-3012-44b1-ad33-554fda899e9e,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T20:07:31Z,page_view,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +c56d9bef-ef9f-43ad-a394-23b6fa60becf,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T20:07:12Z,add_to_cart,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +c4ac9bbe-8de5-47e4-9011-778d96b0b88f,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T20:05:23Z,page_view,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +fd7b3b94-5654-4292-8b1d-66381bbaa9db,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T20:11:59Z,page_view,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,e5ee99b6-519f-4218-8b41-62f48f59f700 +6954d60e-b57f-4585-9e27-79b615501d94,5c5815ab-17ca-489c-b191-b69e618aadac,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T20:10:29Z,page_view,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,689fb64e-a4a2-45c5-b9f2-480c2155624d +f8647833-b9b8-48b4-8497-6b915a2026ce,41b2dcb2-c50f-4332-aae3-773983ce604c,https://greenery.com/checkout/032b02a8-84fe-4c54-950a-e5757021ecc2,2021-02-10T06:01:00Z,checkout,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,032b02a8-84fe-4c54-950a-e5757021ecc2, +9354d4df-e70e-46c7-bc0d-37f7c0f22ace,41b2dcb2-c50f-4332-aae3-773983ce604c,https://greenery.com/shipping/032b02a8-84fe-4c54-950a-e5757021ecc2,2021-02-10T10:01:02Z,package_shipped,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,032b02a8-84fe-4c54-950a-e5757021ecc2, +48b0a8df-6d82-4719-80d1-c716e114b634,41b2dcb2-c50f-4332-aae3-773983ce604c,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T06:00:25Z,add_to_cart,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +99888fd6-374c-47f0-a98c-f5098d7de0be,41b2dcb2-c50f-4332-aae3-773983ce604c,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T05:59:00Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +2819a7ce-8666-47a9-93b4-b4ce140b2375,d1fe6d82-aa51-4417-83e4-afd2899f7888,https://greenery.com/checkout/9eb8e518-6851-453b-98b9-cd5c38f4f80f,2021-02-10T09:47:22Z,checkout,93908a68-20b7-44ba-b6c1-6f4cc57d7726,9eb8e518-6851-453b-98b9-cd5c38f4f80f, +62b159b0-3cc1-4826-a302-960d8df2e698,d1fe6d82-aa51-4417-83e4-afd2899f7888,https://greenery.com/shipping/9eb8e518-6851-453b-98b9-cd5c38f4f80f,2021-02-10T14:47:26Z,package_shipped,93908a68-20b7-44ba-b6c1-6f4cc57d7726,9eb8e518-6851-453b-98b9-cd5c38f4f80f, +016d641e-863f-46f3-a396-a091eff998a4,d1fe6d82-aa51-4417-83e4-afd2899f7888,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T09:46:46Z,add_to_cart,93908a68-20b7-44ba-b6c1-6f4cc57d7726,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +0118b198-bbcb-484e-91ac-1f9f94e2db17,d1fe6d82-aa51-4417-83e4-afd2899f7888,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T09:45:01Z,page_view,93908a68-20b7-44ba-b6c1-6f4cc57d7726,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +c48323d5-299a-4233-981e-cf8b5fad1dcd,d1fe6d82-aa51-4417-83e4-afd2899f7888,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T09:44:32Z,add_to_cart,93908a68-20b7-44ba-b6c1-6f4cc57d7726,,e5ee99b6-519f-4218-8b41-62f48f59f700 +8c6af09e-c809-4baa-bed4-d40f4cfc53e7,d1fe6d82-aa51-4417-83e4-afd2899f7888,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T09:42:48Z,page_view,93908a68-20b7-44ba-b6c1-6f4cc57d7726,,e5ee99b6-519f-4218-8b41-62f48f59f700 +186f49ed-605e-4b95-b5a7-dd01b75fb9ba,d1fe6d82-aa51-4417-83e4-afd2899f7888,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T09:45:41Z,page_view,93908a68-20b7-44ba-b6c1-6f4cc57d7726,,689fb64e-a4a2-45c5-b9f2-480c2155624d +6674e73a-9186-49a7-aa18-831002d2029e,d1fe6d82-aa51-4417-83e4-afd2899f7888,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T09:44:15Z,page_view,93908a68-20b7-44ba-b6c1-6f4cc57d7726,,5ceddd13-cf00-481f-9285-8340ab95d06d +1c5d3356-9d3f-4dd7-9af2-6d0dedf4f4e6,d1fe6d82-aa51-4417-83e4-afd2899f7888,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T09:42:41Z,page_view,93908a68-20b7-44ba-b6c1-6f4cc57d7726,,c17e63f7-0d28-4a95-8248-b01ea354840e +4e18a1c3-6b18-4afa-a800-bdb5b195c29e,cd6884a8-43a6-40f3-a271-ec65d8011c24,https://greenery.com/checkout/b3773cdd-b925-4eda-906c-57fa5d0e5a55,2021-02-10T21:54:16Z,checkout,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,b3773cdd-b925-4eda-906c-57fa5d0e5a55, +887a6f27-4372-4f25-893d-19422d1178dc,cd6884a8-43a6-40f3-a271-ec65d8011c24,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T21:53:54Z,add_to_cart,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +0c376d7a-284d-484d-a45c-b60545d2694a,cd6884a8-43a6-40f3-a271-ec65d8011c24,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T21:52:33Z,page_view,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +75d94325-66c0-4d65-a44d-1345d948d202,cd6884a8-43a6-40f3-a271-ec65d8011c24,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T21:51:38Z,add_to_cart,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,,689fb64e-a4a2-45c5-b9f2-480c2155624d +33af1082-5e87-47ef-b4f3-5de8eee2263d,cd6884a8-43a6-40f3-a271-ec65d8011c24,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T21:50:22Z,page_view,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,,689fb64e-a4a2-45c5-b9f2-480c2155624d +eb84e532-6167-4132-a558-f5f0a752fdc7,cd6884a8-43a6-40f3-a271-ec65d8011c24,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T21:52:19Z,page_view,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,,35550082-a52d-4301-8f06-05b30f6f3616 +a36bbe68-6aa7-4bf6-a34f-9356c2a962fd,b4120833-c9d8-4adb-b154-748b467c6ed8,https://greenery.com/checkout/f9d41e2a-81fa-400d-930f-a960c3135db9,2021-02-10T12:14:44Z,checkout,2d90a679-c85d-4299-86dd-2319424fcc15,f9d41e2a-81fa-400d-930f-a960c3135db9, +ce1af78d-cc17-4007-8c8d-6f8f1139c416,b4120833-c9d8-4adb-b154-748b467c6ed8,https://greenery.com/shipping/f9d41e2a-81fa-400d-930f-a960c3135db9,2021-02-10T15:14:46Z,package_shipped,2d90a679-c85d-4299-86dd-2319424fcc15,f9d41e2a-81fa-400d-930f-a960c3135db9, +1f4787f7-7eb9-458b-a0e9-ebddc281a214,b4120833-c9d8-4adb-b154-748b467c6ed8,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T12:14:19Z,add_to_cart,2d90a679-c85d-4299-86dd-2319424fcc15,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +2277543f-73a6-4424-90b4-d2822840fe62,b4120833-c9d8-4adb-b154-748b467c6ed8,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T12:12:23Z,page_view,2d90a679-c85d-4299-86dd-2319424fcc15,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +2e99ff17-48f1-4215-bce8-76cc7aa2e7f6,b4120833-c9d8-4adb-b154-748b467c6ed8,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T12:11:57Z,add_to_cart,2d90a679-c85d-4299-86dd-2319424fcc15,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +9437a6e2-5ff4-436a-bc77-a476dcf0350a,b4120833-c9d8-4adb-b154-748b467c6ed8,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T12:10:55Z,page_view,2d90a679-c85d-4299-86dd-2319424fcc15,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +0481dbf3-d359-44df-a2fd-4ea1ef06e646,b4120833-c9d8-4adb-b154-748b467c6ed8,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T12:10:09Z,add_to_cart,2d90a679-c85d-4299-86dd-2319424fcc15,,e5ee99b6-519f-4218-8b41-62f48f59f700 +5fea836b-f89f-41a4-a381-437a0adfad2b,b4120833-c9d8-4adb-b154-748b467c6ed8,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T12:09:23Z,page_view,2d90a679-c85d-4299-86dd-2319424fcc15,,e5ee99b6-519f-4218-8b41-62f48f59f700 +07337543-4f21-46b5-af5c-5ad3a1e10435,b4120833-c9d8-4adb-b154-748b467c6ed8,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T12:13:29Z,page_view,2d90a679-c85d-4299-86dd-2319424fcc15,,80eda933-749d-4fc6-91d5-613d29eb126f +7d4255b0-3e90-43fb-8918-a6d46d73e40a,b4120833-c9d8-4adb-b154-748b467c6ed8,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T12:11:41Z,page_view,2d90a679-c85d-4299-86dd-2319424fcc15,,689fb64e-a4a2-45c5-b9f2-480c2155624d +44984d48-5b3c-415d-a55f-299c3a657fe3,5cc57f09-bdea-4644-8dd5-e56ae9867f32,https://greenery.com/checkout/93a40bfd-c161-47be-8659-714ca706b514,2021-02-10T00:57:13Z,checkout,f9178203-61c0-4597-9070-6dc453ada601,93a40bfd-c161-47be-8659-714ca706b514, +3cc9c179-075e-4a08-8f26-c2c3339c6e73,5cc57f09-bdea-4644-8dd5-e56ae9867f32,https://greenery.com/shipping/93a40bfd-c161-47be-8659-714ca706b514,2021-02-10T04:57:16Z,package_shipped,f9178203-61c0-4597-9070-6dc453ada601,93a40bfd-c161-47be-8659-714ca706b514, +4c9c6c67-df30-4367-a82c-5f2ba90a6961,5cc57f09-bdea-4644-8dd5-e56ae9867f32,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T00:56:27Z,add_to_cart,f9178203-61c0-4597-9070-6dc453ada601,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +85a0e8d2-7459-4366-b741-84c10897ff25,5cc57f09-bdea-4644-8dd5-e56ae9867f32,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T00:55:21Z,page_view,f9178203-61c0-4597-9070-6dc453ada601,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +b4c2e8d0-cefb-4d5f-be27-61b0d8872fe3,5cc57f09-bdea-4644-8dd5-e56ae9867f32,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T00:55:51Z,page_view,f9178203-61c0-4597-9070-6dc453ada601,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +208f93e3-0d82-4c8d-8965-a765015d97b7,5cc57f09-bdea-4644-8dd5-e56ae9867f32,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T00:53:47Z,page_view,f9178203-61c0-4597-9070-6dc453ada601,,e8b6528e-a830-4d03-a027-473b411c7f02 +df026f3b-9bff-47ca-9a5b-34bb7a93f5b6,5cc57f09-bdea-4644-8dd5-e56ae9867f32,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T00:51:50Z,page_view,f9178203-61c0-4597-9070-6dc453ada601,,5ceddd13-cf00-481f-9285-8340ab95d06d +32db37be-1169-4ec4-a8da-085f54d188c7,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/checkout/92d3887f-6f9e-4e3f-85a8-3da52d46cd45,2021-02-10T23:11:12Z,checkout,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,92d3887f-6f9e-4e3f-85a8-3da52d46cd45, +f6e5f3c9-c02b-4984-8ab7-7fdf4ce05d30,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T23:10:23Z,add_to_cart,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +1b104c65-e246-4a98-b958-08d87a240ee9,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T23:09:21Z,page_view,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +a125a385-b622-4ee2-8e0f-88e2be2dc47b,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T23:08:28Z,add_to_cart,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +8e271c6f-8dfb-491d-a8ac-13d739881717,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T23:06:25Z,page_view,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +899f0843-76cd-4f2e-9bc9-d6e50a39f535,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T23:05:56Z,add_to_cart,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +a308410d-59dd-4c0b-a631-ed045995db5a,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T23:04:01Z,page_view,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +d6fd50a6-9eee-4a01-9dcc-e2341904dcd8,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T23:03:37Z,add_to_cart,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +3a3725a0-0ad2-4d35-9197-3aff07da82d3,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T23:02:49Z,page_view,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +a88f19a9-a45a-4ba9-896d-14d944de749f,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T23:02:07Z,add_to_cart,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +c969dc0a-2c31-4341-b84a-b88e1a630a70,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T23:00:51Z,page_view,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +19d41377-7d4e-4c51-8ba4-fe82010e5bbe,8505070d-dfb7-4d6c-ba63-8900ee15e0ea,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T23:09:34Z,page_view,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,80eda933-749d-4fc6-91d5-613d29eb126f +8d6065e4-3ea3-4195-8dd7-7b140aa75f85,d0d30b4a-e1b3-4054-89a7-eca2f230cbb9,https://greenery.com/checkout/5e75b8f4-e03e-462f-8a91-027bfaf3e8b4,2021-02-10T04:24:02Z,checkout,1690815f-a96f-4f41-af89-bde6e90ad560,5e75b8f4-e03e-462f-8a91-027bfaf3e8b4, +2a3a2439-09bd-4ee4-b066-d0d7131c5417,d0d30b4a-e1b3-4054-89a7-eca2f230cbb9,https://greenery.com/shipping/5e75b8f4-e03e-462f-8a91-027bfaf3e8b4,2021-02-10T07:24:05Z,package_shipped,1690815f-a96f-4f41-af89-bde6e90ad560,5e75b8f4-e03e-462f-8a91-027bfaf3e8b4, +b69a5bea-a09e-4a24-bbd8-6b36f6ded0bb,d0d30b4a-e1b3-4054-89a7-eca2f230cbb9,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T04:23:25Z,add_to_cart,1690815f-a96f-4f41-af89-bde6e90ad560,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +478d507f-9c2e-4d6c-a6be-6e220b8b7012,d0d30b4a-e1b3-4054-89a7-eca2f230cbb9,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T04:21:42Z,page_view,1690815f-a96f-4f41-af89-bde6e90ad560,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +93671b3e-1f66-4a72-a4c4-28622831eb89,d0d30b4a-e1b3-4054-89a7-eca2f230cbb9,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T04:22:03Z,page_view,1690815f-a96f-4f41-af89-bde6e90ad560,,c17e63f7-0d28-4a95-8248-b01ea354840e +78480b44-d73b-40a9-9c12-957480563c41,d0d30b4a-e1b3-4054-89a7-eca2f230cbb9,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T04:20:55Z,page_view,1690815f-a96f-4f41-af89-bde6e90ad560,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +0af653af-8cce-42c6-8b91-ce9026f8d1a7,d0d30b4a-e1b3-4054-89a7-eca2f230cbb9,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T04:18:59Z,page_view,1690815f-a96f-4f41-af89-bde6e90ad560,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +28917360-3159-4b2b-ac94-b014c12b20b7,44e5feeb-10bd-4f54-b452-a58f363104c1,https://greenery.com/checkout/5a00119e-674a-4f04-8b87-d8d48129a771,2021-02-10T06:10:08Z,checkout,467a047e-c8df-4304-8fc9-949acd7bcf4a,5a00119e-674a-4f04-8b87-d8d48129a771, +da5db6df-0174-4c2c-8520-340e8b6eeefd,44e5feeb-10bd-4f54-b452-a58f363104c1,https://greenery.com/shipping/5a00119e-674a-4f04-8b87-d8d48129a771,2021-02-10T12:10:12Z,package_shipped,467a047e-c8df-4304-8fc9-949acd7bcf4a,5a00119e-674a-4f04-8b87-d8d48129a771, +974a3748-13e2-466e-89c0-f2032e0f4f06,44e5feeb-10bd-4f54-b452-a58f363104c1,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T06:09:53Z,add_to_cart,467a047e-c8df-4304-8fc9-949acd7bcf4a,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +eb6a36e2-dd0c-4395-aa28-5338f496d939,44e5feeb-10bd-4f54-b452-a58f363104c1,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T06:08:36Z,page_view,467a047e-c8df-4304-8fc9-949acd7bcf4a,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +00f3b643-adcd-427a-be6b-cd58fdcc4536,44e5feeb-10bd-4f54-b452-a58f363104c1,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T06:08:28Z,page_view,467a047e-c8df-4304-8fc9-949acd7bcf4a,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +e112d812-f9d0-4717-a301-dc292d8b6cf3,44e5feeb-10bd-4f54-b452-a58f363104c1,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T06:06:30Z,page_view,467a047e-c8df-4304-8fc9-949acd7bcf4a,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +8e12e3d4-dd3d-4ed5-8127-87be616a9247,83d877c9-1573-4227-9257-b9209871f6af,https://greenery.com/checkout/cc5d3269-258b-4661-b83e-6aaba676fb46,2021-02-10T12:32:08Z,checkout,8d8916e6-9820-49aa-bde8-8657dcfa7395,cc5d3269-258b-4661-b83e-6aaba676fb46, +817ac478-1faa-4906-b7d4-82ef5d008270,83d877c9-1573-4227-9257-b9209871f6af,https://greenery.com/shipping/cc5d3269-258b-4661-b83e-6aaba676fb46,2021-02-10T21:32:10Z,package_shipped,8d8916e6-9820-49aa-bde8-8657dcfa7395,cc5d3269-258b-4661-b83e-6aaba676fb46, +e2186e40-8e78-4f47-9d98-a104153ae9bc,83d877c9-1573-4227-9257-b9209871f6af,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T12:31:19Z,add_to_cart,8d8916e6-9820-49aa-bde8-8657dcfa7395,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +64c9a9c0-3239-4d4e-830c-c7d94da07f64,83d877c9-1573-4227-9257-b9209871f6af,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T12:30:27Z,page_view,8d8916e6-9820-49aa-bde8-8657dcfa7395,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +66bd0a9c-b9a4-46da-883b-4bb6d9b4c282,83d877c9-1573-4227-9257-b9209871f6af,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T12:30:52Z,page_view,8d8916e6-9820-49aa-bde8-8657dcfa7395,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +fb2afe52-3b5f-48c5-ba08-8596f59fcafe,83d877c9-1573-4227-9257-b9209871f6af,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T12:30:00Z,page_view,8d8916e6-9820-49aa-bde8-8657dcfa7395,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +98bebbb4-4226-44f5-a7c9-0cbc08d33359,83d877c9-1573-4227-9257-b9209871f6af,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T12:29:06Z,page_view,8d8916e6-9820-49aa-bde8-8657dcfa7395,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +3181c92e-e981-4aea-8699-954df77a6da9,c164c06f-2758-46b6-a00c-939650d7382f,https://greenery.com/checkout/19644506-d739-4f1b-baf7-3ecc8833c329,2021-02-10T07:59:40Z,checkout,e879df28-ff9c-4900-b99c-c769ec349316,19644506-d739-4f1b-baf7-3ecc8833c329, +04c29c86-4439-404f-84dc-d8955a2a409b,c164c06f-2758-46b6-a00c-939650d7382f,https://greenery.com/shipping/19644506-d739-4f1b-baf7-3ecc8833c329,2021-02-10T13:59:44Z,package_shipped,e879df28-ff9c-4900-b99c-c769ec349316,19644506-d739-4f1b-baf7-3ecc8833c329, +a3fa235c-5f31-4077-807c-7b2620b528c6,c164c06f-2758-46b6-a00c-939650d7382f,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T07:58:48Z,add_to_cart,e879df28-ff9c-4900-b99c-c769ec349316,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +f439f05d-9faa-4a14-8eac-514db6e2cb58,c164c06f-2758-46b6-a00c-939650d7382f,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T07:57:54Z,page_view,e879df28-ff9c-4900-b99c-c769ec349316,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +5a44f870-be7a-4fa5-b200-b7d48c95972c,2856ac5f-2b2d-46e0-ad7b-6f705593570a,https://greenery.com/checkout/87a0f788-bba9-40b9-8c39-7df9d4dece24,2021-02-10T06:38:59Z,checkout,c4f8645d-471d-4c3b-aa5c-dd2f30115669,87a0f788-bba9-40b9-8c39-7df9d4dece24, +6feb91e2-2542-43ef-acd3-b0912451fba0,2856ac5f-2b2d-46e0-ad7b-6f705593570a,https://greenery.com/shipping/87a0f788-bba9-40b9-8c39-7df9d4dece24,2021-02-10T11:39:04Z,package_shipped,c4f8645d-471d-4c3b-aa5c-dd2f30115669,87a0f788-bba9-40b9-8c39-7df9d4dece24, +fb3d5cf1-04dd-4bad-9454-7efbdd98991e,2856ac5f-2b2d-46e0-ad7b-6f705593570a,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T06:38:12Z,add_to_cart,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +f29f5a95-d1ef-4415-8cf7-54673de0f654,2856ac5f-2b2d-46e0-ad7b-6f705593570a,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T06:37:15Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +39f264fa-0f75-41f2-9aa4-962dce70491d,2856ac5f-2b2d-46e0-ad7b-6f705593570a,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T06:36:50Z,add_to_cart,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +03d13371-6e10-49a7-b6f6-04675a8d6e52,2856ac5f-2b2d-46e0-ad7b-6f705593570a,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T06:35:25Z,page_view,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +d4aaae8e-85aa-441a-8b2c-f0fb21d42355,47c3e21e-f00f-4795-bd8a-e944b71688af,https://greenery.com/checkout/59c79883-a968-49af-833b-7305f181c669,2021-02-10T17:20:38Z,checkout,366bd18f-6a16-4f39-9177-080c11ce9f25,59c79883-a968-49af-833b-7305f181c669, +bdb65d4d-dc44-4c0e-b483-0788b41fb2ec,47c3e21e-f00f-4795-bd8a-e944b71688af,https://greenery.com/shipping/59c79883-a968-49af-833b-7305f181c669,2021-02-10T20:20:42Z,package_shipped,366bd18f-6a16-4f39-9177-080c11ce9f25,59c79883-a968-49af-833b-7305f181c669, +f0088f47-4a1e-49bb-9f22-4bfb3abe0c42,47c3e21e-f00f-4795-bd8a-e944b71688af,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T17:19:54Z,add_to_cart,366bd18f-6a16-4f39-9177-080c11ce9f25,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +d6164f52-062f-43e8-a562-449852fd99ec,47c3e21e-f00f-4795-bd8a-e944b71688af,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T17:17:50Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +c36017d2-ca27-4887-918b-e788b8d5eb23,47c3e21e-f00f-4795-bd8a-e944b71688af,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T17:17:01Z,add_to_cart,366bd18f-6a16-4f39-9177-080c11ce9f25,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +a7e47318-4f87-47ac-be7f-8abcb3d1ffd0,47c3e21e-f00f-4795-bd8a-e944b71688af,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T17:15:08Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +909a98d1-443f-407c-8c78-62d1b4cd9faf,47c3e21e-f00f-4795-bd8a-e944b71688af,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T17:14:36Z,add_to_cart,366bd18f-6a16-4f39-9177-080c11ce9f25,,80eda933-749d-4fc6-91d5-613d29eb126f +cacf6827-4a2e-4128-a70b-f1e470c5b7c5,47c3e21e-f00f-4795-bd8a-e944b71688af,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T17:12:44Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,80eda933-749d-4fc6-91d5-613d29eb126f +29403770-db8c-4285-bb3c-ddab95e9e7ce,f1f46c04-5b89-4cf5-8254-dbac6225f26c,https://greenery.com/checkout/b3cb4101-b1c4-40d0-89e6-a029f1dcce5b,2021-02-10T12:42:26Z,checkout,9208a361-ea2f-4f75-a2b4-281b55df08a9,b3cb4101-b1c4-40d0-89e6-a029f1dcce5b, +b5bd4409-c45b-4dcb-b4c9-ad30046ab1e7,f1f46c04-5b89-4cf5-8254-dbac6225f26c,https://greenery.com/shipping/b3cb4101-b1c4-40d0-89e6-a029f1dcce5b,2021-02-10T19:42:31Z,package_shipped,9208a361-ea2f-4f75-a2b4-281b55df08a9,b3cb4101-b1c4-40d0-89e6-a029f1dcce5b, +1b179f4b-c4f1-4b35-9c3e-2f7e0de1816e,f1f46c04-5b89-4cf5-8254-dbac6225f26c,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T12:42:11Z,add_to_cart,9208a361-ea2f-4f75-a2b4-281b55df08a9,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +f1d0dac0-ace9-4d3e-9652-ef6489dbe00c,f1f46c04-5b89-4cf5-8254-dbac6225f26c,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T12:40:09Z,page_view,9208a361-ea2f-4f75-a2b4-281b55df08a9,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +583e8211-e259-444d-8fc8-be6e7c4889b3,f1f46c04-5b89-4cf5-8254-dbac6225f26c,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T12:39:37Z,add_to_cart,9208a361-ea2f-4f75-a2b4-281b55df08a9,,c17e63f7-0d28-4a95-8248-b01ea354840e +0df0c731-175e-45b0-ad0e-70fde52e9000,f1f46c04-5b89-4cf5-8254-dbac6225f26c,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T12:38:27Z,page_view,9208a361-ea2f-4f75-a2b4-281b55df08a9,,c17e63f7-0d28-4a95-8248-b01ea354840e +782a624d-1f64-44c4-a356-3a4fc7317583,f1f46c04-5b89-4cf5-8254-dbac6225f26c,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T12:41:48Z,page_view,9208a361-ea2f-4f75-a2b4-281b55df08a9,,35550082-a52d-4301-8f06-05b30f6f3616 +3b2fd6ed-53fe-4642-8cf2-a4996afbd884,f1f46c04-5b89-4cf5-8254-dbac6225f26c,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T12:40:02Z,page_view,9208a361-ea2f-4f75-a2b4-281b55df08a9,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +61c4c49c-63d4-44a6-90b6-ca326b8abbbf,f1f46c04-5b89-4cf5-8254-dbac6225f26c,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T12:39:25Z,page_view,9208a361-ea2f-4f75-a2b4-281b55df08a9,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +3c1af3f1-448d-42b6-8191-2b6c814fca1e,f36d7252-5df1-490c-aebc-2541f13ef420,https://greenery.com/checkout/50c99578-5773-4467-ab2b-3105a8f51645,2021-02-10T13:52:35Z,checkout,19ac513f-b77e-4808-ade4-284ece721d91,50c99578-5773-4467-ab2b-3105a8f51645, +d3249272-1c16-4d24-b757-99bceff5117b,f36d7252-5df1-490c-aebc-2541f13ef420,https://greenery.com/shipping/50c99578-5773-4467-ab2b-3105a8f51645,2021-02-10T22:52:38Z,package_shipped,19ac513f-b77e-4808-ade4-284ece721d91,50c99578-5773-4467-ab2b-3105a8f51645, +d74ad5e1-8926-4957-8986-9f1cab4fc18b,f36d7252-5df1-490c-aebc-2541f13ef420,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T13:51:50Z,add_to_cart,19ac513f-b77e-4808-ade4-284ece721d91,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +54d532c6-0a1c-4d69-bbe6-9cb747aebb29,f36d7252-5df1-490c-aebc-2541f13ef420,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T13:51:03Z,page_view,19ac513f-b77e-4808-ade4-284ece721d91,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +30b02787-8323-4685-b422-9fe3840e1a70,f36d7252-5df1-490c-aebc-2541f13ef420,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T13:50:24Z,add_to_cart,19ac513f-b77e-4808-ade4-284ece721d91,,37e0062f-bd15-4c3e-b272-558a86d90598 +6042ff6a-1f76-4007-815b-61c30fc9cb6e,f36d7252-5df1-490c-aebc-2541f13ef420,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T13:49:13Z,page_view,19ac513f-b77e-4808-ade4-284ece721d91,,37e0062f-bd15-4c3e-b272-558a86d90598 +f6ab0acd-5b70-4c01-9fb6-6a01a851f346,f36d7252-5df1-490c-aebc-2541f13ef420,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T13:51:53Z,page_view,19ac513f-b77e-4808-ade4-284ece721d91,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +a92f7c13-a0d0-409f-a5d8-69dc9d861128,f36d7252-5df1-490c-aebc-2541f13ef420,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T13:51:12Z,page_view,19ac513f-b77e-4808-ade4-284ece721d91,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +7a442161-2998-4d63-9fd0-de4293908164,f36d7252-5df1-490c-aebc-2541f13ef420,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T13:50:21Z,page_view,19ac513f-b77e-4808-ade4-284ece721d91,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +bbc20b9a-2adc-49b6-9158-2cfe1e0d2f23,8224d3fe-f195-4594-9a9e-893d6c020730,https://greenery.com/checkout/6056966f-4515-4b6c-b1a6-7f55ca774b78,2021-02-10T20:19:49Z,checkout,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,6056966f-4515-4b6c-b1a6-7f55ca774b78, +496f0a24-1f36-4216-bea5-7cb7fd56c4ca,8224d3fe-f195-4594-9a9e-893d6c020730,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T20:19:08Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,35550082-a52d-4301-8f06-05b30f6f3616 +5030abe0-2ef9-451a-84ca-0360b7cfc6b3,8224d3fe-f195-4594-9a9e-893d6c020730,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T20:17:31Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,35550082-a52d-4301-8f06-05b30f6f3616 +cd714d3a-97aa-447c-a96f-5e5027d617b8,8224d3fe-f195-4594-9a9e-893d6c020730,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T20:17:08Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,e8b6528e-a830-4d03-a027-473b411c7f02 +8a756ca5-e188-4eb5-82fa-3a9209dd7aac,8224d3fe-f195-4594-9a9e-893d6c020730,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T20:15:10Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,e8b6528e-a830-4d03-a027-473b411c7f02 +f1d7b615-8a26-491d-8314-956f90063441,8224d3fe-f195-4594-9a9e-893d6c020730,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T20:14:47Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +ab639ddd-f3e9-4a6c-be0c-36943bbb4504,8224d3fe-f195-4594-9a9e-893d6c020730,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T20:13:16Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +8ffe123d-4235-404d-bf8f-aa2ad79d920b,8224d3fe-f195-4594-9a9e-893d6c020730,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T20:12:32Z,add_to_cart,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,c17e63f7-0d28-4a95-8248-b01ea354840e +ad562930-1923-4665-896c-321bed63d44f,8224d3fe-f195-4594-9a9e-893d6c020730,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T20:11:51Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,c17e63f7-0d28-4a95-8248-b01ea354840e +c5fbed5a-a3d0-40cb-8ec1-7f0ce60790bb,8224d3fe-f195-4594-9a9e-893d6c020730,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T20:18:12Z,page_view,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,615695d3-8ffd-4850-bcf7-944cf6d3685b +5a70e6fc-d58f-4ba7-a91e-c7b8c7a112cb,0668cc72-cfe3-48d1-bcd4-ca0667b2959f,https://greenery.com/checkout/3e28eae3-bfb3-4f56-aeea-5a8d8fd399d2,2021-02-10T18:54:46Z,checkout,bbe518c7-5ea8-444e-acef-6c18be8336bc,3e28eae3-bfb3-4f56-aeea-5a8d8fd399d2, +367714ed-f670-4289-b1ae-659a7a6dad9c,0668cc72-cfe3-48d1-bcd4-ca0667b2959f,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T18:54:17Z,add_to_cart,bbe518c7-5ea8-444e-acef-6c18be8336bc,,be49171b-9f72-4fc9-bf7a-9a52e259836b +839f2ca7-7e87-462e-aa59-956223a3bdc3,0668cc72-cfe3-48d1-bcd4-ca0667b2959f,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T18:53:24Z,page_view,bbe518c7-5ea8-444e-acef-6c18be8336bc,,be49171b-9f72-4fc9-bf7a-9a52e259836b +e5e82aa4-ced7-439d-9e12-b98595d77018,0668cc72-cfe3-48d1-bcd4-ca0667b2959f,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T18:53:01Z,add_to_cart,bbe518c7-5ea8-444e-acef-6c18be8336bc,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +f1f8a6a6-1d8a-4ce1-a6fc-1493b322685f,0668cc72-cfe3-48d1-bcd4-ca0667b2959f,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T18:51:21Z,page_view,bbe518c7-5ea8-444e-acef-6c18be8336bc,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +27ef8448-b685-4180-aa16-f144ab271b59,0668cc72-cfe3-48d1-bcd4-ca0667b2959f,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T18:53:03Z,page_view,bbe518c7-5ea8-444e-acef-6c18be8336bc,,37e0062f-bd15-4c3e-b272-558a86d90598 +b7bac26a-1101-4c69-80c6-6a0a24f27762,0668cc72-cfe3-48d1-bcd4-ca0667b2959f,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T18:52:20Z,page_view,bbe518c7-5ea8-444e-acef-6c18be8336bc,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +11cb0f95-a070-414c-8ea4-6fab599bac92,0668cc72-cfe3-48d1-bcd4-ca0667b2959f,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T18:50:45Z,page_view,bbe518c7-5ea8-444e-acef-6c18be8336bc,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +19d1a148-d129-4f92-9a03-25803a68a661,a5ac2863-6978-4970-8eba-412e8961199c,https://greenery.com/checkout/b0d93ef1-d63c-4f47-b3d6-8c20ff25e4e2,2021-02-10T16:45:23Z,checkout,6cbe0665-0001-43b3-98af-7cd3909b1b28,b0d93ef1-d63c-4f47-b3d6-8c20ff25e4e2, +48456f82-3bb3-492d-ab3b-6070bc1d7c5a,a5ac2863-6978-4970-8eba-412e8961199c,https://greenery.com/shipping/b0d93ef1-d63c-4f47-b3d6-8c20ff25e4e2,2021-02-10T23:45:26Z,package_shipped,6cbe0665-0001-43b3-98af-7cd3909b1b28,b0d93ef1-d63c-4f47-b3d6-8c20ff25e4e2, +e8d69a6b-fe38-4cc9-8594-e030f3545ec7,a5ac2863-6978-4970-8eba-412e8961199c,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T16:44:30Z,add_to_cart,6cbe0665-0001-43b3-98af-7cd3909b1b28,,74aeb414-e3dd-4e8a-beef-0fa45225214d +8fca3423-fa49-42ad-8a11-cc92b43237c0,a5ac2863-6978-4970-8eba-412e8961199c,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T16:43:08Z,page_view,6cbe0665-0001-43b3-98af-7cd3909b1b28,,74aeb414-e3dd-4e8a-beef-0fa45225214d +5077b40c-a19f-433b-95f7-18a95690296c,a5ac2863-6978-4970-8eba-412e8961199c,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T16:42:26Z,add_to_cart,6cbe0665-0001-43b3-98af-7cd3909b1b28,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +1b882e02-8243-4b45-b333-743c5ccc0926,a5ac2863-6978-4970-8eba-412e8961199c,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T16:41:30Z,page_view,6cbe0665-0001-43b3-98af-7cd3909b1b28,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +e4a83731-0b6f-4d93-81f0-f21ecdf70aeb,a5ac2863-6978-4970-8eba-412e8961199c,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T16:41:03Z,add_to_cart,6cbe0665-0001-43b3-98af-7cd3909b1b28,,689fb64e-a4a2-45c5-b9f2-480c2155624d +d1a0f501-0811-47c2-8a84-850f512b37f8,a5ac2863-6978-4970-8eba-412e8961199c,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T16:39:09Z,page_view,6cbe0665-0001-43b3-98af-7cd3909b1b28,,689fb64e-a4a2-45c5-b9f2-480c2155624d +9d7144e6-96a6-458a-9c89-5f9ce9177ce3,a5ac2863-6978-4970-8eba-412e8961199c,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T16:43:55Z,page_view,6cbe0665-0001-43b3-98af-7cd3909b1b28,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +4494ceb6-1df0-4d40-98a7-e26790c9bbcf,a5ac2863-6978-4970-8eba-412e8961199c,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T16:42:15Z,page_view,6cbe0665-0001-43b3-98af-7cd3909b1b28,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +01ceac09-021a-434b-ab0d-a64154d49920,a5ac2863-6978-4970-8eba-412e8961199c,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T16:40:27Z,page_view,6cbe0665-0001-43b3-98af-7cd3909b1b28,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +cf06cd85-689a-4908-8de9-23bf052ae2e3,ca5820c8-8da8-4185-ac71-77fd5a139403,https://greenery.com/checkout/b3bbc1b2-11bf-4a7f-8424-8c6fb14d753b,2021-02-10T15:38:35Z,checkout,63b87683-1c30-49e0-86f0-54d00b32052f,b3bbc1b2-11bf-4a7f-8424-8c6fb14d753b, +d8903bc8-f6a4-4d7a-b8b3-e6bb426ca45c,ca5820c8-8da8-4185-ac71-77fd5a139403,https://greenery.com/shipping/b3bbc1b2-11bf-4a7f-8424-8c6fb14d753b,2021-02-10T19:38:36Z,package_shipped,63b87683-1c30-49e0-86f0-54d00b32052f,b3bbc1b2-11bf-4a7f-8424-8c6fb14d753b, +6de409bd-d508-4d2e-883f-d2fe420bd880,ca5820c8-8da8-4185-ac71-77fd5a139403,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T15:37:47Z,add_to_cart,63b87683-1c30-49e0-86f0-54d00b32052f,,689fb64e-a4a2-45c5-b9f2-480c2155624d +33845b1f-9446-4c4a-8689-b4317666b3c1,ca5820c8-8da8-4185-ac71-77fd5a139403,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T15:36:34Z,page_view,63b87683-1c30-49e0-86f0-54d00b32052f,,689fb64e-a4a2-45c5-b9f2-480c2155624d +eeaa2028-c8d1-4248-b315-cb3fa3d71b84,ca5820c8-8da8-4185-ac71-77fd5a139403,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T15:36:15Z,add_to_cart,63b87683-1c30-49e0-86f0-54d00b32052f,,be49171b-9f72-4fc9-bf7a-9a52e259836b +5b11f230-7f2e-4566-a2ad-fce72343e6eb,ca5820c8-8da8-4185-ac71-77fd5a139403,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T15:35:32Z,page_view,63b87683-1c30-49e0-86f0-54d00b32052f,,be49171b-9f72-4fc9-bf7a-9a52e259836b +00c5b8e6-878f-498a-bc7c-2bcf20d3547f,ca5820c8-8da8-4185-ac71-77fd5a139403,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T15:35:14Z,add_to_cart,63b87683-1c30-49e0-86f0-54d00b32052f,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +b750c1ad-b11d-41cf-badc-e4fd592776b6,ca5820c8-8da8-4185-ac71-77fd5a139403,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T15:34:07Z,page_view,63b87683-1c30-49e0-86f0-54d00b32052f,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +26136d86-acec-477f-b1f9-e1d75565e308,ca5820c8-8da8-4185-ac71-77fd5a139403,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T15:37:14Z,page_view,63b87683-1c30-49e0-86f0-54d00b32052f,,37e0062f-bd15-4c3e-b272-558a86d90598 +3a269d37-61ab-4f0e-bc55-52e2a5f43e10,1b4edf3a-6014-4be4-944f-5ccfc1a1b3d4,https://greenery.com/checkout/d29fbe48-4cb7-46ef-b3ea-67a28a0cd8c0,2021-02-10T17:51:24Z,checkout,707a74bd-593f-4bdc-85e3-b8ff6b538399,d29fbe48-4cb7-46ef-b3ea-67a28a0cd8c0, +6a1cf813-bd7a-408e-b94c-a2d9a7471be0,1b4edf3a-6014-4be4-944f-5ccfc1a1b3d4,https://greenery.com/shipping/d29fbe48-4cb7-46ef-b3ea-67a28a0cd8c0,2021-02-10T21:51:26Z,package_shipped,707a74bd-593f-4bdc-85e3-b8ff6b538399,d29fbe48-4cb7-46ef-b3ea-67a28a0cd8c0, +2ded5792-e2ea-475e-826f-2c3c340711a9,1b4edf3a-6014-4be4-944f-5ccfc1a1b3d4,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T17:51:04Z,add_to_cart,707a74bd-593f-4bdc-85e3-b8ff6b538399,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +67e64b89-681e-49ad-9208-b8ae070d59f9,1b4edf3a-6014-4be4-944f-5ccfc1a1b3d4,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T17:49:37Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +d1639365-7b84-480b-941e-773be1c1d31d,1b4edf3a-6014-4be4-944f-5ccfc1a1b3d4,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T17:50:33Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +1cbf13c6-e1e2-4faa-8ede-d4fa90f676c8,1b4edf3a-6014-4be4-944f-5ccfc1a1b3d4,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T17:49:24Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +8ea47b36-5860-497e-b5a3-5f301649501b,156f400e-9aa9-4be8-8b9f-eaa6c342a5a1,https://greenery.com/checkout/c49ed1e6-c56b-4681-bef8-cf8d99404832,2021-02-10T09:10:26Z,checkout,6cf2751f-d815-4fbc-b04a-245c1301574c,c49ed1e6-c56b-4681-bef8-cf8d99404832, +2a146825-ad69-4f88-a008-b9dbb82da42f,156f400e-9aa9-4be8-8b9f-eaa6c342a5a1,https://greenery.com/shipping/c49ed1e6-c56b-4681-bef8-cf8d99404832,2021-02-10T11:10:28Z,package_shipped,6cf2751f-d815-4fbc-b04a-245c1301574c,c49ed1e6-c56b-4681-bef8-cf8d99404832, +8c712d32-bc27-4614-98f6-9481b189e554,156f400e-9aa9-4be8-8b9f-eaa6c342a5a1,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T09:10:04Z,add_to_cart,6cf2751f-d815-4fbc-b04a-245c1301574c,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +069c797c-2727-424e-b68b-f13dbc32ad8e,156f400e-9aa9-4be8-8b9f-eaa6c342a5a1,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T09:08:22Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +f4513521-6909-427e-b9e2-6f0081359458,156f400e-9aa9-4be8-8b9f-eaa6c342a5a1,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T09:07:47Z,add_to_cart,6cf2751f-d815-4fbc-b04a-245c1301574c,,80eda933-749d-4fc6-91d5-613d29eb126f +df5fec76-bfc7-497d-abcc-e7b366b2410b,156f400e-9aa9-4be8-8b9f-eaa6c342a5a1,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T09:06:26Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,80eda933-749d-4fc6-91d5-613d29eb126f +0dfa6653-c2da-4afe-b874-d06d9a10b79e,156f400e-9aa9-4be8-8b9f-eaa6c342a5a1,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T09:05:53Z,add_to_cart,6cf2751f-d815-4fbc-b04a-245c1301574c,,615695d3-8ffd-4850-bcf7-944cf6d3685b +721fa58e-63e9-4a1f-ae6c-5e992070b0d2,156f400e-9aa9-4be8-8b9f-eaa6c342a5a1,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T09:04:24Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,615695d3-8ffd-4850-bcf7-944cf6d3685b +ea486f98-677b-4fb4-a80c-3b9ac4e7be75,156f400e-9aa9-4be8-8b9f-eaa6c342a5a1,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T09:09:24Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,c17e63f7-0d28-4a95-8248-b01ea354840e +d7e0647b-3dab-4af5-b779-6ba339674927,156f400e-9aa9-4be8-8b9f-eaa6c342a5a1,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T09:08:43Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +f68f5032-2524-43dc-9382-d5cbbded7a8f,a5f51ad0-0333-452a-8e82-fe20537739a9,https://greenery.com/checkout/3895ef3d-4e4f-4793-ba7f-66743b7a7d39,2021-02-10T09:24:55Z,checkout,7c11eccd-15a9-4b87-875e-b84f39dfe3d6,3895ef3d-4e4f-4793-ba7f-66743b7a7d39, +69922e6e-9f22-4333-bcd5-80012f2e83aa,a5f51ad0-0333-452a-8e82-fe20537739a9,https://greenery.com/shipping/3895ef3d-4e4f-4793-ba7f-66743b7a7d39,2021-02-10T16:24:56Z,package_shipped,7c11eccd-15a9-4b87-875e-b84f39dfe3d6,3895ef3d-4e4f-4793-ba7f-66743b7a7d39, +0288b40c-fec6-4205-9662-96c1151e6ff5,a5f51ad0-0333-452a-8e82-fe20537739a9,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T09:24:18Z,add_to_cart,7c11eccd-15a9-4b87-875e-b84f39dfe3d6,,c17e63f7-0d28-4a95-8248-b01ea354840e +5149003c-c767-4d0b-a2db-43ba2ac52fc7,a5f51ad0-0333-452a-8e82-fe20537739a9,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T09:23:42Z,page_view,7c11eccd-15a9-4b87-875e-b84f39dfe3d6,,c17e63f7-0d28-4a95-8248-b01ea354840e +3e4dd08a-ab89-45e5-ab3e-606183566ca6,a5f51ad0-0333-452a-8e82-fe20537739a9,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T09:23:06Z,add_to_cart,7c11eccd-15a9-4b87-875e-b84f39dfe3d6,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +74c904ee-1907-404d-b051-ba51db911560,a5f51ad0-0333-452a-8e82-fe20537739a9,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T09:21:20Z,page_view,7c11eccd-15a9-4b87-875e-b84f39dfe3d6,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +979d63d2-4546-4515-94c8-e9ed2e50fb03,a5f51ad0-0333-452a-8e82-fe20537739a9,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T09:20:54Z,add_to_cart,7c11eccd-15a9-4b87-875e-b84f39dfe3d6,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +803c2e6c-91d6-4529-b3dd-eb557c767ee0,a5f51ad0-0333-452a-8e82-fe20537739a9,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T09:19:15Z,page_view,7c11eccd-15a9-4b87-875e-b84f39dfe3d6,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +4ded1183-b633-4e32-8020-e20f8405862a,a5f51ad0-0333-452a-8e82-fe20537739a9,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T09:23:01Z,page_view,7c11eccd-15a9-4b87-875e-b84f39dfe3d6,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +2c45831a-8282-401d-8b58-810cb2f2aa19,a5f51ad0-0333-452a-8e82-fe20537739a9,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T09:21:01Z,page_view,7c11eccd-15a9-4b87-875e-b84f39dfe3d6,,615695d3-8ffd-4850-bcf7-944cf6d3685b +f54c054c-846a-4a08-841a-60149f7ded60,49c9a65e-bcff-4a44-afed-296f9072c05a,https://greenery.com/checkout/551f91e6-bce3-4fb5-8dd6-782ff140480d,2021-02-10T18:05:41Z,checkout,5eb03e58-d3d1-47f9-87bc-b0184556c02d,551f91e6-bce3-4fb5-8dd6-782ff140480d, +6b6cdd8e-6444-466e-933e-d8293dd0404a,49c9a65e-bcff-4a44-afed-296f9072c05a,https://greenery.com/shipping/551f91e6-bce3-4fb5-8dd6-782ff140480d,2021-02-10T21:05:43Z,package_shipped,5eb03e58-d3d1-47f9-87bc-b0184556c02d,551f91e6-bce3-4fb5-8dd6-782ff140480d, +3f07b92c-69cf-4cf2-b282-bf4b4ea04fa9,49c9a65e-bcff-4a44-afed-296f9072c05a,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T18:05:04Z,add_to_cart,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +496a65df-2b67-4a25-a561-58a854a906f3,49c9a65e-bcff-4a44-afed-296f9072c05a,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T18:03:30Z,page_view,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +36a7f575-7c8a-4fff-83b4-1dd8c37cc176,49c9a65e-bcff-4a44-afed-296f9072c05a,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T18:02:51Z,add_to_cart,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +ebdc8cac-07d6-438e-ac11-ffde78be10fa,49c9a65e-bcff-4a44-afed-296f9072c05a,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T18:01:30Z,page_view,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +39c97ceb-b490-4a1f-b9c1-3bcb5285c425,49c9a65e-bcff-4a44-afed-296f9072c05a,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T18:04:13Z,page_view,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,c17e63f7-0d28-4a95-8248-b01ea354840e +eb3b71bb-1670-466b-b1b5-a5aceaf8a9c7,49c9a65e-bcff-4a44-afed-296f9072c05a,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T18:03:11Z,page_view,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +4db270d9-4785-47ed-985e-3c35af7f1af4,49c9a65e-bcff-4a44-afed-296f9072c05a,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T18:01:25Z,page_view,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,5ceddd13-cf00-481f-9285-8340ab95d06d +d389f826-f189-4335-bef8-49244f8be0ce,01bc8113-749d-4827-8dae-2cb6006019bf,https://greenery.com/checkout/db90b250-70b2-44d1-b20c-4d795edd020c,2021-02-10T03:09:55Z,checkout,7be40e37-7a40-40ce-81c8-a5048c8befb1,db90b250-70b2-44d1-b20c-4d795edd020c, +f6ebb7c3-b413-4ebc-beb7-0ce5a43b65b7,01bc8113-749d-4827-8dae-2cb6006019bf,https://greenery.com/shipping/db90b250-70b2-44d1-b20c-4d795edd020c,2021-02-10T12:09:58Z,package_shipped,7be40e37-7a40-40ce-81c8-a5048c8befb1,db90b250-70b2-44d1-b20c-4d795edd020c, +3e4679ac-e3ab-4c0e-8e20-bf74ec61f549,01bc8113-749d-4827-8dae-2cb6006019bf,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T03:09:06Z,add_to_cart,7be40e37-7a40-40ce-81c8-a5048c8befb1,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +a3bf4b4e-e798-44af-847b-f80471ef5846,01bc8113-749d-4827-8dae-2cb6006019bf,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T03:07:12Z,page_view,7be40e37-7a40-40ce-81c8-a5048c8befb1,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +178b6770-b1ee-4b44-aab6-cd5b82ed6ebb,01bc8113-749d-4827-8dae-2cb6006019bf,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T03:06:46Z,add_to_cart,7be40e37-7a40-40ce-81c8-a5048c8befb1,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +33fdeceb-878c-4115-8c25-dbec5779af0c,01bc8113-749d-4827-8dae-2cb6006019bf,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T03:05:48Z,page_view,7be40e37-7a40-40ce-81c8-a5048c8befb1,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +e9140a2c-b959-43d0-8ba1-1ef2028293e6,01bc8113-749d-4827-8dae-2cb6006019bf,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T03:08:24Z,page_view,7be40e37-7a40-40ce-81c8-a5048c8befb1,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +c9f3f6b0-be22-4dfa-bdfb-a22d91114aac,01bc8113-749d-4827-8dae-2cb6006019bf,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T03:07:05Z,page_view,7be40e37-7a40-40ce-81c8-a5048c8befb1,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +f4c57d9b-0dfe-470f-b593-2eb2acdebf79,01bc8113-749d-4827-8dae-2cb6006019bf,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T03:06:27Z,page_view,7be40e37-7a40-40ce-81c8-a5048c8befb1,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +022e3107-e71c-4203-8fdf-346dfaba9fe2,4a9b0e41-f720-4c6a-86e3-872c3695e10e,https://greenery.com/checkout/99127f5a-b3a4-440e-87c1-c78861ac2ca8,2021-02-10T15:03:32Z,checkout,e09e27fe-72e3-4359-809e-43acf4976f55,99127f5a-b3a4-440e-87c1-c78861ac2ca8, +daa357bf-ee2c-4710-87cb-a7c7b2c556c8,4a9b0e41-f720-4c6a-86e3-872c3695e10e,https://greenery.com/shipping/99127f5a-b3a4-440e-87c1-c78861ac2ca8,2021-02-10T20:03:34Z,package_shipped,e09e27fe-72e3-4359-809e-43acf4976f55,99127f5a-b3a4-440e-87c1-c78861ac2ca8, +9b8a5262-4ba8-4e39-8d2d-f811336ed26d,4a9b0e41-f720-4c6a-86e3-872c3695e10e,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T15:02:53Z,add_to_cart,e09e27fe-72e3-4359-809e-43acf4976f55,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +99c8f3a1-0ad6-4ed4-beb4-192478ea8b47,4a9b0e41-f720-4c6a-86e3-872c3695e10e,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T15:01:46Z,page_view,e09e27fe-72e3-4359-809e-43acf4976f55,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +3f84a040-08a4-4516-95d6-ca387d85a5a6,4a9b0e41-f720-4c6a-86e3-872c3695e10e,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T15:01:14Z,add_to_cart,e09e27fe-72e3-4359-809e-43acf4976f55,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +4011cc1c-4e7d-4171-8490-9b4dca2f4bc7,4a9b0e41-f720-4c6a-86e3-872c3695e10e,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T14:59:19Z,page_view,e09e27fe-72e3-4359-809e-43acf4976f55,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +98450c87-6726-4583-b6b8-b2ee0be74a1e,4a9b0e41-f720-4c6a-86e3-872c3695e10e,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T15:02:47Z,page_view,e09e27fe-72e3-4359-809e-43acf4976f55,,689fb64e-a4a2-45c5-b9f2-480c2155624d +bd305dbc-e178-4430-8cae-6b77384fdbee,f86c025f-52b4-4507-9766-ded856e5ab9a,https://greenery.com/checkout/859841a2-a2fa-4d7b-a749-8cd37b31b1ed,2021-02-10T15:21:50Z,checkout,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,859841a2-a2fa-4d7b-a749-8cd37b31b1ed, +916e6d3c-33bd-46bb-a537-081a224e520f,f86c025f-52b4-4507-9766-ded856e5ab9a,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T15:21:18Z,add_to_cart,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,37e0062f-bd15-4c3e-b272-558a86d90598 +392c7c73-ba77-4d39-aafe-5a39c9a84d30,f86c025f-52b4-4507-9766-ded856e5ab9a,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T15:19:57Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,37e0062f-bd15-4c3e-b272-558a86d90598 +b6fcb2a3-88bb-4d87-b130-a7847f394ca1,f86c025f-52b4-4507-9766-ded856e5ab9a,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T15:19:21Z,add_to_cart,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +40002f17-5bde-4304-9b21-1c3bcbb224e6,f86c025f-52b4-4507-9766-ded856e5ab9a,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T15:17:49Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +532f96de-072e-4884-8304-ca47da950580,f86c025f-52b4-4507-9766-ded856e5ab9a,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T15:17:23Z,add_to_cart,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +f91e396f-af25-497b-8f5e-ac8ac1051cd1,f86c025f-52b4-4507-9766-ded856e5ab9a,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T15:15:21Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +4f525d0c-588a-4d05-aa53-54afc37f5650,f86c025f-52b4-4507-9766-ded856e5ab9a,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T15:15:03Z,add_to_cart,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,c17e63f7-0d28-4a95-8248-b01ea354840e +33de7524-1045-4cec-a950-4ad812472a45,f86c025f-52b4-4507-9766-ded856e5ab9a,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T15:14:06Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,c17e63f7-0d28-4a95-8248-b01ea354840e +0464ed41-50d4-4ab1-8765-897460710ef3,f86c025f-52b4-4507-9766-ded856e5ab9a,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T15:19:55Z,page_view,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,e5ee99b6-519f-4218-8b41-62f48f59f700 +41c669bd-a250-4b3a-8306-7db79eb05173,b0812367-c377-4880-9682-423dc369f8ff,https://greenery.com/checkout/8502b2de-ada6-4a20-8625-092835744bd8,2021-02-10T22:15:55Z,checkout,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,8502b2de-ada6-4a20-8625-092835744bd8, +33e72a6c-4c3e-4827-8459-874092936375,b0812367-c377-4880-9682-423dc369f8ff,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T22:15:32Z,add_to_cart,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,e5ee99b6-519f-4218-8b41-62f48f59f700 +fbdb8fd5-bdd7-4fab-9184-73d42286656c,b0812367-c377-4880-9682-423dc369f8ff,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T22:13:52Z,page_view,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,e5ee99b6-519f-4218-8b41-62f48f59f700 +6efcf478-38d6-4bcb-ab79-f296f9f53a36,b0812367-c377-4880-9682-423dc369f8ff,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T22:13:17Z,add_to_cart,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +71fe245f-db70-4b65-850b-3acc5fd78904,b0812367-c377-4880-9682-423dc369f8ff,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T22:11:39Z,page_view,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +49100c56-9e86-46e7-8ab3-83c2959e7c5d,b0812367-c377-4880-9682-423dc369f8ff,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T22:11:22Z,add_to_cart,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,615695d3-8ffd-4850-bcf7-944cf6d3685b +177f39d6-8503-4ed0-9d46-382a47f2f3fe,b0812367-c377-4880-9682-423dc369f8ff,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T22:09:36Z,page_view,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,615695d3-8ffd-4850-bcf7-944cf6d3685b +8223e8d5-de6c-4676-a5fa-186a835174f5,b0812367-c377-4880-9682-423dc369f8ff,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T22:15:15Z,page_view,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,c17e63f7-0d28-4a95-8248-b01ea354840e +51ba80a4-1130-4efe-b713-d2c678652023,b0812367-c377-4880-9682-423dc369f8ff,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T22:14:25Z,page_view,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,5ceddd13-cf00-481f-9285-8340ab95d06d +352d7dfa-c530-4fdd-89fc-0586555c4dec,b0812367-c377-4880-9682-423dc369f8ff,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T22:12:45Z,page_view,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +12b03e13-4ac6-4d30-8d59-9627aafcf600,a6f1a4f4-3f31-4571-bb4f-4b4e0cf0ae4d,https://greenery.com/checkout/56d043f8-afaf-4a6e-a4d3-8fbd01d8858b,2021-02-10T16:17:19Z,checkout,d165b2ff-dfe1-40d0-bda0-a25e82b95870,56d043f8-afaf-4a6e-a4d3-8fbd01d8858b, +4d5a515b-cf81-4242-9770-7df399415972,a6f1a4f4-3f31-4571-bb4f-4b4e0cf0ae4d,https://greenery.com/shipping/56d043f8-afaf-4a6e-a4d3-8fbd01d8858b,2021-02-10T21:17:24Z,package_shipped,d165b2ff-dfe1-40d0-bda0-a25e82b95870,56d043f8-afaf-4a6e-a4d3-8fbd01d8858b, +a9b45527-7506-49b1-b269-f2536605dcd8,a6f1a4f4-3f31-4571-bb4f-4b4e0cf0ae4d,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T16:17:00Z,add_to_cart,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,be49171b-9f72-4fc9-bf7a-9a52e259836b +7e513bf4-b08d-4752-8f96-377639320c72,a6f1a4f4-3f31-4571-bb4f-4b4e0cf0ae4d,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T16:15:02Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,be49171b-9f72-4fc9-bf7a-9a52e259836b +9621cb4a-e8e9-4028-8c5e-62ea61805ab2,a6f1a4f4-3f31-4571-bb4f-4b4e0cf0ae4d,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T16:14:06Z,add_to_cart,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +83851d4c-9c94-4bd2-8257-a779e7f9dc3a,a6f1a4f4-3f31-4571-bb4f-4b4e0cf0ae4d,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T16:12:03Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +2d55dd6e-061f-4267-83b3-952e830d5808,a6f1a4f4-3f31-4571-bb4f-4b4e0cf0ae4d,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T16:11:29Z,add_to_cart,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +44836d1b-25d9-4308-bdc8-cf3a9e31f846,a6f1a4f4-3f31-4571-bb4f-4b4e0cf0ae4d,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T16:10:18Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +05fd7b57-9ce0-4854-8d9b-a7e23634ffa5,a6f1a4f4-3f31-4571-bb4f-4b4e0cf0ae4d,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T16:16:06Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,80eda933-749d-4fc6-91d5-613d29eb126f +45163f95-43eb-40e2-9074-79ece89a3f40,a6f1a4f4-3f31-4571-bb4f-4b4e0cf0ae4d,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T16:14:32Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,74aeb414-e3dd-4e8a-beef-0fa45225214d +50a6a3f5-af72-4041-b677-a779c8729bb9,a6f1a4f4-3f31-4571-bb4f-4b4e0cf0ae4d,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T16:13:56Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,e8b6528e-a830-4d03-a027-473b411c7f02 +3fb9fece-1fe2-4672-8b49-5a6caa81166a,9b80b863-fab8-4f59-a4c7-b591b451ecf1,https://greenery.com/checkout/73bfa842-99f9-4181-883f-08b7795cb167,2021-02-10T13:59:28Z,checkout,9cfa05e2-606b-4080-8bac-96e3986f1704,73bfa842-99f9-4181-883f-08b7795cb167, +73633a30-bbd0-4bb9-82a4-0c0ccad558aa,9b80b863-fab8-4f59-a4c7-b591b451ecf1,https://greenery.com/shipping/73bfa842-99f9-4181-883f-08b7795cb167,2021-02-10T17:59:30Z,package_shipped,9cfa05e2-606b-4080-8bac-96e3986f1704,73bfa842-99f9-4181-883f-08b7795cb167, +f7a131dc-e765-4947-a45e-580005d02e54,9b80b863-fab8-4f59-a4c7-b591b451ecf1,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T13:59:06Z,add_to_cart,9cfa05e2-606b-4080-8bac-96e3986f1704,,be49171b-9f72-4fc9-bf7a-9a52e259836b +dc0323bc-d3ec-47ba-b157-d3e9e94efeb3,9b80b863-fab8-4f59-a4c7-b591b451ecf1,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T13:58:03Z,page_view,9cfa05e2-606b-4080-8bac-96e3986f1704,,be49171b-9f72-4fc9-bf7a-9a52e259836b +a514e2dd-63c6-4f1a-8d24-4194916fb91b,9b80b863-fab8-4f59-a4c7-b591b451ecf1,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T13:57:09Z,add_to_cart,9cfa05e2-606b-4080-8bac-96e3986f1704,,e5ee99b6-519f-4218-8b41-62f48f59f700 +0bd445c3-fe3c-4df2-91ab-c15e14ccf9af,9b80b863-fab8-4f59-a4c7-b591b451ecf1,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T13:55:04Z,page_view,9cfa05e2-606b-4080-8bac-96e3986f1704,,e5ee99b6-519f-4218-8b41-62f48f59f700 +584a882e-9d77-4f37-8648-bdc94314fd47,9b80b863-fab8-4f59-a4c7-b591b451ecf1,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T13:58:11Z,page_view,9cfa05e2-606b-4080-8bac-96e3986f1704,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +9b5759f3-0542-4c77-bf71-b171f098f163,9b80b863-fab8-4f59-a4c7-b591b451ecf1,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T13:56:14Z,page_view,9cfa05e2-606b-4080-8bac-96e3986f1704,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +7ecc440f-1fd9-4706-90f2-14a0c38f04d5,9b80b863-fab8-4f59-a4c7-b591b451ecf1,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T13:55:38Z,page_view,9cfa05e2-606b-4080-8bac-96e3986f1704,,e8b6528e-a830-4d03-a027-473b411c7f02 +86e0658d-9ffb-43d8-b602-77c67502706d,8c471eeb-f8ec-4ec2-91ca-1cb2498f3c04,https://greenery.com/checkout/4aca1a9f-2fdc-49ce-8055-f178ffaff195,2021-02-10T15:44:38Z,checkout,29246f52-de26-4867-b464-7c5973526202,4aca1a9f-2fdc-49ce-8055-f178ffaff195, +2049c40a-6713-469a-adb3-d31bb0477ef1,8c471eeb-f8ec-4ec2-91ca-1cb2498f3c04,https://greenery.com/shipping/4aca1a9f-2fdc-49ce-8055-f178ffaff195,2021-02-10T21:44:40Z,package_shipped,29246f52-de26-4867-b464-7c5973526202,4aca1a9f-2fdc-49ce-8055-f178ffaff195, +aa362ab4-afde-4481-878c-e70115db38ff,8c471eeb-f8ec-4ec2-91ca-1cb2498f3c04,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T15:43:52Z,add_to_cart,29246f52-de26-4867-b464-7c5973526202,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +e4907576-4c50-4405-8282-f8b30faaac9e,8c471eeb-f8ec-4ec2-91ca-1cb2498f3c04,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T15:43:12Z,page_view,29246f52-de26-4867-b464-7c5973526202,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +67e4b130-95f2-4856-8ae5-15b12787ccff,8c471eeb-f8ec-4ec2-91ca-1cb2498f3c04,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T15:42:44Z,add_to_cart,29246f52-de26-4867-b464-7c5973526202,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +ef231bff-1373-476f-9117-fd9c653803ea,8c471eeb-f8ec-4ec2-91ca-1cb2498f3c04,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T15:42:02Z,page_view,29246f52-de26-4867-b464-7c5973526202,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +1e00c34b-fcb9-4034-b253-82d578ef597c,8c471eeb-f8ec-4ec2-91ca-1cb2498f3c04,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T15:43:41Z,page_view,29246f52-de26-4867-b464-7c5973526202,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +0e54ff4e-b3e2-457d-93dc-7c695d96a5b5,8c471eeb-f8ec-4ec2-91ca-1cb2498f3c04,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T15:42:25Z,page_view,29246f52-de26-4867-b464-7c5973526202,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +95ce4fd2-934b-4e83-911f-c54abdc5ccfa,1f94d063-4e46-497e-ad2e-77229755b524,https://greenery.com/checkout/96a0cf17-5d93-4476-b836-ec6c8c7a9b21,2021-02-10T07:08:48Z,checkout,96aa719e-c5a3-4645-ba89-16c304fb59b0,96a0cf17-5d93-4476-b836-ec6c8c7a9b21, +68248030-26d8-4f85-b252-a5888fa93b9d,1f94d063-4e46-497e-ad2e-77229755b524,https://greenery.com/shipping/96a0cf17-5d93-4476-b836-ec6c8c7a9b21,2021-02-10T09:08:52Z,package_shipped,96aa719e-c5a3-4645-ba89-16c304fb59b0,96a0cf17-5d93-4476-b836-ec6c8c7a9b21, +8d989648-3122-42f6-89a9-5d0dc0260d02,1f94d063-4e46-497e-ad2e-77229755b524,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T07:08:02Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +f93812cd-f45d-43dd-9423-f40a250e1ac8,1f94d063-4e46-497e-ad2e-77229755b524,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T07:06:15Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +6b68a889-b031-49e7-a226-5fce9a4bc250,1f94d063-4e46-497e-ad2e-77229755b524,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T07:05:47Z,add_to_cart,96aa719e-c5a3-4645-ba89-16c304fb59b0,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +8bf43cc4-e0ef-4460-abe9-7aa39ebcbcf6,1f94d063-4e46-497e-ad2e-77229755b524,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T07:03:49Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +7c529f53-9c67-4b0d-bca3-890918ee6293,1f94d063-4e46-497e-ad2e-77229755b524,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T07:07:37Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +96bcceb2-a338-42a8-9c02-1da4ab42e470,1f94d063-4e46-497e-ad2e-77229755b524,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T07:06:38Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,e8b6528e-a830-4d03-a027-473b411c7f02 +01bc9ec4-7958-43ec-88f5-62b24719019c,1f94d063-4e46-497e-ad2e-77229755b524,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T07:04:33Z,page_view,96aa719e-c5a3-4645-ba89-16c304fb59b0,,5ceddd13-cf00-481f-9285-8340ab95d06d +2842a321-fba6-475b-a563-0c3294767109,ac04c269-1389-4fc3-a150-2a60d84bb864,https://greenery.com/checkout/906ac891-d7a7-4d50-b4c6-c982fae2fc2d,2021-02-10T19:19:14Z,checkout,d165b2ff-dfe1-40d0-bda0-a25e82b95870,906ac891-d7a7-4d50-b4c6-c982fae2fc2d, +ae21cd39-07df-4135-9db2-33f25f449c5b,ac04c269-1389-4fc3-a150-2a60d84bb864,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T19:18:32Z,add_to_cart,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +0757c0b4-4771-4e6a-9cb6-cb3d7f14f24b,ac04c269-1389-4fc3-a150-2a60d84bb864,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T19:16:40Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +75cceb92-1482-4b8b-8b19-636725ff2530,ac04c269-1389-4fc3-a150-2a60d84bb864,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T19:15:44Z,add_to_cart,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,5ceddd13-cf00-481f-9285-8340ab95d06d +dde27ded-6ab1-4eba-a034-a889423a9da5,ac04c269-1389-4fc3-a150-2a60d84bb864,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T19:14:24Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,5ceddd13-cf00-481f-9285-8340ab95d06d +ca9a7bb0-810b-4648-825e-d2f479caa810,ac04c269-1389-4fc3-a150-2a60d84bb864,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T19:13:36Z,add_to_cart,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +3f0afe45-b175-4517-ae2e-89a1839d9284,ac04c269-1389-4fc3-a150-2a60d84bb864,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T19:12:57Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +58cf4382-870f-4529-af60-d53f7e11d8d1,ac04c269-1389-4fc3-a150-2a60d84bb864,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T19:12:03Z,add_to_cart,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +a45a38c5-f625-4d17-99c5-946698968c55,ac04c269-1389-4fc3-a150-2a60d84bb864,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T19:11:23Z,page_view,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +75888fca-4390-4700-855c-f294e967d3c0,052bdadf-81db-4745-8727-98d1875270e4,https://greenery.com/checkout/d38de9c0-789c-4527-99ff-30a23f550d88,2021-02-10T07:35:22Z,checkout,5eb03e58-d3d1-47f9-87bc-b0184556c02d,d38de9c0-789c-4527-99ff-30a23f550d88, +54d2c6f0-c638-45d0-8940-b43971d60665,052bdadf-81db-4745-8727-98d1875270e4,https://greenery.com/shipping/d38de9c0-789c-4527-99ff-30a23f550d88,2021-02-10T09:35:24Z,package_shipped,5eb03e58-d3d1-47f9-87bc-b0184556c02d,d38de9c0-789c-4527-99ff-30a23f550d88, +08fa3c3e-6a7e-41f9-b389-32c20f71e6c7,052bdadf-81db-4745-8727-98d1875270e4,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T07:34:56Z,add_to_cart,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +e875d6b2-94f2-45de-b364-4887f94c30cc,052bdadf-81db-4745-8727-98d1875270e4,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T07:33:09Z,page_view,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +ba9648a2-0522-4404-86a9-d6805889ed38,424ac72e-c885-421b-a5f0-c78393ca4908,https://greenery.com/checkout/b047e850-a4f1-4227-94b6-2222d2ff87c2,2021-02-10T08:03:58Z,checkout,6aff561d-fbd9-4130-8242-8b9073cc3a03,b047e850-a4f1-4227-94b6-2222d2ff87c2, +ec8df493-3776-4cba-bebb-1b587625db60,424ac72e-c885-421b-a5f0-c78393ca4908,https://greenery.com/shipping/b047e850-a4f1-4227-94b6-2222d2ff87c2,2021-02-10T13:03:59Z,package_shipped,6aff561d-fbd9-4130-8242-8b9073cc3a03,b047e850-a4f1-4227-94b6-2222d2ff87c2, +068c7a04-89e4-46bc-be0b-609384e6a2da,424ac72e-c885-421b-a5f0-c78393ca4908,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T08:03:11Z,add_to_cart,6aff561d-fbd9-4130-8242-8b9073cc3a03,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +2603d1cc-4c7c-40c4-bf58-c7cc71c9aa4e,424ac72e-c885-421b-a5f0-c78393ca4908,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T08:01:30Z,page_view,6aff561d-fbd9-4130-8242-8b9073cc3a03,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +1ef3ce0b-a8f9-4aee-b03d-3855d70f112c,424ac72e-c885-421b-a5f0-c78393ca4908,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T08:00:42Z,add_to_cart,6aff561d-fbd9-4130-8242-8b9073cc3a03,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +f03f6f12-b68e-4fc9-bb2d-5d897355d9a5,424ac72e-c885-421b-a5f0-c78393ca4908,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T07:59:58Z,page_view,6aff561d-fbd9-4130-8242-8b9073cc3a03,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +20eab940-7025-4a23-a295-df082c56797e,424ac72e-c885-421b-a5f0-c78393ca4908,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T08:02:38Z,page_view,6aff561d-fbd9-4130-8242-8b9073cc3a03,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +a65758a8-7b90-4fd8-b746-fb111ee6281b,a59a02f3-bc25-455f-a654-9e1e8c4563cf,https://greenery.com/checkout/002f22d6-25a3-48e4-aaa9-36be31e57185,2021-02-10T14:15:38Z,checkout,48ebf150-7cb7-4358-a5ef-1a2b0aa831b9,002f22d6-25a3-48e4-aaa9-36be31e57185, +4bc17a77-302e-44b4-bb61-8c727ebb3af1,a59a02f3-bc25-455f-a654-9e1e8c4563cf,https://greenery.com/shipping/002f22d6-25a3-48e4-aaa9-36be31e57185,2021-02-10T19:15:40Z,package_shipped,48ebf150-7cb7-4358-a5ef-1a2b0aa831b9,002f22d6-25a3-48e4-aaa9-36be31e57185, +f5101449-17a6-4242-96e6-a96db8eee23c,a59a02f3-bc25-455f-a654-9e1e8c4563cf,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T14:15:16Z,add_to_cart,48ebf150-7cb7-4358-a5ef-1a2b0aa831b9,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +86033527-ed57-4d94-b193-80e778913143,a59a02f3-bc25-455f-a654-9e1e8c4563cf,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T14:13:40Z,page_view,48ebf150-7cb7-4358-a5ef-1a2b0aa831b9,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +65b70934-3659-4fa7-b7a0-1c0741cb89b8,a59a02f3-bc25-455f-a654-9e1e8c4563cf,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T14:13:14Z,add_to_cart,48ebf150-7cb7-4358-a5ef-1a2b0aa831b9,,689fb64e-a4a2-45c5-b9f2-480c2155624d +11aa8e8e-c725-4846-befb-9c88276df00e,a59a02f3-bc25-455f-a654-9e1e8c4563cf,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T14:11:36Z,page_view,48ebf150-7cb7-4358-a5ef-1a2b0aa831b9,,689fb64e-a4a2-45c5-b9f2-480c2155624d +3969e8bf-7d6b-474e-ac2e-9653a5396521,a59a02f3-bc25-455f-a654-9e1e8c4563cf,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T14:14:07Z,page_view,48ebf150-7cb7-4358-a5ef-1a2b0aa831b9,,37e0062f-bd15-4c3e-b272-558a86d90598 +fc4d758f-133c-4d55-8846-89d6402de4b5,a59a02f3-bc25-455f-a654-9e1e8c4563cf,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T14:12:06Z,page_view,48ebf150-7cb7-4358-a5ef-1a2b0aa831b9,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +a3d1e1fd-31e4-4a32-8f5b-d40e934e95a4,a59a02f3-bc25-455f-a654-9e1e8c4563cf,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T14:10:10Z,page_view,48ebf150-7cb7-4358-a5ef-1a2b0aa831b9,,e8b6528e-a830-4d03-a027-473b411c7f02 +330f9924-320e-413b-bef2-263eebf97be9,69afb40a-7647-458b-967b-3afbe9075dd0,https://greenery.com/checkout/2434b44d-0df9-4d54-99ad-e259cbf9efa6,2021-02-10T16:20:12Z,checkout,e09e27fe-72e3-4359-809e-43acf4976f55,2434b44d-0df9-4d54-99ad-e259cbf9efa6, +7ef05d89-133f-442b-af02-4f539c94fa06,69afb40a-7647-458b-967b-3afbe9075dd0,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T16:19:34Z,add_to_cart,e09e27fe-72e3-4359-809e-43acf4976f55,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +3ba91da5-1da3-456c-b482-ec758ad819af,69afb40a-7647-458b-967b-3afbe9075dd0,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T16:18:50Z,page_view,e09e27fe-72e3-4359-809e-43acf4976f55,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +39a46436-8a6d-453d-abf8-42c042ae9a1e,69afb40a-7647-458b-967b-3afbe9075dd0,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T16:18:30Z,add_to_cart,e09e27fe-72e3-4359-809e-43acf4976f55,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +62a44c57-ba9c-4c1c-b4bf-3a0dcfb80bb3,69afb40a-7647-458b-967b-3afbe9075dd0,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T16:17:07Z,page_view,e09e27fe-72e3-4359-809e-43acf4976f55,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +204a7676-1c48-4926-bd7a-872ec548db81,69afb40a-7647-458b-967b-3afbe9075dd0,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T16:19:17Z,page_view,e09e27fe-72e3-4359-809e-43acf4976f55,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +6ba88a74-8623-4d41-80a6-f84a1141a3ff,69afb40a-7647-458b-967b-3afbe9075dd0,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T16:17:48Z,page_view,e09e27fe-72e3-4359-809e-43acf4976f55,,37e0062f-bd15-4c3e-b272-558a86d90598 +9f79a375-10c3-4d77-acff-5110ee03b330,69afb40a-7647-458b-967b-3afbe9075dd0,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T16:16:43Z,page_view,e09e27fe-72e3-4359-809e-43acf4976f55,,80eda933-749d-4fc6-91d5-613d29eb126f +6d071a40-4619-4d50-893e-42c283b6d02a,463ae801-f0bf-4047-ae8a-c7e6649cc09d,https://greenery.com/checkout/0ecabdf2-fe92-4d66-ad87-6e693748d682,2021-02-10T09:07:52Z,checkout,5555f2b6-d408-419f-aa60-22c0f0440f50,0ecabdf2-fe92-4d66-ad87-6e693748d682, +ee311fed-bc9f-444f-b910-9b792e1e1fd2,463ae801-f0bf-4047-ae8a-c7e6649cc09d,https://greenery.com/shipping/0ecabdf2-fe92-4d66-ad87-6e693748d682,2021-02-10T15:07:54Z,package_shipped,5555f2b6-d408-419f-aa60-22c0f0440f50,0ecabdf2-fe92-4d66-ad87-6e693748d682, +10d53c71-484a-4aa8-9d51-1f6b2bed91cb,463ae801-f0bf-4047-ae8a-c7e6649cc09d,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T09:07:17Z,add_to_cart,5555f2b6-d408-419f-aa60-22c0f0440f50,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +cf87846a-6fc0-4591-aa7f-303fad3375a3,463ae801-f0bf-4047-ae8a-c7e6649cc09d,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T09:05:54Z,page_view,5555f2b6-d408-419f-aa60-22c0f0440f50,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +0ebb9080-336a-46a1-bfcf-1014a7d2b189,463ae801-f0bf-4047-ae8a-c7e6649cc09d,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T09:05:27Z,add_to_cart,5555f2b6-d408-419f-aa60-22c0f0440f50,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +95baf3a2-869f-4365-83db-3bc24caba1e1,463ae801-f0bf-4047-ae8a-c7e6649cc09d,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T09:04:24Z,page_view,5555f2b6-d408-419f-aa60-22c0f0440f50,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +715926b2-629b-4f4a-ac13-0e92530fe906,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/checkout/b6d916e6-da31-4145-9edd-8fc76677b55b,2021-02-10T06:43:19Z,checkout,bbe51ac6-6687-4cbe-9178-27d96f90836b,b6d916e6-da31-4145-9edd-8fc76677b55b, +5e9ac83d-d34f-4195-ac97-cccfc1277b60,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/shipping/b6d916e6-da31-4145-9edd-8fc76677b55b,2021-02-10T11:43:23Z,package_shipped,bbe51ac6-6687-4cbe-9178-27d96f90836b,b6d916e6-da31-4145-9edd-8fc76677b55b, +2ca90575-a6b5-4246-9196-6746e4c081ec,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T06:42:36Z,add_to_cart,bbe51ac6-6687-4cbe-9178-27d96f90836b,,c17e63f7-0d28-4a95-8248-b01ea354840e +72ae4a3d-ab18-46bf-8176-01179596f5ef,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T06:40:31Z,page_view,bbe51ac6-6687-4cbe-9178-27d96f90836b,,c17e63f7-0d28-4a95-8248-b01ea354840e +4a891da4-90d7-4ecb-ad24-1607b54e50e6,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T06:40:07Z,add_to_cart,bbe51ac6-6687-4cbe-9178-27d96f90836b,,5ceddd13-cf00-481f-9285-8340ab95d06d +614c31a5-aa2d-4eea-9da3-7ede5b820158,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T06:39:00Z,page_view,bbe51ac6-6687-4cbe-9178-27d96f90836b,,5ceddd13-cf00-481f-9285-8340ab95d06d +a3efc24f-e516-4e92-bcbf-371479b1f4a1,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T06:38:09Z,add_to_cart,bbe51ac6-6687-4cbe-9178-27d96f90836b,,35550082-a52d-4301-8f06-05b30f6f3616 +cca420b3-608b-4bec-bc8c-51e561f95149,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T06:36:35Z,page_view,bbe51ac6-6687-4cbe-9178-27d96f90836b,,35550082-a52d-4301-8f06-05b30f6f3616 +8d030a28-a244-4c32-9ce8-14a2a3969c1b,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T06:35:57Z,add_to_cart,bbe51ac6-6687-4cbe-9178-27d96f90836b,,689fb64e-a4a2-45c5-b9f2-480c2155624d +753f050d-1b46-4e7f-ab2c-dc2c1c06f8be,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T06:33:51Z,page_view,bbe51ac6-6687-4cbe-9178-27d96f90836b,,689fb64e-a4a2-45c5-b9f2-480c2155624d +ab4aff03-3a35-4f73-9add-eca7db348b05,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T06:33:27Z,add_to_cart,bbe51ac6-6687-4cbe-9178-27d96f90836b,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +56bf5243-b5d9-4132-b4c0-dc986b477672,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T06:31:57Z,page_view,bbe51ac6-6687-4cbe-9178-27d96f90836b,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +d85fb4f5-72bc-4fb7-a3ea-d6a65e388317,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T06:41:52Z,page_view,bbe51ac6-6687-4cbe-9178-27d96f90836b,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +d577dfec-c4fc-4139-ba4b-b8e7b8b908a2,1f0f4a38-6cd9-419e-8e4e-c4879717de4a,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T06:40:46Z,page_view,bbe51ac6-6687-4cbe-9178-27d96f90836b,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +b63fa938-079e-4faa-a82b-0b591a85e644,ee6d6b6f-0f8f-4025-baba-d6a39984b000,https://greenery.com/checkout/d7454480-4fa0-416d-b904-aebdbcdd378c,2021-02-10T01:36:55Z,checkout,6875a4d9-cdc6-43bc-a700-f6916e049e46,d7454480-4fa0-416d-b904-aebdbcdd378c, +100e6785-916b-4f22-9cb6-509126516a4b,ee6d6b6f-0f8f-4025-baba-d6a39984b000,https://greenery.com/shipping/d7454480-4fa0-416d-b904-aebdbcdd378c,2021-02-10T09:36:56Z,package_shipped,6875a4d9-cdc6-43bc-a700-f6916e049e46,d7454480-4fa0-416d-b904-aebdbcdd378c, +d0cc6fff-6723-466e-8014-e71f44e9ce7d,ee6d6b6f-0f8f-4025-baba-d6a39984b000,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T01:36:23Z,add_to_cart,6875a4d9-cdc6-43bc-a700-f6916e049e46,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +8d98491c-e0ea-46da-9ff3-1fad63259a89,ee6d6b6f-0f8f-4025-baba-d6a39984b000,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T01:35:02Z,page_view,6875a4d9-cdc6-43bc-a700-f6916e049e46,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +7017430c-5ee0-401c-a829-dcda8f69a90f,bc710b82-b725-45e4-a6f1-24efe93f6dbf,https://greenery.com/checkout/ea907a0e-c27d-4d44-878c-1d2a9e54b740,2021-02-10T21:23:32Z,checkout,baaf00b6-da56-44af-8c70-97269472e6f3,ea907a0e-c27d-4d44-878c-1d2a9e54b740, +399b8999-80a2-49f3-82e6-308a85119f8c,bc710b82-b725-45e4-a6f1-24efe93f6dbf,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T21:22:38Z,add_to_cart,baaf00b6-da56-44af-8c70-97269472e6f3,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +54a90238-bca6-4a68-bb07-8d2160bd2e14,bc710b82-b725-45e4-a6f1-24efe93f6dbf,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T21:21:46Z,page_view,baaf00b6-da56-44af-8c70-97269472e6f3,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +1173352a-bdde-4c11-bff9-2b9a3978c3d7,bc710b82-b725-45e4-a6f1-24efe93f6dbf,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T21:21:03Z,add_to_cart,baaf00b6-da56-44af-8c70-97269472e6f3,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +0a315a21-cca5-471b-8f41-1a3ec99ceb9b,bc710b82-b725-45e4-a6f1-24efe93f6dbf,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T21:19:31Z,page_view,baaf00b6-da56-44af-8c70-97269472e6f3,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +2d414aa3-7ec2-449f-8fd3-e7916ded8626,bc710b82-b725-45e4-a6f1-24efe93f6dbf,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T21:18:39Z,add_to_cart,baaf00b6-da56-44af-8c70-97269472e6f3,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +9627620f-81b1-42c8-b2aa-d4d89337624a,bc710b82-b725-45e4-a6f1-24efe93f6dbf,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T21:16:54Z,page_view,baaf00b6-da56-44af-8c70-97269472e6f3,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +08c4b91f-45bb-4d4c-bd1e-03eb283caa76,bc710b82-b725-45e4-a6f1-24efe93f6dbf,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T21:22:00Z,page_view,baaf00b6-da56-44af-8c70-97269472e6f3,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +a6bb758c-64f7-4035-8e42-63599ad9d5c4,5a8b5247-ee9b-49a3-9c9c-c9f7596a285c,https://greenery.com/checkout/f4b472f8-f344-4abe-a7dd-5b3cc983301b,2021-02-10T14:20:46Z,checkout,4fe02f4f-f3d6-4068-853d-158cc64f0c65,f4b472f8-f344-4abe-a7dd-5b3cc983301b, +b94581c0-3127-4e85-9c0f-ade515774fe2,5a8b5247-ee9b-49a3-9c9c-c9f7596a285c,https://greenery.com/shipping/f4b472f8-f344-4abe-a7dd-5b3cc983301b,2021-02-10T21:20:50Z,package_shipped,4fe02f4f-f3d6-4068-853d-158cc64f0c65,f4b472f8-f344-4abe-a7dd-5b3cc983301b, +8ef68c1d-c01e-4ffd-9650-9293c9c03c34,5a8b5247-ee9b-49a3-9c9c-c9f7596a285c,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T14:20:02Z,add_to_cart,4fe02f4f-f3d6-4068-853d-158cc64f0c65,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +5f9035fe-f243-48e9-b32b-35f2b5150f96,5a8b5247-ee9b-49a3-9c9c-c9f7596a285c,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T14:18:12Z,page_view,4fe02f4f-f3d6-4068-853d-158cc64f0c65,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +73938da9-e282-46ce-9734-0614e95f8b0b,5a8b5247-ee9b-49a3-9c9c-c9f7596a285c,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T14:17:20Z,add_to_cart,4fe02f4f-f3d6-4068-853d-158cc64f0c65,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +eb61e09d-000f-40ac-9759-84d936bc6d4e,5a8b5247-ee9b-49a3-9c9c-c9f7596a285c,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T14:15:24Z,page_view,4fe02f4f-f3d6-4068-853d-158cc64f0c65,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +92d5f6e2-f2c7-4f14-a911-534bad59524f,5a8b5247-ee9b-49a3-9c9c-c9f7596a285c,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T14:15:01Z,add_to_cart,4fe02f4f-f3d6-4068-853d-158cc64f0c65,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +a46af3ca-7e96-43ea-8c11-777bf124b05d,5a8b5247-ee9b-49a3-9c9c-c9f7596a285c,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T14:14:15Z,page_view,4fe02f4f-f3d6-4068-853d-158cc64f0c65,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +e91deca4-a179-4cd1-801f-a689c0bcf0ad,5a8b5247-ee9b-49a3-9c9c-c9f7596a285c,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T14:19:45Z,page_view,4fe02f4f-f3d6-4068-853d-158cc64f0c65,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +b74314b9-e0fb-4a3d-9a6e-cc1c8e6a77c1,5a8b5247-ee9b-49a3-9c9c-c9f7596a285c,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T14:18:36Z,page_view,4fe02f4f-f3d6-4068-853d-158cc64f0c65,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +f13d81f8-a557-4c0c-8526-3da3c32d7212,87333c3d-d46e-4331-b57d-2e52ad0c0f7f,https://greenery.com/checkout/eddb6163-e96d-4f8f-98c6-76393a96dbbf,2021-02-10T18:20:12Z,checkout,525d85ad-6277-4500-9701-9afbf9785ad3,eddb6163-e96d-4f8f-98c6-76393a96dbbf, +e49d7116-4e22-463b-ab87-132ff50a7104,87333c3d-d46e-4331-b57d-2e52ad0c0f7f,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T18:19:30Z,add_to_cart,525d85ad-6277-4500-9701-9afbf9785ad3,,5ceddd13-cf00-481f-9285-8340ab95d06d +8c4a3524-80af-494f-9a6f-f70dfaba4e1a,87333c3d-d46e-4331-b57d-2e52ad0c0f7f,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T18:18:08Z,page_view,525d85ad-6277-4500-9701-9afbf9785ad3,,5ceddd13-cf00-481f-9285-8340ab95d06d +6a3fdb74-9a68-4659-b31b-f9d40dd4d313,87333c3d-d46e-4331-b57d-2e52ad0c0f7f,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T18:17:46Z,add_to_cart,525d85ad-6277-4500-9701-9afbf9785ad3,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +8a40db51-106a-4a41-a5e8-7399ebcafede,87333c3d-d46e-4331-b57d-2e52ad0c0f7f,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T18:16:50Z,page_view,525d85ad-6277-4500-9701-9afbf9785ad3,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +0495abaf-eaff-415f-8d34-6d40abe5dff6,87333c3d-d46e-4331-b57d-2e52ad0c0f7f,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T18:19:04Z,page_view,525d85ad-6277-4500-9701-9afbf9785ad3,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +f2b57abb-4293-4373-8c86-0f8d5aba1c52,ee99e789-716d-4c8d-8f12-a3c2cf4a2265,https://greenery.com/checkout/d9cc0f2f-0be3-4cfc-bec0-fd97eb7977d6,2021-02-10T06:48:18Z,checkout,707a74bd-593f-4bdc-85e3-b8ff6b538399,d9cc0f2f-0be3-4cfc-bec0-fd97eb7977d6, +176bfc1c-06ea-4ac0-828f-0c7b5f763d2e,ee99e789-716d-4c8d-8f12-a3c2cf4a2265,https://greenery.com/shipping/d9cc0f2f-0be3-4cfc-bec0-fd97eb7977d6,2021-02-10T12:48:23Z,package_shipped,707a74bd-593f-4bdc-85e3-b8ff6b538399,d9cc0f2f-0be3-4cfc-bec0-fd97eb7977d6, +8bc9747e-a838-4405-8177-f77de48bd41c,ee99e789-716d-4c8d-8f12-a3c2cf4a2265,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T06:48:05Z,add_to_cart,707a74bd-593f-4bdc-85e3-b8ff6b538399,,615695d3-8ffd-4850-bcf7-944cf6d3685b +287f8f3e-90a1-4d66-9eac-29c66778dca7,ee99e789-716d-4c8d-8f12-a3c2cf4a2265,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T06:46:10Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,615695d3-8ffd-4850-bcf7-944cf6d3685b +d02f0e69-2a0b-45de-a1bc-99500bd934b8,ee99e789-716d-4c8d-8f12-a3c2cf4a2265,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T06:45:27Z,add_to_cart,707a74bd-593f-4bdc-85e3-b8ff6b538399,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +d73b4f59-29e7-43c8-a060-831213b0cc38,ee99e789-716d-4c8d-8f12-a3c2cf4a2265,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T06:44:17Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +451121c9-2f5e-4e6d-ad1f-f86726f76c73,ee99e789-716d-4c8d-8f12-a3c2cf4a2265,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T06:43:27Z,add_to_cart,707a74bd-593f-4bdc-85e3-b8ff6b538399,,c17e63f7-0d28-4a95-8248-b01ea354840e +87c5650f-0353-4602-ae12-f88ef2151551,ee99e789-716d-4c8d-8f12-a3c2cf4a2265,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T06:42:12Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,c17e63f7-0d28-4a95-8248-b01ea354840e +50ece2c8-c2b6-407f-b60e-dfd66f7de62d,ee99e789-716d-4c8d-8f12-a3c2cf4a2265,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T06:47:01Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +a823a4ac-0f2b-4f32-8d3d-0d3fcfbca55c,ee99e789-716d-4c8d-8f12-a3c2cf4a2265,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T06:45:09Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,35550082-a52d-4301-8f06-05b30f6f3616 +f5750c39-aac2-49fa-8cc6-611659b6d4c2,ee99e789-716d-4c8d-8f12-a3c2cf4a2265,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T06:43:38Z,page_view,707a74bd-593f-4bdc-85e3-b8ff6b538399,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +e8ce5945-9010-4915-85d8-dbb7a9ea001b,6e45f79d-d4cb-46df-a22f-78a7a8f8e2dd,https://greenery.com/checkout/a96878e4-9618-4f85-8fe0-6e2e938e0b24,2021-02-10T21:34:08Z,checkout,e3302139-c0ba-4715-9c35-68dde8347b56,a96878e4-9618-4f85-8fe0-6e2e938e0b24, +e34cd9cf-d94a-47d0-8669-8847a4c60f19,6e45f79d-d4cb-46df-a22f-78a7a8f8e2dd,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T21:33:22Z,add_to_cart,e3302139-c0ba-4715-9c35-68dde8347b56,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +a916da5a-a125-476e-bd7e-49596a4f8776,6e45f79d-d4cb-46df-a22f-78a7a8f8e2dd,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T21:31:51Z,page_view,e3302139-c0ba-4715-9c35-68dde8347b56,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +9d4aff22-7a99-4f0b-b41a-24b541870a90,6e45f79d-d4cb-46df-a22f-78a7a8f8e2dd,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T21:33:25Z,page_view,e3302139-c0ba-4715-9c35-68dde8347b56,,615695d3-8ffd-4850-bcf7-944cf6d3685b +6e6db8e1-9077-4cf1-96b5-0ca7ada3bfb8,6e45f79d-d4cb-46df-a22f-78a7a8f8e2dd,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T21:31:33Z,page_view,e3302139-c0ba-4715-9c35-68dde8347b56,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +e78605e8-b759-431b-a58b-64331fd36e68,6e45f79d-d4cb-46df-a22f-78a7a8f8e2dd,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T21:30:35Z,page_view,e3302139-c0ba-4715-9c35-68dde8347b56,,e5ee99b6-519f-4218-8b41-62f48f59f700 +c160bbee-e0c6-4949-819e-e57053a07df3,eeefefe5-cee5-42f0-9c57-e8ab1ab77cf8,https://greenery.com/checkout/3321aeb4-f209-48bf-ba63-84f3a14eaa50,2021-02-10T11:37:27Z,checkout,7091fe90-07da-424c-8da6-24e024503be2,3321aeb4-f209-48bf-ba63-84f3a14eaa50, +69fc4094-1e43-4684-b30b-b8435207c24e,eeefefe5-cee5-42f0-9c57-e8ab1ab77cf8,https://greenery.com/shipping/3321aeb4-f209-48bf-ba63-84f3a14eaa50,2021-02-10T16:37:28Z,package_shipped,7091fe90-07da-424c-8da6-24e024503be2,3321aeb4-f209-48bf-ba63-84f3a14eaa50, +34603cf5-afcf-47d4-b330-f2604529815c,eeefefe5-cee5-42f0-9c57-e8ab1ab77cf8,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T11:36:39Z,add_to_cart,7091fe90-07da-424c-8da6-24e024503be2,,689fb64e-a4a2-45c5-b9f2-480c2155624d +33e0aaec-23dd-458f-b87c-b94fe860555e,eeefefe5-cee5-42f0-9c57-e8ab1ab77cf8,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T11:34:36Z,page_view,7091fe90-07da-424c-8da6-24e024503be2,,689fb64e-a4a2-45c5-b9f2-480c2155624d +15575e1e-6a41-42a0-961c-fbdb17f074b2,eeefefe5-cee5-42f0-9c57-e8ab1ab77cf8,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T11:36:50Z,page_view,7091fe90-07da-424c-8da6-24e024503be2,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +3710d038-386c-4eac-96f8-922858584fda,d898c04d-6826-4eb9-a0f3-10a2f7f631be,https://greenery.com/checkout/180dc7bb-b42a-4aa6-b52a-9fe5864e3190,2021-02-10T01:48:18Z,checkout,b9287f6c-c865-49bb-a3c9-da47bbdf3a90,180dc7bb-b42a-4aa6-b52a-9fe5864e3190, +e6e21003-1300-414f-87c1-d0ccd6cefa43,d898c04d-6826-4eb9-a0f3-10a2f7f631be,https://greenery.com/shipping/180dc7bb-b42a-4aa6-b52a-9fe5864e3190,2021-02-10T05:48:20Z,package_shipped,b9287f6c-c865-49bb-a3c9-da47bbdf3a90,180dc7bb-b42a-4aa6-b52a-9fe5864e3190, +3c440f9e-7a32-4da0-803d-955995a9f7f4,d898c04d-6826-4eb9-a0f3-10a2f7f631be,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T01:47:59Z,add_to_cart,b9287f6c-c865-49bb-a3c9-da47bbdf3a90,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +25273f9b-645b-4a04-9aa8-ba24cf095971,d898c04d-6826-4eb9-a0f3-10a2f7f631be,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T01:46:28Z,page_view,b9287f6c-c865-49bb-a3c9-da47bbdf3a90,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +3a32b36a-923a-4e40-bff9-9731378ccb40,3658fb18-889e-4f7e-8ff6-a8ef85066bec,https://greenery.com/checkout/fed6ed02-4791-48e0-8cc4-c127dceca8ca,2021-02-10T10:27:47Z,checkout,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,fed6ed02-4791-48e0-8cc4-c127dceca8ca, +e3b54ed3-60e5-434f-b081-755fbcfc65f8,3658fb18-889e-4f7e-8ff6-a8ef85066bec,https://greenery.com/shipping/fed6ed02-4791-48e0-8cc4-c127dceca8ca,2021-02-10T18:27:52Z,package_shipped,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,fed6ed02-4791-48e0-8cc4-c127dceca8ca, +bf73ed88-d0d7-4f42-89fe-400b472778bc,3658fb18-889e-4f7e-8ff6-a8ef85066bec,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T10:27:14Z,add_to_cart,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,5ceddd13-cf00-481f-9285-8340ab95d06d +b03b96bc-60a7-4267-905c-41365a30e97c,3658fb18-889e-4f7e-8ff6-a8ef85066bec,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T10:26:37Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,5ceddd13-cf00-481f-9285-8340ab95d06d +ce3a4a39-b2b0-4173-bbb9-20b24bb3bfdb,3658fb18-889e-4f7e-8ff6-a8ef85066bec,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T10:26:40Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +cc0509ff-d343-4326-9f3f-1709876aaf35,3658fb18-889e-4f7e-8ff6-a8ef85066bec,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T10:24:44Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +c40ff201-a9a0-47b2-b9c9-91f562953f19,c8f9770e-fa80-4741-a110-b8d3c3ac296c,https://greenery.com/checkout/32726aa6-2175-4fc7-856b-512f61c70dc1,2021-02-10T22:42:37Z,checkout,02414bff-285d-4008-9352-ad50839b729f,32726aa6-2175-4fc7-856b-512f61c70dc1, +e6a4e3b0-6fda-470e-abbe-225889cf7e53,c8f9770e-fa80-4741-a110-b8d3c3ac296c,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T22:41:59Z,add_to_cart,02414bff-285d-4008-9352-ad50839b729f,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +c9d69af8-1bde-4439-ba20-0d326e76a236,c8f9770e-fa80-4741-a110-b8d3c3ac296c,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T22:41:21Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +03aca940-35b0-430c-8e94-26d6f4bc36f1,c8f9770e-fa80-4741-a110-b8d3c3ac296c,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T22:40:54Z,add_to_cart,02414bff-285d-4008-9352-ad50839b729f,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +017cc67e-658e-44dd-9d38-2fb39587de69,c8f9770e-fa80-4741-a110-b8d3c3ac296c,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T22:39:23Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +c901ef66-093a-4273-aaa4-4620555d025c,c8f9770e-fa80-4741-a110-b8d3c3ac296c,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T22:38:55Z,add_to_cart,02414bff-285d-4008-9352-ad50839b729f,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +230757a8-9e61-4123-81c9-052876edcbdc,c8f9770e-fa80-4741-a110-b8d3c3ac296c,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T22:37:34Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +010103b5-9eb9-4046-88da-6f7052c61ac8,c8f9770e-fa80-4741-a110-b8d3c3ac296c,https://greenery.com/product/843b6553-dc6a-4fc4-bceb-02cd39af0168,2021-02-10T22:40:50Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,843b6553-dc6a-4fc4-bceb-02cd39af0168 +455788e9-2bbc-49c7-8555-683fcf11ef65,c8f9770e-fa80-4741-a110-b8d3c3ac296c,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T22:38:55Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,37e0062f-bd15-4c3e-b272-558a86d90598 +fce8f089-8a9b-42fe-8254-89d776a92c53,c8f9770e-fa80-4741-a110-b8d3c3ac296c,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T22:37:07Z,page_view,02414bff-285d-4008-9352-ad50839b729f,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +e581ab80-8e5d-4349-a16e-79b112c28f2f,bc252cba-cac2-4470-9444-98674ad2fee7,https://greenery.com/checkout/a5db4fd7-bc7c-47d6-a162-e613d905ec82,2021-02-10T06:30:43Z,checkout,520baa4f-ee70-420b-96c9-37e3c4238f43,a5db4fd7-bc7c-47d6-a162-e613d905ec82, +8cae1360-4e3a-40d4-b29b-ad007d776671,bc252cba-cac2-4470-9444-98674ad2fee7,https://greenery.com/shipping/a5db4fd7-bc7c-47d6-a162-e613d905ec82,2021-02-10T12:30:48Z,package_shipped,520baa4f-ee70-420b-96c9-37e3c4238f43,a5db4fd7-bc7c-47d6-a162-e613d905ec82, +dc731678-8d47-48d7-9556-2a68a4be43da,bc252cba-cac2-4470-9444-98674ad2fee7,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T06:30:19Z,add_to_cart,520baa4f-ee70-420b-96c9-37e3c4238f43,,37e0062f-bd15-4c3e-b272-558a86d90598 +b078ccc2-9ae0-436f-b524-ce9fec6c3a18,bc252cba-cac2-4470-9444-98674ad2fee7,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T06:28:21Z,page_view,520baa4f-ee70-420b-96c9-37e3c4238f43,,37e0062f-bd15-4c3e-b272-558a86d90598 +035a5cfd-4f5d-4c92-9162-d6cf37e70cc3,bc252cba-cac2-4470-9444-98674ad2fee7,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T06:27:34Z,add_to_cart,520baa4f-ee70-420b-96c9-37e3c4238f43,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +51455086-5c34-400a-8882-4ed307c8efa6,bc252cba-cac2-4470-9444-98674ad2fee7,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T06:26:05Z,page_view,520baa4f-ee70-420b-96c9-37e3c4238f43,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +10dbd4b8-3bc7-49bd-871d-2271b9746ab8,bc252cba-cac2-4470-9444-98674ad2fee7,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T06:25:43Z,add_to_cart,520baa4f-ee70-420b-96c9-37e3c4238f43,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +25f90ef2-81f2-4883-9918-d5b17e2ea61c,bc252cba-cac2-4470-9444-98674ad2fee7,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T06:24:59Z,page_view,520baa4f-ee70-420b-96c9-37e3c4238f43,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +ee28d0e5-48f5-4ddf-9180-cde8c654c5db,bc252cba-cac2-4470-9444-98674ad2fee7,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T06:28:53Z,page_view,520baa4f-ee70-420b-96c9-37e3c4238f43,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +1292eecd-0569-4b22-ae8a-d83e5d8ec1aa,bc252cba-cac2-4470-9444-98674ad2fee7,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T06:27:40Z,page_view,520baa4f-ee70-420b-96c9-37e3c4238f43,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +9975fa2f-ca2e-4ce9-825d-6b69aae2046c,31760d3d-b8f6-4a79-8bf4-db2635895405,https://greenery.com/checkout/eb27dbeb-ffe0-439c-a9cd-f32c221330d9,2021-02-10T02:06:35Z,checkout,4d3c9f53-0667-4a80-8259-12200fe75761,eb27dbeb-ffe0-439c-a9cd-f32c221330d9, +aa03def9-be81-4790-b0dd-9a80c218a196,31760d3d-b8f6-4a79-8bf4-db2635895405,https://greenery.com/shipping/eb27dbeb-ffe0-439c-a9cd-f32c221330d9,2021-02-10T06:06:38Z,package_shipped,4d3c9f53-0667-4a80-8259-12200fe75761,eb27dbeb-ffe0-439c-a9cd-f32c221330d9, +64993520-aef2-4027-a2a7-93cb763208af,31760d3d-b8f6-4a79-8bf4-db2635895405,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T02:05:54Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +fd428704-e27f-4369-8243-a26e3e7e2afb,31760d3d-b8f6-4a79-8bf4-db2635895405,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T02:03:53Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +273b8578-4dbe-4a51-b182-3044f4ad7583,31760d3d-b8f6-4a79-8bf4-db2635895405,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T02:05:15Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +09b86614-d413-4072-9e3b-a1a93a289c01,79dc0800-9b69-4bf4-b1cb-b1d93d11ea80,https://greenery.com/checkout/290e43d7-2768-47e8-9037-94d08ddc4345,2021-02-10T00:07:39Z,checkout,5a9d6641-6ca6-48f0-af45-f411750f611a,290e43d7-2768-47e8-9037-94d08ddc4345, +5ada1b58-4b6d-4616-b79e-2142c307e00b,79dc0800-9b69-4bf4-b1cb-b1d93d11ea80,https://greenery.com/shipping/290e43d7-2768-47e8-9037-94d08ddc4345,2021-02-10T09:07:42Z,package_shipped,5a9d6641-6ca6-48f0-af45-f411750f611a,290e43d7-2768-47e8-9037-94d08ddc4345, +194d10f1-d5a9-411e-9746-916b14df7a76,79dc0800-9b69-4bf4-b1cb-b1d93d11ea80,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T00:06:46Z,add_to_cart,5a9d6641-6ca6-48f0-af45-f411750f611a,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +3980e2d6-1b08-4ad4-a770-cf864bc9c5e8,79dc0800-9b69-4bf4-b1cb-b1d93d11ea80,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T00:05:48Z,page_view,5a9d6641-6ca6-48f0-af45-f411750f611a,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +1de9dc57-7d3e-4549-adc9-bb7a85974ba0,79dc0800-9b69-4bf4-b1cb-b1d93d11ea80,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T00:05:27Z,add_to_cart,5a9d6641-6ca6-48f0-af45-f411750f611a,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +afbb5592-b7d8-4025-875f-b414538cc76f,79dc0800-9b69-4bf4-b1cb-b1d93d11ea80,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T00:03:49Z,page_view,5a9d6641-6ca6-48f0-af45-f411750f611a,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +4ecf66c1-dd7a-4701-a7db-9c9034b53d81,4c712c4f-3b06-4e16-8122-46240edfc3f2,https://greenery.com/checkout/d99f88df-891d-4dc9-8750-aa77271a72d4,2021-02-10T09:45:49Z,checkout,6cbe0665-0001-43b3-98af-7cd3909b1b28,d99f88df-891d-4dc9-8750-aa77271a72d4, +5e784db3-c62e-4b82-a90a-67672e43c8bd,4c712c4f-3b06-4e16-8122-46240edfc3f2,https://greenery.com/shipping/d99f88df-891d-4dc9-8750-aa77271a72d4,2021-02-10T18:45:53Z,package_shipped,6cbe0665-0001-43b3-98af-7cd3909b1b28,d99f88df-891d-4dc9-8750-aa77271a72d4, +47bf3b66-1ab0-4998-bc1a-e12c971bcc60,4c712c4f-3b06-4e16-8122-46240edfc3f2,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T09:45:27Z,add_to_cart,6cbe0665-0001-43b3-98af-7cd3909b1b28,,e5ee99b6-519f-4218-8b41-62f48f59f700 +90e88448-be1d-4f7b-8a64-43a19308e5dc,4c712c4f-3b06-4e16-8122-46240edfc3f2,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T09:43:53Z,page_view,6cbe0665-0001-43b3-98af-7cd3909b1b28,,e5ee99b6-519f-4218-8b41-62f48f59f700 +bdb93111-0000-4e96-bf6a-af4a5c45c6e5,4c712c4f-3b06-4e16-8122-46240edfc3f2,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T09:43:11Z,add_to_cart,6cbe0665-0001-43b3-98af-7cd3909b1b28,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +2acfa4a0-d5b0-44a0-92be-fc1af9eae299,4c712c4f-3b06-4e16-8122-46240edfc3f2,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T09:42:32Z,page_view,6cbe0665-0001-43b3-98af-7cd3909b1b28,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +99f36a99-c790-41e9-91bd-735ec4d3fe98,4c712c4f-3b06-4e16-8122-46240edfc3f2,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T09:44:32Z,page_view,6cbe0665-0001-43b3-98af-7cd3909b1b28,,615695d3-8ffd-4850-bcf7-944cf6d3685b +78fd972c-1d1a-4f98-b606-97380432ffa8,4c712c4f-3b06-4e16-8122-46240edfc3f2,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T09:43:36Z,page_view,6cbe0665-0001-43b3-98af-7cd3909b1b28,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +5bffe0bd-a2f6-422f-b134-8c259f63a2e3,4c712c4f-3b06-4e16-8122-46240edfc3f2,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T09:42:59Z,page_view,6cbe0665-0001-43b3-98af-7cd3909b1b28,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +1fde0c52-43ab-4984-9aff-632a330cd6c4,bab0e434-c534-4a8d-a88c-bc6358fccfcd,https://greenery.com/checkout/f9cdbb13-c633-4867-bcb0-284d9a583781,2021-02-10T00:45:39Z,checkout,e512189a-15a2-4325-b41d-6092f5c03bc9,f9cdbb13-c633-4867-bcb0-284d9a583781, +f4003e4b-da9c-4188-a942-4fa70e483104,bab0e434-c534-4a8d-a88c-bc6358fccfcd,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T00:45:23Z,add_to_cart,e512189a-15a2-4325-b41d-6092f5c03bc9,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +20d784fa-1c37-494b-a379-aa208a9b3c15,bab0e434-c534-4a8d-a88c-bc6358fccfcd,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T00:44:05Z,page_view,e512189a-15a2-4325-b41d-6092f5c03bc9,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +ec1aed2d-c838-4f43-8986-e914cfac725a,bab0e434-c534-4a8d-a88c-bc6358fccfcd,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T00:43:20Z,add_to_cart,e512189a-15a2-4325-b41d-6092f5c03bc9,,74aeb414-e3dd-4e8a-beef-0fa45225214d +297f2924-3c28-4130-8884-45b9914ea159,bab0e434-c534-4a8d-a88c-bc6358fccfcd,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T00:42:34Z,page_view,e512189a-15a2-4325-b41d-6092f5c03bc9,,74aeb414-e3dd-4e8a-beef-0fa45225214d +6504343e-15f9-4cb1-bec7-e81b8e91f862,cbf53222-81e3-4760-b2a6-54bb416d2528,https://greenery.com/checkout/1fa7bc74-ee64-4aa8-8df3-f8066532eb9c,2021-02-10T20:32:29Z,checkout,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,1fa7bc74-ee64-4aa8-8df3-f8066532eb9c, +1fd5163e-4d80-45fd-8bbe-7d3cb8d23008,cbf53222-81e3-4760-b2a6-54bb416d2528,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T20:31:36Z,add_to_cart,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +022ff0a0-9016-475d-8c91-11984a8a620e,cbf53222-81e3-4760-b2a6-54bb416d2528,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T20:29:58Z,page_view,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +0ddf3ac7-ff5b-437e-9b72-757ec9f8a314,cbf53222-81e3-4760-b2a6-54bb416d2528,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T20:29:20Z,add_to_cart,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,80eda933-749d-4fc6-91d5-613d29eb126f +bea2ddfc-6475-4b6e-aff4-b5630f23d148,cbf53222-81e3-4760-b2a6-54bb416d2528,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T20:28:01Z,page_view,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,80eda933-749d-4fc6-91d5-613d29eb126f +89aa28e4-6e52-4ee8-938a-489b8dd562f0,cbf53222-81e3-4760-b2a6-54bb416d2528,https://greenery.com/product/55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2021-02-10T20:30:48Z,page_view,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3 +bfc0a463-10e0-45c9-a614-ac6226114f2e,13c3938a-bbac-438d-8a70-cceae94aaa37,https://greenery.com/checkout/937b130d-c75f-47c6-913f-ca7717e82dae,2021-02-10T00:00:04Z,checkout,6b116938-3785-4983-a5d7-33f6af32f0ba,937b130d-c75f-47c6-913f-ca7717e82dae, +0fc1ca98-6459-4165-bd82-c80e11b870dd,13c3938a-bbac-438d-8a70-cceae94aaa37,https://greenery.com/shipping/937b130d-c75f-47c6-913f-ca7717e82dae,2021-02-10T05:00:05Z,package_shipped,6b116938-3785-4983-a5d7-33f6af32f0ba,937b130d-c75f-47c6-913f-ca7717e82dae, +c167a8aa-c1e3-4d15-8be2-9d5de7eb0100,70bcfa08-ddf5-47a4-8cc7-1192afae21d0,https://greenery.com/checkout/2fafb5c6-5200-4d9a-af6b-b6517667a1ea,2021-02-10T22:09:42Z,checkout,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,2fafb5c6-5200-4d9a-af6b-b6517667a1ea, +461879e9-d923-4b93-b4d0-d262078c6444,70bcfa08-ddf5-47a4-8cc7-1192afae21d0,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T22:09:01Z,add_to_cart,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +8e29f5b6-a627-48fa-86cf-90aed3ac5f0f,70bcfa08-ddf5-47a4-8cc7-1192afae21d0,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T22:07:07Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +e3f2370d-ce16-4f20-a87f-16f6979301da,70bcfa08-ddf5-47a4-8cc7-1192afae21d0,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T22:06:49Z,add_to_cart,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,74aeb414-e3dd-4e8a-beef-0fa45225214d +d60bea90-b6db-4ce6-8d8f-3966da474e16,70bcfa08-ddf5-47a4-8cc7-1192afae21d0,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T22:05:10Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,74aeb414-e3dd-4e8a-beef-0fa45225214d +3944645d-5497-40e9-84c8-ec1c286d27e7,70bcfa08-ddf5-47a4-8cc7-1192afae21d0,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T22:04:36Z,add_to_cart,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +db8ba07e-9da3-46d6-b3df-b8f2ed52f4fb,70bcfa08-ddf5-47a4-8cc7-1192afae21d0,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T22:03:48Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +1fa5e47a-738f-4b6f-8176-1638bcb3581e,70bcfa08-ddf5-47a4-8cc7-1192afae21d0,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T22:02:59Z,add_to_cart,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,35550082-a52d-4301-8f06-05b30f6f3616 +cc6c631a-2697-4088-a8d8-a2cea21ea2ad,70bcfa08-ddf5-47a4-8cc7-1192afae21d0,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T22:01:17Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,35550082-a52d-4301-8f06-05b30f6f3616 +784506b4-d70f-43ce-b102-ec571296f662,70bcfa08-ddf5-47a4-8cc7-1192afae21d0,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T22:07:54Z,page_view,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,80eda933-749d-4fc6-91d5-613d29eb126f +e06fcf15-caf7-4184-9fe0-2830d8988c1f,4c5ae10a-53ad-48b1-b918-c46a4af57917,https://greenery.com/checkout/9f640f78-93eb-46d3-b4c8-41ef69b03d8b,2021-02-10T20:26:10Z,checkout,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,9f640f78-93eb-46d3-b4c8-41ef69b03d8b, +50185f75-6c62-49cf-b94c-3bb0f9de13c4,4c5ae10a-53ad-48b1-b918-c46a4af57917,https://greenery.com/shipping/9f640f78-93eb-46d3-b4c8-41ef69b03d8b,2021-02-10T22:26:15Z,package_shipped,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,9f640f78-93eb-46d3-b4c8-41ef69b03d8b, +a5d739f1-5972-4933-a062-6dbbc5e41131,4c5ae10a-53ad-48b1-b918-c46a4af57917,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T20:25:50Z,add_to_cart,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,e8b6528e-a830-4d03-a027-473b411c7f02 +a64e1611-7cf3-4c55-b079-3d474bc726cd,4c5ae10a-53ad-48b1-b918-c46a4af57917,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T20:24:41Z,page_view,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,e8b6528e-a830-4d03-a027-473b411c7f02 +3f6b3df5-a626-4874-a8b8-c12f0d83ce93,4c5ae10a-53ad-48b1-b918-c46a4af57917,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T20:24:19Z,add_to_cart,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,615695d3-8ffd-4850-bcf7-944cf6d3685b +2bfc084e-34ed-482a-b4a8-f50146b61f07,4c5ae10a-53ad-48b1-b918-c46a4af57917,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T20:22:54Z,page_view,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,615695d3-8ffd-4850-bcf7-944cf6d3685b +5cbca52a-720d-441b-8a22-4f3c3243cf88,4c5ae10a-53ad-48b1-b918-c46a4af57917,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T20:24:30Z,page_view,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +de9808f8-1bc6-4c16-82de-35dc19dad86d,4c5ae10a-53ad-48b1-b918-c46a4af57917,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T20:22:53Z,page_view,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +24128c8e-b0c6-40e8-a4ad-5da484705e3b,b64b5717-1a01-4e3c-9ca3-8618a2a7ca11,https://greenery.com/checkout/1e68f64e-1365-489e-8cf4-b56f8cf13fd7,2021-02-10T00:39:27Z,checkout,4dae48a6-8206-46eb-b629-fec4a99306ec,1e68f64e-1365-489e-8cf4-b56f8cf13fd7, +5df993ee-055c-45ac-bc1a-cf0336686dce,b64b5717-1a01-4e3c-9ca3-8618a2a7ca11,https://greenery.com/shipping/1e68f64e-1365-489e-8cf4-b56f8cf13fd7,2021-02-10T07:39:31Z,package_shipped,4dae48a6-8206-46eb-b629-fec4a99306ec,1e68f64e-1365-489e-8cf4-b56f8cf13fd7, +509a34b7-235a-4104-8270-817e1b1c6357,b64b5717-1a01-4e3c-9ca3-8618a2a7ca11,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T00:39:01Z,add_to_cart,4dae48a6-8206-46eb-b629-fec4a99306ec,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +d9233d26-c5db-4295-89cb-9cb5e7137485,b64b5717-1a01-4e3c-9ca3-8618a2a7ca11,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T00:37:47Z,page_view,4dae48a6-8206-46eb-b629-fec4a99306ec,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +6675bb49-6d43-491e-b431-b0b6199c2db1,b64b5717-1a01-4e3c-9ca3-8618a2a7ca11,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T00:37:30Z,add_to_cart,4dae48a6-8206-46eb-b629-fec4a99306ec,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +76767564-828d-4e34-9a9f-f2600876e821,b64b5717-1a01-4e3c-9ca3-8618a2a7ca11,https://greenery.com/product/b86ae24b-6f59-47e8-8adc-b17d88cbd367,2021-02-10T00:36:17Z,page_view,4dae48a6-8206-46eb-b629-fec4a99306ec,,b86ae24b-6f59-47e8-8adc-b17d88cbd367 +495c4780-1047-4349-afec-16a0e92dbf68,b64b5717-1a01-4e3c-9ca3-8618a2a7ca11,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T00:38:35Z,page_view,4dae48a6-8206-46eb-b629-fec4a99306ec,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +a22244ba-31a0-4c89-8f9e-a6955fedaa65,b64b5717-1a01-4e3c-9ca3-8618a2a7ca11,https://greenery.com/product/64d39754-03e4-4fa0-b1ea-5f4293315f67,2021-02-10T00:36:31Z,page_view,4dae48a6-8206-46eb-b629-fec4a99306ec,,64d39754-03e4-4fa0-b1ea-5f4293315f67 +02dd3773-ed9f-403b-ab0e-ded28cdfa25a,d083ecda-12fb-431e-b1e1-be3b9ab95205,https://greenery.com/checkout/cc2d40a9-dc85-481f-b027-9d1198187b70,2021-02-10T21:55:42Z,checkout,f37282a8-5c04-44bb-a9e6-fe9ed2eed6e2,cc2d40a9-dc85-481f-b027-9d1198187b70, +7b7f18e5-df80-495c-b6d3-080641682444,d083ecda-12fb-431e-b1e1-be3b9ab95205,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T21:54:53Z,add_to_cart,f37282a8-5c04-44bb-a9e6-fe9ed2eed6e2,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +1beb2377-5a1f-42cc-9e14-dfabbd22ef21,d083ecda-12fb-431e-b1e1-be3b9ab95205,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T21:53:50Z,page_view,f37282a8-5c04-44bb-a9e6-fe9ed2eed6e2,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +6eee663a-51a2-4cc3-8c09-4f2a33190e4c,d083ecda-12fb-431e-b1e1-be3b9ab95205,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T21:53:22Z,add_to_cart,f37282a8-5c04-44bb-a9e6-fe9ed2eed6e2,,c17e63f7-0d28-4a95-8248-b01ea354840e +c02129a4-095a-4c36-8e4c-ae3764d5e946,d083ecda-12fb-431e-b1e1-be3b9ab95205,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T21:52:07Z,page_view,f37282a8-5c04-44bb-a9e6-fe9ed2eed6e2,,c17e63f7-0d28-4a95-8248-b01ea354840e +869d4ba7-632b-4e7d-bf3e-dd6a62820344,d083ecda-12fb-431e-b1e1-be3b9ab95205,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T21:54:40Z,page_view,f37282a8-5c04-44bb-a9e6-fe9ed2eed6e2,,35550082-a52d-4301-8f06-05b30f6f3616 +670007f3-9d32-43b0-a936-13824f2c9040,d083ecda-12fb-431e-b1e1-be3b9ab95205,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T21:52:58Z,page_view,f37282a8-5c04-44bb-a9e6-fe9ed2eed6e2,,37e0062f-bd15-4c3e-b272-558a86d90598 +1244e149-2501-4613-9ced-dfe55ab6db4e,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/checkout/2ebd594f-3b44-4b66-87f0-5b2c321086d1,2021-02-10T16:16:50Z,checkout,4d3c9f53-0667-4a80-8259-12200fe75761,2ebd594f-3b44-4b66-87f0-5b2c321086d1, +706bfd56-82b6-4ab2-90ea-1d474f527434,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/shipping/2ebd594f-3b44-4b66-87f0-5b2c321086d1,2021-02-10T23:16:55Z,package_shipped,4d3c9f53-0667-4a80-8259-12200fe75761,2ebd594f-3b44-4b66-87f0-5b2c321086d1, +0bea04b5-737b-450c-97ab-fa198d88ee55,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T16:16:35Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +755f9395-cfd3-4e7a-8cd0-42d2c6ff90ac,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T16:15:26Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +9d641e2e-b302-473a-b3ad-c32399b897c9,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T16:14:40Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,37e0062f-bd15-4c3e-b272-558a86d90598 +e387dcde-b873-4178-b1aa-b8c74e6ac143,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T16:12:35Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,37e0062f-bd15-4c3e-b272-558a86d90598 +a38d7e85-83de-415c-86e9-e21858268825,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T16:11:40Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,e5ee99b6-519f-4218-8b41-62f48f59f700 +65eed852-cda2-467c-8c9d-ed828051c8c2,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T16:10:21Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,e5ee99b6-519f-4218-8b41-62f48f59f700 +48dcddd3-2ed5-45e6-973a-eea967869154,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T16:09:49Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +972bad9d-d8c6-4230-9ce6-af677e1b151d,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/product/e706ab70-b396-4d30-a6b2-a1ccf3625b52,2021-02-10T16:08:53Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,e706ab70-b396-4d30-a6b2-a1ccf3625b52 +4e8ccd3f-91fe-4644-ab2e-38ade3c171a7,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T16:08:19Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +8499bd9f-fb85-4187-a5be-2af9134dc08a,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T16:07:23Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +d3459690-952b-4ef0-b718-d7a9f407c507,5ce2235b-1d10-4cd2-ac45-94da1de6ff01,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T16:15:44Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +e5390ecd-5d24-4b2d-adcd-5fbcea05c544,fe952337-c7c5-4ac8-a4b7-72bd38403f77,https://greenery.com/checkout/d9ec4e76-e7c0-4457-b6e2-a025abea6b9a,2021-02-10T03:40:01Z,checkout,6d37adeb-4c53-4167-b170-c89e4bd1764a,d9ec4e76-e7c0-4457-b6e2-a025abea6b9a, +aaaecb60-4a7e-408d-ae60-68966f3f5a52,fe952337-c7c5-4ac8-a4b7-72bd38403f77,https://greenery.com/shipping/d9ec4e76-e7c0-4457-b6e2-a025abea6b9a,2021-02-10T06:40:03Z,package_shipped,6d37adeb-4c53-4167-b170-c89e4bd1764a,d9ec4e76-e7c0-4457-b6e2-a025abea6b9a, +dfe5f744-3c13-4114-b6c2-01aaecd835a3,fe952337-c7c5-4ac8-a4b7-72bd38403f77,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T03:39:38Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,74aeb414-e3dd-4e8a-beef-0fa45225214d +7d2dcc04-f3a2-4976-b7b8-b19b89f1e5e5,fe952337-c7c5-4ac8-a4b7-72bd38403f77,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T03:38:31Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,74aeb414-e3dd-4e8a-beef-0fa45225214d +e23c660d-52b5-4eb0-839c-2743deaeda79,fe952337-c7c5-4ac8-a4b7-72bd38403f77,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T03:38:12Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,35550082-a52d-4301-8f06-05b30f6f3616 +630ca99e-240f-4c50-b965-765962636b3d,fe952337-c7c5-4ac8-a4b7-72bd38403f77,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T03:37:21Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,35550082-a52d-4301-8f06-05b30f6f3616 +697318f9-067c-41e9-8b07-9ad472864eed,fe952337-c7c5-4ac8-a4b7-72bd38403f77,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T03:36:39Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,37e0062f-bd15-4c3e-b272-558a86d90598 +52b52fea-8b27-4d00-a05c-0f01750cc348,fe952337-c7c5-4ac8-a4b7-72bd38403f77,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T03:34:47Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,37e0062f-bd15-4c3e-b272-558a86d90598 +5a7b6ade-5bac-44e4-b57b-91493cc4444b,fe952337-c7c5-4ac8-a4b7-72bd38403f77,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T03:39:03Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,689fb64e-a4a2-45c5-b9f2-480c2155624d +db5c2c6e-58a6-45c9-b36e-33266dba8630,fe952337-c7c5-4ac8-a4b7-72bd38403f77,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T03:38:24Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +ded5b723-fffb-4bc4-87c4-2e7507c75dbb,c7532971-9196-47b7-963f-6c30e5a60024,https://greenery.com/checkout/299145f7-2b7f-484d-9dde-cc20602ed5f5,2021-02-10T10:13:25Z,checkout,6cf2751f-d815-4fbc-b04a-245c1301574c,299145f7-2b7f-484d-9dde-cc20602ed5f5, +1eb4395b-e326-4786-bc4b-5244f589976b,c7532971-9196-47b7-963f-6c30e5a60024,https://greenery.com/shipping/299145f7-2b7f-484d-9dde-cc20602ed5f5,2021-02-10T17:13:30Z,package_shipped,6cf2751f-d815-4fbc-b04a-245c1301574c,299145f7-2b7f-484d-9dde-cc20602ed5f5, +093ab906-0d59-4577-88e3-00981bbad1dc,c7532971-9196-47b7-963f-6c30e5a60024,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T10:13:03Z,add_to_cart,6cf2751f-d815-4fbc-b04a-245c1301574c,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +25422e59-95ce-45e8-a973-8d392cdfbf44,c7532971-9196-47b7-963f-6c30e5a60024,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T10:12:00Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +349d4ee7-9a56-439f-9034-2befba4f1ec1,00b3765f-3af3-4cbf-9fba-904daf17faff,https://greenery.com/checkout/35b4cbc7-b92f-400f-b292-8494dbb23567,2021-02-10T03:05:22Z,checkout,dbc936d7-51da-4dfa-9dd9-7ce399b466df,35b4cbc7-b92f-400f-b292-8494dbb23567, +c383d453-77fc-4d63-bff3-9783c56a9eeb,00b3765f-3af3-4cbf-9fba-904daf17faff,https://greenery.com/shipping/35b4cbc7-b92f-400f-b292-8494dbb23567,2021-02-10T09:05:25Z,package_shipped,dbc936d7-51da-4dfa-9dd9-7ce399b466df,35b4cbc7-b92f-400f-b292-8494dbb23567, +dd70a583-fbfb-4031-a1da-1b8b4d33ef1c,00b3765f-3af3-4cbf-9fba-904daf17faff,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T03:05:06Z,add_to_cart,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +94e5a94e-1208-4f61-b4d8-b1052ac36337,00b3765f-3af3-4cbf-9fba-904daf17faff,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T03:04:00Z,page_view,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +1bf1353f-c430-4dbe-a098-8e7352c94796,00b3765f-3af3-4cbf-9fba-904daf17faff,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T03:03:18Z,add_to_cart,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +ddf74d6d-3443-4bec-88e5-55d9f08f7bc6,00b3765f-3af3-4cbf-9fba-904daf17faff,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T03:01:59Z,page_view,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +7f830615-028e-4428-8b00-41f3daf34701,00b3765f-3af3-4cbf-9fba-904daf17faff,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T03:01:34Z,add_to_cart,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,74aeb414-e3dd-4e8a-beef-0fa45225214d +9f9d7542-b6d6-498e-b30d-9e0cce2440ab,00b3765f-3af3-4cbf-9fba-904daf17faff,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T03:00:56Z,page_view,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,74aeb414-e3dd-4e8a-beef-0fa45225214d +681e56b3-4639-4d88-86ff-124f90ed59c4,00b3765f-3af3-4cbf-9fba-904daf17faff,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T03:00:36Z,add_to_cart,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +002e3464-8352-48ae-9fc2-551f7b83c07f,00b3765f-3af3-4cbf-9fba-904daf17faff,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T02:59:43Z,page_view,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +fc858d32-79b7-4322-80a9-c5e4d879abfa,00b3765f-3af3-4cbf-9fba-904daf17faff,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T03:03:53Z,page_view,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,e5ee99b6-519f-4218-8b41-62f48f59f700 +a0d19f33-65b1-4e01-86dc-eb3fc3236dd5,82b9e207-94ce-489d-88bc-9b299a5e9b2b,https://greenery.com/checkout/0f3fb208-95e1-4d3b-8f09-ae6088d41938,2021-02-10T19:06:07Z,checkout,366bd18f-6a16-4f39-9177-080c11ce9f25,0f3fb208-95e1-4d3b-8f09-ae6088d41938, +182ec9e1-2bcd-4e8a-8f0a-167037b918e6,82b9e207-94ce-489d-88bc-9b299a5e9b2b,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T19:05:21Z,add_to_cart,366bd18f-6a16-4f39-9177-080c11ce9f25,,615695d3-8ffd-4850-bcf7-944cf6d3685b +a58b9a26-bc5e-4894-9459-df7d86b83916,82b9e207-94ce-489d-88bc-9b299a5e9b2b,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T19:04:16Z,page_view,366bd18f-6a16-4f39-9177-080c11ce9f25,,615695d3-8ffd-4850-bcf7-944cf6d3685b +80f88bde-8884-4471-a769-be234ffe4b0b,c5a12cb3-59aa-42d9-83dd-b1b6ae8fa6b9,https://greenery.com/checkout/fca7f7c7-e7cb-4207-b3c3-dcca5f4b633b,2021-02-10T17:16:41Z,checkout,78fe6452-8a56-4226-ae22-f372116b12ff,fca7f7c7-e7cb-4207-b3c3-dcca5f4b633b, +f23cd470-fa5d-400e-933b-557ba04640a2,c5a12cb3-59aa-42d9-83dd-b1b6ae8fa6b9,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T17:16:22Z,add_to_cart,78fe6452-8a56-4226-ae22-f372116b12ff,,74aeb414-e3dd-4e8a-beef-0fa45225214d +2020417b-cf4d-4b4c-ad0d-e8c805d93f89,c5a12cb3-59aa-42d9-83dd-b1b6ae8fa6b9,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T17:15:20Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,74aeb414-e3dd-4e8a-beef-0fa45225214d +eab14e6a-5d27-41f9-8d8b-c3673bd04e98,c5a12cb3-59aa-42d9-83dd-b1b6ae8fa6b9,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T17:14:46Z,add_to_cart,78fe6452-8a56-4226-ae22-f372116b12ff,,c17e63f7-0d28-4a95-8248-b01ea354840e +a874fd24-2a41-46ba-b798-270818791563,c5a12cb3-59aa-42d9-83dd-b1b6ae8fa6b9,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T17:13:31Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,c17e63f7-0d28-4a95-8248-b01ea354840e +9169f619-f2c6-4692-a528-801de4644dd9,c5a12cb3-59aa-42d9-83dd-b1b6ae8fa6b9,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T17:16:05Z,page_view,78fe6452-8a56-4226-ae22-f372116b12ff,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +4f574228-df33-4f34-b9b8-aace3a60fd46,1fc6358f-3ca4-42ae-8b00-e8ee577aa4b9,https://greenery.com/checkout/373c221e-275c-41aa-a334-0b2d73171fa4,2021-02-10T11:53:40Z,checkout,5eb03e58-d3d1-47f9-87bc-b0184556c02d,373c221e-275c-41aa-a334-0b2d73171fa4, +ca91362c-8446-4e27-911d-44145cde78bc,1fc6358f-3ca4-42ae-8b00-e8ee577aa4b9,https://greenery.com/shipping/373c221e-275c-41aa-a334-0b2d73171fa4,2021-02-10T18:53:44Z,package_shipped,5eb03e58-d3d1-47f9-87bc-b0184556c02d,373c221e-275c-41aa-a334-0b2d73171fa4, +fec73065-2d79-4771-ba16-4f2f82c2de6a,1fc6358f-3ca4-42ae-8b00-e8ee577aa4b9,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T11:52:51Z,add_to_cart,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +3c3a5442-7d69-4000-8bc5-7f2ce4492b6a,1fc6358f-3ca4-42ae-8b00-e8ee577aa4b9,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T11:51:51Z,page_view,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +d2a03975-0b78-42c3-90f4-345b8574dcd0,1fc6358f-3ca4-42ae-8b00-e8ee577aa4b9,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T11:52:18Z,page_view,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,5ceddd13-cf00-481f-9285-8340ab95d06d +a127daf7-6732-4bb4-a48d-9e91006767f1,1fc6358f-3ca4-42ae-8b00-e8ee577aa4b9,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T11:51:41Z,page_view,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,80eda933-749d-4fc6-91d5-613d29eb126f +68707e43-cafd-4f0f-b674-cc5c956fa049,1fc6358f-3ca4-42ae-8b00-e8ee577aa4b9,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T11:50:19Z,page_view,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +b66683ac-9895-4e5c-9283-04f2dc44ea88,1cced901-bf4e-4aef-b865-c435e243be50,https://greenery.com/checkout/939767ac-357a-4bec-91f8-a7b25edd46c9,2021-02-10T07:25:44Z,checkout,6cf2751f-d815-4fbc-b04a-245c1301574c,939767ac-357a-4bec-91f8-a7b25edd46c9, +cc7d8eb8-8a10-41ee-83fa-2ed258cf6b74,1cced901-bf4e-4aef-b865-c435e243be50,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T07:25:00Z,add_to_cart,6cf2751f-d815-4fbc-b04a-245c1301574c,,80eda933-749d-4fc6-91d5-613d29eb126f +378419b3-1bbf-4ab1-97da-958ed94ed0b6,1cced901-bf4e-4aef-b865-c435e243be50,https://greenery.com/product/80eda933-749d-4fc6-91d5-613d29eb126f,2021-02-10T07:24:23Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,80eda933-749d-4fc6-91d5-613d29eb126f +c8de4ea9-bbd4-40cc-956d-5db85172ee22,1cced901-bf4e-4aef-b865-c435e243be50,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T07:23:57Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,e8b6528e-a830-4d03-a027-473b411c7f02 +d67258b3-bbad-4f0c-9da4-23a51baa0da4,1cced901-bf4e-4aef-b865-c435e243be50,https://greenery.com/product/e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2021-02-10T07:22:43Z,page_view,6cf2751f-d815-4fbc-b04a-245c1301574c,,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc +59f356eb-a22c-42cc-9538-ce09dd7fb5ac,bbf16482-02e8-4d2d-ba88-e9a13c2c0767,https://greenery.com/checkout/12d71a1a-3762-4e17-a508-6e11b5629852,2021-02-10T20:30:57Z,checkout,89dd1d56-f177-4b28-86c8-b7d1beeff4a8,12d71a1a-3762-4e17-a508-6e11b5629852, +d74bcbdf-f19a-4b55-b9b9-e4b7b54e1db2,bbf16482-02e8-4d2d-ba88-e9a13c2c0767,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T20:30:16Z,add_to_cart,89dd1d56-f177-4b28-86c8-b7d1beeff4a8,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +1d3ea38c-ef50-4c86-9e68-2c828cf743e6,bbf16482-02e8-4d2d-ba88-e9a13c2c0767,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T20:28:37Z,page_view,89dd1d56-f177-4b28-86c8-b7d1beeff4a8,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +5367234f-eeef-4b42-8e15-74654b8b4405,bbf16482-02e8-4d2d-ba88-e9a13c2c0767,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T20:29:01Z,page_view,89dd1d56-f177-4b28-86c8-b7d1beeff4a8,,a88a23ef-679c-4743-b151-dc7722040d8c +fef5dca1-1e1c-4c53-8394-3707017ebc70,bbf16482-02e8-4d2d-ba88-e9a13c2c0767,https://greenery.com/product/6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2021-02-10T20:27:45Z,page_view,89dd1d56-f177-4b28-86c8-b7d1beeff4a8,,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af +37609f5e-0e52-4814-bc66-e08d49b7e96f,99b96ceb-43ac-4f77-8a74-124a11afa2c2,https://greenery.com/checkout/b249a133-9d0d-4897-9ee3-0226e76914dc,2021-02-10T11:49:19Z,checkout,1df78ad9-9493-4ce9-b1ad-776f26650417,b249a133-9d0d-4897-9ee3-0226e76914dc, +2a0a5286-40b8-44d6-9b3c-7fb9b912ce3a,99b96ceb-43ac-4f77-8a74-124a11afa2c2,https://greenery.com/shipping/b249a133-9d0d-4897-9ee3-0226e76914dc,2021-02-10T14:49:22Z,package_shipped,1df78ad9-9493-4ce9-b1ad-776f26650417,b249a133-9d0d-4897-9ee3-0226e76914dc, +40ddcae4-bd2a-419e-adfc-e6990f6bb332,99b96ceb-43ac-4f77-8a74-124a11afa2c2,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T11:49:04Z,add_to_cart,1df78ad9-9493-4ce9-b1ad-776f26650417,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +12242696-35ae-4cd3-866a-9ef92d6557bf,99b96ceb-43ac-4f77-8a74-124a11afa2c2,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T11:47:39Z,page_view,1df78ad9-9493-4ce9-b1ad-776f26650417,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +254e171d-65f9-4333-bedf-9558bedfd3fe,99b96ceb-43ac-4f77-8a74-124a11afa2c2,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T11:46:47Z,add_to_cart,1df78ad9-9493-4ce9-b1ad-776f26650417,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +b126325b-3837-4848-b9b8-6fe9309abecf,99b96ceb-43ac-4f77-8a74-124a11afa2c2,https://greenery.com/product/05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2021-02-10T11:45:31Z,page_view,1df78ad9-9493-4ce9-b1ad-776f26650417,,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d +c01b7bf6-65de-4dfe-830a-f9f43b968874,99b96ceb-43ac-4f77-8a74-124a11afa2c2,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T11:47:54Z,page_view,1df78ad9-9493-4ce9-b1ad-776f26650417,,5ceddd13-cf00-481f-9285-8340ab95d06d +1e1c5549-1c86-4ea0-8d74-a8d5b4b8b780,da155dad-44f0-4306-a999-ae3322955cb3,https://greenery.com/checkout/f0f5f852-5c81-4f33-a415-15b660486918,2021-02-10T11:12:12Z,checkout,1550e197-9073-408e-a1ca-08f9dbac7f7a,f0f5f852-5c81-4f33-a415-15b660486918, +1a8642de-7d88-4ef5-ab30-08d99c430732,da155dad-44f0-4306-a999-ae3322955cb3,https://greenery.com/shipping/f0f5f852-5c81-4f33-a415-15b660486918,2021-02-10T13:12:15Z,package_shipped,1550e197-9073-408e-a1ca-08f9dbac7f7a,f0f5f852-5c81-4f33-a415-15b660486918, +20754457-dcfe-4ab3-8a4b-fdea6602c87f,da155dad-44f0-4306-a999-ae3322955cb3,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T11:11:20Z,add_to_cart,1550e197-9073-408e-a1ca-08f9dbac7f7a,,be49171b-9f72-4fc9-bf7a-9a52e259836b +3d4bc745-ee7e-47a3-9ba3-93d1cf1a515f,da155dad-44f0-4306-a999-ae3322955cb3,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T11:10:12Z,page_view,1550e197-9073-408e-a1ca-08f9dbac7f7a,,be49171b-9f72-4fc9-bf7a-9a52e259836b +c8c9b78c-9b86-439e-bcee-b7b33c423290,da155dad-44f0-4306-a999-ae3322955cb3,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T11:09:36Z,add_to_cart,1550e197-9073-408e-a1ca-08f9dbac7f7a,,a88a23ef-679c-4743-b151-dc7722040d8c +5802dfcf-a4b3-46b3-a676-eee473e67e49,da155dad-44f0-4306-a999-ae3322955cb3,https://greenery.com/product/a88a23ef-679c-4743-b151-dc7722040d8c,2021-02-10T11:07:41Z,page_view,1550e197-9073-408e-a1ca-08f9dbac7f7a,,a88a23ef-679c-4743-b151-dc7722040d8c +8ec4a3ad-3ee7-4632-9ab3-fbecc6fd5bb5,da155dad-44f0-4306-a999-ae3322955cb3,https://greenery.com/product/37e0062f-bd15-4c3e-b272-558a86d90598,2021-02-10T11:10:14Z,page_view,1550e197-9073-408e-a1ca-08f9dbac7f7a,,37e0062f-bd15-4c3e-b272-558a86d90598 +d12efd70-092b-49da-a1ba-d8da5ec42257,0d152cec-2c3c-4f4c-b2e1-08cd4286964c,https://greenery.com/checkout/f6eed630-9b01-4f64-81eb-f13be001f2b6,2021-02-10T08:42:06Z,checkout,68e0c8f7-9546-42ed-b327-f67debec10cf,f6eed630-9b01-4f64-81eb-f13be001f2b6, +345b10a6-3b9e-4ab2-a356-78ef528583ea,0d152cec-2c3c-4f4c-b2e1-08cd4286964c,https://greenery.com/shipping/f6eed630-9b01-4f64-81eb-f13be001f2b6,2021-02-10T10:42:08Z,package_shipped,68e0c8f7-9546-42ed-b327-f67debec10cf,f6eed630-9b01-4f64-81eb-f13be001f2b6, +72a3fd1c-4841-474a-9df6-53d7d8e23c8f,0d152cec-2c3c-4f4c-b2e1-08cd4286964c,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T08:41:46Z,add_to_cart,68e0c8f7-9546-42ed-b327-f67debec10cf,,74aeb414-e3dd-4e8a-beef-0fa45225214d +1a6594c0-6f7d-4f98-80f1-1e44f78035c4,0d152cec-2c3c-4f4c-b2e1-08cd4286964c,https://greenery.com/product/74aeb414-e3dd-4e8a-beef-0fa45225214d,2021-02-10T08:40:54Z,page_view,68e0c8f7-9546-42ed-b327-f67debec10cf,,74aeb414-e3dd-4e8a-beef-0fa45225214d +83e110bc-565c-45c9-97a2-7dbb782d3729,0d152cec-2c3c-4f4c-b2e1-08cd4286964c,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T08:40:15Z,add_to_cart,68e0c8f7-9546-42ed-b327-f67debec10cf,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +3d7ae7f9-bcfe-4f8f-a4b4-0ab0ed8dda0f,0d152cec-2c3c-4f4c-b2e1-08cd4286964c,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T08:38:31Z,page_view,68e0c8f7-9546-42ed-b327-f67debec10cf,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +27a66f59-f2ea-4cbf-bc82-af03a9ba31fc,0d152cec-2c3c-4f4c-b2e1-08cd4286964c,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T08:38:09Z,add_to_cart,68e0c8f7-9546-42ed-b327-f67debec10cf,,5ceddd13-cf00-481f-9285-8340ab95d06d +ec810daa-cfab-468f-a5d5-2382e15367a4,0d152cec-2c3c-4f4c-b2e1-08cd4286964c,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T08:37:20Z,page_view,68e0c8f7-9546-42ed-b327-f67debec10cf,,5ceddd13-cf00-481f-9285-8340ab95d06d +9a5e31c3-017d-43ac-8f92-5838c8e00f68,0d152cec-2c3c-4f4c-b2e1-08cd4286964c,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T08:41:08Z,page_view,68e0c8f7-9546-42ed-b327-f67debec10cf,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +0eee2a6b-df3a-487d-a300-cb08913a3d01,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/checkout/7023672d-7f59-4b86-be86-4d4621ad06ae,2021-02-10T07:06:44Z,checkout,4d3c9f53-0667-4a80-8259-12200fe75761,7023672d-7f59-4b86-be86-4d4621ad06ae, +ebed103d-5d3a-48fa-ac5e-df935c842922,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/shipping/7023672d-7f59-4b86-be86-4d4621ad06ae,2021-02-10T15:06:45Z,package_shipped,4d3c9f53-0667-4a80-8259-12200fe75761,7023672d-7f59-4b86-be86-4d4621ad06ae, +73bf05e9-494f-486e-9fec-32c4511dd373,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T07:06:23Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +0f8e57a8-5697-41b0-b5d9-15b061782637,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/4cda01b9-62e2-46c5-830f-b7f262a58fb1,2021-02-10T07:04:57Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,4cda01b9-62e2-46c5-830f-b7f262a58fb1 +686a1e82-9364-4ec6-a0fd-ba4e72c1204e,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T07:04:18Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,35550082-a52d-4301-8f06-05b30f6f3616 +b133758f-9c5a-4066-9419-0b1a860ef3b8,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T07:02:33Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,35550082-a52d-4301-8f06-05b30f6f3616 +b06ff628-561b-4ce4-98e5-e91fd222198d,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T07:01:47Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +e5fe53a2-e914-4031-980f-b9c7d0006c9b,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T07:00:45Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +13385080-ad22-4bd7-a90c-f27d546bbb27,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T07:00:18Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,689fb64e-a4a2-45c5-b9f2-480c2155624d +1d8a2d34-3835-4625-8946-b79b1d752693,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T06:59:41Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,689fb64e-a4a2-45c5-b9f2-480c2155624d +3e6d5908-6c7c-48df-a485-950b3e6a290e,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T06:58:58Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +283230b5-a4ab-4724-b587-2dc9b81f4a9a,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/bb19d194-e1bd-4358-819e-cd1f1b401c0c,2021-02-10T06:58:09Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,bb19d194-e1bd-4358-819e-cd1f1b401c0c +268ce1aa-ecaf-4e24-afd8-c13b098b9847,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T06:57:33Z,add_to_cart,4d3c9f53-0667-4a80-8259-12200fe75761,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +9fec7bbc-2779-4985-ac15-a70b3d9f8387,e9076cc0-d8b0-4fe1-a610-1d816ba1fd5d,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T06:55:30Z,page_view,4d3c9f53-0667-4a80-8259-12200fe75761,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +cdb753b9-0d05-4add-b960-e1b82bea2424,f7bf234c-d1b5-4f07-bf6e-25d42db6eb2b,https://greenery.com/checkout/40dceee3-31ce-450b-b55d-09099de1a8fb,2021-02-10T10:30:04Z,checkout,f47ac0f5-2afa-4e71-8328-bd881947159b,40dceee3-31ce-450b-b55d-09099de1a8fb, +7592cabd-1eb4-4ace-abd1-ce30a3512a8c,f7bf234c-d1b5-4f07-bf6e-25d42db6eb2b,https://greenery.com/shipping/40dceee3-31ce-450b-b55d-09099de1a8fb,2021-02-10T14:30:07Z,package_shipped,f47ac0f5-2afa-4e71-8328-bd881947159b,40dceee3-31ce-450b-b55d-09099de1a8fb, +bfe54d58-72bd-4dc9-abb5-24a79fc0d59f,f7bf234c-d1b5-4f07-bf6e-25d42db6eb2b,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T10:29:39Z,add_to_cart,f47ac0f5-2afa-4e71-8328-bd881947159b,,689fb64e-a4a2-45c5-b9f2-480c2155624d +c0595d4d-9166-4964-8eb0-bf9b68c50fdb,f7bf234c-d1b5-4f07-bf6e-25d42db6eb2b,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T10:28:11Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,689fb64e-a4a2-45c5-b9f2-480c2155624d +d9b86037-f528-4dcd-8d92-e2ae1c57346f,f7bf234c-d1b5-4f07-bf6e-25d42db6eb2b,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T10:27:28Z,add_to_cart,f47ac0f5-2afa-4e71-8328-bd881947159b,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +89b3a71e-6c53-4f8c-b732-38078d62703d,f7bf234c-d1b5-4f07-bf6e-25d42db6eb2b,https://greenery.com/product/c7050c3b-a898-424d-8d98-ab0aaad7bef4,2021-02-10T10:25:28Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,c7050c3b-a898-424d-8d98-ab0aaad7bef4 +4c162b31-f72b-4e22-8db5-6800e256ab09,f7bf234c-d1b5-4f07-bf6e-25d42db6eb2b,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T10:28:48Z,page_view,f47ac0f5-2afa-4e71-8328-bd881947159b,,e8b6528e-a830-4d03-a027-473b411c7f02 +6a428b83-6d0d-4ab6-99f2-2c99ad914b61,165b7467-dfdf-49b7-9d94-c976bd016ab1,https://greenery.com/checkout/71d7653c-9386-42df-afef-6d9d44bb53c4,2021-02-10T22:10:16Z,checkout,520baa4f-ee70-420b-96c9-37e3c4238f43,71d7653c-9386-42df-afef-6d9d44bb53c4, +8a1f7c4d-4c4a-497a-bcea-e77d15a897ba,165b7467-dfdf-49b7-9d94-c976bd016ab1,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T22:09:36Z,add_to_cart,520baa4f-ee70-420b-96c9-37e3c4238f43,,689fb64e-a4a2-45c5-b9f2-480c2155624d +75198384-fddf-4887-92dd-cef7df0890ab,165b7467-dfdf-49b7-9d94-c976bd016ab1,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T22:07:42Z,page_view,520baa4f-ee70-420b-96c9-37e3c4238f43,,689fb64e-a4a2-45c5-b9f2-480c2155624d +4252d041-21e3-4a8e-93dd-e9d2d404897b,165b7467-dfdf-49b7-9d94-c976bd016ab1,https://greenery.com/product/e8b6528e-a830-4d03-a027-473b411c7f02,2021-02-10T22:08:52Z,page_view,520baa4f-ee70-420b-96c9-37e3c4238f43,,e8b6528e-a830-4d03-a027-473b411c7f02 +1c33f2ef-0082-40da-baee-49c320546d0a,165b7467-dfdf-49b7-9d94-c976bd016ab1,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T22:07:31Z,page_view,520baa4f-ee70-420b-96c9-37e3c4238f43,,35550082-a52d-4301-8f06-05b30f6f3616 +a4c62adc-55da-4057-8d97-bf8f1ccac8ce,165b7467-dfdf-49b7-9d94-c976bd016ab1,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T22:06:09Z,page_view,520baa4f-ee70-420b-96c9-37e3c4238f43,,be49171b-9f72-4fc9-bf7a-9a52e259836b +106374f0-f5c5-4526-9d91-23aee79eaf9f,50b7cf15-73fb-48be-adba-915313e93f0b,https://greenery.com/checkout/84aac39f-68ae-4e5f-a2c7-b5ad0b820a09,2021-02-10T23:45:31Z,checkout,4115e7da-5892-4eef-9f39-705626158c7f,84aac39f-68ae-4e5f-a2c7-b5ad0b820a09, +51c7f260-a4ed-43c4-8d84-cb9181bf1aee,50b7cf15-73fb-48be-adba-915313e93f0b,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T23:45:06Z,add_to_cart,4115e7da-5892-4eef-9f39-705626158c7f,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +2cefcad6-582c-4041-b1fd-2a2e9e83960d,50b7cf15-73fb-48be-adba-915313e93f0b,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T23:44:00Z,page_view,4115e7da-5892-4eef-9f39-705626158c7f,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +6ac99afa-ef89-405e-9e23-94ef7661703f,50b7cf15-73fb-48be-adba-915313e93f0b,https://greenery.com/product/58b575f2-2192-4a53-9d21-df9a0c14fc25,2021-02-10T23:43:36Z,page_view,4115e7da-5892-4eef-9f39-705626158c7f,,58b575f2-2192-4a53-9d21-df9a0c14fc25 +90ce3566-b9c8-4dfd-a51c-425d08030cd5,50b7cf15-73fb-48be-adba-915313e93f0b,https://greenery.com/product/be49171b-9f72-4fc9-bf7a-9a52e259836b,2021-02-10T23:42:50Z,page_view,4115e7da-5892-4eef-9f39-705626158c7f,,be49171b-9f72-4fc9-bf7a-9a52e259836b +7549f71f-7dae-4ef1-88be-bd813b6f4945,eb0aacf8-81e3-49b7-8712-c3b8418ccee6,https://greenery.com/checkout/5b8caca4-14fb-4813-b0bc-b768c8217a19,2021-02-10T22:44:31Z,checkout,eafe1c71-6ae0-4add-b9d9-34d9c5d00c50,5b8caca4-14fb-4813-b0bc-b768c8217a19, +4bfd4138-816f-472d-b38d-24b06f568dc8,eb0aacf8-81e3-49b7-8712-c3b8418ccee6,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T22:44:16Z,add_to_cart,eafe1c71-6ae0-4add-b9d9-34d9c5d00c50,,615695d3-8ffd-4850-bcf7-944cf6d3685b +7ce2b1f3-1203-4fc3-8a08-d158063d5f50,eb0aacf8-81e3-49b7-8712-c3b8418ccee6,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T22:42:46Z,page_view,eafe1c71-6ae0-4add-b9d9-34d9c5d00c50,,615695d3-8ffd-4850-bcf7-944cf6d3685b +e7814509-0aea-4c81-9e89-6c09aa5cec71,eb0aacf8-81e3-49b7-8712-c3b8418ccee6,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T22:41:56Z,add_to_cart,eafe1c71-6ae0-4add-b9d9-34d9c5d00c50,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +5a2af048-3bba-4093-a8a0-d25aa5e36d0d,eb0aacf8-81e3-49b7-8712-c3b8418ccee6,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T22:40:42Z,page_view,eafe1c71-6ae0-4add-b9d9-34d9c5d00c50,,5b50b820-1d0a-4231-9422-75e7f6b0cecf +f6f8e03a-9672-4f09-bd47-54f8115a56d1,eb0aacf8-81e3-49b7-8712-c3b8418ccee6,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T22:40:10Z,add_to_cart,eafe1c71-6ae0-4add-b9d9-34d9c5d00c50,,35550082-a52d-4301-8f06-05b30f6f3616 +1f64ac6c-079c-49ff-9ddc-d74f10b11fd3,eb0aacf8-81e3-49b7-8712-c3b8418ccee6,https://greenery.com/product/35550082-a52d-4301-8f06-05b30f6f3616,2021-02-10T22:39:02Z,page_view,eafe1c71-6ae0-4add-b9d9-34d9c5d00c50,,35550082-a52d-4301-8f06-05b30f6f3616 +9482a6bb-396b-4699-a8a6-b7c0f5e2771a,eb0aacf8-81e3-49b7-8712-c3b8418ccee6,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T22:38:36Z,add_to_cart,eafe1c71-6ae0-4add-b9d9-34d9c5d00c50,,e5ee99b6-519f-4218-8b41-62f48f59f700 +4d93fb88-d030-4523-8dbd-19c04a2d498b,eb0aacf8-81e3-49b7-8712-c3b8418ccee6,https://greenery.com/product/e5ee99b6-519f-4218-8b41-62f48f59f700,2021-02-10T22:37:39Z,page_view,eafe1c71-6ae0-4add-b9d9-34d9c5d00c50,,e5ee99b6-519f-4218-8b41-62f48f59f700 +e6ca8ebe-f3df-4a57-875a-bc102c492b6f,eb0aacf8-81e3-49b7-8712-c3b8418ccee6,https://greenery.com/product/5ceddd13-cf00-481f-9285-8340ab95d06d,2021-02-10T22:43:33Z,page_view,eafe1c71-6ae0-4add-b9d9-34d9c5d00c50,,5ceddd13-cf00-481f-9285-8340ab95d06d +ae8ac204-446f-4c5b-9b14-50041e56f4a4,efface1b-36e4-42b9-a9fa-d0864bbe93e2,https://greenery.com/checkout/5c309f46-440b-4cd5-a908-862c72e008b2,2021-02-10T10:15:24Z,checkout,e09e27fe-72e3-4359-809e-43acf4976f55,5c309f46-440b-4cd5-a908-862c72e008b2, +d185c0d7-7d46-4b37-acd8-9f9fac72baec,efface1b-36e4-42b9-a9fa-d0864bbe93e2,https://greenery.com/shipping/5c309f46-440b-4cd5-a908-862c72e008b2,2021-02-10T12:15:26Z,package_shipped,e09e27fe-72e3-4359-809e-43acf4976f55,5c309f46-440b-4cd5-a908-862c72e008b2, +a7d9afcd-06c6-4adc-8327-84ed6b4009a2,efface1b-36e4-42b9-a9fa-d0864bbe93e2,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T10:15:03Z,add_to_cart,e09e27fe-72e3-4359-809e-43acf4976f55,,689fb64e-a4a2-45c5-b9f2-480c2155624d +8bb7ae35-9fe5-4ddf-a0dd-a2645bbe1693,efface1b-36e4-42b9-a9fa-d0864bbe93e2,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T10:13:27Z,page_view,e09e27fe-72e3-4359-809e-43acf4976f55,,689fb64e-a4a2-45c5-b9f2-480c2155624d +423a2ddd-6f76-4ca9-9833-221eeb126a2d,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/checkout/44f19d9b-6f8d-4c04-8c1e-ee05a171a48a,2021-02-10T20:05:02Z,checkout,6d37adeb-4c53-4167-b170-c89e4bd1764a,44f19d9b-6f8d-4c04-8c1e-ee05a171a48a, +ffffde29-ccd1-4ba5-844f-0305b6b246bd,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T20:04:40Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,689fb64e-a4a2-45c5-b9f2-480c2155624d +c6d8e616-7637-4f09-950d-262080172ad2,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/689fb64e-a4a2-45c5-b9f2-480c2155624d,2021-02-10T20:02:38Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,689fb64e-a4a2-45c5-b9f2-480c2155624d +99ee445f-0aff-4cb5-b690-d6f704ac647c,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T20:01:54Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +a6541e98-f907-4215-b0f8-77e76e738087,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2021-02-10T20:00:13Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,b66a7143-c18a-43bb-b5dc-06bb5d1d3160 +6183acf7-3bc3-4750-a3ab-99197d20d8cf,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T19:59:50Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +c29ba69b-ce1d-41a5-ab26-66a86d62bd0d,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2021-02-10T19:58:03Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80 +0a969114-1c5d-4728-97d6-35cfe326a6e6,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T19:57:07Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,c17e63f7-0d28-4a95-8248-b01ea354840e +9a2a2bb0-7925-4207-aec3-b1e07e88abe6,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/c17e63f7-0d28-4a95-8248-b01ea354840e,2021-02-10T19:55:44Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,c17e63f7-0d28-4a95-8248-b01ea354840e +4c234bbd-bca4-4912-8d3a-9d81323c7a79,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T19:55:14Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +5f0f996d-7dae-460d-b50b-a53ff0f4d227,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/d3e228db-8ca5-42ad-bb0a-2148e876cc59,2021-02-10T19:53:38Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,d3e228db-8ca5-42ad-bb0a-2148e876cc59 +bdc0c842-b904-45dc-a2c1-479e522e245a,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T19:52:45Z,add_to_cart,6d37adeb-4c53-4167-b170-c89e4bd1764a,,615695d3-8ffd-4850-bcf7-944cf6d3685b +1118de27-2185-4dd3-95bc-6d3d83a1b5b3,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/615695d3-8ffd-4850-bcf7-944cf6d3685b,2021-02-10T19:51:18Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,615695d3-8ffd-4850-bcf7-944cf6d3685b +74571864-1f19-4262-85dd-2ad0422cf1f1,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2021-02-10T20:03:37Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,579f4cd0-1f45-49d2-af55-9ab2b72c3b35 +eabf0244-13ae-46bc-b52c-4b86569fc023,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2021-02-10T20:02:06Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,e2e78dfc-f25c-4fec-a002-8e280d61a2f2 +182b6ef4-d903-4f54-956b-8e6b74f585d6,df12a45c-96f4-404c-a03c-3669e5cbac83,https://greenery.com/product/5b50b820-1d0a-4231-9422-75e7f6b0cecf,2021-02-10T20:01:25Z,page_view,6d37adeb-4c53-4167-b170-c89e4bd1764a,,5b50b820-1d0a-4231-9422-75e7f6b0cecf diff --git a/00-bootcamp-project/data/order_items.csv b/00-bootcamp-project/data/order_items.csv new file mode 100644 index 000000000..c6ebaa9b4 --- /dev/null +++ b/00-bootcamp-project/data/order_items.csv @@ -0,0 +1,863 @@ +order_id,product_id,quantity +5e75b8f4-e03e-462f-8a91-027bfaf3e8b4,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +c615ea16-2b87-471c-a40e-f1a1b81df308,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2 +1747e0c2-2649-4b8b-8048-540425302a8f,80eda933-749d-4fc6-91d5-613d29eb126f,2 +44f19d9b-6f8d-4c04-8c1e-ee05a171a48a,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +906ac891-d7a7-4d50-b4c6-c982fae2fc2d,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,4 +885ebd5d-6a82-4802-a241-2e52e223df5a,64d39754-03e4-4fa0-b1ea-5f4293315f67,2 +05202733-0e17-4726-97c2-0520c024ab85,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +97c51e08-8026-44cb-af4b-15f8011e4931,bb19d194-e1bd-4358-819e-cd1f1b401c0c,4 +44f19d9b-6f8d-4c04-8c1e-ee05a171a48a,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2 +55288bb6-9a28-483f-a005-ceef70079c72,615695d3-8ffd-4850-bcf7-944cf6d3685b,1 +6abeb560-cfb9-4726-8d7d-612f3cd3763e,4cda01b9-62e2-46c5-830f-b7f262a58fb1,3 +22767af6-bb3e-4d35-b11c-05c12aa38138,4cda01b9-62e2-46c5-830f-b7f262a58fb1,4 +e42ba9a9-986a-4f00-8dd2-5cf8462c74ea,843b6553-dc6a-4fc4-bceb-02cd39af0168,2 +906ac891-d7a7-4d50-b4c6-c982fae2fc2d,5ceddd13-cf00-481f-9285-8340ab95d06d,4 +4187e4d5-0629-4725-8ff5-1e88bf584dc2,37e0062f-bd15-4c3e-b272-558a86d90598,3 +fafde59f-fc4a-4d5f-865e-ff13c8ab6d06,e8b6528e-a830-4d03-a027-473b411c7f02,4 +3321aeb4-f209-48bf-ba63-84f3a14eaa50,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +c49ed1e6-c56b-4681-bef8-cf8d99404832,843b6553-dc6a-4fc4-bceb-02cd39af0168,4 +224b19e0-eaef-4749-8ca7-72e9d99e07e8,e706ab70-b396-4d30-a6b2-a1ccf3625b52,2 +e2510e94-b61f-4d8f-bf5f-7c13f609f272,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,3 +0db4263a-5b43-488c-b9d8-9592c9f4d549,37e0062f-bd15-4c3e-b272-558a86d90598,4 +0b43de27-5e08-4c20-a21d-44e786835265,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +e2c5c29c-2e3c-4e56-9db0-98f13c20b59d,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2 +497e5ef8-5bf6-424c-9d05-f5a467c2d23a,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,1 +871d9861-ea19-47a1-950d-c3198128acef,b86ae24b-6f59-47e8-8adc-b17d88cbd367,1 +191f7ddb-6fac-4ced-905c-307b6b8a1f29,689fb64e-a4a2-45c5-b9f2-480c2155624d,3 +6b2a45d9-fe4f-4b4d-896d-54c08a71a80f,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2 +175d8fb5-2c45-45b5-9fe3-7b3987d05b2d,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,1 +3ca15482-7645-4af2-bb53-7a853432a492,a88a23ef-679c-4743-b151-dc7722040d8c,4 +da8cbe31-46f8-4b5c-806a-11ba9c40df9a,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2 +44f19d9b-6f8d-4c04-8c1e-ee05a171a48a,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +8329a65b-7ddf-4250-aeee-bd625f8a401a,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +e2b27601-37f6-413d-9377-ed9a3a8a5ac8,5b50b820-1d0a-4231-9422-75e7f6b0cecf,1 +727e8c88-6cf8-497a-ae3c-3a781c5b70c3,5ceddd13-cf00-481f-9285-8340ab95d06d,4 +8899a38e-2c99-46ea-adb4-526c3a1fac38,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2 +3fb5a1fd-bf02-4ca0-bb26-4ff4c4a4af74,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,4 +f684e5fd-154c-4b52-9b35-1ccc7e74190f,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,4 +19f1c3c5-3840-4d33-8d88-30fad93fa25e,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,1 +ac999da3-2fbb-40e8-94cc-30d61d765b07,bb19d194-e1bd-4358-819e-cd1f1b401c0c,1 +a484481e-ee94-486a-ab20-50c70f8c6674,d3e228db-8ca5-42ad-bb0a-2148e876cc59,3 +7023672d-7f59-4b86-be86-4d4621ad06ae,4cda01b9-62e2-46c5-830f-b7f262a58fb1,4 +0669a520-9c7e-424d-a279-ee96f6f25aec,843b6553-dc6a-4fc4-bceb-02cd39af0168,3 +f684e5fd-154c-4b52-9b35-1ccc7e74190f,58b575f2-2192-4a53-9d21-df9a0c14fc25,4 +8899a38e-2c99-46ea-adb4-526c3a1fac38,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +4a67cffa-e7bc-4d30-bc97-f2c9a71334d1,bb19d194-e1bd-4358-819e-cd1f1b401c0c,2 +29d20dcd-d0c4-4bca-a52d-fc9363b5d7c6,e5ee99b6-519f-4218-8b41-62f48f59f700,3 +f6eed630-9b01-4f64-81eb-f13be001f2b6,74aeb414-e3dd-4e8a-beef-0fa45225214d,3 +63505de8-b2e8-4588-8f0d-b1121bfb75f8,bb19d194-e1bd-4358-819e-cd1f1b401c0c,3 +2795df92-ee7d-4992-bab2-15dbb2b2ab36,64d39754-03e4-4fa0-b1ea-5f4293315f67,4 +80768346-2426-4f4a-a8ba-4f7768139f94,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,4 +3fb5a1fd-bf02-4ca0-bb26-4ff4c4a4af74,74aeb414-e3dd-4e8a-beef-0fa45225214d,2 +db90b250-70b2-44d1-b20c-4d795edd020c,bb19d194-e1bd-4358-819e-cd1f1b401c0c,4 +92d3887f-6f9e-4e3f-85a8-3da52d46cd45,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,4 +4d84f125-234d-4f3c-a54d-41172b453510,64d39754-03e4-4fa0-b1ea-5f4293315f67,3 +a3bc2320-2520-43fc-8a33-7d126e06e324,689fb64e-a4a2-45c5-b9f2-480c2155624d,1 +53aa67bb-9718-44bf-8b08-dc5e853a7166,689fb64e-a4a2-45c5-b9f2-480c2155624d,1 +4fe7882d-a063-4afc-95c5-a80430305a22,e706ab70-b396-4d30-a6b2-a1ccf3625b52,1 +2bfad5b6-b4ad-47e2-a316-8b7dc7fbc246,843b6553-dc6a-4fc4-bceb-02cd39af0168,3 +1eb77dda-3387-4242-ba28-0b371ea785cf,80eda933-749d-4fc6-91d5-613d29eb126f,3 +cc2bd924-fb17-408c-93b5-cc01cf8e9ef0,74aeb414-e3dd-4e8a-beef-0fa45225214d,4 +40f5d51c-0a3c-481a-96e8-0784818e082d,d3e228db-8ca5-42ad-bb0a-2148e876cc59,1 +8899a38e-2c99-46ea-adb4-526c3a1fac38,bb19d194-e1bd-4358-819e-cd1f1b401c0c,3 +f684e5fd-154c-4b52-9b35-1ccc7e74190f,80eda933-749d-4fc6-91d5-613d29eb126f,2 +b3bbc1b2-11bf-4a7f-8424-8c6fb14d753b,689fb64e-a4a2-45c5-b9f2-480c2155624d,3 +23a3e7b2-abb0-4642-9291-4af619ae2d3c,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,4 +71eb1669-8706-4ef4-8a4c-0def78871dc4,37e0062f-bd15-4c3e-b272-558a86d90598,3 +8502b2de-ada6-4a20-8625-092835744bd8,e5ee99b6-519f-4218-8b41-62f48f59f700,2 +eb047506-bf59-4d29-b134-6a9d80235f3f,e706ab70-b396-4d30-a6b2-a1ccf3625b52,1 +ec9be902-7557-431c-824d-5c157c191697,be49171b-9f72-4fc9-bf7a-9a52e259836b,1 +912c0b79-532d-4710-bf23-0f9e227b5864,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,3 +e9891ca7-3306-4f75-93fd-c04b976f9641,5b50b820-1d0a-4231-9422-75e7f6b0cecf,1 +c36d3573-1c28-4240-8c17-c874a80cca6c,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,1 +459c78e2-335c-47c9-9c9e-cf4d11a3e1fe,be49171b-9f72-4fc9-bf7a-9a52e259836b,1 +0ac61965-6392-4fe3-bb4f-292438c37de0,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,3 +ef4b32fb-3859-441a-a4cc-1ca197f78aeb,5b50b820-1d0a-4231-9422-75e7f6b0cecf,2 +f61a095b-7537-4869-aeff-1433277fa898,843b6553-dc6a-4fc4-bceb-02cd39af0168,1 +431ed9a0-8475-4928-a7b2-81db3f1a2dea,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2 +92d3887f-6f9e-4e3f-85a8-3da52d46cd45,64d39754-03e4-4fa0-b1ea-5f4293315f67,1 +74bae4ca-0322-4e54-ac94-ba84bc63657e,35550082-a52d-4301-8f06-05b30f6f3616,1 +1fa7bc74-ee64-4aa8-8df3-f8066532eb9c,b86ae24b-6f59-47e8-8adc-b17d88cbd367,1 +88971e55-2d81-493c-bd7f-2e1efc4c0153,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2 +f5e96989-b540-486f-bb13-1f4297c194bd,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +3dd8be7e-c2c0-4141-953f-1ce79cff87b8,37e0062f-bd15-4c3e-b272-558a86d90598,3 +5f994f7e-2e13-4720-99ed-cfbdcdfd6e2a,35550082-a52d-4301-8f06-05b30f6f3616,3 +f1236409-b5f6-4e40-961c-797b850e225b,4cda01b9-62e2-46c5-830f-b7f262a58fb1,1 +47254e22-09a8-4661-b2db-1a7e8d80b746,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,3 +d29fbe48-4cb7-46ef-b3ea-67a28a0cd8c0,b86ae24b-6f59-47e8-8adc-b17d88cbd367,2 +03232fbc-033a-4ba9-b0d7-195b987682ef,e8b6528e-a830-4d03-a027-473b411c7f02,4 +7023672d-7f59-4b86-be86-4d4621ad06ae,35550082-a52d-4301-8f06-05b30f6f3616,4 +3af487e1-401f-4269-a6a8-afd4d88c780c,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,1 +973443f0-e2ff-472c-8469-f452d0beeeda,64d39754-03e4-4fa0-b1ea-5f4293315f67,4 +d7454480-4fa0-416d-b904-aebdbcdd378c,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2 +40f5d51c-0a3c-481a-96e8-0784818e082d,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,1 +d99f88df-891d-4dc9-8750-aa77271a72d4,e5ee99b6-519f-4218-8b41-62f48f59f700,2 +df91aa85-bfc7-4c31-93ef-4cee8d00a343,5b50b820-1d0a-4231-9422-75e7f6b0cecf,4 +e85b50e8-357e-45ff-8b8d-1890b9b7d0f0,74aeb414-e3dd-4e8a-beef-0fa45225214d,4 +12d71a1a-3762-4e17-a508-6e11b5629852,bb19d194-e1bd-4358-819e-cd1f1b401c0c,3 +58d89e41-48a4-49a5-944e-28b4e349288d,e8b6528e-a830-4d03-a027-473b411c7f02,2 +29feab11-0894-43f4-bb2b-502453a49f23,a88a23ef-679c-4743-b151-dc7722040d8c,3 +2ebd594f-3b44-4b66-87f0-5b2c321086d1,5b50b820-1d0a-4231-9422-75e7f6b0cecf,2 +b6d916e6-da31-4145-9edd-8fc76677b55b,c17e63f7-0d28-4a95-8248-b01ea354840e,2 +f6eed630-9b01-4f64-81eb-f13be001f2b6,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +34d36019-85bf-4260-9b15-1ed4d4ae3ada,be49171b-9f72-4fc9-bf7a-9a52e259836b,4 +8329a65b-7ddf-4250-aeee-bd625f8a401a,74aeb414-e3dd-4e8a-beef-0fa45225214d,2 +f1236409-b5f6-4e40-961c-797b850e225b,37e0062f-bd15-4c3e-b272-558a86d90598,3 +2e40bfc1-f035-4617-a12b-da047e4578c3,c17e63f7-0d28-4a95-8248-b01ea354840e,2 +f6b6807a-864d-4fed-b22d-3f2638f21b74,74aeb414-e3dd-4e8a-beef-0fa45225214d,2 +63505de8-b2e8-4588-8f0d-b1121bfb75f8,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +3944bd76-a630-4f50-9f41-b4e985b520ca,37e0062f-bd15-4c3e-b272-558a86d90598,1 +5b3044cb-20cd-4a2c-9226-c3d24d488557,e706ab70-b396-4d30-a6b2-a1ccf3625b52,4 +38c516e8-b23a-493a-8a5c-bf7b2b9ea995,a88a23ef-679c-4743-b151-dc7722040d8c,1 +e60286de-ae1c-4427-8b3c-3f019e93ac7a,35550082-a52d-4301-8f06-05b30f6f3616,4 +e2510e94-b61f-4d8f-bf5f-7c13f609f272,80eda933-749d-4fc6-91d5-613d29eb126f,4 +aab22458-eebe-4f90-b563-d1eda139e78d,58b575f2-2192-4a53-9d21-df9a0c14fc25,1 +5b8caca4-14fb-4813-b0bc-b768c8217a19,615695d3-8ffd-4850-bcf7-944cf6d3685b,3 +fe1144d9-15c7-4d10-a533-fee0c06b0bcb,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,4 +1e5fa971-3c0e-4ae8-b5bb-63d6176b82b2,b86ae24b-6f59-47e8-8adc-b17d88cbd367,2 +74bae4ca-0322-4e54-ac94-ba84bc63657e,e706ab70-b396-4d30-a6b2-a1ccf3625b52,4 +a5db4fd7-bc7c-47d6-a162-e613d905ec82,37e0062f-bd15-4c3e-b272-558a86d90598,4 +a11ec73d-efcb-4918-be37-fa6f812d22de,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,3 +74bae4ca-0322-4e54-ac94-ba84bc63657e,e8b6528e-a830-4d03-a027-473b411c7f02,3 +0976f5e0-829b-4111-9ae8-3c444a1b26eb,be49171b-9f72-4fc9-bf7a-9a52e259836b,2 +a11ec73d-efcb-4918-be37-fa6f812d22de,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,3 +08f64f64-8cd5-491a-a5a9-80ffd3321fc9,bb19d194-e1bd-4358-819e-cd1f1b401c0c,3 +4a67cffa-e7bc-4d30-bc97-f2c9a71334d1,64d39754-03e4-4fa0-b1ea-5f4293315f67,1 +0ecabdf2-fe92-4d66-ad87-6e693748d682,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +ac999da3-2fbb-40e8-94cc-30d61d765b07,e706ab70-b396-4d30-a6b2-a1ccf3625b52,4 +2affb750-b1d9-4b84-b612-8381435bc669,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,4 +6b2a45d9-fe4f-4b4d-896d-54c08a71a80f,843b6553-dc6a-4fc4-bceb-02cd39af0168,2 +c57a3e41-2e01-4529-a904-054657859dd7,80eda933-749d-4fc6-91d5-613d29eb126f,2 +cad92df1-0b1a-4827-a1fc-f20cece591dd,5ceddd13-cf00-481f-9285-8340ab95d06d,2 +5b8caca4-14fb-4813-b0bc-b768c8217a19,5b50b820-1d0a-4231-9422-75e7f6b0cecf,3 +d9cc0f2f-0be3-4cfc-bec0-fd97eb7977d6,615695d3-8ffd-4850-bcf7-944cf6d3685b,4 +bb219a8e-f747-4cc5-ac19-9f505baed9ff,e706ab70-b396-4d30-a6b2-a1ccf3625b52,3 +e86dab74-f840-482c-b833-0e60b4e58a27,5ceddd13-cf00-481f-9285-8340ab95d06d,1 +c98cb399-9f31-47e9-8394-80b6962cbdae,80eda933-749d-4fc6-91d5-613d29eb126f,2 +2fafb5c6-5200-4d9a-af6b-b6517667a1ea,bb19d194-e1bd-4358-819e-cd1f1b401c0c,2 +c615ea16-2b87-471c-a40e-f1a1b81df308,843b6553-dc6a-4fc4-bceb-02cd39af0168,1 +81617893-be66-4c1e-b73e-a71ece089732,c7050c3b-a898-424d-8d98-ab0aaad7bef4,4 +56d043f8-afaf-4a6e-a4d3-8fbd01d8858b,be49171b-9f72-4fc9-bf7a-9a52e259836b,2 +12a416f6-08d4-4db5-953e-d683ca9081f6,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,3 +2fafb5c6-5200-4d9a-af6b-b6517667a1ea,74aeb414-e3dd-4e8a-beef-0fa45225214d,1 +0f7d97e4-6093-489d-b338-e98397482ff3,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,4 +fa41614e-38dc-4cfb-ade8-4ffb9d1fed72,58b575f2-2192-4a53-9d21-df9a0c14fc25,2 +bd1b29ee-5f35-4a9f-94a5-9faaae412e12,80eda933-749d-4fc6-91d5-613d29eb126f,4 +1829f967-79c8-4998-ba9f-9d381728cedd,e706ab70-b396-4d30-a6b2-a1ccf3625b52,3 +671aa103-6918-4d9a-89f6-3bd3861f4a9b,bb19d194-e1bd-4358-819e-cd1f1b401c0c,3 +35b4cbc7-b92f-400f-b292-8494dbb23567,bb19d194-e1bd-4358-819e-cd1f1b401c0c,1 +bbb8264e-cb71-4967-8033-60d7a52ad2fc,5ceddd13-cf00-481f-9285-8340ab95d06d,2 +0976f5e0-829b-4111-9ae8-3c444a1b26eb,689fb64e-a4a2-45c5-b9f2-480c2155624d,1 +912c0b79-532d-4710-bf23-0f9e227b5864,c7050c3b-a898-424d-8d98-ab0aaad7bef4,2 +b047e850-a4f1-4227-94b6-2222d2ff87c2,58b575f2-2192-4a53-9d21-df9a0c14fc25,1 +9e4f5468-05ff-4dd3-af20-fcd8c4730ab5,5b50b820-1d0a-4231-9422-75e7f6b0cecf,1 +40f5d51c-0a3c-481a-96e8-0784818e082d,b86ae24b-6f59-47e8-8adc-b17d88cbd367,2 +da8cbe31-46f8-4b5c-806a-11ba9c40df9a,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,3 +b249a133-9d0d-4897-9ee3-0226e76914dc,c7050c3b-a898-424d-8d98-ab0aaad7bef4,4 +8385cfcd-2b3f-443a-a676-9756f7eb5404,58b575f2-2192-4a53-9d21-df9a0c14fc25,2 +86302f5c-4879-4056-8c99-b3721e83829d,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,1 +73bfa842-99f9-4181-883f-08b7795cb167,be49171b-9f72-4fc9-bf7a-9a52e259836b,3 +b047e850-a4f1-4227-94b6-2222d2ff87c2,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,3 +e4926154-3efe-4c30-860a-5cbb7f97490b,74aeb414-e3dd-4e8a-beef-0fa45225214d,2 +867b34a7-c143-45ec-81db-705506a9578b,a88a23ef-679c-4743-b151-dc7722040d8c,2 +e60286de-ae1c-4427-8b3c-3f019e93ac7a,5b50b820-1d0a-4231-9422-75e7f6b0cecf,2 +7f999c60-f004-4b75-8851-72498dfa47fc,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2 +e77a9f5e-a3d7-4eed-ba0b-50893cb38f00,74aeb414-e3dd-4e8a-beef-0fa45225214d,4 +fd804ab1-fa33-49b5-97a4-5c29d28a5101,64d39754-03e4-4fa0-b1ea-5f4293315f67,4 +09431ff6-b550-4301-8d46-fde372e87af9,843b6553-dc6a-4fc4-bceb-02cd39af0168,3 +7023672d-7f59-4b86-be86-4d4621ad06ae,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,4 +778f8864-d993-4118-b7d6-1ea836ec6791,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,3 +fa41614e-38dc-4cfb-ade8-4ffb9d1fed72,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2 +a132ed5c-7140-41f5-8eb1-992b7aeae11b,5b50b820-1d0a-4231-9422-75e7f6b0cecf,4 +5dbde056-632e-484a-a30b-67665cec51ee,e5ee99b6-519f-4218-8b41-62f48f59f700,1 +e2b27601-37f6-413d-9377-ed9a3a8a5ac8,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +4fe7882d-a063-4afc-95c5-a80430305a22,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +35b4cbc7-b92f-400f-b292-8494dbb23567,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,1 +dc3c0681-9e42-4041-a2eb-576324037da3,be49171b-9f72-4fc9-bf7a-9a52e259836b,1 +e2281b91-8575-4da9-9a3a-ab0f19ec584e,615695d3-8ffd-4850-bcf7-944cf6d3685b,2 +7023672d-7f59-4b86-be86-4d4621ad06ae,689fb64e-a4a2-45c5-b9f2-480c2155624d,1 +82e2a7d2-d8c2-4b37-9f18-bba82f31c5b2,5b50b820-1d0a-4231-9422-75e7f6b0cecf,2 +349b5ed3-cac3-401f-aef3-290bc0b8d5d7,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,1 +a484481e-ee94-486a-ab20-50c70f8c6674,689fb64e-a4a2-45c5-b9f2-480c2155624d,2 +bd760d86-5051-4418-86cc-d97e4deac8af,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,4 +45319e78-6d23-4728-a135-75dbda6bde49,e5ee99b6-519f-4218-8b41-62f48f59f700,1 +a96878e4-9618-4f85-8fe0-6e2e938e0b24,bb19d194-e1bd-4358-819e-cd1f1b401c0c,2 +3dd8be7e-c2c0-4141-953f-1ce79cff87b8,80eda933-749d-4fc6-91d5-613d29eb126f,2 +cec02b6d-c997-4cad-8ab8-141c7a30aaf0,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +859841a2-a2fa-4d7b-a749-8cd37b31b1ed,37e0062f-bd15-4c3e-b272-558a86d90598,4 +cb9cd4d2-3bce-4173-8303-62e581e91ac7,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,4 +0b0d8f13-ca94-4686-b3d3-68ae3aa4bad3,843b6553-dc6a-4fc4-bceb-02cd39af0168,4 +e3965ae6-8792-422f-bae0-ecbce4da50aa,615695d3-8ffd-4850-bcf7-944cf6d3685b,1 +667f2f4e-4262-425d-bf66-9b600af692a6,64d39754-03e4-4fa0-b1ea-5f4293315f67,2 +6f89159f-8046-4bae-a680-34ca13c9d4fa,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,3 +937b130d-c75f-47c6-913f-ca7717e82dae,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2 +19644506-d739-4f1b-baf7-3ecc8833c329,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2 +55164b42-78d3-4c4e-9dd3-cce61b956403,615695d3-8ffd-4850-bcf7-944cf6d3685b,3 +b15964ec-1e59-4258-9ecb-bcaac33cd071,be49171b-9f72-4fc9-bf7a-9a52e259836b,4 +ffd7d39a-e3b5-43dc-97b7-f6f5443ae314,4cda01b9-62e2-46c5-830f-b7f262a58fb1,3 +8298fb27-518c-4b2c-9fd8-391737ceb777,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2 +fe1144d9-15c7-4d10-a533-fee0c06b0bcb,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +99127f5a-b3a4-440e-87c1-c78861ac2ca8,bb19d194-e1bd-4358-819e-cd1f1b401c0c,2 +180dc7bb-b42a-4aa6-b52a-9fe5864e3190,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2 +f5df9a3a-9a21-4648-a03f-bdaf633969e4,74aeb414-e3dd-4e8a-beef-0fa45225214d,4 +5dbde056-632e-484a-a30b-67665cec51ee,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,4 +973443f0-e2ff-472c-8469-f452d0beeeda,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,3 +3ca15482-7645-4af2-bb53-7a853432a492,64d39754-03e4-4fa0-b1ea-5f4293315f67,4 +333db7e3-aba5-4988-b61f-ced40037b5c8,e706ab70-b396-4d30-a6b2-a1ccf3625b52,1 +10408b83-26cc-4eb8-bd08-38435207099e,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,4 +81617893-be66-4c1e-b73e-a71ece089732,64d39754-03e4-4fa0-b1ea-5f4293315f67,2 +45319e78-6d23-4728-a135-75dbda6bde49,b86ae24b-6f59-47e8-8adc-b17d88cbd367,1 +b4eec587-6bca-4b2a-b3d3-ef2db72c4a4f,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2 +c0873253-7827-4831-aa92-19c38372e58d,35550082-a52d-4301-8f06-05b30f6f3616,3 +3944bd76-a630-4f50-9f41-b4e985b520ca,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2 +e42ba9a9-986a-4f00-8dd2-5cf8462c74ea,5b50b820-1d0a-4231-9422-75e7f6b0cecf,4 +e03c0b27-dcb0-4b48-a36e-1c5f013d11d9,d3e228db-8ca5-42ad-bb0a-2148e876cc59,4 +c8ec734f-2f92-4d17-80bf-71de0afd713d,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,3 +ec9be902-7557-431c-824d-5c157c191697,e8b6528e-a830-4d03-a027-473b411c7f02,4 +d1f27bac-ff50-489e-a5e0-12fd99fcf3e8,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,3 +a484481e-ee94-486a-ab20-50c70f8c6674,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,1 +5dbde056-632e-484a-a30b-67665cec51ee,80eda933-749d-4fc6-91d5-613d29eb126f,3 +92d3887f-6f9e-4e3f-85a8-3da52d46cd45,5b50b820-1d0a-4231-9422-75e7f6b0cecf,3 +c57a3e41-2e01-4529-a904-054657859dd7,d3e228db-8ca5-42ad-bb0a-2148e876cc59,4 +34d36019-85bf-4260-9b15-1ed4d4ae3ada,d3e228db-8ca5-42ad-bb0a-2148e876cc59,3 +d13a5859-35dd-4e23-9601-6bfef26a0ded,689fb64e-a4a2-45c5-b9f2-480c2155624d,1 +b7e548f6-8f59-4552-8577-e0b895c858b4,a88a23ef-679c-4743-b151-dc7722040d8c,1 +dcf4ab8d-ee51-4dd4-953d-557d413100fa,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2 +b245fe74-2070-4203-848c-85d4b59f8eef,615695d3-8ffd-4850-bcf7-944cf6d3685b,4 +b6f9c559-8c79-409f-963f-2499e5ad315e,5b50b820-1d0a-4231-9422-75e7f6b0cecf,1 +f4b472f8-f344-4abe-a7dd-5b3cc983301b,64d39754-03e4-4fa0-b1ea-5f4293315f67,3 +1e68f64e-1365-489e-8cf4-b56f8cf13fd7,c7050c3b-a898-424d-8d98-ab0aaad7bef4,2 +cc2d40a9-dc85-481f-b027-9d1198187b70,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,3 +58d89e41-48a4-49a5-944e-28b4e349288d,80eda933-749d-4fc6-91d5-613d29eb126f,1 +f6881473-8927-4504-8ba0-3acecf098b5c,37e0062f-bd15-4c3e-b272-558a86d90598,2 +3c6072c0-399c-4250-86f4-86024e4a18c5,37e0062f-bd15-4c3e-b272-558a86d90598,3 +ae526f89-1faf-4ae8-90b2-06b996b51b31,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,4 +7023672d-7f59-4b86-be86-4d4621ad06ae,bb19d194-e1bd-4358-819e-cd1f1b401c0c,1 +44f19d9b-6f8d-4c04-8c1e-ee05a171a48a,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +89e6f87a-1347-4670-9cb6-8873c4ae0bca,a88a23ef-679c-4743-b151-dc7722040d8c,4 +af1c67f7-bbde-4f2f-99d0-2e19242141c2,e5ee99b6-519f-4218-8b41-62f48f59f700,2 +3895ef3d-4e4f-4793-ba7f-66743b7a7d39,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +4187e4d5-0629-4725-8ff5-1e88bf584dc2,e706ab70-b396-4d30-a6b2-a1ccf3625b52,2 +ec9be902-7557-431c-824d-5c157c191697,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,1 +f61a095b-7537-4869-aeff-1433277fa898,a88a23ef-679c-4743-b151-dc7722040d8c,4 +6280af33-1ec6-4e8b-bc9e-6ed331ccb5da,d3e228db-8ca5-42ad-bb0a-2148e876cc59,4 +d0cc9fd6-0ce6-42a4-a77e-fabb1b0962da,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,3 +76198fb9-1fa6-4fe6-9053-1cbad61c4730,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,3 +fd804ab1-fa33-49b5-97a4-5c29d28a5101,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,3 +c49ed1e6-c56b-4681-bef8-cf8d99404832,80eda933-749d-4fc6-91d5-613d29eb126f,1 +5a00119e-674a-4f04-8b87-d8d48129a771,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,1 +09431ff6-b550-4301-8d46-fde372e87af9,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,4 +09fc1bc7-215a-4987-96a1-9e3e079a3707,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,3 +3772cac5-2ea2-4278-9166-f0703935a671,80eda933-749d-4fc6-91d5-613d29eb126f,1 +8502b2de-ada6-4a20-8625-092835744bd8,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2 +fafde59f-fc4a-4d5f-865e-ff13c8ab6d06,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,4 +0a5be7a1-f4b1-4833-b4fa-72a9276c63bf,74aeb414-e3dd-4e8a-beef-0fa45225214d,4 +9da202ba-64b2-4c8c-bab7-7cfc56a3410c,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,1 +3772cac5-2ea2-4278-9166-f0703935a671,64d39754-03e4-4fa0-b1ea-5f4293315f67,2 +db46d023-4a2b-43f2-aac8-d9d73284eddc,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2 +b3cb4101-b1c4-40d0-89e6-a029f1dcce5b,58b575f2-2192-4a53-9d21-df9a0c14fc25,2 +cf9e7988-a925-4015-baf3-7a0f9e494291,843b6553-dc6a-4fc4-bceb-02cd39af0168,2 +e77a9f5e-a3d7-4eed-ba0b-50893cb38f00,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,4 +2bfad5b6-b4ad-47e2-a316-8b7dc7fbc246,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,1 +0db4263a-5b43-488c-b9d8-9592c9f4d549,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,1 +86302f5c-4879-4056-8c99-b3721e83829d,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,4 +7edd0cc1-e72c-4463-86c9-e7758c6fd2f6,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,1 +b10167f6-1753-4208-b79b-cba9ace4b6be,5ceddd13-cf00-481f-9285-8340ab95d06d,3 +841074bf-571a-43a6-963c-ba7cbdb26c85,35550082-a52d-4301-8f06-05b30f6f3616,1 +5f16fb3f-aa26-4cdc-8de6-e86c96dc842f,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,3 +58d89e41-48a4-49a5-944e-28b4e349288d,5ceddd13-cf00-481f-9285-8340ab95d06d,2 +667f2f4e-4262-425d-bf66-9b600af692a6,5b50b820-1d0a-4231-9422-75e7f6b0cecf,1 +b6d916e6-da31-4145-9edd-8fc76677b55b,5ceddd13-cf00-481f-9285-8340ab95d06d,4 +911cf158-a9f8-47f9-a8f0-900b113fc41a,74aeb414-e3dd-4e8a-beef-0fa45225214d,3 +df91aa85-bfc7-4c31-93ef-4cee8d00a343,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,4 +1747e0c2-2649-4b8b-8048-540425302a8f,5ceddd13-cf00-481f-9285-8340ab95d06d,4 +85a88715-9eef-486b-9494-82989ee3b483,37e0062f-bd15-4c3e-b272-558a86d90598,4 +59c79883-a968-49af-833b-7305f181c669,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,1 +44f19d9b-6f8d-4c04-8c1e-ee05a171a48a,d3e228db-8ca5-42ad-bb0a-2148e876cc59,3 +b3773cdd-b925-4eda-906c-57fa5d0e5a55,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,4 +e1ecd50e-033d-4d0c-bcff-137c2eb494dd,58b575f2-2192-4a53-9d21-df9a0c14fc25,1 +a5030657-135a-454a-b17e-1014c1b53852,35550082-a52d-4301-8f06-05b30f6f3616,4 +ec9be902-7557-431c-824d-5c157c191697,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +47254e22-09a8-4661-b2db-1a7e8d80b746,c7050c3b-a898-424d-8d98-ab0aaad7bef4,4 +859841a2-a2fa-4d7b-a749-8cd37b31b1ed,58b575f2-2192-4a53-9d21-df9a0c14fc25,2 +6abeb560-cfb9-4726-8d7d-612f3cd3763e,689fb64e-a4a2-45c5-b9f2-480c2155624d,3 +58d89e41-48a4-49a5-944e-28b4e349288d,bb19d194-e1bd-4358-819e-cd1f1b401c0c,3 +c49ed1e6-c56b-4681-bef8-cf8d99404832,615695d3-8ffd-4850-bcf7-944cf6d3685b,4 +c20d15c3-b463-49d9-a114-905c83bbf357,e5ee99b6-519f-4218-8b41-62f48f59f700,1 +27897d11-f7a3-424a-bc4b-50c0487d12d1,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +b2b891d1-56c5-4876-a24f-a7961b3e1b3b,689fb64e-a4a2-45c5-b9f2-480c2155624d,3 +5dbde056-632e-484a-a30b-67665cec51ee,b86ae24b-6f59-47e8-8adc-b17d88cbd367,4 +1e68f64e-1365-489e-8cf4-b56f8cf13fd7,b86ae24b-6f59-47e8-8adc-b17d88cbd367,2 +4fe7882d-a063-4afc-95c5-a80430305a22,e5ee99b6-519f-4218-8b41-62f48f59f700,1 +59c79883-a968-49af-833b-7305f181c669,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,3 +a11ec73d-efcb-4918-be37-fa6f812d22de,b86ae24b-6f59-47e8-8adc-b17d88cbd367,4 +d9ec4e76-e7c0-4457-b6e2-a025abea6b9a,74aeb414-e3dd-4e8a-beef-0fa45225214d,1 +dc3c0681-9e42-4041-a2eb-576324037da3,58b575f2-2192-4a53-9d21-df9a0c14fc25,2 +290e43d7-2768-47e8-9037-94d08ddc4345,e706ab70-b396-4d30-a6b2-a1ccf3625b52,3 +aafb9fbd-56e1-4dcc-b6b2-a3fd91381bb6,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,1 +08cbcbdc-781b-434d-a70b-4955117596a1,e5ee99b6-519f-4218-8b41-62f48f59f700,2 +5b8caca4-14fb-4813-b0bc-b768c8217a19,35550082-a52d-4301-8f06-05b30f6f3616,4 +38893be1-b3c0-4460-ab69-f83f6ac95c6a,e5ee99b6-519f-4218-8b41-62f48f59f700,3 +f9d41e2a-81fa-400d-930f-a960c3135db9,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2 +8a4b88e8-7b27-4023-8134-93c6b05b2c6e,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2 +a86318cc-892b-4ea0-a031-da15ad2e52ed,5ceddd13-cf00-481f-9285-8340ab95d06d,1 +f61a095b-7537-4869-aeff-1433277fa898,5ceddd13-cf00-481f-9285-8340ab95d06d,3 +e1ecd50e-033d-4d0c-bcff-137c2eb494dd,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2 +f4b472f8-f344-4abe-a7dd-5b3cc983301b,bb19d194-e1bd-4358-819e-cd1f1b401c0c,4 +f684e5fd-154c-4b52-9b35-1ccc7e74190f,35550082-a52d-4301-8f06-05b30f6f3616,3 +e60286de-ae1c-4427-8b3c-3f019e93ac7a,a88a23ef-679c-4743-b151-dc7722040d8c,4 +8742e74e-c54e-4264-a3f2-7dd301072523,37e0062f-bd15-4c3e-b272-558a86d90598,1 +3dd8be7e-c2c0-4141-953f-1ce79cff87b8,c7050c3b-a898-424d-8d98-ab0aaad7bef4,2 +778f8864-d993-4118-b7d6-1ea836ec6791,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,3 +ec9be902-7557-431c-824d-5c157c191697,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,4 +273c575f-a41c-428f-80b0-a97985793b00,e706ab70-b396-4d30-a6b2-a1ccf3625b52,2 +4c128667-aa7c-41be-b9dd-bb5a1164e6f0,80eda933-749d-4fc6-91d5-613d29eb126f,3 +2434b44d-0df9-4d54-99ad-e259cbf9efa6,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,3 +fae3a36e-1707-441b-8ff8-7b6afeb278f6,58b575f2-2192-4a53-9d21-df9a0c14fc25,4 +b245fe74-2070-4203-848c-85d4b59f8eef,58b575f2-2192-4a53-9d21-df9a0c14fc25,2 +671aa103-6918-4d9a-89f6-3bd3861f4a9b,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,1 +2a4ce69d-8db6-48d7-b48f-719d09b0b91f,64d39754-03e4-4fa0-b1ea-5f4293315f67,3 +bb219a8e-f747-4cc5-ac19-9f505baed9ff,c7050c3b-a898-424d-8d98-ab0aaad7bef4,2 +4c128667-aa7c-41be-b9dd-bb5a1164e6f0,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,3 +a5030657-135a-454a-b17e-1014c1b53852,64d39754-03e4-4fa0-b1ea-5f4293315f67,4 +2bfad5b6-b4ad-47e2-a316-8b7dc7fbc246,e8b6528e-a830-4d03-a027-473b411c7f02,1 +0f3fb208-95e1-4d3b-8f09-ae6088d41938,615695d3-8ffd-4850-bcf7-944cf6d3685b,4 +915a50e8-2ca3-434b-aacb-7d633ba1bef1,35550082-a52d-4301-8f06-05b30f6f3616,1 +8b006054-ad90-49c4-9685-2adabaf29fcc,b86ae24b-6f59-47e8-8adc-b17d88cbd367,2 +5b8caca4-14fb-4813-b0bc-b768c8217a19,e5ee99b6-519f-4218-8b41-62f48f59f700,3 +32726aa6-2175-4fc7-856b-512f61c70dc1,bb19d194-e1bd-4358-819e-cd1f1b401c0c,2 +942af8de-9bef-48e3-8fda-2341f20d2fbe,b86ae24b-6f59-47e8-8adc-b17d88cbd367,3 +f0f5f852-5c81-4f33-a415-15b660486918,be49171b-9f72-4fc9-bf7a-9a52e259836b,2 +7db78274-d998-408b-9c97-83f22373c9ea,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,1 +5741e351-3124-4de7-9dff-01a448e7dfd4,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,4 +e24985f3-2fb3-456e-a1aa-aaf88f490d70,e8b6528e-a830-4d03-a027-473b411c7f02,1 +e42ba9a9-986a-4f00-8dd2-5cf8462c74ea,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,3 +03b5ede7-4f3e-4d17-a326-be5e27338501,c17e63f7-0d28-4a95-8248-b01ea354840e,4 +175d8fb5-2c45-45b5-9fe3-7b3987d05b2d,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,4 +62f9cc25-a60a-4a87-a7d8-79f9f70ef6a3,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +2a4ce69d-8db6-48d7-b48f-719d09b0b91f,be49171b-9f72-4fc9-bf7a-9a52e259836b,4 +da8cbe31-46f8-4b5c-806a-11ba9c40df9a,4cda01b9-62e2-46c5-830f-b7f262a58fb1,3 +967f96c9-adcf-4304-9295-73a9766fe51f,c17e63f7-0d28-4a95-8248-b01ea354840e,2 +d6ae6182-1c85-4b8e-a7a0-d150b08cab27,35550082-a52d-4301-8f06-05b30f6f3616,4 +c23de9da-73a2-437f-a2c2-bd257bc692c3,e8b6528e-a830-4d03-a027-473b411c7f02,4 +19c066e5-c505-4814-8e68-ac6ab2971a67,d3e228db-8ca5-42ad-bb0a-2148e876cc59,2 +871d9861-ea19-47a1-950d-c3198128acef,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,3 +ba9fa0c5-4631-42dc-9e4f-1dbbaafcb85c,e5ee99b6-519f-4218-8b41-62f48f59f700,2 +3772cac5-2ea2-4278-9166-f0703935a671,be49171b-9f72-4fc9-bf7a-9a52e259836b,1 +1747e0c2-2649-4b8b-8048-540425302a8f,b86ae24b-6f59-47e8-8adc-b17d88cbd367,4 +15f26002-ee82-4855-a9d7-d55ff3f1a85b,5b50b820-1d0a-4231-9422-75e7f6b0cecf,3 +912c0b79-532d-4710-bf23-0f9e227b5864,80eda933-749d-4fc6-91d5-613d29eb126f,2 +88971e55-2d81-493c-bd7f-2e1efc4c0153,615695d3-8ffd-4850-bcf7-944cf6d3685b,1 +8385cfcd-2b3f-443a-a676-9756f7eb5404,bb19d194-e1bd-4358-819e-cd1f1b401c0c,1 +53aa67bb-9718-44bf-8b08-dc5e853a7166,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,1 +265f9aae-561a-4232-a78a-7052466e46b7,74aeb414-e3dd-4e8a-beef-0fa45225214d,2 +b3cb4101-b1c4-40d0-89e6-a029f1dcce5b,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +4650242f-8513-49dd-b2e8-4df3c388fd22,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,3 +2db8d59b-1470-4cd3-8be6-c96a82480240,74aeb414-e3dd-4e8a-beef-0fa45225214d,3 +cc2d40a9-dc85-481f-b027-9d1198187b70,c17e63f7-0d28-4a95-8248-b01ea354840e,4 +d1f27bac-ff50-489e-a5e0-12fd99fcf3e8,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2 +d13a5859-35dd-4e23-9601-6bfef26a0ded,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,4 +5f078a73-bc4b-4231-9c91-144060234d49,b86ae24b-6f59-47e8-8adc-b17d88cbd367,4 +7cbec68e-07c8-4476-86b4-90549db95454,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,4 +6056966f-4515-4b6c-b1a6-7f55ca774b78,35550082-a52d-4301-8f06-05b30f6f3616,2 +ba9fa0c5-4631-42dc-9e4f-1dbbaafcb85c,5ceddd13-cf00-481f-9285-8340ab95d06d,4 +b9523b83-4b6f-41d3-8681-b946313ac6c3,74aeb414-e3dd-4e8a-beef-0fa45225214d,1 +a11ec73d-efcb-4918-be37-fa6f812d22de,e8b6528e-a830-4d03-a027-473b411c7f02,4 +8f024856-4bf8-4117-81ac-d61f62c91158,843b6553-dc6a-4fc4-bceb-02cd39af0168,1 +97c51e08-8026-44cb-af4b-15f8011e4931,b86ae24b-6f59-47e8-8adc-b17d88cbd367,4 +b3bbc1b2-11bf-4a7f-8424-8c6fb14d753b,be49171b-9f72-4fc9-bf7a-9a52e259836b,1 +93a40bfd-c161-47be-8659-714ca706b514,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2 +f4b472f8-f344-4abe-a7dd-5b3cc983301b,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,1 +d9cc0f2f-0be3-4cfc-bec0-fd97eb7977d6,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2 +35b4cbc7-b92f-400f-b292-8494dbb23567,74aeb414-e3dd-4e8a-beef-0fa45225214d,2 +bbd9db3c-9553-43b8-8223-c8d204ba5129,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2 +a2c0226b-46d1-4100-9eff-f9d5b3255850,5b50b820-1d0a-4231-9422-75e7f6b0cecf,2 +03b5ede7-4f3e-4d17-a326-be5e27338501,37e0062f-bd15-4c3e-b272-558a86d90598,4 +03b5ede7-4f3e-4d17-a326-be5e27338501,80eda933-749d-4fc6-91d5-613d29eb126f,4 +b9523b83-4b6f-41d3-8681-b946313ac6c3,58b575f2-2192-4a53-9d21-df9a0c14fc25,1 +8329a65b-7ddf-4250-aeee-bd625f8a401a,5b50b820-1d0a-4231-9422-75e7f6b0cecf,3 +88971e55-2d81-493c-bd7f-2e1efc4c0153,80eda933-749d-4fc6-91d5-613d29eb126f,2 +942af8de-9bef-48e3-8fda-2341f20d2fbe,4cda01b9-62e2-46c5-830f-b7f262a58fb1,2 +1be71a60-1e61-4b97-aa13-1a6886f50ef3,35550082-a52d-4301-8f06-05b30f6f3616,4 +a11ec73d-efcb-4918-be37-fa6f812d22de,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,1 +f6eed630-9b01-4f64-81eb-f13be001f2b6,5ceddd13-cf00-481f-9285-8340ab95d06d,3 +1e5fa971-3c0e-4ae8-b5bb-63d6176b82b2,843b6553-dc6a-4fc4-bceb-02cd39af0168,2 +630bc8fb-239e-49e8-9911-90f5ee5637c6,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,4 +497e5ef8-5bf6-424c-9d05-f5a467c2d23a,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2 +2db8d59b-1470-4cd3-8be6-c96a82480240,d3e228db-8ca5-42ad-bb0a-2148e876cc59,2 +ea907a0e-c27d-4d44-878c-1d2a9e54b740,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,1 +12c0a32d-2471-465f-9337-14b221af4fc3,689fb64e-a4a2-45c5-b9f2-480c2155624d,3 +5f994f7e-2e13-4720-99ed-cfbdcdfd6e2a,80eda933-749d-4fc6-91d5-613d29eb126f,3 +80768346-2426-4f4a-a8ba-4f7768139f94,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +e42ba9a9-986a-4f00-8dd2-5cf8462c74ea,bb19d194-e1bd-4358-819e-cd1f1b401c0c,4 +9f640f78-93eb-46d3-b4c8-41ef69b03d8b,e8b6528e-a830-4d03-a027-473b411c7f02,3 +8f024856-4bf8-4117-81ac-d61f62c91158,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,1 +1eb77dda-3387-4242-ba28-0b371ea785cf,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2 +692abf44-42fb-4cd3-8076-d9346d57211c,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2 +42ec61e5-e1ff-4dee-b507-3e466e5d1768,74aeb414-e3dd-4e8a-beef-0fa45225214d,3 +44f19d9b-6f8d-4c04-8c1e-ee05a171a48a,615695d3-8ffd-4850-bcf7-944cf6d3685b,1 +ba9fa0c5-4631-42dc-9e4f-1dbbaafcb85c,74aeb414-e3dd-4e8a-beef-0fa45225214d,4 +29d20dcd-d0c4-4bca-a52d-fc9363b5d7c6,be49171b-9f72-4fc9-bf7a-9a52e259836b,2 +b6d916e6-da31-4145-9edd-8fc76677b55b,35550082-a52d-4301-8f06-05b30f6f3616,2 +c46b8091-59e1-49de-a505-f1c98023a65a,58b575f2-2192-4a53-9d21-df9a0c14fc25,2 +96a0cf17-5d93-4476-b836-ec6c8c7a9b21,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2 +12a416f6-08d4-4db5-953e-d683ca9081f6,37e0062f-bd15-4c3e-b272-558a86d90598,2 +8899a38e-2c99-46ea-adb4-526c3a1fac38,64d39754-03e4-4fa0-b1ea-5f4293315f67,4 +4a67cffa-e7bc-4d30-bc97-f2c9a71334d1,e5ee99b6-519f-4218-8b41-62f48f59f700,1 +f9cdbb13-c633-4867-bcb0-284d9a583781,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,4 +937b130d-c75f-47c6-913f-ca7717e82dae,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +fe1144d9-15c7-4d10-a533-fee0c06b0bcb,615695d3-8ffd-4850-bcf7-944cf6d3685b,3 +2ebd594f-3b44-4b66-87f0-5b2c321086d1,37e0062f-bd15-4c3e-b272-558a86d90598,1 +f67806e3-1791-404d-a445-6467318f3a0d,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,4 +0669a520-9c7e-424d-a279-ee96f6f25aec,e8b6528e-a830-4d03-a027-473b411c7f02,1 +906ac891-d7a7-4d50-b4c6-c982fae2fc2d,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,1 +59c79883-a968-49af-833b-7305f181c669,80eda933-749d-4fc6-91d5-613d29eb126f,1 +53aa67bb-9718-44bf-8b08-dc5e853a7166,e5ee99b6-519f-4218-8b41-62f48f59f700,4 +1829f967-79c8-4998-ba9f-9d381728cedd,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,3 +27897d11-f7a3-424a-bc4b-50c0487d12d1,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +ba6390f1-e352-4fd5-9f1e-b350214c4124,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +f3ab84e6-dec5-43b4-9aa7-45b9988bff58,d3e228db-8ca5-42ad-bb0a-2148e876cc59,2 +a11ec73d-efcb-4918-be37-fa6f812d22de,5ceddd13-cf00-481f-9285-8340ab95d06d,1 +80768346-2426-4f4a-a8ba-4f7768139f94,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2 +84aac39f-68ae-4e5f-a2c7-b5ad0b820a09,5b50b820-1d0a-4231-9422-75e7f6b0cecf,1 +fa41614e-38dc-4cfb-ade8-4ffb9d1fed72,35550082-a52d-4301-8f06-05b30f6f3616,3 +e86dab74-f840-482c-b833-0e60b4e58a27,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,1 +265f9aae-561a-4232-a78a-7052466e46b7,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,4 +0ac61965-6392-4fe3-bb4f-292438c37de0,c17e63f7-0d28-4a95-8248-b01ea354840e,2 +3895ef3d-4e4f-4793-ba7f-66743b7a7d39,5b50b820-1d0a-4231-9422-75e7f6b0cecf,2 +fed6ed02-4791-48e0-8cc4-c127dceca8ca,5ceddd13-cf00-481f-9285-8340ab95d06d,1 +b3bbc1b2-11bf-4a7f-8424-8c6fb14d753b,5b50b820-1d0a-4231-9422-75e7f6b0cecf,3 +b245fe74-2070-4203-848c-85d4b59f8eef,5ceddd13-cf00-481f-9285-8340ab95d06d,3 +529bcc4d-8fcc-42b5-b4c5-a0e2c8886686,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,4 +273c575f-a41c-428f-80b0-a97985793b00,e8b6528e-a830-4d03-a027-473b411c7f02,3 +7edd0cc1-e72c-4463-86c9-e7758c6fd2f6,be49171b-9f72-4fc9-bf7a-9a52e259836b,1 +ef4b32fb-3859-441a-a4cc-1ca197f78aeb,4cda01b9-62e2-46c5-830f-b7f262a58fb1,1 +0322c87a-dccc-4c1d-a639-2404c00c7871,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +a7cf9a95-2f89-4c41-bc7d-1ba891946f76,689fb64e-a4a2-45c5-b9f2-480c2155624d,2 +095cd54c-8568-4245-9d7a-9c2f79c6a19e,689fb64e-a4a2-45c5-b9f2-480c2155624d,2 +9da202ba-64b2-4c8c-bab7-7cfc56a3410c,80eda933-749d-4fc6-91d5-613d29eb126f,1 +03b5ede7-4f3e-4d17-a326-be5e27338501,e8b6528e-a830-4d03-a027-473b411c7f02,3 +967f96c9-adcf-4304-9295-73a9766fe51f,74aeb414-e3dd-4e8a-beef-0fa45225214d,1 +4650242f-8513-49dd-b2e8-4df3c388fd22,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +29feab11-0894-43f4-bb2b-502453a49f23,4cda01b9-62e2-46c5-830f-b7f262a58fb1,4 +29d20dcd-d0c4-4bca-a52d-fc9363b5d7c6,5ceddd13-cf00-481f-9285-8340ab95d06d,3 +630bc8fb-239e-49e8-9911-90f5ee5637c6,e5ee99b6-519f-4218-8b41-62f48f59f700,2 +667f2f4e-4262-425d-bf66-9b600af692a6,74aeb414-e3dd-4e8a-beef-0fa45225214d,1 +d6ae6182-1c85-4b8e-a7a0-d150b08cab27,c7050c3b-a898-424d-8d98-ab0aaad7bef4,1 +f9d41e2a-81fa-400d-930f-a960c3135db9,c7050c3b-a898-424d-8d98-ab0aaad7bef4,2 +692abf44-42fb-4cd3-8076-d9346d57211c,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,1 +290e43d7-2768-47e8-9037-94d08ddc4345,bb19d194-e1bd-4358-819e-cd1f1b401c0c,2 +f41a7205-5a93-4d93-8988-ad1ee619ae2a,64d39754-03e4-4fa0-b1ea-5f4293315f67,1 +38c516e8-b23a-493a-8a5c-bf7b2b9ea995,64d39754-03e4-4fa0-b1ea-5f4293315f67,3 +38893be1-b3c0-4460-ab69-f83f6ac95c6a,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +5f078a73-bc4b-4231-9c91-144060234d49,64d39754-03e4-4fa0-b1ea-5f4293315f67,3 +01e059c6-9aee-4dfe-b5b5-8c403bb21a82,689fb64e-a4a2-45c5-b9f2-480c2155624d,3 +c5a71045-9dfe-4345-8021-200a01481367,689fb64e-a4a2-45c5-b9f2-480c2155624d,1 +b4eec587-6bca-4b2a-b3d3-ef2db72c4a4f,e8b6528e-a830-4d03-a027-473b411c7f02,3 +9d24b74d-0aaf-45ab-954e-5d8e435a3366,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,3 +8a4b88e8-7b27-4023-8134-93c6b05b2c6e,bb19d194-e1bd-4358-819e-cd1f1b401c0c,1 +c98cb399-9f31-47e9-8394-80b6962cbdae,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2 +aab22458-eebe-4f90-b563-d1eda139e78d,843b6553-dc6a-4fc4-bceb-02cd39af0168,2 +eb047506-bf59-4d29-b134-6a9d80235f3f,c17e63f7-0d28-4a95-8248-b01ea354840e,2 +b10167f6-1753-4208-b79b-cba9ace4b6be,4cda01b9-62e2-46c5-830f-b7f262a58fb1,2 +0ec01f36-fc49-456b-8ca5-7a7d5ea50df5,64d39754-03e4-4fa0-b1ea-5f4293315f67,1 +7023672d-7f59-4b86-be86-4d4621ad06ae,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2 +c46b8091-59e1-49de-a505-f1c98023a65a,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,3 +5f16fb3f-aa26-4cdc-8de6-e86c96dc842f,a88a23ef-679c-4743-b151-dc7722040d8c,3 +62f9cc25-a60a-4a87-a7d8-79f9f70ef6a3,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,4 +8438becb-0cf6-4add-b15d-b4f44b724b53,4cda01b9-62e2-46c5-830f-b7f262a58fb1,3 +6abeb560-cfb9-4726-8d7d-612f3cd3763e,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2 +b6d916e6-da31-4145-9edd-8fc76677b55b,689fb64e-a4a2-45c5-b9f2-480c2155624d,1 +d38de9c0-789c-4527-99ff-30a23f550d88,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,3 +e36cd6af-75e4-4182-8ce4-e3a5323bbf2b,c7050c3b-a898-424d-8d98-ab0aaad7bef4,4 +71c94abb-281b-44d8-b082-7848ae8e88d8,615695d3-8ffd-4850-bcf7-944cf6d3685b,3 +6280af33-1ec6-4e8b-bc9e-6ed331ccb5da,e5ee99b6-519f-4218-8b41-62f48f59f700,1 +3af487e1-401f-4269-a6a8-afd4d88c780c,5ceddd13-cf00-481f-9285-8340ab95d06d,3 +d9ec4e76-e7c0-4457-b6e2-a025abea6b9a,35550082-a52d-4301-8f06-05b30f6f3616,4 +2795df92-ee7d-4992-bab2-15dbb2b2ab36,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,1 +6f89159f-8046-4bae-a680-34ca13c9d4fa,e706ab70-b396-4d30-a6b2-a1ccf3625b52,2 +27897d11-f7a3-424a-bc4b-50c0487d12d1,64d39754-03e4-4fa0-b1ea-5f4293315f67,4 +8329a65b-7ddf-4250-aeee-bd625f8a401a,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,1 +885ebd5d-6a82-4802-a241-2e52e223df5a,5ceddd13-cf00-481f-9285-8340ab95d06d,2 +c0873253-7827-4831-aa92-19c38372e58d,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2 +002f22d6-25a3-48e4-aaa9-36be31e57185,64d39754-03e4-4fa0-b1ea-5f4293315f67,3 +cad92df1-0b1a-4827-a1fc-f20cece591dd,843b6553-dc6a-4fc4-bceb-02cd39af0168,2 +265f9aae-561a-4232-a78a-7052466e46b7,e8b6528e-a830-4d03-a027-473b411c7f02,1 +29d20dcd-d0c4-4bca-a52d-fc9363b5d7c6,615695d3-8ffd-4850-bcf7-944cf6d3685b,2 +81617893-be66-4c1e-b73e-a71ece089732,80eda933-749d-4fc6-91d5-613d29eb126f,4 +32726aa6-2175-4fc7-856b-512f61c70dc1,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2 +7edd0cc1-e72c-4463-86c9-e7758c6fd2f6,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,3 +942af8de-9bef-48e3-8fda-2341f20d2fbe,58b575f2-2192-4a53-9d21-df9a0c14fc25,1 +df91aa85-bfc7-4c31-93ef-4cee8d00a343,615695d3-8ffd-4850-bcf7-944cf6d3685b,1 +15f26002-ee82-4855-a9d7-d55ff3f1a85b,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2 +6056966f-4515-4b6c-b1a6-7f55ca774b78,e8b6528e-a830-4d03-a027-473b411c7f02,3 +8f024856-4bf8-4117-81ac-d61f62c91158,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,3 +671aa103-6918-4d9a-89f6-3bd3861f4a9b,5ceddd13-cf00-481f-9285-8340ab95d06d,2 +08f64f64-8cd5-491a-a5a9-80ffd3321fc9,d3e228db-8ca5-42ad-bb0a-2148e876cc59,3 +3332bd19-5807-4a5f-8894-8f1fee628adf,37e0062f-bd15-4c3e-b272-558a86d90598,3 +8a7d1bfe-b9b2-4aae-9455-9533214ce43e,e706ab70-b396-4d30-a6b2-a1ccf3625b52,3 +8b006054-ad90-49c4-9685-2adabaf29fcc,615695d3-8ffd-4850-bcf7-944cf6d3685b,1 +1be71a60-1e61-4b97-aa13-1a6886f50ef3,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +5741e351-3124-4de7-9dff-01a448e7dfd4,e8b6528e-a830-4d03-a027-473b411c7f02,4 +db7957ce-8b32-41bb-868f-c8e9cce8f1a3,b86ae24b-6f59-47e8-8adc-b17d88cbd367,4 +ffd7d39a-e3b5-43dc-97b7-f6f5443ae314,37e0062f-bd15-4c3e-b272-558a86d90598,4 +0ecabdf2-fe92-4d66-ad87-6e693748d682,5b50b820-1d0a-4231-9422-75e7f6b0cecf,4 +38c516e8-b23a-493a-8a5c-bf7b2b9ea995,4cda01b9-62e2-46c5-830f-b7f262a58fb1,2 +63505de8-b2e8-4588-8f0d-b1121bfb75f8,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,1 +3332bd19-5807-4a5f-8894-8f1fee628adf,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,1 +b15964ec-1e59-4258-9ecb-bcaac33cd071,80eda933-749d-4fc6-91d5-613d29eb126f,3 +e24985f3-2fb3-456e-a1aa-aaf88f490d70,c7050c3b-a898-424d-8d98-ab0aaad7bef4,1 +b6d916e6-da31-4145-9edd-8fc76677b55b,e706ab70-b396-4d30-a6b2-a1ccf3625b52,3 +34d36019-85bf-4260-9b15-1ed4d4ae3ada,a88a23ef-679c-4743-b151-dc7722040d8c,3 +b15964ec-1e59-4258-9ecb-bcaac33cd071,b86ae24b-6f59-47e8-8adc-b17d88cbd367,2 +551f91e6-bce3-4fb5-8dd6-782ff140480d,c7050c3b-a898-424d-8d98-ab0aaad7bef4,1 +2bfad5b6-b4ad-47e2-a316-8b7dc7fbc246,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,1 +dbfaf983-63e8-4246-899b-f0689e54ea56,4cda01b9-62e2-46c5-830f-b7f262a58fb1,4 +2795df92-ee7d-4992-bab2-15dbb2b2ab36,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,3 +a926376d-6261-45af-89bf-36cbee1f8cda,d3e228db-8ca5-42ad-bb0a-2148e876cc59,3 +1b8feb77-03cf-4414-a652-544fa364c008,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,4 +19f1c3c5-3840-4d33-8d88-30fad93fa25e,843b6553-dc6a-4fc4-bceb-02cd39af0168,1 +f684e5fd-154c-4b52-9b35-1ccc7e74190f,b86ae24b-6f59-47e8-8adc-b17d88cbd367,1 +951d80a3-2947-4ec2-a5a4-c633662d25e9,64d39754-03e4-4fa0-b1ea-5f4293315f67,3 +bd760d86-5051-4418-86cc-d97e4deac8af,58b575f2-2192-4a53-9d21-df9a0c14fc25,1 +5a87daee-97d3-4676-9f53-58bfb7042ca4,e5ee99b6-519f-4218-8b41-62f48f59f700,2 +ec11cc26-50d8-47bd-8ed0-20587214ba7d,843b6553-dc6a-4fc4-bceb-02cd39af0168,3 +5dbde056-632e-484a-a30b-67665cec51ee,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,3 +9dfcd309-494d-49bb-8e85-ad176efff081,80eda933-749d-4fc6-91d5-613d29eb126f,2 +71d7653c-9386-42df-afef-6d9d44bb53c4,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +06b914dd-d6fc-44ea-a52e-10eadebb5183,58b575f2-2192-4a53-9d21-df9a0c14fc25,1 +bff70480-5298-4218-8cac-4f825b082bf5,c17e63f7-0d28-4a95-8248-b01ea354840e,2 +7456d2d4-95f8-4725-bcd3-78ec79467149,a88a23ef-679c-4743-b151-dc7722040d8c,1 +041ecc00-a968-4118-afd5-84093c4e7356,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,3 +973443f0-e2ff-472c-8469-f452d0beeeda,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +e4132e2f-e65c-407f-87f1-27c416702bf2,615695d3-8ffd-4850-bcf7-944cf6d3685b,2 +1fa7bc74-ee64-4aa8-8df3-f8066532eb9c,80eda933-749d-4fc6-91d5-613d29eb126f,2 +5b13b820-a450-42d2-aaaa-a8a9c5fbd48c,37e0062f-bd15-4c3e-b272-558a86d90598,1 +8a7d1bfe-b9b2-4aae-9455-9533214ce43e,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2 +fc78eeaa-1ffc-480d-910d-02b487109fa8,843b6553-dc6a-4fc4-bceb-02cd39af0168,4 +4d1f5b81-0ccc-4204-a6c8-f78c74882ded,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +4c0ffd68-11fc-4dcd-b979-c910412a16bf,e706ab70-b396-4d30-a6b2-a1ccf3625b52,1 +5741e351-3124-4de7-9dff-01a448e7dfd4,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,4 +939767ac-357a-4bec-91f8-a7b25edd46c9,80eda933-749d-4fc6-91d5-613d29eb126f,4 +9dfcd309-494d-49bb-8e85-ad176efff081,e8b6528e-a830-4d03-a027-473b411c7f02,2 +dc3c0681-9e42-4041-a2eb-576324037da3,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,1 +8742e74e-c54e-4264-a3f2-7dd301072523,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +5f16fb3f-aa26-4cdc-8de6-e86c96dc842f,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,2 +7f999c60-f004-4b75-8851-72498dfa47fc,58b575f2-2192-4a53-9d21-df9a0c14fc25,2 +2db8d59b-1470-4cd3-8be6-c96a82480240,5b50b820-1d0a-4231-9422-75e7f6b0cecf,1 +7f999c60-f004-4b75-8851-72498dfa47fc,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +5a87daee-97d3-4676-9f53-58bfb7042ca4,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,1 +9da202ba-64b2-4c8c-bab7-7cfc56a3410c,615695d3-8ffd-4850-bcf7-944cf6d3685b,4 +03b5ede7-4f3e-4d17-a326-be5e27338501,a88a23ef-679c-4743-b151-dc7722040d8c,3 +d13a5859-35dd-4e23-9601-6bfef26a0ded,d3e228db-8ca5-42ad-bb0a-2148e876cc59,1 +c57a3e41-2e01-4529-a904-054657859dd7,a88a23ef-679c-4743-b151-dc7722040d8c,2 +b12b922c-5b91-4dff-a7c5-839e42584ef3,64d39754-03e4-4fa0-b1ea-5f4293315f67,4 +3dd8be7e-c2c0-4141-953f-1ce79cff87b8,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,3 +b9523b83-4b6f-41d3-8681-b946313ac6c3,e8b6528e-a830-4d03-a027-473b411c7f02,4 +03232fbc-033a-4ba9-b0d7-195b987682ef,615695d3-8ffd-4850-bcf7-944cf6d3685b,2 +09853043-de2b-4ab4-a47a-4cb90a13a27e,e5ee99b6-519f-4218-8b41-62f48f59f700,1 +cad92df1-0b1a-4827-a1fc-f20cece591dd,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,3 +951d80a3-2947-4ec2-a5a4-c633662d25e9,80eda933-749d-4fc6-91d5-613d29eb126f,2 +484655dc-c294-4f4a-9ac4-de88a2e440e3,a88a23ef-679c-4743-b151-dc7722040d8c,4 +ab62de1b-c41d-4dd0-a723-cbadfe62e864,689fb64e-a4a2-45c5-b9f2-480c2155624d,1 +08f64f64-8cd5-491a-a5a9-80ffd3321fc9,a88a23ef-679c-4743-b151-dc7722040d8c,1 +53aa67bb-9718-44bf-8b08-dc5e853a7166,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2 +2affb750-b1d9-4b84-b612-8381435bc669,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,2 +191f7ddb-6fac-4ced-905c-307b6b8a1f29,615695d3-8ffd-4850-bcf7-944cf6d3685b,4 +97c51e08-8026-44cb-af4b-15f8011e4931,37e0062f-bd15-4c3e-b272-558a86d90598,2 +4a67cffa-e7bc-4d30-bc97-f2c9a71334d1,843b6553-dc6a-4fc4-bceb-02cd39af0168,3 +cc2bd924-fb17-408c-93b5-cc01cf8e9ef0,b86ae24b-6f59-47e8-8adc-b17d88cbd367,3 +71c94abb-281b-44d8-b082-7848ae8e88d8,bb19d194-e1bd-4358-819e-cd1f1b401c0c,3 +3fb5a1fd-bf02-4ca0-bb26-4ff4c4a4af74,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,4 +08a14677-500a-4814-a60a-d83c3f6a8a37,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,3 +2e40bfc1-f035-4617-a12b-da047e4578c3,615695d3-8ffd-4850-bcf7-944cf6d3685b,1 +0ec01f36-fc49-456b-8ca5-7a7d5ea50df5,4cda01b9-62e2-46c5-830f-b7f262a58fb1,1 +a86318cc-892b-4ea0-a031-da15ad2e52ed,615695d3-8ffd-4850-bcf7-944cf6d3685b,4 +c08e2beb-24ee-4915-8668-dabe2306c6ca,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,4 +73bfa842-99f9-4181-883f-08b7795cb167,e5ee99b6-519f-4218-8b41-62f48f59f700,3 +ea907a0e-c27d-4d44-878c-1d2a9e54b740,5b50b820-1d0a-4231-9422-75e7f6b0cecf,3 +cb9cd4d2-3bce-4173-8303-62e581e91ac7,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,3 +6f89159f-8046-4bae-a680-34ca13c9d4fa,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +f6881473-8927-4504-8ba0-3acecf098b5c,689fb64e-a4a2-45c5-b9f2-480c2155624d,2 +4c19a2cf-ac71-4c7b-b629-b61373a75db6,e8b6528e-a830-4d03-a027-473b411c7f02,2 +e85b50e8-357e-45ff-8b8d-1890b9b7d0f0,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,1 +08a14677-500a-4814-a60a-d83c3f6a8a37,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +08f64f64-8cd5-491a-a5a9-80ffd3321fc9,c7050c3b-a898-424d-8d98-ab0aaad7bef4,1 +682824be-efb5-4ff6-a61b-70342f7d7606,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,1 +eddb6163-e96d-4f8f-98c6-76393a96dbbf,5ceddd13-cf00-481f-9285-8340ab95d06d,1 +bff70480-5298-4218-8cac-4f825b082bf5,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,3 +a7cf9a95-2f89-4c41-bc7d-1ba891946f76,4cda01b9-62e2-46c5-830f-b7f262a58fb1,3 +0322c87a-dccc-4c1d-a639-2404c00c7871,bb19d194-e1bd-4358-819e-cd1f1b401c0c,2 +03232fbc-033a-4ba9-b0d7-195b987682ef,5ceddd13-cf00-481f-9285-8340ab95d06d,3 +3e28eae3-bfb3-4f56-aeea-5a8d8fd399d2,be49171b-9f72-4fc9-bf7a-9a52e259836b,3 +40dceee3-31ce-450b-b55d-09099de1a8fb,689fb64e-a4a2-45c5-b9f2-480c2155624d,2 +5c309f46-440b-4cd5-a908-862c72e008b2,689fb64e-a4a2-45c5-b9f2-480c2155624d,1 +7cbec68e-07c8-4476-86b4-90549db95454,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2 +e2729b7d-e313-4a6f-9444-f7f65ae8db9a,58b575f2-2192-4a53-9d21-df9a0c14fc25,4 +ea907a0e-c27d-4d44-878c-1d2a9e54b740,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2 +bff70480-5298-4218-8cac-4f825b082bf5,e706ab70-b396-4d30-a6b2-a1ccf3625b52,2 +f9cdbb13-c633-4867-bcb0-284d9a583781,74aeb414-e3dd-4e8a-beef-0fa45225214d,1 +f47e999f-0933-4903-bd76-2154b7fdc18c,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,4 +bd1b29ee-5f35-4a9f-94a5-9faaae412e12,37e0062f-bd15-4c3e-b272-558a86d90598,1 +2ebd594f-3b44-4b66-87f0-5b2c321086d1,e5ee99b6-519f-4218-8b41-62f48f59f700,1 +7cbec68e-07c8-4476-86b4-90549db95454,e8b6528e-a830-4d03-a027-473b411c7f02,2 +99127f5a-b3a4-440e-87c1-c78861ac2ca8,843b6553-dc6a-4fc4-bceb-02cd39af0168,1 +90ffdce6-ac7d-46e1-b2b1-310b41b2c789,a88a23ef-679c-4743-b151-dc7722040d8c,1 +ab62de1b-c41d-4dd0-a723-cbadfe62e864,74aeb414-e3dd-4e8a-beef-0fa45225214d,4 +484655dc-c294-4f4a-9ac4-de88a2e440e3,e5ee99b6-519f-4218-8b41-62f48f59f700,3 +bbb8264e-cb71-4967-8033-60d7a52ad2fc,80eda933-749d-4fc6-91d5-613d29eb126f,1 +1559d243-a71a-4568-ac1b-a6175099e006,d3e228db-8ca5-42ad-bb0a-2148e876cc59,4 +67ae065f-0e88-4dcd-bf78-95f5f4613c69,e706ab70-b396-4d30-a6b2-a1ccf3625b52,4 +e2510e94-b61f-4d8f-bf5f-7c13f609f272,e8b6528e-a830-4d03-a027-473b411c7f02,3 +e9891ca7-3306-4f75-93fd-c04b976f9641,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,4 +f3ab84e6-dec5-43b4-9aa7-45b9988bff58,615695d3-8ffd-4850-bcf7-944cf6d3685b,4 +4c19a2cf-ac71-4c7b-b629-b61373a75db6,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,4 +2973c405-100e-4ece-af7f-077783132b3c,be49171b-9f72-4fc9-bf7a-9a52e259836b,4 +3fb5a1fd-bf02-4ca0-bb26-4ff4c4a4af74,689fb64e-a4a2-45c5-b9f2-480c2155624d,3 +cec02b6d-c997-4cad-8ab8-141c7a30aaf0,d3e228db-8ca5-42ad-bb0a-2148e876cc59,4 +0b926971-0595-47de-a881-26c82d880ed4,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,1 +843b5729-e193-4a16-834e-7447e35a37c8,b86ae24b-6f59-47e8-8adc-b17d88cbd367,4 +f5e96989-b540-486f-bb13-1f4297c194bd,c17e63f7-0d28-4a95-8248-b01ea354840e,3 +fe655286-6400-456f-ad0f-c61554d8988b,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +ba9fa0c5-4631-42dc-9e4f-1dbbaafcb85c,c7050c3b-a898-424d-8d98-ab0aaad7bef4,2 +da8cbe31-46f8-4b5c-806a-11ba9c40df9a,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,1 +ab62de1b-c41d-4dd0-a723-cbadfe62e864,bb19d194-e1bd-4358-819e-cd1f1b401c0c,4 +273c575f-a41c-428f-80b0-a97985793b00,5ceddd13-cf00-481f-9285-8340ab95d06d,2 +951d80a3-2947-4ec2-a5a4-c633662d25e9,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,3 +62f9cc25-a60a-4a87-a7d8-79f9f70ef6a3,4cda01b9-62e2-46c5-830f-b7f262a58fb1,3 +a2c0226b-46d1-4100-9eff-f9d5b3255850,37e0062f-bd15-4c3e-b272-558a86d90598,3 +841074bf-571a-43a6-963c-ba7cbdb26c85,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +859841a2-a2fa-4d7b-a749-8cd37b31b1ed,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +2bfad5b6-b4ad-47e2-a316-8b7dc7fbc246,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,1 +32726aa6-2175-4fc7-856b-512f61c70dc1,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,1 +f6881473-8927-4504-8ba0-3acecf098b5c,be49171b-9f72-4fc9-bf7a-9a52e259836b,2 +551f91e6-bce3-4fb5-8dd6-782ff140480d,58b575f2-2192-4a53-9d21-df9a0c14fc25,4 +d1020671-7cdf-493c-b008-c48535415611,b86ae24b-6f59-47e8-8adc-b17d88cbd367,4 +d99dab56-7aa3-4eca-869c-946bca5e6811,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,3 +82e2a7d2-d8c2-4b37-9f18-bba82f31c5b2,be49171b-9f72-4fc9-bf7a-9a52e259836b,3 +538284dd-13b3-44b9-94a6-28aeb4f04475,c17e63f7-0d28-4a95-8248-b01ea354840e,4 +50c99578-5773-4467-ab2b-3105a8f51645,b86ae24b-6f59-47e8-8adc-b17d88cbd367,2 +12a416f6-08d4-4db5-953e-d683ca9081f6,be49171b-9f72-4fc9-bf7a-9a52e259836b,1 +4c128667-aa7c-41be-b9dd-bb5a1164e6f0,35550082-a52d-4301-8f06-05b30f6f3616,1 +2ebd594f-3b44-4b66-87f0-5b2c321086d1,e706ab70-b396-4d30-a6b2-a1ccf3625b52,1 +d9cc0f2f-0be3-4cfc-bec0-fd97eb7977d6,c17e63f7-0d28-4a95-8248-b01ea354840e,3 +f9d41e2a-81fa-400d-930f-a960c3135db9,e5ee99b6-519f-4218-8b41-62f48f59f700,2 +b249a133-9d0d-4897-9ee3-0226e76914dc,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,1 +9d24b74d-0aaf-45ab-954e-5d8e435a3366,a88a23ef-679c-4743-b151-dc7722040d8c,4 +3af487e1-401f-4269-a6a8-afd4d88c780c,d3e228db-8ca5-42ad-bb0a-2148e876cc59,1 +82e2a7d2-d8c2-4b37-9f18-bba82f31c5b2,bb19d194-e1bd-4358-819e-cd1f1b401c0c,2 +bd1b29ee-5f35-4a9f-94a5-9faaae412e12,a88a23ef-679c-4743-b151-dc7722040d8c,4 +7d0f805e-b354-4c27-b55d-310e49d06e4e,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,3 +9eb8e518-6851-453b-98b9-cd5c38f4f80f,5b50b820-1d0a-4231-9422-75e7f6b0cecf,2 +44551048-9048-4764-91f1-5c2bb6928f8a,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,3 +cc5d3269-258b-4661-b83e-6aaba676fb46,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2 +85a88715-9eef-486b-9494-82989ee3b483,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +ba9fa0c5-4631-42dc-9e4f-1dbbaafcb85c,d3e228db-8ca5-42ad-bb0a-2148e876cc59,4 +dbfaf983-63e8-4246-899b-f0689e54ea56,be49171b-9f72-4fc9-bf7a-9a52e259836b,4 +b0d93ef1-d63c-4f47-b3d6-8c20ff25e4e2,74aeb414-e3dd-4e8a-beef-0fa45225214d,3 +42ec61e5-e1ff-4dee-b507-3e466e5d1768,c17e63f7-0d28-4a95-8248-b01ea354840e,2 +1ee4b2c1-1928-49aa-8552-88d946853143,c7050c3b-a898-424d-8d98-ab0aaad7bef4,2 +d1f27bac-ff50-489e-a5e0-12fd99fcf3e8,5b50b820-1d0a-4231-9422-75e7f6b0cecf,1 +03b5ede7-4f3e-4d17-a326-be5e27338501,64d39754-03e4-4fa0-b1ea-5f4293315f67,1 +867b34a7-c143-45ec-81db-705506a9578b,80eda933-749d-4fc6-91d5-613d29eb126f,3 +b6f9c559-8c79-409f-963f-2499e5ad315e,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +88971e55-2d81-493c-bd7f-2e1efc4c0153,843b6553-dc6a-4fc4-bceb-02cd39af0168,3 +484655dc-c294-4f4a-9ac4-de88a2e440e3,843b6553-dc6a-4fc4-bceb-02cd39af0168,3 +50c99578-5773-4467-ab2b-3105a8f51645,37e0062f-bd15-4c3e-b272-558a86d90598,1 +b245fe74-2070-4203-848c-85d4b59f8eef,e5ee99b6-519f-4218-8b41-62f48f59f700,3 +89e6f87a-1347-4670-9cb6-8873c4ae0bca,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,4 +27897d11-f7a3-424a-bc4b-50c0487d12d1,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,4 +e03c0b27-dcb0-4b48-a36e-1c5f013d11d9,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +431ed9a0-8475-4928-a7b2-81db3f1a2dea,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,1 +c20d15c3-b463-49d9-a114-905c83bbf357,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,4 +3af487e1-401f-4269-a6a8-afd4d88c780c,689fb64e-a4a2-45c5-b9f2-480c2155624d,2 +96b4a784-2348-428c-bf1a-b1622c88d0d7,80eda933-749d-4fc6-91d5-613d29eb126f,2 +a132ed5c-7140-41f5-8eb1-992b7aeae11b,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,3 +8a7d1bfe-b9b2-4aae-9455-9533214ce43e,74aeb414-e3dd-4e8a-beef-0fa45225214d,3 +fd47d88b-69d6-403b-bf53-b108819098f0,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,3 +041ecc00-a968-4118-afd5-84093c4e7356,d3e228db-8ca5-42ad-bb0a-2148e876cc59,1 +8502b2de-ada6-4a20-8625-092835744bd8,615695d3-8ffd-4850-bcf7-944cf6d3685b,2 +0f7d97e4-6093-489d-b338-e98397482ff3,615695d3-8ffd-4850-bcf7-944cf6d3685b,3 +85a88715-9eef-486b-9494-82989ee3b483,e706ab70-b396-4d30-a6b2-a1ccf3625b52,3 +63505de8-b2e8-4588-8f0d-b1121bfb75f8,5ceddd13-cf00-481f-9285-8340ab95d06d,4 +7db78274-d998-408b-9c97-83f22373c9ea,5ceddd13-cf00-481f-9285-8340ab95d06d,3 +87a0f788-bba9-40b9-8c39-7df9d4dece24,e706ab70-b396-4d30-a6b2-a1ccf3625b52,1 +2fafb5c6-5200-4d9a-af6b-b6517667a1ea,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,3 +a5db4fd7-bc7c-47d6-a162-e613d905ec82,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,3 +7d0f805e-b354-4c27-b55d-310e49d06e4e,bb19d194-e1bd-4358-819e-cd1f1b401c0c,3 +349b5ed3-cac3-401f-aef3-290bc0b8d5d7,615695d3-8ffd-4850-bcf7-944cf6d3685b,1 +5b13b820-a450-42d2-aaaa-a8a9c5fbd48c,843b6553-dc6a-4fc4-bceb-02cd39af0168,2 +32bd64c8-5e08-472f-b41e-f8af1d345763,5ceddd13-cf00-481f-9285-8340ab95d06d,1 +e1ecd50e-033d-4d0c-bcff-137c2eb494dd,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +bc247c35-1e4f-453a-af60-f14218a219b5,be49171b-9f72-4fc9-bf7a-9a52e259836b,4 +40dceee3-31ce-450b-b55d-09099de1a8fb,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +d9ec4e76-e7c0-4457-b6e2-a025abea6b9a,37e0062f-bd15-4c3e-b272-558a86d90598,2 +4aca1a9f-2fdc-49ce-8055-f178ffaff195,e706ab70-b396-4d30-a6b2-a1ccf3625b52,2 +0322c87a-dccc-4c1d-a639-2404c00c7871,689fb64e-a4a2-45c5-b9f2-480c2155624d,3 +0b926971-0595-47de-a881-26c82d880ed4,37e0062f-bd15-4c3e-b272-558a86d90598,4 +29d20dcd-d0c4-4bca-a52d-fc9363b5d7c6,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,1 +62f9cc25-a60a-4a87-a7d8-79f9f70ef6a3,64d39754-03e4-4fa0-b1ea-5f4293315f67,4 +80768346-2426-4f4a-a8ba-4f7768139f94,74aeb414-e3dd-4e8a-beef-0fa45225214d,4 +fd47d88b-69d6-403b-bf53-b108819098f0,d3e228db-8ca5-42ad-bb0a-2148e876cc59,1 +92d3887f-6f9e-4e3f-85a8-3da52d46cd45,bb19d194-e1bd-4358-819e-cd1f1b401c0c,2 +973443f0-e2ff-472c-8469-f452d0beeeda,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,4 +d6c0fab7-7510-49cc-bd20-c4d139cc63b7,b86ae24b-6f59-47e8-8adc-b17d88cbd367,4 +cf9e7988-a925-4015-baf3-7a0f9e494291,a88a23ef-679c-4743-b151-dc7722040d8c,4 +15f26002-ee82-4855-a9d7-d55ff3f1a85b,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,1 +032b02a8-84fe-4c54-950a-e5757021ecc2,4cda01b9-62e2-46c5-830f-b7f262a58fb1,1 +adfbf8f4-16df-4e8e-845c-1c1efa5f69d9,615695d3-8ffd-4850-bcf7-944cf6d3685b,2 +b8674a2e-e825-4cde-8885-959b55d86c1a,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +3fb5a1fd-bf02-4ca0-bb26-4ff4c4a4af74,d3e228db-8ca5-42ad-bb0a-2148e876cc59,1 +97c51e08-8026-44cb-af4b-15f8011e4931,e8b6528e-a830-4d03-a027-473b411c7f02,1 +e03c0b27-dcb0-4b48-a36e-1c5f013d11d9,74aeb414-e3dd-4e8a-beef-0fa45225214d,1 +002f22d6-25a3-48e4-aaa9-36be31e57185,689fb64e-a4a2-45c5-b9f2-480c2155624d,2 +a5db4fd7-bc7c-47d6-a162-e613d905ec82,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2 +914b8929-e04a-40f8-86ee-357f2be3a2a2,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2 +4f4b3ac9-1308-4115-b7d7-abe956e17565,e8b6528e-a830-4d03-a027-473b411c7f02,4 +2fafb5c6-5200-4d9a-af6b-b6517667a1ea,35550082-a52d-4301-8f06-05b30f6f3616,4 +e4926154-3efe-4c30-860a-5cbb7f97490b,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,3 +0ac61965-6392-4fe3-bb4f-292438c37de0,37e0062f-bd15-4c3e-b272-558a86d90598,2 +bff70480-5298-4218-8cac-4f825b082bf5,615695d3-8ffd-4850-bcf7-944cf6d3685b,1 +0976f5e0-829b-4111-9ae8-3c444a1b26eb,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,2 +273c575f-a41c-428f-80b0-a97985793b00,64d39754-03e4-4fa0-b1ea-5f4293315f67,4 +56d043f8-afaf-4a6e-a4d3-8fbd01d8858b,d3e228db-8ca5-42ad-bb0a-2148e876cc59,2 +89e6f87a-1347-4670-9cb6-8873c4ae0bca,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,3 +56d043f8-afaf-4a6e-a4d3-8fbd01d8858b,843b6553-dc6a-4fc4-bceb-02cd39af0168,3 +eb27dbeb-ffe0-439c-a9cd-f32c221330d9,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2 +fd47d88b-69d6-403b-bf53-b108819098f0,35550082-a52d-4301-8f06-05b30f6f3616,2 +9eb8e518-6851-453b-98b9-cd5c38f4f80f,e5ee99b6-519f-4218-8b41-62f48f59f700,4 +e36cd6af-75e4-4182-8ce4-e3a5323bbf2b,e706ab70-b396-4d30-a6b2-a1ccf3625b52,2 +da8cbe31-46f8-4b5c-806a-11ba9c40df9a,5b50b820-1d0a-4231-9422-75e7f6b0cecf,3 +ba6390f1-e352-4fd5-9f1e-b350214c4124,843b6553-dc6a-4fc4-bceb-02cd39af0168,4 +859841a2-a2fa-4d7b-a749-8cd37b31b1ed,c17e63f7-0d28-4a95-8248-b01ea354840e,3 +b0d93ef1-d63c-4f47-b3d6-8c20ff25e4e2,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,4 +d6ae6182-1c85-4b8e-a7a0-d150b08cab27,4cda01b9-62e2-46c5-830f-b7f262a58fb1,2 +f5df9a3a-9a21-4648-a03f-bdaf633969e4,4cda01b9-62e2-46c5-830f-b7f262a58fb1,4 +bff70480-5298-4218-8cac-4f825b082bf5,80eda933-749d-4fc6-91d5-613d29eb126f,1 +885ebd5d-6a82-4802-a241-2e52e223df5a,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,1 +b7e548f6-8f59-4552-8577-e0b895c858b4,5ceddd13-cf00-481f-9285-8340ab95d06d,1 +c0873253-7827-4831-aa92-19c38372e58d,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2 +3944bd76-a630-4f50-9f41-b4e985b520ca,c17e63f7-0d28-4a95-8248-b01ea354840e,3 +10408b83-26cc-4eb8-bd08-38435207099e,a88a23ef-679c-4743-b151-dc7722040d8c,3 +fd47d88b-69d6-403b-bf53-b108819098f0,e5ee99b6-519f-4218-8b41-62f48f59f700,1 +03b5ede7-4f3e-4d17-a326-be5e27338501,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,2 +d01dd09a-42bf-4987-af15-960fda67b02a,e5ee99b6-519f-4218-8b41-62f48f59f700,1 +bd1b29ee-5f35-4a9f-94a5-9faaae412e12,d3e228db-8ca5-42ad-bb0a-2148e876cc59,3 +67ae065f-0e88-4dcd-bf78-95f5f4613c69,5b50b820-1d0a-4231-9422-75e7f6b0cecf,2 +3af487e1-401f-4269-a6a8-afd4d88c780c,35550082-a52d-4301-8f06-05b30f6f3616,3 +fae3a36e-1707-441b-8ff8-7b6afeb278f6,e8b6528e-a830-4d03-a027-473b411c7f02,2 +7148959b-5081-4702-83c5-d262cc357eae,be49171b-9f72-4fc9-bf7a-9a52e259836b,2 +08cbcbdc-781b-434d-a70b-4955117596a1,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +96a0cf17-5d93-4476-b836-ec6c8c7a9b21,bb19d194-e1bd-4358-819e-cd1f1b401c0c,2 +ac999da3-2fbb-40e8-94cc-30d61d765b07,e5ee99b6-519f-4218-8b41-62f48f59f700,1 +484655dc-c294-4f4a-9ac4-de88a2e440e3,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,2 +2db8d59b-1470-4cd3-8be6-c96a82480240,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,3 +8f024856-4bf8-4117-81ac-d61f62c91158,4cda01b9-62e2-46c5-830f-b7f262a58fb1,2 +d99f88df-891d-4dc9-8750-aa77271a72d4,bb19d194-e1bd-4358-819e-cd1f1b401c0c,1 +4c0ffd68-11fc-4dcd-b979-c910412a16bf,37e0062f-bd15-4c3e-b272-558a86d90598,3 +87a0f788-bba9-40b9-8c39-7df9d4dece24,843b6553-dc6a-4fc4-bceb-02cd39af0168,2 +b08fa5c7-cb20-415f-ad6d-e0dfd1a23c65,b86ae24b-6f59-47e8-8adc-b17d88cbd367,3 +9dfcd309-494d-49bb-8e85-ad176efff081,615695d3-8ffd-4850-bcf7-944cf6d3685b,3 +4aca1a9f-2fdc-49ce-8055-f178ffaff195,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,4 +db7957ce-8b32-41bb-868f-c8e9cce8f1a3,843b6553-dc6a-4fc4-bceb-02cd39af0168,3 +0e9b8ee9-ad0a-42f4-a778-e1dd3e6f6c51,64d39754-03e4-4fa0-b1ea-5f4293315f67,3 +3332bd19-5807-4a5f-8894-8f1fee628adf,e706ab70-b396-4d30-a6b2-a1ccf3625b52,4 +e24985f3-2fb3-456e-a1aa-aaf88f490d70,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,4 +b0d93ef1-d63c-4f47-b3d6-8c20ff25e4e2,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +7db78274-d998-408b-9c97-83f22373c9ea,74aeb414-e3dd-4e8a-beef-0fa45225214d,2 +2434b44d-0df9-4d54-99ad-e259cbf9efa6,e706ab70-b396-4d30-a6b2-a1ccf3625b52,4 +3e28eae3-bfb3-4f56-aeea-5a8d8fd399d2,c7050c3b-a898-424d-8d98-ab0aaad7bef4,1 +b3773cdd-b925-4eda-906c-57fa5d0e5a55,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +098a1247-5524-4d73-8523-551582ba39f1,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,3 +4187e4d5-0629-4725-8ff5-1e88bf584dc2,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,2 +3fb5a1fd-bf02-4ca0-bb26-4ff4c4a4af74,e706ab70-b396-4d30-a6b2-a1ccf3625b52,4 +d99dab56-7aa3-4eca-869c-946bca5e6811,74aeb414-e3dd-4e8a-beef-0fa45225214d,1 +eb047506-bf59-4d29-b134-6a9d80235f3f,b86ae24b-6f59-47e8-8adc-b17d88cbd367,3 +19f1c3c5-3840-4d33-8d88-30fad93fa25e,58b575f2-2192-4a53-9d21-df9a0c14fc25,1 +e3965ae6-8792-422f-bae0-ecbce4da50aa,74aeb414-e3dd-4e8a-beef-0fa45225214d,3 +ec11cc26-50d8-47bd-8ed0-20587214ba7d,58b575f2-2192-4a53-9d21-df9a0c14fc25,1 +97c51e08-8026-44cb-af4b-15f8011e4931,689fb64e-a4a2-45c5-b9f2-480c2155624d,4 +6f89159f-8046-4bae-a680-34ca13c9d4fa,d3e228db-8ca5-42ad-bb0a-2148e876cc59,3 +4f4b3ac9-1308-4115-b7d7-abe956e17565,c7050c3b-a898-424d-8d98-ab0aaad7bef4,2 +fca7f7c7-e7cb-4207-b3c3-dcca5f4b633b,74aeb414-e3dd-4e8a-beef-0fa45225214d,2 +23a3e7b2-abb0-4642-9291-4af619ae2d3c,c7050c3b-a898-424d-8d98-ab0aaad7bef4,2 +d0cc9fd6-0ce6-42a4-a77e-fabb1b0962da,5ceddd13-cf00-481f-9285-8340ab95d06d,4 +32bd64c8-5e08-472f-b41e-f8af1d345763,74aeb414-e3dd-4e8a-beef-0fa45225214d,3 +333db7e3-aba5-4988-b61f-ced40037b5c8,4cda01b9-62e2-46c5-830f-b7f262a58fb1,3 +69804412-006d-40a8-909a-d68710725db6,37e0062f-bd15-4c3e-b272-558a86d90598,1 +a2c0226b-46d1-4100-9eff-f9d5b3255850,843b6553-dc6a-4fc4-bceb-02cd39af0168,1 +8329a65b-7ddf-4250-aeee-bd625f8a401a,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,3 +fd47d88b-69d6-403b-bf53-b108819098f0,80eda933-749d-4fc6-91d5-613d29eb126f,2 +2795df92-ee7d-4992-bab2-15dbb2b2ab36,74aeb414-e3dd-4e8a-beef-0fa45225214d,2 +fc78eeaa-1ffc-480d-910d-02b487109fa8,e8b6528e-a830-4d03-a027-473b411c7f02,1 +951d80a3-2947-4ec2-a5a4-c633662d25e9,be49171b-9f72-4fc9-bf7a-9a52e259836b,1 +538284dd-13b3-44b9-94a6-28aeb4f04475,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,3 +3f0de386-c2df-4cfe-98c1-bd986fdbd4c2,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,1 +9f640f78-93eb-46d3-b4c8-41ef69b03d8b,615695d3-8ffd-4850-bcf7-944cf6d3685b,1 +10408b83-26cc-4eb8-bd08-38435207099e,bb19d194-e1bd-4358-819e-cd1f1b401c0c,4 +299145f7-2b7f-484d-9dde-cc20602ed5f5,bb19d194-e1bd-4358-819e-cd1f1b401c0c,1 +c23de9da-73a2-437f-a2c2-bd257bc692c3,80eda933-749d-4fc6-91d5-613d29eb126f,1 +3895ef3d-4e4f-4793-ba7f-66743b7a7d39,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,2 +cad92df1-0b1a-4827-a1fc-f20cece591dd,e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,3 +967f96c9-adcf-4304-9295-73a9766fe51f,05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,1 +1eb77dda-3387-4242-ba28-0b371ea785cf,c17e63f7-0d28-4a95-8248-b01ea354840e,2 +fa41614e-38dc-4cfb-ade8-4ffb9d1fed72,615695d3-8ffd-4850-bcf7-944cf6d3685b,3 +35b4cbc7-b92f-400f-b292-8494dbb23567,579f4cd0-1f45-49d2-af55-9ab2b72c3b35,3 +f1236409-b5f6-4e40-961c-797b850e225b,843b6553-dc6a-4fc4-bceb-02cd39af0168,1 +81617893-be66-4c1e-b73e-a71ece089732,b86ae24b-6f59-47e8-8adc-b17d88cbd367,3 +e9891ca7-3306-4f75-93fd-c04b976f9641,be49171b-9f72-4fc9-bf7a-9a52e259836b,4 +273c575f-a41c-428f-80b0-a97985793b00,d3e228db-8ca5-42ad-bb0a-2148e876cc59,4 +7db78274-d998-408b-9c97-83f22373c9ea,58b575f2-2192-4a53-9d21-df9a0c14fc25,3 +6be78159-b492-4440-8bcb-950297636c0f,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,4 +db90b250-70b2-44d1-b20c-4d795edd020c,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,4 +fca7f7c7-e7cb-4207-b3c3-dcca5f4b633b,c17e63f7-0d28-4a95-8248-b01ea354840e,4 +05202733-0e17-4726-97c2-0520c024ab85,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,4 +867b34a7-c143-45ec-81db-705506a9578b,74aeb414-e3dd-4e8a-beef-0fa45225214d,2 +f0f5f852-5c81-4f33-a415-15b660486918,a88a23ef-679c-4743-b151-dc7722040d8c,3 +da8cbe31-46f8-4b5c-806a-11ba9c40df9a,a88a23ef-679c-4743-b151-dc7722040d8c,4 +f5df9a3a-9a21-4648-a03f-bdaf633969e4,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +19c066e5-c505-4814-8e68-ac6ab2971a67,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,4 +e03c0b27-dcb0-4b48-a36e-1c5f013d11d9,37e0062f-bd15-4c3e-b272-558a86d90598,2 +906ac891-d7a7-4d50-b4c6-c982fae2fc2d,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +6056966f-4515-4b6c-b1a6-7f55ca774b78,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,3 +b2b891d1-56c5-4876-a24f-a7961b3e1b3b,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,4 +2973c405-100e-4ece-af7f-077783132b3c,e8b6528e-a830-4d03-a027-473b411c7f02,2 +cb9cd4d2-3bce-4173-8303-62e581e91ac7,5ceddd13-cf00-481f-9285-8340ab95d06d,2 +778f8864-d993-4118-b7d6-1ea836ec6791,615695d3-8ffd-4850-bcf7-944cf6d3685b,4 +2a4ce69d-8db6-48d7-b48f-719d09b0b91f,c7050c3b-a898-424d-8d98-ab0aaad7bef4,3 +0b0d8f13-ca94-4686-b3d3-68ae3aa4bad3,b86ae24b-6f59-47e8-8adc-b17d88cbd367,2 +915a50e8-2ca3-434b-aacb-7d633ba1bef1,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,3 +f61a095b-7537-4869-aeff-1433277fa898,35550082-a52d-4301-8f06-05b30f6f3616,1 +92d3887f-6f9e-4e3f-85a8-3da52d46cd45,e706ab70-b396-4d30-a6b2-a1ccf3625b52,1 +2ebd594f-3b44-4b66-87f0-5b2c321086d1,b66a7143-c18a-43bb-b5dc-06bb5d1d3160,3 +a11ec73d-efcb-4918-be37-fa6f812d22de,c17e63f7-0d28-4a95-8248-b01ea354840e,3 +bc247c35-1e4f-453a-af60-f14218a219b5,37e0062f-bd15-4c3e-b272-558a86d90598,2 +adbf3aa7-d301-46ea-873a-d8bc0d84d285,5ceddd13-cf00-481f-9285-8340ab95d06d,1 +0e9b8ee9-ad0a-42f4-a778-e1dd3e6f6c51,c17e63f7-0d28-4a95-8248-b01ea354840e,1 +1e5fa971-3c0e-4ae8-b5bb-63d6176b82b2,58b575f2-2192-4a53-9d21-df9a0c14fc25,2 +7f999c60-f004-4b75-8851-72498dfa47fc,e706ab70-b396-4d30-a6b2-a1ccf3625b52,2 +bbb8264e-cb71-4967-8033-60d7a52ad2fc,b86ae24b-6f59-47e8-8adc-b17d88cbd367,1 +f67806e3-1791-404d-a445-6467318f3a0d,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,3 +15f26002-ee82-4855-a9d7-d55ff3f1a85b,bb19d194-e1bd-4358-819e-cd1f1b401c0c,4 +2bfad5b6-b4ad-47e2-a316-8b7dc7fbc246,5b50b820-1d0a-4231-9422-75e7f6b0cecf,2 +fe655286-6400-456f-ad0f-c61554d8988b,d3e228db-8ca5-42ad-bb0a-2148e876cc59,1 +cfd3e3f3-2b77-4858-b3ed-683496b33cfa,d3e228db-8ca5-42ad-bb0a-2148e876cc59,3 +7cbec68e-07c8-4476-86b4-90549db95454,fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,1 +608b352f-dc9d-4f97-bcd3-a6f0d9b567f4,be49171b-9f72-4fc9-bf7a-9a52e259836b,4 +f7379c32-fa41-43e5-b979-26053b9a60a3,843b6553-dc6a-4fc4-bceb-02cd39af0168,3 +d915aef6-3ddc-465a-a27d-e9a9f01eae18,c7050c3b-a898-424d-8d98-ab0aaad7bef4,2 +682824be-efb5-4ff6-a61b-70342f7d7606,6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,2 +34d36019-85bf-4260-9b15-1ed4d4ae3ada,5ceddd13-cf00-481f-9285-8340ab95d06d,3 +38c516e8-b23a-493a-8a5c-bf7b2b9ea995,74aeb414-e3dd-4e8a-beef-0fa45225214d,3 +eddb6163-e96d-4f8f-98c6-76393a96dbbf,e2e78dfc-f25c-4fec-a002-8e280d61a2f2,4 +da8cbe31-46f8-4b5c-806a-11ba9c40df9a,64d39754-03e4-4fa0-b1ea-5f4293315f67,1 +f67806e3-1791-404d-a445-6467318f3a0d,5ceddd13-cf00-481f-9285-8340ab95d06d,2 +4d1f5b81-0ccc-4204-a6c8-f78c74882ded,5ceddd13-cf00-481f-9285-8340ab95d06d,4 +12c0a32d-2471-465f-9337-14b221af4fc3,e8b6528e-a830-4d03-a027-473b411c7f02,2 +d01dd09a-42bf-4987-af15-960fda67b02a,e8b6528e-a830-4d03-a027-473b411c7f02,2 +adfbf8f4-16df-4e8e-845c-1c1efa5f69d9,bb19d194-e1bd-4358-819e-cd1f1b401c0c,1 +6056966f-4515-4b6c-b1a6-7f55ca774b78,c17e63f7-0d28-4a95-8248-b01ea354840e,4 +373c221e-275c-41aa-a334-0b2d73171fa4,58b575f2-2192-4a53-9d21-df9a0c14fc25,3 +e85b50e8-357e-45ff-8b8d-1890b9b7d0f0,35550082-a52d-4301-8f06-05b30f6f3616,4 +4eae9c6e-4c96-430f-b103-21203c72064f,55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,3 diff --git a/00-bootcamp-project/data/orders.csv b/00-bootcamp-project/data/orders.csv new file mode 100644 index 000000000..5b728021b --- /dev/null +++ b/00-bootcamp-project/data/orders.csv @@ -0,0 +1,178 @@ +order_id,created_at,order_cost,shipping_cost,order_total,tracking_id,shipping_service,estimated_delivery_at,delivered_at,status,user,promo,address +1747e0c2-2649-4b8b-8048-540425302a8f,2021-02-10T10:35:38Z,562.9,6.11,569.01,fcf6a653-9018-4469-8b5f-4f0013accc40,ups,2021-02-13T10:35:38Z,2021-02-12T10:35:38Z,delivered,e512189a-15a2-4325-b41d-6092f5c03bc9,,2c7bd191-c7c9-45d3-9dd0-612320bd9817 +1eb77dda-3387-4242-ba28-0b371ea785cf,2021-02-10T15:22:56Z,373.85,3.23,377.08,6c36bdd9-d673-459b-932c-0a290b5a040c,fedex,2021-02-13T15:22:56Z,,shipped,393de08c-725c-457a-a591-16030480eb80,,06dd400a-9d9e-48f3-9312-5a41f6038c8e +529bcc4d-8fcc-42b5-b4c5-a0e2c8886686,2021-02-10T07:33:27Z,82.0,6.37,88.37,063a7d43-ce96-4706-9be7-b92bea08910c,fedex,2021-02-11T07:33:27Z,2021-02-15T07:33:27Z,delivered,f47ac0f5-2afa-4e71-8328-bd881947159b,,e6572a36-e4ae-4daa-8c05-692490c310a1 +d0cc9fd6-0ce6-42a4-a77e-fabb1b0962da,2021-02-10T20:17:35Z,565.0,7.48,559.48,08880247-e7f5-4f27-afea-c2c78a285a08,ups,2021-02-12T20:17:35Z,2021-02-13T20:17:35Z,delivered,7025daf6-54d9-44be-8282-7923def85169,instruction set,65ef7b5a-11db-4544-89a8-44e15f1a986f +5f078a73-bc4b-4231-9c91-144060234d49,2021-02-10T15:11:37Z,206.0,4.85,210.85,e4f0bf93-4747-4e90-a3e3-fc3131895037,ups,2021-02-13T15:11:37Z,2021-02-13T15:11:37Z,delivered,c3a44de4-e6c8-4d02-93df-aff409356087,,d3dfe1e5-6826-49fe-9bfb-ef1022a20520 +2973c405-100e-4ece-af7f-077783132b3c,2021-02-10T04:30:24Z,254.0,7.63,261.63,bdff250d-3d01-49e9-a4cd-4ae18bed9cb5,dhl,2021-02-12T04:30:24Z,2021-02-11T04:30:24Z,delivered,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,299ec70d-f1e7-4807-9d0e-6fd86e3ebcab +01e059c6-9aee-4dfe-b5b5-8c403bb21a82,2021-02-10T12:51:19Z,45.75,9.72,38.47,b3dcd35d-2d18-4e48-b35f-57ddacbcb8d0,usps,2021-02-14T12:51:19Z,2021-02-11T12:51:19Z,delivered,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,Optional,9285957a-e1fd-4205-960e-f739a9c7dfd2 +40f5d51c-0a3c-481a-96e8-0784818e082d,2021-02-10T17:47:04Z,191.75,5.31,197.06,9a9f20cc-e4f1-46d8-8fb3-96afc46d1824,fedex,2021-02-12T17:47:04Z,2021-02-11T17:47:04Z,delivered,6b116938-3785-4983-a5d7-33f6af32f0ba,,18e90fce-7517-42c3-bd20-7028608da7df +a11ec73d-efcb-4918-be37-fa6f812d22de,2021-02-10T19:10:46Z,726.75,7.28,734.03,6904e80a-7ac3-47c9-80ae-79f1e0e7401f,ups,2021-02-15T19:10:46Z,2021-02-16T19:10:46Z,delivered,96aa719e-c5a3-4645-ba89-16c304fb59b0,,bc355137-f7dd-4461-83d3-f288994d450a +0ec01f36-fc49-456b-8ca5-7a7d5ea50df5,2021-02-10T06:45:40Z,45.5,8.89,54.39,732d71e6-3811-4867-a00f-2058c0d148cd,ups,,2021-02-11T06:45:40Z,delivered,c42fc8e5-9ab6-4fbf-84bf-40ff309bf24c,,d0042646-63e0-434e-874c-aec1d434f2df +bb219a8e-f747-4cc5-ac19-9f505baed9ff,2021-02-10T06:06:56Z,358.0,4.73,362.73,859c2d79-309b-4fc5-8133-78a0b2787950,ups,2021-02-12T06:06:56Z,2021-02-13T06:06:56Z,delivered,6b116938-3785-4983-a5d7-33f6af32f0ba,,6b49d7c6-6ede-4a8a-ade1-ec5888c7ce14 +03232fbc-033a-4ba9-b0d7-195b987682ef,2021-02-10T01:30:52Z,342.0,5.83,347.83,824da197-861b-4e3f-be1a-3abad6af5eb7,ups,2021-02-15T01:30:52Z,2021-02-17T01:30:52Z,delivered,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,632eadda-3e81-492c-8108-d5982aeac84d +5f994f7e-2e13-4720-99ed-cfbdcdfd6e2a,2021-02-10T04:51:03Z,228.6,8.65,227.25,f1e5ee01-bd53-49da-b285-79aea19ec95e,ups,2021-02-13T04:51:03Z,2021-02-16T04:51:03Z,delivered,5555f2b6-d408-419f-aa60-22c0f0440f50,leverage,25caf41f-ca5a-4cbb-bc2c-b5d9fcebe66b +608b352f-dc9d-4f97-bcd3-a6f0d9b567f4,2021-02-10T01:56:15Z,203.0,5.76,208.76,52056c0d-c476-43e4-be74-d4bc28c48b3b,ups,2021-02-11T01:56:15Z,2021-02-16T01:56:15Z,delivered,79bdfd27-a0a7-4e4f-9d75-0c12c72ce7f1,,131db634-55f8-4fb6-98f3-624ec32a94b8 +630bc8fb-239e-49e8-9911-90f5ee5637c6,2021-02-10T00:06:54Z,203.0,8.71,201.71,b794e761-fa97-461b-aa7b-b2d9b5c96de8,ups,2021-02-11T00:06:54Z,2021-02-17T00:06:54Z,delivered,4d3c9f53-0667-4a80-8259-12200fe75761,leverage,63fdd7ef-51f3-49e2-bdf2-22d46f68aacf +682824be-efb5-4ff6-a61b-70342f7d7606,2021-02-10T12:28:15Z,270.5,6.25,266.75,425c0e55-9655-4e31-86a9-6c3cc1584ebb,ups,2021-02-13T12:28:15Z,2021-02-11T12:28:15Z,delivered,f47ac0f5-2afa-4e71-8328-bd881947159b,leverage,4747877b-fb7d-4ec1-b42d-6b8f8707c984 +12c0a32d-2471-465f-9337-14b221af4fc3,2021-02-10T04:29:17Z,96.75,7.68,104.43,d5d92e88-1640-42f5-9617-411774869eff,fedex,2021-02-12T04:29:17Z,2021-02-14T04:29:17Z,delivered,bbe518c7-5ea8-444e-acef-6c18be8336bc,,89f9c593-3ac8-4f50-ab01-01b4a2e27eaa +adbf3aa7-d301-46ea-873a-d8bc0d84d285,2021-02-10T23:45:52Z,70.0,6.72,76.72,4f0b2205-72ce-4c12-820f-88ffc4aad8c5,usps,2021-02-15T23:45:52Z,2021-02-16T23:45:52Z,delivered,376bc5b4-cb91-4fa3-9083-7dd7f1caa872,,02331e89-1736-4f12-85b9-ddd62545214b +e85b50e8-357e-45ff-8b8d-1890b9b7d0f0,2021-02-10T09:11:47Z,205.3,5.69,210.99,080d8966-d058-4476-921e-19ee95bbd681,ups,2021-02-12T09:11:47Z,2021-02-14T09:11:47Z,delivered,9cfa05e2-606b-4080-8bac-96e3986f1704,,53983579-4a64-432a-941e-c3d9c886bd77 +08a14677-500a-4814-a60a-d83c3f6a8a37,2021-02-10T13:22:13Z,457.0,7.06,464.06,45273ecc-4321-4063-bc7c-786ea0f57634,ups,2021-02-13T13:22:13Z,2021-02-13T13:22:13Z,delivered,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,280bb1a8-d59e-4ada-b479-a4d47163130e +7d0f805e-b354-4c27-b55d-310e49d06e4e,2021-02-10T17:49:57Z,288.75,5.44,294.19,2270a0a4-e44c-4e18-a441-7dd943e06c30,fedex,2021-02-11T17:49:57Z,2021-02-12T17:49:57Z,delivered,48fd8fef-ef87-4609-aac6-a8495b2feb50,,1d3482c6-e56b-47df-91f8-4b32bc908b2b +71eb1669-8706-4ef4-8a4c-0def78871dc4,2021-02-10T17:25:21Z,150.75,2.83,153.58,3927cfbf-0cb1-4dac-a73c-e627d740c94d,fedex,2021-02-15T17:25:21Z,2021-02-16T17:25:21Z,delivered,1550e197-9073-408e-a1ca-08f9dbac7f7a,,e21cfbf8-4b71-4028-a00f-83d79b8d1745 +8a7d1bfe-b9b2-4aae-9455-9533214ce43e,2021-02-10T10:26:05Z,389.35,6.91,396.26,7fd3a2f2-3189-4c82-85e4-71b38c4d8f6a,fedex,2021-02-11T10:26:05Z,2021-02-15T10:26:05Z,delivered,c0f02267-3aca-4878-a0f9-3fe516f9ec17,,63fdd7ef-51f3-49e2-bdf2-22d46f68aacf +ef4b32fb-3859-441a-a4cc-1ca197f78aeb,2021-02-10T01:58:09Z,71.5,2.92,74.42,b350fe12-c39e-4cb3-abd8-dc38887a796a,ups,,2021-02-12T01:58:09Z,delivered,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,,6d31baf0-1ecd-42e0-b32f-645d084c3109 +8b006054-ad90-49c4-9685-2adabaf29fcc,2021-02-10T01:25:20Z,95.5,9.71,105.21,f630f43b-b95a-497d-9c12-8c2dabe67d5a,fedex,2021-02-11T01:25:20Z,2021-02-12T01:25:20Z,delivered,b6b40cce-8d02-4fe5-8bee-5eadbcb56a01,,2ccdea45-e41c-4845-8252-50c2f568e0db +e60286de-ae1c-4427-8b3c-3f019e93ac7a,2021-02-10T00:05:59Z,162.0,5.27,167.27,2f77808e-dc8d-4be0-9d71-3b3143e94c27,fedex,2021-02-12T00:05:59Z,2021-02-17T00:05:59Z,delivered,2816d806-e7b2-4721-a197-a60bd3082f35,,e40b6557-536e-478e-a405-eed9959aa9f7 +095cd54c-8568-4245-9d7a-9c2f79c6a19e,2021-02-10T21:34:59Z,30.5,6.7,27.2,4b80bdbc-8aa1-45ec-a2b0-9dac783ab978,usps,2021-02-15T21:34:59Z,2021-02-16T21:34:59Z,delivered,edbbae4b-6354-4a0b-9d43-d74c3f67b5de,leverage,609af927-16f8-450a-ade4-1e06724e9feb +b7e548f6-8f59-4552-8577-e0b895c858b4,2021-02-10T10:15:40Z,85.0,3.36,88.36,eb73ab98-588d-44af-8a0e-02af97f31661,ups,2021-02-12T10:15:40Z,2021-02-14T10:15:40Z,delivered,02414bff-285d-4008-9352-ad50839b729f,,4747877b-fb7d-4ec1-b42d-6b8f8707c984 +7cbec68e-07c8-4476-86b4-90549db95454,2021-02-10T01:52:22Z,561.5,2.92,564.42,5108cc8a-e99c-445e-adc2-10298c053c1a,fedex,2021-02-13T01:52:22Z,2021-02-15T01:52:22Z,delivered,d055abf7-ba8e-463b-975a-c5cb10f6d8eb,,8b7e7226-a1e0-4fbf-a0a9-60c38d3e3347 +e2510e94-b61f-4d8f-bf5f-7c13f609f272,2021-02-10T23:57:07Z,605.3,9.97,615.27,9935815e-8420-436b-ac7d-87294e2b5d41,ups,2021-02-15T23:57:07Z,2021-02-16T23:57:07Z,delivered,dc41b3dc-c270-46ce-a7b7-1f27c178765c,,4983fb6f-b53f-4022-95ca-d17eb4974093 +0a5be7a1-f4b1-4833-b4fa-72a9276c63bf,2021-02-10T19:19:53Z,123.8,4.98,128.78,591e0d3a-b935-4d5c-bf31-e6a2cb75f103,ups,2021-02-12T19:19:53Z,2021-02-14T19:19:53Z,delivered,9cfa05e2-606b-4080-8bac-96e3986f1704,,be19b416-2a93-4ad7-8fdd-f0ae8f4eec2a +1559d243-a71a-4568-ac1b-a6175099e006,2021-02-10T03:22:09Z,122.0,6.67,128.67,e88410ac-0042-4305-9661-bf63b17236b0,usps,2021-02-15T03:22:09Z,2021-02-17T03:22:09Z,delivered,6cf2751f-d815-4fbc-b04a-245c1301574c,,302bfd3c-795c-4eef-b1e7-627897f6861e +0b926971-0595-47de-a881-26c82d880ed4,2021-02-10T12:42:49Z,296.0,5.71,301.71,90ab8662-a7d0-4b2f-aaa4-3c8c1eefb772,ups,,2021-02-17T12:42:49Z,delivered,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,edd6e563-bce1-4c84-859d-31cae681f40b +fafde59f-fc4a-4d5f-865e-ff13c8ab6d06,2021-02-10T14:33:34Z,202.0,4.75,206.75,b0867a83-05d3-4288-8975-f23617c27aa9,ups,2021-02-12T14:33:34Z,2021-02-17T14:33:34Z,delivered,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,ff8d0181-f21e-4235-bf7c-e5f917c6b55f +497e5ef8-5bf6-424c-9d05-f5a467c2d23a,2021-02-10T16:55:52Z,186.5,8.35,194.85,51e132a1-3045-4648-bb6e-fa56c4dbcc76,ups,,2021-02-17T16:55:52Z,delivered,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,28d7931e-b044-49f6-ac58-fabf1151055a +fa41614e-38dc-4cfb-ade8-4ffb9d1fed72,2021-02-10T14:17:38Z,410.75,8.28,419.03,60418ca5-9737-4e16-a7c2-286ad5ab5665,usps,2021-02-12T14:17:38Z,2021-02-16T14:17:38Z,delivered,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,2ccdea45-e41c-4845-8252-50c2f568e0db +e2281b91-8575-4da9-9a3a-ab0f19ec584e,2021-02-10T18:39:59Z,30.0,7.37,37.37,0007698e-0b78-469e-a761-4cfeebd10067,ups,2021-02-13T18:39:59Z,2021-02-14T18:39:59Z,delivered,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,2b514c51-d01b-4d26-be99-4a1fa99bf322 +c20d15c3-b463-49d9-a114-905c83bbf357,2021-02-10T00:46:35Z,240.5,5.4,232.9,70360c85-b89d-4333-8066-26cdda56a9af,fedex,2021-02-14T00:46:35Z,2021-02-16T00:46:35Z,delivered,85362f90-0066-4b3b-b0d5-2e919acda80d,instruction set,71aa45c1-ce05-43b5-a52a-6145ab435c69 +a7cf9a95-2f89-4c41-bc7d-1ba891946f76,2021-02-10T09:59:41Z,122.0,3.96,125.96,a6e167c5-3924-4b71-89d5-fe46145c27b2,usps,2021-02-14T09:59:41Z,2021-02-15T09:59:41Z,delivered,17c49262-1f0c-46d1-a6ba-bacc19f08a86,,609af927-16f8-450a-ade4-1e06724e9feb +d915aef6-3ddc-465a-a27d-e9a9f01eae18,2021-02-10T00:24:21Z,101.5,2.19,103.69,301a8e99-cfec-41c9-9964-866645a10078,ups,2021-02-13T00:24:21Z,2021-02-17T00:24:21Z,delivered,19ac513f-b77e-4808-ade4-284ece721d91,,fc458964-6e05-46e7-8717-c8c7798e78aa +191f7ddb-6fac-4ced-905c-307b6b8a1f29,2021-02-10T04:25:15Z,105.75,4.65,110.4,528a581e-8b45-4070-9359-8a9ed56f2f90,fedex,2021-02-14T04:25:15Z,2021-02-16T04:25:15Z,delivered,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,a6dd4d60-8756-4967-8dd6-e7deaa538bc6 +bd1b29ee-5f35-4a9f-94a5-9faaae412e12,2021-02-10T22:18:42Z,445.55,6.83,432.38,98aea485-2e9f-4f8f-a067-3d3be6ee55e3,ups,2021-02-15T22:18:42Z,2021-02-11T22:18:42Z,delivered,4340de09-99b5-451b-ada3-168228a08cf9,Mandatory,d7f05c8c-d055-481f-a427-77aded0fd4ce +f6b6807a-864d-4fed-b22d-3f2638f21b74,2021-02-10T08:19:35Z,61.9,1.26,63.16,2d812246-7139-4437-a0a8-6dbc7b172dbb,ups,2021-02-12T08:19:35Z,2021-02-16T08:19:35Z,delivered,85362f90-0066-4b3b-b0d5-2e919acda80d,,3a286955-76c1-4b50-b5fc-61e4e4e3be4d +5b13b820-a450-42d2-aaaa-a8a9c5fbd48c,2021-02-10T20:45:48Z,90.75,4.83,95.58,582632b4-2889-469a-a417-4342889c7552,ups,2021-02-12T20:45:48Z,2021-02-16T20:45:48Z,delivered,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,,9b6a4ed6-6c27-4102-8d5f-5db7435e80ee +06b914dd-d6fc-44ea-a52e-10eadebb5183,2021-02-10T17:29:55Z,95.0,7.5,102.5,3330f149-af55-4680-a2c6-35501df5687b,ups,2021-02-13T17:29:55Z,2021-02-15T17:29:55Z,delivered,58367695-0c22-415d-9704-bd8f73bb2e8f,,131db634-55f8-4fb6-98f3-624ec32a94b8 +e9891ca7-3306-4f75-93fd-c04b976f9641,2021-02-10T19:21:18Z,483.5,1.69,485.19,66088a06-958d-47e2-baf3-0324c5198e8e,fedex,2021-02-13T19:21:18Z,2021-02-16T19:21:18Z,delivered,707a74bd-593f-4bdc-85e3-b8ff6b538399,,4a9bcc05-a07b-4507-9d42-a2325a4844fa +0669a520-9c7e-424d-a279-ee96f6f25aec,2021-02-10T13:37:32Z,86.25,4.35,90.6,cf87b5ba-1e2f-4e3c-9102-eef6c220c5d1,ups,,2021-02-14T13:37:32Z,delivered,78fe6452-8a56-4226-ae22-f372116b12ff,,c8e06217-c625-471f-8cdc-88c3e39f6b2c +0976f5e0-829b-4111-9ae8-3c444a1b26eb,2021-02-10T16:47:23Z,278.25,8.93,287.18,4983aff2-fccb-4c9d-951e-884e9ef7e7f5,usps,2021-02-15T16:47:23Z,,shipped,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,,a4fbed7c-7bdd-465d-bdcd-ab0c4c68f300 +da8cbe31-46f8-4b5c-806a-11ba9c40df9a,2021-02-10T11:38:51Z,516.0,8.7,524.7,41b5dfbf-786f-46c8-91db-3988301d3c0f,ups,2021-02-14T11:38:51Z,2021-02-11T11:38:51Z,delivered,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,994b670f-e529-4a97-9826-448f7f9fbf80 +a2c0226b-46d1-4100-9eff-f9d5b3255850,2021-02-10T06:17:21Z,212.0,7.37,219.37,455d4f5f-9b48-42b2-89ba-bfb63c55fbf9,ups,2021-02-13T06:17:21Z,2021-02-17T06:17:21Z,delivered,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,be95b20d-a774-4572-b1ff-fd2c2c657568 +7148959b-5081-4702-83c5-d262cc357eae,2021-02-10T05:32:12Z,101.5,6.16,107.66,e386d0e1-2eba-4046-94c4-24ab656b0521,ups,2021-02-15T05:32:12Z,2021-02-11T05:32:12Z,delivered,6d37adeb-4c53-4167-b170-c89e4bd1764a,,2b514c51-d01b-4d26-be99-4a1fa99bf322 +942af8de-9bef-48e3-8fda-2341f20d2fbe,2021-02-10T11:26:45Z,276.75,4.8,281.55,6da0f9a4-1d8e-47d5-b3ed-8be1edb34e93,usps,2021-02-15T11:26:45Z,2021-02-13T11:26:45Z,delivered,0babae9e-2656-4dcb-b454-47d88d47c920,,4d9d28c3-6e38-48e7-9960-f244a3e72d9d +bbd9db3c-9553-43b8-8223-c8d204ba5129,2021-02-10T18:24:45Z,161.5,6.94,168.44,94ae9c7f-7bfa-4449-9419-d0435fed7be0,fedex,2021-02-12T18:24:45Z,2021-02-13T18:24:45Z,delivered,8f61f71f-2321-4365-a17d-8e808b3151d2,,ff8d0181-f21e-4235-bf7c-e5f917c6b55f +63505de8-b2e8-4588-8f0d-b1121bfb75f8,2021-02-10T13:05:57Z,573.75,3.16,576.91,e70ccf15-dd64-4aef-bfe4-2821f8241f23,ups,2021-02-15T13:05:57Z,2021-02-17T13:05:57Z,delivered,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,e080edb5-bf24-43dd-a9cd-f1419a240fa7 +90ffdce6-ac7d-46e1-b2b1-310b41b2c789,2021-02-10T15:26:12Z,15.0,2.59,17.59,980b08d8-142e-4a45-ab9c-77d0e7b2a169,usps,2021-02-11T15:26:12Z,2021-02-17T15:26:12Z,delivered,4dae48a6-8206-46eb-b629-fec4a99306ec,,d7f05c8c-d055-481f-a427-77aded0fd4ce +71c94abb-281b-44d8-b082-7848ae8e88d8,2021-02-10T23:55:17Z,91.5,7.53,99.03,2282603e-5bd6-447b-95df-acd21f8707ce,fedex,2021-02-15T23:55:17Z,2021-02-13T23:55:17Z,delivered,d78268b1-7168-49f4-8f6f-db436afb5a6f,,89f9c593-3ac8-4f50-ab01-01b4a2e27eaa +29d20dcd-d0c4-4bca-a52d-fc9363b5d7c6,2021-02-10T02:37:36Z,543.0,2.06,545.06,,,,,preparing,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,aa61ded6-4588-48dd-9759-1bd36ec5d787 +6b2a45d9-fe4f-4b4d-896d-54c08a71a80f,2021-02-10T11:49:46Z,201.5,4.59,196.09,4e7bf7b3-d3fd-486f-8a9d-368dc83ea8bd,ups,,2021-02-11T11:49:46Z,delivered,4d3c9f53-0667-4a80-8259-12200fe75761,leverage,89ab3752-1119-4f9e-9766-0d6883501434 +1829f967-79c8-4998-ba9f-9d381728cedd,2021-02-10T21:22:42Z,451.5,7.44,438.94,63c66301-a47f-462b-b6f3-7e981d030ee2,fedex,2021-02-13T21:22:42Z,,shipped,db41a6d4-70fc-43b1-82a5-393b46a2bdfa,Mandatory,6b49d7c6-6ede-4a8a-ade1-ec5888c7ce14 +9d24b74d-0aaf-45ab-954e-5d8e435a3366,2021-02-10T17:46:27Z,121.5,4.74,126.24,b0e50484-6d2e-437b-acf8-b36ca0558774,fedex,,2021-02-12T17:46:27Z,delivered,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,fe794a2d-aa57-4ef1-8948-e0491e1ca3c1 +e2729b7d-e313-4a6f-9444-f7f65ae8db9a,2021-02-10T11:25:33Z,380.0,7.5,387.5,,,,,preparing,2bfd97fc-be3c-4137-8996-b44907a368d2,,aa61ded6-4588-48dd-9759-1bd36ec5d787 +27897d11-f7a3-424a-bc4b-50c0487d12d1,2021-02-10T17:15:59Z,577.0,6.18,583.18,90ff417d-90e2-4a2e-8e64-a950e63c2157,ups,2021-02-14T17:15:59Z,2021-02-11T17:15:59Z,delivered,6d37adeb-4c53-4167-b170-c89e4bd1764a,,aa61ded6-4588-48dd-9759-1bd36ec5d787 +c8ec734f-2f92-4d17-80bf-71de0afd713d,2021-02-10T13:01:59Z,135.0,3.14,138.14,222af431-baed-4b39-bf00-32c768a6a992,ups,2021-02-14T13:01:59Z,2021-02-14T13:01:59Z,delivered,467a047e-c8df-4304-8fc9-949acd7bcf4a,,582148c7-44d6-4247-83ab-cd65557569b5 +f7379c32-fa41-43e5-b979-26053b9a60a3,2021-02-10T07:32:20Z,60.75,6.08,66.83,9e897f6a-1e71-4a12-8841-31ca73af745c,usps,2021-02-11T07:32:20Z,2021-02-12T07:32:20Z,delivered,48c5ab18-4e44-40cb-8776-a19da0a86ffa,,8b7e7226-a1e0-4fbf-a0a9-60c38d3e3347 +3af487e1-401f-4269-a6a8-afd4d88c780c,2021-02-10T13:05:01Z,336.75,8.68,345.43,90507393-38e1-4bb0-84b3-6b2a49e13a98,ups,2021-02-14T13:05:01Z,2021-02-14T13:05:01Z,delivered,1fada2e4-1018-48f1-84dc-802dc99171fe,,902bcb47-051b-4375-9dc0-485b3172b89b +b245fe74-2070-4203-848c-85d4b59f8eef,2021-02-10T12:43:17Z,641.5,1.3,642.8,,,,,preparing,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,b3315b61-f1a6-4dbc-b08b-d65b38aa6f77 +3c6072c0-399c-4250-86f4-86024e4a18c5,2021-02-10T01:31:19Z,150.75,6.88,157.63,4a762117-eca8-4a36-bfb5-400be2b805f4,ups,2021-02-13T01:31:19Z,2021-02-13T01:31:19Z,delivered,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,d7f05c8c-d055-481f-a427-77aded0fd4ce +4c0ffd68-11fc-4dcd-b979-c910412a16bf,2021-02-10T02:30:40Z,236.25,2.32,238.57,5182441a-739a-4bb6-b59e-8cf8babd3fee,ups,2021-02-13T02:30:40Z,2021-02-15T02:30:40Z,delivered,29246f52-de26-4867-b464-7c5973526202,,71c60b11-0457-40c4-91ca-b86e0631f1eb +4d1f5b81-0ccc-4204-a6c8-f78c74882ded,2021-02-10T14:23:19Z,602.0,5.11,607.11,2081aed9-4dc7-45d7-87ee-e489a0006d1c,fedex,2021-02-12T14:23:19Z,2021-02-15T14:23:19Z,delivered,366bd18f-6a16-4f39-9177-080c11ce9f25,,1ceb9167-9852-45a7-8109-57b077d8a2e0 +871d9861-ea19-47a1-950d-c3198128acef,2021-02-10T13:55:26Z,101.75,3.65,105.4,017466a0-6d53-471e-8848-c10ef7317658,ups,2021-02-12T13:55:26Z,2021-02-14T13:55:26Z,delivered,bf7367be-d029-4255-81a1-3a295eeb9c56,,3b7ecb69-bf20-41be-b69f-59685b249be2 +951d80a3-2947-4ec2-a5a4-c633662d25e9,2021-02-10T23:09:28Z,459.15,8.69,467.84,5e5d91a5-e1d8-4e3c-9165-0ee0a27f0de9,ups,2021-02-14T23:09:28Z,2021-02-16T23:09:28Z,delivered,366bd18f-6a16-4f39-9177-080c11ce9f25,,0314fc1b-d832-4562-bda4-7dbe09d2868c +bbb8264e-cb71-4967-8033-60d7a52ad2fc,2021-02-10T14:34:24Z,241.2,9.05,250.25,7e3fd3fc-be84-4bee-a878-e1dc6e421424,fedex,2021-02-14T14:34:24Z,2021-02-13T14:34:24Z,delivered,ab6cf98c-c16e-41b7-88ab-31f4db64caa2,,d7f05c8c-d055-481f-a427-77aded0fd4ce +7f999c60-f004-4b75-8851-72498dfa47fc,2021-02-10T11:19:51Z,583.5,3.62,587.12,038766c7-6b8f-4297-87f5-158efc010015,usps,2021-02-12T11:19:51Z,2021-02-14T11:19:51Z,delivered,4d3c9f53-0667-4a80-8259-12200fe75761,,6b49d7c6-6ede-4a8a-ade1-ec5888c7ce14 +2795df92-ee7d-4992-bab2-15dbb2b2ab36,2021-02-10T11:26:57Z,444.65,6.78,451.43,a57de08b-2fea-4488-84ff-bedf458342af,ups,2021-02-14T11:26:57Z,2021-02-16T11:26:57Z,delivered,9208a361-ea2f-4f75-a2b4-281b55df08a9,,dc7345f9-9c6b-45d5-a633-a07a4a355104 +4d84f125-234d-4f3c-a54d-41172b453510,2021-02-10T03:45:36Z,45.0,4.4,49.4,8a0cd48b-e92c-4c49-98ad-2e981aeb3df5,dhl,2021-02-15T03:45:36Z,2021-02-17T03:45:36Z,delivered,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,302bfd3c-795c-4eef-b1e7-627897f6861e +e3965ae6-8792-422f-bae0-ecbce4da50aa,2021-02-10T18:41:39Z,107.85,5.76,113.61,7306f1b7-cf80-4332-9af7-bd3f89a75479,fedex,,,shipped,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,18e90fce-7517-42c3-bd20-7028608da7df +b6f9c559-8c79-409f-963f-2499e5ad315e,2021-02-10T14:02:56Z,81.5,9.66,91.16,36c8391f-5a3e-459b-8127-61f1366ccf5e,usps,2021-02-11T14:02:56Z,2021-02-14T14:02:56Z,delivered,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,2b514c51-d01b-4d26-be99-4a1fa99bf322 +88971e55-2d81-493c-bd7f-2e1efc4c0153,2021-02-10T13:27:11Z,247.65,2.72,250.37,816279c6-4a1f-4535-8a03-671a51e7c7e5,fedex,2021-02-11T13:27:11Z,2021-02-12T13:27:11Z,delivered,2c696f6a-3988-4cdb-a9a0-5c464e2ce19a,,4a30ec6b-111e-4142-9079-956394e1e4c7 +973443f0-e2ff-472c-8469-f452d0beeeda,2021-02-10T10:55:44Z,456.0,5.04,461.04,8c408064-fe11-4e33-8801-6df7fba0452f,fedex,,,shipped,f36630d8-e3d9-4e23-acc0-ffd86e661c26,,25caf41f-ca5a-4cbb-bc2c-b5d9fcebe66b +74bae4ca-0322-4e54-ac94-ba84bc63657e,2021-02-10T05:43:24Z,433.75,2.66,436.41,d51f8ff3-a7c9-4b26-a06a-46aca6785b4d,ups,2021-02-11T05:43:24Z,2021-02-14T05:43:24Z,delivered,6f0c43cb-42af-45e0-83ae-f0ed3b4e2e8e,,a4fbed7c-7bdd-465d-bdcd-ab0c4c68f300 +4f4b3ac9-1308-4115-b7d7-abe956e17565,2021-02-10T10:47:36Z,203.5,3.74,207.24,388e7b9a-3a39-4819-8888-ea88970a8ec5,ups,2021-02-14T10:47:36Z,2021-02-11T10:47:36Z,delivered,78fe6452-8a56-4226-ae22-f372116b12ff,,5eadcadd-a524-443f-8fcb-d0ef1981da0a +3f0de386-c2df-4cfe-98c1-bd986fdbd4c2,2021-02-10T13:57:47Z,20.0,5.71,25.71,7ff28b48-9e18-4f9c-8d29-c1c836527796,ups,2021-02-14T13:57:47Z,2021-02-15T13:57:47Z,delivered,b84e37bd-016f-4bd7-ab63-0ba81c57ea9a,,a8fa71b5-5d47-410f-b0c1-a16d20a05937 +2affb750-b1d9-4b84-b612-8381435bc669,2021-02-10T15:53:34Z,220.0,9.87,229.87,2248ec46-bb3e-41ba-855e-c8da997df072,ups,2021-02-15T15:53:34Z,2021-02-16T15:53:34Z,delivered,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,26f11eae-4214-4e99-8fc2-acc4718e30b7 +b08fa5c7-cb20-415f-ad6d-e0dfd1a23c65,2021-02-10T16:49:51Z,120.75,5.54,126.29,26a2a633-e8d0-4537-878a-401cb2ae023a,ups,2021-02-14T16:49:51Z,2021-02-12T16:49:51Z,delivered,ee92f1cf-3bcf-4cea-a8d4-ac5ce812de46,,902bcb47-051b-4375-9dc0-485b3172b89b +3772cac5-2ea2-4278-9166-f0703935a671,2021-02-10T09:28:00Z,141.7,4.44,144.14,,,,,preparing,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,task-force,5b281207-9295-4a31-a1bb-5ac383acca2a +f684e5fd-154c-4b52-9b35-1ccc7e74190f,2021-02-10T05:29:13Z,767.9,7.64,775.54,f7e65ca3-e3b5-4b3d-8fba-881ed897cb6d,fedex,2021-02-12T05:29:13Z,2021-02-14T05:29:13Z,delivered,96aa719e-c5a3-4645-ba89-16c304fb59b0,,994b670f-e529-4a97-9826-448f7f9fbf80 +cb9cd4d2-3bce-4173-8303-62e581e91ac7,2021-02-10T08:58:39Z,535.0,1.99,536.99,9b345a92-0ed4-4b72-b2e0-26d43d0566f8,usps,2021-02-15T08:58:39Z,2021-02-17T08:58:39Z,delivered,bbe51ac6-6687-4cbe-9178-27d96f90836b,,63fdd7ef-51f3-49e2-bdf2-22d46f68aacf +175d8fb5-2c45-45b5-9fe3-7b3987d05b2d,2021-02-10T17:08:27Z,162.5,1.57,164.07,45e46aff-5482-486f-bc92-109706aaacd7,fedex,2021-02-12T17:08:27Z,2021-02-13T17:08:27Z,delivered,6875a4d9-cdc6-43bc-a700-f6916e049e46,,1ceb9167-9852-45a7-8109-57b077d8a2e0 +349b5ed3-cac3-401f-aef3-290bc0b8d5d7,2021-02-10T21:53:19Z,40.0,5.97,45.97,35726bdf-0a6a-40e3-856d-7cdb0354e15a,ups,2021-02-13T21:53:19Z,2021-02-17T21:53:19Z,delivered,20e2eaa5-e8b9-4675-bc3b-11c048b060d9,,0314fc1b-d832-4562-bda4-7dbe09d2868c +727e8c88-6cf8-497a-ae3c-3a781c5b70c3,2021-02-10T10:16:11Z,280.0,8.12,288.12,77b56eab-02b8-46ae-ae88-986149b26f02,usps,2021-02-13T10:16:11Z,2021-02-15T10:16:11Z,delivered,b49e6c79-09ad-41b2-9ed6-44570f83a3f8,,dfe1082c-cb08-497f-9af9-9a7cf0aa70b5 +b8674a2e-e825-4cde-8885-959b55d86c1a,2021-02-10T09:39:44Z,322.0,4.98,326.98,97a82682-a2ba-42ec-8ece-241adce6331d,ups,2021-02-15T09:39:44Z,2021-02-12T09:39:44Z,delivered,78fe6452-8a56-4226-ae22-f372116b12ff,,8a46a3e5-4428-4744-855c-19d435fcf7af +3944bd76-a630-4f50-9f41-b4e985b520ca,2021-02-10T03:44:13Z,135.25,9.3,144.55,69be42e0-8eb9-4c92-9358-a65d25c85f72,fedex,2021-02-12T03:44:13Z,2021-02-16T03:44:13Z,delivered,b60b4bf2-44e4-4232-902b-79a50d448f8b,,5b760361-9ef1-49bd-a672-9acc2431d384 +667f2f4e-4262-425d-bf66-9b600af692a6,2021-02-10T11:04:14Z,81.45,5.46,86.91,3a9f5e6d-598d-4932-bd00-f1d4eb482df7,ups,2021-02-15T11:04:14Z,2021-02-11T11:04:14Z,delivered,f47ac0f5-2afa-4e71-8328-bd881947159b,,27b514cc-7ff4-4451-b1ba-27bb2f5011c8 +12a416f6-08d4-4db5-953e-d683ca9081f6,2021-02-10T20:23:20Z,226.25,1.63,216.88,58d39872-599c-4b1e-8cd3-baac98958b67,usps,,2021-02-11T20:23:20Z,delivered,7f89df2d-6f1e-4f67-83a1-40d2b8ec56b0,Digitized,a96cbe83-ad12-4457-af40-1b5b5f373937 +09431ff6-b550-4301-8d46-fde372e87af9,2021-02-10T00:01:02Z,383.75,8.14,391.89,afd17de9-1c7f-4233-8ead-ef97750526dc,fedex,2021-02-11T00:01:02Z,2021-02-14T00:01:02Z,delivered,5a9d6641-6ca6-48f0-af45-f411750f611a,,582148c7-44d6-4247-83ab-cd65557569b5 +ec9be902-7557-431c-824d-5c157c191697,2021-02-10T07:04:30Z,708.5,4.55,713.05,4d7ba4d1-ba37-4b02-989a-ddd83833f15f,ups,,2021-02-11T07:04:30Z,delivered,489039b3-4092-4ed0-9065-b87573c26f21,,4983fb6f-b53f-4022-95ca-d17eb4974093 +c23de9da-73a2-437f-a2c2-bd257bc692c3,2021-02-10T20:54:20Z,162.95,9.84,172.79,ab97ca64-d046-43bd-a2ee-233530f5dabc,usps,2021-02-13T20:54:20Z,2021-02-12T20:54:20Z,delivered,7193aa74-ca9f-4769-b290-a817bd2e4266,,b3db1ec9-17b7-4b15-8f04-b2077048f428 +b9523b83-4b6f-41d3-8681-b946313ac6c3,2021-02-10T18:05:26Z,227.95,6.59,234.54,79849414-2459-4de0-8702-48e961562938,fedex,2021-02-15T18:05:26Z,2021-02-13T18:05:26Z,delivered,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,f2dfb1e6-43bf-49ac-8d17-e1498079e08b +fd47d88b-69d6-403b-bf53-b108819098f0,2021-02-10T00:57:30Z,485.65,1.01,466.66,84f19be3-581c-4f35-b1a7-27299103389a,usps,2021-02-12T00:57:30Z,2021-02-15T00:57:30Z,delivered,02414bff-285d-4008-9352-ad50839b729f,Mandatory,a96cbe83-ad12-4457-af40-1b5b5f373937 +8f024856-4bf8-4117-81ac-d61f62c91158,2021-02-10T20:13:51Z,206.25,1.1,207.35,a1e01da9-d348-459e-a9cc-54e56324c3b9,usps,2021-02-11T20:13:51Z,2021-02-13T20:13:51Z,delivered,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,d502f2e1-d34c-4b82-9834-15e50ab41a1b +032b02a8-84fe-4c54-950a-e5757021ecc2,2021-02-10T06:01:02Z,30.5,3.65,34.15,88ba004e-c17e-4587-bf3e-c76fe71731d7,usps,2021-02-12T06:01:02Z,2021-02-17T06:01:02Z,delivered,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,bfee6b0f-d8ea-4626-9786-a0e1497bd07b +9eb8e518-6851-453b-98b9-cd5c38f4f80f,2021-02-10T09:47:26Z,283.0,7.98,290.98,766c0030-6a03-41c3-911b-6a35370ad582,ups,2021-02-12T09:47:26Z,2021-02-13T09:47:26Z,delivered,93908a68-20b7-44ba-b6c1-6f4cc57d7726,,d6e4e3d2-9e7c-454a-bae6-2339d80d23fd +b3773cdd-b925-4eda-906c-57fa5d0e5a55,2021-02-10T21:54:18Z,143.0,3.39,146.39,16f18722-4d60-4098-80e1-90a9c4d628f2,ups,2021-02-11T21:54:18Z,2021-02-11T21:54:18Z,delivered,30a46555-66f8-4dd3-946f-dacc9bd6d0c2,,cdac5d06-ad99-49f6-abb0-df87017dccfd +f9d41e2a-81fa-400d-930f-a960c3135db9,2021-02-10T12:14:46Z,262.5,4.51,267.01,e0a6e97c-a33f-4c6b-a213-fba6262c430d,usps,2021-02-12T12:14:46Z,2021-02-14T12:14:46Z,delivered,2d90a679-c85d-4299-86dd-2319424fcc15,,dd1048ba-46a5-4d80-a7e1-b1592c161a4c +93a40bfd-c161-47be-8659-714ca706b514,2021-02-10T00:57:16Z,161.5,7.1,168.6,9eb2148a-12f7-4da9-adbb-009186cf2093,ups,2021-02-15T00:57:16Z,2021-02-12T00:57:16Z,delivered,f9178203-61c0-4597-9070-6dc453ada601,,d2fbe240-64ac-4feb-a360-8a9197f8b8ae +92d3887f-6f9e-4e3f-85a8-3da52d46cd45,2021-02-10T23:11:17Z,453.0,7.05,460.05,d81e299e-1d9f-4779-8987-2feb5b55bbae,fedex,2021-02-13T23:11:17Z,2021-02-16T23:11:17Z,delivered,7f7ce164-75dd-4d50-ad3f-e4d8846f3d60,,71c60b11-0457-40c4-91ca-b86e0631f1eb +5e75b8f4-e03e-462f-8a91-027bfaf3e8b4,2021-02-10T04:24:05Z,152.25,4.74,156.99,846b988b-b09f-471d-8ef0-dd922fad5d1f,ups,2021-02-15T04:24:05Z,,shipped,1690815f-a96f-4f41-af89-bde6e90ad560,,fc458964-6e05-46e7-8717-c8c7798e78aa +5a00119e-674a-4f04-8b87-d8d48129a771,2021-02-10T06:10:12Z,80.75,7.84,75.59,7a32b358-55b6-42a3-bb32-21b838d1e5f7,ups,2021-02-15T06:10:12Z,2021-02-14T06:10:12Z,delivered,467a047e-c8df-4304-8fc9-949acd7bcf4a,instruction set,89f9c593-3ac8-4f50-ab01-01b4a2e27eaa +cc5d3269-258b-4661-b83e-6aaba676fb46,2021-02-10T12:32:10Z,50.0,2.0,52.0,fa6cc08e-1993-4f08-b06b-b6a2df7b9a8c,fedex,2021-02-13T12:32:10Z,2021-02-17T12:32:10Z,delivered,8d8916e6-9820-49aa-bde8-8657dcfa7395,,11f9f0ec-0cd6-4944-9dff-b577da0cc535 +19644506-d739-4f1b-baf7-3ecc8833c329,2021-02-10T07:59:44Z,40.0,6.28,46.28,be3cf326-410a-402c-8e40-f672f59170e3,ups,2021-02-13T07:59:44Z,2021-02-12T07:59:44Z,delivered,e879df28-ff9c-4900-b99c-c769ec349316,,68a5c312-2205-45ec-ace1-166ff3f4b572 +87a0f788-bba9-40b9-8c39-7df9d4dece24,2021-02-10T06:39:04Z,126.0,4.75,130.75,a2cf018e-2829-4e95-984c-5610caf39bc4,ups,2021-02-11T06:39:04Z,,shipped,c4f8645d-471d-4c3b-aa5c-dd2f30115669,,d7f05c8c-d055-481f-a427-77aded0fd4ce +59c79883-a968-49af-833b-7305f181c669,2021-02-10T17:20:42Z,390.95,2.05,393.0,ee87ce66-155d-46bf-9a7a-383b25b9949c,usps,2021-02-13T17:20:42Z,2021-02-15T17:20:42Z,delivered,366bd18f-6a16-4f39-9177-080c11ce9f25,,8b7e7226-a1e0-4fbf-a0a9-60c38d3e3347 +b3cb4101-b1c4-40d0-89e6-a029f1dcce5b,2021-02-10T12:42:31Z,205.0,7.4,212.4,3d4cad71-8403-4e9b-b205-10e30dcac8e4,ups,2021-02-11T12:42:31Z,2021-02-13T12:42:31Z,delivered,9208a361-ea2f-4f75-a2b4-281b55df08a9,,bffd2205-2234-4d52-8ec6-60ca76d18cf0 +50c99578-5773-4467-ab2b-3105a8f51645,2021-02-10T13:52:38Z,130.75,1.85,132.6,7e635f3c-292b-42bd-8e90-34b97f4295b3,fedex,2021-02-14T13:52:38Z,2021-02-15T13:52:38Z,delivered,19ac513f-b77e-4808-ade4-284ece721d91,,df4fbdd5-d7f9-4711-b1b6-2517808df91a +6056966f-4515-4b6c-b1a6-7f55ca774b78,2021-02-10T20:19:54Z,302.0,8.56,310.56,552d3868-65e0-4beb-91ab-a2503c89281b,ups,2021-02-11T20:19:54Z,2021-02-16T20:19:54Z,delivered,2a6f290c-40f8-4705-89d9-e8aeb6a4fa7b,,d0042646-63e0-434e-874c-aec1d434f2df +3e28eae3-bfb3-4f56-aeea-5a8d8fd399d2,2021-02-10T18:54:48Z,203.0,7.9,210.9,e0f1f726-9450-4f34-9edc-bc897a364b8e,ups,2021-02-15T18:54:48Z,2021-02-11T18:54:48Z,delivered,bbe518c7-5ea8-444e-acef-6c18be8336bc,,edd6e563-bce1-4c84-859d-31cae681f40b +b0d93ef1-d63c-4f47-b3d6-8c20ff25e4e2,2021-02-10T16:45:26Z,235.85,9.54,245.39,a309e1c1-14be-455f-8e3f-e31b4dea1423,fedex,2021-02-11T16:45:26Z,2021-02-15T16:45:26Z,delivered,6cbe0665-0001-43b3-98af-7cd3909b1b28,,dfe1082c-cb08-497f-9af9-9a7cf0aa70b5 +b3bbc1b2-11bf-4a7f-8424-8c6fb14d753b,2021-02-10T15:38:36Z,158.0,5.52,163.52,1ba54bba-7dbf-4ec7-a2f4-8c6c5cb06f0c,fedex,2021-02-13T15:38:36Z,2021-02-12T15:38:36Z,delivered,63b87683-1c30-49e0-86f0-54d00b32052f,,9285957a-e1fd-4205-960e-f739a9c7dfd2 +d29fbe48-4cb7-46ef-b3ea-67a28a0cd8c0,2021-02-10T17:51:26Z,80.5,5.86,86.36,fd855a19-52b8-4530-82b5-f4b88b932578,usps,2021-02-12T17:51:26Z,2021-02-16T17:51:26Z,delivered,707a74bd-593f-4bdc-85e3-b8ff6b538399,,632eadda-3e81-492c-8108-d5982aeac84d +c49ed1e6-c56b-4681-bef8-cf8d99404832,2021-02-10T09:10:28Z,201.95,5.55,207.5,53aec537-6a8e-4a84-9db4-ec332895ebdf,dhl,2021-02-13T09:10:28Z,2021-02-11T09:10:28Z,delivered,6cf2751f-d815-4fbc-b04a-245c1301574c,,e71bd22e-7711-405f-9d7e-2a7824d68a6a +3895ef3d-4e4f-4793-ba7f-66743b7a7d39,2021-02-10T09:24:56Z,106.0,3.97,109.97,e2a68f30-dcff-4b1a-8218-e114187709fc,ups,2021-02-14T09:24:56Z,2021-02-15T09:24:56Z,delivered,7c11eccd-15a9-4b87-875e-b84f39dfe3d6,,d3dfe1e5-6826-49fe-9bfb-ef1022a20520 +551f91e6-bce3-4fb5-8dd6-782ff140480d,2021-02-10T18:05:43Z,430.75,7.67,438.42,8205a994-da3c-463a-94df-1ec8ecd7abcb,ups,2021-02-12T18:05:43Z,2021-02-12T18:05:43Z,delivered,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,76f13d82-1273-4144-8a41-45fc836c3540 +db90b250-70b2-44d1-b20c-4d795edd020c,2021-02-10T03:09:58Z,384.0,9.41,393.41,6086a515-9087-4f1b-9470-d5ba9f93a53f,ups,2021-02-15T03:09:58Z,2021-02-16T03:09:58Z,delivered,7be40e37-7a40-40ce-81c8-a5048c8befb1,,2aaf2e91-8735-4def-82ca-31dce98ff634 +99127f5a-b3a4-440e-87c1-c78861ac2ca8,2021-02-10T15:03:34Z,51.25,1.03,52.28,33b8f750-e3ad-40eb-b3a3-38563df17a4f,fedex,2021-02-12T15:03:34Z,2021-02-17T15:03:34Z,delivered,e09e27fe-72e3-4359-809e-43acf4976f55,,f79a5736-1e58-436a-aca9-bc4cf21fef09 +859841a2-a2fa-4d7b-a749-8cd37b31b1ed,2021-02-10T15:21:51Z,588.25,2.12,590.37,d789a22d-6296-4ba5-a9f6-38a3a843c2fb,usps,2021-02-13T15:21:51Z,,shipped,2f0a3789-41ac-4732-bf29-b3ea5f4ed831,,56078786-b8da-47a0-8a7c-befda74f8cd8 +8502b2de-ada6-4a20-8625-092835744bd8,2021-02-10T22:16:00Z,201.0,3.83,204.83,df722c16-8370-484f-a0ff-a8f809275d65,ups,2021-02-13T22:16:00Z,2021-02-16T22:16:00Z,delivered,5faf7aa9-ca1a-44b6-bc00-5954bc39cc91,,be19b416-2a93-4ad7-8fdd-f0ae8f4eec2a +56d043f8-afaf-4a6e-a4d3-8fbd01d8858b,2021-02-10T16:17:24Z,223.25,4.07,227.32,94a358dc-e33c-4fbd-8b73-9b0dbd5c20cc,ups,2021-02-13T16:17:24Z,2021-02-11T16:17:24Z,delivered,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,609af927-16f8-450a-ade4-1e06724e9feb +73bfa842-99f9-4181-883f-08b7795cb167,2021-02-10T13:59:30Z,333.75,5.6,339.35,0139102a-ff94-489c-ad4b-5ca09a8e8041,usps,2021-02-14T13:59:30Z,2021-02-11T13:59:30Z,delivered,9cfa05e2-606b-4080-8bac-96e3986f1704,,0314fc1b-d832-4562-bda4-7dbe09d2868c +4aca1a9f-2fdc-49ce-8055-f178ffaff195,2021-02-10T15:44:40Z,494.0,7.48,491.48,bef01686-1cc6-44f9-8603-d5c993481034,ups,2021-02-13T15:44:40Z,2021-02-13T15:44:40Z,delivered,29246f52-de26-4867-b464-7c5973526202,leverage,4747877b-fb7d-4ec1-b42d-6b8f8707c984 +96a0cf17-5d93-4476-b836-ec6c8c7a9b21,2021-02-10T07:08:52Z,71.0,2.09,73.09,1533c886-30bb-4114-acfb-42d3f0fa5795,ups,2021-02-12T07:08:52Z,2021-02-15T07:08:52Z,delivered,96aa719e-c5a3-4645-ba89-16c304fb59b0,,4983fb6f-b53f-4022-95ca-d17eb4974093 +906ac891-d7a7-4d50-b4c6-c982fae2fc2d,2021-02-10T19:19:18Z,780.25,7.91,788.16,f6384293-fa2d-4599-bbfd-43639ab9043f,ups,2021-02-13T19:19:18Z,2021-02-11T19:19:18Z,delivered,d165b2ff-dfe1-40d0-bda0-a25e82b95870,,abf50534-9e5b-4e95-9548-2008505f40a2 +d38de9c0-789c-4527-99ff-30a23f550d88,2021-02-10T07:35:24Z,61.5,8.34,69.84,3dd70994-1c45-4b62-97ac-b5cc7c25060b,fedex,2021-02-13T07:35:24Z,2021-02-13T07:35:24Z,delivered,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,47e8e06d-0612-4af0-89ed-48deafa4857a +b047e850-a4f1-4227-94b6-2222d2ff87c2,2021-02-10T08:03:59Z,156.5,4.48,160.98,a93da04c-10f2-4928-8aff-5d3344b3733f,fedex,2021-02-11T08:03:59Z,2021-02-11T08:03:59Z,delivered,6aff561d-fbd9-4130-8242-8b9073cc3a03,,058563af-f1de-48fe-a5ad-4514fe8964f4 +002f22d6-25a3-48e4-aaa9-36be31e57185,2021-02-10T14:15:40Z,75.5,9.58,85.08,0a40d2fd-12bc-4a3a-94b0-50fd69bda883,ups,2021-02-11T14:15:40Z,2021-02-12T14:15:40Z,delivered,48ebf150-7cb7-4358-a5ef-1a2b0aa831b9,,184b47dd-af07-4299-b872-5cfb6e4e7ac1 +2434b44d-0df9-4d54-99ad-e259cbf9efa6,2021-02-10T16:20:17Z,537.0,1.41,538.41,af75d945-6234-44cf-9a9e-9f480da55824,ups,2021-02-12T16:20:17Z,2021-02-16T16:20:17Z,delivered,e09e27fe-72e3-4359-809e-43acf4976f55,,b5d85492-b403-4f52-a42b-4363716f4cfb +0ecabdf2-fe92-4d66-ad87-6e693748d682,2021-02-10T09:07:54Z,234.25,1.81,236.06,398eebcf-a343-4350-a1af-ddc42c2a647b,ups,2021-02-13T09:07:54Z,2021-02-13T09:07:54Z,delivered,5555f2b6-d408-419f-aa60-22c0f0440f50,,23f4d3fc-7192-44eb-a1c6-c3d93eed0a42 +b6d916e6-da31-4145-9edd-8fc76677b55b,2021-02-10T06:43:23Z,612.25,6.35,618.6,af811f7c-4029-464d-a696-bc377d5e7286,ups,2021-02-12T06:43:23Z,2021-02-11T06:43:23Z,delivered,bbe51ac6-6687-4cbe-9178-27d96f90836b,,d7f05c8c-d055-481f-a427-77aded0fd4ce +d7454480-4fa0-416d-b904-aebdbcdd378c,2021-02-10T01:36:56Z,190.0,3.73,193.73,2c654818-2466-438a-9719-2f6559eb621b,fedex,2021-02-15T01:36:56Z,,shipped,6875a4d9-cdc6-43bc-a700-f6916e049e46,,47e8e06d-0612-4af0-89ed-48deafa4857a +ea907a0e-c27d-4d44-878c-1d2a9e54b740,2021-02-10T21:23:33Z,332.0,9.05,341.05,57787487-9be9-4057-865a-9d993d814b6e,ups,2021-02-12T21:23:33Z,2021-02-14T21:23:33Z,delivered,baaf00b6-da56-44af-8c70-97269472e6f3,,44f03e5e-c121-44dd-80e2-b2d18860d57a +f4b472f8-f344-4abe-a7dd-5b3cc983301b,2021-02-10T14:20:50Z,127.5,3.02,130.52,f3d31752-1fba-4e52-af8d-47732313d42a,ups,2021-02-12T14:20:50Z,2021-02-11T14:20:50Z,delivered,4fe02f4f-f3d6-4068-853d-158cc64f0c65,,177f1c47-e34a-4c5d-b704-330376ba6ae2 +eddb6163-e96d-4f8f-98c6-76393a96dbbf,2021-02-10T18:20:16Z,150.0,1.86,151.86,fd30e0dc-11f6-484d-80cd-d0aa1c1ea643,fedex,2021-02-15T18:20:16Z,2021-02-14T18:20:16Z,delivered,525d85ad-6277-4500-9701-9afbf9785ad3,,44f03e5e-c121-44dd-80e2-b2d18860d57a +d9cc0f2f-0be3-4cfc-bec0-fd97eb7977d6,2021-02-10T06:48:23Z,146.0,3.21,149.21,990eec7b-a47d-4d34-8157-fa4531453365,ups,2021-02-14T06:48:23Z,,shipped,707a74bd-593f-4bdc-85e3-b8ff6b538399,,f785f0ae-f5d7-49a8-a4b7-95b470f7cb63 +a96878e4-9618-4f85-8fe0-6e2e938e0b24,2021-02-10T21:34:09Z,31.0,8.27,39.27,fb62fcd6-68a8-4e9c-8b01-2f356916717d,dhl,2021-02-12T21:34:09Z,2021-02-15T21:34:09Z,delivered,e3302139-c0ba-4715-9c35-68dde8347b56,,de7f84bd-9386-41a6-8dd0-cbafd5b58945 +3321aeb4-f209-48bf-ba63-84f3a14eaa50,2021-02-10T11:37:28Z,61.0,1.86,62.86,b2e4742d-d125-49dc-a189-e4cedc843510,ups,2021-02-14T11:37:28Z,2021-02-12T11:37:28Z,delivered,7091fe90-07da-424c-8da6-24e024503be2,,fe794a2d-aa57-4ef1-8948-e0491e1ca3c1 +180dc7bb-b42a-4aa6-b52a-9fe5864e3190,2021-02-10T01:48:20Z,50.0,8.59,58.59,62862913-88fd-4f4a-9441-92d7a743f55e,ups,2021-02-12T01:48:20Z,2021-02-16T01:48:20Z,delivered,b9287f6c-c865-49bb-a3c9-da47bbdf3a90,,5a6a5b60-d54a-4ef7-9ae3-6bd9fd21a807 +fed6ed02-4791-48e0-8cc4-c127dceca8ca,2021-02-10T10:27:52Z,70.0,1.17,71.17,a78352a6-a610-4f1b-91fc-9cde37ecd05c,usps,2021-02-13T10:27:52Z,2021-02-12T10:27:52Z,delivered,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,c9a6e260-e379-4b26-a36d-cf97e0eb03bc +32726aa6-2175-4fc7-856b-512f61c70dc1,2021-02-10T22:42:40Z,181.0,3.07,184.07,97a0d995-0583-415e-920c-063420947ace,ups,2021-02-14T22:42:40Z,2021-02-11T22:42:40Z,delivered,02414bff-285d-4008-9352-ad50839b729f,,7986bf80-2ce5-4fac-8e06-fc6db16dd2d9 +a5db4fd7-bc7c-47d6-a162-e613d905ec82,2021-02-10T06:30:48Z,317.0,2.18,319.18,4e335a59-b273-4a2d-987c-06f7ff2ceaef,fedex,2021-02-14T06:30:48Z,2021-02-16T06:30:48Z,delivered,520baa4f-ee70-420b-96c9-37e3c4238f43,,5a6a5b60-d54a-4ef7-9ae3-6bd9fd21a807 +eb27dbeb-ffe0-439c-a9cd-f32c221330d9,2021-02-10T02:06:38Z,190.0,6.87,196.87,5c176ce7-b1b6-4ab7-87dc-c878a321f5a4,fedex,2021-02-14T02:06:38Z,2021-02-14T02:06:38Z,delivered,4d3c9f53-0667-4a80-8259-12200fe75761,,dfc2941f-aef1-4c70-a7f6-8105dda578f5 +290e43d7-2768-47e8-9037-94d08ddc4345,2021-02-10T00:07:42Z,287.5,4.13,291.63,c91f2f0f-ed46-48f2-b61b-2ee460fe7548,fedex,2021-02-12T00:07:42Z,2021-02-12T00:07:42Z,delivered,5a9d6641-6ca6-48f0-af45-f411750f611a,,118d2c47-6c92-44b3-a52a-c58dac57adf2 +d99f88df-891d-4dc9-8750-aa77271a72d4,2021-02-10T09:45:53Z,136.5,2.51,139.01,87577f45-3fe7-4b08-872b-32d6afcc4bc9,usps,2021-02-12T09:45:53Z,2021-02-12T09:45:53Z,delivered,6cbe0665-0001-43b3-98af-7cd3909b1b28,,edd6e563-bce1-4c84-859d-31cae681f40b +f9cdbb13-c633-4867-bcb0-284d9a583781,2021-02-10T00:45:44Z,210.95,6.38,217.33,,,,,preparing,e512189a-15a2-4325-b41d-6092f5c03bc9,,959fc946-4baf-457f-8290-2a7d0e7fc3f7 +1fa7bc74-ee64-4aa8-8df3-f8066532eb9c,2021-02-10T20:32:32Z,162.15,8.24,170.39,c6175b1d-4272-44b3-8593-af0b6a9ec418,ups,2021-02-15T20:32:32Z,2021-02-15T20:32:32Z,delivered,5de439eb-6bc7-4fc2-ba0e-a3bf8a286d63,,c9a6e260-e379-4b26-a36d-cf97e0eb03bc +937b130d-c75f-47c6-913f-ca7717e82dae,2021-02-10T00:00:05Z,145.0,3.67,148.67,bac4ac7d-6f22-44f5-a0ec-417135ffcee4,ups,2021-02-14T00:00:05Z,2021-02-11T00:00:05Z,delivered,6b116938-3785-4983-a5d7-33f6af32f0ba,,4da64e4e-655c-4fbe-bee2-3eb1014ace1b +2fafb5c6-5200-4d9a-af6b-b6517667a1ea,2021-02-10T22:09:43Z,364.45,5.35,369.8,cabaf4a8-06a5-431f-be95-a57b28700ad7,fedex,2021-02-11T22:09:43Z,2021-02-13T22:09:43Z,delivered,60bc96e0-dcf5-438d-8e11-7ab3f6ac6e96,,9b6a4ed6-6c27-4102-8d5f-5db7435e80ee +9f640f78-93eb-46d3-b4c8-41ef69b03d8b,2021-02-10T20:26:15Z,91.5,5.18,96.68,29b030bf-bca6-4ece-a0f7-23e1a88a1a79,fedex,2021-02-11T20:26:15Z,2021-02-16T20:26:15Z,delivered,96ca8e55-2cbd-4c9b-9540-ff0ac6309797,,1d3482c6-e56b-47df-91f8-4b32bc908b2b +1e68f64e-1365-489e-8cf4-b56f8cf13fd7,2021-02-10T00:39:31Z,182.0,6.76,188.76,cbae44b9-ceec-4a58-af34-fabe17cd4582,fedex,2021-02-12T00:39:31Z,,shipped,4dae48a6-8206-46eb-b629-fec4a99306ec,,7ae529bf-b9d0-47ee-acd0-d55e0e6a0d32 +cc2d40a9-dc85-481f-b027-9d1198187b70,2021-02-10T21:55:47Z,135.0,9.23,144.23,9f7b9afe-ef0b-4f52-9443-0378bfb71279,ups,2021-02-12T21:55:47Z,2021-02-11T21:55:47Z,delivered,f37282a8-5c04-44bb-a9e6-fe9ed2eed6e2,,aa61ded6-4588-48dd-9759-1bd36ec5d787 +2ebd594f-3b44-4b66-87f0-5b2c321086d1,2021-02-10T16:16:55Z,312.25,9.58,321.83,2bd82041-5932-40db-98ac-c1611d77790a,fedex,2021-02-14T16:16:55Z,2021-02-15T16:16:55Z,delivered,4d3c9f53-0667-4a80-8259-12200fe75761,,902bcb47-051b-4375-9dc0-485b3172b89b +d9ec4e76-e7c0-4457-b6e2-a025abea6b9a,2021-02-10T03:40:03Z,192.45,7.14,199.59,f55ea701-bc8e-4ae4-a3e0-e4eef060d388,usps,2021-02-12T03:40:03Z,,shipped,6d37adeb-4c53-4167-b170-c89e4bd1764a,,06dd400a-9d9e-48f3-9312-5a41f6038c8e +299145f7-2b7f-484d-9dde-cc20602ed5f5,2021-02-10T10:13:30Z,15.5,3.02,18.52,03dbc7cf-6da7-4dfd-8ee9-e3cefdc731ca,usps,2021-02-11T10:13:30Z,2021-02-12T10:13:30Z,delivered,6cf2751f-d815-4fbc-b04a-245c1301574c,,82ef2b98-79dc-461c-855b-95c5d38ad6d3 +35b4cbc7-b92f-400f-b292-8494dbb23567,2021-02-10T03:05:25Z,219.4,9.73,229.13,14a41310-80f4-4138-82cf-cbb219baf751,fedex,2021-02-12T03:05:25Z,2021-02-12T03:05:25Z,delivered,dbc936d7-51da-4dfa-9dd9-7ce399b466df,,63260a1e-947f-42fe-b11f-12cea08830b6 +0f3fb208-95e1-4d3b-8f09-ae6088d41938,2021-02-10T19:06:10Z,60.0,9.29,69.29,f877d9f7-f9c2-42a8-86ab-24c948bf46f9,fedex,2021-02-14T19:06:10Z,2021-02-15T19:06:10Z,delivered,366bd18f-6a16-4f39-9177-080c11ce9f25,,be95b20d-a774-4572-b1ff-fd2c2c657568 +fca7f7c7-e7cb-4207-b3c3-dcca5f4b633b,2021-02-10T17:16:44Z,121.9,3.15,125.05,79f5daf0-9d4a-4b2e-9006-57b21496dabf,ups,2021-02-11T17:16:44Z,2021-02-14T17:16:44Z,delivered,78fe6452-8a56-4226-ae22-f372116b12ff,,de7f84bd-9386-41a6-8dd0-cbafd5b58945 +373c221e-275c-41aa-a334-0b2d73171fa4,2021-02-10T11:53:44Z,285.0,1.72,286.72,1df22555-5e95-4d68-b917-0667a2737f26,ups,2021-02-13T11:53:44Z,2021-02-14T11:53:44Z,delivered,5eb03e58-d3d1-47f9-87bc-b0184556c02d,,d3dfe1e5-6826-49fe-9bfb-ef1022a20520 +939767ac-357a-4bec-91f8-a7b25edd46c9,2021-02-10T07:25:48Z,243.8,8.55,252.35,,,,,preparing,6cf2751f-d815-4fbc-b04a-245c1301574c,,965dbeea-a6d5-467d-9683-914b744ad1ef +12d71a1a-3762-4e17-a508-6e11b5629852,2021-02-10T20:31:00Z,46.5,6.77,53.27,c02b8944-9875-4ef1-b866-79e706fb4c46,fedex,,2021-02-17T20:31:00Z,delivered,89dd1d56-f177-4b28-86c8-b7d1beeff4a8,,2c7bd191-c7c9-45d3-9dd0-612320bd9817 +b249a133-9d0d-4897-9ee3-0226e76914dc,2021-02-10T11:49:22Z,268.0,9.39,277.39,adbf8cea-bddb-4d2c-aefe-bce9dc247cd1,ups,2021-02-14T11:49:22Z,2021-02-15T11:49:22Z,delivered,1df78ad9-9493-4ce9-b1ad-776f26650417,,47e8e06d-0612-4af0-89ed-48deafa4857a +f0f5f852-5c81-4f33-a415-15b660486918,2021-02-10T11:12:15Z,146.5,7.71,154.21,631e1967-164a-4a7b-995a-32d0a110dc48,dhl,2021-02-11T11:12:15Z,2021-02-15T11:12:15Z,delivered,1550e197-9073-408e-a1ca-08f9dbac7f7a,,d502f2e1-d34c-4b82-9834-15e50ab41a1b +f6eed630-9b01-4f64-81eb-f13be001f2b6,2021-02-10T08:42:08Z,624.85,4.9,629.75,f5437725-c379-4e9b-80f0-ee48e62463c6,fedex,2021-02-13T08:42:08Z,2021-02-17T08:42:08Z,delivered,68e0c8f7-9546-42ed-b327-f67debec10cf,,56078786-b8da-47a0-8a7c-befda74f8cd8 +7023672d-7f59-4b86-be86-4d4621ad06ae,2021-02-10T07:06:45Z,354.75,6.65,361.4,10384bef-cbb7-43db-9f4f-0e8f2a040e7f,fedex,2021-02-12T07:06:45Z,,shipped,4d3c9f53-0667-4a80-8259-12200fe75761,,34ddaf50-006e-47e6-b387-49d1544dd512 +40dceee3-31ce-450b-b55d-09099de1a8fb,2021-02-10T10:30:07Z,182.75,4.78,174.53,22accd82-50eb-4be0-ad64-afd85aca0d4f,fedex,2021-02-15T10:30:07Z,2021-02-11T10:30:07Z,delivered,f47ac0f5-2afa-4e71-8328-bd881947159b,instruction set,fb0c8410-558a-4a65-bc50-6f82c32c7d1a +71d7653c-9386-42df-afef-6d9d44bb53c4,2021-02-10T22:10:21Z,61.0,6.6,67.6,6494ab5e-a765-4027-9377-97be68a71df1,ups,2021-02-14T22:10:21Z,2021-02-11T22:10:21Z,delivered,520baa4f-ee70-420b-96c9-37e3c4238f43,,47e8e06d-0612-4af0-89ed-48deafa4857a +84aac39f-68ae-4e5f-a2c7-b5ad0b820a09,2021-02-10T23:45:32Z,20.5,2.63,23.13,ff475d51-6ea0-487c-bfe8-56e47c4f3057,ups,2021-02-14T23:45:32Z,2021-02-12T23:45:32Z,delivered,4115e7da-5892-4eef-9f39-705626158c7f,,89f9c593-3ac8-4f50-ab01-01b4a2e27eaa +5b8caca4-14fb-4813-b0bc-b768c8217a19,2021-02-10T22:44:36Z,349.0,8.1,344.1,237dca84-0088-4eea-b40e-ab509ff31c11,ups,2021-02-14T22:44:36Z,2021-02-14T22:44:36Z,delivered,eafe1c71-6ae0-4add-b9d9-34d9c5d00c50,instruction set,aa61ded6-4588-48dd-9759-1bd36ec5d787 +5c309f46-440b-4cd5-a908-862c72e008b2,2021-02-10T10:15:26Z,15.25,2.22,17.47,d445e749-4c38-4ec7-a148-7995525afc59,ups,2021-02-15T10:15:26Z,2021-02-13T10:15:26Z,delivered,e09e27fe-72e3-4359-809e-43acf4976f55,,db3e2e70-32f5-4f13-8302-63127ca0e3a8 +44f19d9b-6f8d-4c04-8c1e-ee05a171a48a,2021-02-10T20:05:05Z,554.5,8.79,553.29,7d4ea18c-a7cc-446c-bce9-ac92206b1ed6,usps,2021-02-12T20:05:05Z,2021-02-15T20:05:05Z,delivered,6d37adeb-4c53-4167-b170-c89e4bd1764a,leverage,9285957a-e1fd-4205-960e-f739a9c7dfd2 diff --git a/00-bootcamp-project/data/products.csv b/00-bootcamp-project/data/products.csv new file mode 100644 index 000000000..414904e7b --- /dev/null +++ b/00-bootcamp-project/data/products.csv @@ -0,0 +1,31 @@ +product_id,name,price,inventory +4cda01b9-62e2-46c5-830f-b7f262a58fb1,Pothos,30.5,40 +689fb64e-a4a2-45c5-b9f2-480c2155624d,Bamboo,15.25,56 +55c6a062-5f4a-4a8b-a8e5-05ea5e6715a3,Philodendron,45.0,51 +be49171b-9f72-4fc9-bf7a-9a52e259836b,Monstera,50.75,77 +fb0e8be7-5ac4-4a76-a1fa-2cc4bf0b2d80,String of pearls,80.5,58 +b66a7143-c18a-43bb-b5dc-06bb5d1d3160,ZZ Plant,25.0,89 +e8b6528e-a830-4d03-a027-473b411c7f02,Snake Plant,25.5,48 +c7050c3b-a898-424d-8d98-ab0aaad7bef4,Orchid,50.75,58 +bb19d194-e1bd-4358-819e-cd1f1b401c0c,Birds Nest Fern,15.5,49 +b86ae24b-6f59-47e8-8adc-b17d88cbd367,Calathea Makoyana,40.25,94 +e5ee99b6-519f-4218-8b41-62f48f59f700,Peace Lily,60.5,99 +05df0866-1a66-41d8-9ed7-e2bbcddd6a3d,Bird of Paradise,65.0,97 +e706ab70-b396-4d30-a6b2-a1ccf3625b52,Fiddle Leaf Fig,85.5,82 +843b6553-dc6a-4fc4-bceb-02cd39af0168,Ficus,20.25,44 +5b50b820-1d0a-4231-9422-75e7f6b0cecf,Pilea Peperomioides,20.5,85 +58b575f2-2192-4a53-9d21-df9a0c14fc25,Angel Wings Begonia,95.0,65 +a88a23ef-679c-4743-b151-dc7722040d8c,Jade Plant,15.0,94 +74aeb414-e3dd-4e8a-beef-0fa45225214d,Arrow Head,30.95,100 +5ceddd13-cf00-481f-9285-8340ab95d06d,Majesty Palm,70.0,74 +64d39754-03e4-4fa0-b1ea-5f4293315f67,Spider Plant,15.0,67 +d3e228db-8ca5-42ad-bb0a-2148e876cc59,Money Tree,30.5,59 +c17e63f7-0d28-4a95-8248-b01ea354840e,Cactus,15.0,81 +35550082-a52d-4301-8f06-05b30f6f3616,Devil's Ivy,15.25,88 +6f3a3072-a24d-4d11-9cef-25b0b5f8a4af,Alocasia Polly,95.0,83 +80eda933-749d-4fc6-91d5-613d29eb126f,Pink Anthurium,60.95,95 +37e0062f-bd15-4c3e-b272-558a86d90598,Dragon Tree,50.25,73 +615695d3-8ffd-4850-bcf7-944cf6d3685b,Aloe Vera,15.0,47 +579f4cd0-1f45-49d2-af55-9ab2b72c3b35,Rubber Plant,20.5,92 +e18f33a6-b89a-4fbc-82ad-ccba5bb261cc,Ponytail Palm,80.75,93 +e2e78dfc-f25c-4fec-a002-8e280d61a2f2,Boston Fern,20.0,77 \ No newline at end of file diff --git a/00-bootcamp-project/data/promos.csv b/00-bootcamp-project/data/promos.csv new file mode 100644 index 000000000..78e2261ba --- /dev/null +++ b/00-bootcamp-project/data/promos.csv @@ -0,0 +1,7 @@ +promo_id,discount,status +task-force,2,inactive +instruction set,13,inactive +leverage,10,active +Optional,17,inactive +Mandatory,20,inactive +Digitized,11,inactive \ No newline at end of file diff --git a/00-bootcamp-project/data/users.csv b/00-bootcamp-project/data/users.csv new file mode 100644 index 000000000..83a334934 --- /dev/null +++ b/00-bootcamp-project/data/users.csv @@ -0,0 +1,3 @@ +user_id,first_name,last_name,email,phone_number,created_at,updated_at,address +bbe51ac6-6687-4cbe-9178-27d96f90836b,Keslie,Hearmon,khearmon0@netvibes.com,831-155-1615,2020-10-23T20:21:57Z,2021-01-30T22:49:31Z,7a4821e6-4e7a-4894-bb35-70ffcf0c3aa8 +2816d806-e7b2-4721-a197-a60bd3082f35,Catie,Grelik,cgrelik1h@webeden.co.uk,695-724-4222,2020-10-23T22:33:32Z,2020-12-31T23:04:33Z,fb0c8410-558a-4a65-bc50-6f82c32c7d1a diff --git a/00-bootcamp-project/load_table_addresses.py b/00-bootcamp-project/load_table_addresses.py new file mode 100644 index 000000000..b7a98c289 --- /dev/null +++ b/00-bootcamp-project/load_table_addresses.py @@ -0,0 +1,49 @@ +# Ref: https://cloud.google.com/bigquery/docs/samples/bigquery-load-table-dataframe + +import json +import os +from datetime import datetime + +import pandas as pd +from google.cloud import bigquery +from google.oauth2 import service_account + +# read environment variable +# use export KEYFILE_PATH=deb-1-by-skooldio-36e023357883.json +# don't forget to upload file "deb-1-by-skooldio-36e023357883.json" in this path before start everything +keyfile = os.environ.get("KEYFILE_PATH") +# read from json file which make service_account_info is json form +service_account_info = json.load(open(keyfile)) +credentials = service_account.Credentials.from_service_account_info(service_account_info) +# check your project_id in GCP +project_id = "deb-1-by-skooldio" +client = bigquery.Client( + project=project_id, + credentials=credentials, +) + +# send JOB to bigquery +job_config = bigquery.LoadJobConfig( + skip_leading_rows=0, + write_disposition=bigquery.WriteDisposition.WRITE_TRUNCATE, + source_format=bigquery.SourceFormat.CSV, + autodetect=True, +# time_partitioning=bigquery.TimePartitioning( +# type_=bigquery.TimePartitioningType.DAY, +# field="created_at", +# ), +# clustering_fields=["first_name", "last_name"], +) + +file_path = "data/addresses.csv" +# tell dataframe which column should be datetime type +df = pd.read_csv(file_path) +df.info() + +table_id = f"{project_id}.deb_bootcamp.addresses" +job = client.load_table_from_dataframe(df, table_id, job_config=job_config) +job.result() + +# print for debugging +table = client.get_table(table_id) +print(f"Loaded {table.num_rows} rows and {len(table.schema)} columns to {table_id}") \ No newline at end of file diff --git a/00-bootcamp-project/load_table_events.py b/00-bootcamp-project/load_table_events.py new file mode 100644 index 000000000..074404301 --- /dev/null +++ b/00-bootcamp-project/load_table_events.py @@ -0,0 +1,47 @@ +# Ref: https://cloud.google.com/bigquery/docs/samples/bigquery-load-table-dataframe + +import json +import os +from datetime import datetime + +import pandas as pd +from google.cloud import bigquery +from google.oauth2 import service_account + +# read environment variable +# use export KEYFILE_PATH=deb-1-by-skooldio-36e023357883.json +keyfile = os.environ.get("KEYFILE_PATH") +# read from json file which make service_account_info is json form +service_account_info = json.load(open(keyfile)) +credentials = service_account.Credentials.from_service_account_info(service_account_info) +# check your project_id in GCP +project_id = "deb-1-by-skooldio" +client = bigquery.Client( + project=project_id, + credentials=credentials, +) + +# send JOB to bigquery +job_config = bigquery.LoadJobConfig( + skip_leading_rows=0, + write_disposition=bigquery.WriteDisposition.WRITE_TRUNCATE, + source_format=bigquery.SourceFormat.CSV, + autodetect=True, + time_partitioning=bigquery.TimePartitioning( + type_=bigquery.TimePartitioningType.DAY, + field="created_at", + ), + clustering_fields=["user","event_type"], +) +file_path = "data/events.csv" +# tell dataframe which column should be datetime type +df = pd.read_csv(file_path, parse_dates=["created_at"]) +df.info() + +table_id = f"{project_id}.deb_bootcamp.events" +job = client.load_table_from_dataframe(df, table_id, job_config=job_config) +job.result() + +# print for debugging +table = client.get_table(table_id) +print(f"Loaded {table.num_rows} rows and {len(table.schema)} columns to {table_id}") \ No newline at end of file diff --git a/00-bootcamp-project/load_table_order_items.py b/00-bootcamp-project/load_table_order_items.py new file mode 100644 index 000000000..df81ba808 --- /dev/null +++ b/00-bootcamp-project/load_table_order_items.py @@ -0,0 +1,48 @@ +# Ref: https://cloud.google.com/bigquery/docs/samples/bigquery-load-table-dataframe + +import json +import os +from datetime import datetime + +import pandas as pd +from google.cloud import bigquery +from google.oauth2 import service_account + +# read environment variable +# use export KEYFILE_PATH=deb-1-by-skooldio-36e023357883.json +keyfile = os.environ.get("KEYFILE_PATH") +# read from json file which make service_account_info is json form +service_account_info = json.load(open(keyfile)) +credentials = service_account.Credentials.from_service_account_info(service_account_info) +# check your project_id in GCP +project_id = "deb-1-by-skooldio" +client = bigquery.Client( + project=project_id, + credentials=credentials, +) + +# send JOB to bigquery +job_config = bigquery.LoadJobConfig( + skip_leading_rows=0, + write_disposition=bigquery.WriteDisposition.WRITE_TRUNCATE, + source_format=bigquery.SourceFormat.CSV, + autodetect=True, +# time_partitioning=bigquery.TimePartitioning( +# type_=bigquery.TimePartitioningType.DAY, +# field="created_at", +# ), +# clustering_fields=["first_name", "last_name"], +) + +file_path = "data/order_items.csv" +# tell dataframe which column should be datetime type +df = pd.read_csv(file_path) +df.info() + +table_id = f"{project_id}.deb_bootcamp.order_items" +job = client.load_table_from_dataframe(df, table_id, job_config=job_config) +job.result() + +# print for debugging +table = client.get_table(table_id) +print(f"Loaded {table.num_rows} rows and {len(table.schema)} columns to {table_id}") \ No newline at end of file diff --git a/00-bootcamp-project/load_table_orders.py b/00-bootcamp-project/load_table_orders.py new file mode 100644 index 000000000..b2ea43335 --- /dev/null +++ b/00-bootcamp-project/load_table_orders.py @@ -0,0 +1,48 @@ +# Ref: https://cloud.google.com/bigquery/docs/samples/bigquery-load-table-dataframe + +import json +import os +from datetime import datetime + +import pandas as pd +from google.cloud import bigquery +from google.oauth2 import service_account + +# read environment variable +# use export KEYFILE_PATH=deb-1-by-skooldio-36e023357883.json +keyfile = os.environ.get("KEYFILE_PATH") +# read from json file which make service_account_info is json form +service_account_info = json.load(open(keyfile)) +credentials = service_account.Credentials.from_service_account_info(service_account_info) +# check your project_id in GCP +project_id = "deb-1-by-skooldio" +client = bigquery.Client( + project=project_id, + credentials=credentials, +) + +# send JOB to bigquery +job_config = bigquery.LoadJobConfig( + skip_leading_rows=0, + write_disposition=bigquery.WriteDisposition.WRITE_TRUNCATE, + source_format=bigquery.SourceFormat.CSV, + autodetect=True, + time_partitioning=bigquery.TimePartitioning( + type_=bigquery.TimePartitioningType.DAY, + field="created_at", + ), + clustering_fields=["user","status","shipping_service"], +) + +file_path = "data/orders.csv" +# tell dataframe which column should be datetime type +df = pd.read_csv(file_path, parse_dates=["created_at", "estimated_delivery_at","delivered_at"]) +df.info() + +table_id = f"{project_id}.deb_bootcamp.orders" +job = client.load_table_from_dataframe(df, table_id, job_config=job_config) +job.result() + +# print for debugging +table = client.get_table(table_id) +print(f"Loaded {table.num_rows} rows and {len(table.schema)} columns to {table_id}") \ No newline at end of file diff --git a/00-bootcamp-project/load_table_products.py b/00-bootcamp-project/load_table_products.py new file mode 100644 index 000000000..5202a0517 --- /dev/null +++ b/00-bootcamp-project/load_table_products.py @@ -0,0 +1,48 @@ +# Ref: https://cloud.google.com/bigquery/docs/samples/bigquery-load-table-dataframe + +import json +import os +from datetime import datetime + +import pandas as pd +from google.cloud import bigquery +from google.oauth2 import service_account + +# read environment variable +# use export KEYFILE_PATH=deb-1-by-skooldio-36e023357883.json +keyfile = os.environ.get("KEYFILE_PATH") +# read from json file which make service_account_info is json form +service_account_info = json.load(open(keyfile)) +credentials = service_account.Credentials.from_service_account_info(service_account_info) +# check your project_id in GCP +project_id = "deb-1-by-skooldio" +client = bigquery.Client( + project=project_id, + credentials=credentials, +) + +# send JOB to bigquery +job_config = bigquery.LoadJobConfig( + skip_leading_rows=0, + write_disposition=bigquery.WriteDisposition.WRITE_TRUNCATE, + source_format=bigquery.SourceFormat.CSV, + autodetect=True, +# time_partitioning=bigquery.TimePartitioning( +# type_=bigquery.TimePartitioningType.DAY, +# field="created_at", +# ), +# clustering_fields=["first_name", "last_name"], +) + +file_path = "data/products.csv" +# tell dataframe which column should be datetime type +df = pd.read_csv(file_path) +df.info() + +table_id = f"{project_id}.deb_bootcamp.products" +job = client.load_table_from_dataframe(df, table_id, job_config=job_config) +job.result() + +# print for debugging +table = client.get_table(table_id) +print(f"Loaded {table.num_rows} rows and {len(table.schema)} columns to {table_id}") \ No newline at end of file diff --git a/00-bootcamp-project/load_table_promos.py b/00-bootcamp-project/load_table_promos.py new file mode 100644 index 000000000..93a4378fa --- /dev/null +++ b/00-bootcamp-project/load_table_promos.py @@ -0,0 +1,48 @@ +# Ref: https://cloud.google.com/bigquery/docs/samples/bigquery-load-table-dataframe + +import json +import os +from datetime import datetime + +import pandas as pd +from google.cloud import bigquery +from google.oauth2 import service_account + +# read environment variable +# use export KEYFILE_PATH=deb-1-by-skooldio-36e023357883.json +keyfile = os.environ.get("KEYFILE_PATH") +# read from json file which make service_account_info is json form +service_account_info = json.load(open(keyfile)) +credentials = service_account.Credentials.from_service_account_info(service_account_info) +# check your project_id in GCP +project_id = "deb-1-by-skooldio" +client = bigquery.Client( + project=project_id, + credentials=credentials, +) + +# send JOB to bigquery +job_config = bigquery.LoadJobConfig( + skip_leading_rows=0, + write_disposition=bigquery.WriteDisposition.WRITE_TRUNCATE, + source_format=bigquery.SourceFormat.CSV, + autodetect=True, +# time_partitioning=bigquery.TimePartitioning( +# type_=bigquery.TimePartitioningType.DAY, +# field="created_at", +# ), +# clustering_fields=["first_name", "last_name"], +) + +file_path = "data/promos.csv" +# tell dataframe which column should be datetime type +df = pd.read_csv(file_path) +df.info() + +table_id = f"{project_id}.deb_bootcamp.promos" +job = client.load_table_from_dataframe(df, table_id, job_config=job_config) +job.result() + +# print for debugging +table = client.get_table(table_id) +print(f"Loaded {table.num_rows} rows and {len(table.schema)} columns to {table_id}") \ No newline at end of file diff --git a/00-bootcamp-project/load_table_users.py b/00-bootcamp-project/load_table_users.py new file mode 100644 index 000000000..bff46d031 --- /dev/null +++ b/00-bootcamp-project/load_table_users.py @@ -0,0 +1,48 @@ +# Ref: https://cloud.google.com/bigquery/docs/samples/bigquery-load-table-dataframe + +import json +import os +from datetime import datetime + +import pandas as pd +from google.cloud import bigquery +from google.oauth2 import service_account + +# read environment variable +# use export KEYFILE_PATH=deb-1-by-skooldio-36e023357883.json +keyfile = os.environ.get("KEYFILE_PATH") +# read from json file which make service_account_info is json form +service_account_info = json.load(open(keyfile)) +credentials = service_account.Credentials.from_service_account_info(service_account_info) +# check your project_id in GCP +project_id = "deb-1-by-skooldio" +client = bigquery.Client( + project=project_id, + credentials=credentials, +) + +# send JOB to bigquery +job_config = bigquery.LoadJobConfig( + skip_leading_rows=0, + write_disposition=bigquery.WriteDisposition.WRITE_TRUNCATE, + source_format=bigquery.SourceFormat.CSV, + autodetect=True, + time_partitioning=bigquery.TimePartitioning( + type_=bigquery.TimePartitioningType.DAY, + field="created_at", + ), + clustering_fields=["first_name", "last_name"], +) + +file_path = "data/users.csv" +# tell dataframe which column should be datetime type +df = pd.read_csv(file_path, parse_dates=["created_at", "updated_at"]) +df.info() + +table_id = f"{project_id}.deb_bootcamp.users" +job = client.load_table_from_dataframe(df, table_id, job_config=job_config) +job.result() + +# print for debugging +table = client.get_table(table_id) +print(f"Loaded {table.num_rows} rows and {len(table.schema)} columns to {table_id}") \ No newline at end of file diff --git a/00-bootcamp-project/main-api.py b/00-bootcamp-project/main-api.py new file mode 100644 index 000000000..7a79b5842 --- /dev/null +++ b/00-bootcamp-project/main-api.py @@ -0,0 +1,53 @@ +import configparser +import csv + +import requests + +# receive config parameter from pipline.conf +parser = configparser.ConfigParser() +parser.read("pipeline.conf") +host = parser.get("api_config", "host") +port = parser.get("api_config", "port") + +# connect with database +API_URL = f"http://{host}:{port}" +DATA_FOLDER = "data" + +### Events +data = "events" +date = "2021-02-10" +response = requests.get(f"{API_URL}/{data}/?created_at={date}") +data = response.json() +with open(f"{DATA_FOLDER}/events.csv", "w") as f: + writer = csv.writer(f) + header = data[0].keys() + writer.writerow(header) + + for each in data: + writer.writerow(each.values()) + +### Users +data = "users" +date = "2020-10-23" +response = requests.get(f"{API_URL}/{data}/?created_at={date}") +data = response.json() +with open(f"{DATA_FOLDER}/users.csv", "w") as f: + writer = csv.writer(f) + header = data[0].keys() + writer.writerow(header) + + for each in data: + writer.writerow(each.values()) + +### Orders +data = "orders" +date = "2021-02-10" +response = requests.get(f"{API_URL}/{data}/?created_at={date}") +data = response.json() +with open(f"{DATA_FOLDER}/orders.csv", "w") as f: + writer = csv.writer(f) + header = data[0].keys() + writer.writerow(header) + + for each in data: + writer.writerow(each.values()) \ No newline at end of file diff --git a/00-bootcamp-project/main-postgres.py b/00-bootcamp-project/main-postgres.py new file mode 100644 index 000000000..726424295 --- /dev/null +++ b/00-bootcamp-project/main-postgres.py @@ -0,0 +1,46 @@ +import csv +import configparser + +import psycopg2 + + +parser = configparser.ConfigParser() +parser.read("pipeline.conf") +dbname = parser.get("postgres_config", "database") +user = parser.get("postgres_config", "username") +password = parser.get("postgres_config", "password") +host = parser.get("postgres_config", "host") +port = parser.get("postgres_config", "port") + +conn_str = f"dbname={dbname} user={user} password={password} host={host} port={port}" +conn = psycopg2.connect(conn_str) +cursor = conn.cursor() + +DATA_FOLDER = "data" + +table = "addresses" +header = ["address_id", "address", "zipcode", "state", "country"] +with open(f"{DATA_FOLDER}/addresses.csv", "w") as f: + writer = csv.writer(f) + writer.writerow(header) + + query = f"select * from {table}" + cursor.execute(query) + + results = cursor.fetchall() + for each in results: + writer.writerow(each) + + +table = "order_items" +header = ["order_id", "product_id", "quantity"] +with open(f"{DATA_FOLDER}/{table}.csv", "w") as f: + writer = csv.writer(f) + writer.writerow(header) + + query = f"select * from {table}" + cursor.execute(query) + + results = cursor.fetchall() + for each in results: + writer.writerow(each) \ No newline at end of file diff --git a/00-bootcamp-project/main-sftp.py b/00-bootcamp-project/main-sftp.py new file mode 100644 index 000000000..c16cbff8a --- /dev/null +++ b/00-bootcamp-project/main-sftp.py @@ -0,0 +1,28 @@ +import configparser + +import pysftp + + +parser = configparser.ConfigParser() +parser.read("pipeline.conf") +username = parser.get("sftp_config", "username") +password = parser.get("sftp_config", "password") +host = parser.get("sftp_config", "host") +port = parser.getint("sftp_config", "port") + + +# Security risk! Don't do this on production +# You lose a protection against Man-in-the-middle attacks +cnopts = pysftp.CnOpts() +cnopts.hostkeys = None + +DATA_FOLDER = "data" + +files = [ + "products.csv", + "promos.csv", +] +with pysftp.Connection(host, username=username, password=password, port=port, cnopts=cnopts) as sftp: + for f in files: + sftp.get(f, f"{DATA_FOLDER}/{f}") + print(f"Finished downloading: {f}") \ No newline at end of file diff --git a/00-bootcamp-project/main.py b/00-bootcamp-project/main.py new file mode 100644 index 000000000..c43ee0c36 --- /dev/null +++ b/00-bootcamp-project/main.py @@ -0,0 +1,11 @@ +import requests + + +API_URL = "http://34.87.139.82:8000/" +DATA = "events" +DATE = "2021-02-10" + +response = requests.get(f"{API_URL}/{DATA}/?created_at={DATE}") +data = response.json() +for each in data: + print(each["event_id"], each["event_type"]) \ No newline at end of file diff --git a/00-bootcamp-project/pipeline.conf b/00-bootcamp-project/pipeline.conf new file mode 100644 index 000000000..af8826c34 --- /dev/null +++ b/00-bootcamp-project/pipeline.conf @@ -0,0 +1,16 @@ +[sftp_config] +host = 34.87.139.82 +port = 2222 +username = greenery +password = hardpassword + +[postgres_config] +host = 34.87.139.82 +port = 5432 +username = postgres +password = postgres +database = greenery + +[api_config] +host = 34.87.139.82 +port = 8000 \ No newline at end of file diff --git a/00-bootcamp-project/poetry.lock b/00-bootcamp-project/poetry.lock new file mode 100644 index 000000000..cb97ebc62 --- /dev/null +++ b/00-bootcamp-project/poetry.lock @@ -0,0 +1,1012 @@ +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. + +[[package]] +name = "bcrypt" +version = "4.0.1" +description = "Modern password hashing for your software and your servers" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "bcrypt-4.0.1-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:b1023030aec778185a6c16cf70f359cbb6e0c289fd564a7cfa29e727a1c38f8f"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:08d2947c490093a11416df18043c27abe3921558d2c03e2076ccb28a116cb6d0"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0eaa47d4661c326bfc9d08d16debbc4edf78778e6aaba29c1bc7ce67214d4410"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae88eca3024bb34bb3430f964beab71226e761f51b912de5133470b649d82344"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:a522427293d77e1c29e303fc282e2d71864579527a04ddcfda6d4f8396c6c36a"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:fbdaec13c5105f0c4e5c52614d04f0bca5f5af007910daa8b6b12095edaa67b3"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:ca3204d00d3cb2dfed07f2d74a25f12fc12f73e606fcaa6975d1f7ae69cacbb2"}, + {file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:089098effa1bc35dc055366740a067a2fc76987e8ec75349eb9484061c54f535"}, + {file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:e9a51bbfe7e9802b5f3508687758b564069ba937748ad7b9e890086290d2f79e"}, + {file = "bcrypt-4.0.1-cp36-abi3-win32.whl", hash = "sha256:2caffdae059e06ac23fce178d31b4a702f2a3264c20bfb5ff541b338194d8fab"}, + {file = "bcrypt-4.0.1-cp36-abi3-win_amd64.whl", hash = "sha256:8a68f4341daf7522fe8d73874de8906f3a339048ba406be6ddc1b3ccb16fc0d9"}, + {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf4fa8b2ca74381bb5442c089350f09a3f17797829d958fad058d6e44d9eb83c"}, + {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:67a97e1c405b24f19d08890e7ae0c4f7ce1e56a712a016746c8b2d7732d65d4b"}, + {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b3b85202d95dd568efcb35b53936c5e3b3600c7cdcc6115ba461df3a8e89f38d"}, + {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbb03eec97496166b704ed663a53680ab57c5084b2fc98ef23291987b525cb7d"}, + {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:5ad4d32a28b80c5fa6671ccfb43676e8c1cc232887759d1cd7b6f56ea4355215"}, + {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b57adba8a1444faf784394de3436233728a1ecaeb6e07e8c22c8848f179b893c"}, + {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:705b2cea8a9ed3d55b4491887ceadb0106acf7c6387699fca771af56b1cdeeda"}, + {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:2b3ac11cf45161628f1f3733263e63194f22664bf4d0c0f3ab34099c02134665"}, + {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3100851841186c25f127731b9fa11909ab7b1df6fc4b9f8353f4f1fd952fbf71"}, + {file = "bcrypt-4.0.1.tar.gz", hash = "sha256:27d375903ac8261cfe4047f6709d16f7d18d39b1ec92aaf72af989552a650ebd"}, +] + +[package.extras] +tests = ["pytest (>=3.2.1,!=3.3.0)"] +typecheck = ["mypy"] + +[[package]] +name = "cachetools" +version = "5.3.0" +description = "Extensible memoizing collections and decorators" +category = "main" +optional = false +python-versions = "~=3.7" +files = [ + {file = "cachetools-5.3.0-py3-none-any.whl", hash = "sha256:429e1a1e845c008ea6c85aa35d4b98b65d6a9763eeef3e37e92728a12d1de9d4"}, + {file = "cachetools-5.3.0.tar.gz", hash = "sha256:13dfddc7b8df938c21a940dfa6557ce6e94a2f1cdfa58eb90c805721d58f2c14"}, +] + +[[package]] +name = "certifi" +version = "2022.12.7" +description = "Python package for providing Mozilla's CA Bundle." +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, + {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, +] + +[[package]] +name = "cffi" +version = "1.15.1" +description = "Foreign Function Interface for Python calling C code." +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +category = "main" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "cryptography" +version = "40.0.2" +description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "cryptography-40.0.2-cp36-abi3-macosx_10_12_universal2.whl", hash = "sha256:8f79b5ff5ad9d3218afb1e7e20ea74da5f76943ee5edb7f76e56ec5161ec782b"}, + {file = "cryptography-40.0.2-cp36-abi3-macosx_10_12_x86_64.whl", hash = "sha256:05dc219433b14046c476f6f09d7636b92a1c3e5808b9a6536adf4932b3b2c440"}, + {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4df2af28d7bedc84fe45bd49bc35d710aede676e2a4cb7fc6d103a2adc8afe4d"}, + {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dcca15d3a19a66e63662dc8d30f8036b07be851a8680eda92d079868f106288"}, + {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:a04386fb7bc85fab9cd51b6308633a3c271e3d0d3eae917eebab2fac6219b6d2"}, + {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:adc0d980fd2760c9e5de537c28935cc32b9353baaf28e0814df417619c6c8c3b"}, + {file = "cryptography-40.0.2-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d5a1bd0e9e2031465761dfa920c16b0065ad77321d8a8c1f5ee331021fda65e9"}, + {file = "cryptography-40.0.2-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:a95f4802d49faa6a674242e25bfeea6fc2acd915b5e5e29ac90a32b1139cae1c"}, + {file = "cryptography-40.0.2-cp36-abi3-win32.whl", hash = "sha256:aecbb1592b0188e030cb01f82d12556cf72e218280f621deed7d806afd2113f9"}, + {file = "cryptography-40.0.2-cp36-abi3-win_amd64.whl", hash = "sha256:b12794f01d4cacfbd3177b9042198f3af1c856eedd0a98f10f141385c809a14b"}, + {file = "cryptography-40.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:142bae539ef28a1c76794cca7f49729e7c54423f615cfd9b0b1fa90ebe53244b"}, + {file = "cryptography-40.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:956ba8701b4ffe91ba59665ed170a2ebbdc6fc0e40de5f6059195d9f2b33ca0e"}, + {file = "cryptography-40.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4f01c9863da784558165f5d4d916093737a75203a5c5286fde60e503e4276c7a"}, + {file = "cryptography-40.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:3daf9b114213f8ba460b829a02896789751626a2a4e7a43a28ee77c04b5e4958"}, + {file = "cryptography-40.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48f388d0d153350f378c7f7b41497a54ff1513c816bcbbcafe5b829e59b9ce5b"}, + {file = "cryptography-40.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c0764e72b36a3dc065c155e5b22f93df465da9c39af65516fe04ed3c68c92636"}, + {file = "cryptography-40.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:cbaba590180cba88cb99a5f76f90808a624f18b169b90a4abb40c1fd8c19420e"}, + {file = "cryptography-40.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7a38250f433cd41df7fcb763caa3ee9362777fdb4dc642b9a349721d2bf47404"}, + {file = "cryptography-40.0.2.tar.gz", hash = "sha256:c33c0d32b8594fa647d2e01dbccc303478e16fdd7cf98652d5b3ed11aa5e5c99"}, +] + +[package.dependencies] +cffi = ">=1.12" + +[package.extras] +docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] +docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] +pep8test = ["black", "check-manifest", "mypy", "ruff"] +sdist = ["setuptools-rust (>=0.11.4)"] +ssh = ["bcrypt (>=3.1.5)"] +test = ["iso8601", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-shard (>=0.1.2)", "pytest-subtests", "pytest-xdist"] +test-randomorder = ["pytest-randomly"] +tox = ["tox"] + +[[package]] +name = "google-api-core" +version = "2.11.0" +description = "Google API client core library" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-api-core-2.11.0.tar.gz", hash = "sha256:4b9bb5d5a380a0befa0573b302651b8a9a89262c1730e37bf423cec511804c22"}, + {file = "google_api_core-2.11.0-py3-none-any.whl", hash = "sha256:ce222e27b0de0d7bc63eb043b956996d6dccab14cc3b690aaea91c9cc99dc16e"}, +] + +[package.dependencies] +google-auth = ">=2.14.1,<3.0dev" +googleapis-common-protos = ">=1.56.2,<2.0dev" +grpcio = [ + {version = ">=1.33.2,<2.0dev", optional = true, markers = "extra == \"grpc\""}, + {version = ">=1.49.1,<2.0dev", optional = true, markers = "python_version >= \"3.11\" and extra == \"grpc\""}, +] +grpcio-status = [ + {version = ">=1.33.2,<2.0dev", optional = true, markers = "extra == \"grpc\""}, + {version = ">=1.49.1,<2.0dev", optional = true, markers = "python_version >= \"3.11\" and extra == \"grpc\""}, +] +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" +requests = ">=2.18.0,<3.0.0dev" + +[package.extras] +grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0dev)", "grpcio-status (>=1.49.1,<2.0dev)"] +grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0dev)"] +grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0dev)"] + +[[package]] +name = "google-auth" +version = "2.17.3" +description = "Google Authentication Library" +category = "main" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*" +files = [ + {file = "google-auth-2.17.3.tar.gz", hash = "sha256:ce311e2bc58b130fddf316df57c9b3943c2a7b4f6ec31de9663a9333e4064efc"}, + {file = "google_auth-2.17.3-py2.py3-none-any.whl", hash = "sha256:f586b274d3eb7bd932ea424b1c702a30e0393a2e2bc4ca3eae8263ffd8be229f"}, +] + +[package.dependencies] +cachetools = ">=2.0.0,<6.0" +pyasn1-modules = ">=0.2.1" +rsa = {version = ">=3.1.4,<5", markers = "python_version >= \"3.6\""} +six = ">=1.9.0" + +[package.extras] +aiohttp = ["aiohttp (>=3.6.2,<4.0.0dev)", "requests (>=2.20.0,<3.0.0dev)"] +enterprise-cert = ["cryptography (==36.0.2)", "pyopenssl (==22.0.0)"] +pyopenssl = ["cryptography (>=38.0.3)", "pyopenssl (>=20.0.0)"] +reauth = ["pyu2f (>=0.1.5)"] +requests = ["requests (>=2.20.0,<3.0.0dev)"] + +[[package]] +name = "google-cloud-bigquery" +version = "3.10.0" +description = "Google BigQuery API client library" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-cloud-bigquery-3.10.0.tar.gz", hash = "sha256:4b02def076e2db8cec66f65fb627d13904a9fc3cf4fee315ede43dcb7038a8df"}, + {file = "google_cloud_bigquery-3.10.0-py2.py3-none-any.whl", hash = "sha256:848a3cbce0ba7d4f1e9551400a7c99aa0eab72290d5a1bbbe69f18a24a10bd3a"}, +] + +[package.dependencies] +google-api-core = {version = ">=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev", extras = ["grpc"]} +google-cloud-core = ">=1.6.0,<3.0.0dev" +google-resumable-media = ">=0.6.0,<3.0dev" +grpcio = [ + {version = ">=1.47.0,<2.0dev", markers = "python_version < \"3.11\""}, + {version = ">=1.49.1,<2.0dev", markers = "python_version >= \"3.11\""}, +] +packaging = ">=20.0.0" +proto-plus = ">=1.15.0,<2.0.0dev" +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" +python-dateutil = ">=2.7.2,<3.0dev" +requests = ">=2.21.0,<3.0.0dev" + +[package.extras] +all = ["Shapely (>=1.8.4,<2.0dev)", "db-dtypes (>=0.3.0,<2.0.0dev)", "geopandas (>=0.9.0,<1.0dev)", "google-cloud-bigquery-storage (>=2.6.0,<3.0.0dev)", "grpcio (>=1.47.0,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "ipykernel (>=6.0.0)", "ipython (>=7.23.1,!=8.1.0)", "ipywidgets (>=7.7.0)", "opentelemetry-api (>=1.1.0)", "opentelemetry-instrumentation (>=0.20b0)", "opentelemetry-sdk (>=1.1.0)", "pandas (>=1.1.0)", "pyarrow (>=3.0.0)", "tqdm (>=4.7.4,<5.0.0dev)"] +bqstorage = ["google-cloud-bigquery-storage (>=2.6.0,<3.0.0dev)", "grpcio (>=1.47.0,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "pyarrow (>=3.0.0)"] +geopandas = ["Shapely (>=1.8.4,<2.0dev)", "geopandas (>=0.9.0,<1.0dev)"] +ipython = ["ipykernel (>=6.0.0)", "ipython (>=7.23.1,!=8.1.0)"] +ipywidgets = ["ipykernel (>=6.0.0)", "ipywidgets (>=7.7.0)"] +opentelemetry = ["opentelemetry-api (>=1.1.0)", "opentelemetry-instrumentation (>=0.20b0)", "opentelemetry-sdk (>=1.1.0)"] +pandas = ["db-dtypes (>=0.3.0,<2.0.0dev)", "pandas (>=1.1.0)", "pyarrow (>=3.0.0)"] +tqdm = ["tqdm (>=4.7.4,<5.0.0dev)"] + +[[package]] +name = "google-cloud-core" +version = "2.3.2" +description = "Google Cloud API client core library" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-cloud-core-2.3.2.tar.gz", hash = "sha256:b9529ee7047fd8d4bf4a2182de619154240df17fbe60ead399078c1ae152af9a"}, + {file = "google_cloud_core-2.3.2-py2.py3-none-any.whl", hash = "sha256:8417acf6466be2fa85123441696c4badda48db314c607cf1e5d543fa8bdc22fe"}, +] + +[package.dependencies] +google-api-core = ">=1.31.6,<2.0.0 || >2.3.0,<3.0.0dev" +google-auth = ">=1.25.0,<3.0dev" + +[package.extras] +grpc = ["grpcio (>=1.38.0,<2.0dev)"] + +[[package]] +name = "google-crc32c" +version = "1.5.0" +description = "A python wrapper of the C library 'Google CRC32C'" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-crc32c-1.5.0.tar.gz", hash = "sha256:89284716bc6a5a415d4eaa11b1726d2d60a0cd12aadf5439828353662ede9dd7"}, + {file = "google_crc32c-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:596d1f98fc70232fcb6590c439f43b350cb762fb5d61ce7b0e9db4539654cc13"}, + {file = "google_crc32c-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:be82c3c8cfb15b30f36768797a640e800513793d6ae1724aaaafe5bf86f8f346"}, + {file = "google_crc32c-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:461665ff58895f508e2866824a47bdee72497b091c730071f2b7575d5762ab65"}, + {file = "google_crc32c-1.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2096eddb4e7c7bdae4bd69ad364e55e07b8316653234a56552d9c988bd2d61b"}, + {file = "google_crc32c-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:116a7c3c616dd14a3de8c64a965828b197e5f2d121fedd2f8c5585c547e87b02"}, + {file = "google_crc32c-1.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5829b792bf5822fd0a6f6eb34c5f81dd074f01d570ed7f36aa101d6fc7a0a6e4"}, + {file = "google_crc32c-1.5.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:64e52e2b3970bd891309c113b54cf0e4384762c934d5ae56e283f9a0afcd953e"}, + {file = "google_crc32c-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:02ebb8bf46c13e36998aeaad1de9b48f4caf545e91d14041270d9dca767b780c"}, + {file = "google_crc32c-1.5.0-cp310-cp310-win32.whl", hash = "sha256:2e920d506ec85eb4ba50cd4228c2bec05642894d4c73c59b3a2fe20346bd00ee"}, + {file = "google_crc32c-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:07eb3c611ce363c51a933bf6bd7f8e3878a51d124acfc89452a75120bc436289"}, + {file = "google_crc32c-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cae0274952c079886567f3f4f685bcaf5708f0a23a5f5216fdab71f81a6c0273"}, + {file = "google_crc32c-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1034d91442ead5a95b5aaef90dbfaca8633b0247d1e41621d1e9f9db88c36298"}, + {file = "google_crc32c-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7c42c70cd1d362284289c6273adda4c6af8039a8ae12dc451dcd61cdabb8ab57"}, + {file = "google_crc32c-1.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8485b340a6a9e76c62a7dce3c98e5f102c9219f4cfbf896a00cf48caf078d438"}, + {file = "google_crc32c-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77e2fd3057c9d78e225fa0a2160f96b64a824de17840351b26825b0848022906"}, + {file = "google_crc32c-1.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f583edb943cf2e09c60441b910d6a20b4d9d626c75a36c8fcac01a6c96c01183"}, + {file = "google_crc32c-1.5.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:a1fd716e7a01f8e717490fbe2e431d2905ab8aa598b9b12f8d10abebb36b04dd"}, + {file = "google_crc32c-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:72218785ce41b9cfd2fc1d6a017dc1ff7acfc4c17d01053265c41a2c0cc39b8c"}, + {file = "google_crc32c-1.5.0-cp311-cp311-win32.whl", hash = "sha256:66741ef4ee08ea0b2cc3c86916ab66b6aef03768525627fd6a1b34968b4e3709"}, + {file = "google_crc32c-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:ba1eb1843304b1e5537e1fca632fa894d6f6deca8d6389636ee5b4797affb968"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:98cb4d057f285bd80d8778ebc4fde6b4d509ac3f331758fb1528b733215443ae"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd8536e902db7e365f49e7d9029283403974ccf29b13fc7028b97e2295b33556"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19e0a019d2c4dcc5e598cd4a4bc7b008546b0358bd322537c74ad47a5386884f"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02c65b9817512edc6a4ae7c7e987fea799d2e0ee40c53ec573a692bee24de876"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6ac08d24c1f16bd2bf5eca8eaf8304812f44af5cfe5062006ec676e7e1d50afc"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:3359fc442a743e870f4588fcf5dcbc1bf929df1fad8fb9905cd94e5edb02e84c"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e986b206dae4476f41bcec1faa057851f3889503a70e1bdb2378d406223994a"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:de06adc872bcd8c2a4e0dc51250e9e65ef2ca91be023b9d13ebd67c2ba552e1e"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-win32.whl", hash = "sha256:d3515f198eaa2f0ed49f8819d5732d70698c3fa37384146079b3799b97667a94"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:67b741654b851abafb7bc625b6d1cdd520a379074e64b6a128e3b688c3c04740"}, + {file = "google_crc32c-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c02ec1c5856179f171e032a31d6f8bf84e5a75c45c33b2e20a3de353b266ebd8"}, + {file = "google_crc32c-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:edfedb64740750e1a3b16152620220f51d58ff1b4abceb339ca92e934775c27a"}, + {file = "google_crc32c-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:84e6e8cd997930fc66d5bb4fde61e2b62ba19d62b7abd7a69920406f9ecca946"}, + {file = "google_crc32c-1.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:024894d9d3cfbc5943f8f230e23950cd4906b2fe004c72e29b209420a1e6b05a"}, + {file = "google_crc32c-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:998679bf62b7fb599d2878aa3ed06b9ce688b8974893e7223c60db155f26bd8d"}, + {file = "google_crc32c-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:83c681c526a3439b5cf94f7420471705bbf96262f49a6fe546a6db5f687a3d4a"}, + {file = "google_crc32c-1.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4c6fdd4fccbec90cc8a01fc00773fcd5fa28db683c116ee3cb35cd5da9ef6c37"}, + {file = "google_crc32c-1.5.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5ae44e10a8e3407dbe138984f21e536583f2bba1be9491239f942c2464ac0894"}, + {file = "google_crc32c-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:37933ec6e693e51a5b07505bd05de57eee12f3e8c32b07da7e73669398e6630a"}, + {file = "google_crc32c-1.5.0-cp38-cp38-win32.whl", hash = "sha256:fe70e325aa68fa4b5edf7d1a4b6f691eb04bbccac0ace68e34820d283b5f80d4"}, + {file = "google_crc32c-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:74dea7751d98034887dbd821b7aae3e1d36eda111d6ca36c206c44478035709c"}, + {file = "google_crc32c-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c6c777a480337ac14f38564ac88ae82d4cd238bf293f0a22295b66eb89ffced7"}, + {file = "google_crc32c-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:759ce4851a4bb15ecabae28f4d2e18983c244eddd767f560165563bf9aefbc8d"}, + {file = "google_crc32c-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f13cae8cc389a440def0c8c52057f37359014ccbc9dc1f0827936bcd367c6100"}, + {file = "google_crc32c-1.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e560628513ed34759456a416bf86b54b2476c59144a9138165c9a1575801d0d9"}, + {file = "google_crc32c-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1674e4307fa3024fc897ca774e9c7562c957af85df55efe2988ed9056dc4e57"}, + {file = "google_crc32c-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:278d2ed7c16cfc075c91378c4f47924c0625f5fc84b2d50d921b18b7975bd210"}, + {file = "google_crc32c-1.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d5280312b9af0976231f9e317c20e4a61cd2f9629b7bfea6a693d1878a264ebd"}, + {file = "google_crc32c-1.5.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:8b87e1a59c38f275c0e3676fc2ab6d59eccecfd460be267ac360cc31f7bcde96"}, + {file = "google_crc32c-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7c074fece789b5034b9b1404a1f8208fc2d4c6ce9decdd16e8220c5a793e6f61"}, + {file = "google_crc32c-1.5.0-cp39-cp39-win32.whl", hash = "sha256:7f57f14606cd1dd0f0de396e1e53824c371e9544a822648cd76c034d209b559c"}, + {file = "google_crc32c-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:a2355cba1f4ad8b6988a4ca3feed5bff33f6af2d7f134852cf279c2aebfde541"}, + {file = "google_crc32c-1.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f314013e7dcd5cf45ab1945d92e713eec788166262ae8deb2cfacd53def27325"}, + {file = "google_crc32c-1.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b747a674c20a67343cb61d43fdd9207ce5da6a99f629c6e2541aa0e89215bcd"}, + {file = "google_crc32c-1.5.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8f24ed114432de109aa9fd317278518a5af2d31ac2ea6b952b2f7782b43da091"}, + {file = "google_crc32c-1.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8667b48e7a7ef66afba2c81e1094ef526388d35b873966d8a9a447974ed9178"}, + {file = "google_crc32c-1.5.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:1c7abdac90433b09bad6c43a43af253e688c9cfc1c86d332aed13f9a7c7f65e2"}, + {file = "google_crc32c-1.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6f998db4e71b645350b9ac28a2167e6632c239963ca9da411523bb439c5c514d"}, + {file = "google_crc32c-1.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c99616c853bb585301df6de07ca2cadad344fd1ada6d62bb30aec05219c45d2"}, + {file = "google_crc32c-1.5.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2ad40e31093a4af319dadf503b2467ccdc8f67c72e4bcba97f8c10cb078207b5"}, + {file = "google_crc32c-1.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd67cf24a553339d5062eff51013780a00d6f97a39ca062781d06b3a73b15462"}, + {file = "google_crc32c-1.5.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:398af5e3ba9cf768787eef45c803ff9614cc3e22a5b2f7d7ae116df8b11e3314"}, + {file = "google_crc32c-1.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b1f8133c9a275df5613a451e73f36c2aea4fe13c5c8997e22cf355ebd7bd0728"}, + {file = "google_crc32c-1.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ba053c5f50430a3fcfd36f75aff9caeba0440b2d076afdb79a318d6ca245f88"}, + {file = "google_crc32c-1.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:272d3892a1e1a2dbc39cc5cde96834c236d5327e2122d3aaa19f6614531bb6eb"}, + {file = "google_crc32c-1.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:635f5d4dd18758a1fbd1049a8e8d2fee4ffed124462d837d1a02a0e009c3ab31"}, + {file = "google_crc32c-1.5.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:c672d99a345849301784604bfeaeba4db0c7aae50b95be04dd651fd2a7310b93"}, +] + +[package.extras] +testing = ["pytest"] + +[[package]] +name = "google-resumable-media" +version = "2.4.1" +description = "Utilities for Google Media Downloads and Resumable Uploads" +category = "main" +optional = false +python-versions = ">= 3.7" +files = [ + {file = "google-resumable-media-2.4.1.tar.gz", hash = "sha256:15b8a2e75df42dc6502d1306db0bce2647ba6013f9cd03b6e17368c0886ee90a"}, + {file = "google_resumable_media-2.4.1-py2.py3-none-any.whl", hash = "sha256:831e86fd78d302c1a034730a0c6e5369dd11d37bad73fa69ca8998460d5bae8d"}, +] + +[package.dependencies] +google-crc32c = ">=1.0,<2.0dev" + +[package.extras] +aiohttp = ["aiohttp (>=3.6.2,<4.0.0dev)"] +requests = ["requests (>=2.18.0,<3.0.0dev)"] + +[[package]] +name = "googleapis-common-protos" +version = "1.59.0" +description = "Common protobufs used in Google APIs" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "googleapis-common-protos-1.59.0.tar.gz", hash = "sha256:4168fcb568a826a52f23510412da405abd93f4d23ba544bb68d943b14ba3cb44"}, + {file = "googleapis_common_protos-1.59.0-py2.py3-none-any.whl", hash = "sha256:b287dc48449d1d41af0c69f4ea26242b5ae4c3d7249a38b0984c86a4caffff1f"}, +] + +[package.dependencies] +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" + +[package.extras] +grpc = ["grpcio (>=1.44.0,<2.0.0dev)"] + +[[package]] +name = "grpcio" +version = "1.54.0" +description = "HTTP/2-based RPC framework" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "grpcio-1.54.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:a947d5298a0bbdd4d15671024bf33e2b7da79a70de600ed29ba7e0fef0539ebb"}, + {file = "grpcio-1.54.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:e355ee9da9c1c03f174efea59292b17a95e0b7b4d7d2a389265f731a9887d5a9"}, + {file = "grpcio-1.54.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:73c238ef6e4b64272df7eec976bb016c73d3ab5a6c7e9cd906ab700523d312f3"}, + {file = "grpcio-1.54.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c59d899ee7160638613a452f9a4931de22623e7ba17897d8e3e348c2e9d8d0b"}, + {file = "grpcio-1.54.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48cb7af77238ba16c77879009003f6b22c23425e5ee59cb2c4c103ec040638a5"}, + {file = "grpcio-1.54.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2262bd3512ba9e9f0e91d287393df6f33c18999317de45629b7bd46c40f16ba9"}, + {file = "grpcio-1.54.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:224166f06ccdaf884bf35690bf4272997c1405de3035d61384ccb5b25a4c1ca8"}, + {file = "grpcio-1.54.0-cp310-cp310-win32.whl", hash = "sha256:ed36e854449ff6c2f8ee145f94851fe171298e1e793f44d4f672c4a0d78064e7"}, + {file = "grpcio-1.54.0-cp310-cp310-win_amd64.whl", hash = "sha256:27fb030a4589d2536daec5ff5ba2a128f4f155149efab578fe2de2cb21596d3d"}, + {file = "grpcio-1.54.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:f4a7dca8ccd8023d916b900aa3c626f1bd181bd5b70159479b142f957ff420e4"}, + {file = "grpcio-1.54.0-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:1209d6b002b26e939e4c8ea37a3d5b4028eb9555394ea69fb1adbd4b61a10bb8"}, + {file = "grpcio-1.54.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:860fcd6db7dce80d0a673a1cc898ce6bc3d4783d195bbe0e911bf8a62c93ff3f"}, + {file = "grpcio-1.54.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3930669c9e6f08a2eed824738c3d5699d11cd47a0ecc13b68ed11595710b1133"}, + {file = "grpcio-1.54.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62117486460c83acd3b5d85c12edd5fe20a374630475388cfc89829831d3eb79"}, + {file = "grpcio-1.54.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e3e526062c690517b42bba66ffe38aaf8bc99a180a78212e7b22baa86902f690"}, + {file = "grpcio-1.54.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ebff0738be0499d7db74d20dca9f22a7b27deae31e1bf92ea44924fd69eb6251"}, + {file = "grpcio-1.54.0-cp311-cp311-win32.whl", hash = "sha256:21c4a1aae861748d6393a3ff7867473996c139a77f90326d9f4104bebb22d8b8"}, + {file = "grpcio-1.54.0-cp311-cp311-win_amd64.whl", hash = "sha256:3db71c6f1ab688d8dfc102271cedc9828beac335a3a4372ec54b8bf11b43fd29"}, + {file = "grpcio-1.54.0-cp37-cp37m-linux_armv7l.whl", hash = "sha256:960b176e0bb2b4afeaa1cd2002db1e82ae54c9b6e27ea93570a42316524e77cf"}, + {file = "grpcio-1.54.0-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:d8ae6e0df3a608e99ee1acafaafd7db0830106394d54571c1ece57f650124ce9"}, + {file = "grpcio-1.54.0-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:c33744d0d1a7322da445c0fe726ea6d4e3ef2dfb0539eadf23dce366f52f546c"}, + {file = "grpcio-1.54.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d109df30641d050e009105f9c9ca5a35d01e34d2ee2a4e9c0984d392fd6d704"}, + {file = "grpcio-1.54.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:775a2f70501370e5ba54e1ee3464413bff9bd85bd9a0b25c989698c44a6fb52f"}, + {file = "grpcio-1.54.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c55a9cf5cba80fb88c850915c865b8ed78d5e46e1f2ec1b27692f3eaaf0dca7e"}, + {file = "grpcio-1.54.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:1fa7d6ddd33abbd3c8b3d7d07c56c40ea3d1891ce3cd2aa9fa73105ed5331866"}, + {file = "grpcio-1.54.0-cp37-cp37m-win_amd64.whl", hash = "sha256:ed3d458ded32ff3a58f157b60cc140c88f7ac8c506a1c567b2a9ee8a2fd2ce54"}, + {file = "grpcio-1.54.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:5942a3e05630e1ef5b7b5752e5da6582460a2e4431dae603de89fc45f9ec5aa9"}, + {file = "grpcio-1.54.0-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:125ed35aa3868efa82eabffece6264bf638cfdc9f0cd58ddb17936684aafd0f8"}, + {file = "grpcio-1.54.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:b7655f809e3420f80ce3bf89737169a9dce73238af594049754a1128132c0da4"}, + {file = "grpcio-1.54.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87f47bf9520bba4083d65ab911f8f4c0ac3efa8241993edd74c8dd08ae87552f"}, + {file = "grpcio-1.54.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16bca8092dd994f2864fdab278ae052fad4913f36f35238b2dd11af2d55a87db"}, + {file = "grpcio-1.54.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d2f62fb1c914a038921677cfa536d645cb80e3dd07dc4859a3c92d75407b90a5"}, + {file = "grpcio-1.54.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a7caf553ccaf715ec05b28c9b2ab2ee3fdb4036626d779aa09cf7cbf54b71445"}, + {file = "grpcio-1.54.0-cp38-cp38-win32.whl", hash = "sha256:2585b3c294631a39b33f9f967a59b0fad23b1a71a212eba6bc1e3ca6e6eec9ee"}, + {file = "grpcio-1.54.0-cp38-cp38-win_amd64.whl", hash = "sha256:3b170e441e91e4f321e46d3cc95a01cb307a4596da54aca59eb78ab0fc03754d"}, + {file = "grpcio-1.54.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:1382bc499af92901c2240c4d540c74eae8a671e4fe9839bfeefdfcc3a106b5e2"}, + {file = "grpcio-1.54.0-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:031bbd26656e0739e4b2c81c172155fb26e274b8d0312d67aefc730bcba915b6"}, + {file = "grpcio-1.54.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:a97b0d01ae595c997c1d9d8249e2d2da829c2d8a4bdc29bb8f76c11a94915c9a"}, + {file = "grpcio-1.54.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:533eaf5b2a79a3c6f35cbd6a095ae99cac7f4f9c0e08bdcf86c130efd3c32adf"}, + {file = "grpcio-1.54.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49eace8ea55fbc42c733defbda1e4feb6d3844ecd875b01bb8b923709e0f5ec8"}, + {file = "grpcio-1.54.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:30fbbce11ffeb4f9f91c13fe04899aaf3e9a81708bedf267bf447596b95df26b"}, + {file = "grpcio-1.54.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:650f5f2c9ab1275b4006707411bb6d6bc927886874a287661c3c6f332d4c068b"}, + {file = "grpcio-1.54.0-cp39-cp39-win32.whl", hash = "sha256:02000b005bc8b72ff50c477b6431e8886b29961159e8b8d03c00b3dd9139baed"}, + {file = "grpcio-1.54.0-cp39-cp39-win_amd64.whl", hash = "sha256:6dc1e2c9ac292c9a484ef900c568ccb2d6b4dfe26dfa0163d5bc815bb836c78d"}, + {file = "grpcio-1.54.0.tar.gz", hash = "sha256:eb0807323572642ab73fd86fe53d88d843ce617dd1ddf430351ad0759809a0ae"}, +] + +[package.extras] +protobuf = ["grpcio-tools (>=1.54.0)"] + +[[package]] +name = "grpcio-status" +version = "1.54.0" +description = "Status proto mapping for gRPC" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "grpcio-status-1.54.0.tar.gz", hash = "sha256:b50305d52c0df6169493cca5f2e39b9b4d773b3f30d4a7a6b6dd7c18cb89007c"}, + {file = "grpcio_status-1.54.0-py3-none-any.whl", hash = "sha256:96968314e0c8576b2b631be3917c665964c8018900cb980d58a736fbff828578"}, +] + +[package.dependencies] +googleapis-common-protos = ">=1.5.5" +grpcio = ">=1.54.0" +protobuf = ">=4.21.6" + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +category = "main" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "numpy" +version = "1.24.3" +description = "Fundamental package for array computing in Python" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "numpy-1.24.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3c1104d3c036fb81ab923f507536daedc718d0ad5a8707c6061cdfd6d184e570"}, + {file = "numpy-1.24.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:202de8f38fc4a45a3eea4b63e2f376e5f2dc64ef0fa692838e31a808520efaf7"}, + {file = "numpy-1.24.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8535303847b89aa6b0f00aa1dc62867b5a32923e4d1681a35b5eef2d9591a463"}, + {file = "numpy-1.24.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d926b52ba1367f9acb76b0df6ed21f0b16a1ad87c6720a1121674e5cf63e2b6"}, + {file = "numpy-1.24.3-cp310-cp310-win32.whl", hash = "sha256:f21c442fdd2805e91799fbe044a7b999b8571bb0ab0f7850d0cb9641a687092b"}, + {file = "numpy-1.24.3-cp310-cp310-win_amd64.whl", hash = "sha256:ab5f23af8c16022663a652d3b25dcdc272ac3f83c3af4c02eb8b824e6b3ab9d7"}, + {file = "numpy-1.24.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9a7721ec204d3a237225db3e194c25268faf92e19338a35f3a224469cb6039a3"}, + {file = "numpy-1.24.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d6cc757de514c00b24ae8cf5c876af2a7c3df189028d68c0cb4eaa9cd5afc2bf"}, + {file = "numpy-1.24.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76e3f4e85fc5d4fd311f6e9b794d0c00e7002ec122be271f2019d63376f1d385"}, + {file = "numpy-1.24.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1d3c026f57ceaad42f8231305d4653d5f05dc6332a730ae5c0bea3513de0950"}, + {file = "numpy-1.24.3-cp311-cp311-win32.whl", hash = "sha256:c91c4afd8abc3908e00a44b2672718905b8611503f7ff87390cc0ac3423fb096"}, + {file = "numpy-1.24.3-cp311-cp311-win_amd64.whl", hash = "sha256:5342cf6aad47943286afa6f1609cad9b4266a05e7f2ec408e2cf7aea7ff69d80"}, + {file = "numpy-1.24.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7776ea65423ca6a15255ba1872d82d207bd1e09f6d0894ee4a64678dd2204078"}, + {file = "numpy-1.24.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ae8d0be48d1b6ed82588934aaaa179875e7dc4f3d84da18d7eae6eb3f06c242c"}, + {file = "numpy-1.24.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ecde0f8adef7dfdec993fd54b0f78183051b6580f606111a6d789cd14c61ea0c"}, + {file = "numpy-1.24.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4749e053a29364d3452c034827102ee100986903263e89884922ef01a0a6fd2f"}, + {file = "numpy-1.24.3-cp38-cp38-win32.whl", hash = "sha256:d933fabd8f6a319e8530d0de4fcc2e6a61917e0b0c271fded460032db42a0fe4"}, + {file = "numpy-1.24.3-cp38-cp38-win_amd64.whl", hash = "sha256:56e48aec79ae238f6e4395886b5eaed058abb7231fb3361ddd7bfdf4eed54289"}, + {file = "numpy-1.24.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4719d5aefb5189f50887773699eaf94e7d1e02bf36c1a9d353d9f46703758ca4"}, + {file = "numpy-1.24.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0ec87a7084caa559c36e0a2309e4ecb1baa03b687201d0a847c8b0ed476a7187"}, + {file = "numpy-1.24.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea8282b9bcfe2b5e7d491d0bf7f3e2da29700cec05b49e64d6246923329f2b02"}, + {file = "numpy-1.24.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:210461d87fb02a84ef243cac5e814aad2b7f4be953b32cb53327bb49fd77fbb4"}, + {file = "numpy-1.24.3-cp39-cp39-win32.whl", hash = "sha256:784c6da1a07818491b0ffd63c6bbe5a33deaa0e25a20e1b3ea20cf0e43f8046c"}, + {file = "numpy-1.24.3-cp39-cp39-win_amd64.whl", hash = "sha256:d5036197ecae68d7f491fcdb4df90082b0d4960ca6599ba2659957aafced7c17"}, + {file = "numpy-1.24.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:352ee00c7f8387b44d19f4cada524586f07379c0d49270f87233983bc5087ca0"}, + {file = "numpy-1.24.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a7d6acc2e7524c9955e5c903160aa4ea083736fde7e91276b0e5d98e6332812"}, + {file = "numpy-1.24.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:35400e6a8d102fd07c71ed7dcadd9eb62ee9a6e84ec159bd48c28235bbb0f8e4"}, + {file = "numpy-1.24.3.tar.gz", hash = "sha256:ab344f1bf21f140adab8e47fdbc7c35a477dc01408791f8ba00d018dd0bc5155"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pandas" +version = "2.0.0" +description = "Powerful data structures for data analysis, time series, and statistics" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pandas-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bbb2c5e94d6aa4e632646a3bacd05c2a871c3aa3e85c9bec9be99cb1267279f2"}, + {file = "pandas-2.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b5337c87c4e963f97becb1217965b6b75c6fe5f54c4cf09b9a5ac52fc0bd03d3"}, + {file = "pandas-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ded51f7e3dd9b4f8b87f2ceb7bd1a8df2491f7ee72f7074c6927a512607199e"}, + {file = "pandas-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:52c858de9e9fc422d25e67e1592a6e6135d7bcf9a19fcaf4d0831a0be496bf21"}, + {file = "pandas-2.0.0-cp310-cp310-win32.whl", hash = "sha256:2d1d138848dd71b37e3cbe7cd952ff84e2ab04d8988972166e18567dcc811245"}, + {file = "pandas-2.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:d08e41d96bc4de6f500afe80936c68fce6099d5a434e2af7c7fd8e7c72a3265d"}, + {file = "pandas-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:24472cfc7ced511ac90608728b88312be56edc8f19b9ed885a7d2e47ffaf69c0"}, + {file = "pandas-2.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4ffb14f50c74ee541610668137830bb93e9dfa319b1bef2cedf2814cd5ac9c70"}, + {file = "pandas-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c24c7d12d033a372a9daf9ff2c80f8b0af6f98d14664dbb0a4f6a029094928a7"}, + {file = "pandas-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8318de0f886e4dcb8f9f36e45a3d6a6c3d1cfdc508354da85e739090f0222991"}, + {file = "pandas-2.0.0-cp311-cp311-win32.whl", hash = "sha256:57c34b79c13249505e850d0377b722961b99140f81dafbe6f19ef10239f6284a"}, + {file = "pandas-2.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:8f987ec26e96a8490909bc5d98c514147236e49830cba7df8690f6087c12bbae"}, + {file = "pandas-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b3ba8f5dd470d8bfbc4259829589f4a32881151c49e36384d9eb982b35a12020"}, + {file = "pandas-2.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:fcd471c9d9f60926ab2f15c6c29164112f458acb42280365fbefa542d0c2fc74"}, + {file = "pandas-2.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9253edfd015520ce77a9343eb7097429479c039cd3ebe81d7810ea11b4b24695"}, + {file = "pandas-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:977326039bd1ded620001a1889e2ed4798460a6bc5a24fbaebb5f07a41c32a55"}, + {file = "pandas-2.0.0-cp38-cp38-win32.whl", hash = "sha256:78425ca12314b23356c28b16765639db10ebb7d8983f705d6759ff7fe41357fa"}, + {file = "pandas-2.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:d93b7fcfd9f3328072b250d6d001dcfeec5d3bb66c1b9c8941e109a46c0c01a8"}, + {file = "pandas-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:425705cee8be54db2504e8dd2a730684790b15e5904b750c367611ede49098ab"}, + {file = "pandas-2.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a4f789b7c012a608c08cda4ff0872fd979cb18907a37982abe884e6f529b8793"}, + {file = "pandas-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3bb9d840bf15656805f6a3d87eea9dcb7efdf1314a82adcf7f00b820427c5570"}, + {file = "pandas-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0778ab54c8f399d83d98ffb674d11ec716449956bc6f6821891ab835848687f2"}, + {file = "pandas-2.0.0-cp39-cp39-win32.whl", hash = "sha256:70db5c278bbec0306d32bf78751ff56b9594c05a5098386f6c8a563659124f91"}, + {file = "pandas-2.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:4f3320bb55f34af4193020158ef8118ee0fb9aec7cc47d2084dbfdd868a0a24f"}, + {file = "pandas-2.0.0.tar.gz", hash = "sha256:cda9789e61b44463c1c4fe17ef755de77bcd13b09ba31c940d20f193d63a5dc8"}, +] + +[package.dependencies] +numpy = [ + {version = ">=1.20.3", markers = "python_version < \"3.10\""}, + {version = ">=1.21.0", markers = "python_version >= \"3.10\""}, + {version = ">=1.23.2", markers = "python_version >= \"3.11\""}, +] +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.1" + +[package.extras] +all = ["PyQt5 (>=5.15.1)", "SQLAlchemy (>=1.4.16)", "beautifulsoup4 (>=4.9.3)", "bottleneck (>=1.3.2)", "brotlipy (>=0.7.0)", "fastparquet (>=0.6.3)", "fsspec (>=2021.07.0)", "gcsfs (>=2021.07.0)", "html5lib (>=1.1)", "hypothesis (>=6.34.2)", "jinja2 (>=3.0.0)", "lxml (>=4.6.3)", "matplotlib (>=3.6.1)", "numba (>=0.53.1)", "numexpr (>=2.7.3)", "odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pandas-gbq (>=0.15.0)", "psycopg2 (>=2.8.6)", "pyarrow (>=7.0.0)", "pymysql (>=1.0.2)", "pyreadstat (>=1.1.2)", "pytest (>=7.0.0)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)", "python-snappy (>=0.6.0)", "pyxlsb (>=1.0.8)", "qtpy (>=2.2.0)", "s3fs (>=2021.08.0)", "scipy (>=1.7.1)", "tables (>=3.6.1)", "tabulate (>=0.8.9)", "xarray (>=0.21.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)", "zstandard (>=0.15.2)"] +aws = ["s3fs (>=2021.08.0)"] +clipboard = ["PyQt5 (>=5.15.1)", "qtpy (>=2.2.0)"] +compression = ["brotlipy (>=0.7.0)", "python-snappy (>=0.6.0)", "zstandard (>=0.15.2)"] +computation = ["scipy (>=1.7.1)", "xarray (>=0.21.0)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pyxlsb (>=1.0.8)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)"] +feather = ["pyarrow (>=7.0.0)"] +fss = ["fsspec (>=2021.07.0)"] +gcp = ["gcsfs (>=2021.07.0)", "pandas-gbq (>=0.15.0)"] +hdf5 = ["tables (>=3.6.1)"] +html = ["beautifulsoup4 (>=4.9.3)", "html5lib (>=1.1)", "lxml (>=4.6.3)"] +mysql = ["SQLAlchemy (>=1.4.16)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.0.0)", "tabulate (>=0.8.9)"] +parquet = ["pyarrow (>=7.0.0)"] +performance = ["bottleneck (>=1.3.2)", "numba (>=0.53.1)", "numexpr (>=2.7.1)"] +plot = ["matplotlib (>=3.6.1)"] +postgresql = ["SQLAlchemy (>=1.4.16)", "psycopg2 (>=2.8.6)"] +spss = ["pyreadstat (>=1.1.2)"] +sql-other = ["SQLAlchemy (>=1.4.16)"] +test = ["hypothesis (>=6.34.2)", "pytest (>=7.0.0)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.6.3)"] + +[[package]] +name = "paramiko" +version = "3.1.0" +description = "SSH2 protocol library" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "paramiko-3.1.0-py3-none-any.whl", hash = "sha256:f0caa660e797d9cd10db6fc6ae81e2c9b2767af75c3180fcd0e46158cd368d7f"}, + {file = "paramiko-3.1.0.tar.gz", hash = "sha256:6950faca6819acd3219d4ae694a23c7a87ee38d084f70c1724b0c0dbb8b75769"}, +] + +[package.dependencies] +bcrypt = ">=3.2" +cryptography = ">=3.3" +pynacl = ">=1.5" + +[package.extras] +all = ["gssapi (>=1.4.1)", "invoke (>=2.0)", "pyasn1 (>=0.1.7)", "pywin32 (>=2.1.8)"] +gssapi = ["gssapi (>=1.4.1)", "pyasn1 (>=0.1.7)", "pywin32 (>=2.1.8)"] +invoke = ["invoke (>=2.0)"] + +[[package]] +name = "proto-plus" +version = "1.22.2" +description = "Beautiful, Pythonic protocol buffers." +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "proto-plus-1.22.2.tar.gz", hash = "sha256:0e8cda3d5a634d9895b75c573c9352c16486cb75deb0e078b5fda34db4243165"}, + {file = "proto_plus-1.22.2-py3-none-any.whl", hash = "sha256:de34e52d6c9c6fcd704192f09767cb561bb4ee64e70eede20b0834d841f0be4d"}, +] + +[package.dependencies] +protobuf = ">=3.19.0,<5.0.0dev" + +[package.extras] +testing = ["google-api-core[grpc] (>=1.31.5)"] + +[[package]] +name = "protobuf" +version = "4.22.3" +description = "" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "protobuf-4.22.3-cp310-abi3-win32.whl", hash = "sha256:8b54f56d13ae4a3ec140076c9d937221f887c8f64954673d46f63751209e839a"}, + {file = "protobuf-4.22.3-cp310-abi3-win_amd64.whl", hash = "sha256:7760730063329d42a9d4c4573b804289b738d4931e363ffbe684716b796bde51"}, + {file = "protobuf-4.22.3-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:d14fc1a41d1a1909998e8aff7e80d2a7ae14772c4a70e4bf7db8a36690b54425"}, + {file = "protobuf-4.22.3-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:70659847ee57a5262a65954538088a1d72dfc3e9882695cab9f0c54ffe71663b"}, + {file = "protobuf-4.22.3-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:13233ee2b9d3bd9a5f216c1fa2c321cd564b93d8f2e4f521a85b585447747997"}, + {file = "protobuf-4.22.3-cp37-cp37m-win32.whl", hash = "sha256:ecae944c6c2ce50dda6bf76ef5496196aeb1b85acb95df5843cd812615ec4b61"}, + {file = "protobuf-4.22.3-cp37-cp37m-win_amd64.whl", hash = "sha256:d4b66266965598ff4c291416be429cef7989d8fae88b55b62095a2331511b3fa"}, + {file = "protobuf-4.22.3-cp38-cp38-win32.whl", hash = "sha256:f08aa300b67f1c012100d8eb62d47129e53d1150f4469fd78a29fa3cb68c66f2"}, + {file = "protobuf-4.22.3-cp38-cp38-win_amd64.whl", hash = "sha256:f2f4710543abec186aee332d6852ef5ae7ce2e9e807a3da570f36de5a732d88e"}, + {file = "protobuf-4.22.3-cp39-cp39-win32.whl", hash = "sha256:7cf56e31907c532e460bb62010a513408e6cdf5b03fb2611e4b67ed398ad046d"}, + {file = "protobuf-4.22.3-cp39-cp39-win_amd64.whl", hash = "sha256:e0e630d8e6a79f48c557cd1835865b593d0547dce221c66ed1b827de59c66c97"}, + {file = "protobuf-4.22.3-py3-none-any.whl", hash = "sha256:52f0a78141078077cfe15fe333ac3e3a077420b9a3f5d1bf9b5fe9d286b4d881"}, + {file = "protobuf-4.22.3.tar.gz", hash = "sha256:23452f2fdea754a8251d0fc88c0317735ae47217e0d27bf330a30eec2848811a"}, +] + +[[package]] +name = "psycopg2" +version = "2.9.6" +description = "psycopg2 - Python-PostgreSQL Database Adapter" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "psycopg2-2.9.6-cp310-cp310-win32.whl", hash = "sha256:f7a7a5ee78ba7dc74265ba69e010ae89dae635eea0e97b055fb641a01a31d2b1"}, + {file = "psycopg2-2.9.6-cp310-cp310-win_amd64.whl", hash = "sha256:f75001a1cbbe523e00b0ef896a5a1ada2da93ccd752b7636db5a99bc57c44494"}, + {file = "psycopg2-2.9.6-cp311-cp311-win32.whl", hash = "sha256:53f4ad0a3988f983e9b49a5d9765d663bbe84f508ed655affdb810af9d0972ad"}, + {file = "psycopg2-2.9.6-cp311-cp311-win_amd64.whl", hash = "sha256:b81fcb9ecfc584f661b71c889edeae70bae30d3ef74fa0ca388ecda50b1222b7"}, + {file = "psycopg2-2.9.6-cp36-cp36m-win32.whl", hash = "sha256:11aca705ec888e4f4cea97289a0bf0f22a067a32614f6ef64fcf7b8bfbc53744"}, + {file = "psycopg2-2.9.6-cp36-cp36m-win_amd64.whl", hash = "sha256:36c941a767341d11549c0fbdbb2bf5be2eda4caf87f65dfcd7d146828bd27f39"}, + {file = "psycopg2-2.9.6-cp37-cp37m-win32.whl", hash = "sha256:869776630c04f335d4124f120b7fb377fe44b0a7645ab3c34b4ba42516951889"}, + {file = "psycopg2-2.9.6-cp37-cp37m-win_amd64.whl", hash = "sha256:a8ad4a47f42aa6aec8d061fdae21eaed8d864d4bb0f0cade5ad32ca16fcd6258"}, + {file = "psycopg2-2.9.6-cp38-cp38-win32.whl", hash = "sha256:2362ee4d07ac85ff0ad93e22c693d0f37ff63e28f0615a16b6635a645f4b9214"}, + {file = "psycopg2-2.9.6-cp38-cp38-win_amd64.whl", hash = "sha256:d24ead3716a7d093b90b27b3d73459fe8cd90fd7065cf43b3c40966221d8c394"}, + {file = "psycopg2-2.9.6-cp39-cp39-win32.whl", hash = "sha256:1861a53a6a0fd248e42ea37c957d36950da00266378746588eab4f4b5649e95f"}, + {file = "psycopg2-2.9.6-cp39-cp39-win_amd64.whl", hash = "sha256:ded2faa2e6dfb430af7713d87ab4abbfc764d8d7fb73eafe96a24155f906ebf5"}, + {file = "psycopg2-2.9.6.tar.gz", hash = "sha256:f15158418fd826831b28585e2ab48ed8df2d0d98f502a2b4fe619e7d5ca29011"}, +] + +[[package]] +name = "pyarrow" +version = "11.0.0" +description = "Python library for Apache Arrow" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyarrow-11.0.0-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:40bb42afa1053c35c749befbe72f6429b7b5f45710e85059cdd534553ebcf4f2"}, + {file = "pyarrow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7c28b5f248e08dea3b3e0c828b91945f431f4202f1a9fe84d1012a761324e1ba"}, + {file = "pyarrow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a37bc81f6c9435da3c9c1e767324ac3064ffbe110c4e460660c43e144be4ed85"}, + {file = "pyarrow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad7c53def8dbbc810282ad308cc46a523ec81e653e60a91c609c2233ae407689"}, + {file = "pyarrow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:25aa11c443b934078bfd60ed63e4e2d42461682b5ac10f67275ea21e60e6042c"}, + {file = "pyarrow-11.0.0-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:e217d001e6389b20a6759392a5ec49d670757af80101ee6b5f2c8ff0172e02ca"}, + {file = "pyarrow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ad42bb24fc44c48f74f0d8c72a9af16ba9a01a2ccda5739a517aa860fa7e3d56"}, + {file = "pyarrow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d942c690ff24a08b07cb3df818f542a90e4d359381fbff71b8f2aea5bf58841"}, + {file = "pyarrow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f010ce497ca1b0f17a8243df3048055c0d18dcadbcc70895d5baf8921f753de5"}, + {file = "pyarrow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:2f51dc7ca940fdf17893227edb46b6784d37522ce08d21afc56466898cb213b2"}, + {file = "pyarrow-11.0.0-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:1cbcfcbb0e74b4d94f0b7dde447b835a01bc1d16510edb8bb7d6224b9bf5bafc"}, + {file = "pyarrow-11.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaee8f79d2a120bf3e032d6d64ad20b3af6f56241b0ffc38d201aebfee879d00"}, + {file = "pyarrow-11.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:410624da0708c37e6a27eba321a72f29d277091c8f8d23f72c92bada4092eb5e"}, + {file = "pyarrow-11.0.0-cp37-cp37m-win_amd64.whl", hash = "sha256:2d53ba72917fdb71e3584ffc23ee4fcc487218f8ff29dd6df3a34c5c48fe8c06"}, + {file = "pyarrow-11.0.0-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:f12932e5a6feb5c58192209af1d2607d488cb1d404fbc038ac12ada60327fa34"}, + {file = "pyarrow-11.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:41a1451dd895c0b2964b83d91019e46f15b5564c7ecd5dcb812dadd3f05acc97"}, + {file = "pyarrow-11.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:becc2344be80e5dce4e1b80b7c650d2fc2061b9eb339045035a1baa34d5b8f1c"}, + {file = "pyarrow-11.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f40be0d7381112a398b93c45a7e69f60261e7b0269cc324e9f739ce272f4f70"}, + {file = "pyarrow-11.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:362a7c881b32dc6b0eccf83411a97acba2774c10edcec715ccaab5ebf3bb0835"}, + {file = "pyarrow-11.0.0-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:ccbf29a0dadfcdd97632b4f7cca20a966bb552853ba254e874c66934931b9841"}, + {file = "pyarrow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e99be85973592051e46412accea31828da324531a060bd4585046a74ba45854"}, + {file = "pyarrow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69309be84dcc36422574d19c7d3a30a7ea43804f12552356d1ab2a82a713c418"}, + {file = "pyarrow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da93340fbf6f4e2a62815064383605b7ffa3e9eeb320ec839995b1660d69f89b"}, + {file = "pyarrow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:caad867121f182d0d3e1a0d36f197df604655d0b466f1bc9bafa903aa95083e4"}, + {file = "pyarrow-11.0.0.tar.gz", hash = "sha256:5461c57dbdb211a632a48facb9b39bbeb8a7905ec95d768078525283caef5f6d"}, +] + +[package.dependencies] +numpy = ">=1.16.6" + +[[package]] +name = "pyasn1" +version = "0.5.0" +description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, + {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, +] + +[[package]] +name = "pyasn1-modules" +version = "0.3.0" +description = "A collection of ASN.1-based protocols modules" +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1_modules-0.3.0-py2.py3-none-any.whl", hash = "sha256:d3ccd6ed470d9ffbc716be08bd90efbd44d0734bc9303818f7336070984a162d"}, + {file = "pyasn1_modules-0.3.0.tar.gz", hash = "sha256:5bd01446b736eb9d31512a30d46c1ac3395d676c6f3cafa4c03eb54b9925631c"}, +] + +[package.dependencies] +pyasn1 = ">=0.4.6,<0.6.0" + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] + +[[package]] +name = "pynacl" +version = "1.5.0" +description = "Python binding to the Networking and Cryptography (NaCl) library" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858"}, + {file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b"}, + {file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff"}, + {file = "PyNaCl-1.5.0-cp36-abi3-win32.whl", hash = "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543"}, + {file = "PyNaCl-1.5.0-cp36-abi3-win_amd64.whl", hash = "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93"}, + {file = "PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba"}, +] + +[package.dependencies] +cffi = ">=1.4.1" + +[package.extras] +docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"] +tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] + +[[package]] +name = "pysftp" +version = "0.2.9" +description = "A friendly face on SFTP" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "pysftp-0.2.9.tar.gz", hash = "sha256:fbf55a802e74d663673400acd92d5373c1c7ee94d765b428d9f977567ac4854a"}, +] + +[package.dependencies] +paramiko = ">=1.17" + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "pytz" +version = "2023.3" +description = "World timezone definitions, modern and historical" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2023.3-py2.py3-none-any.whl", hash = "sha256:a151b3abb88eda1d4e34a9814df37de2a80e301e68ba0fd856fb9b46bfbbbffb"}, + {file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"}, +] + +[[package]] +name = "requests" +version = "2.28.2" +description = "Python HTTP for Humans." +category = "main" +optional = false +python-versions = ">=3.7, <4" +files = [ + {file = "requests-2.28.2-py3-none-any.whl", hash = "sha256:64299f4909223da747622c030b781c0d7811e359c37124b4bd368fb8c6518baa"}, + {file = "requests-2.28.2.tar.gz", hash = "sha256:98b1b2782e3c6c4904938b84c0eb932721069dfdb9134313beff7c83c2df24bf"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<1.27" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rsa" +version = "4.9" +description = "Pure-Python RSA implementation" +category = "main" +optional = false +python-versions = ">=3.6,<4" +files = [ + {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, + {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, +] + +[package.dependencies] +pyasn1 = ">=0.1.3" + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "tzdata" +version = "2023.3" +description = "Provider of IANA time zone data" +category = "main" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2023.3-py2.py3-none-any.whl", hash = "sha256:7e65763eef3120314099b6939b5546db7adce1e7d6f2e179e3df563c70511eda"}, + {file = "tzdata-2023.3.tar.gz", hash = "sha256:11ef1e08e54acb0d4f95bdb1be05da659673de4acbd21bf9c69e94cc5e907a3a"}, +] + +[[package]] +name = "urllib3" +version = "1.26.15" +description = "HTTP library with thread-safe connection pooling, file post, and more." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.15-py2.py3-none-any.whl", hash = "sha256:aa751d169e23c7479ce47a0cb0da579e3ede798f994f5816a74e4f4500dcea42"}, + {file = "urllib3-1.26.15.tar.gz", hash = "sha256:8a388717b9476f934a21484e8c8e61875ab60644d29b9b39e11e4b9dc1c6b305"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.9" +content-hash = "2b713c77119828e440440ac77acfd2daf2f0ab744735cb5330f05b4b04329948" diff --git a/00-bootcamp-project/pyproject.toml b/00-bootcamp-project/pyproject.toml new file mode 100644 index 000000000..6b98cc372 --- /dev/null +++ b/00-bootcamp-project/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "bootcamp-project" +version = "0.1.0" +description = "" +authors = ["zkan "] + +[tool.poetry.dependencies] +python = "^3.9" +requests = "^2.28.2" +pysftp = "^0.2.9" +psycopg2 = "^2.9.6" +google-cloud-bigquery = "^3.9.0" +pandas = "^2.0.0" +pyarrow = "^11.0.0" + +[tool.poetry.dev-dependencies] + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" \ No newline at end of file diff --git a/01-introduction-to-data-engineering/examples/extracting-data-from-sources/apis/main.py b/01-introduction-to-data-engineering/examples/extracting-data-from-sources/apis/main.py index 170fde2f8..c43ee0c36 100644 --- a/01-introduction-to-data-engineering/examples/extracting-data-from-sources/apis/main.py +++ b/01-introduction-to-data-engineering/examples/extracting-data-from-sources/apis/main.py @@ -1,7 +1,7 @@ import requests -API_URL = "http://0.0.0.0:8000" +API_URL = "http://34.87.139.82:8000/" DATA = "events" DATE = "2021-02-10" diff --git a/01-introduction-to-data-engineering/examples/extracting-data-from-sources/direct-database-connection/postgresql/main.py b/01-introduction-to-data-engineering/examples/extracting-data-from-sources/direct-database-connection/postgresql/main.py index 699292f72..5ae800afa 100644 --- a/01-introduction-to-data-engineering/examples/extracting-data-from-sources/direct-database-connection/postgresql/main.py +++ b/01-introduction-to-data-engineering/examples/extracting-data-from-sources/direct-database-connection/postgresql/main.py @@ -3,8 +3,8 @@ import datetime import pandas as pd -import psycopg2 -from sqlalchemy import create_engine +import psycopg2 ##library for pulling data from postgres +from sqlalchemy import create_engine parser = configparser.ConfigParser() @@ -26,6 +26,7 @@ ("users", datetime.date(2020, 5, 4)), ] for table, dt in tables: + #put your query here query = f"select * from {table} where date(created_at) = '{dt}' limit 3" print(query) cursor.execute(query) @@ -66,12 +67,13 @@ print("-" * 5) - +# 2. print("#### Full Extraction using Pandas ###") engine = create_engine(f"postgresql+psycopg2://{user}:{password}@{host}:{port}/{dbname}") df = pd.read_sql("select * from orders", engine) print(df.head(3)) +# 3. print("### Incremental Extraction ###") """ The last_extraction_run is a timestamp representing the most recent run of the diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/Activate.ps1 b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/Activate.ps1 new file mode 100644 index 000000000..b49d77ba4 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate new file mode 100644 index 000000000..972f91789 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate @@ -0,0 +1,69 @@ +# 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 + + # This should detect bash and zsh, which have a hash command that must + # be called to get it to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r 2> /dev/null + fi + + 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 + +VIRTUAL_ENV="/workspaces/data-engineering-bootcamp/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle" +export VIRTUAL_ENV + +_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="(de-lifecycle) ${PS1:-}" + export PS1 + VIRTUAL_ENV_PROMPT="(de-lifecycle) " + export VIRTUAL_ENV_PROMPT +fi + +# This should detect bash and zsh, which have a hash command that must +# be called to get it to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r 2> /dev/null +fi diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate.csh b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate.csh new file mode 100644 index 000000000..ca2672d58 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate.csh @@ -0,0 +1,26 @@ +# 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 "/workspaces/data-engineering-bootcamp/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle" + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/bin:$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + set prompt = "(de-lifecycle) $prompt" + setenv VIRTUAL_ENV_PROMPT "(de-lifecycle) " +endif + +alias pydoc python -m pydoc + +rehash diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate.fish b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate.fish new file mode 100644 index 000000000..6a92083a6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/activate.fish @@ -0,0 +1,66 @@ +# 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" + functions -e fish_prompt + set -e _OLD_FISH_PROMPT_OVERRIDE + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + 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 "/workspaces/data-engineering-bootcamp/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle" + +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) "(de-lifecycle) " (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 "(de-lifecycle) " +end diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/normalizer b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/normalizer new file mode 100755 index 000000000..5f0cb3b48 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/normalizer @@ -0,0 +1,10 @@ +#!/bin/sh +'''exec' /workspaces/data-engineering-bootcamp/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python "$0" "$@" +' ''' +# -*- coding: utf-8 -*- +import re +import sys +from charset_normalizer.cli.normalizer import cli_detect +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(cli_detect()) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip new file mode 100755 index 000000000..5fd0fa5cc --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip @@ -0,0 +1,10 @@ +#!/bin/sh +'''exec' /workspaces/data-engineering-bootcamp/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python "$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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip3 b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip3 new file mode 100755 index 000000000..5fd0fa5cc --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip3 @@ -0,0 +1,10 @@ +#!/bin/sh +'''exec' /workspaces/data-engineering-bootcamp/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python "$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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip3.10 b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip3.10 new file mode 100755 index 000000000..5fd0fa5cc --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/pip3.10 @@ -0,0 +1,10 @@ +#!/bin/sh +'''exec' /workspaces/data-engineering-bootcamp/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python "$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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python new file mode 120000 index 000000000..7ae5fe3d1 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python @@ -0,0 +1 @@ +/home/codespace/.python/current/bin/python \ No newline at end of file diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python3 b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python3 new file mode 120000 index 000000000..d8654aa0e --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python3 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python3.10 b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python3.10 new file mode 120000 index 000000000..d8654aa0e --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/bin/python3.10 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/__init__.py new file mode 100644 index 000000000..5f40996a6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/__init__.py @@ -0,0 +1,128 @@ +import sys +import os +import re +import importlib +import warnings + + +is_pypy = '__pypy__' in sys.builtin_module_names + + +warnings.filterwarnings('ignore', + r'.+ distutils\b.+ deprecated', + DeprecationWarning) + + +def warn_distutils_present(): + if 'distutils' not in sys.modules: + return + if is_pypy and sys.version_info < (3, 7): + # PyPy for 3.6 unconditionally imports distutils, so bypass the warning + # https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250 + return + warnings.warn( + "Distutils was imported before Setuptools, but importing Setuptools " + "also replaces the `distutils` module in `sys.modules`. This may lead " + "to undesirable behaviors or errors. To avoid these issues, avoid " + "using distutils directly, ensure that setuptools is installed in the " + "traditional way (e.g. not an editable install), and/or make sure " + "that setuptools is always imported before distutils.") + + +def clear_distutils(): + if 'distutils' not in sys.modules: + return + warnings.warn("Setuptools is replacing distutils.") + mods = [name for name in sys.modules if re.match(r'distutils\b', name)] + for name in mods: + del sys.modules[name] + + +def enabled(): + """ + Allow selection of distutils by environment variable. + """ + which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'stdlib') + return which == 'local' + + +def ensure_local_distutils(): + clear_distutils() + distutils = importlib.import_module('setuptools._distutils') + distutils.__name__ = 'distutils' + sys.modules['distutils'] = distutils + + # sanity check that submodules load as expected + core = importlib.import_module('distutils.core') + assert '_distutils' in core.__file__, core.__file__ + + +def do_override(): + """ + Ensure that the local copy of distutils is preferred over stdlib. + + See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401 + for more motivation. + """ + if enabled(): + warn_distutils_present() + ensure_local_distutils() + + +class DistutilsMetaFinder: + def find_spec(self, fullname, path, target=None): + if path is not None: + return + + method_name = 'spec_for_{fullname}'.format(**locals()) + method = getattr(self, method_name, lambda: None) + return method() + + def spec_for_distutils(self): + import importlib.abc + import importlib.util + + class DistutilsLoader(importlib.abc.Loader): + + def create_module(self, spec): + return importlib.import_module('setuptools._distutils') + + def exec_module(self, module): + pass + + return importlib.util.spec_from_loader('distutils', DistutilsLoader()) + + def spec_for_pip(self): + """ + Ensure stdlib distutils when running under pip. + See pypa/pip#8761 for rationale. + """ + if self.pip_imported_during_build(): + return + clear_distutils() + self.spec_for_distutils = lambda: None + + @staticmethod + def pip_imported_during_build(): + """ + Detect if pip is being imported in a build script. Ref #2355. + """ + import traceback + return any( + frame.f_globals['__file__'].endswith('setup.py') + for frame, line in traceback.walk_stack(None) + ) + + +DISTUTILS_FINDER = DistutilsMetaFinder() + + +def add_shim(): + sys.meta_path.insert(0, DISTUTILS_FINDER) + + +def remove_shim(): + try: + sys.meta_path.remove(DISTUTILS_FINDER) + except ValueError: + pass diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..55c644bbfc6fdc2b3c6477093a02dee8db3d4258 GIT binary patch literal 5218 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..492630467c2c47a8571a82546df77715576fd425 GIT binary patch literal 324 zcmZut!Ab)$5Y6tXREqtLf@xa3N)fz!@zzU7lW}+0Y$haAWzSyx3_W`HYkKuBJegI* zQhYFPcrZNP8=B3gqM&=eaTjHOjN%w|5!Yq%ybuT{o~oDXRaC-NcVba*&$YwMdq$si zYixJBs1H-Ev5%Bk>+P8%O%IR~I(QRlwEL#dclAiA%h6cK${98iLW2PyVQA!zh^^_P zTCF7pPUQBMk%DBBr^i1=EyaI)Jl=yHtOw;l{t1se6$fr9TrSrum61V~B%NtWn3G28 WH~umXhsjl6qIlR;<4?vmbMXZhbY!*w literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/override.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/override.py new file mode 100644 index 000000000..2cc433a4a --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/_distutils_hack/override.py @@ -0,0 +1 @@ +__import__('_distutils_hack').do_override() diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/INSTALLER b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/INSTALLER new file mode 100644 index 000000000..a1b589e38 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/LICENSE b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/LICENSE new file mode 100644 index 000000000..0a64774ea --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/LICENSE @@ -0,0 +1,21 @@ +This package contains a modified version of ca-bundle.crt: + +ca-bundle.crt -- Bundle of CA Root Certificates + +Certificate data from Mozilla as of: Thu Nov 3 19:04:19 2011# +This is a bundle of X.509 certificates of public Certificate Authorities +(CA). These were automatically extracted from Mozilla's root certificates +file (certdata.txt). This file can be found in the mozilla source tree: +https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt +It contains the certificates in PEM format and therefore +can be directly used with curl / libcurl / php_curl, or with +an Apache+mod_ssl webserver for SSL client authentication. +Just configure this file as the SSLCACertificateFile.# + +***** BEGIN LICENSE BLOCK ***** +This Source Code Form is subject to the terms of the Mozilla Public License, +v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain +one at http://mozilla.org/MPL/2.0/. + +***** END LICENSE BLOCK ***** +@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $ diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/METADATA b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/METADATA new file mode 100644 index 000000000..aeb1991ae --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/METADATA @@ -0,0 +1,83 @@ +Metadata-Version: 2.1 +Name: certifi +Version: 2022.12.7 +Summary: Python package for providing Mozilla's CA Bundle. +Home-page: https://github.com/certifi/python-certifi +Author: Kenneth Reitz +Author-email: me@kennethreitz.com +License: MPL-2.0 +Project-URL: Source, https://github.com/certifi/python-certifi +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) +Classifier: Natural Language :: English +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.6 +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 +Requires-Python: >=3.6 +License-File: LICENSE + +Certifi: Python SSL Certificates +================================ + +Certifi provides Mozilla's carefully curated collection of Root Certificates for +validating the trustworthiness of SSL certificates while verifying the identity +of TLS hosts. It has been extracted from the `Requests`_ project. + +Installation +------------ + +``certifi`` is available on PyPI. Simply install it with ``pip``:: + + $ pip install certifi + +Usage +----- + +To reference the installed certificate authority (CA) bundle, you can use the +built-in function:: + + >>> import certifi + + >>> certifi.where() + '/usr/local/lib/python3.7/site-packages/certifi/cacert.pem' + +Or from the command line:: + + $ python -m certifi + /usr/local/lib/python3.7/site-packages/certifi/cacert.pem + +Enjoy! + +1024-bit Root Certificates +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Browsers and certificate authorities have concluded that 1024-bit keys are +unacceptably weak for certificates, particularly root certificates. For this +reason, Mozilla has removed any weak (i.e. 1024-bit key) certificate from its +bundle, replacing it with an equivalent strong (i.e. 2048-bit or greater key) +certificate from the same CA. Because Mozilla removed these certificates from +its bundle, ``certifi`` removed them as well. + +In previous versions, ``certifi`` provided the ``certifi.old_where()`` function +to intentionally re-add the 1024-bit roots back into your bundle. This was not +recommended in production and therefore was removed at the end of 2018. + +.. _`Requests`: https://requests.readthedocs.io/en/master/ + +Addition/Removal of Certificates +-------------------------------- + +Certifi does not support any addition/removal or other modification of the +CA trust store content. This project is intended to provide a reliable and +highly portable root of trust to python deployments. Look to upstream projects +for methods to use alternate trust. + + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/RECORD b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/RECORD new file mode 100644 index 000000000..588b566b5 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/RECORD @@ -0,0 +1,14 @@ +certifi-2022.12.7.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +certifi-2022.12.7.dist-info/LICENSE,sha256=oC9sY4-fuE0G93ZMOrCF2K9-2luTwWbaVDEkeQd8b7A,1052 +certifi-2022.12.7.dist-info/METADATA,sha256=chFpcxKhCPEQ3d8-Vz36zr2Micf1eQhKkFFk7_JvJNo,2911 +certifi-2022.12.7.dist-info/RECORD,, +certifi-2022.12.7.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92 +certifi-2022.12.7.dist-info/top_level.txt,sha256=KMu4vUCfsjLrkPbSNdgdekS-pVJzBAJFO__nI8NF6-U,8 +certifi/__init__.py,sha256=bK_nm9bLJzNvWZc2oZdiTwg2KWD4HSPBWGaM0zUDvMw,94 +certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243 +certifi/__pycache__/__init__.cpython-310.pyc,, +certifi/__pycache__/__main__.cpython-310.pyc,, +certifi/__pycache__/core.cpython-310.pyc,, +certifi/cacert.pem,sha256=LBHDzgj_xA05AxnHK8ENT5COnGNElNZe0svFUHMf1SQ,275233 +certifi/core.py,sha256=lhewz0zFb2b4ULsQurElmloYwQoecjWzPqY67P8T7iM,4219 +certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/WHEEL b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/WHEEL new file mode 100644 index 000000000..5bad85fdc --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.37.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/top_level.txt b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/top_level.txt new file mode 100644 index 000000000..963eac530 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi-2022.12.7.dist-info/top_level.txt @@ -0,0 +1 @@ +certifi diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__init__.py new file mode 100644 index 000000000..a3546f125 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__init__.py @@ -0,0 +1,4 @@ +from .core import contents, where + +__all__ = ["contents", "where"] +__version__ = "2022.12.07" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__main__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__main__.py new file mode 100644 index 000000000..8945b5da8 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6ff2bdf655490ce38bd6653bdaa2f8d09115f7ac GIT binary patch literal 378 zcmZvYu};G<5QZHmX``Y_JOXP6$4MAi5JF;SVatG(+SkOYV@I~33U9!pAhGZ|S($hR zraEGvLY#E}>DQe;{W`N=uTZFu*E{hT=I3lq3kP!>+Fb+@NJI+tQ62TT#t{-WC4 zk<^JuAJAs;6@{}6o-%H<2kqUI9y+jKXO4}7ysWCCs`9eRi>v!hIwjnkuBRnqjZ%zF zXN*0Ab<$|Y-jH3+fLXrZ>A~2&8yXIdipDntbSpK0mAWNcV?1yAffgl^+FK)@xDOEG z4f%Wg1M1B14@b!z@R2K^0?4mXa!ZHNcSc|4WkH?vKthsz(}pk{td~1U8IxLi#`0mD UvgPG>zDB?Qm&?U{VT`O=Z!Cq#0B*JcQkNLrDso2;TW%UB&`0VP20 z2M;6*AzVf>kOLXY=&sYl`yuKv#7k!OUYc{#3Mq43?B9ISs~xv~&|}yd)woAu#$8kg?@#HCHrKWl1=v&yCpa{vY5>q# z@++-fA?h~WKj64&v|RNCxzqfw`7>yt+kbK@HHTtdRFF#GKcrGuX}fj{-5kyi_EW1I uaBOldN-XpB?KID8p_)9OwQCSO;7uRZzPo0~SBS;>(TI}|t^K6W_seKS;EuloerpTDh%U*-t; z3n!Ob6((Oo*FGggkdO!}*pP-)(j6w8U02iBu--r`_>^|Ld#f`&)xlw@10y8_KqlW>00hZ3eQPX4=HVVQkVoYY+2eqU8N{ z5~HQ=SdQAcYNtlGlRPsrGrH@aAsOodJ9A(>LpB0t%dw97=}=l1rM9KXH3^=*+&E0u zpzBXS7@%*Ds0Bj}6ZD84JA$3S7<1zqeq1^spu?$6a_X$x@-(<}f973KwzX*O{@T}% zwxW&uTMrc4S1t(a?c`}Tj?KVUFHWp&eQzCYl&wSEG`of6f=Pf(oy(c90}t{y}1 zx+h{2cVxDmW>Ts&+wMHhbCblQaqsSGC(VokI1>b}WAe_MhbM*x`S=<;!?Z7xgJdXs zLUv}8Vfwf?J}`qkyVqU4+taC$9q?o~-Uer;q4$zpNg&s{`va-uJUFdA5T4hn)+lER zSFT`=JQbKPg94Z%(oixdMY#z6oC3b?xZknPSW(0T2E$4E+F{8DL_@owyh`` zi^#~I%?!JV2IUICU!+O^GtEFOQ*{G|fGM1vl?&Z+BuAl7Z}<2^*qvrc(@-p`BNj8` z7!83 zGXR{kNmL7#PH7RwwKrhk5Aj@3p7=kRP)X@*QDN zZ5)0_4uy(ZC3<2@+!^nc7rcdw{L-B$PPUQYES6XiOvrJ=@WRB(Jjo&z_l#b zY6VnV7OBeOk+fb^ygN~3ITk$NOZ#s+gjLapuJOVeZM>afbsJ6;oT_(FyDn#t(Oukp z7X;+=`>3~3U$W&W5_tm7IQl@_+D}qx;5tgPer^}i(KuHI>b!fws-C@9s>oK%;7Q7& z&qdV~@hU`Ul4N&4v#vQ9<0}gTRHu3m*Zgma2Yw57Y= (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("certifi").joinpath("cacert.pem")) + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + + return _CACERT_PATH + + def contents() -> str: + return files("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("certifi", "cacert.pem") + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + + return _CACERT_PATH + + def contents() -> str: + return read_text("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("certifi", "cacert.pem", encoding="ascii") diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/py.typed b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/certifi/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/INSTALLER b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/INSTALLER new file mode 100644 index 000000000..a1b589e38 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/LICENSE b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/LICENSE new file mode 100644 index 000000000..ad82355b8 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 TAHRI Ahmed R. + +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. \ No newline at end of file diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/METADATA b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/METADATA new file mode 100644 index 000000000..867b915c9 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/METADATA @@ -0,0 +1,616 @@ +Metadata-Version: 2.1 +Name: charset-normalizer +Version: 3.1.0 +Summary: The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet. +Home-page: https://github.com/Ousret/charset_normalizer +Author: Ahmed TAHRI +Author-email: ahmed.tahri@cloudnursery.dev +License: MIT +Project-URL: Bug Reports, https://github.com/Ousret/charset_normalizer/issues +Project-URL: Documentation, https://charset-normalizer.readthedocs.io/en/latest +Keywords: encoding,charset,charset-detector,detector,normalization,unicode,chardet,detect +Classifier: Development Status :: 5 - Production/Stable +Classifier: License :: OSI Approved :: MIT License +Classifier: Intended Audience :: Developers +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +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 :: Implementation :: PyPy +Classifier: Topic :: Text Processing :: Linguistic +Classifier: Topic :: Utilities +Classifier: Typing :: Typed +Requires-Python: >=3.7.0 +Description-Content-Type: text/markdown +License-File: LICENSE +Provides-Extra: unicode_backport + +

Charset Detection, for Everyone 👋

+ +

+ The Real First Universal Charset Detector
+ + + + + + + + Download Count Total + +

+ +> A library that helps you read text from an unknown charset encoding.
Motivated by `chardet`, +> I'm trying to resolve the issue by taking a new approach. +> All IANA character set names for which the Python core library provides codecs are supported. + +

+ >>>>> 👉 Try Me Online Now, Then Adopt Me 👈 <<<<< +

+ +This project offers you an alternative to **Universal Charset Encoding Detector**, also known as **Chardet**. + +| Feature | [Chardet](https://github.com/chardet/chardet) | Charset Normalizer | [cChardet](https://github.com/PyYoshi/cChardet) | +|--------------------------------------------------|:---------------------------------------------:|:------------------------------------------------------------------------------------------------------:|:-----------------------------------------------:| +| `Fast` | ❌
| ✅
| ✅
| +| `Universal**` | ❌ | ✅ | ❌ | +| `Reliable` **without** distinguishable standards | ❌ | ✅ | ✅ | +| `Reliable` **with** distinguishable standards | ✅ | ✅ | ✅ | +| `License` | LGPL-2.1
_restrictive_ | MIT | MPL-1.1
_restrictive_ | +| `Native Python` | ✅ | ✅ | ❌ | +| `Detect spoken language` | ❌ | ✅ | N/A | +| `UnicodeDecodeError Safety` | ❌ | ✅ | ❌ | +| `Whl Size` | 193.6 kB | 39.5 kB | ~200 kB | +| `Supported Encoding` | 33 | :tada: [90](https://charset-normalizer.readthedocs.io/en/latest/user/support.html#supported-encodings) | 40 | + +

+Reading Normalized TextCat Reading Text + +*\*\* : They are clearly using specific code for a specific encoding even if covering most of used one*
+Did you got there because of the logs? See [https://charset-normalizer.readthedocs.io/en/latest/user/miscellaneous.html](https://charset-normalizer.readthedocs.io/en/latest/user/miscellaneous.html) + +## ⭐ Your support + +*Fork, test-it, star-it, submit your ideas! We do listen.* + +## ⚡ Performance + +This package offer better performance than its counterpart Chardet. Here are some numbers. + +| Package | Accuracy | Mean per file (ms) | File per sec (est) | +|-----------------------------------------------|:--------:|:------------------:|:------------------:| +| [chardet](https://github.com/chardet/chardet) | 86 % | 200 ms | 5 file/sec | +| charset-normalizer | **98 %** | **10 ms** | 100 file/sec | + +| Package | 99th percentile | 95th percentile | 50th percentile | +|-----------------------------------------------|:---------------:|:---------------:|:---------------:| +| [chardet](https://github.com/chardet/chardet) | 1200 ms | 287 ms | 23 ms | +| charset-normalizer | 100 ms | 50 ms | 5 ms | + +Chardet's performance on larger file (1MB+) are very poor. Expect huge difference on large payload. + +> Stats are generated using 400+ files using default parameters. More details on used files, see GHA workflows. +> And yes, these results might change at any time. The dataset can be updated to include more files. +> The actual delays heavily depends on your CPU capabilities. The factors should remain the same. +> Keep in mind that the stats are generous and that Chardet accuracy vs our is measured using Chardet initial capability +> (eg. Supported Encoding) Challenge-them if you want. + +## ✨ Installation + +Using PyPi for latest stable +```sh +pip install charset-normalizer -U +``` + +## 🚀 Basic Usage + +### CLI +This package comes with a CLI. + +``` +usage: normalizer [-h] [-v] [-a] [-n] [-m] [-r] [-f] [-t THRESHOLD] + file [file ...] + +The Real First Universal Charset Detector. Discover originating encoding used +on text file. Normalize text to unicode. + +positional arguments: + files File(s) to be analysed + +optional arguments: + -h, --help show this help message and exit + -v, --verbose Display complementary information about file if any. + Stdout will contain logs about the detection process. + -a, --with-alternative + Output complementary possibilities if any. Top-level + JSON WILL be a list. + -n, --normalize Permit to normalize input file. If not set, program + does not write anything. + -m, --minimal Only output the charset detected to STDOUT. Disabling + JSON output. + -r, --replace Replace file when trying to normalize it instead of + creating a new one. + -f, --force Replace file without asking if you are sure, use this + flag with caution. + -t THRESHOLD, --threshold THRESHOLD + Define a custom maximum amount of chaos allowed in + decoded content. 0. <= chaos <= 1. + --version Show version information and exit. +``` + +```bash +normalizer ./data/sample.1.fr.srt +``` + +:tada: Since version 1.4.0 the CLI produce easily usable stdout result in JSON format. + +```json +{ + "path": "/home/default/projects/charset_normalizer/data/sample.1.fr.srt", + "encoding": "cp1252", + "encoding_aliases": [ + "1252", + "windows_1252" + ], + "alternative_encodings": [ + "cp1254", + "cp1256", + "cp1258", + "iso8859_14", + "iso8859_15", + "iso8859_16", + "iso8859_3", + "iso8859_9", + "latin_1", + "mbcs" + ], + "language": "French", + "alphabets": [ + "Basic Latin", + "Latin-1 Supplement" + ], + "has_sig_or_bom": false, + "chaos": 0.149, + "coherence": 97.152, + "unicode_path": null, + "is_preferred": true +} +``` + +### Python +*Just print out normalized text* +```python +from charset_normalizer import from_path + +results = from_path('./my_subtitle.srt') + +print(str(results.best())) +``` + +*Upgrade your code without effort* +```python +from charset_normalizer import detect +``` + +The above code will behave the same as **chardet**. We ensure that we offer the best (reasonable) BC result possible. + +See the docs for advanced usage : [readthedocs.io](https://charset-normalizer.readthedocs.io/en/latest/) + +## 😇 Why + +When I started using Chardet, I noticed that it was not suited to my expectations, and I wanted to propose a +reliable alternative using a completely different method. Also! I never back down on a good challenge! + +I **don't care** about the **originating charset** encoding, because **two different tables** can +produce **two identical rendered string.** +What I want is to get readable text, the best I can. + +In a way, **I'm brute forcing text decoding.** How cool is that ? 😎 + +Don't confuse package **ftfy** with charset-normalizer or chardet. ftfy goal is to repair unicode string whereas charset-normalizer to convert raw file in unknown encoding to unicode. + +## 🍰 How + + - Discard all charset encoding table that could not fit the binary content. + - Measure noise, or the mess once opened (by chunks) with a corresponding charset encoding. + - Extract matches with the lowest mess detected. + - Additionally, we measure coherence / probe for a language. + +**Wait a minute**, what is noise/mess and coherence according to **YOU ?** + +*Noise :* I opened hundred of text files, **written by humans**, with the wrong encoding table. **I observed**, then +**I established** some ground rules about **what is obvious** when **it seems like** a mess. + I know that my interpretation of what is noise is probably incomplete, feel free to contribute in order to + improve or rewrite it. + +*Coherence :* For each language there is on earth, we have computed ranked letter appearance occurrences (the best we can). So I thought +that intel is worth something here. So I use those records against decoded text to check if I can detect intelligent design. + +## ⚡ Known limitations + + - Language detection is unreliable when text contains two or more languages sharing identical letters. (eg. HTML (english tags) + Turkish content (Sharing Latin characters)) + - Every charset detector heavily depends on sufficient content. In common cases, do not bother run detection on very tiny content. + +## ⚠️ About Python EOLs + +**If you are running:** + +- Python >=2.7,<3.5: Unsupported +- Python 3.5: charset-normalizer < 2.1 +- Python 3.6: charset-normalizer < 3.1 + +Upgrade your Python interpreter as soon as possible. + +## 👤 Contributing + +Contributions, issues and feature requests are very much welcome.
+Feel free to check [issues page](https://github.com/ousret/charset_normalizer/issues) if you want to contribute. + +## 📝 License + +Copyright © [Ahmed TAHRI @Ousret](https://github.com/Ousret).
+This project is [MIT](https://github.com/Ousret/charset_normalizer/blob/master/LICENSE) licensed. + +Characters frequencies used in this project © 2012 [Denny Vrandečić](http://simia.net/letters/) + +## 💼 For Enterprise + +Professional support for charset-normalizer is available as part of the [Tidelift +Subscription][1]. Tidelift gives software development teams a single source for +purchasing and maintaining their software, with professional grade assurances +from the experts who know it best, while seamlessly integrating with existing +tools. + +[1]: https://tidelift.com/subscription/pkg/pypi-charset-normalizer?utm_source=pypi-charset-normalizer&utm_medium=readme + +# Changelog +All notable changes to charset-normalizer will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). + +## [3.1.0](https://github.com/Ousret/charset_normalizer/compare/3.0.1...3.1.0) (2023-03-06) + +### Added +- Argument `should_rename_legacy` for legacy function `detect` and disregard any new arguments without errors (PR #262) + +### Removed +- Support for Python 3.6 (PR #260) + +### Changed +- Optional speedup provided by mypy/c 1.0.1 + +## [3.0.1](https://github.com/Ousret/charset_normalizer/compare/3.0.0...3.0.1) (2022-11-18) + +### Fixed +- Multi-bytes cutter/chunk generator did not always cut correctly (PR #233) + +### Changed +- Speedup provided by mypy/c 0.990 on Python >= 3.7 + +## [3.0.0](https://github.com/Ousret/charset_normalizer/compare/2.1.1...3.0.0) (2022-10-20) + +### Added +- Extend the capability of explain=True when cp_isolation contains at most two entries (min one), will log in details of the Mess-detector results +- Support for alternative language frequency set in charset_normalizer.assets.FREQUENCIES +- Add parameter `language_threshold` in `from_bytes`, `from_path` and `from_fp` to adjust the minimum expected coherence ratio +- `normalizer --version` now specify if current version provide extra speedup (meaning mypyc compilation whl) + +### Changed +- Build with static metadata using 'build' frontend +- Make the language detection stricter +- Optional: Module `md.py` can be compiled using Mypyc to provide an extra speedup up to 4x faster than v2.1 + +### Fixed +- CLI with opt --normalize fail when using full path for files +- TooManyAccentuatedPlugin induce false positive on the mess detection when too few alpha character have been fed to it +- Sphinx warnings when generating the documentation + +### Removed +- Coherence detector no longer return 'Simple English' instead return 'English' +- Coherence detector no longer return 'Classical Chinese' instead return 'Chinese' +- Breaking: Method `first()` and `best()` from CharsetMatch +- UTF-7 will no longer appear as "detected" without a recognized SIG/mark (is unreliable/conflict with ASCII) +- Breaking: Class aliases CharsetDetector, CharsetDoctor, CharsetNormalizerMatch and CharsetNormalizerMatches +- Breaking: Top-level function `normalize` +- Breaking: Properties `chaos_secondary_pass`, `coherence_non_latin` and `w_counter` from CharsetMatch +- Support for the backport `unicodedata2` + +## [3.0.0rc1](https://github.com/Ousret/charset_normalizer/compare/3.0.0b2...3.0.0rc1) (2022-10-18) + +### Added +- Extend the capability of explain=True when cp_isolation contains at most two entries (min one), will log in details of the Mess-detector results +- Support for alternative language frequency set in charset_normalizer.assets.FREQUENCIES +- Add parameter `language_threshold` in `from_bytes`, `from_path` and `from_fp` to adjust the minimum expected coherence ratio + +### Changed +- Build with static metadata using 'build' frontend +- Make the language detection stricter + +### Fixed +- CLI with opt --normalize fail when using full path for files +- TooManyAccentuatedPlugin induce false positive on the mess detection when too few alpha character have been fed to it + +### Removed +- Coherence detector no longer return 'Simple English' instead return 'English' +- Coherence detector no longer return 'Classical Chinese' instead return 'Chinese' + +## [3.0.0b2](https://github.com/Ousret/charset_normalizer/compare/3.0.0b1...3.0.0b2) (2022-08-21) + +### Added +- `normalizer --version` now specify if current version provide extra speedup (meaning mypyc compilation whl) + +### Removed +- Breaking: Method `first()` and `best()` from CharsetMatch +- UTF-7 will no longer appear as "detected" without a recognized SIG/mark (is unreliable/conflict with ASCII) + +### Fixed +- Sphinx warnings when generating the documentation + +## [3.0.0b1](https://github.com/Ousret/charset_normalizer/compare/2.1.0...3.0.0b1) (2022-08-15) + +### Changed +- Optional: Module `md.py` can be compiled using Mypyc to provide an extra speedup up to 4x faster than v2.1 + +### Removed +- Breaking: Class aliases CharsetDetector, CharsetDoctor, CharsetNormalizerMatch and CharsetNormalizerMatches +- Breaking: Top-level function `normalize` +- Breaking: Properties `chaos_secondary_pass`, `coherence_non_latin` and `w_counter` from CharsetMatch +- Support for the backport `unicodedata2` + +## [2.1.1](https://github.com/Ousret/charset_normalizer/compare/2.1.0...2.1.1) (2022-08-19) + +### Deprecated +- Function `normalize` scheduled for removal in 3.0 + +### Changed +- Removed useless call to decode in fn is_unprintable (#206) + +### Fixed +- Third-party library (i18n xgettext) crashing not recognizing utf_8 (PEP 263) with underscore from [@aleksandernovikov](https://github.com/aleksandernovikov) (#204) + +## [2.1.0](https://github.com/Ousret/charset_normalizer/compare/2.0.12...2.1.0) (2022-06-19) + +### Added +- Output the Unicode table version when running the CLI with `--version` (PR #194) + +### Changed +- Re-use decoded buffer for single byte character sets from [@nijel](https://github.com/nijel) (PR #175) +- Fixing some performance bottlenecks from [@deedy5](https://github.com/deedy5) (PR #183) + +### Fixed +- Workaround potential bug in cpython with Zero Width No-Break Space located in Arabic Presentation Forms-B, Unicode 1.1 not acknowledged as space (PR #175) +- CLI default threshold aligned with the API threshold from [@oleksandr-kuzmenko](https://github.com/oleksandr-kuzmenko) (PR #181) + +### Removed +- Support for Python 3.5 (PR #192) + +### Deprecated +- Use of backport unicodedata from `unicodedata2` as Python is quickly catching up, scheduled for removal in 3.0 (PR #194) + +## [2.0.12](https://github.com/Ousret/charset_normalizer/compare/2.0.11...2.0.12) (2022-02-12) + +### Fixed +- ASCII miss-detection on rare cases (PR #170) + +## [2.0.11](https://github.com/Ousret/charset_normalizer/compare/2.0.10...2.0.11) (2022-01-30) + +### Added +- Explicit support for Python 3.11 (PR #164) + +### Changed +- The logging behavior have been completely reviewed, now using only TRACE and DEBUG levels (PR #163 #165) + +## [2.0.10](https://github.com/Ousret/charset_normalizer/compare/2.0.9...2.0.10) (2022-01-04) + +### Fixed +- Fallback match entries might lead to UnicodeDecodeError for large bytes sequence (PR #154) + +### Changed +- Skipping the language-detection (CD) on ASCII (PR #155) + +## [2.0.9](https://github.com/Ousret/charset_normalizer/compare/2.0.8...2.0.9) (2021-12-03) + +### Changed +- Moderating the logging impact (since 2.0.8) for specific environments (PR #147) + +### Fixed +- Wrong logging level applied when setting kwarg `explain` to True (PR #146) + +## [2.0.8](https://github.com/Ousret/charset_normalizer/compare/2.0.7...2.0.8) (2021-11-24) +### Changed +- Improvement over Vietnamese detection (PR #126) +- MD improvement on trailing data and long foreign (non-pure latin) data (PR #124) +- Efficiency improvements in cd/alphabet_languages from [@adbar](https://github.com/adbar) (PR #122) +- call sum() without an intermediary list following PEP 289 recommendations from [@adbar](https://github.com/adbar) (PR #129) +- Code style as refactored by Sourcery-AI (PR #131) +- Minor adjustment on the MD around european words (PR #133) +- Remove and replace SRTs from assets / tests (PR #139) +- Initialize the library logger with a `NullHandler` by default from [@nmaynes](https://github.com/nmaynes) (PR #135) +- Setting kwarg `explain` to True will add provisionally (bounded to function lifespan) a specific stream handler (PR #135) + +### Fixed +- Fix large (misleading) sequence giving UnicodeDecodeError (PR #137) +- Avoid using too insignificant chunk (PR #137) + +### Added +- Add and expose function `set_logging_handler` to configure a specific StreamHandler from [@nmaynes](https://github.com/nmaynes) (PR #135) +- Add `CHANGELOG.md` entries, format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) (PR #141) + +## [2.0.7](https://github.com/Ousret/charset_normalizer/compare/2.0.6...2.0.7) (2021-10-11) +### Added +- Add support for Kazakh (Cyrillic) language detection (PR #109) + +### Changed +- Further, improve inferring the language from a given single-byte code page (PR #112) +- Vainly trying to leverage PEP263 when PEP3120 is not supported (PR #116) +- Refactoring for potential performance improvements in loops from [@adbar](https://github.com/adbar) (PR #113) +- Various detection improvement (MD+CD) (PR #117) + +### Removed +- Remove redundant logging entry about detected language(s) (PR #115) + +### Fixed +- Fix a minor inconsistency between Python 3.5 and other versions regarding language detection (PR #117 #102) + +## [2.0.6](https://github.com/Ousret/charset_normalizer/compare/2.0.5...2.0.6) (2021-09-18) +### Fixed +- Unforeseen regression with the loss of the backward-compatibility with some older minor of Python 3.5.x (PR #100) +- Fix CLI crash when using --minimal output in certain cases (PR #103) + +### Changed +- Minor improvement to the detection efficiency (less than 1%) (PR #106 #101) + +## [2.0.5](https://github.com/Ousret/charset_normalizer/compare/2.0.4...2.0.5) (2021-09-14) +### Changed +- The project now comply with: flake8, mypy, isort and black to ensure a better overall quality (PR #81) +- The BC-support with v1.x was improved, the old staticmethods are restored (PR #82) +- The Unicode detection is slightly improved (PR #93) +- Add syntax sugar \_\_bool\_\_ for results CharsetMatches list-container (PR #91) + +### Removed +- The project no longer raise warning on tiny content given for detection, will be simply logged as warning instead (PR #92) + +### Fixed +- In some rare case, the chunks extractor could cut in the middle of a multi-byte character and could mislead the mess detection (PR #95) +- Some rare 'space' characters could trip up the UnprintablePlugin/Mess detection (PR #96) +- The MANIFEST.in was not exhaustive (PR #78) + +## [2.0.4](https://github.com/Ousret/charset_normalizer/compare/2.0.3...2.0.4) (2021-07-30) +### Fixed +- The CLI no longer raise an unexpected exception when no encoding has been found (PR #70) +- Fix accessing the 'alphabets' property when the payload contains surrogate characters (PR #68) +- The logger could mislead (explain=True) on detected languages and the impact of one MBCS match (PR #72) +- Submatch factoring could be wrong in rare edge cases (PR #72) +- Multiple files given to the CLI were ignored when publishing results to STDOUT. (After the first path) (PR #72) +- Fix line endings from CRLF to LF for certain project files (PR #67) + +### Changed +- Adjust the MD to lower the sensitivity, thus improving the global detection reliability (PR #69 #76) +- Allow fallback on specified encoding if any (PR #71) + +## [2.0.3](https://github.com/Ousret/charset_normalizer/compare/2.0.2...2.0.3) (2021-07-16) +### Changed +- Part of the detection mechanism has been improved to be less sensitive, resulting in more accurate detection results. Especially ASCII. (PR #63) +- According to the community wishes, the detection will fall back on ASCII or UTF-8 in a last-resort case. (PR #64) + +## [2.0.2](https://github.com/Ousret/charset_normalizer/compare/2.0.1...2.0.2) (2021-07-15) +### Fixed +- Empty/Too small JSON payload miss-detection fixed. Report from [@tseaver](https://github.com/tseaver) (PR #59) + +### Changed +- Don't inject unicodedata2 into sys.modules from [@akx](https://github.com/akx) (PR #57) + +## [2.0.1](https://github.com/Ousret/charset_normalizer/compare/2.0.0...2.0.1) (2021-07-13) +### Fixed +- Make it work where there isn't a filesystem available, dropping assets frequencies.json. Report from [@sethmlarson](https://github.com/sethmlarson). (PR #55) +- Using explain=False permanently disable the verbose output in the current runtime (PR #47) +- One log entry (language target preemptive) was not show in logs when using explain=True (PR #47) +- Fix undesired exception (ValueError) on getitem of instance CharsetMatches (PR #52) + +### Changed +- Public function normalize default args values were not aligned with from_bytes (PR #53) + +### Added +- You may now use charset aliases in cp_isolation and cp_exclusion arguments (PR #47) + +## [2.0.0](https://github.com/Ousret/charset_normalizer/compare/1.4.1...2.0.0) (2021-07-02) +### Changed +- 4x to 5 times faster than the previous 1.4.0 release. At least 2x faster than Chardet. +- Accent has been made on UTF-8 detection, should perform rather instantaneous. +- The backward compatibility with Chardet has been greatly improved. The legacy detect function returns an identical charset name whenever possible. +- The detection mechanism has been slightly improved, now Turkish content is detected correctly (most of the time) +- The program has been rewritten to ease the readability and maintainability. (+Using static typing)+ +- utf_7 detection has been reinstated. + +### Removed +- This package no longer require anything when used with Python 3.5 (Dropped cached_property) +- Removed support for these languages: Catalan, Esperanto, Kazakh, Baque, Volapük, Azeri, Galician, Nynorsk, Macedonian, and Serbocroatian. +- The exception hook on UnicodeDecodeError has been removed. + +### Deprecated +- Methods coherence_non_latin, w_counter, chaos_secondary_pass of the class CharsetMatch are now deprecated and scheduled for removal in v3.0 + +### Fixed +- The CLI output used the relative path of the file(s). Should be absolute. + +## [1.4.1](https://github.com/Ousret/charset_normalizer/compare/1.4.0...1.4.1) (2021-05-28) +### Fixed +- Logger configuration/usage no longer conflict with others (PR #44) + +## [1.4.0](https://github.com/Ousret/charset_normalizer/compare/1.3.9...1.4.0) (2021-05-21) +### Removed +- Using standard logging instead of using the package loguru. +- Dropping nose test framework in favor of the maintained pytest. +- Choose to not use dragonmapper package to help with gibberish Chinese/CJK text. +- Require cached_property only for Python 3.5 due to constraint. Dropping for every other interpreter version. +- Stop support for UTF-7 that does not contain a SIG. +- Dropping PrettyTable, replaced with pure JSON output in CLI. + +### Fixed +- BOM marker in a CharsetNormalizerMatch instance could be False in rare cases even if obviously present. Due to the sub-match factoring process. +- Not searching properly for the BOM when trying utf32/16 parent codec. + +### Changed +- Improving the package final size by compressing frequencies.json. +- Huge improvement over the larges payload. + +### Added +- CLI now produces JSON consumable output. +- Return ASCII if given sequences fit. Given reasonable confidence. + +## [1.3.9](https://github.com/Ousret/charset_normalizer/compare/1.3.8...1.3.9) (2021-05-13) + +### Fixed +- In some very rare cases, you may end up getting encode/decode errors due to a bad bytes payload (PR #40) + +## [1.3.8](https://github.com/Ousret/charset_normalizer/compare/1.3.7...1.3.8) (2021-05-12) + +### Fixed +- Empty given payload for detection may cause an exception if trying to access the `alphabets` property. (PR #39) + +## [1.3.7](https://github.com/Ousret/charset_normalizer/compare/1.3.6...1.3.7) (2021-05-12) + +### Fixed +- The legacy detect function should return UTF-8-SIG if sig is present in the payload. (PR #38) + +## [1.3.6](https://github.com/Ousret/charset_normalizer/compare/1.3.5...1.3.6) (2021-02-09) + +### Changed +- Amend the previous release to allow prettytable 2.0 (PR #35) + +## [1.3.5](https://github.com/Ousret/charset_normalizer/compare/1.3.4...1.3.5) (2021-02-08) + +### Fixed +- Fix error while using the package with a python pre-release interpreter (PR #33) + +### Changed +- Dependencies refactoring, constraints revised. + +### Added +- Add python 3.9 and 3.10 to the supported interpreters + +MIT License + +Copyright (c) 2019 TAHRI Ahmed R. + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/RECORD b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/RECORD new file mode 100644 index 000000000..a6b8edc94 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/RECORD @@ -0,0 +1,35 @@ +../../../bin/normalizer,sha256=XvkWU8Trh4HdNCloZ9rcR5jd6Xj28pzB7Ygdi9ZgADk,395 +charset_normalizer-3.1.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +charset_normalizer-3.1.0.dist-info/LICENSE,sha256=6zGgxaT7Cbik4yBV0lweX5w1iidS_vPNcgIT0cz-4kE,1070 +charset_normalizer-3.1.0.dist-info/METADATA,sha256=8lfcrrmtfEq--eZqh8FJzEjptLCEoGXySKruxIms44I,30983 +charset_normalizer-3.1.0.dist-info/RECORD,, +charset_normalizer-3.1.0.dist-info/WHEEL,sha256=nKSwEH5fkxvG0Vdj1Hx7vbuU-SGQ9Nxl4yFFsCilvhs,152 +charset_normalizer-3.1.0.dist-info/entry_points.txt,sha256=uYo8aIGLWv8YgWfSna5HnfY_En4pkF1w4bgawNAXzP0,76 +charset_normalizer-3.1.0.dist-info/top_level.txt,sha256=7ASyzePr8_xuZWJsnqJjIBtyV8vhEo0wBCv1MPRRi3Q,19 +charset_normalizer/__init__.py,sha256=aAb_F9Zb23pb4NO6TfIfqLXLvf1PjnLBBOuPvQwPA18,1549 +charset_normalizer/__pycache__/__init__.cpython-310.pyc,, +charset_normalizer/__pycache__/api.cpython-310.pyc,, +charset_normalizer/__pycache__/cd.cpython-310.pyc,, +charset_normalizer/__pycache__/constant.cpython-310.pyc,, +charset_normalizer/__pycache__/legacy.cpython-310.pyc,, +charset_normalizer/__pycache__/md.cpython-310.pyc,, +charset_normalizer/__pycache__/models.cpython-310.pyc,, +charset_normalizer/__pycache__/utils.cpython-310.pyc,, +charset_normalizer/__pycache__/version.cpython-310.pyc,, +charset_normalizer/api.py,sha256=Vh44rFXztkxCjW7gF2waq8TyRL3mXKX8RwNGB99bhb4,18624 +charset_normalizer/assets/__init__.py,sha256=wpRfujN7GJuEE5wHHo3wEDVoJ5ovzRIxsImyimCBfGU,20069 +charset_normalizer/assets/__pycache__/__init__.cpython-310.pyc,, +charset_normalizer/cd.py,sha256=mZuiTSKq4XpweSDD2H4T4R3Axtaa-QS0tpEWdpMuAzQ,12554 +charset_normalizer/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc,, +charset_normalizer/cli/__pycache__/normalizer.cpython-310.pyc,, +charset_normalizer/cli/normalizer.py,sha256=2F-xURZJzo063Ye-2RLJ2wcmURpbKeAzKwpiws65dAs,9744 +charset_normalizer/constant.py,sha256=PmCeoKXqq3ZbCtCUpKHwwFBIv9DXMT_an1yd24q28mA,19101 +charset_normalizer/legacy.py,sha256=T-QuVMsMeDiQEk8WSszMrzVJg_14AMeSkmHdRYhdl1k,2071 +charset_normalizer/md.cpython-310-x86_64-linux-gnu.so,sha256=VRykbQIynSswzdrRbruysjgWzNW9fAXVUn06wgATyhc,17496 +charset_normalizer/md.py,sha256=MXPKP_oLbsubulEL_1rxcYKSd5FeEfyEfNNm5O6ADpc,18258 +charset_normalizer/md__mypyc.cpython-310-x86_64-linux-gnu.so,sha256=r7AOFco7yQOyP83eUuE0S1s6UENwSuxbZDmRJzWrEHQ,424312 +charset_normalizer/models.py,sha256=mC11wo84l00u2o03TRNX7M5ItBAbPUKKXgJSFxA35GY,11492 +charset_normalizer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +charset_normalizer/utils.py,sha256=tKLpquPYQdaRdFRwBo5gPOi06ov8UCJy5X1Pti0Q78U,11544 +charset_normalizer/version.py,sha256=bekbdpF_D3BtF-PhbPnA9PNaZaI8kKIgl3LTCD5FmYk,79 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/WHEEL b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/WHEEL new file mode 100644 index 000000000..a9630e4b8 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.38.4) +Root-Is-Purelib: false +Tag: cp310-cp310-manylinux_2_17_x86_64 +Tag: cp310-cp310-manylinux2014_x86_64 + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/entry_points.txt b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/entry_points.txt new file mode 100644 index 000000000..a06d36005 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/entry_points.txt @@ -0,0 +1,2 @@ +[console_scripts] +normalizer = charset_normalizer.cli.normalizer:cli_detect diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/top_level.txt b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/top_level.txt new file mode 100644 index 000000000..66958f0a0 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer-3.1.0.dist-info/top_level.txt @@ -0,0 +1 @@ +charset_normalizer diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__init__.py new file mode 100644 index 000000000..ebb5da893 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__init__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +""" +Charset-Normalizer +~~~~~~~~~~~~~~ +The Real First Universal Charset Detector. +A library that helps you read text from an unknown charset encoding. +Motivated by chardet, This package is trying to resolve the issue by taking a new approach. +All IANA character set names for which the Python core library provides codecs are supported. + +Basic usage: + >>> from charset_normalizer import from_bytes + >>> results = from_bytes('Bсеки човек има право на образование. Oбразованието!'.encode('utf_8')) + >>> best_guess = results.best() + >>> str(best_guess) + 'Bсеки човек има право на образование. Oбразованието!' + +Others methods and usages are available - see the full documentation +at . +:copyright: (c) 2021 by Ahmed TAHRI +:license: MIT, see LICENSE for more details. +""" +import logging + +from .api import from_bytes, from_fp, from_path +from .legacy import detect +from .models import CharsetMatch, CharsetMatches +from .utils import set_logging_handler +from .version import VERSION, __version__ + +__all__ = ( + "from_fp", + "from_path", + "from_bytes", + "detect", + "CharsetMatch", + "CharsetMatches", + "__version__", + "VERSION", + "set_logging_handler", +) + +# Attach a NullHandler to the top level logger by default +# https://docs.python.org/3.3/howto/logging.html#configuring-logging-for-a-library + +logging.getLogger("charset_normalizer").addHandler(logging.NullHandler()) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..50be9836bd34ea7cd59ac09a7c68b60a4b9c313e GIT binary patch literal 1649 zcmcIkOK;>v5VmI~^Kf2EHWD10Q!>(yoh%nLS|YL`Xd`VVCVv3l&9aVu@N)!j}Q z4hZ&w_!pZaw=B|XBLv|uI9Fde?O)(TwP!X7Y_3>xsjIrW>Z_+%Ty!k_Uj4iiEjBId zFT>pZ8pwQ(ztTt|%eNvss&U)5qk7cfwWRLXlZM|&=KML^LfIT|CM~~JotwO!bo@@@ z_)f*Q_^qRo_y78w;~2;xP)@#NQfcya%1%Kl;iS5bKtCeK zF;gU?;RziB!K0QF)FxV>Z6)|Api6V1axm{SJu%mmq;N)PmPtXw7y)ul_O=Jxm0cQY zkOYG#DNR6;k&xspW?@{J`f8$Mf%t@ko2bytDT`1Qu|lW_#XFT}nUDzAb)2VEv5@2n zG4>ro$kx`@G~ij3L3)#A!V>eWx(kz|6N z;#b3v;f)=J}nA8 zrHs=d2hzg=PkUpOWAP&q<_V;lY9>+#d-O@Hb*B2BH)cA{hi)hm?;uwawD*3|wp^zl zifkg;IM#i#9(Kv&jmMj&;kM%hJN9_{+2Nkk=PZO&L7(jJ9Y3l7Jm1^d9USdeJ(if3 z!lp)u%5~o20eZKU0L>6rPL_CwjK&ZDgCRELb}xNDb9e2L@Mt(6P20oXOUa%x?Elaix zX&W+ch}mhfgT!BXKRMmivK0iF;27-^%GM0v)U&~0d{EBOM`sNBIYtMvbZ8Vkn+90U53tTN<`+wTXdoN%_Z#m_$PevnjYzC(fhCR)KDz4d+cyFf^ZUY@FM8l zGPoDLtlB7_xSJcEVj6n0ZKm#NG%pBP%5)I8*`#bg!5rlrwoH$x6(kM2y}DXkupijw JZ`3|o{s$(5P6_}3 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e4ebc6b431881390205dda8353b3cffe747bcad0 GIT binary patch literal 10441 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be6dda089b07d7e225c9decba40214ea50723404 GIT binary patch literal 17485 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9a0b0825292d970ac155a6388491430bb70dc0c1 GIT binary patch literal 1940 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 hXyJMMsPAC?CI6NjA23QL~|_>2qeL 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 O{OZ(=(sJIIwf+xge4AMS literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ebed31fbd59e36fa2728d26ae801f2197001b52b GIT binary patch literal 8916 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 Q8qQJwvp!D}CCMTB1anJnzyJUM literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/api.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/api.py new file mode 100644 index 000000000..9dbf4201e --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/api.py @@ -0,0 +1,554 @@ +import logging +from os import PathLike +from typing import Any, BinaryIO, List, Optional, Set + +from .cd import ( + coherence_ratio, + encoding_languages, + mb_encoding_languages, + merge_coherence_ratios, +) +from .constant import IANA_SUPPORTED, TOO_BIG_SEQUENCE, TOO_SMALL_SEQUENCE, TRACE +from .md import mess_ratio +from .models import CharsetMatch, CharsetMatches +from .utils import ( + any_specified_encoding, + cut_sequence_chunks, + iana_name, + identify_sig_or_bom, + is_cp_similar, + is_multi_byte_encoding, + should_strip_sig_or_bom, +) + +# Will most likely be controversial +# logging.addLevelName(TRACE, "TRACE") +logger = logging.getLogger("charset_normalizer") +explain_handler = logging.StreamHandler() +explain_handler.setFormatter( + logging.Formatter("%(asctime)s | %(levelname)s | %(message)s") +) + + +def from_bytes( + sequences: bytes, + steps: int = 5, + chunk_size: int = 512, + threshold: float = 0.2, + cp_isolation: Optional[List[str]] = None, + cp_exclusion: Optional[List[str]] = None, + preemptive_behaviour: bool = True, + explain: bool = False, + language_threshold: float = 0.1, +) -> CharsetMatches: + """ + Given a raw bytes sequence, return the best possibles charset usable to render str objects. + If there is no results, it is a strong indicator that the source is binary/not text. + By default, the process will extract 5 blocks of 512o each to assess the mess and coherence of a given sequence. + And will give up a particular code page after 20% of measured mess. Those criteria are customizable at will. + + The preemptive behavior DOES NOT replace the traditional detection workflow, it prioritize a particular code page + but never take it for granted. Can improve the performance. + + You may want to focus your attention to some code page or/and not others, use cp_isolation and cp_exclusion for that + purpose. + + This function will strip the SIG in the payload/sequence every time except on UTF-16, UTF-32. + By default the library does not setup any handler other than the NullHandler, if you choose to set the 'explain' + toggle to True it will alter the logger configuration to add a StreamHandler that is suitable for debugging. + Custom logging format and handler can be set manually. + """ + + if not isinstance(sequences, (bytearray, bytes)): + raise TypeError( + "Expected object of type bytes or bytearray, got: {0}".format( + type(sequences) + ) + ) + + if explain: + previous_logger_level: int = logger.level + logger.addHandler(explain_handler) + logger.setLevel(TRACE) + + length: int = len(sequences) + + if length == 0: + logger.debug("Encoding detection on empty bytes, assuming utf_8 intention.") + if explain: + logger.removeHandler(explain_handler) + logger.setLevel(previous_logger_level or logging.WARNING) + return CharsetMatches([CharsetMatch(sequences, "utf_8", 0.0, False, [], "")]) + + if cp_isolation is not None: + logger.log( + TRACE, + "cp_isolation is set. use this flag for debugging purpose. " + "limited list of encoding allowed : %s.", + ", ".join(cp_isolation), + ) + cp_isolation = [iana_name(cp, False) for cp in cp_isolation] + else: + cp_isolation = [] + + if cp_exclusion is not None: + logger.log( + TRACE, + "cp_exclusion is set. use this flag for debugging purpose. " + "limited list of encoding excluded : %s.", + ", ".join(cp_exclusion), + ) + cp_exclusion = [iana_name(cp, False) for cp in cp_exclusion] + else: + cp_exclusion = [] + + if length <= (chunk_size * steps): + logger.log( + TRACE, + "override steps (%i) and chunk_size (%i) as content does not fit (%i byte(s) given) parameters.", + steps, + chunk_size, + length, + ) + steps = 1 + chunk_size = length + + if steps > 1 and length / steps < chunk_size: + chunk_size = int(length / steps) + + is_too_small_sequence: bool = len(sequences) < TOO_SMALL_SEQUENCE + is_too_large_sequence: bool = len(sequences) >= TOO_BIG_SEQUENCE + + if is_too_small_sequence: + logger.log( + TRACE, + "Trying to detect encoding from a tiny portion of ({}) byte(s).".format( + length + ), + ) + elif is_too_large_sequence: + logger.log( + TRACE, + "Using lazy str decoding because the payload is quite large, ({}) byte(s).".format( + length + ), + ) + + prioritized_encodings: List[str] = [] + + specified_encoding: Optional[str] = ( + any_specified_encoding(sequences) if preemptive_behaviour else None + ) + + if specified_encoding is not None: + prioritized_encodings.append(specified_encoding) + logger.log( + TRACE, + "Detected declarative mark in sequence. Priority +1 given for %s.", + specified_encoding, + ) + + tested: Set[str] = set() + tested_but_hard_failure: List[str] = [] + tested_but_soft_failure: List[str] = [] + + fallback_ascii: Optional[CharsetMatch] = None + fallback_u8: Optional[CharsetMatch] = None + fallback_specified: Optional[CharsetMatch] = None + + results: CharsetMatches = CharsetMatches() + + sig_encoding, sig_payload = identify_sig_or_bom(sequences) + + if sig_encoding is not None: + prioritized_encodings.append(sig_encoding) + logger.log( + TRACE, + "Detected a SIG or BOM mark on first %i byte(s). Priority +1 given for %s.", + len(sig_payload), + sig_encoding, + ) + + prioritized_encodings.append("ascii") + + if "utf_8" not in prioritized_encodings: + prioritized_encodings.append("utf_8") + + for encoding_iana in prioritized_encodings + IANA_SUPPORTED: + if cp_isolation and encoding_iana not in cp_isolation: + continue + + if cp_exclusion and encoding_iana in cp_exclusion: + continue + + if encoding_iana in tested: + continue + + tested.add(encoding_iana) + + decoded_payload: Optional[str] = None + bom_or_sig_available: bool = sig_encoding == encoding_iana + strip_sig_or_bom: bool = bom_or_sig_available and should_strip_sig_or_bom( + encoding_iana + ) + + if encoding_iana in {"utf_16", "utf_32"} and not bom_or_sig_available: + logger.log( + TRACE, + "Encoding %s won't be tested as-is because it require a BOM. Will try some sub-encoder LE/BE.", + encoding_iana, + ) + continue + if encoding_iana in {"utf_7"} and not bom_or_sig_available: + logger.log( + TRACE, + "Encoding %s won't be tested as-is because detection is unreliable without BOM/SIG.", + encoding_iana, + ) + continue + + try: + is_multi_byte_decoder: bool = is_multi_byte_encoding(encoding_iana) + except (ModuleNotFoundError, ImportError): + logger.log( + TRACE, + "Encoding %s does not provide an IncrementalDecoder", + encoding_iana, + ) + continue + + try: + if is_too_large_sequence and is_multi_byte_decoder is False: + str( + sequences[: int(50e4)] + if strip_sig_or_bom is False + else sequences[len(sig_payload) : int(50e4)], + encoding=encoding_iana, + ) + else: + decoded_payload = str( + sequences + if strip_sig_or_bom is False + else sequences[len(sig_payload) :], + encoding=encoding_iana, + ) + except (UnicodeDecodeError, LookupError) as e: + if not isinstance(e, LookupError): + logger.log( + TRACE, + "Code page %s does not fit given bytes sequence at ALL. %s", + encoding_iana, + str(e), + ) + tested_but_hard_failure.append(encoding_iana) + continue + + similar_soft_failure_test: bool = False + + for encoding_soft_failed in tested_but_soft_failure: + if is_cp_similar(encoding_iana, encoding_soft_failed): + similar_soft_failure_test = True + break + + if similar_soft_failure_test: + logger.log( + TRACE, + "%s is deemed too similar to code page %s and was consider unsuited already. Continuing!", + encoding_iana, + encoding_soft_failed, + ) + continue + + r_ = range( + 0 if not bom_or_sig_available else len(sig_payload), + length, + int(length / steps), + ) + + multi_byte_bonus: bool = ( + is_multi_byte_decoder + and decoded_payload is not None + and len(decoded_payload) < length + ) + + if multi_byte_bonus: + logger.log( + TRACE, + "Code page %s is a multi byte encoding table and it appear that at least one character " + "was encoded using n-bytes.", + encoding_iana, + ) + + max_chunk_gave_up: int = int(len(r_) / 4) + + max_chunk_gave_up = max(max_chunk_gave_up, 2) + early_stop_count: int = 0 + lazy_str_hard_failure = False + + md_chunks: List[str] = [] + md_ratios = [] + + try: + for chunk in cut_sequence_chunks( + sequences, + encoding_iana, + r_, + chunk_size, + bom_or_sig_available, + strip_sig_or_bom, + sig_payload, + is_multi_byte_decoder, + decoded_payload, + ): + md_chunks.append(chunk) + + md_ratios.append( + mess_ratio( + chunk, + threshold, + explain is True and 1 <= len(cp_isolation) <= 2, + ) + ) + + if md_ratios[-1] >= threshold: + early_stop_count += 1 + + if (early_stop_count >= max_chunk_gave_up) or ( + bom_or_sig_available and strip_sig_or_bom is False + ): + break + except ( + UnicodeDecodeError + ) as e: # Lazy str loading may have missed something there + logger.log( + TRACE, + "LazyStr Loading: After MD chunk decode, code page %s does not fit given bytes sequence at ALL. %s", + encoding_iana, + str(e), + ) + early_stop_count = max_chunk_gave_up + lazy_str_hard_failure = True + + # We might want to check the sequence again with the whole content + # Only if initial MD tests passes + if ( + not lazy_str_hard_failure + and is_too_large_sequence + and not is_multi_byte_decoder + ): + try: + sequences[int(50e3) :].decode(encoding_iana, errors="strict") + except UnicodeDecodeError as e: + logger.log( + TRACE, + "LazyStr Loading: After final lookup, code page %s does not fit given bytes sequence at ALL. %s", + encoding_iana, + str(e), + ) + tested_but_hard_failure.append(encoding_iana) + continue + + mean_mess_ratio: float = sum(md_ratios) / len(md_ratios) if md_ratios else 0.0 + if mean_mess_ratio >= threshold or early_stop_count >= max_chunk_gave_up: + tested_but_soft_failure.append(encoding_iana) + logger.log( + TRACE, + "%s was excluded because of initial chaos probing. Gave up %i time(s). " + "Computed mean chaos is %f %%.", + encoding_iana, + early_stop_count, + round(mean_mess_ratio * 100, ndigits=3), + ) + # Preparing those fallbacks in case we got nothing. + if ( + encoding_iana in ["ascii", "utf_8", specified_encoding] + and not lazy_str_hard_failure + ): + fallback_entry = CharsetMatch( + sequences, encoding_iana, threshold, False, [], decoded_payload + ) + if encoding_iana == specified_encoding: + fallback_specified = fallback_entry + elif encoding_iana == "ascii": + fallback_ascii = fallback_entry + else: + fallback_u8 = fallback_entry + continue + + logger.log( + TRACE, + "%s passed initial chaos probing. Mean measured chaos is %f %%", + encoding_iana, + round(mean_mess_ratio * 100, ndigits=3), + ) + + if not is_multi_byte_decoder: + target_languages: List[str] = encoding_languages(encoding_iana) + else: + target_languages = mb_encoding_languages(encoding_iana) + + if target_languages: + logger.log( + TRACE, + "{} should target any language(s) of {}".format( + encoding_iana, str(target_languages) + ), + ) + + cd_ratios = [] + + # We shall skip the CD when its about ASCII + # Most of the time its not relevant to run "language-detection" on it. + if encoding_iana != "ascii": + for chunk in md_chunks: + chunk_languages = coherence_ratio( + chunk, + language_threshold, + ",".join(target_languages) if target_languages else None, + ) + + cd_ratios.append(chunk_languages) + + cd_ratios_merged = merge_coherence_ratios(cd_ratios) + + if cd_ratios_merged: + logger.log( + TRACE, + "We detected language {} using {}".format( + cd_ratios_merged, encoding_iana + ), + ) + + results.append( + CharsetMatch( + sequences, + encoding_iana, + mean_mess_ratio, + bom_or_sig_available, + cd_ratios_merged, + decoded_payload, + ) + ) + + if ( + encoding_iana in [specified_encoding, "ascii", "utf_8"] + and mean_mess_ratio < 0.1 + ): + logger.debug( + "Encoding detection: %s is most likely the one.", encoding_iana + ) + if explain: + logger.removeHandler(explain_handler) + logger.setLevel(previous_logger_level) + return CharsetMatches([results[encoding_iana]]) + + if encoding_iana == sig_encoding: + logger.debug( + "Encoding detection: %s is most likely the one as we detected a BOM or SIG within " + "the beginning of the sequence.", + encoding_iana, + ) + if explain: + logger.removeHandler(explain_handler) + logger.setLevel(previous_logger_level) + return CharsetMatches([results[encoding_iana]]) + + if len(results) == 0: + if fallback_u8 or fallback_ascii or fallback_specified: + logger.log( + TRACE, + "Nothing got out of the detection process. Using ASCII/UTF-8/Specified fallback.", + ) + + if fallback_specified: + logger.debug( + "Encoding detection: %s will be used as a fallback match", + fallback_specified.encoding, + ) + results.append(fallback_specified) + elif ( + (fallback_u8 and fallback_ascii is None) + or ( + fallback_u8 + and fallback_ascii + and fallback_u8.fingerprint != fallback_ascii.fingerprint + ) + or (fallback_u8 is not None) + ): + logger.debug("Encoding detection: utf_8 will be used as a fallback match") + results.append(fallback_u8) + elif fallback_ascii: + logger.debug("Encoding detection: ascii will be used as a fallback match") + results.append(fallback_ascii) + + if results: + logger.debug( + "Encoding detection: Found %s as plausible (best-candidate) for content. With %i alternatives.", + results.best().encoding, # type: ignore + len(results) - 1, + ) + else: + logger.debug("Encoding detection: Unable to determine any suitable charset.") + + if explain: + logger.removeHandler(explain_handler) + logger.setLevel(previous_logger_level) + + return results + + +def from_fp( + fp: BinaryIO, + steps: int = 5, + chunk_size: int = 512, + threshold: float = 0.20, + cp_isolation: Optional[List[str]] = None, + cp_exclusion: Optional[List[str]] = None, + preemptive_behaviour: bool = True, + explain: bool = False, + language_threshold: float = 0.1, +) -> CharsetMatches: + """ + Same thing than the function from_bytes but using a file pointer that is already ready. + Will not close the file pointer. + """ + return from_bytes( + fp.read(), + steps, + chunk_size, + threshold, + cp_isolation, + cp_exclusion, + preemptive_behaviour, + explain, + language_threshold, + ) + + +def from_path( + path: "PathLike[Any]", + steps: int = 5, + chunk_size: int = 512, + threshold: float = 0.20, + cp_isolation: Optional[List[str]] = None, + cp_exclusion: Optional[List[str]] = None, + preemptive_behaviour: bool = True, + explain: bool = False, + language_threshold: float = 0.1, +) -> CharsetMatches: + """ + Same thing than the function from_bytes but with one extra step. Opening and reading given file path in binary mode. + Can raise IOError. + """ + with open(path, "rb") as fp: + return from_fp( + fp, + steps, + chunk_size, + threshold, + cp_isolation, + cp_exclusion, + preemptive_behaviour, + explain, + language_threshold, + ) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/assets/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/assets/__init__.py new file mode 100644 index 000000000..9075930dc --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/assets/__init__.py @@ -0,0 +1,1440 @@ +# -*- coding: utf-8 -*- +from typing import Dict, List + +# Language label that contain the em dash "—" +# character are to be considered alternative seq to origin +FREQUENCIES: Dict[str, List[str]] = { + "English": [ + "e", + "a", + "t", + "i", + "o", + "n", + "s", + "r", + "h", + "l", + "d", + "c", + "u", + "m", + "f", + "p", + "g", + "w", + "y", + "b", + "v", + "k", + "x", + "j", + "z", + "q", + ], + "English—": [ + "e", + "a", + "t", + "i", + "o", + "n", + "s", + "r", + "h", + "l", + "d", + "c", + "m", + "u", + "f", + "p", + "g", + "w", + "b", + "y", + "v", + "k", + "j", + "x", + "z", + "q", + ], + "German": [ + "e", + "n", + "i", + "r", + "s", + "t", + "a", + "d", + "h", + "u", + "l", + "g", + "o", + "c", + "m", + "b", + "f", + "k", + "w", + "z", + "p", + "v", + "ü", + "ä", + "ö", + "j", + ], + "French": [ + "e", + "a", + "s", + "n", + "i", + "t", + "r", + "l", + "u", + "o", + "d", + "c", + "p", + "m", + "é", + "v", + "g", + "f", + "b", + "h", + "q", + "à", + "x", + "è", + "y", + "j", + ], + "Dutch": [ + "e", + "n", + "a", + "i", + "r", + "t", + "o", + "d", + "s", + "l", + "g", + "h", + "v", + "m", + "u", + "k", + "c", + "p", + "b", + "w", + "j", + "z", + "f", + "y", + "x", + "ë", + ], + "Italian": [ + "e", + "i", + "a", + "o", + "n", + "l", + "t", + "r", + "s", + "c", + "d", + "u", + "p", + "m", + "g", + "v", + "f", + "b", + "z", + "h", + "q", + "è", + "à", + "k", + "y", + "ò", + ], + "Polish": [ + "a", + "i", + "o", + "e", + "n", + "r", + "z", + "w", + "s", + "c", + "t", + "k", + "y", + "d", + "p", + "m", + "u", + "l", + "j", + "ł", + "g", + "b", + "h", + "ą", + "ę", + "ó", + ], + "Spanish": [ + "e", + "a", + "o", + "n", + "s", + "r", + "i", + "l", + "d", + "t", + "c", + "u", + "m", + "p", + "b", + "g", + "v", + "f", + "y", + "ó", + "h", + "q", + "í", + "j", + "z", + "á", + ], + "Russian": [ + "о", + "а", + "е", + "и", + "н", + "с", + "т", + "р", + "в", + "л", + "к", + "м", + "д", + "п", + "у", + "г", + "я", + "ы", + "з", + "б", + "й", + "ь", + "ч", + "х", + "ж", + "ц", + ], + # Jap-Kanji + "Japanese": [ + "人", + "一", + "大", + "亅", + "丁", + "丨", + "竹", + "笑", + "口", + "日", + "今", + "二", + "彳", + "行", + "十", + "土", + "丶", + "寸", + "寺", + "時", + "乙", + "丿", + "乂", + "气", + "気", + "冂", + "巾", + "亠", + "市", + "目", + "儿", + "見", + "八", + "小", + "凵", + "県", + "月", + "彐", + "門", + "間", + "木", + "東", + "山", + "出", + "本", + "中", + "刀", + "分", + "耳", + "又", + "取", + "最", + "言", + "田", + "心", + "思", + "刂", + "前", + "京", + "尹", + "事", + "生", + "厶", + "云", + "会", + "未", + "来", + "白", + "冫", + "楽", + "灬", + "馬", + "尸", + "尺", + "駅", + "明", + "耂", + "者", + "了", + "阝", + "都", + "高", + "卜", + "占", + "厂", + "广", + "店", + "子", + "申", + "奄", + "亻", + "俺", + "上", + "方", + "冖", + "学", + "衣", + "艮", + "食", + "自", + ], + # Jap-Katakana + "Japanese—": [ + "ー", + "ン", + "ス", + "・", + "ル", + "ト", + "リ", + "イ", + "ア", + "ラ", + "ッ", + "ク", + "ド", + "シ", + "レ", + "ジ", + "タ", + "フ", + "ロ", + "カ", + "テ", + "マ", + "ィ", + "グ", + "バ", + "ム", + "プ", + "オ", + "コ", + "デ", + "ニ", + "ウ", + "メ", + "サ", + "ビ", + "ナ", + "ブ", + "ャ", + "エ", + "ュ", + "チ", + "キ", + "ズ", + "ダ", + "パ", + "ミ", + "ェ", + "ョ", + "ハ", + "セ", + "ベ", + "ガ", + "モ", + "ツ", + "ネ", + "ボ", + "ソ", + "ノ", + "ァ", + "ヴ", + "ワ", + "ポ", + "ペ", + "ピ", + "ケ", + "ゴ", + "ギ", + "ザ", + "ホ", + "ゲ", + "ォ", + "ヤ", + "ヒ", + "ユ", + "ヨ", + "ヘ", + "ゼ", + "ヌ", + "ゥ", + "ゾ", + "ヶ", + "ヂ", + "ヲ", + "ヅ", + "ヵ", + "ヱ", + "ヰ", + "ヮ", + "ヽ", + "゠", + "ヾ", + "ヷ", + "ヿ", + "ヸ", + "ヹ", + "ヺ", + ], + # Jap-Hiragana + "Japanese——": [ + "の", + "に", + "る", + "た", + "と", + "は", + "し", + "い", + "を", + "で", + "て", + "が", + "な", + "れ", + "か", + "ら", + "さ", + "っ", + "り", + "す", + "あ", + "も", + "こ", + "ま", + "う", + "く", + "よ", + "き", + "ん", + "め", + "お", + "け", + "そ", + "つ", + "だ", + "や", + "え", + "ど", + "わ", + "ち", + "み", + "せ", + "じ", + "ば", + "へ", + "び", + "ず", + "ろ", + "ほ", + "げ", + "む", + "べ", + "ひ", + "ょ", + "ゆ", + "ぶ", + "ご", + "ゃ", + "ね", + "ふ", + "ぐ", + "ぎ", + "ぼ", + "ゅ", + "づ", + "ざ", + "ぞ", + "ぬ", + "ぜ", + "ぱ", + "ぽ", + "ぷ", + "ぴ", + "ぃ", + "ぁ", + "ぇ", + "ぺ", + "ゞ", + "ぢ", + "ぉ", + "ぅ", + "ゐ", + "ゝ", + "ゑ", + "゛", + "゜", + "ゎ", + "ゔ", + "゚", + "ゟ", + "゙", + "ゕ", + "ゖ", + ], + "Portuguese": [ + "a", + "e", + "o", + "s", + "i", + "r", + "d", + "n", + "t", + "m", + "u", + "c", + "l", + "p", + "g", + "v", + "b", + "f", + "h", + "ã", + "q", + "é", + "ç", + "á", + "z", + "í", + ], + "Swedish": [ + "e", + "a", + "n", + "r", + "t", + "s", + "i", + "l", + "d", + "o", + "m", + "k", + "g", + "v", + "h", + "f", + "u", + "p", + "ä", + "c", + "b", + "ö", + "å", + "y", + "j", + "x", + ], + "Chinese": [ + "的", + "一", + "是", + "不", + "了", + "在", + "人", + "有", + "我", + "他", + "这", + "个", + "们", + "中", + "来", + "上", + "大", + "为", + "和", + "国", + "地", + "到", + "以", + "说", + "时", + "要", + "就", + "出", + "会", + "可", + "也", + "你", + "对", + "生", + "能", + "而", + "子", + "那", + "得", + "于", + "着", + "下", + "自", + "之", + "年", + "过", + "发", + "后", + "作", + "里", + "用", + "道", + "行", + "所", + "然", + "家", + "种", + "事", + "成", + "方", + "多", + "经", + "么", + "去", + "法", + "学", + "如", + "都", + "同", + "现", + "当", + "没", + "动", + "面", + "起", + "看", + "定", + "天", + "分", + "还", + "进", + "好", + "小", + "部", + "其", + "些", + "主", + "样", + "理", + "心", + "她", + "本", + "前", + "开", + "但", + "因", + "只", + "从", + "想", + "实", + ], + "Ukrainian": [ + "о", + "а", + "н", + "і", + "и", + "р", + "в", + "т", + "е", + "с", + "к", + "л", + "у", + "д", + "м", + "п", + "з", + "я", + "ь", + "б", + "г", + "й", + "ч", + "х", + "ц", + "ї", + ], + "Norwegian": [ + "e", + "r", + "n", + "t", + "a", + "s", + "i", + "o", + "l", + "d", + "g", + "k", + "m", + "v", + "f", + "p", + "u", + "b", + "h", + "å", + "y", + "j", + "ø", + "c", + "æ", + "w", + ], + "Finnish": [ + "a", + "i", + "n", + "t", + "e", + "s", + "l", + "o", + "u", + "k", + "ä", + "m", + "r", + "v", + "j", + "h", + "p", + "y", + "d", + "ö", + "g", + "c", + "b", + "f", + "w", + "z", + ], + "Vietnamese": [ + "n", + "h", + "t", + "i", + "c", + "g", + "a", + "o", + "u", + "m", + "l", + "r", + "à", + "đ", + "s", + "e", + "v", + "p", + "b", + "y", + "ư", + "d", + "á", + "k", + "ộ", + "ế", + ], + "Czech": [ + "o", + "e", + "a", + "n", + "t", + "s", + "i", + "l", + "v", + "r", + "k", + "d", + "u", + "m", + "p", + "í", + "c", + "h", + "z", + "á", + "y", + "j", + "b", + "ě", + "é", + "ř", + ], + "Hungarian": [ + "e", + "a", + "t", + "l", + "s", + "n", + "k", + "r", + "i", + "o", + "z", + "á", + "é", + "g", + "m", + "b", + "y", + "v", + "d", + "h", + "u", + "p", + "j", + "ö", + "f", + "c", + ], + "Korean": [ + "이", + "다", + "에", + "의", + "는", + "로", + "하", + "을", + "가", + "고", + "지", + "서", + "한", + "은", + "기", + "으", + "년", + "대", + "사", + "시", + "를", + "리", + "도", + "인", + "스", + "일", + ], + "Indonesian": [ + "a", + "n", + "e", + "i", + "r", + "t", + "u", + "s", + "d", + "k", + "m", + "l", + "g", + "p", + "b", + "o", + "h", + "y", + "j", + "c", + "w", + "f", + "v", + "z", + "x", + "q", + ], + "Turkish": [ + "a", + "e", + "i", + "n", + "r", + "l", + "ı", + "k", + "d", + "t", + "s", + "m", + "y", + "u", + "o", + "b", + "ü", + "ş", + "v", + "g", + "z", + "h", + "c", + "p", + "ç", + "ğ", + ], + "Romanian": [ + "e", + "i", + "a", + "r", + "n", + "t", + "u", + "l", + "o", + "c", + "s", + "d", + "p", + "m", + "ă", + "f", + "v", + "î", + "g", + "b", + "ș", + "ț", + "z", + "h", + "â", + "j", + ], + "Farsi": [ + "ا", + "ی", + "ر", + "د", + "ن", + "ه", + "و", + "م", + "ت", + "ب", + "س", + "ل", + "ک", + "ش", + "ز", + "ف", + "گ", + "ع", + "خ", + "ق", + "ج", + "آ", + "پ", + "ح", + "ط", + "ص", + ], + "Arabic": [ + "ا", + "ل", + "ي", + "م", + "و", + "ن", + "ر", + "ت", + "ب", + "ة", + "ع", + "د", + "س", + "ف", + "ه", + "ك", + "ق", + "أ", + "ح", + "ج", + "ش", + "ط", + "ص", + "ى", + "خ", + "إ", + ], + "Danish": [ + "e", + "r", + "n", + "t", + "a", + "i", + "s", + "d", + "l", + "o", + "g", + "m", + "k", + "f", + "v", + "u", + "b", + "h", + "p", + "å", + "y", + "ø", + "æ", + "c", + "j", + "w", + ], + "Serbian": [ + "а", + "и", + "о", + "е", + "н", + "р", + "с", + "у", + "т", + "к", + "ј", + "в", + "д", + "м", + "п", + "л", + "г", + "з", + "б", + "a", + "i", + "e", + "o", + "n", + "ц", + "ш", + ], + "Lithuanian": [ + "i", + "a", + "s", + "o", + "r", + "e", + "t", + "n", + "u", + "k", + "m", + "l", + "p", + "v", + "d", + "j", + "g", + "ė", + "b", + "y", + "ų", + "š", + "ž", + "c", + "ą", + "į", + ], + "Slovene": [ + "e", + "a", + "i", + "o", + "n", + "r", + "s", + "l", + "t", + "j", + "v", + "k", + "d", + "p", + "m", + "u", + "z", + "b", + "g", + "h", + "č", + "c", + "š", + "ž", + "f", + "y", + ], + "Slovak": [ + "o", + "a", + "e", + "n", + "i", + "r", + "v", + "t", + "s", + "l", + "k", + "d", + "m", + "p", + "u", + "c", + "h", + "j", + "b", + "z", + "á", + "y", + "ý", + "í", + "č", + "é", + ], + "Hebrew": [ + "י", + "ו", + "ה", + "ל", + "ר", + "ב", + "ת", + "מ", + "א", + "ש", + "נ", + "ע", + "ם", + "ד", + "ק", + "ח", + "פ", + "ס", + "כ", + "ג", + "ט", + "צ", + "ן", + "ז", + "ך", + ], + "Bulgarian": [ + "а", + "и", + "о", + "е", + "н", + "т", + "р", + "с", + "в", + "л", + "к", + "д", + "п", + "м", + "з", + "г", + "я", + "ъ", + "у", + "б", + "ч", + "ц", + "й", + "ж", + "щ", + "х", + ], + "Croatian": [ + "a", + "i", + "o", + "e", + "n", + "r", + "j", + "s", + "t", + "u", + "k", + "l", + "v", + "d", + "m", + "p", + "g", + "z", + "b", + "c", + "č", + "h", + "š", + "ž", + "ć", + "f", + ], + "Hindi": [ + "क", + "र", + "स", + "न", + "त", + "म", + "ह", + "प", + "य", + "ल", + "व", + "ज", + "द", + "ग", + "ब", + "श", + "ट", + "अ", + "ए", + "थ", + "भ", + "ड", + "च", + "ध", + "ष", + "इ", + ], + "Estonian": [ + "a", + "i", + "e", + "s", + "t", + "l", + "u", + "n", + "o", + "k", + "r", + "d", + "m", + "v", + "g", + "p", + "j", + "h", + "ä", + "b", + "õ", + "ü", + "f", + "c", + "ö", + "y", + ], + "Thai": [ + "า", + "น", + "ร", + "อ", + "ก", + "เ", + "ง", + "ม", + "ย", + "ล", + "ว", + "ด", + "ท", + "ส", + "ต", + "ะ", + "ป", + "บ", + "ค", + "ห", + "แ", + "จ", + "พ", + "ช", + "ข", + "ใ", + ], + "Greek": [ + "α", + "τ", + "ο", + "ι", + "ε", + "ν", + "ρ", + "σ", + "κ", + "η", + "π", + "ς", + "υ", + "μ", + "λ", + "ί", + "ό", + "ά", + "γ", + "έ", + "δ", + "ή", + "ω", + "χ", + "θ", + "ύ", + ], + "Tamil": [ + "க", + "த", + "ப", + "ட", + "ர", + "ம", + "ல", + "ன", + "வ", + "ற", + "ய", + "ள", + "ச", + "ந", + "இ", + "ண", + "அ", + "ஆ", + "ழ", + "ங", + "எ", + "உ", + "ஒ", + "ஸ", + ], + "Kazakh": [ + "а", + "ы", + "е", + "н", + "т", + "р", + "л", + "і", + "д", + "с", + "м", + "қ", + "к", + "о", + "б", + "и", + "у", + "ғ", + "ж", + "ң", + "з", + "ш", + "й", + "п", + "г", + "ө", + ], +} diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/assets/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/assets/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb5e180eb7e9d321a885b0ebc4c99c74eb05d398 GIT binary patch literal 10508 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cd.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cd.py new file mode 100644 index 000000000..6e56fe84a --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cd.py @@ -0,0 +1,390 @@ +import importlib +from codecs import IncrementalDecoder +from collections import Counter +from functools import lru_cache +from typing import Counter as TypeCounter, Dict, List, Optional, Tuple + +from .assets import FREQUENCIES +from .constant import KO_NAMES, LANGUAGE_SUPPORTED_COUNT, TOO_SMALL_SEQUENCE, ZH_NAMES +from .md import is_suspiciously_successive_range +from .models import CoherenceMatches +from .utils import ( + is_accentuated, + is_latin, + is_multi_byte_encoding, + is_unicode_range_secondary, + unicode_range, +) + + +def encoding_unicode_range(iana_name: str) -> List[str]: + """ + Return associated unicode ranges in a single byte code page. + """ + if is_multi_byte_encoding(iana_name): + raise IOError("Function not supported on multi-byte code page") + + decoder = importlib.import_module( + "encodings.{}".format(iana_name) + ).IncrementalDecoder + + p: IncrementalDecoder = decoder(errors="ignore") + seen_ranges: Dict[str, int] = {} + character_count: int = 0 + + for i in range(0x40, 0xFF): + chunk: str = p.decode(bytes([i])) + + if chunk: + character_range: Optional[str] = unicode_range(chunk) + + if character_range is None: + continue + + if is_unicode_range_secondary(character_range) is False: + if character_range not in seen_ranges: + seen_ranges[character_range] = 0 + seen_ranges[character_range] += 1 + character_count += 1 + + return sorted( + [ + character_range + for character_range in seen_ranges + if seen_ranges[character_range] / character_count >= 0.15 + ] + ) + + +def unicode_range_languages(primary_range: str) -> List[str]: + """ + Return inferred languages used with a unicode range. + """ + languages: List[str] = [] + + for language, characters in FREQUENCIES.items(): + for character in characters: + if unicode_range(character) == primary_range: + languages.append(language) + break + + return languages + + +@lru_cache() +def encoding_languages(iana_name: str) -> List[str]: + """ + Single-byte encoding language association. Some code page are heavily linked to particular language(s). + This function does the correspondence. + """ + unicode_ranges: List[str] = encoding_unicode_range(iana_name) + primary_range: Optional[str] = None + + for specified_range in unicode_ranges: + if "Latin" not in specified_range: + primary_range = specified_range + break + + if primary_range is None: + return ["Latin Based"] + + return unicode_range_languages(primary_range) + + +@lru_cache() +def mb_encoding_languages(iana_name: str) -> List[str]: + """ + Multi-byte encoding language association. Some code page are heavily linked to particular language(s). + This function does the correspondence. + """ + if ( + iana_name.startswith("shift_") + or iana_name.startswith("iso2022_jp") + or iana_name.startswith("euc_j") + or iana_name == "cp932" + ): + return ["Japanese"] + if iana_name.startswith("gb") or iana_name in ZH_NAMES: + return ["Chinese"] + if iana_name.startswith("iso2022_kr") or iana_name in KO_NAMES: + return ["Korean"] + + return [] + + +@lru_cache(maxsize=LANGUAGE_SUPPORTED_COUNT) +def get_target_features(language: str) -> Tuple[bool, bool]: + """ + Determine main aspects from a supported language if it contains accents and if is pure Latin. + """ + target_have_accents: bool = False + target_pure_latin: bool = True + + for character in FREQUENCIES[language]: + if not target_have_accents and is_accentuated(character): + target_have_accents = True + if target_pure_latin and is_latin(character) is False: + target_pure_latin = False + + return target_have_accents, target_pure_latin + + +def alphabet_languages( + characters: List[str], ignore_non_latin: bool = False +) -> List[str]: + """ + Return associated languages associated to given characters. + """ + languages: List[Tuple[str, float]] = [] + + source_have_accents = any(is_accentuated(character) for character in characters) + + for language, language_characters in FREQUENCIES.items(): + target_have_accents, target_pure_latin = get_target_features(language) + + if ignore_non_latin and target_pure_latin is False: + continue + + if target_have_accents is False and source_have_accents: + continue + + character_count: int = len(language_characters) + + character_match_count: int = len( + [c for c in language_characters if c in characters] + ) + + ratio: float = character_match_count / character_count + + if ratio >= 0.2: + languages.append((language, ratio)) + + languages = sorted(languages, key=lambda x: x[1], reverse=True) + + return [compatible_language[0] for compatible_language in languages] + + +def characters_popularity_compare( + language: str, ordered_characters: List[str] +) -> float: + """ + Determine if a ordered characters list (by occurrence from most appearance to rarest) match a particular language. + The result is a ratio between 0. (absolutely no correspondence) and 1. (near perfect fit). + Beware that is function is not strict on the match in order to ease the detection. (Meaning close match is 1.) + """ + if language not in FREQUENCIES: + raise ValueError("{} not available".format(language)) + + character_approved_count: int = 0 + FREQUENCIES_language_set = set(FREQUENCIES[language]) + + ordered_characters_count: int = len(ordered_characters) + target_language_characters_count: int = len(FREQUENCIES[language]) + + large_alphabet: bool = target_language_characters_count > 26 + + for character, character_rank in zip( + ordered_characters, range(0, ordered_characters_count) + ): + if character not in FREQUENCIES_language_set: + continue + + character_rank_in_language: int = FREQUENCIES[language].index(character) + expected_projection_ratio: float = ( + target_language_characters_count / ordered_characters_count + ) + character_rank_projection: int = int(character_rank * expected_projection_ratio) + + if ( + large_alphabet is False + and abs(character_rank_projection - character_rank_in_language) > 4 + ): + continue + + if ( + large_alphabet is True + and abs(character_rank_projection - character_rank_in_language) + < target_language_characters_count / 3 + ): + character_approved_count += 1 + continue + + characters_before_source: List[str] = FREQUENCIES[language][ + 0:character_rank_in_language + ] + characters_after_source: List[str] = FREQUENCIES[language][ + character_rank_in_language: + ] + characters_before: List[str] = ordered_characters[0:character_rank] + characters_after: List[str] = ordered_characters[character_rank:] + + before_match_count: int = len( + set(characters_before) & set(characters_before_source) + ) + + after_match_count: int = len( + set(characters_after) & set(characters_after_source) + ) + + if len(characters_before_source) == 0 and before_match_count <= 4: + character_approved_count += 1 + continue + + if len(characters_after_source) == 0 and after_match_count <= 4: + character_approved_count += 1 + continue + + if ( + before_match_count / len(characters_before_source) >= 0.4 + or after_match_count / len(characters_after_source) >= 0.4 + ): + character_approved_count += 1 + continue + + return character_approved_count / len(ordered_characters) + + +def alpha_unicode_split(decoded_sequence: str) -> List[str]: + """ + Given a decoded text sequence, return a list of str. Unicode range / alphabet separation. + Ex. a text containing English/Latin with a bit a Hebrew will return two items in the resulting list; + One containing the latin letters and the other hebrew. + """ + layers: Dict[str, str] = {} + + for character in decoded_sequence: + if character.isalpha() is False: + continue + + character_range: Optional[str] = unicode_range(character) + + if character_range is None: + continue + + layer_target_range: Optional[str] = None + + for discovered_range in layers: + if ( + is_suspiciously_successive_range(discovered_range, character_range) + is False + ): + layer_target_range = discovered_range + break + + if layer_target_range is None: + layer_target_range = character_range + + if layer_target_range not in layers: + layers[layer_target_range] = character.lower() + continue + + layers[layer_target_range] += character.lower() + + return list(layers.values()) + + +def merge_coherence_ratios(results: List[CoherenceMatches]) -> CoherenceMatches: + """ + This function merge results previously given by the function coherence_ratio. + The return type is the same as coherence_ratio. + """ + per_language_ratios: Dict[str, List[float]] = {} + for result in results: + for sub_result in result: + language, ratio = sub_result + if language not in per_language_ratios: + per_language_ratios[language] = [ratio] + continue + per_language_ratios[language].append(ratio) + + merge = [ + ( + language, + round( + sum(per_language_ratios[language]) / len(per_language_ratios[language]), + 4, + ), + ) + for language in per_language_ratios + ] + + return sorted(merge, key=lambda x: x[1], reverse=True) + + +def filter_alt_coherence_matches(results: CoherenceMatches) -> CoherenceMatches: + """ + We shall NOT return "English—" in CoherenceMatches because it is an alternative + of "English". This function only keeps the best match and remove the em-dash in it. + """ + index_results: Dict[str, List[float]] = dict() + + for result in results: + language, ratio = result + no_em_name: str = language.replace("—", "") + + if no_em_name not in index_results: + index_results[no_em_name] = [] + + index_results[no_em_name].append(ratio) + + if any(len(index_results[e]) > 1 for e in index_results): + filtered_results: CoherenceMatches = [] + + for language in index_results: + filtered_results.append((language, max(index_results[language]))) + + return filtered_results + + return results + + +@lru_cache(maxsize=2048) +def coherence_ratio( + decoded_sequence: str, threshold: float = 0.1, lg_inclusion: Optional[str] = None +) -> CoherenceMatches: + """ + Detect ANY language that can be identified in given sequence. The sequence will be analysed by layers. + A layer = Character extraction by alphabets/ranges. + """ + + results: List[Tuple[str, float]] = [] + ignore_non_latin: bool = False + + sufficient_match_count: int = 0 + + lg_inclusion_list = lg_inclusion.split(",") if lg_inclusion is not None else [] + if "Latin Based" in lg_inclusion_list: + ignore_non_latin = True + lg_inclusion_list.remove("Latin Based") + + for layer in alpha_unicode_split(decoded_sequence): + sequence_frequencies: TypeCounter[str] = Counter(layer) + most_common = sequence_frequencies.most_common() + + character_count: int = sum(o for c, o in most_common) + + if character_count <= TOO_SMALL_SEQUENCE: + continue + + popular_character_ordered: List[str] = [c for c, o in most_common] + + for language in lg_inclusion_list or alphabet_languages( + popular_character_ordered, ignore_non_latin + ): + ratio: float = characters_popularity_compare( + language, popular_character_ordered + ) + + if ratio < threshold: + continue + elif ratio >= 0.8: + sufficient_match_count += 1 + + results.append((language, round(ratio, 4))) + + if sufficient_match_count >= 3: + break + + return sorted( + filter_alt_coherence_matches(results), key=lambda x: x[1], reverse=True + ) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b19ad0b37c60884793075b5603520e1cc8b09c2 GIT binary patch literal 280 zcmZvXL23gr3`L!iMG52}T{xa0+Y$=dXVU{1$5v*<9fp5rcRW)9F2vnoM9s& zG#CI9hDPp**qT17s+Jfykvm#O3X)0wKmIjpDL(P>cmO+C56Xd@29J9c2W}~>S9PT_ vGRTsoGffF&Taz-d4wQQ1@e7i&9+lP@khNaL;rsQyFNr*C#;5X2!Cd?Rtr1jb literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/normalizer.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/normalizer.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a2ceb5ff7e2b771424574f5b5954e3a51e26bf26 GIT binary patch literal 6562 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 IK_@o;7t6&oVgLXD literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/normalizer.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/normalizer.py new file mode 100644 index 000000000..f4bcbaac0 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/cli/normalizer.py @@ -0,0 +1,296 @@ +import argparse +import sys +from json import dumps +from os.path import abspath, basename, dirname, join, realpath +from platform import python_version +from typing import List, Optional +from unicodedata import unidata_version + +import charset_normalizer.md as md_module +from charset_normalizer import from_fp +from charset_normalizer.models import CliDetectionResult +from charset_normalizer.version import __version__ + + +def query_yes_no(question: str, default: str = "yes") -> bool: + """Ask a yes/no question via input() and return their answer. + + "question" is a string that is presented to the user. + "default" is the presumed answer if the user just hits . + It must be "yes" (the default), "no" or None (meaning + an answer is required of the user). + + The "answer" return value is True for "yes" or False for "no". + + Credit goes to (c) https://stackoverflow.com/questions/3041986/apt-command-line-interface-like-yes-no-input + """ + valid = {"yes": True, "y": True, "ye": True, "no": False, "n": False} + if default is None: + prompt = " [y/n] " + elif default == "yes": + prompt = " [Y/n] " + elif default == "no": + prompt = " [y/N] " + else: + raise ValueError("invalid default answer: '%s'" % default) + + while True: + sys.stdout.write(question + prompt) + choice = input().lower() + if default is not None and choice == "": + return valid[default] + elif choice in valid: + return valid[choice] + else: + sys.stdout.write("Please respond with 'yes' or 'no' " "(or 'y' or 'n').\n") + + +def cli_detect(argv: Optional[List[str]] = None) -> int: + """ + CLI assistant using ARGV and ArgumentParser + :param argv: + :return: 0 if everything is fine, anything else equal trouble + """ + parser = argparse.ArgumentParser( + description="The Real First Universal Charset Detector. " + "Discover originating encoding used on text file. " + "Normalize text to unicode." + ) + + parser.add_argument( + "files", type=argparse.FileType("rb"), nargs="+", help="File(s) to be analysed" + ) + parser.add_argument( + "-v", + "--verbose", + action="store_true", + default=False, + dest="verbose", + help="Display complementary information about file if any. " + "Stdout will contain logs about the detection process.", + ) + parser.add_argument( + "-a", + "--with-alternative", + action="store_true", + default=False, + dest="alternatives", + help="Output complementary possibilities if any. Top-level JSON WILL be a list.", + ) + parser.add_argument( + "-n", + "--normalize", + action="store_true", + default=False, + dest="normalize", + help="Permit to normalize input file. If not set, program does not write anything.", + ) + parser.add_argument( + "-m", + "--minimal", + action="store_true", + default=False, + dest="minimal", + help="Only output the charset detected to STDOUT. Disabling JSON output.", + ) + parser.add_argument( + "-r", + "--replace", + action="store_true", + default=False, + dest="replace", + help="Replace file when trying to normalize it instead of creating a new one.", + ) + parser.add_argument( + "-f", + "--force", + action="store_true", + default=False, + dest="force", + help="Replace file without asking if you are sure, use this flag with caution.", + ) + parser.add_argument( + "-t", + "--threshold", + action="store", + default=0.2, + type=float, + dest="threshold", + help="Define a custom maximum amount of chaos allowed in decoded content. 0. <= chaos <= 1.", + ) + parser.add_argument( + "--version", + action="version", + version="Charset-Normalizer {} - Python {} - Unicode {} - SpeedUp {}".format( + __version__, + python_version(), + unidata_version, + "OFF" if md_module.__file__.lower().endswith(".py") else "ON", + ), + help="Show version information and exit.", + ) + + args = parser.parse_args(argv) + + if args.replace is True and args.normalize is False: + print("Use --replace in addition of --normalize only.", file=sys.stderr) + return 1 + + if args.force is True and args.replace is False: + print("Use --force in addition of --replace only.", file=sys.stderr) + return 1 + + if args.threshold < 0.0 or args.threshold > 1.0: + print("--threshold VALUE should be between 0. AND 1.", file=sys.stderr) + return 1 + + x_ = [] + + for my_file in args.files: + matches = from_fp(my_file, threshold=args.threshold, explain=args.verbose) + + best_guess = matches.best() + + if best_guess is None: + print( + 'Unable to identify originating encoding for "{}". {}'.format( + my_file.name, + "Maybe try increasing maximum amount of chaos." + if args.threshold < 1.0 + else "", + ), + file=sys.stderr, + ) + x_.append( + CliDetectionResult( + abspath(my_file.name), + None, + [], + [], + "Unknown", + [], + False, + 1.0, + 0.0, + None, + True, + ) + ) + else: + x_.append( + CliDetectionResult( + abspath(my_file.name), + best_guess.encoding, + best_guess.encoding_aliases, + [ + cp + for cp in best_guess.could_be_from_charset + if cp != best_guess.encoding + ], + best_guess.language, + best_guess.alphabets, + best_guess.bom, + best_guess.percent_chaos, + best_guess.percent_coherence, + None, + True, + ) + ) + + if len(matches) > 1 and args.alternatives: + for el in matches: + if el != best_guess: + x_.append( + CliDetectionResult( + abspath(my_file.name), + el.encoding, + el.encoding_aliases, + [ + cp + for cp in el.could_be_from_charset + if cp != el.encoding + ], + el.language, + el.alphabets, + el.bom, + el.percent_chaos, + el.percent_coherence, + None, + False, + ) + ) + + if args.normalize is True: + if best_guess.encoding.startswith("utf") is True: + print( + '"{}" file does not need to be normalized, as it already came from unicode.'.format( + my_file.name + ), + file=sys.stderr, + ) + if my_file.closed is False: + my_file.close() + continue + + dir_path = dirname(realpath(my_file.name)) + file_name = basename(realpath(my_file.name)) + + o_: List[str] = file_name.split(".") + + if args.replace is False: + o_.insert(-1, best_guess.encoding) + if my_file.closed is False: + my_file.close() + elif ( + args.force is False + and query_yes_no( + 'Are you sure to normalize "{}" by replacing it ?'.format( + my_file.name + ), + "no", + ) + is False + ): + if my_file.closed is False: + my_file.close() + continue + + try: + x_[0].unicode_path = join(dir_path, ".".join(o_)) + + with open(x_[0].unicode_path, "w", encoding="utf-8") as fp: + fp.write(str(best_guess)) + except IOError as e: + print(str(e), file=sys.stderr) + if my_file.closed is False: + my_file.close() + return 2 + + if my_file.closed is False: + my_file.close() + + if args.minimal is False: + print( + dumps( + [el.__dict__ for el in x_] if len(x_) > 1 else x_[0].__dict__, + ensure_ascii=True, + indent=4, + ) + ) + else: + for my_file in args.files: + print( + ", ".join( + [ + el.encoding or "undefined" + for el in x_ + if el.path == abspath(my_file.name) + ] + ) + ) + + return 0 + + +if __name__ == "__main__": + cli_detect() diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/constant.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/constant.py new file mode 100644 index 000000000..3188108d6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/constant.py @@ -0,0 +1,495 @@ +from codecs import BOM_UTF8, BOM_UTF16_BE, BOM_UTF16_LE, BOM_UTF32_BE, BOM_UTF32_LE +from encodings.aliases import aliases +from re import IGNORECASE, compile as re_compile +from typing import Dict, List, Set, Union + +from .assets import FREQUENCIES + +# Contain for each eligible encoding a list of/item bytes SIG/BOM +ENCODING_MARKS: Dict[str, Union[bytes, List[bytes]]] = { + "utf_8": BOM_UTF8, + "utf_7": [ + b"\x2b\x2f\x76\x38", + b"\x2b\x2f\x76\x39", + b"\x2b\x2f\x76\x2b", + b"\x2b\x2f\x76\x2f", + b"\x2b\x2f\x76\x38\x2d", + ], + "gb18030": b"\x84\x31\x95\x33", + "utf_32": [BOM_UTF32_BE, BOM_UTF32_LE], + "utf_16": [BOM_UTF16_BE, BOM_UTF16_LE], +} + +TOO_SMALL_SEQUENCE: int = 32 +TOO_BIG_SEQUENCE: int = int(10e6) + +UTF8_MAXIMAL_ALLOCATION: int = 1112064 + +UNICODE_RANGES_COMBINED: Dict[str, range] = { + "Control character": range(31 + 1), + "Basic Latin": range(32, 127 + 1), + "Latin-1 Supplement": range(128, 255 + 1), + "Latin Extended-A": range(256, 383 + 1), + "Latin Extended-B": range(384, 591 + 1), + "IPA Extensions": range(592, 687 + 1), + "Spacing Modifier Letters": range(688, 767 + 1), + "Combining Diacritical Marks": range(768, 879 + 1), + "Greek and Coptic": range(880, 1023 + 1), + "Cyrillic": range(1024, 1279 + 1), + "Cyrillic Supplement": range(1280, 1327 + 1), + "Armenian": range(1328, 1423 + 1), + "Hebrew": range(1424, 1535 + 1), + "Arabic": range(1536, 1791 + 1), + "Syriac": range(1792, 1871 + 1), + "Arabic Supplement": range(1872, 1919 + 1), + "Thaana": range(1920, 1983 + 1), + "NKo": range(1984, 2047 + 1), + "Samaritan": range(2048, 2111 + 1), + "Mandaic": range(2112, 2143 + 1), + "Syriac Supplement": range(2144, 2159 + 1), + "Arabic Extended-A": range(2208, 2303 + 1), + "Devanagari": range(2304, 2431 + 1), + "Bengali": range(2432, 2559 + 1), + "Gurmukhi": range(2560, 2687 + 1), + "Gujarati": range(2688, 2815 + 1), + "Oriya": range(2816, 2943 + 1), + "Tamil": range(2944, 3071 + 1), + "Telugu": range(3072, 3199 + 1), + "Kannada": range(3200, 3327 + 1), + "Malayalam": range(3328, 3455 + 1), + "Sinhala": range(3456, 3583 + 1), + "Thai": range(3584, 3711 + 1), + "Lao": range(3712, 3839 + 1), + "Tibetan": range(3840, 4095 + 1), + "Myanmar": range(4096, 4255 + 1), + "Georgian": range(4256, 4351 + 1), + "Hangul Jamo": range(4352, 4607 + 1), + "Ethiopic": range(4608, 4991 + 1), + "Ethiopic Supplement": range(4992, 5023 + 1), + "Cherokee": range(5024, 5119 + 1), + "Unified Canadian Aboriginal Syllabics": range(5120, 5759 + 1), + "Ogham": range(5760, 5791 + 1), + "Runic": range(5792, 5887 + 1), + "Tagalog": range(5888, 5919 + 1), + "Hanunoo": range(5920, 5951 + 1), + "Buhid": range(5952, 5983 + 1), + "Tagbanwa": range(5984, 6015 + 1), + "Khmer": range(6016, 6143 + 1), + "Mongolian": range(6144, 6319 + 1), + "Unified Canadian Aboriginal Syllabics Extended": range(6320, 6399 + 1), + "Limbu": range(6400, 6479 + 1), + "Tai Le": range(6480, 6527 + 1), + "New Tai Lue": range(6528, 6623 + 1), + "Khmer Symbols": range(6624, 6655 + 1), + "Buginese": range(6656, 6687 + 1), + "Tai Tham": range(6688, 6831 + 1), + "Combining Diacritical Marks Extended": range(6832, 6911 + 1), + "Balinese": range(6912, 7039 + 1), + "Sundanese": range(7040, 7103 + 1), + "Batak": range(7104, 7167 + 1), + "Lepcha": range(7168, 7247 + 1), + "Ol Chiki": range(7248, 7295 + 1), + "Cyrillic Extended C": range(7296, 7311 + 1), + "Sundanese Supplement": range(7360, 7375 + 1), + "Vedic Extensions": range(7376, 7423 + 1), + "Phonetic Extensions": range(7424, 7551 + 1), + "Phonetic Extensions Supplement": range(7552, 7615 + 1), + "Combining Diacritical Marks Supplement": range(7616, 7679 + 1), + "Latin Extended Additional": range(7680, 7935 + 1), + "Greek Extended": range(7936, 8191 + 1), + "General Punctuation": range(8192, 8303 + 1), + "Superscripts and Subscripts": range(8304, 8351 + 1), + "Currency Symbols": range(8352, 8399 + 1), + "Combining Diacritical Marks for Symbols": range(8400, 8447 + 1), + "Letterlike Symbols": range(8448, 8527 + 1), + "Number Forms": range(8528, 8591 + 1), + "Arrows": range(8592, 8703 + 1), + "Mathematical Operators": range(8704, 8959 + 1), + "Miscellaneous Technical": range(8960, 9215 + 1), + "Control Pictures": range(9216, 9279 + 1), + "Optical Character Recognition": range(9280, 9311 + 1), + "Enclosed Alphanumerics": range(9312, 9471 + 1), + "Box Drawing": range(9472, 9599 + 1), + "Block Elements": range(9600, 9631 + 1), + "Geometric Shapes": range(9632, 9727 + 1), + "Miscellaneous Symbols": range(9728, 9983 + 1), + "Dingbats": range(9984, 10175 + 1), + "Miscellaneous Mathematical Symbols-A": range(10176, 10223 + 1), + "Supplemental Arrows-A": range(10224, 10239 + 1), + "Braille Patterns": range(10240, 10495 + 1), + "Supplemental Arrows-B": range(10496, 10623 + 1), + "Miscellaneous Mathematical Symbols-B": range(10624, 10751 + 1), + "Supplemental Mathematical Operators": range(10752, 11007 + 1), + "Miscellaneous Symbols and Arrows": range(11008, 11263 + 1), + "Glagolitic": range(11264, 11359 + 1), + "Latin Extended-C": range(11360, 11391 + 1), + "Coptic": range(11392, 11519 + 1), + "Georgian Supplement": range(11520, 11567 + 1), + "Tifinagh": range(11568, 11647 + 1), + "Ethiopic Extended": range(11648, 11743 + 1), + "Cyrillic Extended-A": range(11744, 11775 + 1), + "Supplemental Punctuation": range(11776, 11903 + 1), + "CJK Radicals Supplement": range(11904, 12031 + 1), + "Kangxi Radicals": range(12032, 12255 + 1), + "Ideographic Description Characters": range(12272, 12287 + 1), + "CJK Symbols and Punctuation": range(12288, 12351 + 1), + "Hiragana": range(12352, 12447 + 1), + "Katakana": range(12448, 12543 + 1), + "Bopomofo": range(12544, 12591 + 1), + "Hangul Compatibility Jamo": range(12592, 12687 + 1), + "Kanbun": range(12688, 12703 + 1), + "Bopomofo Extended": range(12704, 12735 + 1), + "CJK Strokes": range(12736, 12783 + 1), + "Katakana Phonetic Extensions": range(12784, 12799 + 1), + "Enclosed CJK Letters and Months": range(12800, 13055 + 1), + "CJK Compatibility": range(13056, 13311 + 1), + "CJK Unified Ideographs Extension A": range(13312, 19903 + 1), + "Yijing Hexagram Symbols": range(19904, 19967 + 1), + "CJK Unified Ideographs": range(19968, 40959 + 1), + "Yi Syllables": range(40960, 42127 + 1), + "Yi Radicals": range(42128, 42191 + 1), + "Lisu": range(42192, 42239 + 1), + "Vai": range(42240, 42559 + 1), + "Cyrillic Extended-B": range(42560, 42655 + 1), + "Bamum": range(42656, 42751 + 1), + "Modifier Tone Letters": range(42752, 42783 + 1), + "Latin Extended-D": range(42784, 43007 + 1), + "Syloti Nagri": range(43008, 43055 + 1), + "Common Indic Number Forms": range(43056, 43071 + 1), + "Phags-pa": range(43072, 43135 + 1), + "Saurashtra": range(43136, 43231 + 1), + "Devanagari Extended": range(43232, 43263 + 1), + "Kayah Li": range(43264, 43311 + 1), + "Rejang": range(43312, 43359 + 1), + "Hangul Jamo Extended-A": range(43360, 43391 + 1), + "Javanese": range(43392, 43487 + 1), + "Myanmar Extended-B": range(43488, 43519 + 1), + "Cham": range(43520, 43615 + 1), + "Myanmar Extended-A": range(43616, 43647 + 1), + "Tai Viet": range(43648, 43743 + 1), + "Meetei Mayek Extensions": range(43744, 43775 + 1), + "Ethiopic Extended-A": range(43776, 43823 + 1), + "Latin Extended-E": range(43824, 43887 + 1), + "Cherokee Supplement": range(43888, 43967 + 1), + "Meetei Mayek": range(43968, 44031 + 1), + "Hangul Syllables": range(44032, 55215 + 1), + "Hangul Jamo Extended-B": range(55216, 55295 + 1), + "High Surrogates": range(55296, 56191 + 1), + "High Private Use Surrogates": range(56192, 56319 + 1), + "Low Surrogates": range(56320, 57343 + 1), + "Private Use Area": range(57344, 63743 + 1), + "CJK Compatibility Ideographs": range(63744, 64255 + 1), + "Alphabetic Presentation Forms": range(64256, 64335 + 1), + "Arabic Presentation Forms-A": range(64336, 65023 + 1), + "Variation Selectors": range(65024, 65039 + 1), + "Vertical Forms": range(65040, 65055 + 1), + "Combining Half Marks": range(65056, 65071 + 1), + "CJK Compatibility Forms": range(65072, 65103 + 1), + "Small Form Variants": range(65104, 65135 + 1), + "Arabic Presentation Forms-B": range(65136, 65279 + 1), + "Halfwidth and Fullwidth Forms": range(65280, 65519 + 1), + "Specials": range(65520, 65535 + 1), + "Linear B Syllabary": range(65536, 65663 + 1), + "Linear B Ideograms": range(65664, 65791 + 1), + "Aegean Numbers": range(65792, 65855 + 1), + "Ancient Greek Numbers": range(65856, 65935 + 1), + "Ancient Symbols": range(65936, 65999 + 1), + "Phaistos Disc": range(66000, 66047 + 1), + "Lycian": range(66176, 66207 + 1), + "Carian": range(66208, 66271 + 1), + "Coptic Epact Numbers": range(66272, 66303 + 1), + "Old Italic": range(66304, 66351 + 1), + "Gothic": range(66352, 66383 + 1), + "Old Permic": range(66384, 66431 + 1), + "Ugaritic": range(66432, 66463 + 1), + "Old Persian": range(66464, 66527 + 1), + "Deseret": range(66560, 66639 + 1), + "Shavian": range(66640, 66687 + 1), + "Osmanya": range(66688, 66735 + 1), + "Osage": range(66736, 66815 + 1), + "Elbasan": range(66816, 66863 + 1), + "Caucasian Albanian": range(66864, 66927 + 1), + "Linear A": range(67072, 67455 + 1), + "Cypriot Syllabary": range(67584, 67647 + 1), + "Imperial Aramaic": range(67648, 67679 + 1), + "Palmyrene": range(67680, 67711 + 1), + "Nabataean": range(67712, 67759 + 1), + "Hatran": range(67808, 67839 + 1), + "Phoenician": range(67840, 67871 + 1), + "Lydian": range(67872, 67903 + 1), + "Meroitic Hieroglyphs": range(67968, 67999 + 1), + "Meroitic Cursive": range(68000, 68095 + 1), + "Kharoshthi": range(68096, 68191 + 1), + "Old South Arabian": range(68192, 68223 + 1), + "Old North Arabian": range(68224, 68255 + 1), + "Manichaean": range(68288, 68351 + 1), + "Avestan": range(68352, 68415 + 1), + "Inscriptional Parthian": range(68416, 68447 + 1), + "Inscriptional Pahlavi": range(68448, 68479 + 1), + "Psalter Pahlavi": range(68480, 68527 + 1), + "Old Turkic": range(68608, 68687 + 1), + "Old Hungarian": range(68736, 68863 + 1), + "Rumi Numeral Symbols": range(69216, 69247 + 1), + "Brahmi": range(69632, 69759 + 1), + "Kaithi": range(69760, 69839 + 1), + "Sora Sompeng": range(69840, 69887 + 1), + "Chakma": range(69888, 69967 + 1), + "Mahajani": range(69968, 70015 + 1), + "Sharada": range(70016, 70111 + 1), + "Sinhala Archaic Numbers": range(70112, 70143 + 1), + "Khojki": range(70144, 70223 + 1), + "Multani": range(70272, 70319 + 1), + "Khudawadi": range(70320, 70399 + 1), + "Grantha": range(70400, 70527 + 1), + "Newa": range(70656, 70783 + 1), + "Tirhuta": range(70784, 70879 + 1), + "Siddham": range(71040, 71167 + 1), + "Modi": range(71168, 71263 + 1), + "Mongolian Supplement": range(71264, 71295 + 1), + "Takri": range(71296, 71375 + 1), + "Ahom": range(71424, 71487 + 1), + "Warang Citi": range(71840, 71935 + 1), + "Zanabazar Square": range(72192, 72271 + 1), + "Soyombo": range(72272, 72367 + 1), + "Pau Cin Hau": range(72384, 72447 + 1), + "Bhaiksuki": range(72704, 72815 + 1), + "Marchen": range(72816, 72895 + 1), + "Masaram Gondi": range(72960, 73055 + 1), + "Cuneiform": range(73728, 74751 + 1), + "Cuneiform Numbers and Punctuation": range(74752, 74879 + 1), + "Early Dynastic Cuneiform": range(74880, 75087 + 1), + "Egyptian Hieroglyphs": range(77824, 78895 + 1), + "Anatolian Hieroglyphs": range(82944, 83583 + 1), + "Bamum Supplement": range(92160, 92735 + 1), + "Mro": range(92736, 92783 + 1), + "Bassa Vah": range(92880, 92927 + 1), + "Pahawh Hmong": range(92928, 93071 + 1), + "Miao": range(93952, 94111 + 1), + "Ideographic Symbols and Punctuation": range(94176, 94207 + 1), + "Tangut": range(94208, 100351 + 1), + "Tangut Components": range(100352, 101119 + 1), + "Kana Supplement": range(110592, 110847 + 1), + "Kana Extended-A": range(110848, 110895 + 1), + "Nushu": range(110960, 111359 + 1), + "Duployan": range(113664, 113823 + 1), + "Shorthand Format Controls": range(113824, 113839 + 1), + "Byzantine Musical Symbols": range(118784, 119039 + 1), + "Musical Symbols": range(119040, 119295 + 1), + "Ancient Greek Musical Notation": range(119296, 119375 + 1), + "Tai Xuan Jing Symbols": range(119552, 119647 + 1), + "Counting Rod Numerals": range(119648, 119679 + 1), + "Mathematical Alphanumeric Symbols": range(119808, 120831 + 1), + "Sutton SignWriting": range(120832, 121519 + 1), + "Glagolitic Supplement": range(122880, 122927 + 1), + "Mende Kikakui": range(124928, 125151 + 1), + "Adlam": range(125184, 125279 + 1), + "Arabic Mathematical Alphabetic Symbols": range(126464, 126719 + 1), + "Mahjong Tiles": range(126976, 127023 + 1), + "Domino Tiles": range(127024, 127135 + 1), + "Playing Cards": range(127136, 127231 + 1), + "Enclosed Alphanumeric Supplement": range(127232, 127487 + 1), + "Enclosed Ideographic Supplement": range(127488, 127743 + 1), + "Miscellaneous Symbols and Pictographs": range(127744, 128511 + 1), + "Emoticons range(Emoji)": range(128512, 128591 + 1), + "Ornamental Dingbats": range(128592, 128639 + 1), + "Transport and Map Symbols": range(128640, 128767 + 1), + "Alchemical Symbols": range(128768, 128895 + 1), + "Geometric Shapes Extended": range(128896, 129023 + 1), + "Supplemental Arrows-C": range(129024, 129279 + 1), + "Supplemental Symbols and Pictographs": range(129280, 129535 + 1), + "CJK Unified Ideographs Extension B": range(131072, 173791 + 1), + "CJK Unified Ideographs Extension C": range(173824, 177983 + 1), + "CJK Unified Ideographs Extension D": range(177984, 178207 + 1), + "CJK Unified Ideographs Extension E": range(178208, 183983 + 1), + "CJK Unified Ideographs Extension F": range(183984, 191471 + 1), + "CJK Compatibility Ideographs Supplement": range(194560, 195103 + 1), + "Tags": range(917504, 917631 + 1), + "Variation Selectors Supplement": range(917760, 917999 + 1), +} + + +UNICODE_SECONDARY_RANGE_KEYWORD: List[str] = [ + "Supplement", + "Extended", + "Extensions", + "Modifier", + "Marks", + "Punctuation", + "Symbols", + "Forms", + "Operators", + "Miscellaneous", + "Drawing", + "Block", + "Shapes", + "Supplemental", + "Tags", +] + +RE_POSSIBLE_ENCODING_INDICATION = re_compile( + r"(?:(?:encoding)|(?:charset)|(?:coding))(?:[\:= ]{1,10})(?:[\"\']?)([a-zA-Z0-9\-_]+)(?:[\"\']?)", + IGNORECASE, +) + +IANA_SUPPORTED: List[str] = sorted( + filter( + lambda x: x.endswith("_codec") is False + and x not in {"rot_13", "tactis", "mbcs"}, + list(set(aliases.values())), + ) +) + +IANA_SUPPORTED_COUNT: int = len(IANA_SUPPORTED) + +# pre-computed code page that are similar using the function cp_similarity. +IANA_SUPPORTED_SIMILAR: Dict[str, List[str]] = { + "cp037": ["cp1026", "cp1140", "cp273", "cp500"], + "cp1026": ["cp037", "cp1140", "cp273", "cp500"], + "cp1125": ["cp866"], + "cp1140": ["cp037", "cp1026", "cp273", "cp500"], + "cp1250": ["iso8859_2"], + "cp1251": ["kz1048", "ptcp154"], + "cp1252": ["iso8859_15", "iso8859_9", "latin_1"], + "cp1253": ["iso8859_7"], + "cp1254": ["iso8859_15", "iso8859_9", "latin_1"], + "cp1257": ["iso8859_13"], + "cp273": ["cp037", "cp1026", "cp1140", "cp500"], + "cp437": ["cp850", "cp858", "cp860", "cp861", "cp862", "cp863", "cp865"], + "cp500": ["cp037", "cp1026", "cp1140", "cp273"], + "cp850": ["cp437", "cp857", "cp858", "cp865"], + "cp857": ["cp850", "cp858", "cp865"], + "cp858": ["cp437", "cp850", "cp857", "cp865"], + "cp860": ["cp437", "cp861", "cp862", "cp863", "cp865"], + "cp861": ["cp437", "cp860", "cp862", "cp863", "cp865"], + "cp862": ["cp437", "cp860", "cp861", "cp863", "cp865"], + "cp863": ["cp437", "cp860", "cp861", "cp862", "cp865"], + "cp865": ["cp437", "cp850", "cp857", "cp858", "cp860", "cp861", "cp862", "cp863"], + "cp866": ["cp1125"], + "iso8859_10": ["iso8859_14", "iso8859_15", "iso8859_4", "iso8859_9", "latin_1"], + "iso8859_11": ["tis_620"], + "iso8859_13": ["cp1257"], + "iso8859_14": [ + "iso8859_10", + "iso8859_15", + "iso8859_16", + "iso8859_3", + "iso8859_9", + "latin_1", + ], + "iso8859_15": [ + "cp1252", + "cp1254", + "iso8859_10", + "iso8859_14", + "iso8859_16", + "iso8859_3", + "iso8859_9", + "latin_1", + ], + "iso8859_16": [ + "iso8859_14", + "iso8859_15", + "iso8859_2", + "iso8859_3", + "iso8859_9", + "latin_1", + ], + "iso8859_2": ["cp1250", "iso8859_16", "iso8859_4"], + "iso8859_3": ["iso8859_14", "iso8859_15", "iso8859_16", "iso8859_9", "latin_1"], + "iso8859_4": ["iso8859_10", "iso8859_2", "iso8859_9", "latin_1"], + "iso8859_7": ["cp1253"], + "iso8859_9": [ + "cp1252", + "cp1254", + "cp1258", + "iso8859_10", + "iso8859_14", + "iso8859_15", + "iso8859_16", + "iso8859_3", + "iso8859_4", + "latin_1", + ], + "kz1048": ["cp1251", "ptcp154"], + "latin_1": [ + "cp1252", + "cp1254", + "cp1258", + "iso8859_10", + "iso8859_14", + "iso8859_15", + "iso8859_16", + "iso8859_3", + "iso8859_4", + "iso8859_9", + ], + "mac_iceland": ["mac_roman", "mac_turkish"], + "mac_roman": ["mac_iceland", "mac_turkish"], + "mac_turkish": ["mac_iceland", "mac_roman"], + "ptcp154": ["cp1251", "kz1048"], + "tis_620": ["iso8859_11"], +} + + +CHARDET_CORRESPONDENCE: Dict[str, str] = { + "iso2022_kr": "ISO-2022-KR", + "iso2022_jp": "ISO-2022-JP", + "euc_kr": "EUC-KR", + "tis_620": "TIS-620", + "utf_32": "UTF-32", + "euc_jp": "EUC-JP", + "koi8_r": "KOI8-R", + "iso8859_1": "ISO-8859-1", + "iso8859_2": "ISO-8859-2", + "iso8859_5": "ISO-8859-5", + "iso8859_6": "ISO-8859-6", + "iso8859_7": "ISO-8859-7", + "iso8859_8": "ISO-8859-8", + "utf_16": "UTF-16", + "cp855": "IBM855", + "mac_cyrillic": "MacCyrillic", + "gb2312": "GB2312", + "gb18030": "GB18030", + "cp932": "CP932", + "cp866": "IBM866", + "utf_8": "utf-8", + "utf_8_sig": "UTF-8-SIG", + "shift_jis": "SHIFT_JIS", + "big5": "Big5", + "cp1250": "windows-1250", + "cp1251": "windows-1251", + "cp1252": "Windows-1252", + "cp1253": "windows-1253", + "cp1255": "windows-1255", + "cp1256": "windows-1256", + "cp1254": "Windows-1254", + "cp949": "CP949", +} + + +COMMON_SAFE_ASCII_CHARACTERS: Set[str] = { + "<", + ">", + "=", + ":", + "/", + "&", + ";", + "{", + "}", + "[", + "]", + ",", + "|", + '"', + "-", +} + + +KO_NAMES: Set[str] = {"johab", "cp949", "euc_kr"} +ZH_NAMES: Set[str] = {"big5", "cp950", "big5hkscs", "hz"} + +LANGUAGE_SUPPORTED_COUNT: int = len(FREQUENCIES) + +# Logging LEVEL below DEBUG +TRACE: int = 5 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/legacy.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/legacy.py new file mode 100644 index 000000000..43aad21a9 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/legacy.py @@ -0,0 +1,54 @@ +from typing import Any, Dict, Optional, Union +from warnings import warn + +from .api import from_bytes +from .constant import CHARDET_CORRESPONDENCE + + +def detect( + byte_str: bytes, should_rename_legacy: bool = False, **kwargs: Any +) -> Dict[str, Optional[Union[str, float]]]: + """ + chardet legacy method + Detect the encoding of the given byte string. It should be mostly backward-compatible. + Encoding name will match Chardet own writing whenever possible. (Not on encoding name unsupported by it) + This function is deprecated and should be used to migrate your project easily, consult the documentation for + further information. Not planned for removal. + + :param byte_str: The byte sequence to examine. + :param should_rename_legacy: Should we rename legacy encodings + to their more modern equivalents? + """ + if len(kwargs): + warn( + f"charset-normalizer disregard arguments '{','.join(list(kwargs.keys()))}' in legacy function detect()" + ) + + if not isinstance(byte_str, (bytearray, bytes)): + raise TypeError( # pragma: nocover + "Expected object of type bytes or bytearray, got: " + "{0}".format(type(byte_str)) + ) + + if isinstance(byte_str, bytearray): + byte_str = bytes(byte_str) + + r = from_bytes(byte_str).best() + + encoding = r.encoding if r is not None else None + language = r.language if r is not None and r.language != "Unknown" else "" + confidence = 1.0 - r.chaos if r is not None else None + + # Note: CharsetNormalizer does not return 'UTF-8-SIG' as the sig get stripped in the detection/normalization process + # but chardet does return 'utf-8-sig' and it is a valid codec name. + if r is not None and encoding == "utf_8" and r.bom: + encoding += "_sig" + + if should_rename_legacy is False and encoding in CHARDET_CORRESPONDENCE: + encoding = CHARDET_CORRESPONDENCE[encoding] + + return { + "encoding": encoding, + "language": language, + "confidence": confidence, + } diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/md.cpython-310-x86_64-linux-gnu.so b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/md.cpython-310-x86_64-linux-gnu.so new file mode 100755 index 0000000000000000000000000000000000000000..0e3becc992a951f1d79b64cdbe88d7ba1a93a3a3 GIT binary patch literal 17496 zcmeHOeQXrR6`#HJ;UfoUW4@uO7X%el^`6fL!bcp=`0Hp5xULDLO0=x+*1k*cD|c(K zY1BF;i9!RC)v8jJk|=6bC5_rD`J)j{)f56sQ2R%dekf5?B-EA!CshL}MXp+LeQ##o zd2fA3)Be$avIBc>-tWEN%;sq8L>+Ek-JqSCP9PMHA_Wn0;N z_+7&^?prr&nwy&^A(FCOtiz8csk`M_*(8!=N0`^AAsLd!f6H=4swAB}Y{E>7aG2?+ zlmkAYAC!`Ks3NaX7xu=xD&_04og@Ro%-e|V+$zg+%XQL^BtIv>1}@tP%-^dC2e%}D zlEnKw@F>KBdFx*a`=G3^R$KzI{Uqh-^7C5)Rj6?E?cLAbo%i;iPPAsN_H$4EYw^^n zM}mDDzl$wEJH`ZgynT~VxPW_kF^Jy=$A>3=Ui#_DYoYgk`$6c1%P;l;R5N`7ELs)o zHvpq^a+)8ifnx(Sr=!e&31qc$wgRq6AEy`uWvvsCc@tz43$lSl0yrRXEV~Kr9(N_n zIKF_Lmj2S6J;m`LdtT!FoT?Ia)~i0Xkent%oiai zVP*_W7~PhcPUqr8Hh8O`b?MY_-cA-QGocrAdMoO2%xz(P{kwN{8Etx-zL`#0N+0wY z@ecvay$q7B&Dg3G1kuMXNN>8I>HdpS9OeB=IFoq5g_C}1rzjBnD)tddR~$Iqb7;Hj zz@7Ksj03NyLO`yF3I#EFYjHqx;CRna+7J~v^mo?V>cGo=0(`bQ@bWnW9(CZ(_JGMt zUIe@dcoFa-;6=cTfENKT0w1FY#E$(X5PRHzG0a%(ku$dc$__aB*s=40b0P?(&3^<_ zY5kw!x1l)-InajHE1I@f=LI!E%o!uw;#I^MyT{Mhl!_5vvO zz0WXqR$}eHaYS!uei&QDrg%J0c6>hsWQOMht=hgkq|hU0_{Ave(?0_{wi2(~>}BGWdp}+T zya;#^@FL(vz>9zv0WShx1iT1%5%415MW9v$;z_emv}_}rD`fbGzk;4g7)E9yKM_aH zt?W8}b2R397{E^eS6Qv@&_LqL|M?F}C0s&q{c5R%wxMgK629T$H)Kr8(Ltt+H!7EuLWA

FFk(0X=veOu&0+g>T} zmU2YO!%{vfWnWjGx)Smz;A{J24X92F4{uLb6i2NG+exWp}*elfbCF(wqb^3}rT$HOcHM$p5 zE2sR}ua!E5ilgP)%BgRHVIKZiw4xY21AbP&2{OKm$`X|+is&9l& zbzY6v^IF#YBR5}r!`&Swk&gJbetk8xf;;`mB9M4bK z$y~OjU55*}Eu6~6(_;xMEKmd)%OvzTmYEyA--_FM5-%bAok*+$7ix+x6&HEtSJ-?X zg>;#JQNKU%Qk_q|tRAdW{L9rRADr?B-t;T?`WNo5^ZDni@2WopgQ7n1;D`QC-SCGM zpC8Vo%EEH^^HQzT3iC#CPEXfhPw$+y=+&3AL(kQ^B6ob0&a1U#?6IuXF=}P4LMjfb zS%@b)#c?YGL}M5cIfW z15*EQ1a!#qz7r=;h3j>Q9)J#m3SEburw$m* zN`H7%$nmWbZ(_91pb}rqsy&BQ`0FU`N2v6N-V${pBCoP#ELIh#QLU1rG8(nqIE~_N zygYhW7*s~1d<6{Gi$-@hetRVV8a!2?w_U@fO%(~B%RU&@X+IhnVGR|>&$#--8i~_B z5AweQGKwQUSRbY?I23etU9bBA$9l{2By@&!7!C#gs_ee*-vYc^`)i#S4rmJWtLqwM zT&Y?)INwlU=a9Sq{Dk9k`_Id~%(?yf4eq~mPCvOQad*G^8{iro?$iJ$<_bM`Sq*p- z%o1rnNW3*Q{M!K6$jKo)Yxo}kyxP7hQ{wKS{QEJN zkr5aHXSY@vcE*U~=Bgs>$4cak(R6OuOdAP1S120h*f@*lGWoP+TM5|oRMms;*fPvQ z!JIIxtX-I3BLy>K8Huq>W&$VCxex{9IB=pF3b(_{4P?Z$mzMxvNAl4dr6o4va4 z+1t4X#vQ|e@y+OoN!M8SAV9D$j7WX``*wBq8~b{DztA&e40Z16?}4IjwT;ZN*-LCX zo4X&Za)Vm+VYgzJ8GcPFZyDpYe}s){(Wr9^nb-!$^x{OuHitpl1tF7^%jRrLAI*;G zd;-yuN-(Y^&0>=2iHR&Qg|rL8a@Z;qQ@Lz~Vt}n+rA;KrTt00x{y~iCwlxlUz7!~ZOCM8J0^nr_tE|4J3e*CA4w z4!IlfZbbY;GD8w4--FOB#GC@nW%oko`Vd|v8aF0e24alyZuQg`66%|9Q^Y93U6#kuOWkdkN7mdrhWXhU!USe^-@203%JhuX&!zlENak%DE|_l zq?k|5*3Y8SwN=PinJF^FBl!-%n5XvBygnxRhW9Zrw5rnTv9tpSa?KSwXN&X**D5aaf zQS#mA`8|0 bool: + """ + Determine if given character should be fed in. + """ + raise NotImplementedError # pragma: nocover + + def feed(self, character: str) -> None: + """ + The main routine to be executed upon character. + Insert the logic in witch the text would be considered chaotic. + """ + raise NotImplementedError # pragma: nocover + + def reset(self) -> None: # pragma: no cover + """ + Permit to reset the plugin to the initial state. + """ + raise NotImplementedError + + @property + def ratio(self) -> float: + """ + Compute the chaos ratio based on what your feed() has seen. + Must NOT be lower than 0.; No restriction gt 0. + """ + raise NotImplementedError # pragma: nocover + + +class TooManySymbolOrPunctuationPlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._punctuation_count: int = 0 + self._symbol_count: int = 0 + self._character_count: int = 0 + + self._last_printable_char: Optional[str] = None + self._frenzy_symbol_in_word: bool = False + + def eligible(self, character: str) -> bool: + return character.isprintable() + + def feed(self, character: str) -> None: + self._character_count += 1 + + if ( + character != self._last_printable_char + and character not in COMMON_SAFE_ASCII_CHARACTERS + ): + if is_punctuation(character): + self._punctuation_count += 1 + elif ( + character.isdigit() is False + and is_symbol(character) + and is_emoticon(character) is False + ): + self._symbol_count += 2 + + self._last_printable_char = character + + def reset(self) -> None: # pragma: no cover + self._punctuation_count = 0 + self._character_count = 0 + self._symbol_count = 0 + + @property + def ratio(self) -> float: + if self._character_count == 0: + return 0.0 + + ratio_of_punctuation: float = ( + self._punctuation_count + self._symbol_count + ) / self._character_count + + return ratio_of_punctuation if ratio_of_punctuation >= 0.3 else 0.0 + + +class TooManyAccentuatedPlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._character_count: int = 0 + self._accentuated_count: int = 0 + + def eligible(self, character: str) -> bool: + return character.isalpha() + + def feed(self, character: str) -> None: + self._character_count += 1 + + if is_accentuated(character): + self._accentuated_count += 1 + + def reset(self) -> None: # pragma: no cover + self._character_count = 0 + self._accentuated_count = 0 + + @property + def ratio(self) -> float: + if self._character_count == 0 or self._character_count < 8: + return 0.0 + ratio_of_accentuation: float = self._accentuated_count / self._character_count + return ratio_of_accentuation if ratio_of_accentuation >= 0.35 else 0.0 + + +class UnprintablePlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._unprintable_count: int = 0 + self._character_count: int = 0 + + def eligible(self, character: str) -> bool: + return True + + def feed(self, character: str) -> None: + if is_unprintable(character): + self._unprintable_count += 1 + self._character_count += 1 + + def reset(self) -> None: # pragma: no cover + self._unprintable_count = 0 + + @property + def ratio(self) -> float: + if self._character_count == 0: + return 0.0 + + return (self._unprintable_count * 8) / self._character_count + + +class SuspiciousDuplicateAccentPlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._successive_count: int = 0 + self._character_count: int = 0 + + self._last_latin_character: Optional[str] = None + + def eligible(self, character: str) -> bool: + return character.isalpha() and is_latin(character) + + def feed(self, character: str) -> None: + self._character_count += 1 + if ( + self._last_latin_character is not None + and is_accentuated(character) + and is_accentuated(self._last_latin_character) + ): + if character.isupper() and self._last_latin_character.isupper(): + self._successive_count += 1 + # Worse if its the same char duplicated with different accent. + if remove_accent(character) == remove_accent(self._last_latin_character): + self._successive_count += 1 + self._last_latin_character = character + + def reset(self) -> None: # pragma: no cover + self._successive_count = 0 + self._character_count = 0 + self._last_latin_character = None + + @property + def ratio(self) -> float: + if self._character_count == 0: + return 0.0 + + return (self._successive_count * 2) / self._character_count + + +class SuspiciousRange(MessDetectorPlugin): + def __init__(self) -> None: + self._suspicious_successive_range_count: int = 0 + self._character_count: int = 0 + self._last_printable_seen: Optional[str] = None + + def eligible(self, character: str) -> bool: + return character.isprintable() + + def feed(self, character: str) -> None: + self._character_count += 1 + + if ( + character.isspace() + or is_punctuation(character) + or character in COMMON_SAFE_ASCII_CHARACTERS + ): + self._last_printable_seen = None + return + + if self._last_printable_seen is None: + self._last_printable_seen = character + return + + unicode_range_a: Optional[str] = unicode_range(self._last_printable_seen) + unicode_range_b: Optional[str] = unicode_range(character) + + if is_suspiciously_successive_range(unicode_range_a, unicode_range_b): + self._suspicious_successive_range_count += 1 + + self._last_printable_seen = character + + def reset(self) -> None: # pragma: no cover + self._character_count = 0 + self._suspicious_successive_range_count = 0 + self._last_printable_seen = None + + @property + def ratio(self) -> float: + if self._character_count == 0: + return 0.0 + + ratio_of_suspicious_range_usage: float = ( + self._suspicious_successive_range_count * 2 + ) / self._character_count + + if ratio_of_suspicious_range_usage < 0.1: + return 0.0 + + return ratio_of_suspicious_range_usage + + +class SuperWeirdWordPlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._word_count: int = 0 + self._bad_word_count: int = 0 + self._foreign_long_count: int = 0 + + self._is_current_word_bad: bool = False + self._foreign_long_watch: bool = False + + self._character_count: int = 0 + self._bad_character_count: int = 0 + + self._buffer: str = "" + self._buffer_accent_count: int = 0 + + def eligible(self, character: str) -> bool: + return True + + def feed(self, character: str) -> None: + if character.isalpha(): + self._buffer += character + if is_accentuated(character): + self._buffer_accent_count += 1 + if ( + self._foreign_long_watch is False + and (is_latin(character) is False or is_accentuated(character)) + and is_cjk(character) is False + and is_hangul(character) is False + and is_katakana(character) is False + and is_hiragana(character) is False + and is_thai(character) is False + ): + self._foreign_long_watch = True + return + if not self._buffer: + return + if ( + character.isspace() or is_punctuation(character) or is_separator(character) + ) and self._buffer: + self._word_count += 1 + buffer_length: int = len(self._buffer) + + self._character_count += buffer_length + + if buffer_length >= 4: + if self._buffer_accent_count / buffer_length > 0.34: + self._is_current_word_bad = True + # Word/Buffer ending with a upper case accentuated letter are so rare, + # that we will consider them all as suspicious. Same weight as foreign_long suspicious. + if is_accentuated(self._buffer[-1]) and self._buffer[-1].isupper(): + self._foreign_long_count += 1 + self._is_current_word_bad = True + if buffer_length >= 24 and self._foreign_long_watch: + self._foreign_long_count += 1 + self._is_current_word_bad = True + + if self._is_current_word_bad: + self._bad_word_count += 1 + self._bad_character_count += len(self._buffer) + self._is_current_word_bad = False + + self._foreign_long_watch = False + self._buffer = "" + self._buffer_accent_count = 0 + elif ( + character not in {"<", ">", "-", "=", "~", "|", "_"} + and character.isdigit() is False + and is_symbol(character) + ): + self._is_current_word_bad = True + self._buffer += character + + def reset(self) -> None: # pragma: no cover + self._buffer = "" + self._is_current_word_bad = False + self._foreign_long_watch = False + self._bad_word_count = 0 + self._word_count = 0 + self._character_count = 0 + self._bad_character_count = 0 + self._foreign_long_count = 0 + + @property + def ratio(self) -> float: + if self._word_count <= 10 and self._foreign_long_count == 0: + return 0.0 + + return self._bad_character_count / self._character_count + + +class CjkInvalidStopPlugin(MessDetectorPlugin): + """ + GB(Chinese) based encoding often render the stop incorrectly when the content does not fit and + can be easily detected. Searching for the overuse of '丅' and '丄'. + """ + + def __init__(self) -> None: + self._wrong_stop_count: int = 0 + self._cjk_character_count: int = 0 + + def eligible(self, character: str) -> bool: + return True + + def feed(self, character: str) -> None: + if character in {"丅", "丄"}: + self._wrong_stop_count += 1 + return + if is_cjk(character): + self._cjk_character_count += 1 + + def reset(self) -> None: # pragma: no cover + self._wrong_stop_count = 0 + self._cjk_character_count = 0 + + @property + def ratio(self) -> float: + if self._cjk_character_count < 16: + return 0.0 + return self._wrong_stop_count / self._cjk_character_count + + +class ArchaicUpperLowerPlugin(MessDetectorPlugin): + def __init__(self) -> None: + self._buf: bool = False + + self._character_count_since_last_sep: int = 0 + + self._successive_upper_lower_count: int = 0 + self._successive_upper_lower_count_final: int = 0 + + self._character_count: int = 0 + + self._last_alpha_seen: Optional[str] = None + self._current_ascii_only: bool = True + + def eligible(self, character: str) -> bool: + return True + + def feed(self, character: str) -> None: + is_concerned = character.isalpha() and is_case_variable(character) + chunk_sep = is_concerned is False + + if chunk_sep and self._character_count_since_last_sep > 0: + if ( + self._character_count_since_last_sep <= 64 + and character.isdigit() is False + and self._current_ascii_only is False + ): + self._successive_upper_lower_count_final += ( + self._successive_upper_lower_count + ) + + self._successive_upper_lower_count = 0 + self._character_count_since_last_sep = 0 + self._last_alpha_seen = None + self._buf = False + self._character_count += 1 + self._current_ascii_only = True + + return + + if self._current_ascii_only is True and is_ascii(character) is False: + self._current_ascii_only = False + + if self._last_alpha_seen is not None: + if (character.isupper() and self._last_alpha_seen.islower()) or ( + character.islower() and self._last_alpha_seen.isupper() + ): + if self._buf is True: + self._successive_upper_lower_count += 2 + self._buf = False + else: + self._buf = True + else: + self._buf = False + + self._character_count += 1 + self._character_count_since_last_sep += 1 + self._last_alpha_seen = character + + def reset(self) -> None: # pragma: no cover + self._character_count = 0 + self._character_count_since_last_sep = 0 + self._successive_upper_lower_count = 0 + self._successive_upper_lower_count_final = 0 + self._last_alpha_seen = None + self._buf = False + self._current_ascii_only = True + + @property + def ratio(self) -> float: + if self._character_count == 0: + return 0.0 + + return self._successive_upper_lower_count_final / self._character_count + + +@lru_cache(maxsize=1024) +def is_suspiciously_successive_range( + unicode_range_a: Optional[str], unicode_range_b: Optional[str] +) -> bool: + """ + Determine if two Unicode range seen next to each other can be considered as suspicious. + """ + if unicode_range_a is None or unicode_range_b is None: + return True + + if unicode_range_a == unicode_range_b: + return False + + if "Latin" in unicode_range_a and "Latin" in unicode_range_b: + return False + + if "Emoticons" in unicode_range_a or "Emoticons" in unicode_range_b: + return False + + # Latin characters can be accompanied with a combining diacritical mark + # eg. Vietnamese. + if ("Latin" in unicode_range_a or "Latin" in unicode_range_b) and ( + "Combining" in unicode_range_a or "Combining" in unicode_range_b + ): + return False + + keywords_range_a, keywords_range_b = unicode_range_a.split( + " " + ), unicode_range_b.split(" ") + + for el in keywords_range_a: + if el in UNICODE_SECONDARY_RANGE_KEYWORD: + continue + if el in keywords_range_b: + return False + + # Japanese Exception + range_a_jp_chars, range_b_jp_chars = ( + unicode_range_a + in ( + "Hiragana", + "Katakana", + ), + unicode_range_b in ("Hiragana", "Katakana"), + ) + if (range_a_jp_chars or range_b_jp_chars) and ( + "CJK" in unicode_range_a or "CJK" in unicode_range_b + ): + return False + if range_a_jp_chars and range_b_jp_chars: + return False + + if "Hangul" in unicode_range_a or "Hangul" in unicode_range_b: + if "CJK" in unicode_range_a or "CJK" in unicode_range_b: + return False + if unicode_range_a == "Basic Latin" or unicode_range_b == "Basic Latin": + return False + + # Chinese/Japanese use dedicated range for punctuation and/or separators. + if ("CJK" in unicode_range_a or "CJK" in unicode_range_b) or ( + unicode_range_a in ["Katakana", "Hiragana"] + and unicode_range_b in ["Katakana", "Hiragana"] + ): + if "Punctuation" in unicode_range_a or "Punctuation" in unicode_range_b: + return False + if "Forms" in unicode_range_a or "Forms" in unicode_range_b: + return False + + return True + + +@lru_cache(maxsize=2048) +def mess_ratio( + decoded_sequence: str, maximum_threshold: float = 0.2, debug: bool = False +) -> float: + """ + Compute a mess ratio given a decoded bytes sequence. The maximum threshold does stop the computation earlier. + """ + + detectors: List[MessDetectorPlugin] = [ + md_class() for md_class in MessDetectorPlugin.__subclasses__() + ] + + length: int = len(decoded_sequence) + 1 + + mean_mess_ratio: float = 0.0 + + if length < 512: + intermediary_mean_mess_ratio_calc: int = 32 + elif length <= 1024: + intermediary_mean_mess_ratio_calc = 64 + else: + intermediary_mean_mess_ratio_calc = 128 + + for character, index in zip(decoded_sequence + "\n", range(length)): + for detector in detectors: + if detector.eligible(character): + detector.feed(character) + + if ( + index > 0 and index % intermediary_mean_mess_ratio_calc == 0 + ) or index == length - 1: + mean_mess_ratio = sum(dt.ratio for dt in detectors) + + if mean_mess_ratio >= maximum_threshold: + break + + if debug: + logger = getLogger("charset_normalizer") + + logger.log( + TRACE, + "Mess-detector extended-analysis start. " + f"intermediary_mean_mess_ratio_calc={intermediary_mean_mess_ratio_calc} mean_mess_ratio={mean_mess_ratio} " + f"maximum_threshold={maximum_threshold}", + ) + + if len(decoded_sequence) > 16: + logger.log(TRACE, f"Starting with: {decoded_sequence[:16]}") + logger.log(TRACE, f"Ending with: {decoded_sequence[-16::]}") + + for dt in detectors: # pragma: nocover + logger.log(TRACE, f"{dt.__class__}: {dt.ratio}") + + return round(mean_mess_ratio, 3) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/md__mypyc.cpython-310-x86_64-linux-gnu.so b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/md__mypyc.cpython-310-x86_64-linux-gnu.so new file mode 100755 index 0000000000000000000000000000000000000000..441d8d7bf848e9d529c511403aa9854ed6df2062 GIT binary patch literal 424312 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/models.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/models.py new file mode 100644 index 000000000..7f8ca3890 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/models.py @@ -0,0 +1,337 @@ +from encodings.aliases import aliases +from hashlib import sha256 +from json import dumps +from typing import Any, Dict, Iterator, List, Optional, Tuple, Union + +from .constant import TOO_BIG_SEQUENCE +from .utils import iana_name, is_multi_byte_encoding, unicode_range + + +class CharsetMatch: + def __init__( + self, + payload: bytes, + guessed_encoding: str, + mean_mess_ratio: float, + has_sig_or_bom: bool, + languages: "CoherenceMatches", + decoded_payload: Optional[str] = None, + ): + self._payload: bytes = payload + + self._encoding: str = guessed_encoding + self._mean_mess_ratio: float = mean_mess_ratio + self._languages: CoherenceMatches = languages + self._has_sig_or_bom: bool = has_sig_or_bom + self._unicode_ranges: Optional[List[str]] = None + + self._leaves: List[CharsetMatch] = [] + self._mean_coherence_ratio: float = 0.0 + + self._output_payload: Optional[bytes] = None + self._output_encoding: Optional[str] = None + + self._string: Optional[str] = decoded_payload + + def __eq__(self, other: object) -> bool: + if not isinstance(other, CharsetMatch): + raise TypeError( + "__eq__ cannot be invoked on {} and {}.".format( + str(other.__class__), str(self.__class__) + ) + ) + return self.encoding == other.encoding and self.fingerprint == other.fingerprint + + def __lt__(self, other: object) -> bool: + """ + Implemented to make sorted available upon CharsetMatches items. + """ + if not isinstance(other, CharsetMatch): + raise ValueError + + chaos_difference: float = abs(self.chaos - other.chaos) + coherence_difference: float = abs(self.coherence - other.coherence) + + # Below 1% difference --> Use Coherence + if chaos_difference < 0.01 and coherence_difference > 0.02: + # When having a tough decision, use the result that decoded as many multi-byte as possible. + if chaos_difference == 0.0 and self.coherence == other.coherence: + return self.multi_byte_usage > other.multi_byte_usage + return self.coherence > other.coherence + + return self.chaos < other.chaos + + @property + def multi_byte_usage(self) -> float: + return 1.0 - len(str(self)) / len(self.raw) + + def __str__(self) -> str: + # Lazy Str Loading + if self._string is None: + self._string = str(self._payload, self._encoding, "strict") + return self._string + + def __repr__(self) -> str: + return "".format(self.encoding, self.fingerprint) + + def add_submatch(self, other: "CharsetMatch") -> None: + if not isinstance(other, CharsetMatch) or other == self: + raise ValueError( + "Unable to add instance <{}> as a submatch of a CharsetMatch".format( + other.__class__ + ) + ) + + other._string = None # Unload RAM usage; dirty trick. + self._leaves.append(other) + + @property + def encoding(self) -> str: + return self._encoding + + @property + def encoding_aliases(self) -> List[str]: + """ + Encoding name are known by many name, using this could help when searching for IBM855 when it's listed as CP855. + """ + also_known_as: List[str] = [] + for u, p in aliases.items(): + if self.encoding == u: + also_known_as.append(p) + elif self.encoding == p: + also_known_as.append(u) + return also_known_as + + @property + def bom(self) -> bool: + return self._has_sig_or_bom + + @property + def byte_order_mark(self) -> bool: + return self._has_sig_or_bom + + @property + def languages(self) -> List[str]: + """ + Return the complete list of possible languages found in decoded sequence. + Usually not really useful. Returned list may be empty even if 'language' property return something != 'Unknown'. + """ + return [e[0] for e in self._languages] + + @property + def language(self) -> str: + """ + Most probable language found in decoded sequence. If none were detected or inferred, the property will return + "Unknown". + """ + if not self._languages: + # Trying to infer the language based on the given encoding + # Its either English or we should not pronounce ourselves in certain cases. + if "ascii" in self.could_be_from_charset: + return "English" + + # doing it there to avoid circular import + from charset_normalizer.cd import encoding_languages, mb_encoding_languages + + languages = ( + mb_encoding_languages(self.encoding) + if is_multi_byte_encoding(self.encoding) + else encoding_languages(self.encoding) + ) + + if len(languages) == 0 or "Latin Based" in languages: + return "Unknown" + + return languages[0] + + return self._languages[0][0] + + @property + def chaos(self) -> float: + return self._mean_mess_ratio + + @property + def coherence(self) -> float: + if not self._languages: + return 0.0 + return self._languages[0][1] + + @property + def percent_chaos(self) -> float: + return round(self.chaos * 100, ndigits=3) + + @property + def percent_coherence(self) -> float: + return round(self.coherence * 100, ndigits=3) + + @property + def raw(self) -> bytes: + """ + Original untouched bytes. + """ + return self._payload + + @property + def submatch(self) -> List["CharsetMatch"]: + return self._leaves + + @property + def has_submatch(self) -> bool: + return len(self._leaves) > 0 + + @property + def alphabets(self) -> List[str]: + if self._unicode_ranges is not None: + return self._unicode_ranges + # list detected ranges + detected_ranges: List[Optional[str]] = [ + unicode_range(char) for char in str(self) + ] + # filter and sort + self._unicode_ranges = sorted(list({r for r in detected_ranges if r})) + return self._unicode_ranges + + @property + def could_be_from_charset(self) -> List[str]: + """ + The complete list of encoding that output the exact SAME str result and therefore could be the originating + encoding. + This list does include the encoding available in property 'encoding'. + """ + return [self._encoding] + [m.encoding for m in self._leaves] + + def output(self, encoding: str = "utf_8") -> bytes: + """ + Method to get re-encoded bytes payload using given target encoding. Default to UTF-8. + Any errors will be simply ignored by the encoder NOT replaced. + """ + if self._output_encoding is None or self._output_encoding != encoding: + self._output_encoding = encoding + self._output_payload = str(self).encode(encoding, "replace") + + return self._output_payload # type: ignore + + @property + def fingerprint(self) -> str: + """ + Retrieve the unique SHA256 computed using the transformed (re-encoded) payload. Not the original one. + """ + return sha256(self.output()).hexdigest() + + +class CharsetMatches: + """ + Container with every CharsetMatch items ordered by default from most probable to the less one. + Act like a list(iterable) but does not implements all related methods. + """ + + def __init__(self, results: Optional[List[CharsetMatch]] = None): + self._results: List[CharsetMatch] = sorted(results) if results else [] + + def __iter__(self) -> Iterator[CharsetMatch]: + yield from self._results + + def __getitem__(self, item: Union[int, str]) -> CharsetMatch: + """ + Retrieve a single item either by its position or encoding name (alias may be used here). + Raise KeyError upon invalid index or encoding not present in results. + """ + if isinstance(item, int): + return self._results[item] + if isinstance(item, str): + item = iana_name(item, False) + for result in self._results: + if item in result.could_be_from_charset: + return result + raise KeyError + + def __len__(self) -> int: + return len(self._results) + + def __bool__(self) -> bool: + return len(self._results) > 0 + + def append(self, item: CharsetMatch) -> None: + """ + Insert a single match. Will be inserted accordingly to preserve sort. + Can be inserted as a submatch. + """ + if not isinstance(item, CharsetMatch): + raise ValueError( + "Cannot append instance '{}' to CharsetMatches".format( + str(item.__class__) + ) + ) + # We should disable the submatch factoring when the input file is too heavy (conserve RAM usage) + if len(item.raw) <= TOO_BIG_SEQUENCE: + for match in self._results: + if match.fingerprint == item.fingerprint and match.chaos == item.chaos: + match.add_submatch(item) + return + self._results.append(item) + self._results = sorted(self._results) + + def best(self) -> Optional["CharsetMatch"]: + """ + Simply return the first match. Strict equivalent to matches[0]. + """ + if not self._results: + return None + return self._results[0] + + def first(self) -> Optional["CharsetMatch"]: + """ + Redundant method, call the method best(). Kept for BC reasons. + """ + return self.best() + + +CoherenceMatch = Tuple[str, float] +CoherenceMatches = List[CoherenceMatch] + + +class CliDetectionResult: + def __init__( + self, + path: str, + encoding: Optional[str], + encoding_aliases: List[str], + alternative_encodings: List[str], + language: str, + alphabets: List[str], + has_sig_or_bom: bool, + chaos: float, + coherence: float, + unicode_path: Optional[str], + is_preferred: bool, + ): + self.path: str = path + self.unicode_path: Optional[str] = unicode_path + self.encoding: Optional[str] = encoding + self.encoding_aliases: List[str] = encoding_aliases + self.alternative_encodings: List[str] = alternative_encodings + self.language: str = language + self.alphabets: List[str] = alphabets + self.has_sig_or_bom: bool = has_sig_or_bom + self.chaos: float = chaos + self.coherence: float = coherence + self.is_preferred: bool = is_preferred + + @property + def __dict__(self) -> Dict[str, Any]: # type: ignore + return { + "path": self.path, + "encoding": self.encoding, + "encoding_aliases": self.encoding_aliases, + "alternative_encodings": self.alternative_encodings, + "language": self.language, + "alphabets": self.alphabets, + "has_sig_or_bom": self.has_sig_or_bom, + "chaos": self.chaos, + "coherence": self.coherence, + "unicode_path": self.unicode_path, + "is_preferred": self.is_preferred, + } + + def to_json(self) -> str: + return dumps(self.__dict__, ensure_ascii=True, indent=4) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/py.typed b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/utils.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/utils.py new file mode 100644 index 000000000..76eafc646 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/utils.py @@ -0,0 +1,414 @@ +import importlib +import logging +import unicodedata +from codecs import IncrementalDecoder +from encodings.aliases import aliases +from functools import lru_cache +from re import findall +from typing import Generator, List, Optional, Set, Tuple, Union + +from _multibytecodec import MultibyteIncrementalDecoder + +from .constant import ( + ENCODING_MARKS, + IANA_SUPPORTED_SIMILAR, + RE_POSSIBLE_ENCODING_INDICATION, + UNICODE_RANGES_COMBINED, + UNICODE_SECONDARY_RANGE_KEYWORD, + UTF8_MAXIMAL_ALLOCATION, +) + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_accentuated(character: str) -> bool: + try: + description: str = unicodedata.name(character) + except ValueError: + return False + return ( + "WITH GRAVE" in description + or "WITH ACUTE" in description + or "WITH CEDILLA" in description + or "WITH DIAERESIS" in description + or "WITH CIRCUMFLEX" in description + or "WITH TILDE" in description + ) + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def remove_accent(character: str) -> str: + decomposed: str = unicodedata.decomposition(character) + if not decomposed: + return character + + codes: List[str] = decomposed.split(" ") + + return chr(int(codes[0], 16)) + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def unicode_range(character: str) -> Optional[str]: + """ + Retrieve the Unicode range official name from a single character. + """ + character_ord: int = ord(character) + + for range_name, ord_range in UNICODE_RANGES_COMBINED.items(): + if character_ord in ord_range: + return range_name + + return None + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_latin(character: str) -> bool: + try: + description: str = unicodedata.name(character) + except ValueError: + return False + return "LATIN" in description + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_ascii(character: str) -> bool: + try: + character.encode("ascii") + except UnicodeEncodeError: + return False + return True + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_punctuation(character: str) -> bool: + character_category: str = unicodedata.category(character) + + if "P" in character_category: + return True + + character_range: Optional[str] = unicode_range(character) + + if character_range is None: + return False + + return "Punctuation" in character_range + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_symbol(character: str) -> bool: + character_category: str = unicodedata.category(character) + + if "S" in character_category or "N" in character_category: + return True + + character_range: Optional[str] = unicode_range(character) + + if character_range is None: + return False + + return "Forms" in character_range + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_emoticon(character: str) -> bool: + character_range: Optional[str] = unicode_range(character) + + if character_range is None: + return False + + return "Emoticons" in character_range + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_separator(character: str) -> bool: + if character.isspace() or character in {"|", "+", ",", ";", "<", ">"}: + return True + + character_category: str = unicodedata.category(character) + + return "Z" in character_category + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_case_variable(character: str) -> bool: + return character.islower() != character.isupper() + + +def is_private_use_only(character: str) -> bool: + character_category: str = unicodedata.category(character) + + return character_category == "Co" + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_cjk(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: + return False + + return "CJK" in character_name + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_hiragana(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: + return False + + return "HIRAGANA" in character_name + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_katakana(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: + return False + + return "KATAKANA" in character_name + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_hangul(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: + return False + + return "HANGUL" in character_name + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_thai(character: str) -> bool: + try: + character_name = unicodedata.name(character) + except ValueError: + return False + + return "THAI" in character_name + + +@lru_cache(maxsize=len(UNICODE_RANGES_COMBINED)) +def is_unicode_range_secondary(range_name: str) -> bool: + return any(keyword in range_name for keyword in UNICODE_SECONDARY_RANGE_KEYWORD) + + +@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION) +def is_unprintable(character: str) -> bool: + return ( + character.isspace() is False # includes \n \t \r \v + and character.isprintable() is False + and character != "\x1A" # Why? Its the ASCII substitute character. + and character != "\ufeff" # bug discovered in Python, + # Zero Width No-Break Space located in Arabic Presentation Forms-B, Unicode 1.1 not acknowledged as space. + ) + + +def any_specified_encoding(sequence: bytes, search_zone: int = 4096) -> Optional[str]: + """ + Extract using ASCII-only decoder any specified encoding in the first n-bytes. + """ + if not isinstance(sequence, bytes): + raise TypeError + + seq_len: int = len(sequence) + + results: List[str] = findall( + RE_POSSIBLE_ENCODING_INDICATION, + sequence[: min(seq_len, search_zone)].decode("ascii", errors="ignore"), + ) + + if len(results) == 0: + return None + + for specified_encoding in results: + specified_encoding = specified_encoding.lower().replace("-", "_") + + encoding_alias: str + encoding_iana: str + + for encoding_alias, encoding_iana in aliases.items(): + if encoding_alias == specified_encoding: + return encoding_iana + if encoding_iana == specified_encoding: + return encoding_iana + + return None + + +@lru_cache(maxsize=128) +def is_multi_byte_encoding(name: str) -> bool: + """ + Verify is a specific encoding is a multi byte one based on it IANA name + """ + return name in { + "utf_8", + "utf_8_sig", + "utf_16", + "utf_16_be", + "utf_16_le", + "utf_32", + "utf_32_le", + "utf_32_be", + "utf_7", + } or issubclass( + importlib.import_module("encodings.{}".format(name)).IncrementalDecoder, + MultibyteIncrementalDecoder, + ) + + +def identify_sig_or_bom(sequence: bytes) -> Tuple[Optional[str], bytes]: + """ + Identify and extract SIG/BOM in given sequence. + """ + + for iana_encoding in ENCODING_MARKS: + marks: Union[bytes, List[bytes]] = ENCODING_MARKS[iana_encoding] + + if isinstance(marks, bytes): + marks = [marks] + + for mark in marks: + if sequence.startswith(mark): + return iana_encoding, mark + + return None, b"" + + +def should_strip_sig_or_bom(iana_encoding: str) -> bool: + return iana_encoding not in {"utf_16", "utf_32"} + + +def iana_name(cp_name: str, strict: bool = True) -> str: + cp_name = cp_name.lower().replace("-", "_") + + encoding_alias: str + encoding_iana: str + + for encoding_alias, encoding_iana in aliases.items(): + if cp_name in [encoding_alias, encoding_iana]: + return encoding_iana + + if strict: + raise ValueError("Unable to retrieve IANA for '{}'".format(cp_name)) + + return cp_name + + +def range_scan(decoded_sequence: str) -> List[str]: + ranges: Set[str] = set() + + for character in decoded_sequence: + character_range: Optional[str] = unicode_range(character) + + if character_range is None: + continue + + ranges.add(character_range) + + return list(ranges) + + +def cp_similarity(iana_name_a: str, iana_name_b: str) -> float: + if is_multi_byte_encoding(iana_name_a) or is_multi_byte_encoding(iana_name_b): + return 0.0 + + decoder_a = importlib.import_module( + "encodings.{}".format(iana_name_a) + ).IncrementalDecoder + decoder_b = importlib.import_module( + "encodings.{}".format(iana_name_b) + ).IncrementalDecoder + + id_a: IncrementalDecoder = decoder_a(errors="ignore") + id_b: IncrementalDecoder = decoder_b(errors="ignore") + + character_match_count: int = 0 + + for i in range(255): + to_be_decoded: bytes = bytes([i]) + if id_a.decode(to_be_decoded) == id_b.decode(to_be_decoded): + character_match_count += 1 + + return character_match_count / 254 + + +def is_cp_similar(iana_name_a: str, iana_name_b: str) -> bool: + """ + Determine if two code page are at least 80% similar. IANA_SUPPORTED_SIMILAR dict was generated using + the function cp_similarity. + """ + return ( + iana_name_a in IANA_SUPPORTED_SIMILAR + and iana_name_b in IANA_SUPPORTED_SIMILAR[iana_name_a] + ) + + +def set_logging_handler( + name: str = "charset_normalizer", + level: int = logging.INFO, + format_string: str = "%(asctime)s | %(levelname)s | %(message)s", +) -> None: + logger = logging.getLogger(name) + logger.setLevel(level) + + handler = logging.StreamHandler() + handler.setFormatter(logging.Formatter(format_string)) + logger.addHandler(handler) + + +def cut_sequence_chunks( + sequences: bytes, + encoding_iana: str, + offsets: range, + chunk_size: int, + bom_or_sig_available: bool, + strip_sig_or_bom: bool, + sig_payload: bytes, + is_multi_byte_decoder: bool, + decoded_payload: Optional[str] = None, +) -> Generator[str, None, None]: + if decoded_payload and is_multi_byte_decoder is False: + for i in offsets: + chunk = decoded_payload[i : i + chunk_size] + if not chunk: + break + yield chunk + else: + for i in offsets: + chunk_end = i + chunk_size + if chunk_end > len(sequences) + 8: + continue + + cut_sequence = sequences[i : i + chunk_size] + + if bom_or_sig_available and strip_sig_or_bom is False: + cut_sequence = sig_payload + cut_sequence + + chunk = cut_sequence.decode( + encoding_iana, + errors="ignore" if is_multi_byte_decoder else "strict", + ) + + # multi-byte bad cutting detector and adjustment + # not the cleanest way to perform that fix but clever enough for now. + if is_multi_byte_decoder and i > 0: + chunk_partial_size_chk: int = min(chunk_size, 16) + + if ( + decoded_payload + and chunk[:chunk_partial_size_chk] not in decoded_payload + ): + for j in range(i, i - 4, -1): + cut_sequence = sequences[j:chunk_end] + + if bom_or_sig_available and strip_sig_or_bom is False: + cut_sequence = sig_payload + cut_sequence + + chunk = cut_sequence.decode(encoding_iana, errors="ignore") + + if chunk[:chunk_partial_size_chk] in decoded_payload: + break + + yield chunk diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/version.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/version.py new file mode 100644 index 000000000..b74c2643d --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/charset_normalizer/version.py @@ -0,0 +1,6 @@ +""" +Expose version +""" + +__version__ = "3.1.0" +VERSION = __version__.split(".") diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/distutils-precedence.pth b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/distutils-precedence.pth new file mode 100644 index 000000000..6de4198fc --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/distutils-precedence.pth @@ -0,0 +1 @@ +import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'stdlib') == 'local'; enabled and __import__('_distutils_hack').add_shim(); diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/INSTALLER b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/INSTALLER new file mode 100644 index 000000000..a1b589e38 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/LICENSE.md b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/LICENSE.md new file mode 100644 index 000000000..b6f87326f --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/LICENSE.md @@ -0,0 +1,29 @@ +BSD 3-Clause License + +Copyright (c) 2013-2021, Kim Davies +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/METADATA b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/METADATA new file mode 100644 index 000000000..07f6193b0 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/METADATA @@ -0,0 +1,242 @@ +Metadata-Version: 2.1 +Name: idna +Version: 3.4 +Summary: Internationalized Domain Names in Applications (IDNA) +Author-email: Kim Davies +Requires-Python: >=3.5 +Description-Content-Type: text/x-rst +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: Intended Audience :: System Administrators +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +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 :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Internet :: Name Service (DNS) +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Utilities +Project-URL: Changelog, https://github.com/kjd/idna/blob/master/HISTORY.rst +Project-URL: Issue tracker, https://github.com/kjd/idna/issues +Project-URL: Source, https://github.com/kjd/idna + +Internationalized Domain Names in Applications (IDNA) +===================================================== + +Support for the Internationalized Domain Names in +Applications (IDNA) protocol as specified in `RFC 5891 +`_. This is the latest version of +the protocol and is sometimes referred to as “IDNA 2008”. + +This library also provides support for Unicode Technical +Standard 46, `Unicode IDNA Compatibility Processing +`_. + +This acts as a suitable replacement for the “encodings.idna” +module that comes with the Python standard library, but which +only supports the older superseded IDNA specification (`RFC 3490 +`_). + +Basic functions are simply executed: + +.. code-block:: pycon + + >>> import idna + >>> idna.encode('ドメイン.テスト') + b'xn--eckwd4c7c.xn--zckzah' + >>> print(idna.decode('xn--eckwd4c7c.xn--zckzah')) + ドメイン.テスト + + +Installation +------------ + +This package is available for installation from PyPI: + +.. code-block:: bash + + $ python3 -m pip install idna + + +Usage +----- + +For typical usage, the ``encode`` and ``decode`` functions will take a +domain name argument and perform a conversion to A-labels or U-labels +respectively. + +.. code-block:: pycon + + >>> import idna + >>> idna.encode('ドメイン.テスト') + b'xn--eckwd4c7c.xn--zckzah' + >>> print(idna.decode('xn--eckwd4c7c.xn--zckzah')) + ドメイン.テスト + +You may use the codec encoding and decoding methods using the +``idna.codec`` module: + +.. code-block:: pycon + + >>> import idna.codec + >>> print('домен.испытание'.encode('idna')) + b'xn--d1acufc.xn--80akhbyknj4f' + >>> print(b'xn--d1acufc.xn--80akhbyknj4f'.decode('idna')) + домен.испытание + +Conversions can be applied at a per-label basis using the ``ulabel`` or +``alabel`` functions if necessary: + +.. code-block:: pycon + + >>> idna.alabel('测试') + b'xn--0zwm56d' + +Compatibility Mapping (UTS #46) ++++++++++++++++++++++++++++++++ + +As described in `RFC 5895 `_, the +IDNA specification does not normalize input from different potential +ways a user may input a domain name. This functionality, known as +a “mapping”, is considered by the specification to be a local +user-interface issue distinct from IDNA conversion functionality. + +This library provides one such mapping, that was developed by the +Unicode Consortium. Known as `Unicode IDNA Compatibility Processing +`_, it provides for both a regular +mapping for typical applications, as well as a transitional mapping to +help migrate from older IDNA 2003 applications. + +For example, “Königsgäßchen” is not a permissible label as *LATIN +CAPITAL LETTER K* is not allowed (nor are capital letters in general). +UTS 46 will convert this into lower case prior to applying the IDNA +conversion. + +.. code-block:: pycon + + >>> import idna + >>> idna.encode('Königsgäßchen') + ... + idna.core.InvalidCodepoint: Codepoint U+004B at position 1 of 'Königsgäßchen' not allowed + >>> idna.encode('Königsgäßchen', uts46=True) + b'xn--knigsgchen-b4a3dun' + >>> print(idna.decode('xn--knigsgchen-b4a3dun')) + königsgäßchen + +Transitional processing provides conversions to help transition from +the older 2003 standard to the current standard. For example, in the +original IDNA specification, the *LATIN SMALL LETTER SHARP S* (ß) was +converted into two *LATIN SMALL LETTER S* (ss), whereas in the current +IDNA specification this conversion is not performed. + +.. code-block:: pycon + + >>> idna.encode('Königsgäßchen', uts46=True, transitional=True) + 'xn--knigsgsschen-lcb0w' + +Implementors should use transitional processing with caution, only in +rare cases where conversion from legacy labels to current labels must be +performed (i.e. IDNA implementations that pre-date 2008). For typical +applications that just need to convert labels, transitional processing +is unlikely to be beneficial and could produce unexpected incompatible +results. + +``encodings.idna`` Compatibility +++++++++++++++++++++++++++++++++ + +Function calls from the Python built-in ``encodings.idna`` module are +mapped to their IDNA 2008 equivalents using the ``idna.compat`` module. +Simply substitute the ``import`` clause in your code to refer to the new +module name. + +Exceptions +---------- + +All errors raised during the conversion following the specification +should raise an exception derived from the ``idna.IDNAError`` base +class. + +More specific exceptions that may be generated as ``idna.IDNABidiError`` +when the error reflects an illegal combination of left-to-right and +right-to-left characters in a label; ``idna.InvalidCodepoint`` when +a specific codepoint is an illegal character in an IDN label (i.e. +INVALID); and ``idna.InvalidCodepointContext`` when the codepoint is +illegal based on its positional context (i.e. it is CONTEXTO or CONTEXTJ +but the contextual requirements are not satisfied.) + +Building and Diagnostics +------------------------ + +The IDNA and UTS 46 functionality relies upon pre-calculated lookup +tables for performance. These tables are derived from computing against +eligibility criteria in the respective standards. These tables are +computed using the command-line script ``tools/idna-data``. + +This tool will fetch relevant codepoint data from the Unicode repository +and perform the required calculations to identify eligibility. There are +three main modes: + +* ``idna-data make-libdata``. Generates ``idnadata.py`` and + ``uts46data.py``, the pre-calculated lookup tables using for IDNA and + UTS 46 conversions. Implementors who wish to track this library against + a different Unicode version may use this tool to manually generate a + different version of the ``idnadata.py`` and ``uts46data.py`` files. + +* ``idna-data make-table``. Generate a table of the IDNA disposition + (e.g. PVALID, CONTEXTJ, CONTEXTO) in the format found in Appendix + B.1 of RFC 5892 and the pre-computed tables published by `IANA + `_. + +* ``idna-data U+0061``. Prints debugging output on the various + properties associated with an individual Unicode codepoint (in this + case, U+0061), that are used to assess the IDNA and UTS 46 status of a + codepoint. This is helpful in debugging or analysis. + +The tool accepts a number of arguments, described using ``idna-data +-h``. Most notably, the ``--version`` argument allows the specification +of the version of Unicode to use in computing the table data. For +example, ``idna-data --version 9.0.0 make-libdata`` will generate +library data against Unicode 9.0.0. + + +Additional Notes +---------------- + +* **Packages**. The latest tagged release version is published in the + `Python Package Index `_. + +* **Version support**. This library supports Python 3.5 and higher. + As this library serves as a low-level toolkit for a variety of + applications, many of which strive for broad compatibility with older + Python versions, there is no rush to remove older intepreter support. + Removing support for older versions should be well justified in that the + maintenance burden has become too high. + +* **Python 2**. Python 2 is supported by version 2.x of this library. + While active development of the version 2.x series has ended, notable + issues being corrected may be backported to 2.x. Use "idna<3" in your + requirements file if you need this library for a Python 2 application. + +* **Testing**. The library has a test suite based on each rule of the + IDNA specification, as well as tests that are provided as part of the + Unicode Technical Standard 46, `Unicode IDNA Compatibility Processing + `_. + +* **Emoji**. It is an occasional request to support emoji domains in + this library. Encoding of symbols like emoji is expressly prohibited by + the technical standard IDNA 2008 and emoji domains are broadly phased + out across the domain industry due to associated security risks. For + now, applications that wish need to support these non-compliant labels + may wish to consider trying the encode/decode operation in this library + first, and then falling back to using `encodings.idna`. See `the Github + project `_ for more discussion. + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/RECORD b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/RECORD new file mode 100644 index 000000000..1fb2fddf4 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/RECORD @@ -0,0 +1,22 @@ +idna-3.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +idna-3.4.dist-info/LICENSE.md,sha256=otbk2UC9JNvnuWRc3hmpeSzFHbeuDVrNMBrIYMqj6DY,1523 +idna-3.4.dist-info/METADATA,sha256=8aLSf9MFS7oB26pZh2hprg7eJp0UJSc-3rpf_evp4DA,9830 +idna-3.4.dist-info/RECORD,, +idna-3.4.dist-info/WHEEL,sha256=4TfKIB_xu-04bc2iKz6_zFt-gEFEEDU_31HGhqzOCE8,81 +idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 +idna/__pycache__/__init__.cpython-310.pyc,, +idna/__pycache__/codec.cpython-310.pyc,, +idna/__pycache__/compat.cpython-310.pyc,, +idna/__pycache__/core.cpython-310.pyc,, +idna/__pycache__/idnadata.cpython-310.pyc,, +idna/__pycache__/intranges.cpython-310.pyc,, +idna/__pycache__/package_data.cpython-310.pyc,, +idna/__pycache__/uts46data.cpython-310.pyc,, +idna/codec.py,sha256=6ly5odKfqrytKT9_7UrlGklHnf1DSK2r9C6cSM4sa28,3374 +idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 +idna/core.py,sha256=1JxchwKzkxBSn7R_oCE12oBu3eVux0VzdxolmIad24M,12950 +idna/idnadata.py,sha256=xUjqKqiJV8Ho_XzBpAtv5JFoVPSupK-SUXvtjygUHqw,44375 +idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +idna/package_data.py,sha256=C_jHJzmX8PI4xq0jpzmcTMxpb5lDsq4o5VyxQzlVrZE,21 +idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +idna/uts46data.py,sha256=zvjZU24s58_uAS850Mcd0NnD0X7_gCMAMjzWNIeUJdc,206539 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/WHEEL b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/WHEEL new file mode 100644 index 000000000..668ba4d01 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna-3.4.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.7.1 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__init__.py new file mode 100644 index 000000000..a40eeafcc --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c25694e89359167f192b3a713360f9545de7b475 GIT binary patch literal 921 zcmbu7&5qMB5XX~#q)n54cXttQ&_g!6TEqz-frvSKx#vSpljL7cAu$&&2u9cxLo)I0*du`guj)wS(Xr7=NyoH(vOsvK};`p$KG% z!VvZ?(UNV{mL1fQUDTBkiewM9+Tui>qSG+g1hn%dL}#@7K3GQILmzq>x&-4pW-6`~#><%-UcbJ1`HEBi z#u#l}3}&;PT&p`GI9+MVO3jsZXUCqER+fFTE+T@gnQ((*%ZeRddpS35_S-|bWeV$^ zJ8c|Xam$Iog_dism~lztZxrIjP`8DPC@Xwu7ctem_sx-HZ>uLyv0;*wZd9k}#p*;p z9NF5WQb2+#xc0WknN zZxTQX7y?Fs6TlcS0Zaiiz#OpfxLH1OX-SG5*)U9rB?bn?bqa0Re}(>MR2TocX`Q3% zVN8U;_&zX?AvM5{`~0IeyUJ(BsvL65eD!?87*s7=Yi$c6%lzUp12s+eh4nL)S)Cmp zZiKeF{ELp@x2!l6g5{KDzYW3Hd3mr~t**{5FY=08mOa#|$~jde#~20)&>{`Cnp_7?MNpBcgt?qfr^(pjxErh>eOd#Ktr>f!Kr?N9|$cIHc*^kjOo);Xc#1zTmYSxrzv}m5sk|?Gd6XtW+^?bH+t!mG9zFZx z=VyOz-3e*s{#L=sJofB!6w>gSFnkm5V@gX{*tz7=mQKe!V{{y03+J(o{vy4-r?>X> zuJBNg{=s{UD0=~qA1WuyAqsQFMUV%0D>`we9FTb*lF&lC!$xC{eF6JU3&p?`?4AW9 zIfiVL4a_aJ!5*;z%f`r6xjDdjZjtPmXp%3%2>$B%YhNc>zt>A4mtsoWo4Ok$B94-k zshRKBXPV{?E;GPI(d6LZM>(Aox zUJ%M`jxIGTla(lu641cxa+>C0(Cy7#yfhmnIi#W=QZ#1sboTJ#Vxzlh@0fk!s3XI* zFqU&d&X$unTAu5z<#*HMa_iE?xh%@%ES}_Eu!4t)L=wyqS;AItO<#pFW`~5wMj1Cb z8#f=;bX-~myuHp!#VLj5; z^~G^TMj`f$Df4^<2n(?vXavq<*R0!11BMAuBm&1ou;q~Go=yagiQppZJk_|Bgdn>z z$%FW&PFg5gqwG$EsR*OEeMsycHnK@2OSAn~9Q+sCH<9UEY#q+XOr8h1{vdjn^a=k~zcz`d9;aAAIcX?w-M6>jbj zPUHKRgtO@moGmu6PaEqMt+NZ=0B4kM+m#~UG&$f5-T=;`c=|Us#acSOKo>Jl=a}Y; z8gKWLh&b97X`Zz~Dm&}NQLdbz*OQ3=@{uN#;;U(tY**nVA$w^Euj5oXx(H^fmO~Ix zX47_5RkD7JwI+)m;>LQ7UoF5k5vXJd5k!r)m;0TLgm#e(uOOCPL@~^kDrO94-fnmF zjIv1UwH&o-_1-{@~y#OIN>-imRl2j|9z*xS4o8 zk9~)DSyl|J2d1js&OrvZbPnhUX@3Yjccb9w mLmn4q<$YSbp4W(;8TsKH)-sQcv#QxJ8~Wx$^QYe5^Pxj literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/compat.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4d271b739e008c27658094526a40a46c835fa1c8 GIT binary patch literal 821 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 YJCqyFj6OMfZ0M2EknMT5-!MGoUmX<+m z2qBF7FbE;{p-l*_jcsXdXqn~reBXSoJ^%mX`~5!l^?JVEpX;1+opYwo`+dzhV_v&< zZBqQ-qgRbepZriN^|ge||7%Yu;(rU)bWWwxsVS*+vvibho{rNk(k<&-Olel0O1Db4 zzNuMy57joRZB?^W+o`r!-BYzgdM}ROTX~;!HoUKDN7YWMo%NXgl=m0raSqUwqbmoh z9;DhuHCOduJ*KPbA*y+*hw5rK)x%WtRlBS9Q0*ytk33R==3c73Rr{#+RqdyGc=`y= zyub31ssmI9st!^;N_DX65Iv7V<)NbbNW(M_S1r;bMyQTd9i^{PvGQouqg9X5LX3lJY98$>KUqO)tRcZRL@kMty->+I!E;^)e6t~Fb&=}%su!qUs9LSMSoI>+C8{;57mMm6U84C?)mqidR4-S(LiI}3t5mO6y+*Z8 z^;*^IRIk@(yj1xH)f=Uvk93o+EmQrI>dmURs4iFiv+Av?x9RQcm2X$RL-|hS6{>e> zLWd=$33O`wCXde&+2i{DX&$1UiAgl7gZZoUs8Qp^%d21dfQi(UrQe8bfZ{)vr{)R^6uhH`Q-c|E{`SR3GVE&EM%`{6lqzR{p8_z3LCDJ9YJ6%0DXqTXmOK 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fd9969d5fa4a482e40f5447b5b2fd600fdac4ef9 GIT binary patch literal 2058 zcmZuyOK%iM5bmDGdRad(V88|xwIC=S$-8UAiO4(@P;!Zg1ir*dG#*d)u1B7oS-N{M zj&{YtiIhnB5pYay`8#vX$$udi=c^vu3y5BIPj_{_y1uH~a(=$WF#h@Dsr+$%N*W~jnmL(a-MP-o=4qktdOntwrF#7$E!;^xv+6XY&H?y|gs+m`fRvS=x}z!__O zm%UbnNJO3)E6Se83ak1`n>8^=q!Obc5m)!hq3VtD{4fHm86=B`*~v$j05RiXEkk~>APb-4ptbgLd{51CMM;=j(0y!V`gZ{ojNu;4l3fHp{O!qFFJk^T(20-*ws z3c)K&rrX^}r4O42XWEHwNRDQ0Cs*wzbP*Kgt2og-j z^Es| zs!UfVHfgH@sj8I5tJ=F|Y13pd?5=OL5lLOjQA%mvwq^TM=2{VI^fP+$tf$h$G*?}z z+S5ax?RJNUK%=>Sl2P}X&hW6ha(;??x*WLI&f*c~8kS}= z-~nI6Z<%|1iQnQ4-t_cU3Qy?Zt$f5W^*}fqw5REcXAYY&I^!c0!#4~G>^(mgpt(3j zo+cyu`WeAd^%5OPP+%HTHOJk#;`*a9C4hZQXK4`|vhcXvb&9o|OPc3t&-tKf< zy=Z#P*0)hu2fVSHq2=3Zw*JPs>RA^IP5+J2jJ}DF3rW>*wG&tVuryUbjHtM*zh^5R ze;VjZ)11SficPZOE9fx>O@E1BM&5ZRbN(W4Vi#~ta744!OdQKHjbnWaXBa&k zqNFq>i6)RMpHx$Rx(A#Bhldw+42vnnWZ z4`zl3k2mjOxBI~eKgXHr(fw`6D>5QenwZlvY{5+S#rm!9_Ne%r_p?h!$~}Z=(Mfq? zp+&0O`a6pQhE4QJLlj0O#le-<0R-zxzC=t~ZM_%_xpgU^+37?kJRyG<-;LJj|M98p z3UsY25C-^@RCXzRo!00^#c&{^O~5J1MwJxC8mGjA$>v$%>q|b~Qicj9P2t$o$k`Q9 C5LKoC literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/uts46data.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/__pycache__/uts46data.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..daf25fb5494938027afe134a31d491f954a28c71 GIT binary patch literal 152472 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 o^i`=9>E@~B>8n%A($}Pxrdy 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/compat.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/compat.py new file mode 100644 index 000000000..786e6bda6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/core.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/core.py new file mode 100644 index 000000000..4f3003711 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/idnadata.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/idnadata.py new file mode 100644 index 000000000..67db46258 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/intranges.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/intranges.py new file mode 100644 index 000000000..6a43b0475 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/package_data.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/package_data.py new file mode 100644 index 000000000..8501893bd --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/package_data.py @@ -0,0 +1,2 @@ +__version__ = '3.4' + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/py.typed b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/uts46data.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/idna/uts46data.py new file mode 100644 index 000000000..186796c17 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/INSTALLER b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/INSTALLER new file mode 100644 index 000000000..a1b589e38 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/LICENSE.txt b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/LICENSE.txt new file mode 100644 index 000000000..8e7b65eaf --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/METADATA b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/METADATA new file mode 100644 index 000000000..4e683996d --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/METADATA @@ -0,0 +1,92 @@ +Metadata-Version: 2.1 +Name: pip +Version: 22.0.4 +Summary: The PyPA recommended tool for installing Python packages. +Home-page: https://pip.pypa.io/ +Author: The pip developers +Author-email: distutils-sig@python.org +License: MIT +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/ +Platform: UNKNOWN +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 :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.7 +License-File: LICENSE.txt + +pip - The Python Package Installer +================================== + +.. image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + +.. image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + +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`_ + +In pip 20.3, we've `made a big improvement to the heart of pip`_; `learn more`_. We want your input, so `sign up for our user experience research studies`_ to help us do it right. + +**Note**: pip 21.0, in January 2021, removed Python 2 support, per pip's `Python 2 support policy`_. Please migrate to Python 3. + +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 mailing list`_ +* `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 +.. _made a big improvement to the heart of pip: https://pyfound.blogspot.com/2020/11/pip-20-3-new-resolver.html +.. _learn more: https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020 +.. _sign up for our user experience research studies: https://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html +.. _Python 2 support policy: https://pip.pypa.io/en/latest/development/release-process/#python-2-support +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _Development mailing list: https://mail.python.org/mailman3/lists/distutils-sig.python.org/ +.. _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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/RECORD b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/RECORD new file mode 100644 index 000000000..c2f4fdad1 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/RECORD @@ -0,0 +1,1053 @@ +../../../bin/pip,sha256=1gRrHMTdaCftogD_QY_VeM3tolGPgD0U590G_jHXLOs,372 +../../../bin/pip3,sha256=1gRrHMTdaCftogD_QY_VeM3tolGPgD0U590G_jHXLOs,372 +../../../bin/pip3.10,sha256=1gRrHMTdaCftogD_QY_VeM3tolGPgD0U590G_jHXLOs,372 +pip-22.0.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-22.0.4.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-22.0.4.dist-info/METADATA,sha256=bGtDzdgW1AF93Nx32ySc78yQHtHkOrRD146Dvsz85CM,4166 +pip-22.0.4.dist-info/RECORD,, +pip-22.0.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-22.0.4.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92 +pip-22.0.4.dist-info/entry_points.txt,sha256=5ExSa1s54zSPNA_1epJn5SX06786S8k5YHwskMvVYzw,125 +pip-22.0.4.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=b_avKym1xgWv1_1CobpKDp59sdjm_9nwB7sencJQUEY,357 +pip/__main__.py,sha256=mXwWDftNLMKfwVqKFWGE_uuBZvGSIiUELhLkeysIuZc,1198 +pip/__pycache__/__init__.cpython-310.pyc,, +pip/__pycache__/__main__.cpython-310.pyc,, +pip/_internal/__init__.py,sha256=nnFCuxrPMgALrIDxSoy-H6Zj4W4UY60D-uL1aJyq0pc,573 +pip/_internal/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/__pycache__/build_env.cpython-310.pyc,, +pip/_internal/__pycache__/cache.cpython-310.pyc,, +pip/_internal/__pycache__/configuration.cpython-310.pyc,, +pip/_internal/__pycache__/exceptions.cpython-310.pyc,, +pip/_internal/__pycache__/main.cpython-310.pyc,, +pip/_internal/__pycache__/pyproject.cpython-310.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-310.pyc,, +pip/_internal/build_env.py,sha256=QAsnxJFvj74jS2cZUcxk7zXLvrtAYiRL0EkSPkpSJTo,9739 +pip/_internal/cache.py,sha256=71eaYwrls34HJ6gzbmmYiotiKhPNFTM_tqYJXD5nf3s,9441 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-310.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-310.pyc,, +pip/_internal/cli/__pycache__/main.cpython-310.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-310.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-310.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-310.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc,, +pip/_internal/cli/autocompletion.py,sha256=wY2JPZY2Eji1vhR7bVo-yCBPJ9LCy6P80iOAhZD1Vi8,6676 +pip/_internal/cli/base_command.py,sha256=zYHdQssEkCvWHYf3dtIApaVaxOwAh3maA61nVxaZF2M,8152 +pip/_internal/cli/cmdoptions.py,sha256=TTYO0nxK9YyLwrXk1NHrn7X3dbGoqdV02Yb8kdVoVhc,28526 +pip/_internal/cli/command_context.py,sha256=a1pBBvvGLDiZ1Kw64_4tT6HmRTwYDoYy8JFgG5Czn7s,760 +pip/_internal/cli/main.py,sha256=ioJ8IVlb2K1qLOxR-tXkee9lURhYV89CDM71MKag7YY,2472 +pip/_internal/cli/main_parser.py,sha256=Q9TnytfuC5Z2JSjBFWVGtEdYLFy7rukNIb04movHdAo,2614 +pip/_internal/cli/parser.py,sha256=CDXTuFr2UD8ozOlZYf1KDziQdo9-X_IaYOiUcyJQwrA,10788 +pip/_internal/cli/progress_bars.py,sha256=_52w11WoZrvDSR3oItLWvLrEZFUKAfLf4Y6I6WtOnIU,10339 +pip/_internal/cli/req_command.py,sha256=VwqonOy18QwZsRsVjHhp-6w15fG9x3Ltwoa8yJqQno8,18669 +pip/_internal/cli/spinners.py,sha256=TFhjxtOnLeNJ5YmRvQm4eKPgPbJNkZiqO8jOXuxRaYU,5076 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=Vc1HjsLEtyCh7506OozPHPKXe2Hk-z9cFkFF3BMj1lM,3736 +pip/_internal/commands/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-310.pyc,, +pip/_internal/commands/__pycache__/check.cpython-310.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-310.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-310.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-310.pyc,, +pip/_internal/commands/__pycache__/download.cpython-310.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-310.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-310.pyc,, +pip/_internal/commands/__pycache__/help.cpython-310.pyc,, +pip/_internal/commands/__pycache__/index.cpython-310.pyc,, +pip/_internal/commands/__pycache__/install.cpython-310.pyc,, +pip/_internal/commands/__pycache__/list.cpython-310.pyc,, +pip/_internal/commands/__pycache__/search.cpython-310.pyc,, +pip/_internal/commands/__pycache__/show.cpython-310.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/commands/cache.py,sha256=p9gvc6W_xgxE2zO0o8NXqO1gGJEinEK42qEC-a7Cnuk,7524 +pip/_internal/commands/check.py,sha256=0gjXR7j36xJT5cs2heYU_dfOfpnFfzX8OoPNNoKhqdM,1685 +pip/_internal/commands/completion.py,sha256=kTG_I1VR3N5kGC4Ma9pQTSoY9Q1URCrNyseHSQ-rCL4,2958 +pip/_internal/commands/configuration.py,sha256=arE8vLstjBg-Ar1krXF-bBmT1qBtnL7Fpk-NVh38a0U,8944 +pip/_internal/commands/debug.py,sha256=krET-y45CnQzXwKR1qA3M_tJE4LE2vnQtm3yfGyDSnE,6629 +pip/_internal/commands/download.py,sha256=gVIAEOcpWolhRj9hl89Qzn52G2b_pcZ8naXhxaXobdo,4942 +pip/_internal/commands/freeze.py,sha256=gCjoD6foBZPBAAYx5t8zZLkJhsF_ZRtnb3dPuD7beO8,2951 +pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 +pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 +pip/_internal/commands/index.py,sha256=8pYkICUJlccjm3E83b7UuZ5DtOfLh1N7ZHXAgkajjHo,4849 +pip/_internal/commands/install.py,sha256=YVygBF6vfrNi0jmdNBCM6bcoWb7vaALEGG1--8Mmf88,27893 +pip/_internal/commands/list.py,sha256=tTjZ7u0VIh3uhnX231Q9pwt6ObT_zrDfixRQvgpJAvM,12221 +pip/_internal/commands/search.py,sha256=sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi__iUI,5697 +pip/_internal/commands/show.py,sha256=2VicM3jF0YWgn4O1jG_QF5oxOT0ln57VDu1NE6hqWcM,5859 +pip/_internal/commands/uninstall.py,sha256=DNTYAGJNljMO_YYBxrpcwj0FEl7lo_P55_98O6g2TNk,3526 +pip/_internal/commands/wheel.py,sha256=7HAjLclZxIzBrX6JmhmGBVxH5xrjaBYCtSdpQi1pWCE,6206 +pip/_internal/configuration.py,sha256=qmCX3uuVM73PQeAuWQHic22bhops8s31B8k02nFAoiQ,13171 +pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 +pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/distributions/base.py,sha256=3FUYD8Gb4YuSu3pggC_FRctZBDbpm5ZK89tPksIUjoE,1172 +pip/_internal/distributions/installed.py,sha256=HzfNRu3smoOm54m8H2iK6LHzBx6_DEnka4OPEsizbXg,680 +pip/_internal/distributions/sdist.py,sha256=0nJvU1RhZtbwaeYtLbzSwYrbGRcY6IgNsWdEhAHROK8,5499 +pip/_internal/distributions/wheel.py,sha256=-NgzdIs-w_hcer_U81yzgpVTljJRg5m79xufqvbjv0s,1115 +pip/_internal/exceptions.py,sha256=U-dV1ixkSz6NAU6Aw9dosKi2EzZ5D3BA7ilYZuTLKeU,20912 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/index/__pycache__/collector.cpython-310.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-310.pyc,, +pip/_internal/index/__pycache__/sources.cpython-310.pyc,, +pip/_internal/index/collector.py,sha256=E4yZHzlzPtaXg2BxaugrNg1Jwtwgs4gC-Q_0bzYrBU4,19671 +pip/_internal/index/package_finder.py,sha256=9UVg-7582nYNEWa0cIIl8otzPm4mlfyrQVuozAcssLo,36783 +pip/_internal/index/sources.py,sha256=SVyPitv08-Qalh2_Bk5diAJ9GAA_d-a93koouQodAG0,6557 +pip/_internal/locations/__init__.py,sha256=ergvPwlfNTmQYFmaRYbj--ZwTN5izgTL9KE5d0FB7-8,17362 +pip/_internal/locations/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc,, +pip/_internal/locations/__pycache__/base.cpython-310.pyc,, +pip/_internal/locations/_distutils.py,sha256=Sk7tw8ZP1DWMYJ8MibABsa8IME2Ejv1PKeGlYQCBTZc,5871 +pip/_internal/locations/_sysconfig.py,sha256=LQNKTJKyjVqxXaPntlBwdUqTG1xwYf6GVCKMbyRJx5M,7918 +pip/_internal/locations/base.py,sha256=x5D1ONktmPJd8nnUTh-ELsAJ7fiXA-k-0a_vhfi2_Us,1579 +pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340 +pip/_internal/metadata/__init__.py,sha256=iGoDbe_iTXQTIAEVy9f7dm-VQfZANO8kkwFr1CpqxqI,2036 +pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-310.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc,, +pip/_internal/metadata/base.py,sha256=SCRPtShrtPy0lfFxuaFTgJJHsRXToGFToQUAZoBBbeA,19429 +pip/_internal/metadata/pkg_resources.py,sha256=wAnEtrcgH9YtV996MfoBjR2hGLHvi3uxk0vUOHbqBak,9456 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-310.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-310.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-310.pyc,, +pip/_internal/models/__pycache__/index.cpython-310.pyc,, +pip/_internal/models/__pycache__/link.cpython-310.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-310.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-310.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-310.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/models/candidate.py,sha256=6pcABsaR7CfIHlbJbr2_kMkVJFL_yrYjTx6SVWUnCPQ,990 +pip/_internal/models/direct_url.py,sha256=7XtGQSLLDQb5ZywI2EMnnLcddtf5CJLx44lMtTHPxFw,6350 +pip/_internal/models/format_control.py,sha256=DJpMYjxeYKKQdwNcML2_F0vtAh-qnKTYe-CpTxQe-4g,2520 +pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 +pip/_internal/models/link.py,sha256=hoT_qsOBAgLBm9GKqpBrNF_mrEXeGXQE-aH_RX2cGgg,9817 +pip/_internal/models/scheme.py,sha256=3EFQp_ICu_shH1-TBqhl0QAusKCPDFOlgHFeN4XowWs,738 +pip/_internal/models/search_scope.py,sha256=LwloG0PJAmtI1hFXIypsD95kWE9xfR5hf_a2v1Vw7sk,4520 +pip/_internal/models/selection_prefs.py,sha256=KZdi66gsR-_RUXUr9uejssk3rmTHrQVJWeNA2sV-VSY,1907 +pip/_internal/models/target_python.py,sha256=qKpZox7J8NAaPmDs5C_aniwfPDxzvpkrCKqfwndG87k,3858 +pip/_internal/models/wheel.py,sha256=hN9Ub-m-cAJCajCcQHyQNsqpcDCbPPDlEzBDwaBMc14,3500 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/network/__pycache__/auth.cpython-310.pyc,, +pip/_internal/network/__pycache__/cache.cpython-310.pyc,, +pip/_internal/network/__pycache__/download.cpython-310.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc,, +pip/_internal/network/__pycache__/session.cpython-310.pyc,, +pip/_internal/network/__pycache__/utils.cpython-310.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc,, +pip/_internal/network/auth.py,sha256=a3C7Xaa8kTJjXkdi_wrUjqaySc8Z9Yz7U6QIbXfzMyc,12190 +pip/_internal/network/cache.py,sha256=FJ3uTUo3wgf2KHmeZ3ltN9x3tQoy_0X6qNsRtNXsuL0,2131 +pip/_internal/network/download.py,sha256=12Ef_L7MlhNUN_0-n_3DggozWJER8c9J0us16cbvkKA,6062 +pip/_internal/network/lazy_wheel.py,sha256=1b8ZJ1w4bSBzpGzGwJR_CL2yQ6AFIwWQkS1vbPPw2XU,7627 +pip/_internal/network/session.py,sha256=38IKGKC64MTVUIH5XOR1hr2pOCzp39RccykdmGAvqRU,16729 +pip/_internal/network/utils.py,sha256=igLlTu_-q0LmL8FdJKq-Uj7AT_owrQ-T9FfyarkhK5U,4059 +pip/_internal/network/xmlrpc.py,sha256=AzQgG4GgS152_cqmGr_Oz2MIXsCal-xfsis7fA7nmU0,1791 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/__pycache__/check.cpython-310.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-310.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-310.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc,, +pip/_internal/operations/build/metadata.py,sha256=ES_uRmAvhrNm_nDTpZxshBfUsvnXtkj-g_4rZrH9Rww,1404 +pip/_internal/operations/build/metadata_editable.py,sha256=_Rai0VZjxoeJUkjkuICrq45LtjwFoDOveosMYH43rKc,1456 +pip/_internal/operations/build/metadata_legacy.py,sha256=o-eU21As175hDC7dluM1fJJ_FqokTIShyWpjKaIpHZw,2198 +pip/_internal/operations/build/wheel.py,sha256=AO9XnTGhTgHtZmU8Dkbfo1OGr41rBuSDjIgAa4zUKgE,1063 +pip/_internal/operations/build/wheel_editable.py,sha256=TVETY-L_M_dSEKBhTIcQOP75zKVXw8tuq1U354Mm30A,1405 +pip/_internal/operations/build/wheel_legacy.py,sha256=C9j6rukgQI1n_JeQLoZGuDdfUwzCXShyIdPTp6edbMQ,3064 +pip/_internal/operations/check.py,sha256=ca4O9CkPt9Em9sLCf3H0iVt1GIcW7M8C0U5XooaBuT4,5109 +pip/_internal/operations/freeze.py,sha256=ZiYw5GlUpLVx4VJHz4S1AP2JFNyvH0iq5kpcYj2ovyw,9770 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=ee4kfJHNuzTdKItbfAsNOSEwq_vD7DRPGkBdK48yBhU,1354 +pip/_internal/operations/install/legacy.py,sha256=x7BG8kBm0K3JO6AR4sBl0zh2LOrfUaz7EdNt-keHBv4,4091 +pip/_internal/operations/install/wheel.py,sha256=QuQyCZE-XjuJjDYRixo40oUt2ucFhNmSrCbcXY7A9aE,27412 +pip/_internal/operations/prepare.py,sha256=LJP97jsuiCAaTGVIRrcINvxc1ntVsB45MoRbyMIukg4,24145 +pip/_internal/pyproject.py,sha256=Wm2ljdT6spC-tSdf1LBRaMYSJaXr1xUxV3OwdHCW9jc,6722 +pip/_internal/req/__init__.py,sha256=A7mUvT1KAcCYP3H7gUOTx2GRMlgoDur3H68Q0OJqM5A,2793 +pip/_internal/req/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc,, +pip/_internal/req/constructors.py,sha256=fXmtNI_J77JFP_HRvYcQW-1nKw3AiUu6Q3b1Nm8aMm0,16094 +pip/_internal/req/req_file.py,sha256=5N8OTouPCof-305StC2YK9HBxQMw-xO46skRoBPbkZo,17421 +pip/_internal/req/req_install.py,sha256=jU1HQBT_DnXZean7jY8wPNMhb6_CzdKHcilHFY_o-Fc,32524 +pip/_internal/req/req_set.py,sha256=kHYiLvkKRx21WaLTwOI-54Ng0SSzZZ9SE7FD0PsfvYA,7584 +pip/_internal/req/req_tracker.py,sha256=jK7JDu-Wt73X-gqozrFtgJVlUlnQo0P4IQ4x4_gPlfM,4117 +pip/_internal/req/req_uninstall.py,sha256=K2BHYRRJAfkSpFqcPzc9XfX2EvbhaRtQIPRFmMtUdfo,23814 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-310.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-310.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=b7bf5qL1ROg73sl8dhTvLdD1w5XF8xybBAF6eF_kz7c,18288 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=u1O4fkvCO4mhmu5i32xrDv9AX5NgUci_eYVyBDQhTIM,5220 +pip/_internal/resolution/resolvelib/candidates.py,sha256=KR5jxZRSahByOABXbwrX-zNoawa7Gm9Iss-HrvrcvNw,18357 +pip/_internal/resolution/resolvelib/factory.py,sha256=0bbxnUSSjaeTmtIEgeeKtEqhEFfNhv3xpq7j9IaMq2c,28298 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=hvL3Hoa9VaYo-qEOZkBi2Iqw251UDxPz-uMHVaWmLpE,5705 +pip/_internal/resolution/resolvelib/provider.py,sha256=LzQQyzMVaZYAwLgKInbq-it6mbQL1gX0hGohz5Cr5wg,9915 +pip/_internal/resolution/resolvelib/reporter.py,sha256=3ZVVYrs5PqvLFJkGLcuXoMK5mTInFzl31xjUpDBpZZk,2526 +pip/_internal/resolution/resolvelib/requirements.py,sha256=B1ndvKPSuyyyTEXt9sKhbwminViSWnBrJa7qO2ln4Z0,5455 +pip/_internal/resolution/resolvelib/resolver.py,sha256=UsWuwuTu9aYHIfEBnEb7e1r3tXGgJbSA5LVgQqdVZ2w,11633 +pip/_internal/self_outdated_check.py,sha256=GKSatNlt2cz_CMGxu72FbUzuPaXpWOnIVKOOYIk0gvY,6849 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-310.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-310.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-310.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc,, +pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc,, +pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-310.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-310.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-310.pyc,, +pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-310.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-310.pyc,, +pip/_internal/utils/__pycache__/models.cpython-310.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-310.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-310.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-310.pyc,, +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/distutils_args.py,sha256=mcAscyp80vTt3xAGTipnpgc83V-_wCvydNELVXLq7JI,1249 +pip/_internal/utils/egg_link.py,sha256=5MVlpz5LirT4iLQq86OYzjXaYF0D4Qk1dprEI7ThST4,2203 +pip/_internal/utils/encoding.py,sha256=bdZ3YgUpaOEBI5MP4-DEXiQarCW3V0rxw1kRz-TaU1Q,1169 +pip/_internal/utils/entrypoints.py,sha256=aPvCnQVi9Hdk35Kloww_D5ibjUpqxgqcJP8O9VuMZek,1055 +pip/_internal/utils/filesystem.py,sha256=rrl-rY1w8TYyKYndUyZlE9ffkQyA4-jI9x_59zXkn5s,5893 +pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 +pip/_internal/utils/glibc.py,sha256=tDfwVYnJCOC0BNVpItpy8CGLP9BjkxFHdl0mTS0J7fc,3110 +pip/_internal/utils/hashes.py,sha256=anpZfFGIT6HcIj2td9NHtE8AWg6GeAIhwpP8GPvZE0E,4811 +pip/_internal/utils/inject_securetransport.py,sha256=o-QRVMGiENrTJxw3fAhA7uxpdEdw6M41TjHYtSVRrcg,795 +pip/_internal/utils/logging.py,sha256=Rvght-fDXL70VWib1cpgZ3iU-kXODV98bNeLUlbqVto,11522 +pip/_internal/utils/misc.py,sha256=yLQuNWaRGtSGQqK7GT-Kj2mO7oXnPcJZkr5-9Q7AGwE,18392 +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=vNH9hQB9wT6d-h1hVQhBKw91jNeT42meHpVeii-urOI,5652 +pip/_internal/utils/subprocess.py,sha256=vIWGpet5ARBmZ2Qn4NEHNgzCOduqbPIuByZmhhmr6mM,9182 +pip/_internal/utils/temp_dir.py,sha256=zob3PYMVevONkheOMUp_4jDofrEY3HIu5DHK78cSspI,7662 +pip/_internal/utils/unpacking.py,sha256=HUFlMEyCa9dPwdLh6sWeh95DeKytV8rsOyKShEw9y6g,8906 +pip/_internal/utils/urls.py,sha256=AhaesUGl-9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z_Q,1759 +pip/_internal/utils/virtualenv.py,sha256=4_48qMzCwB_F5jIK5BC_ua7uiAMVifmQWU9NdaGUoVA,3459 +pip/_internal/utils/wheel.py,sha256=lXOgZyTlOm5HmK8tw5iw0A3_5A6wRzsXHOaQkIvvloU,4549 +pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 +pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc,, +pip/_internal/vcs/bazaar.py,sha256=IGb5ca1xSZfgegRD2_JeyoZPrQQHs7lEYEIgpVsKpoU,3047 +pip/_internal/vcs/git.py,sha256=mjhwudCx9WlLNkxZ6_kOKmueF0rLoU2i1xeASKF6yiQ,18116 +pip/_internal/vcs/mercurial.py,sha256=Bzbd518Jsx-EJI0IhIobiQqiRsUv5TWYnrmRIFWE0Gw,5238 +pip/_internal/vcs/subversion.py,sha256=TEMRdwECvMcXakZX0pTNUep79kmBYkWDkWFkrYmcmac,11718 +pip/_internal/vcs/versioncontrol.py,sha256=KUOc-hN51em9jrqxKwUR3JnkgSE-xSOqMiiJcSaL6B8,22811 +pip/_internal/wheel_builder.py,sha256=65rOA8FSYt3c3HyqEw17uujjlCgqmoKEIv6rv9xN2NM,12307 +pip/_vendor/__init__.py,sha256=xjcBX0EP50pkaMdCssrsBXoZgo2hTtYxlcH1CIyA3T4,4708 +pip/_vendor/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/__pycache__/distro.cpython-310.pyc,, +pip/_vendor/__pycache__/six.cpython-310.pyc,, +pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc,, +pip/_vendor/cachecontrol/__init__.py,sha256=1j_YQfjmiix6YyouLrftC6NzksAm8e8xGSjMKMRPIkM,465 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=lxUXqfNTVx84zf6tcWbkLZHA6WVBRtJRpfeA9ZqhaAY,1379 +pip/_vendor/cachecontrol/adapter.py,sha256=ew9OYEQHEOjvGl06ZsuX8W3DAvHWsQKHwWAxISyGug8,5033 +pip/_vendor/cachecontrol/cache.py,sha256=eMS9Bn9JWQkHiIYA5GPRBqKVU95uS-yXkxrzpoafRig,917 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=gGFOtIH8QDRvkP4YAfGIh-u9YYcGZVxwLM1-6e1mPNI,170 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=P2KHcNXiqxEW7fCq5KC-NYHGSk0nNR9NIKuN-vBTn-E,4251 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=tu_YBV7EV8vdBRGazUErkoRqYYjSBmNcB8dZ7BNomqk,940 +pip/_vendor/cachecontrol/compat.py,sha256=LNx7vqBndYdHU8YuJt53ab_8rzMGTXVrvMb7CZJkxG0,778 +pip/_vendor/cachecontrol/controller.py,sha256=9DSEiV58Gx7Ce69fLCrRcpN-_sHzXTY4ol9bEviatR0,15625 +pip/_vendor/cachecontrol/filewrapper.py,sha256=X4BAQOO26GNOR7nH_fhTzAfeuct2rBQcx_15MyFBpcs,3946 +pip/_vendor/cachecontrol/heuristics.py,sha256=8kAyuZLSCyEIgQr6vbUwfhpqg9ows4mM0IV6DWazevI,4154 +pip/_vendor/cachecontrol/serialize.py,sha256=dlySaeA5U7Q5eHvjiObgo1M8j8_huVjfWjid7Aq-r8c,6783 +pip/_vendor/cachecontrol/wrapper.py,sha256=X3-KMZ20Ho3VtqyVaXclpeQpFzokR5NE8tZSfvKVaB8,774 +pip/_vendor/certifi/__init__.py,sha256=xWdRgntT3j1V95zkRipGOg_A1UfEju2FcpujhysZLRI,62 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-310.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=-og4Keu4zSpgL5shwfhd4kz0eUnVILzrGCi0zRy2kGw,265969 +pip/_vendor/certifi/core.py,sha256=gOFd0zHYlx4krrLEn982esOtmz3djiG0BFSDhgjlvcI,2840 +pip/_vendor/chardet/__init__.py,sha256=mWZaWmvZkhwfBEAT9O1Y6nRTfKzhT7FHhQTTAujbqUA,3271 +pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/version.cpython-310.pyc,, +pip/_vendor/chardet/big5freq.py,sha256=D_zK5GyzoVsRes0HkLJziltFQX0bKCLOrFe9_xDvO_8,31254 +pip/_vendor/chardet/big5prober.py,sha256=kBxHbdetBpPe7xrlb-e990iot64g_eGSLd32lB7_h3M,1757 +pip/_vendor/chardet/chardistribution.py,sha256=3woWS62KrGooKyqz4zQSnjFbJpa6V7g02daAibTwcl8,9411 +pip/_vendor/chardet/charsetgroupprober.py,sha256=GZLReHP6FRRn43hvSOoGCxYamErKzyp6RgOQxVeC3kg,3839 +pip/_vendor/chardet/charsetprober.py,sha256=KSmwJErjypyj0bRZmC5F5eM7c8YQgLYIjZXintZNstg,5110 +pip/_vendor/chardet/cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 +pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc,, +pip/_vendor/chardet/cli/chardetect.py,sha256=XK5zqjUG2a4-y6eLHZ8ThYcp6WWUrdlmELxNypcc2SE,2747 +pip/_vendor/chardet/codingstatemachine.py,sha256=VYp_6cyyki5sHgXDSZnXW4q1oelHc3cu9AyQTX7uug8,3590 +pip/_vendor/chardet/compat.py,sha256=40zr6wICZwknxyuLGGcIOPyve8DTebBCbbvttvnmp5Q,1200 +pip/_vendor/chardet/cp949prober.py,sha256=TZ434QX8zzBsnUvL_8wm4AQVTZ2ZkqEEQL_lNw9f9ow,1855 +pip/_vendor/chardet/enums.py,sha256=Aimwdb9as1dJKZaFNUH2OhWIVBVd6ZkJJ_WK5sNY8cU,1661 +pip/_vendor/chardet/escprober.py,sha256=kkyqVg1Yw3DIOAMJ2bdlyQgUFQhuHAW8dUGskToNWSc,3950 +pip/_vendor/chardet/escsm.py,sha256=RuXlgNvTIDarndvllNCk5WZBIpdCxQ0kcd9EAuxUh84,10510 +pip/_vendor/chardet/eucjpprober.py,sha256=iD8Jdp0ISRjgjiVN7f0e8xGeQJ5GM2oeZ1dA8nbSeUw,3749 +pip/_vendor/chardet/euckrfreq.py,sha256=-7GdmvgWez4-eO4SuXpa7tBiDi5vRXQ8WvdFAzVaSfo,13546 +pip/_vendor/chardet/euckrprober.py,sha256=MqFMTQXxW4HbzIpZ9lKDHB3GN8SP4yiHenTmf8g_PxY,1748 +pip/_vendor/chardet/euctwfreq.py,sha256=No1WyduFOgB5VITUA7PLyC5oJRNzRyMbBxaKI1l16MA,31621 +pip/_vendor/chardet/euctwprober.py,sha256=13p6EP4yRaxqnP4iHtxHOJ6R2zxHq1_m8hTRjzVZ95c,1747 +pip/_vendor/chardet/gb2312freq.py,sha256=JX8lsweKLmnCwmk8UHEQsLgkr_rP_kEbvivC4qPOrlc,20715 +pip/_vendor/chardet/gb2312prober.py,sha256=gGvIWi9WhDjE-xQXHvNIyrnLvEbMAYgyUSZ65HUfylw,1754 +pip/_vendor/chardet/hebrewprober.py,sha256=c3SZ-K7hvyzGY6JRAZxJgwJ_sUS9k0WYkvMY00YBYFo,13838 +pip/_vendor/chardet/jisfreq.py,sha256=vpmJv2Bu0J8gnMVRPHMFefTRvo_ha1mryLig8CBwgOg,25777 +pip/_vendor/chardet/jpcntx.py,sha256=PYlNqRUQT8LM3cT5FmHGP0iiscFlTWED92MALvBungo,19643 +pip/_vendor/chardet/langbulgarianmodel.py,sha256=rk9CJpuxO0bObboJcv6gNgWuosYZmd8qEEds5y7DS_Y,105697 +pip/_vendor/chardet/langgreekmodel.py,sha256=S-uNQ1ihC75yhBvSux24gLFZv3QyctMwC6OxLJdX-bw,99571 +pip/_vendor/chardet/langhebrewmodel.py,sha256=DzPP6TPGG_-PV7tqspu_d8duueqm7uN-5eQ0aHUw1Gg,98776 +pip/_vendor/chardet/langhungarianmodel.py,sha256=RtJH7DZdsmaHqyK46Kkmnk5wQHiJwJPPJSqqIlpeZRc,102498 +pip/_vendor/chardet/langrussianmodel.py,sha256=THqJOhSxiTQcHboDNSc5yofc2koXXQFHFyjtyuntUfM,131180 +pip/_vendor/chardet/langthaimodel.py,sha256=R1wXHnUMtejpw0JnH_JO8XdYasME6wjVqp1zP7TKLgg,103312 +pip/_vendor/chardet/langturkishmodel.py,sha256=rfwanTptTwSycE4-P-QasPmzd-XVYgevytzjlEzBBu8,95946 +pip/_vendor/chardet/latin1prober.py,sha256=S2IoORhFk39FEFOlSFWtgVybRiP6h7BlLldHVclNkU8,5370 +pip/_vendor/chardet/mbcharsetprober.py,sha256=AR95eFH9vuqSfvLQZN-L5ijea25NOBCoXqw8s5O9xLQ,3413 +pip/_vendor/chardet/mbcsgroupprober.py,sha256=h6TRnnYq2OxG1WdD5JOyxcdVpn7dG0q-vB8nWr5mbh4,2012 +pip/_vendor/chardet/mbcssm.py,sha256=SY32wVIF3HzcjY3BaEspy9metbNSKxIIB0RKPn7tjpI,25481 +pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc,, +pip/_vendor/chardet/metadata/languages.py,sha256=41tLq3eLSrBEbEVVQpVGFq9K7o1ln9b1HpY1l0hCUQo,19474 +pip/_vendor/chardet/sbcharsetprober.py,sha256=nmyMyuxzG87DN6K3Rk2MUzJLMLR69MrWpdnHzOwVUwQ,6136 +pip/_vendor/chardet/sbcsgroupprober.py,sha256=hqefQuXmiFyDBArOjujH6hd6WFXlOD1kWCsxDhjx5Vc,4309 +pip/_vendor/chardet/sjisprober.py,sha256=IIt-lZj0WJqK4rmUZzKZP4GJlE8KUEtFYVuY96ek5MQ,3774 +pip/_vendor/chardet/universaldetector.py,sha256=DpZTXCX0nUHXxkQ9sr4GZxGB_hveZ6hWt3uM94cgWKs,12503 +pip/_vendor/chardet/utf8prober.py,sha256=IdD8v3zWOsB8OLiyPi-y_fqwipRFxV9Nc1eKBLSuIEw,2766 +pip/_vendor/chardet/version.py,sha256=A4CILFAd8MRVG1HoXPp45iK9RLlWyV73a1EtwE8Tvn8,242 +pip/_vendor/colorama/__init__.py,sha256=pCdErryzLSzDW5P-rRPBlPLqbBtIRNJB6cMgoeJns5k,239 +pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc,, +pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522 +pip/_vendor/colorama/ansitowin32.py,sha256=yV7CEmCb19MjnJKODZEEvMH_fnbJhwnpzo4sxZuGXmA,10517 +pip/_vendor/colorama/initialise.py,sha256=PprovDNxMTrvoNHFcL2NZjpH2XzDc8BLxLxiErfUl4k,1915 +pip/_vendor/colorama/win32.py,sha256=bJ8Il9jwaBN5BJ8bmN6FoYZ1QYuMKv2j8fGrXh7TJjw,5404 +pip/_vendor/colorama/winterm.py,sha256=2y_2b7Zsv34feAsP67mLOVc-Bgq51mdYGo571VprlrM,6438 +pip/_vendor/distlib/__init__.py,sha256=HTGLP7dnTRTQCbEZNGUxBq-0sobr0KQUMn3yd6uEObA,581 +pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__init__.py,sha256=bqS_dTOH6uW9iGgd0uzfpPjo6vZ4xpPZ7kyfZJ2vNaw,274 +pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/misc.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-310.pyc,, +pip/_vendor/distlib/_backport/misc.py,sha256=KWecINdbFNOxSOP1fGF680CJnaC6S4fBRgEtaYTw0ig,971 +pip/_vendor/distlib/_backport/shutil.py,sha256=IX_G2NPqwecJibkIDje04bqu0xpHkfSQ2GaGdEVqM5Y,25707 +pip/_vendor/distlib/_backport/sysconfig.cfg,sha256=swZKxq9RY5e9r3PXCrlvQPMsvOdiWZBTHLEbqS8LJLU,2617 +pip/_vendor/distlib/_backport/sysconfig.py,sha256=BQHFlb6pubCl_dvT1NjtzIthylofjKisox239stDg0U,26854 +pip/_vendor/distlib/_backport/tarfile.py,sha256=Ihp7rXRcjbIKw8COm9wSePV9ARGXbSF9gGXAMn2Q-KU,92628 +pip/_vendor/distlib/compat.py,sha256=fbsxc5PfJ2wBx1K4k6mQ2goAYs-GZW0tcOPIlE_vf0I,41495 +pip/_vendor/distlib/database.py,sha256=Kl0YvPQKc4OcpVi7k5cFziydM1xOK8iqdxLGXgbZHV4,51059 +pip/_vendor/distlib/index.py,sha256=UfcimNW19AB7IKWam4VaJbXuCBvArKfSxhV16EwavzE,20739 +pip/_vendor/distlib/locators.py,sha256=AKlB3oZvfOTg4E0CtfwOzujFL19X5V4XUA4eHdKOu44,51965 +pip/_vendor/distlib/manifest.py,sha256=nQEhYmgoreaBZzyFzwYsXxJARu3fo4EkunU163U16iE,14811 +pip/_vendor/distlib/markers.py,sha256=9c70ISEKwBjmUOHuIdOygVnRVESOKdNYp9a2TVn4qrI,4989 +pip/_vendor/distlib/metadata.py,sha256=vatoxFdmBr6ie-sTVXVNPOPG3uwMDWJTnEECnm7xDCw,39109 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=tjSwENINeV91ROZxec5zTSMRg2jEeKc4enyCHDzNvEE,17720 +pip/_vendor/distlib/t32.exe,sha256=NS3xBCVAld35JVFNmb-1QRyVtThukMrwZVeXn4LhaEQ,96768 +pip/_vendor/distlib/t64-arm.exe,sha256=8WGDh6aI8WJAjngRNQpyJpB21Sv20PCYYFSNW1fWd6w,180736 +pip/_vendor/distlib/t64.exe,sha256=oAqHes78rUWVM0OtVqIhUvequl_PKhAhXYQWnUf7zR0,105984 +pip/_vendor/distlib/util.py,sha256=0Uq_qa63FCLtdyNdWvMnmPbiSvVa-ykHM2E8HT7LSIU,67766 +pip/_vendor/distlib/version.py,sha256=WG__LyAa2GwmA6qSoEJtvJE8REA1LZpbSizy8WvhJLk,23513 +pip/_vendor/distlib/w32.exe,sha256=lJtnZdeUxTZWya_EW5DZos_K5rswRECGspIl8ZJCIXs,90112 +pip/_vendor/distlib/w64-arm.exe,sha256=Q_HdzVu9zxYdaBa3m0iJ5_ddLOEqtPe8x30WADoXza8,166400 +pip/_vendor/distlib/w64.exe,sha256=0aRzoN2BO9NWW4ENy4_4vHkHR4qZTFZNVSAJJYlODTI,99840 +pip/_vendor/distlib/wheel.py,sha256=pj5VVCjqZMcHvgizORWwAFPS7hOk61CZ59dxP8laQ4E,42943 +pip/_vendor/distro.py,sha256=O1EeHMq1-xAO373JI2_6pYEtd09yEkxtmrYkdY-9S-w,48414 +pip/_vendor/html5lib/__init__.py,sha256=BYzcKCqeEii52xDrqBFruhnmtmkiuHXFyFh-cglQ8mk,1160 +pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_utils.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc,, +pip/_vendor/html5lib/_ihatexml.py,sha256=ifOwF7pXqmyThIXc3boWc96s4MDezqRrRVp7FwDYUFs,16728 +pip/_vendor/html5lib/_inputstream.py,sha256=jErNASMlkgs7MpOM9Ve_VdLDJyFFweAjLuhVutZz33U,32353 +pip/_vendor/html5lib/_tokenizer.py,sha256=04mgA2sNTniutl2fxFv-ei5bns4iRaPxVXXHh_HrV_4,77040 +pip/_vendor/html5lib/_trie/__init__.py,sha256=nqfgO910329BEVJ5T4psVwQtjd2iJyEXQ2-X8c1YxwU,109 +pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/_base.py,sha256=CaybYyMro8uERQYjby2tTeSUatnWDfWroUN9N7ety5w,1013 +pip/_vendor/html5lib/_trie/py.py,sha256=wXmQLrZRf4MyWNyg0m3h81m9InhLR7GJ002mIIZh-8o,1775 +pip/_vendor/html5lib/_utils.py,sha256=Dx9AKntksRjFT1veBj7I362pf5OgIaT0zglwq43RnfU,4931 +pip/_vendor/html5lib/constants.py,sha256=Ll-yzLU_jcjyAI_h57zkqZ7aQWE5t5xA4y_jQgoUUhw,83464 +pip/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc,, +pip/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=lViZc2JMCclXi_5gduvmdzrRxtO5Xo9ONnbHBVCsykU,919 +pip/_vendor/html5lib/filters/base.py,sha256=z-IU9ZAYjpsVsqmVt7kuWC63jR11hDMr6CVrvuao8W0,286 +pip/_vendor/html5lib/filters/inject_meta_charset.py,sha256=egDXUEHXmAG9504xz0K6ALDgYkvUrC2q15YUVeNlVQg,2945 +pip/_vendor/html5lib/filters/lint.py,sha256=jk6q56xY0ojiYfvpdP-OZSm9eTqcAdRqhCoPItemPYA,3643 +pip/_vendor/html5lib/filters/optionaltags.py,sha256=8lWT75J0aBOHmPgfmqTHSfPpPMp01T84NKu0CRedxcE,10588 +pip/_vendor/html5lib/filters/sanitizer.py,sha256=m6oGmkBhkGAnn2nV6D4hE78SCZ6WEnK9rKdZB3uXBIc,26897 +pip/_vendor/html5lib/filters/whitespace.py,sha256=8eWqZxd4UC4zlFGW6iyY6f-2uuT8pOCSALc3IZt7_t4,1214 +pip/_vendor/html5lib/html5parser.py,sha256=anr-aXre_ImfrkQ35c_rftKXxC80vJCREKe06Tq15HA,117186 +pip/_vendor/html5lib/serializer.py,sha256=_PpvcZF07cwE7xr9uKkZqh5f4UEaI8ltCU2xPJzaTpk,15759 +pip/_vendor/html5lib/treeadapters/__init__.py,sha256=A0rY5gXIe4bJOiSGRO_j_tFhngRBO8QZPzPtPw5dFzo,679 +pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/genshi.py,sha256=CH27pAsDKmu4ZGkAUrwty7u0KauGLCZRLPMzaO3M5vo,1715 +pip/_vendor/html5lib/treeadapters/sax.py,sha256=BKS8woQTnKiqeffHsxChUqL4q2ZR_wb5fc9MJ3zQC8s,1776 +pip/_vendor/html5lib/treebuilders/__init__.py,sha256=AysSJyvPfikCMMsTVvaxwkgDieELD5dfR8FJIAuq7hY,3592 +pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/base.py,sha256=z-o51vt9r_l2IDG5IioTOKGzZne4Fy3_Fc-7ztrOh4I,14565 +pip/_vendor/html5lib/treebuilders/dom.py,sha256=22whb0C71zXIsai5mamg6qzBEiigcBIvaDy4Asw3at0,8925 +pip/_vendor/html5lib/treebuilders/etree.py,sha256=w5ZFpKk6bAxnrwD2_BrF5EVC7vzz0L3LMi9Sxrbc_8w,12836 +pip/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=9gqDjs-IxsPhBYa5cpvv2FZ1KZlG83Giusy2lFmvIkE,14766 +pip/_vendor/html5lib/treewalkers/__init__.py,sha256=OBPtc1TU5mGyy18QDMxKEyYEz0wxFUUNj5v0-XgmYhY,5719 +pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/base.py,sha256=ouiOsuSzvI0KgzdWP8PlxIaSNs9falhbiinAEc_UIJY,7476 +pip/_vendor/html5lib/treewalkers/dom.py,sha256=EHyFR8D8lYNnyDU9lx_IKigVJRyecUGua0mOi7HBukc,1413 +pip/_vendor/html5lib/treewalkers/etree.py,sha256=xo1L5m9VtkfpFJK0pFmkLVajhqYYVisVZn3k9kYpPkI,4551 +pip/_vendor/html5lib/treewalkers/etree_lxml.py,sha256=_b0LAVWLcVu9WaU_-w3D8f0IRSpCbjf667V-3NRdhTw,6357 +pip/_vendor/html5lib/treewalkers/genshi.py,sha256=4D2PECZ5n3ZN3qu3jMl9yY7B81jnQApBQSVlfaIuYbA,2309 +pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 +pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-310.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=RFIkY-HhFZaDoBEFjGwyGd_vWI04uOAQjnzueMWqwOU,12795 +pip/_vendor/idna/idnadata.py,sha256=fzMzkCea2xieVxcrjngJ-2pLsKQNejPCZFlBajIuQdw,44025 +pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +pip/_vendor/idna/package_data.py,sha256=szxQhV0ZD0nKJ84Kuobw3l8q4_KeCyXjFRdpwIpKZmw,21 +pip/_vendor/idna/uts46data.py,sha256=o-D7V-a0fOLZNd7tvxof6MYfUd0TBZzE2bLR5XO67xU,204400 +pip/_vendor/msgpack/__init__.py,sha256=2gJwcsTIaAtCM0GMi2rU-_Y6kILeeQuqRkrQ22jSANc,1118 +pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/_version.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc,, +pip/_vendor/msgpack/_version.py,sha256=JpTcnRd3YUioA24NDtDZbLW0Nhl2yA-N1Rq2lLDBB-g,20 +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=4l356Y4sVEcvCla2dh_cL57vh4GMhZfa3kuWHFHYz6A,6088 +pip/_vendor/msgpack/fallback.py,sha256=L5jriXysURbf6rPbbHbvXgvoFrKZiryIBmujMTcrf3A,34475 +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-310.pyc,, +pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-310.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/pep517/__init__.py,sha256=Y1bATL2qbFNN6M_DQa4yyrwqjpIiL-j9T6kBmR0DS14,130 +pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/build.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/check.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc,, +pip/_vendor/pep517/build.py,sha256=2bar6EdjwIz2Dlfy94qdxn3oA9mVnnny40mfoT5f-qI,3457 +pip/_vendor/pep517/check.py,sha256=bCORq1WrHjhpTONa-zpAqG0EB9rHNuhO1ORu6DsDuL8,6084 +pip/_vendor/pep517/colorlog.py,sha256=Tk9AuYm_cLF3BKTBoSTJt9bRryn0aFojIQOwbfVUTxQ,4098 +pip/_vendor/pep517/compat.py,sha256=NmLImE5oiDT3gbEhJ4w7xeoMFcpAPrGu_NltBytSJUY,1253 +pip/_vendor/pep517/dirtools.py,sha256=2mkAkAL0mRz_elYFjRKuekTJVipH1zTn4tbf1EDev84,1129 +pip/_vendor/pep517/envbuild.py,sha256=zFde--rmzjXMLXcm7SA_3hDtgk5VCTA8hjpk88RbF6E,6100 +pip/_vendor/pep517/in_process/__init__.py,sha256=MyWoAi8JHdcBv7yXuWpUSVADbx6LSB9rZh7kTIgdA8Y,563 +pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc,, +pip/_vendor/pep517/in_process/_in_process.py,sha256=D3waguyNSGcwosociD5USfcycYr2RCzCjYtxX5UHQmQ,11201 +pip/_vendor/pep517/meta.py,sha256=8mnM5lDnT4zXQpBTliJbRGfesH7iioHwozbDxALPS9Y,2463 +pip/_vendor/pep517/wrappers.py,sha256=impq7Cz_LL1iDF1iiOzYWB4MaEu6O6Gps7TJ5qsJz1Q,13429 +pip/_vendor/pkg_resources/__init__.py,sha256=NnpQ3g6BCHzpMgOR_OLBmYtniY4oOzdKpwqghfq_6ug,108287 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc,, +pip/_vendor/pkg_resources/py31compat.py,sha256=CRk8fkiPRDLsbi5pZcKsHI__Pbmh_94L8mr9Qy9Ab2U,562 +pip/_vendor/platformdirs/__init__.py,sha256=Aizpxewwd4nY63Gqw-Od1Rso9Ah4bSoc6rkx-GBRu2Y,12676 +pip/_vendor/platformdirs/__main__.py,sha256=ZmsnTxEOxtTvwa-Y_Vfab_JN3X4XCVeN8X0yyy9-qnc,1176 +pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc,, +pip/_vendor/platformdirs/android.py,sha256=xhlD4NmrKCARe5lgnpBGYo4lOYxEOBOByNDNYy91gEE,4012 +pip/_vendor/platformdirs/api.py,sha256=MXKHXOL3eh_-trSok-JUTjAR_zjmmKF3rjREVABjP8s,4910 +pip/_vendor/platformdirs/macos.py,sha256=-3UXQewbT0yMhMdkzRXfXGAntmLIH7Qt4a9Hlf8I5_Y,2655 +pip/_vendor/platformdirs/unix.py,sha256=b4aVYTz0qZ50HntwOXo8r6tp82jAa3qTjxw-WlnC2yc,6910 +pip/_vendor/platformdirs/version.py,sha256=bXzLJCe23FNQRQrf7ZRWKejxWnct_wft7dxdkMGT33E,80 +pip/_vendor/platformdirs/windows.py,sha256=ISruopR5UGBePC0BxCxXevkZYfjJsIZc49YWU5iYfQ4,6439 +pip/_vendor/progress/__init__.py,sha256=1HejNZtv2ouUNQeStUDAtZrtwkz_3FmYKQ476hJ7zOs,5294 +pip/_vendor/progress/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/bar.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/colors.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/counter.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/spinner.cpython-310.pyc,, +pip/_vendor/progress/bar.py,sha256=GbedY0oZ-Q1duXjmvVLO0tSf-uTSH7hJ3zzyI91Esws,2942 +pip/_vendor/progress/colors.py,sha256=cCYXQnYFYVmQKKmYEbQ_lj6SPSFzdw4FN98F2x2kR-U,2655 +pip/_vendor/progress/counter.py,sha256=zYt9DWH0_05s8Q9TrJwHVud-WwsyyaR3PwYtk5hxwwQ,1613 +pip/_vendor/progress/spinner.py,sha256=u5ElzW94XEiLGH-aAlr54VJtKfeK745xr6UfGvvflzU,1461 +pip/_vendor/pygments/__init__.py,sha256=CAmA9UthykwxvtutUcH0IxqtiyQcSg6CmYdM-jKlcRY,3002 +pip/_vendor/pygments/__main__.py,sha256=X7rGLMUC54EXgO14FZ9goKXZDmhPzKXTsUglmb_McIU,353 +pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/console.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/style.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/token.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/util.cpython-310.pyc,, +pip/_vendor/pygments/cmdline.py,sha256=XpsyWgErcSqHC7rXiYKLF3Y61Uy8SR2DNQDDhZGuezg,23408 +pip/_vendor/pygments/console.py,sha256=QZXBUAkyl4dPLQ1e6XHjQu3mmXBWvuGQwsQT2q1mtCY,1697 +pip/_vendor/pygments/filter.py,sha256=35iMZiB1rcuogxokm92kViB2DPXPp_wWoxWuMmwvvzY,1938 +pip/_vendor/pygments/filters/__init__.py,sha256=-veOimzCyYGEARru2Dfo6ofSYcZ8tGsIVuMprtaZQ24,40292 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/formatter.py,sha256=zSBbX2U_OOriy7SJvSTK6OAxjuXtROWxQlNpJEJZjBA,2917 +pip/_vendor/pygments/formatters/__init__.py,sha256=fjkYDy5-F998XczKi0ymHFayr5ObIRLHF8cgp9k8kpA,5119 +pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc,, +pip/_vendor/pygments/formatters/_mapping.py,sha256=3A1rYSjYN9MLduCFWy2_mYhllPVpwlw55anRYnPXX8w,6516 +pip/_vendor/pygments/formatters/bbcode.py,sha256=cSKMOioUnE4TzvCCsK4IbJ6G78W07ZwHtkz4V1Wte0U,3314 +pip/_vendor/pygments/formatters/groff.py,sha256=ULgMKvGeLswX0KZn3IBp0p0U3rruiSHBtpl6O5qbqLs,5005 +pip/_vendor/pygments/formatters/html.py,sha256=0jM7Jc4xA4tsjmPq35uklm_En_OVdcNb0__SEXp2pDQ,35330 +pip/_vendor/pygments/formatters/img.py,sha256=r4iag_jCfyv_LhIt-1fRDeVEEoAfVJzkD9nZChIwiS8,21819 +pip/_vendor/pygments/formatters/irc.py,sha256=gi_IeIZeNaTfTMtvseLigZdS6lNicN7r7O7rnI6myo0,5871 +pip/_vendor/pygments/formatters/latex.py,sha256=qZUerrHt2Nn2aB4gJcdqj99qBkIxl_1v1ukYsf230Gk,18930 +pip/_vendor/pygments/formatters/other.py,sha256=Q01LtkqPZ8m_EYdgMVzXPUGjHoL00lXI3By97wzytYU,5073 +pip/_vendor/pygments/formatters/pangomarkup.py,sha256=ZpjALTSuGFwviJd5kOYwr-1NgqxCX3XRJrjXC7x1UbQ,2212 +pip/_vendor/pygments/formatters/rtf.py,sha256=qh7-z_wbUsTY6z7fZUGrYECYBlWB0wEdBwIZVEVybL0,5014 +pip/_vendor/pygments/formatters/svg.py,sha256=T7Jj004I3JUPOr48aAhQ368K2qWCciUyMQ2tdU-LB-4,7335 +pip/_vendor/pygments/formatters/terminal.py,sha256=cRD5hitINOkYlGZo9ma252vpJYPSGNgLivrsm6zGyec,4674 +pip/_vendor/pygments/formatters/terminal256.py,sha256=Bvz9zZL3UWc94TDm1GhKMI4x0BTit0XplhyRL0zmtkw,11753 +pip/_vendor/pygments/lexer.py,sha256=ECXWlEsbRnKs_njozZns6BGQ4riTMzct_BzAr3zV6dY,31937 +pip/_vendor/pygments/lexers/__init__.py,sha256=6Ds0GVBP3jrIU02wmjRdpoL4eFGhwT2IVD1zf3cV5_Y,11307 +pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc,, +pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc,, +pip/_vendor/pygments/lexers/_mapping.py,sha256=jAxmvh5wvNkD-p3Fh6E7hY_B0sGbcxWRfseT6iq7ex4,70032 +pip/_vendor/pygments/lexers/python.py,sha256=LXnk43Lcngqn9xj6eRqdk2f73oF4kHZWiwgHMM_RlVM,52776 +pip/_vendor/pygments/modeline.py,sha256=37fen3cf1moCz4vMVJqX41eAQCmj8pzUchikgPcHp-U,986 +pip/_vendor/pygments/plugin.py,sha256=zGSig3S7QX-3o6RDxd4_Uvice_t25l_BN9aQQ9k8vmU,1727 +pip/_vendor/pygments/regexopt.py,sha256=mj8Fgu3sT0d5PZwRwDLexEvVOQbuHeosubQnqVwgiqs,3072 +pip/_vendor/pygments/scanner.py,sha256=nGoHy-Npk2ylUd4bws_CJN1hK785Xqo8e0teRmNX2jo,3091 +pip/_vendor/pygments/sphinxext.py,sha256=FZ2puvLe2Bztqtj6UJvQd7D8TvtOZ1GsfRJObvH59tE,4630 +pip/_vendor/pygments/style.py,sha256=lGyan5bU42q1kGMfFqafwL3g1j5EurTvfkv8vdP7NzQ,6257 +pip/_vendor/pygments/styles/__init__.py,sha256=Qx2zq6ufbDNE2cTp51M-s9zW-sDE-KLIqFw31qr3Bhg,3252 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/token.py,sha256=lNPgeaQTzu2DEUi6n_lxAIU7uy4DVj8LMI3nSVnTjks,6143 +pip/_vendor/pygments/unistring.py,sha256=Xs0FzOzE0l0iWRoTlcgi-Q_kAMdF5Gt5FL_goGKJc98,63188 +pip/_vendor/pygments/util.py,sha256=s9n8BQXIxG3lIwCPWv5-ci8yhaqq5JbEVK9v8Z-8_3I,9123 +pip/_vendor/pyparsing/__init__.py,sha256=jXheGTFT1b6r_4WxuOE0uVUqiouLJ3WHzOScpLieRgQ,9107 +pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc,, +pip/_vendor/pyparsing/actions.py,sha256=60v7mETOBzc01YPH_qQD5isavgcSJpAfIKpzgjM3vaU,6429 +pip/_vendor/pyparsing/common.py,sha256=lFL97ooIeR75CmW5hjURZqwDCTgruqltcTCZ-ulLO2Q,12936 +pip/_vendor/pyparsing/core.py,sha256=GtQsD06HlwKPc7M8K8hyOuOW-cRnd87AxAHq-ad5lEk,212248 +pip/_vendor/pyparsing/diagram/__init__.py,sha256=h0gsUwmo5N3shgvfXVQTtqvTpUAv-ZdQjSQ6IUJmsxY,22165 +pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pyparsing/exceptions.py,sha256=H4D9gqMavqmAFSsdrU_J6bO-jA-T-A7yvtXWZpooIUA,9030 +pip/_vendor/pyparsing/helpers.py,sha256=kqpIZFG-y0fQ3g_TmloYllo9we6YCYiewZMXIK0y5wc,38299 +pip/_vendor/pyparsing/results.py,sha256=4D-oURF1cLeL7k0d3zMqUuWH_gTjop_OrZwik9O0HXU,25339 +pip/_vendor/pyparsing/testing.py,sha256=szs8AKZREZMhL0y0vsMfaTVAnpqPHetg6VKJBNmc4QY,13388 +pip/_vendor/pyparsing/unicode.py,sha256=IR-ioeGY29cZ49tG8Ts7ITPWWNP5G2DcZs58oa8zn44,10381 +pip/_vendor/pyparsing/util.py,sha256=kq772O5YSeXOSdP-M31EWpbH_ayj7BMHImBYo9xPD5M,6805 +pip/_vendor/requests/__init__.py,sha256=6IUFQM6K9V2NIu4fe4LtUsN21-TFbw_w3EfPpdUN-qc,5130 +pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-310.pyc,, +pip/_vendor/requests/__version__.py,sha256=q8miOQaomOv3S74lK4eQs1zZ5jwcnOusyEU-M2idhts,441 +pip/_vendor/requests/_internal_utils.py,sha256=Zx3PnEUccyfsB-ie11nZVAW8qClJy0gx1qNME7rgT18,1096 +pip/_vendor/requests/adapters.py,sha256=WazYJQ_b2LHhNDb_y0hscNlWVsSe5ca5I3pymPrer5w,21861 +pip/_vendor/requests/api.py,sha256=hjuoP79IAEmX6Dysrw8t032cLfwLHxbI_wM4gC5G9t0,6402 +pip/_vendor/requests/auth.py,sha256=OMoJIVKyRLy9THr91y8rxysZuclwPB-K1Xg1zBomUhQ,10207 +pip/_vendor/requests/certs.py,sha256=nXRVq9DtGmv_1AYbwjTu9UrgAcdJv05ZvkNeaoLOZxY,465 +pip/_vendor/requests/compat.py,sha256=N1281mkcTluMjKqCSLf88LR6HNOygEhS1TbR9LLsoVY,2114 +pip/_vendor/requests/cookies.py,sha256=Y-bKX6TvW3FnYlE6Au0SXtVVWcaNdFvuAwQxw-G0iTI,18430 +pip/_vendor/requests/exceptions.py,sha256=VcpBXOL-9JYhNbK8OZxCIImBgpQSXJlUelDPf1f-pmM,3446 +pip/_vendor/requests/help.py,sha256=dyhe3lcmHXnFCzDiZVjcGmVvvO_jtsfAm-AC542ndw8,3972 +pip/_vendor/requests/hooks.py,sha256=QReGyy0bRcr5rkwCuObNakbYsc7EkiKeBwG4qHekr2Q,757 +pip/_vendor/requests/models.py,sha256=7pzscX_47qxx7-zEaBWGxMoB33Vdf6HLoUKZh1ktEvM,35116 +pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695 +pip/_vendor/requests/sessions.py,sha256=Zu-Y9YPlwTIsyFx1hvIrc3ziyeFpuFPqcOuSuz8BNWs,29835 +pip/_vendor/requests/status_codes.py,sha256=gT79Pbs_cQjBgp-fvrUgg1dn2DQO32bDj4TInjnMPSc,4188 +pip/_vendor/requests/structures.py,sha256=msAtr9mq1JxHd-JRyiILfdFlpbJwvvFuP3rfUQT_QxE,3005 +pip/_vendor/requests/utils.py,sha256=siud-FQ6xgKFbL49DRvAb3PMQMMHoeCL_TCmuHh9AUU,33301 +pip/_vendor/resolvelib/__init__.py,sha256=UL-B2BDI0_TRIqkfGwLHKLxY-LjBlomz7941wDqzB1I,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 +pip/_vendor/resolvelib/providers.py,sha256=roVmFBItQJ0TkhNua65h8LdNny7rmeqVEXZu90QiP4o,5872 +pip/_vendor/resolvelib/reporters.py,sha256=fW91NKf-lK8XN7i6Yd_rczL5QeOT3sc6AKhpaTEnP3E,1583 +pip/_vendor/resolvelib/resolvers.py,sha256=2wYzVGBGerbmcIpH8cFmgSKgLSETz8jmwBMGjCBMHG4,17592 +pip/_vendor/resolvelib/structs.py,sha256=IVIYof6sA_N4ZEiE1C1UhzTX495brCNnyCdgq6CYq28,4794 +pip/_vendor/rich/__init__.py,sha256=wF1th4JGBCVC02xfaw8j6P2MrFcJaQJL72scKtEmDYQ,5804 +pip/_vendor/rich/__main__.py,sha256=vd1PP-o7_1un-ThdgMU9LHV-D8z56yz_-fryczn38eE,8810 +pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_lru_cache.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/abc.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/align.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/bar.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/box.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/cells.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/color.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/columns.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/console.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/containers.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/control.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/errors.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/json.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/layout.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/live.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/logging.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/markup.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/measure.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/padding.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/pager.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/palette.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/panel.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/progress.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/region.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/repr.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/rule.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/scope.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/screen.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/segment.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/status.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/style.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/styled.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/table.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/tabulate.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/text.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/theme.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/themes.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/tree.cpython-310.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/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 +pip/_vendor/rich/_inspect.py,sha256=vq6BjewwEvddjcBTr_lCcjYQBsKi92aTNpcXyaA5ERA,7444 +pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 +pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 +pip/_vendor/rich/_lru_cache.py,sha256=M7H1ZQF32o6SxrpOur9zTIhEHlNXT9XnrcdhruUmG5I,1246 +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=huT1biTlwyp9Lm8S7bLfVzg1psUaIH5xHDwTaWEHVh0,26521 +pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 +pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 +pip/_vendor/rich/_windows.py,sha256=nBO71icHMIHlzT7hg6fkoIdh1mT-5MvDdPDwunkshyw,2065 +pip/_vendor/rich/_wrap.py,sha256=OtnSxnERkuNlSM1d_MYtNg8KIYTcTBk3peg16dCZH_U,1804 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=2zRHV8SzR5eP-vQkSDgjmgsBLBluCBwykgejAW6oRD0,10425 +pip/_vendor/rich/ansi.py,sha256=QaVVkfvVL6C3OsuWI9iQ-iJFkMsMohjYlxgMLnVTEPo,6676 +pip/_vendor/rich/bar.py,sha256=a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw,3264 +pip/_vendor/rich/box.py,sha256=o0ywz1iW0WjGLPrRVDAZPh1CVPEgAOaWsn8Bf3sf43g,9069 +pip/_vendor/rich/cells.py,sha256=NadN20gFxE8Aj-2S3Drn7qgn-ZpsRZcNnTNtweRL7rA,4285 +pip/_vendor/rich/color.py,sha256=SD3yTf3t8japb-jOv8GYCMCDqyzpipzXS_0rAXhSlU4,17285 +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=bioCy8012eZ8PIOBxMyyqxYPltKk2pGEG9jmwylNCQk,81236 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=aKgm5UDHn5Nmui6IJaKdsZhbHClh_X7D-_Wg8Ehrr7s,5497 +pip/_vendor/rich/control.py,sha256=qxg6Yjd78XuF0VxthlT8O4dpvpACYwKkBfm2S4-IvHA,5298 +pip/_vendor/rich/default_styles.py,sha256=At42PcWzmnYWcx5fUOKyOUpI8HK5m4ItZqxkgHToaMs,7614 +pip/_vendor/rich/diagnose.py,sha256=4L8SZfbqjIRotzJ39QzD9-d4I80FyV1mNKHryg1eArE,183 +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=fHeReSO3VJ7IbH_9ri-OrPYbFC3UYOzeTNjngiiWOcY,1613 +pip/_vendor/rich/filesize.py,sha256=oQJnM5_7ygkpzt3GtNq5l3F6gmB7YahBA5vpdQVKLwI,2511 +pip/_vendor/rich/highlighter.py,sha256=AdhjC0meTYswZ_xKgka0cRYdNjLABLUzHAbyF3QpPWo,4894 +pip/_vendor/rich/json.py,sha256=RCm4lXBXrjvXHpqrWPH8wdGP0jEo4IohLmkddlhRY18,5051 +pip/_vendor/rich/jupyter.py,sha256=4sxNAwJs4g3dYfWy_enPw9fp0Tdn-82tV4T9uh9vAOM,3025 +pip/_vendor/rich/layout.py,sha256=b64KMDP2EPiC103P-v-_VZKGY13oWiiGS418P_KRRlc,14048 +pip/_vendor/rich/live.py,sha256=OKxMaFU5sFfuR--cJftGYjSvg1VPQri1U_DNZUjCsvI,13711 +pip/_vendor/rich/live_render.py,sha256=zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64,3667 +pip/_vendor/rich/logging.py,sha256=YNcCSK6pCo2Wg6JKqScAe6VgFqebHBnS5nDnBO4gXAA,10868 +pip/_vendor/rich/markup.py,sha256=hsVW_k1TIvj5OPPQ12ihAii9HSVa8N1TStvA5B2GGpo,8058 +pip/_vendor/rich/measure.py,sha256=Z74XvzIgLZm0xH-QIo1uX5d4oahavHe8D8MKyxLNqPQ,5258 +pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970 +pip/_vendor/rich/pager.py,sha256=VK_2EfH0JduZWdyV-KZma06bvi_V5PWmHG6W7BoiaTg,838 +pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 +pip/_vendor/rich/panel.py,sha256=O6ORyIhDcOLSEasTjpcDvmhvIcppPGCeQoXpoycIUT8,8637 +pip/_vendor/rich/pretty.py,sha256=HAB68BpYysaL1EXeV4X5Tt-U2hDlcLpbFz06fkojWWE,32572 +pip/_vendor/rich/progress.py,sha256=jcgi7aMnQ_YjSpAmQkalwtNsgVn9i56SeZGprr7tuOk,35926 +pip/_vendor/rich/progress_bar.py,sha256=ELiBaxJOgsRYKpNIrot7BC0bFXvmf8cTd6nxI02BbK0,7762 +pip/_vendor/rich/prompt.py,sha256=gKVd13YWv6jedzwcRPZGUINBjC-xcJhJ_xz_NvMW80c,11307 +pip/_vendor/rich/protocol.py,sha256=Vx6n4fEoSDhzSup8t3KH0iK2RWyssIOks5E0S1qw1GA,1401 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=1A0U0_ibG_bZbw71pUBIctO9Az-CQUuyOTbiKcJOwyw,4309 +pip/_vendor/rich/rule.py,sha256=cPK6NYo4kzh-vM_8a-rXajXplsbaHa6ahErYvGSsrJ0,4197 +pip/_vendor/rich/scope.py,sha256=HX13XsJfqzQHpPfw4Jn9JmJjCsRj9uhHxXQEqjkwyLA,2842 +pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 +pip/_vendor/rich/segment.py,sha256=MBBAWaHyqCQFCfiNbrTW4BGaFR1uU31XktJ1S3Taqb4,23916 +pip/_vendor/rich/spinner.py,sha256=V6dW0jIk5IO0_2MyxyftQf5VjCHI0T2cRhJ4F31hPIQ,4312 +pip/_vendor/rich/status.py,sha256=gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ-dxhCnwo,4425 +pip/_vendor/rich/style.py,sha256=AD1I7atfclsFCtGeL8ronH1Jj-02WLp9ZQ2VYqmpBjM,26469 +pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 +pip/_vendor/rich/syntax.py,sha256=pJAD08ywowg5xVwTGCqUOMpDYskjoMoDYEV-hryEX5s,26994 +pip/_vendor/rich/table.py,sha256=oQAEBaV4zMUPyg_tSA93_GrCirdIf-osolxf9wb3pEo,36757 +pip/_vendor/rich/tabulate.py,sha256=nl0oeNbiXectEgTHyj3K7eN4NZMISpaogpOdZyEOGbs,1700 +pip/_vendor/rich/terminal_theme.py,sha256=E0nI_ycFpvflamt-KVCY4J52LmUjRi1Y6ICB-Ef3gMo,1459 +pip/_vendor/rich/text.py,sha256=auX3LpY-I6PBiNyxB3o3LyMEx7lna2cx9IbNQJDwtw8,44424 +pip/_vendor/rich/theme.py,sha256=GKNtQhDBZKAzDaY0vQVQQFzbc0uWfFe6CJXA-syT7zQ,3627 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=hAU3IR295eFuup_px2NU4aCEWu7KQs1qpZbnqoHCtR0,25935 +pip/_vendor/rich/tree.py,sha256=JxyWbc27ZuwoLQnd7I-rSsRsqI9lzaVKlfTLJXla9U0,9122 +pip/_vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549 +pip/_vendor/tenacity/__init__.py,sha256=GLLsTFD4Bd5VDgTR6mU_FxyOsrxc48qONorVaRebeD4,18257 +pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc,, +pip/_vendor/tenacity/_asyncio.py,sha256=HEb0BVJEeBJE9P-m9XBxh1KcaF96BwoeqkJCL5sbVcQ,3314 +pip/_vendor/tenacity/_utils.py,sha256=-y68scDcyoqvTJuJJ0GTfjdSCljEYlbCYvgk7nM4NdM,1944 +pip/_vendor/tenacity/after.py,sha256=dlmyxxFy2uqpLXDr838DiEd7jgv2AGthsWHGYcGYsaI,1496 +pip/_vendor/tenacity/before.py,sha256=7XtvRmO0dRWUp8SVn24OvIiGFj8-4OP5muQRUiWgLh0,1376 +pip/_vendor/tenacity/before_sleep.py,sha256=ThyDvqKU5yle_IvYQz_b6Tp6UjUS0PhVp6zgqYl9U6Y,1908 +pip/_vendor/tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383 +pip/_vendor/tenacity/retry.py,sha256=62R71W59bQjuNyFKsDM7hE2aEkEPtwNBRA0tnsEvgSk,6645 +pip/_vendor/tenacity/stop.py,sha256=sKHmHaoSaW6sKu3dTxUVKr1-stVkY7lw4Y9yjZU30zQ,2790 +pip/_vendor/tenacity/tornadoweb.py,sha256=E8lWO2nwe6dJgoB-N2HhQprYLDLB_UdSgFnv-EN6wKE,2145 +pip/_vendor/tenacity/wait.py,sha256=e_Saa6I2tsNLpCL1t9897wN2fGb0XQMQlE4bU2t9V2w,6691 +pip/_vendor/tomli/__init__.py,sha256=z1Elt0nLAqU5Y0DOn9p__8QnLWavlEOpRyQikdYgKro,230 +pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc,, +pip/_vendor/tomli/_parser.py,sha256=50BD4o9YbzFAGAYyZLqZC8F81DQ7iWWyJnrHNwBKa6A,22415 +pip/_vendor/tomli/_re.py,sha256=5GPfgXKteg7wRFCF-DzlkAPI2ilHbkMK2-JC49F-AJQ,2681 +pip/_vendor/typing_extensions.py,sha256=1uqi_RSlI7gos4eJB_NEV3d5wQwzTUQHd3_jrkbTo8Q,87149 +pip/_vendor/urllib3/__init__.py,sha256=j3yzHIbmW7CS-IKQJ9-PPQf_YKO8EOAey_rMW0UR7us,2763 +pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=Rp1mVyBgc_UlAcp6M3at1skJBXR5J43NawRTvW2g_XY,10811 +pip/_vendor/urllib3/_version.py,sha256=_NdMUQaeBvFHAX2z3zAIX2Wum58A6rVtY1f7ByHsQ4g,63 +pip/_vendor/urllib3/connection.py,sha256=6zokyboYYKm9VkyrQvVVLgxMyCZK7n9Vmg_2ZK6pbhc,20076 +pip/_vendor/urllib3/connectionpool.py,sha256=qz-ICrW6g4TZVCbDQ8fRe68BMpXkskkR9vAVY9zUWtA,39013 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.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-310.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.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=lfzpHFmJiO82shClLEm3QB62SYgHWnjpZOH_2JhU5Tc,11034 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=ej9gGvfAb2Gt00lafFp45SIoRz-QwrQ4WChm6gQmAlM,4538 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=DD4pInv_3OEEGffEFynBoirc8ldR789sLmGSKukzA0E,16900 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=4qUKo7PUV-vVIqXmr2BD-sH7qplB918jiD5eNsRI9vU,34449 +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-310.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/six.py,sha256=1LVW7ljqRirFlfExjwl-v1B7vSAUNTmzGMs-qays2zg,34666 +pip/_vendor/urllib3/poolmanager.py,sha256=whzlX6UTEgODMOCy0ZDMUONRBCz5wyIM8Z9opXAY-Lk,19763 +pip/_vendor/urllib3/request.py,sha256=ZFSIqX0C6WizixecChZ3_okyu7BEv0lZu1VT0s6h4SM,5985 +pip/_vendor/urllib3/response.py,sha256=hGhGBh7TkEkh_IQg5C1W_xuPNrgIKv5BUXPyE-q0LuE,28203 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.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=NnzaEKQ1Pauw5MFMV6HmgEMHITf0Aua9fQuzi2uZzGc,4123 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=iESg2PvViNdXBRY4MpL4h0kqwOOkHkxmLn1kkhFHPU8,22001 +pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177 +pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=w01jCYuwvQ038p9mhc1P1gF8IiTN1qHakThpoukOlbw,5751 +pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 +pip/_vendor/urllib3/util/timeout.py,sha256=QSbBUNOB9yh6AnDn61SrLQ0hg5oz0I9-uXEG91AJuIg,10003 +pip/_vendor/urllib3/util/url.py,sha256=QVEzcbHipbXyCWwH6R4K4TR-N8T4LM55WEMwNUTBmLE,14047 +pip/_vendor/urllib3/util/wait.py,sha256=3MUKRSAUJDB2tgco7qRUskW0zXGAWYvRRE4Q1_6xlLs,5404 +pip/_vendor/vendor.txt,sha256=SpijkWP2aapE1DEgOKL1wxuOz1ztM7E2Xs2PZ-V1PKA,496 +pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579 +pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/REQUESTED b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/REQUESTED new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/WHEEL b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/WHEEL new file mode 100644 index 000000000..becc9a66e --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.37.1) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/entry_points.txt b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/entry_points.txt new file mode 100644 index 000000000..9609f72c5 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/entry_points.txt @@ -0,0 +1,5 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main +pip3.9 = pip._internal.cli.main:main + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/top_level.txt b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/top_level.txt new file mode 100644 index 000000000..a1b589e38 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip-22.0.4.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__init__.py new file mode 100644 index 000000000..3a0d263ef --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "22.0.4" + + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__main__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__main__.py new file mode 100644 index 000000000..fe34a7b77 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__main__.py @@ -0,0 +1,31 @@ +import os +import sys +import warnings + +# 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__": + # Work around the error reported in #9540, pending a proper fix. + # Note: It is essential the warning filter is set *before* importing + # pip, as the deprecation happens at import time, not runtime. + warnings.filterwarnings( + "ignore", category=DeprecationWarning, module=".*packaging\\.version" + ) + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..26437b98ad048fdf8c56d3100cd19e4eb6ab58fa GIT binary patch literal 717 zcmZuv&5G1O5bjPg+3e_o2QPcFZxS%c>^k5NBFcgw$SUY*E}d%^fypWnsW|vFS)?LDz&hZ{vz4~2cfghdGt%63Oz#wHv~s!y<{B%Fcja`-&|Y9G7eZbU zWdb~xt-Hq@0NZ$P+~cZROTX!tWuv>w42D;TSxM)5aMgqPqle`l$ObVv9kY68xiMhz z817(aS^s8P_8y^2P~Hwk<5y?XFcaAXU;F$Uu^Hw+zg9bKx6beecL?rz0ctH3fR$=p zEVcFx?@Tp2DGVA1LtDN*u zAd@X$BblJRMoH4wb!mn%>9|xuh6^HYPO`{`zbvQc`N5d_!60E9?$yQ^#v6709;`#M kbv?$;+c6Fb!pL6vwQv~vvnL&@YvE})T^IJ;B1y#JUv^=}>i_@% literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__pycache__/__main__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6d5b08dab1a88a5118655fc9cb639c5e9d6de79c GIT binary patch literal 679 zcmZuuJ&zMH6tumYjk!y52RfagfIdjOdj~B-NKhi0E07|jm2dr$__DDr+jk+fG&KAJ zill>vALN#bUw}jdZ#Tz>5SI2?Z#KME_f&pP3Hj1Cf3F@kPw?{}ut*|l zLngbOPH5M&2?KhONOFfr24s_N$&_6Yceh11JxR8d638T5F!ulmV*TsNw{%M&|{Ff(o)v!#)j4UB0_+q>hNkr^Ko zzxI)@gwuG@$JB~2kJ$`Dy^=Ap#>V}s+9?B$>r3UdSVHSys+tzcl=k34i?k<*jPN9Y z`z?Cw8CVBs1TDSXO^U}>*`iV!d0I3@-Ke5<<@%T~_PTU2h1V*4BJMU~UHSg8Tp73U z=m&f$MG!e?Obp=AeSU6CsKwHjC#N|oJIq_RGxK2bf5|(cxv~GzY19b$h;FgN;Pae7jE6(GNU8DC^kyCyXSsP(Y(Khg%eIWJ 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7ee15ed3b868c80355acd9720f8887856149a3a0 GIT binary patch literal 838 zcmZuw&2H2%5Vn)-Zn|wHB)Ig1uZu|13M7662&odMsvO|7m&hB>W=);g8hfc0l@lCz z3Is>4JWj5hcm+<3w+JfKQ9PM(#xvi1K*{8fns58Xk_QA!=r-IpjGQ8;xB?N{tv!Pw6gA+JVq~} z*)#?!1;szd=mqr|R<^%a9vxO*2Pg>1nQRG6?EP;?RZXT2bzQp6kabe`yM*3nr1r*n zg3+7t)7kDY4jV_%F%BA2Qp26=xY7L^XhQ9wS<_8H*?VU(3@OFVZ(ef%W2s?p3xaML pQPd8p4>+Wemsozw=M@$IkRgB45oZRT#hLlIb%W)}9?vt8{suH{@J0Xt literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4c1df1c58a92b3bf440d2a8918396a84387d127 GIT binary patch literal 9682 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 QHM{05{(SL%t-9*}KOU-15C8xG literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8b4d2a2eaf374c323aa31b59645af24387ae8038 GIT binary patch literal 11211 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 JOWypE{{e_zQvCn` literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..38afce26e7ff396aab3ea67654109e803d7347d2 GIT binary patch literal 23210 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 tHC+7LioeH4v!fZwrNgItI92a_G;UD#Y$_CP z!&D-~Jq|5RzOjt50KF14G2oJNg>1OlLAI=yk}yGps28{X%nxR!xH4Ixb03Zpd*UrUO^3gNaZRlbzZUnWX(j zk?fTj8b3}&N|K6@!o9M}F#To=ezqv5GLD{TW4dI_DNK2YIOU0Y>N-fi74D{%>Sa%| OEWAo_F)oJ&6>tz}?n-7t za+%##d{U|68sEdc1Vx{(hbDdNbNg7JAEN+Y`*dI7fJ-{Flw>(b3zP=eyUUr`ncw`` zk!ZCV7Ceu?c%R+=j%EED7t2o*7C(nq{T&8oF_Kt4{7(~-(jFx^w-Y;cdQMvF)l#?T znms33NxhzD=C!1rHhPV;*=w4$oA_y~*Gk*HcDmYIg}oK-FpsYd99CzI&z;^G*5vE3 zvkp5xYr)P2r>s4+*y>-%G3{-#HSY4YEsLE2x^;Lr486-Yx2!>fZL)WO=N(2KSeC(HO>sVxA0z@?}(j@NCa{X@hG)!Xl5q~m@ zB~N*#%jVJoM4Y*sDIF$Bh}<7YDP(zJ#HN*lzp`V?zCYSoL>L(BieKF{R!QGpQh{8nO>Mj^Mwrm4==^$BYgV#Gm`mkf* zsD=$BSbam*Dr_or!FeLjBEi-uLtQ!RD>0H0?=uLmNDDbWR`N zL4fCQzLD0)tc=jo`GbgI-7%K`18|sGPF|9!Gn-SG*9u3SEo$nlwhQ}9z~w7?OrDX# zkvFwdKvFRKIsL=x)YY{YZsERId1(RH%0r7e4nTWs6D#wsS?bymA&>#Y`VG9r$_tOx zfX>S(bEY0hyANmF2i%9jSprtQKvy8es# zQ@_%8+SaQ@z3_{6(K-feI-B8bs9g6%$O3)HgGJPJF&2VBobYa=5x}z_N{9qVTXn;% zaqlFGf}P-(p)w+1QwA7^9Ac9N`ycEF5M}}7In*Mou0IR*M8+3FP|)H@d6+GUISf^{ ztplhDNgTyG83!uoQ9Ot_>n;Q=bT;t|n%slxfaNR@gUYC?#B8g#nYR!#5BvWqzz{*L zGRQ1g!CI3i!1^(Oh$%BadzO%RKLtm8TLQ!jAcD&SAs0dx7z6>w%L*{eh1398r}Dr@ z=Hgj`A7KpQ0mu#1p%^6$9bzm__%MvdK_nQQ2j$~RAi%rwD2DH0VD8w(xtA9+)L=

H^v>{ zogMJ(X)HyCz@8#plxt%+#F7Z&6oIUGtEyO8c6p{QTu%D1b6V*N3+x@90;FO&jsgkS z=Slc=%<+?l0TWyWnb1L)=RB0ib%1d1o2wB0jvdF1AmcGQBiNn?(>8FyauLTS_qKz9 z7-g(Gsg3kt=Q{L09?!s`0Lvf?U7XeusI74A!!fM1hg_E~WPKWHiI=G9IV3ju(!*f|hYK)tR^=s}e;(;!QLwwtD9N=>s zl(?__y5}~CXM2VNcRZH@Pur|P@+)f7Z@tgx>xSzS;3H1UBW)_Lg94p*4fbU-5>Poz z_o^iJaiy!rIe1vwu#nie$Qo`pq4DhYpF&F{WaXJlOFP{vW`M7|1eB`$fu1SP8R~iC z+U1`{-25z2#^aR>(W9jU-E~s=629U95J7;!?|9 zW@adv0tpmR9ulBIen4A*ddv?f(3d{+Z)_j?)SpndiTj;dNtT4{VrS=i=FBI<~#GcUP_vSh0cPmyUF6ikC6 zVGTC_nbY~+uME~?3!fQm;lS#=%og?dD#kCcC5*qqF7jn|i97w9tj^4?%a++?^nah3 zn?`Hp-z298Ei1R*PRF@(CyrFh%uB;iNRCSVew^-XWJ$s!l?m#27)CqcHoq6Aj8n(* zHdg`T-EfqsfTz2$$kG8%iOSL@r*(0bJ`}vm1y3U`(O-QS4>!4#7--q~Ldg1IgcX4r z41;c*@VpuIc(fA?L)8niy_Ac*Ech_NELzP|ITAczvDjZ+eZ00hSX*U}R^Pq7`oZnh z%}#Fb@Nw=6u0|q_pzo8%MvcA=d=fA*CdSM-G^VC9XV%0#G-ozi*2LO0zBV7UoZJP& z8RL1m7s_4|Z{@D+g|EN%+0?W$6#wuf4i1W5w6N38_!6598r_fK9nb!(?6Zq#I--gz|jwx19jqsg$PAu+SbaR8O3>Ic`n_0{THXT+1 z1|42v7Pq?=b6NQ_=fH%ud6-k-<$hVubXk?nVW!7yptY7a0IBWjVtW#`|vdJ-Mh5r$i7%C57xG2quDefq%Z_k{G$xKz67=8D^JhW+S|As1~Z4wJ# zT3LLSom#-Y<<*ckQQux2Hh|bhPSuNlQL&JXZjjL~dn3nXWngEKaos3K%-skf*uR zml?_=3t3+NaPzJZnaHcZ4U-Ws>fZZ&tZOhohjWUI3`XDhOUe zOI}0any%^Cu30nPXO`Ur6kd6@Xt}oajq{)V<+EC9AFn=Rj%1qjY3&eR6ePZBh$gD! zkK|b9?huY6e$p~U3%%#K(no$B{gRaKTKkLVwk1bU8;*x@u*(H`o4gi{1l$l@O+4Tc z;p6zxfJQ@e^EXtWe?yi?U&=hf33?9A15-A2Z|Q8WNh{omH7hF*I02^qY)@@f=~pKj z^vwCvo;qrd=pL9~%}+~{(yTUdX7xi*EiiM8s?-Cb-Z_n^{i=J?~Y z*lLv?96P0I5=vDVvuNW;k6PAK^VU=IHpE+znNR^FB=f4|aQ7knyKF6p7co)HQQ=cT z3eU^1FEV{mr!MXAJgG#Nq?j*m-o1ZscT< z9}qv@P{6i?8Xp~>93>rJyou3MOp@0ZWHW;Nq>oRM06b&Sv=+dat^0F(xU+r68VJIK zM~y#{fHDq@8T`$mIn`(ynOTD&O!ciD1gMt1|5xn>rN7tXs>g*7ivC_G{WyggBVaRs zYwW|zSF1jrN4*$B(jQ3-q?z(n=CfELsE&Os_eaBR5i;%%5SI}jh-yl!X-%B^-7r#` z&Kc@3QN;)TQB3g%VTz^VmM=$9&j%|k?fO~j-{UM3VOy_%fTPDlAhe7#=1rYE#E^2l zHKIfzuN-e6T9zPTmKB>#kk7z9S zFaOD4^}krthFY0jVGXQvCXGW!yCCd>Aa`~Ab>V{4O8*+02k*@+9es39K2CM;{jG?{U7<_BSb1 z5jZ9M79h=IZ3JHlW)?nlAK+i+gNo%cTS z;SE74>vr{=BJ^l-V1!nYImk%FLj}mIUIA!v2LO722t^@Oyh;VRviJ|TE97v+uhGaC z?BF zN}^qi;r1bM)ggJX{6ZJ{47R{%5aC!cVLNY}ZHu>v7DbA@u5VV)6Ot_``M9NBmbgXJ zs{9F$MvAt`-6Y$FTg}URp-3T{ymI$R#I-v^jOAOS?bf__k9N>lYdm+0*>2<>DC z9c3xJ6ronb^+Retq+MM)3l!0zMnmvHrcRj4FC|$7Ssh6^h-Hu^n4Fi1el%d`UGydD z2SB?gOSCaZpe<7rwX%cj14VGls+m=5$#TuA={#%NRnxN_%R)RyME}O}^#5C@M1Rk6 z|5qz}$UduP&Gsx0v#n={^WQjSWTRD3GcB8DR-e{9-7;(6TF*oeTeez)AR!j1&^bz( zWJ@yj5FfN^5GiDv%)7{cv^HFYBr@F=6r_cXqH`UGYvW)kA{%DYoeC4$#}K3-BtAxw z7ZZ=~S#53m?Gp%!XlQwd~Ogo*F?6@ zc?gZ_^Gu~&(Jd8o^_^T)i18QBl0$R`HM#^AL0_kJMV?6cTz>hxrVnDcOPw=nYpWpI z-`7|czaRnqo{G1qpgUxd7&*8TCq?Xb^^HYp&7A_*NrshsZx(6WFX`4Rs_aI$ui^P_$xI8{3poUWY?&eYCu z*_b~QRBKhvkNdO1+1gpo@A1zC=WFLVKjFU~T&P{({9gZJaH)1lRfM{6S-i2S*4`Ax z#uaZ;7)x($YPGAv62}{=xVE58E4AxlNEF5KX(dg$>}_wKc*mOph2c$m`@b}5?|KKs zaqpnG<{c8(xyJGidq+@ngKJV++j|8iH@T!wXL_%Cuc7o-MpqKorWN#i)H{aK+gy5F zOrXzq7EJGicM_#{yo$(YRg}KZrL!nKiE*Q;I;e;;35u4-$>Jikax|wpJ7CCJ5YlUnJJuSV+zpA2y>nvF^3wX4rE5B=@k> z_C-ZY#_Db>Y&Gky-|Pyfx}S zCo)1VywmgrcRTvyR@7;?Lm3N?Yd|?dwb5!6i-3!g$%crX73$3KFk{)A@6e1f1Xj>m z#ygj`Rg-bvpNzOI+857VM)kz@QsFgYT0Y8mQ2V0c)>o}M zFmEX^ADI*u-DuHSz@(G$W|WQHOpio(Xu3aemxU9FxYLfq(2tzDFWi>n%0`6R5p1*X zM4kDz4C^AIqTz=kXy3w7)^Y4KrBd6C7o9kCI?~6d{-hpt51;(0JJUTo^QKe%^mJur z>+6-%Gbl*ZC^03*l&!i-tdRXEZ{WF!Cn_U}l~~=-ddjA{u7c^*?$Rv*4hfnqK};4e z3TY#;Y2(3nei$xCw%=S9w%f8rqv14L3t_cbwDG&rcBLEG(G~mQR*N{aQ5=b?eY@JI zf{VkM^VM@qkDWB;u_ein)9=ZVA~7T3g7GV=v@yYN6?qJ=r~fd!63XSM?P8Z^JvVk| zM5}>W3Yympx{2#<(4IYeZl>9aW$1P4#3eIvIJ28L?PxJUay`zI~z4)F@u>byA4dH-E7Zd8?b8-quG>GndOA6wpWvJryjOq7c4PY z<#8-1f|XLrIe7xFM3>@mQp94slz|{{i=w{l%r{%ETy?-A;fnC;I%xYp$`4NRD}3~n zB}KxhJ)oQ__w-ab7Hb>2htpj$HZ@ZAs8i)WPiLB3bTFef}WCU_?|s4SgFM}HZZi^RIyd> zbWc85ZnoRRa>t@Gw$~9hRr^x7-YOambYS&i_vV0<_dZpUtS+}T<(+JbC~FH%LR!FM zvSwWE-urRH{LN~>KEdLO)5Ek_xt#07m`Wh-Zkm<(AX|F;%EI}VQgUVtj5>Be( zk`+o$Q9@FaCd6*Zu#@h%!>n0FQFIlFX&RcT8u)9JJ~s?QLrKn1P0i9w z%}^~o{W^SW$ZN(kBWGyx0y_AfddZ=1n|kSi?P4IYuZcPIxrg6sTXU?WT|oX_f5lym zoLF|CnbVc*n*ZVL(|2GDGgVs;gTQThby^UMlrAsRv?$;IQT`><>TONyj=TsO3{6YI zw0JLHwv8Fzrn|_~$j%&6&J$^(gUCdp8K!E!kZ&NnV~Y;@qzM7l_{nv7aJQSc-oS=sjjI#H9E@m>PDVREu!4i;MkKD?hDq|_WBme>njYKRA)pgqOVV? zOnv8Jr6kW`k0m??B{6&ehQx#{!i35rRK)0F9?~pY9v^3fSpxBx*?Stq%^>J7Xn=Kk z;;?28J8`1J94A)P_F)Y^i&>FZ4Cb7qg#MkZSJ*f=5{XVUyLfsale{+)^N9{48L|wm ztQGa5T2?J}oTamRxYRX*wZ(ss1;|Br)TW4znkOHLvzQIP>JQEv;D1|Mg$R(6E zT9Cro&Ioi?*-@ozlb%(@l&@mCNr8JJY$e~sce>m$0)Y&JNb>m@_fe5(D6MhFc@|J<;o%Yf3mKdz#JdekPiGoy zvA#s=KqUkRkyd&-opw)K*5#4d^fV|1jmkD5>QEh4T&3L3|qL2I|r8R0O@#yN$Rcs3IhS4+s zLitN=&5FxCi)dGrUOpc2Fw$~P%6N=Mk4M(EC`NB4W}2f_{8IIRMChsH=MtrR`4ORi zn?%3U5}&ofVPv@hxot9^SL{LA@4X_|&e#oDV#;-=K59m6);|)l%P=tWPrCavf5hHh zbH(oJ=c?zsm--bpzHG8EZVdGB@$HZ83m4AXnG19V%$<&vA%M!bq{EW4l#C-uv@l8x zI@QD?JwOwd!&G5{lLI%FqeM!LJy+GF4j#-)Uvs->Vz%v z*C2|nAStV(&{P`!MIeZ>QH0Lwf0>2_y``}n6)E?8N~bztj_1}3`BNIG2yNQ##OzL) zY5&P^>a>OIokmHy;fM3C?_}Ss)9Ykq`#;((+7K3#e?z91lZf=RVB*(Iuqf2px~eK* z(Su-7brtcGwY;iyM;XTIJ+i+>FTZIJ%}>C(Yx&Rfo&h%G+zPR-vXuK~R8?Zo_SBx< zGaxd#HR};*44CwFT~%7vIVE~~1tZb_CwO|6411akyH*VA3^4!@e}wk~v>;(z&{kVJ z=92qCb3uDRZTAKR1Z*5e2AnfTEcN_SKaAvrxXun2w$yP-euh-|9JOw4)j_ggg#lsN zg7Qu$IaW^HLp)px$}>Qm5nlmJpX(l``WV@MC2V>#jSvt)r6{LxGD-g4gWFPuQqJ(# ziYr^_lVv6;q~|VLPm;YE$in>KUPVn$I4EY8VF{8X3Vo*k8S?T|N`6j>LkSuF#Byca zTyX1gq6$f(v74ofTf_Vdsv`nyLqo)|W!PKdRmQ*Hl}+ml?Kf7DxZHek@CA%C*#=|$ z**MwhFSO^d%?&iJ6V&YghL9m?Wxo6hrXq%k02)@m`TI4(aB5WQ<1%>%-+Hts`!=E} z>@%IJaSXFxRBS!BLt##U*66(-K3zN!+zW7?Dc#UT(?qa$g&3X6pbH{>y91Q2%L7 z32&%=7z%1HL#NO4vfi#pLnPpyMI``5hWQ*kz zb)T17Igj6&RBF-R#gmXNon)&3x~)FRh(IF$al1saVJXhZ-^H;YoMJ2^w$r_Qx6ukY z#4$6I>YABU*N~(D;`Re?;O!2Z6tV<}FLf_%YsgeTtQ}Aa*@z_HM~UMDRXo5@Nsi!^ z2Vlgc!|as88DzY}h&JVO=J;jw)_wgZ9Aq+%EU%dqUSU&7D&QJsA0eoB?U)BY#yx-W z5=y%J9t^jVcb*dg%p!dl`7&f(buTyS`)>KaY(mnuYF_-gHJweGF zC3`5@ONoypneMd6rAGW?%N0(6r2L48?h%o(6gFFOnzClJh$x_+7(obwLEbC^apE(t ziGWO;6mEZ37i>9_u`Jw1N+gT%4W(w1HO6jbK^xA{lZ|MG$!P16f`^`Y=lf8N0)KGl z5r&Evq|5s##ddXRGD56TEhk`rW$`tcK*DMj(PIxmfQHgg7T~nU$_8IsZD7|u<4e@tg0Hs8 ziZj;Nm2cixLD^6=Z7l~?joMG&Sj+eFOGb2@j0Vmt55Pmn+eFSH4*+l_zmyLzA+^@c zwL-5T@5cq0fWkWY19_)}ni9-F-WldxIr@+dP;O%c3LlW>@sXanm4}+m^;I{+p84%c z7Vv9@S7Ca2titjNSVeAY6+Kh_A=ekVzQpzBwtB!I+KI|g_s>}kr78_K8w^XXY)3dg z5G|pbmxL$cMK`viPQ4DFGxItbF#*qWKZsg0DEj}pNOc~2t<*lnM%`086=Vu~>Y?wa z9!ft#%*s?dWAE@BHR2yU#Dmc!l3(DIKQ$?wv!r|i;P_Z$L#57rt1{nyt0h|XY^u9< zDw?ElwIRqclGh&+Ymy(TeKDbQr&unkSN#yT4AJ%KfNZY2_W^B66fJao9|2V?ig4Rg z_4|_~Rq+7NugRTh&?Ix|B>z-yI(FU(=GumG1QJ znGLAA(5DkIT-SPn}PfTkUYWA@+)L2quaDWNR9VVLiUyYdj@bR zaGXS>BWP}gT+?`CB*%!B!ZaM7ND73nQ@b$2`^F2LZ3LG9em|#1wCWP7`5}f6%oct4XSotW)JB}CD9Vf|C6dRg1 z$%j#uyjwQYi6(_?(=^R^m4f$@j$6`cNn%QwqlDZxnMaZwz|~0=9%ai5aaF=0bu_Ay zWsg!nnlxnX(96mC9x-WB_K1@`OxVAQsn#j>BME^gQ#)%!A0I?poC)gQJwugMr?dZk?dN3 zO1SN6ly`wGcXD{=S~AkXJ*g!7n;d)@(E!5{HhuZr5V?(5hLf?KJq+T)1%w1YOmAu| zheIfilliNp%piVA@$P$b_wL`m`7XTK*DzEXzMQBDzGi6dp-cl1Dj$6fBC{M4$ETaa1JM)d1I?zPJtz zphW+Q#851q!Y`I;tE1YeI)n%5j{n5AF9ezKpHRnj-2JH93r*9WYr6JKGm7777t@mB zbKD9I>Wa^_0)3ep%I)pt None: + self.path = path + self.setup = False + self.bin_dir = get_paths( + "nt" if os.name == "nt" else "posix_prefix", + vars={"base": path, "platbase": path}, + )["scripts"] + self.lib_dirs = get_prefixed_libs(path) + + +@contextlib.contextmanager +def _create_standalone_pip() -> Iterator[str]: + """Create a "standalone pip" zip file. + + The zip file's content is identical to the currently-running pip. + It will be used to install requirements into the build environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + # Return the current instance if `source` is not a directory. We can't build + # a zip from this, and it likely means the instance is already standalone. + if not source.is_dir(): + yield str(source) + return + + with TempDirectory(kind="standalone-pip") as tmp_dir: + pip_zip = os.path.join(tmp_dir.path, "__env_pip__.zip") + kwargs = {} + if sys.version_info >= (3, 8): + kwargs["strict_timestamps"] = False + with zipfile.ZipFile(pip_zip, "w", **kwargs) as zf: + for child in source.rglob("*"): + zf.write(child, child.relative_to(source.parent).as_posix()) + yield os.path.join(pip_zip, "pip") + + +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 = { + os.path.normcase(site) for site in (get_purelib(), get_platlib()) + } + 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) + for req_str in reqs: + req = Requirement(req_str) + 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 dist.version not in req.specifier: + 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 + with contextlib.ExitStack() as ctx: + pip_runnable = ctx.enter_context(_create_standalone_pip()) + self._install_requirements( + pip_runnable, + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cache.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cache.py new file mode 100644 index 000000000..1d6df2201 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cache.py @@ -0,0 +1,264 @@ +"""Cache Management +""" + +import hashlib +import json +import logging +import os +from typing import Any, Dict, List, Optional, Set + +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.format_control import FormatControl +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__) + + +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. + :param format_control: An object of FormatControl class to limit + binaries being read from the cache. + :param allowed_formats: which formats of files the cache should store. + ('binary' and 'source' are the only allowed values) + """ + + def __init__( + self, cache_dir: str, format_control: FormatControl, allowed_formats: Set[str] + ) -> None: + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + self.format_control = format_control + self.allowed_formats = allowed_formats + + _valid_formats = {"source", "binary"} + assert self.allowed_formats.union(_valid_formats) == _valid_formats + + 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 [] + + formats = self.format_control.get_allowed_formats(canonical_package_name) + if not self.allowed_formats.intersection(formats): + return [] + + candidates = [] + path = self.get_path_for_link(link) + if os.path.isdir(path): + for candidate in os.listdir(path): + candidates.append((candidate, path)) + return candidates + + 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, format_control: FormatControl) -> None: + super().__init__(cache_dir, format_control, {"binary"}) + + 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, format_control: FormatControl) -> None: + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path, format_control) + + +class CacheEntry: + def __init__( + self, + link: Link, + persistent: bool, + ): + self.link = link + self.persistent = persistent + + +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, format_control: FormatControl) -> None: + super().__init__(cache_dir, format_control, {"binary"}) + self._wheel_cache = SimpleWheelCache(cache_dir, format_control) + self._ephem_cache = EphemWheelCache(format_control) + + 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 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 000000000..e589bb917 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..04cc14e0a7641cbea7f7b08f4a13ddd5ec2201a8 GIT binary patch literal 358 zcmZutv1$V`4E1Hn5y(Gy3mF_IbS^`V+@ZhHALz$q?O$}N zE-kc_2qf`r@t&S=xm+-c{`JnjQ2&^~->3-OQs$b9Wsl5Od$yiE-|vr2)TY-RaD$;} z7hLGL_MT(Qql>Fd@57*j<=zG0E)+SCrbs@l;2i7UQ?oB&t8ohe literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da9012d6c7f8688690619625317ff2d45e9fd97d GIT binary patch literal 5393 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..45737c745e078b35587cf0f786546768d3604d4f GIT binary patch literal 22633 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e955d3ae4dc6ffdce9def6393c998938f1b4bbb3 GIT binary patch literal 1392 zcmZuxO>Y!87`8nhJ3H)d0|{+W5o)>3VKYQr5kf?OKw>Y6sF;g8jJ;u+`NDQcHp&6m zNN_>?1vv5}`bT{2iGNU4s^EQRvaqD_Xdc_|*zf1_PCXok1jg>0P4N#S)3a4}vxAYRP^b?;F=?h1=!h6e--aR6G(K{xhH)ly8f-MsD zKY<<+G26d$kee-&X1jKj)s>M4rcA4JN2n8u#?!}zL6?5wX(hKStB2%$}+ya z9Z}oQ>gTD-)5>J1czK}fIP?PmNfIhZ!bJF*Oewl}JV+er3MxIpE|Dn{p74*|IZeQ2 z*^|K~2v!DDR|KMe>?Zx!#3e}xA)K?Tn{^4!iiMZ?!TrkmN}4@YO)}bA?Eu%1R^q^` zF9R4dC-3P80?DICgfrvJ3Cyk_pqWkXMxOQbUL%zaIM1uxaBf#%!OIljBvA@g+TnMy zkJP$a7E_q}oM%O_}iw)pTy0~Jguwi>l@c%of|m@Pj;cq zI&ShNhRC3@Ra(SZk;hq=)%}fm-(g2g^1BBG41A2J*jP$QBvh~08<89=I{sZ78 zB>PXI{0HO}Z3{pSuY!cWJBMt31ZDXhW*45hLrFE-Ao`bmN1D`Jo$Cq zt@cUeOt$YvObx-78X^3Eu=*9&U}Xo(#l)i;#q34Me8y-1&y~-i!~VPA9R7M%tjpK! z$_XiWqw43mkSarVEXIO-n;_6X0$}{w!}u}o_w0y%pg=u3iJWg<+o8m|ED8Yut-w`< z_fN&5egfIg@M>(gkPg`4Z)drDS|9#(CeTX2@+vJQusr0v1o{=Y9&r9_FD<$+Ee8~K zkn#{NBA_+ZLqG?h7dpykvM4xT^6@+#!R)F&0AA2&Iv^v;yfu0yY~_=vZ^M&30%zO) sYAssd%o=Ev&R%OCiP%|2jZ3E5BDeJoZgi2{#P-)nz!kCvskz{M0S}^4ng9R* literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e686379cf8663194463a2c928b3ceb67bab57224 GIT binary patch literal 1456 zcmZuxOOG5i5VqaVdG73PSax}-1&Uw}Gn0rLLWpRU1JY;{Er*B}QmeP^%=WJPA={J5 zjAkOFfW(DA079C*!IhumD_rsykU*5(tFQ^UWmmbXTvh(6+*PmFMldeFKc>I55c=J0 zZVnGNpTm?t!a`AuD5iwt7+XqWVyP25mb$SE)Zt#?$9@sS0XFt74~tgZvb@LJMJMi9 z-sjz-7xye5@P4rq?^r(MgJL({#fXvZ9^1dd@h#e;Efz4Jy>Wz&5N)%A$1d&A?zdk2 zCM92@VSg1p6nT+~Wt7%6&$CqJRT;5TiDg~or5d+izzxvJkZ5}IQxZPR>-$1f0<;~Sd~W*p?k5jq!7b}7+p2k?oxN{HhSyDedby(K#do*x5m_4lP8G!Kah>L z_O|j)i8NZ>{$f^EA}?nVGYCevWwbbFWh9wWM#`%!q|*2EJWT3e&^{2z-MDddUe*8Ohv$!3w#+!2P&WE^!}GIAy;SE_`SJMf zorwfUMv%#6I)h~Dyq+WwlnHntlZ@vRbH{PL6z@RdBbf3dSVG*#q2m)m2EgsXJiy^M zA*!2dmP+Qgn3;*;T_4w8gcS(1nYI1l&(oN!sO4?EE}B3~_QBOylO7)b=# zj9+FmhHS<+9xNbY3$5S%ubD|Yv5#5UKF|lR*)%U)Hg!CFRS897_8%c_`^5XNs^==_ zvgyCpjHzkU7hz(H5BGb^r0z&1v}3AgaI;mvv3y`m!cPmREN7pYXCloh7lkCm<{RKH M>Eh;VljyyF0BCKQH2?qr literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12b4556bdbcf31e46161bcae53717dfb929c6f35 GIT binary patch literal 2242 zcmZuyOK%)S5T5RN?s#|o$Qyz(vP8ln?XD99T#N;Bh(L-0Qo>~*8jYuW$7A>#)FsrWZs;=qos`|c~ve)wsc=mtVCLh7< zPpzDOTu?rRA$|oxjL;y6V1`1}{NoVAzsbzp3a#7@ZKT&N=HzbZHglVKc_-}Te&{#4 z!JH$_Mc#bU5&IFS#={&W<^Q1>Ddf|!z zR-0aE=M#Lzm{_DweDJtP@O@*jeE7*{fyj!K(V${+LW4=kgQP5kznK^1dBx&H!!HSP_tvhHR=D*M5-VswC%pX8*hWCk0-;@WmuOtSQ=#_)CX zrh4a_ip2VW+jJ67nG|18R^2Ii9!p6%ywpp|Jcq+YM6yJx^C^{)$nuQEJUUr|le*ij z+vl8@`n6^4S7lZ7h;jkvE3Yx|GF58{r?I4w4j^g+P`&2=WJBd}DyO_ibXX^k2@_r2 zZ5V=qkWFnRIx>hUF-YrYduG(e+&ngrA*~~rN49k4u5|Xi+Bn8D1go7I9V4ih4XZwJ zQbb(hJvHRgynAfiHjdCGV}?m*-mCF3_(%QPfC~ACH@BN>i>4Co{lwWqG-ZRRZ-`*~ z?w5ye`R`T`aj>~a)K>8Aq8bnHC?{p*PRs_jvZo?WsalQ+iFP6VQR}2S0D`s-$|~ZV zDogM7Kp6>w@J}9{7aPWX7-Ahn3UNQ|eFxFbaE*xZ%p$19d&V>4x%mtJUgHfbeCy+v zD1gGbVhZ);2Ln^#(FQ*U8>sH$zEM_8%HItBHW*+2K7L&CeNh2A#TYOX4{4ER1*II& zGu$alnZ$WD-nco;3du{Naa$HcSq{%Sw;S!2)&K0nvI$KN5=O^_4qq!Q+Zk5}aNI z!|QLtakRj!^i2nQe|Ielx`~eDKVZ|D z(>Z8J_yX08i~w|aW&+qSzb4H+Yi`$Q4`>8*Y&0OE+iG)9le9MZur>*T z28s7E|4?>n^9UNWp2MDgLuB*BSNqMZ+LB9;5D#UywvN!uCSZ96bbfB8Xy(*5zh67^ z9)VeFZO-cxcfMRZ$LI+C05>J@`w`mk%&pz|N^NPM+N#}&CWm*AYknz9bMb|q9uK#)S;l56xg03|5;&E5Ge&4H^Qyp(zf8a)c!1 z6ngYy4)s*H6v|~lBS9-=(I=TyCZh$s478F>J7}uUb>@{5R~0P??|{OuHx^Fw@(~?) z{C#bEPurmPwxC)x8`aTwh$s_OdGJMunr33BQ!0cqbCI^z=AxSFrx4QvbpwXbhdHR< zam+sIBM)6QJ&>O1VGs4Oh1NiJ0Y4rdTvBcnkur%QeoOB*2B92zP(h#ISX*?<3Ri)) zqkm~T0@}7Lx%`HG)Pnmp`P9WTK8sJ(sZ5>Og+57W`yFg@r_L--WyZuP&wx^zw=KCL zikLBoLemC{Cpp*YI7O-^S(;hO+svWkF}kJUA})il3`h=IL0!C}B@9il>(~AP>;QLw literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab51448d0cf656b798efe3a073cb0026b6b4a723 GIT binary patch literal 10029 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 TwEwlt(ihrU>(O{d<;(vAN~+H5 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b49a5cf31f246efa47cf2ffda9a34d3d0dcaa32 GIT binary patch literal 13619 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..432ec3d6957242d0d90ef9bff66353865db64527 GIT binary patch literal 437 zcmZvY-%7(U6vo@F`-52ULeL9eU>99BycKbF6^k>KcAe0h&?RvT>zdGH$lkzL@fCcO z-g?zn@XFK*ig-eP;e+p-^AT>_2ZpZAi%XP#-)r%^Of9bTm1i2nNDN{oCTS%t(oWjM zN-WYzI;0yJgI=W_MpZXdts3nbR*e%4IOvwWD0W>hipq``hCx``F}#DpBSeinUijfW zp3FSBKroo2n;?eM^7J9}7Jd*%=sNaiQ#AF%Z~qYt(EViY-g;5veKiVOulmBr8+hi$ zMv4?u2}r6^hvqAmQ(CZmX=49-N;yunN zAk_I08CwFeS8JZ1562@QnWBzPvPoAuj9>yFy_6PtngN_KAXTb%5@AlL9EyF}zu4+P S8NIB3QyywqhGjOVZ+-#~a(){C literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py new file mode 100644 index 000000000..226fe84dc --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py @@ -0,0 +1,171 @@ +"""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: + for opt_str in opt._long_opts + opt._short_opts: + options.append((opt_str, opt.nargs)) + + # 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 + # ````, ``

`` 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/base_command.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 000000000..78b96bb70 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,223 @@ +"""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, + ) + + # 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 + + if "2020-resolver" in options.features_enabled: + logger.warning( + "--use-feature=2020-resolver no longer has any effect, " + "since it is now the default dependency resolver in pip. " + "This will become an error in pip 21.0." + ) + + 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("[present-diagnostic] %s", exc) + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 000000000..71b1d1906 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1018 @@ +""" +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 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.cli.progress_bars import BAR_TYPES +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_install_build_global( + options: Values, check_options: Optional[Values] = None +) -> None: + """Disable wheels if per-setup.py call options are set. + + :param options: The OptionParser options to update. + :param check_options: The options to check, if not supplied defaults to + options. + """ + if check_options is None: + check_options = options + + def getname(n: str) -> Optional[Any]: + return getattr(check_options, n, None) + + names = ["build_options", "global_options", "install_options"] + if any(map(getname, names)): + control = options.format_control + control.disallow_binaries() + logger.warning( + "Disabling all use of wheels due to the use of --build-option " + "/ --global-option / --install-option.", + ) + + +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 dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target'" + ) + + +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." + ), +) + +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=list(BAR_TYPES.keys()), + default="on", + help=( + "Specify type of progress to be displayed [" + + "|".join(BAR_TYPES.keys()) + + "] (default: %default)" + ), +) + +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.", +) + +proxy: Callable[..., Option] = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form [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 = "invalid --python-version value: {!r}: {}".format( + value, + 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 older binary packages over newer source packages.", + ) + + +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.", +) + + +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) + + # 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, +) + +install_options: Callable[..., Option] = partial( + Option, + "--install-option", + dest="install_options", + action="append", + metavar="options", + help="Extra arguments to be supplied to the setup.py install " + 'command (use like --install-option="--install-scripts=/usr/local/' + 'bin"). Use multiple --install-option options to pass multiple ' + "options to setup.py install. If you are using an option with a " + "directory path, be sure to use absolute path.", +) + +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=False, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) + + +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( + "Arguments to {} must be a hash name " # noqa + "followed by a value, like --hash=sha256:" + "abcde...".format(opt_str) + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( # noqa + 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.", +) + + +use_new_feature: Callable[..., Option] = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=["2020-resolver", "fast-deps", "in-tree-build"], + 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", + "out-of-tree-build", + "backtrack-on-build-failures", + "html5lib", + ], + 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, + verbose, + version, + quiet, + log, + no_input, + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/command_context.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 000000000..ed6832237 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,27 @@ +from contextlib import ExitStack, contextmanager +from typing import ContextManager, Iterator, 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) -> Iterator[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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/main.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/main.py new file mode 100644 index 000000000..0e3122154 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,70 @@ +"""Primary application entrypoint. +""" +import locale +import logging +import os +import sys +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:] + + # 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 000000000..3666ab04c --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,87 @@ +"""A single place for constructing and exposing the main parser +""" + +import os +import sys +from typing import List, Tuple + +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 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) + + # --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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/parser.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 000000000..a1c99a8cb --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,292 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Iterator, 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) -> Iterator[Tuple[str, Any]]: + # 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( + "{} is not a valid value for {} option, " # noqa + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead.".format(val, key) + ) + 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( + "{} is not a valid value for {} option, " # noqa + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0.".format(val, key) + ) + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 000000000..ffa1964fc --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,321 @@ +import functools +import itertools +import sys +from signal import SIGINT, default_int_handler, signal +from typing import Any, Callable, Iterator, Optional, Tuple + +from pip._vendor.progress.bar import Bar, FillingCirclesBar, IncrementalBar +from pip._vendor.progress.spinner import Spinner +from pip._vendor.rich.progress import ( + BarColumn, + DownloadColumn, + FileSizeColumn, + Progress, + ProgressColumn, + SpinnerColumn, + TextColumn, + TimeElapsedColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation +from pip._internal.utils.misc import format_size + +try: + from pip._vendor import colorama +# Lots of different errors can come from this, including SystemError and +# ImportError. +except Exception: + colorama = None + +DownloadProgressRenderer = Callable[[Iterator[bytes]], Iterator[bytes]] + + +def _select_progress_class(preferred: Bar, fallback: Bar) -> Bar: + encoding = getattr(preferred.file, "encoding", None) + + # If we don't know what encoding this file is in, then we'll just assume + # that it doesn't support unicode and use the ASCII bar. + if not encoding: + return fallback + + # Collect all of the possible characters we want to use with the preferred + # bar. + characters = [ + getattr(preferred, "empty_fill", ""), + getattr(preferred, "fill", ""), + ] + characters += list(getattr(preferred, "phases", [])) + + # Try to decode the characters we're using for the bar using the encoding + # of the given file, if this works then we'll assume that we can use the + # fancier bar and if not we'll fall back to the plaintext bar. + try: + "".join(characters).encode(encoding) + except UnicodeEncodeError: + return fallback + else: + return preferred + + +_BaseBar: Any = _select_progress_class(IncrementalBar, Bar) + + +class InterruptibleMixin: + """ + Helper to ensure that self.finish() gets called on keyboard interrupt. + + This allows downloads to be interrupted without leaving temporary state + (like hidden cursors) behind. + + This class is similar to the progress library's existing SigIntMixin + helper, but as of version 1.2, that helper has the following problems: + + 1. It calls sys.exit(). + 2. It discards the existing SIGINT handler completely. + 3. It leaves its own handler in place even after an uninterrupted finish, + which will have unexpected delayed effects if the user triggers an + unrelated keyboard interrupt some time after a progress-displaying + download has already completed, for example. + """ + + def __init__(self, *args: Any, **kwargs: Any) -> None: + """ + Save the original SIGINT handler for later. + """ + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + + self.original_handler = signal(SIGINT, self.handle_sigint) + + # If signal() returns None, the previous handler was not installed from + # Python, and we cannot restore it. This probably should not happen, + # but if it does, we must restore something sensible instead, at least. + # The least bad option should be Python's default SIGINT handler, which + # just raises KeyboardInterrupt. + if self.original_handler is None: + self.original_handler = default_int_handler + + def finish(self) -> None: + """ + Restore the original SIGINT handler after finishing. + + This should happen regardless of whether the progress display finishes + normally, or gets interrupted. + """ + super().finish() # type: ignore + signal(SIGINT, self.original_handler) + + def handle_sigint(self, signum, frame): # type: ignore + """ + Call self.finish() before delegating to the original SIGINT handler. + + This handler should only be in place while the progress display is + active. + """ + self.finish() + self.original_handler(signum, frame) + + +class SilentBar(Bar): + def update(self) -> None: + pass + + +class BlueEmojiBar(IncrementalBar): + + suffix = "%(percent)d%%" + bar_prefix = " " + bar_suffix = " " + phases = ("\U0001F539", "\U0001F537", "\U0001F535") + + +class DownloadProgressMixin: + def __init__(self, *args: Any, **kwargs: Any) -> None: + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + self.message: str = (" " * (get_indentation() + 2)) + self.message + + @property + def downloaded(self) -> str: + return format_size(self.index) # type: ignore + + @property + def download_speed(self) -> str: + # Avoid zero division errors... + if self.avg == 0.0: # type: ignore + return "..." + return format_size(1 / self.avg) + "/s" # type: ignore + + @property + def pretty_eta(self) -> str: + if self.eta: # type: ignore + return f"eta {self.eta_td}" # type: ignore + return "" + + def iter(self, it): # type: ignore + for x in it: + yield x + # B305 is incorrectly raised here + # https://github.com/PyCQA/flake8-bugbear/issues/59 + self.next(len(x)) # noqa: B305 + self.finish() + + +class WindowsMixin: + def __init__(self, *args: Any, **kwargs: Any) -> None: + # The Windows terminal does not support the hide/show cursor ANSI codes + # even with colorama. So we'll ensure that hide_cursor is False on + # Windows. + # This call needs to go before the super() call, so that hide_cursor + # is set in time. The base progress bar class writes the "hide cursor" + # code to the terminal in its init, so if we don't set this soon + # enough, we get a "hide" with no corresponding "show"... + if WINDOWS and self.hide_cursor: # type: ignore + self.hide_cursor = False + + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + + # Check if we are running on Windows and we have the colorama module, + # if we do then wrap our file with it. + if WINDOWS and colorama: + self.file = colorama.AnsiToWin32(self.file) # type: ignore + # The progress code expects to be able to call self.file.isatty() + # but the colorama.AnsiToWin32() object doesn't have that, so we'll + # add it. + self.file.isatty = lambda: self.file.wrapped.isatty() + # The progress code expects to be able to call self.file.flush() + # but the colorama.AnsiToWin32() object doesn't have that, so we'll + # add it. + self.file.flush = lambda: self.file.wrapped.flush() + + +class BaseDownloadProgressBar(WindowsMixin, InterruptibleMixin, DownloadProgressMixin): + + file = sys.stdout + message = "%(percent)d%%" + suffix = "%(downloaded)s %(download_speed)s %(pretty_eta)s" + + +class DefaultDownloadProgressBar(BaseDownloadProgressBar, _BaseBar): + pass + + +class DownloadSilentBar(BaseDownloadProgressBar, SilentBar): + pass + + +class DownloadBar(BaseDownloadProgressBar, Bar): + pass + + +class DownloadFillingCirclesBar(BaseDownloadProgressBar, FillingCirclesBar): + pass + + +class DownloadBlueEmojiProgressBar(BaseDownloadProgressBar, BlueEmojiBar): + pass + + +class DownloadProgressSpinner( + WindowsMixin, InterruptibleMixin, DownloadProgressMixin, Spinner +): + + file = sys.stdout + suffix = "%(downloaded)s %(download_speed)s" + + def next_phase(self) -> str: + if not hasattr(self, "_phaser"): + self._phaser = itertools.cycle(self.phases) + return next(self._phaser) + + def update(self) -> None: + message = self.message % self + phase = self.next_phase() + suffix = self.suffix % self + line = "".join( + [ + message, + " " if message else "", + phase, + " " if suffix else "", + suffix, + ] + ) + + self.writeln(line) + + +BAR_TYPES = { + "off": (DownloadSilentBar, DownloadSilentBar), + "on": (DefaultDownloadProgressBar, DownloadProgressSpinner), + "ascii": (DownloadBar, DownloadProgressSpinner), + "pretty": (DownloadFillingCirclesBar, DownloadProgressSpinner), + "emoji": (DownloadBlueEmojiProgressBar, DownloadProgressSpinner), +} + + +def _legacy_progress_bar( + progress_bar: str, max: Optional[int] +) -> DownloadProgressRenderer: + if max is None or max == 0: + return BAR_TYPES[progress_bar][1]().iter # type: ignore + else: + return BAR_TYPES[progress_bar][0](max=max).iter + + +# +# Modern replacement, for our legacy progress bars. +# +def _rich_progress_bar( + iterable: Iterator[bytes], + *, + bar_type: str, + size: int, +) -> Iterator[bytes]: + 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) + elif bar_type == "off": + return iter # no-op, when passed an iterator + else: + return _legacy_progress_bar(bar_type, size) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/req_command.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 000000000..5d4d1f0f4 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,506 @@ +"""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 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.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.req.req_tracker import RequirementTracker +from pip._internal.resolution.base import BaseResolver +from pip._internal.self_outdated_check import pip_self_version_check +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) +from pip._internal.utils.virtualenv import running_under_virtualenv + +logger = logging.getLogger(__name__) + + +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, + ) -> PipSession: + assert not options.cache_dir or os.path.isabs(options.cache_dir) + session = PipSession( + cache=( + os.path.join(options.cache_dir, "http") if options.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), + ) + + # 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 + + 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) + ) + 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 "2020-resolver" + + @staticmethod + def determine_build_failure_suppression(options: Values) -> bool: + """Determines whether build failures should be suppressed and backtracked on.""" + if "backtrack-on-build-failures" not in options.deprecated_features_enabled: + return False + + if "legacy-resolver" in options.deprecated_features_enabled: + raise CommandError("Cannot backtrack with legacy resolver.") + + deprecated( + reason=( + "Backtracking on build failures can mask issues related to how " + "a package generates metadata or builds a wheel. This flag will " + "be removed in pip 22.2." + ), + gone_in=None, + replacement=( + "avoiding known-bad versions by explicitly telling pip to ignore them " + "(either directly as requirements, or via a constraints file)" + ), + feature_flag=None, + issue=10655, + ) + return True + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir: TempDirectory, + options: Values, + req_tracker: RequirementTracker, + 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 + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "2020-resolver": + 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: + lazy_wheel = False + if "fast-deps" in options.features_enabled: + logger.warning( + "fast-deps has no effect when used with the legacy resolver." + ) + + in_tree_build = "out-of-tree-build" not in options.deprecated_features_enabled + if "in-tree-build" in options.features_enabled: + deprecated( + reason="In-tree builds are now the default.", + replacement="to remove the --use-feature=in-tree-build flag", + gone_in="22.1", + ) + if "out-of-tree-build" in options.deprecated_features_enabled: + deprecated( + reason="Out-of-tree builds are deprecated.", + replacement=None, + gone_in="22.1", + ) + + if options.progress_bar not in {"on", "off"}: + deprecated( + reason="Custom progress bar styles are deprecated", + replacement="to use the default progress bar style.", + gone_in="22.1", + ) + + return RequirementPreparer( + build_dir=temp_build_dir_path, + src_dir=options.src_dir, + download_dir=download_dir, + build_isolation=options.build_isolation, + req_tracker=req_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, + in_tree_build=in_tree_build, + ) + + @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, + ) + suppress_build_failures = cls.determine_build_failure_suppression(options) + 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 == "2020-resolver": + 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, + suppress_build_failures=suppress_build_failures, + ) + 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, + None, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + ) + 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, + ) + 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, + ) + 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, + use_deprecated_html5lib="html5lib" in options.deprecated_features_enabled, + ) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/spinners.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 000000000..1e313e109 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,157 @@ +import contextlib +import itertools +import logging +import sys +import time +from typing import IO, Iterator + +from pip._vendor.progress import HIDE_CURSOR, SHOW_CURSOR + +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: 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) -> Iterator[SpinnerInterface]: + # 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") + + +@contextlib.contextmanager +def hidden_cursor(file: IO[str]) -> Iterator[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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 000000000..5e29502cd --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 000000000..c72f24f30 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,127 @@ +""" +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.", + ), + "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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3fcc01eb03cb4d47615eb5c2168c39106cb66326 GIT binary patch literal 3221 zcmZ`*J&YSg6yBfl&)L48kR#!a{49`!IK+060}?_4NiGDAgv&|cN3xJsd;7-r>h{OX zjC0uXRiU7wp`oBiBpP}eghWF_Lqmf!qCrSVh=zs+3Bj9L?{a~&PdoR%d2hb==DoKw zo6OEu4E$|UI_w0{Ns3Dq#IhfaI0nt8q1omsR zi0Dx`00%XC4ABxS!{ZtqLUb68z)_7HL{Gqz@RUZ!5FLjT@U%uJ5!K-oJfqQRL=9*{ zOQSQ0&cZoZ(db!3&%yI>UZV?$UVw}6qDGexU51z7WsR;Nx(e4|Rio>OUV$6%szU85 zEmGW7$67MzEWCEffHhi!*J%N6(wR;XZowNLkoKIOy-7>7wq$e&tix@bod@fVQQsIH zuWWe!me-|@pTxoo;vnuiUKl$4ppR2g8E?)O<9IyI}Q^MMn|WRWd?Ho`ouJ&dnB9K z#Wyp+%%st&)a(^qZXp-m%8WD0{rSu;&SHmAI-;Y)QwUSFoV}sVGODw;2cka^&LkWP zIU`OvjJ`Jr7>#HwxYJ2k ze?fbl>PKs3?Hv_b=I7Y8K@dV3E_Sw}9VP?zP{U(?_B`I3+Mh}(tFPghu|9Cv!HS$3p41CB4QDl2lU zGgh~1x(L$)baT+1njWo{wd=|#^KjySFB*F23_|TgFX-aQt`dZCOivIhF+n(HyazR} zTC_V_Ov>yeaPERS|A{)vWpQiUV_hzbjEVt^eZ0%_Um2wWJ~#2<7jY2A*jO^&wRfx? zdxr?~zBRTUm^%ewj|*e_p0!gP7r`DIV*=)<*4X^a{K(uXjZ1iMkbK6EZQ%XL@JjVnUp7S2_^)wF)Jyt%@Pt8! z`a?gYEuf8m0dBU{ABtWQuQbn|Y4JeNMs}yRu=88_rQFKO-*Ry-5U$(o59OS%3*t_c zJ=_&n-+gnWVphyWlUVFL!iW08#tDMYDn9%i4*I*#h|C?+#16S{Jur5Ru{kz`eV;rq zurIJr*uk*{=8|#809*INa#nCvTgMwJ1?8CBQ-V;t;ycO}hW#KYT)E8vQbs_Oxmo?S;s-J`*MvV33%u+K&G3;a6naUAUNn+{^lK=fa z3WMgRhufM2#?;3&E2%+uvdsmP^RDZ~ae|Gj=+UJrgpOm^Hgp^6y_7Gd9s80>9{(PP zqERL_tYOWnSk??Nt@Q6N>u*xbge!%jK`htGWCoxs}O_UmSRIx%Lm>84Do* literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..defc98433883483e104f01a4554166b6016b23f5 GIT binary patch literal 6262 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8327a8ef62d30589269ed50703563dc8d50c2ae5 GIT binary patch literal 1655 zcmZux&5qkP5GM6+S>A58MY@}!fqDo67qy(UhxSku1>B%T5p027GzT?-Ad9rEtR!kl zY8PI}C+E-?=si954f-s+_S9Dh3Zz5X*>!@@=4fU(Gvs`nAsY;Q1mo=Y3Hif8=pQZY z4hw|uVTubN1QA@ISbvQImqu)0&6|Z;TCvsfR$-S;>~y?cxTP0+WiRe^vQzkFKkk=7 z9CWf<49dND46|8lO7&UBX)5WiE}3yw zCV3@fS`?H((BP8iV8a?&H!{c zIK+Kn#XaIdDm@iU^qID&zWVwJ<@szGUhf`m4=ch&dO^dCm31ofX+c9mYg!RnWjPhm z)onlQ#=V-edH5TvWzH(`Ou1W5St*|j7T%H>%ueCJ?+Wx91O@dpu_1YdWj?fw||NQWL&^oYs=Pe&+ z>$CUNT=}d1DgaN22%bUfxBWGg%K4Y)_gh>1)H*ON{8KWiGU+`WdTcMV?751hDv=W-_VLlJY$r#J|4yrSgF9mQ-JJ+k+?*VEGI2 zLok2!_xO_WGXXnOF(#=@N3@#f6@@yh=A$WNGE2*P{NUjzuOw%rfsI);l5F&@@g~rM z)$fT@Co{tZ%b(=NkmGL_8EwH!n)&6dOMG*3M z=qoSjP)ic!CrJrO7Zms)NzR+J&`^WqCJA8~Fm@y0wcrMvg6qCfrjT5j8m>E9r(xb9 zM_Sa6=srxL%fv$#wv4-GryYK%+=9*F3g*g#=G0ZN39cNutU`TtCF>Jx1_q$wq(~q2i_(-?d~lW6@sasIO)1OS literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cca3433e17705f8c03c7f6b2ab889d4123c79dee GIT binary patch literal 3222 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..29f122e49eaf1c4704a1636e7d82c62407007633 GIT binary patch literal 6771 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 b#{a6dXjh%Za(#Yr=E7X{Y~8E-XU_Z||8wlG literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b3c3666eb376833a57a591a9afd5262eb5e31f41 GIT binary patch literal 4069 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c14b17bed91c94a4e9d7326ef06412ac5392ee25 GIT binary patch literal 1395 zcmZux&2HQ_5GFebX$_-k3PUi^gAco#v_Ma35Woo90!2_@`-AEt$RaH(mPm!9 z?Ce5&sdMPD_o9G(>=X1|cmCeo$Xa#O%l@Eq@uN-_`OZ5pbnF;xBV)r2gv}VFA)n^_!_a0 z`&T3xvS@~m27g0TbcAj2Lsqq1gGIk7wSjkdEbBTG%$c+AkB^_tW?+ui-e*clmAk{+ z62RsuEd41cjuOmJ;xU{M<|UMo#AlQT%;zDG?gJb?I0Z;7dQAb&0N@Pm&R4u@)^{xS zXJ_&`-Lr`~gPpF@Au4LNj!Ux}YN$Sbfp? zU2uh$AtPPz8)Ec#Qs8COh3fMzx`t%CaOJ&$nwgLV*HIVU;4Azy?r48<&<$P;u7@{$ zbRZ#ot}x&_B6fF^amvcv*gLu6nc?Z$YxfFnQeD<%m8p$WFYdMCT*ynYp({RogAW(? z>TG_(gCQp(-)xfD+fup=;smN+>{Q^2rTT<)7 zhHD&uAoUR(dh_S>QmS*^WI5MUmYHnKMNtaQ;ih7IBBjZ*x|u$FG=`g%WNq#mVQl31 z_Q$J0XR>)moT@zK`8==ql=1O@o2opSHgj_(#b=X852v~`d<;m=vjV^Xebcw}O*iyS zUGkG=Zi#Bedys)X0JVp`VC0Q(guQ^4CczSIlqHU* zkDbr)yQLnuZ3xO0ORvU-0y^p)c)h^nZvCNr&uMrK^ETI|FBN8+z?zMAj8>3T3*!23KLdK*1n5%t8)k#;>iLL=;mAK^Xn EFXrcb8~^|S literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ec7b67abffdc95953e8d5bed4ac45876f33621df GIT binary patch literal 4718 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 i*GiPHQl^_*YvdpK;q>Tb4* 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 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") + wheels_cache_location = self._cache_dir(options, "wheels") + http_cache_size = filesystem.format_directory_size(http_cache_location) + wheels_cache_size = filesystem.format_directory_size(wheels_cache_location) + + message = ( + textwrap.dedent( + """ + Package index page cache location: {http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Wheels location: {wheels_cache_location} + Wheels size: {wheels_cache_size} + Number of wheels: {package_count} + """ + ) + .format( + http_cache_location=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("Nothing 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 not files: + return + + results = [] + for filename in files: + results.append(filename) + + logger.info("\n".join(sorted(results))) + + 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 += ' for pattern "{}"'.format(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]: + http_dir = self._cache_dir(options, "http") + return filesystem.find_files(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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/check.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/check.py new file mode 100644 index 000000000..3864220b2 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,53 @@ +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, +) +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() + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/completion.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 000000000..c0fb4caf8 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,96 @@ +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": """ + function _pip_completion {{ + local words cword + read -Ac words + read -cn cword + reply=( $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$(( cword-1 )) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null )) + }} + compctl -K _pip_completion {prog} + """, + "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} + """, +} + + +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.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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/configuration.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 000000000..c6c74ed50 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,266 @@ +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 name + - set: Set the name=value + - unset: Unset the value associated with name + - debug: List the configuration files and values defined under them + + 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 name + %prog [] set name value + %prog [] unset name + %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.") + + try: + subprocess.check_call([editor, fname]) + except subprocess.CalledProcessError as e: + raise PipError( + "Editor Subprocess exited with exit code {}".format(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 = ( + "Got unexpected number of arguments, expected {}. " + '(example: "{} config {}")' + ).format(n, get_prog(), 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/debug.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 000000000..d3f1f28de --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,202 @@ +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 import __file__ as pip_location +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]: + vendor_txt_path = os.path.join( + os.path.dirname(pip_location), "_vendor", "vendor.txt" + ) + + with open(vendor_txt_path) 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) # type: ignore + + +def get_module_from_module_name(module_name: str) -> ModuleType: + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower() + # PATCH: setuptools is actually only pkg_resources. + if module_name == "setuptools": + module_name = "pkg_resources" + + __import__(f"pip._vendor.{module_name}", globals(), locals(), level=0) + return getattr(pip._vendor, module_name) + + +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 not version: + # Try to find version in debundled module info. + 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" + " be {})".format(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_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 = "Compatible tags: {}{}".format(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 = ( + "...\n[First {tag_limit} tags shown. Pass --verbose to show all.]" + ).format(tag_limit=tag_limit) + logger.info(msg) + + +def ca_bundle_info(config: Configuration) -> str: + levels = set() + for key, _ in config.items(): + levels.add(key.split(".")[0]) + + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/download.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/download.py new file mode 100644 index 000000000..233b7e983 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,140 @@ +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.req.req_tracker import get_requirement_tracker +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.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, + ) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_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, + 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) + if downloaded: + write_output("Successfully downloaded %s", " ".join(downloaded)) + + return SUCCESS diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/freeze.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 000000000..5fa6d39b2 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,97 @@ +import sys +from optparse import Values +from typing import 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 + +DEV_PKGS = {"pip", "setuptools", "distribute", "wheel"} + + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/hash.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 000000000..042dac813 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/help.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/help.py new file mode 100644 index 000000000..62066318b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/index.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/index.py new file mode 100644 index 000000000..9d8aae3b5 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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. + """ + + 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, + use_deprecated_html5lib="html5lib" in options.deprecated_features_enabled, + ) + + 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( + "No matching distribution found for {}".format(query) + ) + + formatted_versions = [str(ver) for ver in sorted(versions, reverse=True)] + latest = formatted_versions[0] + + write_output("{} ({})".format(query, latest)) + write_output("Available versions: {}".format(", ".join(formatted_versions))) + print_dist_installation_info(query, latest) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/install.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/install.py new file mode 100644 index 000000000..34e4c2f84 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,771 @@ +import errno +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from typing import Iterable, List, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +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.format_control import FormatControl +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 +from pip._internal.req.req_tracker import get_requirement_tracker +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.distutils_args import parse_distutils_args +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + 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 ( + BinaryAllowedPredicate, + build, + should_build_for_install_command, +) + +logger = getLogger(__name__) + + +def get_check_binary_allowed(format_control: FormatControl) -> BinaryAllowedPredicate: + def check_binary_allowed(req: InstallRequirement) -> bool: + canonical_name = canonicalize_name(req.name or "") + allowed_formats = format_control.get_allowed_formats(canonical_name) + return "binary" in allowed_formats + + return check_binary_allowed + + +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( + "-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" + ), + ) + + 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.install_options()) + 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()) + + 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: + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + cmdoptions.check_install_build_global(options) + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_dist_restriction(options, check_target=True) + + install_options = options.install_options or [] + + 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, + ) + wheel_cache = WheelCache(options.cache_dir, options.format_control) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + + # 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 + + reject_location_related_install_options(reqs, options.install_options) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_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 + ) + + 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) + + check_binary_allowed = get_check_binary_allowed(finder.format_control) + + reqs_to_build = [ + r + for r in requirement_set.requirements.values() + if should_build_for_install_command(r, check_binary_allowed) + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + build_options=[], + global_options=[], + ) + + # If we're using PEP 517, we cannot do a legacy setup.py install + # so we fail here. + pep517_build_failure_names: List[str] = [ + r.name for r in build_failures if r.use_pep517 # type: ignore + ] + if pep517_build_failure_names: + raise InstallationError( + "Could not build wheels for {}, which is required to " + "install pyproject.toml-based projects".format( + ", ".join(pep517_build_failure_names) + ) + ) + + # For now, we just warn about failures building legacy + # requirements, as we'll fall through to a setup.py install for + # those. + for r in build_failures: + if not r.use_pep517: + r.legacy_install_reason = 8368 + + 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, + install_options, + 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) # noqa + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + + 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 == "2020-resolver" + 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 = ( + "{name} {version} requires {requirement}, " + "which is not installed." + ).format( + name=project_name, + version=version, + requirement=dependency[1], + ) + 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 == "2020-resolver" 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 reject_location_related_install_options( + requirements: List[InstallRequirement], options: Optional[List[str]] +) -> None: + """If any location-changing --install-option arguments were passed for + requirements or on the command-line, then show a deprecation warning. + """ + + def format_options(option_names: Iterable[str]) -> List[str]: + return ["--{}".format(name.replace("_", "-")) for name in option_names] + + offenders = [] + + for requirement in requirements: + install_options = requirement.install_options + location_options = parse_distutils_args(install_options) + if location_options: + offenders.append( + "{!r} from {}".format( + format_options(location_options.keys()), requirement + ) + ) + + if options: + location_options = parse_distutils_args(options) + if location_options: + offenders.append( + "{!r} from command line".format(format_options(location_options.keys())) + ) + + if not offenders: + return + + raise CommandError( + "Location-changing options found in --install-option: {}." + " This is unsupported, use pip-level options like --user," + " --prefix, --root, and --target instead.".format("; ".join(offenders)) + ) + + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/list.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/list.py new file mode 100644 index 000000000..57f05e008 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,361 @@ +import json +import logging +from optparse import Values +from typing import TYPE_CHECKING, Iterator, 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] + + +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", + ) + + 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, + use_deprecated_html5lib="html5lib" in options.deprecated_features_enabled, + ) + + def run(self, options: Values, args: List[str]) -> int: + if options.outdated and options.uptodate: + raise CommandError("Options --outdated and --uptodate cannot be combined.") + + 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 dist.latest_version > dist.version + ] + + def get_uptodate( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version == 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 + ) -> Iterator["_DistWithLatestInfo"]: + 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(map(lambda x: "-" * x, 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/search.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/search.py new file mode 100644 index 000000000..03ed925b2 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/show.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/show.py new file mode 100644 index 000000000..d5540d68b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,178 @@ +import logging +from optparse import Values +from typing import 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 + requires: List[str] + required_by: List[str] + installer: str + metadata_version: str + classifiers: List[str] + summary: str + homepage: str + author: str + author_email: str + license: str + entry_points: List[str] + files: Optional[List[str]] + + +def search_packages_info(query: List[str]) -> Iterator[_PackageInfo]: + """ + 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_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 "", + 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", ""), + author=metadata.get("Author", ""), + author_email=metadata.get("Author-email", ""), + license=metadata.get("License", ""), + entry_points=entry_points, + files=files, + ) + + +def print_results( + distributions: Iterator[_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) + 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()) + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 000000000..bb9e8e6a3 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,105 @@ +import logging +from optparse import Values +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +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 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.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}")' + ) + + 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() + + warn_if_run_as_root() + return SUCCESS diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/wheel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 000000000..d5b20dc9f --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,178 @@ +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.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import get_requirement_tracker +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/ + + Requirements: setuptools>=0.8, and wheel. + + 'pip wheel' uses the bdist_wheel setuptools extension from the wheel + package to build individual wheels. + + """ + + 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.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.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: + cmdoptions.check_install_build_global(options) + + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + wheel_cache = WheelCache(options.cache_dir, options.format_control) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_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) + + # 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/configuration.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/configuration.py new file mode 100644 index 000000000..a8092d1ae --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/configuration.py @@ -0,0 +1,366 @@ +"""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. " + "Perhaps you wanted to use 'global.{}' instead?" + ).format(name) + 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.""" + try: + return self._dictionary[key] + except KeyError: + raise ConfigurationError(f"No such key - {key}") + + def set_value(self, key: str, value: Any) -> None: + """Modify a value in the configuration.""" + 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.""" + self._ensure_have_load_only() + + assert self.load_only + if key not in self._config[self.load_only]: + raise ConfigurationError(f"No such key - {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)) + + with open(fname, "w") as f: + parser.write(f) + + # + # 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. + """ + # SMELL: Move the conditions out of this function + + # environment variables have the lowest priority + config_file = os.environ.get("PIP_CONFIG_FILE", None) + if config_file is not None: + yield kinds.ENV, [config_file] + else: + yield kinds.ENV, [] + + config_files = get_configuration_files() + + # at the base we have any global configuration + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user configuration next + should_load_user_config = not self.isolated and not ( + config_file and os.path.exists(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] + + # finally virtualenv configuration first trumping others + yield kinds.SITE, config_files[kinds.SITE] + + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 000000000..9a89a838b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..680a73f02e22f054e7159d0ecb25b43a13c128bd GIT binary patch literal 885 zcmaJ<&2H2%5Vn(SlD6AQthgctiAxUIwBo=8RiGjyE*!cCq+B8=p4~O;{M7bRE$R&p zyb5o@bL7g2SKt7Qvn&k@s-qdtj3+an=W}y>d`NJuK3(w4CFHAhhRZ|e8H#?1iW5#H zsc1&2wH@hHZszv3E4^xzje6UYeidW^+9L?K4|MMFfQKKwEaV3>5+8oUS|q03{pW=? zik0Stz+Dt;BbplHlUcJ?CG17-y;%atz2M|ktqqg%60X)lK?Swxj>I;WE4b=>1!k@4 zlG>iXm$e;~3l#kb)eU(|RAA^0`9NpZbJU4(x85!q)Avs<`&v3;(GW&7Z&YNK5G}+z zsH1-o#ad0S}NwEw9i#T?2_DIw*M+&WSeX}dAYrhYs< zJ59APkRXy3TOgQLv}uk_LDfvAe88Gcb370x&!_FCiz~K*e0ZMYj4+|+%JQ-!E5HkD zdu!hhsqcm~bk!K$*YQCYVY}&{cGF=wJuR39Wl8KF-j$~NzxtWqnRiP@_TcY&2zH9H p1FuHdvxnG|HBd(uO!%}yLL{8qH>M}3#$-(G=eQ1aemc&{k6(;12lW5| literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4aa16fac16fa3ff6b8ff41f832b0165e7e324cc6 GIT binary patch literal 1942 zcmaJ?&vP3!6qa^3w&U1IN<*hmI4|oxT)6QEz%l;=f5~1sapuMWcu)2^b_kV6^3#teeeZjpw7TE#5-2A>9`TDN0;BH6VZVctSnTXA0WD8GLoVnS5J;592mC~p7lZAUcj88>8udItRn8p*F zj=6Bc%w++c&F$lY&4oV~j=l#N!8vEe2QJRFF(P;BYyo@WS?FR|l~cnwF0*2=1P!NR zfaM~4Ha?YZ7F*$}awC=xSJ;@cx&hc6e-)=R8_s@HUAcxmq=RuTQ58%zo2($*LqHg< zg$Q9IW_5vdnW`8%2}4|z0#sJyQrN+p$jiam0hjT5hGU&Q1$tufywnz8!;7qs3^Q?I!+y&!-6Ha^wn!~!kCjuFmK6jKm_FaUa( zY3*`0FUR*E3}xYr=2eb-4xJueUA)+6rps&gQF0>kvs{TW7sJbrlG(TfG|F3uG^^LBd4&gDQIIo zg8C;Cg}nYiO$SV%>E^L^kLRWG4~XDj7^C6EF*`78c2~_FSoJ$o;nF6b={nT+VA^8x zTEY3~T4?|4TDKy;Q}m5#=MQq71(!6 zBT8n(2I5s5F?cMXN9P}13;m7mgI$y%J|AgXchhtZ+EHlt()3xy)N-bsrd;QsRLr2y zXC1OEuXow<*#uf=nj4JM+{6aitRqmSGPls|FXfyIrC^`S7<;%H^JDOngju!kdLyE@ z_M&K?MqxnV_m8i^!QXxzd_cA_mHvthw#^-Isow`Nj#gqEVP2k(mP$<*Y4W&|JDUp| zO^i^mK8E_n<_fs=KJ>bM`0(g!IM;(%i^9j_Ro3}*!Qp3^Z;R6JkY3QEJ$gI*7qizZ A!~g&Q literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b608931fba593f44ab1d6546458229e2e4f52c5f GIT binary patch literal 1319 zcmaJ>&2AGh5Vm(WKMhF>QmBLk(u!LS*`+E64hR*BKyZi&txcQ80STBm~3G3Fx$pH@i5FL;)6=duPI(CHv-qaDU z@Xow(192b*XbDHOrcKcnTbON&7NY8uw_l~&@Hhsse%12)E#wL`q(=KZ_2sI_&uf%H zr{kl&pG)nF478tS#!mqRRxfjCGM#2Bsn_PX$YTXuEUM!s z0I45kNnRKbL6s_-3QVEWh$6?8*%+lFhdA_Ibf3r(IYRmc)t%QU(JB2*>l~7FM$26b z58u2%ri&{!1E+KmSlQKxM^7aPHd)})dm7^DSE6iV{QMSv$kee$;-Evp4Ie@}lgL%c zbT*u1nTdFkhY$9KGBqj_MPzvoO*Z_yxISo}n9yvDi-96^3DtlOTci8h^-g)>?*R@RRf*39xxepkcU{#8|s2CdRZF@sAn zgLRE`Fu{KUWl5Izub0`^{}@~}1gpiUf$d%|T!~-fx3D(hE!&T4{!gr2x{a<&y0lCC F?jI$dcd!5e literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b86f11f792ac52916f7403e2d668db6c4f500073 GIT binary patch literal 4531 zcma)ATW{RP73K`NT#CC|ODoy65+`Bp*1;CmuH7^j6o#87u>6ObH4e`nN8>C zT?3wbfBTp{K5H1?VWs+5Q27v&d;%FW7>SKOzG+Mbv`+_S-yB$di(s1>*9Laq)@3WM z51hWE%e8oJ;Pzczw&TX2*>CD{J)R%5`Yl~{;xmJV{sJ+$F}K*H5@|BvNe*qx zzuu6!2*Ui62;R}gFpts%+81vpG7sW7!1_%gQUQ(gcY^RMt#`voKH!|BD6{Lj z9z36Ia}Ne)fzT@TWX>~hGZkLG4YR$3b0)n3&jS|ZLD}JDg~Fwmr``tFg0?tlH^@1= z;&D(h7v4}t$(DEL<{j_dYwvp?vS@%lFXmf8xa-}OJRfG=Y}eykTYi*mrgytqn6d@* zh$JMS|MI~yh4e8biHBfp>=+YrV5}QY$y$dhQ}FxB+2Xm68wDI#lE<4*4Y3G=pMBeV zn2LK6md<4lceBcqtq3+KV415MX_|+@AnRSdwi+e5NZBw%jIHMB>dC={pzSm}MNS-T z@^Ckdd5`hcqe>iY^s?Q2J5Ao{Uc1_pQO;LOCHAr?>%s2fbR%hR$q*iIOv5kSv#5{=V)I|$kYAH?w=4ZQ^NOyRc z`*}Kul{=K&&v*v#QRn;urQ9#px&a8}2~%$ti{{MdEXt8xd>JHBzUznEJiMotK(U%J zrt<(IQZ1CSN_}=Lu>i{u%b1})RZDKC!FGha=NeEeN*?EJJy&$ zKLO$}zXH}TTEQYX*FGSB2FvYPV7pbYQ=LKSfWjzC+{&HF9Mj{lMb~UrpSXD=Z|3u3 zYoF}X1A={MO-vnUP1Vx}T*SfdsIBefF`j{$coIfjK7|u`4-hxHI3x8O4kB9En9dP$mlGUH*i zx$6a9A#4hsD_)Q=4^E#K1__Sa1kd7OC-R!+raVn!>7ma^hq;GesOd?aR)O30Y#sh| zg;JoM)La2mo;*;?B?7B^P;HIRa+cn+I$Iq9XJCrq1z!Xa9EC7VHsdJFrLyC6Yl{n2 ze;9}a=u25UX_P2)5M;^%HW$j4TBn^_1=v5vg*8ekIITV?lzal-0s(vtlKdHDj@cwG zb%;akL&vm7;gGd=3tR85aEZO>&~P4m*QCvg=72n3sY>lNxK=Zbf5C_3{B z6JI!O&E<@B7%LIXE?^bV3izFA;aS_h_-xcW4Y8*vw3PS~BikTdGx9bR3fzjee$(PT zF%JwZp*P&4iG}_UOL~kwsgHq0XDs|S^g4`8Sy*%Q&Kxkfh5XGdWN?kj+S=$m22xW@ z9HUufC#e_&@o4$9Uhx*Jv*Q-@<&@h}=Q1t^QGVn_HG-sieM--=;+)G#;sX#R-os48 z{wG+vjM*i~s??+089t?0#SvZ1j+;`v25nzJk{2MeYxK~j^o3*6=WflRZQz=w#<6=i zx_p||N}4_Tlv=2eosRsEx4?0c$3h*XZU>S!=+B|R2nIGgXjn1^Cpsx&e;wI<+E?I0a|>PK6VkEQM*a140JhQWP<4RXO+Bu#$evd&Q2Q9~aajen(d*s&rT3U| z8Hy;wXmqbTqF20^4kJcr5)+!?udvuJnt&*b49GWtmofdu_^0_tV7&Xlrr@XP=$scx zaHC;5$RO^AsHyn=nl=gC)oAysnwu(=Gi5&vAUtI!45sF;W7PjB6E{Zqb)-G|7t63| z^AL>m-f2cU;mNw!<1`Fnd80cM1z&GeR3vVIRMn^`p;Lpv6%n2nl-q#;;tFPXZ7X4i z)5NbJQ}e}OA1{*N^X55T8zENHSHBZm((uh-mgY@r(L>8ZKj#vg+Ar+qjx)OSe{8GM zR*vr{!GQa|a(#aQ*9nMBebw~+`@}?O58^6y^R^Fu!57BZk2PrFzgMynrg&2#xiMA^fATHrOW330CDvM7XSbN literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e1903ee8f92c37b533c2466257d889c071e5848 GIT binary patch literal 1686 zcmaJ?&5k2A5N>yOekNpgGRtTM0wjxDfTVW?N3>d4v`A<*LM#$eb7(p3%A|MP?Tqd0 zkZ8G(J@6ddcnDs^S5CYF2cXJLb`n^y=P&pw%1XGG~ftMG3%Te(U%xPSbmC@;kY zJgOQAW}NuZr^3R1kUx1;DX?qnp#Ek7p!}T+aK$w(3%QrAr0?&KE;St2eVry-T^ z8gMJqlnfi$jTjfi=0lwJKAPvz)95L){V$N!E&G85Kei+EWAa_nMr_&l%%#tn>$DMD zwvCa$Wb@NwEu`gc0lWq$q;P`IjjqE^+vgmq;8o)^M%3D@u_ejd;t-5bEcL#R7oHZ5 zuPg#lxeo#u2GqK0E;vF!AKOc<&C47Hu2u*~jX1X`P~y#dPrwmwh@s1RW_F+DPb@i_LW1vU4b zQ0LE)Ilf>Kyy(c%~Zo=rnM_Yz0B_3n;=|9%T-B~Pn@3oGq_E( z(92ikQPmvEb*UheFu8G5HOrQ3x6sXp(|dO_TRE7JVDKW@Y*{U{0zV3-5h~kPrp-bN z)8*Q~Nq1<+^1(H_josNkno(!OhU_-mydQAf=XCm?r+s%GZn8g_ttusp%4!wFeqJV+ zb2n&BVh-XZ70U=E$j$?{tqP=){JoF-)S!q9Mt`?o3}B63>vA;v}G1$HN{s`*`P|#L&T2e z=>g5t8NQ*0F!t{rh7mX4{hbg{`1I(urQbOW+)1PD@a9HP3$N None: + super().__init__() + self.req = req + + @abc.abstractmethod + def get_metadata_distribution(self) -> BaseDistribution: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + raise NotImplementedError() diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/installed.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 000000000..be5962f98 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,20 @@ +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. + """ + + 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 + ) -> None: + pass diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 000000000..bdaf4033c --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,127 @@ +import logging +from typing import Iterable, 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`. + """ + + def get_metadata_distribution(self) -> BaseDistribution: + return self.req.get_dist() + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: 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) + + 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) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 000000000..340b0f3c5 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,31 @@ +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. + """ + + 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 + ) -> None: + pass diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/exceptions.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/exceptions.py new file mode 100644 index 000000000..97b9612a1 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,658 @@ +"""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 re +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, 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 + + +# +# 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 "None {} metadata found for distribution: {}".format( + self.metadata_name, + 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: Response = None, request: 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 + or user-supplied ``#egg=`` value. + """ + + 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: + template = ( + "Requested {} has inconsistent {}: " + "filename has {!r}, but metadata has {!r}" + ) + return template.format(self.ireq, self.field, self.f_val, self.m_val) + + +class LegacyInstallFailure(DiagnosticPipError): + """Error occurred while executing `setup.py install`""" + + reference = "legacy-install-failure" + + def __init__(self, package_details: str) -> None: + super().__init__( + message="Encountered error while trying to install package.", + context=package_details, + hint_stmt="See above for output from the failure.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + +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.original_link + # 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 " {}:\n{}".format(self._requirement_name(), 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( + (" Expected {} {}".format(next(prefix), e)) for e in expecteds + ) + lines.append( + " Got {}\n".format(self.gots[hash_name].hexdigest()) + ) + 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}" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 000000000..7a17b7b3b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3226617ffd221aad7bfeb4fe02e10308a3f845df GIT binary patch literal 312 zcmZutu}%Xq49#`nRH-u?>e?Z7D^`S%m{?fYSfVsBSL@O^N`m0{0)B-*;9I)#7fkq$ z0few*ThFqe-ZL*2b0yKgUi&lYA0zl3jesl3(n|5_Uis!ut!6K$H__wsl48YdT_ui7 z#~$amtLAuOjAv)eo60k}n#$)pJaO(zvJMM)Tdl^}QAErXJH2DB&K?qMwputd`^Sk? zSJr=*zlrvo{^1GqfNpRB!K3~Gfp(CFy61Sl-fo~!MJ-Bt+liP&3Cv_9+5j~A0wV*e V#;ntDY%dNXC*bAyi!wTD)fZmFU*!M* literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..488d33238d32e4a0f0170b6f3a6780a94a881815 GIT binary patch literal 18150 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/collector.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/collector.py new file mode 100644 index 000000000..e6e9469af --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/collector.py @@ -0,0 +1,610 @@ +""" +The main purpose of this module is to expose LinkCollector.collect_sources(). +""" + +import cgi +import collections +import functools +import itertools +import logging +import os +import re +import urllib.parse +import urllib.request +import xml.etree.ElementTree +from html.parser import HTMLParser +from optparse import Values +from typing import ( + TYPE_CHECKING, + Callable, + Dict, + Iterable, + List, + MutableMapping, + NamedTuple, + Optional, + Sequence, + Tuple, + Union, +) + +from pip._vendor import html5lib, requests +from pip._vendor.requests import Response +from pip._vendor.requests.exceptions import RetryError, SSLError + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.link import Link +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.filetypes import is_archive_file +from pip._internal.utils.misc import pairwise, redact_auth_from_url +from pip._internal.vcs import vcs + +from .sources import CandidatesFromPage, LinkSource, build_source + +if TYPE_CHECKING: + from typing import Protocol +else: + Protocol = object + +logger = logging.getLogger(__name__) + +HTMLElement = xml.etree.ElementTree.Element +ResponseHeaders = MutableMapping[str, str] + + +def _match_vcs_scheme(url: str) -> 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 _NotHTML(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_html_header(response: Response) -> None: + """Check the Content-Type header to ensure the response contains HTML. + + Raises `_NotHTML` if the content type is not text/html. + """ + content_type = response.headers.get("Content-Type", "") + if not content_type.lower().startswith("text/html"): + raise _NotHTML(content_type, response.request.method) + + +class _NotHTTP(Exception): + pass + + +def _ensure_html_response(url: str, session: PipSession) -> None: + """Send a HEAD request to the URL, and ensure the response contains HTML. + + Raises `_NotHTTP` if the URL is not available for a HEAD request, or + `_NotHTML` if the content type is not text/html. + """ + 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_html_header(resp) + + +def _get_html_response(url: str, session: PipSession) -> Response: + """Access an HTML page 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, to avoid downloading a large file. + Raise `_NotHTTP` if the content type cannot be determined, or + `_NotHTML` if it is not HTML. + 2. Actually perform the request. Raise HTTP exceptions on network failures. + 3. Check the Content-Type header to make sure we got HTML, and raise + `_NotHTML` otherwise. + """ + if is_archive_file(Link(url).filename): + _ensure_html_response(url, session=session) + + logger.debug("Getting page %s", redact_auth_from_url(url)) + + resp = session.get( + url, + headers={ + "Accept": "text/html", + # 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 HTML + # or not. However we can check after we've downloaded it. + _ensure_html_header(resp) + + 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: + content_type, params = cgi.parse_header(headers["Content-Type"]) + if "charset" in params: + return params["charset"] + return None + + +def _determine_base_url(document: HTMLElement, page_url: str) -> str: + """Determine the HTML document's base URL. + + This looks for a ```` tag in the HTML document. If present, its href + attribute denotes the base URL of anchor tags in the document. If there is + no such tag (or if it does not have a valid href attribute), the HTML + file's URL is used as the base URL. + + :param document: An HTML document representation. The current + implementation expects the result of ``html5lib.parse()``. + :param page_url: The URL of the HTML document. + + TODO: Remove when `html5lib` is dropped. + """ + for base in document.findall(".//base"): + href = base.get("href") + if href is not None: + return href + return page_url + + +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 _clean_link(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)) + + +def _create_link_from_element( + element_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 = element_attribs.get("href") + if not href: + return None + + url = _clean_link(urllib.parse.urljoin(base_url, href)) + pyrequire = element_attribs.get("data-requires-python") + yanked_reason = element_attribs.get("data-yanked") + + link = Link( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + ) + + return link + + +class CacheablePageContent: + def __init__(self, page: "HTMLPage") -> 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: "HTMLPage", use_deprecated_html5lib: bool + ) -> Iterable[Link]: + ... + + +def with_cached_html_pages(fn: ParseLinks) -> ParseLinks: + """ + Given a function that parses an Iterable[Link] from an HTMLPage, cache the + function's result (keyed by CacheablePageContent), unless the HTMLPage + `page` has `page.cache_link_parsing == False`. + """ + + @functools.lru_cache(maxsize=None) + def wrapper( + cacheable_page: CacheablePageContent, use_deprecated_html5lib: bool + ) -> List[Link]: + return list(fn(cacheable_page.page, use_deprecated_html5lib)) + + @functools.wraps(fn) + def wrapper_wrapper(page: "HTMLPage", use_deprecated_html5lib: bool) -> List[Link]: + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page), use_deprecated_html5lib) + return list(fn(page, use_deprecated_html5lib)) + + return wrapper_wrapper + + +def _parse_links_html5lib(page: "HTMLPage") -> Iterable[Link]: + """ + Parse an HTML document, and yield its anchor elements as Link objects. + + TODO: Remove when `html5lib` is dropped. + """ + document = html5lib.parse( + page.content, + transport_encoding=page.encoding, + namespaceHTMLElements=False, + ) + + url = page.url + base_url = _determine_base_url(document, url) + for anchor in document.findall(".//a"): + link = _create_link_from_element( + anchor.attrib, + page_url=url, + base_url=base_url, + ) + if link is None: + continue + yield link + + +@with_cached_html_pages +def parse_links(page: "HTMLPage", use_deprecated_html5lib: bool) -> Iterable[Link]: + """ + Parse an HTML document, and yield its anchor elements as Link objects. + """ + + if use_deprecated_html5lib: + yield from _parse_links_html5lib(page) + 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 = _create_link_from_element( + anchor, + page_url=url, + base_url=base_url, + ) + if link is None: + continue + yield link + + +class HTMLPage: + """Represents one page, along with its URL""" + + def __init__( + self, + content: bytes, + 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.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_page_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_html_page(response: Response, cache_link_parsing: bool = True) -> HTMLPage: + encoding = _get_encoding_from_headers(response.headers) + return HTMLPage( + response.content, + encoding=encoding, + url=response.url, + cache_link_parsing=cache_link_parsing, + ) + + +def _get_html_page( + link: Link, session: Optional[PipSession] = None +) -> Optional["HTMLPage"]: + if session is None: + raise TypeError( + "_get_html_page() missing 1 required keyword argument: 'session'" + ) + + 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 += "/" + url = urllib.parse.urljoin(url, "index.html") + logger.debug(" file: URL is directory, getting %s", url) + + try: + resp = _get_html_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 _NotHTML as exc: + logger.warning( + "Skipping page %s because the %s request got Content-Type: %s." + "The only supported Content-Type is text/html", + link, + exc.request_desc, + exc.content_type, + ) + except NetworkConnectionError as exc: + _handle_get_page_fail(link, exc) + except RetryError as exc: + _handle_get_page_fail(link, exc) + except SSLError as exc: + reason = "There was a problem confirming the ssl certificate: " + reason += str(exc) + _handle_get_page_fail(link, reason, meth=logger.info) + except requests.ConnectionError as exc: + _handle_get_page_fail(link, f"connection error: {exc}") + except requests.Timeout: + _handle_get_page_fail(link, "timed out") + else: + return _make_html_page(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, + ) + 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_page(self, location: Link) -> Optional[HTMLPage]: + """ + Fetch an HTML page containing package links. + """ + return _get_html_page(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, + ) + 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, + ) + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/package_finder.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 000000000..223d06df6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,1004 @@ +"""Routines related to PyPI, indexes""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import functools +import itertools +import logging +import re +from typing import 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 + +__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 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[bool, Optional[str]]: + """ + Determine whether a link is a candidate for installation. + + :return: A tuple (is_candidate, result), where `result` is (1) a + version string if `is_candidate` is True, and (2) if + `is_candidate` is False, an optional string to log the reason + the link fails to qualify. + """ + version = None + if link.is_yanked and not self._allow_yanked: + reason = link.yanked_reason or "" + return (False, 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 (False, "not a file") + if ext not in SUPPORTED_EXTENSIONS: + return (False, f"unsupported archive format: {ext}") + if "binary" not in self._formats and ext == WHEEL_EXTENSION: + reason = "No binaries permitted for {}".format(self.project_name) + return (False, reason) + if "macosx10" in link.path and ext == ".zip": + return (False, "macosx10 one") + if ext == WHEEL_EXTENSION: + try: + wheel = Wheel(link.filename) + except InvalidWheelFilename: + return (False, "invalid wheel filename") + if canonicalize_name(wheel.name) != self._canonical_name: + reason = "wrong project name (not {})".format(self.project_name) + return (False, reason) + + supported_tags = self._target_python.get_tags() + if not wheel.supported(supported_tags): + # Include the wheel's tags in the reason string to + # simplify troubleshooting compatibility issues. + file_tags = wheel.get_formatted_file_tags() + reason = ( + "none of the wheel's tags ({}) are compatible " + "(run pip debug --verbose to show compatible tags)".format( + ", ".join(file_tags) + ) + ) + return (False, 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 (False, 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 (False, 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 (False, "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: + # Return None for the reason text to suppress calling + # _log_skipped_link(). + return (False, None) + + logger.debug("Found link %s, version: %s", link, version) + + return (True, version) + + +def filter_unallowed_hashes( + candidates: List[InstallationCandidate], + hashes: 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_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( + "{} is not a supported wheel for this platform. It " + "can't be sorted.".format(wheel.filename) + ) + if self._prefer_binary: + binary_preference = 1 + if wheel.build_tag is not None: + match = re.match(r"^(\d+)(.*)$", wheel.build_tag) + 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, + use_deprecated_html5lib: 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._use_deprecated_html5lib = use_deprecated_html5lib + + self.format_control = format_control + + # These are boring links that have already been logged somehow. + self._logged_links: Set[Link] = 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, + *, + use_deprecated_html5lib: bool, + ) -> "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, + use_deprecated_html5lib=use_deprecated_html5lib, + ) + + @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 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, reason: str) -> None: + if link 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", reason, link) + self._logged_links.add(link) + + 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. + """ + is_candidate, result = link_evaluator.evaluate_link(link) + if not is_candidate: + if result: + self._log_skipped_link(link, reason=result) + return None + + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=result, + ) + + 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, + ) + html_page = self._link_collector.fetch_page(project_url) + if html_page is None: + return [] + + page_links = list(parse_links(html_page, self._use_deprecated_html5lib)) + + 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( + "No matching distribution found for {}".format(req) + ) + + best_installed = False + if installed_version and ( + best_candidate is None or best_candidate.version <= installed_version + ): + best_installed = True + + if not upgrade and installed_version is not None: + if best_installed: + logger.debug( + "Existing installed version (%s) is most up-to-date and " + "satisfies requirement", + installed_version, + ) + else: + logger.debug( + "Existing installed version (%s) satisfies requirement " + "(most up-to-date version is %s)", + installed_version, + best_candidate.version, + ) + return None + + if best_installed: + # 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 + + logger.debug( + "Using version %s (newest of versions: %s)", + best_candidate.version, + _format_versions(best_candidate_result.iter_applicable()), + ) + return best_candidate + + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/sources.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/sources.py new file mode 100644 index 000000000..eec3f12f7 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,224 @@ +import logging +import mimetypes +import os +import pathlib +from typing import Callable, Iterable, Optional, Tuple + +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 _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. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._path = pathlib.Path(os.path.realpath(path)) + + @property + def link(self) -> Optional[Link]: + return None + + def page_candidates(self) -> FoundCandidates: + for path in self._path.iterdir(): + url = path_to_url(str(path)) + if not _is_html_file(url): + continue + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for path in self._path.iterdir(): + url = path_to_url(str(path)) + if _is_html_file(url): + continue + 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, +) -> 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, + ) + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 000000000..ac0c166e5 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,520 @@ +import functools +import logging +import os +import pathlib +import sys +import sysconfig +from typing import Any, Dict, Iterator, List, 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 _distutils, _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_prefixed_libs", + "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() + +# 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 # type: ignore + + 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 # type: ignore + + 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 # type: ignore + + 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]) -> Iterator[str]: + ldversion = sysconfig.get_config_var("LDVERSION") + abiflags: str = 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 + + 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 + + +def _deduplicated(v1: str, v2: str) -> List[str]: + """Deduplicate values from a list.""" + if v1 == v2: + return [v1] + return [v1, v2] + + +def _looks_like_apple_library(path: str) -> bool: + """Apple patches sysconfig to *always* look under */Library/Python*.""" + if sys.platform[:6] != "darwin": + return False + return path == f"/Library/Python/{get_major_minor_version()}/site-packages" + + +def get_prefixed_libs(prefix: str) -> List[str]: + """Return the lib locations under ``prefix``.""" + new_pure, new_plat = _sysconfig.get_prefixed_libs(prefix) + if _USE_SYSCONFIG: + return _deduplicated(new_pure, new_plat) + + old_pure, old_plat = _distutils.get_prefixed_libs(prefix) + old_lib_paths = _deduplicated(old_pure, old_plat) + + # Apple's Python (shipped with Xcode and Command Line Tools) hard-code + # platlib and purelib to '/Library/Python/X.Y/site-packages'. This will + # cause serious build isolation bugs when Apple starts shipping 3.10 because + # pip will install build backends to the wrong location. This tells users + # who is at fault so Apple may notice it and fix the issue in time. + if all(_looks_like_apple_library(p) for p in old_lib_paths): + deprecated( + reason=( + "Python distributed by Apple's Command Line Tools incorrectly " + "patches sysconfig to always point to '/Library/Python'. This " + "will cause build isolation to operate incorrectly on Python " + "3.10 or later. Please help report this to Apple so they can " + "fix this. https://developer.apple.com/bug-reporting/" + ), + replacement=None, + gone_in=None, + ) + return old_lib_paths + + warned = [ + _warn_if_mismatch( + pathlib.Path(old_pure), + pathlib.Path(new_pure), + key="prefixed-purelib", + ), + _warn_if_mismatch( + pathlib.Path(old_plat), + pathlib.Path(new_plat), + key="prefixed-platlib", + ), + ] + if any(warned): + _log_context(prefix=prefix) + + return old_lib_paths diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9de1fb4555feed304bf8eb6bdca1970054f22a0 GIT binary patch literal 12472 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 Q#*O?~K0lcs&rD|i4~8}9!~g&Q literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0755c18bd106b1940155e06348575bb4bf7c099c GIT binary patch literal 4740 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 PrRsm`OZADmb;sZxWo*IB^SH! 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..726e6340e0a9b66f9612823a63f0d8dcc0e1dde3 GIT binary patch literal 1622 zcmZux-EQPG6tSPgDt{3T9>(F1RU(sub-C(XQIAmW_lWPwbh=G-F4O z({{S_s(Zl=Jj2W-Z@{zomMdO?3*gx4(k`l_*ghvd$H(9IIilTeB50>S@6k`H2>oG< zyR8n!*YM^Vy61=@ic=JpBMz~(ozStP8@hJ%LeGwsumYo#R;RVFhE0r{)~AiIff1|C zo77w2aEW>I7OlXn%_}tve7x#blcGA3g3S zTuDKTSV5s(CA$A#TqYWe?4CSnGGy^APFbI_?yUjP_A`4%bA-MDx%&p>J`m7{dKHtL zr2SOH#O$2+2P9{`Y^EQMn2Icjkp(fjIpc~Uz%bFO$Tkdbv4p{46mMDj0VWDvBiS-M z&0Xb9DiklAE5tW1mu`G`UR?l}#tZ86J)~;0k4p6^Z(gU)0%KGv&_*};pEtpmFGE+wE7)-#;1>2B=kHckuA9}3B8Pioh%y&xN-px`lD&m6tU?~V7GWPI z3U0yN0R-{2!Nobyoo6pko*W*0d$jxg{)@w-??9~{C@s|u&}uCBFd3C)mGkI~$U9YA z?b_0plROgnMKqLT%8ZOZgY7K!z9T<``Szx63=1ABNS@0Mc(i9~xA4jLja^l<42TF< zfr;LKa_a#*5MflLKe*>h@Agko^5a`vViJ#81pgN8KR@0-iuQK*p6o~8JU!BNgR&t* z!ao@4`eA0oOj6K@lDZQ`gma-vg-4OqZ3*})1e)BY>^E0KZkQbYu7Y2}pirzNyuWJTa0`UmRciEsma$30QuDibL*PZ1}7cA`j I)AZKxzoP-ZRsaA1 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py new file mode 100644 index 000000000..2ec79e65b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py @@ -0,0 +1,169 @@ +"""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 + +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, Tuple, 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: str = None, + root: str = None, + isolated: bool = False, + prefix: 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: + # Typeshed does not include find_config_files() for some reason. + paths = d.find_config_files() # type: ignore + 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(dict(purelib=i.install_lib, platlib=i.install_lib)) + + if running_under_virtualenv(): + if home: + prefix = home + elif user: + prefix = i.install_userbase # type: ignore + 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) + + +def get_prefixed_libs(prefix: str) -> Tuple[str, str]: + return ( + get_python_lib(plat_specific=False, prefix=prefix), + get_python_lib(plat_specific=True, prefix=prefix), + ) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 000000000..5e141aa1b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,219 @@ +import distutils.util # FIXME: For change_root. +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 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 = distutils.util.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"] + + +def get_prefixed_libs(prefix: str) -> typing.Tuple[str, str]: + paths = sysconfig.get_paths(vars={"base": prefix, "platbase": prefix}) + return (paths["purelib"], paths["platlib"]) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/base.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/base.py new file mode 100644 index 000000000..86dad4a3a --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/locations/base.py @@ -0,0 +1,52 @@ +import functools +import os +import site +import sys +import sysconfig +import typing + +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: typing.Optional[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 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/main.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/main.py new file mode 100644 index 000000000..33c6d24cd --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 000000000..cc037c14f --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,62 @@ +from typing import List, Optional + +from .base import BaseDistribution, BaseEnvironment, FilesystemWheel, MemoryWheel, Wheel + +__all__ = [ + "BaseDistribution", + "BaseEnvironment", + "FilesystemWheel", + "MemoryWheel", + "Wheel", + "get_default_environment", + "get_environment", + "get_wheel_distribution", +] + + +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. + """ + from .pkg_resources import Environment + + return 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. + """ + from .pkg_resources import Environment + + return 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. + """ + from .pkg_resources import Distribution + + return 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. + """ + from .pkg_resources import Distribution + + return Distribution.from_wheel(wheel, canonical_name) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..47e983ecba93b80c1dd2cf5d4feaf855a19fc024 GIT binary patch literal 2378 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 UJec`b=3CRhFmr9DxTo}g0dl^fCjbBd literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..965019ffa2172498c8eec393efdf6a7cdfa7fcfb GIT binary patch literal 9948 zcmai4TW=gkcJ8k3p6R)8IJ}6uQPN11ER8Lab}mSw$c}8waL4f2ZsN^j#@mm1D8CWadIXyi$ z(%B)px~jS^r%s*ASEm?EO=S)I9)9+!_rI47RtRL(TdR?apTD~nv`HqJHASI%=j z)40$qRZ7i^m5V56yNcUzC}#d~i{%7&g<3tI9`8P&X6RC`S+P*r@V74Ed#fr@0@2)*;3AGRB{ zy=uD_ZDGnBk5=8~F-|F2^WuE9*&nL9;Wy-$5E-MK(#2P5p}dW?D*wR_bE7~tueBnz zcQ5c;k)Dprk9-xhXjOV{wE4SIg)t9X8^JwLpdF^ZPK+M?St#7X6F!4PvY=MPJJ?=n zd*;pfE&6Zkrs3JxE=Ola2(gJ>+5v}l@Y+g16G%Q)jW3^Tc2mN!D;p*UXz-dt@(C zXmN|0{uPpBFFX^*LP%RWGPNO2L-nQO*`BkJ@={*@1A2aV2S_7SW(i^dvvZ59lLLMD%SNk3gBCAWotQ4SCD=r@t+xI{zOJZ&79hsJxL z#Wo_bw`3YUVH%z3$nuCv`=@YkU4hi+0();Eo;A&5NEOyOZ*p{`NqS!WrvrmQ`}za*>_;a15e&2QIR~9qFq$ik(8|=Q?x0M@MTj* z1HQa~_PqbXESd#Vh*PHh)O{?zndH)Fr!g)OQyn}5Ns7Rou5lo`<{|!){jyXBjdX6$ zmkqDlfOQMiFQZ1SQZgYuv!k=cjc=eCZ(z~vl*TvkXyYRUlEYyFNfOB$KM`wp;#rTI zzmV)k)ek*iy_n2xo1Mk+xyKv+|MPAp!u#zL7YE}t;1)6UEljO`9ZBc>w@ln`sB>Xm z`Rypy`3z|(JCq|@KhBCVk`lq8^{SUBnb?=C+G$ned5D`aVW-9k8#XD=s0-ApM9D=Y zI$f=LLA_d4-8@w5MBx!Bip71Pq5_lr`0{A8` zCDW)Q?*fnXsl9JjT-0VHd{X~QD)vVBl9f65w7g8i8;RH(p>}GlmOT<`3tT&mcI=H% zQ{(gkt z=$%8&S@c_!=a{zh-UZa0=kYIWm$olrj*@qgXT9WI^Oocit%7@8=20(uS3Y$rSGXo# z-!tA-jPZDQ?AYu9{vGP?w|HNtlpH``FV&`w8;mF4G zo|EX1byj4{IwwXa9yl1Cfi3}Y2WoGO0J2E~lVOxHd%J;0YCBK?>tt5s<|cq2`~s zpPc=X8JVA%U9m6T7e6w3)(?#znotPr?5FN$=7BggZX5e%&wdXM-UbBNw@jnuzF>q) zyQXQ--}msmXSA*X9>9p~y$FEd03f6zr)zGfXymT*2~11R`PkVt(JH<7Tm3efD9zBp z?m9m;zOWcL^xN$kk-MFt5u$9@rZ>hBEHNoaOe&U`8qT@K8$rzjB9#E0!_!p)L^u6M zvQ=Wf^pPl`(HpAfhd`^N$G{upXSpqg)Jc(&AK4#rM{{_>Uqa#=UE_m=o=M{HnF0J}d;t@n zfM*Ukz;P%@#UlX`G55tEhz|u6)%x08RrBcmQ(CL1? z&JH(K70^a`lrRJ(o2uTXguHP%t?pC)cPJs4ug$8S8o-2@jNT_*>^x4H}MCR*vU_Dc;<~ z>4}7yK8;VOr&wx|VZTo;T1Yx)#uhu)=*Zl(Oj<9;Lpp9mYlhR?hPmmVYV19P+G0~i zaCz5IzlQcWhP;9ovjk^DI37OxvOw#?%TXN2>7PfABYweeK`#*e@~RK^Ao^j1xKAV8 zCtAoF3#Uk1Yl^3xrHS<%*YC)}24I48CRrBQ#hAgCqWXA8N!X8NaA6Q8V-NK?+VR%r z#e}CBZ}+XVsEB6b4Ym-oqi|al7L_7bF(cDS=@^cwkI?z|X@EyaI_!*-XxU2AkL<}9 ztRXhoczBOVDM_Xe%m_AYf9y=gvdw_|5?Vn3m+|85oD{pXA9C#OkEp?~BAKA2|9OlI zB7x9V9Z&c!k{{5XfP@~x4BPOegsnmxo8b|0K;}BeTj6PV%3&Qm=An7p_#o4>qV$1_ zP=IwP-i3I6cwqgr{%>VOoxwidKR@W-%j8~e0rvHg-#Pl zLO@JU-P=*}UJ&{p5lAZABYa^S=G3?RhIf=l2$TV~{4uSUET?!(aj^I);(%>Go#a~F z;Rx3(bmq;YQ`j*)D;(un&*~!HzGJ9!;2i=v`vM#V7>^|{HNhR#!NBn;YZ|$uD@@k| zg#8e1oG?Eb4(gKGK19EeZ2xeLSraGZg)zk)G#}FsLSOW-WW0~e5Bef{h`<5is}Gid zxk*k$zkH^T!L2S1T|mwdSUQRyx+EWEYwc_EMI3Hv z>(n_)C{_v2MB=ZfD1JaI-K!!FryT@9n<2AHXP~W-&km9zoPf^+s?m|vga*-R>gnSI z%W{#6$7xgWTKV`MPdCBC8BC%2Q*zVrZ_$)_DIPCCPUZn^#W#?a^JBa`(rt{Vq-g`g z{s{`P{fo$~3zhZEp4kF)>6x80!ZW~+bjATny#V~_?EOM)?xBMzwFC@`H}uqMIS~cD zI3HyWvIuEG_i%G!_r&*%7J^w(ZaaT4b!hbLu6Pi6Sk(-4Z zB|pY?#rLUZ@kj%4t+J{kl>Vk+d*lgl*|UMXcIu4)*DwxC z)(Af0GtyNWc^cfIs}>B$w=FtH9g(F`CbX2{+&`dKNHSVTrA%9h7&XBjWd+$J@pU$x z#d`v;B#ht@b&B9wEgZ8?ze1{b#&WLI!mZxI{@?;x_R@tgU{r(xP!W0r4Krn9}r#Pd{#}sE2 z0UkkPiswJZGwXR)$36z~sxhbjh3Fs-fw32lD(^&VM6t;M~O{I zkCKlmc}&SCl+aEqI()0&qlBP{P9wG$;(iEMlyN3LKG3pNmXa?h`BO@UmXC7`n8~rd zjwd8H?Hco@u<*>CGR4_`-YS|Rg9qy$N{nazmQyt%lr;4oLnZH)cM_T9o0{us&6 z3E>Hu#%Z3fl@LOs@SQ6&62ZFD28XyPM8;Q4_?q`}92CpQDGqzl9k5*~Ow`g%FkK)C zS>$$tZ-ed13|sO>bOf2W~n z%&h3ljS|rRPIt`F)=?v3qYINkAcDw%`G8Y8LQ3|%n3T6ciHIrr8}yjqgwFC|k*E3( zd}fLYqO&kc(XdGz5hALSACY6>VUn&RGsIm7xb6Wa$q~ld1}1qZ)LhpRK%j3Mz!>0N zS#tXYcy6%jX~V9feDne+8^axYYtL$MeM#PGFXC~K;|m0TV^izCys zV*}$r{|Fw1{&C=#(XQjZaNsAI1fK7K+^RkDaleEh&ieZJB`*2TQOe;%*N1*{4d{uE zPI{J&-e|*+jYkQ39SSF597C2aN2Kqfr^FZ(n!rp{C^f0Yo#w(^gk{k`%r!M_=X%W ziJdtqWaZrP&63c-6p^w^q@3c0NjP+6_`d~l{Ekk69KV}v$P=zKeO&u7!aY4cPW+ie zbQ~ugO{Ddf=V;08^W3i;YI&PD-do%uT lo0kZ@aa_;^ 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 BaseDistribution(Protocol): + 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). + """ + 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]: + """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 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 iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + """Iterate through a directory in the info directory. + + Each item yielded would be a path relative to the info directory. + + :raise FileNotFoundError: If ``name`` does not exist in the directory. + :raise NotADirectoryError: If ``name`` does not point to a directory. + """ + raise NotImplementedError() + + def read_text(self, path: InfoPath) -> str: + """Read a file in the info directory. + + :raise FileNotFoundError: If ``name`` does not exist in the directory. + :raise NoneMetadataError: If ``name`` exists in the info directory, but + cannot be read. + """ + raise NotImplementedError() + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + raise NotImplementedError() + + @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. + """ + raise NotImplementedError() + + @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. + """ + 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 entires 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() + ) + + +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_distributions(self) -> Iterator["BaseDistribution"]: + """Iterate through installed distributions.""" + 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. + + :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_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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 000000000..d39f0ba31 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,256 @@ +import email.message +import email.parser +import logging +import os +import pathlib +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.misc import display_path +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from .base import ( + BaseDistribution, + BaseEntryPoint, + BaseEnvironment, + DistributionVersion, + InfoPath, + Wheel, +) + +logger = logging.getLogger(__name__) + + +class EntryPoint(NamedTuple): + name: str + value: str + group: str + + +class WheelMetadata: + """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) -> "Distribution": + 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_wheel(cls, wheel: Wheel, name: str) -> "Distribution": + """Load the distribution from a given 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. + """ + try: + with wheel.as_zipfile() as zf: + info_dir, _ = parse_wheel(zf, name) + metadata_text = { + 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=WheelMetadata(metadata_text, wheel.location), + project_name=name, + ) + return cls(dist) + + @property + def location(self) -> Optional[str]: + return self._dist.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 iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + name = str(path) + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + if not self._dist.isdir(name): + raise NotADirectoryError(name) + for child in self._dist.metadata_listdir(name): + yield pathlib.PurePosixPath(path, child) + + 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) + + @property + def metadata(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(extras).intersection(self._dist.extras) + return self._dist.requires(extras) + + def iter_provided_extras(self) -> Iterable[str]: + return 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 _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_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) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + for dist in self._ws: + yield Distribution(dist) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 000000000..7855226e4 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..35609c5c3fcc8c7f7855ada8ee1da6ae53d6a766 GIT binary patch literal 346 zcmZutJ5B>J5cQ^E6)AVvHig%TXebaL(bLe;SdKl}9j)WB?1|8F0H+n;>)l!riUhdp=neP+%T~#4B1-UNGiAUk82eDo}U)(m)*uiwraBsM= z6xd+M&4C>FJc|ipf((J10%U~TF7MaX=}c=!R_j-h7RC0feY~kBN<%KLkd-rRB!mtF zK*G?;9T8h|h-$Ny7&wtTT1EiSqI~7OnDV(?4jmpR% mzw>1kF)Ce-LJG#KIiS)-LDssBLV9cx=7^ literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1ac4d19eab3d61739455609a7bf0b6562ff3942 GIT binary patch literal 1498 zcmZ`(&yN!~6t?GAvLQ*UvOqyvG;m_1W(L%%>H(pOJyfXe9$Kk~xmafGEJK``!FCD> z;j}B!OaF(K+x`puDL(Yl6K8IfTJ^n2vYT!ful)8oet!Pm_dZWO81x8?$uIlj51)`f zaj`uDSbPoBd<8}jK^2+O+@t7w%AW>#(E7d#r%@hJ@(mGz2#<*fWpw1{9TELVlFmCg zO%m$DhHE3i3BD_<3H;yvR?Z)CBgK9_g+2Lw`J$`}jNTsI^}_rFjwCr1B=-c({X;jXWR%m98)UL}I zoU)AR5Ktt63yf6bb2Xe$x5HL>89O0=z0IE2dSV)0NRt79d?c&GvXWB6{iDZqZ3{ka zvb*<2Wo30OW(Cqcvi0bE@G8-hy15{aD#x;z7fNPAj?NaUe4I6N`=qWuPw(B$Oljo^ zkWBa?fN9DmgMzHo6<67`7E+n)w25gm*Fz|?kF28;(H@Ox^&2y;Y}v_uKv~lKU5Cz4P*xe)U;=W|Idefr~(8Q*Qsqzy1hr z(4U-|%iv+}H0YMGtFU^Hk3693zrR0R%j(DnYtdK>=xT8bp~a`%#dp>kieJ8pxdof( zD-f!$p*e@F!}OJ<3lwlh%T_#^=^8@-qlXK zbC7iNJrGn1ucs2VPFE@eiKm#t%Vz b;}*yk?yAf8S8O~$#Toph^hw|A(_Q~x;nar- literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2420cc7151c0c7112ea303900a0ebee24572d4f3 GIT binary patch literal 7375 zcma)B&2t;am7nhUzyJgxepwPFOCHJ2+SoNoX}z1>cokWUMR}dX*pwvefVDFkp&R6o z00!{s!SbnajLeql1nO8Vs5%5e?Y2o$T^i$4qKCBPC4fkJC^qMdVm1|Qe_XS zd-{7`zxR6|-H2vqO9q~uAHOaBaMm#XOqHWg8I>DI@m*#Z!l)a93EpCLrr*5I_1mml zc$+P|?bMxipz5UwabGDJ}>9GLaRA{UoMNfzXibeeqG5HqqQD|naXl9-i6U9M#BW=Wh9bC2x$ z3tw|q1vBQw0%n{Ri_(=vv9xSp?TT1xTH*z9`jJ&XBhE-iRK^sb=d4&p&sorVPMim= z=MQ*&8MPP11=KE}b`G_R;w98xLhZaP%X9L)TyC1nM*T(fdEyfKE}`#&;CGDb%l)GF zgN+|}-@JOo`wOwYRxPCFdS@@SZibB{b>B^-3Ldm%>i$^}r3Li7+i6DW%(`l9g}YK$3ileZF0i}( zQ$jD}_f%_jJB~X2)gONF$_Eesdwr!Itn{y}d~3!3@Si@|f9=haTB~op(x7b|eSn<| zMFb~l06hjF2fOEr@K>vvsq6clpe=nrE%|;s61^6c%fA0nFKA^wPYkty(K`G5H)|h9 zYA5an4H>Utf5D3EY=#{vRoK~Fc@RZOBWQQmu3TLSJBh-24PwDc60J-R&KBB=x+kpD z3Y)UA*J#N#Ay>wgR`_78yO(T5oi|pmURjI7M6Q66onRBhbi?kNkB>?PS*>9!vW1n$ zEbZ>;O}~Jx#1=Bwu$XR1nMh~lCtZk83O^wkn>%tZEeP2RdaWdNluUZ6)1XCr*M+LuOlcFt8mYPi(aW+7&THou=#zveecDjis&@snzl~WwMM?Omkez zVlFE&&Mf9I{>*x2+3Es1jOK z7rb^aPO#5i=>-{+fL!{9-h?_&r5u_Wk+VdkujEHPNM2MiB6g8gOqW$ask(?tYKKt7 z7&?v@X>)@#W%N*)BWaRvp+L6w5y-x29I$=7Saj1m} zp_qN|yp!k}Yj%0p!l`T^PPy!JB1K z6eT!#M-~t|*l_ZeEK(qW@vgK5-f-w;G5g3uFj7KWKBCDH2%LhWpV2OQUJ*s9I|5!U zHBn59;8QzH{7|F|q~|gwv#sPVY+Tey=ar13*6z`!)5n^$l~<&74Km`Rhsqr3ZKU`z zGFU3ZHwGqhvRQ^tCfxANfsGut>yDu%3^Tfh(dsH?S12RUDpJL&lUlKCHM0S_Pmjt6 zOv?-oIqYD2{(oY2Om5n79avZgwzfYv3>Q{MgS7c>5Y3~9%0(o-2QpvUo*2p@Y6oP0 z89Ac^b6Dai!PcP7%u7~YvJXt*d}eF&_1rB~huc44cU3d9xMrLvZMmQD)NHik%?6kk8qMB)1{KZOC#P zGTgQW)BEBzMee)mXr*|r9G@`tuNZb*T1lh{et^!nf{gs(=m%oQ5*rSznzdT3T2`lM zwK>Y>k);;JTI%1ZPX1DTlNx6ltssuu5)qG3CN-0E)ti)EqioDTT_P@OrP)9s{zqgK z(SJ=53J+FZ&6Ax*`4Wzh2tT#u@Ro5vavc3*}iRu=T z_W2sWmi5%p*e!j@9bnbg0BK;%#FJz70h*_X($GIy z@L3s7$%he6XW;Mh5y0t;C{fMl%Ft%`d%J`UVHA#k@H&uOVH*yu1&PUJ#3za|&~o=o@;hzKOw_bHi_(5oa-G9<>F`SQh6{ zThuoR7ZmLXp&4#1)XONQ<+%3%DuL5&VSoHF%P)%sI+YfbBD@ME&axv#D44y_#w_I16l#M168Z` zIlH00fyGmEGfZ&tWXIiBm?%12XPc$SSH~i0X`^<}zqfwdzrB&#II=gkMojoFEl}*m zI3RQpCZvnmc5qto^TsLGq-PN*x1(L@2fbt~3%9aakFi*M4w;MSWsa3Ne}?qbLA+qu zB^}Z9FCXFIbC#J1#E6f%AtIlWAPmDT2!gOfhJ&v07`G$aHp*Q0IH(oqhGg4CDk7Dd z)N5+4vHq`tG4JCr+45+AZ_=i586~`Kpb{@5NZ>}KCF9r&6EBSEI;1Uyo>TIMkL>J* zD(bXlhb~@JNcKARaF-I}A|Pyr7$0^`k2ZNF=={15lJ2rdh z_TIn!{ndO#btZK{GH$I>8#KnaOGGsjwMH=EOKCBd(9!GYuGEPeTe2-vs~aR+sf`nk z+DqN03O0%6q4d##l0jW`9hsGgexaSzDDo=~K!A}dL7~urFjRReFH7b9D<#f=6;O2;aj=E1i z+faCrD`#Rr1zE!NdB)TwI?q_7bP3f9bgDUIiJRAPwn4p^*Kxu*WSh9o!8wPNvrx-y z4w)PE7G*anTSYc9N4kq_UA3gGpLUa3?5;1TUZn{{r* zzFOm)&O4mV@j0j>|B^p*zU(iKg_ZMpLQ-T@b4mRJD&u1h94js;Nbeq7hdM&uHn;6- zC}G3A21l>qs4eX99P}X;&?YytNBXouq1`Z2Nll!ory!?%^#2}7BP}}zIZqdGPuQOy z6F)>o%Hj#TOVpDa)}p1bfN++OwP1(%jZkJP;#6wU{dj7(qCmu;=v!!0g0d+k$RJ6B z|A^i!P~gW{N&OS7JO+9)PaudNYV-dY{efWC?&A8T7)L7caa$Y%9Fj=0MX%kBH80dj z=qJ^n5B?vK8z7rv&WXgB7^gY2ghD3Qgdgyz2$`~Nz%~oUts@?Uq7NO@ok+!e82kDz z&>w}Yf5Ldppe5EnKNi=qaoLx67U5Qxro$^8Kza0Sl4cfTk(o=~u8O)+C3{Lk>pt~f zr;PTNoeM~`8RIsov`v|g)OM&e7OgJngGvz{KShdPN9G#bw*G$fl*{eX7Yij`fj=vA z^F?-gmb*)=VlJ4O-d@72>czC+`yy)iaE+*^T*(PAx{t|lk_QuG*d+nSTwo?N7rwNcRlv5pP2dC@ZVsFxUV5{FXvTK1>Tb;5K^lCa?7 z>GukAx$9c6HFG8y_Y4;28C~S#vOvEbUV6&skGI1*Jv~=ESE<;QS1XH^#Rc>K0jq)( AlK=n! literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1eaefdd8d65486017ce6f5e60e09955bb9795053 GIT binary patch literal 2823 zcmaJ@TW=f36`q;BaJi;vOK}uCEgB|u(XcQ{8-|lWaNVG8-4+Gd2LX8?5G+ESdt^NJacJq`tX-qJN{<*FNPZREX1lXV<#fLROf=IdeI4F5fvv#lk|!@NK_* zBLCfF>_5a@{2VY}VwlGul1ZMiF(2`<7>ThnayYGt%pH3pubMlVKW>Z~oc)1GS9*s` zdIw?@NPm@e8{a_&>pErgsV-(JUsbjY{xY#?k;hr-fbH^fF^TgcPm?%HXDZ6$vBF~O zNiiPBx%|D>g-%Gy#SePdI{p(A#YSARk&t}kNFkjKF>;&ulgm;lPx-2Go84y8xiI&n zyY5S0HV!>#8mOl9RJiWSrVJ0=(KT?5bs?|G7PyvLkPE6I+qEQ|t|Us55yOomDh?q z+k3+dOJ6HH)pIO>je9DGeM)H<*;^|Lo5bVE;NJaS zO3skegmBTbMepsywV=&na)q2MU02ColBt1Iy>li@*9Mb4yIJH9`uFb*Olno{jSJ0S zl1>H@9#tAJ9E=O8GBc>X9wl{T`jfpfh;S&iQM3SaObaCNd>(M0`y%AC~<7}sjq`roONVCR< zvaz+gD@xJ7SMu#wLN8)VlgU*W^>xh3=A#XjtLGE__+zk!Y!QF`gw1~Wwhz=!6!jlv z1+v*Z?w{T2dS#fJ3bc8m%4QTLS!_%cmF;0+|1_RtYOD|tNn0i>ENwXecvsY_R7w%7 z^!r3ArTi$O=RPEjsHU~J%Ui~~>@Ujs$o!X1JL6|5+_0DpeLd6mYMvN);LL`TujanJZ5E^l-9 zfA7MmK300q;%ur)-^Ln2x|GDE_nGeh05fMt(Eph0rsYx`@NbZ~M}W>T-*==tcb+l* zU@nfFV*p^z&wgF$9&@ZX65|L3?U+mN1NL|EYbJf%;(9=7UrR7cbAa&c+xza^mHxKS zU!F?Zd1(DPiXe8xQDa`qBZQ8v-Z(EZUjx=x)O_pnF($xJi*wzuB{ z+#`g#*i|yBlg<1F=M5z~IXC1%BRm21!tX(y@CQ&n`}neJuaNTN1)xqM_@eUFarK{0 zRRC(M96dNSsJ8DTVk?lGBV`fjs#LF=aH`CoNpq@BEQpO!c-|=$-hd~GI&(`>@gJ$LrULdEzuH7&i?^2*|)L) literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..552ee3c7a620edde54206ab7fbde0d62c223831f GIT binary patch literal 1315 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..92aa2cfa34f3f31acbf7a152d9b7cea75d2df4a3 GIT binary patch literal 3531 zcmcIm-EQ2*73K`NTrRbeRX0|x^ast zFbF1{LC20;SvXl6tTE?Tj`U^wsUzFxe9)Eb1E&`}gKlT9=hohDQd8Bz`(>3Dd6Lzw z{b`x09;@B`WZdKR`dC%5nU-atD<$h&$4VPW#%Vq(;;M-ALKYRoxAH{%$V&Fw^;SGik5wL*vlS24UUHC{dLx}6E)$hk z2}P>zlrRtaC#DV;E9x7Iz70{m79S%jGOm)b+0*NAx<=ADk)}ZCE}GiM4yHOEwlKK7 ze017)-o|4_Xy$zG#Aqd(LPN!#peOmC5R5aPdzCxq=j@D2_Y1FTRX)i{kG`Jszp=B{ z+{Nnl+(R488QRXgg*LQW*Cfp}iP=gXx{hOALXmh-COVmjtGzxDzYrM`mcn2v4L>6y zTI|95k$7)pJ3GRtL=O)UEcoY26{)+31O+vzM52|r%4~5kv!NbNwT6?0nVCvWBJn=r zuTN5=cEm}VWh?4NX)dqn945IqP~u>kW-u~uvga~VkTph0Btj(iVV_#jc4Zv>2Wzt# zX}Zi6ETe3a*t|{;rj!E@Nc-$nv+|-^*pL-N!Tc`{LwKNg$61%AY<`DZ;~><_KeC#3m93FC((a8 z`nz~N|5yK{&_@OttxR7gRkDjvrnyp7vAYLFQ4Nzx*}r>l7YU{dIkgVmt%}|2!i}QC zqWlUySvpd~*)UUmsdg8GEIsI#7S8WS_wM#hTB+U3+Ul2S*#|HJu|anINg-8c`VD9U zc!>iL^g4(klU8v|yD?j6{H=g*vVh;_KKEI3hwkaEW%h_JR}C3fTwW9nLRO2U19T)i z1KvHsd&=}p$-iLImEKc_=H7A68Ss)xpyLw`vhwE)Z5tyO?*MOa#K#_xwu5z{UB{bM zptH5pcdkkq!YA~chNWv5V>=H!m>2Jf%m0eIS(M}9Kx6%9& z_I}hpW0f;!=j=m=IiGOpzy`M0V|p7BI6Uy^ZtVfWE1MQg^F4g3I}gVySD%*p(R-wj zQjve=IROh_p6;ypw1Ja`8l#66&CH|dYI&226rn{bK4)UZcCy=}-_Y}8G}iXbKkzd! z7MRLG9Qd4lj)=_p=lrkk(r)^X4F985VFW=~y-bU#O7+rw>6zlLBXlWh=XlF5*;sgz3Gu#lR+zbTrcBs)dw2OZ7Y(%?2{>;Ct=Sj;;qVAWoqVzk`UO;Dx^L z2Edho<3bSW_FwqE&#z(3<;tG7hpV?iSd}Le6~}cL#{jfxM*VIae=<$7i!bdsmc@%L%&4QdFs^iQZE99(LshII!Gaf_jS29C#r7VmOK zxA$ep`F}TD{-4m}FZ>q&lKbKFjXPVf*;OE=TUb;3)vN>|G*(!9$cn-10O<&Ikjp|x z4RS*&vW_H^>K|EwOB9cA7|KlaDt$KrqEOYhziP!KHABmS)~KcJ+1*;43LZ8deME?E Q%Q|pgV_m+a>KPh{qGynhq literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..69c9bb7e2e52ed1b05c77ff981e6d1edda184030 GIT binary patch literal 4422 zcmc&%-ESO85ucu!{qTBiUwpoN@iia>*<5z*Z~+d>I60CW3PK^uMFB0z4ddzF-En4T zCOu;(UfI%tBatUSydtFd?JV)kAJe+Gd*Ye56C(VoXJ>adaS%dCjMcp})!kLqRrRYX z#|sM$1J9%9*ZE%-4C8b9C_ffHu3@A>Gifsrs!fC!q!d@^34bQmmjwu()v|R zP4@JG;lZW<~GAy z{lFsI@0rir5Wc`Xg)neWWd&SXwlX_wiak|qPqEQ4Q+6uCo+L3} z{B`w7EFYzb2Vk#qFZ0?W>Iab!5~yu&#c}3)!(?^sGGZo^G2ijCAdcEu+VE)@rhs4dUp%&gHe$G{{67nmqFQP$mhIRTn~qjJ$Al7;_P( zt2!}tl07xIk&4WZhsovzveqJ|s!?V3OBzkqcscsIhG549k05j1&PEvfUYKrnCMR#V z7S)30=#uwcDO6<$pA00W7fG&AmA;I35>=A|2K9xc{H$v5Y6>%`Iqg|D^ZKfiCSj1N zhITS7rgDY2yh8`(G=FSMTbBG1ku~#1E}YP)y&=!j(wFH(z0mtKzEYw$ZJRB!DqCSI zR+BC3zlLSA=F8FI>{VxiiUN!Pe4Y4^Mwu=e&k$M^N{8%_0Wj9+%3YlSG#0d4-$tH? z!j4A;A&q4wxDz6IP@+#W3XiliBZ*Q6NlIy)#q?_m-`WAojD1MCZ!qJr$qj@lyG{8X zOpZ-S_fr-mmS46nG8blpzo1y|KT@~k=HhtE zRMlL6`7PqEjjZKNg`If=yGtaRF1BKhzVdGcE1Sg6b4a%aCACN$9WoPMNR+)m>U(Gv zNcbgsi=4dPIBT7$WOAe)S0Zmh7<~n_b}3LVA4ow9_SLfYe=N|7r@L>2{W>VZ9q*$hlG3=U&l;Rk;rjF zNkg_V{Sade7RMM}%wu+}6;dJM$sGpK2{1V}m4y|J5#Um1sVRR_HOJ+t*O<{R4U)49 zqcd+1sFo0CZWg->_?x_x9?GlQ{aFabZ<8f_(VT10;m%arAPwE0g>>e zllq_{nR`y?$v%{ zn2GE-#dyh%Md$Z_KsN=nMz@0(jqdp}y7$>RV_FY2wsRPdas56{y@KmIAf-)A<|npM zXC@jQG&$p9*aNU#LImJ7&UMt3oPct91uTjtM8kV3>jxxNcOPfo!0;+5LCsO~l+Efd zi<0<;-LDlxvdVR0LG2m};P{`3CVGMv8~tvKc0dN1RF)DwoJ_4A3LO4n%oBSF=6PZJ zpGR%W)TvN4f)xKVZO7FAeh+%T)~8HT{yn-H75&A^XlW)73f@|wmX7{2a9!1K;Viy` zmeW;D*L}R>h2xc)>+;wK*+es1qf4Wxs@naVcYpM=k8aAZlKhJ_QP(ReWy)2WsLxjx zsrY^RBqiiJO=NOqqmK{e27T+6XFBP!QNsd7mM%qg!)CT=GTXBMv0Pg|ecCpcstC6R zhG{nbdHx+q`&;w!8h+#lm{c{}qimOpC5c+I?s>HE9T!~(k7XzC>#?gtp2`(It2Y!q men&j@MWUOSya6XUCn>Dz8@c&5skzml03@sx)-;>uvh^>ll)Eed literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/candidate.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 000000000..a4963aec6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/candidate.py @@ -0,0 +1,34 @@ +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 "{!r} candidate (version {} at {})".format( + self.name, + self.version, + self.link, + ) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/direct_url.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 000000000..92060d45d --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,220 @@ +""" 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( + "{!r} has unexpected type for {} (expected {})".format( + value, key, 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, + resolved_revision: Optional[str] = None, + resolved_revision_type: Optional[str] = None, + ) -> None: + self.vcs = vcs + self.requested_revision = requested_revision + self.commit_id = commit_id + self.resolved_revision = resolved_revision + self.resolved_revision_type = resolved_revision_type + + @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"), + resolved_revision=_get(d, str, "resolved_revision"), + resolved_revision_type=_get(d, str, "resolved_revision_type"), + ) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none( + vcs=self.vcs, + requested_revision=self.requested_revision, + commit_id=self.commit_id, + resolved_revision=self.resolved_revision, + resolved_revision_type=self.resolved_revision_type, + ) + + +class ArchiveInfo: + name = "archive_info" + + def __init__( + self, + hash: Optional[str] = None, + ) -> None: + self.hash = hash + + @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")) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(hash=self.hash) + + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/format_control.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 000000000..db3995eac --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,80 @@ +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 "{}({}, {})".format( + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/index.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/index.py new file mode 100644 index 000000000..b94c32511 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/link.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/link.py new file mode 100644 index 000000000..6069b278b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/link.py @@ -0,0 +1,288 @@ +import functools +import logging +import os +import posixpath +import re +import urllib.parse +from typing import TYPE_CHECKING, Dict, List, NamedTuple, Optional, Tuple, Union + +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + 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 HTMLPage + +logger = logging.getLogger(__name__) + + +_SUPPORTED_HASHES = ("sha1", "sha224", "sha384", "sha256", "sha512", "md5") + + +class Link(KeyBasedCompareMixin): + """Represents a parsed link from a Package Index's simple URL""" + + __slots__ = [ + "_parsed_url", + "_url", + "comes_from", + "requires_python", + "yanked_reason", + "cache_link_parsing", + ] + + def __init__( + self, + url: str, + comes_from: Optional[Union[str, "HTMLPage"]] = None, + requires_python: Optional[str] = None, + yanked_reason: Optional[str] = None, + cache_link_parsing: bool = True, + ) -> None: + """ + :param url: url of the resource pointed to (href of the link) + :param comes_from: instance of HTMLPage 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 cache_link_parsing: A flag that is used elsewhere to determine + whether resources retrieved from this link + should be cached. PyPI index urls should + generally have this set to False, for + example. + """ + + # 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 + + self.comes_from = comes_from + self.requires_python = requires_python if requires_python else None + self.yanked_reason = yanked_reason + + super().__init__(key=url, defining_class=Link) + + self.cache_link_parsing = cache_link_parsing + + def __str__(self) -> str: + if self.requires_python: + rp = f" (requires-python:{self.requires_python})" + else: + rp = "" + if self.comes_from: + return "{} (from {}){}".format( + redact_auth_from_url(self._url), 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=([^&]*)") + + @property + def egg_fragment(self) -> Optional[str]: + match = self._egg_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + _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) + + _hash_re = re.compile( + r"({choices})=([a-f0-9]+)".format(choices="|".join(_SUPPORTED_HASHES)) + ) + + @property + def hash(self) -> Optional[str]: + match = self._hash_re.search(self._url) + if match: + return match.group(2) + return None + + @property + def hash_name(self) -> Optional[str]: + match = self._hash_re.search(self._url) + if match: + return match.group(1) + return 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 self.hash_name is not None + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the link has a hash and it is allowed. + """ + if hashes is None or not self.has_hash: + return False + # Assert non-None so mypy knows self.hash_name and self.hash are str. + assert self.hash_name is not None + assert self.hash is not None + + return hashes.is_hash_allowed(self.hash_name, hex_digest=self.hash) + + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/scheme.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 000000000..f51190ac6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/search_scope.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 000000000..e4e54c2f4 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,129 @@ +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"] + + @classmethod + def create( + cls, + find_links: List[str], + index_urls: List[str], + ) -> "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, + ) + + def __init__( + self, + find_links: List[str], + index_urls: List[str], + ) -> None: + self.find_links = find_links + self.index_urls = index_urls + + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 000000000..977bc4caa --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/target_python.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 000000000..744bd7ef5 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,110 @@ +import sys +from typing import List, Optional, 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", + ] + + 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_tags(). + self._valid_tags: Optional[List[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_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 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/wheel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 000000000..e09161227 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,89 @@ +"""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.+?)-(?P.*?)) + ((-(?P\d[^-]*?))?-(?P.+?)-(?P.+?)-(?P.+?) + \.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. + """ + return min(tags.index(tag) for tag in self.file_tags if tag in tags) + + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 000000000..b51bde91b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7e3096c3f2ec310a63f9bc12225d02c807154a95 GIT binary patch literal 334 zcmZut!Ab-%4DIa2VPXGau8VZKt5*?W?_RulDcxzD4byE(n?c4e@K^i=KV`4}g(ovA zC}JQ9FC;H7q19@s#D?dczmWVkgWpyOxDhY41h4LuukO@(@pQhU$PQy^(wHGkO$2_V zJZJ%q!8apgKt?F-@^)RF&aCy+S^J{$LYO|o`>UBpN^%_(;~hHmEikIznV+t~8Q8Kt*#3W3{ h%2LSD1@nEIu~I^|woTKizB-Da0N3+}%6wC;J^&hcXz&04 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..509120eba9189e5ebcdc37977f8f3814a976b771 GIT binary patch literal 7614 zcmai3&vP3`cAn|^fx!@fNQ$B)O0vfK;WZqQv{!3oOSR>!S2Aty+LR+{;}~n#WQcB1 zLjp5!&pj6NJ1y#VB zo}T{QuiyLL*NwKlV&|7RR z>b%!I-CJrc_0F`;^p;!8y|b;ey>qQ|x~|$i-&<*|n1)ys7oM1{i^3C^=&xg)H(IX^ zUA?x;(dEyLH$NS8 z^Z0JsL;265EN)ZZW)LMjh_Wng$5AeLu-zSqpq+9NbW-W}W%@Ygak3q>rQkGC)TJ>4 z%!*bR`X@qBFNaj#eUbIkBoj?jHMT__Vouo(Bie+iswnv+-QE_G zri`*(RYelUNq>;58fE*~Bt*v5k`%r4vCuukj!b*uKz7wi*6+r7S%{IlX?s$K;q?MP zPCDtcw|*h^B?%x2Q8HjJ%LhtT&a6MBN4eSjvA(N;llq*F(kV%`7 zXhuI5Z!(2Dc(Q**QW(3wc-fvdUh$aaf^#PuYQ8*z&`|EbQs_ zWiQO^?RQM$z=3)%pnsLyxnDRV^)@4n4)rz7{PrB&noJeTp-AQvA<-7JcI7a8_%F>q<)jH>IdUPSCzd;CRnwy zvRpP@xrBbYvph#5*fgWONLdS-@_R#GMgG}8uahZfeHdxB&Z9h970Gs-2tj(bx|ODR zJL>h<-+pHm#w=4lXp{Y{=IQFm#^ped(*BHbx^YLe_uE~u&c*7{M>pPD@9*c2(&Xma zJ8!RNaV}P|lHF( z&6~Bv0oKmKgE*) z=M7=BOgIfzW&A3)gvD)P3rD!;4S*>C769t<%C}Cd!ad<~2eqi{*u2Vpz^Yd@t8@Gs zVAth!^lspBM787bQ+yu1d|l&+IpLN)NB!XrFvbF3#27VxTGY|2j*=yQ1|FJ|Vy_3s4K?tp%O9YXq$9^9BW%soQg~!lS(v9`7CjbCOWB#|c8cjQ&+(OcNLQuyxh(yX1WjoWJzJBFw>I@63hHsz0CJj#K+mV9e63&%?)`!BwNHJTR`j1xx+x$_Wef|Ax^RV%Y4FSY zp9H-qZ$Bc$BG)+bgYXTgTJ!y2^t%(aAE6M~$M@kA;I_Nn{a{-pLTc|jB|HqcA7~#R zZIdU@Cxg%gGZugm9tnx*;fHnxS*{mSy0WPiJVfWxt79DmyxF64(B;7+oD&ir#CaBs zU6v*XQ@Hhe=nOc5%23fF~Cg=m=ksb-YJd3?31L_YFeuKn}CabGS3gpB&O=hMxSzol{ zPK+71_Vw~<(`%C^o6pR3C^_l3oJRuh4NQ;w%Fpsh=Gk5h-eJo>qI!aPWe$|vm!cDY zb5gk*ApzyY`aVbNjE3~am|t24_JMQY7VekqpmN|9FcOf53x!v{b8R4nqbY_90%5>J z?5E~IwW!LQ7^C{cJn#!&-Yk5KRXvzHsOdgdQPq8_@?KHnHei{?MgG`4_eS&F(|w%L zJT=V2WSHBu!h?EIN1oQMkSt-sZ%Y26NlR6)T&vy4nZ%&P$_&-nNzL)j%GbNl>;UXb>dZ;|Skm^9 zh`njw(ZkX-mtY=v#7obaFL?u)g~wnw_?ovovn;idvvs{~`8KTSh3ydY@Yt~VYMVMS z<1sHnY=eBF_9Fj+%*0&4u)&p$Lldmogff%yfb|ZHY`Fky9~g4I0K48{k12%q%~4ah{rB+33j=cMDkexbBx33MwD*RC6tV6f~)ORO3}`zt!W0lze#FH5StG2X|1?1aZNXZv0rMg z!5id9Gr$4nfuMT@z@K(9#!Ky{>C&n%##39rfo5?wSz>39Xojsl@CYZOfXAJVkhlU* zmT=5FPI(Rm!@r}QYLezbH$CA4^(_YbyB##G(qM@)%O;X$b;?5Z<>3}p-KK=@Am!bG z4HCurdne84oHip898P3fXum_x>@6gXTEkj#8!#N-oM)Z`N^ZF}d*L!XHhb>c_H)m% zzxOM{)mNL%j2V;#!gI`i985QHHy_~x76XT~LpEa_ls3c)Gc<8qHMGOA%XbcYDeNbx z1N6hj4sn}>-rL%l5Eo;c%9G-SjjAriHi8VmuSaRRt9+0l-WB1G-hQX) zl(Hp@E;~#ldQy^LqeRTY@ZZojt07rrt~JjZtYN`TzlxETeIy;(t7Wl;+8oZ1?31(K zTG%BkSXSe(PcTyAr1}mo--KkyZIW~-?@Z-UJ}PlL)DP|sl zHZ$2HU2jGs{x@1>6w9H_E}Fx4XPeLeGm5fFv6Z`vFv50rOozxHkxl)ACPE~XYzbPl zYspFhA;3b+tVX$59Cv8_#hW`#^Kyk18D(0&p9%b&-4;xQ$i^@+GcK-_w ziq`*MR62A6W&dRU#soq2c9sv% zlJCVF9uB**`Q6_`9vcsFjz^^CPar3G7fJJ+nge6c2U$o_O??GbE-(y%59RbDiJ+s0 zPn|1qLBla!M71ePLQaj&@>AqgMTb3;9GDmFshSjBfxsmOPZFsis4}|z$q%Uc9EF6! zG$9C5^K=`YhGykcKlnogbm)$pa8-dT%2TNR3XIsoX&A|KiEWrhQnYi>JYCqzr%lAMA<;)dkKGsj?8Pv3>I#y`6@+WPwhx z;pLfXeT1>cRMx^gWU*RhuONeiCzWOLlxFCp2v!N~1b*~1?cuF)m^UCe-9jXa43~r$ zL|b43bWxl^A>?P6VAzC^10BJ;5!{&ySd$+f_bNFzBGd9u(WNBImnrw>l#tT}8tQA^ zMB*n!`2`x$zb&+D@WDnYe&xNeUk-zr0-92RV-h0ikjiKY<;aj@7?_y{0;j1PFs?QV zTELje5t74{w;(yfIz#?=Sl8iP+{j>P1_gY71CyJCZQcEM%YZRjRX8BQ)PdRu2LAT| zu%M^u4&Rw6bJD3}0E+)FWP>(>loFXnMO_nr^0&pcaN@3ciX*~3jd8_i`3YEj%j43!^- zJ;ZH6L_$>y!>oJ&b|$Q8&BDbW~3pd@`t z7$s!pk`z?ZzNYp%@n-T3RD6slBVOhijM*=N051`eeaV>rV!6)FGt+*K0PYKBu|F^{ zL+1G3vmaBdCA3(4n=OppTL^YaysRPvzPOMzb}|JSx z167VQj&85%nl+01(-MjFsdIXW6D@ji*4A91q)fz?bbv@xc@-S*^0=L?!9Fs;JGl*s zv(`u2pS92ft`l-w{mTAS7grHIb)pg3zA m8=iX+gr9V|#x9z*iU%sobR?dl^5gjXyp8Dl_gB27*Z&WeQRT`2 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1fbcb5a755eb41c26eb8df2e9ed253fe53a0ad2a GIT binary patch literal 3015 zcmaJ@TW=#Z6t?G*Os7eD*>3j+?0{II08MrQAtVr5cE!T-P!L5R=4CV;JMFY{!**Iy zWhEd*%M<$-TExr#0{)9%dEzhdQqFPGG${y=#$z8Jdwjn0onx2Hrca>k|MHM+d4&9l zo!R0*=RUmhcc>T%38T!)Xh`8}XI5^9Hbt3}Ik_9Uc`dA&zMIu^FZ4{imM!Fd=$m#u zTg)3_!?eAunYY4Lz7#H*{zA5#uY@bm_IZOX^3|Th8mxKjgjcu?eV17`NY7#|wsh=_ zXt?$XVasggn6MS@jqLC$v$jZk_2|~8Uw!pOki^L@57NBKc+LwItF$aS{$F4Q*=$qY zO3FgQ=kGtdho#t;75rXyS*+p>UhJd==OQh3 zHnz)BC2?ML@7~);3nfa{Pte{CRc>5X9xt?8R{yb1miBluNHX4KeB+{%rQ6+VpmxjR z?asZsU70Gr0Xx|Tm}R$0t8N58UxmhxQIP?#37>C`^|@3sh-HxWrfP?=#Kn0LZ)co!j4E=j z{`uC&LX^TdX{JIu^)=bADj}aT8U!9n>fD1sbJ!wlfOLUf zG4dw&SPRDd8^o;Tu_d;A?1qcuS-3h|VXH8s@f5%ho50vL-Q0?Md>S@KhX#y~0t}I0 z8$ydsfIr+#lieVdfdu_Pl|f(ffFGbY&?V?06$_wy08zvf2-883#{;umQL12@Pn?+o z=0PcfLy;=Pe+<7~m`)QISDOj)>bzhZUmIS-r6EAqr_%cjcr&6uQAI}Ngq{MEhIB|G zixDu++B|ysp~*7SwSycvGuh8(S@2HV)-HIKL*z$5{8UAexC+04q~S=O^-SkEq?Ra3 zvRFzO#t;_B32_aoJMhXHRLj(d=V*Nn(9Zdy+9~3k&sl|uWSUIgg^mInhV+y^v6M9g z8yNi=GU|v9tsQ!eJh7F%=j^#dvRB)oL;E-SCHZx1=U*<&Zr25FL)Unbl#FX9OQq6Q zDYa9@YF9gZWm=4FbHsJf6t|4}ZY*~>({2?DB`>pnDFT;H_>QZ*4pWS^zOzo(>Cuaq ztew}^_C6o{%VrD%lRyukF(fD8Gh;Iyk!Nj6jO}z}J-hP69@;1NDdYen3+tpYNxDtp&h|v266)s`c?!`Y1+Gt zj18u~1w#^<;8V{;e(P-cY?Z!pcC<2&3+QV1AkO-5?(pv`h!B~e>(2{1ZVJmWbf&O4 z3Sqg6u%P=-+@W&{l!tz82#4&m<`Z}5p45ldDaatPPE9X7F#OJ};mRAjdkZkjn%A6w z^!}_a%AV8BwtoSTz?+D;ja2}Zu0vEIrv+wt?P5H0fkqf!wQDmFzJby=u?nziV`ZXf z8cN!hT)hYKDVz{aR)fB9*0Nvu`!bxMJI5-_3%Cozs{7EG!e<%yS_t2X{cn&arr)@1 zy4Zk4X4zrv#w$Ty9`Lq3V_N{4myM}0o^iz=z>vg!jp+fjSevKCSZ(~X7A7FXGm5ky zMLC@M8MYfy^j$yBCL{GIVr2qiTPk7l&)7joChcwy6qf>HRNHuSxC|3x0+ZAj34d}ugUf`#%&co_P{9!_ z&=mrA6TSp@iB1G31S>_yoZdJ`l-al=FlXu8|F0xXN(*nzYMmeI9e{{uQq*ys@z2gL zE}gzgGugpIOb(>tx#6fGr@n61x}=$>GBNzt4&1&nbDJ?)!B{@y-V4HdABIk) ZO{g5=*$ui(8^BxmLcMBR&Kh0w{{h!W(ER`a literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..944d6243a7bae8dc0de33726ebcbbd13a7527c48 GIT binary patch literal 5581 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4d331a0e67c4121eec35485cbdd347301f3ac3a0 GIT binary patch literal 10820 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..78281326ae2d28a1e6903029e1e6fc156aae1b52 GIT binary patch literal 1530 zcmZux&1)M+6rY*>&`Opi*AT~c2w4g}2r4Ni6r7Nj8d!ZtgP0A&a!Xjy?JkD-tYZpvgPFpf;RlN zLw~6w^s7~_wg8m(;a5`-hlnDIQ#8VTJR*I9txi&B*Y^tDN&Qi&UxKkqJ&yYU z!>r881G0fwh5GjqEisPLoIFNi)kWH!+``CymvfGtdxC^} zR#?snbz#PHk%NX4GyW_X5Z=tUVky(NeJyucS;J|j$2f!PSEJJ5%CtBwbvqgR8sm_#=|np!@5m zwk^HN!f_Z zl1Y-XHf7EKl$0N}^NBvm#GTgG?Y82YHQ^+~_!th8^Sm9wrc8=BZHqZa+hfgB)ygMk zMaEpQ2;hz8$=`%@)SDn&T*bs&0l9+7h3{;VHR4`ux@&}7xNa4@7xFr|$tnm_NlwOM z7%4tw3DoD`wqS1p7IgsPD>Qur*aD25VTvhvPIl3!-Z`0(N5IynmB(ANQ9W$j>xVV{bhq=s7;mU>jgoPIE zusEw~eE_7X&Dj7I2ZV$^=rvs9$oS0oN&|03rnaNCN+4b@M=&^}=mY@fQ2SzCQ38se;VXz9q(i>`Xn1 zVj(i1yq%4rqMXLD1cfIW6$iPJmgTuDatrRmrsI^oXWuEc31StkkSbZfw(5|Z?gb=Q J{649@`UluToqzxU literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb7330f8a55c14e9a47d7c5373e51f04f95b372b GIT binary patch literal 2147 zcmZuyS#R7n5GJW}W$k+H+$R|Mx3 z5eH3Q`VabGKjt6wxA3)3{Rz$4p|r8n)D$@4F{Ea``DRqK+a7}U@V6EE)<)U?_!R_20iu|a6bHC|lfbCoW?;eFNbSrCoXibeto6*am3e_zkF9he^8>#g+i5%N z1Rac+!#@Q*CpELhU@_|kU0A~hOKkZN2dC~J>eALzL|e=npB|stH-fX2+(&(Hc5OFH zc^Rk4#&DfSxhM-Rdr4NNEMvKhWK!hb-(WCW?Gx2r|8ebBxN`T_$~RxF-ci>21oZk? zon2*er{E7)iackrK68ung2RrtmX!CI5U>QZE{_ty!p(w*0`8s&xU&`BEreX3mQ1z7 zdl47gQJO{@DU0=2-*5hWB7TAaLjW8K2*rWXB6OJ=%%mo>sKsn*Q)knChBk5Sb~|ut z4UaBRAGF%cr5&xsT6FOO+Vp6bEtumG@}Qp;fX4>dAJsLZ}w4C zZ~|%%K7g(FIEl3CF#->~9<*X(3>XdT@om*ga>{nY2~U+H8laRv0gz}UnM^XKY|i9_ z=c}4ENxIPkzWCO6|VYCItlu0=P zFeKx7l#cR-(W55N!*a?O!L{?yg$u$reC%Qm&o2F+D8nO6&26AIcR*h`+fhzaK-}l- z(S!*ZZWMH?oX3oB6oT~$*VhhX9oTnG!>aoVbnyoWi7G7dJ`v8>=n1aSm{hnT6sieD zoA#b1jj?%PRTc!^o?X`UB*A+Q=-FeZvMZxJ40}#Bc#S#eR0Z}J;O;vtIFPNnU9V#&5SM|J8?}eN}ZOeh# z29I{Q&L!m@t=Va@wWZS`=7~(=C{+thfePb-vcAX9>gz6PaaoHiTGY4ebdf?CUExbWW>i$9N0GDd@FRE&{VH^DVe@+)3vRX`3$zA#aF5 zUK5kNA{KdR+siNN)BSV&CS0H#9R`RzRKU6z4V$p)V5{~#6X90{3=8aLs%$we;RGk3 zQ=6^MLn0545_t%bV5R;gi6-b*{<}TT^WnUtHGo_?S!W`XR5Z-eIbCP0Y5`lnt=YqM zP Optional[AuthInfo]: + """Return the tuple auth for a given url from keyring.""" + global keyring + if not url or not keyring: + return None + + try: + try: + get_credential = keyring.get_credential + except AttributeError: + pass + else: + logger.debug("Getting credentials from keyring for %s", url) + cred = get_credential(url, username) + if cred is not None: + return cred.username, cred.password + return None + + if username: + logger.debug("Getting password from keyring for %s", url) + password = keyring.get_password(url, username) + if password: + return username, password + + except Exception as exc: + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + keyring = None # type: ignore[assignment] + return None + + +class MultiDomainBasicAuth(AuthBase): + def __init__( + self, prompting: bool = True, index_urls: Optional[List[str]] = None + ) -> None: + self.prompting = prompting + self.index_urls = index_urls + 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 + + 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 + + for u in self.index_urls: + prefix = remove_auth_from_url(u).rstrip("/") + "/" + if url.startswith(prefix): + return u + return None + + 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 = ( + get_keyring_auth(index_url, username) or + 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 not username: + return None, None, False + auth = 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 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 + + # We are not able to prompt the user so simply return the response + if not self.prompting: + return resp + + parsed = urllib.parse.urlparse(resp.url) + + # Query the keyring for credentials: + username, password = self._get_new_credentials( + resp.url, + allow_netrc=False, + allow_keyring=True, + ) + + # 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 = (parsed.netloc, username, password) + + # Consume content and release the original connection to allow our new + # request to reuse the same one. + 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 keyring is not None, "should never reach here without keyring" + if not keyring: + return + + creds = self._credentials_to_save + self._credentials_to_save = None + if creds and resp.status_code < 400: + try: + logger.info("Saving credentials to keyring") + keyring.set_password(*creds) + except Exception: + logger.exception("Failed to save credentials") diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/cache.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/cache.py new file mode 100644 index 000000000..9dba7edf9 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/cache.py @@ -0,0 +1,69 @@ +"""HTTP cache implementation. +""" + +import os +from contextlib import contextmanager +from typing import Iterator, Optional + +from pip._vendor.cachecontrol.cache import BaseCache +from pip._vendor.cachecontrol.caches import FileCache +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() -> Iterator[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(BaseCache): + """ + A file based cache which is safe to use even when the target directory may + not be accessible or writable. + """ + + 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 = FileCache.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> Optional[bytes]: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + with open(path, "rb") as f: + return f.read() + + def set(self, key: str, value: bytes, expires: Optional[int] = None) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + ensure_dir(os.path.dirname(path)) + + with adjacent_tmp_file(path) as f: + f.write(value) + + replace(f.name, path) + + def delete(self, key: str) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + os.remove(path) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/download.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/download.py new file mode 100644 index 000000000..35bc970e2 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/download.py @@ -0,0 +1,185 @@ +"""Download files with progress indicators. +""" +import cgi +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 = "{} ({})".format(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. + """ + _type, params = cgi.parse_header(content_disposition) + filename = params.get("filename") + if filename: + # We need to sanitize the filename to prevent directory traversal + # in case the filename contains ".." path parts. + filename = sanitize_content_filename(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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 000000000..c9e44d5be --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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, Iterator, 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 potion 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) -> Optional[bool]: + return self._file.__exit__(*exc) + + @contextmanager + def _stay(self) -> Iterator[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 + ) -> Iterator[Tuple[int, int]]: + """Return an iterator 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/session.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/session.py new file mode 100644 index 000000000..cbe743ba6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/session.py @@ -0,0 +1,454 @@ +"""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 Any, Dict, Iterator, List, Mapping, Optional, Sequence, Tuple, Union + +from pip._vendor import requests, urllib3 +from pip._vendor.cachecontrol import CacheControlAdapter +from pip._vendor.requests.adapters import BaseAdapter, HTTPAdapter +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 + +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 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, + **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 520 or 527 - may indicate transient error in CloudFlare + status_forcelist=[500, 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, + ) + self._trusted_host_adapter = InsecureCacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + else: + secure_adapter = HTTPAdapter(max_retries=retries) + 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) + + host_port = parse_netloc(host) + if host_port not in self.pip_trusted_origins: + self.pip_trusted_origins.append(host_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 host_port[1]: + 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) -> Iterator[SecureOrigin]: + 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) + 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) + + # Dispatch the actual request + return super().request(method, url, *args, **kwargs) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/utils.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/utils.py new file mode 100644 index 000000000..094cf1b4a --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,96 @@ +from typing import Dict, Iterator + +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 +) -> Iterator[bytes]: + """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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 000000000..4a7d55d0e --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py @@ -0,0 +1,60 @@ +"""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 + +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: bytes, + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..655b9d2d9457e422b63ad9c16bd2c3161eb5803a GIT binary patch literal 282 zcmZusL23gr40OsKLLm>y!K*B}mJrB2mpou`Y;{+xV;S3}><{vlKB6D#wZF)zGCib} z3}}P~F&gn|^{fQb_26p%uJjiR8TL}S5pwFJ){EnZN>#qo?GxTPO*tBi8JsCbV;CqP zCJKW-GZ$+v5jLHsP!hX0TZn@$tp6|n8jTzu_;`9nJ6n(7P~QhnXNYqdIc(c*1DOhH sNivy1!bFPD%TY|hc;JZ1)YBPyQK|HO8|Sa(%SAGI+|{@8lTf3601aGJ)&Kwi literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a32891ce74f4e652b0a39bb935c535931784daba GIT binary patch literal 4095 zcmZ`+TW=h<6(%{ev$GeiSF$5p@g);CX|io4C2JR8kf!h5JXIEOK=`P4256Ls+;dj1sCSO`= zGyL|y-je^i$k;!qv-tDTxr1W9=8Q=;WRgpf@FB<3Nkr-lozxw=X=B((y`h&jht1R< z`e|#};xyMy+G%IlvF%3EO_zpCX>ZuGeJ{C?_J@7jZYIm=%5cTD{p4bLX?V%DTggl5 z>Ts1a#ZNA)E6@0F?bl4UW#=iA9pyc7hA%5uEvc8sVvP;2sutQE+rDPom(X)Ca^22q zsB3G?j^3E{uh06gVD=65iX98kzN!M-epPmD?bPj5UV&!Pt|_a^-1b_`1BP8fw)_Umd&hl6(oPe|Rb-4PE7{CFu6#s=SQRH{_LC zV)dVmuF01%`lb{Q+2Gpo8=pl2TojWMzCMv~%ST+>D zW4J9>^4kpe;;k{X#cd`X*wn3hpVU^ntBNR2Ox1i;zp&~qn%5dLvhHYszfmR-<*5 z?ZlZC{&sP#F1HYf396W3NK4Pb2M6Q%2;Y>sx-Xn$jJr29C)3X1Vi zwVBWR+{!9XtKv{+=Pss+IUSTOTJRTCF`I%Wro3QJ*i@8akBCJ`=NoaCeeurJDV;qr zb&vZ6S|{!^_JmIxMFUc=Y&;PqE8W}db9T^kS?mC|A4fXF zzQ7Hg*>#5oe(z6o4w^_!<-iv!mz=nA3Dladx#H>!xcUl7UL9!_6)IfN5{`AA&fQ%} zazS$ql`CBC@f8%oyZjPbJ<;d>m*PLZtAB(E`ZdzHWOnnzM27KBmTNTzqEmWBSGwN-=Y-p`sdpf2&SVbBuscyY7LSeNziyF}1@Rb=n;AF2 z6$P;gMtNp%F`(pjJHYRwad6ING-nbSqvTJ5xR{Lv+X|Y1QX2?@VmB&+0z?hGTP5>% z&}9cvCIMOUU~&g=P@iG%S_ZL9>+9{qk(@jQ+X!Wg_2NK=t0*aL;sjGHPhITOI01r z9VZB9)alOgN87J@^PaS9UUg?{5NIZ*>Mty;B@WzkzE5aZ^~Syn^<_(Yi%7qP4Vj;! za$7F%3r~2wD+F(gHuoKuxAAv*4{&cgeNdzL(gol#6D?opU(j*dMLu_x5wfh)AH@nH zRR_hqi;74R;O0|NaH6dzV(Jut3$^}?KH$v1Vq;68Pkn--1(JKLJ_Oy^trHOePsOe} z%NdS>9UV<}gU94^gpo6F1<@FsL;wTz+1O1AcH&1WJI7}h7Uwok2O+;jQppTuktO>Y z9`=xZ%kS5e$*sA+J^sR-4NpOXU8JZT@*0F~3B!aoduw zc^{2>)qq>53~E-X)@?SgIvEAQY@^AQiL6>FVv`&0oC zVgvZEXqMgb<^Qw0KVpWVFxhSZ7LIU;``j1qbNvy7=h%&yjjntP#oR+Ri;Ki-H*nd! zbih`KY9|7$)Buw?;5Zl0MuCWU(xeE9xX4Qn{31?#L_ZF$YLpb=`0;yNc{({P;PHfj zS$?yaFwQP~;j+)bxiM(zP3%b%2Uly9wWV+_Nl@U1g{pT@4Vnvv zZOvW;FZZcQnPIgQZ37C?2uUGf;tg6!4Duak)E_`rpjg{_4d3y(kH~Tb4(JLys(*vw za|UieKxM(eB_$Ow8BBbg5{^7UV(_ozBe4K1?thmd`RVpdV% zoWcj8^hD2+i+B!FaqXOX1B0p=hB6-^C2dl$Cvx1dJ^pOkJcry^{3tLrlvb^x(;0J6 z*{o<-zvX`hH?|RYY?3{^ettPNN}HWKy1qb%Y5}eHY~rJdk@QWf2%=T{lRE21GFLT! zI}a>d3xTCGliKg53kxGw(AlCO{XiLfy;P^8^KS^30%x7s5QAI7w{BnKlP-4QvhB6c z=&$~)c%OLGe2U7&#lHq<_ffhakS=0O-|2c?M3+8E@n3bsiu*!v@dEMXg%IuMtLx$t Qk}WIq&=(iadcEiW1#1^jZ~y=R literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..03a1705d296832f93aa2ae6588510aba8dd58043 GIT binary patch literal 6280 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 Bh!+3= literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..806437d793e5dbe036a34e0c851bf8c746cd0e67 GIT binary patch literal 14978 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 Q99dLc2Lm4K?(Dq!7f;8>0{{R3 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aba0c3d3e84c014e43266da28cf1baeb98577ee8 GIT binary patch literal 1549 zcmZuxL2n#26t+FHGn?&flJ-JrA~XUHti;YF0*V9(Awq#3s3Kaa>Rv{(V`tZi#~#_< zEF0~jigMsm^)EC>IPpXH1#{)ZPk=+i^JI6MLOt>uKfmYa=l8w$RJYqfFiw6spue{e z`qMF2M;n+gV47nf6b%r?ln6Y)@b?5My@7|_o-h2eHE1>KmI%sl5SHyhyWs<|QFaEM zW*v%aWi*Ij-DWMi!93bwU3!gmkJ>b%-JkuzCMEY#Z}aTK@0iVLZu5A=B-6R&O2$Hs zco82d9UC>#1&b*+R`cP+NlnuE3%o@4dbr*`WYtIeAAhUV$w4jz({As}2^aK^Jmp%+ zl1bYm_0C;sEGRVQ?@xx6Rs}QWj@C-oH&-rvv-aTYoC`+5*p8k^a4VZ~JI+kS8>WP# z`G|qI`+$|zS6s8gDm|+=hVJT&$n%Rk#h3A}K4j1o_bHo!kc@?c;U~{vrjRyg!)hLqBY0Qy?N^#KYJUavk*9c?w{jD@DRxxKC-P@ ziqRqjSzv=Xp{=KQ9{xmVun2z)r+A7UA{zL}M^6Ax+1^LylPSi?eUD)NPkQ&N)P~3S zd3)~9gL8*ncqWzsV{y3xabma}0b7i7$xUfu%1i;sF&c9jAKp2PZ{OZaI-MBC_f0%Z zY{zT`KB%ot(N$QJM*D25RFrAiUnx8QT>TRcA>JMdH3W2LS(!@!hMv8Ds9BY3=L@6U z=0kDC$M>ok;C~F5C03Q92RLq3fEJw0mSElMZRil-sQoIpV;#8Vb+gW!>@q9rcdF(Z zmaTlsAZN2>5-ji4J{;Cibf_lE)c&#Jve(uQdA;F?tIT?9ZNZimyu6Oq8;%Q>7e=lS zxI9vs+ifwIzrP~=CYbo=k94Z^iGi0ele&uPGdbdtF&BpZP$^sFWtHyj_qnuM(MjQ| zsc%*Pzsi?}#;SUa9l?)SF)IX1DeJ#v1Rti=%#M}(Alctb4Y#bnjHyX0UZoja3h3n` zRn@Z0P1-~%UB7e%RZ`9BTg!I9veoW7$k*Yu=3O9B7?6MvpJ4wY@(A99FT(A|9T)nS%VRb-jI0sLSGTuQQ2s86Mns_7xgROc1AW;6kf`i(|o<#e(x zZ0*XozWJ(@{ZO!~=}lMAe(O~o=v~4jFLUTJsditdWTB}zfG<sO?20BHK9fBTOJJ5RcU)n=k$as} literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a7f0eb9923555c4cd83dc0943aa70483ae046b47 GIT binary patch literal 2460 zcmaJ@&5zqe6rUM8j^jk2#Pw0VoD<1!Nrqw2t19*h|P|P^_m%#Vyj~n<5EAyo9cCBdUSe<2<%vd>uFzG`I7!JSYOIYuzRgmf`l;{s8E4W@L&4oh^uxgI3F$_x z?*~IyiGd85OGA~)ushI7s^vU|gQ7bPoG)D)gb}^TABIx!nDG?msv=?BQ%T6dY{STx zKjSL(qo~;7rj$bFr{||O2i-)9fGIUzT%S7j>CCTNei$(dw$H}?HuDrq2T3YKq&(K| zdm--$&zF4#3X1{kMjVK z#K$N_2RK8A_y*d;yEwyYH6_%@&@bp$vWFkx)X4B2q;}hsF07OeOs!q4pa-P`D?=Hk z*4yY%2fsXO-3mE%eeSm408M=W7kr+1=7!w8KYP31I@ZHY?cpg9eUzcEE843AfZrjO zB*Q_*8?ZHos%m#N^xE+R#oidOtz?)xS0aFGAmZfe zNgX4d(o<-3-s?foXNYNCi3ET}U4_9^edOK|b19i+04ibt`GTxG)mRxdZwtxXbPEzF zIQ#!EzT1`hn?^Y&Lgi(>7uc01%;iSJcy2+t#eSNbiJxxe<^vJ(29cU_@=6bI&;6LG zB1>bjq*v;%ALaziDZQ{pOj5^HLa>d^qZLzXfaH}TRvzOI^IB0nUNZEG?VNFed*D)T zhe|+|GMbkuL^X_5petc|RbZg0uBePZVW4Y*0_rmJ(7*^#4;4Ypee%HAEu|*RmokHv z_KjUY|C3vwQKHr!esXcQJaSSivob=TV`;Jf?t-%WKJ3nM;Z z9p+AvZyR58$^59`&gbpBmvmx2x~LlNl-vqJo)m<8QH`ol6U`}c+=E&+w*lGtQa=)1pueFP`y6VA z!b){&qsVZb3vZy9^a8S)pscQeFc%2cKl4T1B2Y8> zXT7j2rx=aj33i^>ttz&EAV=icxtGq7T_gW!x%9VPlkb6<#(G}%JSqaug93+BLO|uJ z_UI&Jsx@P;)~pPr=A``8>#IQ&wk9D|MLhEL*A>{e0ZWP&T+qj>NaYt^SA;$tsn%SZ zEH*9zou4~ab=EM89OP$?Q%a$aY8Vx%%PW1Bem>5q?RlD{JWpQI$1>o*!kBkVXdF=y zqPe8#ej^JKv#-R^Ng{St6QtSzVIteGfxfDE4OdH5T*VGqF~}mM;s_G-k{IL#Fx+!e KBL5Pr{_H4TB literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0eacbf697f7ad9c6e41451a9dd222d13f5aec54 GIT binary patch literal 1305 zcmZuxOOM<{5bkb2#^d#dO%R|c5wZ{wjI?8Cg%A=#2xSQZgf^?>5M?fw$6Yhy9oucX z+YB?BNQiLY5^>>%kamy!3x0>MocIeob}6?ZSrBb?xvO1WkMFCt*xmIBj^($9{0*Cs zUpnRT*g@q3oQk91gwujd`Zt|W)LFqwYhuxE&noQFnK))`7j8M23@8C|>cQ}gPJHgb z4tK%f1AKcphhV|Zbu#n0&v(ADCjqAq$SC*~Bax#KZM}Q7&PA0LxZXR4`t5^vJ{Dqm zm=*;{+`A#0ssfp;a=l1Yog1YDrP4XHc9oXU4yI|ggo?Mx@yN8Mn6N2g2J$gPd*?kq6a75=@30SXAGelY@Xg}@`8t=g7A|{X+-8eeBNM%B~&_WR9?+P zy@2re?s16lg;Qf*OOYW=k?)5%?wj&eSf_dsY7wp$07aP3Le*rQ*{mswwK=Jy@E&@T zt6af;*u$p6Ba9vyPe+^UAA-_(m3F*^&yapMyrniTnpC@l`T#Q_!_C$3&3cXLoFFBU z7G*ISQ8_@oH#a{@^8$FE@xM>qQX{{03o)OAY#k2MW-dGO+N-LW{#{$r_eQ&8Do#wu zc6j&83`|e84oE3v%Yb$r>LpdPGHGoNo^LBCe1u(3aS%k%g!Jo~_9@CNVX4!1Xtm}fZtC^D)bIONc9TXL^aDzOoHijm zqx}`(K}-1Hiw4dC_9i&c+9cypgkt48x4$arJ<@Ldj^4K9lnJ z%UJ6;o0RJZkiWO{ezmk4B?%~0zOITa12ve%W;)P$Y=soGjwVpLS(HNA7)GOG$V7Q9 z1rv$LL<12k7#XSNrDq_`Md>Rrg~~>51>&+baIU!6#jbzFVaWt7sP?}g-_pf_A*WQZ zrE|t8F-$m1@*@%MPtGHH;x6f_vvkks4>u@TG?(iu4{>&hOCH(PiluseMrWw?Y%dFTh(4H6N~-TZcJ#51 zJ{t3Jy=FZ$mZZX3S-(eS!~{pp(-3iaXAJod7LPwJ;zV$n0slPH1{uB!Ulqty3Yp%<2zz_Bg_|2Q!d}!5kB}YhiHw-zpyOu`H^T4nG-8UNvhcJo?4K}noq|18YLW1Vip=tD>-beK* zR^Q^yPop>iQCs^Dj4j<>Dg8uFCZI}Bz_6GoylAA{(8chQuR&e6<(hRlxB{e{O3wqO zq$-CIce&NNMYyTLooQM9kKZ1wMXXme9xDQ)v zE$UNtvF4~vG|*lv8&&#{7qx+M>6K=(-00 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f7f326dfbc199e68eb259f01c4444e2f3dca445 GIT binary patch literal 2845 zcma)8&5s+!5})q*^w{g&>~4UNCm2FPV!$>lkdX2aLga%>6eI$QVuVKH>9#%DnQ5!L z9b+>-g#(9&_yZ7<_sD<2?Ooq_uJ4pH7YGSZ-81`<6-bOVJ>6X&-BtCgDzl9Z-+*WT zn``8kreXYFElxh0u=oI8@jn=dK~QQ8sxKN~SmV^ptbvu;0~@J*Gj%d|;Oe=RdRb%8 z&~rQWv*w_gwFWI@P-DG8+XrZ{NgQg?t#bx(=@#+m*2p0Z;(u)o&X8tJX#r&e-e);& zB{gc1HrWL3ZOyR-Txa0jt|fQs?=I|lw329(v*bCD*dgeS(Ruz6SY_Pq;L^I42w8d` zPi4aLDD9xK#ile5#Wcxt%3&R3(LN0Ym9wd2EEVC9fJiu>P@0Aj9}Cd38AoXvirH|= zSxki}cSek7kql#&Wl>HvU)g$Q)jnLYnVimK>2NrL=P_1Ss~-!#CcM|+6+;-LQ5X-= z3KLY|?;#35m@BhDV!JSj`K|$T^Nu0W8Xp+ayl?GW{AHk6hm-=XZGsPwxKbd3VHW|_ zF3|VJ4{D{QJI?a*O?~;GzF?5#l{Mg@0A@kT#^WR(_m(@?D)Rzx!z`n@6jy^1`ODqI z{mQhf!EKh)<>k}6pU(shy4?qq4;joP3&e!YzgTXaV)Q!>cft75Q72Pgo*7elV>F_% zOdil%^Z`vvx4u+qU%&C;XCIXw&54*Na?-K52eQ1O6dXl>P!X4wq+iM(4ZZ`U$N%lm z8Q&Mv2;$c#k&L=D2P-M%U}|^Bn2e)r+J9@Wo8*!+GK0fe-j%F-nz>RmVbj0RlO}NM zMV!(;q21#}nhg8Xg`BYb?cUy7eUV7og`4b0W4O#Tnf60ClyU%QAJEAob+qUYXGu!> z6%bQ8j^agcx+u?{f*z-0mdX~`C|-cUvs=i*9CVxI#}$Y5vr{wF$L0y&||MnvU<}L^S zP%vX0Ks|}_0MM^>^!%HkNxL|>5>FTtfGwbKAv;%tuU0-+2Xq>xBN&IXOQ(vZjty5K zEZup;bC4=cP*h?jN=q4ETK8F!L!LYbO#FE@s9>LfzL|-!MtU{uDrM&(kHQK$q4rN* z)wDZ-LA(fq*RYTe5b=?PS{P#w z)74d!8`U9)OIt;U#0pS{kFrr^ss`6jFadBuktzT@1bu6*90E{*!e>I^b0sR=hv>WO zD^KDzlsNzxM#j>YR^dQd!-Yp2kZIgC^79seZt*@c)UWW?4sjJ2LCz(f0v|H&8FvlR zunfz1XaY&yucI8XI@C$%#;S|uQzO`4)qIuWACnW9|dxp3-2d(ON4_>9C z(_H@NLzSl*1hZUaHGry4?qH@7pkRBUio=B(k98yI`F;RT1$A+R^BUu$K+Iy*Z$`5; ztspLY!N;JE&l5r4462qQbp7pVO&yb80=M$lU??}C49X88=C3QVQ}sE0&qH3745#yL`(%<; z@%}f+iw|JHEsUz4^Q7hasD&Wc>K%;yCoM@7u=|jGW)Fd+`x}2b6Snc^f{Z z%S2CKK-=ob1zdT|)jtbvD*B7iQ+h`|r5C43ua1e(&MYrJ%P^BkDtagX11U&r=a(=2 zCF{{&AsvgVeK(-o+^Rab7lx_~hG7*pQ%GJFIaN}$DJOiV`ZL!B%X=?_&YMz5WN_Q3 zFnETCwxBMxVDvFI9fbb?$Ni2?|0&)*Ug4*Xg`Z#>|K>RUV|*SQSo2jB2PoLVj~%!D F>z~xb9Mk{+ literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 000000000..e2b7b4445 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py @@ -0,0 +1,39 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pep517.wrappers import Pep517HookCaller + +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: Pep517HookCaller, 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 Pep517HookCaller 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py new file mode 100644 index 000000000..4c3f48b6c --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py @@ -0,0 +1,41 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pep517.wrappers import Pep517HookCaller + +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: Pep517HookCaller, 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 Pep517HookCaller 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 000000000..e60988d64 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 000000000..b0d2fc9ea --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py @@ -0,0 +1,37 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pep517.wrappers import Pep517HookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_pep517( + name: str, + backend: Pep517HookCaller, + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py new file mode 100644 index 000000000..cf7b01aed --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py @@ -0,0 +1,46 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pep517.wrappers import HookMissing, Pep517HookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_editable( + name: str, + backend: Pep517HookCaller, + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 000000000..c5f0492cc --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/check.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/check.py new file mode 100644 index 000000000..fb3ac8b9c --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,149 @@ +"""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.utils import NormalizedName, canonicalize_name + +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 + +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. + """ + + 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() + 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 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/freeze.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 000000000..456554085 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,254 @@ +import collections +import logging +import os +from typing import Container, Dict, Iterable, Iterator, 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] = (), +) -> Iterator[str]: + 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: + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 000000000..24d6a5dd3 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88f32e7aac986c68c8dc8844af99c7aa7a7a2075 GIT binary patch literal 346 zcmZut!Ab)$5Y6`DQs_VAS}>cIUPT1KqZe;pLYj=*uxTbFBeH&hzv74Z6TSKuo}9Ic zA|03+9y7c*^Kh}43y$IC+HbhOPvCDf46Zn9%f*X(;hQ_LoIRi4V3B+Dj}fXY5G{e1 zgfgT`HpY;8nXMaa54D@$E}O%dF&>>UucFMD>Z^Rb=_f2hcYAcn2ZBkeG4y7fxeK%jnZ);VNt lSQJXKQDcT;C+VucAJm4YfsE<$cxW$Z6N>v literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fad032c290bfa2c58e56e6fe59bcd341307dc8e2 GIT binary patch literal 1633 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cccdaf52a17688f3d003357c0cf2a92d84740746 GIT binary patch literal 21179 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 z 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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, + install_options=install_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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py new file mode 100644 index 000000000..5b7ef9017 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py @@ -0,0 +1,120 @@ +"""Legacy installation process, i.e. `setup.py install`. +""" + +import logging +import os +from distutils.util import change_root +from typing import List, Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import InstallationError, LegacyInstallFailure +from pip._internal.models.scheme import Scheme +from pip._internal.utils.misc import ensure_dir +from pip._internal.utils.setuptools_build import make_setuptools_install_args +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +def write_installed_files_from_setuptools_record( + record_lines: List[str], + root: Optional[str], + req_description: str, +) -> None: + def prepend_root(path: str) -> str: + if root is None or not os.path.isabs(path): + return path + else: + return change_root(root, path) + + for line in record_lines: + directory = os.path.dirname(line) + if directory.endswith(".egg-info"): + egg_info_dir = prepend_root(directory) + break + else: + message = ( + "{} did not indicate that it installed an " + ".egg-info directory. Only setup.py projects " + "generating .egg-info directories are supported." + ).format(req_description) + raise InstallationError(message) + + new_lines = [] + for line in record_lines: + filename = line.strip() + if os.path.isdir(filename): + filename += os.path.sep + new_lines.append(os.path.relpath(prepend_root(filename), egg_info_dir)) + new_lines.sort() + ensure_dir(egg_info_dir) + inst_files_path = os.path.join(egg_info_dir, "installed-files.txt") + with open(inst_files_path, "w") as f: + f.write("\n".join(new_lines) + "\n") + + +def install( + install_options: List[str], + global_options: Sequence[str], + root: Optional[str], + home: Optional[str], + prefix: Optional[str], + use_user_site: bool, + pycompile: bool, + scheme: Scheme, + setup_py_path: str, + isolated: bool, + req_name: str, + build_env: BuildEnvironment, + unpacked_source_directory: str, + req_description: str, +) -> bool: + + header_dir = scheme.headers + + with TempDirectory(kind="record") as temp_dir: + try: + record_filename = os.path.join(temp_dir.path, "install-record.txt") + install_args = make_setuptools_install_args( + setup_py_path, + global_options=global_options, + install_options=install_options, + record_filename=record_filename, + root=root, + prefix=prefix, + header_dir=header_dir, + home=home, + use_user_site=use_user_site, + no_user_config=isolated, + pycompile=pycompile, + ) + + runner = runner_with_spinner_message( + f"Running setup.py install for {req_name}" + ) + with build_env: + runner( + cmd=install_args, + cwd=unpacked_source_directory, + ) + + if not os.path.exists(record_filename): + logger.debug("Record file %s not found", record_filename) + # Signal to the caller that we didn't install the new package + return False + + except Exception as e: + # Signal to the caller that we didn't install the new package + raise LegacyInstallFailure(package_details=req_name) from e + + # At this point, we have successfully installed the requirement. + + # We intentionally do not use any encoding to read the file because + # setuptools writes the file using distutils.file_util.write_file, + # which does not specify an encoding. + with open(record_filename) as f: + record_lines = f.read().splitlines() + + write_installed_files_from_setuptools_record(record_lines, root, req_description) + return True diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 000000000..e191b1343 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,738 @@ +"""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, + 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(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.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(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 = "script {} is".format(sorted_scripts[0]) + else: + start_text = "scripts {} are".format( + ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] + ) + + msg_lines.append( + "The {} installed in '{}' which is not on PATH.".format( + start_text, parent_dir + ) + ) + + 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) -> str: + return record_path + + +def _fs_to_record_path(path: str, relative_to: Optional[str] = None) -> RecordPath: + if relative_to is not None: + # On Windows, do not handle relative paths if they belong to different + # logical disks + if ( + os.path.splitdrive(path)[0].lower() + == os.path.splitdrive(relative_to)[0].lower() + ): + path = os.path.relpath(path, relative_to) + 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)) + 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)) + for installed_record_path in installed.values(): + installed_rows.append((installed_record_path, "", "")) + return installed_rows + + +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( + "pip{} = {}".format(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( + "easy_install-{} = {}".format( + 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__( + "Invalid script entry point: {} - A callable " + "suffix is required. Cf https://packaging.python.org/" + "specifications/entry-points/#use-for-scripts for more " + "information.".format(entry_point) + ) + + +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: 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(_fs_to_record_path(destfile)) + + 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() -> Iterator[str]: + # 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) -> Iterator[BinaryIO]: + 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) -> Iterator[None]: + try: + yield + except InstallationError as e: + message = "For req: {}. {}".format(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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/prepare.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 000000000..a726f031a --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,642 @@ +"""Prepares a distribution for installation +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import mimetypes +import os +import shutil +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, + NetworkConnectionError, + PreviousBuildDirError, + VcsHashUnsupported, +) +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.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.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import RequirementTracker +from pip._internal.utils.filesystem import copy2_fixed +from pip._internal.utils.hashes import Hashes, MissingHashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import display_path, hide_url, is_installable_dir, rmtree +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.unpacking import unpack_file +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +def _get_prepared_distribution( + req: InstallRequirement, + req_tracker: RequirementTracker, + finder: PackageFinder, + build_isolation: bool, +) -> BaseDistribution: + """Prepare a distribution for installation.""" + abstract_dist = make_distribution_for_install_requirement(req) + with req_tracker.track(req): + abstract_dist.prepare_distribution_metadata(finder, build_isolation) + 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 _copy2_ignoring_special_files(src: str, dest: str) -> None: + """Copying special files is not supported, but as a convenience to users + we skip errors copying them. This supports tools that may create e.g. + socket files in the project source directory. + """ + try: + copy2_fixed(src, dest) + except shutil.SpecialFileError as e: + # SpecialFileError may be raised due to either the source or + # destination. If the destination was the cause then we would actually + # care, but since the destination directory is deleted prior to + # copy we ignore all of them assuming it is caused by the source. + logger.warning( + "Ignoring special file error '%s' encountered copying %s to %s.", + str(e), + src, + dest, + ) + + +def _copy_source_tree(source: str, target: str) -> None: + target_abspath = os.path.abspath(target) + target_basename = os.path.basename(target_abspath) + target_dirname = os.path.dirname(target_abspath) + + def ignore(d: str, names: List[str]) -> List[str]: + skipped: List[str] = [] + if d == source: + # Pulling in those directories can potentially be very slow, + # exclude the following directories if they appear in the top + # level dir (and only it). + # See discussion at https://github.com/pypa/pip/pull/6770 + skipped += [".tox", ".nox"] + if os.path.abspath(d) == target_dirname: + # Prevent an infinite recursion if the target is in source. + # This can happen when TMPDIR is set to ${PWD}/... + # and we copy PWD to TMPDIR. + skipped += [target_basename] + return skipped + + shutil.copytree( + source, + target, + ignore=ignore, + symlinks=True, + copy_function=_copy2_ignoring_special_files, + ) + + +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 + + # Once out-of-tree-builds are no longer supported, could potentially + # replace the below condition with `assert not link.is_existing_dir` + # - unpack_url does not need to be called for in-tree-builds. + # + # As further cleanup, _copy_source_tree and accompanying tests can + # be removed. + # + # TODO when use-deprecated=out-of-tree-build is removed + if link.is_existing_dir(): + if os.path.isdir(location): + rmtree(location) + _copy_source_tree(link.file_path, location) + return None + + # 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] +) -> 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: + 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, + req_tracker: RequirementTracker, + session: PipSession, + progress_bar: str, + finder: PackageFinder, + require_hashes: bool, + use_user_site: bool, + lazy_wheel: bool, + verbosity: int, + in_tree_build: bool, + ) -> None: + super().__init__() + + self.src_dir = src_dir + self.build_dir = build_dir + self.req_tracker = req_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 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 + + # Should in-tree builds be used for local paths? + self.in_tree_build = in_tree_build + + # 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.original_link_is_in_wheel_cache: + message = "Processing %s" + information = str(display_path(req.link.file_path)) + else: + message = "Collecting %s" + information = str(req.req or req) + + if (message, information) != self._previous_requirement_header: + self._previous_requirement_header = (message, information) + logger.info(message, information) + + if req.original_link_is_in_wheel_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() and self.in_tree_build: + # 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, + ) + + # If a checkout exists, it's unwise to keep going. version + # inconsistencies are logged later, but do not fail the + # installation. + # FIXME: this won't upgrade when there's an existing + # package unpacked in `req.source_dir` + # TODO: this check is now probably dead code + if is_installable_dir(req.source_dir): + raise PreviousBuildDirError( + "pip can't proceed with requirements '{}' due to a" + "pre-existing build directory ({}). 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.".format(req, req.source_dir) + ) + + 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 req.original_link is None 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_using_lazy_wheel( + self, + link: Link, + ) -> Optional[BaseDistribution]: + """Fetch metadata using lazy wheel, if possible.""" + if not self.use_lazy_wheel: + return None + if self.require_hashes: + logger.debug("Lazy wheel is not used as hash checking is required") + return None + if link.is_file or not link.is_wheel: + logger.debug( + "Lazy wheel is not used as %r does not points 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] + req.local_file_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 + link = 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 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: + # 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 + wheel_dist = self._fetch_metadata_using_lazy_wheel(link) + if wheel_dist is not None: + req.needs_more_preparation = True + return wheel_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 + + self._ensure_link_req_src_dir(req, parallel_builds) + hashes = self._get_linked_req_hashes(req) + + if link.is_existing_dir() and self.in_tree_build: + 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( + "Could not install requirement {} because of HTTP " + "error {} for URL {}".format(req, exc, link) + ) + else: + file_path = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type=None) + + # 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.req_tracker, + self.finder, + self.build_isolation, + ) + 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( + "The editable requirement {} cannot be installed when " + "requiring hashes, because there is no single file to " + "hash.".format(req) + ) + req.ensure_has_source_dir(self.src_dir) + req.update_editable() + + dist = _get_prepared_distribution( + req, + self.req_tracker, + self.finder, + self.build_isolation, + ) + + 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 " + "is set to {}".format(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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/pyproject.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/pyproject.py new file mode 100644 index 000000000..e183eaf86 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,168 @@ +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. + elif use_pep517 is None: + use_pep517 = has_pyproject + + # 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", "wheel"], + "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, or wheel + # (which is needed by the backend) in their requirements. So we + # make a note to check that those requirements are 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", "wheel"] + + return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 000000000..70dea27a6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,94 @@ +import collections +import logging +from typing import Iterator, 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], +) -> Iterator[Tuple[str, InstallRequirement]]: + 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], + install_options: List[str], + 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( + install_options, + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a384ebb06724f52c7f0c6f3d1fd0fdf53fb89d21 GIT binary patch literal 2682 zcmZ`5+ioPqwW_+Or>E!Q@vPUoW(nIQS%s0XXIFVcNdN&NAY>4Wg3?OVYIoI)+uJu+ z*Q~MCmH_VqFNhC7NH%Z$03TCtD0$g8o)XxQUCybw>@1fW)u}qCPn|mVnxfnF2#h~|&1he`U04JQLB$%xjqu3Z>GI$Em)&uLb&@S4f=wfuZzJ24KBS-c#C`Y2=~rdu)*8H z7TqnvJHir8aanZ7Y>RA>vCX@@ch3$smmF)rc^NqS!ZGW*Xqa^{UoXwq4RM8EhPer| z17|is+6KSEuY$CzoZcqGt@~g#*&Q~t`-T!SQias^TS=v~`*x|4B9Bt--WG>bk;g(e z-kX-G7*g#eITyJK(_(U;f&d^5%1Blsl)#%vk-^srsc+6TLAPRnH>u!$z747&?*M{6T=4VC79Lo00hBc1&mW+amFoh8iWMQv^f*jm~n?U z0c&szjCPl5MQGx?qMD{k+j*1;?MR`fGT)6ENL>uv<9r2Xg<96MCLv@12&21SQP~69 zkZHRT>DVA&5jg)JLR!<7sw`>jJA99##*H&@2~bo_ic*H*7GOrP-mfV(;~P47 z21SRV_QEg&C#SgYgyG>dO6Om!N=dna7ox>0w_+G2UM;%-uv=6P0GABtz%n%50q-r7 zUarB{C%l2)!(_z_u5JSOh}7g&^3TC3t?2=&*4{+_(9g*i?2LYFXf++PzY$6fEt6wx z_vA*B-;L6Q`;Z!Y0}pLXibK})`7&RKOExeaFzI6DU(c8X8w zY4?4?9UCHbW>J#6w@CHk5v33WO8yQrhaPg;Jz0YjZ76?MTeV#`YNu}2E^mJ7Qu02@ z*KMLY$CKHqx+}-P-L1xT_q=xjGCn3p1gM8d1=u}bLu&1v_tkpcMhhY2&#dZEd$$Q_ za&J`=qz&DZsprF(mys{-3JIkSUBypwU+oLuv`#;TUcTcQ*5_2=?+HJKb_{tFjiL1Y z{pcpgYXx8 zv#P%WaEVKwrX2=9^cM4)J&U;xWsiEydpO%Uj6HNL_J7A_KR6BcKgVGYSd)FvT=pGn LvHv<=?>|2RFQ&em literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..655bcc79c3e2c0f002598343c53913d96fdb239c GIT binary patch literal 12247 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 SMe7i`;+NtumvYVY!~X?>y>m+d literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a96c3208d2e76b39117077265e32b13c197fbf1a GIT binary patch literal 13577 zcmbVSS#MlNcD`HRzHBxZQH!Gi0o1%jt zl&ZRJ?N#U0Io~-|&9SkZg}>{coK|CJEbBk`G59xukCzeR4_wQ7%TiX+QnqqxcF~q! zr|8J9TXf~uD|+&qDf;+zYj!f^=n`b2S} zK3SZsZ!2z-x|!NkeS2}cr2X2C`p)9c`mW+G`OelJsP8WBmUK|tQ{P+ME9sHizWRg3 z2PK`WJyhRc+%M_T+Qap*7}{1eqU)GP9`iU*JRoIbwS)CT#Y0GsFWSXNqOoXO^l0?h zg0sikV-+8dMx)0TZR9-`WtqoNJRG@e1vL@5%TL^OiciYdaD7STzy{e*?mmk?e? zIJM{&U)iG8juV#JsdnA5qF2sXx9#HTS1t8`+I`1TyKg(iGx*x0_Tpj`=hVSyJUWAQ=hY!KekW6WRXu|G2cyRqJoTu0 z?2cD_ZNyP$)#K6GftClOGYh^ttO{sxUPf}%IrT)8mC>Gz9^GQJhcND5jCxQx3*+jD znnv5#*V_*F-=FJx8?@ytb81G-qTP3})~D1_to10?dSQLEgVABk`)TzI=KTid%$1O~ zLT{8jtDZy299loGUO?*?qKmiP;w99wm)~4))VI_zlwVfIqsM!D@S-|_oGSx4-&QA) zb9Er+CG|3L-cqM}J3Tn2uU=87QTn!Wu2_XvSNG*EM>pD49o3^o5{C=bS`@a*I<7Vr zbHCxSoGaL=|8}|7j^e^dI(GHlOJ_@`UpssHJLl(KP2E$Cl{7eAuGPx(wJ7z@R4Yju zoKGSx-zJqbb?RNH#wfYiN~+C9xt3tXBr7M+YOM1IhZC#1t7_Ct_sms+kDlIg13B4xmm<`J9q*+o? zrK#9pd@)K&ZCxwHl_hKea)P<$Y>9gT{>~ItWUo8$a^0#-6+?ilixixU3_Z# zSn2&I3-5IcGwHS~Z(X`{@$%KPXG#|@T|Iws?n=7zzO2&avu{>xQl_mwei%O$grUE6-SQf;BMTbEDmo+fh^NbJmujx zgI_<&M1JHNISe_G#kY&!K-rKNBPxe;k2FqEKHVlvsRmeeE*%}0}VQ9S^bB@eyZ~1wOFn3cfyo7WyEgLyR6}^a!KJ5EZhi7e}>)&9$V0RAsFV z#?kxnnFb|LsG5{Ym+=+n5&0v&ZT{u#)xGy^&`iHU!I_(bWI+c!7^PC0E0yYCuNu?& zQt3v!Tr(wlFGupgiZx9Pp?yZ=fBgibbzU|p&P#`g-b9Ew{lIdvj_rNsIL=p&>wM{W z&KFL``Fz}W?)h2gGbb4Tt+cq0ak!wD+06{1KI14Gtm1%GT>N@b25jRiUuB`Z0yP35 zn^jq`M=s5o)n5Qr(|~--^`t(j+-Rm=Sue(^2ja(u3Xfxqxe6E8|6_Wc-XGv&h~A`e zpWd$CqsR-MA}?fw7kpB_<1J_P6TLFl$S_BNqmh;x(!yiif;V^doTi{D1o|ob=%b9D zVZ?n*$HC46>}`07T$PUWxjY7+71&^-{nPwh?__{nLMf6^A;hGz9~jp09RB8dj5O)w zoYn0co4LV5fqs&mA7M1jNLai>-(!GkL!Q2>44f|z!0+uclJgP@t)PS@}FYam?5 zyX%~>-rv^ECT=GSB03#_-%q`6&~$?+kniU$>l=)9dDI&xh_C}TzZ^&m&(af*wi5uW!PM}e}I|6mc4C} zhT(=jULRpJLYDOryhTPu*E%ghC<_caqK|~?)8ygt|HSD@P zfEU&Qj7~FBo{nN51zE=?g%NXF*q4@G*F|$rC-nOCd%vUdtE6$7>wRFho6puRbof1l zm@fw_FXZ_K6L;zz?tA+8+>Yh zJ@eb4VsuwOywa*wlOx<(sP7{oIdQpJZG>EIY`%?t11XpnLi2+JO+Cboy{R1sSt3%5 z^CXw>^FHDT*?uF^%T6=kZk-e|5KN7Bon1$1F6N|U25FA7k^PI)iRxmbsiP9qv!LO0 zNAzI}GcHAqnB{NORHw%G&i!+YL(SsHK}YRPmp2*Qu-~GXeHHusvJ9 z&gLGQS16qNe-!co!fAx~pAjj04ZFQ;>#TAbFl~{BY*=>hx?TQy@%GoPA3&5ZXY_#t zDtm6hiGNMA#)ZFP_p!>>o zAQZ7KO7rb%O_dgF&G~Xo6jHi(ORQZwbN0$rA`=C>rc}bjzQZngDANhfn5@!Aa>RS3 zo&?hSSdWw4%o-2$j{5-D3itgL>c+({|hfW?s#rs@3tp# zVt3&D_RFBKZ2z9V%JD?MQe6)Lh;d|47r6-Ww{SK-frqqZ7BRjOTM!DSSL$uww#sL z;2>SX7qHSEs~aT2^2l0F;?WNJziW3#&J3t|=Sq1m zp_5sg=t$4WBmiz!Wgw46JEI-9v<;(7>6;yQZTnqlNqp_lU3~47uZ;dv9Wsm8|iN&Y^QKV1) z8lM8LA+fET?R@Rnxvy6r?eUahK4GVs6SZcgT#HZ6thc>t0G*TOsB~HDdYtA&$I=3h z^#ydU-#~=<`NsGt>`upfoLX8c$4gPH-$I4dk3NJ5R{C8wDKckdy`wZ}G;z|Py3z?-3}a1l?9VMEyUC3&K@VM_e@yjiqyds`M>5R3BF? zsDB)21ga9M9$25ZeR?{f2ApyR9lj>`CM<{aDfPTdks4Opl%+3*SC^`BSSdG97Po5& z5TmH_ipE(%+gX9INDQ?-BEXb9!V&@kgDHpMEC=YJ%n;)k9~Wl9{4i;T^T;s@J5odN zaR_6czHoj^j5&m2*}KUIr$fWMDx6;l8*r8kNPUBVhQ=B~&g`a_@qg+^w#s;}Vr=#$ zg3m#RMA)2Pjw;wxgPLUF*zWS+X3Ct7NKZ}dq`n3B8OrGmi^I8QBkFDHIoJa1ASO&s z1dzdjG1wEJ9Xbe`joM0o$4uR&^34b+FpL)92TEk9vc`tN7ZPr%gAGPRXDcBq%5hgD z8M37Lz@E;87dh?q5x4F&td~~|!J`;B@<=$}PT05fW*{JVK)yCDR5d}x|JQn@H?wA0 z#?~{#{EaL0f7uVtUV0Oj9bQ4$pFLR|q%$<)a*3HqqB_o16`t4r7D-Qs%Qbl3+KaI9 z+B#ItN*q?}EmBU%M^GMzal6%OY6!@Jp$H_bR5wNkfxYxq7P<=Y`{$4r6unM@&IF@S z)@+idh0F%FGNz9R)t6aQ1fxV0jQRwk2|yTec=``f<~fc)CP+B`^X_?p)T*H7&>!X5 z%Ls7`(fw{5<>3|~qkOn-0A=CK32=kpMnNgSW}vN6cu;^}&gNh$H}+VQz0w>-L*mw1eI=>&q7wE%j( zPDVD>;-=n!Lr4&1mJ9)3odCOYR|^yAXm95PUp$MI80#iKAS2^+6vCkAa*orHE4a*g z<1B6#fcXSbr9RLg{PCJwnr87qT&BzHZJtrYh}H$)xtN>_4 zA>@P*(w$q~dA@HKKFjRdhmaz9M@SG+w9b(KumKNAnrtLnht|ur*H0yyJKn(I&OR`!ezQyOQ+_6zps~s6MAU4=W3KZc-WR|u=O(HR4Zi7 z`cAT^px1q@f5gwxUh8#!(mzBt%v~|0)(O+^ociE^p-pbq z4TD$KCpr;ILwJKnU9JIOWXo88#0(km51A5FaSW+0hx3rwZ+jD(IYTreeOP)LAy$Z} z@Dv>vHe4RCeUzh|AL7LZ^aY$I@9(CKvaSiQ1z<}Etm3}FGy(z!j3!mYsoLAy5N8#Ke7nmi zWw=UFS*X;5dvL-6CpQQJWw#2_aj%Obf^ktUoueligJ#(}h%D>tk&dOaTT9i-l0e!@ zQ|opMlAgwnjAo3Rdv-W?&z^?!Z`ybuGWw_3J9uH~nT>B%lO?^#47b&UNsd$x3#NY3 zydE`TE%!!`vPwpB29C3k?o$-~l%$(NBA4-C_6GJ2n!ZjRznbL~^+SIoAqi z%Ei+RPh|kyaJNSi=-a4iWFJrN+>qavc#T2Wg05bJ**4IcEiHfP7~y*dH8!t+sO&Gf z0`>z;w(p|Y0hDrmQNE7Husct(3o6TvyRL7(+~U;l_8B{{cGtLI%E*hUgV??ALAL9U=6rcRL8 z5KzKB@0+3K&)8OkfJEe^)ZC}&5`0j}KlJGl*sBKyMdv0_V`@V|2mRxe<~PU(P5J-_ z+Rg5BT!}em=GvO#DfKuSs46mZ(iE2#$`xFKRN=ZBAIe!t{ayz@XSc)i*FQ$yFF0?? z%)A$flPGWR^8AeFNU3Q0`=r`B`u!KQ`#xk^PomL5da9>mJjgo8CcQI(gP5{QpIA@r z$K`|vCV}+Q&qKE1OJp0EsBOnj$~6V9B#d-ha0q%RF^Ob5p7}=FiC^xx(0S5+EyK}7 zE}}$#mlvSu>&>nDqM0G4MrQR7UI$pETSLSo9Eh|qVE8`%ct}Yjf(}yVX0_RlO`XHh zhn1+6gtsUW7n*b*qK$B0|01XWDF};NZm!myM&;}9e>5A?qqsZ!7g7sV9VgPa5rB|> z@996r#-@-YX@EJ2&`WctFTU}{*}1F4-Wl9xRE!)H5y*QhU2TCY1etAb>1rL0OJnL8 zga$urbW1Yy@1k>~cQ^6FITZYg{6M!ee8wJS;|{n40dElJ;r-^BtjW6_XA=@uUts34}g>;_aQn9L=4c;_{>z9k*COXuhY~kL4=M56zCOGb9wH#h+ z#xnptXm+jVogzz$i$;9jsAiCxh}Ero2OtA_P&^P&@Is40xl7bdU(dBiK6>Nb(%Yvl zpFj1=g|nrj-D^Y;P{p{h2$Ng%z2S(&$BmQh=uAk0BBM9^p05d0e&iaVLE~}w*D95& z!csBSmGCf7M^a_75SlC2zSs5XneeO`hUOwJ0-{C*j=zd-#&L+fOSnY5YJlR{Jn{Ym z2J8x4UoD6Myl14#5GzGx@hIbVu^g&uTxrW2!T#~Rwg}PCo)25?T5Ww(V6}#ao_X%* zv*8JO+;@C-)>NAT-{P@at1J)G*k+d1PF^eZ=z`ahFySgoct}wJPs5wmSf_BvI}a{^ zaz>_h?b5|7=YI#l4epMzHeNIt5d*f`^YIMsHyVq&*>24=_2MiD4id6p_So~sjvYIC z?1f{;W-+*&BCfYqt>Y5ibOf@&Zx`tbZb8CYl*lE#s$wAqHga#Sm9B+{+kD{&=c<6AEgY-O8tXOW z{TGiZu^W!*Z1uRw3Tz)`N=p;eIM97dzbAq?^w$90P=6UK4yHez^}y)IRq6M98vTV#8E?a_S0n5@ z_q=DqQ)QIJANC?1KJ*>aCWnk74<~SO@z&)FyypE1&LoalC=$``MOw3nl}1?PJl9tx+Qm_`dK$>Sj&#n!;G>}FlDZHOSshW-)jy%7Rc z*6&opbCex)`1BqMnW1_$hi*2$@l8;{#dR1~muBR^r5?vj9X&s{dhm3!jps}BzVkQ? z9)9!2>3CSkX&TR|3)a-zkkbFiPcOkGBwyD>4NV?PJs49e&0f4B9uhr%}eoHuF!hoeP|>nR|bL0ta$E4v`3gz=dXoR&}6B$L;;_UO8U`-uPGJ^nrY> zS-arQ&7Cti6sftwJ82fr3!0TuN&h*D&FOM*bNLf|rFr9un-MEbcUb|W;r=yQX@O?i zWezPFP4#TvL-K6sfYAse9urLqxVVjPs&J1A8Gv`RGk7p%9!KmR&Npy~OdxwB-lO!u za2>qQjB4@B;1#U7m3?TqUL%6G(AQB>L|eeZcaGO}E{;#G+M3D=ZKCPb1~pJRQL`dG9)Ulv=#^p=)gL z9;0Qp$`4*brxR^FKqv0&y&n+cBK0qdxtLC19SxijbB6JJcB22{#n=omCd{Lk{yP<% zH{9xraiTAA$dC~qIU0xBE~Z{*bd^!Uh}SRXBI6iSG_KQ;vx1?)G{(023zqzt5wWD8 zEs^AM1O^U~z*Vulf)nP=?@35WEB-Yi-wHhQWQs@Xh@H<*;{SQe~q3i$v literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e79adb68b56bc01e7f225a1450cd22d38d00ca63 GIT binary patch literal 22262 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0265e1b905f94e3a6255a3a39aa9ebb42258067b GIT binary patch literal 5924 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed9d00bbd70eb5f93dcf53d29cc1f45fea65687f GIT binary patch literal 19032 zcma)kYj7M_cHZ=3W*URR00cqsEj3B;F%mHlC1R$tt{eedo2IQN|IJesYsv0Mtj)%P!XnRipE|HYfZ-w1AA!WI0n zkxF?f�&7^sYJN)YGxYG^5NXX^(WhvpAS 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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 ((elhs == 'python_version' or erhs == 'python_version') and + op in ('<', '<=', '>', '>=', '===', '==', '!=', '~=')): + lhs = NV(lhs) + rhs = NV(rhs) + elif elhs == 'python_version' and op in ('in', 'not in'): + lhs = NV(lhs) + rhs = _get_versions(rhs) + result = self.operations[op](lhs, rhs) + return result + +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 = '' + + 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': platform.python_version(), + 'python_version': platform.python_version()[:3], + '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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py new file mode 100644 index 000000000..6a26b0ab2 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py @@ -0,0 +1,1058 @@ +# -*- 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 withdrawn 2.0). +""" +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',) + +_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) + +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': + return _426_FIELDS + raise MetadataUnrecognizedVersionError(version) + + +def _best_version(fields): + """Detect the best version depending on the fields used.""" + def _has_marker(keys, markers): + for marker in markers: + if marker in keys: + return True + return False + + keys = [] + for key, value in fields.items(): + if value in ([], 'UNKNOWN', None): + continue + keys.append(key) + + possible_versions = ['1.0', '1.1', '1.2', '1.3', '2.0', '2.1'] + + # 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 _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) + if int(is_1_1) + int(is_1_2) + int(is_2_1) + int(is_2_0) > 1: + raise MetadataConflictError('You used incompatible 1.1/1.2/2.0/2.1 fields') + + # we have the choice, 1.0, or 1.2, or 2.0 + # - 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.0 adds more features and is very new + if not is_1_1 and not is_1_2 and not is_2_1 and not is_2_0: + # 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' + + return '2.0' + +# 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') +_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.0 (JSON) + 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) + + 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',)), + } + + __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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py new file mode 100644 index 000000000..fef52aa10 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py new file mode 100644 index 000000000..913912c7b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py @@ -0,0 +1,429 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2015 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 + +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 + executable = os.path.join( + sysconfig.get_config_var('BINDIR'), + 'python%s%s' % (sysconfig.get_config_var('VERSION'), + sysconfig.get_config_var('EXE'))) + if not os.path.isfile(executable): + # 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'))) + 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: + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/t32.exe b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/t32.exe new file mode 100644 index 0000000000000000000000000000000000000000..8932a18e4596952373a38c60b81b7116d4ef9ee8 GIT binary patch literal 96768 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 F{{j_Hb~FG0 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/t64-arm.exe b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/t64-arm.exe new file mode 100644 index 0000000000000000000000000000000000000000..c5df4869da5ee0970ef4f652d967caa80d5ec63d GIT binary patch literal 180736 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�=7K@@+*KjCK2bkM{rnwW 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/t64.exe b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/t64.exe new file mode 100644 index 0000000000000000000000000000000000000000..325b8057c08cf7113d4fd889991fa5638d443793 GIT binary patch literal 105984 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

^h^N4aZyJe%k(7BL*-gn=9``8`j0CuR45%cHI z_uuQ8!-|TEvJ}r=zF@%uKc8U@W1eNxUymJ(e45Tb6KDNieQcKe?L-gR8zZj^wFmi= z{5sAxrfP3BOZz~T$3h=Gi%jFg1%D>!6t*l^`zH2G#1PiYtvOBSI#q&y?8qN57P^LA zq9U)rQU+*y!XEgsGMCJM7yWOS+9lW~^axz>9gyv{Pu^qsBg%ZkfzkaN`$zV#>=oFn zwANnf4&g*eu~pAMC~1dl8FZ-^aeQgZ7=osPU=58@oke z55pen;eU@Z`iL!`$;1-VA&$VF4gN7ttU>relx5d-_x=|95B47HeeiYJZ$$38(ddJH zcrW3>{OR2@KF^H}gAbdZDX=AzyZHSizB_(9`v&$-69)D4WBjSaY@YVD`kl8;nl#Cu z5h1U}Tp}-l|Nde9w|3Pc@Aps8-X~fh_EGq!b-~*$a&nv>05-_n;)z{t+vW|PpX{Oj zKE#i|Gsq9Jhpor%Fqiu6y5}jjnz?*$b)h|UO;3NGd-k|9?ZqeVXL!9~vaIO0E8bVb zejzv5ZG0}~1A7{a3!hob11v4ihxvzh!S5>3I?4E~N9+^m8@sHve^M+wb{f3t2VUsD z*C*C&;z_`=&t~mbE@mHC`k7cGl3rKU9U84p?fzGxTg1q z)-Ai@eQSs49?#VDZ(BQ5_sXt#*VAn)X1Lk5l>kvHP6SDZX>#ITM7@`jxR;sQ>OG+Pe$CuXbGOdj zGq+|zTtQMnhk{-O{R=KF7*}vZ!OVhr1xpLo6l^NkTCk^}W?@_*Z|>hH7&o`>+{q8j zm_Kv=-1+n7FPgt}{>u4l=C7T3KtbFEnHc+rVzeuEi5hE<2hHiD6S}>D5l co{tw5U0O7=?|={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(\w|[-.+])+) + \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') + 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() + + if not hasattr(ssl, 'SSLContext'): + # For 2.x + if self.ca_certs: + cert_reqs = ssl.CERT_REQUIRED + else: + cert_reqs = ssl.CERT_NONE + self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, + cert_reqs=cert_reqs, + ssl_version=ssl.PROTOCOL_SSLv23, + ca_certs=self.ca_certs) + else: # pragma: no cover + context = ssl.SSLContext(ssl.PROTOCOL_SSLv23) + if hasattr(ssl, 'OP_NO_SSLv2'): + context.options |= ssl.OP_NO_SSLv2 + if self.cert_file: + 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 +# + +_ver_info = sys.version_info[:2] + +if _ver_info == (2, 6): + class HTTP(httplib.HTTP): + def __init__(self, host='', port=None, **kwargs): + if port == 0: # 0 means use port 0, not the default port + port = None + self._setup(self._connection_class(host, port, **kwargs)) + + + if ssl: + class HTTPS(httplib.HTTPS): + def __init__(self, host='', port=None, **kwargs): + if port == 0: # 0 means use port 0, not the default port + port = None + self._setup(self._connection_class(host, port, **kwargs)) + + +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 _ver_info == (2, 6): + result = HTTP(h, timeout=self.timeout) + else: + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPConnection(h) + result = self._connection[1] + return result + +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 _ver_info == (2, 6): + result = HTTPS(host, None, **kwargs) + else: + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPSConnection(h, None, + **kwargs) + result = self._connection[1] + return result + + +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, distutils.sysconfig + osname, release, machine = _osx_support.get_platform_osx( + distutils.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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/version.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/version.py new file mode 100644 index 000000000..c7c8bb6ff --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/version.py @@ -0,0 +1,739 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2017 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|b|c|rc)(\d+))?' + r'(\.(post)(\d+))?(\.(dev)(\d+))?' + r'(\+([a-zA-Z\d]+(\.[a-zA-Z\d]+)?))?$') + + +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: + pre = pre[0], int(pre[1]) + if post == (None, None): + post = () + else: + post = post[0], int(post[1]) + if dev == (None, None): + dev = () + 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',) + + #print('%s -> %s' % (s, m.groups())) + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/w32.exe b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/w32.exe new file mode 100644 index 0000000000000000000000000000000000000000..e6439e9e45897365d5ac6a85a46864c158a225fd GIT binary patch literal 90112 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�gPVRVBXt_FM7e4<}XM;HRH{62JZSn^<*L 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 OB+yBqlfeHwf&T)jA)JE% literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/w64-arm.exe b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/w64-arm.exe new file mode 100644 index 0000000000000000000000000000000000000000..70a2ec2685231fe363cbc6e9109fd4e8a09f6db4 GIT binary patch literal 166400 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�L=7(0pY6Ly8H~~{Ts}z` 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/w64.exe b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/w64.exe new file mode 100644 index 0000000000000000000000000000000000000000..46139dbf9400b7bc0b64e6756ce17b4eb5fd7436 GIT binary patch literal 99840 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

This is a doc

') + + + """ + tb = treebuilders.getTreeBuilder(treebuilder) + p = HTMLParser(tb, namespaceHTMLElements=namespaceHTMLElements) + return p.parse(doc, **kwargs) + + +def parseFragment(doc, container="div", treebuilder="etree", namespaceHTMLElements=True, **kwargs): + """Parse an HTML fragment as a string or file-like object into a tree + + :arg doc: the fragment to parse as a string or file-like object + + :arg container: the container context to parse the fragment in + + :arg treebuilder: the treebuilder to use when parsing + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :returns: parsed tree + + Example: + + >>> from html5lib.html5libparser import parseFragment + >>> parseFragment('this is a fragment') + + + """ + tb = treebuilders.getTreeBuilder(treebuilder) + p = HTMLParser(tb, namespaceHTMLElements=namespaceHTMLElements) + return p.parseFragment(doc, container=container, **kwargs) + + +def method_decorator_metaclass(function): + class Decorated(type): + def __new__(meta, classname, bases, classDict): + for attributeName, attribute in classDict.items(): + if isinstance(attribute, types.FunctionType): + attribute = function(attribute) + + classDict[attributeName] = attribute + return type.__new__(meta, classname, bases, classDict) + return Decorated + + +class HTMLParser(object): + """HTML parser + + Generates a tree structure from a stream of (possibly malformed) HTML. + + """ + + def __init__(self, tree=None, strict=False, namespaceHTMLElements=True, debug=False): + """ + :arg tree: a treebuilder class controlling the type of tree that will be + returned. Built in treebuilders can be accessed through + html5lib.treebuilders.getTreeBuilder(treeType) + + :arg strict: raise an exception when a parse error is encountered + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :arg debug: whether or not to enable debug mode which logs things + + Example: + + >>> from html5lib.html5parser import HTMLParser + >>> parser = HTMLParser() # generates parser with etree builder + >>> parser = HTMLParser('lxml', strict=True) # generates parser with lxml builder which is strict + + """ + + # Raise an exception on the first error encountered + self.strict = strict + + if tree is None: + tree = treebuilders.getTreeBuilder("etree") + self.tree = tree(namespaceHTMLElements) + self.errors = [] + + self.phases = {name: cls(self, self.tree) for name, cls in + getPhases(debug).items()} + + def _parse(self, stream, innerHTML=False, container="div", scripting=False, **kwargs): + + self.innerHTMLMode = innerHTML + self.container = container + self.scripting = scripting + self.tokenizer = _tokenizer.HTMLTokenizer(stream, parser=self, **kwargs) + self.reset() + + try: + self.mainLoop() + except _ReparseException: + self.reset() + self.mainLoop() + + def reset(self): + self.tree.reset() + self.firstStartTag = False + self.errors = [] + self.log = [] # only used with debug mode + # "quirks" / "limited quirks" / "no quirks" + self.compatMode = "no quirks" + + if self.innerHTMLMode: + self.innerHTML = self.container.lower() + + if self.innerHTML in cdataElements: + self.tokenizer.state = self.tokenizer.rcdataState + elif self.innerHTML in rcdataElements: + self.tokenizer.state = self.tokenizer.rawtextState + elif self.innerHTML == 'plaintext': + self.tokenizer.state = self.tokenizer.plaintextState + else: + # state already is data state + # self.tokenizer.state = self.tokenizer.dataState + pass + self.phase = self.phases["beforeHtml"] + self.phase.insertHtmlElement() + self.resetInsertionMode() + else: + self.innerHTML = False # pylint:disable=redefined-variable-type + self.phase = self.phases["initial"] + + self.lastPhase = None + + self.beforeRCDataPhase = None + + self.framesetOK = True + + @property + def documentEncoding(self): + """Name of the character encoding that was used to decode the input stream, or + :obj:`None` if that is not determined yet + + """ + if not hasattr(self, 'tokenizer'): + return None + return self.tokenizer.stream.charEncoding[0].name + + def isHTMLIntegrationPoint(self, element): + if (element.name == "annotation-xml" and + element.namespace == namespaces["mathml"]): + return ("encoding" in element.attributes and + element.attributes["encoding"].translate( + asciiUpper2Lower) in + ("text/html", "application/xhtml+xml")) + else: + return (element.namespace, element.name) in htmlIntegrationPointElements + + def isMathMLTextIntegrationPoint(self, element): + return (element.namespace, element.name) in mathmlTextIntegrationPointElements + + def mainLoop(self): + CharactersToken = tokenTypes["Characters"] + SpaceCharactersToken = tokenTypes["SpaceCharacters"] + StartTagToken = tokenTypes["StartTag"] + EndTagToken = tokenTypes["EndTag"] + CommentToken = tokenTypes["Comment"] + DoctypeToken = tokenTypes["Doctype"] + ParseErrorToken = tokenTypes["ParseError"] + + for token in self.tokenizer: + prev_token = None + new_token = token + while new_token is not None: + prev_token = new_token + currentNode = self.tree.openElements[-1] if self.tree.openElements else None + currentNodeNamespace = currentNode.namespace if currentNode else None + currentNodeName = currentNode.name if currentNode else None + + type = new_token["type"] + + if type == ParseErrorToken: + self.parseError(new_token["data"], new_token.get("datavars", {})) + new_token = None + else: + if (len(self.tree.openElements) == 0 or + currentNodeNamespace == self.tree.defaultNamespace or + (self.isMathMLTextIntegrationPoint(currentNode) and + ((type == StartTagToken and + token["name"] not in frozenset(["mglyph", "malignmark"])) or + type in (CharactersToken, SpaceCharactersToken))) or + (currentNodeNamespace == namespaces["mathml"] and + currentNodeName == "annotation-xml" and + type == StartTagToken and + token["name"] == "svg") or + (self.isHTMLIntegrationPoint(currentNode) and + type in (StartTagToken, CharactersToken, SpaceCharactersToken))): + phase = self.phase + else: + phase = self.phases["inForeignContent"] + + if type == CharactersToken: + new_token = phase.processCharacters(new_token) + elif type == SpaceCharactersToken: + new_token = phase.processSpaceCharacters(new_token) + elif type == StartTagToken: + new_token = phase.processStartTag(new_token) + elif type == EndTagToken: + new_token = phase.processEndTag(new_token) + elif type == CommentToken: + new_token = phase.processComment(new_token) + elif type == DoctypeToken: + new_token = phase.processDoctype(new_token) + + if (type == StartTagToken and prev_token["selfClosing"] and + not prev_token["selfClosingAcknowledged"]): + self.parseError("non-void-element-with-trailing-solidus", + {"name": prev_token["name"]}) + + # When the loop finishes it's EOF + reprocess = True + phases = [] + while reprocess: + phases.append(self.phase) + reprocess = self.phase.processEOF() + if reprocess: + assert self.phase not in phases + + def parse(self, stream, *args, **kwargs): + """Parse a HTML document into a well-formed tree + + :arg stream: a file-like object or string containing the HTML to be parsed + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element). + + :arg scripting: treat noscript elements as if JavaScript was turned on + + :returns: parsed tree + + Example: + + >>> from html5lib.html5parser import HTMLParser + >>> parser = HTMLParser() + >>> parser.parse('

This is a doc

') + + + """ + self._parse(stream, False, None, *args, **kwargs) + return self.tree.getDocument() + + def parseFragment(self, stream, *args, **kwargs): + """Parse a HTML fragment into a well-formed tree fragment + + :arg container: name of the element we're setting the innerHTML + property if set to None, default to 'div' + + :arg stream: a file-like object or string containing the HTML to be parsed + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + :arg scripting: treat noscript elements as if JavaScript was turned on + + :returns: parsed tree + + Example: + + >>> from html5lib.html5libparser import HTMLParser + >>> parser = HTMLParser() + >>> parser.parseFragment('this is a fragment') + + + """ + self._parse(stream, True, *args, **kwargs) + return self.tree.getFragment() + + def parseError(self, errorcode="XXX-undefined-error", datavars=None): + # XXX The idea is to make errorcode mandatory. + if datavars is None: + datavars = {} + self.errors.append((self.tokenizer.stream.position(), errorcode, datavars)) + if self.strict: + raise ParseError(E[errorcode] % datavars) + + def adjustMathMLAttributes(self, token): + adjust_attributes(token, adjustMathMLAttributes) + + def adjustSVGAttributes(self, token): + adjust_attributes(token, adjustSVGAttributes) + + def adjustForeignAttributes(self, token): + adjust_attributes(token, adjustForeignAttributesMap) + + def reparseTokenNormal(self, token): + # pylint:disable=unused-argument + self.parser.phase() + + def resetInsertionMode(self): + # The name of this method is mostly historical. (It's also used in the + # specification.) + last = False + newModes = { + "select": "inSelect", + "td": "inCell", + "th": "inCell", + "tr": "inRow", + "tbody": "inTableBody", + "thead": "inTableBody", + "tfoot": "inTableBody", + "caption": "inCaption", + "colgroup": "inColumnGroup", + "table": "inTable", + "head": "inBody", + "body": "inBody", + "frameset": "inFrameset", + "html": "beforeHead" + } + for node in self.tree.openElements[::-1]: + nodeName = node.name + new_phase = None + if node == self.tree.openElements[0]: + assert self.innerHTML + last = True + nodeName = self.innerHTML + # Check for conditions that should only happen in the innerHTML + # case + if nodeName in ("select", "colgroup", "head", "html"): + assert self.innerHTML + + if not last and node.namespace != self.tree.defaultNamespace: + continue + + if nodeName in newModes: + new_phase = self.phases[newModes[nodeName]] + break + elif last: + new_phase = self.phases["inBody"] + break + + self.phase = new_phase + + def parseRCDataRawtext(self, token, contentType): + # Generic RCDATA/RAWTEXT Parsing algorithm + assert contentType in ("RAWTEXT", "RCDATA") + + self.tree.insertElement(token) + + if contentType == "RAWTEXT": + self.tokenizer.state = self.tokenizer.rawtextState + else: + self.tokenizer.state = self.tokenizer.rcdataState + + self.originalPhase = self.phase + + self.phase = self.phases["text"] + + +@_utils.memoize +def getPhases(debug): + def log(function): + """Logger that records which phase processes each token""" + type_names = {value: key for key, value in tokenTypes.items()} + + def wrapped(self, *args, **kwargs): + if function.__name__.startswith("process") and len(args) > 0: + token = args[0] + info = {"type": type_names[token['type']]} + if token['type'] in tagTokenTypes: + info["name"] = token['name'] + + self.parser.log.append((self.parser.tokenizer.state.__name__, + self.parser.phase.__class__.__name__, + self.__class__.__name__, + function.__name__, + info)) + return function(self, *args, **kwargs) + else: + return function(self, *args, **kwargs) + return wrapped + + def getMetaclass(use_metaclass, metaclass_func): + if use_metaclass: + return method_decorator_metaclass(metaclass_func) + else: + return type + + # pylint:disable=unused-argument + class Phase(with_metaclass(getMetaclass(debug, log))): + """Base class for helper object that implements each phase of processing + """ + __slots__ = ("parser", "tree", "__startTagCache", "__endTagCache") + + def __init__(self, parser, tree): + self.parser = parser + self.tree = tree + self.__startTagCache = {} + self.__endTagCache = {} + + def processEOF(self): + raise NotImplementedError + + def processComment(self, token): + # For most phases the following is correct. Where it's not it will be + # overridden. + self.tree.insertComment(token, self.tree.openElements[-1]) + + def processDoctype(self, token): + self.parser.parseError("unexpected-doctype") + + def processCharacters(self, token): + self.tree.insertText(token["data"]) + + def processSpaceCharacters(self, token): + self.tree.insertText(token["data"]) + + def processStartTag(self, token): + # Note the caching is done here rather than BoundMethodDispatcher as doing it there + # requires a circular reference to the Phase, and this ends up with a significant + # (CPython 2.7, 3.8) GC cost when parsing many short inputs + name = token["name"] + # In Py2, using `in` is quicker in general than try/except KeyError + # In Py3, `in` is quicker when there are few cache hits (typically short inputs) + if name in self.__startTagCache: + func = self.__startTagCache[name] + else: + func = self.__startTagCache[name] = self.startTagHandler[name] + # bound the cache size in case we get loads of unknown tags + while len(self.__startTagCache) > len(self.startTagHandler) * 1.1: + # this makes the eviction policy random on Py < 3.7 and FIFO >= 3.7 + self.__startTagCache.pop(next(iter(self.__startTagCache))) + return func(token) + + def startTagHtml(self, token): + if not self.parser.firstStartTag and token["name"] == "html": + self.parser.parseError("non-html-root") + # XXX Need a check here to see if the first start tag token emitted is + # this token... If it's not, invoke self.parser.parseError(). + for attr, value in token["data"].items(): + if attr not in self.tree.openElements[0].attributes: + self.tree.openElements[0].attributes[attr] = value + self.parser.firstStartTag = False + + def processEndTag(self, token): + # Note the caching is done here rather than BoundMethodDispatcher as doing it there + # requires a circular reference to the Phase, and this ends up with a significant + # (CPython 2.7, 3.8) GC cost when parsing many short inputs + name = token["name"] + # In Py2, using `in` is quicker in general than try/except KeyError + # In Py3, `in` is quicker when there are few cache hits (typically short inputs) + if name in self.__endTagCache: + func = self.__endTagCache[name] + else: + func = self.__endTagCache[name] = self.endTagHandler[name] + # bound the cache size in case we get loads of unknown tags + while len(self.__endTagCache) > len(self.endTagHandler) * 1.1: + # this makes the eviction policy random on Py < 3.7 and FIFO >= 3.7 + self.__endTagCache.pop(next(iter(self.__endTagCache))) + return func(token) + + class InitialPhase(Phase): + __slots__ = tuple() + + def processSpaceCharacters(self, token): + pass + + def processComment(self, token): + self.tree.insertComment(token, self.tree.document) + + def processDoctype(self, token): + name = token["name"] + publicId = token["publicId"] + systemId = token["systemId"] + correct = token["correct"] + + if (name != "html" or publicId is not None or + systemId is not None and systemId != "about:legacy-compat"): + self.parser.parseError("unknown-doctype") + + if publicId is None: + publicId = "" + + self.tree.insertDoctype(token) + + if publicId != "": + publicId = publicId.translate(asciiUpper2Lower) + + if (not correct or token["name"] != "html" or + publicId.startswith( + ("+//silmaril//dtd html pro v0r11 19970101//", + "-//advasoft ltd//dtd html 3.0 aswedit + extensions//", + "-//as//dtd html 3.0 aswedit + extensions//", + "-//ietf//dtd html 2.0 level 1//", + "-//ietf//dtd html 2.0 level 2//", + "-//ietf//dtd html 2.0 strict level 1//", + "-//ietf//dtd html 2.0 strict level 2//", + "-//ietf//dtd html 2.0 strict//", + "-//ietf//dtd html 2.0//", + "-//ietf//dtd html 2.1e//", + "-//ietf//dtd html 3.0//", + "-//ietf//dtd html 3.2 final//", + "-//ietf//dtd html 3.2//", + "-//ietf//dtd html 3//", + "-//ietf//dtd html level 0//", + "-//ietf//dtd html level 1//", + "-//ietf//dtd html level 2//", + "-//ietf//dtd html level 3//", + "-//ietf//dtd html strict level 0//", + "-//ietf//dtd html strict level 1//", + "-//ietf//dtd html strict level 2//", + "-//ietf//dtd html strict level 3//", + "-//ietf//dtd html strict//", + "-//ietf//dtd html//", + "-//metrius//dtd metrius presentational//", + "-//microsoft//dtd internet explorer 2.0 html strict//", + "-//microsoft//dtd internet explorer 2.0 html//", + "-//microsoft//dtd internet explorer 2.0 tables//", + "-//microsoft//dtd internet explorer 3.0 html strict//", + "-//microsoft//dtd internet explorer 3.0 html//", + "-//microsoft//dtd internet explorer 3.0 tables//", + "-//netscape comm. corp.//dtd html//", + "-//netscape comm. corp.//dtd strict html//", + "-//o'reilly and associates//dtd html 2.0//", + "-//o'reilly and associates//dtd html extended 1.0//", + "-//o'reilly and associates//dtd html extended relaxed 1.0//", + "-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//", + "-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//", + "-//spyglass//dtd html 2.0 extended//", + "-//sq//dtd html 2.0 hotmetal + extensions//", + "-//sun microsystems corp.//dtd hotjava html//", + "-//sun microsystems corp.//dtd hotjava strict html//", + "-//w3c//dtd html 3 1995-03-24//", + "-//w3c//dtd html 3.2 draft//", + "-//w3c//dtd html 3.2 final//", + "-//w3c//dtd html 3.2//", + "-//w3c//dtd html 3.2s draft//", + "-//w3c//dtd html 4.0 frameset//", + "-//w3c//dtd html 4.0 transitional//", + "-//w3c//dtd html experimental 19960712//", + "-//w3c//dtd html experimental 970421//", + "-//w3c//dtd w3 html//", + "-//w3o//dtd w3 html 3.0//", + "-//webtechs//dtd mozilla html 2.0//", + "-//webtechs//dtd mozilla html//")) or + publicId in ("-//w3o//dtd w3 html strict 3.0//en//", + "-/w3c/dtd html 4.0 transitional/en", + "html") or + publicId.startswith( + ("-//w3c//dtd html 4.01 frameset//", + "-//w3c//dtd html 4.01 transitional//")) and + systemId is None or + systemId and systemId.lower() == "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd"): + self.parser.compatMode = "quirks" + elif (publicId.startswith( + ("-//w3c//dtd xhtml 1.0 frameset//", + "-//w3c//dtd xhtml 1.0 transitional//")) or + publicId.startswith( + ("-//w3c//dtd html 4.01 frameset//", + "-//w3c//dtd html 4.01 transitional//")) and + systemId is not None): + self.parser.compatMode = "limited quirks" + + self.parser.phase = self.parser.phases["beforeHtml"] + + def anythingElse(self): + self.parser.compatMode = "quirks" + self.parser.phase = self.parser.phases["beforeHtml"] + + def processCharacters(self, token): + self.parser.parseError("expected-doctype-but-got-chars") + self.anythingElse() + return token + + def processStartTag(self, token): + self.parser.parseError("expected-doctype-but-got-start-tag", + {"name": token["name"]}) + self.anythingElse() + return token + + def processEndTag(self, token): + self.parser.parseError("expected-doctype-but-got-end-tag", + {"name": token["name"]}) + self.anythingElse() + return token + + def processEOF(self): + self.parser.parseError("expected-doctype-but-got-eof") + self.anythingElse() + return True + + class BeforeHtmlPhase(Phase): + __slots__ = tuple() + + # helper methods + def insertHtmlElement(self): + self.tree.insertRoot(impliedTagToken("html", "StartTag")) + self.parser.phase = self.parser.phases["beforeHead"] + + # other + def processEOF(self): + self.insertHtmlElement() + return True + + def processComment(self, token): + self.tree.insertComment(token, self.tree.document) + + def processSpaceCharacters(self, token): + pass + + def processCharacters(self, token): + self.insertHtmlElement() + return token + + def processStartTag(self, token): + if token["name"] == "html": + self.parser.firstStartTag = True + self.insertHtmlElement() + return token + + def processEndTag(self, token): + if token["name"] not in ("head", "body", "html", "br"): + self.parser.parseError("unexpected-end-tag-before-html", + {"name": token["name"]}) + else: + self.insertHtmlElement() + return token + + class BeforeHeadPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.startTagHead(impliedTagToken("head", "StartTag")) + return True + + def processSpaceCharacters(self, token): + pass + + def processCharacters(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagHead(self, token): + self.tree.insertElement(token) + self.tree.headPointer = self.tree.openElements[-1] + self.parser.phase = self.parser.phases["inHead"] + + def startTagOther(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def endTagImplyHead(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def endTagOther(self, token): + self.parser.parseError("end-tag-after-implied-root", + {"name": token["name"]}) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + (("head", "body", "html", "br"), endTagImplyHead) + ]) + endTagHandler.default = endTagOther + + class InHeadPhase(Phase): + __slots__ = tuple() + + # the real thing + def processEOF(self): + self.anythingElse() + return True + + def processCharacters(self, token): + self.anythingElse() + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagHead(self, token): + self.parser.parseError("two-heads-are-not-better-than-one") + + def startTagBaseLinkCommand(self, token): + self.tree.insertElement(token) + self.tree.openElements.pop() + token["selfClosingAcknowledged"] = True + + def startTagMeta(self, token): + self.tree.insertElement(token) + self.tree.openElements.pop() + token["selfClosingAcknowledged"] = True + + attributes = token["data"] + if self.parser.tokenizer.stream.charEncoding[1] == "tentative": + if "charset" in attributes: + self.parser.tokenizer.stream.changeEncoding(attributes["charset"]) + elif ("content" in attributes and + "http-equiv" in attributes and + attributes["http-equiv"].lower() == "content-type"): + # Encoding it as UTF-8 here is a hack, as really we should pass + # the abstract Unicode string, and just use the + # ContentAttrParser on that, but using UTF-8 allows all chars + # to be encoded and as a ASCII-superset works. + data = _inputstream.EncodingBytes(attributes["content"].encode("utf-8")) + parser = _inputstream.ContentAttrParser(data) + codec = parser.parse() + self.parser.tokenizer.stream.changeEncoding(codec) + + def startTagTitle(self, token): + self.parser.parseRCDataRawtext(token, "RCDATA") + + def startTagNoFramesStyle(self, token): + # Need to decide whether to implement the scripting-disabled case + self.parser.parseRCDataRawtext(token, "RAWTEXT") + + def startTagNoscript(self, token): + if self.parser.scripting: + self.parser.parseRCDataRawtext(token, "RAWTEXT") + else: + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inHeadNoscript"] + + def startTagScript(self, token): + self.tree.insertElement(token) + self.parser.tokenizer.state = self.parser.tokenizer.scriptDataState + self.parser.originalPhase = self.parser.phase + self.parser.phase = self.parser.phases["text"] + + def startTagOther(self, token): + self.anythingElse() + return token + + def endTagHead(self, token): + node = self.parser.tree.openElements.pop() + assert node.name == "head", "Expected head got %s" % node.name + self.parser.phase = self.parser.phases["afterHead"] + + def endTagHtmlBodyBr(self, token): + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + self.endTagHead(impliedTagToken("head")) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("title", startTagTitle), + (("noframes", "style"), startTagNoFramesStyle), + ("noscript", startTagNoscript), + ("script", startTagScript), + (("base", "basefont", "bgsound", "command", "link"), + startTagBaseLinkCommand), + ("meta", startTagMeta), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + ("head", endTagHead), + (("br", "html", "body"), endTagHtmlBodyBr) + ]) + endTagHandler.default = endTagOther + + class InHeadNoscriptPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.parser.parseError("eof-in-head-noscript") + self.anythingElse() + return True + + def processComment(self, token): + return self.parser.phases["inHead"].processComment(token) + + def processCharacters(self, token): + self.parser.parseError("char-in-head-noscript") + self.anythingElse() + return token + + def processSpaceCharacters(self, token): + return self.parser.phases["inHead"].processSpaceCharacters(token) + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagBaseLinkCommand(self, token): + return self.parser.phases["inHead"].processStartTag(token) + + def startTagHeadNoscript(self, token): + self.parser.parseError("unexpected-start-tag", {"name": token["name"]}) + + def startTagOther(self, token): + self.parser.parseError("unexpected-inhead-noscript-tag", {"name": token["name"]}) + self.anythingElse() + return token + + def endTagNoscript(self, token): + node = self.parser.tree.openElements.pop() + assert node.name == "noscript", "Expected noscript got %s" % node.name + self.parser.phase = self.parser.phases["inHead"] + + def endTagBr(self, token): + self.parser.parseError("unexpected-inhead-noscript-tag", {"name": token["name"]}) + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + # Caller must raise parse error first! + self.endTagNoscript(impliedTagToken("noscript")) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + (("basefont", "bgsound", "link", "meta", "noframes", "style"), startTagBaseLinkCommand), + (("head", "noscript"), startTagHeadNoscript), + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + ("noscript", endTagNoscript), + ("br", endTagBr), + ]) + endTagHandler.default = endTagOther + + class AfterHeadPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.anythingElse() + return True + + def processCharacters(self, token): + self.anythingElse() + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagBody(self, token): + self.parser.framesetOK = False + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inBody"] + + def startTagFrameset(self, token): + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inFrameset"] + + def startTagFromHead(self, token): + self.parser.parseError("unexpected-start-tag-out-of-my-head", + {"name": token["name"]}) + self.tree.openElements.append(self.tree.headPointer) + self.parser.phases["inHead"].processStartTag(token) + for node in self.tree.openElements[::-1]: + if node.name == "head": + self.tree.openElements.remove(node) + break + + def startTagHead(self, token): + self.parser.parseError("unexpected-start-tag", {"name": token["name"]}) + + def startTagOther(self, token): + self.anythingElse() + return token + + def endTagHtmlBodyBr(self, token): + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + self.tree.insertElement(impliedTagToken("body", "StartTag")) + self.parser.phase = self.parser.phases["inBody"] + self.parser.framesetOK = True + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("body", startTagBody), + ("frameset", startTagFrameset), + (("base", "basefont", "bgsound", "link", "meta", "noframes", "script", + "style", "title"), + startTagFromHead), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + endTagHandler = _utils.MethodDispatcher([(("body", "html", "br"), + endTagHtmlBodyBr)]) + endTagHandler.default = endTagOther + + class InBodyPhase(Phase): + # http://www.whatwg.org/specs/web-apps/current-work/#parsing-main-inbody + # the really-really-really-very crazy mode + __slots__ = ("processSpaceCharacters",) + + def __init__(self, *args, **kwargs): + super(InBodyPhase, self).__init__(*args, **kwargs) + # Set this to the default handler + self.processSpaceCharacters = self.processSpaceCharactersNonPre + + def isMatchingFormattingElement(self, node1, node2): + return (node1.name == node2.name and + node1.namespace == node2.namespace and + node1.attributes == node2.attributes) + + # helper + def addFormattingElement(self, token): + self.tree.insertElement(token) + element = self.tree.openElements[-1] + + matchingElements = [] + for node in self.tree.activeFormattingElements[::-1]: + if node is Marker: + break + elif self.isMatchingFormattingElement(node, element): + matchingElements.append(node) + + assert len(matchingElements) <= 3 + if len(matchingElements) == 3: + self.tree.activeFormattingElements.remove(matchingElements[-1]) + self.tree.activeFormattingElements.append(element) + + # the real deal + def processEOF(self): + allowed_elements = frozenset(("dd", "dt", "li", "p", "tbody", "td", + "tfoot", "th", "thead", "tr", "body", + "html")) + for node in self.tree.openElements[::-1]: + if node.name not in allowed_elements: + self.parser.parseError("expected-closing-tag-but-got-eof") + break + # Stop parsing + + def processSpaceCharactersDropNewline(self, token): + # Sometimes (start of
, , and 

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[^-]+) +-(?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, '/') + + +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 = imp.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: + wheel_metadata = 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, base): + records = list(records) # make a copy, as mutated + p = to_posix(os.path.relpath(record_path, base)) + records.append((p, '', '')) + 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') + self.write_record(records, p, libdir) + ap = to_posix(os.path.join(info_dir, 'RECORD')) + 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 = 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: + v = 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 imp.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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distro.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distro.py new file mode 100644 index 000000000..789274134 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distro.py @@ -0,0 +1,1386 @@ +# 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 + +__version__ = "1.6.0" + +# Use `if False` to avoid an ImportError on Python 2. After dropping Python 2 +# support, can use typing.TYPE_CHECKING instead. See: +# https://docs.python.org/3/library/typing.html#typing.TYPE_CHECKING +if False: # pragma: nocover + from typing import ( + Any, + Callable, + Dict, + Iterable, + Optional, + Sequence, + TextIO, + Tuple, + Type, + TypedDict, + Union, + ) + + VersionDict = TypedDict( + "VersionDict", {"major": str, "minor": str, "build_number": str} + ) + InfoDict = TypedDict( + "InfoDict", + { + "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 +} + +#: 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 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=True): + # type: (bool) -> 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 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(): + # type: () -> 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 + "amazon" Amazon Linux + "arch" Arch Linux + "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 + ============== ========================================= + + 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=False): + # type: (bool) -> 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=False, best=False): + # type: (bool, bool) -> 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). + + 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=False): + # type: (bool) -> 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=False): + # type: (bool) -> 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=False): + # type: (bool) -> 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=False): + # type: (bool) -> 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(): + # type: () -> 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(): + # type: () -> 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=False, best=False): + # type: (bool, bool) -> 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(): + # type: () -> 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(): + # type: () -> 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(): + # type: () -> 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(): + # type: () -> 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): + # type: (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): + # type: (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): + # type: (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): + # type: (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(object): # 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): + # type: (Callable[[Any], Any]) -> None + self._fname = f.__name__ + self._f = f + + def __get__(self, obj, owner): + # type: (Any, Type[Any]) -> Any + assert obj is not None, "call {} on an instance".format(self._fname) + ret = obj.__dict__[self._fname] = self._f(obj) + return ret + + +class LinuxDistribution(object): + """ + 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=True, + os_release_file="", + distro_release_file="", + include_uname=True, + root_dir=None, + ): + # type: (bool, str, str, bool, Optional[str]) -> 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. + + 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. + + Raises: + + * :py:exc:`IOError`: Some I/O issue with an os-release file or distro + release file. + + * :py:exc:`subprocess.CalledProcessError`: The lsb_release command had + some issue (other than not being available in the program execution + path). + + * :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 + self.include_lsb = include_lsb + self.include_uname = include_uname + + def __repr__(self): + # type: () -> 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}, " + "_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})".format(self=self) + ) + + def linux_distribution(self, full_distribution_name=True): + # type: (bool) -> 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.codename(), + ) + + def id(self): + # type: () -> str + """Return the distro ID of the OS distribution, as a string. + + For details, see :func:`distro.id`. + """ + + def normalize(distro_id, table): + # type: (str, 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=False): + # type: (bool) -> 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 = name + " " + version + return name or "" + + def version(self, pretty=False, best=False): + # type: (bool, bool) -> 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"), + ] + 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 = "{0} ({1})".format(version, self.codename()) + return version + + def version_parts(self, best=False): + # type: (bool) -> 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=False): + # type: (bool) -> 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=False): + # type: (bool) -> 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=False): + # type: (bool) -> 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): + # type: () -> 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): + # type: () -> 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=False, best=False): + # type: (bool, bool) -> 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): + # type: () -> 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): + # type: () -> 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): + # type: () -> 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): + # type: () -> 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 os_release_attr(self, attribute): + # type: (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): + # type: (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): + # type: (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): + # type: (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): + # type: () -> 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) as release_file: + return self._parse_os_release_content(release_file) + return {} + + @staticmethod + def _parse_os_release_content(lines): + # type: (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 + + # The shlex module defines its `wordchars` variable using literals, + # making it dependent on the encoding of the Python source file. + # In Python 2.6 and 2.7, the shlex source file is encoded in + # 'iso-8859-1', and the `wordchars` variable is defined as a byte + # string. This causes a UnicodeDecodeError to be raised when the + # parsed content is a unicode object. The following fix resolves that + # (... but it should be fixed in shlex...): + if sys.version_info[0] == 2 and isinstance(lexer.wordchars, bytes): + lexer.wordchars = lexer.wordchars.decode("iso-8859-1") + + 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) + if "=" in token: + k, v = token.split("=", 1) + props[k.lower()] = v + else: + # Ignore any tokens that are not variable assignments + pass + + 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"] + elif "version" in props: + # If there is no version_codename, parse it from the version + match = re.search(r"(\(\D+\))|,(\s+)?\D+", props["version"]) + if match: + codename = match.group() + codename = codename.strip("()") + codename = codename.strip(",") + codename = codename.strip() + # codename appears within paranthese. + props["codename"] = codename + + return props + + @cached_property + def _lsb_release_info(self): + # type: () -> 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 {} + with open(os.devnull, "wb") as devnull: + try: + cmd = ("lsb_release", "-a") + stdout = subprocess.check_output(cmd, stderr=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): + # type: (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): + # type: () -> Dict[str, str] + with open(os.devnull, "wb") as devnull: + try: + cmd = ("uname", "-rs") + stdout = subprocess.check_output(cmd, stderr=devnull) + except OSError: + return {} + content = self._to_str(stdout).splitlines() + return self._parse_uname_content(content) + + @staticmethod + def _parse_uname_content(lines): + # type: (Sequence[str]) -> Dict[str, str] + 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(text): + # type: (Union[bytes, str]) -> str + encoding = sys.getfilesystemencoding() + encoding = "utf-8" if encoding == "ascii" else encoding + + if sys.version_info[0] >= 3: + if isinstance(text, bytes): + return text.decode(encoding) + else: + if isinstance(text, unicode): # noqa + return text.encode(encoding) + + return text + + @cached_property + def _distro_release_info(self): + # type: () -> 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) + if "name" in distro_info and "cloudlinux" in distro_info["name"].lower(): + distro_info["id"] = "cloudlinux" + elif match: + distro_info["id"] = match.group(1) + return distro_info + else: + try: + basenames = os.listdir(self.etc_dir) + # 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 = [ + "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", + "sl-release", + "slackware-version", + ] + for basename in basenames: + if basename in _DISTRO_RELEASE_IGNORE_BASENAMES: + continue + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if match: + filepath = os.path.join(self.etc_dir, basename) + distro_info = self._parse_distro_release_file(filepath) + if "name" in distro_info: + # The name is always present if the pattern matches + self.distro_release_file = filepath + distro_info["id"] = match.group(1) + if "cloudlinux" in distro_info["name"].lower(): + distro_info["id"] = "cloudlinux" + return distro_info + return {} + + def _parse_distro_release_file(self, filepath): + # type: (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) 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, IOError): + # 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): + # type: (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(): + # type: () -> 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, 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__init__.py new file mode 100644 index 000000000..d1d82f157 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__init__.py @@ -0,0 +1,35 @@ +""" +HTML parsing library based on the `WHATWG HTML specification +`_. The parser is designed to be compatible with +existing HTML found in the wild and implements well-defined error recovery that +is largely compatible with modern desktop web browsers. + +Example usage:: + + from pip._vendor import html5lib + with open("my_document.html", "rb") as f: + tree = html5lib.parse(f) + +For convenience, this module re-exports the following names: + +* :func:`~.html5parser.parse` +* :func:`~.html5parser.parseFragment` +* :class:`~.html5parser.HTMLParser` +* :func:`~.treebuilders.getTreeBuilder` +* :func:`~.treewalkers.getTreeWalker` +* :func:`~.serializer.serialize` +""" + +from __future__ import absolute_import, division, unicode_literals + +from .html5parser import HTMLParser, parse, parseFragment +from .treebuilders import getTreeBuilder +from .treewalkers import getTreeWalker +from .serializer import serialize + +__all__ = ["HTMLParser", "parse", "parseFragment", "getTreeBuilder", + "getTreeWalker", "serialize"] + +# this has to be at the top level, see how setup.py parses this +#: Distribution version number. +__version__ = "1.1" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d0f31e5bcfad66b25863e0c55631ed889bb1a6e9 GIT binary patch literal 1388 zcmaJ>O>g5i5S2d?J93;&fuLt1r**NGHdyS%*e-Tkbi0SPD9``_bfGD6Bon4cfu!Pi z4?XYi=&eBiK>v!aJ?&rUsY5DFleDM|k2Un@y~i0o>G?d4@Y;U-ntvQe(H}m!e+@Bt zgI~MGz@seU13r|4dYBFCQ8uc_*?17~5g*Hg`Y=1JC)uQ)X49~CAdl)ei^Kh)oYlwK zak!tzd3}(lQ{n7hIty&T2{eo6~_dx z(&(BrqDkmAD2`+(MH@%_USDFkI(-@(v{l-FjLs;`kkM6j~vh09C*<+!XEzmA5F(z!GjezYX&#wUm12d#6|p7A1c{ zR%NS-)%xea{<5D!55NB3f8QBadDWq+kj&c0AbvhShN(V4@>|JUoRsfk1@02_uloF7 zbvq`v_sXt9`k)GDA(#{&z$ACK>-ZDeB3g{PCoH#Gwhm}NhHlEmwXk>~yVF*Q0_RJm zaA26Up9cLi;hgunyMxe=ZXSOA-tl74ojlZyEA!ixULr0W-N{)TnnQ#(6Cb8N9QoiK zZe|!hj4qOk9~Pf=6Y9?brCm&E*}B#MrN&#`jC{ZsLDbE{K?-`zBiQcverp3sH}gxk zT?~v}e5cC8;Vi+r&F8rBo>4C{3DuH+|JR;k6&GJ;gAN&OSdI9uNFyI-DN-1y`}V AbpQYW literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f623a7c6c0c1406684196bfabff3a9950dc33fbb GIT binary patch literal 13945 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 TYiK>vRrt>zYCxTDqwoI$fdl*j literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fcbb757145a00cf572d24d9b195fd1f032245cd7 GIT binary patch literal 21764 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ab7f7e1ba81e97195817d0d7617850e86dbc6b8 GIT binary patch literal 37446 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f135ffe9b100a55b1b1b38c8daa063ffc1facdb5 GIT binary patch literal 88605 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 item[0] + rv = [] + i = 0 + while i < len(charList): + j = 1 + rv.append(charList[i]) + while i + j < len(charList) and charList[i + j][0] <= rv[-1][1] + 1: + rv[-1][1] = charList[i + j][1] + j += 1 + i += j + return rv + + +# We don't really support characters above the BMP :( +max_unicode = int("FFFF", 16) + + +def missingRanges(charList): + rv = [] + if charList[0] != 0: + rv.append([0, charList[0][0] - 1]) + for i, item in enumerate(charList[:-1]): + rv.append([item[1] + 1, charList[i + 1][0] - 1]) + if charList[-1][1] != max_unicode: + rv.append([charList[-1][1] + 1, max_unicode]) + return rv + + +def listToRegexpStr(charList): + rv = [] + for item in charList: + if item[0] == item[1]: + rv.append(escapeRegexp(chr(item[0]))) + else: + rv.append(escapeRegexp(chr(item[0])) + "-" + + escapeRegexp(chr(item[1]))) + return "[%s]" % "".join(rv) + + +def hexToInt(hex_str): + return int(hex_str, 16) + + +def escapeRegexp(string): + specialCharacters = (".", "^", "$", "*", "+", "?", "{", "}", + "[", "]", "|", "(", ")", "-") + for char in specialCharacters: + string = string.replace(char, "\\" + char) + + return string + +# output from the above +nonXmlNameBMPRegexp = re.compile('[\x00-,/:-@\\[-\\^`\\{-\xb6\xb8-\xbf\xd7\xf7\u0132-\u0133\u013f-\u0140\u0149\u017f\u01c4-\u01cc\u01f1-\u01f3\u01f6-\u01f9\u0218-\u024f\u02a9-\u02ba\u02c2-\u02cf\u02d2-\u02ff\u0346-\u035f\u0362-\u0385\u038b\u038d\u03a2\u03cf\u03d7-\u03d9\u03db\u03dd\u03df\u03e1\u03f4-\u0400\u040d\u0450\u045d\u0482\u0487-\u048f\u04c5-\u04c6\u04c9-\u04ca\u04cd-\u04cf\u04ec-\u04ed\u04f6-\u04f7\u04fa-\u0530\u0557-\u0558\u055a-\u0560\u0587-\u0590\u05a2\u05ba\u05be\u05c0\u05c3\u05c5-\u05cf\u05eb-\u05ef\u05f3-\u0620\u063b-\u063f\u0653-\u065f\u066a-\u066f\u06b8-\u06b9\u06bf\u06cf\u06d4\u06e9\u06ee-\u06ef\u06fa-\u0900\u0904\u093a-\u093b\u094e-\u0950\u0955-\u0957\u0964-\u0965\u0970-\u0980\u0984\u098d-\u098e\u0991-\u0992\u09a9\u09b1\u09b3-\u09b5\u09ba-\u09bb\u09bd\u09c5-\u09c6\u09c9-\u09ca\u09ce-\u09d6\u09d8-\u09db\u09de\u09e4-\u09e5\u09f2-\u0a01\u0a03-\u0a04\u0a0b-\u0a0e\u0a11-\u0a12\u0a29\u0a31\u0a34\u0a37\u0a3a-\u0a3b\u0a3d\u0a43-\u0a46\u0a49-\u0a4a\u0a4e-\u0a58\u0a5d\u0a5f-\u0a65\u0a75-\u0a80\u0a84\u0a8c\u0a8e\u0a92\u0aa9\u0ab1\u0ab4\u0aba-\u0abb\u0ac6\u0aca\u0ace-\u0adf\u0ae1-\u0ae5\u0af0-\u0b00\u0b04\u0b0d-\u0b0e\u0b11-\u0b12\u0b29\u0b31\u0b34-\u0b35\u0b3a-\u0b3b\u0b44-\u0b46\u0b49-\u0b4a\u0b4e-\u0b55\u0b58-\u0b5b\u0b5e\u0b62-\u0b65\u0b70-\u0b81\u0b84\u0b8b-\u0b8d\u0b91\u0b96-\u0b98\u0b9b\u0b9d\u0ba0-\u0ba2\u0ba5-\u0ba7\u0bab-\u0bad\u0bb6\u0bba-\u0bbd\u0bc3-\u0bc5\u0bc9\u0bce-\u0bd6\u0bd8-\u0be6\u0bf0-\u0c00\u0c04\u0c0d\u0c11\u0c29\u0c34\u0c3a-\u0c3d\u0c45\u0c49\u0c4e-\u0c54\u0c57-\u0c5f\u0c62-\u0c65\u0c70-\u0c81\u0c84\u0c8d\u0c91\u0ca9\u0cb4\u0cba-\u0cbd\u0cc5\u0cc9\u0cce-\u0cd4\u0cd7-\u0cdd\u0cdf\u0ce2-\u0ce5\u0cf0-\u0d01\u0d04\u0d0d\u0d11\u0d29\u0d3a-\u0d3d\u0d44-\u0d45\u0d49\u0d4e-\u0d56\u0d58-\u0d5f\u0d62-\u0d65\u0d70-\u0e00\u0e2f\u0e3b-\u0e3f\u0e4f\u0e5a-\u0e80\u0e83\u0e85-\u0e86\u0e89\u0e8b-\u0e8c\u0e8e-\u0e93\u0e98\u0ea0\u0ea4\u0ea6\u0ea8-\u0ea9\u0eac\u0eaf\u0eba\u0ebe-\u0ebf\u0ec5\u0ec7\u0ece-\u0ecf\u0eda-\u0f17\u0f1a-\u0f1f\u0f2a-\u0f34\u0f36\u0f38\u0f3a-\u0f3d\u0f48\u0f6a-\u0f70\u0f85\u0f8c-\u0f8f\u0f96\u0f98\u0fae-\u0fb0\u0fb8\u0fba-\u109f\u10c6-\u10cf\u10f7-\u10ff\u1101\u1104\u1108\u110a\u110d\u1113-\u113b\u113d\u113f\u1141-\u114b\u114d\u114f\u1151-\u1153\u1156-\u1158\u115a-\u115e\u1162\u1164\u1166\u1168\u116a-\u116c\u116f-\u1171\u1174\u1176-\u119d\u119f-\u11a7\u11a9-\u11aa\u11ac-\u11ad\u11b0-\u11b6\u11b9\u11bb\u11c3-\u11ea\u11ec-\u11ef\u11f1-\u11f8\u11fa-\u1dff\u1e9c-\u1e9f\u1efa-\u1eff\u1f16-\u1f17\u1f1e-\u1f1f\u1f46-\u1f47\u1f4e-\u1f4f\u1f58\u1f5a\u1f5c\u1f5e\u1f7e-\u1f7f\u1fb5\u1fbd\u1fbf-\u1fc1\u1fc5\u1fcd-\u1fcf\u1fd4-\u1fd5\u1fdc-\u1fdf\u1fed-\u1ff1\u1ff5\u1ffd-\u20cf\u20dd-\u20e0\u20e2-\u2125\u2127-\u2129\u212c-\u212d\u212f-\u217f\u2183-\u3004\u3006\u3008-\u3020\u3030\u3036-\u3040\u3095-\u3098\u309b-\u309c\u309f-\u30a0\u30fb\u30ff-\u3104\u312d-\u4dff\u9fa6-\uabff\ud7a4-\uffff]') # noqa + +nonXmlNameFirstBMPRegexp = re.compile('[\x00-@\\[-\\^`\\{-\xbf\xd7\xf7\u0132-\u0133\u013f-\u0140\u0149\u017f\u01c4-\u01cc\u01f1-\u01f3\u01f6-\u01f9\u0218-\u024f\u02a9-\u02ba\u02c2-\u0385\u0387\u038b\u038d\u03a2\u03cf\u03d7-\u03d9\u03db\u03dd\u03df\u03e1\u03f4-\u0400\u040d\u0450\u045d\u0482-\u048f\u04c5-\u04c6\u04c9-\u04ca\u04cd-\u04cf\u04ec-\u04ed\u04f6-\u04f7\u04fa-\u0530\u0557-\u0558\u055a-\u0560\u0587-\u05cf\u05eb-\u05ef\u05f3-\u0620\u063b-\u0640\u064b-\u0670\u06b8-\u06b9\u06bf\u06cf\u06d4\u06d6-\u06e4\u06e7-\u0904\u093a-\u093c\u093e-\u0957\u0962-\u0984\u098d-\u098e\u0991-\u0992\u09a9\u09b1\u09b3-\u09b5\u09ba-\u09db\u09de\u09e2-\u09ef\u09f2-\u0a04\u0a0b-\u0a0e\u0a11-\u0a12\u0a29\u0a31\u0a34\u0a37\u0a3a-\u0a58\u0a5d\u0a5f-\u0a71\u0a75-\u0a84\u0a8c\u0a8e\u0a92\u0aa9\u0ab1\u0ab4\u0aba-\u0abc\u0abe-\u0adf\u0ae1-\u0b04\u0b0d-\u0b0e\u0b11-\u0b12\u0b29\u0b31\u0b34-\u0b35\u0b3a-\u0b3c\u0b3e-\u0b5b\u0b5e\u0b62-\u0b84\u0b8b-\u0b8d\u0b91\u0b96-\u0b98\u0b9b\u0b9d\u0ba0-\u0ba2\u0ba5-\u0ba7\u0bab-\u0bad\u0bb6\u0bba-\u0c04\u0c0d\u0c11\u0c29\u0c34\u0c3a-\u0c5f\u0c62-\u0c84\u0c8d\u0c91\u0ca9\u0cb4\u0cba-\u0cdd\u0cdf\u0ce2-\u0d04\u0d0d\u0d11\u0d29\u0d3a-\u0d5f\u0d62-\u0e00\u0e2f\u0e31\u0e34-\u0e3f\u0e46-\u0e80\u0e83\u0e85-\u0e86\u0e89\u0e8b-\u0e8c\u0e8e-\u0e93\u0e98\u0ea0\u0ea4\u0ea6\u0ea8-\u0ea9\u0eac\u0eaf\u0eb1\u0eb4-\u0ebc\u0ebe-\u0ebf\u0ec5-\u0f3f\u0f48\u0f6a-\u109f\u10c6-\u10cf\u10f7-\u10ff\u1101\u1104\u1108\u110a\u110d\u1113-\u113b\u113d\u113f\u1141-\u114b\u114d\u114f\u1151-\u1153\u1156-\u1158\u115a-\u115e\u1162\u1164\u1166\u1168\u116a-\u116c\u116f-\u1171\u1174\u1176-\u119d\u119f-\u11a7\u11a9-\u11aa\u11ac-\u11ad\u11b0-\u11b6\u11b9\u11bb\u11c3-\u11ea\u11ec-\u11ef\u11f1-\u11f8\u11fa-\u1dff\u1e9c-\u1e9f\u1efa-\u1eff\u1f16-\u1f17\u1f1e-\u1f1f\u1f46-\u1f47\u1f4e-\u1f4f\u1f58\u1f5a\u1f5c\u1f5e\u1f7e-\u1f7f\u1fb5\u1fbd\u1fbf-\u1fc1\u1fc5\u1fcd-\u1fcf\u1fd4-\u1fd5\u1fdc-\u1fdf\u1fed-\u1ff1\u1ff5\u1ffd-\u2125\u2127-\u2129\u212c-\u212d\u212f-\u217f\u2183-\u3006\u3008-\u3020\u302a-\u3040\u3095-\u30a0\u30fb-\u3104\u312d-\u4dff\u9fa6-\uabff\ud7a4-\uffff]') # noqa + +# Simpler things +nonPubidCharRegexp = re.compile("[^\x20\x0D\x0Aa-zA-Z0-9\\-'()+,./:=?;!*#@$_%]") + + +class InfosetFilter(object): + replacementRegexp = re.compile(r"U[\dA-F]{5,5}") + + def __init__(self, + dropXmlnsLocalName=False, + dropXmlnsAttrNs=False, + preventDoubleDashComments=False, + preventDashAtCommentEnd=False, + replaceFormFeedCharacters=True, + preventSingleQuotePubid=False): + + self.dropXmlnsLocalName = dropXmlnsLocalName + self.dropXmlnsAttrNs = dropXmlnsAttrNs + + self.preventDoubleDashComments = preventDoubleDashComments + self.preventDashAtCommentEnd = preventDashAtCommentEnd + + self.replaceFormFeedCharacters = replaceFormFeedCharacters + + self.preventSingleQuotePubid = preventSingleQuotePubid + + self.replaceCache = {} + + def coerceAttribute(self, name, namespace=None): + if self.dropXmlnsLocalName and name.startswith("xmlns:"): + warnings.warn("Attributes cannot begin with xmlns", DataLossWarning) + return None + elif (self.dropXmlnsAttrNs and + namespace == "http://www.w3.org/2000/xmlns/"): + warnings.warn("Attributes cannot be in the xml namespace", DataLossWarning) + return None + else: + return self.toXmlName(name) + + def coerceElement(self, name): + return self.toXmlName(name) + + def coerceComment(self, data): + if self.preventDoubleDashComments: + while "--" in data: + warnings.warn("Comments cannot contain adjacent dashes", DataLossWarning) + data = data.replace("--", "- -") + if data.endswith("-"): + warnings.warn("Comments cannot end in a dash", DataLossWarning) + data += " " + return data + + def coerceCharacters(self, data): + if self.replaceFormFeedCharacters: + for _ in range(data.count("\x0C")): + warnings.warn("Text cannot contain U+000C", DataLossWarning) + data = data.replace("\x0C", " ") + # Other non-xml characters + return data + + def coercePubid(self, data): + dataOutput = data + for char in nonPubidCharRegexp.findall(data): + warnings.warn("Coercing non-XML pubid", DataLossWarning) + replacement = self.getReplacementCharacter(char) + dataOutput = dataOutput.replace(char, replacement) + if self.preventSingleQuotePubid and dataOutput.find("'") >= 0: + warnings.warn("Pubid cannot contain single quote", DataLossWarning) + dataOutput = dataOutput.replace("'", self.getReplacementCharacter("'")) + return dataOutput + + def toXmlName(self, name): + nameFirst = name[0] + nameRest = name[1:] + m = nonXmlNameFirstBMPRegexp.match(nameFirst) + if m: + warnings.warn("Coercing non-XML name: %s" % name, DataLossWarning) + nameFirstOutput = self.getReplacementCharacter(nameFirst) + else: + nameFirstOutput = nameFirst + + nameRestOutput = nameRest + replaceChars = set(nonXmlNameBMPRegexp.findall(nameRest)) + for char in replaceChars: + warnings.warn("Coercing non-XML name: %s" % name, DataLossWarning) + replacement = self.getReplacementCharacter(char) + nameRestOutput = nameRestOutput.replace(char, replacement) + return nameFirstOutput + nameRestOutput + + def getReplacementCharacter(self, char): + if char in self.replaceCache: + replacement = self.replaceCache[char] + else: + replacement = self.escapeChar(char) + return replacement + + def fromXmlName(self, name): + for item in set(self.replacementRegexp.findall(name)): + name = name.replace(item, self.unescapeChar(item)) + return name + + def escapeChar(self, char): + replacement = "U%05X" % ord(char) + self.replaceCache[char] = replacement + return replacement + + def unescapeChar(self, charcode): + return chr(int(charcode[1:], 16)) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_inputstream.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_inputstream.py new file mode 100644 index 000000000..e0bb37602 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_inputstream.py @@ -0,0 +1,918 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import text_type +from pip._vendor.six.moves import http_client, urllib + +import codecs +import re +from io import BytesIO, StringIO + +from pip._vendor import webencodings + +from .constants import EOF, spaceCharacters, asciiLetters, asciiUppercase +from .constants import _ReparseException +from . import _utils + +# Non-unicode versions of constants for use in the pre-parser +spaceCharactersBytes = frozenset([item.encode("ascii") for item in spaceCharacters]) +asciiLettersBytes = frozenset([item.encode("ascii") for item in asciiLetters]) +asciiUppercaseBytes = frozenset([item.encode("ascii") for item in asciiUppercase]) +spacesAngleBrackets = spaceCharactersBytes | frozenset([b">", b"<"]) + + +invalid_unicode_no_surrogate = "[\u0001-\u0008\u000B\u000E-\u001F\u007F-\u009F\uFDD0-\uFDEF\uFFFE\uFFFF\U0001FFFE\U0001FFFF\U0002FFFE\U0002FFFF\U0003FFFE\U0003FFFF\U0004FFFE\U0004FFFF\U0005FFFE\U0005FFFF\U0006FFFE\U0006FFFF\U0007FFFE\U0007FFFF\U0008FFFE\U0008FFFF\U0009FFFE\U0009FFFF\U000AFFFE\U000AFFFF\U000BFFFE\U000BFFFF\U000CFFFE\U000CFFFF\U000DFFFE\U000DFFFF\U000EFFFE\U000EFFFF\U000FFFFE\U000FFFFF\U0010FFFE\U0010FFFF]" # noqa + +if _utils.supports_lone_surrogates: + # Use one extra step of indirection and create surrogates with + # eval. Not using this indirection would introduce an illegal + # unicode literal on platforms not supporting such lone + # surrogates. + assert invalid_unicode_no_surrogate[-1] == "]" and invalid_unicode_no_surrogate.count("]") == 1 + invalid_unicode_re = re.compile(invalid_unicode_no_surrogate[:-1] + + eval('"\\uD800-\\uDFFF"') + # pylint:disable=eval-used + "]") +else: + invalid_unicode_re = re.compile(invalid_unicode_no_surrogate) + +non_bmp_invalid_codepoints = {0x1FFFE, 0x1FFFF, 0x2FFFE, 0x2FFFF, 0x3FFFE, + 0x3FFFF, 0x4FFFE, 0x4FFFF, 0x5FFFE, 0x5FFFF, + 0x6FFFE, 0x6FFFF, 0x7FFFE, 0x7FFFF, 0x8FFFE, + 0x8FFFF, 0x9FFFE, 0x9FFFF, 0xAFFFE, 0xAFFFF, + 0xBFFFE, 0xBFFFF, 0xCFFFE, 0xCFFFF, 0xDFFFE, + 0xDFFFF, 0xEFFFE, 0xEFFFF, 0xFFFFE, 0xFFFFF, + 0x10FFFE, 0x10FFFF} + +ascii_punctuation_re = re.compile("[\u0009-\u000D\u0020-\u002F\u003A-\u0040\u005C\u005B-\u0060\u007B-\u007E]") + +# Cache for charsUntil() +charsUntilRegEx = {} + + +class BufferedStream(object): + """Buffering for streams that do not have buffering of their own + + The buffer is implemented as a list of chunks on the assumption that + joining many strings will be slow since it is O(n**2) + """ + + def __init__(self, stream): + self.stream = stream + self.buffer = [] + self.position = [-1, 0] # chunk number, offset + + def tell(self): + pos = 0 + for chunk in self.buffer[:self.position[0]]: + pos += len(chunk) + pos += self.position[1] + return pos + + def seek(self, pos): + assert pos <= self._bufferedBytes() + offset = pos + i = 0 + while len(self.buffer[i]) < offset: + offset -= len(self.buffer[i]) + i += 1 + self.position = [i, offset] + + def read(self, bytes): + if not self.buffer: + return self._readStream(bytes) + elif (self.position[0] == len(self.buffer) and + self.position[1] == len(self.buffer[-1])): + return self._readStream(bytes) + else: + return self._readFromBuffer(bytes) + + def _bufferedBytes(self): + return sum([len(item) for item in self.buffer]) + + def _readStream(self, bytes): + data = self.stream.read(bytes) + self.buffer.append(data) + self.position[0] += 1 + self.position[1] = len(data) + return data + + def _readFromBuffer(self, bytes): + remainingBytes = bytes + rv = [] + bufferIndex = self.position[0] + bufferOffset = self.position[1] + while bufferIndex < len(self.buffer) and remainingBytes != 0: + assert remainingBytes > 0 + bufferedData = self.buffer[bufferIndex] + + if remainingBytes <= len(bufferedData) - bufferOffset: + bytesToRead = remainingBytes + self.position = [bufferIndex, bufferOffset + bytesToRead] + else: + bytesToRead = len(bufferedData) - bufferOffset + self.position = [bufferIndex, len(bufferedData)] + bufferIndex += 1 + rv.append(bufferedData[bufferOffset:bufferOffset + bytesToRead]) + remainingBytes -= bytesToRead + + bufferOffset = 0 + + if remainingBytes: + rv.append(self._readStream(remainingBytes)) + + return b"".join(rv) + + +def HTMLInputStream(source, **kwargs): + # Work around Python bug #20007: read(0) closes the connection. + # http://bugs.python.org/issue20007 + if (isinstance(source, http_client.HTTPResponse) or + # Also check for addinfourl wrapping HTTPResponse + (isinstance(source, urllib.response.addbase) and + isinstance(source.fp, http_client.HTTPResponse))): + isUnicode = False + elif hasattr(source, "read"): + isUnicode = isinstance(source.read(0), text_type) + else: + isUnicode = isinstance(source, text_type) + + if isUnicode: + encodings = [x for x in kwargs if x.endswith("_encoding")] + if encodings: + raise TypeError("Cannot set an encoding with a unicode input, set %r" % encodings) + + return HTMLUnicodeInputStream(source, **kwargs) + else: + return HTMLBinaryInputStream(source, **kwargs) + + +class HTMLUnicodeInputStream(object): + """Provides a unicode stream of characters to the HTMLTokenizer. + + This class takes care of character encoding and removing or replacing + incorrect byte-sequences and also provides column and line tracking. + + """ + + _defaultChunkSize = 10240 + + def __init__(self, source): + """Initialises the HTMLInputStream. + + HTMLInputStream(source, [encoding]) -> Normalized stream from source + for use by html5lib. + + source can be either a file-object, local filename or a string. + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + """ + + if not _utils.supports_lone_surrogates: + # Such platforms will have already checked for such + # surrogate errors, so no need to do this checking. + self.reportCharacterErrors = None + elif len("\U0010FFFF") == 1: + self.reportCharacterErrors = self.characterErrorsUCS4 + else: + self.reportCharacterErrors = self.characterErrorsUCS2 + + # List of where new lines occur + self.newLines = [0] + + self.charEncoding = (lookupEncoding("utf-8"), "certain") + self.dataStream = self.openStream(source) + + self.reset() + + def reset(self): + self.chunk = "" + self.chunkSize = 0 + self.chunkOffset = 0 + self.errors = [] + + # number of (complete) lines in previous chunks + self.prevNumLines = 0 + # number of columns in the last line of the previous chunk + self.prevNumCols = 0 + + # Deal with CR LF and surrogates split over chunk boundaries + self._bufferedCharacter = None + + def openStream(self, source): + """Produces a file object from source. + + source can be either a file object, local filename or a string. + + """ + # Already a file object + if hasattr(source, 'read'): + stream = source + else: + stream = StringIO(source) + + return stream + + def _position(self, offset): + chunk = self.chunk + nLines = chunk.count('\n', 0, offset) + positionLine = self.prevNumLines + nLines + lastLinePos = chunk.rfind('\n', 0, offset) + if lastLinePos == -1: + positionColumn = self.prevNumCols + offset + else: + positionColumn = offset - (lastLinePos + 1) + return (positionLine, positionColumn) + + def position(self): + """Returns (line, col) of the current position in the stream.""" + line, col = self._position(self.chunkOffset) + return (line + 1, col) + + def char(self): + """ Read one character from the stream or queue if available. Return + EOF when EOF is reached. + """ + # Read a new chunk from the input stream if necessary + if self.chunkOffset >= self.chunkSize: + if not self.readChunk(): + return EOF + + chunkOffset = self.chunkOffset + char = self.chunk[chunkOffset] + self.chunkOffset = chunkOffset + 1 + + return char + + def readChunk(self, chunkSize=None): + if chunkSize is None: + chunkSize = self._defaultChunkSize + + self.prevNumLines, self.prevNumCols = self._position(self.chunkSize) + + self.chunk = "" + self.chunkSize = 0 + self.chunkOffset = 0 + + data = self.dataStream.read(chunkSize) + + # Deal with CR LF and surrogates broken across chunks + if self._bufferedCharacter: + data = self._bufferedCharacter + data + self._bufferedCharacter = None + elif not data: + # We have no more data, bye-bye stream + return False + + if len(data) > 1: + lastv = ord(data[-1]) + if lastv == 0x0D or 0xD800 <= lastv <= 0xDBFF: + self._bufferedCharacter = data[-1] + data = data[:-1] + + if self.reportCharacterErrors: + self.reportCharacterErrors(data) + + # Replace invalid characters + data = data.replace("\r\n", "\n") + data = data.replace("\r", "\n") + + self.chunk = data + self.chunkSize = len(data) + + return True + + def characterErrorsUCS4(self, data): + for _ in range(len(invalid_unicode_re.findall(data))): + self.errors.append("invalid-codepoint") + + def characterErrorsUCS2(self, data): + # Someone picked the wrong compile option + # You lose + skip = False + for match in invalid_unicode_re.finditer(data): + if skip: + continue + codepoint = ord(match.group()) + pos = match.start() + # Pretty sure there should be endianness issues here + if _utils.isSurrogatePair(data[pos:pos + 2]): + # We have a surrogate pair! + char_val = _utils.surrogatePairToCodepoint(data[pos:pos + 2]) + if char_val in non_bmp_invalid_codepoints: + self.errors.append("invalid-codepoint") + skip = True + elif (codepoint >= 0xD800 and codepoint <= 0xDFFF and + pos == len(data) - 1): + self.errors.append("invalid-codepoint") + else: + skip = False + self.errors.append("invalid-codepoint") + + def charsUntil(self, characters, opposite=False): + """ Returns a string of characters from the stream up to but not + including any character in 'characters' or EOF. 'characters' must be + a container that supports the 'in' method and iteration over its + characters. + """ + + # Use a cache of regexps to find the required characters + try: + chars = charsUntilRegEx[(characters, opposite)] + except KeyError: + if __debug__: + for c in characters: + assert(ord(c) < 128) + regex = "".join(["\\x%02x" % ord(c) for c in characters]) + if not opposite: + regex = "^%s" % regex + chars = charsUntilRegEx[(characters, opposite)] = re.compile("[%s]+" % regex) + + rv = [] + + while True: + # Find the longest matching prefix + m = chars.match(self.chunk, self.chunkOffset) + if m is None: + # If nothing matched, and it wasn't because we ran out of chunk, + # then stop + if self.chunkOffset != self.chunkSize: + break + else: + end = m.end() + # If not the whole chunk matched, return everything + # up to the part that didn't match + if end != self.chunkSize: + rv.append(self.chunk[self.chunkOffset:end]) + self.chunkOffset = end + break + # If the whole remainder of the chunk matched, + # use it all and read the next chunk + rv.append(self.chunk[self.chunkOffset:]) + if not self.readChunk(): + # Reached EOF + break + + r = "".join(rv) + return r + + def unget(self, char): + # Only one character is allowed to be ungotten at once - it must + # be consumed again before any further call to unget + if char is not EOF: + if self.chunkOffset == 0: + # unget is called quite rarely, so it's a good idea to do + # more work here if it saves a bit of work in the frequently + # called char and charsUntil. + # So, just prepend the ungotten character onto the current + # chunk: + self.chunk = char + self.chunk + self.chunkSize += 1 + else: + self.chunkOffset -= 1 + assert self.chunk[self.chunkOffset] == char + + +class HTMLBinaryInputStream(HTMLUnicodeInputStream): + """Provides a unicode stream of characters to the HTMLTokenizer. + + This class takes care of character encoding and removing or replacing + incorrect byte-sequences and also provides column and line tracking. + + """ + + def __init__(self, source, override_encoding=None, transport_encoding=None, + same_origin_parent_encoding=None, likely_encoding=None, + default_encoding="windows-1252", useChardet=True): + """Initialises the HTMLInputStream. + + HTMLInputStream(source, [encoding]) -> Normalized stream from source + for use by html5lib. + + source can be either a file-object, local filename or a string. + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + """ + # Raw Stream - for unicode objects this will encode to utf-8 and set + # self.charEncoding as appropriate + self.rawStream = self.openStream(source) + + HTMLUnicodeInputStream.__init__(self, self.rawStream) + + # Encoding Information + # Number of bytes to use when looking for a meta element with + # encoding information + self.numBytesMeta = 1024 + # Number of bytes to use when using detecting encoding using chardet + self.numBytesChardet = 100 + # Things from args + self.override_encoding = override_encoding + self.transport_encoding = transport_encoding + self.same_origin_parent_encoding = same_origin_parent_encoding + self.likely_encoding = likely_encoding + self.default_encoding = default_encoding + + # Determine encoding + self.charEncoding = self.determineEncoding(useChardet) + assert self.charEncoding[0] is not None + + # Call superclass + self.reset() + + def reset(self): + self.dataStream = self.charEncoding[0].codec_info.streamreader(self.rawStream, 'replace') + HTMLUnicodeInputStream.reset(self) + + def openStream(self, source): + """Produces a file object from source. + + source can be either a file object, local filename or a string. + + """ + # Already a file object + if hasattr(source, 'read'): + stream = source + else: + stream = BytesIO(source) + + try: + stream.seek(stream.tell()) + except Exception: + stream = BufferedStream(stream) + + return stream + + def determineEncoding(self, chardet=True): + # BOMs take precedence over everything + # This will also read past the BOM if present + charEncoding = self.detectBOM(), "certain" + if charEncoding[0] is not None: + return charEncoding + + # If we've been overridden, we've been overridden + charEncoding = lookupEncoding(self.override_encoding), "certain" + if charEncoding[0] is not None: + return charEncoding + + # Now check the transport layer + charEncoding = lookupEncoding(self.transport_encoding), "certain" + if charEncoding[0] is not None: + return charEncoding + + # Look for meta elements with encoding information + charEncoding = self.detectEncodingMeta(), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Parent document encoding + charEncoding = lookupEncoding(self.same_origin_parent_encoding), "tentative" + if charEncoding[0] is not None and not charEncoding[0].name.startswith("utf-16"): + return charEncoding + + # "likely" encoding + charEncoding = lookupEncoding(self.likely_encoding), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Guess with chardet, if available + if chardet: + try: + from pip._vendor.chardet.universaldetector import UniversalDetector + except ImportError: + pass + else: + buffers = [] + detector = UniversalDetector() + while not detector.done: + buffer = self.rawStream.read(self.numBytesChardet) + assert isinstance(buffer, bytes) + if not buffer: + break + buffers.append(buffer) + detector.feed(buffer) + detector.close() + encoding = lookupEncoding(detector.result['encoding']) + self.rawStream.seek(0) + if encoding is not None: + return encoding, "tentative" + + # Try the default encoding + charEncoding = lookupEncoding(self.default_encoding), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Fallback to html5lib's default if even that hasn't worked + return lookupEncoding("windows-1252"), "tentative" + + def changeEncoding(self, newEncoding): + assert self.charEncoding[1] != "certain" + newEncoding = lookupEncoding(newEncoding) + if newEncoding is None: + return + if newEncoding.name in ("utf-16be", "utf-16le"): + newEncoding = lookupEncoding("utf-8") + assert newEncoding is not None + elif newEncoding == self.charEncoding[0]: + self.charEncoding = (self.charEncoding[0], "certain") + else: + self.rawStream.seek(0) + self.charEncoding = (newEncoding, "certain") + self.reset() + raise _ReparseException("Encoding changed from %s to %s" % (self.charEncoding[0], newEncoding)) + + def detectBOM(self): + """Attempts to detect at BOM at the start of the stream. If + an encoding can be determined from the BOM return the name of the + encoding otherwise return None""" + bomDict = { + codecs.BOM_UTF8: 'utf-8', + codecs.BOM_UTF16_LE: 'utf-16le', codecs.BOM_UTF16_BE: 'utf-16be', + codecs.BOM_UTF32_LE: 'utf-32le', codecs.BOM_UTF32_BE: 'utf-32be' + } + + # Go to beginning of file and read in 4 bytes + string = self.rawStream.read(4) + assert isinstance(string, bytes) + + # Try detecting the BOM using bytes from the string + encoding = bomDict.get(string[:3]) # UTF-8 + seek = 3 + if not encoding: + # Need to detect UTF-32 before UTF-16 + encoding = bomDict.get(string) # UTF-32 + seek = 4 + if not encoding: + encoding = bomDict.get(string[:2]) # UTF-16 + seek = 2 + + # Set the read position past the BOM if one was found, otherwise + # set it to the start of the stream + if encoding: + self.rawStream.seek(seek) + return lookupEncoding(encoding) + else: + self.rawStream.seek(0) + return None + + def detectEncodingMeta(self): + """Report the encoding declared by the meta element + """ + buffer = self.rawStream.read(self.numBytesMeta) + assert isinstance(buffer, bytes) + parser = EncodingParser(buffer) + self.rawStream.seek(0) + encoding = parser.getEncoding() + + if encoding is not None and encoding.name in ("utf-16be", "utf-16le"): + encoding = lookupEncoding("utf-8") + + return encoding + + +class EncodingBytes(bytes): + """String-like object with an associated position and various extra methods + If the position is ever greater than the string length then an exception is + raised""" + def __new__(self, value): + assert isinstance(value, bytes) + return bytes.__new__(self, value.lower()) + + def __init__(self, value): + # pylint:disable=unused-argument + self._position = -1 + + def __iter__(self): + return self + + def __next__(self): + p = self._position = self._position + 1 + if p >= len(self): + raise StopIteration + elif p < 0: + raise TypeError + return self[p:p + 1] + + def next(self): + # Py2 compat + return self.__next__() + + def previous(self): + p = self._position + if p >= len(self): + raise StopIteration + elif p < 0: + raise TypeError + self._position = p = p - 1 + return self[p:p + 1] + + def setPosition(self, position): + if self._position >= len(self): + raise StopIteration + self._position = position + + def getPosition(self): + if self._position >= len(self): + raise StopIteration + if self._position >= 0: + return self._position + else: + return None + + position = property(getPosition, setPosition) + + def getCurrentByte(self): + return self[self.position:self.position + 1] + + currentByte = property(getCurrentByte) + + def skip(self, chars=spaceCharactersBytes): + """Skip past a list of characters""" + p = self.position # use property for the error-checking + while p < len(self): + c = self[p:p + 1] + if c not in chars: + self._position = p + return c + p += 1 + self._position = p + return None + + def skipUntil(self, chars): + p = self.position + while p < len(self): + c = self[p:p + 1] + if c in chars: + self._position = p + return c + p += 1 + self._position = p + return None + + def matchBytes(self, bytes): + """Look for a sequence of bytes at the start of a string. If the bytes + are found return True and advance the position to the byte after the + match. Otherwise return False and leave the position alone""" + rv = self.startswith(bytes, self.position) + if rv: + self.position += len(bytes) + return rv + + def jumpTo(self, bytes): + """Look for the next sequence of bytes matching a given sequence. If + a match is found advance the position to the last byte of the match""" + try: + self._position = self.index(bytes, self.position) + len(bytes) - 1 + except ValueError: + raise StopIteration + return True + + +class EncodingParser(object): + """Mini parser for detecting character encoding from meta elements""" + + def __init__(self, data): + """string - the data to work on for encoding detection""" + self.data = EncodingBytes(data) + self.encoding = None + + def getEncoding(self): + if b"") + + def handleMeta(self): + if self.data.currentByte not in spaceCharactersBytes: + # if we have ") + + def getAttribute(self): + """Return a name,value pair for the next attribute in the stream, + if one is found, or None""" + data = self.data + # Step 1 (skip chars) + c = data.skip(spaceCharactersBytes | frozenset([b"/"])) + assert c is None or len(c) == 1 + # Step 2 + if c in (b">", None): + return None + # Step 3 + attrName = [] + attrValue = [] + # Step 4 attribute name + while True: + if c == b"=" and attrName: + break + elif c in spaceCharactersBytes: + # Step 6! + c = data.skip() + break + elif c in (b"/", b">"): + return b"".join(attrName), b"" + elif c in asciiUppercaseBytes: + attrName.append(c.lower()) + elif c is None: + return None + else: + attrName.append(c) + # Step 5 + c = next(data) + # Step 7 + if c != b"=": + data.previous() + return b"".join(attrName), b"" + # Step 8 + next(data) + # Step 9 + c = data.skip() + # Step 10 + if c in (b"'", b'"'): + # 10.1 + quoteChar = c + while True: + # 10.2 + c = next(data) + # 10.3 + if c == quoteChar: + next(data) + return b"".join(attrName), b"".join(attrValue) + # 10.4 + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + # 10.5 + else: + attrValue.append(c) + elif c == b">": + return b"".join(attrName), b"" + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + elif c is None: + return None + else: + attrValue.append(c) + # Step 11 + while True: + c = next(data) + if c in spacesAngleBrackets: + return b"".join(attrName), b"".join(attrValue) + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + elif c is None: + return None + else: + attrValue.append(c) + + +class ContentAttrParser(object): + def __init__(self, data): + assert isinstance(data, bytes) + self.data = data + + def parse(self): + try: + # Check if the attr name is charset + # otherwise return + self.data.jumpTo(b"charset") + self.data.position += 1 + self.data.skip() + if not self.data.currentByte == b"=": + # If there is no = sign keep looking for attrs + return None + self.data.position += 1 + self.data.skip() + # Look for an encoding between matching quote marks + if self.data.currentByte in (b'"', b"'"): + quoteMark = self.data.currentByte + self.data.position += 1 + oldPosition = self.data.position + if self.data.jumpTo(quoteMark): + return self.data[oldPosition:self.data.position] + else: + return None + else: + # Unquoted value + oldPosition = self.data.position + try: + self.data.skipUntil(spaceCharactersBytes) + return self.data[oldPosition:self.data.position] + except StopIteration: + # Return the whole remaining value + return self.data[oldPosition:] + except StopIteration: + return None + + +def lookupEncoding(encoding): + """Return the python codec name corresponding to an encoding or None if the + string doesn't correspond to a valid encoding.""" + if isinstance(encoding, bytes): + try: + encoding = encoding.decode("ascii") + except UnicodeDecodeError: + return None + + if encoding is not None: + try: + return webencodings.lookup(encoding) + except AttributeError: + return None + else: + return None diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_tokenizer.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_tokenizer.py new file mode 100644 index 000000000..5f00253e2 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_tokenizer.py @@ -0,0 +1,1735 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import unichr as chr + +from collections import deque, OrderedDict +from sys import version_info + +from .constants import spaceCharacters +from .constants import entities +from .constants import asciiLetters, asciiUpper2Lower +from .constants import digits, hexDigits, EOF +from .constants import tokenTypes, tagTokenTypes +from .constants import replacementCharacters + +from ._inputstream import HTMLInputStream + +from ._trie import Trie + +entitiesTrie = Trie(entities) + +if version_info >= (3, 7): + attributeMap = dict +else: + attributeMap = OrderedDict + + +class HTMLTokenizer(object): + """ This class takes care of tokenizing HTML. + + * self.currentToken + Holds the token that is currently being processed. + + * self.state + Holds a reference to the method to be invoked... XXX + + * self.stream + Points to HTMLInputStream object. + """ + + def __init__(self, stream, parser=None, **kwargs): + + self.stream = HTMLInputStream(stream, **kwargs) + self.parser = parser + + # Setup the initial tokenizer state + self.escapeFlag = False + self.lastFourChars = [] + self.state = self.dataState + self.escape = False + + # The current token being created + self.currentToken = None + super(HTMLTokenizer, self).__init__() + + def __iter__(self): + """ This is where the magic happens. + + We do our usually processing through the states and when we have a token + to return we yield the token which pauses processing until the next token + is requested. + """ + self.tokenQueue = deque([]) + # Start processing. When EOF is reached self.state will return False + # instead of True and the loop will terminate. + while self.state(): + while self.stream.errors: + yield {"type": tokenTypes["ParseError"], "data": self.stream.errors.pop(0)} + while self.tokenQueue: + yield self.tokenQueue.popleft() + + def consumeNumberEntity(self, isHex): + """This function returns either U+FFFD or the character based on the + decimal or hexadecimal representation. It also discards ";" if present. + If not present self.tokenQueue.append({"type": tokenTypes["ParseError"]}) is invoked. + """ + + allowed = digits + radix = 10 + if isHex: + allowed = hexDigits + radix = 16 + + charStack = [] + + # Consume all the characters that are in range while making sure we + # don't hit an EOF. + c = self.stream.char() + while c in allowed and c is not EOF: + charStack.append(c) + c = self.stream.char() + + # Convert the set of characters consumed to an int. + charAsInt = int("".join(charStack), radix) + + # Certain characters get replaced with others + if charAsInt in replacementCharacters: + char = replacementCharacters[charAsInt] + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + elif ((0xD800 <= charAsInt <= 0xDFFF) or + (charAsInt > 0x10FFFF)): + char = "\uFFFD" + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + else: + # Should speed up this check somehow (e.g. move the set to a constant) + if ((0x0001 <= charAsInt <= 0x0008) or + (0x000E <= charAsInt <= 0x001F) or + (0x007F <= charAsInt <= 0x009F) or + (0xFDD0 <= charAsInt <= 0xFDEF) or + charAsInt in frozenset([0x000B, 0xFFFE, 0xFFFF, 0x1FFFE, + 0x1FFFF, 0x2FFFE, 0x2FFFF, 0x3FFFE, + 0x3FFFF, 0x4FFFE, 0x4FFFF, 0x5FFFE, + 0x5FFFF, 0x6FFFE, 0x6FFFF, 0x7FFFE, + 0x7FFFF, 0x8FFFE, 0x8FFFF, 0x9FFFE, + 0x9FFFF, 0xAFFFE, 0xAFFFF, 0xBFFFE, + 0xBFFFF, 0xCFFFE, 0xCFFFF, 0xDFFFE, + 0xDFFFF, 0xEFFFE, 0xEFFFF, 0xFFFFE, + 0xFFFFF, 0x10FFFE, 0x10FFFF])): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + try: + # Try/except needed as UCS-2 Python builds' unichar only works + # within the BMP. + char = chr(charAsInt) + except ValueError: + v = charAsInt - 0x10000 + char = chr(0xD800 | (v >> 10)) + chr(0xDC00 | (v & 0x3FF)) + + # Discard the ; if present. Otherwise, put it back on the queue and + # invoke parseError on parser. + if c != ";": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "numeric-entity-without-semicolon"}) + self.stream.unget(c) + + return char + + def consumeEntity(self, allowedChar=None, fromAttribute=False): + # Initialise to the default output for when no entity is matched + output = "&" + + charStack = [self.stream.char()] + if (charStack[0] in spaceCharacters or charStack[0] in (EOF, "<", "&") or + (allowedChar is not None and allowedChar == charStack[0])): + self.stream.unget(charStack[0]) + + elif charStack[0] == "#": + # Read the next character to see if it's hex or decimal + hex = False + charStack.append(self.stream.char()) + if charStack[-1] in ("x", "X"): + hex = True + charStack.append(self.stream.char()) + + # charStack[-1] should be the first digit + if (hex and charStack[-1] in hexDigits) \ + or (not hex and charStack[-1] in digits): + # At least one digit found, so consume the whole number + self.stream.unget(charStack[-1]) + output = self.consumeNumberEntity(hex) + else: + # No digits found + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "expected-numeric-entity"}) + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + + else: + # At this point in the process might have named entity. Entities + # are stored in the global variable "entities". + # + # Consume characters and compare to these to a substring of the + # entity names in the list until the substring no longer matches. + while (charStack[-1] is not EOF): + if not entitiesTrie.has_keys_with_prefix("".join(charStack)): + break + charStack.append(self.stream.char()) + + # At this point we have a string that starts with some characters + # that may match an entity + # Try to find the longest entity the string will match to take care + # of ¬i for instance. + try: + entityName = entitiesTrie.longest_prefix("".join(charStack[:-1])) + entityLength = len(entityName) + except KeyError: + entityName = None + + if entityName is not None: + if entityName[-1] != ";": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "named-entity-without-semicolon"}) + if (entityName[-1] != ";" and fromAttribute and + (charStack[entityLength] in asciiLetters or + charStack[entityLength] in digits or + charStack[entityLength] == "=")): + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + else: + output = entities[entityName] + self.stream.unget(charStack.pop()) + output += "".join(charStack[entityLength:]) + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-named-entity"}) + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + + if fromAttribute: + self.currentToken["data"][-1][1] += output + else: + if output in spaceCharacters: + tokenType = "SpaceCharacters" + else: + tokenType = "Characters" + self.tokenQueue.append({"type": tokenTypes[tokenType], "data": output}) + + def processEntityInAttribute(self, allowedChar): + """This method replaces the need for "entityInAttributeValueState". + """ + self.consumeEntity(allowedChar=allowedChar, fromAttribute=True) + + def emitCurrentToken(self): + """This method is a generic handler for emitting the tags. It also sets + the state to "data" because that's what's needed after a token has been + emitted. + """ + token = self.currentToken + # Add token to the queue to be yielded + if (token["type"] in tagTokenTypes): + token["name"] = token["name"].translate(asciiUpper2Lower) + if token["type"] == tokenTypes["StartTag"]: + raw = token["data"] + data = attributeMap(raw) + if len(raw) > len(data): + # we had some duplicated attribute, fix so first wins + data.update(raw[::-1]) + token["data"] = data + + if token["type"] == tokenTypes["EndTag"]: + if token["data"]: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "attributes-in-end-tag"}) + if token["selfClosing"]: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "self-closing-flag-on-end-tag"}) + self.tokenQueue.append(token) + self.state = self.dataState + + # Below are the various tokenizer states worked out. + def dataState(self): + data = self.stream.char() + if data == "&": + self.state = self.entityDataState + elif data == "<": + self.state = self.tagOpenState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\u0000"}) + elif data is EOF: + # Tokenization ends. + return False + elif data in spaceCharacters: + # Directly after emitting a token you switch back to the "data + # state". At that point spaceCharacters are important so they are + # emitted separately. + self.tokenQueue.append({"type": tokenTypes["SpaceCharacters"], "data": + data + self.stream.charsUntil(spaceCharacters, True)}) + # No need to update lastFourChars here, since the first space will + # have already been appended to lastFourChars and will have broken + # any sequences + else: + chars = self.stream.charsUntil(("&", "<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def entityDataState(self): + self.consumeEntity() + self.state = self.dataState + return True + + def rcdataState(self): + data = self.stream.char() + if data == "&": + self.state = self.characterReferenceInRcdata + elif data == "<": + self.state = self.rcdataLessThanSignState + elif data == EOF: + # Tokenization ends. + return False + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data in spaceCharacters: + # Directly after emitting a token you switch back to the "data + # state". At that point spaceCharacters are important so they are + # emitted separately. + self.tokenQueue.append({"type": tokenTypes["SpaceCharacters"], "data": + data + self.stream.charsUntil(spaceCharacters, True)}) + # No need to update lastFourChars here, since the first space will + # have already been appended to lastFourChars and will have broken + # any sequences + else: + chars = self.stream.charsUntil(("&", "<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def characterReferenceInRcdata(self): + self.consumeEntity() + self.state = self.rcdataState + return True + + def rawtextState(self): + data = self.stream.char() + if data == "<": + self.state = self.rawtextLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + # Tokenization ends. + return False + else: + chars = self.stream.charsUntil(("<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def scriptDataState(self): + data = self.stream.char() + if data == "<": + self.state = self.scriptDataLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + # Tokenization ends. + return False + else: + chars = self.stream.charsUntil(("<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def plaintextState(self): + data = self.stream.char() + if data == EOF: + # Tokenization ends. + return False + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + self.stream.charsUntil("\u0000")}) + return True + + def tagOpenState(self): + data = self.stream.char() + if data == "!": + self.state = self.markupDeclarationOpenState + elif data == "/": + self.state = self.closeTagOpenState + elif data in asciiLetters: + self.currentToken = {"type": tokenTypes["StartTag"], + "name": data, "data": [], + "selfClosing": False, + "selfClosingAcknowledged": False} + self.state = self.tagNameState + elif data == ">": + # XXX In theory it could be something besides a tag name. But + # do we really care? + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name-but-got-right-bracket"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<>"}) + self.state = self.dataState + elif data == "?": + # XXX In theory it could be something besides a tag name. But + # do we really care? + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name-but-got-question-mark"}) + self.stream.unget(data) + self.state = self.bogusCommentState + else: + # XXX + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.dataState + return True + + def closeTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.currentToken = {"type": tokenTypes["EndTag"], "name": data, + "data": [], "selfClosing": False} + self.state = self.tagNameState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-closing-tag-but-got-right-bracket"}) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-closing-tag-but-got-eof"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "": + self.emitCurrentToken() + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-tag-name"}) + self.state = self.dataState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] += "\uFFFD" + else: + self.currentToken["name"] += data + # (Don't use charsUntil here, because tag names are + # very short and it's faster to not do anything fancy) + return True + + def rcdataLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.temporaryBuffer = "" + self.state = self.rcdataEndTagOpenState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.rcdataState + return True + + def rcdataEndTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.temporaryBuffer += data + self.state = self.rcdataEndTagNameState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": ">"}) + self.state = self.scriptDataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataEscapedState + elif data == EOF: + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataEscapedState + return True + + def scriptDataEscapedLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.temporaryBuffer = "" + self.state = self.scriptDataEscapedEndTagOpenState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<" + data}) + self.temporaryBuffer = data + self.state = self.scriptDataDoubleEscapeStartState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.scriptDataEscapedState + return True + + def scriptDataEscapedEndTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.temporaryBuffer = data + self.state = self.scriptDataEscapedEndTagNameState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": ""))): + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + if self.temporaryBuffer.lower() == "script": + self.state = self.scriptDataDoubleEscapedState + else: + self.state = self.scriptDataEscapedState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.temporaryBuffer += data + else: + self.stream.unget(data) + self.state = self.scriptDataEscapedState + return True + + def scriptDataDoubleEscapedState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + self.state = self.scriptDataDoubleEscapedDashState + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + return True + + def scriptDataDoubleEscapedDashState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + self.state = self.scriptDataDoubleEscapedDashDashState + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataDoubleEscapedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapedDashDashState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": ">"}) + self.state = self.scriptDataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataDoubleEscapedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapedLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "/"}) + self.temporaryBuffer = "" + self.state = self.scriptDataDoubleEscapeEndState + else: + self.stream.unget(data) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapeEndState(self): + data = self.stream.char() + if data in (spaceCharacters | frozenset(("/", ">"))): + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + if self.temporaryBuffer.lower() == "script": + self.state = self.scriptDataEscapedState + else: + self.state = self.scriptDataDoubleEscapedState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.temporaryBuffer += data + else: + self.stream.unget(data) + self.state = self.scriptDataDoubleEscapedState + return True + + def beforeAttributeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data in asciiLetters: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == ">": + self.emitCurrentToken() + elif data == "/": + self.state = self.selfClosingStartTagState + elif data in ("'", '"', "=", "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "invalid-character-in-attribute-name"}) + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"].append(["\uFFFD", ""]) + self.state = self.attributeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-name-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + return True + + def attributeNameState(self): + data = self.stream.char() + leavingThisState = True + emitToken = False + if data == "=": + self.state = self.beforeAttributeValueState + elif data in asciiLetters: + self.currentToken["data"][-1][0] += data +\ + self.stream.charsUntil(asciiLetters, True) + leavingThisState = False + elif data == ">": + # XXX If we emit here the attributes are converted to a dict + # without being checked and when the code below runs we error + # because data is a dict not a list + emitToken = True + elif data in spaceCharacters: + self.state = self.afterAttributeNameState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][0] += "\uFFFD" + leavingThisState = False + elif data in ("'", '"', "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "invalid-character-in-attribute-name"}) + self.currentToken["data"][-1][0] += data + leavingThisState = False + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "eof-in-attribute-name"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][0] += data + leavingThisState = False + + if leavingThisState: + # Attributes are not dropped at this stage. That happens when the + # start tag token is emitted so values can still be safely appended + # to attributes, but we do want to report the parse error in time. + self.currentToken["data"][-1][0] = ( + self.currentToken["data"][-1][0].translate(asciiUpper2Lower)) + for name, _ in self.currentToken["data"][:-1]: + if self.currentToken["data"][-1][0] == name: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "duplicate-attribute"}) + break + # XXX Fix for above XXX + if emitToken: + self.emitCurrentToken() + return True + + def afterAttributeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data == "=": + self.state = self.beforeAttributeValueState + elif data == ">": + self.emitCurrentToken() + elif data in asciiLetters: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"].append(["\uFFFD", ""]) + self.state = self.attributeNameState + elif data in ("'", '"', "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "invalid-character-after-attribute-name"}) + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-end-of-tag-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + return True + + def beforeAttributeValueState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data == "\"": + self.state = self.attributeValueDoubleQuotedState + elif data == "&": + self.state = self.attributeValueUnQuotedState + self.stream.unget(data) + elif data == "'": + self.state = self.attributeValueSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-value-but-got-right-bracket"}) + self.emitCurrentToken() + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + self.state = self.attributeValueUnQuotedState + elif data in ("=", "<", "`"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "equals-in-unquoted-attribute-value"}) + self.currentToken["data"][-1][1] += data + self.state = self.attributeValueUnQuotedState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-value-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data + self.state = self.attributeValueUnQuotedState + return True + + def attributeValueDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterAttributeValueState + elif data == "&": + self.processEntityInAttribute('"') + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-double-quote"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data +\ + self.stream.charsUntil(("\"", "&", "\u0000")) + return True + + def attributeValueSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterAttributeValueState + elif data == "&": + self.processEntityInAttribute("'") + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-single-quote"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data +\ + self.stream.charsUntil(("'", "&", "\u0000")) + return True + + def attributeValueUnQuotedState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeAttributeNameState + elif data == "&": + self.processEntityInAttribute(">") + elif data == ">": + self.emitCurrentToken() + elif data in ('"', "'", "=", "<", "`"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-in-unquoted-attribute-value"}) + self.currentToken["data"][-1][1] += data + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-no-quotes"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data + self.stream.charsUntil( + frozenset(("&", ">", '"', "'", "=", "<", "`", "\u0000")) | spaceCharacters) + return True + + def afterAttributeValueState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeAttributeNameState + elif data == ">": + self.emitCurrentToken() + elif data == "/": + self.state = self.selfClosingStartTagState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-EOF-after-attribute-value"}) + self.stream.unget(data) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-after-attribute-value"}) + self.stream.unget(data) + self.state = self.beforeAttributeNameState + return True + + def selfClosingStartTagState(self): + data = self.stream.char() + if data == ">": + self.currentToken["selfClosing"] = True + self.emitCurrentToken() + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "unexpected-EOF-after-solidus-in-tag"}) + self.stream.unget(data) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-after-solidus-in-tag"}) + self.stream.unget(data) + self.state = self.beforeAttributeNameState + return True + + def bogusCommentState(self): + # Make a new comment token and give it as value all the characters + # until the first > or EOF (charsUntil checks for EOF automatically) + # and emit it. + data = self.stream.charsUntil(">") + data = data.replace("\u0000", "\uFFFD") + self.tokenQueue.append( + {"type": tokenTypes["Comment"], "data": data}) + + # Eat the character directly after the bogus comment which is either a + # ">" or an EOF. + self.stream.char() + self.state = self.dataState + return True + + def markupDeclarationOpenState(self): + charStack = [self.stream.char()] + if charStack[-1] == "-": + charStack.append(self.stream.char()) + if charStack[-1] == "-": + self.currentToken = {"type": tokenTypes["Comment"], "data": ""} + self.state = self.commentStartState + return True + elif charStack[-1] in ('d', 'D'): + matched = True + for expected in (('o', 'O'), ('c', 'C'), ('t', 'T'), + ('y', 'Y'), ('p', 'P'), ('e', 'E')): + charStack.append(self.stream.char()) + if charStack[-1] not in expected: + matched = False + break + if matched: + self.currentToken = {"type": tokenTypes["Doctype"], + "name": "", + "publicId": None, "systemId": None, + "correct": True} + self.state = self.doctypeState + return True + elif (charStack[-1] == "[" and + self.parser is not None and + self.parser.tree.openElements and + self.parser.tree.openElements[-1].namespace != self.parser.tree.defaultNamespace): + matched = True + for expected in ["C", "D", "A", "T", "A", "["]: + charStack.append(self.stream.char()) + if charStack[-1] != expected: + matched = False + break + if matched: + self.state = self.cdataSectionState + return True + + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-dashes-or-doctype"}) + + while charStack: + self.stream.unget(charStack.pop()) + self.state = self.bogusCommentState + return True + + def commentStartState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentStartDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "incorrect-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += data + self.state = self.commentState + return True + + def commentStartDashState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "-\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "incorrect-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "-" + data + self.state = self.commentState + return True + + def commentState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += data + \ + self.stream.charsUntil(("-", "\u0000")) + return True + + def commentEndDashState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "-\uFFFD" + self.state = self.commentState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-end-dash"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "-" + data + self.state = self.commentState + return True + + def commentEndState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "--\uFFFD" + self.state = self.commentState + elif data == "!": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-bang-after-double-dash-in-comment"}) + self.state = self.commentEndBangState + elif data == "-": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-dash-after-double-dash-in-comment"}) + self.currentToken["data"] += data + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-double-dash"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + # XXX + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-comment"}) + self.currentToken["data"] += "--" + data + self.state = self.commentState + return True + + def commentEndBangState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "-": + self.currentToken["data"] += "--!" + self.state = self.commentEndDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "--!\uFFFD" + self.state = self.commentState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-end-bang-state"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "--!" + data + self.state = self.commentState + return True + + def doctypeState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-eof"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "need-space-after-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypeNameState + return True + + def beforeDoctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-right-bracket"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] = "\uFFFD" + self.state = self.doctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-eof"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["name"] = data + self.state = self.doctypeNameState + return True + + def doctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.state = self.afterDoctypeNameState + elif data == ">": + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] += "\uFFFD" + self.state = self.doctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype-name"}) + self.currentToken["correct"] = False + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["name"] += data + return True + + def afterDoctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.currentToken["correct"] = False + self.stream.unget(data) + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + if data in ("p", "P"): + matched = True + for expected in (("u", "U"), ("b", "B"), ("l", "L"), + ("i", "I"), ("c", "C")): + data = self.stream.char() + if data not in expected: + matched = False + break + if matched: + self.state = self.afterDoctypePublicKeywordState + return True + elif data in ("s", "S"): + matched = True + for expected in (("y", "Y"), ("s", "S"), ("t", "T"), + ("e", "E"), ("m", "M")): + data = self.stream.char() + if data not in expected: + matched = False + break + if matched: + self.state = self.afterDoctypeSystemKeywordState + return True + + # All the characters read before the current 'data' will be + # [a-zA-Z], so they're garbage in the bogus doctype and can be + # discarded; only the latest character might be '>' or EOF + # and needs to be ungetted + self.stream.unget(data) + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-space-or-right-bracket-in-doctype", "datavars": + {"data": data}}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + + return True + + def afterDoctypePublicKeywordState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypePublicIdentifierState + elif data in ("'", '"'): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypePublicIdentifierState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.stream.unget(data) + self.state = self.beforeDoctypePublicIdentifierState + return True + + def beforeDoctypePublicIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == "\"": + self.currentToken["publicId"] = "" + self.state = self.doctypePublicIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["publicId"] = "" + self.state = self.doctypePublicIdentifierSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def doctypePublicIdentifierDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterDoctypePublicIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["publicId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["publicId"] += data + return True + + def doctypePublicIdentifierSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterDoctypePublicIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["publicId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["publicId"] += data + return True + + def afterDoctypePublicIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.betweenDoctypePublicAndSystemIdentifiersState + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == '"': + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def betweenDoctypePublicAndSystemIdentifiersState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == '"': + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def afterDoctypeSystemKeywordState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypeSystemIdentifierState + elif data in ("'", '"'): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypeSystemIdentifierState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.stream.unget(data) + self.state = self.beforeDoctypeSystemIdentifierState + return True + + def beforeDoctypeSystemIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == "\"": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def doctypeSystemIdentifierDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterDoctypeSystemIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["systemId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["systemId"] += data + return True + + def doctypeSystemIdentifierSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterDoctypeSystemIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["systemId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["systemId"] += data + return True + + def afterDoctypeSystemIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.state = self.bogusDoctypeState + return True + + def bogusDoctypeState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + # XXX EMIT + self.stream.unget(data) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + pass + return True + + def cdataSectionState(self): + data = [] + while True: + data.append(self.stream.charsUntil("]")) + data.append(self.stream.charsUntil(">")) + char = self.stream.char() + if char == EOF: + break + else: + assert char == ">" + if data[-1][-2:] == "]]": + data[-1] = data[-1][:-2] + break + else: + data.append(char) + + data = "".join(data) # pylint:disable=redefined-variable-type + # Deal with null here rather than in the parser + nullCount = data.count("\u0000") + if nullCount > 0: + for _ in range(nullCount): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + data = data.replace("\u0000", "\uFFFD") + if data: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": data}) + self.state = self.dataState + return True diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py new file mode 100644 index 000000000..07bad5d31 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py @@ -0,0 +1,5 @@ +from __future__ import absolute_import, division, unicode_literals + +from .py import Trie + +__all__ = ["Trie"] diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e650a76ec94e5613d08f55ba058625c77d892bc4 GIT binary patch literal 438 zcmZutJ5B>J5cPiYQA7jHWy$ca@3Ur}kF~7-EG)s%Q#THl?bXsz9t{m8{jM z8Kt@Iie}74PiQedCOukI@tkhFk$vDGlr=8IDH8|bh0*b%*P=CygA{=~D*ds@e~MT? zJHg#Jk;la(&H%Q3=p6@e*^a9+)Cpo~hm$N$0H~AzZ^-35C-{6PFUIY?r7ib_(LgcR zozR>+p*y@WCbU#pvRY%IgEOpeL$ZZ~!GFcyi+0BTvqy?8Z--WL!Z`jRQf!DF!p`XH z<$6VYiinewJ?)YiD=dKn*UUJw3rgN(HH4I!00=Dtz|szJdaIHv$?x)Ae7?seIxA=8 E7hwi~@&Et; literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bc774ff00ce38fadd73a82b1baae54366ae77076 GIT binary patch literal 1690 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 beP4AL8{McbcN2S?#-6r8nm|;OZFv6x90v?R literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/_base.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/_base.py new file mode 100644 index 000000000..6b71975f0 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/_base.py @@ -0,0 +1,40 @@ +from __future__ import absolute_import, division, unicode_literals + +try: + from collections.abc import Mapping +except ImportError: # Python 2.7 + from collections import Mapping + + +class Trie(Mapping): + """Abstract base class for tries""" + + def keys(self, prefix=None): + # pylint:disable=arguments-differ + keys = super(Trie, self).keys() + + if prefix is None: + return set(keys) + + return {x for x in keys if x.startswith(prefix)} + + def has_keys_with_prefix(self, prefix): + for key in self.keys(): + if key.startswith(prefix): + return True + + return False + + def longest_prefix(self, prefix): + if prefix in self: + return prefix + + for i in range(1, len(prefix) + 1): + if prefix[:-i] in self: + return prefix[:-i] + + raise KeyError(prefix) + + def longest_prefix_item(self, prefix): + lprefix = self.longest_prefix(prefix) + return (lprefix, self[lprefix]) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/py.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/py.py new file mode 100644 index 000000000..c178b219d --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/py.py @@ -0,0 +1,67 @@ +from __future__ import absolute_import, division, unicode_literals +from pip._vendor.six import text_type + +from bisect import bisect_left + +from ._base import Trie as ABCTrie + + +class Trie(ABCTrie): + def __init__(self, data): + if not all(isinstance(x, text_type) for x in data.keys()): + raise TypeError("All keys must be strings") + + self._data = data + self._keys = sorted(data.keys()) + self._cachestr = "" + self._cachepoints = (0, len(data)) + + def __contains__(self, key): + return key in self._data + + def __len__(self): + return len(self._data) + + def __iter__(self): + return iter(self._data) + + def __getitem__(self, key): + return self._data[key] + + def keys(self, prefix=None): + if prefix is None or prefix == "" or not self._keys: + return set(self._keys) + + if prefix.startswith(self._cachestr): + lo, hi = self._cachepoints + start = i = bisect_left(self._keys, prefix, lo, hi) + else: + start = i = bisect_left(self._keys, prefix) + + keys = set() + if start == len(self._keys): + return keys + + while self._keys[i].startswith(prefix): + keys.add(self._keys[i]) + i += 1 + + self._cachestr = prefix + self._cachepoints = (start, i) + + return keys + + def has_keys_with_prefix(self, prefix): + if prefix in self._data: + return True + + if prefix.startswith(self._cachestr): + lo, hi = self._cachepoints + i = bisect_left(self._keys, prefix, lo, hi) + else: + i = bisect_left(self._keys, prefix) + + if i == len(self._keys): + return False + + return self._keys[i].startswith(prefix) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py new file mode 100644 index 000000000..d7c4926af --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py @@ -0,0 +1,159 @@ +from __future__ import absolute_import, division, unicode_literals + +from types import ModuleType + +try: + from collections.abc import Mapping +except ImportError: + from collections import Mapping + +from pip._vendor.six import text_type, PY3 + +if PY3: + import xml.etree.ElementTree as default_etree +else: + try: + import xml.etree.cElementTree as default_etree + except ImportError: + import xml.etree.ElementTree as default_etree + + +__all__ = ["default_etree", "MethodDispatcher", "isSurrogatePair", + "surrogatePairToCodepoint", "moduleFactoryFactory", + "supports_lone_surrogates"] + + +# Platforms not supporting lone surrogates (\uD800-\uDFFF) should be +# caught by the below test. In general this would be any platform +# using UTF-16 as its encoding of unicode strings, such as +# Jython. This is because UTF-16 itself is based on the use of such +# surrogates, and there is no mechanism to further escape such +# escapes. +try: + _x = eval('"\\uD800"') # pylint:disable=eval-used + if not isinstance(_x, text_type): + # We need this with u"" because of http://bugs.jython.org/issue2039 + _x = eval('u"\\uD800"') # pylint:disable=eval-used + assert isinstance(_x, text_type) +except Exception: + supports_lone_surrogates = False +else: + supports_lone_surrogates = True + + +class MethodDispatcher(dict): + """Dict with 2 special properties: + + On initiation, keys that are lists, sets or tuples are converted to + multiple keys so accessing any one of the items in the original + list-like object returns the matching value + + md = MethodDispatcher({("foo", "bar"):"baz"}) + md["foo"] == "baz" + + A default value which can be set through the default attribute. + """ + + def __init__(self, items=()): + _dictEntries = [] + for name, value in items: + if isinstance(name, (list, tuple, frozenset, set)): + for item in name: + _dictEntries.append((item, value)) + else: + _dictEntries.append((name, value)) + dict.__init__(self, _dictEntries) + assert len(self) == len(_dictEntries) + self.default = None + + def __getitem__(self, key): + return dict.get(self, key, self.default) + + def __get__(self, instance, owner=None): + return BoundMethodDispatcher(instance, self) + + +class BoundMethodDispatcher(Mapping): + """Wraps a MethodDispatcher, binding its return values to `instance`""" + def __init__(self, instance, dispatcher): + self.instance = instance + self.dispatcher = dispatcher + + def __getitem__(self, key): + # see https://docs.python.org/3/reference/datamodel.html#object.__get__ + # on a function, __get__ is used to bind a function to an instance as a bound method + return self.dispatcher[key].__get__(self.instance) + + def get(self, key, default): + if key in self.dispatcher: + return self[key] + else: + return default + + def __iter__(self): + return iter(self.dispatcher) + + def __len__(self): + return len(self.dispatcher) + + def __contains__(self, key): + return key in self.dispatcher + + +# Some utility functions to deal with weirdness around UCS2 vs UCS4 +# python builds + +def isSurrogatePair(data): + return (len(data) == 2 and + ord(data[0]) >= 0xD800 and ord(data[0]) <= 0xDBFF and + ord(data[1]) >= 0xDC00 and ord(data[1]) <= 0xDFFF) + + +def surrogatePairToCodepoint(data): + char_val = (0x10000 + (ord(data[0]) - 0xD800) * 0x400 + + (ord(data[1]) - 0xDC00)) + return char_val + +# Module Factory Factory (no, this isn't Java, I know) +# Here to stop this being duplicated all over the place. + + +def moduleFactoryFactory(factory): + moduleCache = {} + + def moduleFactory(baseModule, *args, **kwargs): + if isinstance(ModuleType.__name__, type("")): + name = "_%s_factory" % baseModule.__name__ + else: + name = b"_%s_factory" % baseModule.__name__ + + kwargs_tuple = tuple(kwargs.items()) + + try: + return moduleCache[name][args][kwargs_tuple] + except KeyError: + mod = ModuleType(name) + objs = factory(baseModule, *args, **kwargs) + mod.__dict__.update(objs) + if "name" not in moduleCache: + moduleCache[name] = {} + if "args" not in moduleCache[name]: + moduleCache[name][args] = {} + if "kwargs" not in moduleCache[name][args]: + moduleCache[name][args][kwargs_tuple] = {} + moduleCache[name][args][kwargs_tuple] = mod + return mod + + return moduleFactory + + +def memoize(func): + cache = {} + + def wrapped(*args, **kwargs): + key = (tuple(args), tuple(kwargs.items())) + if key not in cache: + cache[key] = func(*args, **kwargs) + return cache[key] + + return wrapped diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/constants.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/constants.py new file mode 100644 index 000000000..fe3e237cd --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/constants.py @@ -0,0 +1,2946 @@ +from __future__ import absolute_import, division, unicode_literals + +import string + +EOF = None + +E = { + "null-character": + "Null character in input stream, replaced with U+FFFD.", + "invalid-codepoint": + "Invalid codepoint in stream.", + "incorrectly-placed-solidus": + "Solidus (/) incorrectly placed in tag.", + "incorrect-cr-newline-entity": + "Incorrect CR newline entity, replaced with LF.", + "illegal-windows-1252-entity": + "Entity used with illegal number (windows-1252 reference).", + "cant-convert-numeric-entity": + "Numeric entity couldn't be converted to character " + "(codepoint U+%(charAsInt)08x).", + "illegal-codepoint-for-numeric-entity": + "Numeric entity represents an illegal codepoint: " + "U+%(charAsInt)08x.", + "numeric-entity-without-semicolon": + "Numeric entity didn't end with ';'.", + "expected-numeric-entity-but-got-eof": + "Numeric entity expected. Got end of file instead.", + "expected-numeric-entity": + "Numeric entity expected but none found.", + "named-entity-without-semicolon": + "Named entity didn't end with ';'.", + "expected-named-entity": + "Named entity expected. Got none.", + "attributes-in-end-tag": + "End tag contains unexpected attributes.", + 'self-closing-flag-on-end-tag': + "End tag contains unexpected self-closing flag.", + "expected-tag-name-but-got-right-bracket": + "Expected tag name. Got '>' instead.", + "expected-tag-name-but-got-question-mark": + "Expected tag name. Got '?' instead. (HTML doesn't " + "support processing instructions.)", + "expected-tag-name": + "Expected tag name. Got something else instead", + "expected-closing-tag-but-got-right-bracket": + "Expected closing tag. Got '>' instead. Ignoring ''.", + "expected-closing-tag-but-got-eof": + "Expected closing tag. Unexpected end of file.", + "expected-closing-tag-but-got-char": + "Expected closing tag. Unexpected character '%(data)s' found.", + "eof-in-tag-name": + "Unexpected end of file in the tag name.", + "expected-attribute-name-but-got-eof": + "Unexpected end of file. Expected attribute name instead.", + "eof-in-attribute-name": + "Unexpected end of file in attribute name.", + "invalid-character-in-attribute-name": + "Invalid character in attribute name", + "duplicate-attribute": + "Dropped duplicate attribute on tag.", + "expected-end-of-tag-name-but-got-eof": + "Unexpected end of file. Expected = or end of tag.", + "expected-attribute-value-but-got-eof": + "Unexpected end of file. Expected attribute value.", + "expected-attribute-value-but-got-right-bracket": + "Expected attribute value. Got '>' instead.", + 'equals-in-unquoted-attribute-value': + "Unexpected = in unquoted attribute", + 'unexpected-character-in-unquoted-attribute-value': + "Unexpected character in unquoted attribute", + "invalid-character-after-attribute-name": + "Unexpected character after attribute name.", + "unexpected-character-after-attribute-value": + "Unexpected character after attribute value.", + "eof-in-attribute-value-double-quote": + "Unexpected end of file in attribute value (\").", + "eof-in-attribute-value-single-quote": + "Unexpected end of file in attribute value (').", + "eof-in-attribute-value-no-quotes": + "Unexpected end of file in attribute value.", + "unexpected-EOF-after-solidus-in-tag": + "Unexpected end of file in tag. Expected >", + "unexpected-character-after-solidus-in-tag": + "Unexpected character after / in tag. Expected >", + "expected-dashes-or-doctype": + "Expected '--' or 'DOCTYPE'. Not found.", + "unexpected-bang-after-double-dash-in-comment": + "Unexpected ! after -- in comment", + "unexpected-space-after-double-dash-in-comment": + "Unexpected space after -- in comment", + "incorrect-comment": + "Incorrect comment.", + "eof-in-comment": + "Unexpected end of file in comment.", + "eof-in-comment-end-dash": + "Unexpected end of file in comment (-)", + "unexpected-dash-after-double-dash-in-comment": + "Unexpected '-' after '--' found in comment.", + "eof-in-comment-double-dash": + "Unexpected end of file in comment (--).", + "eof-in-comment-end-space-state": + "Unexpected end of file in comment.", + "eof-in-comment-end-bang-state": + "Unexpected end of file in comment.", + "unexpected-char-in-comment": + "Unexpected character in comment found.", + "need-space-after-doctype": + "No space after literal string 'DOCTYPE'.", + "expected-doctype-name-but-got-right-bracket": + "Unexpected > character. Expected DOCTYPE name.", + "expected-doctype-name-but-got-eof": + "Unexpected end of file. Expected DOCTYPE name.", + "eof-in-doctype-name": + "Unexpected end of file in DOCTYPE name.", + "eof-in-doctype": + "Unexpected end of file in DOCTYPE.", + "expected-space-or-right-bracket-in-doctype": + "Expected space or '>'. Got '%(data)s'", + "unexpected-end-of-doctype": + "Unexpected end of DOCTYPE.", + "unexpected-char-in-doctype": + "Unexpected character in DOCTYPE.", + "eof-in-innerhtml": + "XXX innerHTML EOF", + "unexpected-doctype": + "Unexpected DOCTYPE. Ignored.", + "non-html-root": + "html needs to be the first start tag.", + "expected-doctype-but-got-eof": + "Unexpected End of file. Expected DOCTYPE.", + "unknown-doctype": + "Erroneous DOCTYPE.", + "expected-doctype-but-got-chars": + "Unexpected non-space characters. Expected DOCTYPE.", + "expected-doctype-but-got-start-tag": + "Unexpected start tag (%(name)s). Expected DOCTYPE.", + "expected-doctype-but-got-end-tag": + "Unexpected end tag (%(name)s). Expected DOCTYPE.", + "end-tag-after-implied-root": + "Unexpected end tag (%(name)s) after the (implied) root element.", + "expected-named-closing-tag-but-got-eof": + "Unexpected end of file. Expected end tag (%(name)s).", + "two-heads-are-not-better-than-one": + "Unexpected start tag head in existing head. Ignored.", + "unexpected-end-tag": + "Unexpected end tag (%(name)s). Ignored.", + "unexpected-start-tag-out-of-my-head": + "Unexpected start tag (%(name)s) that can be in head. Moved.", + "unexpected-start-tag": + "Unexpected start tag (%(name)s).", + "missing-end-tag": + "Missing end tag (%(name)s).", + "missing-end-tags": + "Missing end tags (%(name)s).", + "unexpected-start-tag-implies-end-tag": + "Unexpected start tag (%(startName)s) " + "implies end tag (%(endName)s).", + "unexpected-start-tag-treated-as": + "Unexpected start tag (%(originalName)s). Treated as %(newName)s.", + "deprecated-tag": + "Unexpected start tag %(name)s. Don't use it!", + "unexpected-start-tag-ignored": + "Unexpected start tag %(name)s. Ignored.", + "expected-one-end-tag-but-got-another": + "Unexpected end tag (%(gotName)s). " + "Missing end tag (%(expectedName)s).", + "end-tag-too-early": + "End tag (%(name)s) seen too early. Expected other end tag.", + "end-tag-too-early-named": + "Unexpected end tag (%(gotName)s). Expected end tag (%(expectedName)s).", + "end-tag-too-early-ignored": + "End tag (%(name)s) seen too early. Ignored.", + "adoption-agency-1.1": + "End tag (%(name)s) violates step 1, " + "paragraph 1 of the adoption agency algorithm.", + "adoption-agency-1.2": + "End tag (%(name)s) violates step 1, " + "paragraph 2 of the adoption agency algorithm.", + "adoption-agency-1.3": + "End tag (%(name)s) violates step 1, " + "paragraph 3 of the adoption agency algorithm.", + "adoption-agency-4.4": + "End tag (%(name)s) violates step 4, " + "paragraph 4 of the adoption agency algorithm.", + "unexpected-end-tag-treated-as": + "Unexpected end tag (%(originalName)s). Treated as %(newName)s.", + "no-end-tag": + "This element (%(name)s) has no end tag.", + "unexpected-implied-end-tag-in-table": + "Unexpected implied end tag (%(name)s) in the table phase.", + "unexpected-implied-end-tag-in-table-body": + "Unexpected implied end tag (%(name)s) in the table body phase.", + "unexpected-char-implies-table-voodoo": + "Unexpected non-space characters in " + "table context caused voodoo mode.", + "unexpected-hidden-input-in-table": + "Unexpected input with type hidden in table context.", + "unexpected-form-in-table": + "Unexpected form in table context.", + "unexpected-start-tag-implies-table-voodoo": + "Unexpected start tag (%(name)s) in " + "table context caused voodoo mode.", + "unexpected-end-tag-implies-table-voodoo": + "Unexpected end tag (%(name)s) in " + "table context caused voodoo mode.", + "unexpected-cell-in-table-body": + "Unexpected table cell start tag (%(name)s) " + "in the table body phase.", + "unexpected-cell-end-tag": + "Got table cell end tag (%(name)s) " + "while required end tags are missing.", + "unexpected-end-tag-in-table-body": + "Unexpected end tag (%(name)s) in the table body phase. Ignored.", + "unexpected-implied-end-tag-in-table-row": + "Unexpected implied end tag (%(name)s) in the table row phase.", + "unexpected-end-tag-in-table-row": + "Unexpected end tag (%(name)s) in the table row phase. Ignored.", + "unexpected-select-in-select": + "Unexpected select start tag in the select phase " + "treated as select end tag.", + "unexpected-input-in-select": + "Unexpected input start tag in the select phase.", + "unexpected-start-tag-in-select": + "Unexpected start tag token (%(name)s in the select phase. " + "Ignored.", + "unexpected-end-tag-in-select": + "Unexpected end tag (%(name)s) in the select phase. Ignored.", + "unexpected-table-element-start-tag-in-select-in-table": + "Unexpected table element start tag (%(name)s) in the select in table phase.", + "unexpected-table-element-end-tag-in-select-in-table": + "Unexpected table element end tag (%(name)s) in the select in table phase.", + "unexpected-char-after-body": + "Unexpected non-space characters in the after body phase.", + "unexpected-start-tag-after-body": + "Unexpected start tag token (%(name)s)" + " in the after body phase.", + "unexpected-end-tag-after-body": + "Unexpected end tag token (%(name)s)" + " in the after body phase.", + "unexpected-char-in-frameset": + "Unexpected characters in the frameset phase. Characters ignored.", + "unexpected-start-tag-in-frameset": + "Unexpected start tag token (%(name)s)" + " in the frameset phase. Ignored.", + "unexpected-frameset-in-frameset-innerhtml": + "Unexpected end tag token (frameset) " + "in the frameset phase (innerHTML).", + "unexpected-end-tag-in-frameset": + "Unexpected end tag token (%(name)s)" + " in the frameset phase. Ignored.", + "unexpected-char-after-frameset": + "Unexpected non-space characters in the " + "after frameset phase. Ignored.", + "unexpected-start-tag-after-frameset": + "Unexpected start tag (%(name)s)" + " in the after frameset phase. Ignored.", + "unexpected-end-tag-after-frameset": + "Unexpected end tag (%(name)s)" + " in the after frameset phase. Ignored.", + "unexpected-end-tag-after-body-innerhtml": + "Unexpected end tag after body(innerHtml)", + "expected-eof-but-got-char": + "Unexpected non-space characters. Expected end of file.", + "expected-eof-but-got-start-tag": + "Unexpected start tag (%(name)s)" + ". Expected end of file.", + "expected-eof-but-got-end-tag": + "Unexpected end tag (%(name)s)" + ". Expected end of file.", + "eof-in-table": + "Unexpected end of file. Expected table content.", + "eof-in-select": + "Unexpected end of file. Expected select content.", + "eof-in-frameset": + "Unexpected end of file. Expected frameset content.", + "eof-in-script-in-script": + "Unexpected end of file. Expected script content.", + "eof-in-foreign-lands": + "Unexpected end of file. Expected foreign content", + "non-void-element-with-trailing-solidus": + "Trailing solidus not allowed on element %(name)s", + "unexpected-html-element-in-foreign-content": + "Element %(name)s not allowed in a non-html context", + "unexpected-end-tag-before-html": + "Unexpected end tag (%(name)s) before html.", + "unexpected-inhead-noscript-tag": + "Element %(name)s not allowed in a inhead-noscript context", + "eof-in-head-noscript": + "Unexpected end of file. Expected inhead-noscript content", + "char-in-head-noscript": + "Unexpected non-space character. Expected inhead-noscript content", + "XXX-undefined-error": + "Undefined error (this sucks and should be fixed)", +} + +namespaces = { + "html": "http://www.w3.org/1999/xhtml", + "mathml": "http://www.w3.org/1998/Math/MathML", + "svg": "http://www.w3.org/2000/svg", + "xlink": "http://www.w3.org/1999/xlink", + "xml": "http://www.w3.org/XML/1998/namespace", + "xmlns": "http://www.w3.org/2000/xmlns/" +} + +scopingElements = frozenset([ + (namespaces["html"], "applet"), + (namespaces["html"], "caption"), + (namespaces["html"], "html"), + (namespaces["html"], "marquee"), + (namespaces["html"], "object"), + (namespaces["html"], "table"), + (namespaces["html"], "td"), + (namespaces["html"], "th"), + (namespaces["mathml"], "mi"), + (namespaces["mathml"], "mo"), + (namespaces["mathml"], "mn"), + (namespaces["mathml"], "ms"), + (namespaces["mathml"], "mtext"), + (namespaces["mathml"], "annotation-xml"), + (namespaces["svg"], "foreignObject"), + (namespaces["svg"], "desc"), + (namespaces["svg"], "title"), +]) + +formattingElements = frozenset([ + (namespaces["html"], "a"), + (namespaces["html"], "b"), + (namespaces["html"], "big"), + (namespaces["html"], "code"), + (namespaces["html"], "em"), + (namespaces["html"], "font"), + (namespaces["html"], "i"), + (namespaces["html"], "nobr"), + (namespaces["html"], "s"), + (namespaces["html"], "small"), + (namespaces["html"], "strike"), + (namespaces["html"], "strong"), + (namespaces["html"], "tt"), + (namespaces["html"], "u") +]) + +specialElements = frozenset([ + (namespaces["html"], "address"), + (namespaces["html"], "applet"), + (namespaces["html"], "area"), + (namespaces["html"], "article"), + (namespaces["html"], "aside"), + (namespaces["html"], "base"), + (namespaces["html"], "basefont"), + (namespaces["html"], "bgsound"), + (namespaces["html"], "blockquote"), + (namespaces["html"], "body"), + (namespaces["html"], "br"), + (namespaces["html"], "button"), + (namespaces["html"], "caption"), + (namespaces["html"], "center"), + (namespaces["html"], "col"), + (namespaces["html"], "colgroup"), + (namespaces["html"], "command"), + (namespaces["html"], "dd"), + (namespaces["html"], "details"), + (namespaces["html"], "dir"), + (namespaces["html"], "div"), + (namespaces["html"], "dl"), + (namespaces["html"], "dt"), + (namespaces["html"], "embed"), + (namespaces["html"], "fieldset"), + (namespaces["html"], "figure"), + (namespaces["html"], "footer"), + (namespaces["html"], "form"), + (namespaces["html"], "frame"), + (namespaces["html"], "frameset"), + (namespaces["html"], "h1"), + (namespaces["html"], "h2"), + (namespaces["html"], "h3"), + (namespaces["html"], "h4"), + (namespaces["html"], "h5"), + (namespaces["html"], "h6"), + (namespaces["html"], "head"), + (namespaces["html"], "header"), + (namespaces["html"], "hr"), + (namespaces["html"], "html"), + (namespaces["html"], "iframe"), + # Note that image is commented out in the spec as "this isn't an + # element that can end up on the stack, so it doesn't matter," + (namespaces["html"], "image"), + (namespaces["html"], "img"), + (namespaces["html"], "input"), + (namespaces["html"], "isindex"), + (namespaces["html"], "li"), + (namespaces["html"], "link"), + (namespaces["html"], "listing"), + (namespaces["html"], "marquee"), + (namespaces["html"], "menu"), + (namespaces["html"], "meta"), + (namespaces["html"], "nav"), + (namespaces["html"], "noembed"), + (namespaces["html"], "noframes"), + (namespaces["html"], "noscript"), + (namespaces["html"], "object"), + (namespaces["html"], "ol"), + (namespaces["html"], "p"), + (namespaces["html"], "param"), + (namespaces["html"], "plaintext"), + (namespaces["html"], "pre"), + (namespaces["html"], "script"), + (namespaces["html"], "section"), + (namespaces["html"], "select"), + (namespaces["html"], "style"), + (namespaces["html"], "table"), + (namespaces["html"], "tbody"), + (namespaces["html"], "td"), + (namespaces["html"], "textarea"), + (namespaces["html"], "tfoot"), + (namespaces["html"], "th"), + (namespaces["html"], "thead"), + (namespaces["html"], "title"), + (namespaces["html"], "tr"), + (namespaces["html"], "ul"), + (namespaces["html"], "wbr"), + (namespaces["html"], "xmp"), + (namespaces["svg"], "foreignObject") +]) + +htmlIntegrationPointElements = frozenset([ + (namespaces["mathml"], "annotation-xml"), + (namespaces["svg"], "foreignObject"), + (namespaces["svg"], "desc"), + (namespaces["svg"], "title") +]) + +mathmlTextIntegrationPointElements = frozenset([ + (namespaces["mathml"], "mi"), + (namespaces["mathml"], "mo"), + (namespaces["mathml"], "mn"), + (namespaces["mathml"], "ms"), + (namespaces["mathml"], "mtext") +]) + +adjustSVGAttributes = { + "attributename": "attributeName", + "attributetype": "attributeType", + "basefrequency": "baseFrequency", + "baseprofile": "baseProfile", + "calcmode": "calcMode", + "clippathunits": "clipPathUnits", + "contentscripttype": "contentScriptType", + "contentstyletype": "contentStyleType", + "diffuseconstant": "diffuseConstant", + "edgemode": "edgeMode", + "externalresourcesrequired": "externalResourcesRequired", + "filterres": "filterRes", + "filterunits": "filterUnits", + "glyphref": "glyphRef", + "gradienttransform": "gradientTransform", + "gradientunits": "gradientUnits", + "kernelmatrix": "kernelMatrix", + "kernelunitlength": "kernelUnitLength", + "keypoints": "keyPoints", + "keysplines": "keySplines", + "keytimes": "keyTimes", + "lengthadjust": "lengthAdjust", + "limitingconeangle": "limitingConeAngle", + "markerheight": "markerHeight", + "markerunits": "markerUnits", + "markerwidth": "markerWidth", + "maskcontentunits": "maskContentUnits", + "maskunits": "maskUnits", + "numoctaves": "numOctaves", + "pathlength": "pathLength", + "patterncontentunits": "patternContentUnits", + "patterntransform": "patternTransform", + "patternunits": "patternUnits", + "pointsatx": "pointsAtX", + "pointsaty": "pointsAtY", + "pointsatz": "pointsAtZ", + "preservealpha": "preserveAlpha", + "preserveaspectratio": "preserveAspectRatio", + "primitiveunits": "primitiveUnits", + "refx": "refX", + "refy": "refY", + "repeatcount": "repeatCount", + "repeatdur": "repeatDur", + "requiredextensions": "requiredExtensions", + "requiredfeatures": "requiredFeatures", + "specularconstant": "specularConstant", + "specularexponent": "specularExponent", + "spreadmethod": "spreadMethod", + "startoffset": "startOffset", + "stddeviation": "stdDeviation", + "stitchtiles": "stitchTiles", + "surfacescale": "surfaceScale", + "systemlanguage": "systemLanguage", + "tablevalues": "tableValues", + "targetx": "targetX", + "targety": "targetY", + "textlength": "textLength", + "viewbox": "viewBox", + "viewtarget": "viewTarget", + "xchannelselector": "xChannelSelector", + "ychannelselector": "yChannelSelector", + "zoomandpan": "zoomAndPan" +} + +adjustMathMLAttributes = {"definitionurl": "definitionURL"} + +adjustForeignAttributes = { + "xlink:actuate": ("xlink", "actuate", namespaces["xlink"]), + "xlink:arcrole": ("xlink", "arcrole", namespaces["xlink"]), + "xlink:href": ("xlink", "href", namespaces["xlink"]), + "xlink:role": ("xlink", "role", namespaces["xlink"]), + "xlink:show": ("xlink", "show", namespaces["xlink"]), + "xlink:title": ("xlink", "title", namespaces["xlink"]), + "xlink:type": ("xlink", "type", namespaces["xlink"]), + "xml:base": ("xml", "base", namespaces["xml"]), + "xml:lang": ("xml", "lang", namespaces["xml"]), + "xml:space": ("xml", "space", namespaces["xml"]), + "xmlns": (None, "xmlns", namespaces["xmlns"]), + "xmlns:xlink": ("xmlns", "xlink", namespaces["xmlns"]) +} + +unadjustForeignAttributes = {(ns, local): qname for qname, (prefix, local, ns) in + adjustForeignAttributes.items()} + +spaceCharacters = frozenset([ + "\t", + "\n", + "\u000C", + " ", + "\r" +]) + +tableInsertModeElements = frozenset([ + "table", + "tbody", + "tfoot", + "thead", + "tr" +]) + +asciiLowercase = frozenset(string.ascii_lowercase) +asciiUppercase = frozenset(string.ascii_uppercase) +asciiLetters = frozenset(string.ascii_letters) +digits = frozenset(string.digits) +hexDigits = frozenset(string.hexdigits) + +asciiUpper2Lower = {ord(c): ord(c.lower()) for c in string.ascii_uppercase} + +# Heading elements need to be ordered +headingElements = ( + "h1", + "h2", + "h3", + "h4", + "h5", + "h6" +) + +voidElements = frozenset([ + "base", + "command", + "event-source", + "link", + "meta", + "hr", + "br", + "img", + "embed", + "param", + "area", + "col", + "input", + "source", + "track" +]) + +cdataElements = frozenset(['title', 'textarea']) + +rcdataElements = frozenset([ + 'style', + 'script', + 'xmp', + 'iframe', + 'noembed', + 'noframes', + 'noscript' +]) + +booleanAttributes = { + "": frozenset(["irrelevant", "itemscope"]), + "style": frozenset(["scoped"]), + "img": frozenset(["ismap"]), + "audio": frozenset(["autoplay", "controls"]), + "video": frozenset(["autoplay", "controls"]), + "script": frozenset(["defer", "async"]), + "details": frozenset(["open"]), + "datagrid": frozenset(["multiple", "disabled"]), + "command": frozenset(["hidden", "disabled", "checked", "default"]), + "hr": frozenset(["noshade"]), + "menu": frozenset(["autosubmit"]), + "fieldset": frozenset(["disabled", "readonly"]), + "option": frozenset(["disabled", "readonly", "selected"]), + "optgroup": frozenset(["disabled", "readonly"]), + "button": frozenset(["disabled", "autofocus"]), + "input": frozenset(["disabled", "readonly", "required", "autofocus", "checked", "ismap"]), + "select": frozenset(["disabled", "readonly", "autofocus", "multiple"]), + "output": frozenset(["disabled", "readonly"]), + "iframe": frozenset(["seamless"]), +} + +# entitiesWindows1252 has to be _ordered_ and needs to have an index. It +# therefore can't be a frozenset. +entitiesWindows1252 = ( + 8364, # 0x80 0x20AC EURO SIGN + 65533, # 0x81 UNDEFINED + 8218, # 0x82 0x201A SINGLE LOW-9 QUOTATION MARK + 402, # 0x83 0x0192 LATIN SMALL LETTER F WITH HOOK + 8222, # 0x84 0x201E DOUBLE LOW-9 QUOTATION MARK + 8230, # 0x85 0x2026 HORIZONTAL ELLIPSIS + 8224, # 0x86 0x2020 DAGGER + 8225, # 0x87 0x2021 DOUBLE DAGGER + 710, # 0x88 0x02C6 MODIFIER LETTER CIRCUMFLEX ACCENT + 8240, # 0x89 0x2030 PER MILLE SIGN + 352, # 0x8A 0x0160 LATIN CAPITAL LETTER S WITH CARON + 8249, # 0x8B 0x2039 SINGLE LEFT-POINTING ANGLE QUOTATION MARK + 338, # 0x8C 0x0152 LATIN CAPITAL LIGATURE OE + 65533, # 0x8D UNDEFINED + 381, # 0x8E 0x017D LATIN CAPITAL LETTER Z WITH CARON + 65533, # 0x8F UNDEFINED + 65533, # 0x90 UNDEFINED + 8216, # 0x91 0x2018 LEFT SINGLE QUOTATION MARK + 8217, # 0x92 0x2019 RIGHT SINGLE QUOTATION MARK + 8220, # 0x93 0x201C LEFT DOUBLE QUOTATION MARK + 8221, # 0x94 0x201D RIGHT DOUBLE QUOTATION MARK + 8226, # 0x95 0x2022 BULLET + 8211, # 0x96 0x2013 EN DASH + 8212, # 0x97 0x2014 EM DASH + 732, # 0x98 0x02DC SMALL TILDE + 8482, # 0x99 0x2122 TRADE MARK SIGN + 353, # 0x9A 0x0161 LATIN SMALL LETTER S WITH CARON + 8250, # 0x9B 0x203A SINGLE RIGHT-POINTING ANGLE QUOTATION MARK + 339, # 0x9C 0x0153 LATIN SMALL LIGATURE OE + 65533, # 0x9D UNDEFINED + 382, # 0x9E 0x017E LATIN SMALL LETTER Z WITH CARON + 376 # 0x9F 0x0178 LATIN CAPITAL LETTER Y WITH DIAERESIS +) + +xmlEntities = frozenset(['lt;', 'gt;', 'amp;', 'apos;', 'quot;']) + +entities = { + "AElig": "\xc6", + "AElig;": "\xc6", + "AMP": "&", + "AMP;": "&", + "Aacute": "\xc1", + "Aacute;": "\xc1", + "Abreve;": "\u0102", + "Acirc": "\xc2", + "Acirc;": "\xc2", + "Acy;": "\u0410", + "Afr;": "\U0001d504", + "Agrave": "\xc0", + "Agrave;": "\xc0", + "Alpha;": "\u0391", + "Amacr;": "\u0100", + "And;": "\u2a53", + "Aogon;": "\u0104", + "Aopf;": "\U0001d538", + "ApplyFunction;": "\u2061", + "Aring": "\xc5", + "Aring;": "\xc5", + "Ascr;": "\U0001d49c", + "Assign;": "\u2254", + "Atilde": "\xc3", + "Atilde;": "\xc3", + "Auml": "\xc4", + "Auml;": "\xc4", + "Backslash;": "\u2216", + "Barv;": "\u2ae7", + "Barwed;": "\u2306", + "Bcy;": "\u0411", + "Because;": "\u2235", + "Bernoullis;": "\u212c", + "Beta;": "\u0392", + "Bfr;": "\U0001d505", + "Bopf;": "\U0001d539", + "Breve;": "\u02d8", + "Bscr;": "\u212c", + "Bumpeq;": "\u224e", + "CHcy;": "\u0427", + "COPY": "\xa9", + "COPY;": "\xa9", + "Cacute;": "\u0106", + "Cap;": "\u22d2", + "CapitalDifferentialD;": "\u2145", + "Cayleys;": "\u212d", + "Ccaron;": "\u010c", + "Ccedil": "\xc7", + "Ccedil;": "\xc7", + "Ccirc;": "\u0108", + "Cconint;": "\u2230", + "Cdot;": "\u010a", + "Cedilla;": "\xb8", + "CenterDot;": "\xb7", + "Cfr;": "\u212d", + "Chi;": "\u03a7", + "CircleDot;": "\u2299", + "CircleMinus;": "\u2296", + "CirclePlus;": "\u2295", + "CircleTimes;": "\u2297", + "ClockwiseContourIntegral;": "\u2232", + "CloseCurlyDoubleQuote;": "\u201d", + "CloseCurlyQuote;": "\u2019", + "Colon;": "\u2237", + "Colone;": "\u2a74", + "Congruent;": "\u2261", + "Conint;": "\u222f", + "ContourIntegral;": "\u222e", + "Copf;": "\u2102", + "Coproduct;": "\u2210", + "CounterClockwiseContourIntegral;": "\u2233", + "Cross;": "\u2a2f", + "Cscr;": "\U0001d49e", + "Cup;": "\u22d3", + "CupCap;": "\u224d", + "DD;": "\u2145", + "DDotrahd;": "\u2911", + "DJcy;": "\u0402", + "DScy;": "\u0405", + "DZcy;": "\u040f", + "Dagger;": "\u2021", + "Darr;": "\u21a1", + "Dashv;": "\u2ae4", + "Dcaron;": "\u010e", + "Dcy;": "\u0414", + "Del;": "\u2207", + "Delta;": "\u0394", + "Dfr;": "\U0001d507", + "DiacriticalAcute;": "\xb4", + "DiacriticalDot;": "\u02d9", + "DiacriticalDoubleAcute;": "\u02dd", + "DiacriticalGrave;": "`", + "DiacriticalTilde;": "\u02dc", + "Diamond;": "\u22c4", + "DifferentialD;": "\u2146", + "Dopf;": "\U0001d53b", + "Dot;": "\xa8", + "DotDot;": "\u20dc", + "DotEqual;": "\u2250", + "DoubleContourIntegral;": "\u222f", + "DoubleDot;": "\xa8", + "DoubleDownArrow;": "\u21d3", + "DoubleLeftArrow;": "\u21d0", + "DoubleLeftRightArrow;": "\u21d4", + "DoubleLeftTee;": "\u2ae4", + "DoubleLongLeftArrow;": "\u27f8", + "DoubleLongLeftRightArrow;": "\u27fa", + "DoubleLongRightArrow;": "\u27f9", + "DoubleRightArrow;": "\u21d2", + "DoubleRightTee;": "\u22a8", + "DoubleUpArrow;": "\u21d1", + "DoubleUpDownArrow;": "\u21d5", + "DoubleVerticalBar;": "\u2225", + "DownArrow;": "\u2193", + "DownArrowBar;": "\u2913", + "DownArrowUpArrow;": "\u21f5", + "DownBreve;": "\u0311", + "DownLeftRightVector;": "\u2950", + "DownLeftTeeVector;": "\u295e", + "DownLeftVector;": "\u21bd", + "DownLeftVectorBar;": "\u2956", + "DownRightTeeVector;": "\u295f", + "DownRightVector;": "\u21c1", + "DownRightVectorBar;": "\u2957", + "DownTee;": "\u22a4", + "DownTeeArrow;": "\u21a7", + "Downarrow;": "\u21d3", + "Dscr;": "\U0001d49f", + "Dstrok;": "\u0110", + "ENG;": "\u014a", + "ETH": "\xd0", + "ETH;": "\xd0", + "Eacute": "\xc9", + "Eacute;": "\xc9", + "Ecaron;": "\u011a", + "Ecirc": "\xca", + "Ecirc;": "\xca", + "Ecy;": "\u042d", + "Edot;": "\u0116", + "Efr;": "\U0001d508", + "Egrave": "\xc8", + "Egrave;": "\xc8", + "Element;": "\u2208", + "Emacr;": "\u0112", + "EmptySmallSquare;": "\u25fb", + "EmptyVerySmallSquare;": "\u25ab", + "Eogon;": "\u0118", + "Eopf;": "\U0001d53c", + "Epsilon;": "\u0395", + "Equal;": "\u2a75", + "EqualTilde;": "\u2242", + "Equilibrium;": "\u21cc", + "Escr;": "\u2130", + "Esim;": "\u2a73", + "Eta;": "\u0397", + "Euml": "\xcb", + "Euml;": "\xcb", + "Exists;": "\u2203", + "ExponentialE;": "\u2147", + "Fcy;": "\u0424", + "Ffr;": "\U0001d509", + "FilledSmallSquare;": "\u25fc", + "FilledVerySmallSquare;": "\u25aa", + "Fopf;": "\U0001d53d", + "ForAll;": "\u2200", + "Fouriertrf;": "\u2131", + "Fscr;": "\u2131", + "GJcy;": "\u0403", + "GT": ">", + "GT;": ">", + "Gamma;": "\u0393", + "Gammad;": "\u03dc", + "Gbreve;": "\u011e", + "Gcedil;": "\u0122", + "Gcirc;": "\u011c", + "Gcy;": "\u0413", + "Gdot;": "\u0120", + "Gfr;": "\U0001d50a", + "Gg;": "\u22d9", + "Gopf;": "\U0001d53e", + "GreaterEqual;": "\u2265", + "GreaterEqualLess;": "\u22db", + "GreaterFullEqual;": "\u2267", + "GreaterGreater;": "\u2aa2", + "GreaterLess;": "\u2277", + "GreaterSlantEqual;": "\u2a7e", + "GreaterTilde;": "\u2273", + "Gscr;": "\U0001d4a2", + "Gt;": "\u226b", + "HARDcy;": "\u042a", + "Hacek;": "\u02c7", + "Hat;": "^", + "Hcirc;": "\u0124", + "Hfr;": "\u210c", + "HilbertSpace;": "\u210b", + "Hopf;": "\u210d", + "HorizontalLine;": "\u2500", + "Hscr;": "\u210b", + "Hstrok;": "\u0126", + "HumpDownHump;": "\u224e", + "HumpEqual;": "\u224f", + "IEcy;": "\u0415", + "IJlig;": "\u0132", + "IOcy;": "\u0401", + "Iacute": "\xcd", + "Iacute;": "\xcd", + "Icirc": "\xce", + "Icirc;": "\xce", + "Icy;": "\u0418", + "Idot;": "\u0130", + "Ifr;": "\u2111", + "Igrave": "\xcc", + "Igrave;": "\xcc", + "Im;": "\u2111", + "Imacr;": "\u012a", + "ImaginaryI;": "\u2148", + "Implies;": "\u21d2", + "Int;": "\u222c", + "Integral;": "\u222b", + "Intersection;": "\u22c2", + "InvisibleComma;": "\u2063", + "InvisibleTimes;": "\u2062", + "Iogon;": "\u012e", + "Iopf;": "\U0001d540", + "Iota;": "\u0399", + "Iscr;": "\u2110", + "Itilde;": "\u0128", + "Iukcy;": "\u0406", + "Iuml": "\xcf", + "Iuml;": "\xcf", + "Jcirc;": "\u0134", + "Jcy;": "\u0419", + "Jfr;": "\U0001d50d", + "Jopf;": "\U0001d541", + "Jscr;": "\U0001d4a5", + "Jsercy;": "\u0408", + "Jukcy;": "\u0404", + "KHcy;": "\u0425", + "KJcy;": "\u040c", + "Kappa;": "\u039a", + "Kcedil;": "\u0136", + "Kcy;": "\u041a", + "Kfr;": "\U0001d50e", + "Kopf;": "\U0001d542", + "Kscr;": "\U0001d4a6", + "LJcy;": "\u0409", + "LT": "<", + "LT;": "<", + "Lacute;": "\u0139", + "Lambda;": "\u039b", + "Lang;": "\u27ea", + "Laplacetrf;": "\u2112", + "Larr;": "\u219e", + "Lcaron;": "\u013d", + "Lcedil;": "\u013b", + "Lcy;": "\u041b", + "LeftAngleBracket;": "\u27e8", + "LeftArrow;": "\u2190", + "LeftArrowBar;": "\u21e4", + "LeftArrowRightArrow;": "\u21c6", + "LeftCeiling;": "\u2308", + "LeftDoubleBracket;": "\u27e6", + "LeftDownTeeVector;": "\u2961", + "LeftDownVector;": "\u21c3", + "LeftDownVectorBar;": "\u2959", + "LeftFloor;": "\u230a", + "LeftRightArrow;": "\u2194", + "LeftRightVector;": "\u294e", + "LeftTee;": "\u22a3", + "LeftTeeArrow;": "\u21a4", + "LeftTeeVector;": "\u295a", + "LeftTriangle;": "\u22b2", + "LeftTriangleBar;": "\u29cf", + "LeftTriangleEqual;": "\u22b4", + "LeftUpDownVector;": "\u2951", + "LeftUpTeeVector;": "\u2960", + "LeftUpVector;": "\u21bf", + "LeftUpVectorBar;": "\u2958", + "LeftVector;": "\u21bc", + "LeftVectorBar;": "\u2952", + "Leftarrow;": "\u21d0", + "Leftrightarrow;": "\u21d4", + "LessEqualGreater;": "\u22da", + "LessFullEqual;": "\u2266", + "LessGreater;": "\u2276", + "LessLess;": "\u2aa1", + "LessSlantEqual;": "\u2a7d", + "LessTilde;": "\u2272", + "Lfr;": "\U0001d50f", + "Ll;": "\u22d8", + "Lleftarrow;": "\u21da", + "Lmidot;": "\u013f", + "LongLeftArrow;": "\u27f5", + "LongLeftRightArrow;": "\u27f7", + "LongRightArrow;": "\u27f6", + "Longleftarrow;": "\u27f8", + "Longleftrightarrow;": "\u27fa", + "Longrightarrow;": "\u27f9", + "Lopf;": "\U0001d543", + "LowerLeftArrow;": "\u2199", + "LowerRightArrow;": "\u2198", + "Lscr;": "\u2112", + "Lsh;": "\u21b0", + "Lstrok;": "\u0141", + "Lt;": "\u226a", + "Map;": "\u2905", + "Mcy;": "\u041c", + "MediumSpace;": "\u205f", + "Mellintrf;": "\u2133", + "Mfr;": "\U0001d510", + "MinusPlus;": "\u2213", + "Mopf;": "\U0001d544", + "Mscr;": "\u2133", + "Mu;": "\u039c", + "NJcy;": "\u040a", + "Nacute;": "\u0143", + "Ncaron;": "\u0147", + "Ncedil;": "\u0145", + "Ncy;": "\u041d", + "NegativeMediumSpace;": "\u200b", + "NegativeThickSpace;": "\u200b", + "NegativeThinSpace;": "\u200b", + "NegativeVeryThinSpace;": "\u200b", + "NestedGreaterGreater;": "\u226b", + "NestedLessLess;": "\u226a", + "NewLine;": "\n", + "Nfr;": "\U0001d511", + "NoBreak;": "\u2060", + "NonBreakingSpace;": "\xa0", + "Nopf;": "\u2115", + "Not;": "\u2aec", + "NotCongruent;": "\u2262", + "NotCupCap;": "\u226d", + "NotDoubleVerticalBar;": "\u2226", + "NotElement;": "\u2209", + "NotEqual;": "\u2260", + "NotEqualTilde;": "\u2242\u0338", + "NotExists;": "\u2204", + "NotGreater;": "\u226f", + "NotGreaterEqual;": "\u2271", + "NotGreaterFullEqual;": "\u2267\u0338", + "NotGreaterGreater;": "\u226b\u0338", + "NotGreaterLess;": "\u2279", + "NotGreaterSlantEqual;": "\u2a7e\u0338", + "NotGreaterTilde;": "\u2275", + "NotHumpDownHump;": "\u224e\u0338", + "NotHumpEqual;": "\u224f\u0338", + "NotLeftTriangle;": "\u22ea", + "NotLeftTriangleBar;": "\u29cf\u0338", + "NotLeftTriangleEqual;": "\u22ec", + "NotLess;": "\u226e", + "NotLessEqual;": "\u2270", + "NotLessGreater;": "\u2278", + "NotLessLess;": "\u226a\u0338", + "NotLessSlantEqual;": "\u2a7d\u0338", + "NotLessTilde;": "\u2274", + "NotNestedGreaterGreater;": "\u2aa2\u0338", + "NotNestedLessLess;": "\u2aa1\u0338", + "NotPrecedes;": "\u2280", + "NotPrecedesEqual;": "\u2aaf\u0338", + "NotPrecedesSlantEqual;": "\u22e0", + "NotReverseElement;": "\u220c", + "NotRightTriangle;": "\u22eb", + "NotRightTriangleBar;": "\u29d0\u0338", + "NotRightTriangleEqual;": "\u22ed", + "NotSquareSubset;": "\u228f\u0338", + "NotSquareSubsetEqual;": "\u22e2", + "NotSquareSuperset;": "\u2290\u0338", + "NotSquareSupersetEqual;": "\u22e3", + "NotSubset;": "\u2282\u20d2", + "NotSubsetEqual;": "\u2288", + "NotSucceeds;": "\u2281", + "NotSucceedsEqual;": "\u2ab0\u0338", + "NotSucceedsSlantEqual;": "\u22e1", + "NotSucceedsTilde;": "\u227f\u0338", + "NotSuperset;": "\u2283\u20d2", + "NotSupersetEqual;": "\u2289", + "NotTilde;": "\u2241", + "NotTildeEqual;": "\u2244", + "NotTildeFullEqual;": "\u2247", + "NotTildeTilde;": "\u2249", + "NotVerticalBar;": "\u2224", + "Nscr;": "\U0001d4a9", + "Ntilde": "\xd1", + "Ntilde;": "\xd1", + "Nu;": "\u039d", + "OElig;": "\u0152", + "Oacute": "\xd3", + "Oacute;": "\xd3", + "Ocirc": "\xd4", + "Ocirc;": "\xd4", + "Ocy;": "\u041e", + "Odblac;": "\u0150", + "Ofr;": "\U0001d512", + "Ograve": "\xd2", + "Ograve;": "\xd2", + "Omacr;": "\u014c", + "Omega;": "\u03a9", + "Omicron;": "\u039f", + "Oopf;": "\U0001d546", + "OpenCurlyDoubleQuote;": "\u201c", + "OpenCurlyQuote;": "\u2018", + "Or;": "\u2a54", + "Oscr;": "\U0001d4aa", + "Oslash": "\xd8", + "Oslash;": "\xd8", + "Otilde": "\xd5", + "Otilde;": "\xd5", + "Otimes;": "\u2a37", + "Ouml": "\xd6", + "Ouml;": "\xd6", + "OverBar;": "\u203e", + "OverBrace;": "\u23de", + "OverBracket;": "\u23b4", + "OverParenthesis;": "\u23dc", + "PartialD;": "\u2202", + "Pcy;": "\u041f", + "Pfr;": "\U0001d513", + "Phi;": "\u03a6", + "Pi;": "\u03a0", + "PlusMinus;": "\xb1", + "Poincareplane;": "\u210c", + "Popf;": "\u2119", + "Pr;": "\u2abb", + "Precedes;": "\u227a", + "PrecedesEqual;": "\u2aaf", + "PrecedesSlantEqual;": "\u227c", + "PrecedesTilde;": "\u227e", + "Prime;": "\u2033", + "Product;": "\u220f", + "Proportion;": "\u2237", + "Proportional;": "\u221d", + "Pscr;": "\U0001d4ab", + "Psi;": "\u03a8", + "QUOT": "\"", + "QUOT;": "\"", + "Qfr;": "\U0001d514", + "Qopf;": "\u211a", + "Qscr;": "\U0001d4ac", + "RBarr;": "\u2910", + "REG": "\xae", + "REG;": "\xae", + "Racute;": "\u0154", + "Rang;": "\u27eb", + "Rarr;": "\u21a0", + "Rarrtl;": "\u2916", + "Rcaron;": "\u0158", + "Rcedil;": "\u0156", + "Rcy;": "\u0420", + "Re;": "\u211c", + "ReverseElement;": "\u220b", + "ReverseEquilibrium;": "\u21cb", + "ReverseUpEquilibrium;": "\u296f", + "Rfr;": "\u211c", + "Rho;": "\u03a1", + "RightAngleBracket;": "\u27e9", + "RightArrow;": "\u2192", + "RightArrowBar;": "\u21e5", + "RightArrowLeftArrow;": "\u21c4", + "RightCeiling;": "\u2309", + "RightDoubleBracket;": "\u27e7", + "RightDownTeeVector;": "\u295d", + "RightDownVector;": "\u21c2", + "RightDownVectorBar;": "\u2955", + "RightFloor;": "\u230b", + "RightTee;": "\u22a2", + "RightTeeArrow;": "\u21a6", + "RightTeeVector;": "\u295b", + "RightTriangle;": "\u22b3", + "RightTriangleBar;": "\u29d0", + "RightTriangleEqual;": "\u22b5", + "RightUpDownVector;": "\u294f", + "RightUpTeeVector;": "\u295c", + "RightUpVector;": "\u21be", + "RightUpVectorBar;": "\u2954", + "RightVector;": "\u21c0", + "RightVectorBar;": "\u2953", + "Rightarrow;": "\u21d2", + "Ropf;": "\u211d", + "RoundImplies;": "\u2970", + "Rrightarrow;": "\u21db", + "Rscr;": "\u211b", + "Rsh;": "\u21b1", + "RuleDelayed;": "\u29f4", + "SHCHcy;": "\u0429", + "SHcy;": "\u0428", + "SOFTcy;": "\u042c", + "Sacute;": "\u015a", + "Sc;": "\u2abc", + "Scaron;": "\u0160", + "Scedil;": "\u015e", + "Scirc;": "\u015c", + "Scy;": "\u0421", + "Sfr;": "\U0001d516", + "ShortDownArrow;": "\u2193", + "ShortLeftArrow;": "\u2190", + "ShortRightArrow;": "\u2192", + "ShortUpArrow;": "\u2191", + "Sigma;": "\u03a3", + "SmallCircle;": "\u2218", + "Sopf;": "\U0001d54a", + "Sqrt;": "\u221a", + "Square;": "\u25a1", + "SquareIntersection;": "\u2293", + "SquareSubset;": "\u228f", + "SquareSubsetEqual;": "\u2291", + "SquareSuperset;": "\u2290", + "SquareSupersetEqual;": "\u2292", + "SquareUnion;": "\u2294", + "Sscr;": "\U0001d4ae", + "Star;": "\u22c6", + "Sub;": "\u22d0", + "Subset;": "\u22d0", + "SubsetEqual;": "\u2286", + "Succeeds;": "\u227b", + "SucceedsEqual;": "\u2ab0", + "SucceedsSlantEqual;": "\u227d", + "SucceedsTilde;": "\u227f", + "SuchThat;": "\u220b", + "Sum;": "\u2211", + "Sup;": "\u22d1", + "Superset;": "\u2283", + "SupersetEqual;": "\u2287", + "Supset;": "\u22d1", + "THORN": "\xde", + "THORN;": "\xde", + "TRADE;": "\u2122", + "TSHcy;": "\u040b", + "TScy;": "\u0426", + "Tab;": "\t", + "Tau;": "\u03a4", + "Tcaron;": "\u0164", + "Tcedil;": "\u0162", + "Tcy;": "\u0422", + "Tfr;": "\U0001d517", + "Therefore;": "\u2234", + "Theta;": "\u0398", + "ThickSpace;": "\u205f\u200a", + "ThinSpace;": "\u2009", + "Tilde;": "\u223c", + "TildeEqual;": "\u2243", + "TildeFullEqual;": "\u2245", + "TildeTilde;": "\u2248", + "Topf;": "\U0001d54b", + "TripleDot;": "\u20db", + "Tscr;": "\U0001d4af", + "Tstrok;": "\u0166", + "Uacute": "\xda", + "Uacute;": "\xda", + "Uarr;": "\u219f", + "Uarrocir;": "\u2949", + "Ubrcy;": "\u040e", + "Ubreve;": "\u016c", + "Ucirc": "\xdb", + "Ucirc;": "\xdb", + "Ucy;": "\u0423", + "Udblac;": "\u0170", + "Ufr;": "\U0001d518", + "Ugrave": "\xd9", + "Ugrave;": "\xd9", + "Umacr;": "\u016a", + "UnderBar;": "_", + "UnderBrace;": "\u23df", + "UnderBracket;": "\u23b5", + "UnderParenthesis;": "\u23dd", + "Union;": "\u22c3", + "UnionPlus;": "\u228e", + "Uogon;": "\u0172", + "Uopf;": "\U0001d54c", + "UpArrow;": "\u2191", + "UpArrowBar;": "\u2912", + "UpArrowDownArrow;": "\u21c5", + "UpDownArrow;": "\u2195", + "UpEquilibrium;": "\u296e", + "UpTee;": "\u22a5", + "UpTeeArrow;": "\u21a5", + "Uparrow;": "\u21d1", + "Updownarrow;": "\u21d5", + "UpperLeftArrow;": "\u2196", + "UpperRightArrow;": "\u2197", + "Upsi;": "\u03d2", + "Upsilon;": "\u03a5", + "Uring;": "\u016e", + "Uscr;": "\U0001d4b0", + "Utilde;": "\u0168", + "Uuml": "\xdc", + "Uuml;": "\xdc", + "VDash;": "\u22ab", + "Vbar;": "\u2aeb", + "Vcy;": "\u0412", + "Vdash;": "\u22a9", + "Vdashl;": "\u2ae6", + "Vee;": "\u22c1", + "Verbar;": "\u2016", + "Vert;": "\u2016", + "VerticalBar;": "\u2223", + "VerticalLine;": "|", + "VerticalSeparator;": "\u2758", + "VerticalTilde;": "\u2240", + "VeryThinSpace;": "\u200a", + "Vfr;": "\U0001d519", + "Vopf;": "\U0001d54d", + "Vscr;": "\U0001d4b1", + "Vvdash;": "\u22aa", + "Wcirc;": "\u0174", + "Wedge;": "\u22c0", + "Wfr;": "\U0001d51a", + "Wopf;": "\U0001d54e", + "Wscr;": "\U0001d4b2", + "Xfr;": "\U0001d51b", + "Xi;": "\u039e", + "Xopf;": "\U0001d54f", + "Xscr;": "\U0001d4b3", + "YAcy;": "\u042f", + "YIcy;": "\u0407", + "YUcy;": "\u042e", + "Yacute": "\xdd", + "Yacute;": "\xdd", + "Ycirc;": "\u0176", + "Ycy;": "\u042b", + "Yfr;": "\U0001d51c", + "Yopf;": "\U0001d550", + "Yscr;": "\U0001d4b4", + "Yuml;": "\u0178", + "ZHcy;": "\u0416", + "Zacute;": "\u0179", + "Zcaron;": "\u017d", + "Zcy;": "\u0417", + "Zdot;": "\u017b", + "ZeroWidthSpace;": "\u200b", + "Zeta;": "\u0396", + "Zfr;": "\u2128", + "Zopf;": "\u2124", + "Zscr;": "\U0001d4b5", + "aacute": "\xe1", + "aacute;": "\xe1", + "abreve;": "\u0103", + "ac;": "\u223e", + "acE;": "\u223e\u0333", + "acd;": "\u223f", + "acirc": "\xe2", + "acirc;": "\xe2", + "acute": "\xb4", + "acute;": "\xb4", + "acy;": "\u0430", + "aelig": "\xe6", + "aelig;": "\xe6", + "af;": "\u2061", + "afr;": "\U0001d51e", + "agrave": "\xe0", + "agrave;": "\xe0", + "alefsym;": "\u2135", + "aleph;": "\u2135", + "alpha;": "\u03b1", + "amacr;": "\u0101", + "amalg;": "\u2a3f", + "amp": "&", + "amp;": "&", + "and;": "\u2227", + "andand;": "\u2a55", + "andd;": "\u2a5c", + "andslope;": "\u2a58", + "andv;": "\u2a5a", + "ang;": "\u2220", + "ange;": "\u29a4", + "angle;": "\u2220", + "angmsd;": "\u2221", + "angmsdaa;": "\u29a8", + "angmsdab;": "\u29a9", + "angmsdac;": "\u29aa", + "angmsdad;": "\u29ab", + "angmsdae;": "\u29ac", + "angmsdaf;": "\u29ad", + "angmsdag;": "\u29ae", + "angmsdah;": "\u29af", + "angrt;": "\u221f", + "angrtvb;": "\u22be", + "angrtvbd;": "\u299d", + "angsph;": "\u2222", + "angst;": "\xc5", + "angzarr;": "\u237c", + "aogon;": "\u0105", + "aopf;": "\U0001d552", + "ap;": "\u2248", + "apE;": "\u2a70", + "apacir;": "\u2a6f", + "ape;": "\u224a", + "apid;": "\u224b", + "apos;": "'", + "approx;": "\u2248", + "approxeq;": "\u224a", + "aring": "\xe5", + "aring;": "\xe5", + "ascr;": "\U0001d4b6", + "ast;": "*", + "asymp;": "\u2248", + "asympeq;": "\u224d", + "atilde": "\xe3", + "atilde;": "\xe3", + "auml": "\xe4", + "auml;": "\xe4", + "awconint;": "\u2233", + "awint;": "\u2a11", + "bNot;": "\u2aed", + "backcong;": "\u224c", + "backepsilon;": "\u03f6", + "backprime;": "\u2035", + "backsim;": "\u223d", + "backsimeq;": "\u22cd", + "barvee;": "\u22bd", + "barwed;": "\u2305", + "barwedge;": "\u2305", + "bbrk;": "\u23b5", + "bbrktbrk;": "\u23b6", + "bcong;": "\u224c", + "bcy;": "\u0431", + "bdquo;": "\u201e", + "becaus;": "\u2235", + "because;": "\u2235", + "bemptyv;": "\u29b0", + "bepsi;": "\u03f6", + "bernou;": "\u212c", + "beta;": "\u03b2", + "beth;": "\u2136", + "between;": "\u226c", + "bfr;": "\U0001d51f", + "bigcap;": "\u22c2", + "bigcirc;": "\u25ef", + "bigcup;": "\u22c3", + "bigodot;": "\u2a00", + "bigoplus;": "\u2a01", + "bigotimes;": "\u2a02", + "bigsqcup;": "\u2a06", + "bigstar;": "\u2605", + "bigtriangledown;": "\u25bd", + "bigtriangleup;": "\u25b3", + "biguplus;": "\u2a04", + "bigvee;": "\u22c1", + "bigwedge;": "\u22c0", + "bkarow;": "\u290d", + "blacklozenge;": "\u29eb", + "blacksquare;": "\u25aa", + "blacktriangle;": "\u25b4", + "blacktriangledown;": "\u25be", + "blacktriangleleft;": "\u25c2", + "blacktriangleright;": "\u25b8", + "blank;": "\u2423", + "blk12;": "\u2592", + "blk14;": "\u2591", + "blk34;": "\u2593", + "block;": "\u2588", + "bne;": "=\u20e5", + "bnequiv;": "\u2261\u20e5", + "bnot;": "\u2310", + "bopf;": "\U0001d553", + "bot;": "\u22a5", + "bottom;": "\u22a5", + "bowtie;": "\u22c8", + "boxDL;": "\u2557", + "boxDR;": "\u2554", + "boxDl;": "\u2556", + "boxDr;": "\u2553", + "boxH;": "\u2550", + "boxHD;": "\u2566", + "boxHU;": "\u2569", + "boxHd;": "\u2564", + "boxHu;": "\u2567", + "boxUL;": "\u255d", + "boxUR;": "\u255a", + "boxUl;": "\u255c", + "boxUr;": "\u2559", + "boxV;": "\u2551", + "boxVH;": "\u256c", + "boxVL;": "\u2563", + "boxVR;": "\u2560", + "boxVh;": "\u256b", + "boxVl;": "\u2562", + "boxVr;": "\u255f", + "boxbox;": "\u29c9", + "boxdL;": "\u2555", + "boxdR;": "\u2552", + "boxdl;": "\u2510", + "boxdr;": "\u250c", + "boxh;": "\u2500", + "boxhD;": "\u2565", + "boxhU;": "\u2568", + "boxhd;": "\u252c", + "boxhu;": "\u2534", + "boxminus;": "\u229f", + "boxplus;": "\u229e", + "boxtimes;": "\u22a0", + "boxuL;": "\u255b", + "boxuR;": "\u2558", + "boxul;": "\u2518", + "boxur;": "\u2514", + "boxv;": "\u2502", + "boxvH;": "\u256a", + "boxvL;": "\u2561", + "boxvR;": "\u255e", + "boxvh;": "\u253c", + "boxvl;": "\u2524", + "boxvr;": "\u251c", + "bprime;": "\u2035", + "breve;": "\u02d8", + "brvbar": "\xa6", + "brvbar;": "\xa6", + "bscr;": "\U0001d4b7", + "bsemi;": "\u204f", + "bsim;": "\u223d", + "bsime;": "\u22cd", + "bsol;": "\\", + "bsolb;": "\u29c5", + "bsolhsub;": "\u27c8", + "bull;": "\u2022", + "bullet;": "\u2022", + "bump;": "\u224e", + "bumpE;": "\u2aae", + "bumpe;": "\u224f", + "bumpeq;": "\u224f", + "cacute;": "\u0107", + "cap;": "\u2229", + "capand;": "\u2a44", + "capbrcup;": "\u2a49", + "capcap;": "\u2a4b", + "capcup;": "\u2a47", + "capdot;": "\u2a40", + "caps;": "\u2229\ufe00", + "caret;": "\u2041", + "caron;": "\u02c7", + "ccaps;": "\u2a4d", + "ccaron;": "\u010d", + "ccedil": "\xe7", + "ccedil;": "\xe7", + "ccirc;": "\u0109", + "ccups;": "\u2a4c", + "ccupssm;": "\u2a50", + "cdot;": "\u010b", + "cedil": "\xb8", + "cedil;": "\xb8", + "cemptyv;": "\u29b2", + "cent": "\xa2", + "cent;": "\xa2", + "centerdot;": "\xb7", + "cfr;": "\U0001d520", + "chcy;": "\u0447", + "check;": "\u2713", + "checkmark;": "\u2713", + "chi;": "\u03c7", + "cir;": "\u25cb", + "cirE;": "\u29c3", + "circ;": "\u02c6", + "circeq;": "\u2257", + "circlearrowleft;": "\u21ba", + "circlearrowright;": "\u21bb", + "circledR;": "\xae", + "circledS;": "\u24c8", + "circledast;": "\u229b", + "circledcirc;": "\u229a", + "circleddash;": "\u229d", + "cire;": "\u2257", + "cirfnint;": "\u2a10", + "cirmid;": "\u2aef", + "cirscir;": "\u29c2", + "clubs;": "\u2663", + "clubsuit;": "\u2663", + "colon;": ":", + "colone;": "\u2254", + "coloneq;": "\u2254", + "comma;": ",", + "commat;": "@", + "comp;": "\u2201", + "compfn;": "\u2218", + "complement;": "\u2201", + "complexes;": "\u2102", + "cong;": "\u2245", + "congdot;": "\u2a6d", + "conint;": "\u222e", + "copf;": "\U0001d554", + "coprod;": "\u2210", + "copy": "\xa9", + "copy;": "\xa9", + "copysr;": "\u2117", + "crarr;": "\u21b5", + "cross;": "\u2717", + "cscr;": "\U0001d4b8", + "csub;": "\u2acf", + "csube;": "\u2ad1", + "csup;": "\u2ad0", + "csupe;": "\u2ad2", + "ctdot;": "\u22ef", + "cudarrl;": "\u2938", + "cudarrr;": "\u2935", + "cuepr;": "\u22de", + "cuesc;": "\u22df", + "cularr;": "\u21b6", + "cularrp;": "\u293d", + "cup;": "\u222a", + "cupbrcap;": "\u2a48", + "cupcap;": "\u2a46", + "cupcup;": "\u2a4a", + "cupdot;": "\u228d", + "cupor;": "\u2a45", + "cups;": "\u222a\ufe00", + "curarr;": "\u21b7", + "curarrm;": "\u293c", + "curlyeqprec;": "\u22de", + "curlyeqsucc;": "\u22df", + "curlyvee;": "\u22ce", + "curlywedge;": "\u22cf", + "curren": "\xa4", + "curren;": "\xa4", + "curvearrowleft;": "\u21b6", + "curvearrowright;": "\u21b7", + "cuvee;": "\u22ce", + "cuwed;": "\u22cf", + "cwconint;": "\u2232", + "cwint;": "\u2231", + "cylcty;": "\u232d", + "dArr;": "\u21d3", + "dHar;": "\u2965", + "dagger;": "\u2020", + "daleth;": "\u2138", + "darr;": "\u2193", + "dash;": "\u2010", + "dashv;": "\u22a3", + "dbkarow;": "\u290f", + "dblac;": "\u02dd", + "dcaron;": "\u010f", + "dcy;": "\u0434", + "dd;": "\u2146", + "ddagger;": "\u2021", + "ddarr;": "\u21ca", + "ddotseq;": "\u2a77", + "deg": "\xb0", + "deg;": "\xb0", + "delta;": "\u03b4", + "demptyv;": "\u29b1", + "dfisht;": "\u297f", + "dfr;": "\U0001d521", + "dharl;": "\u21c3", + "dharr;": "\u21c2", + "diam;": "\u22c4", + "diamond;": "\u22c4", + "diamondsuit;": "\u2666", + "diams;": "\u2666", + "die;": "\xa8", + "digamma;": "\u03dd", + "disin;": "\u22f2", + "div;": "\xf7", + "divide": "\xf7", + "divide;": "\xf7", + "divideontimes;": "\u22c7", + "divonx;": "\u22c7", + "djcy;": "\u0452", + "dlcorn;": "\u231e", + "dlcrop;": "\u230d", + "dollar;": "$", + "dopf;": "\U0001d555", + "dot;": "\u02d9", + "doteq;": "\u2250", + "doteqdot;": "\u2251", + "dotminus;": "\u2238", + "dotplus;": "\u2214", + "dotsquare;": "\u22a1", + "doublebarwedge;": "\u2306", + "downarrow;": "\u2193", + "downdownarrows;": "\u21ca", + "downharpoonleft;": "\u21c3", + "downharpoonright;": "\u21c2", + "drbkarow;": "\u2910", + "drcorn;": "\u231f", + "drcrop;": "\u230c", + "dscr;": "\U0001d4b9", + "dscy;": "\u0455", + "dsol;": "\u29f6", + "dstrok;": "\u0111", + "dtdot;": "\u22f1", + "dtri;": "\u25bf", + "dtrif;": "\u25be", + "duarr;": "\u21f5", + "duhar;": "\u296f", + "dwangle;": "\u29a6", + "dzcy;": "\u045f", + "dzigrarr;": "\u27ff", + "eDDot;": "\u2a77", + "eDot;": "\u2251", + "eacute": "\xe9", + "eacute;": "\xe9", + "easter;": "\u2a6e", + "ecaron;": "\u011b", + "ecir;": "\u2256", + "ecirc": "\xea", + "ecirc;": "\xea", + "ecolon;": "\u2255", + "ecy;": "\u044d", + "edot;": "\u0117", + "ee;": "\u2147", + "efDot;": "\u2252", + "efr;": "\U0001d522", + "eg;": "\u2a9a", + "egrave": "\xe8", + "egrave;": "\xe8", + "egs;": "\u2a96", + "egsdot;": "\u2a98", + "el;": "\u2a99", + "elinters;": "\u23e7", + "ell;": "\u2113", + "els;": "\u2a95", + "elsdot;": "\u2a97", + "emacr;": "\u0113", + "empty;": "\u2205", + "emptyset;": "\u2205", + "emptyv;": "\u2205", + "emsp13;": "\u2004", + "emsp14;": "\u2005", + "emsp;": "\u2003", + "eng;": "\u014b", + "ensp;": "\u2002", + "eogon;": "\u0119", + "eopf;": "\U0001d556", + "epar;": "\u22d5", + "eparsl;": "\u29e3", + "eplus;": "\u2a71", + "epsi;": "\u03b5", + "epsilon;": "\u03b5", + "epsiv;": "\u03f5", + "eqcirc;": "\u2256", + "eqcolon;": "\u2255", + "eqsim;": "\u2242", + "eqslantgtr;": "\u2a96", + "eqslantless;": "\u2a95", + "equals;": "=", + "equest;": "\u225f", + "equiv;": "\u2261", + "equivDD;": "\u2a78", + "eqvparsl;": "\u29e5", + "erDot;": "\u2253", + "erarr;": "\u2971", + "escr;": "\u212f", + "esdot;": "\u2250", + "esim;": "\u2242", + "eta;": "\u03b7", + "eth": "\xf0", + "eth;": "\xf0", + "euml": "\xeb", + "euml;": "\xeb", + "euro;": "\u20ac", + "excl;": "!", + "exist;": "\u2203", + "expectation;": "\u2130", + "exponentiale;": "\u2147", + "fallingdotseq;": "\u2252", + "fcy;": "\u0444", + "female;": "\u2640", + "ffilig;": "\ufb03", + "fflig;": "\ufb00", + "ffllig;": "\ufb04", + "ffr;": "\U0001d523", + "filig;": "\ufb01", + "fjlig;": "fj", + "flat;": "\u266d", + "fllig;": "\ufb02", + "fltns;": "\u25b1", + "fnof;": "\u0192", + "fopf;": "\U0001d557", + "forall;": "\u2200", + "fork;": "\u22d4", + "forkv;": "\u2ad9", + "fpartint;": "\u2a0d", + "frac12": "\xbd", + "frac12;": "\xbd", + "frac13;": "\u2153", + "frac14": "\xbc", + "frac14;": "\xbc", + "frac15;": "\u2155", + "frac16;": "\u2159", + "frac18;": "\u215b", + "frac23;": "\u2154", + "frac25;": "\u2156", + "frac34": "\xbe", + "frac34;": "\xbe", + "frac35;": "\u2157", + "frac38;": "\u215c", + "frac45;": "\u2158", + "frac56;": "\u215a", + "frac58;": "\u215d", + "frac78;": "\u215e", + "frasl;": "\u2044", + "frown;": "\u2322", + "fscr;": "\U0001d4bb", + "gE;": "\u2267", + "gEl;": "\u2a8c", + "gacute;": "\u01f5", + "gamma;": "\u03b3", + "gammad;": "\u03dd", + "gap;": "\u2a86", + "gbreve;": "\u011f", + "gcirc;": "\u011d", + "gcy;": "\u0433", + "gdot;": "\u0121", + "ge;": "\u2265", + "gel;": "\u22db", + "geq;": "\u2265", + "geqq;": "\u2267", + "geqslant;": "\u2a7e", + "ges;": "\u2a7e", + "gescc;": "\u2aa9", + "gesdot;": "\u2a80", + "gesdoto;": "\u2a82", + "gesdotol;": "\u2a84", + "gesl;": "\u22db\ufe00", + "gesles;": "\u2a94", + "gfr;": "\U0001d524", + "gg;": "\u226b", + "ggg;": "\u22d9", + "gimel;": "\u2137", + "gjcy;": "\u0453", + "gl;": "\u2277", + "glE;": "\u2a92", + "gla;": "\u2aa5", + "glj;": "\u2aa4", + "gnE;": "\u2269", + "gnap;": "\u2a8a", + "gnapprox;": "\u2a8a", + "gne;": "\u2a88", + "gneq;": "\u2a88", + "gneqq;": "\u2269", + "gnsim;": "\u22e7", + "gopf;": "\U0001d558", + "grave;": "`", + "gscr;": "\u210a", + "gsim;": "\u2273", + "gsime;": "\u2a8e", + "gsiml;": "\u2a90", + "gt": ">", + "gt;": ">", + "gtcc;": "\u2aa7", + "gtcir;": "\u2a7a", + "gtdot;": "\u22d7", + "gtlPar;": "\u2995", + "gtquest;": "\u2a7c", + "gtrapprox;": "\u2a86", + "gtrarr;": "\u2978", + "gtrdot;": "\u22d7", + "gtreqless;": "\u22db", + "gtreqqless;": "\u2a8c", + "gtrless;": "\u2277", + "gtrsim;": "\u2273", + "gvertneqq;": "\u2269\ufe00", + "gvnE;": "\u2269\ufe00", + "hArr;": "\u21d4", + "hairsp;": "\u200a", + "half;": "\xbd", + "hamilt;": "\u210b", + "hardcy;": "\u044a", + "harr;": "\u2194", + "harrcir;": "\u2948", + "harrw;": "\u21ad", + "hbar;": "\u210f", + "hcirc;": "\u0125", + "hearts;": "\u2665", + "heartsuit;": "\u2665", + "hellip;": "\u2026", + "hercon;": "\u22b9", + "hfr;": "\U0001d525", + "hksearow;": "\u2925", + "hkswarow;": "\u2926", + "hoarr;": "\u21ff", + "homtht;": "\u223b", + "hookleftarrow;": "\u21a9", + "hookrightarrow;": "\u21aa", + "hopf;": "\U0001d559", + "horbar;": "\u2015", + "hscr;": "\U0001d4bd", + "hslash;": "\u210f", + "hstrok;": "\u0127", + "hybull;": "\u2043", + "hyphen;": "\u2010", + "iacute": "\xed", + "iacute;": "\xed", + "ic;": "\u2063", + "icirc": "\xee", + "icirc;": "\xee", + "icy;": "\u0438", + "iecy;": "\u0435", + "iexcl": "\xa1", + "iexcl;": "\xa1", + "iff;": "\u21d4", + "ifr;": "\U0001d526", + "igrave": "\xec", + "igrave;": "\xec", + "ii;": "\u2148", + "iiiint;": "\u2a0c", + "iiint;": "\u222d", + "iinfin;": "\u29dc", + "iiota;": "\u2129", + "ijlig;": "\u0133", + "imacr;": "\u012b", + "image;": "\u2111", + "imagline;": "\u2110", + "imagpart;": "\u2111", + "imath;": "\u0131", + "imof;": "\u22b7", + "imped;": "\u01b5", + "in;": "\u2208", + "incare;": "\u2105", + "infin;": "\u221e", + "infintie;": "\u29dd", + "inodot;": "\u0131", + "int;": "\u222b", + "intcal;": "\u22ba", + "integers;": "\u2124", + "intercal;": "\u22ba", + "intlarhk;": "\u2a17", + "intprod;": "\u2a3c", + "iocy;": "\u0451", + "iogon;": "\u012f", + "iopf;": "\U0001d55a", + "iota;": "\u03b9", + "iprod;": "\u2a3c", + "iquest": "\xbf", + "iquest;": "\xbf", + "iscr;": "\U0001d4be", + "isin;": "\u2208", + "isinE;": "\u22f9", + "isindot;": "\u22f5", + "isins;": "\u22f4", + "isinsv;": "\u22f3", + "isinv;": "\u2208", + "it;": "\u2062", + "itilde;": "\u0129", + "iukcy;": "\u0456", + "iuml": "\xef", + "iuml;": "\xef", + "jcirc;": "\u0135", + "jcy;": "\u0439", + "jfr;": "\U0001d527", + "jmath;": "\u0237", + "jopf;": "\U0001d55b", + "jscr;": "\U0001d4bf", + "jsercy;": "\u0458", + "jukcy;": "\u0454", + "kappa;": "\u03ba", + "kappav;": "\u03f0", + "kcedil;": "\u0137", + "kcy;": "\u043a", + "kfr;": "\U0001d528", + "kgreen;": "\u0138", + "khcy;": "\u0445", + "kjcy;": "\u045c", + "kopf;": "\U0001d55c", + "kscr;": "\U0001d4c0", + "lAarr;": "\u21da", + "lArr;": "\u21d0", + "lAtail;": "\u291b", + "lBarr;": "\u290e", + "lE;": "\u2266", + "lEg;": "\u2a8b", + "lHar;": "\u2962", + "lacute;": "\u013a", + "laemptyv;": "\u29b4", + "lagran;": "\u2112", + "lambda;": "\u03bb", + "lang;": "\u27e8", + "langd;": "\u2991", + "langle;": "\u27e8", + "lap;": "\u2a85", + "laquo": "\xab", + "laquo;": "\xab", + "larr;": "\u2190", + "larrb;": "\u21e4", + "larrbfs;": "\u291f", + "larrfs;": "\u291d", + "larrhk;": "\u21a9", + "larrlp;": "\u21ab", + "larrpl;": "\u2939", + "larrsim;": "\u2973", + "larrtl;": "\u21a2", + "lat;": "\u2aab", + "latail;": "\u2919", + "late;": "\u2aad", + "lates;": "\u2aad\ufe00", + "lbarr;": "\u290c", + "lbbrk;": "\u2772", + "lbrace;": "{", + "lbrack;": "[", + "lbrke;": "\u298b", + "lbrksld;": "\u298f", + "lbrkslu;": "\u298d", + "lcaron;": "\u013e", + "lcedil;": "\u013c", + "lceil;": "\u2308", + "lcub;": "{", + "lcy;": "\u043b", + "ldca;": "\u2936", + "ldquo;": "\u201c", + "ldquor;": "\u201e", + "ldrdhar;": "\u2967", + "ldrushar;": "\u294b", + "ldsh;": "\u21b2", + "le;": "\u2264", + "leftarrow;": "\u2190", + "leftarrowtail;": "\u21a2", + "leftharpoondown;": "\u21bd", + "leftharpoonup;": "\u21bc", + "leftleftarrows;": "\u21c7", + "leftrightarrow;": "\u2194", + "leftrightarrows;": "\u21c6", + "leftrightharpoons;": "\u21cb", + "leftrightsquigarrow;": "\u21ad", + "leftthreetimes;": "\u22cb", + "leg;": "\u22da", + "leq;": "\u2264", + "leqq;": "\u2266", + "leqslant;": "\u2a7d", + "les;": "\u2a7d", + "lescc;": "\u2aa8", + "lesdot;": "\u2a7f", + "lesdoto;": "\u2a81", + "lesdotor;": "\u2a83", + "lesg;": "\u22da\ufe00", + "lesges;": "\u2a93", + "lessapprox;": "\u2a85", + "lessdot;": "\u22d6", + "lesseqgtr;": "\u22da", + "lesseqqgtr;": "\u2a8b", + "lessgtr;": "\u2276", + "lesssim;": "\u2272", + "lfisht;": "\u297c", + "lfloor;": "\u230a", + "lfr;": "\U0001d529", + "lg;": "\u2276", + "lgE;": "\u2a91", + "lhard;": "\u21bd", + "lharu;": "\u21bc", + "lharul;": "\u296a", + "lhblk;": "\u2584", + "ljcy;": "\u0459", + "ll;": "\u226a", + "llarr;": "\u21c7", + "llcorner;": "\u231e", + "llhard;": "\u296b", + "lltri;": "\u25fa", + "lmidot;": "\u0140", + "lmoust;": "\u23b0", + "lmoustache;": "\u23b0", + "lnE;": "\u2268", + "lnap;": "\u2a89", + "lnapprox;": "\u2a89", + "lne;": "\u2a87", + "lneq;": "\u2a87", + "lneqq;": "\u2268", + "lnsim;": "\u22e6", + "loang;": "\u27ec", + "loarr;": "\u21fd", + "lobrk;": "\u27e6", + "longleftarrow;": "\u27f5", + "longleftrightarrow;": "\u27f7", + "longmapsto;": "\u27fc", + "longrightarrow;": "\u27f6", + "looparrowleft;": "\u21ab", + "looparrowright;": "\u21ac", + "lopar;": "\u2985", + "lopf;": "\U0001d55d", + "loplus;": "\u2a2d", + "lotimes;": "\u2a34", + "lowast;": "\u2217", + "lowbar;": "_", + "loz;": "\u25ca", + "lozenge;": "\u25ca", + "lozf;": "\u29eb", + "lpar;": "(", + "lparlt;": "\u2993", + "lrarr;": "\u21c6", + "lrcorner;": "\u231f", + "lrhar;": "\u21cb", + "lrhard;": "\u296d", + "lrm;": "\u200e", + "lrtri;": "\u22bf", + "lsaquo;": "\u2039", + "lscr;": "\U0001d4c1", + "lsh;": "\u21b0", + "lsim;": "\u2272", + "lsime;": "\u2a8d", + "lsimg;": "\u2a8f", + "lsqb;": "[", + "lsquo;": "\u2018", + "lsquor;": "\u201a", + "lstrok;": "\u0142", + "lt": "<", + "lt;": "<", + "ltcc;": "\u2aa6", + "ltcir;": "\u2a79", + "ltdot;": "\u22d6", + "lthree;": "\u22cb", + "ltimes;": "\u22c9", + "ltlarr;": "\u2976", + "ltquest;": "\u2a7b", + "ltrPar;": "\u2996", + "ltri;": "\u25c3", + "ltrie;": "\u22b4", + "ltrif;": "\u25c2", + "lurdshar;": "\u294a", + "luruhar;": "\u2966", + "lvertneqq;": "\u2268\ufe00", + "lvnE;": "\u2268\ufe00", + "mDDot;": "\u223a", + "macr": "\xaf", + "macr;": "\xaf", + "male;": "\u2642", + "malt;": "\u2720", + "maltese;": "\u2720", + "map;": "\u21a6", + "mapsto;": "\u21a6", + "mapstodown;": "\u21a7", + "mapstoleft;": "\u21a4", + "mapstoup;": "\u21a5", + "marker;": "\u25ae", + "mcomma;": "\u2a29", + "mcy;": "\u043c", + "mdash;": "\u2014", + "measuredangle;": "\u2221", + "mfr;": "\U0001d52a", + "mho;": "\u2127", + "micro": "\xb5", + "micro;": "\xb5", + "mid;": "\u2223", + "midast;": "*", + "midcir;": "\u2af0", + "middot": "\xb7", + "middot;": "\xb7", + "minus;": "\u2212", + "minusb;": "\u229f", + "minusd;": "\u2238", + "minusdu;": "\u2a2a", + "mlcp;": "\u2adb", + "mldr;": "\u2026", + "mnplus;": "\u2213", + "models;": "\u22a7", + "mopf;": "\U0001d55e", + "mp;": "\u2213", + "mscr;": "\U0001d4c2", + "mstpos;": "\u223e", + "mu;": "\u03bc", + "multimap;": "\u22b8", + "mumap;": "\u22b8", + "nGg;": "\u22d9\u0338", + "nGt;": "\u226b\u20d2", + "nGtv;": "\u226b\u0338", + "nLeftarrow;": "\u21cd", + "nLeftrightarrow;": "\u21ce", + "nLl;": "\u22d8\u0338", + "nLt;": "\u226a\u20d2", + "nLtv;": "\u226a\u0338", + "nRightarrow;": "\u21cf", + "nVDash;": "\u22af", + "nVdash;": "\u22ae", + "nabla;": "\u2207", + "nacute;": "\u0144", + "nang;": "\u2220\u20d2", + "nap;": "\u2249", + "napE;": "\u2a70\u0338", + "napid;": "\u224b\u0338", + "napos;": "\u0149", + "napprox;": "\u2249", + "natur;": "\u266e", + "natural;": "\u266e", + "naturals;": "\u2115", + "nbsp": "\xa0", + "nbsp;": "\xa0", + "nbump;": "\u224e\u0338", + "nbumpe;": "\u224f\u0338", + "ncap;": "\u2a43", + "ncaron;": "\u0148", + "ncedil;": "\u0146", + "ncong;": "\u2247", + "ncongdot;": "\u2a6d\u0338", + "ncup;": "\u2a42", + "ncy;": "\u043d", + "ndash;": "\u2013", + "ne;": "\u2260", + "neArr;": "\u21d7", + "nearhk;": "\u2924", + "nearr;": "\u2197", + "nearrow;": "\u2197", + "nedot;": "\u2250\u0338", + "nequiv;": "\u2262", + "nesear;": "\u2928", + "nesim;": "\u2242\u0338", + "nexist;": "\u2204", + "nexists;": "\u2204", + "nfr;": "\U0001d52b", + "ngE;": "\u2267\u0338", + "nge;": "\u2271", + "ngeq;": "\u2271", + "ngeqq;": "\u2267\u0338", + "ngeqslant;": "\u2a7e\u0338", + "nges;": "\u2a7e\u0338", + "ngsim;": "\u2275", + "ngt;": "\u226f", + "ngtr;": "\u226f", + "nhArr;": "\u21ce", + "nharr;": "\u21ae", + "nhpar;": "\u2af2", + "ni;": "\u220b", + "nis;": "\u22fc", + "nisd;": "\u22fa", + "niv;": "\u220b", + "njcy;": "\u045a", + "nlArr;": "\u21cd", + "nlE;": "\u2266\u0338", + "nlarr;": "\u219a", + "nldr;": "\u2025", + "nle;": "\u2270", + "nleftarrow;": "\u219a", + "nleftrightarrow;": "\u21ae", + "nleq;": "\u2270", + "nleqq;": "\u2266\u0338", + "nleqslant;": "\u2a7d\u0338", + "nles;": "\u2a7d\u0338", + "nless;": "\u226e", + "nlsim;": "\u2274", + "nlt;": "\u226e", + "nltri;": "\u22ea", + "nltrie;": "\u22ec", + "nmid;": "\u2224", + "nopf;": "\U0001d55f", + "not": "\xac", + "not;": "\xac", + "notin;": "\u2209", + "notinE;": "\u22f9\u0338", + "notindot;": "\u22f5\u0338", + "notinva;": "\u2209", + "notinvb;": "\u22f7", + "notinvc;": "\u22f6", + "notni;": "\u220c", + "notniva;": "\u220c", + "notnivb;": "\u22fe", + "notnivc;": "\u22fd", + "npar;": "\u2226", + "nparallel;": "\u2226", + "nparsl;": "\u2afd\u20e5", + "npart;": "\u2202\u0338", + "npolint;": "\u2a14", + "npr;": "\u2280", + "nprcue;": "\u22e0", + "npre;": "\u2aaf\u0338", + "nprec;": "\u2280", + "npreceq;": "\u2aaf\u0338", + "nrArr;": "\u21cf", + "nrarr;": "\u219b", + "nrarrc;": "\u2933\u0338", + "nrarrw;": "\u219d\u0338", + "nrightarrow;": "\u219b", + "nrtri;": "\u22eb", + "nrtrie;": "\u22ed", + "nsc;": "\u2281", + "nsccue;": "\u22e1", + "nsce;": "\u2ab0\u0338", + "nscr;": "\U0001d4c3", + "nshortmid;": "\u2224", + "nshortparallel;": "\u2226", + "nsim;": "\u2241", + "nsime;": "\u2244", + "nsimeq;": "\u2244", + "nsmid;": "\u2224", + "nspar;": "\u2226", + "nsqsube;": "\u22e2", + "nsqsupe;": "\u22e3", + "nsub;": "\u2284", + "nsubE;": "\u2ac5\u0338", + "nsube;": "\u2288", + "nsubset;": "\u2282\u20d2", + "nsubseteq;": "\u2288", + "nsubseteqq;": "\u2ac5\u0338", + "nsucc;": "\u2281", + "nsucceq;": "\u2ab0\u0338", + "nsup;": "\u2285", + "nsupE;": "\u2ac6\u0338", + "nsupe;": "\u2289", + "nsupset;": "\u2283\u20d2", + "nsupseteq;": "\u2289", + "nsupseteqq;": "\u2ac6\u0338", + "ntgl;": "\u2279", + "ntilde": "\xf1", + "ntilde;": "\xf1", + "ntlg;": "\u2278", + "ntriangleleft;": "\u22ea", + "ntrianglelefteq;": "\u22ec", + "ntriangleright;": "\u22eb", + "ntrianglerighteq;": "\u22ed", + "nu;": "\u03bd", + "num;": "#", + "numero;": "\u2116", + "numsp;": "\u2007", + "nvDash;": "\u22ad", + "nvHarr;": "\u2904", + "nvap;": "\u224d\u20d2", + "nvdash;": "\u22ac", + "nvge;": "\u2265\u20d2", + "nvgt;": ">\u20d2", + "nvinfin;": "\u29de", + "nvlArr;": "\u2902", + "nvle;": "\u2264\u20d2", + "nvlt;": "<\u20d2", + "nvltrie;": "\u22b4\u20d2", + "nvrArr;": "\u2903", + "nvrtrie;": "\u22b5\u20d2", + "nvsim;": "\u223c\u20d2", + "nwArr;": "\u21d6", + "nwarhk;": "\u2923", + "nwarr;": "\u2196", + "nwarrow;": "\u2196", + "nwnear;": "\u2927", + "oS;": "\u24c8", + "oacute": "\xf3", + "oacute;": "\xf3", + "oast;": "\u229b", + "ocir;": "\u229a", + "ocirc": "\xf4", + "ocirc;": "\xf4", + "ocy;": "\u043e", + "odash;": "\u229d", + "odblac;": "\u0151", + "odiv;": "\u2a38", + "odot;": "\u2299", + "odsold;": "\u29bc", + "oelig;": "\u0153", + "ofcir;": "\u29bf", + "ofr;": "\U0001d52c", + "ogon;": "\u02db", + "ograve": "\xf2", + "ograve;": "\xf2", + "ogt;": "\u29c1", + "ohbar;": "\u29b5", + "ohm;": "\u03a9", + "oint;": "\u222e", + "olarr;": "\u21ba", + "olcir;": "\u29be", + "olcross;": "\u29bb", + "oline;": "\u203e", + "olt;": "\u29c0", + "omacr;": "\u014d", + "omega;": "\u03c9", + "omicron;": "\u03bf", + "omid;": "\u29b6", + "ominus;": "\u2296", + "oopf;": "\U0001d560", + "opar;": "\u29b7", + "operp;": "\u29b9", + "oplus;": "\u2295", + "or;": "\u2228", + "orarr;": "\u21bb", + "ord;": "\u2a5d", + "order;": "\u2134", + "orderof;": "\u2134", + "ordf": "\xaa", + "ordf;": "\xaa", + "ordm": "\xba", + "ordm;": "\xba", + "origof;": "\u22b6", + "oror;": "\u2a56", + "orslope;": "\u2a57", + "orv;": "\u2a5b", + "oscr;": "\u2134", + "oslash": "\xf8", + "oslash;": "\xf8", + "osol;": "\u2298", + "otilde": "\xf5", + "otilde;": "\xf5", + "otimes;": "\u2297", + "otimesas;": "\u2a36", + "ouml": "\xf6", + "ouml;": "\xf6", + "ovbar;": "\u233d", + "par;": "\u2225", + "para": "\xb6", + "para;": "\xb6", + "parallel;": "\u2225", + "parsim;": "\u2af3", + "parsl;": "\u2afd", + "part;": "\u2202", + "pcy;": "\u043f", + "percnt;": "%", + "period;": ".", + "permil;": "\u2030", + "perp;": "\u22a5", + "pertenk;": "\u2031", + "pfr;": "\U0001d52d", + "phi;": "\u03c6", + "phiv;": "\u03d5", + "phmmat;": "\u2133", + "phone;": "\u260e", + "pi;": "\u03c0", + "pitchfork;": "\u22d4", + "piv;": "\u03d6", + "planck;": "\u210f", + "planckh;": "\u210e", + "plankv;": "\u210f", + "plus;": "+", + "plusacir;": "\u2a23", + "plusb;": "\u229e", + "pluscir;": "\u2a22", + "plusdo;": "\u2214", + "plusdu;": "\u2a25", + "pluse;": "\u2a72", + "plusmn": "\xb1", + "plusmn;": "\xb1", + "plussim;": "\u2a26", + "plustwo;": "\u2a27", + "pm;": "\xb1", + "pointint;": "\u2a15", + "popf;": "\U0001d561", + "pound": "\xa3", + "pound;": "\xa3", + "pr;": "\u227a", + "prE;": "\u2ab3", + "prap;": "\u2ab7", + "prcue;": "\u227c", + "pre;": "\u2aaf", + "prec;": "\u227a", + "precapprox;": "\u2ab7", + "preccurlyeq;": "\u227c", + "preceq;": "\u2aaf", + "precnapprox;": "\u2ab9", + "precneqq;": "\u2ab5", + "precnsim;": "\u22e8", + "precsim;": "\u227e", + "prime;": "\u2032", + "primes;": "\u2119", + "prnE;": "\u2ab5", + "prnap;": "\u2ab9", + "prnsim;": "\u22e8", + "prod;": "\u220f", + "profalar;": "\u232e", + "profline;": "\u2312", + "profsurf;": "\u2313", + "prop;": "\u221d", + "propto;": "\u221d", + "prsim;": "\u227e", + "prurel;": "\u22b0", + "pscr;": "\U0001d4c5", + "psi;": "\u03c8", + "puncsp;": "\u2008", + "qfr;": "\U0001d52e", + "qint;": "\u2a0c", + "qopf;": "\U0001d562", + "qprime;": "\u2057", + "qscr;": "\U0001d4c6", + "quaternions;": "\u210d", + "quatint;": "\u2a16", + "quest;": "?", + "questeq;": "\u225f", + "quot": "\"", + "quot;": "\"", + "rAarr;": "\u21db", + "rArr;": "\u21d2", + "rAtail;": "\u291c", + "rBarr;": "\u290f", + "rHar;": "\u2964", + "race;": "\u223d\u0331", + "racute;": "\u0155", + "radic;": "\u221a", + "raemptyv;": "\u29b3", + "rang;": "\u27e9", + "rangd;": "\u2992", + "range;": "\u29a5", + "rangle;": "\u27e9", + "raquo": "\xbb", + "raquo;": "\xbb", + "rarr;": "\u2192", + "rarrap;": "\u2975", + "rarrb;": "\u21e5", + "rarrbfs;": "\u2920", + "rarrc;": "\u2933", + "rarrfs;": "\u291e", + "rarrhk;": "\u21aa", + "rarrlp;": "\u21ac", + "rarrpl;": "\u2945", + "rarrsim;": "\u2974", + "rarrtl;": "\u21a3", + "rarrw;": "\u219d", + "ratail;": "\u291a", + "ratio;": "\u2236", + "rationals;": "\u211a", + "rbarr;": "\u290d", + "rbbrk;": "\u2773", + "rbrace;": "}", + "rbrack;": "]", + "rbrke;": "\u298c", + "rbrksld;": "\u298e", + "rbrkslu;": "\u2990", + "rcaron;": "\u0159", + "rcedil;": "\u0157", + "rceil;": "\u2309", + "rcub;": "}", + "rcy;": "\u0440", + "rdca;": "\u2937", + "rdldhar;": "\u2969", + "rdquo;": "\u201d", + "rdquor;": "\u201d", + "rdsh;": "\u21b3", + "real;": "\u211c", + "realine;": "\u211b", + "realpart;": "\u211c", + "reals;": "\u211d", + "rect;": "\u25ad", + "reg": "\xae", + "reg;": "\xae", + "rfisht;": "\u297d", + "rfloor;": "\u230b", + "rfr;": "\U0001d52f", + "rhard;": "\u21c1", + "rharu;": "\u21c0", + "rharul;": "\u296c", + "rho;": "\u03c1", + "rhov;": "\u03f1", + "rightarrow;": "\u2192", + "rightarrowtail;": "\u21a3", + "rightharpoondown;": "\u21c1", + "rightharpoonup;": "\u21c0", + "rightleftarrows;": "\u21c4", + "rightleftharpoons;": "\u21cc", + "rightrightarrows;": "\u21c9", + "rightsquigarrow;": "\u219d", + "rightthreetimes;": "\u22cc", + "ring;": "\u02da", + "risingdotseq;": "\u2253", + "rlarr;": "\u21c4", + "rlhar;": "\u21cc", + "rlm;": "\u200f", + "rmoust;": "\u23b1", + "rmoustache;": "\u23b1", + "rnmid;": "\u2aee", + "roang;": "\u27ed", + "roarr;": "\u21fe", + "robrk;": "\u27e7", + "ropar;": "\u2986", + "ropf;": "\U0001d563", + "roplus;": "\u2a2e", + "rotimes;": "\u2a35", + "rpar;": ")", + "rpargt;": "\u2994", + "rppolint;": "\u2a12", + "rrarr;": "\u21c9", + "rsaquo;": "\u203a", + "rscr;": "\U0001d4c7", + "rsh;": "\u21b1", + "rsqb;": "]", + "rsquo;": "\u2019", + "rsquor;": "\u2019", + "rthree;": "\u22cc", + "rtimes;": "\u22ca", + "rtri;": "\u25b9", + "rtrie;": "\u22b5", + "rtrif;": "\u25b8", + "rtriltri;": "\u29ce", + "ruluhar;": "\u2968", + "rx;": "\u211e", + "sacute;": "\u015b", + "sbquo;": "\u201a", + "sc;": "\u227b", + "scE;": "\u2ab4", + "scap;": "\u2ab8", + "scaron;": "\u0161", + "sccue;": "\u227d", + "sce;": "\u2ab0", + "scedil;": "\u015f", + "scirc;": "\u015d", + "scnE;": "\u2ab6", + "scnap;": "\u2aba", + "scnsim;": "\u22e9", + "scpolint;": "\u2a13", + "scsim;": "\u227f", + "scy;": "\u0441", + "sdot;": "\u22c5", + "sdotb;": "\u22a1", + "sdote;": "\u2a66", + "seArr;": "\u21d8", + "searhk;": "\u2925", + "searr;": "\u2198", + "searrow;": "\u2198", + "sect": "\xa7", + "sect;": "\xa7", + "semi;": ";", + "seswar;": "\u2929", + "setminus;": "\u2216", + "setmn;": "\u2216", + "sext;": "\u2736", + "sfr;": "\U0001d530", + "sfrown;": "\u2322", + "sharp;": "\u266f", + "shchcy;": "\u0449", + "shcy;": "\u0448", + "shortmid;": "\u2223", + "shortparallel;": "\u2225", + "shy": "\xad", + "shy;": "\xad", + "sigma;": "\u03c3", + "sigmaf;": "\u03c2", + "sigmav;": "\u03c2", + "sim;": "\u223c", + "simdot;": "\u2a6a", + "sime;": "\u2243", + "simeq;": "\u2243", + "simg;": "\u2a9e", + "simgE;": "\u2aa0", + "siml;": "\u2a9d", + "simlE;": "\u2a9f", + "simne;": "\u2246", + "simplus;": "\u2a24", + "simrarr;": "\u2972", + "slarr;": "\u2190", + "smallsetminus;": "\u2216", + "smashp;": "\u2a33", + "smeparsl;": "\u29e4", + "smid;": "\u2223", + "smile;": "\u2323", + "smt;": "\u2aaa", + "smte;": "\u2aac", + "smtes;": "\u2aac\ufe00", + "softcy;": "\u044c", + "sol;": "/", + "solb;": "\u29c4", + "solbar;": "\u233f", + "sopf;": "\U0001d564", + "spades;": "\u2660", + "spadesuit;": "\u2660", + "spar;": "\u2225", + "sqcap;": "\u2293", + "sqcaps;": "\u2293\ufe00", + "sqcup;": "\u2294", + "sqcups;": "\u2294\ufe00", + "sqsub;": "\u228f", + "sqsube;": "\u2291", + "sqsubset;": "\u228f", + "sqsubseteq;": "\u2291", + "sqsup;": "\u2290", + "sqsupe;": "\u2292", + "sqsupset;": "\u2290", + "sqsupseteq;": "\u2292", + "squ;": "\u25a1", + "square;": "\u25a1", + "squarf;": "\u25aa", + "squf;": "\u25aa", + "srarr;": "\u2192", + "sscr;": "\U0001d4c8", + "ssetmn;": "\u2216", + "ssmile;": "\u2323", + "sstarf;": "\u22c6", + "star;": "\u2606", + "starf;": "\u2605", + "straightepsilon;": "\u03f5", + "straightphi;": "\u03d5", + "strns;": "\xaf", + "sub;": "\u2282", + "subE;": "\u2ac5", + "subdot;": "\u2abd", + "sube;": "\u2286", + "subedot;": "\u2ac3", + "submult;": "\u2ac1", + "subnE;": "\u2acb", + "subne;": "\u228a", + "subplus;": "\u2abf", + "subrarr;": "\u2979", + "subset;": "\u2282", + "subseteq;": "\u2286", + "subseteqq;": "\u2ac5", + "subsetneq;": "\u228a", + "subsetneqq;": "\u2acb", + "subsim;": "\u2ac7", + "subsub;": "\u2ad5", + "subsup;": "\u2ad3", + "succ;": "\u227b", + "succapprox;": "\u2ab8", + "succcurlyeq;": "\u227d", + "succeq;": "\u2ab0", + "succnapprox;": "\u2aba", + "succneqq;": "\u2ab6", + "succnsim;": "\u22e9", + "succsim;": "\u227f", + "sum;": "\u2211", + "sung;": "\u266a", + "sup1": "\xb9", + "sup1;": "\xb9", + "sup2": "\xb2", + "sup2;": "\xb2", + "sup3": "\xb3", + "sup3;": "\xb3", + "sup;": "\u2283", + "supE;": "\u2ac6", + "supdot;": "\u2abe", + "supdsub;": "\u2ad8", + "supe;": "\u2287", + "supedot;": "\u2ac4", + "suphsol;": "\u27c9", + "suphsub;": "\u2ad7", + "suplarr;": "\u297b", + "supmult;": "\u2ac2", + "supnE;": "\u2acc", + "supne;": "\u228b", + "supplus;": "\u2ac0", + "supset;": "\u2283", + "supseteq;": "\u2287", + "supseteqq;": "\u2ac6", + "supsetneq;": "\u228b", + "supsetneqq;": "\u2acc", + "supsim;": "\u2ac8", + "supsub;": "\u2ad4", + "supsup;": "\u2ad6", + "swArr;": "\u21d9", + "swarhk;": "\u2926", + "swarr;": "\u2199", + "swarrow;": "\u2199", + "swnwar;": "\u292a", + "szlig": "\xdf", + "szlig;": "\xdf", + "target;": "\u2316", + "tau;": "\u03c4", + "tbrk;": "\u23b4", + "tcaron;": "\u0165", + "tcedil;": "\u0163", + "tcy;": "\u0442", + "tdot;": "\u20db", + "telrec;": "\u2315", + "tfr;": "\U0001d531", + "there4;": "\u2234", + "therefore;": "\u2234", + "theta;": "\u03b8", + "thetasym;": "\u03d1", + "thetav;": "\u03d1", + "thickapprox;": "\u2248", + "thicksim;": "\u223c", + "thinsp;": "\u2009", + "thkap;": "\u2248", + "thksim;": "\u223c", + "thorn": "\xfe", + "thorn;": "\xfe", + "tilde;": "\u02dc", + "times": "\xd7", + "times;": "\xd7", + "timesb;": "\u22a0", + "timesbar;": "\u2a31", + "timesd;": "\u2a30", + "tint;": "\u222d", + "toea;": "\u2928", + "top;": "\u22a4", + "topbot;": "\u2336", + "topcir;": "\u2af1", + "topf;": "\U0001d565", + "topfork;": "\u2ada", + "tosa;": "\u2929", + "tprime;": "\u2034", + "trade;": "\u2122", + "triangle;": "\u25b5", + "triangledown;": "\u25bf", + "triangleleft;": "\u25c3", + "trianglelefteq;": "\u22b4", + "triangleq;": "\u225c", + "triangleright;": "\u25b9", + "trianglerighteq;": "\u22b5", + "tridot;": "\u25ec", + "trie;": "\u225c", + "triminus;": "\u2a3a", + "triplus;": "\u2a39", + "trisb;": "\u29cd", + "tritime;": "\u2a3b", + "trpezium;": "\u23e2", + "tscr;": "\U0001d4c9", + "tscy;": "\u0446", + "tshcy;": "\u045b", + "tstrok;": "\u0167", + "twixt;": "\u226c", + "twoheadleftarrow;": "\u219e", + "twoheadrightarrow;": "\u21a0", + "uArr;": "\u21d1", + "uHar;": "\u2963", + "uacute": "\xfa", + "uacute;": "\xfa", + "uarr;": "\u2191", + "ubrcy;": "\u045e", + "ubreve;": "\u016d", + "ucirc": "\xfb", + "ucirc;": "\xfb", + "ucy;": "\u0443", + "udarr;": "\u21c5", + "udblac;": "\u0171", + "udhar;": "\u296e", + "ufisht;": "\u297e", + "ufr;": "\U0001d532", + "ugrave": "\xf9", + "ugrave;": "\xf9", + "uharl;": "\u21bf", + "uharr;": "\u21be", + "uhblk;": "\u2580", + "ulcorn;": "\u231c", + "ulcorner;": "\u231c", + "ulcrop;": "\u230f", + "ultri;": "\u25f8", + "umacr;": "\u016b", + "uml": "\xa8", + "uml;": "\xa8", + "uogon;": "\u0173", + "uopf;": "\U0001d566", + "uparrow;": "\u2191", + "updownarrow;": "\u2195", + "upharpoonleft;": "\u21bf", + "upharpoonright;": "\u21be", + "uplus;": "\u228e", + "upsi;": "\u03c5", + "upsih;": "\u03d2", + "upsilon;": "\u03c5", + "upuparrows;": "\u21c8", + "urcorn;": "\u231d", + "urcorner;": "\u231d", + "urcrop;": "\u230e", + "uring;": "\u016f", + "urtri;": "\u25f9", + "uscr;": "\U0001d4ca", + "utdot;": "\u22f0", + "utilde;": "\u0169", + "utri;": "\u25b5", + "utrif;": "\u25b4", + "uuarr;": "\u21c8", + "uuml": "\xfc", + "uuml;": "\xfc", + "uwangle;": "\u29a7", + "vArr;": "\u21d5", + "vBar;": "\u2ae8", + "vBarv;": "\u2ae9", + "vDash;": "\u22a8", + "vangrt;": "\u299c", + "varepsilon;": "\u03f5", + "varkappa;": "\u03f0", + "varnothing;": "\u2205", + "varphi;": "\u03d5", + "varpi;": "\u03d6", + "varpropto;": "\u221d", + "varr;": "\u2195", + "varrho;": "\u03f1", + "varsigma;": "\u03c2", + "varsubsetneq;": "\u228a\ufe00", + "varsubsetneqq;": "\u2acb\ufe00", + "varsupsetneq;": "\u228b\ufe00", + "varsupsetneqq;": "\u2acc\ufe00", + "vartheta;": "\u03d1", + "vartriangleleft;": "\u22b2", + "vartriangleright;": "\u22b3", + "vcy;": "\u0432", + "vdash;": "\u22a2", + "vee;": "\u2228", + "veebar;": "\u22bb", + "veeeq;": "\u225a", + "vellip;": "\u22ee", + "verbar;": "|", + "vert;": "|", + "vfr;": "\U0001d533", + "vltri;": "\u22b2", + "vnsub;": "\u2282\u20d2", + "vnsup;": "\u2283\u20d2", + "vopf;": "\U0001d567", + "vprop;": "\u221d", + "vrtri;": "\u22b3", + "vscr;": "\U0001d4cb", + "vsubnE;": "\u2acb\ufe00", + "vsubne;": "\u228a\ufe00", + "vsupnE;": "\u2acc\ufe00", + "vsupne;": "\u228b\ufe00", + "vzigzag;": "\u299a", + "wcirc;": "\u0175", + "wedbar;": "\u2a5f", + "wedge;": "\u2227", + "wedgeq;": "\u2259", + "weierp;": "\u2118", + "wfr;": "\U0001d534", + "wopf;": "\U0001d568", + "wp;": "\u2118", + "wr;": "\u2240", + "wreath;": "\u2240", + "wscr;": "\U0001d4cc", + "xcap;": "\u22c2", + "xcirc;": "\u25ef", + "xcup;": "\u22c3", + "xdtri;": "\u25bd", + "xfr;": "\U0001d535", + "xhArr;": "\u27fa", + "xharr;": "\u27f7", + "xi;": "\u03be", + "xlArr;": "\u27f8", + "xlarr;": "\u27f5", + "xmap;": "\u27fc", + "xnis;": "\u22fb", + "xodot;": "\u2a00", + "xopf;": "\U0001d569", + "xoplus;": "\u2a01", + "xotime;": "\u2a02", + "xrArr;": "\u27f9", + "xrarr;": "\u27f6", + "xscr;": "\U0001d4cd", + "xsqcup;": "\u2a06", + "xuplus;": "\u2a04", + "xutri;": "\u25b3", + "xvee;": "\u22c1", + "xwedge;": "\u22c0", + "yacute": "\xfd", + "yacute;": "\xfd", + "yacy;": "\u044f", + "ycirc;": "\u0177", + "ycy;": "\u044b", + "yen": "\xa5", + "yen;": "\xa5", + "yfr;": "\U0001d536", + "yicy;": "\u0457", + "yopf;": "\U0001d56a", + "yscr;": "\U0001d4ce", + "yucy;": "\u044e", + "yuml": "\xff", + "yuml;": "\xff", + "zacute;": "\u017a", + "zcaron;": "\u017e", + "zcy;": "\u0437", + "zdot;": "\u017c", + "zeetrf;": "\u2128", + "zeta;": "\u03b6", + "zfr;": "\U0001d537", + "zhcy;": "\u0436", + "zigrarr;": "\u21dd", + "zopf;": "\U0001d56b", + "zscr;": "\U0001d4cf", + "zwj;": "\u200d", + "zwnj;": "\u200c", +} + +replacementCharacters = { + 0x0: "\uFFFD", + 0x0d: "\u000D", + 0x80: "\u20AC", + 0x81: "\u0081", + 0x82: "\u201A", + 0x83: "\u0192", + 0x84: "\u201E", + 0x85: "\u2026", + 0x86: "\u2020", + 0x87: "\u2021", + 0x88: "\u02C6", + 0x89: "\u2030", + 0x8A: "\u0160", + 0x8B: "\u2039", + 0x8C: "\u0152", + 0x8D: "\u008D", + 0x8E: "\u017D", + 0x8F: "\u008F", + 0x90: "\u0090", + 0x91: "\u2018", + 0x92: "\u2019", + 0x93: "\u201C", + 0x94: "\u201D", + 0x95: "\u2022", + 0x96: "\u2013", + 0x97: "\u2014", + 0x98: "\u02DC", + 0x99: "\u2122", + 0x9A: "\u0161", + 0x9B: "\u203A", + 0x9C: "\u0153", + 0x9D: "\u009D", + 0x9E: "\u017E", + 0x9F: "\u0178", +} + +tokenTypes = { + "Doctype": 0, + "Characters": 1, + "SpaceCharacters": 2, + "StartTag": 3, + "EndTag": 4, + "EmptyTag": 5, + "Comment": 6, + "ParseError": 7 +} + +tagTokenTypes = frozenset([tokenTypes["StartTag"], tokenTypes["EndTag"], + tokenTypes["EmptyTag"]]) + + +prefixes = {v: k for k, v in namespaces.items()} +prefixes["http://www.w3.org/1998/Math/MathML"] = "math" + + +class DataLossWarning(UserWarning): + """Raised when the current tree is unable to represent the input data""" + pass + + +class _ReparseException(Exception): + pass diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..099e94dd6978be0b012c500a943ebc6ed2bf96d5 GIT binary patch literal 286 zcmZusL23gr40K8kC6I^o;3%Q=R!X7wUitvz*vhV0uVrktWq;7G^cnp|uK7hyvB@DJ zbU-6U48w?*%Y~{Ke%^fBhep?!RqaKp&S5^J>=>7d6!?ybMq4+&w>@PB2 zZ!sG8QS4W!1QUT`bx;I#ScG*{L;(|_h*VrBMS^1{V%4krMIXnB=sjaa`Xv*6kv?N0 zh2+WLX;civ;4vEyU!p%Yj=CFsX0=*7C}rJhR5F!I}8+P(-ct>`wJhZswI_UapOYtv*L zzqU2HHIh5XRc5=?e{e54yVKF-K-X3=f4m}cLD_k~;U-~nB?+|X&1Q;ml!zP8@p-obex=X1=v zahcn;U_Z{R&Q1Z3H5)L_JNggBX$l|e)@?7rvbi+YO)r8sRH}}d1iL?cZ8@f6255Tq z_n-NxHY=Zv%>{RS0?k4;02KFRrnReh-R5`iO=RPY7VFC4-A$aH{D1R>qor=&;z!9j zRNG2HE?{zPC^^g9ty}8mlj*&?xkVmKu&yh<0Gqe6&C3lmLYsW)YV|4Yo=b&Xu{l@m zlFz`&iYv;<-<_Sd+ip;jUE5<&A zh><=?*Zabwo_+Y>3iS+Zb`9$}0}5)qGW!Nmsq7>KZGS@b3v=vA@Ej@nB6!4p{OCN` z1)jR$hMBR8p0e}M#W;uLeV)8vt|#K(Lfo1D5S~Zp@h;wlyXcUe9AJ;T4%sgFjs@(b zFBrvo)WyV^aoDAg9XIYCW(BMOdA2-}EpbvyZAv%aYz;S(-kXJ$e8j zx&$X{>x+kFh%KmjmpHwGrb{S&+r{)2x@5!E8m?Jo_Q>gg6)sc`eIsSe7+XPSJQ&mM3ejE?4?xDRhPL63A=7p4c9p z@}fmcS*9#TWS{HNcu0QdYy2aiUqd7?5h?l?8X}D^Ot)8QrNGnO`m*>scpq;A?9#)F VSU;mDXX&^59vg+DFpX~Q{R_kbdZ_>a literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d7b9a516943be5076f64f6462fdf26a21c790f62 GIT binary patch literal 956 zcmZuwJ#X7E5G6&~Rvo8li_D!mRD+@fMYo~|5TM<%c+*12B5gCKM3tmcIPm5S{VVwq z{UcgCb?(-wcT(cGX%FD>;~wwv-bv>0a7@5f-!8;!O2`k~>{|$%a~SR|I6(x}q@)=w zgDfan#whtrL?GBL5ln_#mJLKWCGp@Vph?WyqkQI!ZoK5Gtc~?;B-FKX%2e%(rc#9w zl56Fq&9y7=&b|e(IfvoifRiMnf@Fc9BDf_P6HJ6KhhiXxFb~8Cc%ydsNohz|;N1tq zHI54y4$Ixp4dGDDl-$wFn6^V_8e7OXXhSFU+>QWqN9;40et%ED8oP3JUPzaU+~T<=Sz53C z(p2wG&Q4PYN+s};Rlb17)T&PTwXB4(>C%__J)-Ab`7WL1PM*~3HsV}W%5y$|Vt%0t zV|sJci*)i3E1>f`!}VWkd9oo_bW5ki4k3mrVaGa^VrnBe>!j)(>f5mbg!3*qfunuS zF7i)@7@)ciA-w0@&~5O@I$B7ddw)+Hbi{2~<)wT|f57=Ymh%J1=CGa#y?M2(dl$Zp zhxl5|!g)L9yo45NTu(Uv(&W02SWIJ|qkD-CKaD+yMO#!De;0>EMKmJICah{Q;A^;LZR5 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4845a1ffa4f9dd19749fe06d7c900dc55d4ec3d4 GIT binary patch literal 1954 zcmZt{%WfP+u)F8!%{pFUJ0#*V2Xa`X^(I0f5u7NJ^H46!ApxXO(0DxEyF2#0+}&%( z)~w`+9QcSR*f;nEE{G$Dh$GTmIpr6)gsPc!yjX6jYr47~UGK>k7h43@&JP>>#U(=i zL1ccJfZT(vJ_o=FrwK`^PgCZz)bI^TIO9fQrj~C}@`!MgTQ3Q>gtcvdZ}>L1pOCKe z7Gz1+sFuPll_wJ|f;cU5sVkSqd$Ef1tm;g%ILf&Ql2{8FCh9Fk8CscJp%M`)m|qN# zd$5%UKoFmD;xkTt1I>9!e6umcw;BT~`(d1b-orbOvuzP+B2KcX9Kpn20)W-ddx~v(i28W z38%o|6#Qq0dP9m(3+07gV@Rvz&DQNujy#o5WF&5TdMsvVPv<)#^OOd`^c=UyAX0HQ zYWPnvknq5hGu}bhls4EU9RQUZ1aTJYAgJ6^3CM`4L^7=G=6$&Uj6W0EhR?r$_V;tS zqlz#Rs?S3m_Cz*{Ga)3r+}p}?9ffJpzj><%p^`bDL>ltg(|PYabE9aS7Z>PB;-QER zqD1t$=$#=+ywxub^f=ExUAuL&ub?J+V98E60%MA}=m&cu=-62~iygh}= z%e>O%i@*_;3pMv;JOj-Jd0X!DrABIxz`283uFmxErA9~g^_+ER`|Faa*WBP%BgsE_ zWqd=R_Z{x?E2tr+@9&nm#aCXjnhy5tcCt0_c^S04Ij8kaX~3OvZ1dFG?I_PQ%!VFn z?y>=}H5Z4gT0GZvg?{;d%-m32Ltciek{tvq06<2r!nd*?WE>vtvN;AUN`Ilqm99EpN^{&m}u9jP&cs4;2X>Do( z1Po3tGyj_J>pCuju8p$~t%e}Af*^%imEgG@1iO literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5da1b89b829a0f6e89249a54dfbbaddba69781da GIT binary patch literal 2662 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a119d5ac6bd88620254be682d42cee3ea76fef77 GIT binary patch literal 20120 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..571dbd25c638ed4e1ed44177f387a19dfb01d5c6 GIT binary patch literal 1462 zcmZWpPix#p6rUMMyOON+n&KoiB(Q}By2NWGl+c1hY1nQR)DN zo!G3Q#X0m-6!+LK(M!L@Tzm4Z=Um$Nv~lgaBj!o-e((Q#nySL;kx>$e(z) zzJN!*gsn;-oN$_xf=0Ap5i6|7qR3;p9ogLCcJ36ds0BQSxAJ!3MsDFn9-Q0fzVLpf zktgi)4eko>Hi1*{jBt#%cXMIFAugSRBwv^qfwjN+=1|2 z-h%MkruB7}gY}cA!z#~{S_##AJ%>0O=RNTz6}9eVWv`ZEx2MG$ok)@F_L7qKR4Ow7 z#bv-2$QbuhCdC{t7exdwSJD-tLT7CjDEs)t=QQX}59J%*EV;_(jIPlY`;JiZ%Hss;vT-0Wd}Hh58gd##*81CIX6!O4gme&UjY^KJ?)XNV zZ0zDY+B5!D@A{5xfs))nO*f8l5aQU}YO4G~3MJ%`xaxfRz87(WtG;b)CGx3pp~8)* zadfp1rQ8I2zY%#CUhn=0UsrOm)(A0%fhcELDTK_**0P389fkLE%1H!%HKe63_iEra4{erGzvkBGN*Ft__ny;{DkS zpz+eGR62qCWu2ynBKBdGm8P9mMV;kBV(FV)8td00z%i4Uzj2?etNI0IsIXz%#BF-w L(@pk)73};2ojQEN literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py new file mode 100644 index 000000000..5ba926e3b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py @@ -0,0 +1,29 @@ +from __future__ import absolute_import, division, unicode_literals + +from . import base + +from collections import OrderedDict + + +def _attr_key(attr): + """Return an appropriate key for an attribute for sorting + + Attributes have a namespace that can be either ``None`` or a string. We + can't compare the two because they're different types, so we convert + ``None`` to an empty string first. + + """ + return (attr[0][0] or ''), attr[0][1] + + +class Filter(base.Filter): + """Alphabetizes attributes for elements""" + def __iter__(self): + for token in base.Filter.__iter__(self): + if token["type"] in ("StartTag", "EmptyTag"): + attrs = OrderedDict() + for name, value in sorted(token["data"].items(), + key=_attr_key): + attrs[name] = value + token["data"] = attrs + yield token diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/base.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/base.py new file mode 100644 index 000000000..c7dbaed0f --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/base.py @@ -0,0 +1,12 @@ +from __future__ import absolute_import, division, unicode_literals + + +class Filter(object): + def __init__(self, source): + self.source = source + + def __iter__(self): + return iter(self.source) + + def __getattr__(self, name): + return getattr(self.source, name) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py new file mode 100644 index 000000000..aefb5c842 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py @@ -0,0 +1,73 @@ +from __future__ import absolute_import, division, unicode_literals + +from . import base + + +class Filter(base.Filter): + """Injects ```` tag into head of document""" + def __init__(self, source, encoding): + """Creates a Filter + + :arg source: the source token stream + + :arg encoding: the encoding to set + + """ + base.Filter.__init__(self, source) + self.encoding = encoding + + def __iter__(self): + state = "pre_head" + meta_found = (self.encoding is None) + pending = [] + + for token in base.Filter.__iter__(self): + type = token["type"] + if type == "StartTag": + if token["name"].lower() == "head": + state = "in_head" + + elif type == "EmptyTag": + if token["name"].lower() == "meta": + # replace charset with actual encoding + has_http_equiv_content_type = False + for (namespace, name), value in token["data"].items(): + if namespace is not None: + continue + elif name.lower() == 'charset': + token["data"][(namespace, name)] = self.encoding + meta_found = True + break + elif name == 'http-equiv' and value.lower() == 'content-type': + has_http_equiv_content_type = True + else: + if has_http_equiv_content_type and (None, "content") in token["data"]: + token["data"][(None, "content")] = 'text/html; charset=%s' % self.encoding + meta_found = True + + elif token["name"].lower() == "head" and not meta_found: + # insert meta into empty head + yield {"type": "StartTag", "name": "head", + "data": token["data"]} + yield {"type": "EmptyTag", "name": "meta", + "data": {(None, "charset"): self.encoding}} + yield {"type": "EndTag", "name": "head"} + meta_found = True + continue + + elif type == "EndTag": + if token["name"].lower() == "head" and pending: + # insert meta into head (if necessary) and flush pending queue + yield pending.pop(0) + if not meta_found: + yield {"type": "EmptyTag", "name": "meta", + "data": {(None, "charset"): self.encoding}} + while pending: + yield pending.pop(0) + meta_found = True + state = "post_head" + + if state == "in_head": + pending.append(token) + else: + yield token diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/lint.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/lint.py new file mode 100644 index 000000000..fcc07eec5 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/lint.py @@ -0,0 +1,93 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import text_type + +from . import base +from ..constants import namespaces, voidElements + +from ..constants import spaceCharacters +spaceCharacters = "".join(spaceCharacters) + + +class Filter(base.Filter): + """Lints the token stream for errors + + If it finds any errors, it'll raise an ``AssertionError``. + + """ + def __init__(self, source, require_matching_tags=True): + """Creates a Filter + + :arg source: the source token stream + + :arg require_matching_tags: whether or not to require matching tags + + """ + super(Filter, self).__init__(source) + self.require_matching_tags = require_matching_tags + + def __iter__(self): + open_elements = [] + for token in base.Filter.__iter__(self): + type = token["type"] + if type in ("StartTag", "EmptyTag"): + namespace = token["namespace"] + name = token["name"] + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + assert isinstance(token["data"], dict) + if (not namespace or namespace == namespaces["html"]) and name in voidElements: + assert type == "EmptyTag" + else: + assert type == "StartTag" + if type == "StartTag" and self.require_matching_tags: + open_elements.append((namespace, name)) + for (namespace, name), value in token["data"].items(): + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + assert isinstance(value, text_type) + + elif type == "EndTag": + namespace = token["namespace"] + name = token["name"] + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + if (not namespace or namespace == namespaces["html"]) and name in voidElements: + assert False, "Void element reported as EndTag token: %(tag)s" % {"tag": name} + elif self.require_matching_tags: + start = open_elements.pop() + assert start == (namespace, name) + + elif type == "Comment": + data = token["data"] + assert isinstance(data, text_type) + + elif type in ("Characters", "SpaceCharacters"): + data = token["data"] + assert isinstance(data, text_type) + assert data != "" + if type == "SpaceCharacters": + assert data.strip(spaceCharacters) == "" + + elif type == "Doctype": + name = token["name"] + assert name is None or isinstance(name, text_type) + assert token["publicId"] is None or isinstance(name, text_type) + assert token["systemId"] is None or isinstance(name, text_type) + + elif type == "Entity": + assert isinstance(token["name"], text_type) + + elif type == "SerializerError": + assert isinstance(token["data"], text_type) + + else: + assert False, "Unknown token type: %(type)s" % {"type": type} + + yield token diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/optionaltags.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/optionaltags.py new file mode 100644 index 000000000..4a865012c --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/optionaltags.py @@ -0,0 +1,207 @@ +from __future__ import absolute_import, division, unicode_literals + +from . import base + + +class Filter(base.Filter): + """Removes optional tags from the token stream""" + def slider(self): + previous1 = previous2 = None + for token in self.source: + if previous1 is not None: + yield previous2, previous1, token + previous2 = previous1 + previous1 = token + if previous1 is not None: + yield previous2, previous1, None + + def __iter__(self): + for previous, token, next in self.slider(): + type = token["type"] + if type == "StartTag": + if (token["data"] or + not self.is_optional_start(token["name"], previous, next)): + yield token + elif type == "EndTag": + if not self.is_optional_end(token["name"], next): + yield token + else: + yield token + + def is_optional_start(self, tagname, previous, next): + type = next and next["type"] or None + if tagname in 'html': + # An html element's start tag may be omitted if the first thing + # inside the html element is not a space character or a comment. + return type not in ("Comment", "SpaceCharacters") + elif tagname == 'head': + # A head element's start tag may be omitted if the first thing + # inside the head element is an element. + # XXX: we also omit the start tag if the head element is empty + if type in ("StartTag", "EmptyTag"): + return True + elif type == "EndTag": + return next["name"] == "head" + elif tagname == 'body': + # A body element's start tag may be omitted if the first thing + # inside the body element is not a space character or a comment, + # except if the first thing inside the body element is a script + # or style element and the node immediately preceding the body + # element is a head element whose end tag has been omitted. + if type in ("Comment", "SpaceCharacters"): + return False + elif type == "StartTag": + # XXX: we do not look at the preceding event, so we never omit + # the body element's start tag if it's followed by a script or + # a style element. + return next["name"] not in ('script', 'style') + else: + return True + elif tagname == 'colgroup': + # A colgroup element's start tag may be omitted if the first thing + # inside the colgroup element is a col element, and if the element + # is not immediately preceded by another colgroup element whose + # end tag has been omitted. + if type in ("StartTag", "EmptyTag"): + # XXX: we do not look at the preceding event, so instead we never + # omit the colgroup element's end tag when it is immediately + # followed by another colgroup element. See is_optional_end. + return next["name"] == "col" + else: + return False + elif tagname == 'tbody': + # A tbody element's start tag may be omitted if the first thing + # inside the tbody element is a tr element, and if the element is + # not immediately preceded by a tbody, thead, or tfoot element + # whose end tag has been omitted. + if type == "StartTag": + # omit the thead and tfoot elements' end tag when they are + # immediately followed by a tbody element. See is_optional_end. + if previous and previous['type'] == 'EndTag' and \ + previous['name'] in ('tbody', 'thead', 'tfoot'): + return False + return next["name"] == 'tr' + else: + return False + return False + + def is_optional_end(self, tagname, next): + type = next and next["type"] or None + if tagname in ('html', 'head', 'body'): + # An html element's end tag may be omitted if the html element + # is not immediately followed by a space character or a comment. + return type not in ("Comment", "SpaceCharacters") + elif tagname in ('li', 'optgroup', 'tr'): + # A li element's end tag may be omitted if the li element is + # immediately followed by another li element or if there is + # no more content in the parent element. + # An optgroup element's end tag may be omitted if the optgroup + # element is immediately followed by another optgroup element, + # or if there is no more content in the parent element. + # A tr element's end tag may be omitted if the tr element is + # immediately followed by another tr element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] == tagname + else: + return type == "EndTag" or type is None + elif tagname in ('dt', 'dd'): + # A dt element's end tag may be omitted if the dt element is + # immediately followed by another dt element or a dd element. + # A dd element's end tag may be omitted if the dd element is + # immediately followed by another dd element or a dt element, + # or if there is no more content in the parent element. + if type == "StartTag": + return next["name"] in ('dt', 'dd') + elif tagname == 'dd': + return type == "EndTag" or type is None + else: + return False + elif tagname == 'p': + # A p element's end tag may be omitted if the p element is + # immediately followed by an address, article, aside, + # blockquote, datagrid, dialog, dir, div, dl, fieldset, + # footer, form, h1, h2, h3, h4, h5, h6, header, hr, menu, + # nav, ol, p, pre, section, table, or ul, element, or if + # there is no more content in the parent element. + if type in ("StartTag", "EmptyTag"): + return next["name"] in ('address', 'article', 'aside', + 'blockquote', 'datagrid', 'dialog', + 'dir', 'div', 'dl', 'fieldset', 'footer', + 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', + 'header', 'hr', 'menu', 'nav', 'ol', + 'p', 'pre', 'section', 'table', 'ul') + else: + return type == "EndTag" or type is None + elif tagname == 'option': + # An option element's end tag may be omitted if the option + # element is immediately followed by another option element, + # or if it is immediately followed by an optgroup + # element, or if there is no more content in the parent + # element. + if type == "StartTag": + return next["name"] in ('option', 'optgroup') + else: + return type == "EndTag" or type is None + elif tagname in ('rt', 'rp'): + # An rt element's end tag may be omitted if the rt element is + # immediately followed by an rt or rp element, or if there is + # no more content in the parent element. + # An rp element's end tag may be omitted if the rp element is + # immediately followed by an rt or rp element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] in ('rt', 'rp') + else: + return type == "EndTag" or type is None + elif tagname == 'colgroup': + # A colgroup element's end tag may be omitted if the colgroup + # element is not immediately followed by a space character or + # a comment. + if type in ("Comment", "SpaceCharacters"): + return False + elif type == "StartTag": + # XXX: we also look for an immediately following colgroup + # element. See is_optional_start. + return next["name"] != 'colgroup' + else: + return True + elif tagname in ('thead', 'tbody'): + # A thead element's end tag may be omitted if the thead element + # is immediately followed by a tbody or tfoot element. + # A tbody element's end tag may be omitted if the tbody element + # is immediately followed by a tbody or tfoot element, or if + # there is no more content in the parent element. + # A tfoot element's end tag may be omitted if the tfoot element + # is immediately followed by a tbody element, or if there is no + # more content in the parent element. + # XXX: we never omit the end tag when the following element is + # a tbody. See is_optional_start. + if type == "StartTag": + return next["name"] in ['tbody', 'tfoot'] + elif tagname == 'tbody': + return type == "EndTag" or type is None + else: + return False + elif tagname == 'tfoot': + # A tfoot element's end tag may be omitted if the tfoot element + # is immediately followed by a tbody element, or if there is no + # more content in the parent element. + # XXX: we never omit the end tag when the following element is + # a tbody. See is_optional_start. + if type == "StartTag": + return next["name"] == 'tbody' + else: + return type == "EndTag" or type is None + elif tagname in ('td', 'th'): + # A td element's end tag may be omitted if the td element is + # immediately followed by a td or th element, or if there is + # no more content in the parent element. + # A th element's end tag may be omitted if the th element is + # immediately followed by a td or th element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] in ('td', 'th') + else: + return type == "EndTag" or type is None + return False diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/sanitizer.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/sanitizer.py new file mode 100644 index 000000000..aa7431d13 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/sanitizer.py @@ -0,0 +1,916 @@ +"""Deprecated from html5lib 1.1. + +See `here `_ for +information about its deprecation; `Bleach `_ +is recommended as a replacement. Please let us know in the aforementioned issue +if Bleach is unsuitable for your needs. + +""" +from __future__ import absolute_import, division, unicode_literals + +import re +import warnings +from xml.sax.saxutils import escape, unescape + +from pip._vendor.six.moves import urllib_parse as urlparse + +from . import base +from ..constants import namespaces, prefixes + +__all__ = ["Filter"] + + +_deprecation_msg = ( + "html5lib's sanitizer is deprecated; see " + + "https://github.com/html5lib/html5lib-python/issues/443 and please let " + + "us know if Bleach is unsuitable for your needs" +) + +warnings.warn(_deprecation_msg, DeprecationWarning) + +allowed_elements = frozenset(( + (namespaces['html'], 'a'), + (namespaces['html'], 'abbr'), + (namespaces['html'], 'acronym'), + (namespaces['html'], 'address'), + (namespaces['html'], 'area'), + (namespaces['html'], 'article'), + (namespaces['html'], 'aside'), + (namespaces['html'], 'audio'), + (namespaces['html'], 'b'), + (namespaces['html'], 'big'), + (namespaces['html'], 'blockquote'), + (namespaces['html'], 'br'), + (namespaces['html'], 'button'), + (namespaces['html'], 'canvas'), + (namespaces['html'], 'caption'), + (namespaces['html'], 'center'), + (namespaces['html'], 'cite'), + (namespaces['html'], 'code'), + (namespaces['html'], 'col'), + (namespaces['html'], 'colgroup'), + (namespaces['html'], 'command'), + (namespaces['html'], 'datagrid'), + (namespaces['html'], 'datalist'), + (namespaces['html'], 'dd'), + (namespaces['html'], 'del'), + (namespaces['html'], 'details'), + (namespaces['html'], 'dfn'), + (namespaces['html'], 'dialog'), + (namespaces['html'], 'dir'), + (namespaces['html'], 'div'), + (namespaces['html'], 'dl'), + (namespaces['html'], 'dt'), + (namespaces['html'], 'em'), + (namespaces['html'], 'event-source'), + (namespaces['html'], 'fieldset'), + (namespaces['html'], 'figcaption'), + (namespaces['html'], 'figure'), + (namespaces['html'], 'footer'), + (namespaces['html'], 'font'), + (namespaces['html'], 'form'), + (namespaces['html'], 'header'), + (namespaces['html'], 'h1'), + (namespaces['html'], 'h2'), + (namespaces['html'], 'h3'), + (namespaces['html'], 'h4'), + (namespaces['html'], 'h5'), + (namespaces['html'], 'h6'), + (namespaces['html'], 'hr'), + (namespaces['html'], 'i'), + (namespaces['html'], 'img'), + (namespaces['html'], 'input'), + (namespaces['html'], 'ins'), + (namespaces['html'], 'keygen'), + (namespaces['html'], 'kbd'), + (namespaces['html'], 'label'), + (namespaces['html'], 'legend'), + (namespaces['html'], 'li'), + (namespaces['html'], 'm'), + (namespaces['html'], 'map'), + (namespaces['html'], 'menu'), + (namespaces['html'], 'meter'), + (namespaces['html'], 'multicol'), + (namespaces['html'], 'nav'), + (namespaces['html'], 'nextid'), + (namespaces['html'], 'ol'), + (namespaces['html'], 'output'), + (namespaces['html'], 'optgroup'), + (namespaces['html'], 'option'), + (namespaces['html'], 'p'), + (namespaces['html'], 'pre'), + (namespaces['html'], 'progress'), + (namespaces['html'], 'q'), + (namespaces['html'], 's'), + (namespaces['html'], 'samp'), + (namespaces['html'], 'section'), + (namespaces['html'], 'select'), + (namespaces['html'], 'small'), + (namespaces['html'], 'sound'), + (namespaces['html'], 'source'), + (namespaces['html'], 'spacer'), + (namespaces['html'], 'span'), + (namespaces['html'], 'strike'), + (namespaces['html'], 'strong'), + (namespaces['html'], 'sub'), + (namespaces['html'], 'sup'), + (namespaces['html'], 'table'), + (namespaces['html'], 'tbody'), + (namespaces['html'], 'td'), + (namespaces['html'], 'textarea'), + (namespaces['html'], 'time'), + (namespaces['html'], 'tfoot'), + (namespaces['html'], 'th'), + (namespaces['html'], 'thead'), + (namespaces['html'], 'tr'), + (namespaces['html'], 'tt'), + (namespaces['html'], 'u'), + (namespaces['html'], 'ul'), + (namespaces['html'], 'var'), + (namespaces['html'], 'video'), + (namespaces['mathml'], 'maction'), + (namespaces['mathml'], 'math'), + (namespaces['mathml'], 'merror'), + (namespaces['mathml'], 'mfrac'), + (namespaces['mathml'], 'mi'), + (namespaces['mathml'], 'mmultiscripts'), + (namespaces['mathml'], 'mn'), + (namespaces['mathml'], 'mo'), + (namespaces['mathml'], 'mover'), + (namespaces['mathml'], 'mpadded'), + (namespaces['mathml'], 'mphantom'), + (namespaces['mathml'], 'mprescripts'), + (namespaces['mathml'], 'mroot'), + (namespaces['mathml'], 'mrow'), + (namespaces['mathml'], 'mspace'), + (namespaces['mathml'], 'msqrt'), + (namespaces['mathml'], 'mstyle'), + (namespaces['mathml'], 'msub'), + (namespaces['mathml'], 'msubsup'), + (namespaces['mathml'], 'msup'), + (namespaces['mathml'], 'mtable'), + (namespaces['mathml'], 'mtd'), + (namespaces['mathml'], 'mtext'), + (namespaces['mathml'], 'mtr'), + (namespaces['mathml'], 'munder'), + (namespaces['mathml'], 'munderover'), + (namespaces['mathml'], 'none'), + (namespaces['svg'], 'a'), + (namespaces['svg'], 'animate'), + (namespaces['svg'], 'animateColor'), + (namespaces['svg'], 'animateMotion'), + (namespaces['svg'], 'animateTransform'), + (namespaces['svg'], 'clipPath'), + (namespaces['svg'], 'circle'), + (namespaces['svg'], 'defs'), + (namespaces['svg'], 'desc'), + (namespaces['svg'], 'ellipse'), + (namespaces['svg'], 'font-face'), + (namespaces['svg'], 'font-face-name'), + (namespaces['svg'], 'font-face-src'), + (namespaces['svg'], 'g'), + (namespaces['svg'], 'glyph'), + (namespaces['svg'], 'hkern'), + (namespaces['svg'], 'linearGradient'), + (namespaces['svg'], 'line'), + (namespaces['svg'], 'marker'), + (namespaces['svg'], 'metadata'), + (namespaces['svg'], 'missing-glyph'), + (namespaces['svg'], 'mpath'), + (namespaces['svg'], 'path'), + (namespaces['svg'], 'polygon'), + (namespaces['svg'], 'polyline'), + (namespaces['svg'], 'radialGradient'), + (namespaces['svg'], 'rect'), + (namespaces['svg'], 'set'), + (namespaces['svg'], 'stop'), + (namespaces['svg'], 'svg'), + (namespaces['svg'], 'switch'), + (namespaces['svg'], 'text'), + (namespaces['svg'], 'title'), + (namespaces['svg'], 'tspan'), + (namespaces['svg'], 'use'), +)) + +allowed_attributes = frozenset(( + # HTML attributes + (None, 'abbr'), + (None, 'accept'), + (None, 'accept-charset'), + (None, 'accesskey'), + (None, 'action'), + (None, 'align'), + (None, 'alt'), + (None, 'autocomplete'), + (None, 'autofocus'), + (None, 'axis'), + (None, 'background'), + (None, 'balance'), + (None, 'bgcolor'), + (None, 'bgproperties'), + (None, 'border'), + (None, 'bordercolor'), + (None, 'bordercolordark'), + (None, 'bordercolorlight'), + (None, 'bottompadding'), + (None, 'cellpadding'), + (None, 'cellspacing'), + (None, 'ch'), + (None, 'challenge'), + (None, 'char'), + (None, 'charoff'), + (None, 'choff'), + (None, 'charset'), + (None, 'checked'), + (None, 'cite'), + (None, 'class'), + (None, 'clear'), + (None, 'color'), + (None, 'cols'), + (None, 'colspan'), + (None, 'compact'), + (None, 'contenteditable'), + (None, 'controls'), + (None, 'coords'), + (None, 'data'), + (None, 'datafld'), + (None, 'datapagesize'), + (None, 'datasrc'), + (None, 'datetime'), + (None, 'default'), + (None, 'delay'), + (None, 'dir'), + (None, 'disabled'), + (None, 'draggable'), + (None, 'dynsrc'), + (None, 'enctype'), + (None, 'end'), + (None, 'face'), + (None, 'for'), + (None, 'form'), + (None, 'frame'), + (None, 'galleryimg'), + (None, 'gutter'), + (None, 'headers'), + (None, 'height'), + (None, 'hidefocus'), + (None, 'hidden'), + (None, 'high'), + (None, 'href'), + (None, 'hreflang'), + (None, 'hspace'), + (None, 'icon'), + (None, 'id'), + (None, 'inputmode'), + (None, 'ismap'), + (None, 'keytype'), + (None, 'label'), + (None, 'leftspacing'), + (None, 'lang'), + (None, 'list'), + (None, 'longdesc'), + (None, 'loop'), + (None, 'loopcount'), + (None, 'loopend'), + (None, 'loopstart'), + (None, 'low'), + (None, 'lowsrc'), + (None, 'max'), + (None, 'maxlength'), + (None, 'media'), + (None, 'method'), + (None, 'min'), + (None, 'multiple'), + (None, 'name'), + (None, 'nohref'), + (None, 'noshade'), + (None, 'nowrap'), + (None, 'open'), + (None, 'optimum'), + (None, 'pattern'), + (None, 'ping'), + (None, 'point-size'), + (None, 'poster'), + (None, 'pqg'), + (None, 'preload'), + (None, 'prompt'), + (None, 'radiogroup'), + (None, 'readonly'), + (None, 'rel'), + (None, 'repeat-max'), + (None, 'repeat-min'), + (None, 'replace'), + (None, 'required'), + (None, 'rev'), + (None, 'rightspacing'), + (None, 'rows'), + (None, 'rowspan'), + (None, 'rules'), + (None, 'scope'), + (None, 'selected'), + (None, 'shape'), + (None, 'size'), + (None, 'span'), + (None, 'src'), + (None, 'start'), + (None, 'step'), + (None, 'style'), + (None, 'summary'), + (None, 'suppress'), + (None, 'tabindex'), + (None, 'target'), + (None, 'template'), + (None, 'title'), + (None, 'toppadding'), + (None, 'type'), + (None, 'unselectable'), + (None, 'usemap'), + (None, 'urn'), + (None, 'valign'), + (None, 'value'), + (None, 'variable'), + (None, 'volume'), + (None, 'vspace'), + (None, 'vrml'), + (None, 'width'), + (None, 'wrap'), + (namespaces['xml'], 'lang'), + # MathML attributes + (None, 'actiontype'), + (None, 'align'), + (None, 'columnalign'), + (None, 'columnalign'), + (None, 'columnalign'), + (None, 'columnlines'), + (None, 'columnspacing'), + (None, 'columnspan'), + (None, 'depth'), + (None, 'display'), + (None, 'displaystyle'), + (None, 'equalcolumns'), + (None, 'equalrows'), + (None, 'fence'), + (None, 'fontstyle'), + (None, 'fontweight'), + (None, 'frame'), + (None, 'height'), + (None, 'linethickness'), + (None, 'lspace'), + (None, 'mathbackground'), + (None, 'mathcolor'), + (None, 'mathvariant'), + (None, 'mathvariant'), + (None, 'maxsize'), + (None, 'minsize'), + (None, 'other'), + (None, 'rowalign'), + (None, 'rowalign'), + (None, 'rowalign'), + (None, 'rowlines'), + (None, 'rowspacing'), + (None, 'rowspan'), + (None, 'rspace'), + (None, 'scriptlevel'), + (None, 'selection'), + (None, 'separator'), + (None, 'stretchy'), + (None, 'width'), + (None, 'width'), + (namespaces['xlink'], 'href'), + (namespaces['xlink'], 'show'), + (namespaces['xlink'], 'type'), + # SVG attributes + (None, 'accent-height'), + (None, 'accumulate'), + (None, 'additive'), + (None, 'alphabetic'), + (None, 'arabic-form'), + (None, 'ascent'), + (None, 'attributeName'), + (None, 'attributeType'), + (None, 'baseProfile'), + (None, 'bbox'), + (None, 'begin'), + (None, 'by'), + (None, 'calcMode'), + (None, 'cap-height'), + (None, 'class'), + (None, 'clip-path'), + (None, 'color'), + (None, 'color-rendering'), + (None, 'content'), + (None, 'cx'), + (None, 'cy'), + (None, 'd'), + (None, 'dx'), + (None, 'dy'), + (None, 'descent'), + (None, 'display'), + (None, 'dur'), + (None, 'end'), + (None, 'fill'), + (None, 'fill-opacity'), + (None, 'fill-rule'), + (None, 'font-family'), + (None, 'font-size'), + (None, 'font-stretch'), + (None, 'font-style'), + (None, 'font-variant'), + (None, 'font-weight'), + (None, 'from'), + (None, 'fx'), + (None, 'fy'), + (None, 'g1'), + (None, 'g2'), + (None, 'glyph-name'), + (None, 'gradientUnits'), + (None, 'hanging'), + (None, 'height'), + (None, 'horiz-adv-x'), + (None, 'horiz-origin-x'), + (None, 'id'), + (None, 'ideographic'), + (None, 'k'), + (None, 'keyPoints'), + (None, 'keySplines'), + (None, 'keyTimes'), + (None, 'lang'), + (None, 'marker-end'), + (None, 'marker-mid'), + (None, 'marker-start'), + (None, 'markerHeight'), + (None, 'markerUnits'), + (None, 'markerWidth'), + (None, 'mathematical'), + (None, 'max'), + (None, 'min'), + (None, 'name'), + (None, 'offset'), + (None, 'opacity'), + (None, 'orient'), + (None, 'origin'), + (None, 'overline-position'), + (None, 'overline-thickness'), + (None, 'panose-1'), + (None, 'path'), + (None, 'pathLength'), + (None, 'points'), + (None, 'preserveAspectRatio'), + (None, 'r'), + (None, 'refX'), + (None, 'refY'), + (None, 'repeatCount'), + (None, 'repeatDur'), + (None, 'requiredExtensions'), + (None, 'requiredFeatures'), + (None, 'restart'), + (None, 'rotate'), + (None, 'rx'), + (None, 'ry'), + (None, 'slope'), + (None, 'stemh'), + (None, 'stemv'), + (None, 'stop-color'), + (None, 'stop-opacity'), + (None, 'strikethrough-position'), + (None, 'strikethrough-thickness'), + (None, 'stroke'), + (None, 'stroke-dasharray'), + (None, 'stroke-dashoffset'), + (None, 'stroke-linecap'), + (None, 'stroke-linejoin'), + (None, 'stroke-miterlimit'), + (None, 'stroke-opacity'), + (None, 'stroke-width'), + (None, 'systemLanguage'), + (None, 'target'), + (None, 'text-anchor'), + (None, 'to'), + (None, 'transform'), + (None, 'type'), + (None, 'u1'), + (None, 'u2'), + (None, 'underline-position'), + (None, 'underline-thickness'), + (None, 'unicode'), + (None, 'unicode-range'), + (None, 'units-per-em'), + (None, 'values'), + (None, 'version'), + (None, 'viewBox'), + (None, 'visibility'), + (None, 'width'), + (None, 'widths'), + (None, 'x'), + (None, 'x-height'), + (None, 'x1'), + (None, 'x2'), + (namespaces['xlink'], 'actuate'), + (namespaces['xlink'], 'arcrole'), + (namespaces['xlink'], 'href'), + (namespaces['xlink'], 'role'), + (namespaces['xlink'], 'show'), + (namespaces['xlink'], 'title'), + (namespaces['xlink'], 'type'), + (namespaces['xml'], 'base'), + (namespaces['xml'], 'lang'), + (namespaces['xml'], 'space'), + (None, 'y'), + (None, 'y1'), + (None, 'y2'), + (None, 'zoomAndPan'), +)) + +attr_val_is_uri = frozenset(( + (None, 'href'), + (None, 'src'), + (None, 'cite'), + (None, 'action'), + (None, 'longdesc'), + (None, 'poster'), + (None, 'background'), + (None, 'datasrc'), + (None, 'dynsrc'), + (None, 'lowsrc'), + (None, 'ping'), + (namespaces['xlink'], 'href'), + (namespaces['xml'], 'base'), +)) + +svg_attr_val_allows_ref = frozenset(( + (None, 'clip-path'), + (None, 'color-profile'), + (None, 'cursor'), + (None, 'fill'), + (None, 'filter'), + (None, 'marker'), + (None, 'marker-start'), + (None, 'marker-mid'), + (None, 'marker-end'), + (None, 'mask'), + (None, 'stroke'), +)) + +svg_allow_local_href = frozenset(( + (None, 'altGlyph'), + (None, 'animate'), + (None, 'animateColor'), + (None, 'animateMotion'), + (None, 'animateTransform'), + (None, 'cursor'), + (None, 'feImage'), + (None, 'filter'), + (None, 'linearGradient'), + (None, 'pattern'), + (None, 'radialGradient'), + (None, 'textpath'), + (None, 'tref'), + (None, 'set'), + (None, 'use') +)) + +allowed_css_properties = frozenset(( + 'azimuth', + 'background-color', + 'border-bottom-color', + 'border-collapse', + 'border-color', + 'border-left-color', + 'border-right-color', + 'border-top-color', + 'clear', + 'color', + 'cursor', + 'direction', + 'display', + 'elevation', + 'float', + 'font', + 'font-family', + 'font-size', + 'font-style', + 'font-variant', + 'font-weight', + 'height', + 'letter-spacing', + 'line-height', + 'overflow', + 'pause', + 'pause-after', + 'pause-before', + 'pitch', + 'pitch-range', + 'richness', + 'speak', + 'speak-header', + 'speak-numeral', + 'speak-punctuation', + 'speech-rate', + 'stress', + 'text-align', + 'text-decoration', + 'text-indent', + 'unicode-bidi', + 'vertical-align', + 'voice-family', + 'volume', + 'white-space', + 'width', +)) + +allowed_css_keywords = frozenset(( + 'auto', + 'aqua', + 'black', + 'block', + 'blue', + 'bold', + 'both', + 'bottom', + 'brown', + 'center', + 'collapse', + 'dashed', + 'dotted', + 'fuchsia', + 'gray', + 'green', + '!important', + 'italic', + 'left', + 'lime', + 'maroon', + 'medium', + 'none', + 'navy', + 'normal', + 'nowrap', + 'olive', + 'pointer', + 'purple', + 'red', + 'right', + 'solid', + 'silver', + 'teal', + 'top', + 'transparent', + 'underline', + 'white', + 'yellow', +)) + +allowed_svg_properties = frozenset(( + 'fill', + 'fill-opacity', + 'fill-rule', + 'stroke', + 'stroke-width', + 'stroke-linecap', + 'stroke-linejoin', + 'stroke-opacity', +)) + +allowed_protocols = frozenset(( + 'ed2k', + 'ftp', + 'http', + 'https', + 'irc', + 'mailto', + 'news', + 'gopher', + 'nntp', + 'telnet', + 'webcal', + 'xmpp', + 'callto', + 'feed', + 'urn', + 'aim', + 'rsync', + 'tag', + 'ssh', + 'sftp', + 'rtsp', + 'afs', + 'data', +)) + +allowed_content_types = frozenset(( + 'image/png', + 'image/jpeg', + 'image/gif', + 'image/webp', + 'image/bmp', + 'text/plain', +)) + + +data_content_type = re.compile(r''' + ^ + # Match a content type / + (?P[-a-zA-Z0-9.]+/[-a-zA-Z0-9.]+) + # Match any character set and encoding + (?:(?:;charset=(?:[-a-zA-Z0-9]+)(?:;(?:base64))?) + |(?:;(?:base64))?(?:;charset=(?:[-a-zA-Z0-9]+))?) + # Assume the rest is data + ,.* + $ + ''', + re.VERBOSE) + + +class Filter(base.Filter): + """Sanitizes token stream of XHTML+MathML+SVG and of inline style attributes""" + def __init__(self, + source, + allowed_elements=allowed_elements, + allowed_attributes=allowed_attributes, + allowed_css_properties=allowed_css_properties, + allowed_css_keywords=allowed_css_keywords, + allowed_svg_properties=allowed_svg_properties, + allowed_protocols=allowed_protocols, + allowed_content_types=allowed_content_types, + attr_val_is_uri=attr_val_is_uri, + svg_attr_val_allows_ref=svg_attr_val_allows_ref, + svg_allow_local_href=svg_allow_local_href): + """Creates a Filter + + :arg allowed_elements: set of elements to allow--everything else will + be escaped + + :arg allowed_attributes: set of attributes to allow in + elements--everything else will be stripped + + :arg allowed_css_properties: set of CSS properties to allow--everything + else will be stripped + + :arg allowed_css_keywords: set of CSS keywords to allow--everything + else will be stripped + + :arg allowed_svg_properties: set of SVG properties to allow--everything + else will be removed + + :arg allowed_protocols: set of allowed protocols for URIs + + :arg allowed_content_types: set of allowed content types for ``data`` URIs. + + :arg attr_val_is_uri: set of attributes that have URI values--values + that have a scheme not listed in ``allowed_protocols`` are removed + + :arg svg_attr_val_allows_ref: set of SVG attributes that can have + references + + :arg svg_allow_local_href: set of SVG elements that can have local + hrefs--these are removed + + """ + super(Filter, self).__init__(source) + + warnings.warn(_deprecation_msg, DeprecationWarning) + + self.allowed_elements = allowed_elements + self.allowed_attributes = allowed_attributes + self.allowed_css_properties = allowed_css_properties + self.allowed_css_keywords = allowed_css_keywords + self.allowed_svg_properties = allowed_svg_properties + self.allowed_protocols = allowed_protocols + self.allowed_content_types = allowed_content_types + self.attr_val_is_uri = attr_val_is_uri + self.svg_attr_val_allows_ref = svg_attr_val_allows_ref + self.svg_allow_local_href = svg_allow_local_href + + def __iter__(self): + for token in base.Filter.__iter__(self): + token = self.sanitize_token(token) + if token: + yield token + + # Sanitize the +html+, escaping all elements not in ALLOWED_ELEMENTS, and + # stripping out all attributes not in ALLOWED_ATTRIBUTES. Style attributes + # are parsed, and a restricted set, specified by ALLOWED_CSS_PROPERTIES and + # ALLOWED_CSS_KEYWORDS, are allowed through. attributes in ATTR_VAL_IS_URI + # are scanned, and only URI schemes specified in ALLOWED_PROTOCOLS are + # allowed. + # + # sanitize_html('') + # => <script> do_nasty_stuff() </script> + # sanitize_html('Click here for $100') + # => Click here for $100 + def sanitize_token(self, token): + + # accommodate filters which use token_type differently + token_type = token["type"] + if token_type in ("StartTag", "EndTag", "EmptyTag"): + name = token["name"] + namespace = token["namespace"] + if ((namespace, name) in self.allowed_elements or + (namespace is None and + (namespaces["html"], name) in self.allowed_elements)): + return self.allowed_token(token) + else: + return self.disallowed_token(token) + elif token_type == "Comment": + pass + else: + return token + + def allowed_token(self, token): + if "data" in token: + attrs = token["data"] + attr_names = set(attrs.keys()) + + # Remove forbidden attributes + for to_remove in (attr_names - self.allowed_attributes): + del token["data"][to_remove] + attr_names.remove(to_remove) + + # Remove attributes with disallowed URL values + for attr in (attr_names & self.attr_val_is_uri): + assert attr in attrs + # I don't have a clue where this regexp comes from or why it matches those + # characters, nor why we call unescape. I just know it's always been here. + # Should you be worried by this comment in a sanitizer? Yes. On the other hand, all + # this will do is remove *more* than it otherwise would. + val_unescaped = re.sub("[`\x00-\x20\x7f-\xa0\\s]+", '', + unescape(attrs[attr])).lower() + # remove replacement characters from unescaped characters + val_unescaped = val_unescaped.replace("\ufffd", "") + try: + uri = urlparse.urlparse(val_unescaped) + except ValueError: + uri = None + del attrs[attr] + if uri and uri.scheme: + if uri.scheme not in self.allowed_protocols: + del attrs[attr] + if uri.scheme == 'data': + m = data_content_type.match(uri.path) + if not m: + del attrs[attr] + elif m.group('content_type') not in self.allowed_content_types: + del attrs[attr] + + for attr in self.svg_attr_val_allows_ref: + if attr in attrs: + attrs[attr] = re.sub(r'url\s*\(\s*[^#\s][^)]+?\)', + ' ', + unescape(attrs[attr])) + if (token["name"] in self.svg_allow_local_href and + (namespaces['xlink'], 'href') in attrs and re.search(r'^\s*[^#\s].*', + attrs[(namespaces['xlink'], 'href')])): + del attrs[(namespaces['xlink'], 'href')] + if (None, 'style') in attrs: + attrs[(None, 'style')] = self.sanitize_css(attrs[(None, 'style')]) + token["data"] = attrs + return token + + def disallowed_token(self, token): + token_type = token["type"] + if token_type == "EndTag": + token["data"] = "" % token["name"] + elif token["data"]: + assert token_type in ("StartTag", "EmptyTag") + attrs = [] + for (ns, name), v in token["data"].items(): + attrs.append(' %s="%s"' % (name if ns is None else "%s:%s" % (prefixes[ns], name), escape(v))) + token["data"] = "<%s%s>" % (token["name"], ''.join(attrs)) + else: + token["data"] = "<%s>" % token["name"] + if token.get("selfClosing"): + token["data"] = token["data"][:-1] + "/>" + + token["type"] = "Characters" + + del token["name"] + return token + + def sanitize_css(self, style): + # disallow urls + style = re.compile(r'url\s*\(\s*[^\s)]+?\s*\)\s*').sub(' ', style) + + # gauntlet + if not re.match(r"""^([:,;#%.\sa-zA-Z0-9!]|\w-\w|'[\s\w]+'|"[\s\w]+"|\([\d,\s]+\))*$""", style): + return '' + if not re.match(r"^\s*([-\w]+\s*:[^:;]*(;\s*|$))*$", style): + return '' + + clean = [] + for prop, value in re.findall(r"([-\w]+)\s*:\s*([^:;]*)", style): + if not value: + continue + if prop.lower() in self.allowed_css_properties: + clean.append(prop + ': ' + value + ';') + elif prop.split('-')[0].lower() in ['background', 'border', 'margin', + 'padding']: + for keyword in value.split(): + if keyword not in self.allowed_css_keywords and \ + not re.match(r"^(#[0-9a-fA-F]+|rgb\(\d+%?,\d*%?,?\d*%?\)?|\d{0,2}\.?\d{0,2}(cm|em|ex|in|mm|pc|pt|px|%|,|\))?)$", keyword): # noqa + break + else: + clean.append(prop + ': ' + value + ';') + elif prop.lower() in self.allowed_svg_properties: + clean.append(prop + ': ' + value + ';') + + return ' '.join(clean) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/whitespace.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/whitespace.py new file mode 100644 index 000000000..0d12584b4 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/whitespace.py @@ -0,0 +1,38 @@ +from __future__ import absolute_import, division, unicode_literals + +import re + +from . import base +from ..constants import rcdataElements, spaceCharacters +spaceCharacters = "".join(spaceCharacters) + +SPACES_REGEX = re.compile("[%s]+" % spaceCharacters) + + +class Filter(base.Filter): + """Collapses whitespace except in pre, textarea, and script elements""" + spacePreserveElements = frozenset(["pre", "textarea"] + list(rcdataElements)) + + def __iter__(self): + preserve = 0 + for token in base.Filter.__iter__(self): + type = token["type"] + if type == "StartTag" \ + and (preserve or token["name"] in self.spacePreserveElements): + preserve += 1 + + elif type == "EndTag" and preserve: + preserve -= 1 + + elif not preserve and type == "SpaceCharacters" and token["data"]: + # Test on token["data"] above to not introduce spaces where there were not + token["data"] = " " + + elif not preserve and type == "Characters": + token["data"] = collapse_spaces(token["data"]) + + yield token + + +def collapse_spaces(text): + return SPACES_REGEX.sub(' ', text) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/html5parser.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/html5parser.py new file mode 100644 index 000000000..d06784f3d --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/html5lib/html5parser.py @@ -0,0 +1,2795 @@ +from __future__ import absolute_import, division, unicode_literals +from pip._vendor.six import with_metaclass, viewkeys + +import types + +from . import _inputstream +from . import _tokenizer + +from . import treebuilders +from .treebuilders.base import Marker + +from . import _utils +from .constants import ( + spaceCharacters, asciiUpper2Lower, + specialElements, headingElements, cdataElements, rcdataElements, + tokenTypes, tagTokenTypes, + namespaces, + htmlIntegrationPointElements, mathmlTextIntegrationPointElements, + adjustForeignAttributes as adjustForeignAttributesMap, + adjustMathMLAttributes, adjustSVGAttributes, + E, + _ReparseException +) + + +def parse(doc, treebuilder="etree", namespaceHTMLElements=True, **kwargs): + """Parse an HTML document as a string or file-like object into a tree + + :arg doc: the document to parse as a string or file-like object + + :arg treebuilder: the treebuilder to use when parsing + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :returns: parsed tree + + Example: + + >>> from html5lib.html5parser import parse + >>> parse('

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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/constructors.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/constructors.py new file mode 100644 index 000000000..25bfb391d --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/constructors.py @@ -0,0 +1,490 @@ +"""Backing implementation for InstallRequirement's various constructors + +The idea here is that these formed a major chunk of InstallRequirement's size +so, moving them and support code dedicated to them outside of that class +helps creates for better understandability for the rest of the code. + +These are meant to be used elsewhere within pip to create instances of +InstallRequirement. +""" + +import logging +import os +import re +from typing import Any, Dict, Optional, Set, Tuple, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement +from pip._vendor.packaging.specifiers import Specifier + +from pip._internal.exceptions import InstallationError +from pip._internal.models.index import PyPI, TestPyPI +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.req.req_file import ParsedRequirement +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import is_installable_dir +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import is_url, vcs + +__all__ = [ + "install_req_from_editable", + "install_req_from_line", + "parse_editable", +] + +logger = logging.getLogger(__name__) +operators = Specifier._operators.keys() + + +def _strip_extras(path: str) -> 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 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, + options: Optional[Dict[str, Any]] = None, + constraint: bool = False, + user_supplied: bool = False, + permit_editable_wheels: bool = False, +) -> 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, + install_options=options.get("install_options", []) if options else [], + global_options=options.get("global_options", []) if options else [], + hash_options=options.get("hashes", {}) if options else {}, + 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, + options: Optional[Dict[str, Any]] = None, + constraint: bool = False, + line_source: Optional[str] = None, + user_supplied: bool = False, +) -> 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, + install_options=options.get("install_options", []) if options else [], + global_options=options.get("global_options", []) if options else [], + hash_options=options.get("hashes", {}) if options else {}, + 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" + "{} depends on {} ".format(comes_from.name, 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, +) -> 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, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + isolated=isolated, + options=parsed_req.options, + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + ) + 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, + install_options=ireq.install_options, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + ) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_file.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 000000000..03ae50492 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,536 @@ +""" +Requirements file parsing +""" + +import optparse +import os +import re +import shlex +import urllib.parse +from optparse import Values +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Dict, + Iterable, + Iterator, + 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.install_options, + cmdoptions.global_options, + cmdoptions.hash, +] + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] + + +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, +) -> Iterator[ParsedRequirement]: + """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 + + if line.is_editable: + # For editable requirements, we don't support per-requirement + # options, so just return the parsed requirement. + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + ) + else: + if options: + # Disable wheels if the user has specified build options + cmdoptions.check_install_build_global(options, line.opts) + + # get the options that apply to requirements + req_options = {} + for dest in SUPPORTED_OPTIONS_REQ_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 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 + if opts.index_url: + index_urls = [opts.index_url] + if opts.no_index is True: + index_urls = [] + if opts.extra_index_urls: + 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, + ) + 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) -> Iterator[ParsedLine]: + """Parse a given file, yielding parsed lines.""" + yield from self._parse_and_recurse(filename, constraint) + + def _parse_and_recurse( + self, filename: str, constraint: bool + ) -> Iterator[ParsedLine]: + 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) -> Iterator[ParsedLine]: + _, 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) + + opts, _ = parser.parse_args(shlex.split(options_str), 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_install.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 000000000..02dbda194 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,858 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import functools +import logging +import os +import shutil +import sys +import uuid +import zipfile +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.pep517.wrappers import Pep517HookCaller + +from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError, LegacyInstallFailure +from pip._internal.locations import get_scheme +from pip._internal.metadata import ( + BaseDistribution, + get_default_environment, + get_directory_distribution, +) +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.legacy import install as install_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.direct_url_helpers import ( + direct_url_for_editable, + direct_url_from_link, +) +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + ask_path_exists, + backup_dir, + display_path, + hide_url, + 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.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, + install_options: Optional[List[str]] = None, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[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 + self.legacy_install_reason: Optional[int] = None + + # 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)) + + if link is None and req and req.url: + # PEP 508 URL requirement + link = Link(req.url) + self.link = self.original_link = link + self.original_link_is_in_wheel_cache = False + + # 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 = {safe_extra(extra) for extra in 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.install_options = install_options if install_options else [] + self.global_options = global_options if global_options else [] + self.hash_options = hash_options if hash_options else {} + # 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[Pep517HookCaller] = 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 + + # This requirement needs more preparation before it can be built + self.needs_more_preparation = False + + def __str__(self) -> str: + if self.req: + s = str(self.req) + if self.link: + s += " from {}".format(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: + s += " in {}".format(display_path(self.satisfied_by.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 = ("{}={!r}".format(attr, attributes[attr]) 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: + return self.req.specifier + + @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. + """ + specifiers = self.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}) 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() + link = self.link if trust_internet else self.original_link + if link and link.hash: + 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: + 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.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: + 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 + + # Things valid for sdists + @property + def unpacked_source_directory(self) -> str: + 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: + 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 = Pep517HookCaller( + 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 + 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: + return get_directory_distribution(self.metadata_directory) + + def assert_source_matches_version(self) -> None: + assert self.source_dir + version = self.metadata["version"] + if 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, + ) + + # 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 + + path = os.path.join(parentdir, path) + name = _clean_zip_name(path, rootdir) + return self.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( + "The file {} exists. (i)gnore, (w)ipe, " + "(b)ackup, (a)bort ".format(display_path(archive_path)), + ("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, + install_options: List[str], + 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: + scheme = get_scheme( + self.name, + user=use_user_site, + home=home, + root=root, + isolated=self.isolated, + prefix=prefix, + ) + + global_options = global_options if global_options is not None else [] + if self.editable and not self.is_wheel: + install_editable_legacy( + install_options, + global_options, + prefix=prefix, + home=home, + use_user_site=use_user_site, + name=self.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 + + if self.is_wheel: + assert self.local_file_path + direct_url = None + if self.editable: + direct_url = direct_url_for_editable(self.unpacked_source_directory) + elif self.original_link: + direct_url = direct_url_from_link( + self.original_link, + self.source_dir, + self.original_link_is_in_wheel_cache, + ) + install_wheel( + self.name, + self.local_file_path, + scheme=scheme, + req_description=str(self.req), + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=self.user_supplied, + ) + self.install_succeeded = True + return + + # TODO: Why don't we do this for editable installs? + + # Extend the list of global and install options passed on to + # the setup.py call with the ones from the requirements file. + # Options specified in requirements file override those + # specified on the command line, since the last option given + # to setup.py is the one that is used. + global_options = list(global_options) + self.global_options + install_options = list(install_options) + self.install_options + + try: + success = install_legacy( + install_options=install_options, + global_options=global_options, + root=root, + home=home, + prefix=prefix, + use_user_site=use_user_site, + pycompile=pycompile, + scheme=scheme, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + req_name=self.name, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + req_description=str(self.req), + ) + except LegacyInstallFailure as exc: + self.install_succeeded = False + raise exc + except Exception: + self.install_succeeded = True + raise + + self.install_succeeded = success + + if success and self.legacy_install_reason == 8368: + deprecated( + reason=( + "{} was installed using the legacy 'setup.py install' " + "method, because a wheel could not be built for it.".format( + self.name + ) + ), + replacement="to fix the wheel build issue reported above", + gone_in=None, + issue=8368, + ) + + +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 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_set.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 000000000..6626c37e2 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,189 @@ +import logging +from collections import OrderedDict +from typing import Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InstallationError +from pip._internal.models.wheel import Wheel +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils import compatibility_tags + +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 add_requirement( + self, + 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 self.check_supported_wheels and not wheel.supported(tags): + raise InstallationError( + "{} is not a supported wheel on this platform.".format( + wheel.filename + ) + ) + + # 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: + self.add_unnamed_requirement(install_req) + return [install_req], None + + try: + existing_req: Optional[InstallRequirement] = self.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: + self.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( + "Could not satisfy constraints for '{}': " + "installation from path or url cannot be " + "constrained to a version".format(install_req.name) + ) + # 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 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()) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py new file mode 100644 index 000000000..24d3c5303 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py @@ -0,0 +1,124 @@ +import contextlib +import hashlib +import logging +import os +from types import TracebackType +from typing import Dict, Iterator, 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) -> Iterator[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_requirement_tracker() -> Iterator["RequirementTracker"]: + root = os.environ.get("PIP_REQ_TRACKER") + with contextlib.ExitStack() as ctx: + if root is None: + root = ctx.enter_context(TempDirectory(kind="req-tracker")).path + ctx.enter_context(update_env_context_manager(PIP_REQ_TRACKER=root)) + logger.debug("Initialized build tracking at %s", root) + + with RequirementTracker(root) as tracker: + yield tracker + + +class RequirementTracker: + def __init__(self, root: str) -> None: + self._root = root + self._entries: Set[InstallRequirement] = set() + logger.debug("Created build tracker: %s", self._root) + + def __enter__(self) -> "RequirementTracker": + 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, link: Link) -> str: + hashed = hashlib.sha224(link.url_without_fragment.encode()).hexdigest() + return os.path.join(self._root, hashed) + + def add(self, req: InstallRequirement) -> None: + """Add an InstallRequirement to build tracking.""" + + assert req.link + # Get the file to write information about this requirement. + entry_path = self._entry_path(req.link) + + # 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 req not in self._entries + + # Start tracking this requirement. + with open(entry_path, "w", encoding="utf-8") as fp: + fp.write(str(req)) + self._entries.add(req) + + logger.debug("Added %s to build tracker %r", req, self._root) + + def remove(self, req: InstallRequirement) -> None: + """Remove an InstallRequirement from build tracking.""" + + assert req.link + # Delete the created file and the corresponding entries. + os.unlink(self._entry_path(req.link)) + self._entries.remove(req) + + logger.debug("Removed %s from build tracker %r", req, self._root) + + def cleanup(self) -> None: + for req in set(self._entries): + self.remove(req) + + logger.debug("Removed build tracker: %r", self._root) + + @contextlib.contextmanager + def track(self, req: InstallRequirement) -> Iterator[None]: + self.add(req) + yield + self.remove(req) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 000000000..472090a0d --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,633 @@ +import functools +import os +import sys +import sysconfig +from importlib.util import cache_from_source +from typing import Any, Callable, Dict, Iterable, Iterator, 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, is_local, normalize_path, renames, rmtree +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory + +logger = getLogger(__name__) + + +def _script_names(bin_dir: str, script_name: str, is_gui: bool) -> Iterator[str]: + """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[..., Iterator[Any]]) -> Callable[..., Iterator[Any]]: + @functools.wraps(fn) + def unique(*args: Any, **kw: Any) -> Iterator[Any]: + 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) -> Iterator[str]: + """ + 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 = "Cannot uninstall {dist}, RECORD file not found.".format(dist=dist) + installer = dist.installer + if not installer or installer == "pip": + dep = "{}=={}".format(dist.raw_name, dist.version) + msg += ( + " You might be able to recover from this via: " + "'pip install --force-reinstall --no-deps {}'.".format(dep) + ) + else: + msg += " Hint: The package was installed by {}.".format(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) + + # probably this one https://github.com/python/mypy/issues/390 + _normcased_files = set(map(os.path.normcase, files)) # type: ignore + + 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.items(): + 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() + + def _permitted(self, path: str) -> bool: + """ + Return True if the given path is one we are permitted to + remove/modify, False otherwise. + + """ + return is_local(path) + + 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(normalize_path(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 = normalize_path(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()) + assert link_pointer == dist_location, ( + f"Egg-link {link_pointer} does not match installed location of " + f"{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.iterdir("scripts"): + paths_to_remove.add(os.path.join(bin_dir, script.name)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, f"{script.name}.bat")) + except (FileNotFoundError, NotADirectoryError): + pass + + # find console_scripts and gui_scripts + def iter_scripts_to_remove( + dist: BaseDistribution, + bin_dir: str, + ) -> Iterator[str]: + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..efc0ca0f92172ab5927d60410598d3c7e5956e4c GIT binary patch literal 282 zcmZusL5e~#46Wiq20Vz18pW-M;NFb~_|!J@4ZpuBZAJbKyviJ6E;8G>g)38BI1E0> z3weZ>7oN>Nl%TuqUG2Y>{$eD<87T5s z_zC$dZd0YEO92`0g+LN4&D$A!H1qt%TQ4m17_HNAe2xU+Fg7U9)ZbSp~owv zV24a^697xNWQmZRNcn3-8UpD-I0{=ze$tU4gtXJ1j(pjX(UqS>vP&d;w*NlUa0t3q zXMnbgb!}3FiMFfx3FN1#o;FR524s4E0-&@F5zG{;+@s$2%lVvam+Z!|GwhOm;n)1& zn%m`r+U%E&YHtVf17eLNi?2bAFrsAa5?nKUL7$)B;`16$b(7_wW0{$32-Uc#0I;aW z!(*bCXJr#_ZVijdU@fP)6LV*O(AfM$5VhO{CKo!SvGczZ3^>$-x zGuDNHAu&14#zdwmnmDDVfHb=pon%wjJ3b}_H=3F4w0mdJr+eJclVhQGvGQ2njo%3_ zbCPPBtjoGz&c7ECpHYCW5H1i51U`5EiUTLp9A1)VSI1z8R{M-H$0w~(0=hF?Cb)R> z7lo&@4+dQurD>IwkfyemrX?w>oZnB=$uv{*6Lf>dz_s;h6bjv}amm3e2M^R*ujSC8 z19uy}P7pD{LoV)wGts*hf%8JKc#AIYVDQX_X4cTC(aACI=l;~>HOas6M}AUr;_Uw7 zEvIDd=^PTeC2Bow(60ag%YDZBtRT%=4o_XeM%!~i-njwkMS>O97kw_oBKPl>f?t)B BEbssT literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/base.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/base.py new file mode 100644 index 000000000..42dade18c --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..79f8d1c300fe59d150da36faf80e02e798c32e28 GIT binary patch literal 289 zcmZusL5e~#46Wiq20Vz18pW-M;NFb~_|!J@4ZpuBZAJbKyvp2TPBGiLg)38BI1C2z z!b`%-3(saBN}{{%U9GDhiPBKpfoI0xc=cjJXNu7nS_+7X zLaR^A#hO0Ca-}Jh#O`7XanObJ|K+F9nd2KBPoHQ9>k%C47x8q0IFvJo^BXAIZT&8f1t#hNi)>es literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6e0d8fa50893d812335cb7bd2c7fa05163d4630 GIT binary patch literal 12376 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py new file mode 100644 index 000000000..8c149d437 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py @@ -0,0 +1,467 @@ +"""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, + 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.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.compatibility_tags import get_supported +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) + requirement_set.add_requirement(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 _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 " + "yanked version: {candidate}\n" + "Reason for being yanked: {reason}" + ).format(candidate=best_candidate, reason=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.original_link_is_in_wheel_cache = True + 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 = requirement_set.add_requirement( + 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 + requirement_set.add_requirement(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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..798592ffa643e10b406901a4b352386460dcd46f GIT binary patch literal 293 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 HVm19Ax+nBm literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd3af33d959a91a53b25ac43378603ece4b4a6d1 GIT binary patch literal 18447 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 OQ_oEuoVqr<_WuADo>v0o?zNC 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b6486a1c6a1c7979b697c0b573b5382d72c745c0 GIT binary patch literal 7551 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py new file mode 100644 index 000000000..b206692a0 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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, canonicalize_name +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: str, extras: FrozenSet[str]) -> str: + if not extras: + return project + canonical_extras = sorted(canonicalize_name(e) for e in extras) + return "{}[{}]".format(project, ",".join(canonical_extras)) + + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 000000000..9b8450e86 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,547 @@ +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.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, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + ireq.original_link = template.original_link + ireq.link = link + return ireq + + +def make_install_req_from_editable( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert template.editable, "template not editable" + return 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, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + + +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, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + 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 "{class_name}({link!r})".format( + class_name=self.__class__.__name__, + link=str(self._link), + ) + + 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 self._factory.make_requirement_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(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 + and cache_entry.persistent + and template.link is template.original_link + ): + ireq.original_link_is_in_wheel_cache = True + + 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 + + # 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 "{class_name}({distribution!r})".format( + class_name=self.__class__.__name__, + distribution=self.dist, + ) + + 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: + return self.dist.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 self._factory.make_requirement_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], + ) -> None: + self.base = base + self.extras = extras + + def __str__(self) -> str: + name, rest = str(self.base).split(" ", 1) + return "{}[{}] {}".format(name, ",".join(self.extras), rest) + + def __repr__(self) -> str: + return "{class_name}(base={base!r}, extras={extras!r})".format( + class_name=self.__class__.__name__, + base=self.base, + extras=self.extras, + ) + + 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 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 + + # The user may have specified extras that the candidate doesn't + # support. We ignore any unsupported extras here. + valid_extras = self.extras.intersection(self.base.dist.iter_provided_extras()) + invalid_extras = self.extras.difference(self.base.dist.iter_provided_extras()) + for extra in sorted(invalid_extras): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + for r in self.base.dist.iter_dependencies(valid_extras): + requirement = factory.make_requirement_from_spec( + str(r), self.base._ireq, valid_extras + ) + if requirement: + yield requirement + + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 000000000..261d8d560 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,739 @@ +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, + InstallationSubprocessError, + 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_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, + 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, + suppress_build_failures: 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._suppress_build_failures = suppress_build_failures + + 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[str]], 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_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] + ) -> ExtrasCandidate: + cache_key = (id(base), extras) + try: + candidate = self._extras_candidate_cache[cache_key] + except KeyError: + candidate = ExtrasCandidate(base, extras) + 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) + + def _make_candidate_from_link( + self, + link: Link, + extras: FrozenSet[str], + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[CandidateVersion], + ) -> Optional[Candidate]: + # 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 + except InstallationSubprocessError as e: + if not self._suppress_build_failures: + raise + logger.warning("Discarding %s due to build failure: %s", link, e) + self._build_failures[link] = e + return None + + base: BaseCandidate = 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 + except InstallationSubprocessError as e: + if not self._suppress_build_failures: + raise + logger.warning("Discarding %s due to build failure: %s", link, e) + self._build_failures[link] = e + return None + base = self._link_candidate_cache[link] + + if not extras: + return base + return self._make_extras_candidate(base, extras) + + 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_candidate_from_link( + link, + extras=frozenset(), + 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 explicit candidates + # from entries from extra-less identifier. + with contextlib.suppress(InvalidRequirement): + parsed_requirement = get_requirement(identifier) + explicit_candidates.update( + self._iter_explicit_candidates_from_base( + requirements.get(parsed_requirement.name, ()), + frozenset(parsed_requirement.extras), + ), + ) + + # 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_requirement_from_install_req( + self, ireq: InstallRequirement, requested_extras: Iterable[str] + ) -> Optional[Requirement]: + if not ireq.match_markers(requested_extras): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + ireq.name, + ireq.markers, + ) + return None + if not ireq.link: + return SpecifierRequirement(ireq) + self._fail_if_link_is_unsupported_wheel(ireq.link) + cand = self._make_candidate_from_link( + ireq.link, + extras=frozenset(ireq.extras), + template=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] + return UnsatisfiableRequirement(canonicalize_name(ireq.name)) + return self.make_requirement_from_candidate(cand) + + 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: + req = self._make_requirement_from_install_req( + ireq, + requested_extras=(), + ) + if req is None: + continue + if ireq.user_supplied and req.name not in collected.user_requested: + collected.user_requested[req.name] = i + collected.requirements.append(req) + return collected + + def make_requirement_from_candidate( + self, candidate: Candidate + ) -> ExplicitRequirement: + return ExplicitRequirement(candidate) + + def make_requirement_from_spec( + self, + specifier: str, + comes_from: Optional[InstallRequirement], + requested_extras: Iterable[str] = (), + ) -> Optional[Requirement]: + ireq = self._make_install_req_from_spec(specifier, comes_from) + return self._make_requirement_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 or self.preparer.require_hashes: + 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) + versions = [str(v) for v in sorted({c.version for c in cands})] + + 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 = ( + "Cannot install {} because these package versions " + "have conflicting dependencies.".format(info) + ) + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 000000000..8663097b4 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 000000000..e6ec9594f --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,248 @@ +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( # type: ignore + 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 followings 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. + * 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). + """ + lookups = (r.get_candidate_lookup() for r, _ in information[identifier]) + candidate, ireqs = zip(*lookups) + 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 + 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 = 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 + + # HACK: Setuptools have a very long and solid backward compatibility + # track record, and extremely few projects would request a narrow, + # non-recent version range of it since that would break a lot things. + # (Most projects specify it only to request for an installer feature, + # which does not work, but that's another topic.) Intentionally + # delaying Setuptools helps reduce branches the resolver has to check. + # This serves as a temporary fix for issues like "apache-airflow[all]" + # while we work on "proper" branch pruning techniques. + delay_this = identifier == "setuptools" + + # 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, + delay_this, + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 000000000..6ced5329b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,68 @@ +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.backtracks_by_package: DefaultDict[str, int] = defaultdict(int) + + self._messages_at_backtrack = { + 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 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 backtracking(self, candidate: Candidate) -> None: + self.backtracks_by_package[candidate.name] += 1 + + count = self.backtracks_by_package[candidate.name] + if count not in self._messages_at_backtrack: + return + + message = self._messages_at_backtrack[count] + logger.info("INFO: %s", message.format(package_name=candidate.name)) + + +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 backtracking(self, candidate: Candidate) -> None: + logger.info("Reporter.backtracking(%r)", candidate) + + def pinning(self, candidate: Candidate) -> None: + logger.info("Reporter.pinning(%r)", candidate) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 000000000..f561f1f1e --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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.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 "{class_name}({candidate!r})".format( + class_name=self.__class__.__name__, + candidate=self.candidate, + ) + + @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(ireq.extras) + + def __str__(self) -> str: + return str(self._ireq.req) + + def __repr__(self) -> str: + return "{class_name}({requirement!r})".format( + class_name=self.__class__.__name__, + requirement=str(self._ireq.req), + ) + + @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 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 "{class_name}({specifier!r})".format( + class_name=self.__class__.__name__, + specifier=str(self.specifier), + ) + + @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 "{class_name}({name!r})".format( + class_name=self.__class__.__name__, + name=str(self._name), + ) + + @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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 000000000..32ef7899b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,298 @@ +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.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 .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, + suppress_build_failures: bool, + 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, + suppress_build_failures=suppress_build_failures, + 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: + try_to_avoid_resolution_too_deep = 2000000 + result = self._result = resolver.resolve( + collected.requirements, max_rounds=try_to_avoid_resolution_too_deep + ) + + 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) + for candidate in result.mapping.values(): + ireq = candidate.get_install_requirement() + if ireq is None: + 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) + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 000000000..7300e0ea4 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,189 @@ +import datetime +import hashlib +import json +import logging +import optparse +import os.path +import sys +from typing import Any, Dict + +from pip._vendor.packaging.version import parse as parse_version + +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.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.filesystem import adjacent_tmp_file, check_path_owner, replace +from pip._internal.utils.misc import ensure_dir + +SELFCHECK_DATE_FMT = "%Y-%m-%dT%H:%M:%SZ" + + +logger = logging.getLogger(__name__) + + +def _get_statefile_name(key: str) -> str: + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +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 save(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.strftime(SELFCHECK_DATE_FMT), + "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 + + +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 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 + + pip_version = installed_dist.version + pypi_version = None + + try: + state = SelfCheckState(cache_dir=options.cache_dir) + + current_time = datetime.datetime.utcnow() + # Determine if we need to refresh the state + if "last_check" in state.state and "pypi_version" in state.state: + last_check = datetime.datetime.strptime( + state.state["last_check"], SELFCHECK_DATE_FMT + ) + if (current_time - last_check).total_seconds() < 7 * 24 * 60 * 60: + pypi_version = state.state["pypi_version"] + + # Refresh the version if we need to or just see if we need to warn + if pypi_version is None: + # 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, + use_deprecated_html5lib=( + "html5lib" in options.deprecated_features_enabled + ), + ) + best_candidate = finder.find_best_candidate("pip").best_candidate + if best_candidate is None: + return + pypi_version = str(best_candidate.version) + + # save that we've performed a check + state.save(pypi_version, current_time) + + remote_version = parse_version(pypi_version) + + local_version_is_older = ( + pip_version < remote_version + and pip_version.base_version != remote_version.base_version + and was_installed_by_pip("pip") + ) + + # Determine if our pypi_version is older + if not local_version_is_older: + return + + # We cannot tell how the current pip is available in the current + # command context, so be pragmatic here and suggest the command + # that's always available. This does not accommodate spaces in + # `sys.executable` on purpose as it is not possible to do it + # correctly without knowing the user's shell. Thus, + # it won't be done until possible through the standard library. + # Do not be tempted to use the undocumented subprocess.list2cmdline. + # It is considered an internal implementation detail for a reason. + pip_cmd = f"{sys.executable} -m pip" + logger.warning( + "You are using pip version %s; however, version %s is " + "available.\nYou should consider upgrading via the " + "'%s install --upgrade pip' command.", + pip_version, + pypi_version, + pip_cmd, + ) + except Exception: + logger.debug( + "There was an error checking the latest version of pip", + exc_info=True, + ) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a08a6d20d7b1a0f46cecba3eec1a061c18f47024 GIT binary patch literal 277 zcmZusL5c!F3~Uz;s0jJC0%6PSYKc`N4k0ANUrp{=(B{*n=Vl zQlW}asqkzzHCo;8cNpe%fX5ms`O>aqgxtATM)qJ^tN`h9C obgtDfnKCqb6iadu4nna)qXJ3O%yWO4eC#z&#LwZQ`lc{8e@#wOz5oCK literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4d664ab42dee8f56c91127f29856fdcf0b2c363 GIT binary patch literal 1605 zcmZux!EW0|5ZxsyQlc%#NShYOq1~fdSX6>uiz2n-1_cZmu+gB%y zbW09B75#*`=%qdPYk2J`Ur?Z@&MYNIX}!P>cZa*PGjHBZ)$N81$JI~A@^6>1zi6{P zJls6Nsn1bJHe`}Zr{F`5U$=0k?$DijLyt4*4O`EcY)StOlRog5{%dy_$N<{14Z+Bh z9T~pyh8@|JJ8~CSp>!@-w72}@c&<$~&6gmGYCO)%aTq>@QC@-;nf+z;phQ-rT8mMo zgqeVNL8n2*uRvW^8V=$(j$ViArh%r$4!3r z3U~!Y7z!NEPtK3dE>1+QF-UU_P>Syc-=1NpQan95`u0* zk2h67g0T6WsV;v0`LlmrsVhB8GthmRnzRQcG5|nfjJ?aMGFdvE^&dU%<)u-WqRiw~ z*)vt|zlR$`lWKN{ogyDWw#W+TOX$7d6!~R;wm`a+U&fCg^>uEbhn`%eV{~Sg&-w{I z3aU(t{@mn+?h~Ej*`f~C(0_sxbfUZUmHiuCOSoxe_15w=PBGSVI|*k*8cV-nbI1 z?bV&z;)%F=K>sQ2jj+*tid!O;g>m0ewEtf<5&f+DbkeZ5=>84ov~rCn`Hh3!hXQez zznsH3*O;_BT&4op6bJezY|UV!prW~$RP%zm!X5pAItKQIO5DbB5FOfEc?_}0OMzU8 zZ@CgDxWv|z*duBOT^>X&MO>-(^rn{_Q!8u0+D)ZArTQIE{^&lSNEIX3l!Xh(g7+vYvrEM}P2hEX;>WWM%KZ9lWmtB>h4!EVjm`E>iMhPPi6 Umo$0fv39V}J@3AIKiq5m3yuV$+W-In literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1e1cdfb0afff2951867dd87882d69217a50703e GIT binary patch literal 1703 zcmZuxL2uhO6c!~~Rusqag00OqU?7HFgwV1^X|&?zEqZ|%%!Vv^i|0G+6K_j- z>g_SxWuv!)`R;%0du$B$(G~&oX(`tYHR2T9&ZP2AWvdjg4QWKv zpKwYwpQUglC!#j6BxFtCc)(TsLJ7mk?VeWC1t2dJWi73$%`>v%yb<-nBO9)bCJoj4 zSxRe0I7Do`A7M&1-~*`i%y30uGueVcn510NdcoN&{R@N$jx%KO&q5m*M@>ZyguZqe z+aaW0(>1qopK6Jm|MqkL7}_gndJLTj&Qa$zy>`4t$43CT0}!+|OR2KZCdHOZJ8m^s zMM=vgFW{&QDF^i-P&+XE^GALm)k-(CzA_^&vOleOd*n$lOhKd^TNrd zYFg#35tYujInA1lN+9|PG#x@WMt*)`hf2~lL|!`U?dS3xK=btd1V6X*b#N)JqpQ$_ z=h1uIg*Qk|Iv|uqS5X(JFTH)x!T(Ko75Q1*MK=g2$Hzw>LIqbZP`l7wroZO1Qr2f; zk!M5YuAklW#53a$Vkp_A9SH3V_*{zGruwrmF{A22)JJLro3eq8^hVp{wxaz(Jqi1dLd(K?Il2n` zn2kDw>DSP-qcue-nuOl=;4VA}`4}AULLNJTT%ass_&QpEOknY$_m(TTe z9eO`7@%iuuv3P-=29VtFSbYYlM<)=ei^J}$+scSuI7s>Bcb7Qlrpyxc1eVoP*Y$e4 z`YrDC-uKhKCVT-5bW;hV-2Jsfho^b7r33gB3Ldw|`c58U=x<@OcATf^0O(0kj1D42 zz>uMnY;1=`!DLw!{uCdejm^frW6BX{ci~peivGP-5m@@rBW;wwK^DW6uX_EQ93J{! jR9-P(ddc_wBmIMWob&;7I7pHNjiAsDqCoevLMeukjp|7S};-yYBH%-ZI)}J@>yk^Xz(Wl?!*4gpsXnZ!YO~p;6iqz@cEeu2m`!Q_&Asm-2NQ5W6 zYwyf+4hNn=n?2;Y-?>+ywM(2Y@XEhN$h$%iQZP~oG{5N~8y!!Q)ARA^lhI^y(hF>m zXf15#cvVVeo+u@ieXGpNLGp|jOsYYp1o(M4fN+Frf{`9pP(81vfAf^9>5JdvwNy)8 z(v<6%QA7K@nCAuODlg{!nUp4_t1>=#(9a8_B&$-FoW7C$|32OtTFCN$?1(($=_VCC zX1xE;1>B3vx*&&x2M4jv4ex^|OF9QjKG;G_FJvVc;m~QOqC#xQToSsbn^(~c70or+7*FcH9FnsI zFY2HP{6D>mjz~pPTHH5e#);w-lHnq??Qt?1e>pxm8J}Io|I+w`oaI8)iP{3rr4Vwa z?o8@lRQCooMp-Pi4P?m+8;+BwN8{1SxpEC-8<{rL*rql$q#LP_nyao8HFNC}Z-e?p z>s16je=EfqvtgDC?(}K|ZI2G9Du?&CVe5T3+R;4}p*9M3q8AYkg58(3{E_QF8&Wkd zsnXoG)_R^Rp4sLW2-aWch4oXBTU?mlzHKE5lWCIJmXLEm=3KdMx4z!M^hpv(KFD@p zLY;t^D;p+BL024@O{V~y08lKpaPVQiS>GYq`Kq?Q+>JlmhLDxfYiKYVI3vmp_Sd3x l6GORBZTRU5W`W?39JKU3I07&9L%?8&+y1V<-wnxo!Czr*$J+n^ literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2446f20e546f4ed6a649a70c70817cc9429c5a71 GIT binary patch literal 4162 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c12819506f2d3c8cbdaf2139aa226af1843f0dd9 GIT binary patch literal 2168 zcmZuyPj4GV6yMpMUGLiKG)dE>6$K21A`3ZAMJX3r6}74aLg7$A!a`bYb|&#A`;VD% zO47B2NQJoM%B4a|j(h=*9QYV><-|uIQXAeIJE>cBtet)H{>;Al&HFuzLc&u;vpwm}4!Yp_`P2tPPqA!3DO&=D80R!rNCYw!r5h zhHm<7kzIV^4i?zlL#un~U&zhs677FgskAKOtV?z4Gm#9_UH*BoS?b_^DtMy45t(j) zXmpKl6Nv)E(J#|t2i~nJR>Me@(MV*lbaoS|o6LlwO4B0Fx%LECBT*zaeswx1yghjC z!6W~KskV-+V~bcdVPwS`+gsMyQKYuEZRH%;;_cdI_7TPPwhOaoq{gxH3HTQ8O+9_^ zyj9z1N4@b0#K*OB)SSr2a1lj&>fJi9<()6ApUF!Rp;$+M=0HTaVqrw>i0|P0l(|Rk z+Bt^&%FuxGD~nw&R44A7gVs?cEUUEY2>!ze@W^?gI#P+W*jn9pI(Iw!{^Rk7 zkH>c(kN4Yhv@yY~6nnQ%$h8x4y*sD<-8f5GthjEbGA*Qvi-c>M!VL&SPJ1Bau@YEu z+CjL3q|EbFMJW>wD(NtmL+!;?#S11}RE4u2({#H`i!K#d(xQd-)=a`W*c9;=rY`@m z#2a8f`Mdw96g#qt6E6FZT-@WuR$6e5C+lsLrAp$w>aX4CrG*kD8zop@JyrHzb)IZA zEUVY-lck$H*-J9sXT0}fk)<2`YEKQz;-l3YYkiq2-h)hb;w?x9!0t!zQ7)jI`y-WR zu<>~%Mnj%eT*%dGPrpB-j%8Hw>gLV0XsQ%^lM4<=BdYQ`Oup?CNFL%aKSpZk7;GoDGx_epBtsASerK@PH_r5oR9}<{V-*(ekI@_xQMv1{TWbG60 zxj@bO15GpFvR=kHN+m!TJsNVJMM<0td4hFxHn2(>@R(El1p+X{61NmNLZ$&P#!l_X zwqcZGxauC0@0~FnyJN3L4!iQIvAW|%5!6IpoBDb+f#`;6)KvMkvmMlp+GXSrIoJez zoQK#STE~{S4?fnmtHJ~P`qaj(u@9^EIH&{hunwMDhP`u7t>2xoKaIFh`-~o9N0~-- z-E{yJ?^!Itq!+RDxm27*g6{(7$^z`?7a&%^>4e+{+%JLDo!1_~1s!ifz~wEjq7A4< zpjw2$OMnlX-}JqNb|5M49mU`ikJL~vq2^HvH9b<%8QXM-zGpd1t{oXaVd$k<2ET~8 z0LkzlQ>lQ6Sbr0`2iO53?7}8#(-yi-@eb~0s^?vhbPG;#miy$u*HBF&1I#3{has=j z+R|*Ti87C{h&}*E`2Z%*38By^{F>+a$L6(aHRby54_&U>h$=yk``=C=d-b z80$R~Yp_+a!W~J&JH7C-`TX)7Xziv07*c5pjW9Eb&md;7GZghdg=9w=zk_W-;thn> bWjll(6Ov_TamDuODZq5pbW<$B{>o7BOPyn4_j~PxF-S#p}$W= z2m$n=KlS#>l!-0T`-_bSqW_GE7*0HCEjEAv*HiXxZCAEgBe0~4W5flZps)YN8y7eEIJ5m|Tiy}GV<}$J1maoyf zEA$Mw0BzQq;Yw4;qqXz`Ul-i|K+|ZrTw^jVYrApA)+&&d^MS4^dvTg$jRC!k%rUNW z<3bI#(JG@Yhu>O&|33Cd*v%6hBsr%GazOsPb?%*QTXIYnUQPvlM_+j7{yF=Ds6Hds zo8P3Q{hpJT?366%dw;=>*#}JdOSYhxD(~#g?_3**YF)jO0z`yPG$kl&ZbwT`q{<_% zqUz`vG8@?$x6zCnoWLN$R&txoHusGNo&2GiM~ymB)u~$B#2G{~SCs}a>R>U|Jq#!g z+}=d2s%4UQ)#1YBUwepfVN+vf!SyBx%Ys;jyqsJ$i!G`=20w^fI1<26M>jBei+=NqfL6FPD?hHD-8=Mo7l;Fq>|%@Btn8PZ+a^Ll$f G`TqkY#ZJ@! literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..acef6cf3b8a8fdd3326f94a15485aad0f16dc9ef GIT binary patch literal 2233 zcmbVNPj4GV6yMohuh*`VhBW;{LDfh-6hmz%&4~yhP$?1!1*t6;qp}+Bj-83uGiGKS zW6P0{%7GJKfJ<`Z8}LQA?3EK=p$Fi-S=&jf9uRBo+j(!sZ{Pd9_kOE3HtHT+!=E2# zzs8>TCn}e(3MikzZGHifc^S#QZuul#;&i|3!_&`$QP>R$?ge>e6m_FfwOe(1n8%}9 zw>GMG>!4S%XyA9RWmVqDV&3S7SuLyo6m~b3mXJ5z_P}~AtAKU$HESb_zE)E4I?a1#w;DO0XIc$Vz^Gw277n(L`oqC$wX#gJrUYYSkC21 zv2(Fbq)G<4>ao0dhYtoxF60pW*`uVd)hIDDCCgF|Kc0iAN1GAWg%fGIAO6e-KaeEFXqPZ{nAOOL=gqnYUUx#rT+Tn$88 z`kHTk``xFlE^EzqTOYPxeDI32=CySOP$XaTB7jJnMArbC-#onuk5|8Urb-VD6qcI~ zBGBS;ASCA+(ropVvMC#lJG*-=A+1)~#KqsTs`dKe($SF`zrjx~`aGSbIqzf~AYCcB z=yk?3d!*!kdvCXc?bKSeSZ6H8odjOWHFRJHz|Bo()i~|(tk_Ien#1-c7TpK29qBE2 zT?-SgT{6+KbkivU~`TQfTxxw*9gNnq{<5nwcp=+$ekn zt79c(5eb71o1rUNv2i8gqUNRtFdG%|YR46|6xSh5T?KIuZiB^+!#dd{4H6UopU}So z5Q4J?Xb#H218}^Tp1!#tXT6slH>K$hb(Iy+9zk8uyI$d!P1E3Dzz(&W_ zvv?6Kd;mCfT5SP7^uZ!r0{ox^nB9gtI*gyXA*VQLn5;ta@PySfWP`qt86LqF zZGZFZ$mBGCCD`PLC(X(vsF)#rr~o0V)V(hcC-&VCothwTOU=xy*C` zijGj=kh{^>H*kd?0KJ0(si9dZXQ+Y|H2M~piV)XD6+%Upe|>b|yY0OXx1k`y?TFOf z&;K#>aTWXVrD1Arl`n0;S^XA>BC@kF%)3TPDsBUrwbx|UUPDnvkAWBWt{!oG*S_dS zm$b{Xs3r-^^CSVzu)0hb$6RB;my*DV*GK|I{Lu)AJLezc2h!XD5eG4_K!a@gTf~oi N68^m%-KyPf{0mxaX(j*w literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3f23892a269317aa6faa588dbeec05cf26393bfa GIT binary patch literal 1390 zcmZuvOK&4Z5bmCr?XmM9n~ipthemLT7dhS}(rSeQLYs9EC}a`Y6_PiRHJ&cpgU8cD zcUzGoM?yR##EpMobK}a1-_lo3Idg)`Qa!UV7TO+leN|oGR99COUs>@9uHjFI>=%cS zKaH`x%4mFyTmFjTIbnp+gtQB!ZJOIw+se^y+lW@;jNG<6^4cCHK)x<9yJsPmnUiCM zxjFjG%dyHzIo4P?#}!uTS^ZLb6Pe8_Yi-V9hpIbxzy2SPj9c# z@#6pYuk5MK9OfFEc|%JaD|hBiZH%?huAHgE=$Oib&&YRl>dZ=W!WgDtFZE%W?w0PR-Kc%DQxBP=feR+!ypX069qDmN?;X&9v66owFwjtA}$0(DwzZf z6e@ulKmch`Fy9Yw9fe8K4KWVV6CQ;L?DRop0(yY|vK#U?@+8!QBpyP*Gf21V0Z)T3 zCThUb{gb~;dHrh(r7-HX5&7YJ+6`qC$4B*=z=0;(mnsxWUc_pk?F3ToF~EdCyE02+ zrK_!z!>3O^J^7^bWlMV!LJdn{XsBJlsdIMbydf_-xH_6vsVcMhI0Z8x61l$-@g{Qq`J;Kk#ZYEp1hQ!+r~zpod0?vB=yI;2aFjJ4>^9<5 z3C_lmih0^lyzzf>5oo}(*ThNU9z>HUfhL2-e?}5_n^{rPo!tjb87pXDCd06g$z*ZX z?BJy!(lBX`Rh-D?&0BV|iLQoY#XChYH}NU*Efh7!r}wD!a?8F)eOjX%bd_4)I&_^n zFU8wPsNdF}DSsrzEi|!#n%}E)js`LEW(IZ`XrR_e{wT0Sw+*-Dd zTMOF$-omlJw@gFpxK)gWn@=&ePzk-(>4a&@RcJ~pI~`q$_$Z4L5bKyno_5}>C1KvG h%LgNDNCF?3>67oE@JX4PZ=IIyLM!B*zkPqp{ug)|hLHdO literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..159c4076659c821eeba386801ddac8d741e7c5b7 GIT binary patch literal 1387 zcmZuxO{?5C6!q84b0#m)MF<26y}K|lV<&_x5<*D&3QeKBKH3L?*#wPsJyxGA2}z!* zp}Tg`pV2P!8}d)Q?W)@@yJ@fNX*+}nq#4=r(YfawN#D7%h^XECa=|~#qUiT9Ic+nV zyrk~Fpn*p`meD5sCNgf5P12^DG!FArX6tEm&;_xz8208`8UQ3t(aWKL)J2(hK$*r8|D^$XH^x4<;NEOr_?W~ySp^_ z===EBgvYRJz`$j9b0^gvpKwM~_Do8=knBvfC=SMt3r!_6n*#}rQ@)OE=B8z+l z#K1amU0qX|fo>08v`8Q)tYL?KqSxv@ai7Y*)Z#n$ zerOVq8Al)82tj*5)mclffL2&cx_?Txzj^iT|65iHqj!H;%Wy_MvBuRExS z`c%jsDD!BE>3XZRuUKo!hmY2jTdR3D26yfC`oqN& zP@~O9aHOcQ>MMyQ$MydcDYm3yI316RM-NL!9M{C;hV6(G8dCP`(!`%0V3bF}JY#N^2BmCk&{GyVg2zSz` m5sByRkcNr_&ZyMMa65dTKW|A5i7&!cHSV29pTy@0r2hctAh3A= literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8cf6fd9c09b2c0a573736e78b0c7d9ed0e7ce293 GIT binary patch literal 5245 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 B7)SsB literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..92e09da869971a4db715df08e9e790fae9db3183 GIT binary patch literal 1756 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 OO3B94K3B13TmJ)~s@abK literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..371379f9869101e6f2a59aad40b985205462579e GIT binary patch literal 1072 zcmZuw&2AGh5Vm(WKV4E938@?^fsaILvXovC0;(J;l>~JQh+bCCdfIH`*o*Bn3Zf@C z@ECC9MR;nNS$Rdq%#92 zhAW$E<93-=ESr{YFAPt{unL$R>zNd61WafJj9UiW$VKVo+S+U+VV610Kv~SkxRlJm zhZ$I`!IcOtAV@3A9%;ko$N(Id7-f# zBw2NX`Ahm!o(|((ECQ-Jl$n}f`e6<#j*nPok*5wdc7uG!NDgOmaui?g^`7*?-#Aw? zDC!2>%&4@Cu9t_-2JQpg)}e9af(knEO+%2Fe5?yk5b0f!cSMB&asJ{yMI|VCk4nX4 zPCk)~K=_lId063_h!13KTEC*SywfW0xW<{c*k8Lxzcs&?nqrnt4ao^^=9x06Ey=dp zq}`##maT+z*FttS3g0el(aa@xXWC3Lw6eH!SZUigMw?=L__{y9ktA>X$MNBCkPP0u zdf7iNcJeImC6}OtHocjVG8^spQmvfHMkc_bMPnE*Q`}olKFO5R$qL%>Oanm`@&_@S z=>Pc{&9#}>oTp$T!5!~{I?ohny?}aNi?(Q;dVj;9jM}taMJ?ZKAq2-$zNA6NFB(ZAbebflh99cKYFanU ZT|6k7PnUo0vr=%|L=%waM(Bsz{{T9^HK_mq literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ad200bd510884ef67f900ffdaca36189e390b5c GIT binary patch literal 9718 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%0D6SrvwOZolHAj zo_eGh>P1TF#KF?@0U=KST0*W_6CvLSHVersAyl<)om8T>0 z{P%HlErRQ2J*67K4IpSuuf~ZQ>s_OHPY~u7h75>+_A(0j)o$rc;|Bi&Rmooh_*oxu zA-G*be;&&--*w^Bdx%B4b_syl-q$Qc(1UyCe&e}1YU7|6>IcyMUsggiK=;M>EB8w_ z>LEVh;Sc36Sk9CXFQn2)uYRbl7f<-Y{Vz5}Gv!_P@7!WP+d}aV27S3 z@yx6rPBoHMsn79!%920ED7gWka(EyRHBF%-oBt$%+ae=Dk}g(Wy57R&NSA7~O-&kI zQoP1EK-v|`Q*i`9?H{7r8AyTEnVuLMiiT0hOozlOhaTxY6pfLj{CAkJcOJP5&6P*j z>xBhP9C7a>3+NbucI|sp_n+KnAfJq1pXgvgZ|covqYQ{z49k#jsSfD*xAmcbdo4AO z<41Suzy)F;^zs%r&HIcw#kOf0VNy4KRYphU%@gZi(dFGGaDX;2dI|m&M6=ns@jp*e z1E~`thTc=PF|AM2xM^z6UG2YkYDP7YktJ%@@?!T+e&YMoOvbe~<&5h~6gb3JN2wS9 zDF2-Kw~X`TOeR+W=${q_e-z3%Vee-Jk8=29CG)i@{#kMkc<$%{yI34|*|R0PG&b>4 K$t(HC3jYrenV2&G literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c1ed6fb3e4127f5bddf7fea321d5f8c08018923 GIT binary patch literal 18800 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 X$G!CM(4irF5PI%DFCLCM!$18$2s3&V literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfe7ed8044309b1d8df8d963abb26fdee90758c8 GIT binary patch literal 2073 zcmbVM&2Aev5a#}BElaYkI6ropKtO;3I><`WLoY><)`y}fY7}sL(S@LPC~588<%Xo2 z%FxX@^fB6_U!bQx$zFTvxwoD=vuoLcYbAiW;4J6kaAr818P#q#8IIFm58={h>@Q+g zhlk7?oaQwWU?T<&xT!O8@b9H==8e3}ANg4@3LN$g10RC-41x=H6oPxq`r-NWpKOvQ zHj$<`QMw0mlH^G~?PUsNYMOteUUt;?O7E+DUPgx^O~p8srT^o+kTGqpju4qQIL)6( zBttjY$OUKQfeYT$9r@tP00J2T+hY(yV-i9H8}I#5140>1Txh~3avRV>xllGIKD42O z$mR;N1>16XlofYIEJVIovLLSR)8OUJjq6L>c!G8!(U=JmBpn-we zFL%F_^RI=GaHz6EX!(8eOOl^|{)1LOCxFq4D>yMK@5Q1J<7E`>OxRvxdSg1jRP#x5bx%=5Z>FDLq0vx4=+Kd#3ZFn4Wn#Xzk)W#A&vXESv@7Y~doscptM% z=cw;$dJ5e@f^X*=nND;>$Oe*2rrY@Y_mAN_rB6*EVrhmTtQg3An&eVyOn|{yDI1Hd z7`}WpNOG$coW(X#`M|2dZQ)wcOci(NNt20;=W!~BAO|;0nv93V+|E?~*}K96=vCjoj4cHG1HsK_TAE-2{Wsr*mrabu_|UY=^#s9kO=2H$Qjc10Uv6~GEjCV zbxgv`L2J4KJ?B59c)@?T&}muF|KBR3WvnN|zz$DMsPat^Mob;ag7X zM~Ll`W-`-p&Y!M{5$Rd$mVQ8*tGIZYwCRUPD)W+a{g@DXiksl*J!C8V2`<)K#pCy| zIz?yiw7QSRXzCAIrQ`Rpy6&z|(c-g@TfN_1<=ZuP{RA!cK5CVYmtiKc&ftGtggQyp zMV{jVD**cl)_`jwi-|}5b=VPewXSk7a2yeY;umx;4Gzei}SZ^QF4n3x(*lLPSo$WW?S1T$~9U!5G zYN)~@<~xzQ?{@sIxBNc!Dw%#m(@n1`#?A|Dt+h*){>m@XwNgOWM#|`m`kr4>zcOUb LXOXw-biMxo2Q$)Z literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a83fe998acded05633f9e4e3ba3ca3a52314c63a GIT binary patch literal 2165 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 nu#$p!dv5)Wvr^7X`IdwEx{a;>l`Jev>Yx?IO literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5fc0d115115dea4b1bb629c00af98ad86e65852e GIT binary patch literal 5859 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2cc89c15ad90be9a27aa1e6be19dd472899f92d1 GIT binary patch literal 7382 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f117db7a35f38c0762606649a803be310c4bd87 GIT binary patch literal 6751 zcmd5=&2Jn>cJJ!$nd$l9@Iw?uNtD$3uve26hqAp{Ct5@6FL^`9OFO0<+k-Vm&8Zr) z$)4^}b&W{Q_5_CMLlD47a>!zlAP9L%_LO6ge;|h-Nba3ufCYTaDS)$U<@c(F)R5jB z@_`^jc6EKee)a0T-+Ql;si}&E-_Gy9!Tb>dKbZ@3L)0=J0_U2l1y1x{i>&>_3nI+iad9iTBS{KBen7LrJ7Kau6t&6RTVo^-L zjGhmzxb9lw(td|o^d~MHUgq8rW7fx3%yzBuilx>PR?MDSkxi^9KU={o;!4-%RbKnt zZC&M4;u?C&;@U;4>+(9EMz7CjghxFXxsKjhK8M~L{2b=a>-pEaMSh+yp!cSsz-`RC zz!%YTi(eGg@ybj5GJ2ll-{M!W?kb*Z;ySNjw#R*b{qsWW`I8aqE%F=uCRTi_Z1dYE zBez7waHH2f$DhZ#+uUBa8ja!72P%w06^hiCA_|n?ejqzr;S-TID__$2uQi<9TU9~^ z8#w(7Y(Mzu;e)mH z)pys{^ZLWr-k)qwebkz4)?2IZO|(I^BI0x)MVp6mczI*^qTfsSAQFC<`f;NC;7Jfh z#M^Kw8uo(!Y&0)Qp$0PU(4LNe&}7TO^9G)D5rwi2q0dKbq-&W)=bl-Rls$a?2SWL3 zOZc6Elp!B+(*@id|tYlXIx%Za+|4u*7FS zs=Ijf0dQ0@>ky!D#8BFF44h@w6HDIWwtip2xIQ5L#*7^+y{gBUyoEjjA?FCHJ)Ymx zeYWY#EbeZS+85ToVk=*M zE{|+wW%dF4kv(!oZsw%3KtC{_VfzD1E@sY%Jw|`Vb{u)lj6HU_gYCJ){r9!5r@oQ{ z7)sZNQEJ`QERd24-Asd?@W(sxY0Qt&Q}OY;9X3VtjxU}F36&t7hP{QcpTxpX2OHS7 z=%_^QQ(u680~(FBw;nc_-fyEIuh6!qI!UjW#O=Nm-EdEfG%uP)?n(iH zC&hao!|4JFSBukyh)K*w)UGYB(^twT4CO@?$W5U-Hu{f$BpGdeqw7v)XU-<+pPRXvy+b;~hVN*(7|EUpmH;8xNRw!wgppv<^$i0gu-%Ykr)7P@ zpeECB<%hwJ z@Vg-(8H}d{je#<<(26GZM2Do)O{70agg1A zVxH`#eqTu6z>?3CPO6uLPr>S!tKbmsNlP*>Xet_LgF&R);6Swd(ICYf;+H(iM9=QtEa#%RR7L&!y z9u?3k9ub)RcvQ@a+oe${D~-IYAnzzID;*&8yJ(F(Ro<=~Rx_4)NA|c?L!FJvYKnRf z>~xhEMio`hDu>gVm3a`SbHF~s*x?K>9v$Q!J+ALsjY{wr5U5t<4`Q61#s_Ucx5;RY?L0a@sYeY8 zCkSXb&@znmq4|%FkMB{__g{-5O^ueMz+&O=%8-uK-w0BKbg-s$KZSyTgjRP^fte5kkE6=0I?cI&F z#)7O;-A(!;&P(_deMtw}Z=qrwo<~L;>0q2diE8pYM228{!ne5FNeCkNAT7|4FDWj| zix6B72;+&Er=)gyG2NoLF0Xcy{yu#&+1LiGMhVW0&_iQjW6FHy*Qw*XM5sUv_HzfX zyfh9b#$cs^#_qZjz+6cDXc~-GKyW-fof9a|HsfS3xV|ah<(X6NT&lj%9cR}h@P*6h$30gy3 z6G(mxaTHu0>0lDzGI!EKKp@X^XJp6EANMH-eb=~)zNM2s7kv#tmK{G^3z(8G@e=wx zRX8ki51|M7(K5o1(l%O|jl8b*vZyY0?frlFuToN$-rFStat-PgK09FPKfi5##>koQISuMn zb@^~9t7KKfH=jKP>i;?k>To7k2-3mf)#IIFKiBxVSFJx{vZDNBsc0D2bNQ@>aa{+D z&riZQ3|nKg0fqk#jBC^Zl4~6KpQE@YN3P)iF^c~m!1&N*&Yu_1+2>v&R1fHx5xeo{b&$F{9MwjU#{(C~+Zi6U9L7--(ji^iFL0~lW+h$o)z z|25I0z;n(TULC~HJdKylS12Ti()*|!Po3~sq@YGQ{}(*gaAnnGH78V`L$V3KXqflW z(&^%pAPV_CG}q*Bf?=rx-s{G_72sBdl&@2Ni3$ogk%=dpn*z>aH;^$TnwRhi;#=OM zIoD}U1?k;5QZwu0y^_#RC+$)KMXvEL{i~XIYzYmeiX&*p2)x z8YiugZ&PuOig!@t4k9c`d750K;!IKp--y-vtp5bV>1Qas@)CSved2L#8{X3W+I45} zUKsmK@|ef|l6)e(BXYnxbKx~Ho1S0Pir%O8zuDC~oBI|0GnLxdzj}5Jf8<~7e_D7+ za@=b0N?4rtMXxm=B6*7(5R}~1^9~#MBzTt21;DW*J72LM#@mo zG;Q)*YL*u>_Gi|gSxkw~@TYQ4(;3v0a(;U<7x7DOyU)BqcJ7#`pZrGu-JQb2j%Vlq@4S8{Yf|DxIF- z)ZM;p*OFBcuC)XV$3CR{kzc z@;b;ULg0(GDJ0!G*wj&=pfzW7wQ8iHmG$QsPbqt?6^aPhYPS8g=h(lzq+1?Z^Jvuz zt_xK(%KPv2lHA6E215kC)@bCVb{n~WyNv)7@BmmaTh``xmp)G$F?%dRwlskNQj+pX zN`WO^YvhZ##cZD3Vm3`aLn)65iLaa<)|Z@35*8g-YQ&-iL`Wq`tY;~jB}k+?2II;= zs&@>adF?iZ!|k?_=luEy@4ff#`wt(yIdR*aJMc_-b(OA+m4TfC7aN1k+@-ti+@V`v z@+7%~aNoe*3h_d)Xb_L?DNMAk515Qoi*n+C^ik=%Oz#zQmwq4VsFjioUCYGI6hC`x z9u{A-7g?={2-~q?^RRp%2_kAoqkyj0-G$OZZDD$@I_E8w7Mk`$_m?=zr#Q^7i#S@_ It^eXb0Pv{`Jpcdz literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..68d9be6e5842dd48a927b036204cfff25508e362 GIT binary patch literal 1678 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 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 000000000..16933bf8a --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/compat.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 000000000..3f4d300ce --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 000000000..b6ed9a78e --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/datetime.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 000000000..8668b3b0e --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 000000000..72bd6f25a --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 000000000..0e8e5e160 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py new file mode 100644 index 000000000..e4aa5b827 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py @@ -0,0 +1,42 @@ +from distutils.errors import DistutilsArgError +from distutils.fancy_getopt import FancyGetopt +from typing import Dict, List + +_options = [ + ("exec-prefix=", None, ""), + ("home=", None, ""), + ("install-base=", None, ""), + ("install-data=", None, ""), + ("install-headers=", None, ""), + ("install-lib=", None, ""), + ("install-platlib=", None, ""), + ("install-purelib=", None, ""), + ("install-scripts=", None, ""), + ("prefix=", None, ""), + ("root=", None, ""), + ("user", None, ""), +] + + +# typeshed doesn't permit Tuple[str, None, str], see python/typeshed#3469. +_distutils_getopt = FancyGetopt(_options) # type: ignore + + +def parse_distutils_args(args: List[str]) -> Dict[str, str]: + """Parse provided arguments, returning an object that has the + matched arguments. + + Any unknown arguments are ignored. + """ + result = {} + for arg in args: + try: + _, match = _distutils_getopt.getopt(args=[arg]) + except DistutilsArgError: + # We don't care about any other options, which here may be + # considered unrecognized since our option list is not + # exhaustive. + pass + else: + result.update(match.__dict__) + return result diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 000000000..9e0da8d2d --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py @@ -0,0 +1,75 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import os +import re +import sys +from typing import 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_name(raw_name: str) -> 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. + """ + return re.sub("[^A-Za-z0-9.]+", "-", 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_name = _egg_link_name(raw_name) + for path_item in sys.path: + 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 = [] + 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_name = _egg_link_name(raw_name) + for site in sites: + egglink = os.path.join(site, egg_link_name) + if os.path.isfile(egglink): + return egglink + return None diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/encoding.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 000000000..1c73f6c9a --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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(br"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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 000000000..1504a1291 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,27 @@ +import sys +from typing import List, Optional + +from pip._internal.cli.main import main + + +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) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 000000000..b7e6191ab --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,182 @@ +import fnmatch +import os +import os.path +import random +import shutil +import stat +import sys +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, Iterator, 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 + + +def copy2_fixed(src: str, dest: str) -> None: + """Wrap shutil.copy2() but map errors copying socket files to + SpecialFileError as expected. + + See also https://bugs.python.org/issue37700. + """ + try: + shutil.copy2(src, dest) + except OSError: + for f in [src, dest]: + try: + is_socket_file = is_socket(f) + except OSError: + # An error has already occurred. Another error here is not + # a problem and we can ignore it. + pass + else: + if is_socket_file: + raise shutil.SpecialFileError(f"`{f}` is a socket") + + raise + + +def is_socket(path: str) -> bool: + return stat.S_ISSOCK(os.lstat(path).st_mode) + + +@contextmanager +def adjacent_tmp_file(path: str, **kwargs: Any) -> Iterator[BinaryIO]: + """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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 000000000..594857017 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/glibc.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 000000000..7bd3c2068 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,88 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +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: + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = os.confstr("CS_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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/hashes.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 000000000..82eb035a0 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,144 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterator, List + +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: 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: Iterator[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 __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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py new file mode 100644 index 000000000..276aa79bb --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py @@ -0,0 +1,35 @@ +"""A helper module that injects SecureTransport, on import. + +The import should be done as early as possible, to ensure all requests and +sessions (or whatever) are created after injecting SecureTransport. + +Note that we only do the injection on macOS, when the linked OpenSSL is too +old to handle TLSv1.2. +""" + +import sys + + +def inject_securetransport() -> None: + # Only relevant on macOS + if sys.platform != "darwin": + return + + try: + import ssl + except ImportError: + return + + # Checks for OpenSSL 1.0.1 + if ssl.OPENSSL_VERSION_NUMBER >= 0x1000100F: + return + + try: + from pip._vendor.urllib3.contrib import securetransport + except (ImportError, OSError): + return + + securetransport.inject_into_urllib3() + + +inject_securetransport() diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/logging.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 000000000..6e001c5d6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,343 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +import threading +from dataclasses import dataclass +from logging import Filter +from typing import IO, Any, ClassVar, Iterator, List, Optional, TextIO, Type + +from pip._vendor.rich.console import ( + Console, + ConsoleOptions, + ConsoleRenderable, + RenderResult, +) +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.exceptions import DiagnosticPipError +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) -> Iterator[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: ConsoleRenderable + 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. + if record.msg == "[present-diagnostic] %s" and len(record.args) == 1: + diagnostic_error: DiagnosticPipError = record.args[0] # type: ignore[index] + assert isinstance(diagnostic_error, DiagnosticPipError) + + renderable: ConsoleRenderable = IndentedRenderable( + diagnostic_error, 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) -> IO[Any]: + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/misc.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 000000000..b07e56f9d --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,629 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import contextlib +import errno +import getpass +import hashlib +import io +import logging +import os +import posixpath +import shutil +import stat +import sys +import urllib.parse +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from types import TracebackType +from typing import ( + Any, + BinaryIO, + Callable, + ContextManager, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + cast, +) + +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip import __version__ +from pip._internal.exceptions import CommandError +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", +] + + +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]]] + + +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 "pip {} from {} (python {})".format( + __version__, + pip_pkg_dir, + 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) -> None: + shutil.rmtree(dir, ignore_errors=ignore_errors, onerror=rmtree_errorhandler) + + +def rmtree_errorhandler(func: Callable[..., Any], path: str, exc_info: ExcInfo) -> None: + """On Windows, the files in .svn are read-only, so when rmtree() tries to + remove them, an exception is thrown. We catch that here, remove the + read-only attribute, and hopefully continue without problems.""" + try: + has_attr_readonly = not (os.stat(path).st_mode & stat.S_IWRITE) + except OSError: + # it's equivalent to os.path.exists + return + + if has_attr_readonly: + # convert to read/write + os.chmod(path, stat.S_IWRITE) + # use the original function to repeat the operation + func(path) + return + else: + raise + + +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 "{:.1f} MB".format(bytes / 1000.0 / 1000) + elif bytes > 10 * 1000: + return "{} kB".format(int(bytes / 1000)) + elif bytes > 1000: + return "{:.1f} kB".format(bytes / 1000.0) + else: + return "{} bytes".format(int(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) -> Iterator[bytes]: + """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 = None + + @classmethod + def from_stream(cls, orig_stream: TextIO) -> "StreamWrapper": + cls.orig_stream = orig_stream + return cls() + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # https://github.com/python/mypy/issues/4125 + @property + def encoding(self): # type: ignore + return self.orig_stream.encoding + + +@contextlib.contextmanager +def captured_output(stream_name: str) -> Iterator[StreamWrapper]: + """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[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 "{user}{password}@{netloc}".format( + user=user, password=password, netloc=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[str, 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] + + +class HiddenText: + def __init__(self, secret: str, redacted: str) -> None: + self.secret = secret + self.redacted = redacted + + def __repr__(self) -> str: + return "".format(str(self)) + + 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.exe", + "pip{}.exe".format(sys.version_info[0]), + "pip{}.{}.exe".format(*sys.version_info[:2]), + ] + + # 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 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 is_wheel_installed() -> bool: + """ + Return whether the wheel package is installed. + """ + try: + import wheel # noqa: F401 + except ImportError: + return False + + return True + + +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) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/models.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/models.py new file mode 100644 index 000000000..b6bb21a8b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/packaging.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 000000000..b9f6af4d1 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 000000000..f460c4003 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,195 @@ +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: 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], + install_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"] + + args += install_options + + 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 + + +def make_setuptools_install_args( + setup_py_path: str, + global_options: Sequence[str], + install_options: Sequence[str], + record_filename: str, + root: Optional[str], + prefix: Optional[str], + header_dir: Optional[str], + home: Optional[str], + use_user_site: bool, + no_user_config: bool, + pycompile: bool, +) -> List[str]: + assert not (use_user_site and prefix) + assert not (use_user_site and root) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + unbuffered_output=True, + ) + args += ["install", "--record", record_filename] + args += ["--single-version-externally-managed"] + + if root is not None: + args += ["--root", root] + if prefix is not None: + args += ["--prefix", prefix] + if home is not None: + args += ["--home", home] + if use_user_site: + args += ["--user", "--prefix="] + + if pycompile: + args += ["--compile"] + else: + args += ["--no-compile"] + + if header_dir: + args += ["--install-headers", header_dir] + + args += install_options + + return args diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 000000000..b5b762418 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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 = 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("[present-diagnostic] %s", error) + 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 pep517's Pep517HookCaller. Thus, the runner has + an API that matches what's expected by Pep517HookCaller.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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 000000000..442679a75 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,246 @@ +import errno +import itertools +import logging +import os.path +import tempfile +from contextlib import ExitStack, contextmanager +from typing import Any, Dict, Iterator, 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() -> Iterator[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() -> Iterator[TempDirectoryTypeRegistry]: + """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, + ): + 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 + + 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 + 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) -> Iterator[str]: + """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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 000000000..5f63f974b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,258 @@ +"""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: + # https://github.com/python/typeshed/issues/2673 + tar._extract_member(member, path) # type: ignore + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/urls.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 000000000..6ba2e04f3 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 000000000..c926db4c3 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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_regular_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: + """Return True if we're running inside a virtualenv, False otherwise.""" + return _running_under_venv() or _running_under_regular_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_regular_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_regular_virtualenv(): + return _no_global_under_regular_virtualenv() + + return False diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/wheel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 000000000..e5e3f34ed --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,136 @@ +"""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("{} has an invalid wheel, {}".format(name, 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( + ".dist-info directory {!r} does not start with {!r}".format( + info_dir, canonical_name + ) + ) + + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 000000000..b6beddbe6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1398af6b65188e22651c168d43867041fb0c9c2c GIT binary patch literal 600 zcmZuv%}yIJ5cX!1u%yZfAw{AGt~uz@;9FEv&S(?K};3EFy?TmQp$rny42_>TM~ zl-!X+>8cJ@m}s$rYF)bu;ddtyG#I~CQX;2c!ladLQAy(gjZg)V#X>v?fgvR&9Pi6Z z>BGrBtpV!}rBLDPzUaEe8qi5=!s))clWJ=`T7|KDm`3PF7(^HnJTV-{eT2V%_`SuI zYefx?H^Pe?%u*TvlxCSPto60fEkB#(R2$l+t3AD*dz*he{4da*Z9j>ljS^;k$ ze{+;v@OI`^SmXr+D$Nx8!Q$u-0uJlz^w40E9*OZKc^MtB!@f&6R JEQ#|pc?A)MzFGhP literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1624d6217ab7df2108d8ca3bfe9d01c87866c697 GIT binary patch literal 3427 zcmZ`+-ESPX5nt|d_x4Vw(@8p6lI^CKG;w-qPiOZ7DU2dW>O^UQKm`)F4~rIy)slC& z)qa`eNzvl;QW;2I@)r~Zq({H^uiK;Dou91drGGo*^;<(38C z!MBgt|CTK4zc{%5Q5bv-O@0dY&RKDStd`A;q8^X{n= zZ1B~yTYTf3zUn|{a zi7eCTI4mPI9T45lq5~erMV3W5gYgp1hpGr?A|1He|7517f6B*&UjLG3h2ndK+AU@| z`%H*J=+>9~u-;GV&R@BZu=ArLSE5L@a~R7QZM*&%55t7~0Xl94gjs>jNZ>F#pv(ze zMgxyGn9F_U@h11TtuZy{r>7)nF_>X3zQmSzo3;5e^VssZ#X4-|DGfR|xXAHYm#qS4 zGwKa2q1`miGP-RZ%3gvtNmd?m(}-eG%pHbkL}L z82)0aR9Q6_l&l&^N;$2$atvHEg@lK^w5(a{7`#>tC`4SaxD%>+t40ClRk8e z%&mzHM%jCnJrvKZ0THV(FV+{`_x~9k72-gaQOxCtMJgKde3ImxizJ^6_lrWsQC5!b zKNuzm05*#eheK5iUlpzuO^fmkdeUUfnQy%Np30L8MBzXwF2qQ6(eK?WC!~1r%RR>__H6cwI zhh%af3-l7MEKF8O-8|%CzkvOZ_hJ{6EIxE%1Df&Z6o|QVW}RCnt|Dgu@VPyAl`|)& zhz;hPczFj#^uQK(nG2%^K)NxfJ?mfAzwHxGQRdG*(B+<6po5&cCylvv z=FJhPN80+H3^h3vT^I}+ zx&^6zQ4+M57Ly4VnkJC&!UF+;N74uLb|F@<8M|;B1v$rTh%7m`PMs49cG`0a7CM&} z(mhSfS(-vdJ`n?0GjNP?;%%UftpoRsX5K^oO&X%!k;)oWScP|-8eVG9-9f&ArJ^4MkWv}1}A3pJ9=Wz zZ4BF|*55w>FF0p5B)Y>~7{3jHbk3YP1+RPv6h(@8+fWD~ZQZ#G^AD6acTb6J5vaig zpg4E0=qIpyXAH*C3+!&`VU9 zu#i8QL2Nze6~Dx}C6n^?N`WpC z=rqy94s&08jNPZuX$o(VR3O6i@xfaSd3;ndTbze_zAmBLuQUkNQ@RbnP~z N^Ig*NyH4k;{{tR2U^M^$ literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..81889d466b16b2214b7449c6bc105b976ccccb4e GIT binary patch literal 12630 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6730591d946c9cd7aaa8fd11d029b955efa14440 GIT binary patch literal 5146 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 H;)VYKL2;=N literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..042eaf46802e50381bb9d1a5980538e7fef4d36c GIT binary patch literal 21229 zcmch9d2l4xdEazTPtSqDu~;nj;O?@yE=v%rg^A*s5x7nHQ2Y+INY2o&&hqJailq4o^Kv4AC+gjajbc~ ze7t$0e4=?r`Htqv^2z3@@~P(O^6BQC;r^3tcCS$Qf+cz1j#f*Sa0lw61M;yfE`(3%MmDoVki>El)kuLRV|mnpZNz z!Y8WkrFOH4k%ot!Y54)hT4gU!D%Dn{Tv&Lz?z&#)tdbE`)YZaT-8(y4+DNe0>0pD8jYa3qE zLr(VDIsw-R(_1w^v|81s7uw1Tx~f$JAtiq%?$Wp};qvcA5~TX6SB)K`4+86^RDp}y zH`Y^b`b{G+HqE1{trV8o>OE9&@OMSJbOP1&ocfv*Yth=plhq`M@beKVS_BdRv!SA)cs7(F3(X@*g;u8eZy2I0&6$p8hvxmgaiSZ>iWu-x^~|{ zZByMRC2XBVJ7bSLI^FyCvS63%Emu~GWcz}ka}3t|e20T{R<|ABtE$=th|1}9q&7*` z-}VEq>8z=CQ@Xky&+z(E!V}Obxuz4e<6d>2$|JAc@>p;^fyZ^dh!I0sX}1!F5-o^s zT=$3DoO6JgwQ8%yp?bj6Zp+pE^q#-e?lxS9C2O2#b!>)$)Sx4c9L`zaSqM}eXi2fv zsVZQ&6BpM#zqC@ysd=nSXtu$&II%E`a!rzr_WHV~!tAZ8YKctp!32f10pl91T(Z=M z&{~l=!^yU)uUBG_g_Dh{A0&_C=(fP&Yxxtj6YS*bR0w_`A&8ETFQRLoJk-jQnG_AA zY11%G>qk~5_x-6!prolTqCySV$R9<*MO=OniI;+Qm7-<^TrtDLSA>pN+QDUlS0v<0 zDIMl2!jCGIuu!Qq!C)cTDq*owx!J8Y2$o7^Xe#8{isYjnXM)Qo!sk+!Avybo6tg$~ z45|%=Vm33Su170cF7f^N!WUDnV*U#d3hdZ1w%bU8w5vBXPr2wc!0^=fJt z@@~&CKp_28#dIOz-ZD7H3^Wz2E2dg+)dNiEG8zCTmhUyz^ow zEnE>yPZ)|h`(TBJ%p!8^lqca6cpK6 z_b_s%L~%S47Or?(T9@;CZwgm=vIS=Ecfl^GPEuej`W>%UU#r(3Yqsj5Rf3B|%GEj0 zZX0|m5j1EZ{Y2$XTQo&Kl3b$qwV*yYZE7yyEV7J_zag9h`~(^rUJaJuQ@N=(o85rA zsOB&$VQ#CYS3aD2NvpV*w1z8kB`iRBR8`T~lmmc|NNl17QIQMoa}E2jV4!f>>)`f% zaQX^lI8q>{pd?e&AVv1xl1Wkh8Wz5Mjt6v}&>9&MbnaD|o*q0aQ(kXr!74hNK*2i* zu)}Qzlj2JnP>2aW$sNE~ckehWV0%|EIW1^kz+E`8s;aHphVTxQev+ju&{d?e@QMM$ zAQAjAT*91kMa!^F+ptMeU`;W`B$PCw-jc5+deJdFKwhRcQ=8O<0NqXV>tG{q2>V#+ z6)z0Bb9(l9LgLZe#$(V-Wq{N|Wt49jdf21mB$og$R+Y-vI9M+3vGF15@_j>05P?JF z0NoT&A&)xp%7ycokc)7?Rsm~ZX+Oy;niD;5@3ku60O2)RQTud;8Ra5 zm^nbOH#?Z@QdDJRTxnD#k_v)8fEysD0B^_aLo{>^b%?0BY3$;8&wvUksJfZfcY>%F z5=4#d1n2}KR2-Q#4o1+WQVH4|#+@I-djK@Uple#C}Q^=hcweBb|_|CBKQq8}r9Y*TY00#6e<*h^RsO^#s zHOb!y(=Z%Eb7MVBulC>{^5ITE!B$Je?#h7#O``VcYY2qN(ze>Pr~(EVsDt)i3N}^3 zbhDuiH4;XDn1N;Bd*MXa_xwuB3!uY?HiVxCM^aWhD17xay46@DRR1YH4p4;R>{oD! zt~QgNf{Yl<@ZH5&A|q&ElGJyNy<~uf6(j09KB|Mlm8p>7{KR-#}JqA8$&Yn8MLH- z_cZ~)6EccYdUSzVnTvasZy{S;N9E6FD4jM_UomfjEy`k)3`Oq?lzDUMfiN4re2Az; zdKNBla*$G;$G*c3+52p&ci#}`A|udWx-0{pPJmT^Z zcyMY7*LUy`i{&R$pU*)w8!%8#&7aYYz}ry?&? zw7BPC<(INycBAT716Wt*Iq#1#`2-Wu?}UyruD9A3Mkp+3`-=a`x zLqn(tIL#W?+arh_*OfQy15<+CC(xCsR50b#1WCMaJeo{etAB>j*;~=bWW-}5D|B1& z`@YMuiOL6Ofb~xA$k6HyYKdQBWK^Pupsmn7C0`xhD2|6L2Y5D53k7N)OlEi&E&tHX zY>?i?&I?AL-puT!VMwQ8y zwC+FytO|{z(}uGZ-aM_sR0Ah~v)_U3CcdAfGZsMCT!)*fmAG-X2MS2<^b;OduL*}S zDxx<0Kji7eAfm|%oQ3Hd-Zq>*#0b?z5+0@wIv9dDT{IHyunt!vOgF2qgz1LYf<-Ub z^C9LIx8N;|`CB+K^b~mn#h)}M`xNk{z#GKZh|^~r^JEZFR~6`3+)emxyhD5$R%VKN ztzky`ExbT>&gh*UT6nET3nz}7t9#LY1Ov!rcnJoubZGS_$Ysc5fTc5i(}bkF3SOga z)7u|Smf(HX6WSr2e1j!{zhwaH5hld}s6WnR4AvB-y!%s3=qgexOa{OgjYh=88VdeCF5f{?NX-GAD8@bh)2f&bVgT_Of2ih4T+uZ{7uGL0(}b zFM~Y0JmD3+oYcu)NO_ZP4z2Ru6tvY?>L6EY#`~$zZ)Z?4EhRbRin|KAhoaos zsKl0?Rl2!mp|u{7+&R7zZRXvh;s8719z*_dDVtieU9IcRdy{$FeHm@!&DduxdPkv6 z=e=X7!@brFdOeQ!-5IsCT*tjjdOU&LGswMLN&pMYUC&g{0&pR0(9b>YS!rYTz17NXIV@OxTDa}>RNz`b8;+=)I;OCP5(O1{Bz&$)}x(H*qa z{S#VC?y}Us3vYb@Z+%eS%(;KieMm~q2t3%^!`?CXL*CtP-nFq${bBbJ^mflkDNAzh zN8FF1?@=iQH?r#C$oYOYRfW(+5U!pL8!v?)_NJr}B3GXs4WA0~VJReL(sWHNG%kJl-SvMS-RymNTpZlm@F1AAX8>XlJ45?7 z0EaxVRqVoJkE-odla2-gn4463j}hZ^&~uA2+=V;XsiI_Pr;^?Z{@pgtL(2S=Oc9&@ zD)8wm7Re1}D~jG%V)$r&Csx35?GmnFG!@Ejybc>N9QaA{aSDrLc5h+S&jrMC? z?18Q(iksgfY$H$aSCUx|Ind%wwb30r*&aKGX%9Bnr~wgLQZx{>QCIJ^#RdqzOXC#* z3lvZR7L}VJxgfxrp#&S=c)cfvk!APp9D~t#-Dv9@I?XR*v#i+hQ&?o+O^~^6JWQ$Z&CMl z&DX6RyHBo=u3o|@4+dZ|BPWJon*>I3gk{yf)oQe>dIMRugp*Dpw_;=48BxOrggdN} zC#}Z4i^Kcy@3;M*baG8lo?$MIxFQ_bdQO#ly-mljH|vcmSWjD!d#&Ao)&|r#uLBu0 zhj5%P48}=9-?@kkjY>NbR`7-4f$b!3zHQtOeUM=U@JdNQ&JYj%X=H2r^5=N>vrHHn zP|9jL60|zU+z%ij5$HEcf9fF?474wyGBE>uRRgjm%k&WOjeeTKWWj`k8&>-ao!n;* zz`e1i;-nsNG@!3hmK3DEXq1fJ*OD0zu_QX?ffEtM!QHN%`Lf4e#jX^#)^z;R|BW}f zI_MEg7VY6JIZkBsV}EYcfWTJlVeC>r(?k#$_Yyq41+0F2Kll_v4O5@O6n~GL*UI(A zcFTl3M|T@8qhe^e9=t)r)X95-iqxsTilk&#%gERVrJ)EZ!lE7!H8&i@IKdWkoi-fr zpceM;Al?hve$s_z#Sw79nt_$WaBSSFZc`Ep)?bDP3VwW8%WMT})^Xb~YZ(R+Mcobd zF=bKeLGm6B$cuMJNe|6N^Ud)wGyrZ;?vG>9aA+z^JGX02Ds)&t= zH!PDqk)+Z%1H_m|w^t4(h@`!vcVT6>>kqLvtFB|f)f!TZ!0TSz(DSZM>6gtN6Ee%#O^Y`ke)!HTq?Ji8Gg!_5 zjp+S(#i_3P?M4@&Wz>Xx2q!3Vde^G$FEMY)_d4eixPZq$^g#!{hLNhSVhGZLgeca| zzYJ;Mda9H(g8SwXj8T0ANmxLLXFZS>>d!JGjTeL#f(#qj!WPK=WoBojN@xYudSe_P z=PJN0Arv5E?8Rymqy)^2J#X~x9^=yowFqs!>!5u$glGK6dvY^@Zw@zfxUR`AV6}{b zWNI&P3nS6*B6k|X{Gd+jzCo4ptU-VcGKuqqm?moT_{*UR?1Ni%!{F+2umYZtJYg! zH=4b8&eiVfRve|wSRT%^jU0t|-gAymjRD-biYX>jADSvd&=`LP&0q@+TxY9Zl_4xH z0$36wCLmozkf`q?ZWa7qhoTJi25&O7DG9<*?e03_<}e3_&N|LzILq32R7n&Ea9J?- zDaa9;Fqm`FmEWx~&N6xh7ISQ2oMsn722`_6ODTTKKnc>!%0KTc#OSaP&*B_NPEVke zglS?QxCU&Cxw25h&ohHGK28Oqw&-r*vT`dN+bc0&$sImWRT-;3!c^$2qJk_)Pu*&W zsbt7hcC4Mu4h{qKP3$hr2Wi*T>hP<^7m>#RN*DVOF5Dt?aqrr6T<@7+Na>xdYwhF^ zB5T3X`DowT&AJ)ZMH%w@Isefh=h}nbQy4qH1`<(NIyVMSy z>s8Q8gOm;2rcOZ(1loa!XHYwki85kJ!f>FSYjcZiIA3@sJ#lg*;*K8 zEYw0^djB2#s9$0-s+NS4iQa)8{ciydTA|POPL9dak%}Wzp*w*hSXjt4+-UoH6V~&~ zY0X0V7KmQh$WFEoW`f|Sqk-ACaZmzL)rcL)^s|Vx&%p|}K>j({*XB-MYcT!1$l!GE z=0Tt#f|H1cKosqFX+b*-mm#tzMFu?V0&O@oe>rm=(@Xcs0m$bp#LU z?=q<};pPUA{gb>Wc0$>adgA*NeeiFyh)WPoM@2D8=ry^*q6yGfJcRL85~d#`Z6x^q zCUKVg`Lh`YE9dafz0=~s*6LW}eTHfp9m)F5;wBOSh?U>P4ubfI%w9c#{t6Y8M!iR- zK=4xq;0AwH)qNaNLd1Kwb+g+J=rn?Kf<^v)*8)4~1c4ps3t7mZ205 zm`7H3$MZLIqjaEh3l|ti9unECy$_W~DuxznKPc%3_n9XNT62*#TJOP2 zyNl4$J>v#dL!h7TtmiVlJH`ljxSskpdJ6N<&sMn| zyj`Om7XR@c{Rlp&zlfWXQJqIdGSAB%%xf%uA`uuyFVC?8ig{|qNK8;s{UkmZ@&)`X z>1eHv6?N96JL!YWZlIYC3F2|nj<&E?WZ~(IP9T8bbyuUkfI$wRDlvC4nbF4E$2W%S zCh$4$B)3k(+w$N(pc2AAwMz(PH2r@A_Zm6B%{vAQjjvZ;#)#0TTi=Nn%PRJcjV)GE zsYVox|9C&PGQEKV?JD$GtV=w5dPA;XC!nrhr;zBhaioej*RKOFuj9B#GKX>K4zZ&5 zfsxGqttbk4Z1!V_YICcgw((n-fcj-j1kn_u9$j7jz7zgZGVB*SIEe->gx!h;0?pm+ zMLAzc>Jsw9TnP*v!*Koj(5(Jn&R+dGCNsXuc2~wmeeB@L>T(^>l8)CGzq}t`;-61u z9O(qZdqDNbtRV<6M*Te&eLzwJ3LN$`YjkJIj))hLQ(N~N7i)Tm z+#!My4C@$&4^MRJaaQVXMTYvjn6~yRQ!iW>WCkDv)PkSwlCxcm_P#4K9;B35+v z3zEz~CK?6|7nm53ZLeGU zJ9#|yD)pPUk#4#9&@MpR^-ee=dVc*hx8lw5GocN=gc@OXk`20m2+p&>N~*+ z)`F(SaUG7vo0k#Xv3nBj0JHb#V-9`%4%!}aj||Nh`zxF=;CX5kR&vZ`zPgMBPAEdo zpy0q6gsdhhN*>Rx%Q+JVr>eB0COTV6zMwo`eA`r1D3p?}MsaSxd+|IpoN80tu={){ z11W^pYg-E3Cvv$D1~(8JQD@LS_Vq=bN?dYeWb{pd)P`L#F{MRaY{f$SJ%kjL3Cg0C zUg<1O;LB#M!W)T^$RXyG%yy%Yi>OQR)H>&;xlkXtu-G2?j0;gMBG=qm$ zk1_JW++u`ua78KY{rX ztT+vdZqWrw{uu{wR7>y#J{RXmP(?~>t=*((g)i9U^Z+0 z!9Ep7k90(KQKzHEEwYO{lLH5wDg^N9k8okitVnX;6!LE+yz5fK1Kt9o;u9%!l=Hm4 zm|r7X&4BI@E+;)K&`u+p;i~&3`~WlKUIwb-|7X5sYHeDW7nJOT0@S|(q%_`r7kBYF zI0>g1AlbME+HFw|yacmQqI!$)_RJak7D?9{ad8ZLYa)}V_cICThCDR{E*PUr<$FKy zu2ky`k-f72JaD|P-~(PK}DYD4v3^ApO1X><YHvjfryn`6+dv{;786a7iY&?;FR(q4`>IyGtq}WK6gf% zojK>6;URSXimmRQ`FuF1&uq4D3^l|@L^w^l5W$#g;iRq;g@NHLi~eXzIEAC_l{I)e zJh!3;Bx9+xv3pXRz(@r-ayFY7Y)?P zZa>Fv8-lFgQTM6o2=`ucyZfu^3)j&uJ5s@RkP ziy8Yq3sf+W3gW`FrGieAo}!+`+|YW8Y(TRjMK7c>hX7e!-2!-dt~hDRZw-78AXNW_ z$?q`vuT1_7lmEu#zccwCNP2ToID~xUAbw|W+F1kzI@|3ocGN+Cy_4XG(8?NEN8zc^ zqEM)u7aqU%^v8S0S72Z>9Nv$QRC}*@HEyx?zKNbala;|#NOWNoeQ^Zypc5cDgF>ORZ@Eb7L5kLq4K8n(*F4f!1UTay- zdk4!1u+wfOmg8Fop4ao1??%uaG>pZ;Xcys}!gm{%0JA#?6_N8Ncz2u$VHO^`3M;t%wY?0xDzvxn*Cq--Aj zr{v{-?)$|_GtKyY`yK0@qGe`yY{UFP@5C6h8|qvXs(tLv#@mDt&*3IOl$e~&KzJqy zBfST!E3h^*ySAjT6OoHeugFvSY=VYk=6ZEtPU{bQ5O;@U@t}CX6nm#G5gn)#YQ3HA zM5v8a(U+FEW{E~8$FcP4jmpW;+Jx^Xj=&=z$DpnLHS)eiC{r7m%i!4cy<-r27xi)< z;L_+o07rEYCY%HrDu4(lj~I+#R=0=Ew;|DahM(X#!}GtLMe(tf2JoPy)Z4grc?Ku+RK}KS^;X*(3^xKa)TTEqzPMx{EIfmf%^JFNxs40Epg8} zd6D-DKE>34bwsYmE$et|T}J{%ERh97sagQf4|#9Q7YFEsV>zyYyZ^vM3@mCW zs>p=8yvi{lDX2*%zsrO)rU>F8;u8&Rfq9=sf)D7W{C|g=LW;1rj5%`-wuWiqEJ*ek zF8tc~J$lTT&zqC@F3mfzSmZLz;@f5s;kc4m> z*$)bB99CmZAZY|&GAs>qBCS52BhV)bX#}HUC2JF&pqxy;EVfi@)R!VP&6kA=kBwIF zUa5IH%tWM}nnq9Kb!hJTOA!1ujYVQ0llf_Lnj1%Y$8er^N7=*a(YNRxpi05yPE3D31HTZO+EIHlAiq%~&|+f60DfHvNA93JjcY literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py new file mode 100644 index 000000000..a7b16e2e0 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py @@ -0,0 +1,101 @@ +import logging +from typing import List, Optional, Tuple + +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 ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Bazaar(VersionControl): + name = "bzr" + dirname = ".bzr" + repo_name = "branch" + schemes = ( + "bzr+http", + "bzr+https", + "bzr+ssh", + "bzr+sftp", + "bzr+ftp", + "bzr+lp", + "bzr+file", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> 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("branch", 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: + cmd_args = make_command("pull", "-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:// readd 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/git.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 000000000..8d1d49937 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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 tuple(int(c) for c in match.groups()) + + @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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 000000000..2a005e0af --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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 [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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 000000000..89c8754ce --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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:// readd 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: 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 000000000..02bbf68e7 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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( + "Sorry, {!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp".format(url) + ) + # 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( + "The URL {!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL.".format(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("What to do? {}".format(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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/wheel_builder.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 000000000..d0663443b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,377 @@ +"""Orchestrator for building wheels from InstallRequirements. +""" + +import logging +import os.path +import re +import shutil +from typing import Any, Callable, 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, is_wheel_installed +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) + +BinaryAllowedPredicate = Callable[[InstallRequirement], bool] +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, + check_binary_allowed: BinaryAllowedPredicate, +) -> 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() + + if req.use_pep517: + return True + + if not check_binary_allowed(req): + logger.info( + "Skipping wheel build for %s, due to binaries being disabled for it.", + req.name, + ) + return False + + if not is_wheel_installed(): + # we don't build legacy requirements if wheel is not installed + logger.info( + "Using legacy 'setup.py install' for %s, " + "since package 'wheel' is not installed.", + req.name, + ) + return False + + return True + + +def should_build_for_wheel_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=True, check_binary_allowed=_always_true) + + +def should_build_for_install_command( + req: InstallRequirement, + check_binary_allowed: BinaryAllowedPredicate, +) -> bool: + return _should_build( + req, need_wheel=False, check_binary_allowed=check_binary_allowed + ) + + +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 _always_true(_: Any) -> bool: + return True + + +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( + "Wheel has unexpected file name: expected {!r}, " + "got {!r}".format(canonical_name, w.name), + ) + 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( + "Wheel has unexpected file name: expected {!r}, " + "got {!r}".format(dist_verstr, w.version), + ) + 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( + "Metadata 1.2 mandates PEP 440 version, " + "but {!r} is not".format(dist_verstr) + ) + + +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: + # 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__init__.py new file mode 100644 index 000000000..3843cb099 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,111 @@ +""" +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("html5lib") + 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("tenacity") + vendored("tomli") + vendored("urllib3") diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a22154d30decbb57ee82f7197ae7232dde9015a8 GIT binary patch literal 3000 zcmbuB-EQ1O6oCD=w%6G-X`B9}w8i~zTGpEoLIG6>(WIhM)e9@hR5 zY1d7z0unb!JVJ8G9go2?jJV^fPk_V~XS|bbRGLi%UU|Op%<=J=bIzPuIyo5_aBcqd z0HITc@uzw?e7W%O1>8Ka3{7Xx%sPB=UDnQ?aQT zXijLhG$%DrXijNPYo63RrFmL&M)Qp3SiE9nE>o1nx85n`)Pg8 zeOCPulvx?YTev`!g&7am0K=!OSPu~{VFnjzhIvTWLJ$rG4NHbWMuY{%NQn)HgQ0Xt zi;&YCi=LXoF9c>qLZTpem=VyD6+A;&D;s^8_h_G>a21CstpylHVV388k*pFNCIt$$ z2rb9}V*tfp3cB~y+G;0ZK*4VZWWOr?d2)sS#KB>Hy^E=VY zg&n5s1Irr(98IJdy{ZQS=|X(+L`Xl5izLT!EQ46D3i{qUp{ohu(j_!ioOo0(c!e>_ zq|FChdO1aXh=X()FG(h($FWF+U~`TPhI2}>oE#;C?& z^PI9xUM4B#9f(EJ#>ILDDZwD_?Nv%en&f3?exaQeg27i)0YPdD+I~}bsHjKFx9B0+ z8cqi(!5xI#uOCRZ+9?O3M~lU1VZOsNf!kooX0i^(Kst7GN_W6JMJD1nDhJX(SkomH zX(*IN%e1WXX3KP&)?d>T)8<8!orU45aVL7-BeInyX%9n2g8f8#DP|&D%cP%DLRpe0 z(nA>+V2gBBhf(SGL{65}h|RMXRTG*hr(2j;)1z+GX9Ogwvu}<>Wx~MA&EZ18i`B_d zH_}O7&AcAsB~HN}$bRXTxLjJeCnw9z^_XE!`wYS&TO~<^N*R=akY6&o4wKMh`1?NQ zf>);xdJ%q+;!=f(S0_h<2R^N4|23qSu~^+aaw>|!Qv}z6=hgM2<-ob0> zq`ERzQZR7wonu9!LJ-&^pziMRvgLq6J>;B>TgxFohDWP}uo1+otK%dHE-4q|WJclX z9IfX-CZY^sD628bQZX)QqZd>LFTI0ea7YYADec8Quve9jYUMw@7O7H3a1LinqB60% zF-8rmqrcV{8L8&R&qs%{c+8$qs-gq4ZXKg?WZRg{ zqZJA^sIDEOPDN^5=xbFX%Q5Yb&AVC-%9spPts!tmLB;b0E|N481KAKXCzG?f zN_ugOXgWNu*7~B);OJuTXVj36IQHk=srBy<54q3Pfyygr9HZs= fmT&r|)0lC6*S&Dv_HFh2zkjvXw`*yc&hP&KD;l#) literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1924463970706ff209409eee766fc4ee211ee0a GIT binary patch literal 38318 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c7d6c6cd34e2473cb713f89eedd88bf55c0997b2 GIT binary patch literal 66683 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 XO}neQ9c$1A8IVbDLMCL?dqI8!a**bD literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f4a3501820ccbcbc945a0d2aaa7c5d00de40fdb GIT binary patch literal 1666 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f0fad6075b31576a120a23c692ead9fffc1f65c6 GIT binary patch literal 1932 zcmah~&yU+g6rQmsj^ie~+ihW?6v?ePkVBGP!LdTXf>5O@LKF#+i{nZ=uCgcy? z)E@?$&td3KVd7*&IOSGCr`E`#APP*>ZnfLvL z@S`w-S)RQRQSN{7?Nfg&l^;*DL`+4R$LV=#q5D2sb1@EQN$$tm5B>Z?iI96b91A~A zds8u$YVPwm%43;^YToz$1azcJ3-(M#lL$BU2NElj=)*#g5rsr7Oyq`)Z0>Q!8#i>s zxWk)p(%>#{!MDS0fPbfGeHm(Tis&P&<`vfz#wm=y9GG%)O@5(EI$YA?-caUG*SQJ) zwNg?ot%7Nhj0<}r=1ZdPz;FKkeehDMiO#}E=m8J&uqV>z^C+BVgX5E4 zoaRdMnaR1A%igwe>F7dcJNzW^SVZ$E5d$uI)h3D02H8Bnkm)D=ljDJobI}7NlkgnC zWN|hKE=9_v8kpKe5)mZjrk~9V`&{IEm_1VA(5udds6N~bBkY~^gX=Y03OA~O6Y{oX zs)cK8#G-K-CNohq#m`x+gf=9VQyZ^sE%Li)jB)D$;ry-D*@~xJbb##F96MYjA{X~J zz7MKo%Bu+BuOD2m)6tj?C(lqYk@wmlpkO-(9q(VR{o)HVJiG`M8`3h8N#4@~956l_WqThuH)v_P~UC^u<wQFr5DRCP0bN4v<4M&FrVp@HK7yf9bS^!l zkN>SB-KC%n((m9W$jqyUfRrNEOQMd}n0Mjbf&cOUdhLn`XG?BJxaM*{50IU7?9)B#@*od(T+!JH2E5M?swj^J{QEuc^TS@-@d3p7XyudpV%RpJI#2b z`3K3w8OHJJi;MHOV3ZUF+MJoijapDH4V3d)6C=ynb*c(&K)Yzr9KNZP)b^FuQa2&$ zoz{%$IiqV1%}90MJXK7ki%%d*sZ$LfH(;zmBf2h@VA9_B1eN~h8gGZ>kB6J?Bl(k| z`hUxfWnBAht&fHq?(A9_4?!?0OK1)(e6|Z)D-6$y3i`f0WA#^}r)bhmzrJN#sn-U} z2a}bBEfNq*CIB=O%j8;0ON&ZnN5=^hR?BijEt4X#GPw`;Mk}fQ;ltSt(3*0{N=W`D zcmtWL?MjN1^!O+<%tCT^kQug^?T$I41ziD^Z3R4|vQmXjRo#ToE3Ama3kUl#&v0`6 bnG-uR$Nla4F-CD41^YE`ANdh#5vqRx;q>oS literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7b59c2e68c0bc62d11c9963a3189075fbb1373f6 GIT binary patch literal 8302 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 H)hGT7BI9Z; literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5ca64050d101165ceb063dc2617983e4e127d6e4 GIT binary patch literal 4337 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b9a9e3bada5f31db02544b88f91b1b5f3df75bd5 GIT binary patch literal 773 zcmZuvy^a$x5VrS!FPr1|sd$4e_V!LtA%sAoqDaG4X(GoqiFLbc%XT;=aw;fjcn2tX z2cBeGD&7EH#dwnw0Wp?8eKQ`9$Db|7;}ZmS{b|CI5TPI5IW~x)moUv!0EQTDP>W|6 zdmc1F8_q(E@-UBJ9tKNU%#x3I7P0UxDzl#$wwAbmI3aY!C$h6zHm?{_mTL&-uLZTk z()5aEka}l15bsZ5nl}IrGqgrJwde!tu){m-5>;5dOI+fx3tZ?T7rT_<&&e)x=u5x? zmwgQ|8hCiep{ZzE#{G!;hUVOorRh%$*Mc-+%XOcx_*x5N1?|u1zTbxHIcRDZHGfxb#GSpr<9RT!kE7zSZ^FA^h3dBPJ9r^XxL*gOznPak- zWq*|Rx9`(K>>JXj;NO0)Z=}99icoH9Ml7j#w-gW|ZiMXfe)>+Z?<tO_tD%5~`lR=N*%} z9`1P1uD;PkDX!1erY|N(pTNJcc?|Gil;Pm7k=zzpfulg5!E%{SucqG0SdYOUWYr_j k29U}r#|tAO@W)&%pYN!%GW!4w!RCF z3kXc|$SIgc833QNRz8ZTtfA4;zsGx_*1CUmwAz6fga#&o{s67E z%nh-%=5n!GvY;YRbkgw#%{b*){RBo@&!*=Hn;hsp2&}G^QL(NUZWxcRdbFnDI(<+m Jv7D9Xyi&Ww}Lt$JM_uin)A`n{TB zbu}RH9Q}Ta|7D$!f8pTb$cDDC)qZ@7Q-23Q}cDvENUv6#d#vm?ZrKEI0KiL4H zT`7jevCxeN-Fs3N5;i@oJ9aS=xpw>9e4QjKO3|{l*H1H%$3vl={;=Tq$>M`jvp)Zv z$ghLU|NOIkQplrn6epr=^H{|jB0orTA!M2#Z0r|>O5)+Dee>2vimu?}M5RT(p^A-{ znQK9VV)TFHWNBX{lOz*uE;g2fEZuL9CTdXR-`l)(vt6c2Y`{s5;sZF$C>^zd~QP)yr%v8pn!?;`%iyE33>VtAe{s~J%2Ez zF>y_t{{cFc!^xP+X64pj6W{bxI$h(8TNxd)8Kf%o?aUh5vpQifK|DK?RvpXA<<2Rc z`O2yMQ`mU|GG)8+W^V2psYJeCHD+!_D-tyz+DYV97Er&kfd-WebcI92x7^OOy%pzq zp~7(~uthwTQC1{JVVv_2J5iFwWf`jCK&XL`5>&)g_qJgT^@slIPmf^Rd}8{yAiVH& zx{vPN4j<%UA-Rws$NUtC3K!N3C&f4%j!P8|;$!i`Zae{oNtouPiUCIWX1E93Nu1B8 z!c>LFX&ged-F{(jh*Jx$xuh3ZT1_4NBF@I5PC{?aB;Non_0{=sbBGGgNAgWvTzN1Y z6;hdv5}{4|z#|e>$cb+B3n`9;tn=3-ZUa_LCqOy1Ra=3!OOf^Ew_v~gHj?ikc^kzw zFS}J*PoL8cKo-K@0B}LO zKI%l{I;H zK8rIasIX>oAC$QbzauXL(Y6#Z*O&2pokHC&#yK}(J=fSe5)=7DYB{_jP2s99UiefbTPe*;LTQ+p;r zNJRTbkq)8=0C)^{jz~A7=-1;ot5@W^utPVYzyPKWq0ANBph125J1FyGB%dHzn%(r! z_VPNA51<*_dxSZNwD<=9W^V`7v%E&&H`ff`D;7tq8&LfUbZSsV6ssTu(9(cWbo#3u zp~f-~v26CS942_33K5~geYkV;u&5V*zO%gXdv7kLR+tL1+27;vuq zrr`u%AOvdP2#v-vGm5t?Z9!lA_=9H2#N`D8n7CU9o=6oDaz%KcKcOKo(E}%-@@LR# zU6PydsbSSq;;}lB@u)7EPAwVvb@1i=5dJKf6PZZSeh1uFm)T|dn9M=5n;*DvriD|q f_d)IL53zF9p0PbZrzT_rV|9-`^PKfo^U?nRsv#nS literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..917d7ca0113751f471a0a09591cd222be1375733 GIT binary patch literal 1659 zcmZ`(!H(ND5G6&))_P@UlN3Q(v;~Wv1jJT?TzV+dB3q#C#fL6>F;ECvk-Jt_78R1- z%^J=rd+2AZj|=oa`VYGH)L-bOouO>lF}4IK4LKanyf-sc{eF+YxcL28{J{wM3m3b? zhsF0W%{TB7M9`AV=!8;~z0#X`6VJ)4WHW!_Q}QDbz6frJ2&DgkO#;z5A#wL_uqH8W zLQz~6rcjlWGb?Q|lOP|w&Wt?H@~O=6B!GsTgUkpS? zbZ;p53&jEKbVN@a!oMpb(T9I10*K>5)B8n=!nB^e9XBZBJcenIk|kY|6i}X!J3594 z{ajU5>@~iT<(clni94bX;P=m;$(7Onq>U-`fi!+&D=cP=99Bvn7ahlZEcB-nEqZiK;Q&>5KNG`H- z2&OLTB)ycCP&&ySxe6mF+l5Iqa*;aCsJ?E(G%c#arfDBZKsI`G@pwzvXrs^fnZq18 z<{}W5_T2U`q~dNuF?1irgI(9#bC!Zn2vKS z#?3$(FL!RSG?vU9Zd@O(2{}?8?`G0ben+?L1Yr#$2Yl1sMmJp}L{O$XG0(+mqbmSh<#lszPTeF;k zdNVM?NU@`rgU~u&ksru!;d|%}$gzhxrsQoPAk(q8`1vPU)>88`r8yL8hV{?0vgCFu zIpo{$qT(6Hsy~HxAMsy}*&98R(x)x;n?fawJEQaDgnncUMUVeEx1(xPC?{|YI|@r zc8tfgEeCuVwxx}Mg2~sg>G=1(y&yr^w#or^VU^8fnl`;OoxyWaq8z2^+j&;D8hwbj zW4mZ9sg|FoD1C~bt#2o}-U>j0RtD=dB%v3w9t*o6i#i&0 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): + cache_url = self.cache_url(request.url) + resp = self.serializer.loads(request, self.cache.get(cache_url)) + new_headers = {} + + if resp: + headers = 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_response(self, request, response, body=None, status_codes=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(response.headers) + + if "date" in response_headers: + date = calendar.timegm(parsedate_tz(response_headers["date"])) + 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) + + 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) - date + + expires_time = max(expires_time, 14 * 86400) + + logger.debug("etag object cached for {0} seconds".format(expires_time)) + logger.debug("Caching due to etag") + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=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, self.serializer.dumps(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: + date = calendar.timegm(parsedate_tz(response_headers["date"])) + # cache when there is a max-age > 0 + if "max-age" in cc and cc["max-age"] > 0: + logger.debug("Caching b/c date exists and max-age > 0") + expires_time = cc["max-age"] + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=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) - date + else: + expires_time = None + + logger.debug( + "Caching b/c of expires header. expires in {0} seconds".format( + expires_time + ) + ) + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body=body), + expires=expires_time, + ) + + def update_cached_response(self, request, response): + """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. + """ + cache_url = self.cache_url(request.url) + + cached_response = self.serializer.loads(request, self.cache.get(cache_url)) + + 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( + dict( + (k, v) + for k, v in response.headers.items() + 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, self.serializer.dumps(request, cached_response)) + + return cached_response diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 000000000..f5ed5f6f6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,111 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from tempfile import NamedTemporaryFile +import mmap + + +class CallbackFileWrapper(object): + """ + 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, callback): + self.__buf = NamedTemporaryFile("rb+", delete=True) + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name): + # 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): + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + return self.__fp.closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self): + 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=None): + data = 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): + data = self.__fp._safe_read(amt) + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 000000000..ebe4a96f5 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,139 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +import calendar +import time + +from email.utils import formatdate, parsedate, parsedate_tz + +from datetime import datetime, timedelta + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta, date=None): + date = date or datetime.utcnow() + return date + delta + + +def datetime_to_header(dt): + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic(object): + + def warning(self, response): + """ + 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): + """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): + 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): + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after(timedelta(days=1), date=datetime(*date[:6])) + 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): + self.delta = timedelta(**kw) + + def update_headers(self, response): + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response): + 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): + headers = 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 {} + + date = calendar.timegm(parsedate_tz(headers["date"])) + last_modified = parsedate(headers["last-modified"]) + if date is None or 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): + return None diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 000000000..b075df186 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,186 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +import base64 +import io +import json +import zlib + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict + +from .compat import HTTPResponse, pickle, text_type + + +def _b64_decode_bytes(b): + return base64.b64decode(b.encode("ascii")) + + +def _b64_decode_str(s): + return _b64_decode_bytes(s).decode("utf8") + + +_default_body_read = object() + + +class Serializer(object): + def dumps(self, request, response, body=None): + response_headers = 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) + + # NOTE: This is all a bit weird, but it's really important that on + # Python 2.x these objects are unicode and not str, even when + # they contain only ascii. The problem here is that msgpack + # understands the difference between unicode and bytes and we + # have it set to differentiate between them, however Python 2 + # doesn't know the difference. Forcing these to unicode will be + # enough to have msgpack know the difference. + data = { + u"response": { + u"body": body, + u"headers": dict( + (text_type(k), text_type(v)) for k, v in response.headers.items() + ), + u"status": response.status, + u"version": response.version, + u"reason": text_type(response.reason), + u"strict": response.strict, + u"decode_content": response.decode_content, + } + } + + # Construct our vary headers + data[u"vary"] = {} + if u"vary" in response_headers: + varied_headers = response_headers[u"vary"].split(",") + for header in varied_headers: + header = text_type(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = text_type(header_value) + data[u"vary"][header] = header_value + + return b",".join([b"cc=4", msgpack.dumps(data, use_bin_type=True)]) + + def loads(self, request, data): + # Short circuit if we've been given an empty set of data + if not data: + return + + # 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 + ver = ver.split(b"=", 1)[-1].decode("ascii") + + # Dispatch to the actual load method for the given version + try: + return getattr(self, "_loads_v{}".format(ver))(request, data) + + 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 + + def prepare_response(self, request, cached): + """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 + + # 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 + + body_raw = cached["response"].pop("body") + + headers = CaseInsensitiveDict(data=cached["response"]["headers"]) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body = io.BytesIO(body_raw) + 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")) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v0(self, request, data): + # 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 + + def _loads_v1(self, request, data): + try: + cached = pickle.loads(data) + except ValueError: + return + + return self.prepare_response(request, cached) + + def _loads_v2(self, request, data): + try: + cached = json.loads(zlib.decompress(data).decode("utf8")) + except (ValueError, zlib.error): + return + + # We need to decode the items that we've base64 encoded + cached["response"]["body"] = _b64_decode_bytes(cached["response"]["body"]) + cached["response"]["headers"] = dict( + (_b64_decode_str(k), _b64_decode_str(v)) + for k, v in cached["response"]["headers"].items() + ) + cached["response"]["reason"] = _b64_decode_str(cached["response"]["reason"]) + cached["vary"] = dict( + (_b64_decode_str(k), _b64_decode_str(v) if v is not None else v) + for k, v in cached["vary"].items() + ) + + return self.prepare_response(request, cached) + + def _loads_v3(self, request, data): + # 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 + + def _loads_v4(self, request, data): + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return + + return self.prepare_response(request, cached) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 000000000..b6ee7f203 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,33 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from .adapter import CacheControlAdapter +from .cache import DictCache + + +def CacheControl( + sess, + cache=None, + cache_etags=True, + serializer=None, + heuristic=None, + controller_class=None, + adapter_class=None, + cacheable_methods=None, +): + + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 000000000..8db1a0e55 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,3 @@ +from .core import contents, where + +__version__ = "2021.10.08" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 000000000..00376349e --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c695f5415bca6f6c96b696cfb52dcfbbd72a4f3 GIT binary patch literal 361 zcmZvY!Ait15QfvVN?BR(=qvP)rd=-{WD&f3@wS)HO=jEBHVH{|sZZdm_y#^pubzAb zPfqc$A`Z+y{LJw4F?PLP5v>08UTtxHEarDnG3}j4p$w+rJA&Tx&l|GUp z`%G|M&^edZL@+VTXU7gaysS3WrY`HMtZp8PY|fQK=9k`HkLq=J|Q-!9hhZHs3z0-5!iy9N(;jJJ0c=l{x8h}J_B{T7xq6|#-mnq`$r={qNVfOP1zTQxUel=Z6? zeAHLkGt~DPLYklZZad%;7h|_i#Wdy9zEr9~k?Af~Q+4Da%_hv9*Csv@KOdz=`1M2F zTE7WSwh)ApQF1VyHUQY!@k?uCD+eczjyX{{8wmg-8(wHzJhkw_8=7S zSJLZC;dXIt&8OAzkq9~hM<*NEp&49(cv*pXS%GMpL2A=9E4NGK$$)lxIHmZHus|ru Of|YDROIolwowGk|{iGHE literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fdeb47fdc6b8755a7e78cb7047179a543e6dc264 GIT binary patch literal 1635 zcmZux&yO256t+E1GMUW&=(d!qNRT3gltYrPxNxYTs}R8o6e7A(As1^pb~fIfj0ca? zZB|n=M&9`YfluhN!YeC0s*0-qkXL!_5{+uY zTcBStobwZZS|0_|#;Ac2Cs7D}i`Pr5rzpKok?`i9W8{86p>z+{+w;S6&3Ac&hnINN z;9KPhu)t@CZ}T1Svct&})Vg&pf>>xH$Fh^ngJ1q@L2xvYd2_1xED=pD%uJ_w(@aED zrn!ldBr;N^%|ylJM2(wqpjcUJZTwXL$*$ww3 zaxCI`oQN(L?W;v1pLMgjnW*%$&i=!0E{$jdlGErIz+^J(vgab@N_W?J=*CJ5NQNeW z-^C@TF!+e#V#nTL!^0taa&$2G>fpQY2YuG-|8R6;WP6*#20=vepoO(l=T%_JSq=7V zG6e~<>6MP_2_T11=~@xuJilLvN%r;lM`K=L!BcZ`!SS&)br&yXcu zp#_fME8y@3=eL1&XHC1aru`AWL05Th!Lp^0k$M zo_-JfTIy7Hjf_i>hPMWN2|ahR-osV=$v?&3TlsMH7x(5kY|Xu$y-R^1FAqT zkZi*QlmUuxPv9#LyjKRcw$6M3L+^o&z5@fO)N#G$t|;U}rT*qc`4%h+p>AXSpgiO* zXzfBo8CNlg;R9IPdjCZ%GFQ!I@zg~6TxykC4-{2agX3Xu%W0;xfm-cok*k@8m!gP? zcGycmJ8rh+tQ&`gbzf_x3->pJeN;Y8U%0H~pTa detector.MINIMUM_THRESHOLD: + charset_name = prober.charset_name + lower_charset_name = prober.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'): + if detector._has_win_bytes: + charset_name = detector.ISO_WIN_MAP.get(lower_charset_name, + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e59e4d4c1977a74a43c99083d98ae3e8c90b9698 GIT binary patch literal 1985 zcmd5-Pj4GV6yMo@UT>T*k<1Y(IKP^U#$LhH46VsE_O+0Kkf z9o7;e9JufeIM{IF$c=BncbF@ueuYX1-rJ3vq~gedk>>52nfKnjnR&n8vgKu0gEsu( zQTRti)BeQ4)uzMX1L$H0M5u)%)<&dF2qcyjthP0>+cweqT4?@E+NID6 z?eDd=6P7{;zU8po(yHzY0->rztvyMiuPGNnyhA1JNycH)Z6@hhwqzh_RaZ;Cj}{S2 zd|#EG?mlic4-cvq$E=hc=5ER@zJ3tL+=K;gf#~5Ti-zVn`3SoB7=+X^O_Fn6Z04E{ z+J-bjGBc%>Y3F24&dGN~64a-fw9mCE$;hmfX>&L_XwF=Nqv&V9xE{13e@_mmN0S~4 zqonV#<9ytQBPL#VBB>`NhlRSEyKJQa4@UWd4+~ou#yf%lg(-bDhDg+t%%jhPQIybn z;U*_(VRPx_bvo!IIvtPki$TD7FzIx1pO^P{pQmuYH1t^a1e83tMI3=n=%2gX@%l_| zdEZQ{W#vX9N`wp`4^@6;p{#r}RX&0UyPPww>|@49fm9|YSG1(KAe~0W!1Wj$zCu@8+Y&3qC|2Qj(ZZy zp(a`Fb>kw?fTjNuCytJ3Z_ZbL+p)*zE%(1&EwC~ZLb zB_ZRD-XP$RdBgXkB$B>gPbb`l^xwvcS_k2lTw)UFe>;W^Ux(!D*UAtbO3?E%RG|D9 zWr*c?QkL$?(opA7Uz_SMuIy-E-I*GhF%=B{-nh-ORZ)SRd^04%y-om|Z z_X$A5Is5G@Gyt1998xAk)QvB30_FF=0Sb5EP0pN1u-bzM@4a6&l(T@da(gT}jzR>b za^fKAkD*3hfcKgSRl%hk@_xum%I!EIr3_RHs06O%22PdtnxE|XAANbWt5$t1c|oP0a@GY7Rx5oNT)Bm{{pLY)|H;08 zwD)+owRiaGj;bttl3+xY6|+;yl?xkiDNZ9fP%Hi*5dLYD_yvh9HCu=N7tI5I|HIFe z0UIbgNK=3u-^6^3m?p{=j01P^+b~nL`5JsUB2JZx3lz#OQsnRA?0UZItL!n8*RGf& z25Zp87Km%W)e*QA9f7<;5XLTm*&#Z>+SGNJF^Th+{%yrtC61oQIjFj7ZM^uAEy%4P zL5n8iktnXVbnzd%{6nddkH0M6&xs-rb|q2dMt)HcBVfIlZewi;eACK$g+Ky^V^r4v E0s7b=TmS$7 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..719a3b265051dc8ec466099c82bc15f86a1f45f1 GIT binary patch literal 27264 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc47ab0d3525ed939ed994a9706be27aa7b1fe49 GIT binary patch literal 1215 zcmZ`(OK;Oa5Z?7GZse2_T8hLCPLXik3VK5bnxYDc6r|jISvlTqV%0BpH=tC#rBeAB z<=DT#PqD;_6X)JIF=Mw%3Us9%&+M${@y%x!olcv;I{w<{KO91SqOrUzFkZt}`ye>s zG$k1gDMj5#jm!+qS~pWGvqQVqt<=d{VT+Oj!fo!H5$*^&H$#`VhNS2Iq7bS_tA~SW zs*}B$7X3*iheCgp#Yjl-bo&KQ^6^kdS`4CilH>wTAMGXM-Tg#qnT)17De^aYl+IM5 zz}MM(cd*Nb12*`u|MqGU7*N`Hwi4HPFqKK1N43G1P+$?la3W-7OQD3mq?M&a zdIZlE#^N+mim^-b`+M-EkjJWwVxa;a>BtxP7?2ebp!P>aq2nkkgY6wZ$+ax_G)9bl zUHE@rZURk;@;`CX7l5#THFV-@~{eklI2k*dT?@OfUt~{&83XXckaw8yYM1rZ1s`FO5B~)O{07~ z1wedwMQ(t&)!>b{=ORV0FvhAjV;M{;McrfU(=x#mPH z(iBLx=zJBgVEZ)>pMate8<%+0aN5)`yR`NoVee(5>-L)&NyMk>HZ)cE*=EgWTa&n2 qtEale*@ngrL{Y$L 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..500c205132ade08a248f0f99f8334ac250581707 GIT binary patch literal 2987 zcmaJ@O>f&q5M7dzOv|#G<^xR-q}{ea5uve^Acp`!(I!pOUK+QsgC2AtR@{|Dn_;YRvi^q2x(Z$g{hIW4S*P&jz}!4FjYz(67seTtmMhL%ELsHQAIK z_z%^(Y{|_x?6uc#$~Me@R9t+N%Oo2)gLC8JcbuikaXsXQ9O0AFD{gaspmZ`k;(`y3 zFk#g5naX0thq=bsRA`&Tvs7q~Q3u@RKjhkhDS(u_>{xNBa6pS)TE!|kQ05j-EI&-r zln<4X+>V8vuge z<`mpO7#Pko8s<~24w8Ik<~v13F3qvwXyvs-*NO|=cNbWI&R~Dpsyh-b%!in^N-JZD zQh}v2n{QQ=+;2Ld-DeMXo|O>yafSq##`#d9Vj~_jac0LjIPssVkw}-7aZse?$#pa7 zf)v3IM4Ctrl@y=m@TcQM1T`8&E6vBk@PSgGL#oUs!$iq$>DkjKm0NSaGMU7P6LJr{ z6Hm)0Um(ElQsA6*&jH|^W~ySCjENt@Be#sQ6eF0G$|R!&OZf-pG=PJTE}5R@?#i1W+}h-Qgsa`7x&73!oombgfTbEy)D3@2hTnJAf1zQ9mI zu?lI;Aq>OKvv72%O7J=^1wTdX|8WY9(uMYCP4VS4brdhsb8(tgM>&s` zA;!*}tt4#$`MAn$N0NFGr!xc@F?$}a+Qo-DpO6X$!J=USdFX~995N>Bx~;K~%2!?V z9N>P0+uTNT>>aZRl^3n&T3<3e2e$UMZX54teC?RM4c{>j6&mHw-`1}1t{07Hf<#D* zb`;OFjwk>ks95zW{GwE4#YQ>r!n;^Y^U(;!vsfP~`xBm(F2X3v#6(3=(V$t3)RE`P zcKo7dR5~ntGkMSS1-Se7AHBm|@0+QJmFY=g#g@u|r%+v$zBr=hGE9X);vtQJkutR9lNqnhbi=BRkHsyWKmtdk9#y1yA+`3S)1Y zOncFR%4Dv4baq5)udL_pV&cBK z=$Qm{ViJsHdn6bn+-2{*?M|Rc>!R+;q7L!=-qUyyms~nR^~coRMDrbPLvV26>IxT} zBul|WukVv!8l!W}_7Fb_G+?m4@Y$f^a-%GU2MduFeb9}4s#J%w5y0K2a8s@Vu;e5>te&H zFker{>@;*8e~uQ%lfF#d1~qFmUvpFyUR*R?Y&*E3>4M#Xl>|~)Iu?s&re4^{O?{6+ zLwN0=1#K^QZQu85|6K6f=)JtLg5Jg6a~hM*PGjCb?OQdNX0zFKC;PyIPYRxzc&#Kf;B4)`n6uR_`GZ0HTF zEt(M(zgbE}s})7hXCj@Ku(c?Xc^pOhA{nH_(l@C2l$tNl6ya3oQ>E>ZGkr?9lStB( zS>&)GkdW29@JbklLD&uhKWKYyzEjuh1XowtY+}kxZ{&kLd?LE}Rlr5~P3iWx6jO%c LDZJkDF9-hu7G5kz literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6d099cc445b9aacd0d86c8ad0d57ce7dfcda6ff7 GIT binary patch literal 486 zcmZut%T59@6z$A(qb+_~~&x^=}b zxbhCfXpA?xr}yNX-kwxa>+xX|+O><@FGLUJEk(u2j`xRA~& zkCybnUWq-cpRD2Yojqy0cBbIqm?(Uafm%ofcvCI1nbw{c8^ea9Oe$}+*m94#GOx40 z=HsHJHvjA?Fs?faLV3-oF>W_0hgywlWp%IOm*zJhM-_sX?gpTz9 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..64549e85bff9285653a092994ca97f77f5432117 GIT binary patch literal 1222 zcmZ`(OHUgy5VrS~B@L8D(1&_!Pf;5dR4zzWUjg+%Ls6q%_F`?;CRyQq)OK10aSIat z8T80+=s($OPd#(%sWZDELLZLoo$;(^#^3jC^2Nm_fpPe?$6q!G`GL;-aKL#5Q*Xn< z38#{zG^7-5OIoQN+LdifCv`)&vK{HAjj%zq^ZwyGs|4AWLhn5d^ zKK6D$Y$w{NWH>QNp1sZ@In{}VV7r&|BpVG(WJEuT$4Mq&_ile8P4Z@HL~k6afiU|j z9|{GLrQZJ5<`x_DS^xd^&bt^&+!*$yr#Hb6B&3{#)+srloO0{L4{hOan>#0DMnf0u zs&BBpQ{s>i`)-uCsv3347%y=((8dBd^;1|3G4z8^`3# z#|S5onC^8JN>@(`p_B)QOP{eMOAKQQ6Dk+?7UBvIrc-61zsl!uV-W&(Bvk1tp@li8 zrK5#Bfad~Zv5d54?411i9(>8wp)R6W=zvEi>WXXx$O;8ecZYdy;wUYG^^I5=V?EG`5nbryFd9KKMN$Op zv&eX^f*7df!US;vj20EaYsFOgaP7x1H5yB_NqxITk5=Y5S-ZmRFLIEe9?T1rGp7K$ zwO6{;QMC+Ps)b8sRm&Z4%N8~QXtFFy#S_@MK;#|k=>B}o`Ir7%SGD0J*7SCBC8F&A zMSU4%qX}RVzzMYq%grlZg*!gV1UqA_Y%-PtTN3RSW1l9GtRod@r4Jy2xXe_oVA6ZA zl#7?Th=r6OwCk%c;VXFmN{f%c&tT!HZ^ix%{7*7p literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bdb2f1095522fe029d9bebd11b87222023365342 GIT binary patch literal 2669 zcmb7GOK;mo5GM7YD8_c2G{+X*01XfUwUo3sHz=$J?J$-pLz0U|7mDVtCB_t2*`*R# zKu^h`f2BX5Kz|FbJ?WfV-!m)8a%{&*SJ=^h+~Mrbn|yuU(qNqaT&F)7n)W+_iz5eM z2c{eXp;}Md)2L1}Z#9}>`kQPo12{`_fO86G0q3a!*ibkJxIj(7rowr^MQQ=I6gB|g zqHBQH6fV&9j#k>33ac7LgrAUP$cP=ZnY@&H*5kJ`3Z?bID7E!v&>a{1KRd+ODmckN#^u?~V2`Qz8h zYc5VD7?a5g^%H-K#e*zMN-@JHjyqsLoeoCr8NNJ1WOC4B2L^IXu7kFSvv zg(oaH3nEsbY-2JS1hJnR2Dw3ppj*Hd?wH` zCd_vj)25cwbJ?73>gxFw?;`UKO!)-JhrQb?P@`wkLa)ejEML=l7PFX9(^vu4x2Or; zFQyw!KORgV?smf{VPg8?QzHQ4P`yV^)Qgh5X3F#acpROPgcDy$>i3V95z<%$NWVW1 z41pOc@<3*|nxX!)O(b6eaZ76g(pnP*B)BJvK+?PQr;clPY_H=S95$U@$8MybEuVGU z)rQk`T5h$On$N0-Rpd;K{Z`wqx@o~}xnBL*ewwW|n`vS3QksQFs|cE}Ht;;W%N>~V z9uVb}95`n2Gxbefaa?iFGWi59Ai>rS1wV%9o2S^`ryBS?#m4YDyOLHS3({96gtWTW zT*Zdnwd-BS-Am2g){)!roNj8kt*&=qU#s*NAeNx$+ei?7T)_iB7($NC6?Ff%f=W{| znhUvHK0Z;;e5YG&chkJxZnxU0;dDD6Qt&>gR617>(G>;Jv^y~6*FbJcFlJJN7T#)a z^j>k1P5n&?Bs%BBw&4@34t@aHNKSYZ@z)SLs{BGNeiibG zBs_*TftC7_ab|e&0K;xMaE-GLQ(~4;9nwBC-QE@~nTS|!L$zlF$`FPaoPOah0hIUw z7a`R7Fjg19a#a?X5-M~`dYTO)c_EB2ZPL2~mUzJFtpt3B$79*bWv36W8mN5r4Yy=n z8_%X|?^V0b4|ZxExlL!^ZazOl6x-mM_=r5rIR#Z)|8-uKc)#RJ&*25*Lm zzAU!zlu|LnXjnrzw zpI3uYyq_AK=LfY`GtD=gJt#$wO4F*4c u0iPhMX{yq!%9pqgJj$Dj`?@1i^U3@xQm0MZI8_`FS_zFdJ7as3^{z8B zDI{`FsRS4Phg9Oy3wI>`lD#2LJ#j$dfDq!nSvzTxcC2~(X5O2R_ulWlaaONa4QM+* zF0*vTF#f>7)6Is#m(b-mK$yWuVhl+@2=ZoP4z0k_yp`C)QcxN?fio-zWj$vn?ywS6 zhSi`ttOd297kI?DX|NJ=9vaNy?3Ch4%SXJ{bt1<7P5mZ>6HQ-zQ!LW^>2CkXSXWKG5<(7lrsy?*MK`i}K z0)J0(>4*O1C}Z50(SQ&6Wj`E^L2X9*6fNz9p_rM}AaRx#tLihKLM8gL1# zrw1)+X(uwZ(+Yw-y3v9zkANsck+E@TZkuDm$WMT@zA-kaH8!?wRoZsGG{j}#t)sGX zRppR80*&Kw^>~cBHPBr;mU*XSb&!32ENc`ph9}KvI;-ggP3OkO(F>0Z#54rN>;Nol z2>_7xH2RwJc}eb#xDYkCf9_Hmr?H|muM`fZawt5I2(%LbeQUMT?zU-nb?x5W)s@xu zjog6{@stU4f+!<#QPsVD{oZxd6%`yhch)!B*E<3eHlGP0iuXC}O`~itRrv*4gqAZJ zK@Lf-^0|{Kye{TT?of%Tl$QjAMm5dcmOSa{`#mOkh0-VqrKI$+@z1ZV?=rC?M@U##4#|5BfVJpj26b?tNr7H_@szk>2;6_=xpt6Ot%Ed;5Z1jwMlDNmC{V3rr z#urWoNxan>?W;kSUR%7f)RM8{3viPiutBy)@u)@bgU2$_LSw=57GM-$4n<>ev@aUq zq7R|V*MZCthj?Tben_!9lb=TpUOAgwi_`E$Sdyj{c0ksXZozbhoNXsBs9urjCYGSyOicsLf_Y)L~N%AaM~nsKpTRBFMRw@Kns> z^ovMd0@5_aE6AgscohknDlQ?x4L*e~=YTXwmDt1ti>qKe(u0@I*{s2E%3w4e`!e*u z93Wr-p#L%HJSO@U@X;60#~z=ZdlT@{G#v6aE=Jcm=E0?Nhd!AkPTwROh*8NrVmBDN2lV;eCT_w>te_ZvK8S|I43W^g*hdxD20X z-lNgy3i2`SVF`@*8t6%Mo&zDU&4V}3`QWtvsmfS_b=WZi@@F7p0ua0Vz{DE@xAMRm zTcRfE)@7`OXQ5>GIA>khM1BCog?y<( z_8@f#=8_B4{I6=EMDzcee><}WFP;l6?o$BQ!#4r*0p5fvr9&u{3GyDLyL(|Wk(4QA zSwyKWUOI6Lr!9Co`7LWFS_Ma= z*q=>35yKVfm`AbJOpnfHEX>HjTi;@|7L26!yPP88qEaLXi$o+vT*75s`B_v-xT=&x zlmdMGHB#*)>_^_@;5M(5k71THVJF5Ub#32DVveurp&j9$Iy-eL+Hs zA88-2^gKmavR3_-qv$~=>H`v6P-(WwCRCa&vW*|(Pdp?Z;ZJ*9^NGttt#0y8?O4^$ zM>^@*s!hJ&VAP}%7ld_sM6WCRiuB!csr78PJgSeYnN2B_)TsJcP z```rL{#!Mixx!!>7&OZZ9aOgr73OvIMekHcx4<2b=^|CsO)HjZ zV|Vmrp=qV4a7P8yjmHwEHmEXvi!PM9k6Jn2Iji0>%ED6I(#uTuODJo1iMfCzxzjEf6G?BEq{!RYTFfXjBsu4@Zs;x>yAHt^W~rcS2v&aO1lZPUP)nmsaf$u^{L=NL<#j;8Y92cl!cld!lO~98i`I^3ttl!}^ zR{Kmq=yQQb|58H1GvuQuLjQnXHm#w*g%m=;7!uH50ucM8{fIB18vzJ06!P9vMAt$l ziPu6IA@Du;6K{l~A5&&LG|s$us4OL(nXw=y8W&4pOw{i@LJ$w7%(#l^PlzL%O6Z-C zN#Z-9`r%*_;S=PS#f9cP;u$5`9|AgZ# OK68E8>m}Cb%FTZgQxM4j literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f1cbc48fd5b869405afeaa393103c0a81b0cca62 GIT binary patch literal 2520 zcmZ`5%WfMtkmNqRl4V(O;>1ph!U38BLL)0dd*~qun#yV(h##;N6ctcx*GpPndmjpy zYGXkG3fM(@&kxv#9`X(S6JC4Dxwl@@8Lk}5X|pniGknYp=jm*2u1w%N_`Svds1ouQ z64Rdz#5XYVp8#;eX-pE@qY3LViZqL@#O~P!w_+!8d#=IlcqZ|Bp23~Cl$3jAgS+u; zQt4GFc}VyS_l^nogneZ7=6IgBf-#MGItY{_gVO8XrZD4{FsLAV#C!ccXpudWYc z6@7cCL~AdQ9ii~Fkg&7R%J|u}$t74_Za-^1*;_Z%dP#9 zDWODJ%02?xca(cXV4hK)nM-4GQpOXUbjTaJQJ>XLJ{$-sOTa{Xz8|HL@_p$5DLq^( zg~ptIo=6wzMLuOiKR_dn;QkEm)xyGr@0YbBMK07Es_k6FyD*o0Ka7Js_x(5IpFf+w zWbz;%1fj^AJWxSHqGQw+oX z!N7#s>flgT;KjFK%i_#Ue47k@%gGAiH>kNR+MoZHYrw@Hpu)GF0L8$hg1cM-jp!v91FAmcF z5Zr`;FP8yawE5X~h}xWe7|H&o{FuFDV0Ct4jp>*zlT-TA8bc24 zI|odD4m=cTfD(}xiWGL1ih1-D@RZP2EK)fK>$;pmf%S8&=n`v}cG}z9o7>urvwmMl z?QpR(?8_x&bOQmpP`ewOU4Ol;-QuQpA9p)Qd*5w7+gS4-ceT^$KG^Q+%Y6vOa44ln zVTRxY!Mf~2y(vhOHQL@4f=lRhAl|5=OKa_JyVZTX@lenAGv$jk8}|2nEHb)kcxLHt z#6=nkz0i5Ix!r9&>-ybC+if78uGJm6fZRMZ1n4L=jUYKDbB?{Jalcp1jIELnS?gCRgP1(f$_Zf^FJ?W7Ot;{gHOqm6?w`w;{<=v=PwIkAD zlAE|JB6vR8nN+wUH6)f$y-;}HgjZ7h=VE#)v`FkGQ!TXUs_y@xhklFw ewut2d}Kv7Cj?54ZBMH&g=1r%us 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c2ca4cd4f011fac9d5962b5fe30ba0f8abea0ee GIT binary patch literal 27268 zcmZwP1<+S@_bqT*K)O-7yAkQ`?vl=j?nXhnySqWUOS%LlL_k4lP>z9$g;@7|e*Zgj z@7%f0yxSdXuf6vEp2tAu?VB)R{Al4HJttT0JYi(CXpaT|_aD*2phEb+fk{HsIa;e| zoujvk-Z@6A7@cD_j+Q%Cw=f(2@vMAQw3N}J zOes_!h2x@Tg~Fqzsg{?UEu6!YjSz&(1+{hDV^)FOHKq(P^sk$qe67>zUl`y>ZJNM8S~7zNN!BK{T1ed zzauyc&JU}>OyLN7j0(Nrif|A?S$Ny&>k^U%6@>3-TY&VqJq{UuSno2`^TG)rW0`8< z4WbqT*TvG%@EULnNn2!i1L2Sm96aZBrT(eoyauv0Tq~-IWtv#}SEQ>|tI5?vdJ1V( zy-Qr9KB~RKg7*Dfb)fJCX+oDUj}S*d^wEC2Wu2p06Y$Z#vV>lcm)Wmx4?oU(jDTi-LEV6|V6@u7OLg zgG-8Ut5^6EWD}~);pZ5&G@KR;4#7eA6CQr;aCsDVdvFKH*``h_!s zHoTSE-l8B%?<=pG6W^P1NzA>^OXl6;FmL;s-VA$#ya=*~q*1M@pC;Tz^E)~|@zLxz z{39D>BxpTI3wz`;;~*KI$z8-!D4Z6Y5oQX(Q8i54Wx?G{7H^pu%eNqT%~+48`4UBiqPcDH3#!uvaHL*TlE=g_e&tOhMm9VO#850KR!D?=~1p%CA+ z#i1805Z<7w2izmLE55|Ksz+7VntLfcNswJGyhFIT3$0Vgrei&CLui7Wsy7|ys`cx^ zMUk5!6dsg7FrTRfcMT*n^^Yky?ZmOIFxGKygVd$!FNNG#8mKn4^y6@DkOtK@xV>Ix zyc=XEXrFLD^QmPrfsDcOm)=agnnr%Z6eah9!_HStf@MJH1>vyp=h6x<44UR^0@5fU3>BUy%NUG`rp$Had$mzP8s8Y=QfL zStCsC1^)y&7|soH@V2Vv)Ul2C23$@zScdtfvlj?)!5-l4MkclDcHkN|-w}Gjtw@#d z&nV3nvIJS>&Ul_Gw#-3fMUWR^TQFVqV}&QC?Zmf>X=-kDGLooX=Y48q0@rP5{RYCu za5<6A;vEhL1)Y)p7alAq6na55;Z?i+h$;{DbM)>uD3P{3yo_>JKx&bjOveu3ruK-Y z@D=YczM7V9M8;an>`^VFV=t=43Z>*qko!4v!%5!I_9j!(jAurU=B4q8-ctBYI2Bbh zxd!N);LC_Fx3IFdXijny=_I)vK9GZOpJT~wttIX<1FpB+KGL4L^9H%4s{7?);VTAm z-rQSA{~@D~Tpm=(bbPLGK*xKe9Z;BIczwgy@eZnf0XJK90)o7bn9H;b4)Lq-Iq-Ze zO=-?W)z?gMTej5OgOe#_&w*?48o=$KZy*`PF;|pp zMr1*%dYW;CsskWNKzhk#HZ30TMP5aPLoV4~ZZF6`I(CMFf=z~3lv}U*uR>fh(l8%V zaM;LioMa+tyXDEC;bnK(Ne1?Lwat)mN5ot~!RQX~2hsgP7&O zLF56#YA_n#d@MbTd>iC0f}=)$$gI$DETVup!Q2DMuOqi=Z^M5f{4NE}E%SBcLULny zN90cG?cm7{P?gcN2CiEh?l*k-P#q`es={Ts5=>6vU>)C5KhkbJb$l1OknlaY=icow zTuJ78)np29Dvag*YsOltP7(CJa2tX#s)a*ba6POGYelJElA&W za(`6aD~v{Des_tj_ke0c9eH?vASi&jAc9NUjxoOoQxjPzWC@BA8CM~TGi_4HBW#2! zS!jaoAkS!Sj`WVDzhnx+#nsW#f(2;t>p)SHyiuC45G>XE74Ti=9`kX8URw+nrRbzj@Jm>=*SGGBlkvUw|zM{-RN#6UmPGTV`UjPF-VuZLSMJgn_E zxj44`4)ZGD)*&RQPxJ4pQ*`X3uf1vsW*FwS9`6s3m&`IFr`YHRs{RwcqxUgY-=lxR zd&+#xe8Y63Wis%3tM)PIkX(F&+M!y&dpGogFQ{54`~hDfa~A`jprwPtbA{pbwK4pe z83FSx^QVqa!wUr=Q@FI;2Ds85>KnPK!u5sgm+6p09KQas&0=0r?qUOWsciVvyDo z-%y3V!k-mZdHol>UzlH+!bmg172#b8&lGecvY)nwzJqm?HpTZ+ZU~l7HQ>bABP_FW6|5pRRL zEDTo-j)2s0h)&v$SpTG#j%S(LdWRy-!*mck7Ys3{(BksZ8a^L z!r#1CIj z?xsR~R9lfwR)`Zy3(nbhzA(GC*k;@n{$u3pIubAmnTuW~5$|8s#JnWTyij-$DhvOP z?GSI7u^v@1sxG_1D7{I6x2ZO^YBFIgRR1yUJjFQ+CRf-1@(nE~sBe!Yg+fYZq6N33 znx?I&EmJ9^W=iWAV0ao~TILO=gpQV|>R>MIbccC&uzbn93HKWMbfFiFu~riczQg;T zs-u=k4_5}kGX%{jC~o9@kPNC{xyDA}hdTaJ&8UzCco>n{^`>zlQW+!~-d3qn5l5 z9=;=!OWR^AyzUygg?X5C!sPZ%ZQt0Ts^Ao_6a_mS>@CBOlF^pZxTeK4ZDQnLHqT|t z^9JQbninn>NNi>px%m|0=`En6J4ity^DD%0jn@pHVt9PGW=6(AutP_JP*Bia^$KYt z^cK*Yii~lp|ESItmeKo?_XAU!f`Y*19p^7{;~JUBNq%>OLaJ}u_a^4o%)Myy;;7z2 zumrfBLAebotfL4M4^>g#aBHOx`GVviR}DWNIlGP8qACWr!Hh#@l&2+|L3z!12Y91u zakzH)nlrbU1XxCZyro(QF12ecm21OfF#MU}{j602ZWG)c^luB>!j)luA*h)`Nt+)g z=q<)Cenr&`M+QStjTUzDzHLp5L32V{O5&^Frn?ZtcZiC@*LgRrwMy?sT1o+T(OVcx zA_R$@Kf~c=;`BKMKVG`9_)E}WLE^oI%C4{B%m0=zOm*tJL*4=QeAQ$27@imH! z)Z5Z~Bt=@2g0I}_Yq$jDZU%YF@T2HE+qWFj9}(Qq(M7Jj+?3vpQTV0OK-U;z!f4l z&|AuJmf=f+FFsRIHM!n}z>Ao%df!Bq75ER&Q%~-s@BER892A82 z3jakLK|-fHinOcal%}AHjzkJMv|Ugbg>;3EyKoDuwFg+~PaE0+``8B>L{ z{HWemxP!Smmd-}rMV~%yN`?RQj!j7)E2T!jq0rwa9%ADK~1 zMumOk-ojTOb9rGiBimE;(u_=St5x5nIj$9kGAC8jQu>!_1-+SpKNoILEe)4A^nwhL zA4G%R(9ztCZ{f1&xZ*f1Q%Bw%5^t>ByACmjl5Uw#=e;q^nJhT+LcDKyrd~(s2o{Gu+z* z%|x1x+3yuTv3YCXK}op-atE2tdRyUpg|CZnAC?d4`$D0DwK8kVWm*>MyTW}I@&&&V zl-?esG+bH_pQ}|sWmXRYYvs>FExhT1-R;X*_7=wPY`KJnN%{avL4*7z0I{IK94AP&V zA(p-fa$QGkCJzPm@bv}m$ETPJq2JMW70%#| zCGrIDK)spC7;c3ddh44TPjx%oB!x$M^HSA7wFlfyrkuHRoaq4bFZz>uGlU9)mgK&V zrJ_%7kZHT&2J^C$76;1?kRfv8c$=JL1ePMgp$hp7KTYYq&;mRxd`5L9!a^7wiIe`%xKs$Ix9t?;?R2s0iyNn<0MFgt;-Tk8uW zM}ia#Wdwhiagd-aPO^#VXiz~iZUeWs;0n3paD@~G(|m-gA#$53Scbl^>Jimb6#Rwn zC|pxAcHzrI^BHmr3af_n!3ShCMzztjw@quMI*QWKOf@s|>P=voZ%oVVi0`TvF*l!T zHH8M|PQ}vON!|mAk8cdG3w;AsPa&vG-&ukNXiFz|%(St4* zY33QH@d{FPM%!HkZy{~2T2V&{$LWjywgvCd*MKRcZ90O&yq%`?0htlzf>+^p5OiP~ z`XY*e%mnU-suY4$p%<)HZQz`gw#`=f zfQ*~WDBx-!)tMGHnuBjHv))NI!+lIk8w7W#FNXevj-}>~4lfyOCh{{KUxE||nTI6@ z$W#j6CMcfj`EYLVm5zT1`Wf?l;FCyK+HIF*>KJ|q>1DYEAPbqVu*}lilIHlrMGDd3 z7V{2kD~9ED)k;<^Nx|C+OF)(~%b4ZNeS9@2xT~WeRYeJJWkzde1>8N=zRW4$ukn?_ zT*#+<&&WQ!cXV7v(1v#!xGisG$P#>S{WEg2&AmY1D)g(FnhIx`KhdA#l{RCIYB6_N z%PSM+g5OY;RW0qIw%~h{g2cY@9g!DwmlmF4j_NwSiNZo~L2q%I+mW_j;lABg>b*_< zpL*}`Zt_O+3K>++$bP`J=-Z%oBU3xX1z{@u*FG=(n3n@zHCi4pw`tkw#Ag&9V9Ba5 z)r{8YH%0hNyA<9a=!)g_FbvA^`sZzB+cPb~Li9Tqj-$cTRwGAeMe1 zE*M~${}8+#R)bH4f7op|f<4Rxa}zTasc#6pidWeR`KXU3+zWh3ZXYkT-5$EeI|S9C z^oZeu!w&x`HT-*{wuiJ_P~ESsB$3}E{RKfKuXRA7m8FlN`oKo-MHHxhr1uJNdTl*; zo$WgVxR8g7 z|A0B2LG_T9mRpUbDuQavOVwOqE?8szrKFXCJ8saI2&%)?RVb@4)cv}dF+uKKN(a$W z9@TBRm)cI)Erw}>oT;~5R=9J_WVpPjW*Rh0wL8+IR=BQXZU_msQ1vEoYu6ZqufAnI zz_LefrRtYhVyZqCR^ok#>H+3#z=K>emV>QP-3^zD$PTKXAlS+~rmcphlhF6R!gRR% z7HlZYf~5>_BBY%-CzyUaF_9a9%F4-m$29 zD^$RoB%}&nn%mI|7ZJ?1-~}B?ur!i;z`Mko8LA43>-Y#{pTb4nVgz+;9uL7#)8ZQ5 z$Fw=tx)kDq6MBn*)Sx*jf{%rD^{(T+?cU4<`g09GYYvfg`251}4YXvuv+<|g~m}}a$E5sme0$hWTCFtTBA7l9x zrMZnjzCZ!TInHj3r zX&It-C{qcfJLdibT@bD!Xbf-}GUj8>!$iR~rXY)I6JBN0%IVE5m&~AHn47AO^Pu-= z*@X06;eFwH9bbif!3YoVK(3jNy$Tyldnk9+BUg5a+@$qKFrK+fOLH9w-QY88J<{=* zsY2BgUe(YGnwU|I*N=DCjHjwu4a!RRaGH+^zqZ0(AYX%2NA(SFgu)Jm_uwuP^bZ;H zD0rwa$p^AXp|S8euLY6G^{$e8hU%t~0dKJ06sl#B)-Y`|ZwYWaeE$JAvUGZUsT4MQ znG~xY_&D@}dBUU)@f5hDhk76Ql_U0W@i7R-MowbdHN(FK{!REh)5f&6%pbzZM84#8 z!t$w(b4dS`OF-ZI2)=ihZ(O$n^`)4?ayJmXZ{!x?^^hQ_NNIPFOpooK zZeI;cBH>gcJAjO);Fj@tAi(nxU!`_6DsZPvMfyo{Zc2?mt~ z?gEzx?gx;>yd=y-kO_KEh6;iotdLSz&;1hXodj}+s;*eNF%vit$}JQeA6iHh2TqJLxtA7o|vbr_Ezn~G*a!$>qPj!rX@0M z2HfnBIrz&t8^g7*Od1N(GAYe{2XkKD&$j%Ew<+Q&)HJe*-lh=~7J|$8-awGb3eQaI z1?P8gMOC5TP1STvdZr(J8F>A9vBS2YCzkCr_tra;-0=u%J4r_1e>_xr7f%^_!Ac!J z3!BmMw(tI19hrbv+id{#6{v3xGQhO&Kq_miu6igm!CF)&%}ppbhvv4XO#uGLMvp`K z;BB};3dyJ{rQ-|U8*rJ;ov62u!a&mwP?bgDdyuTWY)l*H90an%(%I#{alahA0n`sx z%_+>Qkc*d_ndLZL+4bB7po#GvAGiCn^f^#ngi9XI4JLT96cm&scX;Hm;SGX}3aR9#INc*uBUBqvu%8(z zoM-MdxU&T1GNYZ5Ul>$|=8}fbhwJ6KGflgR;Eu;@hdC3ujS;jL_T=4#YmIL{xqDC@ zRG0)jOraF!S#YI!WthyW*?`Lm|1o0}rRnwlr%+Czv+yV2lnBbpb)hP?WoA+On3g9@ zDv$+MIHdYiE`tSsMlc$E1q2nDO3XR*1+cuU+CfKskDO59DVDEz?cJ)Q>Jri>nLO(qm-LY)B7!v(U~-1E;vm~9&L4XMB&>Z zyeI5r#vsEVTCgs@ddy>_W8n^CUSf}Ua8s<1#)bX@Sq9RTv~f0C3fEGhGv+SL@=$J& zhm15vUZcLg88xts*Ory=2imeSrHz~}_XzVDBbOWWHT5;My(6rkIsw5%=05s?2(sz@ zm1$s5L*_T(ZXGjtjpTaZYs_oH+((+1`Gm-(a+5GO;~k;uw8PeMh~KefhMQ+@t%#~n zX;93n&2@aEBbLvsg|H>liaF}ot$F3h9csazv~+c_lRC~TewXL!FR9>{S5TILGB8d`3aa#RUf&{z&rI0Hu71dV2_!RTQL`G)I}kO z)4gQ+>U{?H4?$^F7ev5qEf2$_R}3iI%d)b@jyK5Ec9 zC#gu}aNv{7w+Nbsx!`AQqjZdB-esye-G_Sn!#yDFV|)v-d?z>8S}_z>lAE5EH!XNt zZiTzNhpHcMrQG-0Dk0bi+}B#sg>!utV}Qp-IutT$%Wvcp>Idk3Uv-sf{jJa+?jhz} zmi`jy0J+s5 zKfn!EJ*syiswR<7O0F)dkvb+RETC_YjtL++-S3gM)y!m&S4h9N`4r()W*V~`_$R`j z8s5#zw8Apfpe+V1GN@C84?z!C%Zsm{xzn-CVAk1an6_^be8eoWTX&@MJjHxwvXN6U z??o^X=}ZLQ!sWwUmX| zCTKRuP`L#J%@NLJmb$@rRy}6gzr4Q)8i9Ep$U+?{jl7JxoQ~(HDo1YbIR6oTO5sO^ zk$T@$XoYVLZ$7F8%wmETAzjRTXYN_Mbuc3p?}M0%N?6V-tkO2xO&jpm>$uGO zUUh?T85xO;d>8Hm)r2(HGwnUOPIAlP(#mbrwuu>|T0?arlahic%=7VW2HC>=O4V=7 z2g2A6u~o-b;WlPFvxDh@V54(xV)i4=!z}ZGY?j-?{Odwb949@qBBIaBbSH8f`VZjR z@pfX~6`G)+zoO4FqYS>?3h#oH(A!g?3BElF(e2U3H8RLGWjboxYQ`YXvrBcXLv$nZ zZ`Bc2z2z1Di-?39r5a7)w!&WYlYwU;*dDnCxhw545^f*JerBoO=yHY3okrQ`yL~z~`7=My@b&wSA*>j0QQcT3+=6?;|FbJyzK5 zqHsJd-GMI&uOX;u!HEZu~bBQoOe?0S6+Va zdjsw!v&)A$*^K8Pi&bwayn%10j!%f(WB5LE7n%Dx$lqRnTLee$61|%#{X%uS!foDF zZ`2Ugk7g`|tFO9C+Z4mMXnSGCdq|fvQx!(Y)h6-`@28L;*yuxVjr3=HwFtUn&^2BK zxxK&z4Eg}`9EX^PWgAEp8)c9i?S2K}D&U)D!{8V7PZ?qa_Ow_jJHEBCXp}X0=Z8RER*{s%mq8# zidX@4{SD14(gR>&7z^ljA8wgS~c%lr#+#Fqc@ zqJ_T{9TlC4!Ng=%0#_k7RwQ(snpg(%-lX6F;Rl%&_IRM0$=pM7+w`6!Z567aya{?o zx>_{V_n5;>Y%}&L9HpwDL-cXAe5!F&Ut{7j*W}{y0=UDb9bw|j9p$~wON%c7FCi1x zaf(q|3G-^I5-F_VHLy`})fc=qzU*1NGnC(>d*^@d$&(@{G-|oRdV2U=Kf)Y%cPy+9iwUz z+@-E^3xubA5tK`hlZ-Yquo7Z=Y1 zoR>N2R;RIiZr>_;PswdTl@DYtmd(r?dN;zIM3tCVTP{Cb0j3~R%I2r6P)Jyd_W`~* z+6v2!()QBaQ*!gr``s;3Tj91b-wLY|p2vxcXxr;TGyV7_b&~CHuOT?i)KC}(oDuUG zxwuSG3U&aWQP^VIPGM1`$xxkzJI9o!z8`(39iogdfxCRoyutj50ROM zZwcqZ)ekQeJoL%OS1qCNHgg7ZN#0prDc*Yfe(9#Ah39pgG2=Wf=OS7Z=D0y}np^59 zD_4$5r;wV0@(}_Z6?heyO3WI|e5dUg=CZ=?b^PRNQ<=VYTPfESt=k$ zybrR9sf_t`a;xyB0cSO1I&ZBR<(L`5svyg3`O2Vb!dAdlQSI_5GvR&^wpPf->@)I$ z8P#=^$CrYj=WxHe(5K{9NBT3(9|7+-r~+^eZBKPn6uyJBja%TV!3}yV zG4Z&T!D^j71=flDszh9JKST_Y%sw#+(GsD3Kf9b_EM{aw5? z(ha5^HTN>yhrAY^VnJji?=>CgdGpXmVd=r_H{&|yD|*vgtEWOQ<}-!c^u5dUma9&4 zdn5Y@hg-iNk#pSdtgx>_IrXjVyf%a{{E@T!l&-Fe4uB~mc+(Y3KURJqB!pF=xAN3-+ zn+AP~bSd02W;s*aTIZM*!j;S_rkmVq-Wui!zV33jP?d9%wF(7X<8!%lzJqmg>zSt@ z8+af1UQ&VNcCbF-TEU>mKclOrR!HaAn<8Lm>TC0xOikgBmi|My86-V$e`|fA_cPZW z5V;1kCBhP#;Hnv0h1-~Z2%g&Gx~U{ zkh!}Qb~AgJ?Wleaaly67aJbt@ALFa#B(^`7sABl1J4yaGqGF{wRogYL*{bTD zH2;&ST%%&6c1`NHtJbJ$!*=x>RjJx&OSA#8LnRUO>TtoKeFyX$*snvUE&~g8?l7oB z{w{sGMfK^@Wk6J)ZuvX*?K`Mbhu-}P7Al-Ss?VSSeLD~CG$^WXpZtUR=Kp`e|3lQh zZ@>Q!Pp_!1T{;c#)T>Lu&Rz2VpP*M%$AbNa59;2xPtgK}3l$s~HK69S&V2_I?9{!(fX-b873>m@AKG<5m;MF%4Zjn&Oz%)nuP#2uXnvDRv{-p# J#f%%{e*qoW^0xp0 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1bf94152b6c854489cffd303bec0961dc41c1b0a GIT binary patch literal 1223 zcmZ`(OK;RL5VrH$bV*BDN(JHsCsra&D>xzqY%4BoLE0juTr6+w?nZSU*j}n#^|qDD z&nUjT7UfRkuJbc{1a1=JCy!6wAwP1nb~ykNxlv`e}^C<$&=Dw%P{4 z5W@mxIL6rMmasBAwrkxMPUgmLtvkZYT5$`bw}`pSJ4Vdocy7l&YYkA>|Aiq`7gy{3 ziO}hrsph>gl>@Fn$YRJPcsjj;rTJ)}spfr}jMJRM>4Tk*y}eJ{snRkXPIOx2uX8G< zDplZIshwodC;j)^JMR)mac$WbmU<2fM=@q7wocGKW|&#Wer$7x*~~dca~!*%*L8#L zogfFrrtVgCtIp9>nV2Rnm(fiEv(-}&8fkol=GLk84Pm5h?aaX@uJ+~#o~KhM3 z5E$=vmnv6HN-iag098IAX`X6AqzNcpbGDS!kPwwgGm`2aTfl)(1H_EW%9UJkeTFMX zaj_52B|;KGl_KN}{r(;u7VBLJ66Ksy{3g-&QzMw?q={`@UiQp0A;guoMVN_1_xX7PvY;8s=)jWhs4(JGqDbq3{UwF<6 z87065#&yIY{b5;iVxyc&AKHElTNz~qx3P}{JX>3s$;Ksa{|v_rs0aJpV8<|kZtc!I zcs1PnBv;`~21e9cE$)C>1*Q^!ljJnxPvGR-0^wM*`-@2zFWs0}cHm7&T6udkJ*4@~ zNqs@{(F8y-Jd$f5uJ?H9?)ru&rZPgRHX#{|OBg*MmfgX%$FTNxHoR!RnUgdCRh@>b%6z_A w^ZC|Hu2$>OE)cijvIkKV5Ze&F4!uy#)inGUO^YwhFqQdh1rGzDK!De*KMLbDNdN!< literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1a075047410dfc240f0fb81afc6194ba14ec97a GIT binary patch literal 19192 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 HNxc67b8@7x literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..74613febba0b410aa787b472026d7ade7eb3826d GIT binary patch literal 1231 zcmZ`(OK;Oa5Z?7GZse8{wIJXGCnAx$4~_^yQ`8G7NV)m4a=hEb>iWU%29&C|R4PBC z9Qz;mCBAav+#4rm>{d++U1`TNJL`FT^V!Ana+|<9`rhZ2N60TU7MBCYJJ@;;1SgzI zlF^7#)GcXcc4XJOEuGAb+*)^}m$jl6CHsWC+&d-Q6LfAzK5q?4*Z)l+RF_td22*L$ z-I)>nNvwv#d{)IsDDZUp1yA$w(8NXz;$)KM0#2Xq?{4pGZSSSpsB|#2Q z2JeH$%Z39s__X)oV**KTE&IySuR#$cqMSt589Ah!a_iKOY~gU5JEvq$BNz0#a?rgq z;*ba{Z&g8)q$xDPKCTz)m;twb1;P+RPsrRlw|)>xjBT7b*vvKFoWQenLe72kZ~~F( zL3gQg^|Ta9!4yd4GnVG5VN78_<>J{=Qlr9jrf@3NI$uD7#R$c*P?f8M7UqIhju!F| zo=c1+GS-^03-ae@_^nV!x{MQ{Lmr#BC-O1iD-;0U8x@5~;;alew|Z%ARKceS;@mSu z@9yO$(4;8;6Gx_pBAF#pgk1D)44IC?a%Lt)zO%8l8S2!C9#nD^kD-_{EkpKIeGN8uP;tz;~Ket#)Bj3!@flHI0e|PgUV~( zRjY8O0u;4Yi-%xV0oDS5vOLbjOE|f-KseU%lUrFAZ{3?&b>LOZ+Ug^xwYWd6FXMbX z1z?a%Y8}L#Hn06%AIXBnF;=x1%V1^_^?#C8$x>!MFYE$?RDsdYHkMNziC>0i}Td@_X?f`K!bp;S$_eYa5K>W literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d043851e7904f7e74a5edb6e384f9ea34a7366ab GIT binary patch literal 3108 zcmZuzNpBlB6eef$NFFP;W5-*XCP2EVsG=;$*0gCHTTP6{au7K!FhDVohm<_FJfm>N zN$n~?ff#6iLr)ISOD;jtLr*>SSMXN!lonlpE{9yw_c)Rw$r*tkAIV4RBi}+sBO_S? z-{#i~EO&vBU$D{p8PK=}C4Lux5k?zii@KDetTnVP-PI|%L72{rJ;Dr5AL*{a%nHd{ z&nQgEQ#rD*UKJId+!oOq7trCL6omCkQcbuIN`0T+ZpHf`aN<%%T#ZpzXBw=myCySS zi<#~avs{}Exfy1=S(b5!S=M#fusgyWH^)ZYLoDZxeno1O9b%(v z0rg=v$&Nrh!KT4EHBm9BzC&FI{eZ@GruD2qr-Ni;1TiIczce2-qPIb=yfXOwOyMT)v1z=!sFGb2UkTr#1 zc5q9*{0vmcb9y{)h{GU>34}?6BM7qy$GY%3N;3f8LWykv#n8yo-SIwd%0zxAMnO;c zV3!!~uBC{zkP^ghg$V4-Yhns2F^#e==Ae=zZFfpTM>?rDq^$vNatu7f+lm-(fHPqp ziJ!s}F*>V7f#tD2mIsu5WZ3yowxD#65*cqm%xqu{yf<_xM$Nq6WpB#NM@!}TTi(a> zA9cj#(sD;E-z`f!Rk&S}!>P1dnO|IbqNRJK{@{-6AWq}wd!P~{pB%NR^33x0-;r?xnYPaDl6VJ}9OUZ&lQ0TX&Od;H;+!2; zoM-xuzgM%5H~I~lO!58>1UP5NTpQY^CNfx8pl4ri(Z}>5ZP7*Y+2TX31=%0QFQQFA z(!~YPF`;EWrXt^h1viG6c9Cer8wyXt800oJ26`}-X^&;XBkdJ5vD~x5vRYrqzFuuy z13cJJer(+v1$J2#SmFfm7V2&rhMb9an81BWtGu%6EtlkEEoeZWw;t5jy|tZ$dr{cf zNy83r(KHHGP@cgiMyAXxmR3s(t4rk@o#?RD)Ho4R_qWBMHH;eP>?fERzYXBbSz1=J zHJfHNM<3N3n$xu}vwD_lFDxiI-A3OscE|ecglqIA8QcdJWuMPMfKyO$F-_1O(9$+d zk%L+XOR4rS*`#6$dJMGPhPiJ&#(D^Am<85@mc419rPM6dhFL_Mg&v$m!Ky@DZnu&x0>(q1tF$D?aqZ=m#nP?rvRz}SOEBJEleS7iAPri?!PJk5 zC#-Jq7r;Em^y)wgwWtHd1{)YJvRb=kK!P=P`{Sl}g+9BWw_#Cs!2n_ud{HY)E463J z z?X5K1pM{AkIK(-WFjI;12(O?jQ27|L#20B!chGm?v<5C96>#~Z_(H*hh8IfK!;4|N zfwJRy_uv_lj)*t#uL=lnBAh~a3!#XByAr1n@&M9lr$3dp#bxaO0O1P4dkA=kt4mUx zL`lW6ir`Dols4Q;@P0~m#5Ekfj(}T|Bkfm=&l?TT>v0>r#f7?g(WGBOi7x=yU?PJa z_?d=@{f=g5;b*`vr(J;npM|22Q}u2u=S?}%_M-Hf6lg?g@^E`APA!4|)k8wP0g!~W T-%pS6Dtekq?#`S;C;a~bM5xV@ literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..92df3b603d488bbbea921ec3ce0ada5e1850c31b GIT binary patch literal 22220 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 LyHM;{@nilUgGl-T literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86abb2e1ee4ffc4cafd7f49e675d7a5991db37cd GIT binary patch literal 37727 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 Wk!FaDTAm>?$}@yr&kWII-TwhP6Vvek literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..750fcfd5ac02be7d35f84eb0ed9e6e8705b94ea3 GIT binary patch literal 46198 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9789257599b8befec2316c468d00684c48e8b444 GIT binary patch literal 47968 zcmeI52YeL8`^J-DNJ6jDJJLx)vlqI6(gYNZB?jh%NJwH5RBZgPcd_>__TGDo*n1ay zH}+nz{h#N(yxtAj%Uy!{kKUON-*@)i*_oYZ-@G%sw--xVv}l@!{}vrF-pyN)p7tI$ zqW|lHjWPIF{^7i|G?(Vmi_#XS=cT8o6{b1Ee=hB$bl1pPu(2@1WulxV@4ge{!BTSuHxw?>@I#Q;u$IB zQ7o@ahnB%V8=T#IWjZw#b*ZJVE|t!bvuGl%HWfA#HkTe$UDj+Rp4PIrjg;HUvF*gu zo*q$`bvwv@UtM0^E>bsBj_WGrZo=+DE92}T<(|S`!roF})s-=ey6mZ+)aWl9AoT`H z->NQq9U^;&O6%ED&JpHH&0$hjb=jt>i!#*3HOCLmxw;hIwocV;Eb8*OAa&{Y)uqRe zU3yeqmfOe~Y3$MyQI}WISC=Ey*k#?=>T<8IE(BdKdW)C#xDC&by@Z^13j7P$$qdb6sLN4k?6MrRW}v^NoTJ7rJ^rjl zPi^XQzs_nbXUbd?v}TBm*+HGuKoyN@S1_^2Gy2U zW4Cz>b=kkF%W~{ljpwC#mo0|?u4m&&DiDH_LJTe8?3vK%inuuibL zY}JoldNg*aLQrO?J$9*P^olI3E~)CW56ukp2W1BO^*ICU$IA?=sH)3(EjsVE6?LgZ z?B@*J>#rH2)#X{}nt|n@H3R(UN7oFj<*Uo~R9%kHzgOd4j04m)1IxN*U|BN*TK3iq z+^6cY>_5e!N7oE2>xzu!#MTUvRf1pA*loAY>hfIt^)5Ynuf}rZPMBN%nt`6WtQlC} zpVfG+YGwx3(=`LjL9-hDvF|3hS7Vob1m|7GDz1>kETfju99c88kC7SJwywxn_G6d5 z#mfw=vvy{nFZT0Y_7m?;n30``x~!+_vh1r%PrS@fySf<3pHFdc&d`+q!rK0+E`MJe zkiN{VzP=oz&TG6j{!=pU?Ja99jb3=XRRe42-5QVA+z_oV>-f*lxi?pGkv>1?vBA+x zMOE3bzNF@c4*!U{I6GcRIpc;9y;O9toQ>uN>Zh4ET3yymavac&TBkY zGcU{j-5NcSH5tdCnU`bG&wf}=Y+hr{o)WLUsD4D<|=QN+uC zp)T9YkaO{4m#wP0yo&W-HLxXLU3xS#u+7tBn$@w(V|3NP8mcb+`pFtc zp?Q~e{JhJWe(bW&+OZqfHypJQtySGjQI{<>lHV824D@7)$N$`t{^sIuA=D?l^tTp| zKH;TDpW~p6e%6!y9fTc)orJpLpMJ^HCI%lg?5`_nZ8&rI_!%l>EXs&GwpyEZs=IYL#J(b8S? z*3aDO@!x1*{XU|4%{LlYTiuY9UIcQd^sqPTDqu^ad_$RU= z>sCWuwyMu@*pkLB{W`1B|98bMV@B_VS&pqPHPYDS*+r|%?V#s4^y~9;9?!CO zB>n!Hp{Ba3Y0cQ}UPE0T9i%S(|Ae|6b61Hg|7{%l{U;3^xvI;(HPvMe%?zyJ$1XjH zJ5XbnWsO}PJ50_ap1O?P@Q>=OdDk{LbvY`{3>>YWcj@^%@-BPL7Nv7U(Oh9-c^BCw z>W3=_RkufjQzaYT zx3On6#x3@Q`uLi0v zBS-TtBS+T^ENkpiJI%YS-cS0K^6%Y2}Dfp^5JZl4CKF166urA8XN9J3$0^r*Tx zs#;whuPZW^HSe;vuE^*|&IEPMz`dGx`CF2BW}v$K@$+uq2C6Q{ta+DXj;$_hs=6q9 zvCAVhc3Cgpii~=zx-2JtH$hz)z2W(-I(Eb7vd#)~6#AYiuem;jWVt?f!&E}oye!Ad z4y@BhqOkV6;jqHgP2-myKYr;^g;`EKel>c-I%{_5x6bNPMPFTd+R9Ue`m4*a)jfW3 zrM>uNEB@UuJ*sXvJCH%yfl-sVx_T$f?2!3q?(N^8)uk4G>{1JVW@DY2*@5-++Y_vz zxtD%bmwrEXxmTa$aBreBTX@wF&JfgBV|T#crY^62ePWj*jD5exy}r8i)Kr(+_|M6B zJ_99#1g#s`ir%lWrvKR*e;Z@pQRsa{ctsX{zc%o1Q+M6+E=O4R%m9tN%)nNHG6S{O zH7|A5%)qkdT^?K4%%D1J><((6>T>-4GhTZ9`!#BzcNE;4_^cLIm-I6OJ(?NVdR;O@ zcwP(V2vv7*gI1R#47wYpzn9z{sJe`_Xmwe`&kR&9-W>&x@?)1rCH|a@3PcF?TGwu165>ucU+PRo@Ho%ouUD>40vtQm$jICVLGUGGv$ zT{Ez(&v>bY#xDJd&uXk4q%M0^by?O~jrHTjE~Aw{kxzy-Gh{b7b*Y@H%W?WoA?eZB zWm#jFu z^oQGJHTrc{L%DiZqgQ7& zmNj-+)-?mmcqR*~y7XvfU^%h%ZbVfrsk);?UG@<4mMMGi)n(0inSpiu%m5Gi(RX;c zf8Ao2=cVgimQ`J}?5!ENufOQ0>auTDmt}pIj5Yl?M(FX?W&M#7O$o-XoQshoVynx3 zn#wt9W}qkDn|iFXuCdGU=z5p!Y3#Bb6uYSJsmtSib$O(&8MxPvU3&hq*j?wWz_W>+ z6*!W}+tIB1_hbd;iCAx#vR94Uu(I^{YhC*5yVliQ5V4XKYADM-G9*I%_aAvSb&uKl zD$Cw9-?AJuo3U+OE3h1`ERXTuE@cgUQ-phil%@agh*|dCaNjKDsDqw5GFlV)ERDy< zelEsV^w|P+&}R!=CC9t_4d3&IpDcvm;9War8=kTpuRgU2D@*e8 zRZ9&sW;qu9{4A_2$E#0k=<)A(>528Ek^A(Hmzu`T2HfjE3#(hqGFBtcY#OGr;h3eG z`pymY@ne>rpu1fhRlVxs@&4xzY&W*D+*{vlpphD}4O3Z0Pf#|X-=D$g=`E`mox$Mo zlx2;eJ6-Coce=bvLEong$1L~8%LdVTHmq*LSC-1?XJ#zxvs)^o_hIzwxBb?R*|4&# z?dMtQ<$vBAj#>KalV`*8*1scWIYvJlL@Ud(W`k&Daa7EhWj+7t4Ew;7Kyck+Hk@I@ zx`s7w_%X{!(!1M4ltmry?v}^<*?=DZ*#XhYI@$2MRY8 zZYJy|>>)J5&4pVCw-jc%(Kw6sNKv@8Y_}1%6m}3c6E+t%61EbK5w;hO5M~J53EK)g zxv}V@sjvwtJq?%bF2WYV#=_3Ral($mQPRqI;RNAGVUBR3a4X>?XVBAR*9e^A8dvwU zwadWvHZBXC>Y9MlTvKqmYX;76&B2+j1-Pwi3C?n@z}c=fILEaCw{va5?Oi)?uA2_- z;M#*by7j<3*P*(nom@w3@9a8(ySS~uUES7TzUvI`=DL6da;Ecy^My_r67DWsAbDY- z>x%k?t{b?A>kcmB94YD*xgOYF?0SO5t`}J1dV{5|54fl63zoU{!E)CRtZ@CoC2jz? zmm3J~?WTbHxIy4jHyGSk*3I>+3p{f!8xJ$vy+~wdE?n>|~cQts8n*(0!t^==k+kiK?8^N30&DA~K z;%>$EZSHpP4tFPbm%AIh$K4Cw=k5m|aFyVLZWVaAdk8$zJq#Z09s!SakAla$$G{WZ z4ka?kQ}a<(>x5anFF~xo5!(+;iYX?s;&fn+sm*UH~t5FM?OP zm%yvt%iwkH74Sy)DtNP74c_Wr18;Y)gLk?&s(ZTIy@~C6-CN-O?rpHry#uat?}87x z_rQnUaPSegBlxI$AAHPh4?gZb0H1Ilf={}Sz^B~D;L~md_>8LppLL&9_w=0m6x+|c zk>CsNGw?6x7>H&+in8* zj++X;>n2wB^q%`3+wZ#{zz^Jy;D;^`{K#z#e(bgdtK3iECvF<}soMek%>4|0?q+~r zxHaIHZWHh;w-fla+YbE3?F@eFwy5suJ2xBK-@9GFAKWkCkM39SC-)opv)c?@<7R@t zxG~_bZd33#_dEEz`vd%AMLM4*lWt3~>24hSW8LQ9X!z4%H)2LxneH}pqYGj48ija- z!M{eKMj={@e~s}k1OGCQ&CKI>?^5$jGR`xM=+rzDZ=QJoDjne-1dozA=NOrDj*~fO zh0Hl8%A9jD=Ny?kPnCJ+bj~}NXHEmpmO1BKnRCvUIp;!|b1s%S=MtH7E|WRu3Yl}R zk~!xZnRBj{Ip=zrZT^{ghFPzE^9(cJKRM5EUekGob8^F(XSgb;eV*Y=qVo*%zRok8 zp+1#aQ|B432mN`5^Xu0#qkJRtRrEZ=Rl@f&6UClqICK5A^GsuzXR8R<$9K zO&FpVF@hLQ^d|-o8xZRggNQyvUm};tA%+mWiGIW;#4utbVieJq;QyJUstwVVXil^z znh+g`Od^A5L0BS-=t%H?{881IXhf_>v?I18S`*EPk;G793u04XQ1hzISl*l%O|&Fh z5j}{`L?@yr(VZAfY)t$?{0@|HbY*O@jBS^(y)w2}#^%f9M1Esw3{dqeOJfPjT}D01 zq`fgHRdGkvIAT08ftW~aMNA?l6H|z-iEW6f#57_$F@u;%Y)i}{W)pLW?TGD(xx@~{ zjzk`@6R|U~3$ZJaPwYk%5c7!ngd;-4?!*FOAyG)|K`bJQh{Z%PQ9_gwdlF?tIZ;6@ zA@(BnCiWqg68jSS5&IJd5C;;=i2o565X*@RiGzrXh=YlXi9?8$#G%9`#9_px#Notc z#1X{h#F4}m#8JeR#L>i6#4*Ix#IeLR#Bs#6#PP&+#0uhi;soLb;zZ&`;w0iG;$-3! z;%4Gh;xytG;&kFx;tb+8;!NUp;w<70;%wqh;vC{G;#}fx;ymIW;(X#>;y&Vj;sK(P zc#v2{JVZQ9JVHE5JVrcDJV883JViWBJVQK7JV!iFygXy1Qe=)QD>JAl4OAF^06y=welowVM?iI=} zE2t1L~C{&tXP(Ht~Fuy2NQ4uODU!7G@RJyQWUZ`T7<AuaS$W-J)C#xJ2d9+JQ_3F^vxP2! zb>#TV)5SR4wKVam*&S5i_jzhH4`?y%w6 zg~b(RC2q-lNLHL(QIfrO<#0m_OG*RUDJtAOG=J&*qEN02Wk)uO3g_jPF0EKtQamze z_^@1Dl~6X$WDzcCc`k&`trj}BTIgI}(S;gpa#eFmm#)s*9K|I?p)E10wDReQyylHe zmQAmG(X!c^OJ32ezZ-^54M^4-ZnSi*%szo+tPev zTbZwIYx9+DW52X*%@?+v`P{ZQpV{@yr?!Ln#C9}Qwv+kTb~Yc`F6Kkq)qG&PnfGmX z^PcTt-nBi=JGPg3+x9kZ**+O>+P>xuyS{nd_A{^9{${luU|zKY%`0}0dD#v&FWDjH zMLX2IV6)BhHpe_?bIr4Mn0dwyH&5FU<|#YUK50go^q`-N`!U9GNix!V(w1499Aiye zZhpmRCnn8k?@U{U@n$B=cyWDymJv@*q7mQ55#uU1O`b91I{#2T>TQy0)HjDmjjP=v znZ}Ll{q3J4pPpnRzd=WitKK@f#*XX$Rn+LWO}f!v8yP*We!FBFKd%4ho&s}{P=TwW z6+jepNIne^2cN8^!rY`(;c{OEL__Cf)FExT{iuc#dC94Sxnyl65Eb2$Q;W3a=KTOQ zc1c<_E~=>pqN8WB>Vf!pCs2{yl30=RgA_rO^hsV#5GQZOP-T8nt8z}TDu|YT$*c?F z<+Yf~?4IPxoEb|QM9skD)&_C&N-gRXCcQeR#a0K=GbGvdLHxW}t3pL7h0MvdDTFA> zNoj;QdM=JiB`KAl(h0SzglHO`(kX2@lzKX@Qe`Qns8q&r@svVTjY?@ntq@mFB%s!k zlv>ql9UWgSMAt?sy~27Sz8+0Tv3*jC{i)ayi719B+cc$_YKAy_C_&ZsOQ{y6+M$W5 zhG^R&rCUTd#9L*;${m&H7M-{h9sTiQ*9d%O?(TMNdB*QmuYHC%x$NW@hC8wm64ARux zT300zmCaIG25FhL+t+-t{~d+c~~x1Er2mz`+t zv|E`w>?Cu$oosHiQ_QV)Yjca;#@uYDnw#u2bEBPZZm=`V^>(JY&Teb2wX@7McDA|N z&M{Zn?J};k+nX!wTyweI!CYo{G?&^ubBW!_th76ui|sDvBD<@((B_*9>~7|KTVT$! z^US$+zB$J_bG8kcv+V8}XW9kk47<>rZVSz6b`Nu^U1UzNMdoC?*qmgG&55?eoM21M z3cIH{-je$;TwTVF$wEjbA$m_GQ?? zurI+5!Fk|KPCFFaFTiHQJ`bA%i#PLZF6^_g!(g9*9S(~(tn3Kbr(j3IJ_$Pt7H`Pd z4PYOK-4OOM*o|QEW`o@r_7T`kU>}Cv6c(RE+s$BC!ETQ8co23AY~vF{yCv)cu%lt` zhaCfpPju{9*n45e!QKNq9u`m8?F87nU?;-f3A+_6o_N|xu(!ibhP@4T3M`&F*{xx3 zf!zl7X4t8)xZ}6ea2_|pPRBOB|88f%UJpAH_Bz;YVe#E)I}7$2*x9gG!_I-l_hs#N zuvfxv4|@gdTv&W}((V9z8SIX*m%`@3;`?)UC)ky+JHuWKy9+G7J7sspc_3Tbd~9C; zyBjRNFJlW}&x4%@doJvJ*mGbV?Afp(*t1}FhdmQ^0qhyD3t>-(ErdM{b`RK7VHd%k z0$T)oGVEg5lVFQsPlPSOdEnhcTZ-)!uzSKD4_gL{_s48G?6I&Fu*bkIfyKK&b}!hY zVE2YS5_TV0ysu%G!X6I0FYIAy%QE(Z#b@go`@A(mBi6 zKctM`ew-J6|52l{mA|CKzYk^8v)1r0Mg3QvTBl}+)C`fDA&>!5Gel~J_={$UmTUeG DUUHNX literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..320435eaa6c995940bf31033087face103d4c848 GIT binary patch literal 61101 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Π4;*l)H#gmPxD5*%SH+lCt%@yqM~GQJ zj|%dF^=Jl=O^0q-h%fR_8n z5_Nkd9>W`(8n3@Q^3lsT7nY7t3dAk>k)qqZGW6Wh`uPt&xx4TD?IXy|Q#hf>L-izz z$Oz_UWA+M0LYoz~!m5viwVG26A)7V1ma2RmuYPa(J=`YPjv~uVoF*NSw(X z!{iHNt0-H&x-dj_ml6raX%`I}V6 zxClj-Y|hOF34NouJTlH5KdI>BBjZ@5OrnCK{04~$dL^wgq4uDO+D+mK668alb8$r@ z=OX8DLcmKDzhD=ZrtD7S74SiJ`yW7#;ei$af1%Z27;qnSFyT);crYyZ19Y(A9_WyQ z-$4fleghrS@GIz$fnPv}A-D@VWZ`GfAqRIrhdlfQI&6R+L5E@Z0d&|1--8aD;5*P^ zGkgm=jKDXb!xs1&bl3`CfezbX8FbhVUxE&!a2s^k0bhU)WAHiXuoFH59Ug;Qpu;Zs W6m)nTZh{WG;RXzZeZ$;4lKUI)>I=RA literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e1c903917dfceb6a5e617510db887f79c991bfb3 GIT binary patch literal 2335 zcmZ`)UvC>l5Z~SVle1$xX_B@nP+>p?EaA8n0;y6#KoZ(W)Io`hkR@21Z#T{*=R0?A z4a9OKM1sl--ywd?r{H_+D^GpqjR#<6?W74!_Ppbn{WCkWGr!raTrLu5`@gM#N2bT zL+!bRwrhD$_(wt8lfIY{!4Wy6?HS+;qGfVLXdZ+J^uh0O*9>mL$=38RM6k;)r|;u1Oe&_CRmpN z=LrI4I8C^$*(6N6d?!w{R4-6#%{N{?=u4$MkW9dNoW`1Sb6v!_R&i&b<1FQ28YTxr zsZ1ft1l%ppd#1>fFxNbS>xWx+bD8WYAC#O>Q{X&;$(-{O^7kK&A2YR|_rpl$4H4?F zF4HbVL@H2J?_`;d!d|~|_g+0twaUaG!XxWCtN(xTMA2^6zeG%HssGj_W*>`&>gcep%AV;N6jHUlU;QaWOpJ92=BR2 zvZk5=9W`H}MU%*RN`ld976%Y_ss!YODnK4l6(sXWt|3_fQiq=7nhLm6v>lv!;|iy& z@>e`UuU4V|g)q|O7kWaQ5dFnwrZ;;1MD}E=rC3)gQ)&^GOiVbl!<431&C{?aKSD*A z;w~G$bA=h_*I#LkTEe5QBe{X(vXcYE!2purKCZY0xmg+IuisnU1d5(K#6X-s+wolV|P-APys&0Dm|K#;*zI0sb!>FQPPZ$BdGv{&WPa z5zaC}dXxN$J5J}RaHsp3-M<7UUkA-2yYt4FAa{IojJlWiT{Swj4CEy!E?#r^)}6cx zzX@!ryRoi9QOQ&_)YT4DKA5vft1xL^{0psi%XkXHAdQpA)MlXg|+q8`f6*V`OwUDGtFh14Z6D=Ym%v0 zJz2UF3z9Mdtp85Tq}HmN80;9Q0!g%fS)Ich1=;hif^zIbO7-6ec+5dHAt6glrf z^-qv5asG4=CexW2&P5h+ZY!~^UM7G%gI7x*oXZ8gHfxP3Pv4(NCJAhNdA+s}+8T%m zejBaEY7r2ZR@{=$f+A%O+^jQy+m_WPypQDz4}wB3jVIGVFSpre^VBXrcg|TXP4Hmi R)TfyDIlhmj+w*kE`47BlL6-mk literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..69998b32c2aa636c15f5554a67ddd13a30148e41 GIT binary patch literal 1218 zcmZuw&5jf|5VpH}{h0D_X{{ay!X?+H4OKP`Oj;F zXP^DCggNB%&BB7=(ziefl2T4mj|cC_jB=0rZ+of#jszqPfKJP9J>45mHb@-gp8I>L z(C&ixAo?LFLkvA5=iae*MmhZp+F<;1VgisBNE@UB(go>(gy&@5JtHhSBY(&L5G*i6 z^$ws^k<6+&n-$VP<@&az7mZLVf*7{TSWy**F@hQxZB#HML}5~@hYF|1b{f|K zZCgrcVTPU!w2(6u!{&QxdyM5W)0(mOkZcf!DAoU}Nz7A?Y123SPU;9%W zzP|BYTerWKbVv`N>rmk;D+OaVWUK^^6786=7mG|TcU&0TUsWy_QbIqjLd2ySpmhxu zwrmKZu}@ucojT9K@CQ3U63~u~{1r}=4Hss1cS*>#*oOMJ&?^UCV|>H)Hzkch&y_V1hco literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70679d61437fb0535df37f22620fc523851cdf37 GIT binary patch literal 18845 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 HWS;#OC=UuQ literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b11d28d52752f06afa771dd3b72b1821a9cf708b GIT binary patch literal 3164 zcmZ`*UvJyU5#QxMQPiI}jxUMhq!5avsERtu^$HxWxYo(pvg6i~Q_Cq(0>y&nt|iJ8 zsVu1kcIBrSxb~qRpnbCY=9l{l{T};P^eHdb0{7AuDAJjw9oxCn5<48u4tHl~e>1ab zt>zJEdw*Ew|Gq`YKk(ynv*6<~^sEDf6Ha3?q&}sD8{CYIq3N5Nw_%hrG==r+z(_| z* z=i+R>XDJtPv!tpaOqYqA;nK>DgQPbOdO}@CIm=U)N-iWD1|wBJA7n%PS>4R{M^PBW zY?NkE9=#Gw26>dK**zgfEXcwrVzJ1<(oDHQJn9EKA`fw^mm4}3Tebs45TA158=U$k zH++kmzRfM);Wxe{yHvZb?3XlO=H8L(yQ0i1yn005P~QW-#_O7|@N0bLi1<~0ozKF% z_9d~1Uk7K;saxN2M&aDIkHLZn^hj@4x38CafB7@E)1}o;cy1^tp$;+6diG0Ta+1>t zd1D+KCxns-@XVYTK&^=h)aC@JqiIP~SJSel-h>=i@IOwv9@h z%F1KA5;c*xr2sTEEoEgQ-c@#S)b9KBDu|P_! zc#sE+BI!km5E9V0xRa)N7z{_PM;|XnNiI`94goI7VxBI3s9a3cPe$=VugR+@3e&-^1i*@NpF;T*HJLJ(^p`_6eCQ zK!UI-aip%M0208h*?Id8W{^5Bc=87F2oHG=$!#PhAZoUU!8{(aut*P)$mBeZ-a)c} zgLnkT0H*kgQ(1G{N#Iead)V)su(Vv4Jz_a%9 zHjI$L^+P;cGoKyY*fZoY@Hp$-o`wAJMFOjYRaIa)ENzPh}pC^G4nWSoiyB%we+Ty#g0?SWMm7jbg~B zkdlEWSnv`^s*w1223Z>`u&jWd!~jwz1f#T(E5GQhv{%T`Ev~JAeh*1TJOFifowcfdg<9h#bsR0js|If7? z*V_w zN6}cgx)j%nP{c7~m-eH}m9A7+`xc>R7%47nt9a^0wQhJGH5@>JGxJE-$WGH!l`xHC zp>G_S#G_TUEA?OEole;TN@u1+R${p6nkrr7bg{jtOYe)5az8IT@C&SY877J9-KsH1 KEfYOF=lvhMF&9|? literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..62b222aedf0f33d70e753410b53a5f43b6f3e1fd GIT binary patch literal 1787 zcmZux&2HO95Z)!JKa2XYB0IKWw7u#e%T6HI0g58F;@X1$3ekoUUKSL&mIyCNbx9>~ zpqv~aeS{u*aE^J3K1DBk?Wu>pKrijiQn6*VOYDc)nc3OdnQs}DN()Gi>z_N`?^T5U zfW_=E`G9ztHGkZ7}V^Vvgg>7pl;WdoM%hHvc0V20(%;)*ee(vAaB7d zen4K4;#=Kb^-K#jN`GRRVgrj>XXtQ?CI>tkkACD)pK_@+4{4v%x6`#I*1Fai+1Y8o zAZ@aDaeT1b>+YVCle1U*$721md;03^(jr^W+FSG1h9;Kp_kK$bdi(oF(|s#5`<~BQ zQSa`Z?6ljYcVSr%X(;XX_MCR*{_y|!ADwk~NN>)6^<=lx zdEM(CA9p)*rnQ-zwjSG{j^|yAY(Lv1=ZCx9X{uN}9RGrxU-XW;*5SSFspW?QM)z(K zI_*JPZdW$u(a@)>cwGt<+1Nw2_7PoS4}02&ysdvk2C@y=Rb5o9y^b~0OBdSwWdJ=Z zazeoP7YPYU@C4mzciJa}QKH|X_c$?5)0FVX90YE``1^~*!<&#Dt zHw_{(oXW@zLl`k-SE4jjPhxt8SYpw@cO6C^tLtz4cs#HDj75PEmpO4v$Y=ETZ>_fx zzm7+aOXHU3Buk)SP!t0}Z3m|HNVb z6?Jc1Mq3_jJ}j8uZ;ft}VH7^!*xGExenOivlWS)nlNtG=7I{NMFXAm%{un%(wBo)S z58&^R7G`5~!|Sq8Eji;I31ytc27Lb*24Ggx0CQQXpZhXdtf?>im$~$AWsa*GUpm~# zK(|9DpoEA80?i#WkWE55UcPM2$J&pg(2Zm$FbwvI*8YVVzUH=!h#@f^X literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f722dd986148baad11c16598dc9a2681e2c44f2 GIT binary patch literal 2558 zcmZ`5+fExtbY}MA^XXe~5q}8fR;5+=I#s8`i@;7cK zKNB|hVPrqS#0jS{=~0hTgjvjbhG%Hlh|QkmSsFHDyI1l`8n$AmSN6&pwqv(9*%npE$1KvESbGH@DZ; zpEj7PAdfL=RT&Z2j6#s=+GmV**)sqH@hB%Adqegpr<|QSo}pobn*f`_;ug10$qDsr zfVJ8Hmw1`Gr^Ivk6tBQqenU*+xnPE>a#6TK=MYUY{t!mqII?eH%1KU#t(QA1~&Ro2~Nt?W*Ta77YWrMzuvJ6C&aSJarLk;?|;Y2k|GoNJF3h~#Cx!oeLswYEc5+$j$C8nmovZ6_IqolR|?1S9a4h4})I6dFSp*l;kqygAjeXlBX;0UoHskr~Ut-6GwX@ zJPKpc=@jUi;x zfpy5_mw>U)N*uE4z=2U7vU3wM%{`cc{DMN3c=~P??%svd+URs!pH9Q+ubOuKoV+%N zj59cSF@!3ygeJeijeEGxoXzT;IW!j`M}J4GdCn-}ZWg#=|I!}a21&WG0JjziKvn^L z@J`>-H{k9S7N}5ek0fAPf;o_V9%Or~=`WlUgw7VvQG%sIQ@$PR2KzbiR%z?_*6nN= z{)*IC-jDKSs0XQB4)Wz)sN8_NK>JIKvkUab1y+}fOZXa}K!pHD3T4D1kySWXZUP0` z&#vC_7HOT_Kgl#qOXhG2-MBPUui&Z*6z{&2?oLFO|K~Y2)5`xcz)< z&EM!KtKE69(^0csh~sb|rAT0fxCX|`^`Rye+alu4Jt4S+P6+I^D5|`+-dS&THntwA z>28|)B1s3`eIE;vs%e^OvKMiYghI`4z$ zuST^Ml~oQ(XR)(uB0vZ4Dg^x)#AP zJ?IiK!WG|tISAqcqpP(pj>>^Jg@%_OO+*kHSR!9l9kr)W#4)tND@W)$t4l0)$}eDK z=ud}KXr;tVmofu9VAOBvD!tXHsp;PCsPYw=Au;sTOyP1JQ@!H<7Ts*2cVe5F=&eP& zwGaAXlD{hYs|_SGXvDfPTOt|sG9CRoPm1<%C9#H3V&&W`tnxi(V1_|m`4q&~zdF5X F{0mQKa?$_* literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5d9373f19950ab8d2feef4c3f9f0aea049f44430 GIT binary patch literal 5910 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 jlm1WLW+U&eGhRsZVW2yfEwv0gE literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2fb4848b6a848e6ac0ec9a33352b61cd80d9d391 GIT binary patch literal 2067 zcmZ`)&2Jk;6rY*>@Y-3sAxWW#0~J(A23$9)5UqqL#c`WTja}L9#S$7hI}^w8ez>!1 zAeJK`B~m%^Cp5=i`Umhw@CVEZ#3?6`xN+jWS?8;?E6v;YW@p~_`)yJ#mk2!LpBv&g z;QmD6;$wsG4Xkt%h#-Q7B%*yvk!K-`tiBc5ecQ-Z=tOScHM|`bBCqdJ@{kBexJN{| zk{(+9q9}Ap)jOe}u1a;eu{%&*nLSa-wp3N7edI>*u$v7ssr{`%use#Sk>L1BBN3+` z7oSkc)82zSyt~D>+8fQs0cgJTSPLob0V7GD3esnS_O0h+hYBXFBd>28-WCqXu}Oak!l~#Ix{wDk%+39NFTfa2ALP*yT0GW!r@?g#?Zos$;@+!qAY(^l2fPCA`Pr3!FWdz_ErQO3D)KvXX7 z6$6tRo<_RN<7vdBZ5}{!Q|&03%Iqc8b}GXico#Vj!akZD~E zvO!J8LrA$)km%ZWl4QXkn$&Nt*G6%s5-|<3Q4-g(r1tvZT+wbad4ryCv?GK4Ae40> zYv)2Z+OALbv)v@VeRKU*JsoAT2A+%uLvUs?n$-FCG8T!dVHbhdh4i<_s3dV4KCf~%KnF(-RgUKN2Au}uwF>jVyxs-w`BDTDHn z!|_o|NXkgAAbAJL3KBf>Ijj_GgdUdYZ25wJrZoR^4x6O`>mQsxL7@d$Yvw@gwL7_P zW6D@LGo^h~ZJF_S5Xp7C&4Ac!_TB}17tg%atXhMMU{Wt4d6P9S9K^#Z)aeU2tKJ22 zDetFW1N7na!Dw({Xz4FN=5&L6w|>AN{>S!1TIX7-+gvp`Awq1i3K z?seGp7Q1U^w+OqpjfT=OBx~%TWRtxm!M-Gn@TF&{--ml;IN5~BsvN_N?Ohq$s(Gpn zPe7Wj)(JYS3_2~F+Uim)f6RD_c%;yK?KC@`c1PhPYq!>sci~QY9f${mQlcKU z&uE2KDErB071(vz?8=3v!JC(w1#^Vqn?fR(33>pdvIoC}F;S~?NTBW#0a0 zO|Nc%hR3i{977Cd8G~Z8_b<4AIh$1<;S*|h_+my_ zdjL8BzuCUJiXW~asUkrK0C00a4P+PsD4%EEpn(Ab#O;q^r8rw2xau?CWlo7Q3+iAk zuNp{cRZF_On9&^O6y{nx5)eH#EtmJ;N?vNyI#K?QH2(taM%zJ}M&_T8qtv-KXKB;k VS9#c9W22kg`5!DpOZarn{tser-r)cM literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2b491c20e5343e9f5200afdee38629629d9bd8c1 GIT binary patch literal 524 zcmZuuJx{|h5KY>Yq97QVZ=^%wBA6N;@bp4oPdd1H_HV;}v;4(mMm z<1Xu7dxK#965bTtKqXmSBH%qY)_@dc16G3Jl`8q90gYC3yyGGVTOiz_He3o2b(Nw9 zIf1O8nxPFRT2?UQw%`H`+FHe`0V)_QKUOR-b*gAKr8$~73`exKh14TBr2>viDwZ_Z zVN}HFH$2KK%F8&D)gYYr_TynZZ2kCR5VZXyVKPgSb|Xnv!W`%sr`)#v+q0|d^UI58 zPp`QcmhIz}%%q+gCjkv%)Y1q=&IO`&2BTC;o6$;<;cmo*)h?OLI=7LP(O>e{qC%>F z_PF3MYqAmv!{`T;JSD1ehQ(gIJ0yl%jK0GliYwww2qraIg+*4LT#)Vh!PlJ*{l#4u Kh5|3>Z~31lL8{^a literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py new file mode 100644 index 000000000..38f32517a --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py @@ -0,0 +1,386 @@ +######################## 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 ######################### + +# Big5 frequency table +# by Taiwan's Mandarin Promotion Council +# +# +# 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 + +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 +) + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py new file mode 100644 index 000000000..98f997012 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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 .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import Big5DistributionAnalysis +from .mbcssm import BIG5_SM_MODEL + + +class Big5Prober(MultiByteCharSetProber): + def __init__(self): + super(Big5Prober, self).__init__() + self.coding_sm = CodingStateMachine(BIG5_SM_MODEL) + self.distribution_analyzer = Big5DistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "Big5" + + @property + def language(self): + return "Chinese" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py new file mode 100644 index 000000000..c0395f4a4 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py @@ -0,0 +1,233 @@ +######################## 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 .euctwfreq import (EUCTW_CHAR_TO_FREQ_ORDER, EUCTW_TABLE_SIZE, + EUCTW_TYPICAL_DISTRIBUTION_RATIO) +from .euckrfreq import (EUCKR_CHAR_TO_FREQ_ORDER, EUCKR_TABLE_SIZE, + EUCKR_TYPICAL_DISTRIBUTION_RATIO) +from .gb2312freq import (GB2312_CHAR_TO_FREQ_ORDER, GB2312_TABLE_SIZE, + GB2312_TYPICAL_DISTRIBUTION_RATIO) +from .big5freq import (BIG5_CHAR_TO_FREQ_ORDER, BIG5_TABLE_SIZE, + BIG5_TYPICAL_DISTRIBUTION_RATIO) +from .jisfreq import (JIS_CHAR_TO_FREQ_ORDER, JIS_TABLE_SIZE, + JIS_TYPICAL_DISTRIBUTION_RATIO) + + +class CharDistributionAnalysis(object): + ENOUGH_DATA_THRESHOLD = 1024 + SURE_YES = 0.99 + SURE_NO = 0.01 + MINIMUM_DATA_THRESHOLD = 3 + + def __init__(self): + # Mapping table to get frequency order from char order (get from + # GetOrder()) + self._char_to_freq_order = None + self._table_size = None # 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 = None + self._done = None + self._total_chars = None + self._freq_chars = None + self.reset() + + def reset(self): + """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, char_len): + """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): + """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): + # 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, byte_str): + # 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): + super(EUCTWDistributionAnalysis, self).__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): + # 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 + else: + return -1 + + +class EUCKRDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(EUCKRDistributionAnalysis, self).__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): + # 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 + else: + return -1 + + +class GB2312DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(GB2312DistributionAnalysis, self).__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): + # 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 + else: + return -1 + + +class Big5DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(Big5DistributionAnalysis, self).__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): + # 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 + else: + return 157 * (first_char - 0xA4) + second_char - 0x40 + else: + return -1 + + +class SJISDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(SJISDistributionAnalysis, self).__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): + # 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 (first_char >= 0x81) and (first_char <= 0x9F): + order = 188 * (first_char - 0x81) + elif (first_char >= 0xE0) and (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): + super(EUCJPDistributionAnalysis, self).__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): + # 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 + else: + return -1 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py new file mode 100644 index 000000000..5812cef0b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py @@ -0,0 +1,107 @@ +######################## 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 .enums import ProbingState +from .charsetprober import CharSetProber + + +class CharSetGroupProber(CharSetProber): + def __init__(self, lang_filter=None): + super(CharSetGroupProber, self).__init__(lang_filter=lang_filter) + self._active_num = 0 + self.probers = [] + self._best_guess_prober = None + + def reset(self): + super(CharSetGroupProber, self).reset() + self._active_num = 0 + for prober in self.probers: + if prober: + prober.reset() + prober.active = True + self._active_num += 1 + self._best_guess_prober = None + + @property + def charset_name(self): + 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): + 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): + for prober in self.probers: + if not prober: + continue + 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 + elif 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): + state = self.state + if state == ProbingState.FOUND_IT: + return 0.99 + elif state == ProbingState.NOT_ME: + return 0.01 + best_conf = 0.0 + self._best_guess_prober = None + for prober in self.probers: + if not prober: + continue + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py new file mode 100644 index 000000000..eac4e5986 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py @@ -0,0 +1,145 @@ +######################## 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 .enums import ProbingState + + +class CharSetProber(object): + + SHORTCUT_THRESHOLD = 0.95 + + def __init__(self, lang_filter=None): + self._state = None + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + + def reset(self): + self._state = ProbingState.DETECTING + + @property + def charset_name(self): + return None + + def feed(self, buf): + pass + + @property + def state(self): + return self._state + + def get_confidence(self): + return 0.0 + + @staticmethod + def filter_high_byte_only(buf): + buf = re.sub(b'([\x00-\x7F])+', b' ', buf) + return buf + + @staticmethod + def filter_international_words(buf): + """ + 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 = re.findall(b'[a-zA-Z]*[\x80-\xFF]+[a-zA-Z]*[^a-zA-Z\x80-\xFF]?', + 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 filter_with_english_letters(buf): + """ + Returns a copy of ``buf`` that retains only the sequences of English + alphabet and high byte characters that are not between <> characters. + Also retains English alphabet and high byte characters immediately + before occurrences of >. + + 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 + + for curr in range(len(buf)): + # Slice here to get bytes instead of an int with Python 3 + buf_char = buf[curr:curr + 1] + # Check if we're coming out of or entering an HTML tag + if buf_char == b'>': + in_tag = False + elif buf_char == b'<': + in_tag = True + + # If current character is not extended-ASCII and not alphabetic... + if buf_char < b'\x80' and not buf_char.isalpha(): + # ...and we're not in a tag + 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' ') + prev = curr + 1 + + # 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py @@ -0,0 +1 @@ + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..518af63a9f45dbe2bae5cd163ec3f276723491f7 GIT binary patch literal 281 zcmZusL23gr4D^;9LLm>y!BIl5r4(|{B@ZxOTiq4wSjJWo_6PY&{*agC+F$fkFFmA` z4rs&-Vi@sa@vJI_%hoq_e@@~zCiA^cnN{*?ua?d3s`6w%=<5b&&O=GoVF7Q&YK$F4 z#7wc%Ewea#NU+{$ijvtMoe)PYtp6VW1ofQ$$qDpL;jxVdt8VU*O t+GMa@Et4pLIbrmi!SyzK6mWsS7>XputkQU&zaDC(fN#@R<*Cw4eFLOvR0RM4 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1cda118fc0edf72217973d879337dcb780179bc6 GIT binary patch literal 2780 zcma)8&5j$#5uX2@o#k@ZieyAiV)P-h%|IlzN@O665hRcj#DK97EX9BsIHTcolbqf8 zb9Zw$q`0T`A&2N4mdGj35FiiISD*38`1+sp_iltEu+)BMaB* zUmwzcV)m_GY+o)GzriieFi>k~QJXrsT{uIhaEET;4Lw`S+}t1f<{1nFJiUCU2#2A0 z=jXdcG>ptV$oGoYu!Z?P4e9PT_HduJX+-xhYqJB|I(7IjS^Lt0hWo_aorC0k+p?l3 zDbH$2&Zk*AB{Df>f>b3V6(>c-85w6eBXuIDf+Qs+oYfVVT7}3d%Q&G-vQ#n}u`;b_ zR!&3|{q8SGQRi$hh$4dP4oRm8Zxo5B3TABTNd+5RuZ-U2)qtF5C9Tdy_vrqE`&h^+ zNvm?4QGA1ud%XwO>emJaBoS$ry`g;6yB9^Dj!9WJk7s2nv#L~wvob^cEY35@c#@0b zj;;3M_>6IZ_i>D+`}oWIc)at+GSlKDe`LtJQOC9~S_2uIk;C_hPREe}MtqW&q zJ+i(!yl|zxbT91-cj;U?OLt}4*3vm~`7PTj?XP`Ey%ll|nSbHQfPc8OuXbd3wYx%9 zt(*&c=~3sl#XqL*RkU2MAoFfpD_tMHmagn4Rwr0|Z%+GjCTF}P362JlPmp(k!Wro) zlBkb#l#Ea+n=&BP7|JHo6*m_0Oh_$l3<#XAE{;K+@T4GlRx&XlPhrYTiLA(kAv+Lk znd~)tqxQMAa5mYVNv*=_c~OCwW3 zHYouF6>i*E+?Zq?9Y>Lfyh?X#X*ntl0RXf^o%*M0R}Tn>duG-B8%0wtys+8tGuOo7|}y`wHln^$yZj;JfE?*A$` zhNe~h7CU)1X6Zc5S)a1*t3{rT`t@8+tMcc)qkDY;m~`REX)=K`byoKQ6@Z@i*Idz0 z^K3Imu6p%cwVRr&b>iY`tYZ=cLlA{_Xh(M7c((I0bOPJ64`63I}@Akyzl`ptqHoN z(N!pSp}F_M)lz`RTG;@rbFv4x-U3YBtJccmzmog31siR;|H82?xi1fvcz1Gm>0AQB zU-xJmkULm>YfA4AAY3FIl=_ENr>+0#Xz@Hg)kUp)PPn+-@{tJ7RN^V(#C2%&j*t5B40XnpbL-|I$p zJ_X8N5z09v)hyRXd&)HB=qAMr9s6s>-&}k|**F2L2TiN!D2I=f{j-jzyeZ3T<>|)x5y*4W5ulWgqk_bsj{g)@x%m5+)eISDgwM)SQ|(qG z1x7)9P(EY%yhk2`IRtt5^z+ZUkBB_a&?u9JK22R{qD#mqPs-D#ju5N>vnBbOVo?EO zGOuR5X@fn2RAWiblTs2L(p~MuwgcU+7DqU5PZQH|=N%OyT<|%Fto_?{oj%q}u38DD zG2WWmRiRGCQ=E_?I(`GO@(_axMzislaeh-vbPH6Gv8T5R{u85;iA2h|@=XU;0a_x6Gp`cR$?K2gao!qR1vd4x5o8die$Sabpe1Mtw0E4&d*ul%db?nHwVF&*S{SfQO ziJTC0;<>^1H$3k<{tLY`jAOl5H+AE7$3E^Hs+~BdRT{@Cit%57Zpq@9>z2-4J!sD1 zAL>DeJNyASueavB-a4%&;^BL5dD8<2;3ur<3wPe8fd7x?r=t1Ks<>%4&9Q8p)~x|P qY2w@(%wdF|6d?SZ{aVwc_#p<*y4em9e9LKpNh3G self.SHORTCUT_THRESHOLD)): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py new file mode 100644 index 000000000..b68078cb9 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py @@ -0,0 +1,195 @@ +######################## 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 , +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 +) + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euckrprober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euckrprober.py new file mode 100644 index 000000000..345a060d0 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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 .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCKRDistributionAnalysis +from .mbcssm import EUCKR_SM_MODEL + + +class EUCKRProber(MultiByteCharSetProber): + def __init__(self): + super(EUCKRProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCKR_SM_MODEL) + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "EUC-KR" + + @property + def language(self): + return "Korean" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py new file mode 100644 index 000000000..ed7a995a3 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py @@ -0,0 +1,387 @@ +######################## 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 + +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 +) + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py new file mode 100644 index 000000000..35669cc4d --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py @@ -0,0 +1,46 @@ +######################## 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 .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCTWDistributionAnalysis +from .mbcssm import EUCTW_SM_MODEL + +class EUCTWProber(MultiByteCharSetProber): + def __init__(self): + super(EUCTWProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCTW_SM_MODEL) + self.distribution_analyzer = EUCTWDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "EUC-TW" + + @property + def language(self): + return "Taiwan" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py new file mode 100644 index 000000000..697837bd9 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py @@ -0,0 +1,283 @@ +######################## 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 + +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 +) + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py new file mode 100644 index 000000000..8446d2dd9 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py @@ -0,0 +1,46 @@ +######################## 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 .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import GB2312DistributionAnalysis +from .mbcssm import GB2312_SM_MODEL + +class GB2312Prober(MultiByteCharSetProber): + def __init__(self): + super(GB2312Prober, self).__init__() + self.coding_sm = CodingStateMachine(GB2312_SM_MODEL) + self.distribution_analyzer = GB2312DistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "GB2312" + + @property + def language(self): + return "Chinese" diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py new file mode 100644 index 000000000..b0e1bf492 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py @@ -0,0 +1,292 @@ +######################## 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 .charsetprober import CharSetProber +from .enums import ProbingState + +# 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): + # 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): + super(HebrewProber, self).__init__() + self._final_char_logical_score = None + self._final_char_visual_score = None + self._prev = None + self._before_prev = None + self._logical_prober = None + self._visual_prober = None + self.reset() + + def reset(self): + 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._before_prev = ' ' + # These probers are owned by the group prober. + + def set_model_probers(self, logicalProber, visualProber): + self._logical_prober = logicalProber + self._visual_prober = visualProber + + def is_final(self, c): + return c in [self.FINAL_KAF, self.FINAL_MEM, self.FINAL_NUN, + self.FINAL_PE, self.FINAL_TSADI] + + def is_non_final(self, c): + # 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): + # 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 == ' ': + # We stand on a space - a word just ended + if self._before_prev != ' ': + # 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 == ' ') and + (self.is_final(self._prev)) and (cur != ' ')): + # 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): + # 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): + return 'Hebrew' + + @property + def state(self): + # 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py new file mode 100644 index 000000000..83fc082b5 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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 + +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 +) + + diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py new file mode 100644 index 000000000..20044e4bc --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py @@ -0,0 +1,233 @@ +######################## 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 ######################### + + +# This is hiragana 2-char sequence table, the number in each cell represents its frequency category +jp2CharContext = ( +(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), +) + +class JapaneseContextAnalysis(object): + NUM_OF_CATEGORY = 6 + DONT_KNOW = -1 + ENOUGH_REL_THRESHOLD = 100 + MAX_REL_THRESHOLD = 1000 + MINIMUM_DATA_THRESHOLD = 4 + + def __init__(self): + self._total_rel = None + self._rel_sample = None + self._need_to_skip_char_num = None + self._last_char_order = None + self._done = None + self.reset() + + def reset(self): + 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, num_bytes): + 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[jp2CharContext[self._last_char_order][order]] += 1 + self._last_char_order = order + + def got_enough_data(self): + return self._total_rel > self.ENOUGH_REL_THRESHOLD + + def get_confidence(self): + # 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 + else: + return self.DONT_KNOW + + def get_order(self, byte_str): + return -1, 1 + +class SJISContextAnalysis(JapaneseContextAnalysis): + def __init__(self): + super(SJISContextAnalysis, self).__init__() + self._charset_name = "SHIFT_JIS" + + @property + def charset_name(self): + return self._charset_name + + def get_order(self, byte_str): + 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): + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py new file mode 100644 index 000000000..e963a5097 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py @@ -0,0 +1,4650 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py new file mode 100644 index 000000000..d99528ede --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py @@ -0,0 +1,4398 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py new file mode 100644 index 000000000..484c652a4 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py new file mode 100644 index 000000000..bbc5cda64 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py @@ -0,0 +1,4650 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py new file mode 100644 index 000000000..5594452b5 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py @@ -0,0 +1,5718 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py new file mode 100644 index 000000000..9a37db573 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py new file mode 100644 index 000000000..43f4230ae --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py new file mode 100644 index 000000000..7d1e8c20f --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py @@ -0,0 +1,145 @@ +######################## 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 .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 + +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 +) + + +class Latin1Prober(CharSetProber): + def __init__(self): + super(Latin1Prober, self).__init__() + self._last_char_class = None + self._freq_counter = None + self.reset() + + def reset(self): + self._last_char_class = OTH + self._freq_counter = [0] * FREQ_CAT_NUM + CharSetProber.reset(self) + + @property + def charset_name(self): + return "ISO-8859-1" + + @property + def language(self): + return "" + + def feed(self, byte_str): + byte_str = self.filter_with_english_letters(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): + if self.state == ProbingState.NOT_ME: + return 0.01 + + total = sum(self._freq_counter) + if total < 0.01: + confidence = 0.0 + else: + confidence = ((self._freq_counter[3] - self._freq_counter[1] * 20.0) + / total) + if confidence < 0.0: + confidence = 0.0 + # lower the confidence of latin1 so that other more accurate + # detector can take priority. + confidence = confidence * 0.73 + return confidence diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py new file mode 100644 index 000000000..6256ecfd1 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py @@ -0,0 +1,91 @@ +######################## 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 .charsetprober import CharSetProber +from .enums import ProbingState, MachineState + + +class MultiByteCharSetProber(CharSetProber): + """ + MultiByteCharSetProber + """ + + def __init__(self, lang_filter=None): + super(MultiByteCharSetProber, self).__init__(lang_filter=lang_filter) + self.distribution_analyzer = None + self.coding_sm = None + self._last_char = [0, 0] + + def reset(self): + super(MultiByteCharSetProber, self).reset() + if self.coding_sm: + self.coding_sm.reset() + if self.distribution_analyzer: + self.distribution_analyzer.reset() + self._last_char = [0, 0] + + @property + def charset_name(self): + raise NotImplementedError + + @property + def language(self): + raise NotImplementedError + + def feed(self, byte_str): + for i in range(len(byte_str)): + coding_state = self.coding_sm.next_state(byte_str[i]) + 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 + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + 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): + return self.distribution_analyzer.get_confidence() diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py new file mode 100644 index 000000000..530abe75e --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py @@ -0,0 +1,54 @@ +######################## 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 .charsetgroupprober import CharSetGroupProber +from .utf8prober import UTF8Prober +from .sjisprober import SJISProber +from .eucjpprober import EUCJPProber +from .gb2312prober import GB2312Prober +from .euckrprober import EUCKRProber +from .cp949prober import CP949Prober +from .big5prober import Big5Prober +from .euctwprober import EUCTWProber + + +class MBCSGroupProber(CharSetGroupProber): + def __init__(self, lang_filter=None): + super(MBCSGroupProber, self).__init__(lang_filter=lang_filter) + self.probers = [ + UTF8Prober(), + SJISProber(), + EUCJPProber(), + GB2312Prober(), + EUCKRProber(), + CP949Prober(), + Big5Prober(), + EUCTWProber() + ] + self.reset() diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py new file mode 100644 index 000000000..8360d0f28 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py @@ -0,0 +1,572 @@ +######################## 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 .enums import MachineState + +# BIG5 + +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 +) + +BIG5_CHAR_LEN_TABLE = (0, 1, 1, 2, 0) + +BIG5_SM_MODEL = {'class_table': BIG5_CLS, + 'class_factor': 5, + 'state_table': BIG5_ST, + 'char_len_table': BIG5_CHAR_LEN_TABLE, + 'name': 'Big5'} + +# CP949 + +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 +) + +CP949_CHAR_LEN_TABLE = (0, 1, 2, 0, 1, 1, 2, 2, 0, 2) + +CP949_SM_MODEL = {'class_table': CP949_CLS, + 'class_factor': 10, + 'state_table': CP949_ST, + 'char_len_table': CP949_CHAR_LEN_TABLE, + 'name': 'CP949'} + +# EUC-JP + +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 +) + +EUCJP_CHAR_LEN_TABLE = (2, 2, 2, 3, 1, 0) + +EUCJP_SM_MODEL = {'class_table': EUCJP_CLS, + 'class_factor': 6, + 'state_table': EUCJP_ST, + 'char_len_table': EUCJP_CHAR_LEN_TABLE, + 'name': 'EUC-JP'} + +# EUC-KR + +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 +) + +EUCKR_CHAR_LEN_TABLE = (0, 1, 2, 0) + +EUCKR_SM_MODEL = {'class_table': EUCKR_CLS, + 'class_factor': 4, + 'state_table': EUCKR_ST, + 'char_len_table': EUCKR_CHAR_LEN_TABLE, + 'name': 'EUC-KR'} + +# EUC-TW + +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 +) + +EUCTW_CHAR_LEN_TABLE = (0, 0, 1, 2, 2, 2, 3) + +EUCTW_SM_MODEL = {'class_table': EUCTW_CLS, + 'class_factor': 7, + 'state_table': EUCTW_ST, + 'char_len_table': EUCTW_CHAR_LEN_TABLE, + 'name': 'x-euc-tw'} + +# GB2312 + +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 +) + +# 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 = {'class_table': GB2312_CLS, + 'class_factor': 7, + 'state_table': GB2312_ST, + 'char_len_table': GB2312_CHAR_LEN_TABLE, + 'name': 'GB2312'} + +# Shift_JIS + +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 +) + +SJIS_CHAR_LEN_TABLE = (0, 1, 1, 2, 0, 0) + +SJIS_SM_MODEL = {'class_table': SJIS_CLS, + 'class_factor': 6, + 'state_table': SJIS_ST, + 'char_len_table': SJIS_CHAR_LEN_TABLE, + 'name': 'Shift_JIS'} + +# UCS2-BE + +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 +) + +UCS2BE_CHAR_LEN_TABLE = (2, 2, 2, 0, 2, 2) + +UCS2BE_SM_MODEL = {'class_table': UCS2BE_CLS, + 'class_factor': 6, + 'state_table': UCS2BE_ST, + 'char_len_table': UCS2BE_CHAR_LEN_TABLE, + 'name': 'UTF-16BE'} + +# UCS2-LE + +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 +) + +UCS2LE_CHAR_LEN_TABLE = (2, 2, 2, 2, 2, 2) + +UCS2LE_SM_MODEL = {'class_table': UCS2LE_CLS, + 'class_factor': 6, + 'state_table': UCS2LE_ST, + 'char_len_table': UCS2LE_CHAR_LEN_TABLE, + 'name': 'UTF-16LE'} + +# UTF-8 + +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 +) + +UTF8_CHAR_LEN_TABLE = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) + +UTF8_SM_MODEL = {'class_table': UTF8_CLS, + 'class_factor': 16, + 'state_table': UTF8_ST, + 'char_len_table': UTF8_CHAR_LEN_TABLE, + 'name': 'UTF-8'} diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fd24e544a3a7b2e5d6724298e729176dde9be3e0 GIT binary patch literal 286 zcmZusL2d#u3=D`vg~UTR1cQ1-2#GtFJ|GH-*|l~zjuO*qf6%Y+48GB8f6-GD^#DR0 z$zzRWjmNxL%vC}6dGNJ=S9-*xh<&L%E9BLiT278vmFoCTKR5W`)a7U$X7E<5#?Vke zOcWY@VisqI2bvOa1aXv>!|Q6ZhD?IG vB6&=g{(jmXF>?Ip|kt5zq=yp+hSI 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 OXQ5@`zq(rIj{HAVGdo5A literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py new file mode 100644 index 000000000..3237d5abf --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py @@ -0,0 +1,310 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +Metadata about languages used by our model training code for our +SingleByteCharSetProbers. Could be used for other things in the future. + +This code is based on the language metadata from the uchardet project. +""" +from __future__ import absolute_import, print_function + +from string import ascii_letters + + +# TODO: Add Ukranian (KOI8-U) + +class Language(object): + """Metadata about a language useful for training models + + :ivar name: The human name for the language, in English. + :type name: str + :ivar iso_code: 2-letter ISO 639-1 if possible, 3-letter ISO code otherwise, + or use another catalog as a last resort. + :type iso_code: str + :ivar use_ascii: Whether or not ASCII letters should be included in trained + models. + :type use_ascii: bool + :ivar charsets: The charsets we want to support and create data for. + :type charsets: list of str + :ivar alphabet: The characters in the language's alphabet. If `use_ascii` is + `True`, you only need to add those not in the ASCII set. + :type alphabet: str + :ivar wiki_start_pages: The Wikipedia pages to start from if we're crawling + Wikipedia for training data. + :type wiki_start_pages: list of str + """ + def __init__(self, name=None, iso_code=None, use_ascii=True, charsets=None, + alphabet=None, wiki_start_pages=None): + super(Language, self).__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): + return '{}({})'.format(self.__class__.__name__, + ', '.join('{}={!r}'.format(k, v) + for k, v in self.__dict__.items() + if not k.startswith('_'))) + + +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=u'ءآأؤإئابةتثجحخدذرزسشصضطظعغػؼؽؾؿـفقكلمنهوىيًٌٍَُِّ', + wiki_start_pages=[u'الصفحة_الرئيسية']), + 'Belarusian': Language(name='Belarusian', + iso_code='be', + use_ascii=False, + charsets=['ISO-8859-5', 'WINDOWS-1251', + 'IBM866', 'MacCyrillic'], + alphabet=(u'АБВГДЕЁЖЗІЙКЛМНОПРСТУЎФХЦЧШЫЬЭЮЯ' + u'абвгдеёжзійклмнопрстуўфхцчшыьэюяʼ'), + wiki_start_pages=[u'Галоўная_старонка']), + 'Bulgarian': Language(name='Bulgarian', + iso_code='bg', + use_ascii=False, + charsets=['ISO-8859-5', 'WINDOWS-1251', + 'IBM855'], + alphabet=(u'АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯ' + u'абвгдежзийклмнопрстуфхцчшщъьюя'), + wiki_start_pages=[u'Начална_страница']), + 'Czech': Language(name='Czech', + iso_code='cz', + use_ascii=True, + charsets=['ISO-8859-2', 'WINDOWS-1250'], + alphabet=u'áčďéěíňóřšťúůýžÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ', + wiki_start_pages=[u'Hlavní_strana']), + 'Danish': Language(name='Danish', + iso_code='da', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'æøåÆØÅ', + wiki_start_pages=[u'Forside']), + 'German': Language(name='German', + iso_code='de', + use_ascii=True, + charsets=['ISO-8859-1', 'WINDOWS-1252'], + alphabet=u'äöüßÄÖÜ', + wiki_start_pages=[u'Wikipedia:Hauptseite']), + 'Greek': Language(name='Greek', + iso_code='el', + use_ascii=False, + charsets=['ISO-8859-7', 'WINDOWS-1253'], + alphabet=(u'αβγδεζηθικλμνξοπρσςτυφχψωάέήίόύώ' + u'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΣΤΥΦΧΨΩΆΈΉΊΌΎΏ'), + wiki_start_pages=[u'Πύλη:Κύρια']), + 'English': Language(name='English', + iso_code='en', + use_ascii=True, + charsets=['ISO-8859-1', 'WINDOWS-1252'], + wiki_start_pages=[u'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=(u'abcĉdefgĝhĥijĵklmnoprsŝtuŭvz' + u'ABCĈDEFGĜHĤIJĴKLMNOPRSŜTUŬVZ'), + wiki_start_pages=[u'Vikipedio:Ĉefpaĝo']), + 'Spanish': Language(name='Spanish', + iso_code='es', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'ñáéíóúüÑÁÉÍÓÚÜ', + wiki_start_pages=[u'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=(u'ABDEGHIJKLMNOPRSTUVÕÄÖÜ' + u'abdeghijklmnoprstuvõäöü'), + wiki_start_pages=[u'Esileht']), + 'Finnish': Language(name='Finnish', + iso_code='fi', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'ÅÄÖŠŽåäöšž', + wiki_start_pages=[u'Wikipedia:Etusivu']), + 'French': Language(name='French', + iso_code='fr', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'œàâçèéîïùûêŒÀÂÇÈÉÎÏÙÛÊ', + wiki_start_pages=[u'Wikipédia:Accueil_principal', + u'Bœuf (animal)']), + 'Hebrew': Language(name='Hebrew', + iso_code='he', + use_ascii=False, + charsets=['ISO-8859-8', 'WINDOWS-1255'], + alphabet=u'אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ', + wiki_start_pages=[u'עמוד_ראשי']), + '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=(u'abcčćdđefghijklmnoprsštuvzž' + u'ABCČĆDĐEFGHIJKLMNOPRSŠTUVZŽ'), + wiki_start_pages=[u'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=(u'abcdefghijklmnoprstuvzáéíóöőúüű' + u'ABCDEFGHIJKLMNOPRSTUVZÁÉÍÓÖŐÚÜŰ'), + wiki_start_pages=[u'Kezdőlap']), + 'Italian': Language(name='Italian', + iso_code='it', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'ÀÈÉÌÒÓÙàèéìòóù', + wiki_start_pages=[u'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=(u'AĄBCČDEĘĖFGHIĮYJKLMNOPRSŠTUŲŪVZŽ' + u'aąbcčdeęėfghiįyjklmnoprsštuųūvzž'), + wiki_start_pages=[u'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=(u'AĀBCČDEĒFGĢHIĪJKĶLĻMNŅOPRSŠTUŪVZŽ' + u'aābcčdeēfgģhiījkķlļmnņoprsštuūvzž'), + wiki_start_pages=[u'Sākumlapa']), + 'Macedonian': Language(name='Macedonian', + iso_code='mk', + use_ascii=False, + charsets=['ISO-8859-5', 'WINDOWS-1251', + 'MacCyrillic', 'IBM855'], + alphabet=(u'АБВГДЃЕЖЗЅИЈКЛЉМНЊОПРСТЌУФХЦЧЏШ' + u'абвгдѓежзѕијклљмнњопрстќуфхцчџш'), + wiki_start_pages=[u'Главна_страница']), + 'Dutch': Language(name='Dutch', + iso_code='nl', + use_ascii=True, + charsets=['ISO-8859-1', 'WINDOWS-1252'], + wiki_start_pages=[u'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=(u'AĄBCĆDEĘFGHIJKLŁMNŃOÓPRSŚTUWYZŹŻ' + u'aąbcćdeęfghijklłmnńoóprsśtuwyzźż'), + wiki_start_pages=[u'Wikipedia:Strona_główna']), + 'Portuguese': Language(name='Portuguese', + iso_code='pt', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'ÁÂÃÀÇÉÊÍÓÔÕÚáâãàçéêíóôõú', + wiki_start_pages=[u'Wikipédia:Página_principal']), + 'Romanian': Language(name='Romanian', + iso_code='ro', + use_ascii=True, + charsets=['ISO-8859-2', 'WINDOWS-1250'], + alphabet=u'ăâîșțĂÂÎȘȚ', + wiki_start_pages=[u'Pagina_principală']), + 'Russian': Language(name='Russian', + iso_code='ru', + use_ascii=False, + charsets=['ISO-8859-5', 'WINDOWS-1251', + 'KOI8-R', 'MacCyrillic', 'IBM866', + 'IBM855'], + alphabet=(u'абвгдеёжзийклмнопрстуфхцчшщъыьэюя' + u'АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ'), + wiki_start_pages=[u'Заглавная_страница']), + 'Slovak': Language(name='Slovak', + iso_code='sk', + use_ascii=True, + charsets=['ISO-8859-2', 'WINDOWS-1250'], + alphabet=u'áäčďéíĺľňóôŕšťúýžÁÄČĎÉÍĹĽŇÓÔŔŠŤÚÝŽ', + wiki_start_pages=[u'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=(u'abcčdefghijklmnoprsštuvzž' + u'ABCČDEFGHIJKLMNOPRSŠTUVZŽ'), + wiki_start_pages=[u'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=(u'АБВГДЂЕЖЗИЈКЛЉМНЊОПРСТЋУФХЦЧЏШ' + u'абвгдђежзијклљмнњопрстћуфхцчџш'), + charsets=['ISO-8859-5', 'WINDOWS-1251', + 'MacCyrillic', 'IBM855'], + wiki_start_pages=[u'Главна_страна']), + 'Thai': Language(name='Thai', + iso_code='th', + use_ascii=False, + charsets=['ISO-8859-11', 'TIS-620', 'CP874'], + alphabet=u'กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛', + wiki_start_pages=[u'หน้าหลัก']), + '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=(u'abcçdefgğhıijklmnoöprsştuüvyzâîû' + u'ABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZÂÎÛ'), + wiki_start_pages=[u'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=(u'aăâbcdđeêghiklmnoôơpqrstuưvxy' + u'AĂÂBCDĐEÊGHIKLMNOÔƠPQRSTUƯVXY'), + wiki_start_pages=[u'Chữ_Quốc_ngữ']), + } diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py new file mode 100644 index 000000000..46ba835c6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py @@ -0,0 +1,145 @@ +######################## 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 collections import namedtuple + +from .charsetprober import CharSetProber +from .enums import CharacterCategory, ProbingState, SequenceLikelihood + + +SingleByteCharSetModel = namedtuple('SingleByteCharSetModel', + ['charset_name', + 'language', + 'char_to_order_map', + 'language_model', + 'typical_positive_ratio', + 'keep_ascii_letters', + 'alphabet']) + + +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, reversed=False, name_prober=None): + super(SingleByteCharSetProber, self).__init__() + self._model = model + # TRUE if we need to reverse every pair in the model lookup + self._reversed = reversed + # Optional auxiliary prober for name decision + self._name_prober = name_prober + self._last_order = None + self._seq_counters = None + self._total_seqs = None + self._total_char = None + self._freq_char = None + self.reset() + + def reset(self): + super(SingleByteCharSetProber, self).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 + # characters that fall in our sampling range + self._freq_char = 0 + + @property + def charset_name(self): + if self._name_prober: + return self._name_prober.charset_name + else: + return self._model.charset_name + + @property + def language(self): + if self._name_prober: + return self._name_prober.language + else: + return self._model.language + + def feed(self, byte_str): + # 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) + 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 + # TODO: Follow uchardet's lead and discount confidence for frequent + # control characters. + # See https://github.com/BYVoid/uchardet/commit/55b4f23971db61 + 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 threshhold %s', charset_name, + confidence, + self.NEGATIVE_SHORTCUT_THRESHOLD) + self._state = ProbingState.NOT_ME + + return self.state + + def get_confidence(self): + r = 0.01 + if self._total_seqs > 0: + r = ((1.0 * self._seq_counters[SequenceLikelihood.POSITIVE]) / + self._total_seqs / self._model.typical_positive_ratio) + r = r * self._freq_char / self._total_char + if r >= 1.0: + r = 0.99 + return r diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py new file mode 100644 index 000000000..bdeef4e15 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py @@ -0,0 +1,83 @@ +######################## 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): + super(SBCSGroupProber, self).__init__() + hebrew_prober = HebrewProber() + logical_hebrew_prober = SingleByteCharSetProber(WINDOWS_1255_HEBREW_MODEL, + False, 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, + True, 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py new file mode 100644 index 000000000..9e29623bd --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py @@ -0,0 +1,92 @@ +######################## 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 .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import SJISDistributionAnalysis +from .jpcntx import SJISContextAnalysis +from .mbcssm import SJIS_SM_MODEL +from .enums import ProbingState, MachineState + + +class SJISProber(MultiByteCharSetProber): + def __init__(self): + super(SJISProber, self).__init__() + self.coding_sm = CodingStateMachine(SJIS_SM_MODEL) + self.distribution_analyzer = SJISDistributionAnalysis() + self.context_analyzer = SJISContextAnalysis() + self.reset() + + def reset(self): + super(SJISProber, self).reset() + self.context_analyzer.reset() + + @property + def charset_name(self): + return self.context_analyzer.charset_name + + @property + def language(self): + return "Japanese" + + def feed(self, byte_str): + for i in range(len(byte_str)): + coding_state = self.coding_sm.next_state(byte_str[i]) + 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 + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + 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): + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py new file mode 100644 index 000000000..055a8ac1b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py @@ -0,0 +1,286 @@ +######################## 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 .charsetgroupprober import CharSetGroupProber +from .enums import InputState, LanguageFilter, ProbingState +from .escprober import EscCharSetProber +from .latin1prober import Latin1Prober +from .mbcsgroupprober import MBCSGroupProber +from .sbcsgroupprober import SBCSGroupProber + + +class UniversalDetector(object): + """ + 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'} + + def __init__(self, lang_filter=LanguageFilter.ALL): + self._esc_charset_prober = None + self._charset_probers = [] + self.result = None + self.done = None + self._got_data = None + self._input_state = None + self._last_char = None + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + self._has_win_bytes = None + self.reset() + + def reset(self): + """ + 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() + for prober in self._charset_probers: + prober.reset() + + def feed(self, byte_str): + """ + 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 len(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 = {'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 = {'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:] + + # 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()) + 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): + """ + 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 + lower_charset_name = max_prober.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) + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/utf8prober.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/utf8prober.py new file mode 100644 index 000000000..6c3196cc2 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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 .charsetprober import CharSetProber +from .enums import ProbingState, MachineState +from .codingstatemachine import CodingStateMachine +from .mbcssm import UTF8_SM_MODEL + + + +class UTF8Prober(CharSetProber): + ONE_CHAR_PROB = 0.5 + + def __init__(self): + super(UTF8Prober, self).__init__() + self.coding_sm = CodingStateMachine(UTF8_SM_MODEL) + self._num_mb_chars = None + self.reset() + + def reset(self): + super(UTF8Prober, self).reset() + self.coding_sm.reset() + self._num_mb_chars = 0 + + @property + def charset_name(self): + return "utf-8" + + @property + def language(self): + return "" + + def feed(self, byte_str): + for c in byte_str: + coding_state = self.coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif 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): + unlike = 0.99 + if self._num_mb_chars < 6: + unlike *= self.ONE_CHAR_PROB ** self._num_mb_chars + return 1.0 - unlike + else: + return unlike diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/version.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/chardet/version.py new file mode 100644 index 000000000..70369b9d6 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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 setup.py and from chardet subpackages. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + +__version__ = "4.0.0" +VERSION = __version__.split('.') diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py new file mode 100644 index 000000000..b149ed79b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py @@ -0,0 +1,6 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from .initialise import init, deinit, reinit, colorama_text +from .ansi import Fore, Back, Style, Cursor +from .ansitowin32 import AnsiToWin32 + +__version__ = '0.4.4' diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9805e510e16342521d84aa9d77630bed3852ccf6 GIT binary patch literal 529 zcmZuuJ5B>J5M6I}H=8UGZLW}F;{+%X;wMTPkdWM1W^EEH{;a&_6HdTYI09F3OGQOb zg@*`%5F`1G=i{e0V>=oRlW41_6aF6kD+IqSjlp3&-Dw1#aHJBA2+}D@b&vFPMluBX zROPxLh3=ESE=j2eWbl>msiCe&74I3@;`v1~Dc(?|nq(o9M*2{2vGH!>M~zk1G0mtK z4<6ditP>$SX3Z+(7k;foC{Au&XWaya>d18R(q2ikyYraOrhC)9^T{X-fl@LhJK!~Noy#5PTV%M0(`vSd+SzR%No&P z&OEDySx6&ysRGAh4 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cdff0e7602b3ce292377391be4d2cc8c83b6101f GIT binary patch literal 3090 zcma)8OK;mo5ayE9i+aX!?4(Uw^&Pd9l(c9IBt>9ZRvb5qY*;qjFily8yRjL|q_SKm zwc!8(oI`&`d(02$pV@0qJm(gmKxdYgt@r_i!hYJ><<9QRd^5|iShO^FHveo>nbWj? zQ5b(r5N4o7e*sX<)+n(F)oq;`wn0srda2naP16kgr|3nRqt;7er=gdp1?XkwHCm*l zml`dx?7m^=KrYh?$Q319AfKZXAWyIy%;!NqPbWd1RB{323v>$PDJ2(KeqXaotN>VM zMZgNP0MF6szE-=m`@&k;@T2NhNVf;9y3PW|UBRMitJhzsdK)fxJ;8X@3n>hWusY;^ zApBq*Mg}2QLomPP2kszhSbfH>S2u(hUT-#8(0Jx=`a?#2w-NI7CQ41z>#)dkhs;5x z)~^2keP|Efkc>ybXQK!E2DCP`*A)Pv39_f{lWB12v<8RQdy;Iu(xuVvFGwR2yhfyn zI$vo#3k%--(|i{4&1mR)ENW6$xOEn+`vGHM!+QN;7z)qb8aA(9tAkA(Jm3jG4C*4R zAAdPfv=I(Z(KGNLF>l8kuqI{oBVph_Yz}wCMi_k8xOTM}`GVEqB%AI!9A@Ybo6b`f z(2zHkBi${x=?0PC81Bd-+Te)LLH9=mv|k6P5RTM4;Ut_xCq;>q&^deBG&t+PNxS;D zH)`Oe#eQ2Fvz;z@DJ6U{V9H4e0FyPDiyW2 z0r#)1iWG1*}9-E`kky1811u^l_Ml_(xSU@si1okF$H-g@w)GteU3 zlxdKc8ssHpC*-0*4WN`Mb1jHM8_plSWieWthNc|-19Sv9d7sQ_4>EUTV$u<3omxs7)aTNQgv&+r%oiInv(AJo1eY0z0(Mle zYlbuz};dp_0%0~pYUwfas0p+j`JRzOYx;(TErq1qQ5Zz+nqSHs4;r62Zq8b z)af|Va-1anpf3ND2YXyr8!j+OVpxyEQz!Lp(#sC8M4izkjGdZJdEe)!9H$> z0Xixd1@zUW&tXPUbGLZ3Ut@LY%-#4GutFukY(mm2sNon% z&AG+3-j|1}%VVl><{gx`&sLtfwYa?2TAr&N>Q7>>T-7+3e1|RO&fdbDZME-weW-u@ z{5a#G>qigvN1=!=gPnboH0?v;1Qi;-4UVitrV}HwX=cs|epC90lx%=AXd?HkDLa z4U$U7UrFaU>Op(!K~l~@d%Xm3NOvT<4iq4;B0NC&4Z%V99l-_Yy_!7cESZ|^LU5(A+?kW9`Q=WhC)4*j-R|O=G-tc3 z9hte?n(y>hTGDLaYxQJm?e@Y-N2ZoL{mzOkb{FPvuP7Bx=NFk*BB(+knNuoJEUCFf zHOhs9rK=s3%1S!e>S!9bL@Cjwwg&OkK>i5!U4!--U6a*Ja^h!ZTkn+SM_m?AKQM+oZ(8wftaV}wnB9$x@F)gBDw zJWgU*IZ9`qRb}AWWCUWRlS{8JcHo;pl|THFi17-Ip=rHZ<~T9Zv&$G;Y0NF$mFeE% z^4(Tf=2Y07R=0cVnFCOT+>0!LQ4GM-IF7lCo7N^|#&KxqISx;O%<=1o7ZGrk`W)eS zdviRUOotC2Gf$|?N2R0+oAQTJD^1K6;3|Yjrj&s)-BxAsv?I#wPsv4i6Eiu&gaTHi bkQrGcYgq8Bn3a5`SedF!rPFDWhFkW3&9Qj+ literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..78afe0ab43e6c0de9b7f19b6728aeddaedd1858e GIT binary patch literal 7988 zcmaJ`OK=>=d7kch?Cb-J1qgxwAHs-sB&;hPlUR3w=-_z6m_t*cce}p3=ISs#^Z!P(!%bNBBB98wI5Z6(nk5KuV&l*}Kd9n&q zG_P=<`+7rf8Wp2yR?MbVv6`7mrfFAfrs18@$ToA8Tr*$EHw%@5>N6W7&0?k49IcFk zW|eGE^jU|ApAT~TS|$6I=39Q|L(R_wrG33J2HN(sptFh|_t~0O&V3A?wAGIp>ar>A zg;rF%8HyljEqc`*nWet9c()NqGkNHX%PVDFX71Hm>w#!W8;zx~5en5(W6E4wk7_Ny z(U5sOy>`uwgD9@jYR7*%i0dfP3aUUOJb(qO=!D0ITE*}U-^9~Q_ENEuJybG&&d;OY z_6z<9p4lMh7yZ!>wS88}`z7pbOpdI@BJi5`gx78dqWcFq2S1`B$8#d}&Y6um)osU% zK>J}QE?;uIYFuk=QJ3e$!fQosPXw*lX^ZgjuCo~m$7?jyR9+m5+D0c1@J%&{@BxO# z&ZY>PPBVzNL*IG%k*LMNZ29F&&ZF%bR;opgA2fn3FAjVs4xO+g)Lctp>-|8)fpBWA zDE3;_;Iitk5WXN>oDCV?E8)dK@)?ThpGfRRDj+J+X1ueWVcZ<@E52YO-o5 zaGFLGG&W_XKQ^1b3&aymOkk}~{&41aR}La?ds+BuC!gZ)~dy>J4xV?N?Ll3 zbtg|ib-6#NN-+0-)F$W^>;*Jpt*6ylkL~j{O%%}q&@)>>OadWB6)nc_kVeaE1`55T zI!&E<*G`+xjc!p`1%9~fIfIk&8&NZ4XLW4&&4v}jVb%nsi9kehC%$LiJ| zzlT%X2gimMXLid>qrdx_udiv3w6d`(i@$V#>DI#CcidZd*4CGAtluo#$+_|{l9{0O zeocfesYkn!%(-r2#auUS2Li_~ty%=h+?ByAvldOQtyi8VULUv@e24K>~AL`+jf>LN&lg+mpgByG3~IGlJ_5Ff{QBj^O#05O7! zWK*GOYX-AT+p=|4bY3VjHKK|UCw`>+*HNNhLv`F+2F8Ku^Fvm#R7*!Ie;UtGf6_mLXUU)Pr|}%~&-&-^9QO_Q z*9$UFfx&tR=l|N(?jI?4b-USa1WlL-@}2|d*Y}3X1zvK(mVSZg%M7uVX( z!s^;>r@HM4c;F!Mic#>e6TlZniBpZY1BbL1PP*kgwM}@>xZR1BzlJY`zm9j)DO2y| z;FBg?Y8)!|ls9lTJ1ym!oGLtdl=#{1dG_YH_uieIee?DA{N7i}uasxs_2#+@bCm~W z{$_WK-aeRp_Zyi9c#}cb>dmT&L+Jl9Xwc~_p+vupDs{~Ux#pM?wNGwZkBz$NvmL%? z_RR2fZ0&1%R!@hm(8S9cTsTPgf z<0=ry^|XWhAymsPkb1=<^9=zAAYuE|&y(4w>~jF@n7)h?Tr0xReBC>)flAaxazD$;xHYC?#YXaU$3A4W)K!xq^lG|L%fb=3Oe7ij@f zRPhTmI)_o1k0e7*B&$RSA>63bZifht{A0SL)QI%(HcCW3$KsY=&~rRz+WJ{&yRA>5 z>WNcjB0&9{Kp=UX|KZ)cN(jYTE{aOx3X1W#-i}L&h1TS(`!V*C6dJ!RjJqxCQ9sXq6)1rb~X@DZXyc8hA%lS1e{7q z64_Ni(}-FWb?AMRNH#H~LN|(C6E8sA&~yWi1hlCph^KX8SRTG=(h=_?X(&c?uKm&@Vv%Ap}a;d-gO$aoujD+0_JQZqTUFA0I`9q z0OH?HMBFBE2nE9wpv{&CY{2TD6p$w@ksW162gX$9qwTQM@Ku;wCutx*Gj4a!96$AA zV@~)aI`n-1;C~ZelG1#eiKUoPUDIM-*WuKSP4*oqa@|DRiZgX{lPlUz>1;}8Ptdt~ z9&`apm{;#}^VV? zF7LBV9o*;YQ)v$_j%m+y+A})nIh*#Bk{%$EtDj5z#s;I#r#-kV%G?(3w%_(7Qf5GYTE*>7z4KCv>Q%kIqb;(4n3bo$s=EMxjG}3LVgd4bci4 z(1Z-p3K`IZ3(*Rfn(NzO%3*$VW+Yab;oYZD~NA1Cdo@?k?Yu z=394{msh2Ae|cr)&OK=?u6%u2X5LwNYk75jK^jZ<7gnWt@7C@0WocmOeQ7ElU+EUI_O0z?_)PV;{%PV#>& zp5Y%Cr}#eQ_X7Xx(hUErlEeS9^dkR$>7wx$r7x5i z{aMnQ?VdYssfN7j^DjO(uqCoqkwtDwz}+7p(4Z?&D~}%i0C6=@s%;*^zoBIb2jenC zQ9y8XS+WyHOcqy;sSA&bD9cTqed4bjdTDMpI?=ZB*n-@pc#*1;Hd#f(2k4LJdR##C zUEn!*;{r22?~Wbc?bBB)vdDC{$`!wX2DsJ)c65O26@pxzaE@Lcouj?gjpzcN<^kDd zyMG1j@2;$`O4fwypn1#LM3-{pN0Znk*|xexsBoQ}e-g}F)LNwKS&~KUeGerfC9`mn zMK;dt&%39O?{1)(Cr*(jrlNMZfrifzylDpr8V}hXLd7~uPV$EKV2Xmj1N~5YkM9`> z8Z|mq1bW7yuFliMTkBB!h)&ns;}1vrBVt@I_Zf|%>t}pMIu`@q)k*z zohGA_AOgNQ2}%%OP;A~-8L`%`iqQwt{M6{Y9~>YON=1m~7=+`9K5%OoOm!?0r$|Pf z)oR(6`Se>ijH%lv)d^#>cTN^uP6RO_A1? z2s`aa>W!dPwvssFBA~~evLhm-F3qMFSGUP>B8ew;WRr$v`T>UjK8i}c8CDKwUcjjr zA=i_vd*S%GKczoalIZ@A+GNDl`IFG$JoO!14RP`+jY0Hp@M$g8Ug-7H`l=tPr1%Er zC>uwc5)E{SCRIavxrx3%Mv3SiZnFt+Z+zB0|1|GMK%PiJ66*uyds<45q}gkd6DVe60~efulDr55E0`edS|X zv&_`e&)>`!F-UD@I12N?d_)c zRrE_^VR7jO65VFpL6QQB-o|xBA<|c!Hin6is)tk!Ezm;WpQ1#R#kAQJ~U^&AVrxkJSkoqO;a+spLKo`qC!hEl;01B=uTGG>y@Q7RHi1bmZ@@B32bTX?^M z_vUlnXYjs)_ZCz;S?lOq8}GiEe79%&yl3aNO{~(hH&J{}bsk!UzU=S9drgxs%kJec zTc(%oAz`6-Cr_0|B<0+yZ~@Md@IsKTp+mB-N%po7^sa}hY)G~s*`j1ilHEXR^mTgk z9#u44ETEDF+;F47jj96IPnk=o2L5v)Pa*T+CidTLhxmU1?z3_v?eP41CyLAY#H=dW zAhD39GDb2>X(U&r(hX{g3$)-1G=jAxdo0=Rumq8z`#wta3Mv~($sGPDHA!xSe_(uK zXQn_?nLx4GD}0g}Kj}^$m#3r1*&^x`8C|B)NM*L4+VLEXaEaGAhae3S#gW z)5`d$B-hX3#dVa3WQ%geITLcj?HBEweF-IFmykEM?D4{+ps`@|J9wxBoFMxu4G$5J zy85Y0le$0(3P2U!3S&X?qwa#qrO{OJnIH?L(ty$mH|j`9C3!+x=2^T-`&yDZe}jy* Xf||tGX6N|?IcFXJE?^~n;>!O6%VlL} literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dcf52d95f293dc4e4f290f2fb7424f425e20dc53 GIT binary patch literal 1776 zcmZ`)OK%%D5GJ|Y)oS(dBj_^$DilG11tKe{Z$(qINb5rnzQjlXT?9sC%lzoGwRuRZ0QTMu<-D9bN21ZKz~XSv_bd^2lXt%Tt?{PmIkvBucn zWLzBq8egN74wYt_=d8b+d7pb*^o15W$b+%$OO75YM2S#pD6y8Ru0tIivwosCb*$^h zyx-7?Zs1PS@Pn3a>eewk;{CR6>owe6)9ZQz=XK2=v-H**d^6j9!%?TaYJ5|a*`9rx z72BWh4C(0V5NJF?Des_i2z1J!>6qh3{6w5GgvTCxdChmz0O;$ghJ|c2D4n)bSJlCk z#tl@Szh-~|S*m~j>dh=1mJ>BJWlt-ox~3Rqg)xv7qwX_n-B67uz55TkS>eFy>Ck1i z=sMfI>AbvX-%kGLo;-VQhVx-=dfId^jXZnSo6Oz5Ew;BF-0zi{GhIY-s7458l1+Mp z7pBk_dPAFAP-E50ip*sy&q}j3nL~u1v58XBBIfH{p837Kp~Q{Vpfx%8@co91MNqaJ zTd)ORh*5CFq2;*7K>os=I0%$P9jb`d7-j~yHB+^s;bJH034AU%3MF%55U3jYdao_? zs(Y{KhF7TSE-AltjgzKpopMZ-P{}G?X|Vh9-VD^_;f~5n(;3?0d7cej*_mZ-zoUwI z$GUw39R;I@doVS7X}bz=yGov@d}_V}uuui%ysV;SrXj>n^o9YrhRd!HqikL@X#1j$mb`YPfW+@XMbNMfPgii0Qg|~O{^t={oR0{*)C}kYh zU4WKc1sR9}Y3L&Z4O~N$RGUzX~mDt$^7dtR-})r>9C3IDDB>Qqz`(~TKDoY8y*o=4VN zmBRotDc}<{uK`4xty&0tjK(S?YqY)$$p)G44hi^>P$2>JA?TnQ z65m#XSaDHnpP{jku(7JOMWFfb@>RG9PxvW=jYW7MUSXK97Yb@x@1s8uH{d-~7hSB} zx6@n?h)qOmB5NAKr{s723HT8As@js|a3gB4j)&i)l$3VKC8jevi;;K|`GQ-i+}YjT zOE=&a8dZX1rs!ge^5Ll(3fr@@GiuMiy)N10Ipl-rLr2}nm&Ro_tM>U-V^v^d1D_lp vIse)#Fg*)>hT|{C*lKh075y80rNo%nm^XzC5V|0VgCvaa$Qo8k+^qcv^}B<; literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7aa3c4dd86f3ad9d4dcda82f30fcab9e2fc8d4cb GIT binary patch literal 4036 zcmaJ^%~Ko66`$_;&`1aj{=nE~ZP|{!R?2`sDz#N9m$NqDkCYZ%hz;4Pq^1US3r37I za?i*ZO0G%@A96{qxq6TL59FM`W3GGJbCOG33HiMq0Ro$hnAflS^>n}fy^nsxqoXAQ z&(@#j#qnrpPZ6E3@g{#~h9L~k5X@t{7X=q)#66DIig?@fOlC+^@|Ly7JR74n zMjg*##+uQYvwXzHkdr`PlCIMc1lYwd6#v6Oit{v z4K6Qh`4zOeyy#79xzqXr(&>S8dLX^(UDMKW$gT}!*9NkRcU{XyK`+R0IYuq^u;ul^ z%lk*ngOn8L^%aYncz?wKxz`VZhxEJLyhWCJmZ$@WA}AoMAl2`wt657qNRxm6ZEibO zTS+%)$Yf3gX)q%@8(~LE6?Qge*5f#B1nutJz56rRN5!JoNW-`@lg2YAC+7=o#@)}X z6NOFL*l9#^PRN;~P86=sb$8OuxbtxK{=K;*OyvwT*$OtGOgHS#`EO)L#A>b)N3jap z!5mKe@WE_%CvzV~L3>>UkH_eU9Kxk@@R31_eT_GH3?dDW2?LSGJX3IKH4%xL zTJU%WJsWKStwW<5wukrF>c5^m!#CAR0mD#x1p6{t7R`&(;Zy;A*~C$*ZtvN*qr zrJA9PMB=L}m@uU8k#CMeK!-{Q0@tvZ!yV@0=P>JIxu8gX%y6_7`MfsVG?>)bGv2Wj zhD&*$?Xf-nj;Cgy@3DFw7*$KJl3nqi%XB{OByl9`4JBpgX|LIo>Sd=HEAoZRLS~4n zX69@L9TCaQY9#AnR!Djcpc03(McGX4EdOtPE{-Xlumk5nk)GCy87(#@u~%5A3nSl0Jua zuAqZM0vED0?9Iv6xs_pWSo`46mYTs_ZE$syI5I4BE+RB!(Dp;2Zqe{vkbv)Uk?4jx+O5ZyQEkPH0M{ElQwP%lXRShR<}LqhHW{o+4?& zf_7T$+kKO8fQKu}#6J#(bbBj${7Ax^_HqKlQtRF$pAZQOB zx{>MC?(h`Mz#S~O1N*?g&z;)*VDrFv{qgdgW)NRbX#ix@l| ztzSZVgw_WHkH&?4K)`FPz-g?U)B;wv#>(zHgcYH*8&p0~>M*+QR5k~|+^tZapB<_s z?p9D}#2u;{AdF)r@(bf`<#vMrOxAKBD%IQ$PHqQ+UR@_bWfCr&(|6DF(gEre;EH@h zk(cCv7imxzHfn(ePelIZ)7Snprt1QL9P$Wm^%CR9ax6t1WiHw@aY1sh4{|BXCWb<6 zHB2M9hT_9ci94y!nWJ#gGyh6!(&8>tH8fSWTK#z*%ya0XJEqEfNSMqakNu}XDEr!;+OXdu-nR#6lNiV9uN@$@nFe>4R9N zg}BNijIxo1GGvVL|4i8qALs5_i#z+S>2kEp`LAmchjMGc@gWZDPyzPQE#z~K_w!X; Qr);@}lI5OtOXbr40Iv<8sQ>@~ literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..517d345943dce037612fadd645432120ad9e4266 GIT binary patch literal 4653 zcmaJ_TT>jz6`r2k&Mpfq2nj4pHnC(Un*@-oBu*U1;vyg}qs0LfS({2tE!zX^YSVt1xD}XxvFaB3Hh0i>RNqG5AYxl9(>qDXXr<>%V_aWK?0-BxKTGbt6SWx+uW)<+^)OasTa6g z_jsXRR8>KrcYM^Vyj9G@)R zyT8!tBmz=2lUCGONTP+&#rmM5=;VrX!q!31eAx_xB_1sFJ7H^o>EvZ{6m=df-oLjL zw~}B1l00u5LYR}*$&&w7(BY9-YLf99$BiZUCJDsx;>k-vwj+bZ(;%Ko$V*JM}2c^ZkG0v08?l&ovp=(&@}ozp-IzawD@lzeWAJe$^iT>R_$b$$aQWqyax@;Pwh z{4T%A-v&1U?iRldZj!&l-^Kb0FThmq%L2f?2cI+v*7=Wk5_=6T{uCrJ&RJr#%?sAH zQp2}XsC(Oazht{=7zkCN9++Hnvb47i%SOhMf0v=ZMZ$HoMj3M(^D z{gs^4N@lyoeA%0gcnf=B7;22O8Do|>6U|x$uS|4V!J4Wq?&2XnAo3$3KPK`MBE7H| zO1R=-ZVK8FlVxwQ)2Uph-fWX*@*nX%&n}{qLY!p?;}d5-L>^W>ma@cbTWI#Gp++3# zNvkF(tqV$X2&TTQWFbLXirYj;^r|T++e+uFM%WET#20rk^+U9nvOtMVup0xy_q<$t zv-I?C;82+~!yy?I`g{Xaa`3*D$xL-Yfkwm7RxcOt;Q%>CuWD*ADqH7L7o!e9!vi5k zB$q`IDEY#W)Kl`8A%AH={@#j>rj0fEkNDjB-)^A;n;TtN6LK48usLLAsVT0fh7EWm zR@>e-Ov5)jh^l;K(s-=Ku*XTQOj|(cwOOk&@c^g7G4JD{y`%8c_s)kjZ)?ZcDu5gn z0&3%krs5+kzK{0p1c=96{MqI-n>H)#w44Kt4tb-N;^){YegOiZ$lV&*eW4UuhJ>Pk z6~CmVq|2yCA7ktj8vhkYUkKXNB-7?U;&W5S3MyBbnqm;w00kJBPz!2_DmLrrQ<7O3 zj#bXMQmS8L!zP+82g*<|(RgkmwQ)#1LISll+H?;jLjp4Bxp4t3B&=HhG)Xs*YH~PL)%|JUEp+*LQa0>~1f??gd{by-b=pUXV|f9@0H(bU5nd zaBdN#_G2`a^C;iJ@o3QLT2H5b+ziF&kl`snsCGbZ(g(%{ihPne;@ZvWha<1>6Va;*} z5iB&&NV`#;uBn`*Owv>Bk64#^%eH#ndOKI|iXB5SOZl8Gu?ml?V3cM+obZ%pRPn78 z_5RFBoi==h0_Gt9uvz24Jae(eP3_d>s3G528lhFIwt>X!Hh8-mC)L7;5yT_BMbN9n z3XydXEFud__O)a$2lOYY~W37{?4^s(< zZOV5gRx#&H%6=u}z%rhi+E&G!!Fa{A|JzR?g9i;^iGr(#rGKLHf3T!6a+@%ukmOKc z5wd_4w{thc$|C$(zy+ITJm4imA68t;JpS;C6*vnkhOy(O&iAmBjVX*cqZko%Z>g3? zqnR?bSSCVsLt~>xoC3%;abFOjij{@A_#F+XBCoRC4s|I-i{BF&E=jVa%^TwD_V1XE z=RtBWk%y+?n~L%iQS#87c{-g(dw=s#u`+Rpg{GpME;+E8Dpop$>GW+XUFBpyY45d? zFvu^8PC~s=an*;4n)wHgRk!nrfeRw#W4%vR2&Bpld?g`Y;-Qk!Ms;fBQ&lYBARQ)m zi2E54x}gcW6A8M4sJg8a>jrf{C-RiYmqh+Rq;FQm(WiuX2ZVYtF`nU>UfHus4*tgQ z=XzerE0xgZ%WtW*_>PwP-XYy+za2Ca^}VjXf7ODk-XgtE^#4IVr390e;fh@un{oaJ Db{)nq literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py new file mode 100644 index 000000000..11ec695ff --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py new file mode 100644 index 000000000..6039a0543 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py @@ -0,0 +1,258 @@ +# 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 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 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 + except AttributeError: + 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() + + # should we strip ANSI sequences from our output? + if strip is None: + strip = conversion_supported or (not self.stream.closed and not self.stream.isatty()) + self.strip = strip + + # should we should convert ANSI sequences into win32 calls? + if convert is None: + convert = conversion_supported and not self.stream.closed and self.stream.isatty() + 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 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py new file mode 100644 index 000000000..430d06687 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py @@ -0,0 +1,80 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import atexit +import contextlib +import sys + +from .ansitowin32 import AnsiToWin32 + + +orig_stdout = None +orig_stderr = None + +wrapped_stdout = None +wrapped_stderr = None + +atexit_done = False + + +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 + + +@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 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py new file mode 100644 index 000000000..c2d836033 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py @@ -0,0 +1,152 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. + +# from winbase.h +STDOUT = -11 +STDERR = -12 + +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 + + 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) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py new file mode 100644 index 000000000..0fdb4ec4e --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py @@ -0,0 +1,169 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +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) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 000000000..115494810 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2019 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import logging + +__version__ = '0.3.3' + +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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86bc8d53b24ed160d73c0ea37ae5296528acd5e6 GIT binary patch literal 1148 zcmZ`&!EVz)5S_I*w&S!A3hEbdAcw@QdPS&GsQ{_Ur3ZvBE7!YCO&qVgb}5OtwFf?< zJ@yaymc4S~%#91o*e!`lS!+i-o|!kZZ)WxSdI-3tU-#s`1Mr=c)fJ$!i@VBENRTXt z7^D-kHy~ZfFF|tUT)45j2+-QeVa8+5;5`%@98_oif&qQ#?MWZKeFYyq^yeR-VCSIV z%2&ZPi@U0O6)JuK*NkD7Ll^`@|1hCo0ZC%Sw9C(n*mI!|*INi|$5 zSbS8@>l0nLZ<9ji%KSqpMeS15a}-NLrE>|f+x9xE48WjjnT&Xw+?`mHh9^-uUEuiMVAje?(`kU?PGbH%=sO9ef9@ukpFQ2 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88ea47dd93c79a90c7c9911a79966c29c0802fec GIT binary patch literal 31622 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..39e9e9f6d2827860bd5836fa88581552ddc0539f GIT binary patch literal 42702 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 A{Qv*} literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..05258dd7c08b9a11a530e29aed8edc806dc88f22 GIT binary patch literal 17403 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 X{|FEjT;@R~?-~nc*|dOZi{^g=qNRT{ literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..15178166b9844392e75572ac0cdbf2879ae69398 GIT binary patch literal 38469 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9798f462436c4c176c1789f33e9095f8be850a48 GIT binary patch literal 10316 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a7681ee17b4f4944c85d96a016ecb7460a9574d3 GIT binary patch literal 11122 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 X!SWCT*LAa`|F=5@I_8?CY5o5Izr~dK literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7ed162478d50b00f4f8eb085d452608d1e6f1ee3 GIT binary patch literal 52660 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 dz8Tfd8B_p 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 Q=!YAQ--+*KQW@+20`SfyoB#j- literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7985250bb1d325349e3201f7f83ccaf47248081b GIT binary patch literal 27395 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce85a317af2dc7b59194c67b71181c8bfee6897c GIT binary patch literal 1191 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 literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-310.pyc b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd79fbb6a10b9ce1cc2d546424d0e1275708bb01 GIT binary patch literal 62566 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 EA3H{x!vFvP literal 0 HcmV?d00001 diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/misc.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/misc.py new file mode 100644 index 000000000..cfb318d34 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/misc.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Backports for individual classes and functions.""" + +import os +import sys + +__all__ = ['cache_from_source', 'callable', 'fsencode'] + + +try: + from imp import cache_from_source +except ImportError: + def cache_from_source(py_file, debug=__debug__): + ext = debug and 'c' or 'o' + return py_file + ext + + +try: + callable = callable +except NameError: + from collections import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode +except AttributeError: + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, str): + return filename.encode(sys.getfilesystemencoding()) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/shutil.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/shutil.py new file mode 100644 index 000000000..10ed36253 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/shutil.py @@ -0,0 +1,764 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Utility functions for copying and archiving files and directory trees. + +XXX The functions here don't copy the resource fork or other metadata on Mac. + +""" + +import os +import sys +import stat +from os.path import abspath +import fnmatch +try: + from collections.abc import Callable +except ImportError: + from collections import Callable +import errno +from . import tarfile + +try: + import bz2 + _BZ2_SUPPORTED = True +except ImportError: + _BZ2_SUPPORTED = False + +try: + from pwd import getpwnam +except ImportError: + getpwnam = None + +try: + from grp import getgrnam +except ImportError: + getgrnam = None + +__all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2", + "copytree", "move", "rmtree", "Error", "SpecialFileError", + "ExecError", "make_archive", "get_archive_formats", + "register_archive_format", "unregister_archive_format", + "get_unpack_formats", "register_unpack_format", + "unregister_unpack_format", "unpack_archive", "ignore_patterns"] + +class Error(EnvironmentError): + pass + +class SpecialFileError(EnvironmentError): + """Raised when trying to do a kind of operation (e.g. copying) which is + not supported on a special file (e.g. a named pipe)""" + +class ExecError(EnvironmentError): + """Raised when a command could not be executed""" + +class ReadError(EnvironmentError): + """Raised when an archive cannot be read""" + +class RegistryError(Exception): + """Raised when a registry operation with the archiving + and unpacking registries fails""" + + +try: + WindowsError +except NameError: + WindowsError = None + +def copyfileobj(fsrc, fdst, length=16*1024): + """copy data from file-like object fsrc to file-like object fdst""" + while 1: + buf = fsrc.read(length) + if not buf: + break + fdst.write(buf) + +def _samefile(src, dst): + # Macintosh, Unix. + if hasattr(os.path, 'samefile'): + try: + return os.path.samefile(src, dst) + except OSError: + return False + + # All other platforms: check for same pathname. + return (os.path.normcase(os.path.abspath(src)) == + os.path.normcase(os.path.abspath(dst))) + +def copyfile(src, dst): + """Copy data from src to dst""" + if _samefile(src, dst): + raise Error("`%s` and `%s` are the same file" % (src, dst)) + + for fn in [src, dst]: + try: + st = os.stat(fn) + except OSError: + # File most likely does not exist + pass + else: + # XXX What about other special files? (sockets, devices...) + if stat.S_ISFIFO(st.st_mode): + raise SpecialFileError("`%s` is a named pipe" % fn) + + with open(src, 'rb') as fsrc: + with open(dst, 'wb') as fdst: + copyfileobj(fsrc, fdst) + +def copymode(src, dst): + """Copy mode bits from src to dst""" + if hasattr(os, 'chmod'): + st = os.stat(src) + mode = stat.S_IMODE(st.st_mode) + os.chmod(dst, mode) + +def copystat(src, dst): + """Copy all stat info (mode bits, atime, mtime, flags) from src to dst""" + st = os.stat(src) + mode = stat.S_IMODE(st.st_mode) + if hasattr(os, 'utime'): + os.utime(dst, (st.st_atime, st.st_mtime)) + if hasattr(os, 'chmod'): + os.chmod(dst, mode) + if hasattr(os, 'chflags') and hasattr(st, 'st_flags'): + try: + os.chflags(dst, st.st_flags) + except OSError as why: + if (not hasattr(errno, 'EOPNOTSUPP') or + why.errno != errno.EOPNOTSUPP): + raise + +def copy(src, dst): + """Copy data and mode bits ("cp src dst"). + + The destination may be a directory. + + """ + if os.path.isdir(dst): + dst = os.path.join(dst, os.path.basename(src)) + copyfile(src, dst) + copymode(src, dst) + +def copy2(src, dst): + """Copy data and all stat info ("cp -p src dst"). + + The destination may be a directory. + + """ + if os.path.isdir(dst): + dst = os.path.join(dst, os.path.basename(src)) + copyfile(src, dst) + copystat(src, dst) + +def ignore_patterns(*patterns): + """Function that can be used as copytree() ignore parameter. + + Patterns is a sequence of glob-style patterns + that are used to exclude files""" + def _ignore_patterns(path, names): + ignored_names = [] + for pattern in patterns: + ignored_names.extend(fnmatch.filter(names, pattern)) + return set(ignored_names) + return _ignore_patterns + +def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2, + ignore_dangling_symlinks=False): + """Recursively copy a directory tree. + + The destination directory must not already exist. + If exception(s) occur, an Error is raised with a list of reasons. + + If the optional symlinks flag is true, symbolic links in the + source tree result in symbolic links in the destination tree; if + it is false, the contents of the files pointed to by symbolic + links are copied. If the file pointed by the symlink doesn't + exist, an exception will be added in the list of errors raised in + an Error exception at the end of the copy process. + + You can set the optional ignore_dangling_symlinks flag to true if you + want to silence this exception. Notice that this has no effect on + platforms that don't support os.symlink. + + The optional ignore argument is a callable. If given, it + is called with the `src` parameter, which is the directory + being visited by copytree(), and `names` which is the list of + `src` contents, as returned by os.listdir(): + + callable(src, names) -> ignored_names + + Since copytree() is called recursively, the callable will be + called once for each directory that is copied. It returns a + list of names relative to the `src` directory that should + not be copied. + + The optional copy_function argument is a callable that will be used + to copy each file. It will be called with the source path and the + destination path as arguments. By default, copy2() is used, but any + function that supports the same signature (like copy()) can be used. + + """ + names = os.listdir(src) + if ignore is not None: + ignored_names = ignore(src, names) + else: + ignored_names = set() + + os.makedirs(dst) + errors = [] + for name in names: + if name in ignored_names: + continue + srcname = os.path.join(src, name) + dstname = os.path.join(dst, name) + try: + if os.path.islink(srcname): + linkto = os.readlink(srcname) + if symlinks: + os.symlink(linkto, dstname) + else: + # ignore dangling symlink if the flag is on + if not os.path.exists(linkto) and ignore_dangling_symlinks: + continue + # otherwise let the copy occurs. copy2 will raise an error + copy_function(srcname, dstname) + elif os.path.isdir(srcname): + copytree(srcname, dstname, symlinks, ignore, copy_function) + else: + # Will raise a SpecialFileError for unsupported file types + copy_function(srcname, dstname) + # catch the Error from the recursive copytree so that we can + # continue with other files + except Error as err: + errors.extend(err.args[0]) + except EnvironmentError as why: + errors.append((srcname, dstname, str(why))) + try: + copystat(src, dst) + except OSError as why: + if WindowsError is not None and isinstance(why, WindowsError): + # Copying file access times may fail on Windows + pass + else: + errors.extend((src, dst, str(why))) + if errors: + raise Error(errors) + +def rmtree(path, ignore_errors=False, onerror=None): + """Recursively delete a directory tree. + + If ignore_errors is set, errors are ignored; otherwise, if onerror + is set, it is called to handle the error with arguments (func, + path, exc_info) where func is os.listdir, os.remove, or os.rmdir; + path is the argument to that function that caused it to fail; and + exc_info is a tuple returned by sys.exc_info(). If ignore_errors + is false and onerror is None, an exception is raised. + + """ + if ignore_errors: + def onerror(*args): + pass + elif onerror is None: + def onerror(*args): + raise + try: + if os.path.islink(path): + # symlinks to directories are forbidden, see bug #1669 + raise OSError("Cannot call rmtree on a symbolic link") + except OSError: + onerror(os.path.islink, path, sys.exc_info()) + # can't continue even if onerror hook returns + return + names = [] + try: + names = os.listdir(path) + except os.error: + onerror(os.listdir, path, sys.exc_info()) + for name in names: + fullname = os.path.join(path, name) + try: + mode = os.lstat(fullname).st_mode + except os.error: + mode = 0 + if stat.S_ISDIR(mode): + rmtree(fullname, ignore_errors, onerror) + else: + try: + os.remove(fullname) + except os.error: + onerror(os.remove, fullname, sys.exc_info()) + try: + os.rmdir(path) + except os.error: + onerror(os.rmdir, path, sys.exc_info()) + + +def _basename(path): + # A basename() variant which first strips the trailing slash, if present. + # Thus we always get the last component of the path, even for directories. + return os.path.basename(path.rstrip(os.path.sep)) + +def move(src, dst): + """Recursively move a file or directory to another location. This is + similar to the Unix "mv" command. + + If the destination is a directory or a symlink to a directory, the source + is moved inside the directory. The destination path must not already + exist. + + If the destination already exists but is not a directory, it may be + overwritten depending on os.rename() semantics. + + If the destination is on our current filesystem, then rename() is used. + Otherwise, src is copied to the destination and then removed. + A lot more could be done here... A look at a mv.c shows a lot of + the issues this implementation glosses over. + + """ + real_dst = dst + if os.path.isdir(dst): + if _samefile(src, dst): + # We might be on a case insensitive filesystem, + # perform the rename anyway. + os.rename(src, dst) + return + + real_dst = os.path.join(dst, _basename(src)) + if os.path.exists(real_dst): + raise Error("Destination path '%s' already exists" % real_dst) + try: + os.rename(src, real_dst) + except OSError: + if os.path.isdir(src): + if _destinsrc(src, dst): + raise Error("Cannot move a directory '%s' into itself '%s'." % (src, dst)) + copytree(src, real_dst, symlinks=True) + rmtree(src) + else: + copy2(src, real_dst) + os.unlink(src) + +def _destinsrc(src, dst): + src = abspath(src) + dst = abspath(dst) + if not src.endswith(os.path.sep): + src += os.path.sep + if not dst.endswith(os.path.sep): + dst += os.path.sep + return dst.startswith(src) + +def _get_gid(name): + """Returns a gid, given a group name.""" + if getgrnam is None or name is None: + return None + try: + result = getgrnam(name) + except KeyError: + result = None + if result is not None: + return result[2] + return None + +def _get_uid(name): + """Returns an uid, given a user name.""" + if getpwnam is None or name is None: + return None + try: + result = getpwnam(name) + except KeyError: + result = None + if result is not None: + return result[2] + return None + +def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, + owner=None, group=None, logger=None): + """Create a (possibly compressed) tar file from all the files under + 'base_dir'. + + 'compress' must be "gzip" (the default), "bzip2", or None. + + 'owner' and 'group' can be used to define an owner and a group for the + archive that is being built. If not provided, the current owner and group + will be used. + + The output tar file will be named 'base_name' + ".tar", possibly plus + the appropriate compression extension (".gz", or ".bz2"). + + Returns the output filename. + """ + tar_compression = {'gzip': 'gz', None: ''} + compress_ext = {'gzip': '.gz'} + + if _BZ2_SUPPORTED: + tar_compression['bzip2'] = 'bz2' + compress_ext['bzip2'] = '.bz2' + + # flags for compression program, each element of list will be an argument + if compress is not None and compress not in compress_ext: + raise ValueError("bad value for 'compress', or compression format not " + "supported : {0}".format(compress)) + + archive_name = base_name + '.tar' + compress_ext.get(compress, '') + archive_dir = os.path.dirname(archive_name) + + if not os.path.exists(archive_dir): + if logger is not None: + logger.info("creating %s", archive_dir) + if not dry_run: + os.makedirs(archive_dir) + + # creating the tarball + if logger is not None: + logger.info('Creating tar archive') + + uid = _get_uid(owner) + gid = _get_gid(group) + + def _set_uid_gid(tarinfo): + if gid is not None: + tarinfo.gid = gid + tarinfo.gname = group + if uid is not None: + tarinfo.uid = uid + tarinfo.uname = owner + return tarinfo + + if not dry_run: + tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress]) + try: + tar.add(base_dir, filter=_set_uid_gid) + finally: + tar.close() + + return archive_name + +def _call_external_zip(base_dir, zip_filename, verbose=False, dry_run=False): + # XXX see if we want to keep an external call here + if verbose: + zipoptions = "-r" + else: + zipoptions = "-rq" + from distutils.errors import DistutilsExecError + from distutils.spawn import spawn + try: + spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run) + except DistutilsExecError: + # XXX really should distinguish between "couldn't find + # external 'zip' command" and "zip failed". + raise ExecError("unable to create zip file '%s': " + "could neither import the 'zipfile' module nor " + "find a standalone zip utility") % zip_filename + +def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None): + """Create a zip file from all the files under 'base_dir'. + + The output zip file will be named 'base_name' + ".zip". Uses either the + "zipfile" Python module (if available) or the InfoZIP "zip" utility + (if installed and found on the default search path). If neither tool is + available, raises ExecError. Returns the name of the output zip + file. + """ + zip_filename = base_name + ".zip" + archive_dir = os.path.dirname(base_name) + + if not os.path.exists(archive_dir): + if logger is not None: + logger.info("creating %s", archive_dir) + if not dry_run: + os.makedirs(archive_dir) + + # If zipfile module is not available, try spawning an external 'zip' + # command. + try: + import zipfile + except ImportError: + zipfile = None + + if zipfile is None: + _call_external_zip(base_dir, zip_filename, verbose, dry_run) + else: + if logger is not None: + logger.info("creating '%s' and adding '%s' to it", + zip_filename, base_dir) + + if not dry_run: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_DEFLATED) + + for dirpath, dirnames, filenames in os.walk(base_dir): + for name in filenames: + path = os.path.normpath(os.path.join(dirpath, name)) + if os.path.isfile(path): + zip.write(path, path) + if logger is not None: + logger.info("adding '%s'", path) + zip.close() + + return zip_filename + +_ARCHIVE_FORMATS = { + 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"), + 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"), + 'tar': (_make_tarball, [('compress', None)], "uncompressed tar file"), + 'zip': (_make_zipfile, [], "ZIP file"), + } + +if _BZ2_SUPPORTED: + _ARCHIVE_FORMATS['bztar'] = (_make_tarball, [('compress', 'bzip2')], + "bzip2'ed tar-file") + +def get_archive_formats(): + """Returns a list of supported formats for archiving and unarchiving. + + Each element of the returned sequence is a tuple (name, description) + """ + formats = [(name, registry[2]) for name, registry in + _ARCHIVE_FORMATS.items()] + formats.sort() + return formats + +def register_archive_format(name, function, extra_args=None, description=''): + """Registers an archive format. + + name is the name of the format. function is the callable that will be + used to create archives. If provided, extra_args is a sequence of + (name, value) tuples that will be passed as arguments to the callable. + description can be provided to describe the format, and will be returned + by the get_archive_formats() function. + """ + if extra_args is None: + extra_args = [] + if not isinstance(function, Callable): + raise TypeError('The %s object is not callable' % function) + if not isinstance(extra_args, (tuple, list)): + raise TypeError('extra_args needs to be a sequence') + for element in extra_args: + if not isinstance(element, (tuple, list)) or len(element) !=2: + raise TypeError('extra_args elements are : (arg_name, value)') + + _ARCHIVE_FORMATS[name] = (function, extra_args, description) + +def unregister_archive_format(name): + del _ARCHIVE_FORMATS[name] + +def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, + dry_run=0, owner=None, group=None, logger=None): + """Create an archive file (eg. zip or tar). + + 'base_name' is the name of the file to create, minus any format-specific + extension; 'format' is the archive format: one of "zip", "tar", "bztar" + or "gztar". + + 'root_dir' is a directory that will be the root directory of the + archive; ie. we typically chdir into 'root_dir' before creating the + archive. 'base_dir' is the directory where we start archiving from; + ie. 'base_dir' will be the common prefix of all files and + directories in the archive. 'root_dir' and 'base_dir' both default + to the current directory. Returns the name of the archive file. + + 'owner' and 'group' are used when creating a tar archive. By default, + uses the current owner and group. + """ + save_cwd = os.getcwd() + if root_dir is not None: + if logger is not None: + logger.debug("changing into '%s'", root_dir) + base_name = os.path.abspath(base_name) + if not dry_run: + os.chdir(root_dir) + + if base_dir is None: + base_dir = os.curdir + + kwargs = {'dry_run': dry_run, 'logger': logger} + + try: + format_info = _ARCHIVE_FORMATS[format] + except KeyError: + raise ValueError("unknown archive format '%s'" % format) + + func = format_info[0] + for arg, val in format_info[1]: + kwargs[arg] = val + + if format != 'zip': + kwargs['owner'] = owner + kwargs['group'] = group + + try: + filename = func(base_name, base_dir, **kwargs) + finally: + if root_dir is not None: + if logger is not None: + logger.debug("changing back to '%s'", save_cwd) + os.chdir(save_cwd) + + return filename + + +def get_unpack_formats(): + """Returns a list of supported formats for unpacking. + + Each element of the returned sequence is a tuple + (name, extensions, description) + """ + formats = [(name, info[0], info[3]) for name, info in + _UNPACK_FORMATS.items()] + formats.sort() + return formats + +def _check_unpack_options(extensions, function, extra_args): + """Checks what gets registered as an unpacker.""" + # first make sure no other unpacker is registered for this extension + existing_extensions = {} + for name, info in _UNPACK_FORMATS.items(): + for ext in info[0]: + existing_extensions[ext] = name + + for extension in extensions: + if extension in existing_extensions: + msg = '%s is already registered for "%s"' + raise RegistryError(msg % (extension, + existing_extensions[extension])) + + if not isinstance(function, Callable): + raise TypeError('The registered function must be a callable') + + +def register_unpack_format(name, extensions, function, extra_args=None, + description=''): + """Registers an unpack format. + + `name` is the name of the format. `extensions` is a list of extensions + corresponding to the format. + + `function` is the callable that will be + used to unpack archives. The callable will receive archives to unpack. + If it's unable to handle an archive, it needs to raise a ReadError + exception. + + If provided, `extra_args` is a sequence of + (name, value) tuples that will be passed as arguments to the callable. + description can be provided to describe the format, and will be returned + by the get_unpack_formats() function. + """ + if extra_args is None: + extra_args = [] + _check_unpack_options(extensions, function, extra_args) + _UNPACK_FORMATS[name] = extensions, function, extra_args, description + +def unregister_unpack_format(name): + """Removes the pack format from the registry.""" + del _UNPACK_FORMATS[name] + +def _ensure_directory(path): + """Ensure that the parent directory of `path` exists""" + dirname = os.path.dirname(path) + if not os.path.isdir(dirname): + os.makedirs(dirname) + +def _unpack_zipfile(filename, extract_dir): + """Unpack zip `filename` to `extract_dir` + """ + try: + import zipfile + except ImportError: + raise ReadError('zlib not supported, cannot unpack this archive.') + + if not zipfile.is_zipfile(filename): + raise ReadError("%s is not a zip file" % filename) + + zip = zipfile.ZipFile(filename) + try: + for info in zip.infolist(): + name = info.filename + + # don't extract absolute paths or ones with .. in them + if name.startswith('/') or '..' in name: + continue + + target = os.path.join(extract_dir, *name.split('/')) + if not target: + continue + + _ensure_directory(target) + if not name.endswith('/'): + # file + data = zip.read(info.filename) + f = open(target, 'wb') + try: + f.write(data) + finally: + f.close() + del data + finally: + zip.close() + +def _unpack_tarfile(filename, extract_dir): + """Unpack tar/tar.gz/tar.bz2 `filename` to `extract_dir` + """ + try: + tarobj = tarfile.open(filename) + except tarfile.TarError: + raise ReadError( + "%s is not a compressed or uncompressed tar file" % filename) + try: + tarobj.extractall(extract_dir) + finally: + tarobj.close() + +_UNPACK_FORMATS = { + 'gztar': (['.tar.gz', '.tgz'], _unpack_tarfile, [], "gzip'ed tar-file"), + 'tar': (['.tar'], _unpack_tarfile, [], "uncompressed tar file"), + 'zip': (['.zip'], _unpack_zipfile, [], "ZIP file") + } + +if _BZ2_SUPPORTED: + _UNPACK_FORMATS['bztar'] = (['.bz2'], _unpack_tarfile, [], + "bzip2'ed tar-file") + +def _find_unpack_format(filename): + for name, info in _UNPACK_FORMATS.items(): + for extension in info[0]: + if filename.endswith(extension): + return name + return None + +def unpack_archive(filename, extract_dir=None, format=None): + """Unpack an archive. + + `filename` is the name of the archive. + + `extract_dir` is the name of the target directory, where the archive + is unpacked. If not provided, the current working directory is used. + + `format` is the archive format: one of "zip", "tar", or "gztar". Or any + other registered format. If not provided, unpack_archive will use the + filename extension and see if an unpacker was registered for that + extension. + + In case none is found, a ValueError is raised. + """ + if extract_dir is None: + extract_dir = os.getcwd() + + if format is not None: + try: + format_info = _UNPACK_FORMATS[format] + except KeyError: + raise ValueError("Unknown unpack format '{0}'".format(format)) + + func = format_info[1] + func(filename, extract_dir, **dict(format_info[2])) + else: + # we need to look at the registered unpackers supported extensions + format = _find_unpack_format(filename) + if format is None: + raise ReadError("Unknown archive format '{0}'".format(filename)) + + func = _UNPACK_FORMATS[format][1] + kwargs = dict(_UNPACK_FORMATS[format][2]) + func(filename, extract_dir, **kwargs) diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg new file mode 100644 index 000000000..1746bd01c --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg @@ -0,0 +1,84 @@ +[posix_prefix] +# Configuration directories. Some of these come straight out of the +# configure script. They are for implementing the other variables, not to +# be used directly in [resource_locations]. +confdir = /etc +datadir = /usr/share +libdir = /usr/lib +statedir = /var +# User resource directory +local = ~/.local/{distribution.name} + +stdlib = {base}/lib/python{py_version_short} +platstdlib = {platbase}/lib/python{py_version_short} +purelib = {base}/lib/python{py_version_short}/site-packages +platlib = {platbase}/lib/python{py_version_short}/site-packages +include = {base}/include/python{py_version_short}{abiflags} +platinclude = {platbase}/include/python{py_version_short}{abiflags} +data = {base} + +[posix_home] +stdlib = {base}/lib/python +platstdlib = {base}/lib/python +purelib = {base}/lib/python +platlib = {base}/lib/python +include = {base}/include/python +platinclude = {base}/include/python +scripts = {base}/bin +data = {base} + +[nt] +stdlib = {base}/Lib +platstdlib = {base}/Lib +purelib = {base}/Lib/site-packages +platlib = {base}/Lib/site-packages +include = {base}/Include +platinclude = {base}/Include +scripts = {base}/Scripts +data = {base} + +[os2] +stdlib = {base}/Lib +platstdlib = {base}/Lib +purelib = {base}/Lib/site-packages +platlib = {base}/Lib/site-packages +include = {base}/Include +platinclude = {base}/Include +scripts = {base}/Scripts +data = {base} + +[os2_home] +stdlib = {userbase}/lib/python{py_version_short} +platstdlib = {userbase}/lib/python{py_version_short} +purelib = {userbase}/lib/python{py_version_short}/site-packages +platlib = {userbase}/lib/python{py_version_short}/site-packages +include = {userbase}/include/python{py_version_short} +scripts = {userbase}/bin +data = {userbase} + +[nt_user] +stdlib = {userbase}/Python{py_version_nodot} +platstdlib = {userbase}/Python{py_version_nodot} +purelib = {userbase}/Python{py_version_nodot}/site-packages +platlib = {userbase}/Python{py_version_nodot}/site-packages +include = {userbase}/Python{py_version_nodot}/Include +scripts = {userbase}/Scripts +data = {userbase} + +[posix_user] +stdlib = {userbase}/lib/python{py_version_short} +platstdlib = {userbase}/lib/python{py_version_short} +purelib = {userbase}/lib/python{py_version_short}/site-packages +platlib = {userbase}/lib/python{py_version_short}/site-packages +include = {userbase}/include/python{py_version_short} +scripts = {userbase}/bin +data = {userbase} + +[osx_framework_user] +stdlib = {userbase}/lib/python +platstdlib = {userbase}/lib/python +purelib = {userbase}/lib/python/site-packages +platlib = {userbase}/lib/python/site-packages +include = {userbase}/include +scripts = {userbase}/bin +data = {userbase} diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.py new file mode 100644 index 000000000..b470a373c --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/sysconfig.py @@ -0,0 +1,786 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Access to Python's configuration information.""" + +import codecs +import os +import re +import sys +from os.path import pardir, realpath +try: + import configparser +except ImportError: + import ConfigParser as configparser + + +__all__ = [ + 'get_config_h_filename', + 'get_config_var', + 'get_config_vars', + 'get_makefile_filename', + 'get_path', + 'get_path_names', + 'get_paths', + 'get_platform', + 'get_python_version', + 'get_scheme_names', + 'parse_config_h', +] + + +def _safe_realpath(path): + try: + return realpath(path) + except OSError: + return path + + +if sys.executable: + _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable)) +else: + # sys.executable can be empty if argv[0] has been changed and Python is + # unable to retrieve the real program name + _PROJECT_BASE = _safe_realpath(os.getcwd()) + +if os.name == "nt" and "pcbuild" in _PROJECT_BASE[-8:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir)) +# PC/VS7.1 +if os.name == "nt" and "\\pc\\v" in _PROJECT_BASE[-10:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir)) +# PC/AMD64 +if os.name == "nt" and "\\pcbuild\\amd64" in _PROJECT_BASE[-14:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir)) + + +def is_python_build(): + for fn in ("Setup.dist", "Setup.local"): + if os.path.isfile(os.path.join(_PROJECT_BASE, "Modules", fn)): + return True + return False + +_PYTHON_BUILD = is_python_build() + +_cfg_read = False + +def _ensure_cfg_read(): + global _cfg_read + if not _cfg_read: + from ..resources import finder + backport_package = __name__.rsplit('.', 1)[0] + _finder = finder(backport_package) + _cfgfile = _finder.find('sysconfig.cfg') + assert _cfgfile, 'sysconfig.cfg exists' + with _cfgfile.as_stream() as s: + _SCHEMES.readfp(s) + if _PYTHON_BUILD: + for scheme in ('posix_prefix', 'posix_home'): + _SCHEMES.set(scheme, 'include', '{srcdir}/Include') + _SCHEMES.set(scheme, 'platinclude', '{projectbase}/.') + + _cfg_read = True + + +_SCHEMES = configparser.RawConfigParser() +_VAR_REPL = re.compile(r'\{([^{]*?)\}') + +def _expand_globals(config): + _ensure_cfg_read() + if config.has_section('globals'): + globals = config.items('globals') + else: + globals = tuple() + + sections = config.sections() + for section in sections: + if section == 'globals': + continue + for option, value in globals: + if config.has_option(section, option): + continue + config.set(section, option, value) + config.remove_section('globals') + + # now expanding local variables defined in the cfg file + # + for section in config.sections(): + variables = dict(config.items(section)) + + def _replacer(matchobj): + name = matchobj.group(1) + if name in variables: + return variables[name] + return matchobj.group(0) + + for option, value in config.items(section): + config.set(section, option, _VAR_REPL.sub(_replacer, value)) + +#_expand_globals(_SCHEMES) + +_PY_VERSION = '%s.%s.%s' % sys.version_info[:3] +_PY_VERSION_SHORT = '%s.%s' % sys.version_info[:2] +_PY_VERSION_SHORT_NO_DOT = '%s%s' % sys.version_info[:2] +_PREFIX = os.path.normpath(sys.prefix) +_EXEC_PREFIX = os.path.normpath(sys.exec_prefix) +_CONFIG_VARS = None +_USER_BASE = None + + +def _subst_vars(path, local_vars): + """In the string `path`, replace tokens like {some.thing} with the + corresponding value from the map `local_vars`. + + If there is no corresponding value, leave the token unchanged. + """ + def _replacer(matchobj): + name = matchobj.group(1) + if name in local_vars: + return local_vars[name] + elif name in os.environ: + return os.environ[name] + return matchobj.group(0) + return _VAR_REPL.sub(_replacer, path) + + +def _extend_dict(target_dict, other_dict): + target_keys = target_dict.keys() + for key, value in other_dict.items(): + if key in target_keys: + continue + target_dict[key] = value + + +def _expand_vars(scheme, vars): + res = {} + if vars is None: + vars = {} + _extend_dict(vars, get_config_vars()) + + for key, value in _SCHEMES.items(scheme): + if os.name in ('posix', 'nt'): + value = os.path.expanduser(value) + res[key] = os.path.normpath(_subst_vars(value, vars)) + return res + + +def format_value(value, vars): + def _replacer(matchobj): + name = matchobj.group(1) + if name in vars: + return vars[name] + return matchobj.group(0) + return _VAR_REPL.sub(_replacer, value) + + +def _get_default_scheme(): + if os.name == 'posix': + # the default scheme for posix is posix_prefix + return 'posix_prefix' + return os.name + + +def _getuserbase(): + env_base = os.environ.get("PYTHONUSERBASE", None) + + def joinuser(*args): + return os.path.expanduser(os.path.join(*args)) + + # what about 'os2emx', 'riscos' ? + if os.name == "nt": + base = os.environ.get("APPDATA") or "~" + if env_base: + return env_base + else: + return joinuser(base, "Python") + + if sys.platform == "darwin": + framework = get_config_var("PYTHONFRAMEWORK") + if framework: + if env_base: + return env_base + else: + return joinuser("~", "Library", framework, "%d.%d" % + sys.version_info[:2]) + + if env_base: + return env_base + else: + return joinuser("~", ".local") + + +def _parse_makefile(filename, vars=None): + """Parse a Makefile-style file. + + A dictionary containing name/value pairs is returned. If an + optional dictionary is passed in as the second argument, it is + used instead of a new dictionary. + """ + # Regexes needed for parsing Makefile (and similar syntaxes, + # like old-style Setup files). + _variable_rx = re.compile(r"([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*(.*)") + _findvar1_rx = re.compile(r"\$\(([A-Za-z][A-Za-z0-9_]*)\)") + _findvar2_rx = re.compile(r"\${([A-Za-z][A-Za-z0-9_]*)}") + + if vars is None: + vars = {} + done = {} + notdone = {} + + with codecs.open(filename, encoding='utf-8', errors="surrogateescape") as f: + lines = f.readlines() + + for line in lines: + if line.startswith('#') or line.strip() == '': + continue + m = _variable_rx.match(line) + if m: + n, v = m.group(1, 2) + v = v.strip() + # `$$' is a literal `$' in make + tmpv = v.replace('$$', '') + + if "$" in tmpv: + notdone[n] = v + else: + try: + v = int(v) + except ValueError: + # insert literal `$' + done[n] = v.replace('$$', '$') + else: + done[n] = v + + # do variable interpolation here + variables = list(notdone.keys()) + + # Variables with a 'PY_' prefix in the makefile. These need to + # be made available without that prefix through sysconfig. + # Special care is needed to ensure that variable expansion works, even + # if the expansion uses the name without a prefix. + renamed_variables = ('CFLAGS', 'LDFLAGS', 'CPPFLAGS') + + while len(variables) > 0: + for name in tuple(variables): + value = notdone[name] + m = _findvar1_rx.search(value) or _findvar2_rx.search(value) + if m is not None: + n = m.group(1) + found = True + if n in done: + item = str(done[n]) + elif n in notdone: + # get it on a subsequent round + found = False + elif n in os.environ: + # do it like make: fall back to environment + item = os.environ[n] + + elif n in renamed_variables: + if (name.startswith('PY_') and + name[3:] in renamed_variables): + item = "" + + elif 'PY_' + n in notdone: + found = False + + else: + item = str(done['PY_' + n]) + + else: + done[n] = item = "" + + if found: + after = value[m.end():] + value = value[:m.start()] + item + after + if "$" in after: + notdone[name] = value + else: + try: + value = int(value) + except ValueError: + done[name] = value.strip() + else: + done[name] = value + variables.remove(name) + + if (name.startswith('PY_') and + name[3:] in renamed_variables): + + name = name[3:] + if name not in done: + done[name] = value + + else: + # bogus variable reference (e.g. "prefix=$/opt/python"); + # just drop it since we can't deal + done[name] = value + variables.remove(name) + + # strip spurious spaces + for k, v in done.items(): + if isinstance(v, str): + done[k] = v.strip() + + # save the results in the global dictionary + vars.update(done) + return vars + + +def get_makefile_filename(): + """Return the path of the Makefile.""" + if _PYTHON_BUILD: + return os.path.join(_PROJECT_BASE, "Makefile") + if hasattr(sys, 'abiflags'): + config_dir_name = 'config-%s%s' % (_PY_VERSION_SHORT, sys.abiflags) + else: + config_dir_name = 'config' + return os.path.join(get_path('stdlib'), config_dir_name, 'Makefile') + + +def _init_posix(vars): + """Initialize the module as appropriate for POSIX systems.""" + # load the installed Makefile: + makefile = get_makefile_filename() + try: + _parse_makefile(makefile, vars) + except IOError as e: + msg = "invalid Python installation: unable to open %s" % makefile + if hasattr(e, "strerror"): + msg = msg + " (%s)" % e.strerror + raise IOError(msg) + # load the installed pyconfig.h: + config_h = get_config_h_filename() + try: + with open(config_h) as f: + parse_config_h(f, vars) + except IOError as e: + msg = "invalid Python installation: unable to open %s" % config_h + if hasattr(e, "strerror"): + msg = msg + " (%s)" % e.strerror + raise IOError(msg) + # On AIX, there are wrong paths to the linker scripts in the Makefile + # -- these paths are relative to the Python source, but when installed + # the scripts are in another directory. + if _PYTHON_BUILD: + vars['LDSHARED'] = vars['BLDSHARED'] + + +def _init_non_posix(vars): + """Initialize the module as appropriate for NT""" + # set basic install directories + vars['LIBDEST'] = get_path('stdlib') + vars['BINLIBDEST'] = get_path('platstdlib') + vars['INCLUDEPY'] = get_path('include') + vars['SO'] = '.pyd' + vars['EXE'] = '.exe' + vars['VERSION'] = _PY_VERSION_SHORT_NO_DOT + vars['BINDIR'] = os.path.dirname(_safe_realpath(sys.executable)) + +# +# public APIs +# + + +def parse_config_h(fp, vars=None): + """Parse a config.h-style file. + + A dictionary containing name/value pairs is returned. If an + optional dictionary is passed in as the second argument, it is + used instead of a new dictionary. + """ + if vars is None: + vars = {} + define_rx = re.compile("#define ([A-Z][A-Za-z0-9_]+) (.*)\n") + undef_rx = re.compile("/[*] #undef ([A-Z][A-Za-z0-9_]+) [*]/\n") + + while True: + line = fp.readline() + if not line: + break + m = define_rx.match(line) + if m: + n, v = m.group(1, 2) + try: + v = int(v) + except ValueError: + pass + vars[n] = v + else: + m = undef_rx.match(line) + if m: + vars[m.group(1)] = 0 + return vars + + +def get_config_h_filename(): + """Return the path of pyconfig.h.""" + if _PYTHON_BUILD: + if os.name == "nt": + inc_dir = os.path.join(_PROJECT_BASE, "PC") + else: + inc_dir = _PROJECT_BASE + else: + inc_dir = get_path('platinclude') + return os.path.join(inc_dir, 'pyconfig.h') + + +def get_scheme_names(): + """Return a tuple containing the schemes names.""" + return tuple(sorted(_SCHEMES.sections())) + + +def get_path_names(): + """Return a tuple containing the paths names.""" + # xxx see if we want a static list + return _SCHEMES.options('posix_prefix') + + +def get_paths(scheme=_get_default_scheme(), vars=None, expand=True): + """Return a mapping containing an install scheme. + + ``scheme`` is the install scheme name. If not provided, it will + return the default scheme for the current platform. + """ + _ensure_cfg_read() + if expand: + return _expand_vars(scheme, vars) + else: + return dict(_SCHEMES.items(scheme)) + + +def get_path(name, scheme=_get_default_scheme(), vars=None, expand=True): + """Return a path corresponding to the scheme. + + ``scheme`` is the install scheme name. + """ + return get_paths(scheme, vars, expand)[name] + + +def get_config_vars(*args): + """With no arguments, return a dictionary of all configuration + variables relevant for the current platform. + + On Unix, this means every variable defined in Python's installed Makefile; + On Windows and Mac OS it's a much smaller set. + + With arguments, return a list of values that result from looking up + each argument in the configuration variable dictionary. + """ + global _CONFIG_VARS + if _CONFIG_VARS is None: + _CONFIG_VARS = {} + # Normalized versions of prefix and exec_prefix are handy to have; + # in fact, these are the standard versions used most places in the + # distutils2 module. + _CONFIG_VARS['prefix'] = _PREFIX + _CONFIG_VARS['exec_prefix'] = _EXEC_PREFIX + _CONFIG_VARS['py_version'] = _PY_VERSION + _CONFIG_VARS['py_version_short'] = _PY_VERSION_SHORT + _CONFIG_VARS['py_version_nodot'] = _PY_VERSION[0] + _PY_VERSION[2] + _CONFIG_VARS['base'] = _PREFIX + _CONFIG_VARS['platbase'] = _EXEC_PREFIX + _CONFIG_VARS['projectbase'] = _PROJECT_BASE + try: + _CONFIG_VARS['abiflags'] = sys.abiflags + except AttributeError: + # sys.abiflags may not be defined on all platforms. + _CONFIG_VARS['abiflags'] = '' + + if os.name in ('nt', 'os2'): + _init_non_posix(_CONFIG_VARS) + if os.name == 'posix': + _init_posix(_CONFIG_VARS) + # Setting 'userbase' is done below the call to the + # init function to enable using 'get_config_var' in + # the init-function. + if sys.version >= '2.6': + _CONFIG_VARS['userbase'] = _getuserbase() + + if 'srcdir' not in _CONFIG_VARS: + _CONFIG_VARS['srcdir'] = _PROJECT_BASE + else: + _CONFIG_VARS['srcdir'] = _safe_realpath(_CONFIG_VARS['srcdir']) + + # Convert srcdir into an absolute path if it appears necessary. + # Normally it is relative to the build directory. However, during + # testing, for example, we might be running a non-installed python + # from a different directory. + if _PYTHON_BUILD and os.name == "posix": + base = _PROJECT_BASE + try: + cwd = os.getcwd() + except OSError: + cwd = None + if (not os.path.isabs(_CONFIG_VARS['srcdir']) and + base != cwd): + # srcdir is relative and we are not in the same directory + # as the executable. Assume executable is in the build + # directory and make srcdir absolute. + srcdir = os.path.join(base, _CONFIG_VARS['srcdir']) + _CONFIG_VARS['srcdir'] = os.path.normpath(srcdir) + + if sys.platform == 'darwin': + kernel_version = os.uname()[2] # Kernel version (8.4.3) + major_version = int(kernel_version.split('.')[0]) + + if major_version < 8: + # On Mac OS X before 10.4, check if -arch and -isysroot + # are in CFLAGS or LDFLAGS and remove them if they are. + # This is needed when building extensions on a 10.3 system + # using a universal build of python. + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + flags = _CONFIG_VARS[key] + flags = re.sub(r'-arch\s+\w+\s', ' ', flags) + flags = re.sub('-isysroot [^ \t]*', ' ', flags) + _CONFIG_VARS[key] = flags + else: + # Allow the user to override the architecture flags using + # an environment variable. + # NOTE: This name was introduced by Apple in OSX 10.5 and + # is used by several scripting languages distributed with + # that OS release. + if 'ARCHFLAGS' in os.environ: + arch = os.environ['ARCHFLAGS'] + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + + flags = _CONFIG_VARS[key] + flags = re.sub(r'-arch\s+\w+\s', ' ', flags) + flags = flags + ' ' + arch + _CONFIG_VARS[key] = flags + + # If we're on OSX 10.5 or later and the user tries to + # compiles an extension using an SDK that is not present + # on the current machine it is better to not use an SDK + # than to fail. + # + # The major usecase for this is users using a Python.org + # binary installer on OSX 10.6: that installer uses + # the 10.4u SDK, but that SDK is not installed by default + # when you install Xcode. + # + CFLAGS = _CONFIG_VARS.get('CFLAGS', '') + m = re.search(r'-isysroot\s+(\S+)', CFLAGS) + if m is not None: + sdk = m.group(1) + if not os.path.exists(sdk): + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + + flags = _CONFIG_VARS[key] + flags = re.sub(r'-isysroot\s+\S+(\s|$)', ' ', flags) + _CONFIG_VARS[key] = flags + + if args: + vals = [] + for name in args: + vals.append(_CONFIG_VARS.get(name)) + return vals + else: + return _CONFIG_VARS + + +def get_config_var(name): + """Return the value of a single variable using the dictionary returned by + 'get_config_vars()'. + + Equivalent to get_config_vars().get(name) + """ + return get_config_vars().get(name) + + +def get_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. for IRIX + the architecture isn't particularly important (IRIX only runs on SGI + hardware), but for Linux the kernel version isn't particularly + important. + + Examples of returned values: + linux-i586 + linux-alpha (?) + solaris-2.6-sun4u + irix-5.3 + irix64-6.2 + + Windows will return one of: + win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win-ia64 (64bit Windows on Itanium) + win32 (all others - specifically, sys.platform is returned) + + For other non-POSIX platforms, currently just returns 'sys.platform'. + """ + if os.name == 'nt': + # sniff sys.version for architecture. + prefix = " bit (" + i = sys.version.find(prefix) + if i == -1: + return sys.platform + j = sys.version.find(")", i) + look = sys.version[i+len(prefix):j].lower() + if look == 'amd64': + return 'win-amd64' + if look == 'itanium': + return 'win-ia64' + return sys.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 + # (to accommodate BSD/OS), and translate spaces (for "Power Macintosh") + osname = osname.lower().replace('/', '') + machine = machine.replace(' ', '_') + machine = machine.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:]) + # fall through to standard osname-release-machine representation + elif osname[:4] == "irix": # could be "irix64"! + return "%s-%s" % (osname, release) + elif osname[:3] == "aix": + return "%s-%s.%s" % (osname, version, release) + elif osname[:6] == "cygwin": + osname = "cygwin" + rel_re = re.compile(r'[\d.]+') + m = rel_re.match(release) + if m: + release = m.group() + elif osname[:6] == "darwin": + # + # For our purposes, we'll assume that the system version from + # distutils' perspective is what MACOSX_DEPLOYMENT_TARGET is set + # to. This makes the compatibility story a bit more sane because the + # machine is going to compile and link as if it were + # MACOSX_DEPLOYMENT_TARGET. + cfgvars = get_config_vars() + macver = cfgvars.get('MACOSX_DEPLOYMENT_TARGET') + + if True: + # Always calculate the release of the running machine, + # needed to determine if we can build fat binaries or not. + + macrelease = macver + # Get the system version. Reading this plist is a documented + # way to get the system version (see the documentation for + # the Gestalt Manager) + try: + f = open('/System/Library/CoreServices/SystemVersion.plist') + except IOError: + # We're on a plain darwin box, fall back to the default + # behaviour. + pass + else: + try: + m = re.search(r'ProductUserVisibleVersion\s*' + r'(.*?)', f.read()) + finally: + f.close() + if m is not None: + macrelease = '.'.join(m.group(1).split('.')[:2]) + # else: fall back to the default behaviour + + if not macver: + macver = macrelease + + if macver: + release = macver + osname = "macosx" + + if ((macrelease + '.') >= '10.4.' and + '-arch' in get_config_vars().get('CFLAGS', '').strip()): + # The universal build will build fat binaries, but not on + # systems before 10.4 + # + # Try to detect 4-way universal builds, those have machine-type + # 'universal' instead of 'fat'. + + machine = 'fat' + cflags = get_config_vars().get('CFLAGS') + + archs = re.findall(r'-arch\s+(\S+)', cflags) + archs = tuple(sorted(set(archs))) + + if len(archs) == 1: + machine = archs[0] + elif archs == ('i386', 'ppc'): + machine = 'fat' + elif archs == ('i386', 'x86_64'): + machine = 'intel' + elif archs == ('i386', 'ppc', 'x86_64'): + machine = 'fat3' + elif archs == ('ppc64', 'x86_64'): + machine = 'fat64' + elif archs == ('i386', 'ppc', 'ppc64', 'x86_64'): + machine = 'universal' + else: + raise ValueError( + "Don't know machine value for archs=%r" % (archs,)) + + elif machine == 'i386': + # On OSX the machine type returned by uname is always the + # 32-bit variant, even if the executable architecture is + # the 64-bit variant + if sys.maxsize >= 2**32: + machine = 'x86_64' + + elif machine in ('PowerPC', 'Power_Macintosh'): + # Pick a sane name for the PPC architecture. + # See 'i386' case + if sys.maxsize >= 2**32: + machine = 'ppc64' + else: + machine = 'ppc' + + return "%s-%s-%s" % (osname, release, machine) + + +def get_python_version(): + return _PY_VERSION_SHORT + + +def _print_dict(title, data): + for index, (key, value) in enumerate(sorted(data.items())): + if index == 0: + print('%s: ' % (title)) + print('\t%s = "%s"' % (key, value)) + + +def _main(): + """Display all information sysconfig detains.""" + print('Platform: "%s"' % get_platform()) + print('Python version: "%s"' % get_python_version()) + print('Current installation scheme: "%s"' % _get_default_scheme()) + print() + _print_dict('Paths', get_paths()) + print() + _print_dict('Variables', get_config_vars()) + + +if __name__ == '__main__': + _main() diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/tarfile.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/tarfile.py new file mode 100644 index 000000000..d66d85663 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/_backport/tarfile.py @@ -0,0 +1,2607 @@ +#------------------------------------------------------------------- +# tarfile.py +#------------------------------------------------------------------- +# Copyright (C) 2002 Lars Gustaebel +# All rights reserved. +# +# 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. +# +from __future__ import print_function + +"""Read from and write to tar format archives. +""" + +__version__ = "$Revision$" + +version = "0.9.0" +__author__ = "Lars Gust\u00e4bel (lars@gustaebel.de)" +__date__ = "$Date: 2011-02-25 17:42:01 +0200 (Fri, 25 Feb 2011) $" +__cvsid__ = "$Id: tarfile.py 88586 2011-02-25 15:42:01Z marc-andre.lemburg $" +__credits__ = "Gustavo Niemeyer, Niels Gust\u00e4bel, Richard Townsend." + +#--------- +# Imports +#--------- +import sys +import os +import stat +import errno +import time +import struct +import copy +import re + +try: + import grp, pwd +except ImportError: + grp = pwd = None + +# os.symlink on Windows prior to 6.0 raises NotImplementedError +symlink_exception = (AttributeError, NotImplementedError) +try: + # WindowsError (1314) will be raised if the caller does not hold the + # SeCreateSymbolicLinkPrivilege privilege + symlink_exception += (WindowsError,) +except NameError: + pass + +# from tarfile import * +__all__ = ["TarFile", "TarInfo", "is_tarfile", "TarError"] + +if sys.version_info[0] < 3: + import __builtin__ as builtins +else: + import builtins + +_open = builtins.open # Since 'open' is TarFile.open + +#--------------------------------------------------------- +# tar constants +#--------------------------------------------------------- +NUL = b"\0" # the null character +BLOCKSIZE = 512 # length of processing blocks +RECORDSIZE = BLOCKSIZE * 20 # length of records +GNU_MAGIC = b"ustar \0" # magic gnu tar string +POSIX_MAGIC = b"ustar\x0000" # magic posix tar string + +LENGTH_NAME = 100 # maximum length of a filename +LENGTH_LINK = 100 # maximum length of a linkname +LENGTH_PREFIX = 155 # maximum length of the prefix field + +REGTYPE = b"0" # regular file +AREGTYPE = b"\0" # regular file +LNKTYPE = b"1" # link (inside tarfile) +SYMTYPE = b"2" # symbolic link +CHRTYPE = b"3" # character special device +BLKTYPE = b"4" # block special device +DIRTYPE = b"5" # directory +FIFOTYPE = b"6" # fifo special device +CONTTYPE = b"7" # contiguous file + +GNUTYPE_LONGNAME = b"L" # GNU tar longname +GNUTYPE_LONGLINK = b"K" # GNU tar longlink +GNUTYPE_SPARSE = b"S" # GNU tar sparse file + +XHDTYPE = b"x" # POSIX.1-2001 extended header +XGLTYPE = b"g" # POSIX.1-2001 global header +SOLARIS_XHDTYPE = b"X" # Solaris extended header + +USTAR_FORMAT = 0 # POSIX.1-1988 (ustar) format +GNU_FORMAT = 1 # GNU tar format +PAX_FORMAT = 2 # POSIX.1-2001 (pax) format +DEFAULT_FORMAT = GNU_FORMAT + +#--------------------------------------------------------- +# tarfile constants +#--------------------------------------------------------- +# File types that tarfile supports: +SUPPORTED_TYPES = (REGTYPE, AREGTYPE, LNKTYPE, + SYMTYPE, DIRTYPE, FIFOTYPE, + CONTTYPE, CHRTYPE, BLKTYPE, + GNUTYPE_LONGNAME, GNUTYPE_LONGLINK, + GNUTYPE_SPARSE) + +# File types that will be treated as a regular file. +REGULAR_TYPES = (REGTYPE, AREGTYPE, + CONTTYPE, GNUTYPE_SPARSE) + +# File types that are part of the GNU tar format. +GNU_TYPES = (GNUTYPE_LONGNAME, GNUTYPE_LONGLINK, + GNUTYPE_SPARSE) + +# Fields from a pax header that override a TarInfo attribute. +PAX_FIELDS = ("path", "linkpath", "size", "mtime", + "uid", "gid", "uname", "gname") + +# Fields from a pax header that are affected by hdrcharset. +PAX_NAME_FIELDS = set(("path", "linkpath", "uname", "gname")) + +# Fields in a pax header that are numbers, all other fields +# are treated as strings. +PAX_NUMBER_FIELDS = { + "atime": float, + "ctime": float, + "mtime": float, + "uid": int, + "gid": int, + "size": int +} + +#--------------------------------------------------------- +# Bits used in the mode field, values in octal. +#--------------------------------------------------------- +S_IFLNK = 0o120000 # symbolic link +S_IFREG = 0o100000 # regular file +S_IFBLK = 0o060000 # block device +S_IFDIR = 0o040000 # directory +S_IFCHR = 0o020000 # character device +S_IFIFO = 0o010000 # fifo + +TSUID = 0o4000 # set UID on execution +TSGID = 0o2000 # set GID on execution +TSVTX = 0o1000 # reserved + +TUREAD = 0o400 # read by owner +TUWRITE = 0o200 # write by owner +TUEXEC = 0o100 # execute/search by owner +TGREAD = 0o040 # read by group +TGWRITE = 0o020 # write by group +TGEXEC = 0o010 # execute/search by group +TOREAD = 0o004 # read by other +TOWRITE = 0o002 # write by other +TOEXEC = 0o001 # execute/search by other + +#--------------------------------------------------------- +# initialization +#--------------------------------------------------------- +if os.name in ("nt", "ce"): + ENCODING = "utf-8" +else: + ENCODING = sys.getfilesystemencoding() + +#--------------------------------------------------------- +# Some useful functions +#--------------------------------------------------------- + +def stn(s, length, encoding, errors): + """Convert a string to a null-terminated bytes object. + """ + s = s.encode(encoding, errors) + return s[:length] + (length - len(s)) * NUL + +def nts(s, encoding, errors): + """Convert a null-terminated bytes object to a string. + """ + p = s.find(b"\0") + if p != -1: + s = s[:p] + return s.decode(encoding, errors) + +def nti(s): + """Convert a number field to a python number. + """ + # There are two possible encodings for a number field, see + # itn() below. + if s[0] != chr(0o200): + try: + n = int(nts(s, "ascii", "strict") or "0", 8) + except ValueError: + raise InvalidHeaderError("invalid header") + else: + n = 0 + for i in range(len(s) - 1): + n <<= 8 + n += ord(s[i + 1]) + return n + +def itn(n, digits=8, format=DEFAULT_FORMAT): + """Convert a python number to a number field. + """ + # POSIX 1003.1-1988 requires numbers to be encoded as a string of + # octal digits followed by a null-byte, this allows values up to + # (8**(digits-1))-1. GNU tar allows storing numbers greater than + # that if necessary. A leading 0o200 byte indicates this particular + # encoding, the following digits-1 bytes are a big-endian + # representation. This allows values up to (256**(digits-1))-1. + if 0 <= n < 8 ** (digits - 1): + s = ("%0*o" % (digits - 1, n)).encode("ascii") + NUL + else: + if format != GNU_FORMAT or n >= 256 ** (digits - 1): + raise ValueError("overflow in number field") + + if n < 0: + # XXX We mimic GNU tar's behaviour with negative numbers, + # this could raise OverflowError. + n = struct.unpack("L", struct.pack("l", n))[0] + + s = bytearray() + for i in range(digits - 1): + s.insert(0, n & 0o377) + n >>= 8 + s.insert(0, 0o200) + return s + +def calc_chksums(buf): + """Calculate the checksum for a member's header by summing up all + characters except for the chksum field which is treated as if + it was filled with spaces. According to the GNU tar sources, + some tars (Sun and NeXT) calculate chksum with signed char, + which will be different if there are chars in the buffer with + the high bit set. So we calculate two checksums, unsigned and + signed. + """ + unsigned_chksum = 256 + sum(struct.unpack("148B", buf[:148]) + struct.unpack("356B", buf[156:512])) + signed_chksum = 256 + sum(struct.unpack("148b", buf[:148]) + struct.unpack("356b", buf[156:512])) + return unsigned_chksum, signed_chksum + +def copyfileobj(src, dst, length=None): + """Copy length bytes from fileobj src to fileobj dst. + If length is None, copy the entire content. + """ + if length == 0: + return + if length is None: + while True: + buf = src.read(16*1024) + if not buf: + break + dst.write(buf) + return + + BUFSIZE = 16 * 1024 + blocks, remainder = divmod(length, BUFSIZE) + for b in range(blocks): + buf = src.read(BUFSIZE) + if len(buf) < BUFSIZE: + raise IOError("end of file reached") + dst.write(buf) + + if remainder != 0: + buf = src.read(remainder) + if len(buf) < remainder: + raise IOError("end of file reached") + dst.write(buf) + return + +filemode_table = ( + ((S_IFLNK, "l"), + (S_IFREG, "-"), + (S_IFBLK, "b"), + (S_IFDIR, "d"), + (S_IFCHR, "c"), + (S_IFIFO, "p")), + + ((TUREAD, "r"),), + ((TUWRITE, "w"),), + ((TUEXEC|TSUID, "s"), + (TSUID, "S"), + (TUEXEC, "x")), + + ((TGREAD, "r"),), + ((TGWRITE, "w"),), + ((TGEXEC|TSGID, "s"), + (TSGID, "S"), + (TGEXEC, "x")), + + ((TOREAD, "r"),), + ((TOWRITE, "w"),), + ((TOEXEC|TSVTX, "t"), + (TSVTX, "T"), + (TOEXEC, "x")) +) + +def filemode(mode): + """Convert a file's mode to a string of the form + -rwxrwxrwx. + Used by TarFile.list() + """ + perm = [] + for table in filemode_table: + for bit, char in table: + if mode & bit == bit: + perm.append(char) + break + else: + perm.append("-") + return "".join(perm) + +class TarError(Exception): + """Base exception.""" + pass +class ExtractError(TarError): + """General exception for extract errors.""" + pass +class ReadError(TarError): + """Exception for unreadable tar archives.""" + pass +class CompressionError(TarError): + """Exception for unavailable compression methods.""" + pass +class StreamError(TarError): + """Exception for unsupported operations on stream-like TarFiles.""" + pass +class HeaderError(TarError): + """Base exception for header errors.""" + pass +class EmptyHeaderError(HeaderError): + """Exception for empty headers.""" + pass +class TruncatedHeaderError(HeaderError): + """Exception for truncated headers.""" + pass +class EOFHeaderError(HeaderError): + """Exception for end of file headers.""" + pass +class InvalidHeaderError(HeaderError): + """Exception for invalid headers.""" + pass +class SubsequentHeaderError(HeaderError): + """Exception for missing and invalid extended headers.""" + pass + +#--------------------------- +# internal stream interface +#--------------------------- +class _LowLevelFile(object): + """Low-level file object. Supports reading and writing. + It is used instead of a regular file object for streaming + access. + """ + + def __init__(self, name, mode): + mode = { + "r": os.O_RDONLY, + "w": os.O_WRONLY | os.O_CREAT | os.O_TRUNC, + }[mode] + if hasattr(os, "O_BINARY"): + mode |= os.O_BINARY + self.fd = os.open(name, mode, 0o666) + + def close(self): + os.close(self.fd) + + def read(self, size): + return os.read(self.fd, size) + + def write(self, s): + os.write(self.fd, s) + +class _Stream(object): + """Class that serves as an adapter between TarFile and + a stream-like object. The stream-like object only + needs to have a read() or write() method and is accessed + blockwise. Use of gzip or bzip2 compression is possible. + A stream-like object could be for example: sys.stdin, + sys.stdout, a socket, a tape device etc. + + _Stream is intended to be used only internally. + """ + + def __init__(self, name, mode, comptype, fileobj, bufsize): + """Construct a _Stream object. + """ + self._extfileobj = True + if fileobj is None: + fileobj = _LowLevelFile(name, mode) + self._extfileobj = False + + if comptype == '*': + # Enable transparent compression detection for the + # stream interface + fileobj = _StreamProxy(fileobj) + comptype = fileobj.getcomptype() + + self.name = name or "" + self.mode = mode + self.comptype = comptype + self.fileobj = fileobj + self.bufsize = bufsize + self.buf = b"" + self.pos = 0 + self.closed = False + + try: + if comptype == "gz": + try: + import zlib + except ImportError: + raise CompressionError("zlib module is not available") + self.zlib = zlib + self.crc = zlib.crc32(b"") + if mode == "r": + self._init_read_gz() + else: + self._init_write_gz() + + if comptype == "bz2": + try: + import bz2 + except ImportError: + raise CompressionError("bz2 module is not available") + if mode == "r": + self.dbuf = b"" + self.cmp = bz2.BZ2Decompressor() + else: + self.cmp = bz2.BZ2Compressor() + except: + if not self._extfileobj: + self.fileobj.close() + self.closed = True + raise + + def __del__(self): + if hasattr(self, "closed") and not self.closed: + self.close() + + def _init_write_gz(self): + """Initialize for writing with gzip compression. + """ + self.cmp = self.zlib.compressobj(9, self.zlib.DEFLATED, + -self.zlib.MAX_WBITS, + self.zlib.DEF_MEM_LEVEL, + 0) + timestamp = struct.pack(" self.bufsize: + self.fileobj.write(self.buf[:self.bufsize]) + self.buf = self.buf[self.bufsize:] + + def close(self): + """Close the _Stream object. No operation should be + done on it afterwards. + """ + if self.closed: + return + + if self.mode == "w" and self.comptype != "tar": + self.buf += self.cmp.flush() + + if self.mode == "w" and self.buf: + self.fileobj.write(self.buf) + self.buf = b"" + if self.comptype == "gz": + # The native zlib crc is an unsigned 32-bit integer, but + # the Python wrapper implicitly casts that to a signed C + # long. So, on a 32-bit box self.crc may "look negative", + # while the same crc on a 64-bit box may "look positive". + # To avoid irksome warnings from the `struct` module, force + # it to look positive on all boxes. + self.fileobj.write(struct.pack("= 0: + blocks, remainder = divmod(pos - self.pos, self.bufsize) + for i in range(blocks): + self.read(self.bufsize) + self.read(remainder) + else: + raise StreamError("seeking backwards is not allowed") + return self.pos + + def read(self, size=None): + """Return the next size number of bytes from the stream. + If size is not defined, return all bytes of the stream + up to EOF. + """ + if size is None: + t = [] + while True: + buf = self._read(self.bufsize) + if not buf: + break + t.append(buf) + buf = "".join(t) + else: + buf = self._read(size) + self.pos += len(buf) + return buf + + def _read(self, size): + """Return size bytes from the stream. + """ + if self.comptype == "tar": + return self.__read(size) + + c = len(self.dbuf) + while c < size: + buf = self.__read(self.bufsize) + if not buf: + break + try: + buf = self.cmp.decompress(buf) + except IOError: + raise ReadError("invalid compressed data") + self.dbuf += buf + c += len(buf) + buf = self.dbuf[:size] + self.dbuf = self.dbuf[size:] + return buf + + def __read(self, size): + """Return size bytes from stream. If internal buffer is empty, + read another block from the stream. + """ + c = len(self.buf) + while c < size: + buf = self.fileobj.read(self.bufsize) + if not buf: + break + self.buf += buf + c += len(buf) + buf = self.buf[:size] + self.buf = self.buf[size:] + return buf +# class _Stream + +class _StreamProxy(object): + """Small proxy class that enables transparent compression + detection for the Stream interface (mode 'r|*'). + """ + + def __init__(self, fileobj): + self.fileobj = fileobj + self.buf = self.fileobj.read(BLOCKSIZE) + + def read(self, size): + self.read = self.fileobj.read + return self.buf + + def getcomptype(self): + if self.buf.startswith(b"\037\213\010"): + return "gz" + if self.buf.startswith(b"BZh91"): + return "bz2" + return "tar" + + def close(self): + self.fileobj.close() +# class StreamProxy + +class _BZ2Proxy(object): + """Small proxy class that enables external file object + support for "r:bz2" and "w:bz2" modes. This is actually + a workaround for a limitation in bz2 module's BZ2File + class which (unlike gzip.GzipFile) has no support for + a file object argument. + """ + + blocksize = 16 * 1024 + + def __init__(self, fileobj, mode): + self.fileobj = fileobj + self.mode = mode + self.name = getattr(self.fileobj, "name", None) + self.init() + + def init(self): + import bz2 + self.pos = 0 + if self.mode == "r": + self.bz2obj = bz2.BZ2Decompressor() + self.fileobj.seek(0) + self.buf = b"" + else: + self.bz2obj = bz2.BZ2Compressor() + + def read(self, size): + x = len(self.buf) + while x < size: + raw = self.fileobj.read(self.blocksize) + if not raw: + break + data = self.bz2obj.decompress(raw) + self.buf += data + x += len(data) + + buf = self.buf[:size] + self.buf = self.buf[size:] + self.pos += len(buf) + return buf + + def seek(self, pos): + if pos < self.pos: + self.init() + self.read(pos - self.pos) + + def tell(self): + return self.pos + + def write(self, data): + self.pos += len(data) + raw = self.bz2obj.compress(data) + self.fileobj.write(raw) + + def close(self): + if self.mode == "w": + raw = self.bz2obj.flush() + self.fileobj.write(raw) +# class _BZ2Proxy + +#------------------------ +# Extraction file object +#------------------------ +class _FileInFile(object): + """A thin wrapper around an existing file object that + provides a part of its data as an individual file + object. + """ + + def __init__(self, fileobj, offset, size, blockinfo=None): + self.fileobj = fileobj + self.offset = offset + self.size = size + self.position = 0 + + if blockinfo is None: + blockinfo = [(0, size)] + + # Construct a map with data and zero blocks. + self.map_index = 0 + self.map = [] + lastpos = 0 + realpos = self.offset + for offset, size in blockinfo: + if offset > lastpos: + self.map.append((False, lastpos, offset, None)) + self.map.append((True, offset, offset + size, realpos)) + realpos += size + lastpos = offset + size + if lastpos < self.size: + self.map.append((False, lastpos, self.size, None)) + + def seekable(self): + if not hasattr(self.fileobj, "seekable"): + # XXX gzip.GzipFile and bz2.BZ2File + return True + return self.fileobj.seekable() + + def tell(self): + """Return the current file position. + """ + return self.position + + def seek(self, position): + """Seek to a position in the file. + """ + self.position = position + + def read(self, size=None): + """Read data from the file. + """ + if size is None: + size = self.size - self.position + else: + size = min(size, self.size - self.position) + + buf = b"" + while size > 0: + while True: + data, start, stop, offset = self.map[self.map_index] + if start <= self.position < stop: + break + else: + self.map_index += 1 + if self.map_index == len(self.map): + self.map_index = 0 + length = min(size, stop - self.position) + if data: + self.fileobj.seek(offset + (self.position - start)) + buf += self.fileobj.read(length) + else: + buf += NUL * length + size -= length + self.position += length + return buf +#class _FileInFile + + +class ExFileObject(object): + """File-like object for reading an archive member. + Is returned by TarFile.extractfile(). + """ + blocksize = 1024 + + def __init__(self, tarfile, tarinfo): + self.fileobj = _FileInFile(tarfile.fileobj, + tarinfo.offset_data, + tarinfo.size, + tarinfo.sparse) + self.name = tarinfo.name + self.mode = "r" + self.closed = False + self.size = tarinfo.size + + self.position = 0 + self.buffer = b"" + + def readable(self): + return True + + def writable(self): + return False + + def seekable(self): + return self.fileobj.seekable() + + def read(self, size=None): + """Read at most size bytes from the file. If size is not + present or None, read all data until EOF is reached. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + buf = b"" + if self.buffer: + if size is None: + buf = self.buffer + self.buffer = b"" + else: + buf = self.buffer[:size] + self.buffer = self.buffer[size:] + + if size is None: + buf += self.fileobj.read() + else: + buf += self.fileobj.read(size - len(buf)) + + self.position += len(buf) + return buf + + # XXX TextIOWrapper uses the read1() method. + read1 = read + + def readline(self, size=-1): + """Read one entire line from the file. If size is present + and non-negative, return a string with at most that + size, which may be an incomplete line. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + pos = self.buffer.find(b"\n") + 1 + if pos == 0: + # no newline found. + while True: + buf = self.fileobj.read(self.blocksize) + self.buffer += buf + if not buf or b"\n" in buf: + pos = self.buffer.find(b"\n") + 1 + if pos == 0: + # no newline found. + pos = len(self.buffer) + break + + if size != -1: + pos = min(size, pos) + + buf = self.buffer[:pos] + self.buffer = self.buffer[pos:] + self.position += len(buf) + return buf + + def readlines(self): + """Return a list with all remaining lines. + """ + result = [] + while True: + line = self.readline() + if not line: break + result.append(line) + return result + + def tell(self): + """Return the current file position. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + return self.position + + def seek(self, pos, whence=os.SEEK_SET): + """Seek to a position in the file. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + if whence == os.SEEK_SET: + self.position = min(max(pos, 0), self.size) + elif whence == os.SEEK_CUR: + if pos < 0: + self.position = max(self.position + pos, 0) + else: + self.position = min(self.position + pos, self.size) + elif whence == os.SEEK_END: + self.position = max(min(self.size + pos, self.size), 0) + else: + raise ValueError("Invalid argument") + + self.buffer = b"" + self.fileobj.seek(self.position) + + def close(self): + """Close the file object. + """ + self.closed = True + + def __iter__(self): + """Get an iterator over the file's lines. + """ + while True: + line = self.readline() + if not line: + break + yield line +#class ExFileObject + +#------------------ +# Exported Classes +#------------------ +class TarInfo(object): + """Informational class which holds the details about an + archive member given by a tar header block. + TarInfo objects are returned by TarFile.getmember(), + TarFile.getmembers() and TarFile.gettarinfo() and are + usually created internally. + """ + + __slots__ = ("name", "mode", "uid", "gid", "size", "mtime", + "chksum", "type", "linkname", "uname", "gname", + "devmajor", "devminor", + "offset", "offset_data", "pax_headers", "sparse", + "tarfile", "_sparse_structs", "_link_target") + + def __init__(self, name=""): + """Construct a TarInfo object. name is the optional name + of the member. + """ + self.name = name # member name + self.mode = 0o644 # file permissions + self.uid = 0 # user id + self.gid = 0 # group id + self.size = 0 # file size + self.mtime = 0 # modification time + self.chksum = 0 # header checksum + self.type = REGTYPE # member type + self.linkname = "" # link name + self.uname = "" # user name + self.gname = "" # group name + self.devmajor = 0 # device major number + self.devminor = 0 # device minor number + + self.offset = 0 # the tar header starts here + self.offset_data = 0 # the file's data starts here + + self.sparse = None # sparse member information + self.pax_headers = {} # pax header information + + # In pax headers the "name" and "linkname" field are called + # "path" and "linkpath". + def _getpath(self): + return self.name + def _setpath(self, name): + self.name = name + path = property(_getpath, _setpath) + + def _getlinkpath(self): + return self.linkname + def _setlinkpath(self, linkname): + self.linkname = linkname + linkpath = property(_getlinkpath, _setlinkpath) + + def __repr__(self): + return "<%s %r at %#x>" % (self.__class__.__name__,self.name,id(self)) + + def get_info(self): + """Return the TarInfo's attributes as a dictionary. + """ + info = { + "name": self.name, + "mode": self.mode & 0o7777, + "uid": self.uid, + "gid": self.gid, + "size": self.size, + "mtime": self.mtime, + "chksum": self.chksum, + "type": self.type, + "linkname": self.linkname, + "uname": self.uname, + "gname": self.gname, + "devmajor": self.devmajor, + "devminor": self.devminor + } + + if info["type"] == DIRTYPE and not info["name"].endswith("/"): + info["name"] += "/" + + return info + + def tobuf(self, format=DEFAULT_FORMAT, encoding=ENCODING, errors="surrogateescape"): + """Return a tar header as a string of 512 byte blocks. + """ + info = self.get_info() + + if format == USTAR_FORMAT: + return self.create_ustar_header(info, encoding, errors) + elif format == GNU_FORMAT: + return self.create_gnu_header(info, encoding, errors) + elif format == PAX_FORMAT: + return self.create_pax_header(info, encoding) + else: + raise ValueError("invalid format") + + def create_ustar_header(self, info, encoding, errors): + """Return the object as a ustar header block. + """ + info["magic"] = POSIX_MAGIC + + if len(info["linkname"]) > LENGTH_LINK: + raise ValueError("linkname is too long") + + if len(info["name"]) > LENGTH_NAME: + info["prefix"], info["name"] = self._posix_split_name(info["name"]) + + return self._create_header(info, USTAR_FORMAT, encoding, errors) + + def create_gnu_header(self, info, encoding, errors): + """Return the object as a GNU header block sequence. + """ + info["magic"] = GNU_MAGIC + + buf = b"" + if len(info["linkname"]) > LENGTH_LINK: + buf += self._create_gnu_long_header(info["linkname"], GNUTYPE_LONGLINK, encoding, errors) + + if len(info["name"]) > LENGTH_NAME: + buf += self._create_gnu_long_header(info["name"], GNUTYPE_LONGNAME, encoding, errors) + + return buf + self._create_header(info, GNU_FORMAT, encoding, errors) + + def create_pax_header(self, info, encoding): + """Return the object as a ustar header block. If it cannot be + represented this way, prepend a pax extended header sequence + with supplement information. + """ + info["magic"] = POSIX_MAGIC + pax_headers = self.pax_headers.copy() + + # Test string fields for values that exceed the field length or cannot + # be represented in ASCII encoding. + for name, hname, length in ( + ("name", "path", LENGTH_NAME), ("linkname", "linkpath", LENGTH_LINK), + ("uname", "uname", 32), ("gname", "gname", 32)): + + if hname in pax_headers: + # The pax header has priority. + continue + + # Try to encode the string as ASCII. + try: + info[name].encode("ascii", "strict") + except UnicodeEncodeError: + pax_headers[hname] = info[name] + continue + + if len(info[name]) > length: + pax_headers[hname] = info[name] + + # Test number fields for values that exceed the field limit or values + # that like to be stored as float. + for name, digits in (("uid", 8), ("gid", 8), ("size", 12), ("mtime", 12)): + if name in pax_headers: + # The pax header has priority. Avoid overflow. + info[name] = 0 + continue + + val = info[name] + if not 0 <= val < 8 ** (digits - 1) or isinstance(val, float): + pax_headers[name] = str(val) + info[name] = 0 + + # Create a pax extended header if necessary. + if pax_headers: + buf = self._create_pax_generic_header(pax_headers, XHDTYPE, encoding) + else: + buf = b"" + + return buf + self._create_header(info, USTAR_FORMAT, "ascii", "replace") + + @classmethod + def create_pax_global_header(cls, pax_headers): + """Return the object as a pax global header block sequence. + """ + return cls._create_pax_generic_header(pax_headers, XGLTYPE, "utf8") + + def _posix_split_name(self, name): + """Split a name longer than 100 chars into a prefix + and a name part. + """ + prefix = name[:LENGTH_PREFIX + 1] + while prefix and prefix[-1] != "/": + prefix = prefix[:-1] + + name = name[len(prefix):] + prefix = prefix[:-1] + + if not prefix or len(name) > LENGTH_NAME: + raise ValueError("name is too long") + return prefix, name + + @staticmethod + def _create_header(info, format, encoding, errors): + """Return a header block. info is a dictionary with file + information, format must be one of the *_FORMAT constants. + """ + parts = [ + stn(info.get("name", ""), 100, encoding, errors), + itn(info.get("mode", 0) & 0o7777, 8, format), + itn(info.get("uid", 0), 8, format), + itn(info.get("gid", 0), 8, format), + itn(info.get("size", 0), 12, format), + itn(info.get("mtime", 0), 12, format), + b" ", # checksum field + info.get("type", REGTYPE), + stn(info.get("linkname", ""), 100, encoding, errors), + info.get("magic", POSIX_MAGIC), + stn(info.get("uname", ""), 32, encoding, errors), + stn(info.get("gname", ""), 32, encoding, errors), + itn(info.get("devmajor", 0), 8, format), + itn(info.get("devminor", 0), 8, format), + stn(info.get("prefix", ""), 155, encoding, errors) + ] + + buf = struct.pack("%ds" % BLOCKSIZE, b"".join(parts)) + chksum = calc_chksums(buf[-BLOCKSIZE:])[0] + buf = buf[:-364] + ("%06o\0" % chksum).encode("ascii") + buf[-357:] + return buf + + @staticmethod + def _create_payload(payload): + """Return the string payload filled with zero bytes + up to the next 512 byte border. + """ + blocks, remainder = divmod(len(payload), BLOCKSIZE) + if remainder > 0: + payload += (BLOCKSIZE - remainder) * NUL + return payload + + @classmethod + def _create_gnu_long_header(cls, name, type, encoding, errors): + """Return a GNUTYPE_LONGNAME or GNUTYPE_LONGLINK sequence + for name. + """ + name = name.encode(encoding, errors) + NUL + + info = {} + info["name"] = "././@LongLink" + info["type"] = type + info["size"] = len(name) + info["magic"] = GNU_MAGIC + + # create extended header + name blocks. + return cls._create_header(info, USTAR_FORMAT, encoding, errors) + \ + cls._create_payload(name) + + @classmethod + def _create_pax_generic_header(cls, pax_headers, type, encoding): + """Return a POSIX.1-2008 extended or global header sequence + that contains a list of keyword, value pairs. The values + must be strings. + """ + # Check if one of the fields contains surrogate characters and thereby + # forces hdrcharset=BINARY, see _proc_pax() for more information. + binary = False + for keyword, value in pax_headers.items(): + try: + value.encode("utf8", "strict") + except UnicodeEncodeError: + binary = True + break + + records = b"" + if binary: + # Put the hdrcharset field at the beginning of the header. + records += b"21 hdrcharset=BINARY\n" + + for keyword, value in pax_headers.items(): + keyword = keyword.encode("utf8") + if binary: + # Try to restore the original byte representation of `value'. + # Needless to say, that the encoding must match the string. + value = value.encode(encoding, "surrogateescape") + else: + value = value.encode("utf8") + + l = len(keyword) + len(value) + 3 # ' ' + '=' + '\n' + n = p = 0 + while True: + n = l + len(str(p)) + if n == p: + break + p = n + records += bytes(str(p), "ascii") + b" " + keyword + b"=" + value + b"\n" + + # We use a hardcoded "././@PaxHeader" name like star does + # instead of the one that POSIX recommends. + info = {} + info["name"] = "././@PaxHeader" + info["type"] = type + info["size"] = len(records) + info["magic"] = POSIX_MAGIC + + # Create pax header + record blocks. + return cls._create_header(info, USTAR_FORMAT, "ascii", "replace") + \ + cls._create_payload(records) + + @classmethod + def frombuf(cls, buf, encoding, errors): + """Construct a TarInfo object from a 512 byte bytes object. + """ + if len(buf) == 0: + raise EmptyHeaderError("empty header") + if len(buf) != BLOCKSIZE: + raise TruncatedHeaderError("truncated header") + if buf.count(NUL) == BLOCKSIZE: + raise EOFHeaderError("end of file header") + + chksum = nti(buf[148:156]) + if chksum not in calc_chksums(buf): + raise InvalidHeaderError("bad checksum") + + obj = cls() + obj.name = nts(buf[0:100], encoding, errors) + obj.mode = nti(buf[100:108]) + obj.uid = nti(buf[108:116]) + obj.gid = nti(buf[116:124]) + obj.size = nti(buf[124:136]) + obj.mtime = nti(buf[136:148]) + obj.chksum = chksum + obj.type = buf[156:157] + obj.linkname = nts(buf[157:257], encoding, errors) + obj.uname = nts(buf[265:297], encoding, errors) + obj.gname = nts(buf[297:329], encoding, errors) + obj.devmajor = nti(buf[329:337]) + obj.devminor = nti(buf[337:345]) + prefix = nts(buf[345:500], encoding, errors) + + # Old V7 tar format represents a directory as a regular + # file with a trailing slash. + if obj.type == AREGTYPE and obj.name.endswith("/"): + obj.type = DIRTYPE + + # The old GNU sparse format occupies some of the unused + # space in the buffer for up to 4 sparse structures. + # Save the them for later processing in _proc_sparse(). + if obj.type == GNUTYPE_SPARSE: + pos = 386 + structs = [] + for i in range(4): + try: + offset = nti(buf[pos:pos + 12]) + numbytes = nti(buf[pos + 12:pos + 24]) + except ValueError: + break + structs.append((offset, numbytes)) + pos += 24 + isextended = bool(buf[482]) + origsize = nti(buf[483:495]) + obj._sparse_structs = (structs, isextended, origsize) + + # Remove redundant slashes from directories. + if obj.isdir(): + obj.name = obj.name.rstrip("/") + + # Reconstruct a ustar longname. + if prefix and obj.type not in GNU_TYPES: + obj.name = prefix + "/" + obj.name + return obj + + @classmethod + def fromtarfile(cls, tarfile): + """Return the next TarInfo object from TarFile object + tarfile. + """ + buf = tarfile.fileobj.read(BLOCKSIZE) + obj = cls.frombuf(buf, tarfile.encoding, tarfile.errors) + obj.offset = tarfile.fileobj.tell() - BLOCKSIZE + return obj._proc_member(tarfile) + + #-------------------------------------------------------------------------- + # The following are methods that are called depending on the type of a + # member. The entry point is _proc_member() which can be overridden in a + # subclass to add custom _proc_*() methods. A _proc_*() method MUST + # implement the following + # operations: + # 1. Set self.offset_data to the position where the data blocks begin, + # if there is data that follows. + # 2. Set tarfile.offset to the position where the next member's header will + # begin. + # 3. Return self or another valid TarInfo object. + def _proc_member(self, tarfile): + """Choose the right processing method depending on + the type and call it. + """ + if self.type in (GNUTYPE_LONGNAME, GNUTYPE_LONGLINK): + return self._proc_gnulong(tarfile) + elif self.type == GNUTYPE_SPARSE: + return self._proc_sparse(tarfile) + elif self.type in (XHDTYPE, XGLTYPE, SOLARIS_XHDTYPE): + return self._proc_pax(tarfile) + else: + return self._proc_builtin(tarfile) + + def _proc_builtin(self, tarfile): + """Process a builtin type or an unknown type which + will be treated as a regular file. + """ + self.offset_data = tarfile.fileobj.tell() + offset = self.offset_data + if self.isreg() or self.type not in SUPPORTED_TYPES: + # Skip the following data blocks. + offset += self._block(self.size) + tarfile.offset = offset + + # Patch the TarInfo object with saved global + # header information. + self._apply_pax_info(tarfile.pax_headers, tarfile.encoding, tarfile.errors) + + return self + + def _proc_gnulong(self, tarfile): + """Process the blocks that hold a GNU longname + or longlink member. + """ + buf = tarfile.fileobj.read(self._block(self.size)) + + # Fetch the next header and process it. + try: + next = self.fromtarfile(tarfile) + except HeaderError: + raise SubsequentHeaderError("missing or bad subsequent header") + + # Patch the TarInfo object from the next header with + # the longname information. + next.offset = self.offset + if self.type == GNUTYPE_LONGNAME: + next.name = nts(buf, tarfile.encoding, tarfile.errors) + elif self.type == GNUTYPE_LONGLINK: + next.linkname = nts(buf, tarfile.encoding, tarfile.errors) + + return next + + def _proc_sparse(self, tarfile): + """Process a GNU sparse header plus extra headers. + """ + # We already collected some sparse structures in frombuf(). + structs, isextended, origsize = self._sparse_structs + del self._sparse_structs + + # Collect sparse structures from extended header blocks. + while isextended: + buf = tarfile.fileobj.read(BLOCKSIZE) + pos = 0 + for i in range(21): + try: + offset = nti(buf[pos:pos + 12]) + numbytes = nti(buf[pos + 12:pos + 24]) + except ValueError: + break + if offset and numbytes: + structs.append((offset, numbytes)) + pos += 24 + isextended = bool(buf[504]) + self.sparse = structs + + self.offset_data = tarfile.fileobj.tell() + tarfile.offset = self.offset_data + self._block(self.size) + self.size = origsize + return self + + def _proc_pax(self, tarfile): + """Process an extended or global header as described in + POSIX.1-2008. + """ + # Read the header information. + buf = tarfile.fileobj.read(self._block(self.size)) + + # A pax header stores supplemental information for either + # the following file (extended) or all following files + # (global). + if self.type == XGLTYPE: + pax_headers = tarfile.pax_headers + else: + pax_headers = tarfile.pax_headers.copy() + + # Check if the pax header contains a hdrcharset field. This tells us + # the encoding of the path, linkpath, uname and gname fields. Normally, + # these fields are UTF-8 encoded but since POSIX.1-2008 tar + # implementations are allowed to store them as raw binary strings if + # the translation to UTF-8 fails. + match = re.search(br"\d+ hdrcharset=([^\n]+)\n", buf) + if match is not None: + pax_headers["hdrcharset"] = match.group(1).decode("utf8") + + # For the time being, we don't care about anything other than "BINARY". + # The only other value that is currently allowed by the standard is + # "ISO-IR 10646 2000 UTF-8" in other words UTF-8. + hdrcharset = pax_headers.get("hdrcharset") + if hdrcharset == "BINARY": + encoding = tarfile.encoding + else: + encoding = "utf8" + + # Parse pax header information. A record looks like that: + # "%d %s=%s\n" % (length, keyword, value). length is the size + # of the complete record including the length field itself and + # the newline. keyword and value are both UTF-8 encoded strings. + regex = re.compile(br"(\d+) ([^=]+)=") + pos = 0 + while True: + match = regex.match(buf, pos) + if not match: + break + + length, keyword = match.groups() + length = int(length) + value = buf[match.end(2) + 1:match.start(1) + length - 1] + + # Normally, we could just use "utf8" as the encoding and "strict" + # as the error handler, but we better not take the risk. For + # example, GNU tar <= 1.23 is known to store filenames it cannot + # translate to UTF-8 as raw strings (unfortunately without a + # hdrcharset=BINARY header). + # We first try the strict standard encoding, and if that fails we + # fall back on the user's encoding and error handler. + keyword = self._decode_pax_field(keyword, "utf8", "utf8", + tarfile.errors) + if keyword in PAX_NAME_FIELDS: + value = self._decode_pax_field(value, encoding, tarfile.encoding, + tarfile.errors) + else: + value = self._decode_pax_field(value, "utf8", "utf8", + tarfile.errors) + + pax_headers[keyword] = value + pos += length + + # Fetch the next header. + try: + next = self.fromtarfile(tarfile) + except HeaderError: + raise SubsequentHeaderError("missing or bad subsequent header") + + # Process GNU sparse information. + if "GNU.sparse.map" in pax_headers: + # GNU extended sparse format version 0.1. + self._proc_gnusparse_01(next, pax_headers) + + elif "GNU.sparse.size" in pax_headers: + # GNU extended sparse format version 0.0. + self._proc_gnusparse_00(next, pax_headers, buf) + + elif pax_headers.get("GNU.sparse.major") == "1" and pax_headers.get("GNU.sparse.minor") == "0": + # GNU extended sparse format version 1.0. + self._proc_gnusparse_10(next, pax_headers, tarfile) + + if self.type in (XHDTYPE, SOLARIS_XHDTYPE): + # Patch the TarInfo object with the extended header info. + next._apply_pax_info(pax_headers, tarfile.encoding, tarfile.errors) + next.offset = self.offset + + if "size" in pax_headers: + # If the extended header replaces the size field, + # we need to recalculate the offset where the next + # header starts. + offset = next.offset_data + if next.isreg() or next.type not in SUPPORTED_TYPES: + offset += next._block(next.size) + tarfile.offset = offset + + return next + + def _proc_gnusparse_00(self, next, pax_headers, buf): + """Process a GNU tar extended sparse header, version 0.0. + """ + offsets = [] + for match in re.finditer(br"\d+ GNU.sparse.offset=(\d+)\n", buf): + offsets.append(int(match.group(1))) + numbytes = [] + for match in re.finditer(br"\d+ GNU.sparse.numbytes=(\d+)\n", buf): + numbytes.append(int(match.group(1))) + next.sparse = list(zip(offsets, numbytes)) + + def _proc_gnusparse_01(self, next, pax_headers): + """Process a GNU tar extended sparse header, version 0.1. + """ + sparse = [int(x) for x in pax_headers["GNU.sparse.map"].split(",")] + next.sparse = list(zip(sparse[::2], sparse[1::2])) + + def _proc_gnusparse_10(self, next, pax_headers, tarfile): + """Process a GNU tar extended sparse header, version 1.0. + """ + fields = None + sparse = [] + buf = tarfile.fileobj.read(BLOCKSIZE) + fields, buf = buf.split(b"\n", 1) + fields = int(fields) + while len(sparse) < fields * 2: + if b"\n" not in buf: + buf += tarfile.fileobj.read(BLOCKSIZE) + number, buf = buf.split(b"\n", 1) + sparse.append(int(number)) + next.offset_data = tarfile.fileobj.tell() + next.sparse = list(zip(sparse[::2], sparse[1::2])) + + def _apply_pax_info(self, pax_headers, encoding, errors): + """Replace fields with supplemental information from a previous + pax extended or global header. + """ + for keyword, value in pax_headers.items(): + if keyword == "GNU.sparse.name": + setattr(self, "path", value) + elif keyword == "GNU.sparse.size": + setattr(self, "size", int(value)) + elif keyword == "GNU.sparse.realsize": + setattr(self, "size", int(value)) + elif keyword in PAX_FIELDS: + if keyword in PAX_NUMBER_FIELDS: + try: + value = PAX_NUMBER_FIELDS[keyword](value) + except ValueError: + value = 0 + if keyword == "path": + value = value.rstrip("/") + setattr(self, keyword, value) + + self.pax_headers = pax_headers.copy() + + def _decode_pax_field(self, value, encoding, fallback_encoding, fallback_errors): + """Decode a single field from a pax record. + """ + try: + return value.decode(encoding, "strict") + except UnicodeDecodeError: + return value.decode(fallback_encoding, fallback_errors) + + def _block(self, count): + """Round up a byte count by BLOCKSIZE and return it, + e.g. _block(834) => 1024. + """ + blocks, remainder = divmod(count, BLOCKSIZE) + if remainder: + blocks += 1 + return blocks * BLOCKSIZE + + def isreg(self): + return self.type in REGULAR_TYPES + def isfile(self): + return self.isreg() + def isdir(self): + return self.type == DIRTYPE + def issym(self): + return self.type == SYMTYPE + def islnk(self): + return self.type == LNKTYPE + def ischr(self): + return self.type == CHRTYPE + def isblk(self): + return self.type == BLKTYPE + def isfifo(self): + return self.type == FIFOTYPE + def issparse(self): + return self.sparse is not None + def isdev(self): + return self.type in (CHRTYPE, BLKTYPE, FIFOTYPE) +# class TarInfo + +class TarFile(object): + """The TarFile Class provides an interface to tar archives. + """ + + debug = 0 # May be set from 0 (no msgs) to 3 (all msgs) + + dereference = False # If true, add content of linked file to the + # tar file, else the link. + + ignore_zeros = False # If true, skips empty or invalid blocks and + # continues processing. + + errorlevel = 1 # If 0, fatal errors only appear in debug + # messages (if debug >= 0). If > 0, errors + # are passed to the caller as exceptions. + + format = DEFAULT_FORMAT # The format to use when creating an archive. + + encoding = ENCODING # Encoding for 8-bit character strings. + + errors = None # Error handler for unicode conversion. + + tarinfo = TarInfo # The default TarInfo class to use. + + fileobject = ExFileObject # The default ExFileObject class to use. + + def __init__(self, name=None, mode="r", fileobj=None, format=None, + tarinfo=None, dereference=None, ignore_zeros=None, encoding=None, + errors="surrogateescape", pax_headers=None, debug=None, errorlevel=None): + """Open an (uncompressed) tar archive `name'. `mode' is either 'r' to + read from an existing archive, 'a' to append data to an existing + file or 'w' to create a new file overwriting an existing one. `mode' + defaults to 'r'. + If `fileobj' is given, it is used for reading or writing data. If it + can be determined, `mode' is overridden by `fileobj's mode. + `fileobj' is not closed, when TarFile is closed. + """ + if len(mode) > 1 or mode not in "raw": + raise ValueError("mode must be 'r', 'a' or 'w'") + self.mode = mode + self._mode = {"r": "rb", "a": "r+b", "w": "wb"}[mode] + + if not fileobj: + if self.mode == "a" and not os.path.exists(name): + # Create nonexistent files in append mode. + self.mode = "w" + self._mode = "wb" + fileobj = bltn_open(name, self._mode) + self._extfileobj = False + else: + if name is None and hasattr(fileobj, "name"): + name = fileobj.name + if hasattr(fileobj, "mode"): + self._mode = fileobj.mode + self._extfileobj = True + self.name = os.path.abspath(name) if name else None + self.fileobj = fileobj + + # Init attributes. + if format is not None: + self.format = format + if tarinfo is not None: + self.tarinfo = tarinfo + if dereference is not None: + self.dereference = dereference + if ignore_zeros is not None: + self.ignore_zeros = ignore_zeros + if encoding is not None: + self.encoding = encoding + self.errors = errors + + if pax_headers is not None and self.format == PAX_FORMAT: + self.pax_headers = pax_headers + else: + self.pax_headers = {} + + if debug is not None: + self.debug = debug + if errorlevel is not None: + self.errorlevel = errorlevel + + # Init datastructures. + self.closed = False + self.members = [] # list of members as TarInfo objects + self._loaded = False # flag if all members have been read + self.offset = self.fileobj.tell() + # current position in the archive file + self.inodes = {} # dictionary caching the inodes of + # archive members already added + + try: + if self.mode == "r": + self.firstmember = None + self.firstmember = self.next() + + if self.mode == "a": + # Move to the end of the archive, + # before the first empty block. + while True: + self.fileobj.seek(self.offset) + try: + tarinfo = self.tarinfo.fromtarfile(self) + self.members.append(tarinfo) + except EOFHeaderError: + self.fileobj.seek(self.offset) + break + except HeaderError as e: + raise ReadError(str(e)) + + if self.mode in "aw": + self._loaded = True + + if self.pax_headers: + buf = self.tarinfo.create_pax_global_header(self.pax_headers.copy()) + self.fileobj.write(buf) + self.offset += len(buf) + except: + if not self._extfileobj: + self.fileobj.close() + self.closed = True + raise + + #-------------------------------------------------------------------------- + # Below are the classmethods which act as alternate constructors to the + # TarFile class. The open() method is the only one that is needed for + # public use; it is the "super"-constructor and is able to select an + # adequate "sub"-constructor for a particular compression using the mapping + # from OPEN_METH. + # + # This concept allows one to subclass TarFile without losing the comfort of + # the super-constructor. A sub-constructor is registered and made available + # by adding it to the mapping in OPEN_METH. + + @classmethod + def open(cls, name=None, mode="r", fileobj=None, bufsize=RECORDSIZE, **kwargs): + """Open a tar archive for reading, writing or appending. Return + an appropriate TarFile class. + + mode: + 'r' or 'r:*' open for reading with transparent compression + 'r:' open for reading exclusively uncompressed + 'r:gz' open for reading with gzip compression + 'r:bz2' open for reading with bzip2 compression + 'a' or 'a:' open for appending, creating the file if necessary + 'w' or 'w:' open for writing without compression + 'w:gz' open for writing with gzip compression + 'w:bz2' open for writing with bzip2 compression + + 'r|*' open a stream of tar blocks with transparent compression + 'r|' open an uncompressed stream of tar blocks for reading + 'r|gz' open a gzip compressed stream of tar blocks + 'r|bz2' open a bzip2 compressed stream of tar blocks + 'w|' open an uncompressed stream for writing + 'w|gz' open a gzip compressed stream for writing + 'w|bz2' open a bzip2 compressed stream for writing + """ + + if not name and not fileobj: + raise ValueError("nothing to open") + + if mode in ("r", "r:*"): + # Find out which *open() is appropriate for opening the file. + for comptype in cls.OPEN_METH: + func = getattr(cls, cls.OPEN_METH[comptype]) + if fileobj is not None: + saved_pos = fileobj.tell() + try: + return func(name, "r", fileobj, **kwargs) + except (ReadError, CompressionError) as e: + if fileobj is not None: + fileobj.seek(saved_pos) + continue + raise ReadError("file could not be opened successfully") + + elif ":" in mode: + filemode, comptype = mode.split(":", 1) + filemode = filemode or "r" + comptype = comptype or "tar" + + # Select the *open() function according to + # given compression. + if comptype in cls.OPEN_METH: + func = getattr(cls, cls.OPEN_METH[comptype]) + else: + raise CompressionError("unknown compression type %r" % comptype) + return func(name, filemode, fileobj, **kwargs) + + elif "|" in mode: + filemode, comptype = mode.split("|", 1) + filemode = filemode or "r" + comptype = comptype or "tar" + + if filemode not in "rw": + raise ValueError("mode must be 'r' or 'w'") + + stream = _Stream(name, filemode, comptype, fileobj, bufsize) + try: + t = cls(name, filemode, stream, **kwargs) + except: + stream.close() + raise + t._extfileobj = False + return t + + elif mode in "aw": + return cls.taropen(name, mode, fileobj, **kwargs) + + raise ValueError("undiscernible mode") + + @classmethod + def taropen(cls, name, mode="r", fileobj=None, **kwargs): + """Open uncompressed tar archive name for reading or writing. + """ + if len(mode) > 1 or mode not in "raw": + raise ValueError("mode must be 'r', 'a' or 'w'") + return cls(name, mode, fileobj, **kwargs) + + @classmethod + def gzopen(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs): + """Open gzip compressed tar archive name for reading or writing. + Appending is not allowed. + """ + if len(mode) > 1 or mode not in "rw": + raise ValueError("mode must be 'r' or 'w'") + + try: + import gzip + gzip.GzipFile + except (ImportError, AttributeError): + raise CompressionError("gzip module is not available") + + extfileobj = fileobj is not None + try: + fileobj = gzip.GzipFile(name, mode + "b", compresslevel, fileobj) + t = cls.taropen(name, mode, fileobj, **kwargs) + except IOError: + if not extfileobj and fileobj is not None: + fileobj.close() + if fileobj is None: + raise + raise ReadError("not a gzip file") + except: + if not extfileobj and fileobj is not None: + fileobj.close() + raise + t._extfileobj = extfileobj + return t + + @classmethod + def bz2open(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs): + """Open bzip2 compressed tar archive name for reading or writing. + Appending is not allowed. + """ + if len(mode) > 1 or mode not in "rw": + raise ValueError("mode must be 'r' or 'w'.") + + try: + import bz2 + except ImportError: + raise CompressionError("bz2 module is not available") + + if fileobj is not None: + fileobj = _BZ2Proxy(fileobj, mode) + else: + fileobj = bz2.BZ2File(name, mode, compresslevel=compresslevel) + + try: + t = cls.taropen(name, mode, fileobj, **kwargs) + except (IOError, EOFError): + fileobj.close() + raise ReadError("not a bzip2 file") + t._extfileobj = False + return t + + # All *open() methods are registered here. + OPEN_METH = { + "tar": "taropen", # uncompressed tar + "gz": "gzopen", # gzip compressed tar + "bz2": "bz2open" # bzip2 compressed tar + } + + #-------------------------------------------------------------------------- + # The public methods which TarFile provides: + + def close(self): + """Close the TarFile. In write-mode, two finishing zero blocks are + appended to the archive. + """ + if self.closed: + return + + if self.mode in "aw": + self.fileobj.write(NUL * (BLOCKSIZE * 2)) + self.offset += (BLOCKSIZE * 2) + # fill up the end with zero-blocks + # (like option -b20 for tar does) + blocks, remainder = divmod(self.offset, RECORDSIZE) + if remainder > 0: + self.fileobj.write(NUL * (RECORDSIZE - remainder)) + + if not self._extfileobj: + self.fileobj.close() + self.closed = True + + def getmember(self, name): + """Return a TarInfo object for member `name'. If `name' can not be + found in the archive, KeyError is raised. If a member occurs more + than once in the archive, its last occurrence is assumed to be the + most up-to-date version. + """ + tarinfo = self._getmember(name) + if tarinfo is None: + raise KeyError("filename %r not found" % name) + return tarinfo + + def getmembers(self): + """Return the members of the archive as a list of TarInfo objects. The + list has the same order as the members in the archive. + """ + self._check() + if not self._loaded: # if we want to obtain a list of + self._load() # all members, we first have to + # scan the whole archive. + return self.members + + def getnames(self): + """Return the members of the archive as a list of their names. It has + the same order as the list returned by getmembers(). + """ + return [tarinfo.name for tarinfo in self.getmembers()] + + def gettarinfo(self, name=None, arcname=None, fileobj=None): + """Create a TarInfo object for either the file `name' or the file + object `fileobj' (using os.fstat on its file descriptor). You can + modify some of the TarInfo's attributes before you add it using + addfile(). If given, `arcname' specifies an alternative name for the + file in the archive. + """ + self._check("aw") + + # When fileobj is given, replace name by + # fileobj's real name. + if fileobj is not None: + name = fileobj.name + + # Building the name of the member in the archive. + # Backward slashes are converted to forward slashes, + # Absolute paths are turned to relative paths. + if arcname is None: + arcname = name + drv, arcname = os.path.splitdrive(arcname) + arcname = arcname.replace(os.sep, "/") + arcname = arcname.lstrip("/") + + # Now, fill the TarInfo object with + # information specific for the file. + tarinfo = self.tarinfo() + tarinfo.tarfile = self + + # Use os.stat or os.lstat, depending on platform + # and if symlinks shall be resolved. + if fileobj is None: + if hasattr(os, "lstat") and not self.dereference: + statres = os.lstat(name) + else: + statres = os.stat(name) + else: + statres = os.fstat(fileobj.fileno()) + linkname = "" + + stmd = statres.st_mode + if stat.S_ISREG(stmd): + inode = (statres.st_ino, statres.st_dev) + if not self.dereference and statres.st_nlink > 1 and \ + inode in self.inodes and arcname != self.inodes[inode]: + # Is it a hardlink to an already + # archived file? + type = LNKTYPE + linkname = self.inodes[inode] + else: + # The inode is added only if its valid. + # For win32 it is always 0. + type = REGTYPE + if inode[0]: + self.inodes[inode] = arcname + elif stat.S_ISDIR(stmd): + type = DIRTYPE + elif stat.S_ISFIFO(stmd): + type = FIFOTYPE + elif stat.S_ISLNK(stmd): + type = SYMTYPE + linkname = os.readlink(name) + elif stat.S_ISCHR(stmd): + type = CHRTYPE + elif stat.S_ISBLK(stmd): + type = BLKTYPE + else: + return None + + # Fill the TarInfo object with all + # information we can get. + tarinfo.name = arcname + tarinfo.mode = stmd + tarinfo.uid = statres.st_uid + tarinfo.gid = statres.st_gid + if type == REGTYPE: + tarinfo.size = statres.st_size + else: + tarinfo.size = 0 + tarinfo.mtime = statres.st_mtime + tarinfo.type = type + tarinfo.linkname = linkname + if pwd: + try: + tarinfo.uname = pwd.getpwuid(tarinfo.uid)[0] + except KeyError: + pass + if grp: + try: + tarinfo.gname = grp.getgrgid(tarinfo.gid)[0] + except KeyError: + pass + + if type in (CHRTYPE, BLKTYPE): + if hasattr(os, "major") and hasattr(os, "minor"): + tarinfo.devmajor = os.major(statres.st_rdev) + tarinfo.devminor = os.minor(statres.st_rdev) + return tarinfo + + def list(self, verbose=True): + """Print a table of contents to sys.stdout. If `verbose' is False, only + the names of the members are printed. If it is True, an `ls -l'-like + output is produced. + """ + self._check() + + for tarinfo in self: + if verbose: + print(filemode(tarinfo.mode), end=' ') + print("%s/%s" % (tarinfo.uname or tarinfo.uid, + tarinfo.gname or tarinfo.gid), end=' ') + if tarinfo.ischr() or tarinfo.isblk(): + print("%10s" % ("%d,%d" \ + % (tarinfo.devmajor, tarinfo.devminor)), end=' ') + else: + print("%10d" % tarinfo.size, end=' ') + print("%d-%02d-%02d %02d:%02d:%02d" \ + % time.localtime(tarinfo.mtime)[:6], end=' ') + + print(tarinfo.name + ("/" if tarinfo.isdir() else ""), end=' ') + + if verbose: + if tarinfo.issym(): + print("->", tarinfo.linkname, end=' ') + if tarinfo.islnk(): + print("link to", tarinfo.linkname, end=' ') + print() + + def add(self, name, arcname=None, recursive=True, exclude=None, filter=None): + """Add the file `name' to the archive. `name' may be any type of file + (directory, fifo, symbolic link, etc.). If given, `arcname' + specifies an alternative name for the file in the archive. + Directories are added recursively by default. This can be avoided by + setting `recursive' to False. `exclude' is a function that should + return True for each filename to be excluded. `filter' is a function + that expects a TarInfo object argument and returns the changed + TarInfo object, if it returns None the TarInfo object will be + excluded from the archive. + """ + self._check("aw") + + if arcname is None: + arcname = name + + # Exclude pathnames. + if exclude is not None: + import warnings + warnings.warn("use the filter argument instead", + DeprecationWarning, 2) + if exclude(name): + self._dbg(2, "tarfile: Excluded %r" % name) + return + + # Skip if somebody tries to archive the archive... + if self.name is not None and os.path.abspath(name) == self.name: + self._dbg(2, "tarfile: Skipped %r" % name) + return + + self._dbg(1, name) + + # Create a TarInfo object from the file. + tarinfo = self.gettarinfo(name, arcname) + + if tarinfo is None: + self._dbg(1, "tarfile: Unsupported type %r" % name) + return + + # Change or exclude the TarInfo object. + if filter is not None: + tarinfo = filter(tarinfo) + if tarinfo is None: + self._dbg(2, "tarfile: Excluded %r" % name) + return + + # Append the tar header and data to the archive. + if tarinfo.isreg(): + f = bltn_open(name, "rb") + self.addfile(tarinfo, f) + f.close() + + elif tarinfo.isdir(): + self.addfile(tarinfo) + if recursive: + for f in os.listdir(name): + self.add(os.path.join(name, f), os.path.join(arcname, f), + recursive, exclude, filter=filter) + + else: + self.addfile(tarinfo) + + def addfile(self, tarinfo, fileobj=None): + """Add the TarInfo object `tarinfo' to the archive. If `fileobj' is + given, tarinfo.size bytes are read from it and added to the archive. + You can create TarInfo objects using gettarinfo(). + On Windows platforms, `fileobj' should always be opened with mode + 'rb' to avoid irritation about the file size. + """ + self._check("aw") + + tarinfo = copy.copy(tarinfo) + + buf = tarinfo.tobuf(self.format, self.encoding, self.errors) + self.fileobj.write(buf) + self.offset += len(buf) + + # If there's data to follow, append it. + if fileobj is not None: + copyfileobj(fileobj, self.fileobj, tarinfo.size) + blocks, remainder = divmod(tarinfo.size, BLOCKSIZE) + if remainder > 0: + self.fileobj.write(NUL * (BLOCKSIZE - remainder)) + blocks += 1 + self.offset += blocks * BLOCKSIZE + + self.members.append(tarinfo) + + def extractall(self, path=".", members=None): + """Extract all members from the archive to the current working + directory and set owner, modification time and permissions on + directories afterwards. `path' specifies a different directory + to extract to. `members' is optional and must be a subset of the + list returned by getmembers(). + """ + directories = [] + + if members is None: + members = self + + for tarinfo in members: + if tarinfo.isdir(): + # Extract directories with a safe mode. + directories.append(tarinfo) + tarinfo = copy.copy(tarinfo) + tarinfo.mode = 0o700 + # Do not set_attrs directories, as we will do that further down + self.extract(tarinfo, path, set_attrs=not tarinfo.isdir()) + + # Reverse sort directories. + directories.sort(key=lambda a: a.name) + directories.reverse() + + # Set correct owner, mtime and filemode on directories. + for tarinfo in directories: + dirpath = os.path.join(path, tarinfo.name) + try: + self.chown(tarinfo, dirpath) + self.utime(tarinfo, dirpath) + self.chmod(tarinfo, dirpath) + except ExtractError as e: + if self.errorlevel > 1: + raise + else: + self._dbg(1, "tarfile: %s" % e) + + def extract(self, member, path="", set_attrs=True): + """Extract a member from the archive to the current working directory, + using its full name. Its file information is extracted as accurately + as possible. `member' may be a filename or a TarInfo object. You can + specify a different directory using `path'. File attributes (owner, + mtime, mode) are set unless `set_attrs' is False. + """ + self._check("r") + + if isinstance(member, str): + tarinfo = self.getmember(member) + else: + tarinfo = member + + # Prepare the link target for makelink(). + if tarinfo.islnk(): + tarinfo._link_target = os.path.join(path, tarinfo.linkname) + + try: + self._extract_member(tarinfo, os.path.join(path, tarinfo.name), + set_attrs=set_attrs) + except EnvironmentError as e: + if self.errorlevel > 0: + raise + else: + if e.filename is None: + self._dbg(1, "tarfile: %s" % e.strerror) + else: + self._dbg(1, "tarfile: %s %r" % (e.strerror, e.filename)) + except ExtractError as e: + if self.errorlevel > 1: + raise + else: + self._dbg(1, "tarfile: %s" % e) + + def extractfile(self, member): + """Extract a member from the archive as a file object. `member' may be + a filename or a TarInfo object. If `member' is a regular file, a + file-like object is returned. If `member' is a link, a file-like + object is constructed from the link's target. If `member' is none of + the above, None is returned. + The file-like object is read-only and provides the following + methods: read(), readline(), readlines(), seek() and tell() + """ + self._check("r") + + if isinstance(member, str): + tarinfo = self.getmember(member) + else: + tarinfo = member + + if tarinfo.isreg(): + return self.fileobject(self, tarinfo) + + elif tarinfo.type not in SUPPORTED_TYPES: + # If a member's type is unknown, it is treated as a + # regular file. + return self.fileobject(self, tarinfo) + + elif tarinfo.islnk() or tarinfo.issym(): + if isinstance(self.fileobj, _Stream): + # A small but ugly workaround for the case that someone tries + # to extract a (sym)link as a file-object from a non-seekable + # stream of tar blocks. + raise StreamError("cannot extract (sym)link as file object") + else: + # A (sym)link's file object is its target's file object. + return self.extractfile(self._find_link_target(tarinfo)) + else: + # If there's no data associated with the member (directory, chrdev, + # blkdev, etc.), return None instead of a file object. + return None + + def _extract_member(self, tarinfo, targetpath, set_attrs=True): + """Extract the TarInfo object tarinfo to a physical + file called targetpath. + """ + # Fetch the TarInfo object for the given name + # and build the destination pathname, replacing + # forward slashes to platform specific separators. + targetpath = targetpath.rstrip("/") + targetpath = targetpath.replace("/", os.sep) + + # Create all upper directories. + upperdirs = os.path.dirname(targetpath) + if upperdirs and not os.path.exists(upperdirs): + # Create directories that are not part of the archive with + # default permissions. + os.makedirs(upperdirs) + + if tarinfo.islnk() or tarinfo.issym(): + self._dbg(1, "%s -> %s" % (tarinfo.name, tarinfo.linkname)) + else: + self._dbg(1, tarinfo.name) + + if tarinfo.isreg(): + self.makefile(tarinfo, targetpath) + elif tarinfo.isdir(): + self.makedir(tarinfo, targetpath) + elif tarinfo.isfifo(): + self.makefifo(tarinfo, targetpath) + elif tarinfo.ischr() or tarinfo.isblk(): + self.makedev(tarinfo, targetpath) + elif tarinfo.islnk() or tarinfo.issym(): + self.makelink(tarinfo, targetpath) + elif tarinfo.type not in SUPPORTED_TYPES: + self.makeunknown(tarinfo, targetpath) + else: + self.makefile(tarinfo, targetpath) + + if set_attrs: + self.chown(tarinfo, targetpath) + if not tarinfo.issym(): + self.chmod(tarinfo, targetpath) + self.utime(tarinfo, targetpath) + + #-------------------------------------------------------------------------- + # Below are the different file methods. They are called via + # _extract_member() when extract() is called. They can be replaced in a + # subclass to implement other functionality. + + def makedir(self, tarinfo, targetpath): + """Make a directory called targetpath. + """ + try: + # Use a safe mode for the directory, the real mode is set + # later in _extract_member(). + os.mkdir(targetpath, 0o700) + except EnvironmentError as e: + if e.errno != errno.EEXIST: + raise + + def makefile(self, tarinfo, targetpath): + """Make a file called targetpath. + """ + source = self.fileobj + source.seek(tarinfo.offset_data) + target = bltn_open(targetpath, "wb") + if tarinfo.sparse is not None: + for offset, size in tarinfo.sparse: + target.seek(offset) + copyfileobj(source, target, size) + else: + copyfileobj(source, target, tarinfo.size) + target.seek(tarinfo.size) + target.truncate() + target.close() + + def makeunknown(self, tarinfo, targetpath): + """Make a file from a TarInfo object with an unknown type + at targetpath. + """ + self.makefile(tarinfo, targetpath) + self._dbg(1, "tarfile: Unknown file type %r, " \ + "extracted as regular file." % tarinfo.type) + + def makefifo(self, tarinfo, targetpath): + """Make a fifo called targetpath. + """ + if hasattr(os, "mkfifo"): + os.mkfifo(targetpath) + else: + raise ExtractError("fifo not supported by system") + + def makedev(self, tarinfo, targetpath): + """Make a character or block device called targetpath. + """ + if not hasattr(os, "mknod") or not hasattr(os, "makedev"): + raise ExtractError("special devices not supported by system") + + mode = tarinfo.mode + if tarinfo.isblk(): + mode |= stat.S_IFBLK + else: + mode |= stat.S_IFCHR + + os.mknod(targetpath, mode, + os.makedev(tarinfo.devmajor, tarinfo.devminor)) + + def makelink(self, tarinfo, targetpath): + """Make a (symbolic) link called targetpath. If it cannot be created + (platform limitation), we try to make a copy of the referenced file + instead of a link. + """ + try: + # For systems that support symbolic and hard links. + if tarinfo.issym(): + os.symlink(tarinfo.linkname, targetpath) + else: + # See extract(). + if os.path.exists(tarinfo._link_target): + os.link(tarinfo._link_target, targetpath) + else: + self._extract_member(self._find_link_target(tarinfo), + targetpath) + except symlink_exception: + if tarinfo.issym(): + linkpath = os.path.join(os.path.dirname(tarinfo.name), + tarinfo.linkname) + else: + linkpath = tarinfo.linkname + else: + try: + self._extract_member(self._find_link_target(tarinfo), + targetpath) + except KeyError: + raise ExtractError("unable to resolve link inside archive") + + def chown(self, tarinfo, targetpath): + """Set owner of targetpath according to tarinfo. + """ + if pwd and hasattr(os, "geteuid") and os.geteuid() == 0: + # We have to be root to do so. + try: + g = grp.getgrnam(tarinfo.gname)[2] + except KeyError: + g = tarinfo.gid + try: + u = pwd.getpwnam(tarinfo.uname)[2] + except KeyError: + u = tarinfo.uid + try: + if tarinfo.issym() and hasattr(os, "lchown"): + os.lchown(targetpath, u, g) + else: + if sys.platform != "os2emx": + os.chown(targetpath, u, g) + except EnvironmentError as e: + raise ExtractError("could not change owner") + + def chmod(self, tarinfo, targetpath): + """Set file permissions of targetpath according to tarinfo. + """ + if hasattr(os, 'chmod'): + try: + os.chmod(targetpath, tarinfo.mode) + except EnvironmentError as e: + raise ExtractError("could not change mode") + + def utime(self, tarinfo, targetpath): + """Set modification time of targetpath according to tarinfo. + """ + if not hasattr(os, 'utime'): + return + try: + os.utime(targetpath, (tarinfo.mtime, tarinfo.mtime)) + except EnvironmentError as e: + raise ExtractError("could not change modification time") + + #-------------------------------------------------------------------------- + def next(self): + """Return the next member of the archive as a TarInfo object, when + TarFile is opened for reading. Return None if there is no more + available. + """ + self._check("ra") + if self.firstmember is not None: + m = self.firstmember + self.firstmember = None + return m + + # Read the next block. + self.fileobj.seek(self.offset) + tarinfo = None + while True: + try: + tarinfo = self.tarinfo.fromtarfile(self) + except EOFHeaderError as e: + if self.ignore_zeros: + self._dbg(2, "0x%X: %s" % (self.offset, e)) + self.offset += BLOCKSIZE + continue + except InvalidHeaderError as e: + if self.ignore_zeros: + self._dbg(2, "0x%X: %s" % (self.offset, e)) + self.offset += BLOCKSIZE + continue + elif self.offset == 0: + raise ReadError(str(e)) + except EmptyHeaderError: + if self.offset == 0: + raise ReadError("empty file") + except TruncatedHeaderError as e: + if self.offset == 0: + raise ReadError(str(e)) + except SubsequentHeaderError as e: + raise ReadError(str(e)) + break + + if tarinfo is not None: + self.members.append(tarinfo) + else: + self._loaded = True + + return tarinfo + + #-------------------------------------------------------------------------- + # Little helper methods: + + def _getmember(self, name, tarinfo=None, normalize=False): + """Find an archive member by name from bottom to top. + If tarinfo is given, it is used as the starting point. + """ + # Ensure that all members have been loaded. + members = self.getmembers() + + # Limit the member search list up to tarinfo. + if tarinfo is not None: + members = members[:members.index(tarinfo)] + + if normalize: + name = os.path.normpath(name) + + for member in reversed(members): + if normalize: + member_name = os.path.normpath(member.name) + else: + member_name = member.name + + if name == member_name: + return member + + def _load(self): + """Read through the entire archive file and look for readable + members. + """ + while True: + tarinfo = self.next() + if tarinfo is None: + break + self._loaded = True + + def _check(self, mode=None): + """Check if TarFile is still open, and if the operation's mode + corresponds to TarFile's mode. + """ + if self.closed: + raise IOError("%s is closed" % self.__class__.__name__) + if mode is not None and self.mode not in mode: + raise IOError("bad operation for mode %r" % self.mode) + + def _find_link_target(self, tarinfo): + """Find the target member of a symlink or hardlink member in the + archive. + """ + if tarinfo.issym(): + # Always search the entire archive. + linkname = os.path.dirname(tarinfo.name) + "/" + tarinfo.linkname + limit = None + else: + # Search the archive before the link, because a hard link is + # just a reference to an already archived file. + linkname = tarinfo.linkname + limit = tarinfo + + member = self._getmember(linkname, tarinfo=limit, normalize=True) + if member is None: + raise KeyError("linkname %r not found" % linkname) + return member + + def __iter__(self): + """Provide an iterator object. + """ + if self._loaded: + return iter(self.members) + else: + return TarIter(self) + + def _dbg(self, level, msg): + """Write debugging output to sys.stderr. + """ + if level <= self.debug: + print(msg, file=sys.stderr) + + def __enter__(self): + self._check() + return self + + def __exit__(self, type, value, traceback): + if type is None: + self.close() + else: + # An exception occurred. We must not call close() because + # it would try to write end-of-archive blocks and padding. + if not self._extfileobj: + self.fileobj.close() + self.closed = True +# class TarFile + +class TarIter(object): + """Iterator Class. + + for tarinfo in TarFile(...): + suite... + """ + + def __init__(self, tarfile): + """Construct a TarIter object. + """ + self.tarfile = tarfile + self.index = 0 + def __iter__(self): + """Return iterator object. + """ + return self + + def __next__(self): + """Return the next item using TarFile's next() method. + When all members have been read, set TarFile as _loaded. + """ + # Fix for SF #1100429: Under rare circumstances it can + # happen that getmembers() is called during iteration, + # which will cause TarIter to stop prematurely. + if not self.tarfile._loaded: + tarinfo = self.tarfile.next() + if not tarinfo: + self.tarfile._loaded = True + raise StopIteration + else: + try: + tarinfo = self.tarfile.members[self.index] + except IndexError: + raise StopIteration + self.index += 1 + return tarinfo + + next = __next__ # for Python 2.x + +#-------------------- +# exported functions +#-------------------- +def is_tarfile(name): + """Return True if name points to a tar archive that we + are able to handle, else return False. + """ + try: + t = open(name) + t.close() + return True + except TarError: + return False + +bltn_open = open +open = TarFile.open diff --git a/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py new file mode 100644 index 000000000..e59410695 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py @@ -0,0 +1,1122 @@ +# -*- 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 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 ._backport import shutil + 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 + import shutil + 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 not os.curdir 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 not normdir 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' + +try: + import sysconfig +except ImportError: # pragma: no cover + from ._backport 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 + import re + + 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 + try: + from imp import cache_from_source + 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]] + #print d, rest + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/database.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/database.py new file mode 100644 index 000000000..0a90c300b --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/database.py @@ -0,0 +1,1339 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2017 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 + 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) + + 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 + logger.debug('Getting requirements from metadata %r', md.todict()) + reqts = getattr(md, req_attr) + 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() + if line.startswith('['): + logger.warning('Unexpected line: quitting requirement scan: %r', + line) + break + r = parse_requirement(line) + if not r: + logger.warning('Not recognised as a requirement: %r', line) + continue + if r.extras: + 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 not label is 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 + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + req = [] # required distributions + todo = graph.adjacency_list[dist] # list of nodes we should inspect + + while todo: + d = todo.pop()[0] + req.append(d) + for pred in graph.adjacency_list[d]: + if pred not in req: + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/index.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/index.py new file mode 100644 index 000000000..b1fbbf8e8 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/index.py @@ -0,0 +1,509 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013 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: + 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): + """ + 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(), []) + response = 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): + """ + 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): + """ + 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): + """ + 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): + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py new file mode 100644 index 000000000..0c7d63914 --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py @@ -0,0 +1,1300 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2015 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 as e: # 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, '')), + #'packagetype': 'sdist', + } + 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) + # else: + # logger.debug('skipping pre-release ' + # 'version %s of %s', k, matcher.name) + 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.setDaemon(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 426 / PEP 440. +default_locator = AggregatingLocator( + JSONLocator(), + 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/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py new file mode 100644 index 000000000..ca0fe442d --- /dev/null +++ b/01-introduction-to-data-engineering/workshops/data-engineering-lifecycle/de-lifecycle/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py @@ -0,0 +1,393 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2013 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 on 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: + found = self._exclude_pattern(pattern, anchor=True) + #if not found: + # logger.warning('no previously-included files ' + # 'found matching %r', pattern) + + 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: + found = self._exclude_pattern(pattern, anchor=False) + #if not found: + # logger.warning('no previously-included files ' + # 'matching %r found anywhere in ' + # 'distribution', pattern) + + 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: + found = self._exclude_pattern(pattern, prefix=thedir) + #if not found: + # logger.warning('no previously-included files ' + # 'matching %r found under directory %r', + # pattern, 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