Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- parrot/lib/python3.10/site-packages/charset_normalizer/__init__.py +46 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/__main__.py +4 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/__main__.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/version.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/api.py +626 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/cd.py +395 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/cli/__init__.py +6 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/cli/__main__.py +296 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__main__.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/constant.py +1995 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/legacy.py +54 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/md.cpython-310-x86_64-linux-gnu.so +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/md.py +615 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/models.py +340 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/py.typed +0 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/utils.py +421 -0
- parrot/lib/python3.10/site-packages/charset_normalizer/version.py +6 -0
- parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/INSTALLER +1 -0
- parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/METADATA +210 -0
- parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/RECORD +57 -0
- parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/REQUESTED +0 -0
- parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/entry_points.txt +2 -0
- parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/licenses/LICENSE.md +12 -0
- parrot/lib/python3.10/site-packages/idna/__init__.py +45 -0
- parrot/lib/python3.10/site-packages/idna/__pycache__/codec.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc +0 -0
- parrot/lib/python3.10/site-packages/idna/codec.py +122 -0
- parrot/lib/python3.10/site-packages/idna/compat.py +15 -0
- parrot/lib/python3.10/site-packages/idna/core.py +437 -0
- parrot/lib/python3.10/site-packages/idna/idnadata.py +4243 -0
- parrot/lib/python3.10/site-packages/idna/intranges.py +57 -0
- parrot/lib/python3.10/site-packages/idna/package_data.py +1 -0
- parrot/lib/python3.10/site-packages/idna/py.typed +0 -0
- parrot/lib/python3.10/site-packages/idna/uts46data.py +0 -0
- parrot/lib/python3.10/site-packages/matplotlib-3.9.2.dist-info/INSTALLER +1 -0
- parrot/lib/python3.10/site-packages/matplotlib-3.9.2.dist-info/METADATA +217 -0
- parrot/lib/python3.10/site-packages/matplotlib-3.9.2.dist-info/RECORD +873 -0
- parrot/lib/python3.10/site-packages/matplotlib-3.9.2.dist-info/REQUESTED +0 -0
- parrot/lib/python3.10/site-packages/matplotlib-3.9.2.dist-info/WHEEL +6 -0
- parrot/lib/python3.10/site-packages/rpds/__init__.py +5 -0
- parrot/lib/python3.10/site-packages/rpds/__init__.pyi +77 -0
parrot/lib/python3.10/site-packages/charset_normalizer/__init__.py
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# -*- coding: utf-8 -*-
|
| 2 |
+
"""
|
| 3 |
+
Charset-Normalizer
|
| 4 |
+
~~~~~~~~~~~~~~
|
| 5 |
+
The Real First Universal Charset Detector.
|
| 6 |
+
A library that helps you read text from an unknown charset encoding.
|
| 7 |
+
Motivated by chardet, This package is trying to resolve the issue by taking a new approach.
|
| 8 |
+
All IANA character set names for which the Python core library provides codecs are supported.
|
| 9 |
+
|
| 10 |
+
Basic usage:
|
| 11 |
+
>>> from charset_normalizer import from_bytes
|
| 12 |
+
>>> results = from_bytes('Bсеки човек има право на образование. Oбразованието!'.encode('utf_8'))
|
| 13 |
+
>>> best_guess = results.best()
|
| 14 |
+
>>> str(best_guess)
|
| 15 |
+
'Bсеки човек има право на образование. Oбразованието!'
|
| 16 |
+
|
| 17 |
+
Others methods and usages are available - see the full documentation
|
| 18 |
+
at <https://github.com/Ousret/charset_normalizer>.
|
| 19 |
+
:copyright: (c) 2021 by Ahmed TAHRI
|
| 20 |
+
:license: MIT, see LICENSE for more details.
|
| 21 |
+
"""
|
| 22 |
+
import logging
|
| 23 |
+
|
| 24 |
+
from .api import from_bytes, from_fp, from_path, is_binary
|
| 25 |
+
from .legacy import detect
|
| 26 |
+
from .models import CharsetMatch, CharsetMatches
|
| 27 |
+
from .utils import set_logging_handler
|
| 28 |
+
from .version import VERSION, __version__
|
| 29 |
+
|
| 30 |
+
__all__ = (
|
| 31 |
+
"from_fp",
|
| 32 |
+
"from_path",
|
| 33 |
+
"from_bytes",
|
| 34 |
+
"is_binary",
|
| 35 |
+
"detect",
|
| 36 |
+
"CharsetMatch",
|
| 37 |
+
"CharsetMatches",
|
| 38 |
+
"__version__",
|
| 39 |
+
"VERSION",
|
| 40 |
+
"set_logging_handler",
|
| 41 |
+
)
|
| 42 |
+
|
| 43 |
+
# Attach a NullHandler to the top level logger by default
|
| 44 |
+
# https://docs.python.org/3.3/howto/logging.html#configuring-logging-for-a-library
|
| 45 |
+
|
| 46 |
+
logging.getLogger("charset_normalizer").addHandler(logging.NullHandler())
|
parrot/lib/python3.10/site-packages/charset_normalizer/__main__.py
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from .cli import cli_detect
|
| 2 |
+
|
| 3 |
+
if __name__ == "__main__":
|
| 4 |
+
cli_detect()
|
parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/__init__.cpython-310.pyc
ADDED
|
Binary file (1.57 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/__main__.cpython-310.pyc
ADDED
|
Binary file (252 Bytes). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc
ADDED
|
Binary file (11.4 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc
ADDED
|
Binary file (9.65 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/constant.cpython-310.pyc
ADDED
|
Binary file (30.4 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/legacy.cpython-310.pyc
ADDED
|
Binary file (1.83 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc
ADDED
|
Binary file (15.8 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/models.cpython-310.pyc
ADDED
|
Binary file (11.5 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/utils.cpython-310.pyc
ADDED
|
Binary file (8.91 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/__pycache__/version.cpython-310.pyc
ADDED
|
Binary file (254 Bytes). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/api.py
ADDED
|
@@ -0,0 +1,626 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import logging
|
| 2 |
+
from os import PathLike
|
| 3 |
+
from typing import BinaryIO, List, Optional, Set, Union
|
| 4 |
+
|
| 5 |
+
from .cd import (
|
| 6 |
+
coherence_ratio,
|
| 7 |
+
encoding_languages,
|
| 8 |
+
mb_encoding_languages,
|
| 9 |
+
merge_coherence_ratios,
|
| 10 |
+
)
|
| 11 |
+
from .constant import IANA_SUPPORTED, TOO_BIG_SEQUENCE, TOO_SMALL_SEQUENCE, TRACE
|
| 12 |
+
from .md import mess_ratio
|
| 13 |
+
from .models import CharsetMatch, CharsetMatches
|
| 14 |
+
from .utils import (
|
| 15 |
+
any_specified_encoding,
|
| 16 |
+
cut_sequence_chunks,
|
| 17 |
+
iana_name,
|
| 18 |
+
identify_sig_or_bom,
|
| 19 |
+
is_cp_similar,
|
| 20 |
+
is_multi_byte_encoding,
|
| 21 |
+
should_strip_sig_or_bom,
|
| 22 |
+
)
|
| 23 |
+
|
| 24 |
+
# Will most likely be controversial
|
| 25 |
+
# logging.addLevelName(TRACE, "TRACE")
|
| 26 |
+
logger = logging.getLogger("charset_normalizer")
|
| 27 |
+
explain_handler = logging.StreamHandler()
|
| 28 |
+
explain_handler.setFormatter(
|
| 29 |
+
logging.Formatter("%(asctime)s | %(levelname)s | %(message)s")
|
| 30 |
+
)
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
def from_bytes(
|
| 34 |
+
sequences: Union[bytes, bytearray],
|
| 35 |
+
steps: int = 5,
|
| 36 |
+
chunk_size: int = 512,
|
| 37 |
+
threshold: float = 0.2,
|
| 38 |
+
cp_isolation: Optional[List[str]] = None,
|
| 39 |
+
cp_exclusion: Optional[List[str]] = None,
|
| 40 |
+
preemptive_behaviour: bool = True,
|
| 41 |
+
explain: bool = False,
|
| 42 |
+
language_threshold: float = 0.1,
|
| 43 |
+
enable_fallback: bool = True,
|
| 44 |
+
) -> CharsetMatches:
|
| 45 |
+
"""
|
| 46 |
+
Given a raw bytes sequence, return the best possibles charset usable to render str objects.
|
| 47 |
+
If there is no results, it is a strong indicator that the source is binary/not text.
|
| 48 |
+
By default, the process will extract 5 blocks of 512o each to assess the mess and coherence of a given sequence.
|
| 49 |
+
And will give up a particular code page after 20% of measured mess. Those criteria are customizable at will.
|
| 50 |
+
|
| 51 |
+
The preemptive behavior DOES NOT replace the traditional detection workflow, it prioritize a particular code page
|
| 52 |
+
but never take it for granted. Can improve the performance.
|
| 53 |
+
|
| 54 |
+
You may want to focus your attention to some code page or/and not others, use cp_isolation and cp_exclusion for that
|
| 55 |
+
purpose.
|
| 56 |
+
|
| 57 |
+
This function will strip the SIG in the payload/sequence every time except on UTF-16, UTF-32.
|
| 58 |
+
By default the library does not setup any handler other than the NullHandler, if you choose to set the 'explain'
|
| 59 |
+
toggle to True it will alter the logger configuration to add a StreamHandler that is suitable for debugging.
|
| 60 |
+
Custom logging format and handler can be set manually.
|
| 61 |
+
"""
|
| 62 |
+
|
| 63 |
+
if not isinstance(sequences, (bytearray, bytes)):
|
| 64 |
+
raise TypeError(
|
| 65 |
+
"Expected object of type bytes or bytearray, got: {0}".format(
|
| 66 |
+
type(sequences)
|
| 67 |
+
)
|
| 68 |
+
)
|
| 69 |
+
|
| 70 |
+
if explain:
|
| 71 |
+
previous_logger_level: int = logger.level
|
| 72 |
+
logger.addHandler(explain_handler)
|
| 73 |
+
logger.setLevel(TRACE)
|
| 74 |
+
|
| 75 |
+
length: int = len(sequences)
|
| 76 |
+
|
| 77 |
+
if length == 0:
|
| 78 |
+
logger.debug("Encoding detection on empty bytes, assuming utf_8 intention.")
|
| 79 |
+
if explain:
|
| 80 |
+
logger.removeHandler(explain_handler)
|
| 81 |
+
logger.setLevel(previous_logger_level or logging.WARNING)
|
| 82 |
+
return CharsetMatches([CharsetMatch(sequences, "utf_8", 0.0, False, [], "")])
|
| 83 |
+
|
| 84 |
+
if cp_isolation is not None:
|
| 85 |
+
logger.log(
|
| 86 |
+
TRACE,
|
| 87 |
+
"cp_isolation is set. use this flag for debugging purpose. "
|
| 88 |
+
"limited list of encoding allowed : %s.",
|
| 89 |
+
", ".join(cp_isolation),
|
| 90 |
+
)
|
| 91 |
+
cp_isolation = [iana_name(cp, False) for cp in cp_isolation]
|
| 92 |
+
else:
|
| 93 |
+
cp_isolation = []
|
| 94 |
+
|
| 95 |
+
if cp_exclusion is not None:
|
| 96 |
+
logger.log(
|
| 97 |
+
TRACE,
|
| 98 |
+
"cp_exclusion is set. use this flag for debugging purpose. "
|
| 99 |
+
"limited list of encoding excluded : %s.",
|
| 100 |
+
", ".join(cp_exclusion),
|
| 101 |
+
)
|
| 102 |
+
cp_exclusion = [iana_name(cp, False) for cp in cp_exclusion]
|
| 103 |
+
else:
|
| 104 |
+
cp_exclusion = []
|
| 105 |
+
|
| 106 |
+
if length <= (chunk_size * steps):
|
| 107 |
+
logger.log(
|
| 108 |
+
TRACE,
|
| 109 |
+
"override steps (%i) and chunk_size (%i) as content does not fit (%i byte(s) given) parameters.",
|
| 110 |
+
steps,
|
| 111 |
+
chunk_size,
|
| 112 |
+
length,
|
| 113 |
+
)
|
| 114 |
+
steps = 1
|
| 115 |
+
chunk_size = length
|
| 116 |
+
|
| 117 |
+
if steps > 1 and length / steps < chunk_size:
|
| 118 |
+
chunk_size = int(length / steps)
|
| 119 |
+
|
| 120 |
+
is_too_small_sequence: bool = len(sequences) < TOO_SMALL_SEQUENCE
|
| 121 |
+
is_too_large_sequence: bool = len(sequences) >= TOO_BIG_SEQUENCE
|
| 122 |
+
|
| 123 |
+
if is_too_small_sequence:
|
| 124 |
+
logger.log(
|
| 125 |
+
TRACE,
|
| 126 |
+
"Trying to detect encoding from a tiny portion of ({}) byte(s).".format(
|
| 127 |
+
length
|
| 128 |
+
),
|
| 129 |
+
)
|
| 130 |
+
elif is_too_large_sequence:
|
| 131 |
+
logger.log(
|
| 132 |
+
TRACE,
|
| 133 |
+
"Using lazy str decoding because the payload is quite large, ({}) byte(s).".format(
|
| 134 |
+
length
|
| 135 |
+
),
|
| 136 |
+
)
|
| 137 |
+
|
| 138 |
+
prioritized_encodings: List[str] = []
|
| 139 |
+
|
| 140 |
+
specified_encoding: Optional[str] = (
|
| 141 |
+
any_specified_encoding(sequences) if preemptive_behaviour else None
|
| 142 |
+
)
|
| 143 |
+
|
| 144 |
+
if specified_encoding is not None:
|
| 145 |
+
prioritized_encodings.append(specified_encoding)
|
| 146 |
+
logger.log(
|
| 147 |
+
TRACE,
|
| 148 |
+
"Detected declarative mark in sequence. Priority +1 given for %s.",
|
| 149 |
+
specified_encoding,
|
| 150 |
+
)
|
| 151 |
+
|
| 152 |
+
tested: Set[str] = set()
|
| 153 |
+
tested_but_hard_failure: List[str] = []
|
| 154 |
+
tested_but_soft_failure: List[str] = []
|
| 155 |
+
|
| 156 |
+
fallback_ascii: Optional[CharsetMatch] = None
|
| 157 |
+
fallback_u8: Optional[CharsetMatch] = None
|
| 158 |
+
fallback_specified: Optional[CharsetMatch] = None
|
| 159 |
+
|
| 160 |
+
results: CharsetMatches = CharsetMatches()
|
| 161 |
+
|
| 162 |
+
sig_encoding, sig_payload = identify_sig_or_bom(sequences)
|
| 163 |
+
|
| 164 |
+
if sig_encoding is not None:
|
| 165 |
+
prioritized_encodings.append(sig_encoding)
|
| 166 |
+
logger.log(
|
| 167 |
+
TRACE,
|
| 168 |
+
"Detected a SIG or BOM mark on first %i byte(s). Priority +1 given for %s.",
|
| 169 |
+
len(sig_payload),
|
| 170 |
+
sig_encoding,
|
| 171 |
+
)
|
| 172 |
+
|
| 173 |
+
prioritized_encodings.append("ascii")
|
| 174 |
+
|
| 175 |
+
if "utf_8" not in prioritized_encodings:
|
| 176 |
+
prioritized_encodings.append("utf_8")
|
| 177 |
+
|
| 178 |
+
for encoding_iana in prioritized_encodings + IANA_SUPPORTED:
|
| 179 |
+
if cp_isolation and encoding_iana not in cp_isolation:
|
| 180 |
+
continue
|
| 181 |
+
|
| 182 |
+
if cp_exclusion and encoding_iana in cp_exclusion:
|
| 183 |
+
continue
|
| 184 |
+
|
| 185 |
+
if encoding_iana in tested:
|
| 186 |
+
continue
|
| 187 |
+
|
| 188 |
+
tested.add(encoding_iana)
|
| 189 |
+
|
| 190 |
+
decoded_payload: Optional[str] = None
|
| 191 |
+
bom_or_sig_available: bool = sig_encoding == encoding_iana
|
| 192 |
+
strip_sig_or_bom: bool = bom_or_sig_available and should_strip_sig_or_bom(
|
| 193 |
+
encoding_iana
|
| 194 |
+
)
|
| 195 |
+
|
| 196 |
+
if encoding_iana in {"utf_16", "utf_32"} and not bom_or_sig_available:
|
| 197 |
+
logger.log(
|
| 198 |
+
TRACE,
|
| 199 |
+
"Encoding %s won't be tested as-is because it require a BOM. Will try some sub-encoder LE/BE.",
|
| 200 |
+
encoding_iana,
|
| 201 |
+
)
|
| 202 |
+
continue
|
| 203 |
+
if encoding_iana in {"utf_7"} and not bom_or_sig_available:
|
| 204 |
+
logger.log(
|
| 205 |
+
TRACE,
|
| 206 |
+
"Encoding %s won't be tested as-is because detection is unreliable without BOM/SIG.",
|
| 207 |
+
encoding_iana,
|
| 208 |
+
)
|
| 209 |
+
continue
|
| 210 |
+
|
| 211 |
+
try:
|
| 212 |
+
is_multi_byte_decoder: bool = is_multi_byte_encoding(encoding_iana)
|
| 213 |
+
except (ModuleNotFoundError, ImportError):
|
| 214 |
+
logger.log(
|
| 215 |
+
TRACE,
|
| 216 |
+
"Encoding %s does not provide an IncrementalDecoder",
|
| 217 |
+
encoding_iana,
|
| 218 |
+
)
|
| 219 |
+
continue
|
| 220 |
+
|
| 221 |
+
try:
|
| 222 |
+
if is_too_large_sequence and is_multi_byte_decoder is False:
|
| 223 |
+
str(
|
| 224 |
+
sequences[: int(50e4)]
|
| 225 |
+
if strip_sig_or_bom is False
|
| 226 |
+
else sequences[len(sig_payload) : int(50e4)],
|
| 227 |
+
encoding=encoding_iana,
|
| 228 |
+
)
|
| 229 |
+
else:
|
| 230 |
+
decoded_payload = str(
|
| 231 |
+
sequences
|
| 232 |
+
if strip_sig_or_bom is False
|
| 233 |
+
else sequences[len(sig_payload) :],
|
| 234 |
+
encoding=encoding_iana,
|
| 235 |
+
)
|
| 236 |
+
except (UnicodeDecodeError, LookupError) as e:
|
| 237 |
+
if not isinstance(e, LookupError):
|
| 238 |
+
logger.log(
|
| 239 |
+
TRACE,
|
| 240 |
+
"Code page %s does not fit given bytes sequence at ALL. %s",
|
| 241 |
+
encoding_iana,
|
| 242 |
+
str(e),
|
| 243 |
+
)
|
| 244 |
+
tested_but_hard_failure.append(encoding_iana)
|
| 245 |
+
continue
|
| 246 |
+
|
| 247 |
+
similar_soft_failure_test: bool = False
|
| 248 |
+
|
| 249 |
+
for encoding_soft_failed in tested_but_soft_failure:
|
| 250 |
+
if is_cp_similar(encoding_iana, encoding_soft_failed):
|
| 251 |
+
similar_soft_failure_test = True
|
| 252 |
+
break
|
| 253 |
+
|
| 254 |
+
if similar_soft_failure_test:
|
| 255 |
+
logger.log(
|
| 256 |
+
TRACE,
|
| 257 |
+
"%s is deemed too similar to code page %s and was consider unsuited already. Continuing!",
|
| 258 |
+
encoding_iana,
|
| 259 |
+
encoding_soft_failed,
|
| 260 |
+
)
|
| 261 |
+
continue
|
| 262 |
+
|
| 263 |
+
r_ = range(
|
| 264 |
+
0 if not bom_or_sig_available else len(sig_payload),
|
| 265 |
+
length,
|
| 266 |
+
int(length / steps),
|
| 267 |
+
)
|
| 268 |
+
|
| 269 |
+
multi_byte_bonus: bool = (
|
| 270 |
+
is_multi_byte_decoder
|
| 271 |
+
and decoded_payload is not None
|
| 272 |
+
and len(decoded_payload) < length
|
| 273 |
+
)
|
| 274 |
+
|
| 275 |
+
if multi_byte_bonus:
|
| 276 |
+
logger.log(
|
| 277 |
+
TRACE,
|
| 278 |
+
"Code page %s is a multi byte encoding table and it appear that at least one character "
|
| 279 |
+
"was encoded using n-bytes.",
|
| 280 |
+
encoding_iana,
|
| 281 |
+
)
|
| 282 |
+
|
| 283 |
+
max_chunk_gave_up: int = int(len(r_) / 4)
|
| 284 |
+
|
| 285 |
+
max_chunk_gave_up = max(max_chunk_gave_up, 2)
|
| 286 |
+
early_stop_count: int = 0
|
| 287 |
+
lazy_str_hard_failure = False
|
| 288 |
+
|
| 289 |
+
md_chunks: List[str] = []
|
| 290 |
+
md_ratios = []
|
| 291 |
+
|
| 292 |
+
try:
|
| 293 |
+
for chunk in cut_sequence_chunks(
|
| 294 |
+
sequences,
|
| 295 |
+
encoding_iana,
|
| 296 |
+
r_,
|
| 297 |
+
chunk_size,
|
| 298 |
+
bom_or_sig_available,
|
| 299 |
+
strip_sig_or_bom,
|
| 300 |
+
sig_payload,
|
| 301 |
+
is_multi_byte_decoder,
|
| 302 |
+
decoded_payload,
|
| 303 |
+
):
|
| 304 |
+
md_chunks.append(chunk)
|
| 305 |
+
|
| 306 |
+
md_ratios.append(
|
| 307 |
+
mess_ratio(
|
| 308 |
+
chunk,
|
| 309 |
+
threshold,
|
| 310 |
+
explain is True and 1 <= len(cp_isolation) <= 2,
|
| 311 |
+
)
|
| 312 |
+
)
|
| 313 |
+
|
| 314 |
+
if md_ratios[-1] >= threshold:
|
| 315 |
+
early_stop_count += 1
|
| 316 |
+
|
| 317 |
+
if (early_stop_count >= max_chunk_gave_up) or (
|
| 318 |
+
bom_or_sig_available and strip_sig_or_bom is False
|
| 319 |
+
):
|
| 320 |
+
break
|
| 321 |
+
except (
|
| 322 |
+
UnicodeDecodeError
|
| 323 |
+
) as e: # Lazy str loading may have missed something there
|
| 324 |
+
logger.log(
|
| 325 |
+
TRACE,
|
| 326 |
+
"LazyStr Loading: After MD chunk decode, code page %s does not fit given bytes sequence at ALL. %s",
|
| 327 |
+
encoding_iana,
|
| 328 |
+
str(e),
|
| 329 |
+
)
|
| 330 |
+
early_stop_count = max_chunk_gave_up
|
| 331 |
+
lazy_str_hard_failure = True
|
| 332 |
+
|
| 333 |
+
# We might want to check the sequence again with the whole content
|
| 334 |
+
# Only if initial MD tests passes
|
| 335 |
+
if (
|
| 336 |
+
not lazy_str_hard_failure
|
| 337 |
+
and is_too_large_sequence
|
| 338 |
+
and not is_multi_byte_decoder
|
| 339 |
+
):
|
| 340 |
+
try:
|
| 341 |
+
sequences[int(50e3) :].decode(encoding_iana, errors="strict")
|
| 342 |
+
except UnicodeDecodeError as e:
|
| 343 |
+
logger.log(
|
| 344 |
+
TRACE,
|
| 345 |
+
"LazyStr Loading: After final lookup, code page %s does not fit given bytes sequence at ALL. %s",
|
| 346 |
+
encoding_iana,
|
| 347 |
+
str(e),
|
| 348 |
+
)
|
| 349 |
+
tested_but_hard_failure.append(encoding_iana)
|
| 350 |
+
continue
|
| 351 |
+
|
| 352 |
+
mean_mess_ratio: float = sum(md_ratios) / len(md_ratios) if md_ratios else 0.0
|
| 353 |
+
if mean_mess_ratio >= threshold or early_stop_count >= max_chunk_gave_up:
|
| 354 |
+
tested_but_soft_failure.append(encoding_iana)
|
| 355 |
+
logger.log(
|
| 356 |
+
TRACE,
|
| 357 |
+
"%s was excluded because of initial chaos probing. Gave up %i time(s). "
|
| 358 |
+
"Computed mean chaos is %f %%.",
|
| 359 |
+
encoding_iana,
|
| 360 |
+
early_stop_count,
|
| 361 |
+
round(mean_mess_ratio * 100, ndigits=3),
|
| 362 |
+
)
|
| 363 |
+
# Preparing those fallbacks in case we got nothing.
|
| 364 |
+
if (
|
| 365 |
+
enable_fallback
|
| 366 |
+
and encoding_iana in ["ascii", "utf_8", specified_encoding]
|
| 367 |
+
and not lazy_str_hard_failure
|
| 368 |
+
):
|
| 369 |
+
fallback_entry = CharsetMatch(
|
| 370 |
+
sequences, encoding_iana, threshold, False, [], decoded_payload
|
| 371 |
+
)
|
| 372 |
+
if encoding_iana == specified_encoding:
|
| 373 |
+
fallback_specified = fallback_entry
|
| 374 |
+
elif encoding_iana == "ascii":
|
| 375 |
+
fallback_ascii = fallback_entry
|
| 376 |
+
else:
|
| 377 |
+
fallback_u8 = fallback_entry
|
| 378 |
+
continue
|
| 379 |
+
|
| 380 |
+
logger.log(
|
| 381 |
+
TRACE,
|
| 382 |
+
"%s passed initial chaos probing. Mean measured chaos is %f %%",
|
| 383 |
+
encoding_iana,
|
| 384 |
+
round(mean_mess_ratio * 100, ndigits=3),
|
| 385 |
+
)
|
| 386 |
+
|
| 387 |
+
if not is_multi_byte_decoder:
|
| 388 |
+
target_languages: List[str] = encoding_languages(encoding_iana)
|
| 389 |
+
else:
|
| 390 |
+
target_languages = mb_encoding_languages(encoding_iana)
|
| 391 |
+
|
| 392 |
+
if target_languages:
|
| 393 |
+
logger.log(
|
| 394 |
+
TRACE,
|
| 395 |
+
"{} should target any language(s) of {}".format(
|
| 396 |
+
encoding_iana, str(target_languages)
|
| 397 |
+
),
|
| 398 |
+
)
|
| 399 |
+
|
| 400 |
+
cd_ratios = []
|
| 401 |
+
|
| 402 |
+
# We shall skip the CD when its about ASCII
|
| 403 |
+
# Most of the time its not relevant to run "language-detection" on it.
|
| 404 |
+
if encoding_iana != "ascii":
|
| 405 |
+
for chunk in md_chunks:
|
| 406 |
+
chunk_languages = coherence_ratio(
|
| 407 |
+
chunk,
|
| 408 |
+
language_threshold,
|
| 409 |
+
",".join(target_languages) if target_languages else None,
|
| 410 |
+
)
|
| 411 |
+
|
| 412 |
+
cd_ratios.append(chunk_languages)
|
| 413 |
+
|
| 414 |
+
cd_ratios_merged = merge_coherence_ratios(cd_ratios)
|
| 415 |
+
|
| 416 |
+
if cd_ratios_merged:
|
| 417 |
+
logger.log(
|
| 418 |
+
TRACE,
|
| 419 |
+
"We detected language {} using {}".format(
|
| 420 |
+
cd_ratios_merged, encoding_iana
|
| 421 |
+
),
|
| 422 |
+
)
|
| 423 |
+
|
| 424 |
+
results.append(
|
| 425 |
+
CharsetMatch(
|
| 426 |
+
sequences,
|
| 427 |
+
encoding_iana,
|
| 428 |
+
mean_mess_ratio,
|
| 429 |
+
bom_or_sig_available,
|
| 430 |
+
cd_ratios_merged,
|
| 431 |
+
decoded_payload,
|
| 432 |
+
)
|
| 433 |
+
)
|
| 434 |
+
|
| 435 |
+
if (
|
| 436 |
+
encoding_iana in [specified_encoding, "ascii", "utf_8"]
|
| 437 |
+
and mean_mess_ratio < 0.1
|
| 438 |
+
):
|
| 439 |
+
logger.debug(
|
| 440 |
+
"Encoding detection: %s is most likely the one.", encoding_iana
|
| 441 |
+
)
|
| 442 |
+
if explain:
|
| 443 |
+
logger.removeHandler(explain_handler)
|
| 444 |
+
logger.setLevel(previous_logger_level)
|
| 445 |
+
return CharsetMatches([results[encoding_iana]])
|
| 446 |
+
|
| 447 |
+
if encoding_iana == sig_encoding:
|
| 448 |
+
logger.debug(
|
| 449 |
+
"Encoding detection: %s is most likely the one as we detected a BOM or SIG within "
|
| 450 |
+
"the beginning of the sequence.",
|
| 451 |
+
encoding_iana,
|
| 452 |
+
)
|
| 453 |
+
if explain:
|
| 454 |
+
logger.removeHandler(explain_handler)
|
| 455 |
+
logger.setLevel(previous_logger_level)
|
| 456 |
+
return CharsetMatches([results[encoding_iana]])
|
| 457 |
+
|
| 458 |
+
if len(results) == 0:
|
| 459 |
+
if fallback_u8 or fallback_ascii or fallback_specified:
|
| 460 |
+
logger.log(
|
| 461 |
+
TRACE,
|
| 462 |
+
"Nothing got out of the detection process. Using ASCII/UTF-8/Specified fallback.",
|
| 463 |
+
)
|
| 464 |
+
|
| 465 |
+
if fallback_specified:
|
| 466 |
+
logger.debug(
|
| 467 |
+
"Encoding detection: %s will be used as a fallback match",
|
| 468 |
+
fallback_specified.encoding,
|
| 469 |
+
)
|
| 470 |
+
results.append(fallback_specified)
|
| 471 |
+
elif (
|
| 472 |
+
(fallback_u8 and fallback_ascii is None)
|
| 473 |
+
or (
|
| 474 |
+
fallback_u8
|
| 475 |
+
and fallback_ascii
|
| 476 |
+
and fallback_u8.fingerprint != fallback_ascii.fingerprint
|
| 477 |
+
)
|
| 478 |
+
or (fallback_u8 is not None)
|
| 479 |
+
):
|
| 480 |
+
logger.debug("Encoding detection: utf_8 will be used as a fallback match")
|
| 481 |
+
results.append(fallback_u8)
|
| 482 |
+
elif fallback_ascii:
|
| 483 |
+
logger.debug("Encoding detection: ascii will be used as a fallback match")
|
| 484 |
+
results.append(fallback_ascii)
|
| 485 |
+
|
| 486 |
+
if results:
|
| 487 |
+
logger.debug(
|
| 488 |
+
"Encoding detection: Found %s as plausible (best-candidate) for content. With %i alternatives.",
|
| 489 |
+
results.best().encoding, # type: ignore
|
| 490 |
+
len(results) - 1,
|
| 491 |
+
)
|
| 492 |
+
else:
|
| 493 |
+
logger.debug("Encoding detection: Unable to determine any suitable charset.")
|
| 494 |
+
|
| 495 |
+
if explain:
|
| 496 |
+
logger.removeHandler(explain_handler)
|
| 497 |
+
logger.setLevel(previous_logger_level)
|
| 498 |
+
|
| 499 |
+
return results
|
| 500 |
+
|
| 501 |
+
|
| 502 |
+
def from_fp(
|
| 503 |
+
fp: BinaryIO,
|
| 504 |
+
steps: int = 5,
|
| 505 |
+
chunk_size: int = 512,
|
| 506 |
+
threshold: float = 0.20,
|
| 507 |
+
cp_isolation: Optional[List[str]] = None,
|
| 508 |
+
cp_exclusion: Optional[List[str]] = None,
|
| 509 |
+
preemptive_behaviour: bool = True,
|
| 510 |
+
explain: bool = False,
|
| 511 |
+
language_threshold: float = 0.1,
|
| 512 |
+
enable_fallback: bool = True,
|
| 513 |
+
) -> CharsetMatches:
|
| 514 |
+
"""
|
| 515 |
+
Same thing than the function from_bytes but using a file pointer that is already ready.
|
| 516 |
+
Will not close the file pointer.
|
| 517 |
+
"""
|
| 518 |
+
return from_bytes(
|
| 519 |
+
fp.read(),
|
| 520 |
+
steps,
|
| 521 |
+
chunk_size,
|
| 522 |
+
threshold,
|
| 523 |
+
cp_isolation,
|
| 524 |
+
cp_exclusion,
|
| 525 |
+
preemptive_behaviour,
|
| 526 |
+
explain,
|
| 527 |
+
language_threshold,
|
| 528 |
+
enable_fallback,
|
| 529 |
+
)
|
| 530 |
+
|
| 531 |
+
|
| 532 |
+
def from_path(
|
| 533 |
+
path: Union[str, bytes, PathLike], # type: ignore[type-arg]
|
| 534 |
+
steps: int = 5,
|
| 535 |
+
chunk_size: int = 512,
|
| 536 |
+
threshold: float = 0.20,
|
| 537 |
+
cp_isolation: Optional[List[str]] = None,
|
| 538 |
+
cp_exclusion: Optional[List[str]] = None,
|
| 539 |
+
preemptive_behaviour: bool = True,
|
| 540 |
+
explain: bool = False,
|
| 541 |
+
language_threshold: float = 0.1,
|
| 542 |
+
enable_fallback: bool = True,
|
| 543 |
+
) -> CharsetMatches:
|
| 544 |
+
"""
|
| 545 |
+
Same thing than the function from_bytes but with one extra step. Opening and reading given file path in binary mode.
|
| 546 |
+
Can raise IOError.
|
| 547 |
+
"""
|
| 548 |
+
with open(path, "rb") as fp:
|
| 549 |
+
return from_fp(
|
| 550 |
+
fp,
|
| 551 |
+
steps,
|
| 552 |
+
chunk_size,
|
| 553 |
+
threshold,
|
| 554 |
+
cp_isolation,
|
| 555 |
+
cp_exclusion,
|
| 556 |
+
preemptive_behaviour,
|
| 557 |
+
explain,
|
| 558 |
+
language_threshold,
|
| 559 |
+
enable_fallback,
|
| 560 |
+
)
|
| 561 |
+
|
| 562 |
+
|
| 563 |
+
def is_binary(
|
| 564 |
+
fp_or_path_or_payload: Union[PathLike, str, BinaryIO, bytes], # type: ignore[type-arg]
|
| 565 |
+
steps: int = 5,
|
| 566 |
+
chunk_size: int = 512,
|
| 567 |
+
threshold: float = 0.20,
|
| 568 |
+
cp_isolation: Optional[List[str]] = None,
|
| 569 |
+
cp_exclusion: Optional[List[str]] = None,
|
| 570 |
+
preemptive_behaviour: bool = True,
|
| 571 |
+
explain: bool = False,
|
| 572 |
+
language_threshold: float = 0.1,
|
| 573 |
+
enable_fallback: bool = False,
|
| 574 |
+
) -> bool:
|
| 575 |
+
"""
|
| 576 |
+
Detect if the given input (file, bytes, or path) points to a binary file. aka. not a string.
|
| 577 |
+
Based on the same main heuristic algorithms and default kwargs at the sole exception that fallbacks match
|
| 578 |
+
are disabled to be stricter around ASCII-compatible but unlikely to be a string.
|
| 579 |
+
"""
|
| 580 |
+
if isinstance(fp_or_path_or_payload, (str, PathLike)):
|
| 581 |
+
guesses = from_path(
|
| 582 |
+
fp_or_path_or_payload,
|
| 583 |
+
steps=steps,
|
| 584 |
+
chunk_size=chunk_size,
|
| 585 |
+
threshold=threshold,
|
| 586 |
+
cp_isolation=cp_isolation,
|
| 587 |
+
cp_exclusion=cp_exclusion,
|
| 588 |
+
preemptive_behaviour=preemptive_behaviour,
|
| 589 |
+
explain=explain,
|
| 590 |
+
language_threshold=language_threshold,
|
| 591 |
+
enable_fallback=enable_fallback,
|
| 592 |
+
)
|
| 593 |
+
elif isinstance(
|
| 594 |
+
fp_or_path_or_payload,
|
| 595 |
+
(
|
| 596 |
+
bytes,
|
| 597 |
+
bytearray,
|
| 598 |
+
),
|
| 599 |
+
):
|
| 600 |
+
guesses = from_bytes(
|
| 601 |
+
fp_or_path_or_payload,
|
| 602 |
+
steps=steps,
|
| 603 |
+
chunk_size=chunk_size,
|
| 604 |
+
threshold=threshold,
|
| 605 |
+
cp_isolation=cp_isolation,
|
| 606 |
+
cp_exclusion=cp_exclusion,
|
| 607 |
+
preemptive_behaviour=preemptive_behaviour,
|
| 608 |
+
explain=explain,
|
| 609 |
+
language_threshold=language_threshold,
|
| 610 |
+
enable_fallback=enable_fallback,
|
| 611 |
+
)
|
| 612 |
+
else:
|
| 613 |
+
guesses = from_fp(
|
| 614 |
+
fp_or_path_or_payload,
|
| 615 |
+
steps=steps,
|
| 616 |
+
chunk_size=chunk_size,
|
| 617 |
+
threshold=threshold,
|
| 618 |
+
cp_isolation=cp_isolation,
|
| 619 |
+
cp_exclusion=cp_exclusion,
|
| 620 |
+
preemptive_behaviour=preemptive_behaviour,
|
| 621 |
+
explain=explain,
|
| 622 |
+
language_threshold=language_threshold,
|
| 623 |
+
enable_fallback=enable_fallback,
|
| 624 |
+
)
|
| 625 |
+
|
| 626 |
+
return not guesses
|
parrot/lib/python3.10/site-packages/charset_normalizer/cd.py
ADDED
|
@@ -0,0 +1,395 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import importlib
|
| 2 |
+
from codecs import IncrementalDecoder
|
| 3 |
+
from collections import Counter
|
| 4 |
+
from functools import lru_cache
|
| 5 |
+
from typing import Counter as TypeCounter, Dict, List, Optional, Tuple
|
| 6 |
+
|
| 7 |
+
from .constant import (
|
| 8 |
+
FREQUENCIES,
|
| 9 |
+
KO_NAMES,
|
| 10 |
+
LANGUAGE_SUPPORTED_COUNT,
|
| 11 |
+
TOO_SMALL_SEQUENCE,
|
| 12 |
+
ZH_NAMES,
|
| 13 |
+
)
|
| 14 |
+
from .md import is_suspiciously_successive_range
|
| 15 |
+
from .models import CoherenceMatches
|
| 16 |
+
from .utils import (
|
| 17 |
+
is_accentuated,
|
| 18 |
+
is_latin,
|
| 19 |
+
is_multi_byte_encoding,
|
| 20 |
+
is_unicode_range_secondary,
|
| 21 |
+
unicode_range,
|
| 22 |
+
)
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
def encoding_unicode_range(iana_name: str) -> List[str]:
|
| 26 |
+
"""
|
| 27 |
+
Return associated unicode ranges in a single byte code page.
|
| 28 |
+
"""
|
| 29 |
+
if is_multi_byte_encoding(iana_name):
|
| 30 |
+
raise IOError("Function not supported on multi-byte code page")
|
| 31 |
+
|
| 32 |
+
decoder = importlib.import_module(
|
| 33 |
+
"encodings.{}".format(iana_name)
|
| 34 |
+
).IncrementalDecoder
|
| 35 |
+
|
| 36 |
+
p: IncrementalDecoder = decoder(errors="ignore")
|
| 37 |
+
seen_ranges: Dict[str, int] = {}
|
| 38 |
+
character_count: int = 0
|
| 39 |
+
|
| 40 |
+
for i in range(0x40, 0xFF):
|
| 41 |
+
chunk: str = p.decode(bytes([i]))
|
| 42 |
+
|
| 43 |
+
if chunk:
|
| 44 |
+
character_range: Optional[str] = unicode_range(chunk)
|
| 45 |
+
|
| 46 |
+
if character_range is None:
|
| 47 |
+
continue
|
| 48 |
+
|
| 49 |
+
if is_unicode_range_secondary(character_range) is False:
|
| 50 |
+
if character_range not in seen_ranges:
|
| 51 |
+
seen_ranges[character_range] = 0
|
| 52 |
+
seen_ranges[character_range] += 1
|
| 53 |
+
character_count += 1
|
| 54 |
+
|
| 55 |
+
return sorted(
|
| 56 |
+
[
|
| 57 |
+
character_range
|
| 58 |
+
for character_range in seen_ranges
|
| 59 |
+
if seen_ranges[character_range] / character_count >= 0.15
|
| 60 |
+
]
|
| 61 |
+
)
|
| 62 |
+
|
| 63 |
+
|
| 64 |
+
def unicode_range_languages(primary_range: str) -> List[str]:
|
| 65 |
+
"""
|
| 66 |
+
Return inferred languages used with a unicode range.
|
| 67 |
+
"""
|
| 68 |
+
languages: List[str] = []
|
| 69 |
+
|
| 70 |
+
for language, characters in FREQUENCIES.items():
|
| 71 |
+
for character in characters:
|
| 72 |
+
if unicode_range(character) == primary_range:
|
| 73 |
+
languages.append(language)
|
| 74 |
+
break
|
| 75 |
+
|
| 76 |
+
return languages
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
@lru_cache()
|
| 80 |
+
def encoding_languages(iana_name: str) -> List[str]:
|
| 81 |
+
"""
|
| 82 |
+
Single-byte encoding language association. Some code page are heavily linked to particular language(s).
|
| 83 |
+
This function does the correspondence.
|
| 84 |
+
"""
|
| 85 |
+
unicode_ranges: List[str] = encoding_unicode_range(iana_name)
|
| 86 |
+
primary_range: Optional[str] = None
|
| 87 |
+
|
| 88 |
+
for specified_range in unicode_ranges:
|
| 89 |
+
if "Latin" not in specified_range:
|
| 90 |
+
primary_range = specified_range
|
| 91 |
+
break
|
| 92 |
+
|
| 93 |
+
if primary_range is None:
|
| 94 |
+
return ["Latin Based"]
|
| 95 |
+
|
| 96 |
+
return unicode_range_languages(primary_range)
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
@lru_cache()
|
| 100 |
+
def mb_encoding_languages(iana_name: str) -> List[str]:
|
| 101 |
+
"""
|
| 102 |
+
Multi-byte encoding language association. Some code page are heavily linked to particular language(s).
|
| 103 |
+
This function does the correspondence.
|
| 104 |
+
"""
|
| 105 |
+
if (
|
| 106 |
+
iana_name.startswith("shift_")
|
| 107 |
+
or iana_name.startswith("iso2022_jp")
|
| 108 |
+
or iana_name.startswith("euc_j")
|
| 109 |
+
or iana_name == "cp932"
|
| 110 |
+
):
|
| 111 |
+
return ["Japanese"]
|
| 112 |
+
if iana_name.startswith("gb") or iana_name in ZH_NAMES:
|
| 113 |
+
return ["Chinese"]
|
| 114 |
+
if iana_name.startswith("iso2022_kr") or iana_name in KO_NAMES:
|
| 115 |
+
return ["Korean"]
|
| 116 |
+
|
| 117 |
+
return []
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
@lru_cache(maxsize=LANGUAGE_SUPPORTED_COUNT)
|
| 121 |
+
def get_target_features(language: str) -> Tuple[bool, bool]:
|
| 122 |
+
"""
|
| 123 |
+
Determine main aspects from a supported language if it contains accents and if is pure Latin.
|
| 124 |
+
"""
|
| 125 |
+
target_have_accents: bool = False
|
| 126 |
+
target_pure_latin: bool = True
|
| 127 |
+
|
| 128 |
+
for character in FREQUENCIES[language]:
|
| 129 |
+
if not target_have_accents and is_accentuated(character):
|
| 130 |
+
target_have_accents = True
|
| 131 |
+
if target_pure_latin and is_latin(character) is False:
|
| 132 |
+
target_pure_latin = False
|
| 133 |
+
|
| 134 |
+
return target_have_accents, target_pure_latin
|
| 135 |
+
|
| 136 |
+
|
| 137 |
+
def alphabet_languages(
|
| 138 |
+
characters: List[str], ignore_non_latin: bool = False
|
| 139 |
+
) -> List[str]:
|
| 140 |
+
"""
|
| 141 |
+
Return associated languages associated to given characters.
|
| 142 |
+
"""
|
| 143 |
+
languages: List[Tuple[str, float]] = []
|
| 144 |
+
|
| 145 |
+
source_have_accents = any(is_accentuated(character) for character in characters)
|
| 146 |
+
|
| 147 |
+
for language, language_characters in FREQUENCIES.items():
|
| 148 |
+
target_have_accents, target_pure_latin = get_target_features(language)
|
| 149 |
+
|
| 150 |
+
if ignore_non_latin and target_pure_latin is False:
|
| 151 |
+
continue
|
| 152 |
+
|
| 153 |
+
if target_have_accents is False and source_have_accents:
|
| 154 |
+
continue
|
| 155 |
+
|
| 156 |
+
character_count: int = len(language_characters)
|
| 157 |
+
|
| 158 |
+
character_match_count: int = len(
|
| 159 |
+
[c for c in language_characters if c in characters]
|
| 160 |
+
)
|
| 161 |
+
|
| 162 |
+
ratio: float = character_match_count / character_count
|
| 163 |
+
|
| 164 |
+
if ratio >= 0.2:
|
| 165 |
+
languages.append((language, ratio))
|
| 166 |
+
|
| 167 |
+
languages = sorted(languages, key=lambda x: x[1], reverse=True)
|
| 168 |
+
|
| 169 |
+
return [compatible_language[0] for compatible_language in languages]
|
| 170 |
+
|
| 171 |
+
|
| 172 |
+
def characters_popularity_compare(
|
| 173 |
+
language: str, ordered_characters: List[str]
|
| 174 |
+
) -> float:
|
| 175 |
+
"""
|
| 176 |
+
Determine if a ordered characters list (by occurrence from most appearance to rarest) match a particular language.
|
| 177 |
+
The result is a ratio between 0. (absolutely no correspondence) and 1. (near perfect fit).
|
| 178 |
+
Beware that is function is not strict on the match in order to ease the detection. (Meaning close match is 1.)
|
| 179 |
+
"""
|
| 180 |
+
if language not in FREQUENCIES:
|
| 181 |
+
raise ValueError("{} not available".format(language))
|
| 182 |
+
|
| 183 |
+
character_approved_count: int = 0
|
| 184 |
+
FREQUENCIES_language_set = set(FREQUENCIES[language])
|
| 185 |
+
|
| 186 |
+
ordered_characters_count: int = len(ordered_characters)
|
| 187 |
+
target_language_characters_count: int = len(FREQUENCIES[language])
|
| 188 |
+
|
| 189 |
+
large_alphabet: bool = target_language_characters_count > 26
|
| 190 |
+
|
| 191 |
+
for character, character_rank in zip(
|
| 192 |
+
ordered_characters, range(0, ordered_characters_count)
|
| 193 |
+
):
|
| 194 |
+
if character not in FREQUENCIES_language_set:
|
| 195 |
+
continue
|
| 196 |
+
|
| 197 |
+
character_rank_in_language: int = FREQUENCIES[language].index(character)
|
| 198 |
+
expected_projection_ratio: float = (
|
| 199 |
+
target_language_characters_count / ordered_characters_count
|
| 200 |
+
)
|
| 201 |
+
character_rank_projection: int = int(character_rank * expected_projection_ratio)
|
| 202 |
+
|
| 203 |
+
if (
|
| 204 |
+
large_alphabet is False
|
| 205 |
+
and abs(character_rank_projection - character_rank_in_language) > 4
|
| 206 |
+
):
|
| 207 |
+
continue
|
| 208 |
+
|
| 209 |
+
if (
|
| 210 |
+
large_alphabet is True
|
| 211 |
+
and abs(character_rank_projection - character_rank_in_language)
|
| 212 |
+
< target_language_characters_count / 3
|
| 213 |
+
):
|
| 214 |
+
character_approved_count += 1
|
| 215 |
+
continue
|
| 216 |
+
|
| 217 |
+
characters_before_source: List[str] = FREQUENCIES[language][
|
| 218 |
+
0:character_rank_in_language
|
| 219 |
+
]
|
| 220 |
+
characters_after_source: List[str] = FREQUENCIES[language][
|
| 221 |
+
character_rank_in_language:
|
| 222 |
+
]
|
| 223 |
+
characters_before: List[str] = ordered_characters[0:character_rank]
|
| 224 |
+
characters_after: List[str] = ordered_characters[character_rank:]
|
| 225 |
+
|
| 226 |
+
before_match_count: int = len(
|
| 227 |
+
set(characters_before) & set(characters_before_source)
|
| 228 |
+
)
|
| 229 |
+
|
| 230 |
+
after_match_count: int = len(
|
| 231 |
+
set(characters_after) & set(characters_after_source)
|
| 232 |
+
)
|
| 233 |
+
|
| 234 |
+
if len(characters_before_source) == 0 and before_match_count <= 4:
|
| 235 |
+
character_approved_count += 1
|
| 236 |
+
continue
|
| 237 |
+
|
| 238 |
+
if len(characters_after_source) == 0 and after_match_count <= 4:
|
| 239 |
+
character_approved_count += 1
|
| 240 |
+
continue
|
| 241 |
+
|
| 242 |
+
if (
|
| 243 |
+
before_match_count / len(characters_before_source) >= 0.4
|
| 244 |
+
or after_match_count / len(characters_after_source) >= 0.4
|
| 245 |
+
):
|
| 246 |
+
character_approved_count += 1
|
| 247 |
+
continue
|
| 248 |
+
|
| 249 |
+
return character_approved_count / len(ordered_characters)
|
| 250 |
+
|
| 251 |
+
|
| 252 |
+
def alpha_unicode_split(decoded_sequence: str) -> List[str]:
|
| 253 |
+
"""
|
| 254 |
+
Given a decoded text sequence, return a list of str. Unicode range / alphabet separation.
|
| 255 |
+
Ex. a text containing English/Latin with a bit a Hebrew will return two items in the resulting list;
|
| 256 |
+
One containing the latin letters and the other hebrew.
|
| 257 |
+
"""
|
| 258 |
+
layers: Dict[str, str] = {}
|
| 259 |
+
|
| 260 |
+
for character in decoded_sequence:
|
| 261 |
+
if character.isalpha() is False:
|
| 262 |
+
continue
|
| 263 |
+
|
| 264 |
+
character_range: Optional[str] = unicode_range(character)
|
| 265 |
+
|
| 266 |
+
if character_range is None:
|
| 267 |
+
continue
|
| 268 |
+
|
| 269 |
+
layer_target_range: Optional[str] = None
|
| 270 |
+
|
| 271 |
+
for discovered_range in layers:
|
| 272 |
+
if (
|
| 273 |
+
is_suspiciously_successive_range(discovered_range, character_range)
|
| 274 |
+
is False
|
| 275 |
+
):
|
| 276 |
+
layer_target_range = discovered_range
|
| 277 |
+
break
|
| 278 |
+
|
| 279 |
+
if layer_target_range is None:
|
| 280 |
+
layer_target_range = character_range
|
| 281 |
+
|
| 282 |
+
if layer_target_range not in layers:
|
| 283 |
+
layers[layer_target_range] = character.lower()
|
| 284 |
+
continue
|
| 285 |
+
|
| 286 |
+
layers[layer_target_range] += character.lower()
|
| 287 |
+
|
| 288 |
+
return list(layers.values())
|
| 289 |
+
|
| 290 |
+
|
| 291 |
+
def merge_coherence_ratios(results: List[CoherenceMatches]) -> CoherenceMatches:
|
| 292 |
+
"""
|
| 293 |
+
This function merge results previously given by the function coherence_ratio.
|
| 294 |
+
The return type is the same as coherence_ratio.
|
| 295 |
+
"""
|
| 296 |
+
per_language_ratios: Dict[str, List[float]] = {}
|
| 297 |
+
for result in results:
|
| 298 |
+
for sub_result in result:
|
| 299 |
+
language, ratio = sub_result
|
| 300 |
+
if language not in per_language_ratios:
|
| 301 |
+
per_language_ratios[language] = [ratio]
|
| 302 |
+
continue
|
| 303 |
+
per_language_ratios[language].append(ratio)
|
| 304 |
+
|
| 305 |
+
merge = [
|
| 306 |
+
(
|
| 307 |
+
language,
|
| 308 |
+
round(
|
| 309 |
+
sum(per_language_ratios[language]) / len(per_language_ratios[language]),
|
| 310 |
+
4,
|
| 311 |
+
),
|
| 312 |
+
)
|
| 313 |
+
for language in per_language_ratios
|
| 314 |
+
]
|
| 315 |
+
|
| 316 |
+
return sorted(merge, key=lambda x: x[1], reverse=True)
|
| 317 |
+
|
| 318 |
+
|
| 319 |
+
def filter_alt_coherence_matches(results: CoherenceMatches) -> CoherenceMatches:
|
| 320 |
+
"""
|
| 321 |
+
We shall NOT return "English—" in CoherenceMatches because it is an alternative
|
| 322 |
+
of "English". This function only keeps the best match and remove the em-dash in it.
|
| 323 |
+
"""
|
| 324 |
+
index_results: Dict[str, List[float]] = dict()
|
| 325 |
+
|
| 326 |
+
for result in results:
|
| 327 |
+
language, ratio = result
|
| 328 |
+
no_em_name: str = language.replace("—", "")
|
| 329 |
+
|
| 330 |
+
if no_em_name not in index_results:
|
| 331 |
+
index_results[no_em_name] = []
|
| 332 |
+
|
| 333 |
+
index_results[no_em_name].append(ratio)
|
| 334 |
+
|
| 335 |
+
if any(len(index_results[e]) > 1 for e in index_results):
|
| 336 |
+
filtered_results: CoherenceMatches = []
|
| 337 |
+
|
| 338 |
+
for language in index_results:
|
| 339 |
+
filtered_results.append((language, max(index_results[language])))
|
| 340 |
+
|
| 341 |
+
return filtered_results
|
| 342 |
+
|
| 343 |
+
return results
|
| 344 |
+
|
| 345 |
+
|
| 346 |
+
@lru_cache(maxsize=2048)
|
| 347 |
+
def coherence_ratio(
|
| 348 |
+
decoded_sequence: str, threshold: float = 0.1, lg_inclusion: Optional[str] = None
|
| 349 |
+
) -> CoherenceMatches:
|
| 350 |
+
"""
|
| 351 |
+
Detect ANY language that can be identified in given sequence. The sequence will be analysed by layers.
|
| 352 |
+
A layer = Character extraction by alphabets/ranges.
|
| 353 |
+
"""
|
| 354 |
+
|
| 355 |
+
results: List[Tuple[str, float]] = []
|
| 356 |
+
ignore_non_latin: bool = False
|
| 357 |
+
|
| 358 |
+
sufficient_match_count: int = 0
|
| 359 |
+
|
| 360 |
+
lg_inclusion_list = lg_inclusion.split(",") if lg_inclusion is not None else []
|
| 361 |
+
if "Latin Based" in lg_inclusion_list:
|
| 362 |
+
ignore_non_latin = True
|
| 363 |
+
lg_inclusion_list.remove("Latin Based")
|
| 364 |
+
|
| 365 |
+
for layer in alpha_unicode_split(decoded_sequence):
|
| 366 |
+
sequence_frequencies: TypeCounter[str] = Counter(layer)
|
| 367 |
+
most_common = sequence_frequencies.most_common()
|
| 368 |
+
|
| 369 |
+
character_count: int = sum(o for c, o in most_common)
|
| 370 |
+
|
| 371 |
+
if character_count <= TOO_SMALL_SEQUENCE:
|
| 372 |
+
continue
|
| 373 |
+
|
| 374 |
+
popular_character_ordered: List[str] = [c for c, o in most_common]
|
| 375 |
+
|
| 376 |
+
for language in lg_inclusion_list or alphabet_languages(
|
| 377 |
+
popular_character_ordered, ignore_non_latin
|
| 378 |
+
):
|
| 379 |
+
ratio: float = characters_popularity_compare(
|
| 380 |
+
language, popular_character_ordered
|
| 381 |
+
)
|
| 382 |
+
|
| 383 |
+
if ratio < threshold:
|
| 384 |
+
continue
|
| 385 |
+
elif ratio >= 0.8:
|
| 386 |
+
sufficient_match_count += 1
|
| 387 |
+
|
| 388 |
+
results.append((language, round(ratio, 4)))
|
| 389 |
+
|
| 390 |
+
if sufficient_match_count >= 3:
|
| 391 |
+
break
|
| 392 |
+
|
| 393 |
+
return sorted(
|
| 394 |
+
filter_alt_coherence_matches(results), key=lambda x: x[1], reverse=True
|
| 395 |
+
)
|
parrot/lib/python3.10/site-packages/charset_normalizer/cli/__init__.py
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from .__main__ import cli_detect, query_yes_no
|
| 2 |
+
|
| 3 |
+
__all__ = (
|
| 4 |
+
"cli_detect",
|
| 5 |
+
"query_yes_no",
|
| 6 |
+
)
|
parrot/lib/python3.10/site-packages/charset_normalizer/cli/__main__.py
ADDED
|
@@ -0,0 +1,296 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import argparse
|
| 2 |
+
import sys
|
| 3 |
+
from json import dumps
|
| 4 |
+
from os.path import abspath, basename, dirname, join, realpath
|
| 5 |
+
from platform import python_version
|
| 6 |
+
from typing import List, Optional
|
| 7 |
+
from unicodedata import unidata_version
|
| 8 |
+
|
| 9 |
+
import charset_normalizer.md as md_module
|
| 10 |
+
from charset_normalizer import from_fp
|
| 11 |
+
from charset_normalizer.models import CliDetectionResult
|
| 12 |
+
from charset_normalizer.version import __version__
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
def query_yes_no(question: str, default: str = "yes") -> bool:
|
| 16 |
+
"""Ask a yes/no question via input() and return their answer.
|
| 17 |
+
|
| 18 |
+
"question" is a string that is presented to the user.
|
| 19 |
+
"default" is the presumed answer if the user just hits <Enter>.
|
| 20 |
+
It must be "yes" (the default), "no" or None (meaning
|
| 21 |
+
an answer is required of the user).
|
| 22 |
+
|
| 23 |
+
The "answer" return value is True for "yes" or False for "no".
|
| 24 |
+
|
| 25 |
+
Credit goes to (c) https://stackoverflow.com/questions/3041986/apt-command-line-interface-like-yes-no-input
|
| 26 |
+
"""
|
| 27 |
+
valid = {"yes": True, "y": True, "ye": True, "no": False, "n": False}
|
| 28 |
+
if default is None:
|
| 29 |
+
prompt = " [y/n] "
|
| 30 |
+
elif default == "yes":
|
| 31 |
+
prompt = " [Y/n] "
|
| 32 |
+
elif default == "no":
|
| 33 |
+
prompt = " [y/N] "
|
| 34 |
+
else:
|
| 35 |
+
raise ValueError("invalid default answer: '%s'" % default)
|
| 36 |
+
|
| 37 |
+
while True:
|
| 38 |
+
sys.stdout.write(question + prompt)
|
| 39 |
+
choice = input().lower()
|
| 40 |
+
if default is not None and choice == "":
|
| 41 |
+
return valid[default]
|
| 42 |
+
elif choice in valid:
|
| 43 |
+
return valid[choice]
|
| 44 |
+
else:
|
| 45 |
+
sys.stdout.write("Please respond with 'yes' or 'no' " "(or 'y' or 'n').\n")
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
def cli_detect(argv: Optional[List[str]] = None) -> int:
|
| 49 |
+
"""
|
| 50 |
+
CLI assistant using ARGV and ArgumentParser
|
| 51 |
+
:param argv:
|
| 52 |
+
:return: 0 if everything is fine, anything else equal trouble
|
| 53 |
+
"""
|
| 54 |
+
parser = argparse.ArgumentParser(
|
| 55 |
+
description="The Real First Universal Charset Detector. "
|
| 56 |
+
"Discover originating encoding used on text file. "
|
| 57 |
+
"Normalize text to unicode."
|
| 58 |
+
)
|
| 59 |
+
|
| 60 |
+
parser.add_argument(
|
| 61 |
+
"files", type=argparse.FileType("rb"), nargs="+", help="File(s) to be analysed"
|
| 62 |
+
)
|
| 63 |
+
parser.add_argument(
|
| 64 |
+
"-v",
|
| 65 |
+
"--verbose",
|
| 66 |
+
action="store_true",
|
| 67 |
+
default=False,
|
| 68 |
+
dest="verbose",
|
| 69 |
+
help="Display complementary information about file if any. "
|
| 70 |
+
"Stdout will contain logs about the detection process.",
|
| 71 |
+
)
|
| 72 |
+
parser.add_argument(
|
| 73 |
+
"-a",
|
| 74 |
+
"--with-alternative",
|
| 75 |
+
action="store_true",
|
| 76 |
+
default=False,
|
| 77 |
+
dest="alternatives",
|
| 78 |
+
help="Output complementary possibilities if any. Top-level JSON WILL be a list.",
|
| 79 |
+
)
|
| 80 |
+
parser.add_argument(
|
| 81 |
+
"-n",
|
| 82 |
+
"--normalize",
|
| 83 |
+
action="store_true",
|
| 84 |
+
default=False,
|
| 85 |
+
dest="normalize",
|
| 86 |
+
help="Permit to normalize input file. If not set, program does not write anything.",
|
| 87 |
+
)
|
| 88 |
+
parser.add_argument(
|
| 89 |
+
"-m",
|
| 90 |
+
"--minimal",
|
| 91 |
+
action="store_true",
|
| 92 |
+
default=False,
|
| 93 |
+
dest="minimal",
|
| 94 |
+
help="Only output the charset detected to STDOUT. Disabling JSON output.",
|
| 95 |
+
)
|
| 96 |
+
parser.add_argument(
|
| 97 |
+
"-r",
|
| 98 |
+
"--replace",
|
| 99 |
+
action="store_true",
|
| 100 |
+
default=False,
|
| 101 |
+
dest="replace",
|
| 102 |
+
help="Replace file when trying to normalize it instead of creating a new one.",
|
| 103 |
+
)
|
| 104 |
+
parser.add_argument(
|
| 105 |
+
"-f",
|
| 106 |
+
"--force",
|
| 107 |
+
action="store_true",
|
| 108 |
+
default=False,
|
| 109 |
+
dest="force",
|
| 110 |
+
help="Replace file without asking if you are sure, use this flag with caution.",
|
| 111 |
+
)
|
| 112 |
+
parser.add_argument(
|
| 113 |
+
"-t",
|
| 114 |
+
"--threshold",
|
| 115 |
+
action="store",
|
| 116 |
+
default=0.2,
|
| 117 |
+
type=float,
|
| 118 |
+
dest="threshold",
|
| 119 |
+
help="Define a custom maximum amount of chaos allowed in decoded content. 0. <= chaos <= 1.",
|
| 120 |
+
)
|
| 121 |
+
parser.add_argument(
|
| 122 |
+
"--version",
|
| 123 |
+
action="version",
|
| 124 |
+
version="Charset-Normalizer {} - Python {} - Unicode {} - SpeedUp {}".format(
|
| 125 |
+
__version__,
|
| 126 |
+
python_version(),
|
| 127 |
+
unidata_version,
|
| 128 |
+
"OFF" if md_module.__file__.lower().endswith(".py") else "ON",
|
| 129 |
+
),
|
| 130 |
+
help="Show version information and exit.",
|
| 131 |
+
)
|
| 132 |
+
|
| 133 |
+
args = parser.parse_args(argv)
|
| 134 |
+
|
| 135 |
+
if args.replace is True and args.normalize is False:
|
| 136 |
+
print("Use --replace in addition of --normalize only.", file=sys.stderr)
|
| 137 |
+
return 1
|
| 138 |
+
|
| 139 |
+
if args.force is True and args.replace is False:
|
| 140 |
+
print("Use --force in addition of --replace only.", file=sys.stderr)
|
| 141 |
+
return 1
|
| 142 |
+
|
| 143 |
+
if args.threshold < 0.0 or args.threshold > 1.0:
|
| 144 |
+
print("--threshold VALUE should be between 0. AND 1.", file=sys.stderr)
|
| 145 |
+
return 1
|
| 146 |
+
|
| 147 |
+
x_ = []
|
| 148 |
+
|
| 149 |
+
for my_file in args.files:
|
| 150 |
+
matches = from_fp(my_file, threshold=args.threshold, explain=args.verbose)
|
| 151 |
+
|
| 152 |
+
best_guess = matches.best()
|
| 153 |
+
|
| 154 |
+
if best_guess is None:
|
| 155 |
+
print(
|
| 156 |
+
'Unable to identify originating encoding for "{}". {}'.format(
|
| 157 |
+
my_file.name,
|
| 158 |
+
"Maybe try increasing maximum amount of chaos."
|
| 159 |
+
if args.threshold < 1.0
|
| 160 |
+
else "",
|
| 161 |
+
),
|
| 162 |
+
file=sys.stderr,
|
| 163 |
+
)
|
| 164 |
+
x_.append(
|
| 165 |
+
CliDetectionResult(
|
| 166 |
+
abspath(my_file.name),
|
| 167 |
+
None,
|
| 168 |
+
[],
|
| 169 |
+
[],
|
| 170 |
+
"Unknown",
|
| 171 |
+
[],
|
| 172 |
+
False,
|
| 173 |
+
1.0,
|
| 174 |
+
0.0,
|
| 175 |
+
None,
|
| 176 |
+
True,
|
| 177 |
+
)
|
| 178 |
+
)
|
| 179 |
+
else:
|
| 180 |
+
x_.append(
|
| 181 |
+
CliDetectionResult(
|
| 182 |
+
abspath(my_file.name),
|
| 183 |
+
best_guess.encoding,
|
| 184 |
+
best_guess.encoding_aliases,
|
| 185 |
+
[
|
| 186 |
+
cp
|
| 187 |
+
for cp in best_guess.could_be_from_charset
|
| 188 |
+
if cp != best_guess.encoding
|
| 189 |
+
],
|
| 190 |
+
best_guess.language,
|
| 191 |
+
best_guess.alphabets,
|
| 192 |
+
best_guess.bom,
|
| 193 |
+
best_guess.percent_chaos,
|
| 194 |
+
best_guess.percent_coherence,
|
| 195 |
+
None,
|
| 196 |
+
True,
|
| 197 |
+
)
|
| 198 |
+
)
|
| 199 |
+
|
| 200 |
+
if len(matches) > 1 and args.alternatives:
|
| 201 |
+
for el in matches:
|
| 202 |
+
if el != best_guess:
|
| 203 |
+
x_.append(
|
| 204 |
+
CliDetectionResult(
|
| 205 |
+
abspath(my_file.name),
|
| 206 |
+
el.encoding,
|
| 207 |
+
el.encoding_aliases,
|
| 208 |
+
[
|
| 209 |
+
cp
|
| 210 |
+
for cp in el.could_be_from_charset
|
| 211 |
+
if cp != el.encoding
|
| 212 |
+
],
|
| 213 |
+
el.language,
|
| 214 |
+
el.alphabets,
|
| 215 |
+
el.bom,
|
| 216 |
+
el.percent_chaos,
|
| 217 |
+
el.percent_coherence,
|
| 218 |
+
None,
|
| 219 |
+
False,
|
| 220 |
+
)
|
| 221 |
+
)
|
| 222 |
+
|
| 223 |
+
if args.normalize is True:
|
| 224 |
+
if best_guess.encoding.startswith("utf") is True:
|
| 225 |
+
print(
|
| 226 |
+
'"{}" file does not need to be normalized, as it already came from unicode.'.format(
|
| 227 |
+
my_file.name
|
| 228 |
+
),
|
| 229 |
+
file=sys.stderr,
|
| 230 |
+
)
|
| 231 |
+
if my_file.closed is False:
|
| 232 |
+
my_file.close()
|
| 233 |
+
continue
|
| 234 |
+
|
| 235 |
+
dir_path = dirname(realpath(my_file.name))
|
| 236 |
+
file_name = basename(realpath(my_file.name))
|
| 237 |
+
|
| 238 |
+
o_: List[str] = file_name.split(".")
|
| 239 |
+
|
| 240 |
+
if args.replace is False:
|
| 241 |
+
o_.insert(-1, best_guess.encoding)
|
| 242 |
+
if my_file.closed is False:
|
| 243 |
+
my_file.close()
|
| 244 |
+
elif (
|
| 245 |
+
args.force is False
|
| 246 |
+
and query_yes_no(
|
| 247 |
+
'Are you sure to normalize "{}" by replacing it ?'.format(
|
| 248 |
+
my_file.name
|
| 249 |
+
),
|
| 250 |
+
"no",
|
| 251 |
+
)
|
| 252 |
+
is False
|
| 253 |
+
):
|
| 254 |
+
if my_file.closed is False:
|
| 255 |
+
my_file.close()
|
| 256 |
+
continue
|
| 257 |
+
|
| 258 |
+
try:
|
| 259 |
+
x_[0].unicode_path = join(dir_path, ".".join(o_))
|
| 260 |
+
|
| 261 |
+
with open(x_[0].unicode_path, "w", encoding="utf-8") as fp:
|
| 262 |
+
fp.write(str(best_guess))
|
| 263 |
+
except IOError as e:
|
| 264 |
+
print(str(e), file=sys.stderr)
|
| 265 |
+
if my_file.closed is False:
|
| 266 |
+
my_file.close()
|
| 267 |
+
return 2
|
| 268 |
+
|
| 269 |
+
if my_file.closed is False:
|
| 270 |
+
my_file.close()
|
| 271 |
+
|
| 272 |
+
if args.minimal is False:
|
| 273 |
+
print(
|
| 274 |
+
dumps(
|
| 275 |
+
[el.__dict__ for el in x_] if len(x_) > 1 else x_[0].__dict__,
|
| 276 |
+
ensure_ascii=True,
|
| 277 |
+
indent=4,
|
| 278 |
+
)
|
| 279 |
+
)
|
| 280 |
+
else:
|
| 281 |
+
for my_file in args.files:
|
| 282 |
+
print(
|
| 283 |
+
", ".join(
|
| 284 |
+
[
|
| 285 |
+
el.encoding or "undefined"
|
| 286 |
+
for el in x_
|
| 287 |
+
if el.path == abspath(my_file.name)
|
| 288 |
+
]
|
| 289 |
+
)
|
| 290 |
+
)
|
| 291 |
+
|
| 292 |
+
return 0
|
| 293 |
+
|
| 294 |
+
|
| 295 |
+
if __name__ == "__main__":
|
| 296 |
+
cli_detect()
|
parrot/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc
ADDED
|
Binary file (255 Bytes). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/cli/__pycache__/__main__.cpython-310.pyc
ADDED
|
Binary file (6.45 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/constant.py
ADDED
|
@@ -0,0 +1,1995 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# -*- coding: utf-8 -*-
|
| 2 |
+
from codecs import BOM_UTF8, BOM_UTF16_BE, BOM_UTF16_LE, BOM_UTF32_BE, BOM_UTF32_LE
|
| 3 |
+
from encodings.aliases import aliases
|
| 4 |
+
from re import IGNORECASE, compile as re_compile
|
| 5 |
+
from typing import Dict, List, Set, Union
|
| 6 |
+
|
| 7 |
+
# Contain for each eligible encoding a list of/item bytes SIG/BOM
|
| 8 |
+
ENCODING_MARKS: Dict[str, Union[bytes, List[bytes]]] = {
|
| 9 |
+
"utf_8": BOM_UTF8,
|
| 10 |
+
"utf_7": [
|
| 11 |
+
b"\x2b\x2f\x76\x38",
|
| 12 |
+
b"\x2b\x2f\x76\x39",
|
| 13 |
+
b"\x2b\x2f\x76\x2b",
|
| 14 |
+
b"\x2b\x2f\x76\x2f",
|
| 15 |
+
b"\x2b\x2f\x76\x38\x2d",
|
| 16 |
+
],
|
| 17 |
+
"gb18030": b"\x84\x31\x95\x33",
|
| 18 |
+
"utf_32": [BOM_UTF32_BE, BOM_UTF32_LE],
|
| 19 |
+
"utf_16": [BOM_UTF16_BE, BOM_UTF16_LE],
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
TOO_SMALL_SEQUENCE: int = 32
|
| 23 |
+
TOO_BIG_SEQUENCE: int = int(10e6)
|
| 24 |
+
|
| 25 |
+
UTF8_MAXIMAL_ALLOCATION: int = 1_112_064
|
| 26 |
+
|
| 27 |
+
# Up-to-date Unicode ucd/15.0.0
|
| 28 |
+
UNICODE_RANGES_COMBINED: Dict[str, range] = {
|
| 29 |
+
"Control character": range(32),
|
| 30 |
+
"Basic Latin": range(32, 128),
|
| 31 |
+
"Latin-1 Supplement": range(128, 256),
|
| 32 |
+
"Latin Extended-A": range(256, 384),
|
| 33 |
+
"Latin Extended-B": range(384, 592),
|
| 34 |
+
"IPA Extensions": range(592, 688),
|
| 35 |
+
"Spacing Modifier Letters": range(688, 768),
|
| 36 |
+
"Combining Diacritical Marks": range(768, 880),
|
| 37 |
+
"Greek and Coptic": range(880, 1024),
|
| 38 |
+
"Cyrillic": range(1024, 1280),
|
| 39 |
+
"Cyrillic Supplement": range(1280, 1328),
|
| 40 |
+
"Armenian": range(1328, 1424),
|
| 41 |
+
"Hebrew": range(1424, 1536),
|
| 42 |
+
"Arabic": range(1536, 1792),
|
| 43 |
+
"Syriac": range(1792, 1872),
|
| 44 |
+
"Arabic Supplement": range(1872, 1920),
|
| 45 |
+
"Thaana": range(1920, 1984),
|
| 46 |
+
"NKo": range(1984, 2048),
|
| 47 |
+
"Samaritan": range(2048, 2112),
|
| 48 |
+
"Mandaic": range(2112, 2144),
|
| 49 |
+
"Syriac Supplement": range(2144, 2160),
|
| 50 |
+
"Arabic Extended-B": range(2160, 2208),
|
| 51 |
+
"Arabic Extended-A": range(2208, 2304),
|
| 52 |
+
"Devanagari": range(2304, 2432),
|
| 53 |
+
"Bengali": range(2432, 2560),
|
| 54 |
+
"Gurmukhi": range(2560, 2688),
|
| 55 |
+
"Gujarati": range(2688, 2816),
|
| 56 |
+
"Oriya": range(2816, 2944),
|
| 57 |
+
"Tamil": range(2944, 3072),
|
| 58 |
+
"Telugu": range(3072, 3200),
|
| 59 |
+
"Kannada": range(3200, 3328),
|
| 60 |
+
"Malayalam": range(3328, 3456),
|
| 61 |
+
"Sinhala": range(3456, 3584),
|
| 62 |
+
"Thai": range(3584, 3712),
|
| 63 |
+
"Lao": range(3712, 3840),
|
| 64 |
+
"Tibetan": range(3840, 4096),
|
| 65 |
+
"Myanmar": range(4096, 4256),
|
| 66 |
+
"Georgian": range(4256, 4352),
|
| 67 |
+
"Hangul Jamo": range(4352, 4608),
|
| 68 |
+
"Ethiopic": range(4608, 4992),
|
| 69 |
+
"Ethiopic Supplement": range(4992, 5024),
|
| 70 |
+
"Cherokee": range(5024, 5120),
|
| 71 |
+
"Unified Canadian Aboriginal Syllabics": range(5120, 5760),
|
| 72 |
+
"Ogham": range(5760, 5792),
|
| 73 |
+
"Runic": range(5792, 5888),
|
| 74 |
+
"Tagalog": range(5888, 5920),
|
| 75 |
+
"Hanunoo": range(5920, 5952),
|
| 76 |
+
"Buhid": range(5952, 5984),
|
| 77 |
+
"Tagbanwa": range(5984, 6016),
|
| 78 |
+
"Khmer": range(6016, 6144),
|
| 79 |
+
"Mongolian": range(6144, 6320),
|
| 80 |
+
"Unified Canadian Aboriginal Syllabics Extended": range(6320, 6400),
|
| 81 |
+
"Limbu": range(6400, 6480),
|
| 82 |
+
"Tai Le": range(6480, 6528),
|
| 83 |
+
"New Tai Lue": range(6528, 6624),
|
| 84 |
+
"Khmer Symbols": range(6624, 6656),
|
| 85 |
+
"Buginese": range(6656, 6688),
|
| 86 |
+
"Tai Tham": range(6688, 6832),
|
| 87 |
+
"Combining Diacritical Marks Extended": range(6832, 6912),
|
| 88 |
+
"Balinese": range(6912, 7040),
|
| 89 |
+
"Sundanese": range(7040, 7104),
|
| 90 |
+
"Batak": range(7104, 7168),
|
| 91 |
+
"Lepcha": range(7168, 7248),
|
| 92 |
+
"Ol Chiki": range(7248, 7296),
|
| 93 |
+
"Cyrillic Extended-C": range(7296, 7312),
|
| 94 |
+
"Georgian Extended": range(7312, 7360),
|
| 95 |
+
"Sundanese Supplement": range(7360, 7376),
|
| 96 |
+
"Vedic Extensions": range(7376, 7424),
|
| 97 |
+
"Phonetic Extensions": range(7424, 7552),
|
| 98 |
+
"Phonetic Extensions Supplement": range(7552, 7616),
|
| 99 |
+
"Combining Diacritical Marks Supplement": range(7616, 7680),
|
| 100 |
+
"Latin Extended Additional": range(7680, 7936),
|
| 101 |
+
"Greek Extended": range(7936, 8192),
|
| 102 |
+
"General Punctuation": range(8192, 8304),
|
| 103 |
+
"Superscripts and Subscripts": range(8304, 8352),
|
| 104 |
+
"Currency Symbols": range(8352, 8400),
|
| 105 |
+
"Combining Diacritical Marks for Symbols": range(8400, 8448),
|
| 106 |
+
"Letterlike Symbols": range(8448, 8528),
|
| 107 |
+
"Number Forms": range(8528, 8592),
|
| 108 |
+
"Arrows": range(8592, 8704),
|
| 109 |
+
"Mathematical Operators": range(8704, 8960),
|
| 110 |
+
"Miscellaneous Technical": range(8960, 9216),
|
| 111 |
+
"Control Pictures": range(9216, 9280),
|
| 112 |
+
"Optical Character Recognition": range(9280, 9312),
|
| 113 |
+
"Enclosed Alphanumerics": range(9312, 9472),
|
| 114 |
+
"Box Drawing": range(9472, 9600),
|
| 115 |
+
"Block Elements": range(9600, 9632),
|
| 116 |
+
"Geometric Shapes": range(9632, 9728),
|
| 117 |
+
"Miscellaneous Symbols": range(9728, 9984),
|
| 118 |
+
"Dingbats": range(9984, 10176),
|
| 119 |
+
"Miscellaneous Mathematical Symbols-A": range(10176, 10224),
|
| 120 |
+
"Supplemental Arrows-A": range(10224, 10240),
|
| 121 |
+
"Braille Patterns": range(10240, 10496),
|
| 122 |
+
"Supplemental Arrows-B": range(10496, 10624),
|
| 123 |
+
"Miscellaneous Mathematical Symbols-B": range(10624, 10752),
|
| 124 |
+
"Supplemental Mathematical Operators": range(10752, 11008),
|
| 125 |
+
"Miscellaneous Symbols and Arrows": range(11008, 11264),
|
| 126 |
+
"Glagolitic": range(11264, 11360),
|
| 127 |
+
"Latin Extended-C": range(11360, 11392),
|
| 128 |
+
"Coptic": range(11392, 11520),
|
| 129 |
+
"Georgian Supplement": range(11520, 11568),
|
| 130 |
+
"Tifinagh": range(11568, 11648),
|
| 131 |
+
"Ethiopic Extended": range(11648, 11744),
|
| 132 |
+
"Cyrillic Extended-A": range(11744, 11776),
|
| 133 |
+
"Supplemental Punctuation": range(11776, 11904),
|
| 134 |
+
"CJK Radicals Supplement": range(11904, 12032),
|
| 135 |
+
"Kangxi Radicals": range(12032, 12256),
|
| 136 |
+
"Ideographic Description Characters": range(12272, 12288),
|
| 137 |
+
"CJK Symbols and Punctuation": range(12288, 12352),
|
| 138 |
+
"Hiragana": range(12352, 12448),
|
| 139 |
+
"Katakana": range(12448, 12544),
|
| 140 |
+
"Bopomofo": range(12544, 12592),
|
| 141 |
+
"Hangul Compatibility Jamo": range(12592, 12688),
|
| 142 |
+
"Kanbun": range(12688, 12704),
|
| 143 |
+
"Bopomofo Extended": range(12704, 12736),
|
| 144 |
+
"CJK Strokes": range(12736, 12784),
|
| 145 |
+
"Katakana Phonetic Extensions": range(12784, 12800),
|
| 146 |
+
"Enclosed CJK Letters and Months": range(12800, 13056),
|
| 147 |
+
"CJK Compatibility": range(13056, 13312),
|
| 148 |
+
"CJK Unified Ideographs Extension A": range(13312, 19904),
|
| 149 |
+
"Yijing Hexagram Symbols": range(19904, 19968),
|
| 150 |
+
"CJK Unified Ideographs": range(19968, 40960),
|
| 151 |
+
"Yi Syllables": range(40960, 42128),
|
| 152 |
+
"Yi Radicals": range(42128, 42192),
|
| 153 |
+
"Lisu": range(42192, 42240),
|
| 154 |
+
"Vai": range(42240, 42560),
|
| 155 |
+
"Cyrillic Extended-B": range(42560, 42656),
|
| 156 |
+
"Bamum": range(42656, 42752),
|
| 157 |
+
"Modifier Tone Letters": range(42752, 42784),
|
| 158 |
+
"Latin Extended-D": range(42784, 43008),
|
| 159 |
+
"Syloti Nagri": range(43008, 43056),
|
| 160 |
+
"Common Indic Number Forms": range(43056, 43072),
|
| 161 |
+
"Phags-pa": range(43072, 43136),
|
| 162 |
+
"Saurashtra": range(43136, 43232),
|
| 163 |
+
"Devanagari Extended": range(43232, 43264),
|
| 164 |
+
"Kayah Li": range(43264, 43312),
|
| 165 |
+
"Rejang": range(43312, 43360),
|
| 166 |
+
"Hangul Jamo Extended-A": range(43360, 43392),
|
| 167 |
+
"Javanese": range(43392, 43488),
|
| 168 |
+
"Myanmar Extended-B": range(43488, 43520),
|
| 169 |
+
"Cham": range(43520, 43616),
|
| 170 |
+
"Myanmar Extended-A": range(43616, 43648),
|
| 171 |
+
"Tai Viet": range(43648, 43744),
|
| 172 |
+
"Meetei Mayek Extensions": range(43744, 43776),
|
| 173 |
+
"Ethiopic Extended-A": range(43776, 43824),
|
| 174 |
+
"Latin Extended-E": range(43824, 43888),
|
| 175 |
+
"Cherokee Supplement": range(43888, 43968),
|
| 176 |
+
"Meetei Mayek": range(43968, 44032),
|
| 177 |
+
"Hangul Syllables": range(44032, 55216),
|
| 178 |
+
"Hangul Jamo Extended-B": range(55216, 55296),
|
| 179 |
+
"High Surrogates": range(55296, 56192),
|
| 180 |
+
"High Private Use Surrogates": range(56192, 56320),
|
| 181 |
+
"Low Surrogates": range(56320, 57344),
|
| 182 |
+
"Private Use Area": range(57344, 63744),
|
| 183 |
+
"CJK Compatibility Ideographs": range(63744, 64256),
|
| 184 |
+
"Alphabetic Presentation Forms": range(64256, 64336),
|
| 185 |
+
"Arabic Presentation Forms-A": range(64336, 65024),
|
| 186 |
+
"Variation Selectors": range(65024, 65040),
|
| 187 |
+
"Vertical Forms": range(65040, 65056),
|
| 188 |
+
"Combining Half Marks": range(65056, 65072),
|
| 189 |
+
"CJK Compatibility Forms": range(65072, 65104),
|
| 190 |
+
"Small Form Variants": range(65104, 65136),
|
| 191 |
+
"Arabic Presentation Forms-B": range(65136, 65280),
|
| 192 |
+
"Halfwidth and Fullwidth Forms": range(65280, 65520),
|
| 193 |
+
"Specials": range(65520, 65536),
|
| 194 |
+
"Linear B Syllabary": range(65536, 65664),
|
| 195 |
+
"Linear B Ideograms": range(65664, 65792),
|
| 196 |
+
"Aegean Numbers": range(65792, 65856),
|
| 197 |
+
"Ancient Greek Numbers": range(65856, 65936),
|
| 198 |
+
"Ancient Symbols": range(65936, 66000),
|
| 199 |
+
"Phaistos Disc": range(66000, 66048),
|
| 200 |
+
"Lycian": range(66176, 66208),
|
| 201 |
+
"Carian": range(66208, 66272),
|
| 202 |
+
"Coptic Epact Numbers": range(66272, 66304),
|
| 203 |
+
"Old Italic": range(66304, 66352),
|
| 204 |
+
"Gothic": range(66352, 66384),
|
| 205 |
+
"Old Permic": range(66384, 66432),
|
| 206 |
+
"Ugaritic": range(66432, 66464),
|
| 207 |
+
"Old Persian": range(66464, 66528),
|
| 208 |
+
"Deseret": range(66560, 66640),
|
| 209 |
+
"Shavian": range(66640, 66688),
|
| 210 |
+
"Osmanya": range(66688, 66736),
|
| 211 |
+
"Osage": range(66736, 66816),
|
| 212 |
+
"Elbasan": range(66816, 66864),
|
| 213 |
+
"Caucasian Albanian": range(66864, 66928),
|
| 214 |
+
"Vithkuqi": range(66928, 67008),
|
| 215 |
+
"Linear A": range(67072, 67456),
|
| 216 |
+
"Latin Extended-F": range(67456, 67520),
|
| 217 |
+
"Cypriot Syllabary": range(67584, 67648),
|
| 218 |
+
"Imperial Aramaic": range(67648, 67680),
|
| 219 |
+
"Palmyrene": range(67680, 67712),
|
| 220 |
+
"Nabataean": range(67712, 67760),
|
| 221 |
+
"Hatran": range(67808, 67840),
|
| 222 |
+
"Phoenician": range(67840, 67872),
|
| 223 |
+
"Lydian": range(67872, 67904),
|
| 224 |
+
"Meroitic Hieroglyphs": range(67968, 68000),
|
| 225 |
+
"Meroitic Cursive": range(68000, 68096),
|
| 226 |
+
"Kharoshthi": range(68096, 68192),
|
| 227 |
+
"Old South Arabian": range(68192, 68224),
|
| 228 |
+
"Old North Arabian": range(68224, 68256),
|
| 229 |
+
"Manichaean": range(68288, 68352),
|
| 230 |
+
"Avestan": range(68352, 68416),
|
| 231 |
+
"Inscriptional Parthian": range(68416, 68448),
|
| 232 |
+
"Inscriptional Pahlavi": range(68448, 68480),
|
| 233 |
+
"Psalter Pahlavi": range(68480, 68528),
|
| 234 |
+
"Old Turkic": range(68608, 68688),
|
| 235 |
+
"Old Hungarian": range(68736, 68864),
|
| 236 |
+
"Hanifi Rohingya": range(68864, 68928),
|
| 237 |
+
"Rumi Numeral Symbols": range(69216, 69248),
|
| 238 |
+
"Yezidi": range(69248, 69312),
|
| 239 |
+
"Arabic Extended-C": range(69312, 69376),
|
| 240 |
+
"Old Sogdian": range(69376, 69424),
|
| 241 |
+
"Sogdian": range(69424, 69488),
|
| 242 |
+
"Old Uyghur": range(69488, 69552),
|
| 243 |
+
"Chorasmian": range(69552, 69600),
|
| 244 |
+
"Elymaic": range(69600, 69632),
|
| 245 |
+
"Brahmi": range(69632, 69760),
|
| 246 |
+
"Kaithi": range(69760, 69840),
|
| 247 |
+
"Sora Sompeng": range(69840, 69888),
|
| 248 |
+
"Chakma": range(69888, 69968),
|
| 249 |
+
"Mahajani": range(69968, 70016),
|
| 250 |
+
"Sharada": range(70016, 70112),
|
| 251 |
+
"Sinhala Archaic Numbers": range(70112, 70144),
|
| 252 |
+
"Khojki": range(70144, 70224),
|
| 253 |
+
"Multani": range(70272, 70320),
|
| 254 |
+
"Khudawadi": range(70320, 70400),
|
| 255 |
+
"Grantha": range(70400, 70528),
|
| 256 |
+
"Newa": range(70656, 70784),
|
| 257 |
+
"Tirhuta": range(70784, 70880),
|
| 258 |
+
"Siddham": range(71040, 71168),
|
| 259 |
+
"Modi": range(71168, 71264),
|
| 260 |
+
"Mongolian Supplement": range(71264, 71296),
|
| 261 |
+
"Takri": range(71296, 71376),
|
| 262 |
+
"Ahom": range(71424, 71504),
|
| 263 |
+
"Dogra": range(71680, 71760),
|
| 264 |
+
"Warang Citi": range(71840, 71936),
|
| 265 |
+
"Dives Akuru": range(71936, 72032),
|
| 266 |
+
"Nandinagari": range(72096, 72192),
|
| 267 |
+
"Zanabazar Square": range(72192, 72272),
|
| 268 |
+
"Soyombo": range(72272, 72368),
|
| 269 |
+
"Unified Canadian Aboriginal Syllabics Extended-A": range(72368, 72384),
|
| 270 |
+
"Pau Cin Hau": range(72384, 72448),
|
| 271 |
+
"Devanagari Extended-A": range(72448, 72544),
|
| 272 |
+
"Bhaiksuki": range(72704, 72816),
|
| 273 |
+
"Marchen": range(72816, 72896),
|
| 274 |
+
"Masaram Gondi": range(72960, 73056),
|
| 275 |
+
"Gunjala Gondi": range(73056, 73136),
|
| 276 |
+
"Makasar": range(73440, 73472),
|
| 277 |
+
"Kawi": range(73472, 73568),
|
| 278 |
+
"Lisu Supplement": range(73648, 73664),
|
| 279 |
+
"Tamil Supplement": range(73664, 73728),
|
| 280 |
+
"Cuneiform": range(73728, 74752),
|
| 281 |
+
"Cuneiform Numbers and Punctuation": range(74752, 74880),
|
| 282 |
+
"Early Dynastic Cuneiform": range(74880, 75088),
|
| 283 |
+
"Cypro-Minoan": range(77712, 77824),
|
| 284 |
+
"Egyptian Hieroglyphs": range(77824, 78896),
|
| 285 |
+
"Egyptian Hieroglyph Format Controls": range(78896, 78944),
|
| 286 |
+
"Anatolian Hieroglyphs": range(82944, 83584),
|
| 287 |
+
"Bamum Supplement": range(92160, 92736),
|
| 288 |
+
"Mro": range(92736, 92784),
|
| 289 |
+
"Tangsa": range(92784, 92880),
|
| 290 |
+
"Bassa Vah": range(92880, 92928),
|
| 291 |
+
"Pahawh Hmong": range(92928, 93072),
|
| 292 |
+
"Medefaidrin": range(93760, 93856),
|
| 293 |
+
"Miao": range(93952, 94112),
|
| 294 |
+
"Ideographic Symbols and Punctuation": range(94176, 94208),
|
| 295 |
+
"Tangut": range(94208, 100352),
|
| 296 |
+
"Tangut Components": range(100352, 101120),
|
| 297 |
+
"Khitan Small Script": range(101120, 101632),
|
| 298 |
+
"Tangut Supplement": range(101632, 101760),
|
| 299 |
+
"Kana Extended-B": range(110576, 110592),
|
| 300 |
+
"Kana Supplement": range(110592, 110848),
|
| 301 |
+
"Kana Extended-A": range(110848, 110896),
|
| 302 |
+
"Small Kana Extension": range(110896, 110960),
|
| 303 |
+
"Nushu": range(110960, 111360),
|
| 304 |
+
"Duployan": range(113664, 113824),
|
| 305 |
+
"Shorthand Format Controls": range(113824, 113840),
|
| 306 |
+
"Znamenny Musical Notation": range(118528, 118736),
|
| 307 |
+
"Byzantine Musical Symbols": range(118784, 119040),
|
| 308 |
+
"Musical Symbols": range(119040, 119296),
|
| 309 |
+
"Ancient Greek Musical Notation": range(119296, 119376),
|
| 310 |
+
"Kaktovik Numerals": range(119488, 119520),
|
| 311 |
+
"Mayan Numerals": range(119520, 119552),
|
| 312 |
+
"Tai Xuan Jing Symbols": range(119552, 119648),
|
| 313 |
+
"Counting Rod Numerals": range(119648, 119680),
|
| 314 |
+
"Mathematical Alphanumeric Symbols": range(119808, 120832),
|
| 315 |
+
"Sutton SignWriting": range(120832, 121520),
|
| 316 |
+
"Latin Extended-G": range(122624, 122880),
|
| 317 |
+
"Glagolitic Supplement": range(122880, 122928),
|
| 318 |
+
"Cyrillic Extended-D": range(122928, 123024),
|
| 319 |
+
"Nyiakeng Puachue Hmong": range(123136, 123216),
|
| 320 |
+
"Toto": range(123536, 123584),
|
| 321 |
+
"Wancho": range(123584, 123648),
|
| 322 |
+
"Nag Mundari": range(124112, 124160),
|
| 323 |
+
"Ethiopic Extended-B": range(124896, 124928),
|
| 324 |
+
"Mende Kikakui": range(124928, 125152),
|
| 325 |
+
"Adlam": range(125184, 125280),
|
| 326 |
+
"Indic Siyaq Numbers": range(126064, 126144),
|
| 327 |
+
"Ottoman Siyaq Numbers": range(126208, 126288),
|
| 328 |
+
"Arabic Mathematical Alphabetic Symbols": range(126464, 126720),
|
| 329 |
+
"Mahjong Tiles": range(126976, 127024),
|
| 330 |
+
"Domino Tiles": range(127024, 127136),
|
| 331 |
+
"Playing Cards": range(127136, 127232),
|
| 332 |
+
"Enclosed Alphanumeric Supplement": range(127232, 127488),
|
| 333 |
+
"Enclosed Ideographic Supplement": range(127488, 127744),
|
| 334 |
+
"Miscellaneous Symbols and Pictographs": range(127744, 128512),
|
| 335 |
+
"Emoticons range(Emoji)": range(128512, 128592),
|
| 336 |
+
"Ornamental Dingbats": range(128592, 128640),
|
| 337 |
+
"Transport and Map Symbols": range(128640, 128768),
|
| 338 |
+
"Alchemical Symbols": range(128768, 128896),
|
| 339 |
+
"Geometric Shapes Extended": range(128896, 129024),
|
| 340 |
+
"Supplemental Arrows-C": range(129024, 129280),
|
| 341 |
+
"Supplemental Symbols and Pictographs": range(129280, 129536),
|
| 342 |
+
"Chess Symbols": range(129536, 129648),
|
| 343 |
+
"Symbols and Pictographs Extended-A": range(129648, 129792),
|
| 344 |
+
"Symbols for Legacy Computing": range(129792, 130048),
|
| 345 |
+
"CJK Unified Ideographs Extension B": range(131072, 173792),
|
| 346 |
+
"CJK Unified Ideographs Extension C": range(173824, 177984),
|
| 347 |
+
"CJK Unified Ideographs Extension D": range(177984, 178208),
|
| 348 |
+
"CJK Unified Ideographs Extension E": range(178208, 183984),
|
| 349 |
+
"CJK Unified Ideographs Extension F": range(183984, 191472),
|
| 350 |
+
"CJK Compatibility Ideographs Supplement": range(194560, 195104),
|
| 351 |
+
"CJK Unified Ideographs Extension G": range(196608, 201552),
|
| 352 |
+
"CJK Unified Ideographs Extension H": range(201552, 205744),
|
| 353 |
+
"Tags": range(917504, 917632),
|
| 354 |
+
"Variation Selectors Supplement": range(917760, 918000),
|
| 355 |
+
"Supplementary Private Use Area-A": range(983040, 1048576),
|
| 356 |
+
"Supplementary Private Use Area-B": range(1048576, 1114112),
|
| 357 |
+
}
|
| 358 |
+
|
| 359 |
+
|
| 360 |
+
UNICODE_SECONDARY_RANGE_KEYWORD: List[str] = [
|
| 361 |
+
"Supplement",
|
| 362 |
+
"Extended",
|
| 363 |
+
"Extensions",
|
| 364 |
+
"Modifier",
|
| 365 |
+
"Marks",
|
| 366 |
+
"Punctuation",
|
| 367 |
+
"Symbols",
|
| 368 |
+
"Forms",
|
| 369 |
+
"Operators",
|
| 370 |
+
"Miscellaneous",
|
| 371 |
+
"Drawing",
|
| 372 |
+
"Block",
|
| 373 |
+
"Shapes",
|
| 374 |
+
"Supplemental",
|
| 375 |
+
"Tags",
|
| 376 |
+
]
|
| 377 |
+
|
| 378 |
+
RE_POSSIBLE_ENCODING_INDICATION = re_compile(
|
| 379 |
+
r"(?:(?:encoding)|(?:charset)|(?:coding))(?:[\:= ]{1,10})(?:[\"\']?)([a-zA-Z0-9\-_]+)(?:[\"\']?)",
|
| 380 |
+
IGNORECASE,
|
| 381 |
+
)
|
| 382 |
+
|
| 383 |
+
IANA_NO_ALIASES = [
|
| 384 |
+
"cp720",
|
| 385 |
+
"cp737",
|
| 386 |
+
"cp856",
|
| 387 |
+
"cp874",
|
| 388 |
+
"cp875",
|
| 389 |
+
"cp1006",
|
| 390 |
+
"koi8_r",
|
| 391 |
+
"koi8_t",
|
| 392 |
+
"koi8_u",
|
| 393 |
+
]
|
| 394 |
+
|
| 395 |
+
IANA_SUPPORTED: List[str] = sorted(
|
| 396 |
+
filter(
|
| 397 |
+
lambda x: x.endswith("_codec") is False
|
| 398 |
+
and x not in {"rot_13", "tactis", "mbcs"},
|
| 399 |
+
list(set(aliases.values())) + IANA_NO_ALIASES,
|
| 400 |
+
)
|
| 401 |
+
)
|
| 402 |
+
|
| 403 |
+
IANA_SUPPORTED_COUNT: int = len(IANA_SUPPORTED)
|
| 404 |
+
|
| 405 |
+
# pre-computed code page that are similar using the function cp_similarity.
|
| 406 |
+
IANA_SUPPORTED_SIMILAR: Dict[str, List[str]] = {
|
| 407 |
+
"cp037": ["cp1026", "cp1140", "cp273", "cp500"],
|
| 408 |
+
"cp1026": ["cp037", "cp1140", "cp273", "cp500"],
|
| 409 |
+
"cp1125": ["cp866"],
|
| 410 |
+
"cp1140": ["cp037", "cp1026", "cp273", "cp500"],
|
| 411 |
+
"cp1250": ["iso8859_2"],
|
| 412 |
+
"cp1251": ["kz1048", "ptcp154"],
|
| 413 |
+
"cp1252": ["iso8859_15", "iso8859_9", "latin_1"],
|
| 414 |
+
"cp1253": ["iso8859_7"],
|
| 415 |
+
"cp1254": ["iso8859_15", "iso8859_9", "latin_1"],
|
| 416 |
+
"cp1257": ["iso8859_13"],
|
| 417 |
+
"cp273": ["cp037", "cp1026", "cp1140", "cp500"],
|
| 418 |
+
"cp437": ["cp850", "cp858", "cp860", "cp861", "cp862", "cp863", "cp865"],
|
| 419 |
+
"cp500": ["cp037", "cp1026", "cp1140", "cp273"],
|
| 420 |
+
"cp850": ["cp437", "cp857", "cp858", "cp865"],
|
| 421 |
+
"cp857": ["cp850", "cp858", "cp865"],
|
| 422 |
+
"cp858": ["cp437", "cp850", "cp857", "cp865"],
|
| 423 |
+
"cp860": ["cp437", "cp861", "cp862", "cp863", "cp865"],
|
| 424 |
+
"cp861": ["cp437", "cp860", "cp862", "cp863", "cp865"],
|
| 425 |
+
"cp862": ["cp437", "cp860", "cp861", "cp863", "cp865"],
|
| 426 |
+
"cp863": ["cp437", "cp860", "cp861", "cp862", "cp865"],
|
| 427 |
+
"cp865": ["cp437", "cp850", "cp857", "cp858", "cp860", "cp861", "cp862", "cp863"],
|
| 428 |
+
"cp866": ["cp1125"],
|
| 429 |
+
"iso8859_10": ["iso8859_14", "iso8859_15", "iso8859_4", "iso8859_9", "latin_1"],
|
| 430 |
+
"iso8859_11": ["tis_620"],
|
| 431 |
+
"iso8859_13": ["cp1257"],
|
| 432 |
+
"iso8859_14": [
|
| 433 |
+
"iso8859_10",
|
| 434 |
+
"iso8859_15",
|
| 435 |
+
"iso8859_16",
|
| 436 |
+
"iso8859_3",
|
| 437 |
+
"iso8859_9",
|
| 438 |
+
"latin_1",
|
| 439 |
+
],
|
| 440 |
+
"iso8859_15": [
|
| 441 |
+
"cp1252",
|
| 442 |
+
"cp1254",
|
| 443 |
+
"iso8859_10",
|
| 444 |
+
"iso8859_14",
|
| 445 |
+
"iso8859_16",
|
| 446 |
+
"iso8859_3",
|
| 447 |
+
"iso8859_9",
|
| 448 |
+
"latin_1",
|
| 449 |
+
],
|
| 450 |
+
"iso8859_16": [
|
| 451 |
+
"iso8859_14",
|
| 452 |
+
"iso8859_15",
|
| 453 |
+
"iso8859_2",
|
| 454 |
+
"iso8859_3",
|
| 455 |
+
"iso8859_9",
|
| 456 |
+
"latin_1",
|
| 457 |
+
],
|
| 458 |
+
"iso8859_2": ["cp1250", "iso8859_16", "iso8859_4"],
|
| 459 |
+
"iso8859_3": ["iso8859_14", "iso8859_15", "iso8859_16", "iso8859_9", "latin_1"],
|
| 460 |
+
"iso8859_4": ["iso8859_10", "iso8859_2", "iso8859_9", "latin_1"],
|
| 461 |
+
"iso8859_7": ["cp1253"],
|
| 462 |
+
"iso8859_9": [
|
| 463 |
+
"cp1252",
|
| 464 |
+
"cp1254",
|
| 465 |
+
"cp1258",
|
| 466 |
+
"iso8859_10",
|
| 467 |
+
"iso8859_14",
|
| 468 |
+
"iso8859_15",
|
| 469 |
+
"iso8859_16",
|
| 470 |
+
"iso8859_3",
|
| 471 |
+
"iso8859_4",
|
| 472 |
+
"latin_1",
|
| 473 |
+
],
|
| 474 |
+
"kz1048": ["cp1251", "ptcp154"],
|
| 475 |
+
"latin_1": [
|
| 476 |
+
"cp1252",
|
| 477 |
+
"cp1254",
|
| 478 |
+
"cp1258",
|
| 479 |
+
"iso8859_10",
|
| 480 |
+
"iso8859_14",
|
| 481 |
+
"iso8859_15",
|
| 482 |
+
"iso8859_16",
|
| 483 |
+
"iso8859_3",
|
| 484 |
+
"iso8859_4",
|
| 485 |
+
"iso8859_9",
|
| 486 |
+
],
|
| 487 |
+
"mac_iceland": ["mac_roman", "mac_turkish"],
|
| 488 |
+
"mac_roman": ["mac_iceland", "mac_turkish"],
|
| 489 |
+
"mac_turkish": ["mac_iceland", "mac_roman"],
|
| 490 |
+
"ptcp154": ["cp1251", "kz1048"],
|
| 491 |
+
"tis_620": ["iso8859_11"],
|
| 492 |
+
}
|
| 493 |
+
|
| 494 |
+
|
| 495 |
+
CHARDET_CORRESPONDENCE: Dict[str, str] = {
|
| 496 |
+
"iso2022_kr": "ISO-2022-KR",
|
| 497 |
+
"iso2022_jp": "ISO-2022-JP",
|
| 498 |
+
"euc_kr": "EUC-KR",
|
| 499 |
+
"tis_620": "TIS-620",
|
| 500 |
+
"utf_32": "UTF-32",
|
| 501 |
+
"euc_jp": "EUC-JP",
|
| 502 |
+
"koi8_r": "KOI8-R",
|
| 503 |
+
"iso8859_1": "ISO-8859-1",
|
| 504 |
+
"iso8859_2": "ISO-8859-2",
|
| 505 |
+
"iso8859_5": "ISO-8859-5",
|
| 506 |
+
"iso8859_6": "ISO-8859-6",
|
| 507 |
+
"iso8859_7": "ISO-8859-7",
|
| 508 |
+
"iso8859_8": "ISO-8859-8",
|
| 509 |
+
"utf_16": "UTF-16",
|
| 510 |
+
"cp855": "IBM855",
|
| 511 |
+
"mac_cyrillic": "MacCyrillic",
|
| 512 |
+
"gb2312": "GB2312",
|
| 513 |
+
"gb18030": "GB18030",
|
| 514 |
+
"cp932": "CP932",
|
| 515 |
+
"cp866": "IBM866",
|
| 516 |
+
"utf_8": "utf-8",
|
| 517 |
+
"utf_8_sig": "UTF-8-SIG",
|
| 518 |
+
"shift_jis": "SHIFT_JIS",
|
| 519 |
+
"big5": "Big5",
|
| 520 |
+
"cp1250": "windows-1250",
|
| 521 |
+
"cp1251": "windows-1251",
|
| 522 |
+
"cp1252": "Windows-1252",
|
| 523 |
+
"cp1253": "windows-1253",
|
| 524 |
+
"cp1255": "windows-1255",
|
| 525 |
+
"cp1256": "windows-1256",
|
| 526 |
+
"cp1254": "Windows-1254",
|
| 527 |
+
"cp949": "CP949",
|
| 528 |
+
}
|
| 529 |
+
|
| 530 |
+
|
| 531 |
+
COMMON_SAFE_ASCII_CHARACTERS: Set[str] = {
|
| 532 |
+
"<",
|
| 533 |
+
">",
|
| 534 |
+
"=",
|
| 535 |
+
":",
|
| 536 |
+
"/",
|
| 537 |
+
"&",
|
| 538 |
+
";",
|
| 539 |
+
"{",
|
| 540 |
+
"}",
|
| 541 |
+
"[",
|
| 542 |
+
"]",
|
| 543 |
+
",",
|
| 544 |
+
"|",
|
| 545 |
+
'"',
|
| 546 |
+
"-",
|
| 547 |
+
}
|
| 548 |
+
|
| 549 |
+
|
| 550 |
+
KO_NAMES: Set[str] = {"johab", "cp949", "euc_kr"}
|
| 551 |
+
ZH_NAMES: Set[str] = {"big5", "cp950", "big5hkscs", "hz"}
|
| 552 |
+
|
| 553 |
+
# Logging LEVEL below DEBUG
|
| 554 |
+
TRACE: int = 5
|
| 555 |
+
|
| 556 |
+
|
| 557 |
+
# Language label that contain the em dash "—"
|
| 558 |
+
# character are to be considered alternative seq to origin
|
| 559 |
+
FREQUENCIES: Dict[str, List[str]] = {
|
| 560 |
+
"English": [
|
| 561 |
+
"e",
|
| 562 |
+
"a",
|
| 563 |
+
"t",
|
| 564 |
+
"i",
|
| 565 |
+
"o",
|
| 566 |
+
"n",
|
| 567 |
+
"s",
|
| 568 |
+
"r",
|
| 569 |
+
"h",
|
| 570 |
+
"l",
|
| 571 |
+
"d",
|
| 572 |
+
"c",
|
| 573 |
+
"u",
|
| 574 |
+
"m",
|
| 575 |
+
"f",
|
| 576 |
+
"p",
|
| 577 |
+
"g",
|
| 578 |
+
"w",
|
| 579 |
+
"y",
|
| 580 |
+
"b",
|
| 581 |
+
"v",
|
| 582 |
+
"k",
|
| 583 |
+
"x",
|
| 584 |
+
"j",
|
| 585 |
+
"z",
|
| 586 |
+
"q",
|
| 587 |
+
],
|
| 588 |
+
"English—": [
|
| 589 |
+
"e",
|
| 590 |
+
"a",
|
| 591 |
+
"t",
|
| 592 |
+
"i",
|
| 593 |
+
"o",
|
| 594 |
+
"n",
|
| 595 |
+
"s",
|
| 596 |
+
"r",
|
| 597 |
+
"h",
|
| 598 |
+
"l",
|
| 599 |
+
"d",
|
| 600 |
+
"c",
|
| 601 |
+
"m",
|
| 602 |
+
"u",
|
| 603 |
+
"f",
|
| 604 |
+
"p",
|
| 605 |
+
"g",
|
| 606 |
+
"w",
|
| 607 |
+
"b",
|
| 608 |
+
"y",
|
| 609 |
+
"v",
|
| 610 |
+
"k",
|
| 611 |
+
"j",
|
| 612 |
+
"x",
|
| 613 |
+
"z",
|
| 614 |
+
"q",
|
| 615 |
+
],
|
| 616 |
+
"German": [
|
| 617 |
+
"e",
|
| 618 |
+
"n",
|
| 619 |
+
"i",
|
| 620 |
+
"r",
|
| 621 |
+
"s",
|
| 622 |
+
"t",
|
| 623 |
+
"a",
|
| 624 |
+
"d",
|
| 625 |
+
"h",
|
| 626 |
+
"u",
|
| 627 |
+
"l",
|
| 628 |
+
"g",
|
| 629 |
+
"o",
|
| 630 |
+
"c",
|
| 631 |
+
"m",
|
| 632 |
+
"b",
|
| 633 |
+
"f",
|
| 634 |
+
"k",
|
| 635 |
+
"w",
|
| 636 |
+
"z",
|
| 637 |
+
"p",
|
| 638 |
+
"v",
|
| 639 |
+
"ü",
|
| 640 |
+
"ä",
|
| 641 |
+
"ö",
|
| 642 |
+
"j",
|
| 643 |
+
],
|
| 644 |
+
"French": [
|
| 645 |
+
"e",
|
| 646 |
+
"a",
|
| 647 |
+
"s",
|
| 648 |
+
"n",
|
| 649 |
+
"i",
|
| 650 |
+
"t",
|
| 651 |
+
"r",
|
| 652 |
+
"l",
|
| 653 |
+
"u",
|
| 654 |
+
"o",
|
| 655 |
+
"d",
|
| 656 |
+
"c",
|
| 657 |
+
"p",
|
| 658 |
+
"m",
|
| 659 |
+
"é",
|
| 660 |
+
"v",
|
| 661 |
+
"g",
|
| 662 |
+
"f",
|
| 663 |
+
"b",
|
| 664 |
+
"h",
|
| 665 |
+
"q",
|
| 666 |
+
"à",
|
| 667 |
+
"x",
|
| 668 |
+
"è",
|
| 669 |
+
"y",
|
| 670 |
+
"j",
|
| 671 |
+
],
|
| 672 |
+
"Dutch": [
|
| 673 |
+
"e",
|
| 674 |
+
"n",
|
| 675 |
+
"a",
|
| 676 |
+
"i",
|
| 677 |
+
"r",
|
| 678 |
+
"t",
|
| 679 |
+
"o",
|
| 680 |
+
"d",
|
| 681 |
+
"s",
|
| 682 |
+
"l",
|
| 683 |
+
"g",
|
| 684 |
+
"h",
|
| 685 |
+
"v",
|
| 686 |
+
"m",
|
| 687 |
+
"u",
|
| 688 |
+
"k",
|
| 689 |
+
"c",
|
| 690 |
+
"p",
|
| 691 |
+
"b",
|
| 692 |
+
"w",
|
| 693 |
+
"j",
|
| 694 |
+
"z",
|
| 695 |
+
"f",
|
| 696 |
+
"y",
|
| 697 |
+
"x",
|
| 698 |
+
"ë",
|
| 699 |
+
],
|
| 700 |
+
"Italian": [
|
| 701 |
+
"e",
|
| 702 |
+
"i",
|
| 703 |
+
"a",
|
| 704 |
+
"o",
|
| 705 |
+
"n",
|
| 706 |
+
"l",
|
| 707 |
+
"t",
|
| 708 |
+
"r",
|
| 709 |
+
"s",
|
| 710 |
+
"c",
|
| 711 |
+
"d",
|
| 712 |
+
"u",
|
| 713 |
+
"p",
|
| 714 |
+
"m",
|
| 715 |
+
"g",
|
| 716 |
+
"v",
|
| 717 |
+
"f",
|
| 718 |
+
"b",
|
| 719 |
+
"z",
|
| 720 |
+
"h",
|
| 721 |
+
"q",
|
| 722 |
+
"è",
|
| 723 |
+
"à",
|
| 724 |
+
"k",
|
| 725 |
+
"y",
|
| 726 |
+
"ò",
|
| 727 |
+
],
|
| 728 |
+
"Polish": [
|
| 729 |
+
"a",
|
| 730 |
+
"i",
|
| 731 |
+
"o",
|
| 732 |
+
"e",
|
| 733 |
+
"n",
|
| 734 |
+
"r",
|
| 735 |
+
"z",
|
| 736 |
+
"w",
|
| 737 |
+
"s",
|
| 738 |
+
"c",
|
| 739 |
+
"t",
|
| 740 |
+
"k",
|
| 741 |
+
"y",
|
| 742 |
+
"d",
|
| 743 |
+
"p",
|
| 744 |
+
"m",
|
| 745 |
+
"u",
|
| 746 |
+
"l",
|
| 747 |
+
"j",
|
| 748 |
+
"ł",
|
| 749 |
+
"g",
|
| 750 |
+
"b",
|
| 751 |
+
"h",
|
| 752 |
+
"ą",
|
| 753 |
+
"ę",
|
| 754 |
+
"ó",
|
| 755 |
+
],
|
| 756 |
+
"Spanish": [
|
| 757 |
+
"e",
|
| 758 |
+
"a",
|
| 759 |
+
"o",
|
| 760 |
+
"n",
|
| 761 |
+
"s",
|
| 762 |
+
"r",
|
| 763 |
+
"i",
|
| 764 |
+
"l",
|
| 765 |
+
"d",
|
| 766 |
+
"t",
|
| 767 |
+
"c",
|
| 768 |
+
"u",
|
| 769 |
+
"m",
|
| 770 |
+
"p",
|
| 771 |
+
"b",
|
| 772 |
+
"g",
|
| 773 |
+
"v",
|
| 774 |
+
"f",
|
| 775 |
+
"y",
|
| 776 |
+
"ó",
|
| 777 |
+
"h",
|
| 778 |
+
"q",
|
| 779 |
+
"í",
|
| 780 |
+
"j",
|
| 781 |
+
"z",
|
| 782 |
+
"á",
|
| 783 |
+
],
|
| 784 |
+
"Russian": [
|
| 785 |
+
"о",
|
| 786 |
+
"а",
|
| 787 |
+
"е",
|
| 788 |
+
"и",
|
| 789 |
+
"н",
|
| 790 |
+
"с",
|
| 791 |
+
"т",
|
| 792 |
+
"р",
|
| 793 |
+
"в",
|
| 794 |
+
"л",
|
| 795 |
+
"к",
|
| 796 |
+
"м",
|
| 797 |
+
"д",
|
| 798 |
+
"п",
|
| 799 |
+
"у",
|
| 800 |
+
"г",
|
| 801 |
+
"я",
|
| 802 |
+
"ы",
|
| 803 |
+
"з",
|
| 804 |
+
"б",
|
| 805 |
+
"й",
|
| 806 |
+
"ь",
|
| 807 |
+
"ч",
|
| 808 |
+
"х",
|
| 809 |
+
"ж",
|
| 810 |
+
"ц",
|
| 811 |
+
],
|
| 812 |
+
# Jap-Kanji
|
| 813 |
+
"Japanese": [
|
| 814 |
+
"人",
|
| 815 |
+
"一",
|
| 816 |
+
"大",
|
| 817 |
+
"亅",
|
| 818 |
+
"丁",
|
| 819 |
+
"丨",
|
| 820 |
+
"竹",
|
| 821 |
+
"笑",
|
| 822 |
+
"口",
|
| 823 |
+
"日",
|
| 824 |
+
"今",
|
| 825 |
+
"二",
|
| 826 |
+
"彳",
|
| 827 |
+
"行",
|
| 828 |
+
"十",
|
| 829 |
+
"土",
|
| 830 |
+
"丶",
|
| 831 |
+
"寸",
|
| 832 |
+
"寺",
|
| 833 |
+
"時",
|
| 834 |
+
"乙",
|
| 835 |
+
"丿",
|
| 836 |
+
"乂",
|
| 837 |
+
"气",
|
| 838 |
+
"気",
|
| 839 |
+
"冂",
|
| 840 |
+
"巾",
|
| 841 |
+
"亠",
|
| 842 |
+
"市",
|
| 843 |
+
"目",
|
| 844 |
+
"儿",
|
| 845 |
+
"見",
|
| 846 |
+
"八",
|
| 847 |
+
"小",
|
| 848 |
+
"凵",
|
| 849 |
+
"県",
|
| 850 |
+
"月",
|
| 851 |
+
"彐",
|
| 852 |
+
"門",
|
| 853 |
+
"間",
|
| 854 |
+
"木",
|
| 855 |
+
"東",
|
| 856 |
+
"山",
|
| 857 |
+
"出",
|
| 858 |
+
"本",
|
| 859 |
+
"中",
|
| 860 |
+
"刀",
|
| 861 |
+
"分",
|
| 862 |
+
"耳",
|
| 863 |
+
"又",
|
| 864 |
+
"取",
|
| 865 |
+
"最",
|
| 866 |
+
"言",
|
| 867 |
+
"田",
|
| 868 |
+
"心",
|
| 869 |
+
"思",
|
| 870 |
+
"刂",
|
| 871 |
+
"前",
|
| 872 |
+
"京",
|
| 873 |
+
"尹",
|
| 874 |
+
"事",
|
| 875 |
+
"生",
|
| 876 |
+
"厶",
|
| 877 |
+
"云",
|
| 878 |
+
"会",
|
| 879 |
+
"未",
|
| 880 |
+
"来",
|
| 881 |
+
"白",
|
| 882 |
+
"冫",
|
| 883 |
+
"楽",
|
| 884 |
+
"灬",
|
| 885 |
+
"馬",
|
| 886 |
+
"尸",
|
| 887 |
+
"尺",
|
| 888 |
+
"駅",
|
| 889 |
+
"明",
|
| 890 |
+
"耂",
|
| 891 |
+
"者",
|
| 892 |
+
"了",
|
| 893 |
+
"阝",
|
| 894 |
+
"都",
|
| 895 |
+
"高",
|
| 896 |
+
"卜",
|
| 897 |
+
"占",
|
| 898 |
+
"厂",
|
| 899 |
+
"广",
|
| 900 |
+
"店",
|
| 901 |
+
"子",
|
| 902 |
+
"申",
|
| 903 |
+
"奄",
|
| 904 |
+
"亻",
|
| 905 |
+
"俺",
|
| 906 |
+
"上",
|
| 907 |
+
"方",
|
| 908 |
+
"冖",
|
| 909 |
+
"学",
|
| 910 |
+
"衣",
|
| 911 |
+
"艮",
|
| 912 |
+
"食",
|
| 913 |
+
"自",
|
| 914 |
+
],
|
| 915 |
+
# Jap-Katakana
|
| 916 |
+
"Japanese—": [
|
| 917 |
+
"ー",
|
| 918 |
+
"ン",
|
| 919 |
+
"ス",
|
| 920 |
+
"・",
|
| 921 |
+
"ル",
|
| 922 |
+
"ト",
|
| 923 |
+
"リ",
|
| 924 |
+
"イ",
|
| 925 |
+
"ア",
|
| 926 |
+
"ラ",
|
| 927 |
+
"ッ",
|
| 928 |
+
"ク",
|
| 929 |
+
"ド",
|
| 930 |
+
"シ",
|
| 931 |
+
"レ",
|
| 932 |
+
"ジ",
|
| 933 |
+
"タ",
|
| 934 |
+
"フ",
|
| 935 |
+
"ロ",
|
| 936 |
+
"カ",
|
| 937 |
+
"テ",
|
| 938 |
+
"マ",
|
| 939 |
+
"ィ",
|
| 940 |
+
"グ",
|
| 941 |
+
"バ",
|
| 942 |
+
"ム",
|
| 943 |
+
"プ",
|
| 944 |
+
"オ",
|
| 945 |
+
"コ",
|
| 946 |
+
"デ",
|
| 947 |
+
"ニ",
|
| 948 |
+
"ウ",
|
| 949 |
+
"メ",
|
| 950 |
+
"サ",
|
| 951 |
+
"ビ",
|
| 952 |
+
"ナ",
|
| 953 |
+
"ブ",
|
| 954 |
+
"ャ",
|
| 955 |
+
"エ",
|
| 956 |
+
"ュ",
|
| 957 |
+
"チ",
|
| 958 |
+
"キ",
|
| 959 |
+
"ズ",
|
| 960 |
+
"ダ",
|
| 961 |
+
"パ",
|
| 962 |
+
"ミ",
|
| 963 |
+
"ェ",
|
| 964 |
+
"ョ",
|
| 965 |
+
"ハ",
|
| 966 |
+
"セ",
|
| 967 |
+
"ベ",
|
| 968 |
+
"ガ",
|
| 969 |
+
"モ",
|
| 970 |
+
"ツ",
|
| 971 |
+
"ネ",
|
| 972 |
+
"ボ",
|
| 973 |
+
"ソ",
|
| 974 |
+
"ノ",
|
| 975 |
+
"ァ",
|
| 976 |
+
"ヴ",
|
| 977 |
+
"ワ",
|
| 978 |
+
"ポ",
|
| 979 |
+
"ペ",
|
| 980 |
+
"ピ",
|
| 981 |
+
"ケ",
|
| 982 |
+
"ゴ",
|
| 983 |
+
"ギ",
|
| 984 |
+
"ザ",
|
| 985 |
+
"ホ",
|
| 986 |
+
"ゲ",
|
| 987 |
+
"ォ",
|
| 988 |
+
"ヤ",
|
| 989 |
+
"ヒ",
|
| 990 |
+
"ユ",
|
| 991 |
+
"ヨ",
|
| 992 |
+
"ヘ",
|
| 993 |
+
"ゼ",
|
| 994 |
+
"ヌ",
|
| 995 |
+
"ゥ",
|
| 996 |
+
"ゾ",
|
| 997 |
+
"ヶ",
|
| 998 |
+
"ヂ",
|
| 999 |
+
"ヲ",
|
| 1000 |
+
"ヅ",
|
| 1001 |
+
"ヵ",
|
| 1002 |
+
"ヱ",
|
| 1003 |
+
"ヰ",
|
| 1004 |
+
"ヮ",
|
| 1005 |
+
"ヽ",
|
| 1006 |
+
"゠",
|
| 1007 |
+
"ヾ",
|
| 1008 |
+
"ヷ",
|
| 1009 |
+
"ヿ",
|
| 1010 |
+
"ヸ",
|
| 1011 |
+
"ヹ",
|
| 1012 |
+
"ヺ",
|
| 1013 |
+
],
|
| 1014 |
+
# Jap-Hiragana
|
| 1015 |
+
"Japanese——": [
|
| 1016 |
+
"の",
|
| 1017 |
+
"に",
|
| 1018 |
+
"る",
|
| 1019 |
+
"た",
|
| 1020 |
+
"と",
|
| 1021 |
+
"は",
|
| 1022 |
+
"し",
|
| 1023 |
+
"い",
|
| 1024 |
+
"を",
|
| 1025 |
+
"で",
|
| 1026 |
+
"て",
|
| 1027 |
+
"が",
|
| 1028 |
+
"な",
|
| 1029 |
+
"れ",
|
| 1030 |
+
"か",
|
| 1031 |
+
"ら",
|
| 1032 |
+
"さ",
|
| 1033 |
+
"っ",
|
| 1034 |
+
"り",
|
| 1035 |
+
"す",
|
| 1036 |
+
"あ",
|
| 1037 |
+
"も",
|
| 1038 |
+
"こ",
|
| 1039 |
+
"ま",
|
| 1040 |
+
"う",
|
| 1041 |
+
"く",
|
| 1042 |
+
"よ",
|
| 1043 |
+
"き",
|
| 1044 |
+
"ん",
|
| 1045 |
+
"め",
|
| 1046 |
+
"お",
|
| 1047 |
+
"け",
|
| 1048 |
+
"そ",
|
| 1049 |
+
"つ",
|
| 1050 |
+
"だ",
|
| 1051 |
+
"や",
|
| 1052 |
+
"え",
|
| 1053 |
+
"ど",
|
| 1054 |
+
"わ",
|
| 1055 |
+
"ち",
|
| 1056 |
+
"み",
|
| 1057 |
+
"せ",
|
| 1058 |
+
"じ",
|
| 1059 |
+
"ば",
|
| 1060 |
+
"へ",
|
| 1061 |
+
"び",
|
| 1062 |
+
"ず",
|
| 1063 |
+
"ろ",
|
| 1064 |
+
"ほ",
|
| 1065 |
+
"げ",
|
| 1066 |
+
"む",
|
| 1067 |
+
"べ",
|
| 1068 |
+
"ひ",
|
| 1069 |
+
"ょ",
|
| 1070 |
+
"ゆ",
|
| 1071 |
+
"ぶ",
|
| 1072 |
+
"ご",
|
| 1073 |
+
"ゃ",
|
| 1074 |
+
"ね",
|
| 1075 |
+
"ふ",
|
| 1076 |
+
"ぐ",
|
| 1077 |
+
"ぎ",
|
| 1078 |
+
"ぼ",
|
| 1079 |
+
"ゅ",
|
| 1080 |
+
"づ",
|
| 1081 |
+
"ざ",
|
| 1082 |
+
"ぞ",
|
| 1083 |
+
"ぬ",
|
| 1084 |
+
"ぜ",
|
| 1085 |
+
"ぱ",
|
| 1086 |
+
"ぽ",
|
| 1087 |
+
"ぷ",
|
| 1088 |
+
"ぴ",
|
| 1089 |
+
"ぃ",
|
| 1090 |
+
"ぁ",
|
| 1091 |
+
"ぇ",
|
| 1092 |
+
"ぺ",
|
| 1093 |
+
"ゞ",
|
| 1094 |
+
"ぢ",
|
| 1095 |
+
"ぉ",
|
| 1096 |
+
"ぅ",
|
| 1097 |
+
"ゐ",
|
| 1098 |
+
"ゝ",
|
| 1099 |
+
"ゑ",
|
| 1100 |
+
"゛",
|
| 1101 |
+
"゜",
|
| 1102 |
+
"ゎ",
|
| 1103 |
+
"ゔ",
|
| 1104 |
+
"゚",
|
| 1105 |
+
"ゟ",
|
| 1106 |
+
"゙",
|
| 1107 |
+
"ゕ",
|
| 1108 |
+
"ゖ",
|
| 1109 |
+
],
|
| 1110 |
+
"Portuguese": [
|
| 1111 |
+
"a",
|
| 1112 |
+
"e",
|
| 1113 |
+
"o",
|
| 1114 |
+
"s",
|
| 1115 |
+
"i",
|
| 1116 |
+
"r",
|
| 1117 |
+
"d",
|
| 1118 |
+
"n",
|
| 1119 |
+
"t",
|
| 1120 |
+
"m",
|
| 1121 |
+
"u",
|
| 1122 |
+
"c",
|
| 1123 |
+
"l",
|
| 1124 |
+
"p",
|
| 1125 |
+
"g",
|
| 1126 |
+
"v",
|
| 1127 |
+
"b",
|
| 1128 |
+
"f",
|
| 1129 |
+
"h",
|
| 1130 |
+
"ã",
|
| 1131 |
+
"q",
|
| 1132 |
+
"é",
|
| 1133 |
+
"ç",
|
| 1134 |
+
"á",
|
| 1135 |
+
"z",
|
| 1136 |
+
"í",
|
| 1137 |
+
],
|
| 1138 |
+
"Swedish": [
|
| 1139 |
+
"e",
|
| 1140 |
+
"a",
|
| 1141 |
+
"n",
|
| 1142 |
+
"r",
|
| 1143 |
+
"t",
|
| 1144 |
+
"s",
|
| 1145 |
+
"i",
|
| 1146 |
+
"l",
|
| 1147 |
+
"d",
|
| 1148 |
+
"o",
|
| 1149 |
+
"m",
|
| 1150 |
+
"k",
|
| 1151 |
+
"g",
|
| 1152 |
+
"v",
|
| 1153 |
+
"h",
|
| 1154 |
+
"f",
|
| 1155 |
+
"u",
|
| 1156 |
+
"p",
|
| 1157 |
+
"ä",
|
| 1158 |
+
"c",
|
| 1159 |
+
"b",
|
| 1160 |
+
"ö",
|
| 1161 |
+
"å",
|
| 1162 |
+
"y",
|
| 1163 |
+
"j",
|
| 1164 |
+
"x",
|
| 1165 |
+
],
|
| 1166 |
+
"Chinese": [
|
| 1167 |
+
"的",
|
| 1168 |
+
"一",
|
| 1169 |
+
"是",
|
| 1170 |
+
"不",
|
| 1171 |
+
"了",
|
| 1172 |
+
"在",
|
| 1173 |
+
"人",
|
| 1174 |
+
"有",
|
| 1175 |
+
"我",
|
| 1176 |
+
"他",
|
| 1177 |
+
"这",
|
| 1178 |
+
"个",
|
| 1179 |
+
"们",
|
| 1180 |
+
"中",
|
| 1181 |
+
"来",
|
| 1182 |
+
"上",
|
| 1183 |
+
"大",
|
| 1184 |
+
"为",
|
| 1185 |
+
"和",
|
| 1186 |
+
"国",
|
| 1187 |
+
"地",
|
| 1188 |
+
"到",
|
| 1189 |
+
"以",
|
| 1190 |
+
"说",
|
| 1191 |
+
"时",
|
| 1192 |
+
"要",
|
| 1193 |
+
"就",
|
| 1194 |
+
"出",
|
| 1195 |
+
"会",
|
| 1196 |
+
"可",
|
| 1197 |
+
"也",
|
| 1198 |
+
"你",
|
| 1199 |
+
"对",
|
| 1200 |
+
"生",
|
| 1201 |
+
"能",
|
| 1202 |
+
"而",
|
| 1203 |
+
"子",
|
| 1204 |
+
"那",
|
| 1205 |
+
"得",
|
| 1206 |
+
"于",
|
| 1207 |
+
"着",
|
| 1208 |
+
"下",
|
| 1209 |
+
"自",
|
| 1210 |
+
"之",
|
| 1211 |
+
"年",
|
| 1212 |
+
"过",
|
| 1213 |
+
"发",
|
| 1214 |
+
"后",
|
| 1215 |
+
"作",
|
| 1216 |
+
"里",
|
| 1217 |
+
"用",
|
| 1218 |
+
"道",
|
| 1219 |
+
"行",
|
| 1220 |
+
"所",
|
| 1221 |
+
"然",
|
| 1222 |
+
"家",
|
| 1223 |
+
"种",
|
| 1224 |
+
"事",
|
| 1225 |
+
"成",
|
| 1226 |
+
"方",
|
| 1227 |
+
"多",
|
| 1228 |
+
"经",
|
| 1229 |
+
"么",
|
| 1230 |
+
"去",
|
| 1231 |
+
"法",
|
| 1232 |
+
"学",
|
| 1233 |
+
"如",
|
| 1234 |
+
"都",
|
| 1235 |
+
"同",
|
| 1236 |
+
"现",
|
| 1237 |
+
"当",
|
| 1238 |
+
"没",
|
| 1239 |
+
"动",
|
| 1240 |
+
"面",
|
| 1241 |
+
"起",
|
| 1242 |
+
"看",
|
| 1243 |
+
"定",
|
| 1244 |
+
"天",
|
| 1245 |
+
"分",
|
| 1246 |
+
"还",
|
| 1247 |
+
"进",
|
| 1248 |
+
"好",
|
| 1249 |
+
"小",
|
| 1250 |
+
"部",
|
| 1251 |
+
"其",
|
| 1252 |
+
"些",
|
| 1253 |
+
"主",
|
| 1254 |
+
"样",
|
| 1255 |
+
"理",
|
| 1256 |
+
"心",
|
| 1257 |
+
"她",
|
| 1258 |
+
"本",
|
| 1259 |
+
"前",
|
| 1260 |
+
"开",
|
| 1261 |
+
"但",
|
| 1262 |
+
"因",
|
| 1263 |
+
"只",
|
| 1264 |
+
"从",
|
| 1265 |
+
"想",
|
| 1266 |
+
"实",
|
| 1267 |
+
],
|
| 1268 |
+
"Ukrainian": [
|
| 1269 |
+
"о",
|
| 1270 |
+
"а",
|
| 1271 |
+
"н",
|
| 1272 |
+
"і",
|
| 1273 |
+
"и",
|
| 1274 |
+
"р",
|
| 1275 |
+
"в",
|
| 1276 |
+
"т",
|
| 1277 |
+
"е",
|
| 1278 |
+
"с",
|
| 1279 |
+
"к",
|
| 1280 |
+
"л",
|
| 1281 |
+
"у",
|
| 1282 |
+
"д",
|
| 1283 |
+
"м",
|
| 1284 |
+
"п",
|
| 1285 |
+
"з",
|
| 1286 |
+
"я",
|
| 1287 |
+
"ь",
|
| 1288 |
+
"б",
|
| 1289 |
+
"г",
|
| 1290 |
+
"й",
|
| 1291 |
+
"ч",
|
| 1292 |
+
"х",
|
| 1293 |
+
"ц",
|
| 1294 |
+
"ї",
|
| 1295 |
+
],
|
| 1296 |
+
"Norwegian": [
|
| 1297 |
+
"e",
|
| 1298 |
+
"r",
|
| 1299 |
+
"n",
|
| 1300 |
+
"t",
|
| 1301 |
+
"a",
|
| 1302 |
+
"s",
|
| 1303 |
+
"i",
|
| 1304 |
+
"o",
|
| 1305 |
+
"l",
|
| 1306 |
+
"d",
|
| 1307 |
+
"g",
|
| 1308 |
+
"k",
|
| 1309 |
+
"m",
|
| 1310 |
+
"v",
|
| 1311 |
+
"f",
|
| 1312 |
+
"p",
|
| 1313 |
+
"u",
|
| 1314 |
+
"b",
|
| 1315 |
+
"h",
|
| 1316 |
+
"å",
|
| 1317 |
+
"y",
|
| 1318 |
+
"j",
|
| 1319 |
+
"ø",
|
| 1320 |
+
"c",
|
| 1321 |
+
"æ",
|
| 1322 |
+
"w",
|
| 1323 |
+
],
|
| 1324 |
+
"Finnish": [
|
| 1325 |
+
"a",
|
| 1326 |
+
"i",
|
| 1327 |
+
"n",
|
| 1328 |
+
"t",
|
| 1329 |
+
"e",
|
| 1330 |
+
"s",
|
| 1331 |
+
"l",
|
| 1332 |
+
"o",
|
| 1333 |
+
"u",
|
| 1334 |
+
"k",
|
| 1335 |
+
"ä",
|
| 1336 |
+
"m",
|
| 1337 |
+
"r",
|
| 1338 |
+
"v",
|
| 1339 |
+
"j",
|
| 1340 |
+
"h",
|
| 1341 |
+
"p",
|
| 1342 |
+
"y",
|
| 1343 |
+
"d",
|
| 1344 |
+
"ö",
|
| 1345 |
+
"g",
|
| 1346 |
+
"c",
|
| 1347 |
+
"b",
|
| 1348 |
+
"f",
|
| 1349 |
+
"w",
|
| 1350 |
+
"z",
|
| 1351 |
+
],
|
| 1352 |
+
"Vietnamese": [
|
| 1353 |
+
"n",
|
| 1354 |
+
"h",
|
| 1355 |
+
"t",
|
| 1356 |
+
"i",
|
| 1357 |
+
"c",
|
| 1358 |
+
"g",
|
| 1359 |
+
"a",
|
| 1360 |
+
"o",
|
| 1361 |
+
"u",
|
| 1362 |
+
"m",
|
| 1363 |
+
"l",
|
| 1364 |
+
"r",
|
| 1365 |
+
"à",
|
| 1366 |
+
"đ",
|
| 1367 |
+
"s",
|
| 1368 |
+
"e",
|
| 1369 |
+
"v",
|
| 1370 |
+
"p",
|
| 1371 |
+
"b",
|
| 1372 |
+
"y",
|
| 1373 |
+
"ư",
|
| 1374 |
+
"d",
|
| 1375 |
+
"á",
|
| 1376 |
+
"k",
|
| 1377 |
+
"ộ",
|
| 1378 |
+
"ế",
|
| 1379 |
+
],
|
| 1380 |
+
"Czech": [
|
| 1381 |
+
"o",
|
| 1382 |
+
"e",
|
| 1383 |
+
"a",
|
| 1384 |
+
"n",
|
| 1385 |
+
"t",
|
| 1386 |
+
"s",
|
| 1387 |
+
"i",
|
| 1388 |
+
"l",
|
| 1389 |
+
"v",
|
| 1390 |
+
"r",
|
| 1391 |
+
"k",
|
| 1392 |
+
"d",
|
| 1393 |
+
"u",
|
| 1394 |
+
"m",
|
| 1395 |
+
"p",
|
| 1396 |
+
"í",
|
| 1397 |
+
"c",
|
| 1398 |
+
"h",
|
| 1399 |
+
"z",
|
| 1400 |
+
"á",
|
| 1401 |
+
"y",
|
| 1402 |
+
"j",
|
| 1403 |
+
"b",
|
| 1404 |
+
"ě",
|
| 1405 |
+
"é",
|
| 1406 |
+
"ř",
|
| 1407 |
+
],
|
| 1408 |
+
"Hungarian": [
|
| 1409 |
+
"e",
|
| 1410 |
+
"a",
|
| 1411 |
+
"t",
|
| 1412 |
+
"l",
|
| 1413 |
+
"s",
|
| 1414 |
+
"n",
|
| 1415 |
+
"k",
|
| 1416 |
+
"r",
|
| 1417 |
+
"i",
|
| 1418 |
+
"o",
|
| 1419 |
+
"z",
|
| 1420 |
+
"á",
|
| 1421 |
+
"é",
|
| 1422 |
+
"g",
|
| 1423 |
+
"m",
|
| 1424 |
+
"b",
|
| 1425 |
+
"y",
|
| 1426 |
+
"v",
|
| 1427 |
+
"d",
|
| 1428 |
+
"h",
|
| 1429 |
+
"u",
|
| 1430 |
+
"p",
|
| 1431 |
+
"j",
|
| 1432 |
+
"ö",
|
| 1433 |
+
"f",
|
| 1434 |
+
"c",
|
| 1435 |
+
],
|
| 1436 |
+
"Korean": [
|
| 1437 |
+
"이",
|
| 1438 |
+
"다",
|
| 1439 |
+
"에",
|
| 1440 |
+
"의",
|
| 1441 |
+
"는",
|
| 1442 |
+
"로",
|
| 1443 |
+
"하",
|
| 1444 |
+
"을",
|
| 1445 |
+
"가",
|
| 1446 |
+
"고",
|
| 1447 |
+
"지",
|
| 1448 |
+
"서",
|
| 1449 |
+
"한",
|
| 1450 |
+
"은",
|
| 1451 |
+
"기",
|
| 1452 |
+
"으",
|
| 1453 |
+
"년",
|
| 1454 |
+
"대",
|
| 1455 |
+
"사",
|
| 1456 |
+
"시",
|
| 1457 |
+
"를",
|
| 1458 |
+
"리",
|
| 1459 |
+
"도",
|
| 1460 |
+
"인",
|
| 1461 |
+
"스",
|
| 1462 |
+
"일",
|
| 1463 |
+
],
|
| 1464 |
+
"Indonesian": [
|
| 1465 |
+
"a",
|
| 1466 |
+
"n",
|
| 1467 |
+
"e",
|
| 1468 |
+
"i",
|
| 1469 |
+
"r",
|
| 1470 |
+
"t",
|
| 1471 |
+
"u",
|
| 1472 |
+
"s",
|
| 1473 |
+
"d",
|
| 1474 |
+
"k",
|
| 1475 |
+
"m",
|
| 1476 |
+
"l",
|
| 1477 |
+
"g",
|
| 1478 |
+
"p",
|
| 1479 |
+
"b",
|
| 1480 |
+
"o",
|
| 1481 |
+
"h",
|
| 1482 |
+
"y",
|
| 1483 |
+
"j",
|
| 1484 |
+
"c",
|
| 1485 |
+
"w",
|
| 1486 |
+
"f",
|
| 1487 |
+
"v",
|
| 1488 |
+
"z",
|
| 1489 |
+
"x",
|
| 1490 |
+
"q",
|
| 1491 |
+
],
|
| 1492 |
+
"Turkish": [
|
| 1493 |
+
"a",
|
| 1494 |
+
"e",
|
| 1495 |
+
"i",
|
| 1496 |
+
"n",
|
| 1497 |
+
"r",
|
| 1498 |
+
"l",
|
| 1499 |
+
"ı",
|
| 1500 |
+
"k",
|
| 1501 |
+
"d",
|
| 1502 |
+
"t",
|
| 1503 |
+
"s",
|
| 1504 |
+
"m",
|
| 1505 |
+
"y",
|
| 1506 |
+
"u",
|
| 1507 |
+
"o",
|
| 1508 |
+
"b",
|
| 1509 |
+
"ü",
|
| 1510 |
+
"ş",
|
| 1511 |
+
"v",
|
| 1512 |
+
"g",
|
| 1513 |
+
"z",
|
| 1514 |
+
"h",
|
| 1515 |
+
"c",
|
| 1516 |
+
"p",
|
| 1517 |
+
"ç",
|
| 1518 |
+
"ğ",
|
| 1519 |
+
],
|
| 1520 |
+
"Romanian": [
|
| 1521 |
+
"e",
|
| 1522 |
+
"i",
|
| 1523 |
+
"a",
|
| 1524 |
+
"r",
|
| 1525 |
+
"n",
|
| 1526 |
+
"t",
|
| 1527 |
+
"u",
|
| 1528 |
+
"l",
|
| 1529 |
+
"o",
|
| 1530 |
+
"c",
|
| 1531 |
+
"s",
|
| 1532 |
+
"d",
|
| 1533 |
+
"p",
|
| 1534 |
+
"m",
|
| 1535 |
+
"ă",
|
| 1536 |
+
"f",
|
| 1537 |
+
"v",
|
| 1538 |
+
"î",
|
| 1539 |
+
"g",
|
| 1540 |
+
"b",
|
| 1541 |
+
"ș",
|
| 1542 |
+
"ț",
|
| 1543 |
+
"z",
|
| 1544 |
+
"h",
|
| 1545 |
+
"â",
|
| 1546 |
+
"j",
|
| 1547 |
+
],
|
| 1548 |
+
"Farsi": [
|
| 1549 |
+
"ا",
|
| 1550 |
+
"ی",
|
| 1551 |
+
"ر",
|
| 1552 |
+
"د",
|
| 1553 |
+
"ن",
|
| 1554 |
+
"ه",
|
| 1555 |
+
"و",
|
| 1556 |
+
"م",
|
| 1557 |
+
"ت",
|
| 1558 |
+
"ب",
|
| 1559 |
+
"س",
|
| 1560 |
+
"ل",
|
| 1561 |
+
"ک",
|
| 1562 |
+
"ش",
|
| 1563 |
+
"ز",
|
| 1564 |
+
"ف",
|
| 1565 |
+
"گ",
|
| 1566 |
+
"ع",
|
| 1567 |
+
"خ",
|
| 1568 |
+
"ق",
|
| 1569 |
+
"ج",
|
| 1570 |
+
"آ",
|
| 1571 |
+
"پ",
|
| 1572 |
+
"ح",
|
| 1573 |
+
"ط",
|
| 1574 |
+
"ص",
|
| 1575 |
+
],
|
| 1576 |
+
"Arabic": [
|
| 1577 |
+
"ا",
|
| 1578 |
+
"ل",
|
| 1579 |
+
"ي",
|
| 1580 |
+
"م",
|
| 1581 |
+
"و",
|
| 1582 |
+
"ن",
|
| 1583 |
+
"ر",
|
| 1584 |
+
"ت",
|
| 1585 |
+
"ب",
|
| 1586 |
+
"ة",
|
| 1587 |
+
"ع",
|
| 1588 |
+
"د",
|
| 1589 |
+
"س",
|
| 1590 |
+
"ف",
|
| 1591 |
+
"ه",
|
| 1592 |
+
"ك",
|
| 1593 |
+
"ق",
|
| 1594 |
+
"أ",
|
| 1595 |
+
"ح",
|
| 1596 |
+
"ج",
|
| 1597 |
+
"ش",
|
| 1598 |
+
"ط",
|
| 1599 |
+
"ص",
|
| 1600 |
+
"ى",
|
| 1601 |
+
"خ",
|
| 1602 |
+
"إ",
|
| 1603 |
+
],
|
| 1604 |
+
"Danish": [
|
| 1605 |
+
"e",
|
| 1606 |
+
"r",
|
| 1607 |
+
"n",
|
| 1608 |
+
"t",
|
| 1609 |
+
"a",
|
| 1610 |
+
"i",
|
| 1611 |
+
"s",
|
| 1612 |
+
"d",
|
| 1613 |
+
"l",
|
| 1614 |
+
"o",
|
| 1615 |
+
"g",
|
| 1616 |
+
"m",
|
| 1617 |
+
"k",
|
| 1618 |
+
"f",
|
| 1619 |
+
"v",
|
| 1620 |
+
"u",
|
| 1621 |
+
"b",
|
| 1622 |
+
"h",
|
| 1623 |
+
"p",
|
| 1624 |
+
"å",
|
| 1625 |
+
"y",
|
| 1626 |
+
"ø",
|
| 1627 |
+
"æ",
|
| 1628 |
+
"c",
|
| 1629 |
+
"j",
|
| 1630 |
+
"w",
|
| 1631 |
+
],
|
| 1632 |
+
"Serbian": [
|
| 1633 |
+
"а",
|
| 1634 |
+
"и",
|
| 1635 |
+
"о",
|
| 1636 |
+
"е",
|
| 1637 |
+
"н",
|
| 1638 |
+
"р",
|
| 1639 |
+
"с",
|
| 1640 |
+
"у",
|
| 1641 |
+
"т",
|
| 1642 |
+
"к",
|
| 1643 |
+
"ј",
|
| 1644 |
+
"в",
|
| 1645 |
+
"д",
|
| 1646 |
+
"м",
|
| 1647 |
+
"п",
|
| 1648 |
+
"л",
|
| 1649 |
+
"г",
|
| 1650 |
+
"з",
|
| 1651 |
+
"б",
|
| 1652 |
+
"a",
|
| 1653 |
+
"i",
|
| 1654 |
+
"e",
|
| 1655 |
+
"o",
|
| 1656 |
+
"n",
|
| 1657 |
+
"ц",
|
| 1658 |
+
"ш",
|
| 1659 |
+
],
|
| 1660 |
+
"Lithuanian": [
|
| 1661 |
+
"i",
|
| 1662 |
+
"a",
|
| 1663 |
+
"s",
|
| 1664 |
+
"o",
|
| 1665 |
+
"r",
|
| 1666 |
+
"e",
|
| 1667 |
+
"t",
|
| 1668 |
+
"n",
|
| 1669 |
+
"u",
|
| 1670 |
+
"k",
|
| 1671 |
+
"m",
|
| 1672 |
+
"l",
|
| 1673 |
+
"p",
|
| 1674 |
+
"v",
|
| 1675 |
+
"d",
|
| 1676 |
+
"j",
|
| 1677 |
+
"g",
|
| 1678 |
+
"ė",
|
| 1679 |
+
"b",
|
| 1680 |
+
"y",
|
| 1681 |
+
"ų",
|
| 1682 |
+
"š",
|
| 1683 |
+
"ž",
|
| 1684 |
+
"c",
|
| 1685 |
+
"ą",
|
| 1686 |
+
"į",
|
| 1687 |
+
],
|
| 1688 |
+
"Slovene": [
|
| 1689 |
+
"e",
|
| 1690 |
+
"a",
|
| 1691 |
+
"i",
|
| 1692 |
+
"o",
|
| 1693 |
+
"n",
|
| 1694 |
+
"r",
|
| 1695 |
+
"s",
|
| 1696 |
+
"l",
|
| 1697 |
+
"t",
|
| 1698 |
+
"j",
|
| 1699 |
+
"v",
|
| 1700 |
+
"k",
|
| 1701 |
+
"d",
|
| 1702 |
+
"p",
|
| 1703 |
+
"m",
|
| 1704 |
+
"u",
|
| 1705 |
+
"z",
|
| 1706 |
+
"b",
|
| 1707 |
+
"g",
|
| 1708 |
+
"h",
|
| 1709 |
+
"č",
|
| 1710 |
+
"c",
|
| 1711 |
+
"š",
|
| 1712 |
+
"ž",
|
| 1713 |
+
"f",
|
| 1714 |
+
"y",
|
| 1715 |
+
],
|
| 1716 |
+
"Slovak": [
|
| 1717 |
+
"o",
|
| 1718 |
+
"a",
|
| 1719 |
+
"e",
|
| 1720 |
+
"n",
|
| 1721 |
+
"i",
|
| 1722 |
+
"r",
|
| 1723 |
+
"v",
|
| 1724 |
+
"t",
|
| 1725 |
+
"s",
|
| 1726 |
+
"l",
|
| 1727 |
+
"k",
|
| 1728 |
+
"d",
|
| 1729 |
+
"m",
|
| 1730 |
+
"p",
|
| 1731 |
+
"u",
|
| 1732 |
+
"c",
|
| 1733 |
+
"h",
|
| 1734 |
+
"j",
|
| 1735 |
+
"b",
|
| 1736 |
+
"z",
|
| 1737 |
+
"á",
|
| 1738 |
+
"y",
|
| 1739 |
+
"ý",
|
| 1740 |
+
"í",
|
| 1741 |
+
"č",
|
| 1742 |
+
"é",
|
| 1743 |
+
],
|
| 1744 |
+
"Hebrew": [
|
| 1745 |
+
"י",
|
| 1746 |
+
"ו",
|
| 1747 |
+
"ה",
|
| 1748 |
+
"ל",
|
| 1749 |
+
"ר",
|
| 1750 |
+
"ב",
|
| 1751 |
+
"ת",
|
| 1752 |
+
"מ",
|
| 1753 |
+
"א",
|
| 1754 |
+
"ש",
|
| 1755 |
+
"נ",
|
| 1756 |
+
"ע",
|
| 1757 |
+
"ם",
|
| 1758 |
+
"ד",
|
| 1759 |
+
"ק",
|
| 1760 |
+
"ח",
|
| 1761 |
+
"פ",
|
| 1762 |
+
"ס",
|
| 1763 |
+
"כ",
|
| 1764 |
+
"ג",
|
| 1765 |
+
"ט",
|
| 1766 |
+
"צ",
|
| 1767 |
+
"ן",
|
| 1768 |
+
"ז",
|
| 1769 |
+
"ך",
|
| 1770 |
+
],
|
| 1771 |
+
"Bulgarian": [
|
| 1772 |
+
"а",
|
| 1773 |
+
"и",
|
| 1774 |
+
"о",
|
| 1775 |
+
"е",
|
| 1776 |
+
"н",
|
| 1777 |
+
"т",
|
| 1778 |
+
"р",
|
| 1779 |
+
"с",
|
| 1780 |
+
"в",
|
| 1781 |
+
"л",
|
| 1782 |
+
"к",
|
| 1783 |
+
"д",
|
| 1784 |
+
"п",
|
| 1785 |
+
"м",
|
| 1786 |
+
"з",
|
| 1787 |
+
"г",
|
| 1788 |
+
"я",
|
| 1789 |
+
"ъ",
|
| 1790 |
+
"у",
|
| 1791 |
+
"б",
|
| 1792 |
+
"ч",
|
| 1793 |
+
"ц",
|
| 1794 |
+
"й",
|
| 1795 |
+
"ж",
|
| 1796 |
+
"щ",
|
| 1797 |
+
"х",
|
| 1798 |
+
],
|
| 1799 |
+
"Croatian": [
|
| 1800 |
+
"a",
|
| 1801 |
+
"i",
|
| 1802 |
+
"o",
|
| 1803 |
+
"e",
|
| 1804 |
+
"n",
|
| 1805 |
+
"r",
|
| 1806 |
+
"j",
|
| 1807 |
+
"s",
|
| 1808 |
+
"t",
|
| 1809 |
+
"u",
|
| 1810 |
+
"k",
|
| 1811 |
+
"l",
|
| 1812 |
+
"v",
|
| 1813 |
+
"d",
|
| 1814 |
+
"m",
|
| 1815 |
+
"p",
|
| 1816 |
+
"g",
|
| 1817 |
+
"z",
|
| 1818 |
+
"b",
|
| 1819 |
+
"c",
|
| 1820 |
+
"č",
|
| 1821 |
+
"h",
|
| 1822 |
+
"š",
|
| 1823 |
+
"ž",
|
| 1824 |
+
"ć",
|
| 1825 |
+
"f",
|
| 1826 |
+
],
|
| 1827 |
+
"Hindi": [
|
| 1828 |
+
"क",
|
| 1829 |
+
"र",
|
| 1830 |
+
"स",
|
| 1831 |
+
"न",
|
| 1832 |
+
"त",
|
| 1833 |
+
"म",
|
| 1834 |
+
"ह",
|
| 1835 |
+
"प",
|
| 1836 |
+
"य",
|
| 1837 |
+
"ल",
|
| 1838 |
+
"व",
|
| 1839 |
+
"ज",
|
| 1840 |
+
"द",
|
| 1841 |
+
"ग",
|
| 1842 |
+
"ब",
|
| 1843 |
+
"श",
|
| 1844 |
+
"ट",
|
| 1845 |
+
"अ",
|
| 1846 |
+
"ए",
|
| 1847 |
+
"थ",
|
| 1848 |
+
"भ",
|
| 1849 |
+
"ड",
|
| 1850 |
+
"च",
|
| 1851 |
+
"ध",
|
| 1852 |
+
"ष",
|
| 1853 |
+
"इ",
|
| 1854 |
+
],
|
| 1855 |
+
"Estonian": [
|
| 1856 |
+
"a",
|
| 1857 |
+
"i",
|
| 1858 |
+
"e",
|
| 1859 |
+
"s",
|
| 1860 |
+
"t",
|
| 1861 |
+
"l",
|
| 1862 |
+
"u",
|
| 1863 |
+
"n",
|
| 1864 |
+
"o",
|
| 1865 |
+
"k",
|
| 1866 |
+
"r",
|
| 1867 |
+
"d",
|
| 1868 |
+
"m",
|
| 1869 |
+
"v",
|
| 1870 |
+
"g",
|
| 1871 |
+
"p",
|
| 1872 |
+
"j",
|
| 1873 |
+
"h",
|
| 1874 |
+
"ä",
|
| 1875 |
+
"b",
|
| 1876 |
+
"õ",
|
| 1877 |
+
"ü",
|
| 1878 |
+
"f",
|
| 1879 |
+
"c",
|
| 1880 |
+
"ö",
|
| 1881 |
+
"y",
|
| 1882 |
+
],
|
| 1883 |
+
"Thai": [
|
| 1884 |
+
"า",
|
| 1885 |
+
"น",
|
| 1886 |
+
"ร",
|
| 1887 |
+
"อ",
|
| 1888 |
+
"ก",
|
| 1889 |
+
"เ",
|
| 1890 |
+
"ง",
|
| 1891 |
+
"ม",
|
| 1892 |
+
"ย",
|
| 1893 |
+
"ล",
|
| 1894 |
+
"ว",
|
| 1895 |
+
"ด",
|
| 1896 |
+
"ท",
|
| 1897 |
+
"ส",
|
| 1898 |
+
"ต",
|
| 1899 |
+
"ะ",
|
| 1900 |
+
"ป",
|
| 1901 |
+
"บ",
|
| 1902 |
+
"ค",
|
| 1903 |
+
"ห",
|
| 1904 |
+
"แ",
|
| 1905 |
+
"จ",
|
| 1906 |
+
"พ",
|
| 1907 |
+
"ช",
|
| 1908 |
+
"ข",
|
| 1909 |
+
"ใ",
|
| 1910 |
+
],
|
| 1911 |
+
"Greek": [
|
| 1912 |
+
"α",
|
| 1913 |
+
"τ",
|
| 1914 |
+
"ο",
|
| 1915 |
+
"ι",
|
| 1916 |
+
"ε",
|
| 1917 |
+
"ν",
|
| 1918 |
+
"ρ",
|
| 1919 |
+
"σ",
|
| 1920 |
+
"κ",
|
| 1921 |
+
"η",
|
| 1922 |
+
"π",
|
| 1923 |
+
"ς",
|
| 1924 |
+
"υ",
|
| 1925 |
+
"μ",
|
| 1926 |
+
"λ",
|
| 1927 |
+
"ί",
|
| 1928 |
+
"ό",
|
| 1929 |
+
"ά",
|
| 1930 |
+
"γ",
|
| 1931 |
+
"έ",
|
| 1932 |
+
"δ",
|
| 1933 |
+
"ή",
|
| 1934 |
+
"ω",
|
| 1935 |
+
"χ",
|
| 1936 |
+
"θ",
|
| 1937 |
+
"ύ",
|
| 1938 |
+
],
|
| 1939 |
+
"Tamil": [
|
| 1940 |
+
"க",
|
| 1941 |
+
"த",
|
| 1942 |
+
"ப",
|
| 1943 |
+
"ட",
|
| 1944 |
+
"ர",
|
| 1945 |
+
"ம",
|
| 1946 |
+
"ல",
|
| 1947 |
+
"ன",
|
| 1948 |
+
"வ",
|
| 1949 |
+
"ற",
|
| 1950 |
+
"ய",
|
| 1951 |
+
"ள",
|
| 1952 |
+
"ச",
|
| 1953 |
+
"ந",
|
| 1954 |
+
"இ",
|
| 1955 |
+
"ண",
|
| 1956 |
+
"அ",
|
| 1957 |
+
"ஆ",
|
| 1958 |
+
"ழ",
|
| 1959 |
+
"ங",
|
| 1960 |
+
"எ",
|
| 1961 |
+
"உ",
|
| 1962 |
+
"ஒ",
|
| 1963 |
+
"ஸ",
|
| 1964 |
+
],
|
| 1965 |
+
"Kazakh": [
|
| 1966 |
+
"а",
|
| 1967 |
+
"ы",
|
| 1968 |
+
"е",
|
| 1969 |
+
"н",
|
| 1970 |
+
"т",
|
| 1971 |
+
"р",
|
| 1972 |
+
"л",
|
| 1973 |
+
"і",
|
| 1974 |
+
"д",
|
| 1975 |
+
"с",
|
| 1976 |
+
"м",
|
| 1977 |
+
"қ",
|
| 1978 |
+
"к",
|
| 1979 |
+
"о",
|
| 1980 |
+
"б",
|
| 1981 |
+
"и",
|
| 1982 |
+
"у",
|
| 1983 |
+
"ғ",
|
| 1984 |
+
"ж",
|
| 1985 |
+
"ң",
|
| 1986 |
+
"з",
|
| 1987 |
+
"ш",
|
| 1988 |
+
"й",
|
| 1989 |
+
"п",
|
| 1990 |
+
"г",
|
| 1991 |
+
"ө",
|
| 1992 |
+
],
|
| 1993 |
+
}
|
| 1994 |
+
|
| 1995 |
+
LANGUAGE_SUPPORTED_COUNT: int = len(FREQUENCIES)
|
parrot/lib/python3.10/site-packages/charset_normalizer/legacy.py
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from typing import Any, Dict, Optional, Union
|
| 2 |
+
from warnings import warn
|
| 3 |
+
|
| 4 |
+
from .api import from_bytes
|
| 5 |
+
from .constant import CHARDET_CORRESPONDENCE
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
def detect(
|
| 9 |
+
byte_str: bytes, should_rename_legacy: bool = False, **kwargs: Any
|
| 10 |
+
) -> Dict[str, Optional[Union[str, float]]]:
|
| 11 |
+
"""
|
| 12 |
+
chardet legacy method
|
| 13 |
+
Detect the encoding of the given byte string. It should be mostly backward-compatible.
|
| 14 |
+
Encoding name will match Chardet own writing whenever possible. (Not on encoding name unsupported by it)
|
| 15 |
+
This function is deprecated and should be used to migrate your project easily, consult the documentation for
|
| 16 |
+
further information. Not planned for removal.
|
| 17 |
+
|
| 18 |
+
:param byte_str: The byte sequence to examine.
|
| 19 |
+
:param should_rename_legacy: Should we rename legacy encodings
|
| 20 |
+
to their more modern equivalents?
|
| 21 |
+
"""
|
| 22 |
+
if len(kwargs):
|
| 23 |
+
warn(
|
| 24 |
+
f"charset-normalizer disregard arguments '{','.join(list(kwargs.keys()))}' in legacy function detect()"
|
| 25 |
+
)
|
| 26 |
+
|
| 27 |
+
if not isinstance(byte_str, (bytearray, bytes)):
|
| 28 |
+
raise TypeError( # pragma: nocover
|
| 29 |
+
"Expected object of type bytes or bytearray, got: "
|
| 30 |
+
"{0}".format(type(byte_str))
|
| 31 |
+
)
|
| 32 |
+
|
| 33 |
+
if isinstance(byte_str, bytearray):
|
| 34 |
+
byte_str = bytes(byte_str)
|
| 35 |
+
|
| 36 |
+
r = from_bytes(byte_str).best()
|
| 37 |
+
|
| 38 |
+
encoding = r.encoding if r is not None else None
|
| 39 |
+
language = r.language if r is not None and r.language != "Unknown" else ""
|
| 40 |
+
confidence = 1.0 - r.chaos if r is not None else None
|
| 41 |
+
|
| 42 |
+
# Note: CharsetNormalizer does not return 'UTF-8-SIG' as the sig get stripped in the detection/normalization process
|
| 43 |
+
# but chardet does return 'utf-8-sig' and it is a valid codec name.
|
| 44 |
+
if r is not None and encoding == "utf_8" and r.bom:
|
| 45 |
+
encoding += "_sig"
|
| 46 |
+
|
| 47 |
+
if should_rename_legacy is False and encoding in CHARDET_CORRESPONDENCE:
|
| 48 |
+
encoding = CHARDET_CORRESPONDENCE[encoding]
|
| 49 |
+
|
| 50 |
+
return {
|
| 51 |
+
"encoding": encoding,
|
| 52 |
+
"language": language,
|
| 53 |
+
"confidence": confidence,
|
| 54 |
+
}
|
parrot/lib/python3.10/site-packages/charset_normalizer/md.cpython-310-x86_64-linux-gnu.so
ADDED
|
Binary file (16.1 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/charset_normalizer/md.py
ADDED
|
@@ -0,0 +1,615 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from functools import lru_cache
|
| 2 |
+
from logging import getLogger
|
| 3 |
+
from typing import List, Optional
|
| 4 |
+
|
| 5 |
+
from .constant import (
|
| 6 |
+
COMMON_SAFE_ASCII_CHARACTERS,
|
| 7 |
+
TRACE,
|
| 8 |
+
UNICODE_SECONDARY_RANGE_KEYWORD,
|
| 9 |
+
)
|
| 10 |
+
from .utils import (
|
| 11 |
+
is_accentuated,
|
| 12 |
+
is_arabic,
|
| 13 |
+
is_arabic_isolated_form,
|
| 14 |
+
is_case_variable,
|
| 15 |
+
is_cjk,
|
| 16 |
+
is_emoticon,
|
| 17 |
+
is_hangul,
|
| 18 |
+
is_hiragana,
|
| 19 |
+
is_katakana,
|
| 20 |
+
is_latin,
|
| 21 |
+
is_punctuation,
|
| 22 |
+
is_separator,
|
| 23 |
+
is_symbol,
|
| 24 |
+
is_thai,
|
| 25 |
+
is_unprintable,
|
| 26 |
+
remove_accent,
|
| 27 |
+
unicode_range,
|
| 28 |
+
)
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
class MessDetectorPlugin:
|
| 32 |
+
"""
|
| 33 |
+
Base abstract class used for mess detection plugins.
|
| 34 |
+
All detectors MUST extend and implement given methods.
|
| 35 |
+
"""
|
| 36 |
+
|
| 37 |
+
def eligible(self, character: str) -> bool:
|
| 38 |
+
"""
|
| 39 |
+
Determine if given character should be fed in.
|
| 40 |
+
"""
|
| 41 |
+
raise NotImplementedError # pragma: nocover
|
| 42 |
+
|
| 43 |
+
def feed(self, character: str) -> None:
|
| 44 |
+
"""
|
| 45 |
+
The main routine to be executed upon character.
|
| 46 |
+
Insert the logic in witch the text would be considered chaotic.
|
| 47 |
+
"""
|
| 48 |
+
raise NotImplementedError # pragma: nocover
|
| 49 |
+
|
| 50 |
+
def reset(self) -> None: # pragma: no cover
|
| 51 |
+
"""
|
| 52 |
+
Permit to reset the plugin to the initial state.
|
| 53 |
+
"""
|
| 54 |
+
raise NotImplementedError
|
| 55 |
+
|
| 56 |
+
@property
|
| 57 |
+
def ratio(self) -> float:
|
| 58 |
+
"""
|
| 59 |
+
Compute the chaos ratio based on what your feed() has seen.
|
| 60 |
+
Must NOT be lower than 0.; No restriction gt 0.
|
| 61 |
+
"""
|
| 62 |
+
raise NotImplementedError # pragma: nocover
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
class TooManySymbolOrPunctuationPlugin(MessDetectorPlugin):
|
| 66 |
+
def __init__(self) -> None:
|
| 67 |
+
self._punctuation_count: int = 0
|
| 68 |
+
self._symbol_count: int = 0
|
| 69 |
+
self._character_count: int = 0
|
| 70 |
+
|
| 71 |
+
self._last_printable_char: Optional[str] = None
|
| 72 |
+
self._frenzy_symbol_in_word: bool = False
|
| 73 |
+
|
| 74 |
+
def eligible(self, character: str) -> bool:
|
| 75 |
+
return character.isprintable()
|
| 76 |
+
|
| 77 |
+
def feed(self, character: str) -> None:
|
| 78 |
+
self._character_count += 1
|
| 79 |
+
|
| 80 |
+
if (
|
| 81 |
+
character != self._last_printable_char
|
| 82 |
+
and character not in COMMON_SAFE_ASCII_CHARACTERS
|
| 83 |
+
):
|
| 84 |
+
if is_punctuation(character):
|
| 85 |
+
self._punctuation_count += 1
|
| 86 |
+
elif (
|
| 87 |
+
character.isdigit() is False
|
| 88 |
+
and is_symbol(character)
|
| 89 |
+
and is_emoticon(character) is False
|
| 90 |
+
):
|
| 91 |
+
self._symbol_count += 2
|
| 92 |
+
|
| 93 |
+
self._last_printable_char = character
|
| 94 |
+
|
| 95 |
+
def reset(self) -> None: # pragma: no cover
|
| 96 |
+
self._punctuation_count = 0
|
| 97 |
+
self._character_count = 0
|
| 98 |
+
self._symbol_count = 0
|
| 99 |
+
|
| 100 |
+
@property
|
| 101 |
+
def ratio(self) -> float:
|
| 102 |
+
if self._character_count == 0:
|
| 103 |
+
return 0.0
|
| 104 |
+
|
| 105 |
+
ratio_of_punctuation: float = (
|
| 106 |
+
self._punctuation_count + self._symbol_count
|
| 107 |
+
) / self._character_count
|
| 108 |
+
|
| 109 |
+
return ratio_of_punctuation if ratio_of_punctuation >= 0.3 else 0.0
|
| 110 |
+
|
| 111 |
+
|
| 112 |
+
class TooManyAccentuatedPlugin(MessDetectorPlugin):
|
| 113 |
+
def __init__(self) -> None:
|
| 114 |
+
self._character_count: int = 0
|
| 115 |
+
self._accentuated_count: int = 0
|
| 116 |
+
|
| 117 |
+
def eligible(self, character: str) -> bool:
|
| 118 |
+
return character.isalpha()
|
| 119 |
+
|
| 120 |
+
def feed(self, character: str) -> None:
|
| 121 |
+
self._character_count += 1
|
| 122 |
+
|
| 123 |
+
if is_accentuated(character):
|
| 124 |
+
self._accentuated_count += 1
|
| 125 |
+
|
| 126 |
+
def reset(self) -> None: # pragma: no cover
|
| 127 |
+
self._character_count = 0
|
| 128 |
+
self._accentuated_count = 0
|
| 129 |
+
|
| 130 |
+
@property
|
| 131 |
+
def ratio(self) -> float:
|
| 132 |
+
if self._character_count < 8:
|
| 133 |
+
return 0.0
|
| 134 |
+
|
| 135 |
+
ratio_of_accentuation: float = self._accentuated_count / self._character_count
|
| 136 |
+
return ratio_of_accentuation if ratio_of_accentuation >= 0.35 else 0.0
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
class UnprintablePlugin(MessDetectorPlugin):
|
| 140 |
+
def __init__(self) -> None:
|
| 141 |
+
self._unprintable_count: int = 0
|
| 142 |
+
self._character_count: int = 0
|
| 143 |
+
|
| 144 |
+
def eligible(self, character: str) -> bool:
|
| 145 |
+
return True
|
| 146 |
+
|
| 147 |
+
def feed(self, character: str) -> None:
|
| 148 |
+
if is_unprintable(character):
|
| 149 |
+
self._unprintable_count += 1
|
| 150 |
+
self._character_count += 1
|
| 151 |
+
|
| 152 |
+
def reset(self) -> None: # pragma: no cover
|
| 153 |
+
self._unprintable_count = 0
|
| 154 |
+
|
| 155 |
+
@property
|
| 156 |
+
def ratio(self) -> float:
|
| 157 |
+
if self._character_count == 0:
|
| 158 |
+
return 0.0
|
| 159 |
+
|
| 160 |
+
return (self._unprintable_count * 8) / self._character_count
|
| 161 |
+
|
| 162 |
+
|
| 163 |
+
class SuspiciousDuplicateAccentPlugin(MessDetectorPlugin):
|
| 164 |
+
def __init__(self) -> None:
|
| 165 |
+
self._successive_count: int = 0
|
| 166 |
+
self._character_count: int = 0
|
| 167 |
+
|
| 168 |
+
self._last_latin_character: Optional[str] = None
|
| 169 |
+
|
| 170 |
+
def eligible(self, character: str) -> bool:
|
| 171 |
+
return character.isalpha() and is_latin(character)
|
| 172 |
+
|
| 173 |
+
def feed(self, character: str) -> None:
|
| 174 |
+
self._character_count += 1
|
| 175 |
+
if (
|
| 176 |
+
self._last_latin_character is not None
|
| 177 |
+
and is_accentuated(character)
|
| 178 |
+
and is_accentuated(self._last_latin_character)
|
| 179 |
+
):
|
| 180 |
+
if character.isupper() and self._last_latin_character.isupper():
|
| 181 |
+
self._successive_count += 1
|
| 182 |
+
# Worse if its the same char duplicated with different accent.
|
| 183 |
+
if remove_accent(character) == remove_accent(self._last_latin_character):
|
| 184 |
+
self._successive_count += 1
|
| 185 |
+
self._last_latin_character = character
|
| 186 |
+
|
| 187 |
+
def reset(self) -> None: # pragma: no cover
|
| 188 |
+
self._successive_count = 0
|
| 189 |
+
self._character_count = 0
|
| 190 |
+
self._last_latin_character = None
|
| 191 |
+
|
| 192 |
+
@property
|
| 193 |
+
def ratio(self) -> float:
|
| 194 |
+
if self._character_count == 0:
|
| 195 |
+
return 0.0
|
| 196 |
+
|
| 197 |
+
return (self._successive_count * 2) / self._character_count
|
| 198 |
+
|
| 199 |
+
|
| 200 |
+
class SuspiciousRange(MessDetectorPlugin):
|
| 201 |
+
def __init__(self) -> None:
|
| 202 |
+
self._suspicious_successive_range_count: int = 0
|
| 203 |
+
self._character_count: int = 0
|
| 204 |
+
self._last_printable_seen: Optional[str] = None
|
| 205 |
+
|
| 206 |
+
def eligible(self, character: str) -> bool:
|
| 207 |
+
return character.isprintable()
|
| 208 |
+
|
| 209 |
+
def feed(self, character: str) -> None:
|
| 210 |
+
self._character_count += 1
|
| 211 |
+
|
| 212 |
+
if (
|
| 213 |
+
character.isspace()
|
| 214 |
+
or is_punctuation(character)
|
| 215 |
+
or character in COMMON_SAFE_ASCII_CHARACTERS
|
| 216 |
+
):
|
| 217 |
+
self._last_printable_seen = None
|
| 218 |
+
return
|
| 219 |
+
|
| 220 |
+
if self._last_printable_seen is None:
|
| 221 |
+
self._last_printable_seen = character
|
| 222 |
+
return
|
| 223 |
+
|
| 224 |
+
unicode_range_a: Optional[str] = unicode_range(self._last_printable_seen)
|
| 225 |
+
unicode_range_b: Optional[str] = unicode_range(character)
|
| 226 |
+
|
| 227 |
+
if is_suspiciously_successive_range(unicode_range_a, unicode_range_b):
|
| 228 |
+
self._suspicious_successive_range_count += 1
|
| 229 |
+
|
| 230 |
+
self._last_printable_seen = character
|
| 231 |
+
|
| 232 |
+
def reset(self) -> None: # pragma: no cover
|
| 233 |
+
self._character_count = 0
|
| 234 |
+
self._suspicious_successive_range_count = 0
|
| 235 |
+
self._last_printable_seen = None
|
| 236 |
+
|
| 237 |
+
@property
|
| 238 |
+
def ratio(self) -> float:
|
| 239 |
+
if self._character_count <= 24:
|
| 240 |
+
return 0.0
|
| 241 |
+
|
| 242 |
+
ratio_of_suspicious_range_usage: float = (
|
| 243 |
+
self._suspicious_successive_range_count * 2
|
| 244 |
+
) / self._character_count
|
| 245 |
+
|
| 246 |
+
return ratio_of_suspicious_range_usage
|
| 247 |
+
|
| 248 |
+
|
| 249 |
+
class SuperWeirdWordPlugin(MessDetectorPlugin):
|
| 250 |
+
def __init__(self) -> None:
|
| 251 |
+
self._word_count: int = 0
|
| 252 |
+
self._bad_word_count: int = 0
|
| 253 |
+
self._foreign_long_count: int = 0
|
| 254 |
+
|
| 255 |
+
self._is_current_word_bad: bool = False
|
| 256 |
+
self._foreign_long_watch: bool = False
|
| 257 |
+
|
| 258 |
+
self._character_count: int = 0
|
| 259 |
+
self._bad_character_count: int = 0
|
| 260 |
+
|
| 261 |
+
self._buffer: str = ""
|
| 262 |
+
self._buffer_accent_count: int = 0
|
| 263 |
+
|
| 264 |
+
def eligible(self, character: str) -> bool:
|
| 265 |
+
return True
|
| 266 |
+
|
| 267 |
+
def feed(self, character: str) -> None:
|
| 268 |
+
if character.isalpha():
|
| 269 |
+
self._buffer += character
|
| 270 |
+
if is_accentuated(character):
|
| 271 |
+
self._buffer_accent_count += 1
|
| 272 |
+
if (
|
| 273 |
+
self._foreign_long_watch is False
|
| 274 |
+
and (is_latin(character) is False or is_accentuated(character))
|
| 275 |
+
and is_cjk(character) is False
|
| 276 |
+
and is_hangul(character) is False
|
| 277 |
+
and is_katakana(character) is False
|
| 278 |
+
and is_hiragana(character) is False
|
| 279 |
+
and is_thai(character) is False
|
| 280 |
+
):
|
| 281 |
+
self._foreign_long_watch = True
|
| 282 |
+
return
|
| 283 |
+
if not self._buffer:
|
| 284 |
+
return
|
| 285 |
+
if (
|
| 286 |
+
character.isspace() or is_punctuation(character) or is_separator(character)
|
| 287 |
+
) and self._buffer:
|
| 288 |
+
self._word_count += 1
|
| 289 |
+
buffer_length: int = len(self._buffer)
|
| 290 |
+
|
| 291 |
+
self._character_count += buffer_length
|
| 292 |
+
|
| 293 |
+
if buffer_length >= 4:
|
| 294 |
+
if self._buffer_accent_count / buffer_length > 0.34:
|
| 295 |
+
self._is_current_word_bad = True
|
| 296 |
+
# Word/Buffer ending with an upper case accentuated letter are so rare,
|
| 297 |
+
# that we will consider them all as suspicious. Same weight as foreign_long suspicious.
|
| 298 |
+
if (
|
| 299 |
+
is_accentuated(self._buffer[-1])
|
| 300 |
+
and self._buffer[-1].isupper()
|
| 301 |
+
and all(_.isupper() for _ in self._buffer) is False
|
| 302 |
+
):
|
| 303 |
+
self._foreign_long_count += 1
|
| 304 |
+
self._is_current_word_bad = True
|
| 305 |
+
if buffer_length >= 24 and self._foreign_long_watch:
|
| 306 |
+
camel_case_dst = [
|
| 307 |
+
i
|
| 308 |
+
for c, i in zip(self._buffer, range(0, buffer_length))
|
| 309 |
+
if c.isupper()
|
| 310 |
+
]
|
| 311 |
+
probable_camel_cased: bool = False
|
| 312 |
+
|
| 313 |
+
if camel_case_dst and (len(camel_case_dst) / buffer_length <= 0.3):
|
| 314 |
+
probable_camel_cased = True
|
| 315 |
+
|
| 316 |
+
if not probable_camel_cased:
|
| 317 |
+
self._foreign_long_count += 1
|
| 318 |
+
self._is_current_word_bad = True
|
| 319 |
+
|
| 320 |
+
if self._is_current_word_bad:
|
| 321 |
+
self._bad_word_count += 1
|
| 322 |
+
self._bad_character_count += len(self._buffer)
|
| 323 |
+
self._is_current_word_bad = False
|
| 324 |
+
|
| 325 |
+
self._foreign_long_watch = False
|
| 326 |
+
self._buffer = ""
|
| 327 |
+
self._buffer_accent_count = 0
|
| 328 |
+
elif (
|
| 329 |
+
character not in {"<", ">", "-", "=", "~", "|", "_"}
|
| 330 |
+
and character.isdigit() is False
|
| 331 |
+
and is_symbol(character)
|
| 332 |
+
):
|
| 333 |
+
self._is_current_word_bad = True
|
| 334 |
+
self._buffer += character
|
| 335 |
+
|
| 336 |
+
def reset(self) -> None: # pragma: no cover
|
| 337 |
+
self._buffer = ""
|
| 338 |
+
self._is_current_word_bad = False
|
| 339 |
+
self._foreign_long_watch = False
|
| 340 |
+
self._bad_word_count = 0
|
| 341 |
+
self._word_count = 0
|
| 342 |
+
self._character_count = 0
|
| 343 |
+
self._bad_character_count = 0
|
| 344 |
+
self._foreign_long_count = 0
|
| 345 |
+
|
| 346 |
+
@property
|
| 347 |
+
def ratio(self) -> float:
|
| 348 |
+
if self._word_count <= 10 and self._foreign_long_count == 0:
|
| 349 |
+
return 0.0
|
| 350 |
+
|
| 351 |
+
return self._bad_character_count / self._character_count
|
| 352 |
+
|
| 353 |
+
|
| 354 |
+
class CjkInvalidStopPlugin(MessDetectorPlugin):
|
| 355 |
+
"""
|
| 356 |
+
GB(Chinese) based encoding often render the stop incorrectly when the content does not fit and
|
| 357 |
+
can be easily detected. Searching for the overuse of '丅' and '丄'.
|
| 358 |
+
"""
|
| 359 |
+
|
| 360 |
+
def __init__(self) -> None:
|
| 361 |
+
self._wrong_stop_count: int = 0
|
| 362 |
+
self._cjk_character_count: int = 0
|
| 363 |
+
|
| 364 |
+
def eligible(self, character: str) -> bool:
|
| 365 |
+
return True
|
| 366 |
+
|
| 367 |
+
def feed(self, character: str) -> None:
|
| 368 |
+
if character in {"丅", "丄"}:
|
| 369 |
+
self._wrong_stop_count += 1
|
| 370 |
+
return
|
| 371 |
+
if is_cjk(character):
|
| 372 |
+
self._cjk_character_count += 1
|
| 373 |
+
|
| 374 |
+
def reset(self) -> None: # pragma: no cover
|
| 375 |
+
self._wrong_stop_count = 0
|
| 376 |
+
self._cjk_character_count = 0
|
| 377 |
+
|
| 378 |
+
@property
|
| 379 |
+
def ratio(self) -> float:
|
| 380 |
+
if self._cjk_character_count < 16:
|
| 381 |
+
return 0.0
|
| 382 |
+
return self._wrong_stop_count / self._cjk_character_count
|
| 383 |
+
|
| 384 |
+
|
| 385 |
+
class ArchaicUpperLowerPlugin(MessDetectorPlugin):
|
| 386 |
+
def __init__(self) -> None:
|
| 387 |
+
self._buf: bool = False
|
| 388 |
+
|
| 389 |
+
self._character_count_since_last_sep: int = 0
|
| 390 |
+
|
| 391 |
+
self._successive_upper_lower_count: int = 0
|
| 392 |
+
self._successive_upper_lower_count_final: int = 0
|
| 393 |
+
|
| 394 |
+
self._character_count: int = 0
|
| 395 |
+
|
| 396 |
+
self._last_alpha_seen: Optional[str] = None
|
| 397 |
+
self._current_ascii_only: bool = True
|
| 398 |
+
|
| 399 |
+
def eligible(self, character: str) -> bool:
|
| 400 |
+
return True
|
| 401 |
+
|
| 402 |
+
def feed(self, character: str) -> None:
|
| 403 |
+
is_concerned = character.isalpha() and is_case_variable(character)
|
| 404 |
+
chunk_sep = is_concerned is False
|
| 405 |
+
|
| 406 |
+
if chunk_sep and self._character_count_since_last_sep > 0:
|
| 407 |
+
if (
|
| 408 |
+
self._character_count_since_last_sep <= 64
|
| 409 |
+
and character.isdigit() is False
|
| 410 |
+
and self._current_ascii_only is False
|
| 411 |
+
):
|
| 412 |
+
self._successive_upper_lower_count_final += (
|
| 413 |
+
self._successive_upper_lower_count
|
| 414 |
+
)
|
| 415 |
+
|
| 416 |
+
self._successive_upper_lower_count = 0
|
| 417 |
+
self._character_count_since_last_sep = 0
|
| 418 |
+
self._last_alpha_seen = None
|
| 419 |
+
self._buf = False
|
| 420 |
+
self._character_count += 1
|
| 421 |
+
self._current_ascii_only = True
|
| 422 |
+
|
| 423 |
+
return
|
| 424 |
+
|
| 425 |
+
if self._current_ascii_only is True and character.isascii() is False:
|
| 426 |
+
self._current_ascii_only = False
|
| 427 |
+
|
| 428 |
+
if self._last_alpha_seen is not None:
|
| 429 |
+
if (character.isupper() and self._last_alpha_seen.islower()) or (
|
| 430 |
+
character.islower() and self._last_alpha_seen.isupper()
|
| 431 |
+
):
|
| 432 |
+
if self._buf is True:
|
| 433 |
+
self._successive_upper_lower_count += 2
|
| 434 |
+
self._buf = False
|
| 435 |
+
else:
|
| 436 |
+
self._buf = True
|
| 437 |
+
else:
|
| 438 |
+
self._buf = False
|
| 439 |
+
|
| 440 |
+
self._character_count += 1
|
| 441 |
+
self._character_count_since_last_sep += 1
|
| 442 |
+
self._last_alpha_seen = character
|
| 443 |
+
|
| 444 |
+
def reset(self) -> None: # pragma: no cover
|
| 445 |
+
self._character_count = 0
|
| 446 |
+
self._character_count_since_last_sep = 0
|
| 447 |
+
self._successive_upper_lower_count = 0
|
| 448 |
+
self._successive_upper_lower_count_final = 0
|
| 449 |
+
self._last_alpha_seen = None
|
| 450 |
+
self._buf = False
|
| 451 |
+
self._current_ascii_only = True
|
| 452 |
+
|
| 453 |
+
@property
|
| 454 |
+
def ratio(self) -> float:
|
| 455 |
+
if self._character_count == 0:
|
| 456 |
+
return 0.0
|
| 457 |
+
|
| 458 |
+
return self._successive_upper_lower_count_final / self._character_count
|
| 459 |
+
|
| 460 |
+
|
| 461 |
+
class ArabicIsolatedFormPlugin(MessDetectorPlugin):
|
| 462 |
+
def __init__(self) -> None:
|
| 463 |
+
self._character_count: int = 0
|
| 464 |
+
self._isolated_form_count: int = 0
|
| 465 |
+
|
| 466 |
+
def reset(self) -> None: # pragma: no cover
|
| 467 |
+
self._character_count = 0
|
| 468 |
+
self._isolated_form_count = 0
|
| 469 |
+
|
| 470 |
+
def eligible(self, character: str) -> bool:
|
| 471 |
+
return is_arabic(character)
|
| 472 |
+
|
| 473 |
+
def feed(self, character: str) -> None:
|
| 474 |
+
self._character_count += 1
|
| 475 |
+
|
| 476 |
+
if is_arabic_isolated_form(character):
|
| 477 |
+
self._isolated_form_count += 1
|
| 478 |
+
|
| 479 |
+
@property
|
| 480 |
+
def ratio(self) -> float:
|
| 481 |
+
if self._character_count < 8:
|
| 482 |
+
return 0.0
|
| 483 |
+
|
| 484 |
+
isolated_form_usage: float = self._isolated_form_count / self._character_count
|
| 485 |
+
|
| 486 |
+
return isolated_form_usage
|
| 487 |
+
|
| 488 |
+
|
| 489 |
+
@lru_cache(maxsize=1024)
|
| 490 |
+
def is_suspiciously_successive_range(
|
| 491 |
+
unicode_range_a: Optional[str], unicode_range_b: Optional[str]
|
| 492 |
+
) -> bool:
|
| 493 |
+
"""
|
| 494 |
+
Determine if two Unicode range seen next to each other can be considered as suspicious.
|
| 495 |
+
"""
|
| 496 |
+
if unicode_range_a is None or unicode_range_b is None:
|
| 497 |
+
return True
|
| 498 |
+
|
| 499 |
+
if unicode_range_a == unicode_range_b:
|
| 500 |
+
return False
|
| 501 |
+
|
| 502 |
+
if "Latin" in unicode_range_a and "Latin" in unicode_range_b:
|
| 503 |
+
return False
|
| 504 |
+
|
| 505 |
+
if "Emoticons" in unicode_range_a or "Emoticons" in unicode_range_b:
|
| 506 |
+
return False
|
| 507 |
+
|
| 508 |
+
# Latin characters can be accompanied with a combining diacritical mark
|
| 509 |
+
# eg. Vietnamese.
|
| 510 |
+
if ("Latin" in unicode_range_a or "Latin" in unicode_range_b) and (
|
| 511 |
+
"Combining" in unicode_range_a or "Combining" in unicode_range_b
|
| 512 |
+
):
|
| 513 |
+
return False
|
| 514 |
+
|
| 515 |
+
keywords_range_a, keywords_range_b = unicode_range_a.split(
|
| 516 |
+
" "
|
| 517 |
+
), unicode_range_b.split(" ")
|
| 518 |
+
|
| 519 |
+
for el in keywords_range_a:
|
| 520 |
+
if el in UNICODE_SECONDARY_RANGE_KEYWORD:
|
| 521 |
+
continue
|
| 522 |
+
if el in keywords_range_b:
|
| 523 |
+
return False
|
| 524 |
+
|
| 525 |
+
# Japanese Exception
|
| 526 |
+
range_a_jp_chars, range_b_jp_chars = (
|
| 527 |
+
unicode_range_a
|
| 528 |
+
in (
|
| 529 |
+
"Hiragana",
|
| 530 |
+
"Katakana",
|
| 531 |
+
),
|
| 532 |
+
unicode_range_b in ("Hiragana", "Katakana"),
|
| 533 |
+
)
|
| 534 |
+
if (range_a_jp_chars or range_b_jp_chars) and (
|
| 535 |
+
"CJK" in unicode_range_a or "CJK" in unicode_range_b
|
| 536 |
+
):
|
| 537 |
+
return False
|
| 538 |
+
if range_a_jp_chars and range_b_jp_chars:
|
| 539 |
+
return False
|
| 540 |
+
|
| 541 |
+
if "Hangul" in unicode_range_a or "Hangul" in unicode_range_b:
|
| 542 |
+
if "CJK" in unicode_range_a or "CJK" in unicode_range_b:
|
| 543 |
+
return False
|
| 544 |
+
if unicode_range_a == "Basic Latin" or unicode_range_b == "Basic Latin":
|
| 545 |
+
return False
|
| 546 |
+
|
| 547 |
+
# Chinese/Japanese use dedicated range for punctuation and/or separators.
|
| 548 |
+
if ("CJK" in unicode_range_a or "CJK" in unicode_range_b) or (
|
| 549 |
+
unicode_range_a in ["Katakana", "Hiragana"]
|
| 550 |
+
and unicode_range_b in ["Katakana", "Hiragana"]
|
| 551 |
+
):
|
| 552 |
+
if "Punctuation" in unicode_range_a or "Punctuation" in unicode_range_b:
|
| 553 |
+
return False
|
| 554 |
+
if "Forms" in unicode_range_a or "Forms" in unicode_range_b:
|
| 555 |
+
return False
|
| 556 |
+
if unicode_range_a == "Basic Latin" or unicode_range_b == "Basic Latin":
|
| 557 |
+
return False
|
| 558 |
+
|
| 559 |
+
return True
|
| 560 |
+
|
| 561 |
+
|
| 562 |
+
@lru_cache(maxsize=2048)
|
| 563 |
+
def mess_ratio(
|
| 564 |
+
decoded_sequence: str, maximum_threshold: float = 0.2, debug: bool = False
|
| 565 |
+
) -> float:
|
| 566 |
+
"""
|
| 567 |
+
Compute a mess ratio given a decoded bytes sequence. The maximum threshold does stop the computation earlier.
|
| 568 |
+
"""
|
| 569 |
+
|
| 570 |
+
detectors: List[MessDetectorPlugin] = [
|
| 571 |
+
md_class() for md_class in MessDetectorPlugin.__subclasses__()
|
| 572 |
+
]
|
| 573 |
+
|
| 574 |
+
length: int = len(decoded_sequence) + 1
|
| 575 |
+
|
| 576 |
+
mean_mess_ratio: float = 0.0
|
| 577 |
+
|
| 578 |
+
if length < 512:
|
| 579 |
+
intermediary_mean_mess_ratio_calc: int = 32
|
| 580 |
+
elif length <= 1024:
|
| 581 |
+
intermediary_mean_mess_ratio_calc = 64
|
| 582 |
+
else:
|
| 583 |
+
intermediary_mean_mess_ratio_calc = 128
|
| 584 |
+
|
| 585 |
+
for character, index in zip(decoded_sequence + "\n", range(length)):
|
| 586 |
+
for detector in detectors:
|
| 587 |
+
if detector.eligible(character):
|
| 588 |
+
detector.feed(character)
|
| 589 |
+
|
| 590 |
+
if (
|
| 591 |
+
index > 0 and index % intermediary_mean_mess_ratio_calc == 0
|
| 592 |
+
) or index == length - 1:
|
| 593 |
+
mean_mess_ratio = sum(dt.ratio for dt in detectors)
|
| 594 |
+
|
| 595 |
+
if mean_mess_ratio >= maximum_threshold:
|
| 596 |
+
break
|
| 597 |
+
|
| 598 |
+
if debug:
|
| 599 |
+
logger = getLogger("charset_normalizer")
|
| 600 |
+
|
| 601 |
+
logger.log(
|
| 602 |
+
TRACE,
|
| 603 |
+
"Mess-detector extended-analysis start. "
|
| 604 |
+
f"intermediary_mean_mess_ratio_calc={intermediary_mean_mess_ratio_calc} mean_mess_ratio={mean_mess_ratio} "
|
| 605 |
+
f"maximum_threshold={maximum_threshold}",
|
| 606 |
+
)
|
| 607 |
+
|
| 608 |
+
if len(decoded_sequence) > 16:
|
| 609 |
+
logger.log(TRACE, f"Starting with: {decoded_sequence[:16]}")
|
| 610 |
+
logger.log(TRACE, f"Ending with: {decoded_sequence[-16::]}")
|
| 611 |
+
|
| 612 |
+
for dt in detectors: # pragma: nocover
|
| 613 |
+
logger.log(TRACE, f"{dt.__class__}: {dt.ratio}")
|
| 614 |
+
|
| 615 |
+
return round(mean_mess_ratio, 3)
|
parrot/lib/python3.10/site-packages/charset_normalizer/models.py
ADDED
|
@@ -0,0 +1,340 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from encodings.aliases import aliases
|
| 2 |
+
from hashlib import sha256
|
| 3 |
+
from json import dumps
|
| 4 |
+
from typing import Any, Dict, Iterator, List, Optional, Tuple, Union
|
| 5 |
+
|
| 6 |
+
from .constant import TOO_BIG_SEQUENCE
|
| 7 |
+
from .utils import iana_name, is_multi_byte_encoding, unicode_range
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
class CharsetMatch:
|
| 11 |
+
def __init__(
|
| 12 |
+
self,
|
| 13 |
+
payload: bytes,
|
| 14 |
+
guessed_encoding: str,
|
| 15 |
+
mean_mess_ratio: float,
|
| 16 |
+
has_sig_or_bom: bool,
|
| 17 |
+
languages: "CoherenceMatches",
|
| 18 |
+
decoded_payload: Optional[str] = None,
|
| 19 |
+
):
|
| 20 |
+
self._payload: bytes = payload
|
| 21 |
+
|
| 22 |
+
self._encoding: str = guessed_encoding
|
| 23 |
+
self._mean_mess_ratio: float = mean_mess_ratio
|
| 24 |
+
self._languages: CoherenceMatches = languages
|
| 25 |
+
self._has_sig_or_bom: bool = has_sig_or_bom
|
| 26 |
+
self._unicode_ranges: Optional[List[str]] = None
|
| 27 |
+
|
| 28 |
+
self._leaves: List[CharsetMatch] = []
|
| 29 |
+
self._mean_coherence_ratio: float = 0.0
|
| 30 |
+
|
| 31 |
+
self._output_payload: Optional[bytes] = None
|
| 32 |
+
self._output_encoding: Optional[str] = None
|
| 33 |
+
|
| 34 |
+
self._string: Optional[str] = decoded_payload
|
| 35 |
+
|
| 36 |
+
def __eq__(self, other: object) -> bool:
|
| 37 |
+
if not isinstance(other, CharsetMatch):
|
| 38 |
+
raise TypeError(
|
| 39 |
+
"__eq__ cannot be invoked on {} and {}.".format(
|
| 40 |
+
str(other.__class__), str(self.__class__)
|
| 41 |
+
)
|
| 42 |
+
)
|
| 43 |
+
return self.encoding == other.encoding and self.fingerprint == other.fingerprint
|
| 44 |
+
|
| 45 |
+
def __lt__(self, other: object) -> bool:
|
| 46 |
+
"""
|
| 47 |
+
Implemented to make sorted available upon CharsetMatches items.
|
| 48 |
+
"""
|
| 49 |
+
if not isinstance(other, CharsetMatch):
|
| 50 |
+
raise ValueError
|
| 51 |
+
|
| 52 |
+
chaos_difference: float = abs(self.chaos - other.chaos)
|
| 53 |
+
coherence_difference: float = abs(self.coherence - other.coherence)
|
| 54 |
+
|
| 55 |
+
# Below 1% difference --> Use Coherence
|
| 56 |
+
if chaos_difference < 0.01 and coherence_difference > 0.02:
|
| 57 |
+
return self.coherence > other.coherence
|
| 58 |
+
elif chaos_difference < 0.01 and coherence_difference <= 0.02:
|
| 59 |
+
# When having a difficult decision, use the result that decoded as many multi-byte as possible.
|
| 60 |
+
# preserve RAM usage!
|
| 61 |
+
if len(self._payload) >= TOO_BIG_SEQUENCE:
|
| 62 |
+
return self.chaos < other.chaos
|
| 63 |
+
return self.multi_byte_usage > other.multi_byte_usage
|
| 64 |
+
|
| 65 |
+
return self.chaos < other.chaos
|
| 66 |
+
|
| 67 |
+
@property
|
| 68 |
+
def multi_byte_usage(self) -> float:
|
| 69 |
+
return 1.0 - (len(str(self)) / len(self.raw))
|
| 70 |
+
|
| 71 |
+
def __str__(self) -> str:
|
| 72 |
+
# Lazy Str Loading
|
| 73 |
+
if self._string is None:
|
| 74 |
+
self._string = str(self._payload, self._encoding, "strict")
|
| 75 |
+
return self._string
|
| 76 |
+
|
| 77 |
+
def __repr__(self) -> str:
|
| 78 |
+
return "<CharsetMatch '{}' bytes({})>".format(self.encoding, self.fingerprint)
|
| 79 |
+
|
| 80 |
+
def add_submatch(self, other: "CharsetMatch") -> None:
|
| 81 |
+
if not isinstance(other, CharsetMatch) or other == self:
|
| 82 |
+
raise ValueError(
|
| 83 |
+
"Unable to add instance <{}> as a submatch of a CharsetMatch".format(
|
| 84 |
+
other.__class__
|
| 85 |
+
)
|
| 86 |
+
)
|
| 87 |
+
|
| 88 |
+
other._string = None # Unload RAM usage; dirty trick.
|
| 89 |
+
self._leaves.append(other)
|
| 90 |
+
|
| 91 |
+
@property
|
| 92 |
+
def encoding(self) -> str:
|
| 93 |
+
return self._encoding
|
| 94 |
+
|
| 95 |
+
@property
|
| 96 |
+
def encoding_aliases(self) -> List[str]:
|
| 97 |
+
"""
|
| 98 |
+
Encoding name are known by many name, using this could help when searching for IBM855 when it's listed as CP855.
|
| 99 |
+
"""
|
| 100 |
+
also_known_as: List[str] = []
|
| 101 |
+
for u, p in aliases.items():
|
| 102 |
+
if self.encoding == u:
|
| 103 |
+
also_known_as.append(p)
|
| 104 |
+
elif self.encoding == p:
|
| 105 |
+
also_known_as.append(u)
|
| 106 |
+
return also_known_as
|
| 107 |
+
|
| 108 |
+
@property
|
| 109 |
+
def bom(self) -> bool:
|
| 110 |
+
return self._has_sig_or_bom
|
| 111 |
+
|
| 112 |
+
@property
|
| 113 |
+
def byte_order_mark(self) -> bool:
|
| 114 |
+
return self._has_sig_or_bom
|
| 115 |
+
|
| 116 |
+
@property
|
| 117 |
+
def languages(self) -> List[str]:
|
| 118 |
+
"""
|
| 119 |
+
Return the complete list of possible languages found in decoded sequence.
|
| 120 |
+
Usually not really useful. Returned list may be empty even if 'language' property return something != 'Unknown'.
|
| 121 |
+
"""
|
| 122 |
+
return [e[0] for e in self._languages]
|
| 123 |
+
|
| 124 |
+
@property
|
| 125 |
+
def language(self) -> str:
|
| 126 |
+
"""
|
| 127 |
+
Most probable language found in decoded sequence. If none were detected or inferred, the property will return
|
| 128 |
+
"Unknown".
|
| 129 |
+
"""
|
| 130 |
+
if not self._languages:
|
| 131 |
+
# Trying to infer the language based on the given encoding
|
| 132 |
+
# Its either English or we should not pronounce ourselves in certain cases.
|
| 133 |
+
if "ascii" in self.could_be_from_charset:
|
| 134 |
+
return "English"
|
| 135 |
+
|
| 136 |
+
# doing it there to avoid circular import
|
| 137 |
+
from charset_normalizer.cd import encoding_languages, mb_encoding_languages
|
| 138 |
+
|
| 139 |
+
languages = (
|
| 140 |
+
mb_encoding_languages(self.encoding)
|
| 141 |
+
if is_multi_byte_encoding(self.encoding)
|
| 142 |
+
else encoding_languages(self.encoding)
|
| 143 |
+
)
|
| 144 |
+
|
| 145 |
+
if len(languages) == 0 or "Latin Based" in languages:
|
| 146 |
+
return "Unknown"
|
| 147 |
+
|
| 148 |
+
return languages[0]
|
| 149 |
+
|
| 150 |
+
return self._languages[0][0]
|
| 151 |
+
|
| 152 |
+
@property
|
| 153 |
+
def chaos(self) -> float:
|
| 154 |
+
return self._mean_mess_ratio
|
| 155 |
+
|
| 156 |
+
@property
|
| 157 |
+
def coherence(self) -> float:
|
| 158 |
+
if not self._languages:
|
| 159 |
+
return 0.0
|
| 160 |
+
return self._languages[0][1]
|
| 161 |
+
|
| 162 |
+
@property
|
| 163 |
+
def percent_chaos(self) -> float:
|
| 164 |
+
return round(self.chaos * 100, ndigits=3)
|
| 165 |
+
|
| 166 |
+
@property
|
| 167 |
+
def percent_coherence(self) -> float:
|
| 168 |
+
return round(self.coherence * 100, ndigits=3)
|
| 169 |
+
|
| 170 |
+
@property
|
| 171 |
+
def raw(self) -> bytes:
|
| 172 |
+
"""
|
| 173 |
+
Original untouched bytes.
|
| 174 |
+
"""
|
| 175 |
+
return self._payload
|
| 176 |
+
|
| 177 |
+
@property
|
| 178 |
+
def submatch(self) -> List["CharsetMatch"]:
|
| 179 |
+
return self._leaves
|
| 180 |
+
|
| 181 |
+
@property
|
| 182 |
+
def has_submatch(self) -> bool:
|
| 183 |
+
return len(self._leaves) > 0
|
| 184 |
+
|
| 185 |
+
@property
|
| 186 |
+
def alphabets(self) -> List[str]:
|
| 187 |
+
if self._unicode_ranges is not None:
|
| 188 |
+
return self._unicode_ranges
|
| 189 |
+
# list detected ranges
|
| 190 |
+
detected_ranges: List[Optional[str]] = [
|
| 191 |
+
unicode_range(char) for char in str(self)
|
| 192 |
+
]
|
| 193 |
+
# filter and sort
|
| 194 |
+
self._unicode_ranges = sorted(list({r for r in detected_ranges if r}))
|
| 195 |
+
return self._unicode_ranges
|
| 196 |
+
|
| 197 |
+
@property
|
| 198 |
+
def could_be_from_charset(self) -> List[str]:
|
| 199 |
+
"""
|
| 200 |
+
The complete list of encoding that output the exact SAME str result and therefore could be the originating
|
| 201 |
+
encoding.
|
| 202 |
+
This list does include the encoding available in property 'encoding'.
|
| 203 |
+
"""
|
| 204 |
+
return [self._encoding] + [m.encoding for m in self._leaves]
|
| 205 |
+
|
| 206 |
+
def output(self, encoding: str = "utf_8") -> bytes:
|
| 207 |
+
"""
|
| 208 |
+
Method to get re-encoded bytes payload using given target encoding. Default to UTF-8.
|
| 209 |
+
Any errors will be simply ignored by the encoder NOT replaced.
|
| 210 |
+
"""
|
| 211 |
+
if self._output_encoding is None or self._output_encoding != encoding:
|
| 212 |
+
self._output_encoding = encoding
|
| 213 |
+
self._output_payload = str(self).encode(encoding, "replace")
|
| 214 |
+
|
| 215 |
+
return self._output_payload # type: ignore
|
| 216 |
+
|
| 217 |
+
@property
|
| 218 |
+
def fingerprint(self) -> str:
|
| 219 |
+
"""
|
| 220 |
+
Retrieve the unique SHA256 computed using the transformed (re-encoded) payload. Not the original one.
|
| 221 |
+
"""
|
| 222 |
+
return sha256(self.output()).hexdigest()
|
| 223 |
+
|
| 224 |
+
|
| 225 |
+
class CharsetMatches:
|
| 226 |
+
"""
|
| 227 |
+
Container with every CharsetMatch items ordered by default from most probable to the less one.
|
| 228 |
+
Act like a list(iterable) but does not implements all related methods.
|
| 229 |
+
"""
|
| 230 |
+
|
| 231 |
+
def __init__(self, results: Optional[List[CharsetMatch]] = None):
|
| 232 |
+
self._results: List[CharsetMatch] = sorted(results) if results else []
|
| 233 |
+
|
| 234 |
+
def __iter__(self) -> Iterator[CharsetMatch]:
|
| 235 |
+
yield from self._results
|
| 236 |
+
|
| 237 |
+
def __getitem__(self, item: Union[int, str]) -> CharsetMatch:
|
| 238 |
+
"""
|
| 239 |
+
Retrieve a single item either by its position or encoding name (alias may be used here).
|
| 240 |
+
Raise KeyError upon invalid index or encoding not present in results.
|
| 241 |
+
"""
|
| 242 |
+
if isinstance(item, int):
|
| 243 |
+
return self._results[item]
|
| 244 |
+
if isinstance(item, str):
|
| 245 |
+
item = iana_name(item, False)
|
| 246 |
+
for result in self._results:
|
| 247 |
+
if item in result.could_be_from_charset:
|
| 248 |
+
return result
|
| 249 |
+
raise KeyError
|
| 250 |
+
|
| 251 |
+
def __len__(self) -> int:
|
| 252 |
+
return len(self._results)
|
| 253 |
+
|
| 254 |
+
def __bool__(self) -> bool:
|
| 255 |
+
return len(self._results) > 0
|
| 256 |
+
|
| 257 |
+
def append(self, item: CharsetMatch) -> None:
|
| 258 |
+
"""
|
| 259 |
+
Insert a single match. Will be inserted accordingly to preserve sort.
|
| 260 |
+
Can be inserted as a submatch.
|
| 261 |
+
"""
|
| 262 |
+
if not isinstance(item, CharsetMatch):
|
| 263 |
+
raise ValueError(
|
| 264 |
+
"Cannot append instance '{}' to CharsetMatches".format(
|
| 265 |
+
str(item.__class__)
|
| 266 |
+
)
|
| 267 |
+
)
|
| 268 |
+
# We should disable the submatch factoring when the input file is too heavy (conserve RAM usage)
|
| 269 |
+
if len(item.raw) <= TOO_BIG_SEQUENCE:
|
| 270 |
+
for match in self._results:
|
| 271 |
+
if match.fingerprint == item.fingerprint and match.chaos == item.chaos:
|
| 272 |
+
match.add_submatch(item)
|
| 273 |
+
return
|
| 274 |
+
self._results.append(item)
|
| 275 |
+
self._results = sorted(self._results)
|
| 276 |
+
|
| 277 |
+
def best(self) -> Optional["CharsetMatch"]:
|
| 278 |
+
"""
|
| 279 |
+
Simply return the first match. Strict equivalent to matches[0].
|
| 280 |
+
"""
|
| 281 |
+
if not self._results:
|
| 282 |
+
return None
|
| 283 |
+
return self._results[0]
|
| 284 |
+
|
| 285 |
+
def first(self) -> Optional["CharsetMatch"]:
|
| 286 |
+
"""
|
| 287 |
+
Redundant method, call the method best(). Kept for BC reasons.
|
| 288 |
+
"""
|
| 289 |
+
return self.best()
|
| 290 |
+
|
| 291 |
+
|
| 292 |
+
CoherenceMatch = Tuple[str, float]
|
| 293 |
+
CoherenceMatches = List[CoherenceMatch]
|
| 294 |
+
|
| 295 |
+
|
| 296 |
+
class CliDetectionResult:
|
| 297 |
+
def __init__(
|
| 298 |
+
self,
|
| 299 |
+
path: str,
|
| 300 |
+
encoding: Optional[str],
|
| 301 |
+
encoding_aliases: List[str],
|
| 302 |
+
alternative_encodings: List[str],
|
| 303 |
+
language: str,
|
| 304 |
+
alphabets: List[str],
|
| 305 |
+
has_sig_or_bom: bool,
|
| 306 |
+
chaos: float,
|
| 307 |
+
coherence: float,
|
| 308 |
+
unicode_path: Optional[str],
|
| 309 |
+
is_preferred: bool,
|
| 310 |
+
):
|
| 311 |
+
self.path: str = path
|
| 312 |
+
self.unicode_path: Optional[str] = unicode_path
|
| 313 |
+
self.encoding: Optional[str] = encoding
|
| 314 |
+
self.encoding_aliases: List[str] = encoding_aliases
|
| 315 |
+
self.alternative_encodings: List[str] = alternative_encodings
|
| 316 |
+
self.language: str = language
|
| 317 |
+
self.alphabets: List[str] = alphabets
|
| 318 |
+
self.has_sig_or_bom: bool = has_sig_or_bom
|
| 319 |
+
self.chaos: float = chaos
|
| 320 |
+
self.coherence: float = coherence
|
| 321 |
+
self.is_preferred: bool = is_preferred
|
| 322 |
+
|
| 323 |
+
@property
|
| 324 |
+
def __dict__(self) -> Dict[str, Any]: # type: ignore
|
| 325 |
+
return {
|
| 326 |
+
"path": self.path,
|
| 327 |
+
"encoding": self.encoding,
|
| 328 |
+
"encoding_aliases": self.encoding_aliases,
|
| 329 |
+
"alternative_encodings": self.alternative_encodings,
|
| 330 |
+
"language": self.language,
|
| 331 |
+
"alphabets": self.alphabets,
|
| 332 |
+
"has_sig_or_bom": self.has_sig_or_bom,
|
| 333 |
+
"chaos": self.chaos,
|
| 334 |
+
"coherence": self.coherence,
|
| 335 |
+
"unicode_path": self.unicode_path,
|
| 336 |
+
"is_preferred": self.is_preferred,
|
| 337 |
+
}
|
| 338 |
+
|
| 339 |
+
def to_json(self) -> str:
|
| 340 |
+
return dumps(self.__dict__, ensure_ascii=True, indent=4)
|
parrot/lib/python3.10/site-packages/charset_normalizer/py.typed
ADDED
|
File without changes
|
parrot/lib/python3.10/site-packages/charset_normalizer/utils.py
ADDED
|
@@ -0,0 +1,421 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import importlib
|
| 2 |
+
import logging
|
| 3 |
+
import unicodedata
|
| 4 |
+
from codecs import IncrementalDecoder
|
| 5 |
+
from encodings.aliases import aliases
|
| 6 |
+
from functools import lru_cache
|
| 7 |
+
from re import findall
|
| 8 |
+
from typing import Generator, List, Optional, Set, Tuple, Union
|
| 9 |
+
|
| 10 |
+
from _multibytecodec import MultibyteIncrementalDecoder
|
| 11 |
+
|
| 12 |
+
from .constant import (
|
| 13 |
+
ENCODING_MARKS,
|
| 14 |
+
IANA_SUPPORTED_SIMILAR,
|
| 15 |
+
RE_POSSIBLE_ENCODING_INDICATION,
|
| 16 |
+
UNICODE_RANGES_COMBINED,
|
| 17 |
+
UNICODE_SECONDARY_RANGE_KEYWORD,
|
| 18 |
+
UTF8_MAXIMAL_ALLOCATION,
|
| 19 |
+
)
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 23 |
+
def is_accentuated(character: str) -> bool:
|
| 24 |
+
try:
|
| 25 |
+
description: str = unicodedata.name(character)
|
| 26 |
+
except ValueError:
|
| 27 |
+
return False
|
| 28 |
+
return (
|
| 29 |
+
"WITH GRAVE" in description
|
| 30 |
+
or "WITH ACUTE" in description
|
| 31 |
+
or "WITH CEDILLA" in description
|
| 32 |
+
or "WITH DIAERESIS" in description
|
| 33 |
+
or "WITH CIRCUMFLEX" in description
|
| 34 |
+
or "WITH TILDE" in description
|
| 35 |
+
or "WITH MACRON" in description
|
| 36 |
+
or "WITH RING ABOVE" in description
|
| 37 |
+
)
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 41 |
+
def remove_accent(character: str) -> str:
|
| 42 |
+
decomposed: str = unicodedata.decomposition(character)
|
| 43 |
+
if not decomposed:
|
| 44 |
+
return character
|
| 45 |
+
|
| 46 |
+
codes: List[str] = decomposed.split(" ")
|
| 47 |
+
|
| 48 |
+
return chr(int(codes[0], 16))
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 52 |
+
def unicode_range(character: str) -> Optional[str]:
|
| 53 |
+
"""
|
| 54 |
+
Retrieve the Unicode range official name from a single character.
|
| 55 |
+
"""
|
| 56 |
+
character_ord: int = ord(character)
|
| 57 |
+
|
| 58 |
+
for range_name, ord_range in UNICODE_RANGES_COMBINED.items():
|
| 59 |
+
if character_ord in ord_range:
|
| 60 |
+
return range_name
|
| 61 |
+
|
| 62 |
+
return None
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 66 |
+
def is_latin(character: str) -> bool:
|
| 67 |
+
try:
|
| 68 |
+
description: str = unicodedata.name(character)
|
| 69 |
+
except ValueError:
|
| 70 |
+
return False
|
| 71 |
+
return "LATIN" in description
|
| 72 |
+
|
| 73 |
+
|
| 74 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 75 |
+
def is_punctuation(character: str) -> bool:
|
| 76 |
+
character_category: str = unicodedata.category(character)
|
| 77 |
+
|
| 78 |
+
if "P" in character_category:
|
| 79 |
+
return True
|
| 80 |
+
|
| 81 |
+
character_range: Optional[str] = unicode_range(character)
|
| 82 |
+
|
| 83 |
+
if character_range is None:
|
| 84 |
+
return False
|
| 85 |
+
|
| 86 |
+
return "Punctuation" in character_range
|
| 87 |
+
|
| 88 |
+
|
| 89 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 90 |
+
def is_symbol(character: str) -> bool:
|
| 91 |
+
character_category: str = unicodedata.category(character)
|
| 92 |
+
|
| 93 |
+
if "S" in character_category or "N" in character_category:
|
| 94 |
+
return True
|
| 95 |
+
|
| 96 |
+
character_range: Optional[str] = unicode_range(character)
|
| 97 |
+
|
| 98 |
+
if character_range is None:
|
| 99 |
+
return False
|
| 100 |
+
|
| 101 |
+
return "Forms" in character_range and character_category != "Lo"
|
| 102 |
+
|
| 103 |
+
|
| 104 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 105 |
+
def is_emoticon(character: str) -> bool:
|
| 106 |
+
character_range: Optional[str] = unicode_range(character)
|
| 107 |
+
|
| 108 |
+
if character_range is None:
|
| 109 |
+
return False
|
| 110 |
+
|
| 111 |
+
return "Emoticons" in character_range or "Pictographs" in character_range
|
| 112 |
+
|
| 113 |
+
|
| 114 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 115 |
+
def is_separator(character: str) -> bool:
|
| 116 |
+
if character.isspace() or character in {"|", "+", "<", ">"}:
|
| 117 |
+
return True
|
| 118 |
+
|
| 119 |
+
character_category: str = unicodedata.category(character)
|
| 120 |
+
|
| 121 |
+
return "Z" in character_category or character_category in {"Po", "Pd", "Pc"}
|
| 122 |
+
|
| 123 |
+
|
| 124 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 125 |
+
def is_case_variable(character: str) -> bool:
|
| 126 |
+
return character.islower() != character.isupper()
|
| 127 |
+
|
| 128 |
+
|
| 129 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 130 |
+
def is_cjk(character: str) -> bool:
|
| 131 |
+
try:
|
| 132 |
+
character_name = unicodedata.name(character)
|
| 133 |
+
except ValueError:
|
| 134 |
+
return False
|
| 135 |
+
|
| 136 |
+
return "CJK" in character_name
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 140 |
+
def is_hiragana(character: str) -> bool:
|
| 141 |
+
try:
|
| 142 |
+
character_name = unicodedata.name(character)
|
| 143 |
+
except ValueError:
|
| 144 |
+
return False
|
| 145 |
+
|
| 146 |
+
return "HIRAGANA" in character_name
|
| 147 |
+
|
| 148 |
+
|
| 149 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 150 |
+
def is_katakana(character: str) -> bool:
|
| 151 |
+
try:
|
| 152 |
+
character_name = unicodedata.name(character)
|
| 153 |
+
except ValueError:
|
| 154 |
+
return False
|
| 155 |
+
|
| 156 |
+
return "KATAKANA" in character_name
|
| 157 |
+
|
| 158 |
+
|
| 159 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 160 |
+
def is_hangul(character: str) -> bool:
|
| 161 |
+
try:
|
| 162 |
+
character_name = unicodedata.name(character)
|
| 163 |
+
except ValueError:
|
| 164 |
+
return False
|
| 165 |
+
|
| 166 |
+
return "HANGUL" in character_name
|
| 167 |
+
|
| 168 |
+
|
| 169 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 170 |
+
def is_thai(character: str) -> bool:
|
| 171 |
+
try:
|
| 172 |
+
character_name = unicodedata.name(character)
|
| 173 |
+
except ValueError:
|
| 174 |
+
return False
|
| 175 |
+
|
| 176 |
+
return "THAI" in character_name
|
| 177 |
+
|
| 178 |
+
|
| 179 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 180 |
+
def is_arabic(character: str) -> bool:
|
| 181 |
+
try:
|
| 182 |
+
character_name = unicodedata.name(character)
|
| 183 |
+
except ValueError:
|
| 184 |
+
return False
|
| 185 |
+
|
| 186 |
+
return "ARABIC" in character_name
|
| 187 |
+
|
| 188 |
+
|
| 189 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 190 |
+
def is_arabic_isolated_form(character: str) -> bool:
|
| 191 |
+
try:
|
| 192 |
+
character_name = unicodedata.name(character)
|
| 193 |
+
except ValueError:
|
| 194 |
+
return False
|
| 195 |
+
|
| 196 |
+
return "ARABIC" in character_name and "ISOLATED FORM" in character_name
|
| 197 |
+
|
| 198 |
+
|
| 199 |
+
@lru_cache(maxsize=len(UNICODE_RANGES_COMBINED))
|
| 200 |
+
def is_unicode_range_secondary(range_name: str) -> bool:
|
| 201 |
+
return any(keyword in range_name for keyword in UNICODE_SECONDARY_RANGE_KEYWORD)
|
| 202 |
+
|
| 203 |
+
|
| 204 |
+
@lru_cache(maxsize=UTF8_MAXIMAL_ALLOCATION)
|
| 205 |
+
def is_unprintable(character: str) -> bool:
|
| 206 |
+
return (
|
| 207 |
+
character.isspace() is False # includes \n \t \r \v
|
| 208 |
+
and character.isprintable() is False
|
| 209 |
+
and character != "\x1A" # Why? Its the ASCII substitute character.
|
| 210 |
+
and character != "\ufeff" # bug discovered in Python,
|
| 211 |
+
# Zero Width No-Break Space located in Arabic Presentation Forms-B, Unicode 1.1 not acknowledged as space.
|
| 212 |
+
)
|
| 213 |
+
|
| 214 |
+
|
| 215 |
+
def any_specified_encoding(sequence: bytes, search_zone: int = 8192) -> Optional[str]:
|
| 216 |
+
"""
|
| 217 |
+
Extract using ASCII-only decoder any specified encoding in the first n-bytes.
|
| 218 |
+
"""
|
| 219 |
+
if not isinstance(sequence, bytes):
|
| 220 |
+
raise TypeError
|
| 221 |
+
|
| 222 |
+
seq_len: int = len(sequence)
|
| 223 |
+
|
| 224 |
+
results: List[str] = findall(
|
| 225 |
+
RE_POSSIBLE_ENCODING_INDICATION,
|
| 226 |
+
sequence[: min(seq_len, search_zone)].decode("ascii", errors="ignore"),
|
| 227 |
+
)
|
| 228 |
+
|
| 229 |
+
if len(results) == 0:
|
| 230 |
+
return None
|
| 231 |
+
|
| 232 |
+
for specified_encoding in results:
|
| 233 |
+
specified_encoding = specified_encoding.lower().replace("-", "_")
|
| 234 |
+
|
| 235 |
+
encoding_alias: str
|
| 236 |
+
encoding_iana: str
|
| 237 |
+
|
| 238 |
+
for encoding_alias, encoding_iana in aliases.items():
|
| 239 |
+
if encoding_alias == specified_encoding:
|
| 240 |
+
return encoding_iana
|
| 241 |
+
if encoding_iana == specified_encoding:
|
| 242 |
+
return encoding_iana
|
| 243 |
+
|
| 244 |
+
return None
|
| 245 |
+
|
| 246 |
+
|
| 247 |
+
@lru_cache(maxsize=128)
|
| 248 |
+
def is_multi_byte_encoding(name: str) -> bool:
|
| 249 |
+
"""
|
| 250 |
+
Verify is a specific encoding is a multi byte one based on it IANA name
|
| 251 |
+
"""
|
| 252 |
+
return name in {
|
| 253 |
+
"utf_8",
|
| 254 |
+
"utf_8_sig",
|
| 255 |
+
"utf_16",
|
| 256 |
+
"utf_16_be",
|
| 257 |
+
"utf_16_le",
|
| 258 |
+
"utf_32",
|
| 259 |
+
"utf_32_le",
|
| 260 |
+
"utf_32_be",
|
| 261 |
+
"utf_7",
|
| 262 |
+
} or issubclass(
|
| 263 |
+
importlib.import_module("encodings.{}".format(name)).IncrementalDecoder,
|
| 264 |
+
MultibyteIncrementalDecoder,
|
| 265 |
+
)
|
| 266 |
+
|
| 267 |
+
|
| 268 |
+
def identify_sig_or_bom(sequence: bytes) -> Tuple[Optional[str], bytes]:
|
| 269 |
+
"""
|
| 270 |
+
Identify and extract SIG/BOM in given sequence.
|
| 271 |
+
"""
|
| 272 |
+
|
| 273 |
+
for iana_encoding in ENCODING_MARKS:
|
| 274 |
+
marks: Union[bytes, List[bytes]] = ENCODING_MARKS[iana_encoding]
|
| 275 |
+
|
| 276 |
+
if isinstance(marks, bytes):
|
| 277 |
+
marks = [marks]
|
| 278 |
+
|
| 279 |
+
for mark in marks:
|
| 280 |
+
if sequence.startswith(mark):
|
| 281 |
+
return iana_encoding, mark
|
| 282 |
+
|
| 283 |
+
return None, b""
|
| 284 |
+
|
| 285 |
+
|
| 286 |
+
def should_strip_sig_or_bom(iana_encoding: str) -> bool:
|
| 287 |
+
return iana_encoding not in {"utf_16", "utf_32"}
|
| 288 |
+
|
| 289 |
+
|
| 290 |
+
def iana_name(cp_name: str, strict: bool = True) -> str:
|
| 291 |
+
cp_name = cp_name.lower().replace("-", "_")
|
| 292 |
+
|
| 293 |
+
encoding_alias: str
|
| 294 |
+
encoding_iana: str
|
| 295 |
+
|
| 296 |
+
for encoding_alias, encoding_iana in aliases.items():
|
| 297 |
+
if cp_name in [encoding_alias, encoding_iana]:
|
| 298 |
+
return encoding_iana
|
| 299 |
+
|
| 300 |
+
if strict:
|
| 301 |
+
raise ValueError("Unable to retrieve IANA for '{}'".format(cp_name))
|
| 302 |
+
|
| 303 |
+
return cp_name
|
| 304 |
+
|
| 305 |
+
|
| 306 |
+
def range_scan(decoded_sequence: str) -> List[str]:
|
| 307 |
+
ranges: Set[str] = set()
|
| 308 |
+
|
| 309 |
+
for character in decoded_sequence:
|
| 310 |
+
character_range: Optional[str] = unicode_range(character)
|
| 311 |
+
|
| 312 |
+
if character_range is None:
|
| 313 |
+
continue
|
| 314 |
+
|
| 315 |
+
ranges.add(character_range)
|
| 316 |
+
|
| 317 |
+
return list(ranges)
|
| 318 |
+
|
| 319 |
+
|
| 320 |
+
def cp_similarity(iana_name_a: str, iana_name_b: str) -> float:
|
| 321 |
+
if is_multi_byte_encoding(iana_name_a) or is_multi_byte_encoding(iana_name_b):
|
| 322 |
+
return 0.0
|
| 323 |
+
|
| 324 |
+
decoder_a = importlib.import_module(
|
| 325 |
+
"encodings.{}".format(iana_name_a)
|
| 326 |
+
).IncrementalDecoder
|
| 327 |
+
decoder_b = importlib.import_module(
|
| 328 |
+
"encodings.{}".format(iana_name_b)
|
| 329 |
+
).IncrementalDecoder
|
| 330 |
+
|
| 331 |
+
id_a: IncrementalDecoder = decoder_a(errors="ignore")
|
| 332 |
+
id_b: IncrementalDecoder = decoder_b(errors="ignore")
|
| 333 |
+
|
| 334 |
+
character_match_count: int = 0
|
| 335 |
+
|
| 336 |
+
for i in range(255):
|
| 337 |
+
to_be_decoded: bytes = bytes([i])
|
| 338 |
+
if id_a.decode(to_be_decoded) == id_b.decode(to_be_decoded):
|
| 339 |
+
character_match_count += 1
|
| 340 |
+
|
| 341 |
+
return character_match_count / 254
|
| 342 |
+
|
| 343 |
+
|
| 344 |
+
def is_cp_similar(iana_name_a: str, iana_name_b: str) -> bool:
|
| 345 |
+
"""
|
| 346 |
+
Determine if two code page are at least 80% similar. IANA_SUPPORTED_SIMILAR dict was generated using
|
| 347 |
+
the function cp_similarity.
|
| 348 |
+
"""
|
| 349 |
+
return (
|
| 350 |
+
iana_name_a in IANA_SUPPORTED_SIMILAR
|
| 351 |
+
and iana_name_b in IANA_SUPPORTED_SIMILAR[iana_name_a]
|
| 352 |
+
)
|
| 353 |
+
|
| 354 |
+
|
| 355 |
+
def set_logging_handler(
|
| 356 |
+
name: str = "charset_normalizer",
|
| 357 |
+
level: int = logging.INFO,
|
| 358 |
+
format_string: str = "%(asctime)s | %(levelname)s | %(message)s",
|
| 359 |
+
) -> None:
|
| 360 |
+
logger = logging.getLogger(name)
|
| 361 |
+
logger.setLevel(level)
|
| 362 |
+
|
| 363 |
+
handler = logging.StreamHandler()
|
| 364 |
+
handler.setFormatter(logging.Formatter(format_string))
|
| 365 |
+
logger.addHandler(handler)
|
| 366 |
+
|
| 367 |
+
|
| 368 |
+
def cut_sequence_chunks(
|
| 369 |
+
sequences: bytes,
|
| 370 |
+
encoding_iana: str,
|
| 371 |
+
offsets: range,
|
| 372 |
+
chunk_size: int,
|
| 373 |
+
bom_or_sig_available: bool,
|
| 374 |
+
strip_sig_or_bom: bool,
|
| 375 |
+
sig_payload: bytes,
|
| 376 |
+
is_multi_byte_decoder: bool,
|
| 377 |
+
decoded_payload: Optional[str] = None,
|
| 378 |
+
) -> Generator[str, None, None]:
|
| 379 |
+
if decoded_payload and is_multi_byte_decoder is False:
|
| 380 |
+
for i in offsets:
|
| 381 |
+
chunk = decoded_payload[i : i + chunk_size]
|
| 382 |
+
if not chunk:
|
| 383 |
+
break
|
| 384 |
+
yield chunk
|
| 385 |
+
else:
|
| 386 |
+
for i in offsets:
|
| 387 |
+
chunk_end = i + chunk_size
|
| 388 |
+
if chunk_end > len(sequences) + 8:
|
| 389 |
+
continue
|
| 390 |
+
|
| 391 |
+
cut_sequence = sequences[i : i + chunk_size]
|
| 392 |
+
|
| 393 |
+
if bom_or_sig_available and strip_sig_or_bom is False:
|
| 394 |
+
cut_sequence = sig_payload + cut_sequence
|
| 395 |
+
|
| 396 |
+
chunk = cut_sequence.decode(
|
| 397 |
+
encoding_iana,
|
| 398 |
+
errors="ignore" if is_multi_byte_decoder else "strict",
|
| 399 |
+
)
|
| 400 |
+
|
| 401 |
+
# multi-byte bad cutting detector and adjustment
|
| 402 |
+
# not the cleanest way to perform that fix but clever enough for now.
|
| 403 |
+
if is_multi_byte_decoder and i > 0:
|
| 404 |
+
chunk_partial_size_chk: int = min(chunk_size, 16)
|
| 405 |
+
|
| 406 |
+
if (
|
| 407 |
+
decoded_payload
|
| 408 |
+
and chunk[:chunk_partial_size_chk] not in decoded_payload
|
| 409 |
+
):
|
| 410 |
+
for j in range(i, i - 4, -1):
|
| 411 |
+
cut_sequence = sequences[j:chunk_end]
|
| 412 |
+
|
| 413 |
+
if bom_or_sig_available and strip_sig_or_bom is False:
|
| 414 |
+
cut_sequence = sig_payload + cut_sequence
|
| 415 |
+
|
| 416 |
+
chunk = cut_sequence.decode(encoding_iana, errors="ignore")
|
| 417 |
+
|
| 418 |
+
if chunk[:chunk_partial_size_chk] in decoded_payload:
|
| 419 |
+
break
|
| 420 |
+
|
| 421 |
+
yield chunk
|
parrot/lib/python3.10/site-packages/charset_normalizer/version.py
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Expose version
|
| 3 |
+
"""
|
| 4 |
+
|
| 5 |
+
__version__ = "3.3.2"
|
| 6 |
+
VERSION = __version__.split(".")
|
parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/INSTALLER
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
pip
|
parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/METADATA
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Metadata-Version: 2.1
|
| 2 |
+
Name: httpx
|
| 3 |
+
Version: 0.24.0
|
| 4 |
+
Summary: The next generation HTTP client.
|
| 5 |
+
Project-URL: Changelog, https://github.com/encode/httpx/blob/master/CHANGELOG.md
|
| 6 |
+
Project-URL: Documentation, https://www.python-httpx.org
|
| 7 |
+
Project-URL: Homepage, https://github.com/encode/httpx
|
| 8 |
+
Project-URL: Source, https://github.com/encode/httpx
|
| 9 |
+
Author-email: Tom Christie <tom@tomchristie.com>
|
| 10 |
+
License-Expression: BSD-3-Clause
|
| 11 |
+
License-File: LICENSE.md
|
| 12 |
+
Classifier: Development Status :: 4 - Beta
|
| 13 |
+
Classifier: Environment :: Web Environment
|
| 14 |
+
Classifier: Framework :: AsyncIO
|
| 15 |
+
Classifier: Framework :: Trio
|
| 16 |
+
Classifier: Intended Audience :: Developers
|
| 17 |
+
Classifier: License :: OSI Approved :: BSD License
|
| 18 |
+
Classifier: Operating System :: OS Independent
|
| 19 |
+
Classifier: Programming Language :: Python :: 3
|
| 20 |
+
Classifier: Programming Language :: Python :: 3 :: Only
|
| 21 |
+
Classifier: Programming Language :: Python :: 3.7
|
| 22 |
+
Classifier: Programming Language :: Python :: 3.8
|
| 23 |
+
Classifier: Programming Language :: Python :: 3.9
|
| 24 |
+
Classifier: Programming Language :: Python :: 3.10
|
| 25 |
+
Classifier: Programming Language :: Python :: 3.11
|
| 26 |
+
Classifier: Topic :: Internet :: WWW/HTTP
|
| 27 |
+
Requires-Python: >=3.7
|
| 28 |
+
Requires-Dist: certifi
|
| 29 |
+
Requires-Dist: httpcore<0.18.0,>=0.15.0
|
| 30 |
+
Requires-Dist: idna
|
| 31 |
+
Requires-Dist: sniffio
|
| 32 |
+
Provides-Extra: brotli
|
| 33 |
+
Requires-Dist: brotli; platform_python_implementation == 'CPython' and extra == 'brotli'
|
| 34 |
+
Requires-Dist: brotlicffi; platform_python_implementation != 'CPython' and extra == 'brotli'
|
| 35 |
+
Provides-Extra: cli
|
| 36 |
+
Requires-Dist: click==8.*; extra == 'cli'
|
| 37 |
+
Requires-Dist: pygments==2.*; extra == 'cli'
|
| 38 |
+
Requires-Dist: rich<14,>=10; extra == 'cli'
|
| 39 |
+
Provides-Extra: http2
|
| 40 |
+
Requires-Dist: h2<5,>=3; extra == 'http2'
|
| 41 |
+
Provides-Extra: socks
|
| 42 |
+
Requires-Dist: socksio==1.*; extra == 'socks'
|
| 43 |
+
Description-Content-Type: text/markdown
|
| 44 |
+
|
| 45 |
+
<p align="center">
|
| 46 |
+
<a href="https://www.python-httpx.org/"><img width="350" height="208" src="https://raw.githubusercontent.com/encode/httpx/master/docs/img/butterfly.png" alt='HTTPX'></a>
|
| 47 |
+
</p>
|
| 48 |
+
|
| 49 |
+
<p align="center"><strong>HTTPX</strong> <em>- A next-generation HTTP client for Python.</em></p>
|
| 50 |
+
|
| 51 |
+
<p align="center">
|
| 52 |
+
<a href="https://github.com/encode/httpx/actions">
|
| 53 |
+
<img src="https://github.com/encode/httpx/workflows/Test%20Suite/badge.svg" alt="Test Suite">
|
| 54 |
+
</a>
|
| 55 |
+
<a href="https://pypi.org/project/httpx/">
|
| 56 |
+
<img src="https://badge.fury.io/py/httpx.svg" alt="Package version">
|
| 57 |
+
</a>
|
| 58 |
+
</p>
|
| 59 |
+
|
| 60 |
+
HTTPX is a fully featured HTTP client library for Python 3. It includes **an integrated
|
| 61 |
+
command line client**, has support for both **HTTP/1.1 and HTTP/2**, and provides both **sync
|
| 62 |
+
and async APIs**.
|
| 63 |
+
|
| 64 |
+
---
|
| 65 |
+
|
| 66 |
+
Install HTTPX using pip:
|
| 67 |
+
|
| 68 |
+
```shell
|
| 69 |
+
$ pip install httpx
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
Now, let's get started:
|
| 73 |
+
|
| 74 |
+
```pycon
|
| 75 |
+
>>> import httpx
|
| 76 |
+
>>> r = httpx.get('https://www.example.org/')
|
| 77 |
+
>>> r
|
| 78 |
+
<Response [200 OK]>
|
| 79 |
+
>>> r.status_code
|
| 80 |
+
200
|
| 81 |
+
>>> r.headers['content-type']
|
| 82 |
+
'text/html; charset=UTF-8'
|
| 83 |
+
>>> r.text
|
| 84 |
+
'<!doctype html>\n<html>\n<head>\n<title>Example Domain</title>...'
|
| 85 |
+
```
|
| 86 |
+
|
| 87 |
+
Or, using the command-line client.
|
| 88 |
+
|
| 89 |
+
```shell
|
| 90 |
+
$ pip install 'httpx[cli]' # The command line client is an optional dependency.
|
| 91 |
+
```
|
| 92 |
+
|
| 93 |
+
Which now allows us to use HTTPX directly from the command-line...
|
| 94 |
+
|
| 95 |
+
<p align="center">
|
| 96 |
+
<img width="700" src="https://raw.githubusercontent.com/encode/httpx/master/docs/img/httpx-help.png" alt='httpx --help'>
|
| 97 |
+
</p>
|
| 98 |
+
|
| 99 |
+
Sending a request...
|
| 100 |
+
|
| 101 |
+
<p align="center">
|
| 102 |
+
<img width="700" src="https://raw.githubusercontent.com/encode/httpx/master/docs/img/httpx-request.png" alt='httpx http://httpbin.org/json'>
|
| 103 |
+
</p>
|
| 104 |
+
|
| 105 |
+
## Features
|
| 106 |
+
|
| 107 |
+
HTTPX builds on the well-established usability of `requests`, and gives you:
|
| 108 |
+
|
| 109 |
+
* A broadly [requests-compatible API](https://www.python-httpx.org/compatibility/).
|
| 110 |
+
* An integrated command-line client.
|
| 111 |
+
* HTTP/1.1 [and HTTP/2 support](https://www.python-httpx.org/http2/).
|
| 112 |
+
* Standard synchronous interface, but with [async support if you need it](https://www.python-httpx.org/async/).
|
| 113 |
+
* Ability to make requests directly to [WSGI applications](https://www.python-httpx.org/advanced/#calling-into-python-web-apps) or [ASGI applications](https://www.python-httpx.org/async/#calling-into-python-web-apps).
|
| 114 |
+
* Strict timeouts everywhere.
|
| 115 |
+
* Fully type annotated.
|
| 116 |
+
* 100% test coverage.
|
| 117 |
+
|
| 118 |
+
Plus all the standard features of `requests`...
|
| 119 |
+
|
| 120 |
+
* International Domains and URLs
|
| 121 |
+
* Keep-Alive & Connection Pooling
|
| 122 |
+
* Sessions with Cookie Persistence
|
| 123 |
+
* Browser-style SSL Verification
|
| 124 |
+
* Basic/Digest Authentication
|
| 125 |
+
* Elegant Key/Value Cookies
|
| 126 |
+
* Automatic Decompression
|
| 127 |
+
* Automatic Content Decoding
|
| 128 |
+
* Unicode Response Bodies
|
| 129 |
+
* Multipart File Uploads
|
| 130 |
+
* HTTP(S) Proxy Support
|
| 131 |
+
* Connection Timeouts
|
| 132 |
+
* Streaming Downloads
|
| 133 |
+
* .netrc Support
|
| 134 |
+
* Chunked Requests
|
| 135 |
+
|
| 136 |
+
## Installation
|
| 137 |
+
|
| 138 |
+
Install with pip:
|
| 139 |
+
|
| 140 |
+
```shell
|
| 141 |
+
$ pip install httpx
|
| 142 |
+
```
|
| 143 |
+
|
| 144 |
+
Or, to include the optional HTTP/2 support, use:
|
| 145 |
+
|
| 146 |
+
```shell
|
| 147 |
+
$ pip install httpx[http2]
|
| 148 |
+
```
|
| 149 |
+
|
| 150 |
+
HTTPX requires Python 3.7+.
|
| 151 |
+
|
| 152 |
+
## Documentation
|
| 153 |
+
|
| 154 |
+
Project documentation is available at [https://www.python-httpx.org/](https://www.python-httpx.org/).
|
| 155 |
+
|
| 156 |
+
For a run-through of all the basics, head over to the [QuickStart](https://www.python-httpx.org/quickstart/).
|
| 157 |
+
|
| 158 |
+
For more advanced topics, see the [Advanced Usage](https://www.python-httpx.org/advanced/) section, the [async support](https://www.python-httpx.org/async/) section, or the [HTTP/2](https://www.python-httpx.org/http2/) section.
|
| 159 |
+
|
| 160 |
+
The [Developer Interface](https://www.python-httpx.org/api/) provides a comprehensive API reference.
|
| 161 |
+
|
| 162 |
+
To find out about tools that integrate with HTTPX, see [Third Party Packages](https://www.python-httpx.org/third_party_packages/).
|
| 163 |
+
|
| 164 |
+
## Contribute
|
| 165 |
+
|
| 166 |
+
If you want to contribute with HTTPX check out the [Contributing Guide](https://www.python-httpx.org/contributing/) to learn how to start.
|
| 167 |
+
|
| 168 |
+
## Dependencies
|
| 169 |
+
|
| 170 |
+
The HTTPX project relies on these excellent libraries:
|
| 171 |
+
|
| 172 |
+
* `httpcore` - The underlying transport implementation for `httpx`.
|
| 173 |
+
* `h11` - HTTP/1.1 support.
|
| 174 |
+
* `certifi` - SSL certificates.
|
| 175 |
+
* `idna` - Internationalized domain name support.
|
| 176 |
+
* `sniffio` - Async library autodetection.
|
| 177 |
+
|
| 178 |
+
As well as these optional installs:
|
| 179 |
+
|
| 180 |
+
* `h2` - HTTP/2 support. *(Optional, with `httpx[http2]`)*
|
| 181 |
+
* `socksio` - SOCKS proxy support. *(Optional, with `httpx[socks]`)*
|
| 182 |
+
* `rich` - Rich terminal support. *(Optional, with `httpx[cli]`)*
|
| 183 |
+
* `click` - Command line client support. *(Optional, with `httpx[cli]`)*
|
| 184 |
+
* `brotli` or `brotlicffi` - Decoding for "brotli" compressed responses. *(Optional, with `httpx[brotli]`)*
|
| 185 |
+
|
| 186 |
+
A huge amount of credit is due to `requests` for the API layout that
|
| 187 |
+
much of this work follows, as well as to `urllib3` for plenty of design
|
| 188 |
+
inspiration around the lower-level networking details.
|
| 189 |
+
|
| 190 |
+
---
|
| 191 |
+
|
| 192 |
+
<p align="center"><i>HTTPX is <a href="https://github.com/encode/httpx/blob/master/LICENSE.md">BSD licensed</a> code.<br/>Designed & crafted with care.</i><br/>— 🦋 —</p>
|
| 193 |
+
|
| 194 |
+
## Release Information
|
| 195 |
+
|
| 196 |
+
### Changed
|
| 197 |
+
|
| 198 |
+
* The logging behaviour has been changed to be more in-line with other standard Python logging usages. We no longer have a custom `TRACE` log level, and we no longer use the `HTTPX_LOG_LEVEL` environment variable to auto-configure logging. We now have a significant amount of `DEBUG` logging available at the network level. Full documentation is available at https://www.python-httpx.org/logging/ (#2547, encode/httpcore#648)
|
| 199 |
+
* The `Response.iter_lines()` method now matches the stdlib behaviour and does not include the newline characters. It also resolves a performance issue. (#2423)
|
| 200 |
+
* Query parameter encoding switches from using + for spaces and %2F for forward slash, to instead using %20 for spaces and treating forward slash as a safe, unescaped character. This differs from `requests`, but is in line with browser behavior in Chrome, Safari, and Firefox. Both options are RFC valid. (#2543)
|
| 201 |
+
* NetRC authentication is no longer automatically handled, but is instead supported by an explicit `httpx.NetRCAuth()` authentication class. See the documentation at https://www.python-httpx.org/advanced/#netrc-support (#2525)
|
| 202 |
+
|
| 203 |
+
### Removed
|
| 204 |
+
|
| 205 |
+
* The `rfc3986` dependancy has been removed. (#2252)
|
| 206 |
+
|
| 207 |
+
|
| 208 |
+
---
|
| 209 |
+
|
| 210 |
+
[Full changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md)
|
parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/RECORD
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
../../../bin/httpx,sha256=tYwNLEm4U3bgv9X7PP6avvL0NDS5tXpZeqOd89IXE8M,216
|
| 2 |
+
httpx-0.24.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
| 3 |
+
httpx-0.24.0.dist-info/METADATA,sha256=i1VGa3zTHR-dIW93Y9VApsMWu_AOOuzcWh4vz7_zqVA,8070
|
| 4 |
+
httpx-0.24.0.dist-info/RECORD,,
|
| 5 |
+
httpx-0.24.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 6 |
+
httpx-0.24.0.dist-info/WHEEL,sha256=EI2JsGydwUL5GP9t6kzZv7G3HDPi7FuZDDf9In6amRM,87
|
| 7 |
+
httpx-0.24.0.dist-info/entry_points.txt,sha256=2lVkdQmxLA1pNMgSN2eV89o90HCZezhmNwsy6ryKDSA,37
|
| 8 |
+
httpx-0.24.0.dist-info/licenses/LICENSE.md,sha256=TsWdVE8StfU5o6cW_TIaxYzNgDC0ZSIfLIgCAM3yjY0,1508
|
| 9 |
+
httpx/__init__.py,sha256=oCxVAsePEy5DE9eLhGAAq9H3RBGZUDaUROtGEyzbBRo,3210
|
| 10 |
+
httpx/__pycache__/__init__.cpython-310.pyc,,
|
| 11 |
+
httpx/__pycache__/__version__.cpython-310.pyc,,
|
| 12 |
+
httpx/__pycache__/_api.cpython-310.pyc,,
|
| 13 |
+
httpx/__pycache__/_auth.cpython-310.pyc,,
|
| 14 |
+
httpx/__pycache__/_client.cpython-310.pyc,,
|
| 15 |
+
httpx/__pycache__/_compat.cpython-310.pyc,,
|
| 16 |
+
httpx/__pycache__/_config.cpython-310.pyc,,
|
| 17 |
+
httpx/__pycache__/_content.cpython-310.pyc,,
|
| 18 |
+
httpx/__pycache__/_decoders.cpython-310.pyc,,
|
| 19 |
+
httpx/__pycache__/_exceptions.cpython-310.pyc,,
|
| 20 |
+
httpx/__pycache__/_main.cpython-310.pyc,,
|
| 21 |
+
httpx/__pycache__/_models.cpython-310.pyc,,
|
| 22 |
+
httpx/__pycache__/_multipart.cpython-310.pyc,,
|
| 23 |
+
httpx/__pycache__/_status_codes.cpython-310.pyc,,
|
| 24 |
+
httpx/__pycache__/_types.cpython-310.pyc,,
|
| 25 |
+
httpx/__pycache__/_urlparse.cpython-310.pyc,,
|
| 26 |
+
httpx/__pycache__/_urls.cpython-310.pyc,,
|
| 27 |
+
httpx/__pycache__/_utils.cpython-310.pyc,,
|
| 28 |
+
httpx/__version__.py,sha256=9Gk5Kj_c778Xjs4WJbvag1s_DVWXql64qRyncd3a6kA,108
|
| 29 |
+
httpx/_api.py,sha256=cVU9ErzaXve5rqoPoSHr9yJbovHtICrcxR7yBoNSeOw,13011
|
| 30 |
+
httpx/_auth.py,sha256=WnTcFM__63hDCex56w5udXociXGctfo3BQuE7v3d4OQ,11766
|
| 31 |
+
httpx/_client.py,sha256=R6Snj6msUWTWIdZIW2Lf5TYu_Zx6Oz8L6J5sfjaXrYw,68139
|
| 32 |
+
httpx/_compat.py,sha256=lQa4SnZhS-kNQ8HKpSwKrmJ00nYQKDVaWwwnOYEvjMI,1602
|
| 33 |
+
httpx/_config.py,sha256=9Tg0-pV93Hl5knjyZhCLcoEXymAMn-OLaDsEn2uPK14,12391
|
| 34 |
+
httpx/_content.py,sha256=olbWqawdWWweXeW6gDYHPiEGjip5lqFZKv9OmVd-zIg,8092
|
| 35 |
+
httpx/_decoders.py,sha256=dd8GSkEAe45BzRUF47zH_lg3-BcwXtxzPBSGP5Y4F90,9739
|
| 36 |
+
httpx/_exceptions.py,sha256=xKw-U6vW7zmdReUAGYHMegYWZuDAuE5039L087SHe4Q,7880
|
| 37 |
+
httpx/_main.py,sha256=m9C4RuqjOB6UqL3FFHMjmC45f4SDSO-iOREFLdw4IdM,15784
|
| 38 |
+
httpx/_models.py,sha256=Ho9YjmVMkS-lEMhCGpecfYsenVZy2jsLJmKCexO50tI,42696
|
| 39 |
+
httpx/_multipart.py,sha256=LTcxKvbIkVbleNDhb3_JEIayIdYxXfxr812uP_Hudz0,8978
|
| 40 |
+
httpx/_status_codes.py,sha256=XKArMrSoo8oKBQCHdFGA-wsM2PcSTaHE8svDYOUcwWk,5584
|
| 41 |
+
httpx/_transports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 42 |
+
httpx/_transports/__pycache__/__init__.cpython-310.pyc,,
|
| 43 |
+
httpx/_transports/__pycache__/asgi.cpython-310.pyc,,
|
| 44 |
+
httpx/_transports/__pycache__/base.cpython-310.pyc,,
|
| 45 |
+
httpx/_transports/__pycache__/default.cpython-310.pyc,,
|
| 46 |
+
httpx/_transports/__pycache__/mock.cpython-310.pyc,,
|
| 47 |
+
httpx/_transports/__pycache__/wsgi.cpython-310.pyc,,
|
| 48 |
+
httpx/_transports/asgi.py,sha256=lKAL-6dhxqSnZA2fMWtj-MokSTIzjnwwa3DTkkof5cE,5317
|
| 49 |
+
httpx/_transports/base.py,sha256=0BM8yZZEkdFT4tXXSm0h0dK0cSYA4hLgInj_BljGEGw,2510
|
| 50 |
+
httpx/_transports/default.py,sha256=fla9xvSAM3BuGtaMa4PhbX1gW_9oafl8vzujOhcE-H8,12626
|
| 51 |
+
httpx/_transports/mock.py,sha256=sDt3BDXbz8-W94kC8OXtGzF1PWH0y73h1De7Q-XkVtg,1179
|
| 52 |
+
httpx/_transports/wsgi.py,sha256=72ZMPBLPV-aZB4gfsz_SOrJpgKJb6Z9W5wFxhlMQcqg,4754
|
| 53 |
+
httpx/_types.py,sha256=BnX0adSAxLT9BzkxuX96S4odkC9UdLMgws6waxqEKuI,3333
|
| 54 |
+
httpx/_urlparse.py,sha256=sYl4v1ndRHbuXQswp3kN9I4VNWsj-Vu6icmHofOdUzM,15897
|
| 55 |
+
httpx/_urls.py,sha256=JAONd-2reXpB_WuQ7WuvhUcLuebiQeYJQPyszADmCow,21840
|
| 56 |
+
httpx/_utils.py,sha256=FbZDT9UCu_8EjyynU8g_YsQGzQmSgSp5dtexxBolgIA,14580
|
| 57 |
+
httpx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/REQUESTED
ADDED
|
File without changes
|
parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/entry_points.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[console_scripts]
|
| 2 |
+
httpx = httpx:main
|
parrot/lib/python3.10/site-packages/httpx-0.24.0.dist-info/licenses/LICENSE.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright © 2019, [Encode OSS Ltd](https://www.encode.io/).
|
| 2 |
+
All rights reserved.
|
| 3 |
+
|
| 4 |
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
| 5 |
+
|
| 6 |
+
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
| 7 |
+
|
| 8 |
+
* 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.
|
| 9 |
+
|
| 10 |
+
* 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.
|
| 11 |
+
|
| 12 |
+
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.
|
parrot/lib/python3.10/site-packages/idna/__init__.py
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from .core import (
|
| 2 |
+
IDNABidiError,
|
| 3 |
+
IDNAError,
|
| 4 |
+
InvalidCodepoint,
|
| 5 |
+
InvalidCodepointContext,
|
| 6 |
+
alabel,
|
| 7 |
+
check_bidi,
|
| 8 |
+
check_hyphen_ok,
|
| 9 |
+
check_initial_combiner,
|
| 10 |
+
check_label,
|
| 11 |
+
check_nfc,
|
| 12 |
+
decode,
|
| 13 |
+
encode,
|
| 14 |
+
ulabel,
|
| 15 |
+
uts46_remap,
|
| 16 |
+
valid_contextj,
|
| 17 |
+
valid_contexto,
|
| 18 |
+
valid_label_length,
|
| 19 |
+
valid_string_length,
|
| 20 |
+
)
|
| 21 |
+
from .intranges import intranges_contain
|
| 22 |
+
from .package_data import __version__
|
| 23 |
+
|
| 24 |
+
__all__ = [
|
| 25 |
+
"__version__",
|
| 26 |
+
"IDNABidiError",
|
| 27 |
+
"IDNAError",
|
| 28 |
+
"InvalidCodepoint",
|
| 29 |
+
"InvalidCodepointContext",
|
| 30 |
+
"alabel",
|
| 31 |
+
"check_bidi",
|
| 32 |
+
"check_hyphen_ok",
|
| 33 |
+
"check_initial_combiner",
|
| 34 |
+
"check_label",
|
| 35 |
+
"check_nfc",
|
| 36 |
+
"decode",
|
| 37 |
+
"encode",
|
| 38 |
+
"intranges_contain",
|
| 39 |
+
"ulabel",
|
| 40 |
+
"uts46_remap",
|
| 41 |
+
"valid_contextj",
|
| 42 |
+
"valid_contexto",
|
| 43 |
+
"valid_label_length",
|
| 44 |
+
"valid_string_length",
|
| 45 |
+
]
|
parrot/lib/python3.10/site-packages/idna/__pycache__/codec.cpython-310.pyc
ADDED
|
Binary file (3.24 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc
ADDED
|
Binary file (1.95 kB). View file
|
|
|
parrot/lib/python3.10/site-packages/idna/codec.py
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import codecs
|
| 2 |
+
import re
|
| 3 |
+
from typing import Any, Optional, Tuple
|
| 4 |
+
|
| 5 |
+
from .core import IDNAError, alabel, decode, encode, ulabel
|
| 6 |
+
|
| 7 |
+
_unicode_dots_re = re.compile("[\u002e\u3002\uff0e\uff61]")
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
class Codec(codecs.Codec):
|
| 11 |
+
def encode(self, data: str, errors: str = "strict") -> Tuple[bytes, int]:
|
| 12 |
+
if errors != "strict":
|
| 13 |
+
raise IDNAError('Unsupported error handling "{}"'.format(errors))
|
| 14 |
+
|
| 15 |
+
if not data:
|
| 16 |
+
return b"", 0
|
| 17 |
+
|
| 18 |
+
return encode(data), len(data)
|
| 19 |
+
|
| 20 |
+
def decode(self, data: bytes, errors: str = "strict") -> Tuple[str, int]:
|
| 21 |
+
if errors != "strict":
|
| 22 |
+
raise IDNAError('Unsupported error handling "{}"'.format(errors))
|
| 23 |
+
|
| 24 |
+
if not data:
|
| 25 |
+
return "", 0
|
| 26 |
+
|
| 27 |
+
return decode(data), len(data)
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
class IncrementalEncoder(codecs.BufferedIncrementalEncoder):
|
| 31 |
+
def _buffer_encode(self, data: str, errors: str, final: bool) -> Tuple[bytes, int]:
|
| 32 |
+
if errors != "strict":
|
| 33 |
+
raise IDNAError('Unsupported error handling "{}"'.format(errors))
|
| 34 |
+
|
| 35 |
+
if not data:
|
| 36 |
+
return b"", 0
|
| 37 |
+
|
| 38 |
+
labels = _unicode_dots_re.split(data)
|
| 39 |
+
trailing_dot = b""
|
| 40 |
+
if labels:
|
| 41 |
+
if not labels[-1]:
|
| 42 |
+
trailing_dot = b"."
|
| 43 |
+
del labels[-1]
|
| 44 |
+
elif not final:
|
| 45 |
+
# Keep potentially unfinished label until the next call
|
| 46 |
+
del labels[-1]
|
| 47 |
+
if labels:
|
| 48 |
+
trailing_dot = b"."
|
| 49 |
+
|
| 50 |
+
result = []
|
| 51 |
+
size = 0
|
| 52 |
+
for label in labels:
|
| 53 |
+
result.append(alabel(label))
|
| 54 |
+
if size:
|
| 55 |
+
size += 1
|
| 56 |
+
size += len(label)
|
| 57 |
+
|
| 58 |
+
# Join with U+002E
|
| 59 |
+
result_bytes = b".".join(result) + trailing_dot
|
| 60 |
+
size += len(trailing_dot)
|
| 61 |
+
return result_bytes, size
|
| 62 |
+
|
| 63 |
+
|
| 64 |
+
class IncrementalDecoder(codecs.BufferedIncrementalDecoder):
|
| 65 |
+
def _buffer_decode(self, data: Any, errors: str, final: bool) -> Tuple[str, int]:
|
| 66 |
+
if errors != "strict":
|
| 67 |
+
raise IDNAError('Unsupported error handling "{}"'.format(errors))
|
| 68 |
+
|
| 69 |
+
if not data:
|
| 70 |
+
return ("", 0)
|
| 71 |
+
|
| 72 |
+
if not isinstance(data, str):
|
| 73 |
+
data = str(data, "ascii")
|
| 74 |
+
|
| 75 |
+
labels = _unicode_dots_re.split(data)
|
| 76 |
+
trailing_dot = ""
|
| 77 |
+
if labels:
|
| 78 |
+
if not labels[-1]:
|
| 79 |
+
trailing_dot = "."
|
| 80 |
+
del labels[-1]
|
| 81 |
+
elif not final:
|
| 82 |
+
# Keep potentially unfinished label until the next call
|
| 83 |
+
del labels[-1]
|
| 84 |
+
if labels:
|
| 85 |
+
trailing_dot = "."
|
| 86 |
+
|
| 87 |
+
result = []
|
| 88 |
+
size = 0
|
| 89 |
+
for label in labels:
|
| 90 |
+
result.append(ulabel(label))
|
| 91 |
+
if size:
|
| 92 |
+
size += 1
|
| 93 |
+
size += len(label)
|
| 94 |
+
|
| 95 |
+
result_str = ".".join(result) + trailing_dot
|
| 96 |
+
size += len(trailing_dot)
|
| 97 |
+
return (result_str, size)
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
class StreamWriter(Codec, codecs.StreamWriter):
|
| 101 |
+
pass
|
| 102 |
+
|
| 103 |
+
|
| 104 |
+
class StreamReader(Codec, codecs.StreamReader):
|
| 105 |
+
pass
|
| 106 |
+
|
| 107 |
+
|
| 108 |
+
def search_function(name: str) -> Optional[codecs.CodecInfo]:
|
| 109 |
+
if name != "idna2008":
|
| 110 |
+
return None
|
| 111 |
+
return codecs.CodecInfo(
|
| 112 |
+
name=name,
|
| 113 |
+
encode=Codec().encode,
|
| 114 |
+
decode=Codec().decode,
|
| 115 |
+
incrementalencoder=IncrementalEncoder,
|
| 116 |
+
incrementaldecoder=IncrementalDecoder,
|
| 117 |
+
streamwriter=StreamWriter,
|
| 118 |
+
streamreader=StreamReader,
|
| 119 |
+
)
|
| 120 |
+
|
| 121 |
+
|
| 122 |
+
codecs.register(search_function)
|
parrot/lib/python3.10/site-packages/idna/compat.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from typing import Any, Union
|
| 2 |
+
|
| 3 |
+
from .core import decode, encode
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
def ToASCII(label: str) -> bytes:
|
| 7 |
+
return encode(label)
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
def ToUnicode(label: Union[bytes, bytearray]) -> str:
|
| 11 |
+
return decode(label)
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def nameprep(s: Any) -> None:
|
| 15 |
+
raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol")
|
parrot/lib/python3.10/site-packages/idna/core.py
ADDED
|
@@ -0,0 +1,437 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import bisect
|
| 2 |
+
import re
|
| 3 |
+
import unicodedata
|
| 4 |
+
from typing import Optional, Union
|
| 5 |
+
|
| 6 |
+
from . import idnadata
|
| 7 |
+
from .intranges import intranges_contain
|
| 8 |
+
|
| 9 |
+
_virama_combining_class = 9
|
| 10 |
+
_alabel_prefix = b"xn--"
|
| 11 |
+
_unicode_dots_re = re.compile("[\u002e\u3002\uff0e\uff61]")
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
class IDNAError(UnicodeError):
|
| 15 |
+
"""Base exception for all IDNA-encoding related problems"""
|
| 16 |
+
|
| 17 |
+
pass
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
class IDNABidiError(IDNAError):
|
| 21 |
+
"""Exception when bidirectional requirements are not satisfied"""
|
| 22 |
+
|
| 23 |
+
pass
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
class InvalidCodepoint(IDNAError):
|
| 27 |
+
"""Exception when a disallowed or unallocated codepoint is used"""
|
| 28 |
+
|
| 29 |
+
pass
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
class InvalidCodepointContext(IDNAError):
|
| 33 |
+
"""Exception when the codepoint is not valid in the context it is used"""
|
| 34 |
+
|
| 35 |
+
pass
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
def _combining_class(cp: int) -> int:
|
| 39 |
+
v = unicodedata.combining(chr(cp))
|
| 40 |
+
if v == 0:
|
| 41 |
+
if not unicodedata.name(chr(cp)):
|
| 42 |
+
raise ValueError("Unknown character in unicodedata")
|
| 43 |
+
return v
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
def _is_script(cp: str, script: str) -> bool:
|
| 47 |
+
return intranges_contain(ord(cp), idnadata.scripts[script])
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
def _punycode(s: str) -> bytes:
|
| 51 |
+
return s.encode("punycode")
|
| 52 |
+
|
| 53 |
+
|
| 54 |
+
def _unot(s: int) -> str:
|
| 55 |
+
return "U+{:04X}".format(s)
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
def valid_label_length(label: Union[bytes, str]) -> bool:
|
| 59 |
+
if len(label) > 63:
|
| 60 |
+
return False
|
| 61 |
+
return True
|
| 62 |
+
|
| 63 |
+
|
| 64 |
+
def valid_string_length(label: Union[bytes, str], trailing_dot: bool) -> bool:
|
| 65 |
+
if len(label) > (254 if trailing_dot else 253):
|
| 66 |
+
return False
|
| 67 |
+
return True
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
def check_bidi(label: str, check_ltr: bool = False) -> bool:
|
| 71 |
+
# Bidi rules should only be applied if string contains RTL characters
|
| 72 |
+
bidi_label = False
|
| 73 |
+
for idx, cp in enumerate(label, 1):
|
| 74 |
+
direction = unicodedata.bidirectional(cp)
|
| 75 |
+
if direction == "":
|
| 76 |
+
# String likely comes from a newer version of Unicode
|
| 77 |
+
raise IDNABidiError("Unknown directionality in label {} at position {}".format(repr(label), idx))
|
| 78 |
+
if direction in ["R", "AL", "AN"]:
|
| 79 |
+
bidi_label = True
|
| 80 |
+
if not bidi_label and not check_ltr:
|
| 81 |
+
return True
|
| 82 |
+
|
| 83 |
+
# Bidi rule 1
|
| 84 |
+
direction = unicodedata.bidirectional(label[0])
|
| 85 |
+
if direction in ["R", "AL"]:
|
| 86 |
+
rtl = True
|
| 87 |
+
elif direction == "L":
|
| 88 |
+
rtl = False
|
| 89 |
+
else:
|
| 90 |
+
raise IDNABidiError("First codepoint in label {} must be directionality L, R or AL".format(repr(label)))
|
| 91 |
+
|
| 92 |
+
valid_ending = False
|
| 93 |
+
number_type: Optional[str] = None
|
| 94 |
+
for idx, cp in enumerate(label, 1):
|
| 95 |
+
direction = unicodedata.bidirectional(cp)
|
| 96 |
+
|
| 97 |
+
if rtl:
|
| 98 |
+
# Bidi rule 2
|
| 99 |
+
if direction not in [
|
| 100 |
+
"R",
|
| 101 |
+
"AL",
|
| 102 |
+
"AN",
|
| 103 |
+
"EN",
|
| 104 |
+
"ES",
|
| 105 |
+
"CS",
|
| 106 |
+
"ET",
|
| 107 |
+
"ON",
|
| 108 |
+
"BN",
|
| 109 |
+
"NSM",
|
| 110 |
+
]:
|
| 111 |
+
raise IDNABidiError("Invalid direction for codepoint at position {} in a right-to-left label".format(idx))
|
| 112 |
+
# Bidi rule 3
|
| 113 |
+
if direction in ["R", "AL", "EN", "AN"]:
|
| 114 |
+
valid_ending = True
|
| 115 |
+
elif direction != "NSM":
|
| 116 |
+
valid_ending = False
|
| 117 |
+
# Bidi rule 4
|
| 118 |
+
if direction in ["AN", "EN"]:
|
| 119 |
+
if not number_type:
|
| 120 |
+
number_type = direction
|
| 121 |
+
else:
|
| 122 |
+
if number_type != direction:
|
| 123 |
+
raise IDNABidiError("Can not mix numeral types in a right-to-left label")
|
| 124 |
+
else:
|
| 125 |
+
# Bidi rule 5
|
| 126 |
+
if direction not in ["L", "EN", "ES", "CS", "ET", "ON", "BN", "NSM"]:
|
| 127 |
+
raise IDNABidiError("Invalid direction for codepoint at position {} in a left-to-right label".format(idx))
|
| 128 |
+
# Bidi rule 6
|
| 129 |
+
if direction in ["L", "EN"]:
|
| 130 |
+
valid_ending = True
|
| 131 |
+
elif direction != "NSM":
|
| 132 |
+
valid_ending = False
|
| 133 |
+
|
| 134 |
+
if not valid_ending:
|
| 135 |
+
raise IDNABidiError("Label ends with illegal codepoint directionality")
|
| 136 |
+
|
| 137 |
+
return True
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
def check_initial_combiner(label: str) -> bool:
|
| 141 |
+
if unicodedata.category(label[0])[0] == "M":
|
| 142 |
+
raise IDNAError("Label begins with an illegal combining character")
|
| 143 |
+
return True
|
| 144 |
+
|
| 145 |
+
|
| 146 |
+
def check_hyphen_ok(label: str) -> bool:
|
| 147 |
+
if label[2:4] == "--":
|
| 148 |
+
raise IDNAError("Label has disallowed hyphens in 3rd and 4th position")
|
| 149 |
+
if label[0] == "-" or label[-1] == "-":
|
| 150 |
+
raise IDNAError("Label must not start or end with a hyphen")
|
| 151 |
+
return True
|
| 152 |
+
|
| 153 |
+
|
| 154 |
+
def check_nfc(label: str) -> None:
|
| 155 |
+
if unicodedata.normalize("NFC", label) != label:
|
| 156 |
+
raise IDNAError("Label must be in Normalization Form C")
|
| 157 |
+
|
| 158 |
+
|
| 159 |
+
def valid_contextj(label: str, pos: int) -> bool:
|
| 160 |
+
cp_value = ord(label[pos])
|
| 161 |
+
|
| 162 |
+
if cp_value == 0x200C:
|
| 163 |
+
if pos > 0:
|
| 164 |
+
if _combining_class(ord(label[pos - 1])) == _virama_combining_class:
|
| 165 |
+
return True
|
| 166 |
+
|
| 167 |
+
ok = False
|
| 168 |
+
for i in range(pos - 1, -1, -1):
|
| 169 |
+
joining_type = idnadata.joining_types.get(ord(label[i]))
|
| 170 |
+
if joining_type == ord("T"):
|
| 171 |
+
continue
|
| 172 |
+
elif joining_type in [ord("L"), ord("D")]:
|
| 173 |
+
ok = True
|
| 174 |
+
break
|
| 175 |
+
else:
|
| 176 |
+
break
|
| 177 |
+
|
| 178 |
+
if not ok:
|
| 179 |
+
return False
|
| 180 |
+
|
| 181 |
+
ok = False
|
| 182 |
+
for i in range(pos + 1, len(label)):
|
| 183 |
+
joining_type = idnadata.joining_types.get(ord(label[i]))
|
| 184 |
+
if joining_type == ord("T"):
|
| 185 |
+
continue
|
| 186 |
+
elif joining_type in [ord("R"), ord("D")]:
|
| 187 |
+
ok = True
|
| 188 |
+
break
|
| 189 |
+
else:
|
| 190 |
+
break
|
| 191 |
+
return ok
|
| 192 |
+
|
| 193 |
+
if cp_value == 0x200D:
|
| 194 |
+
if pos > 0:
|
| 195 |
+
if _combining_class(ord(label[pos - 1])) == _virama_combining_class:
|
| 196 |
+
return True
|
| 197 |
+
return False
|
| 198 |
+
|
| 199 |
+
else:
|
| 200 |
+
return False
|
| 201 |
+
|
| 202 |
+
|
| 203 |
+
def valid_contexto(label: str, pos: int, exception: bool = False) -> bool:
|
| 204 |
+
cp_value = ord(label[pos])
|
| 205 |
+
|
| 206 |
+
if cp_value == 0x00B7:
|
| 207 |
+
if 0 < pos < len(label) - 1:
|
| 208 |
+
if ord(label[pos - 1]) == 0x006C and ord(label[pos + 1]) == 0x006C:
|
| 209 |
+
return True
|
| 210 |
+
return False
|
| 211 |
+
|
| 212 |
+
elif cp_value == 0x0375:
|
| 213 |
+
if pos < len(label) - 1 and len(label) > 1:
|
| 214 |
+
return _is_script(label[pos + 1], "Greek")
|
| 215 |
+
return False
|
| 216 |
+
|
| 217 |
+
elif cp_value == 0x05F3 or cp_value == 0x05F4:
|
| 218 |
+
if pos > 0:
|
| 219 |
+
return _is_script(label[pos - 1], "Hebrew")
|
| 220 |
+
return False
|
| 221 |
+
|
| 222 |
+
elif cp_value == 0x30FB:
|
| 223 |
+
for cp in label:
|
| 224 |
+
if cp == "\u30fb":
|
| 225 |
+
continue
|
| 226 |
+
if _is_script(cp, "Hiragana") or _is_script(cp, "Katakana") or _is_script(cp, "Han"):
|
| 227 |
+
return True
|
| 228 |
+
return False
|
| 229 |
+
|
| 230 |
+
elif 0x660 <= cp_value <= 0x669:
|
| 231 |
+
for cp in label:
|
| 232 |
+
if 0x6F0 <= ord(cp) <= 0x06F9:
|
| 233 |
+
return False
|
| 234 |
+
return True
|
| 235 |
+
|
| 236 |
+
elif 0x6F0 <= cp_value <= 0x6F9:
|
| 237 |
+
for cp in label:
|
| 238 |
+
if 0x660 <= ord(cp) <= 0x0669:
|
| 239 |
+
return False
|
| 240 |
+
return True
|
| 241 |
+
|
| 242 |
+
return False
|
| 243 |
+
|
| 244 |
+
|
| 245 |
+
def check_label(label: Union[str, bytes, bytearray]) -> None:
|
| 246 |
+
if isinstance(label, (bytes, bytearray)):
|
| 247 |
+
label = label.decode("utf-8")
|
| 248 |
+
if len(label) == 0:
|
| 249 |
+
raise IDNAError("Empty Label")
|
| 250 |
+
|
| 251 |
+
check_nfc(label)
|
| 252 |
+
check_hyphen_ok(label)
|
| 253 |
+
check_initial_combiner(label)
|
| 254 |
+
|
| 255 |
+
for pos, cp in enumerate(label):
|
| 256 |
+
cp_value = ord(cp)
|
| 257 |
+
if intranges_contain(cp_value, idnadata.codepoint_classes["PVALID"]):
|
| 258 |
+
continue
|
| 259 |
+
elif intranges_contain(cp_value, idnadata.codepoint_classes["CONTEXTJ"]):
|
| 260 |
+
try:
|
| 261 |
+
if not valid_contextj(label, pos):
|
| 262 |
+
raise InvalidCodepointContext(
|
| 263 |
+
"Joiner {} not allowed at position {} in {}".format(_unot(cp_value), pos + 1, repr(label))
|
| 264 |
+
)
|
| 265 |
+
except ValueError:
|
| 266 |
+
raise IDNAError(
|
| 267 |
+
"Unknown codepoint adjacent to joiner {} at position {} in {}".format(
|
| 268 |
+
_unot(cp_value), pos + 1, repr(label)
|
| 269 |
+
)
|
| 270 |
+
)
|
| 271 |
+
elif intranges_contain(cp_value, idnadata.codepoint_classes["CONTEXTO"]):
|
| 272 |
+
if not valid_contexto(label, pos):
|
| 273 |
+
raise InvalidCodepointContext(
|
| 274 |
+
"Codepoint {} not allowed at position {} in {}".format(_unot(cp_value), pos + 1, repr(label))
|
| 275 |
+
)
|
| 276 |
+
else:
|
| 277 |
+
raise InvalidCodepoint(
|
| 278 |
+
"Codepoint {} at position {} of {} not allowed".format(_unot(cp_value), pos + 1, repr(label))
|
| 279 |
+
)
|
| 280 |
+
|
| 281 |
+
check_bidi(label)
|
| 282 |
+
|
| 283 |
+
|
| 284 |
+
def alabel(label: str) -> bytes:
|
| 285 |
+
try:
|
| 286 |
+
label_bytes = label.encode("ascii")
|
| 287 |
+
ulabel(label_bytes)
|
| 288 |
+
if not valid_label_length(label_bytes):
|
| 289 |
+
raise IDNAError("Label too long")
|
| 290 |
+
return label_bytes
|
| 291 |
+
except UnicodeEncodeError:
|
| 292 |
+
pass
|
| 293 |
+
|
| 294 |
+
check_label(label)
|
| 295 |
+
label_bytes = _alabel_prefix + _punycode(label)
|
| 296 |
+
|
| 297 |
+
if not valid_label_length(label_bytes):
|
| 298 |
+
raise IDNAError("Label too long")
|
| 299 |
+
|
| 300 |
+
return label_bytes
|
| 301 |
+
|
| 302 |
+
|
| 303 |
+
def ulabel(label: Union[str, bytes, bytearray]) -> str:
|
| 304 |
+
if not isinstance(label, (bytes, bytearray)):
|
| 305 |
+
try:
|
| 306 |
+
label_bytes = label.encode("ascii")
|
| 307 |
+
except UnicodeEncodeError:
|
| 308 |
+
check_label(label)
|
| 309 |
+
return label
|
| 310 |
+
else:
|
| 311 |
+
label_bytes = label
|
| 312 |
+
|
| 313 |
+
label_bytes = label_bytes.lower()
|
| 314 |
+
if label_bytes.startswith(_alabel_prefix):
|
| 315 |
+
label_bytes = label_bytes[len(_alabel_prefix) :]
|
| 316 |
+
if not label_bytes:
|
| 317 |
+
raise IDNAError("Malformed A-label, no Punycode eligible content found")
|
| 318 |
+
if label_bytes.decode("ascii")[-1] == "-":
|
| 319 |
+
raise IDNAError("A-label must not end with a hyphen")
|
| 320 |
+
else:
|
| 321 |
+
check_label(label_bytes)
|
| 322 |
+
return label_bytes.decode("ascii")
|
| 323 |
+
|
| 324 |
+
try:
|
| 325 |
+
label = label_bytes.decode("punycode")
|
| 326 |
+
except UnicodeError:
|
| 327 |
+
raise IDNAError("Invalid A-label")
|
| 328 |
+
check_label(label)
|
| 329 |
+
return label
|
| 330 |
+
|
| 331 |
+
|
| 332 |
+
def uts46_remap(domain: str, std3_rules: bool = True, transitional: bool = False) -> str:
|
| 333 |
+
"""Re-map the characters in the string according to UTS46 processing."""
|
| 334 |
+
from .uts46data import uts46data
|
| 335 |
+
|
| 336 |
+
output = ""
|
| 337 |
+
|
| 338 |
+
for pos, char in enumerate(domain):
|
| 339 |
+
code_point = ord(char)
|
| 340 |
+
try:
|
| 341 |
+
uts46row = uts46data[code_point if code_point < 256 else bisect.bisect_left(uts46data, (code_point, "Z")) - 1]
|
| 342 |
+
status = uts46row[1]
|
| 343 |
+
replacement: Optional[str] = None
|
| 344 |
+
if len(uts46row) == 3:
|
| 345 |
+
replacement = uts46row[2]
|
| 346 |
+
if (
|
| 347 |
+
status == "V"
|
| 348 |
+
or (status == "D" and not transitional)
|
| 349 |
+
or (status == "3" and not std3_rules and replacement is None)
|
| 350 |
+
):
|
| 351 |
+
output += char
|
| 352 |
+
elif replacement is not None and (
|
| 353 |
+
status == "M" or (status == "3" and not std3_rules) or (status == "D" and transitional)
|
| 354 |
+
):
|
| 355 |
+
output += replacement
|
| 356 |
+
elif status != "I":
|
| 357 |
+
raise IndexError()
|
| 358 |
+
except IndexError:
|
| 359 |
+
raise InvalidCodepoint(
|
| 360 |
+
"Codepoint {} not allowed at position {} in {}".format(_unot(code_point), pos + 1, repr(domain))
|
| 361 |
+
)
|
| 362 |
+
|
| 363 |
+
return unicodedata.normalize("NFC", output)
|
| 364 |
+
|
| 365 |
+
|
| 366 |
+
def encode(
|
| 367 |
+
s: Union[str, bytes, bytearray],
|
| 368 |
+
strict: bool = False,
|
| 369 |
+
uts46: bool = False,
|
| 370 |
+
std3_rules: bool = False,
|
| 371 |
+
transitional: bool = False,
|
| 372 |
+
) -> bytes:
|
| 373 |
+
if not isinstance(s, str):
|
| 374 |
+
try:
|
| 375 |
+
s = str(s, "ascii")
|
| 376 |
+
except UnicodeDecodeError:
|
| 377 |
+
raise IDNAError("should pass a unicode string to the function rather than a byte string.")
|
| 378 |
+
if uts46:
|
| 379 |
+
s = uts46_remap(s, std3_rules, transitional)
|
| 380 |
+
trailing_dot = False
|
| 381 |
+
result = []
|
| 382 |
+
if strict:
|
| 383 |
+
labels = s.split(".")
|
| 384 |
+
else:
|
| 385 |
+
labels = _unicode_dots_re.split(s)
|
| 386 |
+
if not labels or labels == [""]:
|
| 387 |
+
raise IDNAError("Empty domain")
|
| 388 |
+
if labels[-1] == "":
|
| 389 |
+
del labels[-1]
|
| 390 |
+
trailing_dot = True
|
| 391 |
+
for label in labels:
|
| 392 |
+
s = alabel(label)
|
| 393 |
+
if s:
|
| 394 |
+
result.append(s)
|
| 395 |
+
else:
|
| 396 |
+
raise IDNAError("Empty label")
|
| 397 |
+
if trailing_dot:
|
| 398 |
+
result.append(b"")
|
| 399 |
+
s = b".".join(result)
|
| 400 |
+
if not valid_string_length(s, trailing_dot):
|
| 401 |
+
raise IDNAError("Domain too long")
|
| 402 |
+
return s
|
| 403 |
+
|
| 404 |
+
|
| 405 |
+
def decode(
|
| 406 |
+
s: Union[str, bytes, bytearray],
|
| 407 |
+
strict: bool = False,
|
| 408 |
+
uts46: bool = False,
|
| 409 |
+
std3_rules: bool = False,
|
| 410 |
+
) -> str:
|
| 411 |
+
try:
|
| 412 |
+
if not isinstance(s, str):
|
| 413 |
+
s = str(s, "ascii")
|
| 414 |
+
except UnicodeDecodeError:
|
| 415 |
+
raise IDNAError("Invalid ASCII in A-label")
|
| 416 |
+
if uts46:
|
| 417 |
+
s = uts46_remap(s, std3_rules, False)
|
| 418 |
+
trailing_dot = False
|
| 419 |
+
result = []
|
| 420 |
+
if not strict:
|
| 421 |
+
labels = _unicode_dots_re.split(s)
|
| 422 |
+
else:
|
| 423 |
+
labels = s.split(".")
|
| 424 |
+
if not labels or labels == [""]:
|
| 425 |
+
raise IDNAError("Empty domain")
|
| 426 |
+
if not labels[-1]:
|
| 427 |
+
del labels[-1]
|
| 428 |
+
trailing_dot = True
|
| 429 |
+
for label in labels:
|
| 430 |
+
s = ulabel(label)
|
| 431 |
+
if s:
|
| 432 |
+
result.append(s)
|
| 433 |
+
else:
|
| 434 |
+
raise IDNAError("Empty label")
|
| 435 |
+
if trailing_dot:
|
| 436 |
+
result.append("")
|
| 437 |
+
return ".".join(result)
|
parrot/lib/python3.10/site-packages/idna/idnadata.py
ADDED
|
@@ -0,0 +1,4243 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is automatically generated by tools/idna-data
|
| 2 |
+
|
| 3 |
+
__version__ = "15.1.0"
|
| 4 |
+
scripts = {
|
| 5 |
+
"Greek": (
|
| 6 |
+
0x37000000374,
|
| 7 |
+
0x37500000378,
|
| 8 |
+
0x37A0000037E,
|
| 9 |
+
0x37F00000380,
|
| 10 |
+
0x38400000385,
|
| 11 |
+
0x38600000387,
|
| 12 |
+
0x3880000038B,
|
| 13 |
+
0x38C0000038D,
|
| 14 |
+
0x38E000003A2,
|
| 15 |
+
0x3A3000003E2,
|
| 16 |
+
0x3F000000400,
|
| 17 |
+
0x1D2600001D2B,
|
| 18 |
+
0x1D5D00001D62,
|
| 19 |
+
0x1D6600001D6B,
|
| 20 |
+
0x1DBF00001DC0,
|
| 21 |
+
0x1F0000001F16,
|
| 22 |
+
0x1F1800001F1E,
|
| 23 |
+
0x1F2000001F46,
|
| 24 |
+
0x1F4800001F4E,
|
| 25 |
+
0x1F5000001F58,
|
| 26 |
+
0x1F5900001F5A,
|
| 27 |
+
0x1F5B00001F5C,
|
| 28 |
+
0x1F5D00001F5E,
|
| 29 |
+
0x1F5F00001F7E,
|
| 30 |
+
0x1F8000001FB5,
|
| 31 |
+
0x1FB600001FC5,
|
| 32 |
+
0x1FC600001FD4,
|
| 33 |
+
0x1FD600001FDC,
|
| 34 |
+
0x1FDD00001FF0,
|
| 35 |
+
0x1FF200001FF5,
|
| 36 |
+
0x1FF600001FFF,
|
| 37 |
+
0x212600002127,
|
| 38 |
+
0xAB650000AB66,
|
| 39 |
+
0x101400001018F,
|
| 40 |
+
0x101A0000101A1,
|
| 41 |
+
0x1D2000001D246,
|
| 42 |
+
),
|
| 43 |
+
"Han": (
|
| 44 |
+
0x2E8000002E9A,
|
| 45 |
+
0x2E9B00002EF4,
|
| 46 |
+
0x2F0000002FD6,
|
| 47 |
+
0x300500003006,
|
| 48 |
+
0x300700003008,
|
| 49 |
+
0x30210000302A,
|
| 50 |
+
0x30380000303C,
|
| 51 |
+
0x340000004DC0,
|
| 52 |
+
0x4E000000A000,
|
| 53 |
+
0xF9000000FA6E,
|
| 54 |
+
0xFA700000FADA,
|
| 55 |
+
0x16FE200016FE4,
|
| 56 |
+
0x16FF000016FF2,
|
| 57 |
+
0x200000002A6E0,
|
| 58 |
+
0x2A7000002B73A,
|
| 59 |
+
0x2B7400002B81E,
|
| 60 |
+
0x2B8200002CEA2,
|
| 61 |
+
0x2CEB00002EBE1,
|
| 62 |
+
0x2EBF00002EE5E,
|
| 63 |
+
0x2F8000002FA1E,
|
| 64 |
+
0x300000003134B,
|
| 65 |
+
0x31350000323B0,
|
| 66 |
+
),
|
| 67 |
+
"Hebrew": (
|
| 68 |
+
0x591000005C8,
|
| 69 |
+
0x5D0000005EB,
|
| 70 |
+
0x5EF000005F5,
|
| 71 |
+
0xFB1D0000FB37,
|
| 72 |
+
0xFB380000FB3D,
|
| 73 |
+
0xFB3E0000FB3F,
|
| 74 |
+
0xFB400000FB42,
|
| 75 |
+
0xFB430000FB45,
|
| 76 |
+
0xFB460000FB50,
|
| 77 |
+
),
|
| 78 |
+
"Hiragana": (
|
| 79 |
+
0x304100003097,
|
| 80 |
+
0x309D000030A0,
|
| 81 |
+
0x1B0010001B120,
|
| 82 |
+
0x1B1320001B133,
|
| 83 |
+
0x1B1500001B153,
|
| 84 |
+
0x1F2000001F201,
|
| 85 |
+
),
|
| 86 |
+
"Katakana": (
|
| 87 |
+
0x30A1000030FB,
|
| 88 |
+
0x30FD00003100,
|
| 89 |
+
0x31F000003200,
|
| 90 |
+
0x32D0000032FF,
|
| 91 |
+
0x330000003358,
|
| 92 |
+
0xFF660000FF70,
|
| 93 |
+
0xFF710000FF9E,
|
| 94 |
+
0x1AFF00001AFF4,
|
| 95 |
+
0x1AFF50001AFFC,
|
| 96 |
+
0x1AFFD0001AFFF,
|
| 97 |
+
0x1B0000001B001,
|
| 98 |
+
0x1B1200001B123,
|
| 99 |
+
0x1B1550001B156,
|
| 100 |
+
0x1B1640001B168,
|
| 101 |
+
),
|
| 102 |
+
}
|
| 103 |
+
joining_types = {
|
| 104 |
+
0xAD: 84,
|
| 105 |
+
0x300: 84,
|
| 106 |
+
0x301: 84,
|
| 107 |
+
0x302: 84,
|
| 108 |
+
0x303: 84,
|
| 109 |
+
0x304: 84,
|
| 110 |
+
0x305: 84,
|
| 111 |
+
0x306: 84,
|
| 112 |
+
0x307: 84,
|
| 113 |
+
0x308: 84,
|
| 114 |
+
0x309: 84,
|
| 115 |
+
0x30A: 84,
|
| 116 |
+
0x30B: 84,
|
| 117 |
+
0x30C: 84,
|
| 118 |
+
0x30D: 84,
|
| 119 |
+
0x30E: 84,
|
| 120 |
+
0x30F: 84,
|
| 121 |
+
0x310: 84,
|
| 122 |
+
0x311: 84,
|
| 123 |
+
0x312: 84,
|
| 124 |
+
0x313: 84,
|
| 125 |
+
0x314: 84,
|
| 126 |
+
0x315: 84,
|
| 127 |
+
0x316: 84,
|
| 128 |
+
0x317: 84,
|
| 129 |
+
0x318: 84,
|
| 130 |
+
0x319: 84,
|
| 131 |
+
0x31A: 84,
|
| 132 |
+
0x31B: 84,
|
| 133 |
+
0x31C: 84,
|
| 134 |
+
0x31D: 84,
|
| 135 |
+
0x31E: 84,
|
| 136 |
+
0x31F: 84,
|
| 137 |
+
0x320: 84,
|
| 138 |
+
0x321: 84,
|
| 139 |
+
0x322: 84,
|
| 140 |
+
0x323: 84,
|
| 141 |
+
0x324: 84,
|
| 142 |
+
0x325: 84,
|
| 143 |
+
0x326: 84,
|
| 144 |
+
0x327: 84,
|
| 145 |
+
0x328: 84,
|
| 146 |
+
0x329: 84,
|
| 147 |
+
0x32A: 84,
|
| 148 |
+
0x32B: 84,
|
| 149 |
+
0x32C: 84,
|
| 150 |
+
0x32D: 84,
|
| 151 |
+
0x32E: 84,
|
| 152 |
+
0x32F: 84,
|
| 153 |
+
0x330: 84,
|
| 154 |
+
0x331: 84,
|
| 155 |
+
0x332: 84,
|
| 156 |
+
0x333: 84,
|
| 157 |
+
0x334: 84,
|
| 158 |
+
0x335: 84,
|
| 159 |
+
0x336: 84,
|
| 160 |
+
0x337: 84,
|
| 161 |
+
0x338: 84,
|
| 162 |
+
0x339: 84,
|
| 163 |
+
0x33A: 84,
|
| 164 |
+
0x33B: 84,
|
| 165 |
+
0x33C: 84,
|
| 166 |
+
0x33D: 84,
|
| 167 |
+
0x33E: 84,
|
| 168 |
+
0x33F: 84,
|
| 169 |
+
0x340: 84,
|
| 170 |
+
0x341: 84,
|
| 171 |
+
0x342: 84,
|
| 172 |
+
0x343: 84,
|
| 173 |
+
0x344: 84,
|
| 174 |
+
0x345: 84,
|
| 175 |
+
0x346: 84,
|
| 176 |
+
0x347: 84,
|
| 177 |
+
0x348: 84,
|
| 178 |
+
0x349: 84,
|
| 179 |
+
0x34A: 84,
|
| 180 |
+
0x34B: 84,
|
| 181 |
+
0x34C: 84,
|
| 182 |
+
0x34D: 84,
|
| 183 |
+
0x34E: 84,
|
| 184 |
+
0x34F: 84,
|
| 185 |
+
0x350: 84,
|
| 186 |
+
0x351: 84,
|
| 187 |
+
0x352: 84,
|
| 188 |
+
0x353: 84,
|
| 189 |
+
0x354: 84,
|
| 190 |
+
0x355: 84,
|
| 191 |
+
0x356: 84,
|
| 192 |
+
0x357: 84,
|
| 193 |
+
0x358: 84,
|
| 194 |
+
0x359: 84,
|
| 195 |
+
0x35A: 84,
|
| 196 |
+
0x35B: 84,
|
| 197 |
+
0x35C: 84,
|
| 198 |
+
0x35D: 84,
|
| 199 |
+
0x35E: 84,
|
| 200 |
+
0x35F: 84,
|
| 201 |
+
0x360: 84,
|
| 202 |
+
0x361: 84,
|
| 203 |
+
0x362: 84,
|
| 204 |
+
0x363: 84,
|
| 205 |
+
0x364: 84,
|
| 206 |
+
0x365: 84,
|
| 207 |
+
0x366: 84,
|
| 208 |
+
0x367: 84,
|
| 209 |
+
0x368: 84,
|
| 210 |
+
0x369: 84,
|
| 211 |
+
0x36A: 84,
|
| 212 |
+
0x36B: 84,
|
| 213 |
+
0x36C: 84,
|
| 214 |
+
0x36D: 84,
|
| 215 |
+
0x36E: 84,
|
| 216 |
+
0x36F: 84,
|
| 217 |
+
0x483: 84,
|
| 218 |
+
0x484: 84,
|
| 219 |
+
0x485: 84,
|
| 220 |
+
0x486: 84,
|
| 221 |
+
0x487: 84,
|
| 222 |
+
0x488: 84,
|
| 223 |
+
0x489: 84,
|
| 224 |
+
0x591: 84,
|
| 225 |
+
0x592: 84,
|
| 226 |
+
0x593: 84,
|
| 227 |
+
0x594: 84,
|
| 228 |
+
0x595: 84,
|
| 229 |
+
0x596: 84,
|
| 230 |
+
0x597: 84,
|
| 231 |
+
0x598: 84,
|
| 232 |
+
0x599: 84,
|
| 233 |
+
0x59A: 84,
|
| 234 |
+
0x59B: 84,
|
| 235 |
+
0x59C: 84,
|
| 236 |
+
0x59D: 84,
|
| 237 |
+
0x59E: 84,
|
| 238 |
+
0x59F: 84,
|
| 239 |
+
0x5A0: 84,
|
| 240 |
+
0x5A1: 84,
|
| 241 |
+
0x5A2: 84,
|
| 242 |
+
0x5A3: 84,
|
| 243 |
+
0x5A4: 84,
|
| 244 |
+
0x5A5: 84,
|
| 245 |
+
0x5A6: 84,
|
| 246 |
+
0x5A7: 84,
|
| 247 |
+
0x5A8: 84,
|
| 248 |
+
0x5A9: 84,
|
| 249 |
+
0x5AA: 84,
|
| 250 |
+
0x5AB: 84,
|
| 251 |
+
0x5AC: 84,
|
| 252 |
+
0x5AD: 84,
|
| 253 |
+
0x5AE: 84,
|
| 254 |
+
0x5AF: 84,
|
| 255 |
+
0x5B0: 84,
|
| 256 |
+
0x5B1: 84,
|
| 257 |
+
0x5B2: 84,
|
| 258 |
+
0x5B3: 84,
|
| 259 |
+
0x5B4: 84,
|
| 260 |
+
0x5B5: 84,
|
| 261 |
+
0x5B6: 84,
|
| 262 |
+
0x5B7: 84,
|
| 263 |
+
0x5B8: 84,
|
| 264 |
+
0x5B9: 84,
|
| 265 |
+
0x5BA: 84,
|
| 266 |
+
0x5BB: 84,
|
| 267 |
+
0x5BC: 84,
|
| 268 |
+
0x5BD: 84,
|
| 269 |
+
0x5BF: 84,
|
| 270 |
+
0x5C1: 84,
|
| 271 |
+
0x5C2: 84,
|
| 272 |
+
0x5C4: 84,
|
| 273 |
+
0x5C5: 84,
|
| 274 |
+
0x5C7: 84,
|
| 275 |
+
0x610: 84,
|
| 276 |
+
0x611: 84,
|
| 277 |
+
0x612: 84,
|
| 278 |
+
0x613: 84,
|
| 279 |
+
0x614: 84,
|
| 280 |
+
0x615: 84,
|
| 281 |
+
0x616: 84,
|
| 282 |
+
0x617: 84,
|
| 283 |
+
0x618: 84,
|
| 284 |
+
0x619: 84,
|
| 285 |
+
0x61A: 84,
|
| 286 |
+
0x61C: 84,
|
| 287 |
+
0x620: 68,
|
| 288 |
+
0x622: 82,
|
| 289 |
+
0x623: 82,
|
| 290 |
+
0x624: 82,
|
| 291 |
+
0x625: 82,
|
| 292 |
+
0x626: 68,
|
| 293 |
+
0x627: 82,
|
| 294 |
+
0x628: 68,
|
| 295 |
+
0x629: 82,
|
| 296 |
+
0x62A: 68,
|
| 297 |
+
0x62B: 68,
|
| 298 |
+
0x62C: 68,
|
| 299 |
+
0x62D: 68,
|
| 300 |
+
0x62E: 68,
|
| 301 |
+
0x62F: 82,
|
| 302 |
+
0x630: 82,
|
| 303 |
+
0x631: 82,
|
| 304 |
+
0x632: 82,
|
| 305 |
+
0x633: 68,
|
| 306 |
+
0x634: 68,
|
| 307 |
+
0x635: 68,
|
| 308 |
+
0x636: 68,
|
| 309 |
+
0x637: 68,
|
| 310 |
+
0x638: 68,
|
| 311 |
+
0x639: 68,
|
| 312 |
+
0x63A: 68,
|
| 313 |
+
0x63B: 68,
|
| 314 |
+
0x63C: 68,
|
| 315 |
+
0x63D: 68,
|
| 316 |
+
0x63E: 68,
|
| 317 |
+
0x63F: 68,
|
| 318 |
+
0x640: 67,
|
| 319 |
+
0x641: 68,
|
| 320 |
+
0x642: 68,
|
| 321 |
+
0x643: 68,
|
| 322 |
+
0x644: 68,
|
| 323 |
+
0x645: 68,
|
| 324 |
+
0x646: 68,
|
| 325 |
+
0x647: 68,
|
| 326 |
+
0x648: 82,
|
| 327 |
+
0x649: 68,
|
| 328 |
+
0x64A: 68,
|
| 329 |
+
0x64B: 84,
|
| 330 |
+
0x64C: 84,
|
| 331 |
+
0x64D: 84,
|
| 332 |
+
0x64E: 84,
|
| 333 |
+
0x64F: 84,
|
| 334 |
+
0x650: 84,
|
| 335 |
+
0x651: 84,
|
| 336 |
+
0x652: 84,
|
| 337 |
+
0x653: 84,
|
| 338 |
+
0x654: 84,
|
| 339 |
+
0x655: 84,
|
| 340 |
+
0x656: 84,
|
| 341 |
+
0x657: 84,
|
| 342 |
+
0x658: 84,
|
| 343 |
+
0x659: 84,
|
| 344 |
+
0x65A: 84,
|
| 345 |
+
0x65B: 84,
|
| 346 |
+
0x65C: 84,
|
| 347 |
+
0x65D: 84,
|
| 348 |
+
0x65E: 84,
|
| 349 |
+
0x65F: 84,
|
| 350 |
+
0x66E: 68,
|
| 351 |
+
0x66F: 68,
|
| 352 |
+
0x670: 84,
|
| 353 |
+
0x671: 82,
|
| 354 |
+
0x672: 82,
|
| 355 |
+
0x673: 82,
|
| 356 |
+
0x675: 82,
|
| 357 |
+
0x676: 82,
|
| 358 |
+
0x677: 82,
|
| 359 |
+
0x678: 68,
|
| 360 |
+
0x679: 68,
|
| 361 |
+
0x67A: 68,
|
| 362 |
+
0x67B: 68,
|
| 363 |
+
0x67C: 68,
|
| 364 |
+
0x67D: 68,
|
| 365 |
+
0x67E: 68,
|
| 366 |
+
0x67F: 68,
|
| 367 |
+
0x680: 68,
|
| 368 |
+
0x681: 68,
|
| 369 |
+
0x682: 68,
|
| 370 |
+
0x683: 68,
|
| 371 |
+
0x684: 68,
|
| 372 |
+
0x685: 68,
|
| 373 |
+
0x686: 68,
|
| 374 |
+
0x687: 68,
|
| 375 |
+
0x688: 82,
|
| 376 |
+
0x689: 82,
|
| 377 |
+
0x68A: 82,
|
| 378 |
+
0x68B: 82,
|
| 379 |
+
0x68C: 82,
|
| 380 |
+
0x68D: 82,
|
| 381 |
+
0x68E: 82,
|
| 382 |
+
0x68F: 82,
|
| 383 |
+
0x690: 82,
|
| 384 |
+
0x691: 82,
|
| 385 |
+
0x692: 82,
|
| 386 |
+
0x693: 82,
|
| 387 |
+
0x694: 82,
|
| 388 |
+
0x695: 82,
|
| 389 |
+
0x696: 82,
|
| 390 |
+
0x697: 82,
|
| 391 |
+
0x698: 82,
|
| 392 |
+
0x699: 82,
|
| 393 |
+
0x69A: 68,
|
| 394 |
+
0x69B: 68,
|
| 395 |
+
0x69C: 68,
|
| 396 |
+
0x69D: 68,
|
| 397 |
+
0x69E: 68,
|
| 398 |
+
0x69F: 68,
|
| 399 |
+
0x6A0: 68,
|
| 400 |
+
0x6A1: 68,
|
| 401 |
+
0x6A2: 68,
|
| 402 |
+
0x6A3: 68,
|
| 403 |
+
0x6A4: 68,
|
| 404 |
+
0x6A5: 68,
|
| 405 |
+
0x6A6: 68,
|
| 406 |
+
0x6A7: 68,
|
| 407 |
+
0x6A8: 68,
|
| 408 |
+
0x6A9: 68,
|
| 409 |
+
0x6AA: 68,
|
| 410 |
+
0x6AB: 68,
|
| 411 |
+
0x6AC: 68,
|
| 412 |
+
0x6AD: 68,
|
| 413 |
+
0x6AE: 68,
|
| 414 |
+
0x6AF: 68,
|
| 415 |
+
0x6B0: 68,
|
| 416 |
+
0x6B1: 68,
|
| 417 |
+
0x6B2: 68,
|
| 418 |
+
0x6B3: 68,
|
| 419 |
+
0x6B4: 68,
|
| 420 |
+
0x6B5: 68,
|
| 421 |
+
0x6B6: 68,
|
| 422 |
+
0x6B7: 68,
|
| 423 |
+
0x6B8: 68,
|
| 424 |
+
0x6B9: 68,
|
| 425 |
+
0x6BA: 68,
|
| 426 |
+
0x6BB: 68,
|
| 427 |
+
0x6BC: 68,
|
| 428 |
+
0x6BD: 68,
|
| 429 |
+
0x6BE: 68,
|
| 430 |
+
0x6BF: 68,
|
| 431 |
+
0x6C0: 82,
|
| 432 |
+
0x6C1: 68,
|
| 433 |
+
0x6C2: 68,
|
| 434 |
+
0x6C3: 82,
|
| 435 |
+
0x6C4: 82,
|
| 436 |
+
0x6C5: 82,
|
| 437 |
+
0x6C6: 82,
|
| 438 |
+
0x6C7: 82,
|
| 439 |
+
0x6C8: 82,
|
| 440 |
+
0x6C9: 82,
|
| 441 |
+
0x6CA: 82,
|
| 442 |
+
0x6CB: 82,
|
| 443 |
+
0x6CC: 68,
|
| 444 |
+
0x6CD: 82,
|
| 445 |
+
0x6CE: 68,
|
| 446 |
+
0x6CF: 82,
|
| 447 |
+
0x6D0: 68,
|
| 448 |
+
0x6D1: 68,
|
| 449 |
+
0x6D2: 82,
|
| 450 |
+
0x6D3: 82,
|
| 451 |
+
0x6D5: 82,
|
| 452 |
+
0x6D6: 84,
|
| 453 |
+
0x6D7: 84,
|
| 454 |
+
0x6D8: 84,
|
| 455 |
+
0x6D9: 84,
|
| 456 |
+
0x6DA: 84,
|
| 457 |
+
0x6DB: 84,
|
| 458 |
+
0x6DC: 84,
|
| 459 |
+
0x6DF: 84,
|
| 460 |
+
0x6E0: 84,
|
| 461 |
+
0x6E1: 84,
|
| 462 |
+
0x6E2: 84,
|
| 463 |
+
0x6E3: 84,
|
| 464 |
+
0x6E4: 84,
|
| 465 |
+
0x6E7: 84,
|
| 466 |
+
0x6E8: 84,
|
| 467 |
+
0x6EA: 84,
|
| 468 |
+
0x6EB: 84,
|
| 469 |
+
0x6EC: 84,
|
| 470 |
+
0x6ED: 84,
|
| 471 |
+
0x6EE: 82,
|
| 472 |
+
0x6EF: 82,
|
| 473 |
+
0x6FA: 68,
|
| 474 |
+
0x6FB: 68,
|
| 475 |
+
0x6FC: 68,
|
| 476 |
+
0x6FF: 68,
|
| 477 |
+
0x70F: 84,
|
| 478 |
+
0x710: 82,
|
| 479 |
+
0x711: 84,
|
| 480 |
+
0x712: 68,
|
| 481 |
+
0x713: 68,
|
| 482 |
+
0x714: 68,
|
| 483 |
+
0x715: 82,
|
| 484 |
+
0x716: 82,
|
| 485 |
+
0x717: 82,
|
| 486 |
+
0x718: 82,
|
| 487 |
+
0x719: 82,
|
| 488 |
+
0x71A: 68,
|
| 489 |
+
0x71B: 68,
|
| 490 |
+
0x71C: 68,
|
| 491 |
+
0x71D: 68,
|
| 492 |
+
0x71E: 82,
|
| 493 |
+
0x71F: 68,
|
| 494 |
+
0x720: 68,
|
| 495 |
+
0x721: 68,
|
| 496 |
+
0x722: 68,
|
| 497 |
+
0x723: 68,
|
| 498 |
+
0x724: 68,
|
| 499 |
+
0x725: 68,
|
| 500 |
+
0x726: 68,
|
| 501 |
+
0x727: 68,
|
| 502 |
+
0x728: 82,
|
| 503 |
+
0x729: 68,
|
| 504 |
+
0x72A: 82,
|
| 505 |
+
0x72B: 68,
|
| 506 |
+
0x72C: 82,
|
| 507 |
+
0x72D: 68,
|
| 508 |
+
0x72E: 68,
|
| 509 |
+
0x72F: 82,
|
| 510 |
+
0x730: 84,
|
| 511 |
+
0x731: 84,
|
| 512 |
+
0x732: 84,
|
| 513 |
+
0x733: 84,
|
| 514 |
+
0x734: 84,
|
| 515 |
+
0x735: 84,
|
| 516 |
+
0x736: 84,
|
| 517 |
+
0x737: 84,
|
| 518 |
+
0x738: 84,
|
| 519 |
+
0x739: 84,
|
| 520 |
+
0x73A: 84,
|
| 521 |
+
0x73B: 84,
|
| 522 |
+
0x73C: 84,
|
| 523 |
+
0x73D: 84,
|
| 524 |
+
0x73E: 84,
|
| 525 |
+
0x73F: 84,
|
| 526 |
+
0x740: 84,
|
| 527 |
+
0x741: 84,
|
| 528 |
+
0x742: 84,
|
| 529 |
+
0x743: 84,
|
| 530 |
+
0x744: 84,
|
| 531 |
+
0x745: 84,
|
| 532 |
+
0x746: 84,
|
| 533 |
+
0x747: 84,
|
| 534 |
+
0x748: 84,
|
| 535 |
+
0x749: 84,
|
| 536 |
+
0x74A: 84,
|
| 537 |
+
0x74D: 82,
|
| 538 |
+
0x74E: 68,
|
| 539 |
+
0x74F: 68,
|
| 540 |
+
0x750: 68,
|
| 541 |
+
0x751: 68,
|
| 542 |
+
0x752: 68,
|
| 543 |
+
0x753: 68,
|
| 544 |
+
0x754: 68,
|
| 545 |
+
0x755: 68,
|
| 546 |
+
0x756: 68,
|
| 547 |
+
0x757: 68,
|
| 548 |
+
0x758: 68,
|
| 549 |
+
0x759: 82,
|
| 550 |
+
0x75A: 82,
|
| 551 |
+
0x75B: 82,
|
| 552 |
+
0x75C: 68,
|
| 553 |
+
0x75D: 68,
|
| 554 |
+
0x75E: 68,
|
| 555 |
+
0x75F: 68,
|
| 556 |
+
0x760: 68,
|
| 557 |
+
0x761: 68,
|
| 558 |
+
0x762: 68,
|
| 559 |
+
0x763: 68,
|
| 560 |
+
0x764: 68,
|
| 561 |
+
0x765: 68,
|
| 562 |
+
0x766: 68,
|
| 563 |
+
0x767: 68,
|
| 564 |
+
0x768: 68,
|
| 565 |
+
0x769: 68,
|
| 566 |
+
0x76A: 68,
|
| 567 |
+
0x76B: 82,
|
| 568 |
+
0x76C: 82,
|
| 569 |
+
0x76D: 68,
|
| 570 |
+
0x76E: 68,
|
| 571 |
+
0x76F: 68,
|
| 572 |
+
0x770: 68,
|
| 573 |
+
0x771: 82,
|
| 574 |
+
0x772: 68,
|
| 575 |
+
0x773: 82,
|
| 576 |
+
0x774: 82,
|
| 577 |
+
0x775: 68,
|
| 578 |
+
0x776: 68,
|
| 579 |
+
0x777: 68,
|
| 580 |
+
0x778: 82,
|
| 581 |
+
0x779: 82,
|
| 582 |
+
0x77A: 68,
|
| 583 |
+
0x77B: 68,
|
| 584 |
+
0x77C: 68,
|
| 585 |
+
0x77D: 68,
|
| 586 |
+
0x77E: 68,
|
| 587 |
+
0x77F: 68,
|
| 588 |
+
0x7A6: 84,
|
| 589 |
+
0x7A7: 84,
|
| 590 |
+
0x7A8: 84,
|
| 591 |
+
0x7A9: 84,
|
| 592 |
+
0x7AA: 84,
|
| 593 |
+
0x7AB: 84,
|
| 594 |
+
0x7AC: 84,
|
| 595 |
+
0x7AD: 84,
|
| 596 |
+
0x7AE: 84,
|
| 597 |
+
0x7AF: 84,
|
| 598 |
+
0x7B0: 84,
|
| 599 |
+
0x7CA: 68,
|
| 600 |
+
0x7CB: 68,
|
| 601 |
+
0x7CC: 68,
|
| 602 |
+
0x7CD: 68,
|
| 603 |
+
0x7CE: 68,
|
| 604 |
+
0x7CF: 68,
|
| 605 |
+
0x7D0: 68,
|
| 606 |
+
0x7D1: 68,
|
| 607 |
+
0x7D2: 68,
|
| 608 |
+
0x7D3: 68,
|
| 609 |
+
0x7D4: 68,
|
| 610 |
+
0x7D5: 68,
|
| 611 |
+
0x7D6: 68,
|
| 612 |
+
0x7D7: 68,
|
| 613 |
+
0x7D8: 68,
|
| 614 |
+
0x7D9: 68,
|
| 615 |
+
0x7DA: 68,
|
| 616 |
+
0x7DB: 68,
|
| 617 |
+
0x7DC: 68,
|
| 618 |
+
0x7DD: 68,
|
| 619 |
+
0x7DE: 68,
|
| 620 |
+
0x7DF: 68,
|
| 621 |
+
0x7E0: 68,
|
| 622 |
+
0x7E1: 68,
|
| 623 |
+
0x7E2: 68,
|
| 624 |
+
0x7E3: 68,
|
| 625 |
+
0x7E4: 68,
|
| 626 |
+
0x7E5: 68,
|
| 627 |
+
0x7E6: 68,
|
| 628 |
+
0x7E7: 68,
|
| 629 |
+
0x7E8: 68,
|
| 630 |
+
0x7E9: 68,
|
| 631 |
+
0x7EA: 68,
|
| 632 |
+
0x7EB: 84,
|
| 633 |
+
0x7EC: 84,
|
| 634 |
+
0x7ED: 84,
|
| 635 |
+
0x7EE: 84,
|
| 636 |
+
0x7EF: 84,
|
| 637 |
+
0x7F0: 84,
|
| 638 |
+
0x7F1: 84,
|
| 639 |
+
0x7F2: 84,
|
| 640 |
+
0x7F3: 84,
|
| 641 |
+
0x7FA: 67,
|
| 642 |
+
0x7FD: 84,
|
| 643 |
+
0x816: 84,
|
| 644 |
+
0x817: 84,
|
| 645 |
+
0x818: 84,
|
| 646 |
+
0x819: 84,
|
| 647 |
+
0x81B: 84,
|
| 648 |
+
0x81C: 84,
|
| 649 |
+
0x81D: 84,
|
| 650 |
+
0x81E: 84,
|
| 651 |
+
0x81F: 84,
|
| 652 |
+
0x820: 84,
|
| 653 |
+
0x821: 84,
|
| 654 |
+
0x822: 84,
|
| 655 |
+
0x823: 84,
|
| 656 |
+
0x825: 84,
|
| 657 |
+
0x826: 84,
|
| 658 |
+
0x827: 84,
|
| 659 |
+
0x829: 84,
|
| 660 |
+
0x82A: 84,
|
| 661 |
+
0x82B: 84,
|
| 662 |
+
0x82C: 84,
|
| 663 |
+
0x82D: 84,
|
| 664 |
+
0x840: 82,
|
| 665 |
+
0x841: 68,
|
| 666 |
+
0x842: 68,
|
| 667 |
+
0x843: 68,
|
| 668 |
+
0x844: 68,
|
| 669 |
+
0x845: 68,
|
| 670 |
+
0x846: 82,
|
| 671 |
+
0x847: 82,
|
| 672 |
+
0x848: 68,
|
| 673 |
+
0x849: 82,
|
| 674 |
+
0x84A: 68,
|
| 675 |
+
0x84B: 68,
|
| 676 |
+
0x84C: 68,
|
| 677 |
+
0x84D: 68,
|
| 678 |
+
0x84E: 68,
|
| 679 |
+
0x84F: 68,
|
| 680 |
+
0x850: 68,
|
| 681 |
+
0x851: 68,
|
| 682 |
+
0x852: 68,
|
| 683 |
+
0x853: 68,
|
| 684 |
+
0x854: 82,
|
| 685 |
+
0x855: 68,
|
| 686 |
+
0x856: 82,
|
| 687 |
+
0x857: 82,
|
| 688 |
+
0x858: 82,
|
| 689 |
+
0x859: 84,
|
| 690 |
+
0x85A: 84,
|
| 691 |
+
0x85B: 84,
|
| 692 |
+
0x860: 68,
|
| 693 |
+
0x862: 68,
|
| 694 |
+
0x863: 68,
|
| 695 |
+
0x864: 68,
|
| 696 |
+
0x865: 68,
|
| 697 |
+
0x867: 82,
|
| 698 |
+
0x868: 68,
|
| 699 |
+
0x869: 82,
|
| 700 |
+
0x86A: 82,
|
| 701 |
+
0x870: 82,
|
| 702 |
+
0x871: 82,
|
| 703 |
+
0x872: 82,
|
| 704 |
+
0x873: 82,
|
| 705 |
+
0x874: 82,
|
| 706 |
+
0x875: 82,
|
| 707 |
+
0x876: 82,
|
| 708 |
+
0x877: 82,
|
| 709 |
+
0x878: 82,
|
| 710 |
+
0x879: 82,
|
| 711 |
+
0x87A: 82,
|
| 712 |
+
0x87B: 82,
|
| 713 |
+
0x87C: 82,
|
| 714 |
+
0x87D: 82,
|
| 715 |
+
0x87E: 82,
|
| 716 |
+
0x87F: 82,
|
| 717 |
+
0x880: 82,
|
| 718 |
+
0x881: 82,
|
| 719 |
+
0x882: 82,
|
| 720 |
+
0x883: 67,
|
| 721 |
+
0x884: 67,
|
| 722 |
+
0x885: 67,
|
| 723 |
+
0x886: 68,
|
| 724 |
+
0x889: 68,
|
| 725 |
+
0x88A: 68,
|
| 726 |
+
0x88B: 68,
|
| 727 |
+
0x88C: 68,
|
| 728 |
+
0x88D: 68,
|
| 729 |
+
0x88E: 82,
|
| 730 |
+
0x898: 84,
|
| 731 |
+
0x899: 84,
|
| 732 |
+
0x89A: 84,
|
| 733 |
+
0x89B: 84,
|
| 734 |
+
0x89C: 84,
|
| 735 |
+
0x89D: 84,
|
| 736 |
+
0x89E: 84,
|
| 737 |
+
0x89F: 84,
|
| 738 |
+
0x8A0: 68,
|
| 739 |
+
0x8A1: 68,
|
| 740 |
+
0x8A2: 68,
|
| 741 |
+
0x8A3: 68,
|
| 742 |
+
0x8A4: 68,
|
| 743 |
+
0x8A5: 68,
|
| 744 |
+
0x8A6: 68,
|
| 745 |
+
0x8A7: 68,
|
| 746 |
+
0x8A8: 68,
|
| 747 |
+
0x8A9: 68,
|
| 748 |
+
0x8AA: 82,
|
| 749 |
+
0x8AB: 82,
|
| 750 |
+
0x8AC: 82,
|
| 751 |
+
0x8AE: 82,
|
| 752 |
+
0x8AF: 68,
|
| 753 |
+
0x8B0: 68,
|
| 754 |
+
0x8B1: 82,
|
| 755 |
+
0x8B2: 82,
|
| 756 |
+
0x8B3: 68,
|
| 757 |
+
0x8B4: 68,
|
| 758 |
+
0x8B5: 68,
|
| 759 |
+
0x8B6: 68,
|
| 760 |
+
0x8B7: 68,
|
| 761 |
+
0x8B8: 68,
|
| 762 |
+
0x8B9: 82,
|
| 763 |
+
0x8BA: 68,
|
| 764 |
+
0x8BB: 68,
|
| 765 |
+
0x8BC: 68,
|
| 766 |
+
0x8BD: 68,
|
| 767 |
+
0x8BE: 68,
|
| 768 |
+
0x8BF: 68,
|
| 769 |
+
0x8C0: 68,
|
| 770 |
+
0x8C1: 68,
|
| 771 |
+
0x8C2: 68,
|
| 772 |
+
0x8C3: 68,
|
| 773 |
+
0x8C4: 68,
|
| 774 |
+
0x8C5: 68,
|
| 775 |
+
0x8C6: 68,
|
| 776 |
+
0x8C7: 68,
|
| 777 |
+
0x8C8: 68,
|
| 778 |
+
0x8CA: 84,
|
| 779 |
+
0x8CB: 84,
|
| 780 |
+
0x8CC: 84,
|
| 781 |
+
0x8CD: 84,
|
| 782 |
+
0x8CE: 84,
|
| 783 |
+
0x8CF: 84,
|
| 784 |
+
0x8D0: 84,
|
| 785 |
+
0x8D1: 84,
|
| 786 |
+
0x8D2: 84,
|
| 787 |
+
0x8D3: 84,
|
| 788 |
+
0x8D4: 84,
|
| 789 |
+
0x8D5: 84,
|
| 790 |
+
0x8D6: 84,
|
| 791 |
+
0x8D7: 84,
|
| 792 |
+
0x8D8: 84,
|
| 793 |
+
0x8D9: 84,
|
| 794 |
+
0x8DA: 84,
|
| 795 |
+
0x8DB: 84,
|
| 796 |
+
0x8DC: 84,
|
| 797 |
+
0x8DD: 84,
|
| 798 |
+
0x8DE: 84,
|
| 799 |
+
0x8DF: 84,
|
| 800 |
+
0x8E0: 84,
|
| 801 |
+
0x8E1: 84,
|
| 802 |
+
0x8E3: 84,
|
| 803 |
+
0x8E4: 84,
|
| 804 |
+
0x8E5: 84,
|
| 805 |
+
0x8E6: 84,
|
| 806 |
+
0x8E7: 84,
|
| 807 |
+
0x8E8: 84,
|
| 808 |
+
0x8E9: 84,
|
| 809 |
+
0x8EA: 84,
|
| 810 |
+
0x8EB: 84,
|
| 811 |
+
0x8EC: 84,
|
| 812 |
+
0x8ED: 84,
|
| 813 |
+
0x8EE: 84,
|
| 814 |
+
0x8EF: 84,
|
| 815 |
+
0x8F0: 84,
|
| 816 |
+
0x8F1: 84,
|
| 817 |
+
0x8F2: 84,
|
| 818 |
+
0x8F3: 84,
|
| 819 |
+
0x8F4: 84,
|
| 820 |
+
0x8F5: 84,
|
| 821 |
+
0x8F6: 84,
|
| 822 |
+
0x8F7: 84,
|
| 823 |
+
0x8F8: 84,
|
| 824 |
+
0x8F9: 84,
|
| 825 |
+
0x8FA: 84,
|
| 826 |
+
0x8FB: 84,
|
| 827 |
+
0x8FC: 84,
|
| 828 |
+
0x8FD: 84,
|
| 829 |
+
0x8FE: 84,
|
| 830 |
+
0x8FF: 84,
|
| 831 |
+
0x900: 84,
|
| 832 |
+
0x901: 84,
|
| 833 |
+
0x902: 84,
|
| 834 |
+
0x93A: 84,
|
| 835 |
+
0x93C: 84,
|
| 836 |
+
0x941: 84,
|
| 837 |
+
0x942: 84,
|
| 838 |
+
0x943: 84,
|
| 839 |
+
0x944: 84,
|
| 840 |
+
0x945: 84,
|
| 841 |
+
0x946: 84,
|
| 842 |
+
0x947: 84,
|
| 843 |
+
0x948: 84,
|
| 844 |
+
0x94D: 84,
|
| 845 |
+
0x951: 84,
|
| 846 |
+
0x952: 84,
|
| 847 |
+
0x953: 84,
|
| 848 |
+
0x954: 84,
|
| 849 |
+
0x955: 84,
|
| 850 |
+
0x956: 84,
|
| 851 |
+
0x957: 84,
|
| 852 |
+
0x962: 84,
|
| 853 |
+
0x963: 84,
|
| 854 |
+
0x981: 84,
|
| 855 |
+
0x9BC: 84,
|
| 856 |
+
0x9C1: 84,
|
| 857 |
+
0x9C2: 84,
|
| 858 |
+
0x9C3: 84,
|
| 859 |
+
0x9C4: 84,
|
| 860 |
+
0x9CD: 84,
|
| 861 |
+
0x9E2: 84,
|
| 862 |
+
0x9E3: 84,
|
| 863 |
+
0x9FE: 84,
|
| 864 |
+
0xA01: 84,
|
| 865 |
+
0xA02: 84,
|
| 866 |
+
0xA3C: 84,
|
| 867 |
+
0xA41: 84,
|
| 868 |
+
0xA42: 84,
|
| 869 |
+
0xA47: 84,
|
| 870 |
+
0xA48: 84,
|
| 871 |
+
0xA4B: 84,
|
| 872 |
+
0xA4C: 84,
|
| 873 |
+
0xA4D: 84,
|
| 874 |
+
0xA51: 84,
|
| 875 |
+
0xA70: 84,
|
| 876 |
+
0xA71: 84,
|
| 877 |
+
0xA75: 84,
|
| 878 |
+
0xA81: 84,
|
| 879 |
+
0xA82: 84,
|
| 880 |
+
0xABC: 84,
|
| 881 |
+
0xAC1: 84,
|
| 882 |
+
0xAC2: 84,
|
| 883 |
+
0xAC3: 84,
|
| 884 |
+
0xAC4: 84,
|
| 885 |
+
0xAC5: 84,
|
| 886 |
+
0xAC7: 84,
|
| 887 |
+
0xAC8: 84,
|
| 888 |
+
0xACD: 84,
|
| 889 |
+
0xAE2: 84,
|
| 890 |
+
0xAE3: 84,
|
| 891 |
+
0xAFA: 84,
|
| 892 |
+
0xAFB: 84,
|
| 893 |
+
0xAFC: 84,
|
| 894 |
+
0xAFD: 84,
|
| 895 |
+
0xAFE: 84,
|
| 896 |
+
0xAFF: 84,
|
| 897 |
+
0xB01: 84,
|
| 898 |
+
0xB3C: 84,
|
| 899 |
+
0xB3F: 84,
|
| 900 |
+
0xB41: 84,
|
| 901 |
+
0xB42: 84,
|
| 902 |
+
0xB43: 84,
|
| 903 |
+
0xB44: 84,
|
| 904 |
+
0xB4D: 84,
|
| 905 |
+
0xB55: 84,
|
| 906 |
+
0xB56: 84,
|
| 907 |
+
0xB62: 84,
|
| 908 |
+
0xB63: 84,
|
| 909 |
+
0xB82: 84,
|
| 910 |
+
0xBC0: 84,
|
| 911 |
+
0xBCD: 84,
|
| 912 |
+
0xC00: 84,
|
| 913 |
+
0xC04: 84,
|
| 914 |
+
0xC3C: 84,
|
| 915 |
+
0xC3E: 84,
|
| 916 |
+
0xC3F: 84,
|
| 917 |
+
0xC40: 84,
|
| 918 |
+
0xC46: 84,
|
| 919 |
+
0xC47: 84,
|
| 920 |
+
0xC48: 84,
|
| 921 |
+
0xC4A: 84,
|
| 922 |
+
0xC4B: 84,
|
| 923 |
+
0xC4C: 84,
|
| 924 |
+
0xC4D: 84,
|
| 925 |
+
0xC55: 84,
|
| 926 |
+
0xC56: 84,
|
| 927 |
+
0xC62: 84,
|
| 928 |
+
0xC63: 84,
|
| 929 |
+
0xC81: 84,
|
| 930 |
+
0xCBC: 84,
|
| 931 |
+
0xCBF: 84,
|
| 932 |
+
0xCC6: 84,
|
| 933 |
+
0xCCC: 84,
|
| 934 |
+
0xCCD: 84,
|
| 935 |
+
0xCE2: 84,
|
| 936 |
+
0xCE3: 84,
|
| 937 |
+
0xD00: 84,
|
| 938 |
+
0xD01: 84,
|
| 939 |
+
0xD3B: 84,
|
| 940 |
+
0xD3C: 84,
|
| 941 |
+
0xD41: 84,
|
| 942 |
+
0xD42: 84,
|
| 943 |
+
0xD43: 84,
|
| 944 |
+
0xD44: 84,
|
| 945 |
+
0xD4D: 84,
|
| 946 |
+
0xD62: 84,
|
| 947 |
+
0xD63: 84,
|
| 948 |
+
0xD81: 84,
|
| 949 |
+
0xDCA: 84,
|
| 950 |
+
0xDD2: 84,
|
| 951 |
+
0xDD3: 84,
|
| 952 |
+
0xDD4: 84,
|
| 953 |
+
0xDD6: 84,
|
| 954 |
+
0xE31: 84,
|
| 955 |
+
0xE34: 84,
|
| 956 |
+
0xE35: 84,
|
| 957 |
+
0xE36: 84,
|
| 958 |
+
0xE37: 84,
|
| 959 |
+
0xE38: 84,
|
| 960 |
+
0xE39: 84,
|
| 961 |
+
0xE3A: 84,
|
| 962 |
+
0xE47: 84,
|
| 963 |
+
0xE48: 84,
|
| 964 |
+
0xE49: 84,
|
| 965 |
+
0xE4A: 84,
|
| 966 |
+
0xE4B: 84,
|
| 967 |
+
0xE4C: 84,
|
| 968 |
+
0xE4D: 84,
|
| 969 |
+
0xE4E: 84,
|
| 970 |
+
0xEB1: 84,
|
| 971 |
+
0xEB4: 84,
|
| 972 |
+
0xEB5: 84,
|
| 973 |
+
0xEB6: 84,
|
| 974 |
+
0xEB7: 84,
|
| 975 |
+
0xEB8: 84,
|
| 976 |
+
0xEB9: 84,
|
| 977 |
+
0xEBA: 84,
|
| 978 |
+
0xEBB: 84,
|
| 979 |
+
0xEBC: 84,
|
| 980 |
+
0xEC8: 84,
|
| 981 |
+
0xEC9: 84,
|
| 982 |
+
0xECA: 84,
|
| 983 |
+
0xECB: 84,
|
| 984 |
+
0xECC: 84,
|
| 985 |
+
0xECD: 84,
|
| 986 |
+
0xECE: 84,
|
| 987 |
+
0xF18: 84,
|
| 988 |
+
0xF19: 84,
|
| 989 |
+
0xF35: 84,
|
| 990 |
+
0xF37: 84,
|
| 991 |
+
0xF39: 84,
|
| 992 |
+
0xF71: 84,
|
| 993 |
+
0xF72: 84,
|
| 994 |
+
0xF73: 84,
|
| 995 |
+
0xF74: 84,
|
| 996 |
+
0xF75: 84,
|
| 997 |
+
0xF76: 84,
|
| 998 |
+
0xF77: 84,
|
| 999 |
+
0xF78: 84,
|
| 1000 |
+
0xF79: 84,
|
| 1001 |
+
0xF7A: 84,
|
| 1002 |
+
0xF7B: 84,
|
| 1003 |
+
0xF7C: 84,
|
| 1004 |
+
0xF7D: 84,
|
| 1005 |
+
0xF7E: 84,
|
| 1006 |
+
0xF80: 84,
|
| 1007 |
+
0xF81: 84,
|
| 1008 |
+
0xF82: 84,
|
| 1009 |
+
0xF83: 84,
|
| 1010 |
+
0xF84: 84,
|
| 1011 |
+
0xF86: 84,
|
| 1012 |
+
0xF87: 84,
|
| 1013 |
+
0xF8D: 84,
|
| 1014 |
+
0xF8E: 84,
|
| 1015 |
+
0xF8F: 84,
|
| 1016 |
+
0xF90: 84,
|
| 1017 |
+
0xF91: 84,
|
| 1018 |
+
0xF92: 84,
|
| 1019 |
+
0xF93: 84,
|
| 1020 |
+
0xF94: 84,
|
| 1021 |
+
0xF95: 84,
|
| 1022 |
+
0xF96: 84,
|
| 1023 |
+
0xF97: 84,
|
| 1024 |
+
0xF99: 84,
|
| 1025 |
+
0xF9A: 84,
|
| 1026 |
+
0xF9B: 84,
|
| 1027 |
+
0xF9C: 84,
|
| 1028 |
+
0xF9D: 84,
|
| 1029 |
+
0xF9E: 84,
|
| 1030 |
+
0xF9F: 84,
|
| 1031 |
+
0xFA0: 84,
|
| 1032 |
+
0xFA1: 84,
|
| 1033 |
+
0xFA2: 84,
|
| 1034 |
+
0xFA3: 84,
|
| 1035 |
+
0xFA4: 84,
|
| 1036 |
+
0xFA5: 84,
|
| 1037 |
+
0xFA6: 84,
|
| 1038 |
+
0xFA7: 84,
|
| 1039 |
+
0xFA8: 84,
|
| 1040 |
+
0xFA9: 84,
|
| 1041 |
+
0xFAA: 84,
|
| 1042 |
+
0xFAB: 84,
|
| 1043 |
+
0xFAC: 84,
|
| 1044 |
+
0xFAD: 84,
|
| 1045 |
+
0xFAE: 84,
|
| 1046 |
+
0xFAF: 84,
|
| 1047 |
+
0xFB0: 84,
|
| 1048 |
+
0xFB1: 84,
|
| 1049 |
+
0xFB2: 84,
|
| 1050 |
+
0xFB3: 84,
|
| 1051 |
+
0xFB4: 84,
|
| 1052 |
+
0xFB5: 84,
|
| 1053 |
+
0xFB6: 84,
|
| 1054 |
+
0xFB7: 84,
|
| 1055 |
+
0xFB8: 84,
|
| 1056 |
+
0xFB9: 84,
|
| 1057 |
+
0xFBA: 84,
|
| 1058 |
+
0xFBB: 84,
|
| 1059 |
+
0xFBC: 84,
|
| 1060 |
+
0xFC6: 84,
|
| 1061 |
+
0x102D: 84,
|
| 1062 |
+
0x102E: 84,
|
| 1063 |
+
0x102F: 84,
|
| 1064 |
+
0x1030: 84,
|
| 1065 |
+
0x1032: 84,
|
| 1066 |
+
0x1033: 84,
|
| 1067 |
+
0x1034: 84,
|
| 1068 |
+
0x1035: 84,
|
| 1069 |
+
0x1036: 84,
|
| 1070 |
+
0x1037: 84,
|
| 1071 |
+
0x1039: 84,
|
| 1072 |
+
0x103A: 84,
|
| 1073 |
+
0x103D: 84,
|
| 1074 |
+
0x103E: 84,
|
| 1075 |
+
0x1058: 84,
|
| 1076 |
+
0x1059: 84,
|
| 1077 |
+
0x105E: 84,
|
| 1078 |
+
0x105F: 84,
|
| 1079 |
+
0x1060: 84,
|
| 1080 |
+
0x1071: 84,
|
| 1081 |
+
0x1072: 84,
|
| 1082 |
+
0x1073: 84,
|
| 1083 |
+
0x1074: 84,
|
| 1084 |
+
0x1082: 84,
|
| 1085 |
+
0x1085: 84,
|
| 1086 |
+
0x1086: 84,
|
| 1087 |
+
0x108D: 84,
|
| 1088 |
+
0x109D: 84,
|
| 1089 |
+
0x135D: 84,
|
| 1090 |
+
0x135E: 84,
|
| 1091 |
+
0x135F: 84,
|
| 1092 |
+
0x1712: 84,
|
| 1093 |
+
0x1713: 84,
|
| 1094 |
+
0x1714: 84,
|
| 1095 |
+
0x1732: 84,
|
| 1096 |
+
0x1733: 84,
|
| 1097 |
+
0x1752: 84,
|
| 1098 |
+
0x1753: 84,
|
| 1099 |
+
0x1772: 84,
|
| 1100 |
+
0x1773: 84,
|
| 1101 |
+
0x17B4: 84,
|
| 1102 |
+
0x17B5: 84,
|
| 1103 |
+
0x17B7: 84,
|
| 1104 |
+
0x17B8: 84,
|
| 1105 |
+
0x17B9: 84,
|
| 1106 |
+
0x17BA: 84,
|
| 1107 |
+
0x17BB: 84,
|
| 1108 |
+
0x17BC: 84,
|
| 1109 |
+
0x17BD: 84,
|
| 1110 |
+
0x17C6: 84,
|
| 1111 |
+
0x17C9: 84,
|
| 1112 |
+
0x17CA: 84,
|
| 1113 |
+
0x17CB: 84,
|
| 1114 |
+
0x17CC: 84,
|
| 1115 |
+
0x17CD: 84,
|
| 1116 |
+
0x17CE: 84,
|
| 1117 |
+
0x17CF: 84,
|
| 1118 |
+
0x17D0: 84,
|
| 1119 |
+
0x17D1: 84,
|
| 1120 |
+
0x17D2: 84,
|
| 1121 |
+
0x17D3: 84,
|
| 1122 |
+
0x17DD: 84,
|
| 1123 |
+
0x1807: 68,
|
| 1124 |
+
0x180A: 67,
|
| 1125 |
+
0x180B: 84,
|
| 1126 |
+
0x180C: 84,
|
| 1127 |
+
0x180D: 84,
|
| 1128 |
+
0x180F: 84,
|
| 1129 |
+
0x1820: 68,
|
| 1130 |
+
0x1821: 68,
|
| 1131 |
+
0x1822: 68,
|
| 1132 |
+
0x1823: 68,
|
| 1133 |
+
0x1824: 68,
|
| 1134 |
+
0x1825: 68,
|
| 1135 |
+
0x1826: 68,
|
| 1136 |
+
0x1827: 68,
|
| 1137 |
+
0x1828: 68,
|
| 1138 |
+
0x1829: 68,
|
| 1139 |
+
0x182A: 68,
|
| 1140 |
+
0x182B: 68,
|
| 1141 |
+
0x182C: 68,
|
| 1142 |
+
0x182D: 68,
|
| 1143 |
+
0x182E: 68,
|
| 1144 |
+
0x182F: 68,
|
| 1145 |
+
0x1830: 68,
|
| 1146 |
+
0x1831: 68,
|
| 1147 |
+
0x1832: 68,
|
| 1148 |
+
0x1833: 68,
|
| 1149 |
+
0x1834: 68,
|
| 1150 |
+
0x1835: 68,
|
| 1151 |
+
0x1836: 68,
|
| 1152 |
+
0x1837: 68,
|
| 1153 |
+
0x1838: 68,
|
| 1154 |
+
0x1839: 68,
|
| 1155 |
+
0x183A: 68,
|
| 1156 |
+
0x183B: 68,
|
| 1157 |
+
0x183C: 68,
|
| 1158 |
+
0x183D: 68,
|
| 1159 |
+
0x183E: 68,
|
| 1160 |
+
0x183F: 68,
|
| 1161 |
+
0x1840: 68,
|
| 1162 |
+
0x1841: 68,
|
| 1163 |
+
0x1842: 68,
|
| 1164 |
+
0x1843: 68,
|
| 1165 |
+
0x1844: 68,
|
| 1166 |
+
0x1845: 68,
|
| 1167 |
+
0x1846: 68,
|
| 1168 |
+
0x1847: 68,
|
| 1169 |
+
0x1848: 68,
|
| 1170 |
+
0x1849: 68,
|
| 1171 |
+
0x184A: 68,
|
| 1172 |
+
0x184B: 68,
|
| 1173 |
+
0x184C: 68,
|
| 1174 |
+
0x184D: 68,
|
| 1175 |
+
0x184E: 68,
|
| 1176 |
+
0x184F: 68,
|
| 1177 |
+
0x1850: 68,
|
| 1178 |
+
0x1851: 68,
|
| 1179 |
+
0x1852: 68,
|
| 1180 |
+
0x1853: 68,
|
| 1181 |
+
0x1854: 68,
|
| 1182 |
+
0x1855: 68,
|
| 1183 |
+
0x1856: 68,
|
| 1184 |
+
0x1857: 68,
|
| 1185 |
+
0x1858: 68,
|
| 1186 |
+
0x1859: 68,
|
| 1187 |
+
0x185A: 68,
|
| 1188 |
+
0x185B: 68,
|
| 1189 |
+
0x185C: 68,
|
| 1190 |
+
0x185D: 68,
|
| 1191 |
+
0x185E: 68,
|
| 1192 |
+
0x185F: 68,
|
| 1193 |
+
0x1860: 68,
|
| 1194 |
+
0x1861: 68,
|
| 1195 |
+
0x1862: 68,
|
| 1196 |
+
0x1863: 68,
|
| 1197 |
+
0x1864: 68,
|
| 1198 |
+
0x1865: 68,
|
| 1199 |
+
0x1866: 68,
|
| 1200 |
+
0x1867: 68,
|
| 1201 |
+
0x1868: 68,
|
| 1202 |
+
0x1869: 68,
|
| 1203 |
+
0x186A: 68,
|
| 1204 |
+
0x186B: 68,
|
| 1205 |
+
0x186C: 68,
|
| 1206 |
+
0x186D: 68,
|
| 1207 |
+
0x186E: 68,
|
| 1208 |
+
0x186F: 68,
|
| 1209 |
+
0x1870: 68,
|
| 1210 |
+
0x1871: 68,
|
| 1211 |
+
0x1872: 68,
|
| 1212 |
+
0x1873: 68,
|
| 1213 |
+
0x1874: 68,
|
| 1214 |
+
0x1875: 68,
|
| 1215 |
+
0x1876: 68,
|
| 1216 |
+
0x1877: 68,
|
| 1217 |
+
0x1878: 68,
|
| 1218 |
+
0x1885: 84,
|
| 1219 |
+
0x1886: 84,
|
| 1220 |
+
0x1887: 68,
|
| 1221 |
+
0x1888: 68,
|
| 1222 |
+
0x1889: 68,
|
| 1223 |
+
0x188A: 68,
|
| 1224 |
+
0x188B: 68,
|
| 1225 |
+
0x188C: 68,
|
| 1226 |
+
0x188D: 68,
|
| 1227 |
+
0x188E: 68,
|
| 1228 |
+
0x188F: 68,
|
| 1229 |
+
0x1890: 68,
|
| 1230 |
+
0x1891: 68,
|
| 1231 |
+
0x1892: 68,
|
| 1232 |
+
0x1893: 68,
|
| 1233 |
+
0x1894: 68,
|
| 1234 |
+
0x1895: 68,
|
| 1235 |
+
0x1896: 68,
|
| 1236 |
+
0x1897: 68,
|
| 1237 |
+
0x1898: 68,
|
| 1238 |
+
0x1899: 68,
|
| 1239 |
+
0x189A: 68,
|
| 1240 |
+
0x189B: 68,
|
| 1241 |
+
0x189C: 68,
|
| 1242 |
+
0x189D: 68,
|
| 1243 |
+
0x189E: 68,
|
| 1244 |
+
0x189F: 68,
|
| 1245 |
+
0x18A0: 68,
|
| 1246 |
+
0x18A1: 68,
|
| 1247 |
+
0x18A2: 68,
|
| 1248 |
+
0x18A3: 68,
|
| 1249 |
+
0x18A4: 68,
|
| 1250 |
+
0x18A5: 68,
|
| 1251 |
+
0x18A6: 68,
|
| 1252 |
+
0x18A7: 68,
|
| 1253 |
+
0x18A8: 68,
|
| 1254 |
+
0x18A9: 84,
|
| 1255 |
+
0x18AA: 68,
|
| 1256 |
+
0x1920: 84,
|
| 1257 |
+
0x1921: 84,
|
| 1258 |
+
0x1922: 84,
|
| 1259 |
+
0x1927: 84,
|
| 1260 |
+
0x1928: 84,
|
| 1261 |
+
0x1932: 84,
|
| 1262 |
+
0x1939: 84,
|
| 1263 |
+
0x193A: 84,
|
| 1264 |
+
0x193B: 84,
|
| 1265 |
+
0x1A17: 84,
|
| 1266 |
+
0x1A18: 84,
|
| 1267 |
+
0x1A1B: 84,
|
| 1268 |
+
0x1A56: 84,
|
| 1269 |
+
0x1A58: 84,
|
| 1270 |
+
0x1A59: 84,
|
| 1271 |
+
0x1A5A: 84,
|
| 1272 |
+
0x1A5B: 84,
|
| 1273 |
+
0x1A5C: 84,
|
| 1274 |
+
0x1A5D: 84,
|
| 1275 |
+
0x1A5E: 84,
|
| 1276 |
+
0x1A60: 84,
|
| 1277 |
+
0x1A62: 84,
|
| 1278 |
+
0x1A65: 84,
|
| 1279 |
+
0x1A66: 84,
|
| 1280 |
+
0x1A67: 84,
|
| 1281 |
+
0x1A68: 84,
|
| 1282 |
+
0x1A69: 84,
|
| 1283 |
+
0x1A6A: 84,
|
| 1284 |
+
0x1A6B: 84,
|
| 1285 |
+
0x1A6C: 84,
|
| 1286 |
+
0x1A73: 84,
|
| 1287 |
+
0x1A74: 84,
|
| 1288 |
+
0x1A75: 84,
|
| 1289 |
+
0x1A76: 84,
|
| 1290 |
+
0x1A77: 84,
|
| 1291 |
+
0x1A78: 84,
|
| 1292 |
+
0x1A79: 84,
|
| 1293 |
+
0x1A7A: 84,
|
| 1294 |
+
0x1A7B: 84,
|
| 1295 |
+
0x1A7C: 84,
|
| 1296 |
+
0x1A7F: 84,
|
| 1297 |
+
0x1AB0: 84,
|
| 1298 |
+
0x1AB1: 84,
|
| 1299 |
+
0x1AB2: 84,
|
| 1300 |
+
0x1AB3: 84,
|
| 1301 |
+
0x1AB4: 84,
|
| 1302 |
+
0x1AB5: 84,
|
| 1303 |
+
0x1AB6: 84,
|
| 1304 |
+
0x1AB7: 84,
|
| 1305 |
+
0x1AB8: 84,
|
| 1306 |
+
0x1AB9: 84,
|
| 1307 |
+
0x1ABA: 84,
|
| 1308 |
+
0x1ABB: 84,
|
| 1309 |
+
0x1ABC: 84,
|
| 1310 |
+
0x1ABD: 84,
|
| 1311 |
+
0x1ABE: 84,
|
| 1312 |
+
0x1ABF: 84,
|
| 1313 |
+
0x1AC0: 84,
|
| 1314 |
+
0x1AC1: 84,
|
| 1315 |
+
0x1AC2: 84,
|
| 1316 |
+
0x1AC3: 84,
|
| 1317 |
+
0x1AC4: 84,
|
| 1318 |
+
0x1AC5: 84,
|
| 1319 |
+
0x1AC6: 84,
|
| 1320 |
+
0x1AC7: 84,
|
| 1321 |
+
0x1AC8: 84,
|
| 1322 |
+
0x1AC9: 84,
|
| 1323 |
+
0x1ACA: 84,
|
| 1324 |
+
0x1ACB: 84,
|
| 1325 |
+
0x1ACC: 84,
|
| 1326 |
+
0x1ACD: 84,
|
| 1327 |
+
0x1ACE: 84,
|
| 1328 |
+
0x1B00: 84,
|
| 1329 |
+
0x1B01: 84,
|
| 1330 |
+
0x1B02: 84,
|
| 1331 |
+
0x1B03: 84,
|
| 1332 |
+
0x1B34: 84,
|
| 1333 |
+
0x1B36: 84,
|
| 1334 |
+
0x1B37: 84,
|
| 1335 |
+
0x1B38: 84,
|
| 1336 |
+
0x1B39: 84,
|
| 1337 |
+
0x1B3A: 84,
|
| 1338 |
+
0x1B3C: 84,
|
| 1339 |
+
0x1B42: 84,
|
| 1340 |
+
0x1B6B: 84,
|
| 1341 |
+
0x1B6C: 84,
|
| 1342 |
+
0x1B6D: 84,
|
| 1343 |
+
0x1B6E: 84,
|
| 1344 |
+
0x1B6F: 84,
|
| 1345 |
+
0x1B70: 84,
|
| 1346 |
+
0x1B71: 84,
|
| 1347 |
+
0x1B72: 84,
|
| 1348 |
+
0x1B73: 84,
|
| 1349 |
+
0x1B80: 84,
|
| 1350 |
+
0x1B81: 84,
|
| 1351 |
+
0x1BA2: 84,
|
| 1352 |
+
0x1BA3: 84,
|
| 1353 |
+
0x1BA4: 84,
|
| 1354 |
+
0x1BA5: 84,
|
| 1355 |
+
0x1BA8: 84,
|
| 1356 |
+
0x1BA9: 84,
|
| 1357 |
+
0x1BAB: 84,
|
| 1358 |
+
0x1BAC: 84,
|
| 1359 |
+
0x1BAD: 84,
|
| 1360 |
+
0x1BE6: 84,
|
| 1361 |
+
0x1BE8: 84,
|
| 1362 |
+
0x1BE9: 84,
|
| 1363 |
+
0x1BED: 84,
|
| 1364 |
+
0x1BEF: 84,
|
| 1365 |
+
0x1BF0: 84,
|
| 1366 |
+
0x1BF1: 84,
|
| 1367 |
+
0x1C2C: 84,
|
| 1368 |
+
0x1C2D: 84,
|
| 1369 |
+
0x1C2E: 84,
|
| 1370 |
+
0x1C2F: 84,
|
| 1371 |
+
0x1C30: 84,
|
| 1372 |
+
0x1C31: 84,
|
| 1373 |
+
0x1C32: 84,
|
| 1374 |
+
0x1C33: 84,
|
| 1375 |
+
0x1C36: 84,
|
| 1376 |
+
0x1C37: 84,
|
| 1377 |
+
0x1CD0: 84,
|
| 1378 |
+
0x1CD1: 84,
|
| 1379 |
+
0x1CD2: 84,
|
| 1380 |
+
0x1CD4: 84,
|
| 1381 |
+
0x1CD5: 84,
|
| 1382 |
+
0x1CD6: 84,
|
| 1383 |
+
0x1CD7: 84,
|
| 1384 |
+
0x1CD8: 84,
|
| 1385 |
+
0x1CD9: 84,
|
| 1386 |
+
0x1CDA: 84,
|
| 1387 |
+
0x1CDB: 84,
|
| 1388 |
+
0x1CDC: 84,
|
| 1389 |
+
0x1CDD: 84,
|
| 1390 |
+
0x1CDE: 84,
|
| 1391 |
+
0x1CDF: 84,
|
| 1392 |
+
0x1CE0: 84,
|
| 1393 |
+
0x1CE2: 84,
|
| 1394 |
+
0x1CE3: 84,
|
| 1395 |
+
0x1CE4: 84,
|
| 1396 |
+
0x1CE5: 84,
|
| 1397 |
+
0x1CE6: 84,
|
| 1398 |
+
0x1CE7: 84,
|
| 1399 |
+
0x1CE8: 84,
|
| 1400 |
+
0x1CED: 84,
|
| 1401 |
+
0x1CF4: 84,
|
| 1402 |
+
0x1CF8: 84,
|
| 1403 |
+
0x1CF9: 84,
|
| 1404 |
+
0x1DC0: 84,
|
| 1405 |
+
0x1DC1: 84,
|
| 1406 |
+
0x1DC2: 84,
|
| 1407 |
+
0x1DC3: 84,
|
| 1408 |
+
0x1DC4: 84,
|
| 1409 |
+
0x1DC5: 84,
|
| 1410 |
+
0x1DC6: 84,
|
| 1411 |
+
0x1DC7: 84,
|
| 1412 |
+
0x1DC8: 84,
|
| 1413 |
+
0x1DC9: 84,
|
| 1414 |
+
0x1DCA: 84,
|
| 1415 |
+
0x1DCB: 84,
|
| 1416 |
+
0x1DCC: 84,
|
| 1417 |
+
0x1DCD: 84,
|
| 1418 |
+
0x1DCE: 84,
|
| 1419 |
+
0x1DCF: 84,
|
| 1420 |
+
0x1DD0: 84,
|
| 1421 |
+
0x1DD1: 84,
|
| 1422 |
+
0x1DD2: 84,
|
| 1423 |
+
0x1DD3: 84,
|
| 1424 |
+
0x1DD4: 84,
|
| 1425 |
+
0x1DD5: 84,
|
| 1426 |
+
0x1DD6: 84,
|
| 1427 |
+
0x1DD7: 84,
|
| 1428 |
+
0x1DD8: 84,
|
| 1429 |
+
0x1DD9: 84,
|
| 1430 |
+
0x1DDA: 84,
|
| 1431 |
+
0x1DDB: 84,
|
| 1432 |
+
0x1DDC: 84,
|
| 1433 |
+
0x1DDD: 84,
|
| 1434 |
+
0x1DDE: 84,
|
| 1435 |
+
0x1DDF: 84,
|
| 1436 |
+
0x1DE0: 84,
|
| 1437 |
+
0x1DE1: 84,
|
| 1438 |
+
0x1DE2: 84,
|
| 1439 |
+
0x1DE3: 84,
|
| 1440 |
+
0x1DE4: 84,
|
| 1441 |
+
0x1DE5: 84,
|
| 1442 |
+
0x1DE6: 84,
|
| 1443 |
+
0x1DE7: 84,
|
| 1444 |
+
0x1DE8: 84,
|
| 1445 |
+
0x1DE9: 84,
|
| 1446 |
+
0x1DEA: 84,
|
| 1447 |
+
0x1DEB: 84,
|
| 1448 |
+
0x1DEC: 84,
|
| 1449 |
+
0x1DED: 84,
|
| 1450 |
+
0x1DEE: 84,
|
| 1451 |
+
0x1DEF: 84,
|
| 1452 |
+
0x1DF0: 84,
|
| 1453 |
+
0x1DF1: 84,
|
| 1454 |
+
0x1DF2: 84,
|
| 1455 |
+
0x1DF3: 84,
|
| 1456 |
+
0x1DF4: 84,
|
| 1457 |
+
0x1DF5: 84,
|
| 1458 |
+
0x1DF6: 84,
|
| 1459 |
+
0x1DF7: 84,
|
| 1460 |
+
0x1DF8: 84,
|
| 1461 |
+
0x1DF9: 84,
|
| 1462 |
+
0x1DFA: 84,
|
| 1463 |
+
0x1DFB: 84,
|
| 1464 |
+
0x1DFC: 84,
|
| 1465 |
+
0x1DFD: 84,
|
| 1466 |
+
0x1DFE: 84,
|
| 1467 |
+
0x1DFF: 84,
|
| 1468 |
+
0x200B: 84,
|
| 1469 |
+
0x200D: 67,
|
| 1470 |
+
0x200E: 84,
|
| 1471 |
+
0x200F: 84,
|
| 1472 |
+
0x202A: 84,
|
| 1473 |
+
0x202B: 84,
|
| 1474 |
+
0x202C: 84,
|
| 1475 |
+
0x202D: 84,
|
| 1476 |
+
0x202E: 84,
|
| 1477 |
+
0x2060: 84,
|
| 1478 |
+
0x2061: 84,
|
| 1479 |
+
0x2062: 84,
|
| 1480 |
+
0x2063: 84,
|
| 1481 |
+
0x2064: 84,
|
| 1482 |
+
0x206A: 84,
|
| 1483 |
+
0x206B: 84,
|
| 1484 |
+
0x206C: 84,
|
| 1485 |
+
0x206D: 84,
|
| 1486 |
+
0x206E: 84,
|
| 1487 |
+
0x206F: 84,
|
| 1488 |
+
0x20D0: 84,
|
| 1489 |
+
0x20D1: 84,
|
| 1490 |
+
0x20D2: 84,
|
| 1491 |
+
0x20D3: 84,
|
| 1492 |
+
0x20D4: 84,
|
| 1493 |
+
0x20D5: 84,
|
| 1494 |
+
0x20D6: 84,
|
| 1495 |
+
0x20D7: 84,
|
| 1496 |
+
0x20D8: 84,
|
| 1497 |
+
0x20D9: 84,
|
| 1498 |
+
0x20DA: 84,
|
| 1499 |
+
0x20DB: 84,
|
| 1500 |
+
0x20DC: 84,
|
| 1501 |
+
0x20DD: 84,
|
| 1502 |
+
0x20DE: 84,
|
| 1503 |
+
0x20DF: 84,
|
| 1504 |
+
0x20E0: 84,
|
| 1505 |
+
0x20E1: 84,
|
| 1506 |
+
0x20E2: 84,
|
| 1507 |
+
0x20E3: 84,
|
| 1508 |
+
0x20E4: 84,
|
| 1509 |
+
0x20E5: 84,
|
| 1510 |
+
0x20E6: 84,
|
| 1511 |
+
0x20E7: 84,
|
| 1512 |
+
0x20E8: 84,
|
| 1513 |
+
0x20E9: 84,
|
| 1514 |
+
0x20EA: 84,
|
| 1515 |
+
0x20EB: 84,
|
| 1516 |
+
0x20EC: 84,
|
| 1517 |
+
0x20ED: 84,
|
| 1518 |
+
0x20EE: 84,
|
| 1519 |
+
0x20EF: 84,
|
| 1520 |
+
0x20F0: 84,
|
| 1521 |
+
0x2CEF: 84,
|
| 1522 |
+
0x2CF0: 84,
|
| 1523 |
+
0x2CF1: 84,
|
| 1524 |
+
0x2D7F: 84,
|
| 1525 |
+
0x2DE0: 84,
|
| 1526 |
+
0x2DE1: 84,
|
| 1527 |
+
0x2DE2: 84,
|
| 1528 |
+
0x2DE3: 84,
|
| 1529 |
+
0x2DE4: 84,
|
| 1530 |
+
0x2DE5: 84,
|
| 1531 |
+
0x2DE6: 84,
|
| 1532 |
+
0x2DE7: 84,
|
| 1533 |
+
0x2DE8: 84,
|
| 1534 |
+
0x2DE9: 84,
|
| 1535 |
+
0x2DEA: 84,
|
| 1536 |
+
0x2DEB: 84,
|
| 1537 |
+
0x2DEC: 84,
|
| 1538 |
+
0x2DED: 84,
|
| 1539 |
+
0x2DEE: 84,
|
| 1540 |
+
0x2DEF: 84,
|
| 1541 |
+
0x2DF0: 84,
|
| 1542 |
+
0x2DF1: 84,
|
| 1543 |
+
0x2DF2: 84,
|
| 1544 |
+
0x2DF3: 84,
|
| 1545 |
+
0x2DF4: 84,
|
| 1546 |
+
0x2DF5: 84,
|
| 1547 |
+
0x2DF6: 84,
|
| 1548 |
+
0x2DF7: 84,
|
| 1549 |
+
0x2DF8: 84,
|
| 1550 |
+
0x2DF9: 84,
|
| 1551 |
+
0x2DFA: 84,
|
| 1552 |
+
0x2DFB: 84,
|
| 1553 |
+
0x2DFC: 84,
|
| 1554 |
+
0x2DFD: 84,
|
| 1555 |
+
0x2DFE: 84,
|
| 1556 |
+
0x2DFF: 84,
|
| 1557 |
+
0x302A: 84,
|
| 1558 |
+
0x302B: 84,
|
| 1559 |
+
0x302C: 84,
|
| 1560 |
+
0x302D: 84,
|
| 1561 |
+
0x3099: 84,
|
| 1562 |
+
0x309A: 84,
|
| 1563 |
+
0xA66F: 84,
|
| 1564 |
+
0xA670: 84,
|
| 1565 |
+
0xA671: 84,
|
| 1566 |
+
0xA672: 84,
|
| 1567 |
+
0xA674: 84,
|
| 1568 |
+
0xA675: 84,
|
| 1569 |
+
0xA676: 84,
|
| 1570 |
+
0xA677: 84,
|
| 1571 |
+
0xA678: 84,
|
| 1572 |
+
0xA679: 84,
|
| 1573 |
+
0xA67A: 84,
|
| 1574 |
+
0xA67B: 84,
|
| 1575 |
+
0xA67C: 84,
|
| 1576 |
+
0xA67D: 84,
|
| 1577 |
+
0xA69E: 84,
|
| 1578 |
+
0xA69F: 84,
|
| 1579 |
+
0xA6F0: 84,
|
| 1580 |
+
0xA6F1: 84,
|
| 1581 |
+
0xA802: 84,
|
| 1582 |
+
0xA806: 84,
|
| 1583 |
+
0xA80B: 84,
|
| 1584 |
+
0xA825: 84,
|
| 1585 |
+
0xA826: 84,
|
| 1586 |
+
0xA82C: 84,
|
| 1587 |
+
0xA840: 68,
|
| 1588 |
+
0xA841: 68,
|
| 1589 |
+
0xA842: 68,
|
| 1590 |
+
0xA843: 68,
|
| 1591 |
+
0xA844: 68,
|
| 1592 |
+
0xA845: 68,
|
| 1593 |
+
0xA846: 68,
|
| 1594 |
+
0xA847: 68,
|
| 1595 |
+
0xA848: 68,
|
| 1596 |
+
0xA849: 68,
|
| 1597 |
+
0xA84A: 68,
|
| 1598 |
+
0xA84B: 68,
|
| 1599 |
+
0xA84C: 68,
|
| 1600 |
+
0xA84D: 68,
|
| 1601 |
+
0xA84E: 68,
|
| 1602 |
+
0xA84F: 68,
|
| 1603 |
+
0xA850: 68,
|
| 1604 |
+
0xA851: 68,
|
| 1605 |
+
0xA852: 68,
|
| 1606 |
+
0xA853: 68,
|
| 1607 |
+
0xA854: 68,
|
| 1608 |
+
0xA855: 68,
|
| 1609 |
+
0xA856: 68,
|
| 1610 |
+
0xA857: 68,
|
| 1611 |
+
0xA858: 68,
|
| 1612 |
+
0xA859: 68,
|
| 1613 |
+
0xA85A: 68,
|
| 1614 |
+
0xA85B: 68,
|
| 1615 |
+
0xA85C: 68,
|
| 1616 |
+
0xA85D: 68,
|
| 1617 |
+
0xA85E: 68,
|
| 1618 |
+
0xA85F: 68,
|
| 1619 |
+
0xA860: 68,
|
| 1620 |
+
0xA861: 68,
|
| 1621 |
+
0xA862: 68,
|
| 1622 |
+
0xA863: 68,
|
| 1623 |
+
0xA864: 68,
|
| 1624 |
+
0xA865: 68,
|
| 1625 |
+
0xA866: 68,
|
| 1626 |
+
0xA867: 68,
|
| 1627 |
+
0xA868: 68,
|
| 1628 |
+
0xA869: 68,
|
| 1629 |
+
0xA86A: 68,
|
| 1630 |
+
0xA86B: 68,
|
| 1631 |
+
0xA86C: 68,
|
| 1632 |
+
0xA86D: 68,
|
| 1633 |
+
0xA86E: 68,
|
| 1634 |
+
0xA86F: 68,
|
| 1635 |
+
0xA870: 68,
|
| 1636 |
+
0xA871: 68,
|
| 1637 |
+
0xA872: 76,
|
| 1638 |
+
0xA8C4: 84,
|
| 1639 |
+
0xA8C5: 84,
|
| 1640 |
+
0xA8E0: 84,
|
| 1641 |
+
0xA8E1: 84,
|
| 1642 |
+
0xA8E2: 84,
|
| 1643 |
+
0xA8E3: 84,
|
| 1644 |
+
0xA8E4: 84,
|
| 1645 |
+
0xA8E5: 84,
|
| 1646 |
+
0xA8E6: 84,
|
| 1647 |
+
0xA8E7: 84,
|
| 1648 |
+
0xA8E8: 84,
|
| 1649 |
+
0xA8E9: 84,
|
| 1650 |
+
0xA8EA: 84,
|
| 1651 |
+
0xA8EB: 84,
|
| 1652 |
+
0xA8EC: 84,
|
| 1653 |
+
0xA8ED: 84,
|
| 1654 |
+
0xA8EE: 84,
|
| 1655 |
+
0xA8EF: 84,
|
| 1656 |
+
0xA8F0: 84,
|
| 1657 |
+
0xA8F1: 84,
|
| 1658 |
+
0xA8FF: 84,
|
| 1659 |
+
0xA926: 84,
|
| 1660 |
+
0xA927: 84,
|
| 1661 |
+
0xA928: 84,
|
| 1662 |
+
0xA929: 84,
|
| 1663 |
+
0xA92A: 84,
|
| 1664 |
+
0xA92B: 84,
|
| 1665 |
+
0xA92C: 84,
|
| 1666 |
+
0xA92D: 84,
|
| 1667 |
+
0xA947: 84,
|
| 1668 |
+
0xA948: 84,
|
| 1669 |
+
0xA949: 84,
|
| 1670 |
+
0xA94A: 84,
|
| 1671 |
+
0xA94B: 84,
|
| 1672 |
+
0xA94C: 84,
|
| 1673 |
+
0xA94D: 84,
|
| 1674 |
+
0xA94E: 84,
|
| 1675 |
+
0xA94F: 84,
|
| 1676 |
+
0xA950: 84,
|
| 1677 |
+
0xA951: 84,
|
| 1678 |
+
0xA980: 84,
|
| 1679 |
+
0xA981: 84,
|
| 1680 |
+
0xA982: 84,
|
| 1681 |
+
0xA9B3: 84,
|
| 1682 |
+
0xA9B6: 84,
|
| 1683 |
+
0xA9B7: 84,
|
| 1684 |
+
0xA9B8: 84,
|
| 1685 |
+
0xA9B9: 84,
|
| 1686 |
+
0xA9BC: 84,
|
| 1687 |
+
0xA9BD: 84,
|
| 1688 |
+
0xA9E5: 84,
|
| 1689 |
+
0xAA29: 84,
|
| 1690 |
+
0xAA2A: 84,
|
| 1691 |
+
0xAA2B: 84,
|
| 1692 |
+
0xAA2C: 84,
|
| 1693 |
+
0xAA2D: 84,
|
| 1694 |
+
0xAA2E: 84,
|
| 1695 |
+
0xAA31: 84,
|
| 1696 |
+
0xAA32: 84,
|
| 1697 |
+
0xAA35: 84,
|
| 1698 |
+
0xAA36: 84,
|
| 1699 |
+
0xAA43: 84,
|
| 1700 |
+
0xAA4C: 84,
|
| 1701 |
+
0xAA7C: 84,
|
| 1702 |
+
0xAAB0: 84,
|
| 1703 |
+
0xAAB2: 84,
|
| 1704 |
+
0xAAB3: 84,
|
| 1705 |
+
0xAAB4: 84,
|
| 1706 |
+
0xAAB7: 84,
|
| 1707 |
+
0xAAB8: 84,
|
| 1708 |
+
0xAABE: 84,
|
| 1709 |
+
0xAABF: 84,
|
| 1710 |
+
0xAAC1: 84,
|
| 1711 |
+
0xAAEC: 84,
|
| 1712 |
+
0xAAED: 84,
|
| 1713 |
+
0xAAF6: 84,
|
| 1714 |
+
0xABE5: 84,
|
| 1715 |
+
0xABE8: 84,
|
| 1716 |
+
0xABED: 84,
|
| 1717 |
+
0xFB1E: 84,
|
| 1718 |
+
0xFE00: 84,
|
| 1719 |
+
0xFE01: 84,
|
| 1720 |
+
0xFE02: 84,
|
| 1721 |
+
0xFE03: 84,
|
| 1722 |
+
0xFE04: 84,
|
| 1723 |
+
0xFE05: 84,
|
| 1724 |
+
0xFE06: 84,
|
| 1725 |
+
0xFE07: 84,
|
| 1726 |
+
0xFE08: 84,
|
| 1727 |
+
0xFE09: 84,
|
| 1728 |
+
0xFE0A: 84,
|
| 1729 |
+
0xFE0B: 84,
|
| 1730 |
+
0xFE0C: 84,
|
| 1731 |
+
0xFE0D: 84,
|
| 1732 |
+
0xFE0E: 84,
|
| 1733 |
+
0xFE0F: 84,
|
| 1734 |
+
0xFE20: 84,
|
| 1735 |
+
0xFE21: 84,
|
| 1736 |
+
0xFE22: 84,
|
| 1737 |
+
0xFE23: 84,
|
| 1738 |
+
0xFE24: 84,
|
| 1739 |
+
0xFE25: 84,
|
| 1740 |
+
0xFE26: 84,
|
| 1741 |
+
0xFE27: 84,
|
| 1742 |
+
0xFE28: 84,
|
| 1743 |
+
0xFE29: 84,
|
| 1744 |
+
0xFE2A: 84,
|
| 1745 |
+
0xFE2B: 84,
|
| 1746 |
+
0xFE2C: 84,
|
| 1747 |
+
0xFE2D: 84,
|
| 1748 |
+
0xFE2E: 84,
|
| 1749 |
+
0xFE2F: 84,
|
| 1750 |
+
0xFEFF: 84,
|
| 1751 |
+
0xFFF9: 84,
|
| 1752 |
+
0xFFFA: 84,
|
| 1753 |
+
0xFFFB: 84,
|
| 1754 |
+
0x101FD: 84,
|
| 1755 |
+
0x102E0: 84,
|
| 1756 |
+
0x10376: 84,
|
| 1757 |
+
0x10377: 84,
|
| 1758 |
+
0x10378: 84,
|
| 1759 |
+
0x10379: 84,
|
| 1760 |
+
0x1037A: 84,
|
| 1761 |
+
0x10A01: 84,
|
| 1762 |
+
0x10A02: 84,
|
| 1763 |
+
0x10A03: 84,
|
| 1764 |
+
0x10A05: 84,
|
| 1765 |
+
0x10A06: 84,
|
| 1766 |
+
0x10A0C: 84,
|
| 1767 |
+
0x10A0D: 84,
|
| 1768 |
+
0x10A0E: 84,
|
| 1769 |
+
0x10A0F: 84,
|
| 1770 |
+
0x10A38: 84,
|
| 1771 |
+
0x10A39: 84,
|
| 1772 |
+
0x10A3A: 84,
|
| 1773 |
+
0x10A3F: 84,
|
| 1774 |
+
0x10AC0: 68,
|
| 1775 |
+
0x10AC1: 68,
|
| 1776 |
+
0x10AC2: 68,
|
| 1777 |
+
0x10AC3: 68,
|
| 1778 |
+
0x10AC4: 68,
|
| 1779 |
+
0x10AC5: 82,
|
| 1780 |
+
0x10AC7: 82,
|
| 1781 |
+
0x10AC9: 82,
|
| 1782 |
+
0x10ACA: 82,
|
| 1783 |
+
0x10ACD: 76,
|
| 1784 |
+
0x10ACE: 82,
|
| 1785 |
+
0x10ACF: 82,
|
| 1786 |
+
0x10AD0: 82,
|
| 1787 |
+
0x10AD1: 82,
|
| 1788 |
+
0x10AD2: 82,
|
| 1789 |
+
0x10AD3: 68,
|
| 1790 |
+
0x10AD4: 68,
|
| 1791 |
+
0x10AD5: 68,
|
| 1792 |
+
0x10AD6: 68,
|
| 1793 |
+
0x10AD7: 76,
|
| 1794 |
+
0x10AD8: 68,
|
| 1795 |
+
0x10AD9: 68,
|
| 1796 |
+
0x10ADA: 68,
|
| 1797 |
+
0x10ADB: 68,
|
| 1798 |
+
0x10ADC: 68,
|
| 1799 |
+
0x10ADD: 82,
|
| 1800 |
+
0x10ADE: 68,
|
| 1801 |
+
0x10ADF: 68,
|
| 1802 |
+
0x10AE0: 68,
|
| 1803 |
+
0x10AE1: 82,
|
| 1804 |
+
0x10AE4: 82,
|
| 1805 |
+
0x10AE5: 84,
|
| 1806 |
+
0x10AE6: 84,
|
| 1807 |
+
0x10AEB: 68,
|
| 1808 |
+
0x10AEC: 68,
|
| 1809 |
+
0x10AED: 68,
|
| 1810 |
+
0x10AEE: 68,
|
| 1811 |
+
0x10AEF: 82,
|
| 1812 |
+
0x10B80: 68,
|
| 1813 |
+
0x10B81: 82,
|
| 1814 |
+
0x10B82: 68,
|
| 1815 |
+
0x10B83: 82,
|
| 1816 |
+
0x10B84: 82,
|
| 1817 |
+
0x10B85: 82,
|
| 1818 |
+
0x10B86: 68,
|
| 1819 |
+
0x10B87: 68,
|
| 1820 |
+
0x10B88: 68,
|
| 1821 |
+
0x10B89: 82,
|
| 1822 |
+
0x10B8A: 68,
|
| 1823 |
+
0x10B8B: 68,
|
| 1824 |
+
0x10B8C: 82,
|
| 1825 |
+
0x10B8D: 68,
|
| 1826 |
+
0x10B8E: 82,
|
| 1827 |
+
0x10B8F: 82,
|
| 1828 |
+
0x10B90: 68,
|
| 1829 |
+
0x10B91: 82,
|
| 1830 |
+
0x10BA9: 82,
|
| 1831 |
+
0x10BAA: 82,
|
| 1832 |
+
0x10BAB: 82,
|
| 1833 |
+
0x10BAC: 82,
|
| 1834 |
+
0x10BAD: 68,
|
| 1835 |
+
0x10BAE: 68,
|
| 1836 |
+
0x10D00: 76,
|
| 1837 |
+
0x10D01: 68,
|
| 1838 |
+
0x10D02: 68,
|
| 1839 |
+
0x10D03: 68,
|
| 1840 |
+
0x10D04: 68,
|
| 1841 |
+
0x10D05: 68,
|
| 1842 |
+
0x10D06: 68,
|
| 1843 |
+
0x10D07: 68,
|
| 1844 |
+
0x10D08: 68,
|
| 1845 |
+
0x10D09: 68,
|
| 1846 |
+
0x10D0A: 68,
|
| 1847 |
+
0x10D0B: 68,
|
| 1848 |
+
0x10D0C: 68,
|
| 1849 |
+
0x10D0D: 68,
|
| 1850 |
+
0x10D0E: 68,
|
| 1851 |
+
0x10D0F: 68,
|
| 1852 |
+
0x10D10: 68,
|
| 1853 |
+
0x10D11: 68,
|
| 1854 |
+
0x10D12: 68,
|
| 1855 |
+
0x10D13: 68,
|
| 1856 |
+
0x10D14: 68,
|
| 1857 |
+
0x10D15: 68,
|
| 1858 |
+
0x10D16: 68,
|
| 1859 |
+
0x10D17: 68,
|
| 1860 |
+
0x10D18: 68,
|
| 1861 |
+
0x10D19: 68,
|
| 1862 |
+
0x10D1A: 68,
|
| 1863 |
+
0x10D1B: 68,
|
| 1864 |
+
0x10D1C: 68,
|
| 1865 |
+
0x10D1D: 68,
|
| 1866 |
+
0x10D1E: 68,
|
| 1867 |
+
0x10D1F: 68,
|
| 1868 |
+
0x10D20: 68,
|
| 1869 |
+
0x10D21: 68,
|
| 1870 |
+
0x10D22: 82,
|
| 1871 |
+
0x10D23: 68,
|
| 1872 |
+
0x10D24: 84,
|
| 1873 |
+
0x10D25: 84,
|
| 1874 |
+
0x10D26: 84,
|
| 1875 |
+
0x10D27: 84,
|
| 1876 |
+
0x10EAB: 84,
|
| 1877 |
+
0x10EAC: 84,
|
| 1878 |
+
0x10EFD: 84,
|
| 1879 |
+
0x10EFE: 84,
|
| 1880 |
+
0x10EFF: 84,
|
| 1881 |
+
0x10F30: 68,
|
| 1882 |
+
0x10F31: 68,
|
| 1883 |
+
0x10F32: 68,
|
| 1884 |
+
0x10F33: 82,
|
| 1885 |
+
0x10F34: 68,
|
| 1886 |
+
0x10F35: 68,
|
| 1887 |
+
0x10F36: 68,
|
| 1888 |
+
0x10F37: 68,
|
| 1889 |
+
0x10F38: 68,
|
| 1890 |
+
0x10F39: 68,
|
| 1891 |
+
0x10F3A: 68,
|
| 1892 |
+
0x10F3B: 68,
|
| 1893 |
+
0x10F3C: 68,
|
| 1894 |
+
0x10F3D: 68,
|
| 1895 |
+
0x10F3E: 68,
|
| 1896 |
+
0x10F3F: 68,
|
| 1897 |
+
0x10F40: 68,
|
| 1898 |
+
0x10F41: 68,
|
| 1899 |
+
0x10F42: 68,
|
| 1900 |
+
0x10F43: 68,
|
| 1901 |
+
0x10F44: 68,
|
| 1902 |
+
0x10F46: 84,
|
| 1903 |
+
0x10F47: 84,
|
| 1904 |
+
0x10F48: 84,
|
| 1905 |
+
0x10F49: 84,
|
| 1906 |
+
0x10F4A: 84,
|
| 1907 |
+
0x10F4B: 84,
|
| 1908 |
+
0x10F4C: 84,
|
| 1909 |
+
0x10F4D: 84,
|
| 1910 |
+
0x10F4E: 84,
|
| 1911 |
+
0x10F4F: 84,
|
| 1912 |
+
0x10F50: 84,
|
| 1913 |
+
0x10F51: 68,
|
| 1914 |
+
0x10F52: 68,
|
| 1915 |
+
0x10F53: 68,
|
| 1916 |
+
0x10F54: 82,
|
| 1917 |
+
0x10F70: 68,
|
| 1918 |
+
0x10F71: 68,
|
| 1919 |
+
0x10F72: 68,
|
| 1920 |
+
0x10F73: 68,
|
| 1921 |
+
0x10F74: 82,
|
| 1922 |
+
0x10F75: 82,
|
| 1923 |
+
0x10F76: 68,
|
| 1924 |
+
0x10F77: 68,
|
| 1925 |
+
0x10F78: 68,
|
| 1926 |
+
0x10F79: 68,
|
| 1927 |
+
0x10F7A: 68,
|
| 1928 |
+
0x10F7B: 68,
|
| 1929 |
+
0x10F7C: 68,
|
| 1930 |
+
0x10F7D: 68,
|
| 1931 |
+
0x10F7E: 68,
|
| 1932 |
+
0x10F7F: 68,
|
| 1933 |
+
0x10F80: 68,
|
| 1934 |
+
0x10F81: 68,
|
| 1935 |
+
0x10F82: 84,
|
| 1936 |
+
0x10F83: 84,
|
| 1937 |
+
0x10F84: 84,
|
| 1938 |
+
0x10F85: 84,
|
| 1939 |
+
0x10FB0: 68,
|
| 1940 |
+
0x10FB2: 68,
|
| 1941 |
+
0x10FB3: 68,
|
| 1942 |
+
0x10FB4: 82,
|
| 1943 |
+
0x10FB5: 82,
|
| 1944 |
+
0x10FB6: 82,
|
| 1945 |
+
0x10FB8: 68,
|
| 1946 |
+
0x10FB9: 82,
|
| 1947 |
+
0x10FBA: 82,
|
| 1948 |
+
0x10FBB: 68,
|
| 1949 |
+
0x10FBC: 68,
|
| 1950 |
+
0x10FBD: 82,
|
| 1951 |
+
0x10FBE: 68,
|
| 1952 |
+
0x10FBF: 68,
|
| 1953 |
+
0x10FC1: 68,
|
| 1954 |
+
0x10FC2: 82,
|
| 1955 |
+
0x10FC3: 82,
|
| 1956 |
+
0x10FC4: 68,
|
| 1957 |
+
0x10FC9: 82,
|
| 1958 |
+
0x10FCA: 68,
|
| 1959 |
+
0x10FCB: 76,
|
| 1960 |
+
0x11001: 84,
|
| 1961 |
+
0x11038: 84,
|
| 1962 |
+
0x11039: 84,
|
| 1963 |
+
0x1103A: 84,
|
| 1964 |
+
0x1103B: 84,
|
| 1965 |
+
0x1103C: 84,
|
| 1966 |
+
0x1103D: 84,
|
| 1967 |
+
0x1103E: 84,
|
| 1968 |
+
0x1103F: 84,
|
| 1969 |
+
0x11040: 84,
|
| 1970 |
+
0x11041: 84,
|
| 1971 |
+
0x11042: 84,
|
| 1972 |
+
0x11043: 84,
|
| 1973 |
+
0x11044: 84,
|
| 1974 |
+
0x11045: 84,
|
| 1975 |
+
0x11046: 84,
|
| 1976 |
+
0x11070: 84,
|
| 1977 |
+
0x11073: 84,
|
| 1978 |
+
0x11074: 84,
|
| 1979 |
+
0x1107F: 84,
|
| 1980 |
+
0x11080: 84,
|
| 1981 |
+
0x11081: 84,
|
| 1982 |
+
0x110B3: 84,
|
| 1983 |
+
0x110B4: 84,
|
| 1984 |
+
0x110B5: 84,
|
| 1985 |
+
0x110B6: 84,
|
| 1986 |
+
0x110B9: 84,
|
| 1987 |
+
0x110BA: 84,
|
| 1988 |
+
0x110C2: 84,
|
| 1989 |
+
0x11100: 84,
|
| 1990 |
+
0x11101: 84,
|
| 1991 |
+
0x11102: 84,
|
| 1992 |
+
0x11127: 84,
|
| 1993 |
+
0x11128: 84,
|
| 1994 |
+
0x11129: 84,
|
| 1995 |
+
0x1112A: 84,
|
| 1996 |
+
0x1112B: 84,
|
| 1997 |
+
0x1112D: 84,
|
| 1998 |
+
0x1112E: 84,
|
| 1999 |
+
0x1112F: 84,
|
| 2000 |
+
0x11130: 84,
|
| 2001 |
+
0x11131: 84,
|
| 2002 |
+
0x11132: 84,
|
| 2003 |
+
0x11133: 84,
|
| 2004 |
+
0x11134: 84,
|
| 2005 |
+
0x11173: 84,
|
| 2006 |
+
0x11180: 84,
|
| 2007 |
+
0x11181: 84,
|
| 2008 |
+
0x111B6: 84,
|
| 2009 |
+
0x111B7: 84,
|
| 2010 |
+
0x111B8: 84,
|
| 2011 |
+
0x111B9: 84,
|
| 2012 |
+
0x111BA: 84,
|
| 2013 |
+
0x111BB: 84,
|
| 2014 |
+
0x111BC: 84,
|
| 2015 |
+
0x111BD: 84,
|
| 2016 |
+
0x111BE: 84,
|
| 2017 |
+
0x111C9: 84,
|
| 2018 |
+
0x111CA: 84,
|
| 2019 |
+
0x111CB: 84,
|
| 2020 |
+
0x111CC: 84,
|
| 2021 |
+
0x111CF: 84,
|
| 2022 |
+
0x1122F: 84,
|
| 2023 |
+
0x11230: 84,
|
| 2024 |
+
0x11231: 84,
|
| 2025 |
+
0x11234: 84,
|
| 2026 |
+
0x11236: 84,
|
| 2027 |
+
0x11237: 84,
|
| 2028 |
+
0x1123E: 84,
|
| 2029 |
+
0x11241: 84,
|
| 2030 |
+
0x112DF: 84,
|
| 2031 |
+
0x112E3: 84,
|
| 2032 |
+
0x112E4: 84,
|
| 2033 |
+
0x112E5: 84,
|
| 2034 |
+
0x112E6: 84,
|
| 2035 |
+
0x112E7: 84,
|
| 2036 |
+
0x112E8: 84,
|
| 2037 |
+
0x112E9: 84,
|
| 2038 |
+
0x112EA: 84,
|
| 2039 |
+
0x11300: 84,
|
| 2040 |
+
0x11301: 84,
|
| 2041 |
+
0x1133B: 84,
|
| 2042 |
+
0x1133C: 84,
|
| 2043 |
+
0x11340: 84,
|
| 2044 |
+
0x11366: 84,
|
| 2045 |
+
0x11367: 84,
|
| 2046 |
+
0x11368: 84,
|
| 2047 |
+
0x11369: 84,
|
| 2048 |
+
0x1136A: 84,
|
| 2049 |
+
0x1136B: 84,
|
| 2050 |
+
0x1136C: 84,
|
| 2051 |
+
0x11370: 84,
|
| 2052 |
+
0x11371: 84,
|
| 2053 |
+
0x11372: 84,
|
| 2054 |
+
0x11373: 84,
|
| 2055 |
+
0x11374: 84,
|
| 2056 |
+
0x11438: 84,
|
| 2057 |
+
0x11439: 84,
|
| 2058 |
+
0x1143A: 84,
|
| 2059 |
+
0x1143B: 84,
|
| 2060 |
+
0x1143C: 84,
|
| 2061 |
+
0x1143D: 84,
|
| 2062 |
+
0x1143E: 84,
|
| 2063 |
+
0x1143F: 84,
|
| 2064 |
+
0x11442: 84,
|
| 2065 |
+
0x11443: 84,
|
| 2066 |
+
0x11444: 84,
|
| 2067 |
+
0x11446: 84,
|
| 2068 |
+
0x1145E: 84,
|
| 2069 |
+
0x114B3: 84,
|
| 2070 |
+
0x114B4: 84,
|
| 2071 |
+
0x114B5: 84,
|
| 2072 |
+
0x114B6: 84,
|
| 2073 |
+
0x114B7: 84,
|
| 2074 |
+
0x114B8: 84,
|
| 2075 |
+
0x114BA: 84,
|
| 2076 |
+
0x114BF: 84,
|
| 2077 |
+
0x114C0: 84,
|
| 2078 |
+
0x114C2: 84,
|
| 2079 |
+
0x114C3: 84,
|
| 2080 |
+
0x115B2: 84,
|
| 2081 |
+
0x115B3: 84,
|
| 2082 |
+
0x115B4: 84,
|
| 2083 |
+
0x115B5: 84,
|
| 2084 |
+
0x115BC: 84,
|
| 2085 |
+
0x115BD: 84,
|
| 2086 |
+
0x115BF: 84,
|
| 2087 |
+
0x115C0: 84,
|
| 2088 |
+
0x115DC: 84,
|
| 2089 |
+
0x115DD: 84,
|
| 2090 |
+
0x11633: 84,
|
| 2091 |
+
0x11634: 84,
|
| 2092 |
+
0x11635: 84,
|
| 2093 |
+
0x11636: 84,
|
| 2094 |
+
0x11637: 84,
|
| 2095 |
+
0x11638: 84,
|
| 2096 |
+
0x11639: 84,
|
| 2097 |
+
0x1163A: 84,
|
| 2098 |
+
0x1163D: 84,
|
| 2099 |
+
0x1163F: 84,
|
| 2100 |
+
0x11640: 84,
|
| 2101 |
+
0x116AB: 84,
|
| 2102 |
+
0x116AD: 84,
|
| 2103 |
+
0x116B0: 84,
|
| 2104 |
+
0x116B1: 84,
|
| 2105 |
+
0x116B2: 84,
|
| 2106 |
+
0x116B3: 84,
|
| 2107 |
+
0x116B4: 84,
|
| 2108 |
+
0x116B5: 84,
|
| 2109 |
+
0x116B7: 84,
|
| 2110 |
+
0x1171D: 84,
|
| 2111 |
+
0x1171E: 84,
|
| 2112 |
+
0x1171F: 84,
|
| 2113 |
+
0x11722: 84,
|
| 2114 |
+
0x11723: 84,
|
| 2115 |
+
0x11724: 84,
|
| 2116 |
+
0x11725: 84,
|
| 2117 |
+
0x11727: 84,
|
| 2118 |
+
0x11728: 84,
|
| 2119 |
+
0x11729: 84,
|
| 2120 |
+
0x1172A: 84,
|
| 2121 |
+
0x1172B: 84,
|
| 2122 |
+
0x1182F: 84,
|
| 2123 |
+
0x11830: 84,
|
| 2124 |
+
0x11831: 84,
|
| 2125 |
+
0x11832: 84,
|
| 2126 |
+
0x11833: 84,
|
| 2127 |
+
0x11834: 84,
|
| 2128 |
+
0x11835: 84,
|
| 2129 |
+
0x11836: 84,
|
| 2130 |
+
0x11837: 84,
|
| 2131 |
+
0x11839: 84,
|
| 2132 |
+
0x1183A: 84,
|
| 2133 |
+
0x1193B: 84,
|
| 2134 |
+
0x1193C: 84,
|
| 2135 |
+
0x1193E: 84,
|
| 2136 |
+
0x11943: 84,
|
| 2137 |
+
0x119D4: 84,
|
| 2138 |
+
0x119D5: 84,
|
| 2139 |
+
0x119D6: 84,
|
| 2140 |
+
0x119D7: 84,
|
| 2141 |
+
0x119DA: 84,
|
| 2142 |
+
0x119DB: 84,
|
| 2143 |
+
0x119E0: 84,
|
| 2144 |
+
0x11A01: 84,
|
| 2145 |
+
0x11A02: 84,
|
| 2146 |
+
0x11A03: 84,
|
| 2147 |
+
0x11A04: 84,
|
| 2148 |
+
0x11A05: 84,
|
| 2149 |
+
0x11A06: 84,
|
| 2150 |
+
0x11A07: 84,
|
| 2151 |
+
0x11A08: 84,
|
| 2152 |
+
0x11A09: 84,
|
| 2153 |
+
0x11A0A: 84,
|
| 2154 |
+
0x11A33: 84,
|
| 2155 |
+
0x11A34: 84,
|
| 2156 |
+
0x11A35: 84,
|
| 2157 |
+
0x11A36: 84,
|
| 2158 |
+
0x11A37: 84,
|
| 2159 |
+
0x11A38: 84,
|
| 2160 |
+
0x11A3B: 84,
|
| 2161 |
+
0x11A3C: 84,
|
| 2162 |
+
0x11A3D: 84,
|
| 2163 |
+
0x11A3E: 84,
|
| 2164 |
+
0x11A47: 84,
|
| 2165 |
+
0x11A51: 84,
|
| 2166 |
+
0x11A52: 84,
|
| 2167 |
+
0x11A53: 84,
|
| 2168 |
+
0x11A54: 84,
|
| 2169 |
+
0x11A55: 84,
|
| 2170 |
+
0x11A56: 84,
|
| 2171 |
+
0x11A59: 84,
|
| 2172 |
+
0x11A5A: 84,
|
| 2173 |
+
0x11A5B: 84,
|
| 2174 |
+
0x11A8A: 84,
|
| 2175 |
+
0x11A8B: 84,
|
| 2176 |
+
0x11A8C: 84,
|
| 2177 |
+
0x11A8D: 84,
|
| 2178 |
+
0x11A8E: 84,
|
| 2179 |
+
0x11A8F: 84,
|
| 2180 |
+
0x11A90: 84,
|
| 2181 |
+
0x11A91: 84,
|
| 2182 |
+
0x11A92: 84,
|
| 2183 |
+
0x11A93: 84,
|
| 2184 |
+
0x11A94: 84,
|
| 2185 |
+
0x11A95: 84,
|
| 2186 |
+
0x11A96: 84,
|
| 2187 |
+
0x11A98: 84,
|
| 2188 |
+
0x11A99: 84,
|
| 2189 |
+
0x11C30: 84,
|
| 2190 |
+
0x11C31: 84,
|
| 2191 |
+
0x11C32: 84,
|
| 2192 |
+
0x11C33: 84,
|
| 2193 |
+
0x11C34: 84,
|
| 2194 |
+
0x11C35: 84,
|
| 2195 |
+
0x11C36: 84,
|
| 2196 |
+
0x11C38: 84,
|
| 2197 |
+
0x11C39: 84,
|
| 2198 |
+
0x11C3A: 84,
|
| 2199 |
+
0x11C3B: 84,
|
| 2200 |
+
0x11C3C: 84,
|
| 2201 |
+
0x11C3D: 84,
|
| 2202 |
+
0x11C3F: 84,
|
| 2203 |
+
0x11C92: 84,
|
| 2204 |
+
0x11C93: 84,
|
| 2205 |
+
0x11C94: 84,
|
| 2206 |
+
0x11C95: 84,
|
| 2207 |
+
0x11C96: 84,
|
| 2208 |
+
0x11C97: 84,
|
| 2209 |
+
0x11C98: 84,
|
| 2210 |
+
0x11C99: 84,
|
| 2211 |
+
0x11C9A: 84,
|
| 2212 |
+
0x11C9B: 84,
|
| 2213 |
+
0x11C9C: 84,
|
| 2214 |
+
0x11C9D: 84,
|
| 2215 |
+
0x11C9E: 84,
|
| 2216 |
+
0x11C9F: 84,
|
| 2217 |
+
0x11CA0: 84,
|
| 2218 |
+
0x11CA1: 84,
|
| 2219 |
+
0x11CA2: 84,
|
| 2220 |
+
0x11CA3: 84,
|
| 2221 |
+
0x11CA4: 84,
|
| 2222 |
+
0x11CA5: 84,
|
| 2223 |
+
0x11CA6: 84,
|
| 2224 |
+
0x11CA7: 84,
|
| 2225 |
+
0x11CAA: 84,
|
| 2226 |
+
0x11CAB: 84,
|
| 2227 |
+
0x11CAC: 84,
|
| 2228 |
+
0x11CAD: 84,
|
| 2229 |
+
0x11CAE: 84,
|
| 2230 |
+
0x11CAF: 84,
|
| 2231 |
+
0x11CB0: 84,
|
| 2232 |
+
0x11CB2: 84,
|
| 2233 |
+
0x11CB3: 84,
|
| 2234 |
+
0x11CB5: 84,
|
| 2235 |
+
0x11CB6: 84,
|
| 2236 |
+
0x11D31: 84,
|
| 2237 |
+
0x11D32: 84,
|
| 2238 |
+
0x11D33: 84,
|
| 2239 |
+
0x11D34: 84,
|
| 2240 |
+
0x11D35: 84,
|
| 2241 |
+
0x11D36: 84,
|
| 2242 |
+
0x11D3A: 84,
|
| 2243 |
+
0x11D3C: 84,
|
| 2244 |
+
0x11D3D: 84,
|
| 2245 |
+
0x11D3F: 84,
|
| 2246 |
+
0x11D40: 84,
|
| 2247 |
+
0x11D41: 84,
|
| 2248 |
+
0x11D42: 84,
|
| 2249 |
+
0x11D43: 84,
|
| 2250 |
+
0x11D44: 84,
|
| 2251 |
+
0x11D45: 84,
|
| 2252 |
+
0x11D47: 84,
|
| 2253 |
+
0x11D90: 84,
|
| 2254 |
+
0x11D91: 84,
|
| 2255 |
+
0x11D95: 84,
|
| 2256 |
+
0x11D97: 84,
|
| 2257 |
+
0x11EF3: 84,
|
| 2258 |
+
0x11EF4: 84,
|
| 2259 |
+
0x11F00: 84,
|
| 2260 |
+
0x11F01: 84,
|
| 2261 |
+
0x11F36: 84,
|
| 2262 |
+
0x11F37: 84,
|
| 2263 |
+
0x11F38: 84,
|
| 2264 |
+
0x11F39: 84,
|
| 2265 |
+
0x11F3A: 84,
|
| 2266 |
+
0x11F40: 84,
|
| 2267 |
+
0x11F42: 84,
|
| 2268 |
+
0x13430: 84,
|
| 2269 |
+
0x13431: 84,
|
| 2270 |
+
0x13432: 84,
|
| 2271 |
+
0x13433: 84,
|
| 2272 |
+
0x13434: 84,
|
| 2273 |
+
0x13435: 84,
|
| 2274 |
+
0x13436: 84,
|
| 2275 |
+
0x13437: 84,
|
| 2276 |
+
0x13438: 84,
|
| 2277 |
+
0x13439: 84,
|
| 2278 |
+
0x1343A: 84,
|
| 2279 |
+
0x1343B: 84,
|
| 2280 |
+
0x1343C: 84,
|
| 2281 |
+
0x1343D: 84,
|
| 2282 |
+
0x1343E: 84,
|
| 2283 |
+
0x1343F: 84,
|
| 2284 |
+
0x13440: 84,
|
| 2285 |
+
0x13447: 84,
|
| 2286 |
+
0x13448: 84,
|
| 2287 |
+
0x13449: 84,
|
| 2288 |
+
0x1344A: 84,
|
| 2289 |
+
0x1344B: 84,
|
| 2290 |
+
0x1344C: 84,
|
| 2291 |
+
0x1344D: 84,
|
| 2292 |
+
0x1344E: 84,
|
| 2293 |
+
0x1344F: 84,
|
| 2294 |
+
0x13450: 84,
|
| 2295 |
+
0x13451: 84,
|
| 2296 |
+
0x13452: 84,
|
| 2297 |
+
0x13453: 84,
|
| 2298 |
+
0x13454: 84,
|
| 2299 |
+
0x13455: 84,
|
| 2300 |
+
0x16AF0: 84,
|
| 2301 |
+
0x16AF1: 84,
|
| 2302 |
+
0x16AF2: 84,
|
| 2303 |
+
0x16AF3: 84,
|
| 2304 |
+
0x16AF4: 84,
|
| 2305 |
+
0x16B30: 84,
|
| 2306 |
+
0x16B31: 84,
|
| 2307 |
+
0x16B32: 84,
|
| 2308 |
+
0x16B33: 84,
|
| 2309 |
+
0x16B34: 84,
|
| 2310 |
+
0x16B35: 84,
|
| 2311 |
+
0x16B36: 84,
|
| 2312 |
+
0x16F4F: 84,
|
| 2313 |
+
0x16F8F: 84,
|
| 2314 |
+
0x16F90: 84,
|
| 2315 |
+
0x16F91: 84,
|
| 2316 |
+
0x16F92: 84,
|
| 2317 |
+
0x16FE4: 84,
|
| 2318 |
+
0x1BC9D: 84,
|
| 2319 |
+
0x1BC9E: 84,
|
| 2320 |
+
0x1BCA0: 84,
|
| 2321 |
+
0x1BCA1: 84,
|
| 2322 |
+
0x1BCA2: 84,
|
| 2323 |
+
0x1BCA3: 84,
|
| 2324 |
+
0x1CF00: 84,
|
| 2325 |
+
0x1CF01: 84,
|
| 2326 |
+
0x1CF02: 84,
|
| 2327 |
+
0x1CF03: 84,
|
| 2328 |
+
0x1CF04: 84,
|
| 2329 |
+
0x1CF05: 84,
|
| 2330 |
+
0x1CF06: 84,
|
| 2331 |
+
0x1CF07: 84,
|
| 2332 |
+
0x1CF08: 84,
|
| 2333 |
+
0x1CF09: 84,
|
| 2334 |
+
0x1CF0A: 84,
|
| 2335 |
+
0x1CF0B: 84,
|
| 2336 |
+
0x1CF0C: 84,
|
| 2337 |
+
0x1CF0D: 84,
|
| 2338 |
+
0x1CF0E: 84,
|
| 2339 |
+
0x1CF0F: 84,
|
| 2340 |
+
0x1CF10: 84,
|
| 2341 |
+
0x1CF11: 84,
|
| 2342 |
+
0x1CF12: 84,
|
| 2343 |
+
0x1CF13: 84,
|
| 2344 |
+
0x1CF14: 84,
|
| 2345 |
+
0x1CF15: 84,
|
| 2346 |
+
0x1CF16: 84,
|
| 2347 |
+
0x1CF17: 84,
|
| 2348 |
+
0x1CF18: 84,
|
| 2349 |
+
0x1CF19: 84,
|
| 2350 |
+
0x1CF1A: 84,
|
| 2351 |
+
0x1CF1B: 84,
|
| 2352 |
+
0x1CF1C: 84,
|
| 2353 |
+
0x1CF1D: 84,
|
| 2354 |
+
0x1CF1E: 84,
|
| 2355 |
+
0x1CF1F: 84,
|
| 2356 |
+
0x1CF20: 84,
|
| 2357 |
+
0x1CF21: 84,
|
| 2358 |
+
0x1CF22: 84,
|
| 2359 |
+
0x1CF23: 84,
|
| 2360 |
+
0x1CF24: 84,
|
| 2361 |
+
0x1CF25: 84,
|
| 2362 |
+
0x1CF26: 84,
|
| 2363 |
+
0x1CF27: 84,
|
| 2364 |
+
0x1CF28: 84,
|
| 2365 |
+
0x1CF29: 84,
|
| 2366 |
+
0x1CF2A: 84,
|
| 2367 |
+
0x1CF2B: 84,
|
| 2368 |
+
0x1CF2C: 84,
|
| 2369 |
+
0x1CF2D: 84,
|
| 2370 |
+
0x1CF30: 84,
|
| 2371 |
+
0x1CF31: 84,
|
| 2372 |
+
0x1CF32: 84,
|
| 2373 |
+
0x1CF33: 84,
|
| 2374 |
+
0x1CF34: 84,
|
| 2375 |
+
0x1CF35: 84,
|
| 2376 |
+
0x1CF36: 84,
|
| 2377 |
+
0x1CF37: 84,
|
| 2378 |
+
0x1CF38: 84,
|
| 2379 |
+
0x1CF39: 84,
|
| 2380 |
+
0x1CF3A: 84,
|
| 2381 |
+
0x1CF3B: 84,
|
| 2382 |
+
0x1CF3C: 84,
|
| 2383 |
+
0x1CF3D: 84,
|
| 2384 |
+
0x1CF3E: 84,
|
| 2385 |
+
0x1CF3F: 84,
|
| 2386 |
+
0x1CF40: 84,
|
| 2387 |
+
0x1CF41: 84,
|
| 2388 |
+
0x1CF42: 84,
|
| 2389 |
+
0x1CF43: 84,
|
| 2390 |
+
0x1CF44: 84,
|
| 2391 |
+
0x1CF45: 84,
|
| 2392 |
+
0x1CF46: 84,
|
| 2393 |
+
0x1D167: 84,
|
| 2394 |
+
0x1D168: 84,
|
| 2395 |
+
0x1D169: 84,
|
| 2396 |
+
0x1D173: 84,
|
| 2397 |
+
0x1D174: 84,
|
| 2398 |
+
0x1D175: 84,
|
| 2399 |
+
0x1D176: 84,
|
| 2400 |
+
0x1D177: 84,
|
| 2401 |
+
0x1D178: 84,
|
| 2402 |
+
0x1D179: 84,
|
| 2403 |
+
0x1D17A: 84,
|
| 2404 |
+
0x1D17B: 84,
|
| 2405 |
+
0x1D17C: 84,
|
| 2406 |
+
0x1D17D: 84,
|
| 2407 |
+
0x1D17E: 84,
|
| 2408 |
+
0x1D17F: 84,
|
| 2409 |
+
0x1D180: 84,
|
| 2410 |
+
0x1D181: 84,
|
| 2411 |
+
0x1D182: 84,
|
| 2412 |
+
0x1D185: 84,
|
| 2413 |
+
0x1D186: 84,
|
| 2414 |
+
0x1D187: 84,
|
| 2415 |
+
0x1D188: 84,
|
| 2416 |
+
0x1D189: 84,
|
| 2417 |
+
0x1D18A: 84,
|
| 2418 |
+
0x1D18B: 84,
|
| 2419 |
+
0x1D1AA: 84,
|
| 2420 |
+
0x1D1AB: 84,
|
| 2421 |
+
0x1D1AC: 84,
|
| 2422 |
+
0x1D1AD: 84,
|
| 2423 |
+
0x1D242: 84,
|
| 2424 |
+
0x1D243: 84,
|
| 2425 |
+
0x1D244: 84,
|
| 2426 |
+
0x1DA00: 84,
|
| 2427 |
+
0x1DA01: 84,
|
| 2428 |
+
0x1DA02: 84,
|
| 2429 |
+
0x1DA03: 84,
|
| 2430 |
+
0x1DA04: 84,
|
| 2431 |
+
0x1DA05: 84,
|
| 2432 |
+
0x1DA06: 84,
|
| 2433 |
+
0x1DA07: 84,
|
| 2434 |
+
0x1DA08: 84,
|
| 2435 |
+
0x1DA09: 84,
|
| 2436 |
+
0x1DA0A: 84,
|
| 2437 |
+
0x1DA0B: 84,
|
| 2438 |
+
0x1DA0C: 84,
|
| 2439 |
+
0x1DA0D: 84,
|
| 2440 |
+
0x1DA0E: 84,
|
| 2441 |
+
0x1DA0F: 84,
|
| 2442 |
+
0x1DA10: 84,
|
| 2443 |
+
0x1DA11: 84,
|
| 2444 |
+
0x1DA12: 84,
|
| 2445 |
+
0x1DA13: 84,
|
| 2446 |
+
0x1DA14: 84,
|
| 2447 |
+
0x1DA15: 84,
|
| 2448 |
+
0x1DA16: 84,
|
| 2449 |
+
0x1DA17: 84,
|
| 2450 |
+
0x1DA18: 84,
|
| 2451 |
+
0x1DA19: 84,
|
| 2452 |
+
0x1DA1A: 84,
|
| 2453 |
+
0x1DA1B: 84,
|
| 2454 |
+
0x1DA1C: 84,
|
| 2455 |
+
0x1DA1D: 84,
|
| 2456 |
+
0x1DA1E: 84,
|
| 2457 |
+
0x1DA1F: 84,
|
| 2458 |
+
0x1DA20: 84,
|
| 2459 |
+
0x1DA21: 84,
|
| 2460 |
+
0x1DA22: 84,
|
| 2461 |
+
0x1DA23: 84,
|
| 2462 |
+
0x1DA24: 84,
|
| 2463 |
+
0x1DA25: 84,
|
| 2464 |
+
0x1DA26: 84,
|
| 2465 |
+
0x1DA27: 84,
|
| 2466 |
+
0x1DA28: 84,
|
| 2467 |
+
0x1DA29: 84,
|
| 2468 |
+
0x1DA2A: 84,
|
| 2469 |
+
0x1DA2B: 84,
|
| 2470 |
+
0x1DA2C: 84,
|
| 2471 |
+
0x1DA2D: 84,
|
| 2472 |
+
0x1DA2E: 84,
|
| 2473 |
+
0x1DA2F: 84,
|
| 2474 |
+
0x1DA30: 84,
|
| 2475 |
+
0x1DA31: 84,
|
| 2476 |
+
0x1DA32: 84,
|
| 2477 |
+
0x1DA33: 84,
|
| 2478 |
+
0x1DA34: 84,
|
| 2479 |
+
0x1DA35: 84,
|
| 2480 |
+
0x1DA36: 84,
|
| 2481 |
+
0x1DA3B: 84,
|
| 2482 |
+
0x1DA3C: 84,
|
| 2483 |
+
0x1DA3D: 84,
|
| 2484 |
+
0x1DA3E: 84,
|
| 2485 |
+
0x1DA3F: 84,
|
| 2486 |
+
0x1DA40: 84,
|
| 2487 |
+
0x1DA41: 84,
|
| 2488 |
+
0x1DA42: 84,
|
| 2489 |
+
0x1DA43: 84,
|
| 2490 |
+
0x1DA44: 84,
|
| 2491 |
+
0x1DA45: 84,
|
| 2492 |
+
0x1DA46: 84,
|
| 2493 |
+
0x1DA47: 84,
|
| 2494 |
+
0x1DA48: 84,
|
| 2495 |
+
0x1DA49: 84,
|
| 2496 |
+
0x1DA4A: 84,
|
| 2497 |
+
0x1DA4B: 84,
|
| 2498 |
+
0x1DA4C: 84,
|
| 2499 |
+
0x1DA4D: 84,
|
| 2500 |
+
0x1DA4E: 84,
|
| 2501 |
+
0x1DA4F: 84,
|
| 2502 |
+
0x1DA50: 84,
|
| 2503 |
+
0x1DA51: 84,
|
| 2504 |
+
0x1DA52: 84,
|
| 2505 |
+
0x1DA53: 84,
|
| 2506 |
+
0x1DA54: 84,
|
| 2507 |
+
0x1DA55: 84,
|
| 2508 |
+
0x1DA56: 84,
|
| 2509 |
+
0x1DA57: 84,
|
| 2510 |
+
0x1DA58: 84,
|
| 2511 |
+
0x1DA59: 84,
|
| 2512 |
+
0x1DA5A: 84,
|
| 2513 |
+
0x1DA5B: 84,
|
| 2514 |
+
0x1DA5C: 84,
|
| 2515 |
+
0x1DA5D: 84,
|
| 2516 |
+
0x1DA5E: 84,
|
| 2517 |
+
0x1DA5F: 84,
|
| 2518 |
+
0x1DA60: 84,
|
| 2519 |
+
0x1DA61: 84,
|
| 2520 |
+
0x1DA62: 84,
|
| 2521 |
+
0x1DA63: 84,
|
| 2522 |
+
0x1DA64: 84,
|
| 2523 |
+
0x1DA65: 84,
|
| 2524 |
+
0x1DA66: 84,
|
| 2525 |
+
0x1DA67: 84,
|
| 2526 |
+
0x1DA68: 84,
|
| 2527 |
+
0x1DA69: 84,
|
| 2528 |
+
0x1DA6A: 84,
|
| 2529 |
+
0x1DA6B: 84,
|
| 2530 |
+
0x1DA6C: 84,
|
| 2531 |
+
0x1DA75: 84,
|
| 2532 |
+
0x1DA84: 84,
|
| 2533 |
+
0x1DA9B: 84,
|
| 2534 |
+
0x1DA9C: 84,
|
| 2535 |
+
0x1DA9D: 84,
|
| 2536 |
+
0x1DA9E: 84,
|
| 2537 |
+
0x1DA9F: 84,
|
| 2538 |
+
0x1DAA1: 84,
|
| 2539 |
+
0x1DAA2: 84,
|
| 2540 |
+
0x1DAA3: 84,
|
| 2541 |
+
0x1DAA4: 84,
|
| 2542 |
+
0x1DAA5: 84,
|
| 2543 |
+
0x1DAA6: 84,
|
| 2544 |
+
0x1DAA7: 84,
|
| 2545 |
+
0x1DAA8: 84,
|
| 2546 |
+
0x1DAA9: 84,
|
| 2547 |
+
0x1DAAA: 84,
|
| 2548 |
+
0x1DAAB: 84,
|
| 2549 |
+
0x1DAAC: 84,
|
| 2550 |
+
0x1DAAD: 84,
|
| 2551 |
+
0x1DAAE: 84,
|
| 2552 |
+
0x1DAAF: 84,
|
| 2553 |
+
0x1E000: 84,
|
| 2554 |
+
0x1E001: 84,
|
| 2555 |
+
0x1E002: 84,
|
| 2556 |
+
0x1E003: 84,
|
| 2557 |
+
0x1E004: 84,
|
| 2558 |
+
0x1E005: 84,
|
| 2559 |
+
0x1E006: 84,
|
| 2560 |
+
0x1E008: 84,
|
| 2561 |
+
0x1E009: 84,
|
| 2562 |
+
0x1E00A: 84,
|
| 2563 |
+
0x1E00B: 84,
|
| 2564 |
+
0x1E00C: 84,
|
| 2565 |
+
0x1E00D: 84,
|
| 2566 |
+
0x1E00E: 84,
|
| 2567 |
+
0x1E00F: 84,
|
| 2568 |
+
0x1E010: 84,
|
| 2569 |
+
0x1E011: 84,
|
| 2570 |
+
0x1E012: 84,
|
| 2571 |
+
0x1E013: 84,
|
| 2572 |
+
0x1E014: 84,
|
| 2573 |
+
0x1E015: 84,
|
| 2574 |
+
0x1E016: 84,
|
| 2575 |
+
0x1E017: 84,
|
| 2576 |
+
0x1E018: 84,
|
| 2577 |
+
0x1E01B: 84,
|
| 2578 |
+
0x1E01C: 84,
|
| 2579 |
+
0x1E01D: 84,
|
| 2580 |
+
0x1E01E: 84,
|
| 2581 |
+
0x1E01F: 84,
|
| 2582 |
+
0x1E020: 84,
|
| 2583 |
+
0x1E021: 84,
|
| 2584 |
+
0x1E023: 84,
|
| 2585 |
+
0x1E024: 84,
|
| 2586 |
+
0x1E026: 84,
|
| 2587 |
+
0x1E027: 84,
|
| 2588 |
+
0x1E028: 84,
|
| 2589 |
+
0x1E029: 84,
|
| 2590 |
+
0x1E02A: 84,
|
| 2591 |
+
0x1E08F: 84,
|
| 2592 |
+
0x1E130: 84,
|
| 2593 |
+
0x1E131: 84,
|
| 2594 |
+
0x1E132: 84,
|
| 2595 |
+
0x1E133: 84,
|
| 2596 |
+
0x1E134: 84,
|
| 2597 |
+
0x1E135: 84,
|
| 2598 |
+
0x1E136: 84,
|
| 2599 |
+
0x1E2AE: 84,
|
| 2600 |
+
0x1E2EC: 84,
|
| 2601 |
+
0x1E2ED: 84,
|
| 2602 |
+
0x1E2EE: 84,
|
| 2603 |
+
0x1E2EF: 84,
|
| 2604 |
+
0x1E4EC: 84,
|
| 2605 |
+
0x1E4ED: 84,
|
| 2606 |
+
0x1E4EE: 84,
|
| 2607 |
+
0x1E4EF: 84,
|
| 2608 |
+
0x1E8D0: 84,
|
| 2609 |
+
0x1E8D1: 84,
|
| 2610 |
+
0x1E8D2: 84,
|
| 2611 |
+
0x1E8D3: 84,
|
| 2612 |
+
0x1E8D4: 84,
|
| 2613 |
+
0x1E8D5: 84,
|
| 2614 |
+
0x1E8D6: 84,
|
| 2615 |
+
0x1E900: 68,
|
| 2616 |
+
0x1E901: 68,
|
| 2617 |
+
0x1E902: 68,
|
| 2618 |
+
0x1E903: 68,
|
| 2619 |
+
0x1E904: 68,
|
| 2620 |
+
0x1E905: 68,
|
| 2621 |
+
0x1E906: 68,
|
| 2622 |
+
0x1E907: 68,
|
| 2623 |
+
0x1E908: 68,
|
| 2624 |
+
0x1E909: 68,
|
| 2625 |
+
0x1E90A: 68,
|
| 2626 |
+
0x1E90B: 68,
|
| 2627 |
+
0x1E90C: 68,
|
| 2628 |
+
0x1E90D: 68,
|
| 2629 |
+
0x1E90E: 68,
|
| 2630 |
+
0x1E90F: 68,
|
| 2631 |
+
0x1E910: 68,
|
| 2632 |
+
0x1E911: 68,
|
| 2633 |
+
0x1E912: 68,
|
| 2634 |
+
0x1E913: 68,
|
| 2635 |
+
0x1E914: 68,
|
| 2636 |
+
0x1E915: 68,
|
| 2637 |
+
0x1E916: 68,
|
| 2638 |
+
0x1E917: 68,
|
| 2639 |
+
0x1E918: 68,
|
| 2640 |
+
0x1E919: 68,
|
| 2641 |
+
0x1E91A: 68,
|
| 2642 |
+
0x1E91B: 68,
|
| 2643 |
+
0x1E91C: 68,
|
| 2644 |
+
0x1E91D: 68,
|
| 2645 |
+
0x1E91E: 68,
|
| 2646 |
+
0x1E91F: 68,
|
| 2647 |
+
0x1E920: 68,
|
| 2648 |
+
0x1E921: 68,
|
| 2649 |
+
0x1E922: 68,
|
| 2650 |
+
0x1E923: 68,
|
| 2651 |
+
0x1E924: 68,
|
| 2652 |
+
0x1E925: 68,
|
| 2653 |
+
0x1E926: 68,
|
| 2654 |
+
0x1E927: 68,
|
| 2655 |
+
0x1E928: 68,
|
| 2656 |
+
0x1E929: 68,
|
| 2657 |
+
0x1E92A: 68,
|
| 2658 |
+
0x1E92B: 68,
|
| 2659 |
+
0x1E92C: 68,
|
| 2660 |
+
0x1E92D: 68,
|
| 2661 |
+
0x1E92E: 68,
|
| 2662 |
+
0x1E92F: 68,
|
| 2663 |
+
0x1E930: 68,
|
| 2664 |
+
0x1E931: 68,
|
| 2665 |
+
0x1E932: 68,
|
| 2666 |
+
0x1E933: 68,
|
| 2667 |
+
0x1E934: 68,
|
| 2668 |
+
0x1E935: 68,
|
| 2669 |
+
0x1E936: 68,
|
| 2670 |
+
0x1E937: 68,
|
| 2671 |
+
0x1E938: 68,
|
| 2672 |
+
0x1E939: 68,
|
| 2673 |
+
0x1E93A: 68,
|
| 2674 |
+
0x1E93B: 68,
|
| 2675 |
+
0x1E93C: 68,
|
| 2676 |
+
0x1E93D: 68,
|
| 2677 |
+
0x1E93E: 68,
|
| 2678 |
+
0x1E93F: 68,
|
| 2679 |
+
0x1E940: 68,
|
| 2680 |
+
0x1E941: 68,
|
| 2681 |
+
0x1E942: 68,
|
| 2682 |
+
0x1E943: 68,
|
| 2683 |
+
0x1E944: 84,
|
| 2684 |
+
0x1E945: 84,
|
| 2685 |
+
0x1E946: 84,
|
| 2686 |
+
0x1E947: 84,
|
| 2687 |
+
0x1E948: 84,
|
| 2688 |
+
0x1E949: 84,
|
| 2689 |
+
0x1E94A: 84,
|
| 2690 |
+
0x1E94B: 84,
|
| 2691 |
+
0xE0001: 84,
|
| 2692 |
+
0xE0020: 84,
|
| 2693 |
+
0xE0021: 84,
|
| 2694 |
+
0xE0022: 84,
|
| 2695 |
+
0xE0023: 84,
|
| 2696 |
+
0xE0024: 84,
|
| 2697 |
+
0xE0025: 84,
|
| 2698 |
+
0xE0026: 84,
|
| 2699 |
+
0xE0027: 84,
|
| 2700 |
+
0xE0028: 84,
|
| 2701 |
+
0xE0029: 84,
|
| 2702 |
+
0xE002A: 84,
|
| 2703 |
+
0xE002B: 84,
|
| 2704 |
+
0xE002C: 84,
|
| 2705 |
+
0xE002D: 84,
|
| 2706 |
+
0xE002E: 84,
|
| 2707 |
+
0xE002F: 84,
|
| 2708 |
+
0xE0030: 84,
|
| 2709 |
+
0xE0031: 84,
|
| 2710 |
+
0xE0032: 84,
|
| 2711 |
+
0xE0033: 84,
|
| 2712 |
+
0xE0034: 84,
|
| 2713 |
+
0xE0035: 84,
|
| 2714 |
+
0xE0036: 84,
|
| 2715 |
+
0xE0037: 84,
|
| 2716 |
+
0xE0038: 84,
|
| 2717 |
+
0xE0039: 84,
|
| 2718 |
+
0xE003A: 84,
|
| 2719 |
+
0xE003B: 84,
|
| 2720 |
+
0xE003C: 84,
|
| 2721 |
+
0xE003D: 84,
|
| 2722 |
+
0xE003E: 84,
|
| 2723 |
+
0xE003F: 84,
|
| 2724 |
+
0xE0040: 84,
|
| 2725 |
+
0xE0041: 84,
|
| 2726 |
+
0xE0042: 84,
|
| 2727 |
+
0xE0043: 84,
|
| 2728 |
+
0xE0044: 84,
|
| 2729 |
+
0xE0045: 84,
|
| 2730 |
+
0xE0046: 84,
|
| 2731 |
+
0xE0047: 84,
|
| 2732 |
+
0xE0048: 84,
|
| 2733 |
+
0xE0049: 84,
|
| 2734 |
+
0xE004A: 84,
|
| 2735 |
+
0xE004B: 84,
|
| 2736 |
+
0xE004C: 84,
|
| 2737 |
+
0xE004D: 84,
|
| 2738 |
+
0xE004E: 84,
|
| 2739 |
+
0xE004F: 84,
|
| 2740 |
+
0xE0050: 84,
|
| 2741 |
+
0xE0051: 84,
|
| 2742 |
+
0xE0052: 84,
|
| 2743 |
+
0xE0053: 84,
|
| 2744 |
+
0xE0054: 84,
|
| 2745 |
+
0xE0055: 84,
|
| 2746 |
+
0xE0056: 84,
|
| 2747 |
+
0xE0057: 84,
|
| 2748 |
+
0xE0058: 84,
|
| 2749 |
+
0xE0059: 84,
|
| 2750 |
+
0xE005A: 84,
|
| 2751 |
+
0xE005B: 84,
|
| 2752 |
+
0xE005C: 84,
|
| 2753 |
+
0xE005D: 84,
|
| 2754 |
+
0xE005E: 84,
|
| 2755 |
+
0xE005F: 84,
|
| 2756 |
+
0xE0060: 84,
|
| 2757 |
+
0xE0061: 84,
|
| 2758 |
+
0xE0062: 84,
|
| 2759 |
+
0xE0063: 84,
|
| 2760 |
+
0xE0064: 84,
|
| 2761 |
+
0xE0065: 84,
|
| 2762 |
+
0xE0066: 84,
|
| 2763 |
+
0xE0067: 84,
|
| 2764 |
+
0xE0068: 84,
|
| 2765 |
+
0xE0069: 84,
|
| 2766 |
+
0xE006A: 84,
|
| 2767 |
+
0xE006B: 84,
|
| 2768 |
+
0xE006C: 84,
|
| 2769 |
+
0xE006D: 84,
|
| 2770 |
+
0xE006E: 84,
|
| 2771 |
+
0xE006F: 84,
|
| 2772 |
+
0xE0070: 84,
|
| 2773 |
+
0xE0071: 84,
|
| 2774 |
+
0xE0072: 84,
|
| 2775 |
+
0xE0073: 84,
|
| 2776 |
+
0xE0074: 84,
|
| 2777 |
+
0xE0075: 84,
|
| 2778 |
+
0xE0076: 84,
|
| 2779 |
+
0xE0077: 84,
|
| 2780 |
+
0xE0078: 84,
|
| 2781 |
+
0xE0079: 84,
|
| 2782 |
+
0xE007A: 84,
|
| 2783 |
+
0xE007B: 84,
|
| 2784 |
+
0xE007C: 84,
|
| 2785 |
+
0xE007D: 84,
|
| 2786 |
+
0xE007E: 84,
|
| 2787 |
+
0xE007F: 84,
|
| 2788 |
+
0xE0100: 84,
|
| 2789 |
+
0xE0101: 84,
|
| 2790 |
+
0xE0102: 84,
|
| 2791 |
+
0xE0103: 84,
|
| 2792 |
+
0xE0104: 84,
|
| 2793 |
+
0xE0105: 84,
|
| 2794 |
+
0xE0106: 84,
|
| 2795 |
+
0xE0107: 84,
|
| 2796 |
+
0xE0108: 84,
|
| 2797 |
+
0xE0109: 84,
|
| 2798 |
+
0xE010A: 84,
|
| 2799 |
+
0xE010B: 84,
|
| 2800 |
+
0xE010C: 84,
|
| 2801 |
+
0xE010D: 84,
|
| 2802 |
+
0xE010E: 84,
|
| 2803 |
+
0xE010F: 84,
|
| 2804 |
+
0xE0110: 84,
|
| 2805 |
+
0xE0111: 84,
|
| 2806 |
+
0xE0112: 84,
|
| 2807 |
+
0xE0113: 84,
|
| 2808 |
+
0xE0114: 84,
|
| 2809 |
+
0xE0115: 84,
|
| 2810 |
+
0xE0116: 84,
|
| 2811 |
+
0xE0117: 84,
|
| 2812 |
+
0xE0118: 84,
|
| 2813 |
+
0xE0119: 84,
|
| 2814 |
+
0xE011A: 84,
|
| 2815 |
+
0xE011B: 84,
|
| 2816 |
+
0xE011C: 84,
|
| 2817 |
+
0xE011D: 84,
|
| 2818 |
+
0xE011E: 84,
|
| 2819 |
+
0xE011F: 84,
|
| 2820 |
+
0xE0120: 84,
|
| 2821 |
+
0xE0121: 84,
|
| 2822 |
+
0xE0122: 84,
|
| 2823 |
+
0xE0123: 84,
|
| 2824 |
+
0xE0124: 84,
|
| 2825 |
+
0xE0125: 84,
|
| 2826 |
+
0xE0126: 84,
|
| 2827 |
+
0xE0127: 84,
|
| 2828 |
+
0xE0128: 84,
|
| 2829 |
+
0xE0129: 84,
|
| 2830 |
+
0xE012A: 84,
|
| 2831 |
+
0xE012B: 84,
|
| 2832 |
+
0xE012C: 84,
|
| 2833 |
+
0xE012D: 84,
|
| 2834 |
+
0xE012E: 84,
|
| 2835 |
+
0xE012F: 84,
|
| 2836 |
+
0xE0130: 84,
|
| 2837 |
+
0xE0131: 84,
|
| 2838 |
+
0xE0132: 84,
|
| 2839 |
+
0xE0133: 84,
|
| 2840 |
+
0xE0134: 84,
|
| 2841 |
+
0xE0135: 84,
|
| 2842 |
+
0xE0136: 84,
|
| 2843 |
+
0xE0137: 84,
|
| 2844 |
+
0xE0138: 84,
|
| 2845 |
+
0xE0139: 84,
|
| 2846 |
+
0xE013A: 84,
|
| 2847 |
+
0xE013B: 84,
|
| 2848 |
+
0xE013C: 84,
|
| 2849 |
+
0xE013D: 84,
|
| 2850 |
+
0xE013E: 84,
|
| 2851 |
+
0xE013F: 84,
|
| 2852 |
+
0xE0140: 84,
|
| 2853 |
+
0xE0141: 84,
|
| 2854 |
+
0xE0142: 84,
|
| 2855 |
+
0xE0143: 84,
|
| 2856 |
+
0xE0144: 84,
|
| 2857 |
+
0xE0145: 84,
|
| 2858 |
+
0xE0146: 84,
|
| 2859 |
+
0xE0147: 84,
|
| 2860 |
+
0xE0148: 84,
|
| 2861 |
+
0xE0149: 84,
|
| 2862 |
+
0xE014A: 84,
|
| 2863 |
+
0xE014B: 84,
|
| 2864 |
+
0xE014C: 84,
|
| 2865 |
+
0xE014D: 84,
|
| 2866 |
+
0xE014E: 84,
|
| 2867 |
+
0xE014F: 84,
|
| 2868 |
+
0xE0150: 84,
|
| 2869 |
+
0xE0151: 84,
|
| 2870 |
+
0xE0152: 84,
|
| 2871 |
+
0xE0153: 84,
|
| 2872 |
+
0xE0154: 84,
|
| 2873 |
+
0xE0155: 84,
|
| 2874 |
+
0xE0156: 84,
|
| 2875 |
+
0xE0157: 84,
|
| 2876 |
+
0xE0158: 84,
|
| 2877 |
+
0xE0159: 84,
|
| 2878 |
+
0xE015A: 84,
|
| 2879 |
+
0xE015B: 84,
|
| 2880 |
+
0xE015C: 84,
|
| 2881 |
+
0xE015D: 84,
|
| 2882 |
+
0xE015E: 84,
|
| 2883 |
+
0xE015F: 84,
|
| 2884 |
+
0xE0160: 84,
|
| 2885 |
+
0xE0161: 84,
|
| 2886 |
+
0xE0162: 84,
|
| 2887 |
+
0xE0163: 84,
|
| 2888 |
+
0xE0164: 84,
|
| 2889 |
+
0xE0165: 84,
|
| 2890 |
+
0xE0166: 84,
|
| 2891 |
+
0xE0167: 84,
|
| 2892 |
+
0xE0168: 84,
|
| 2893 |
+
0xE0169: 84,
|
| 2894 |
+
0xE016A: 84,
|
| 2895 |
+
0xE016B: 84,
|
| 2896 |
+
0xE016C: 84,
|
| 2897 |
+
0xE016D: 84,
|
| 2898 |
+
0xE016E: 84,
|
| 2899 |
+
0xE016F: 84,
|
| 2900 |
+
0xE0170: 84,
|
| 2901 |
+
0xE0171: 84,
|
| 2902 |
+
0xE0172: 84,
|
| 2903 |
+
0xE0173: 84,
|
| 2904 |
+
0xE0174: 84,
|
| 2905 |
+
0xE0175: 84,
|
| 2906 |
+
0xE0176: 84,
|
| 2907 |
+
0xE0177: 84,
|
| 2908 |
+
0xE0178: 84,
|
| 2909 |
+
0xE0179: 84,
|
| 2910 |
+
0xE017A: 84,
|
| 2911 |
+
0xE017B: 84,
|
| 2912 |
+
0xE017C: 84,
|
| 2913 |
+
0xE017D: 84,
|
| 2914 |
+
0xE017E: 84,
|
| 2915 |
+
0xE017F: 84,
|
| 2916 |
+
0xE0180: 84,
|
| 2917 |
+
0xE0181: 84,
|
| 2918 |
+
0xE0182: 84,
|
| 2919 |
+
0xE0183: 84,
|
| 2920 |
+
0xE0184: 84,
|
| 2921 |
+
0xE0185: 84,
|
| 2922 |
+
0xE0186: 84,
|
| 2923 |
+
0xE0187: 84,
|
| 2924 |
+
0xE0188: 84,
|
| 2925 |
+
0xE0189: 84,
|
| 2926 |
+
0xE018A: 84,
|
| 2927 |
+
0xE018B: 84,
|
| 2928 |
+
0xE018C: 84,
|
| 2929 |
+
0xE018D: 84,
|
| 2930 |
+
0xE018E: 84,
|
| 2931 |
+
0xE018F: 84,
|
| 2932 |
+
0xE0190: 84,
|
| 2933 |
+
0xE0191: 84,
|
| 2934 |
+
0xE0192: 84,
|
| 2935 |
+
0xE0193: 84,
|
| 2936 |
+
0xE0194: 84,
|
| 2937 |
+
0xE0195: 84,
|
| 2938 |
+
0xE0196: 84,
|
| 2939 |
+
0xE0197: 84,
|
| 2940 |
+
0xE0198: 84,
|
| 2941 |
+
0xE0199: 84,
|
| 2942 |
+
0xE019A: 84,
|
| 2943 |
+
0xE019B: 84,
|
| 2944 |
+
0xE019C: 84,
|
| 2945 |
+
0xE019D: 84,
|
| 2946 |
+
0xE019E: 84,
|
| 2947 |
+
0xE019F: 84,
|
| 2948 |
+
0xE01A0: 84,
|
| 2949 |
+
0xE01A1: 84,
|
| 2950 |
+
0xE01A2: 84,
|
| 2951 |
+
0xE01A3: 84,
|
| 2952 |
+
0xE01A4: 84,
|
| 2953 |
+
0xE01A5: 84,
|
| 2954 |
+
0xE01A6: 84,
|
| 2955 |
+
0xE01A7: 84,
|
| 2956 |
+
0xE01A8: 84,
|
| 2957 |
+
0xE01A9: 84,
|
| 2958 |
+
0xE01AA: 84,
|
| 2959 |
+
0xE01AB: 84,
|
| 2960 |
+
0xE01AC: 84,
|
| 2961 |
+
0xE01AD: 84,
|
| 2962 |
+
0xE01AE: 84,
|
| 2963 |
+
0xE01AF: 84,
|
| 2964 |
+
0xE01B0: 84,
|
| 2965 |
+
0xE01B1: 84,
|
| 2966 |
+
0xE01B2: 84,
|
| 2967 |
+
0xE01B3: 84,
|
| 2968 |
+
0xE01B4: 84,
|
| 2969 |
+
0xE01B5: 84,
|
| 2970 |
+
0xE01B6: 84,
|
| 2971 |
+
0xE01B7: 84,
|
| 2972 |
+
0xE01B8: 84,
|
| 2973 |
+
0xE01B9: 84,
|
| 2974 |
+
0xE01BA: 84,
|
| 2975 |
+
0xE01BB: 84,
|
| 2976 |
+
0xE01BC: 84,
|
| 2977 |
+
0xE01BD: 84,
|
| 2978 |
+
0xE01BE: 84,
|
| 2979 |
+
0xE01BF: 84,
|
| 2980 |
+
0xE01C0: 84,
|
| 2981 |
+
0xE01C1: 84,
|
| 2982 |
+
0xE01C2: 84,
|
| 2983 |
+
0xE01C3: 84,
|
| 2984 |
+
0xE01C4: 84,
|
| 2985 |
+
0xE01C5: 84,
|
| 2986 |
+
0xE01C6: 84,
|
| 2987 |
+
0xE01C7: 84,
|
| 2988 |
+
0xE01C8: 84,
|
| 2989 |
+
0xE01C9: 84,
|
| 2990 |
+
0xE01CA: 84,
|
| 2991 |
+
0xE01CB: 84,
|
| 2992 |
+
0xE01CC: 84,
|
| 2993 |
+
0xE01CD: 84,
|
| 2994 |
+
0xE01CE: 84,
|
| 2995 |
+
0xE01CF: 84,
|
| 2996 |
+
0xE01D0: 84,
|
| 2997 |
+
0xE01D1: 84,
|
| 2998 |
+
0xE01D2: 84,
|
| 2999 |
+
0xE01D3: 84,
|
| 3000 |
+
0xE01D4: 84,
|
| 3001 |
+
0xE01D5: 84,
|
| 3002 |
+
0xE01D6: 84,
|
| 3003 |
+
0xE01D7: 84,
|
| 3004 |
+
0xE01D8: 84,
|
| 3005 |
+
0xE01D9: 84,
|
| 3006 |
+
0xE01DA: 84,
|
| 3007 |
+
0xE01DB: 84,
|
| 3008 |
+
0xE01DC: 84,
|
| 3009 |
+
0xE01DD: 84,
|
| 3010 |
+
0xE01DE: 84,
|
| 3011 |
+
0xE01DF: 84,
|
| 3012 |
+
0xE01E0: 84,
|
| 3013 |
+
0xE01E1: 84,
|
| 3014 |
+
0xE01E2: 84,
|
| 3015 |
+
0xE01E3: 84,
|
| 3016 |
+
0xE01E4: 84,
|
| 3017 |
+
0xE01E5: 84,
|
| 3018 |
+
0xE01E6: 84,
|
| 3019 |
+
0xE01E7: 84,
|
| 3020 |
+
0xE01E8: 84,
|
| 3021 |
+
0xE01E9: 84,
|
| 3022 |
+
0xE01EA: 84,
|
| 3023 |
+
0xE01EB: 84,
|
| 3024 |
+
0xE01EC: 84,
|
| 3025 |
+
0xE01ED: 84,
|
| 3026 |
+
0xE01EE: 84,
|
| 3027 |
+
0xE01EF: 84,
|
| 3028 |
+
}
|
| 3029 |
+
codepoint_classes = {
|
| 3030 |
+
"PVALID": (
|
| 3031 |
+
0x2D0000002E,
|
| 3032 |
+
0x300000003A,
|
| 3033 |
+
0x610000007B,
|
| 3034 |
+
0xDF000000F7,
|
| 3035 |
+
0xF800000100,
|
| 3036 |
+
0x10100000102,
|
| 3037 |
+
0x10300000104,
|
| 3038 |
+
0x10500000106,
|
| 3039 |
+
0x10700000108,
|
| 3040 |
+
0x1090000010A,
|
| 3041 |
+
0x10B0000010C,
|
| 3042 |
+
0x10D0000010E,
|
| 3043 |
+
0x10F00000110,
|
| 3044 |
+
0x11100000112,
|
| 3045 |
+
0x11300000114,
|
| 3046 |
+
0x11500000116,
|
| 3047 |
+
0x11700000118,
|
| 3048 |
+
0x1190000011A,
|
| 3049 |
+
0x11B0000011C,
|
| 3050 |
+
0x11D0000011E,
|
| 3051 |
+
0x11F00000120,
|
| 3052 |
+
0x12100000122,
|
| 3053 |
+
0x12300000124,
|
| 3054 |
+
0x12500000126,
|
| 3055 |
+
0x12700000128,
|
| 3056 |
+
0x1290000012A,
|
| 3057 |
+
0x12B0000012C,
|
| 3058 |
+
0x12D0000012E,
|
| 3059 |
+
0x12F00000130,
|
| 3060 |
+
0x13100000132,
|
| 3061 |
+
0x13500000136,
|
| 3062 |
+
0x13700000139,
|
| 3063 |
+
0x13A0000013B,
|
| 3064 |
+
0x13C0000013D,
|
| 3065 |
+
0x13E0000013F,
|
| 3066 |
+
0x14200000143,
|
| 3067 |
+
0x14400000145,
|
| 3068 |
+
0x14600000147,
|
| 3069 |
+
0x14800000149,
|
| 3070 |
+
0x14B0000014C,
|
| 3071 |
+
0x14D0000014E,
|
| 3072 |
+
0x14F00000150,
|
| 3073 |
+
0x15100000152,
|
| 3074 |
+
0x15300000154,
|
| 3075 |
+
0x15500000156,
|
| 3076 |
+
0x15700000158,
|
| 3077 |
+
0x1590000015A,
|
| 3078 |
+
0x15B0000015C,
|
| 3079 |
+
0x15D0000015E,
|
| 3080 |
+
0x15F00000160,
|
| 3081 |
+
0x16100000162,
|
| 3082 |
+
0x16300000164,
|
| 3083 |
+
0x16500000166,
|
| 3084 |
+
0x16700000168,
|
| 3085 |
+
0x1690000016A,
|
| 3086 |
+
0x16B0000016C,
|
| 3087 |
+
0x16D0000016E,
|
| 3088 |
+
0x16F00000170,
|
| 3089 |
+
0x17100000172,
|
| 3090 |
+
0x17300000174,
|
| 3091 |
+
0x17500000176,
|
| 3092 |
+
0x17700000178,
|
| 3093 |
+
0x17A0000017B,
|
| 3094 |
+
0x17C0000017D,
|
| 3095 |
+
0x17E0000017F,
|
| 3096 |
+
0x18000000181,
|
| 3097 |
+
0x18300000184,
|
| 3098 |
+
0x18500000186,
|
| 3099 |
+
0x18800000189,
|
| 3100 |
+
0x18C0000018E,
|
| 3101 |
+
0x19200000193,
|
| 3102 |
+
0x19500000196,
|
| 3103 |
+
0x1990000019C,
|
| 3104 |
+
0x19E0000019F,
|
| 3105 |
+
0x1A1000001A2,
|
| 3106 |
+
0x1A3000001A4,
|
| 3107 |
+
0x1A5000001A6,
|
| 3108 |
+
0x1A8000001A9,
|
| 3109 |
+
0x1AA000001AC,
|
| 3110 |
+
0x1AD000001AE,
|
| 3111 |
+
0x1B0000001B1,
|
| 3112 |
+
0x1B4000001B5,
|
| 3113 |
+
0x1B6000001B7,
|
| 3114 |
+
0x1B9000001BC,
|
| 3115 |
+
0x1BD000001C4,
|
| 3116 |
+
0x1CE000001CF,
|
| 3117 |
+
0x1D0000001D1,
|
| 3118 |
+
0x1D2000001D3,
|
| 3119 |
+
0x1D4000001D5,
|
| 3120 |
+
0x1D6000001D7,
|
| 3121 |
+
0x1D8000001D9,
|
| 3122 |
+
0x1DA000001DB,
|
| 3123 |
+
0x1DC000001DE,
|
| 3124 |
+
0x1DF000001E0,
|
| 3125 |
+
0x1E1000001E2,
|
| 3126 |
+
0x1E3000001E4,
|
| 3127 |
+
0x1E5000001E6,
|
| 3128 |
+
0x1E7000001E8,
|
| 3129 |
+
0x1E9000001EA,
|
| 3130 |
+
0x1EB000001EC,
|
| 3131 |
+
0x1ED000001EE,
|
| 3132 |
+
0x1EF000001F1,
|
| 3133 |
+
0x1F5000001F6,
|
| 3134 |
+
0x1F9000001FA,
|
| 3135 |
+
0x1FB000001FC,
|
| 3136 |
+
0x1FD000001FE,
|
| 3137 |
+
0x1FF00000200,
|
| 3138 |
+
0x20100000202,
|
| 3139 |
+
0x20300000204,
|
| 3140 |
+
0x20500000206,
|
| 3141 |
+
0x20700000208,
|
| 3142 |
+
0x2090000020A,
|
| 3143 |
+
0x20B0000020C,
|
| 3144 |
+
0x20D0000020E,
|
| 3145 |
+
0x20F00000210,
|
| 3146 |
+
0x21100000212,
|
| 3147 |
+
0x21300000214,
|
| 3148 |
+
0x21500000216,
|
| 3149 |
+
0x21700000218,
|
| 3150 |
+
0x2190000021A,
|
| 3151 |
+
0x21B0000021C,
|
| 3152 |
+
0x21D0000021E,
|
| 3153 |
+
0x21F00000220,
|
| 3154 |
+
0x22100000222,
|
| 3155 |
+
0x22300000224,
|
| 3156 |
+
0x22500000226,
|
| 3157 |
+
0x22700000228,
|
| 3158 |
+
0x2290000022A,
|
| 3159 |
+
0x22B0000022C,
|
| 3160 |
+
0x22D0000022E,
|
| 3161 |
+
0x22F00000230,
|
| 3162 |
+
0x23100000232,
|
| 3163 |
+
0x2330000023A,
|
| 3164 |
+
0x23C0000023D,
|
| 3165 |
+
0x23F00000241,
|
| 3166 |
+
0x24200000243,
|
| 3167 |
+
0x24700000248,
|
| 3168 |
+
0x2490000024A,
|
| 3169 |
+
0x24B0000024C,
|
| 3170 |
+
0x24D0000024E,
|
| 3171 |
+
0x24F000002B0,
|
| 3172 |
+
0x2B9000002C2,
|
| 3173 |
+
0x2C6000002D2,
|
| 3174 |
+
0x2EC000002ED,
|
| 3175 |
+
0x2EE000002EF,
|
| 3176 |
+
0x30000000340,
|
| 3177 |
+
0x34200000343,
|
| 3178 |
+
0x3460000034F,
|
| 3179 |
+
0x35000000370,
|
| 3180 |
+
0x37100000372,
|
| 3181 |
+
0x37300000374,
|
| 3182 |
+
0x37700000378,
|
| 3183 |
+
0x37B0000037E,
|
| 3184 |
+
0x39000000391,
|
| 3185 |
+
0x3AC000003CF,
|
| 3186 |
+
0x3D7000003D8,
|
| 3187 |
+
0x3D9000003DA,
|
| 3188 |
+
0x3DB000003DC,
|
| 3189 |
+
0x3DD000003DE,
|
| 3190 |
+
0x3DF000003E0,
|
| 3191 |
+
0x3E1000003E2,
|
| 3192 |
+
0x3E3000003E4,
|
| 3193 |
+
0x3E5000003E6,
|
| 3194 |
+
0x3E7000003E8,
|
| 3195 |
+
0x3E9000003EA,
|
| 3196 |
+
0x3EB000003EC,
|
| 3197 |
+
0x3ED000003EE,
|
| 3198 |
+
0x3EF000003F0,
|
| 3199 |
+
0x3F3000003F4,
|
| 3200 |
+
0x3F8000003F9,
|
| 3201 |
+
0x3FB000003FD,
|
| 3202 |
+
0x43000000460,
|
| 3203 |
+
0x46100000462,
|
| 3204 |
+
0x46300000464,
|
| 3205 |
+
0x46500000466,
|
| 3206 |
+
0x46700000468,
|
| 3207 |
+
0x4690000046A,
|
| 3208 |
+
0x46B0000046C,
|
| 3209 |
+
0x46D0000046E,
|
| 3210 |
+
0x46F00000470,
|
| 3211 |
+
0x47100000472,
|
| 3212 |
+
0x47300000474,
|
| 3213 |
+
0x47500000476,
|
| 3214 |
+
0x47700000478,
|
| 3215 |
+
0x4790000047A,
|
| 3216 |
+
0x47B0000047C,
|
| 3217 |
+
0x47D0000047E,
|
| 3218 |
+
0x47F00000480,
|
| 3219 |
+
0x48100000482,
|
| 3220 |
+
0x48300000488,
|
| 3221 |
+
0x48B0000048C,
|
| 3222 |
+
0x48D0000048E,
|
| 3223 |
+
0x48F00000490,
|
| 3224 |
+
0x49100000492,
|
| 3225 |
+
0x49300000494,
|
| 3226 |
+
0x49500000496,
|
| 3227 |
+
0x49700000498,
|
| 3228 |
+
0x4990000049A,
|
| 3229 |
+
0x49B0000049C,
|
| 3230 |
+
0x49D0000049E,
|
| 3231 |
+
0x49F000004A0,
|
| 3232 |
+
0x4A1000004A2,
|
| 3233 |
+
0x4A3000004A4,
|
| 3234 |
+
0x4A5000004A6,
|
| 3235 |
+
0x4A7000004A8,
|
| 3236 |
+
0x4A9000004AA,
|
| 3237 |
+
0x4AB000004AC,
|
| 3238 |
+
0x4AD000004AE,
|
| 3239 |
+
0x4AF000004B0,
|
| 3240 |
+
0x4B1000004B2,
|
| 3241 |
+
0x4B3000004B4,
|
| 3242 |
+
0x4B5000004B6,
|
| 3243 |
+
0x4B7000004B8,
|
| 3244 |
+
0x4B9000004BA,
|
| 3245 |
+
0x4BB000004BC,
|
| 3246 |
+
0x4BD000004BE,
|
| 3247 |
+
0x4BF000004C0,
|
| 3248 |
+
0x4C2000004C3,
|
| 3249 |
+
0x4C4000004C5,
|
| 3250 |
+
0x4C6000004C7,
|
| 3251 |
+
0x4C8000004C9,
|
| 3252 |
+
0x4CA000004CB,
|
| 3253 |
+
0x4CC000004CD,
|
| 3254 |
+
0x4CE000004D0,
|
| 3255 |
+
0x4D1000004D2,
|
| 3256 |
+
0x4D3000004D4,
|
| 3257 |
+
0x4D5000004D6,
|
| 3258 |
+
0x4D7000004D8,
|
| 3259 |
+
0x4D9000004DA,
|
| 3260 |
+
0x4DB000004DC,
|
| 3261 |
+
0x4DD000004DE,
|
| 3262 |
+
0x4DF000004E0,
|
| 3263 |
+
0x4E1000004E2,
|
| 3264 |
+
0x4E3000004E4,
|
| 3265 |
+
0x4E5000004E6,
|
| 3266 |
+
0x4E7000004E8,
|
| 3267 |
+
0x4E9000004EA,
|
| 3268 |
+
0x4EB000004EC,
|
| 3269 |
+
0x4ED000004EE,
|
| 3270 |
+
0x4EF000004F0,
|
| 3271 |
+
0x4F1000004F2,
|
| 3272 |
+
0x4F3000004F4,
|
| 3273 |
+
0x4F5000004F6,
|
| 3274 |
+
0x4F7000004F8,
|
| 3275 |
+
0x4F9000004FA,
|
| 3276 |
+
0x4FB000004FC,
|
| 3277 |
+
0x4FD000004FE,
|
| 3278 |
+
0x4FF00000500,
|
| 3279 |
+
0x50100000502,
|
| 3280 |
+
0x50300000504,
|
| 3281 |
+
0x50500000506,
|
| 3282 |
+
0x50700000508,
|
| 3283 |
+
0x5090000050A,
|
| 3284 |
+
0x50B0000050C,
|
| 3285 |
+
0x50D0000050E,
|
| 3286 |
+
0x50F00000510,
|
| 3287 |
+
0x51100000512,
|
| 3288 |
+
0x51300000514,
|
| 3289 |
+
0x51500000516,
|
| 3290 |
+
0x51700000518,
|
| 3291 |
+
0x5190000051A,
|
| 3292 |
+
0x51B0000051C,
|
| 3293 |
+
0x51D0000051E,
|
| 3294 |
+
0x51F00000520,
|
| 3295 |
+
0x52100000522,
|
| 3296 |
+
0x52300000524,
|
| 3297 |
+
0x52500000526,
|
| 3298 |
+
0x52700000528,
|
| 3299 |
+
0x5290000052A,
|
| 3300 |
+
0x52B0000052C,
|
| 3301 |
+
0x52D0000052E,
|
| 3302 |
+
0x52F00000530,
|
| 3303 |
+
0x5590000055A,
|
| 3304 |
+
0x56000000587,
|
| 3305 |
+
0x58800000589,
|
| 3306 |
+
0x591000005BE,
|
| 3307 |
+
0x5BF000005C0,
|
| 3308 |
+
0x5C1000005C3,
|
| 3309 |
+
0x5C4000005C6,
|
| 3310 |
+
0x5C7000005C8,
|
| 3311 |
+
0x5D0000005EB,
|
| 3312 |
+
0x5EF000005F3,
|
| 3313 |
+
0x6100000061B,
|
| 3314 |
+
0x62000000640,
|
| 3315 |
+
0x64100000660,
|
| 3316 |
+
0x66E00000675,
|
| 3317 |
+
0x679000006D4,
|
| 3318 |
+
0x6D5000006DD,
|
| 3319 |
+
0x6DF000006E9,
|
| 3320 |
+
0x6EA000006F0,
|
| 3321 |
+
0x6FA00000700,
|
| 3322 |
+
0x7100000074B,
|
| 3323 |
+
0x74D000007B2,
|
| 3324 |
+
0x7C0000007F6,
|
| 3325 |
+
0x7FD000007FE,
|
| 3326 |
+
0x8000000082E,
|
| 3327 |
+
0x8400000085C,
|
| 3328 |
+
0x8600000086B,
|
| 3329 |
+
0x87000000888,
|
| 3330 |
+
0x8890000088F,
|
| 3331 |
+
0x898000008E2,
|
| 3332 |
+
0x8E300000958,
|
| 3333 |
+
0x96000000964,
|
| 3334 |
+
0x96600000970,
|
| 3335 |
+
0x97100000984,
|
| 3336 |
+
0x9850000098D,
|
| 3337 |
+
0x98F00000991,
|
| 3338 |
+
0x993000009A9,
|
| 3339 |
+
0x9AA000009B1,
|
| 3340 |
+
0x9B2000009B3,
|
| 3341 |
+
0x9B6000009BA,
|
| 3342 |
+
0x9BC000009C5,
|
| 3343 |
+
0x9C7000009C9,
|
| 3344 |
+
0x9CB000009CF,
|
| 3345 |
+
0x9D7000009D8,
|
| 3346 |
+
0x9E0000009E4,
|
| 3347 |
+
0x9E6000009F2,
|
| 3348 |
+
0x9FC000009FD,
|
| 3349 |
+
0x9FE000009FF,
|
| 3350 |
+
0xA0100000A04,
|
| 3351 |
+
0xA0500000A0B,
|
| 3352 |
+
0xA0F00000A11,
|
| 3353 |
+
0xA1300000A29,
|
| 3354 |
+
0xA2A00000A31,
|
| 3355 |
+
0xA3200000A33,
|
| 3356 |
+
0xA3500000A36,
|
| 3357 |
+
0xA3800000A3A,
|
| 3358 |
+
0xA3C00000A3D,
|
| 3359 |
+
0xA3E00000A43,
|
| 3360 |
+
0xA4700000A49,
|
| 3361 |
+
0xA4B00000A4E,
|
| 3362 |
+
0xA5100000A52,
|
| 3363 |
+
0xA5C00000A5D,
|
| 3364 |
+
0xA6600000A76,
|
| 3365 |
+
0xA8100000A84,
|
| 3366 |
+
0xA8500000A8E,
|
| 3367 |
+
0xA8F00000A92,
|
| 3368 |
+
0xA9300000AA9,
|
| 3369 |
+
0xAAA00000AB1,
|
| 3370 |
+
0xAB200000AB4,
|
| 3371 |
+
0xAB500000ABA,
|
| 3372 |
+
0xABC00000AC6,
|
| 3373 |
+
0xAC700000ACA,
|
| 3374 |
+
0xACB00000ACE,
|
| 3375 |
+
0xAD000000AD1,
|
| 3376 |
+
0xAE000000AE4,
|
| 3377 |
+
0xAE600000AF0,
|
| 3378 |
+
0xAF900000B00,
|
| 3379 |
+
0xB0100000B04,
|
| 3380 |
+
0xB0500000B0D,
|
| 3381 |
+
0xB0F00000B11,
|
| 3382 |
+
0xB1300000B29,
|
| 3383 |
+
0xB2A00000B31,
|
| 3384 |
+
0xB3200000B34,
|
| 3385 |
+
0xB3500000B3A,
|
| 3386 |
+
0xB3C00000B45,
|
| 3387 |
+
0xB4700000B49,
|
| 3388 |
+
0xB4B00000B4E,
|
| 3389 |
+
0xB5500000B58,
|
| 3390 |
+
0xB5F00000B64,
|
| 3391 |
+
0xB6600000B70,
|
| 3392 |
+
0xB7100000B72,
|
| 3393 |
+
0xB8200000B84,
|
| 3394 |
+
0xB8500000B8B,
|
| 3395 |
+
0xB8E00000B91,
|
| 3396 |
+
0xB9200000B96,
|
| 3397 |
+
0xB9900000B9B,
|
| 3398 |
+
0xB9C00000B9D,
|
| 3399 |
+
0xB9E00000BA0,
|
| 3400 |
+
0xBA300000BA5,
|
| 3401 |
+
0xBA800000BAB,
|
| 3402 |
+
0xBAE00000BBA,
|
| 3403 |
+
0xBBE00000BC3,
|
| 3404 |
+
0xBC600000BC9,
|
| 3405 |
+
0xBCA00000BCE,
|
| 3406 |
+
0xBD000000BD1,
|
| 3407 |
+
0xBD700000BD8,
|
| 3408 |
+
0xBE600000BF0,
|
| 3409 |
+
0xC0000000C0D,
|
| 3410 |
+
0xC0E00000C11,
|
| 3411 |
+
0xC1200000C29,
|
| 3412 |
+
0xC2A00000C3A,
|
| 3413 |
+
0xC3C00000C45,
|
| 3414 |
+
0xC4600000C49,
|
| 3415 |
+
0xC4A00000C4E,
|
| 3416 |
+
0xC5500000C57,
|
| 3417 |
+
0xC5800000C5B,
|
| 3418 |
+
0xC5D00000C5E,
|
| 3419 |
+
0xC6000000C64,
|
| 3420 |
+
0xC6600000C70,
|
| 3421 |
+
0xC8000000C84,
|
| 3422 |
+
0xC8500000C8D,
|
| 3423 |
+
0xC8E00000C91,
|
| 3424 |
+
0xC9200000CA9,
|
| 3425 |
+
0xCAA00000CB4,
|
| 3426 |
+
0xCB500000CBA,
|
| 3427 |
+
0xCBC00000CC5,
|
| 3428 |
+
0xCC600000CC9,
|
| 3429 |
+
0xCCA00000CCE,
|
| 3430 |
+
0xCD500000CD7,
|
| 3431 |
+
0xCDD00000CDF,
|
| 3432 |
+
0xCE000000CE4,
|
| 3433 |
+
0xCE600000CF0,
|
| 3434 |
+
0xCF100000CF4,
|
| 3435 |
+
0xD0000000D0D,
|
| 3436 |
+
0xD0E00000D11,
|
| 3437 |
+
0xD1200000D45,
|
| 3438 |
+
0xD4600000D49,
|
| 3439 |
+
0xD4A00000D4F,
|
| 3440 |
+
0xD5400000D58,
|
| 3441 |
+
0xD5F00000D64,
|
| 3442 |
+
0xD6600000D70,
|
| 3443 |
+
0xD7A00000D80,
|
| 3444 |
+
0xD8100000D84,
|
| 3445 |
+
0xD8500000D97,
|
| 3446 |
+
0xD9A00000DB2,
|
| 3447 |
+
0xDB300000DBC,
|
| 3448 |
+
0xDBD00000DBE,
|
| 3449 |
+
0xDC000000DC7,
|
| 3450 |
+
0xDCA00000DCB,
|
| 3451 |
+
0xDCF00000DD5,
|
| 3452 |
+
0xDD600000DD7,
|
| 3453 |
+
0xDD800000DE0,
|
| 3454 |
+
0xDE600000DF0,
|
| 3455 |
+
0xDF200000DF4,
|
| 3456 |
+
0xE0100000E33,
|
| 3457 |
+
0xE3400000E3B,
|
| 3458 |
+
0xE4000000E4F,
|
| 3459 |
+
0xE5000000E5A,
|
| 3460 |
+
0xE8100000E83,
|
| 3461 |
+
0xE8400000E85,
|
| 3462 |
+
0xE8600000E8B,
|
| 3463 |
+
0xE8C00000EA4,
|
| 3464 |
+
0xEA500000EA6,
|
| 3465 |
+
0xEA700000EB3,
|
| 3466 |
+
0xEB400000EBE,
|
| 3467 |
+
0xEC000000EC5,
|
| 3468 |
+
0xEC600000EC7,
|
| 3469 |
+
0xEC800000ECF,
|
| 3470 |
+
0xED000000EDA,
|
| 3471 |
+
0xEDE00000EE0,
|
| 3472 |
+
0xF0000000F01,
|
| 3473 |
+
0xF0B00000F0C,
|
| 3474 |
+
0xF1800000F1A,
|
| 3475 |
+
0xF2000000F2A,
|
| 3476 |
+
0xF3500000F36,
|
| 3477 |
+
0xF3700000F38,
|
| 3478 |
+
0xF3900000F3A,
|
| 3479 |
+
0xF3E00000F43,
|
| 3480 |
+
0xF4400000F48,
|
| 3481 |
+
0xF4900000F4D,
|
| 3482 |
+
0xF4E00000F52,
|
| 3483 |
+
0xF5300000F57,
|
| 3484 |
+
0xF5800000F5C,
|
| 3485 |
+
0xF5D00000F69,
|
| 3486 |
+
0xF6A00000F6D,
|
| 3487 |
+
0xF7100000F73,
|
| 3488 |
+
0xF7400000F75,
|
| 3489 |
+
0xF7A00000F81,
|
| 3490 |
+
0xF8200000F85,
|
| 3491 |
+
0xF8600000F93,
|
| 3492 |
+
0xF9400000F98,
|
| 3493 |
+
0xF9900000F9D,
|
| 3494 |
+
0xF9E00000FA2,
|
| 3495 |
+
0xFA300000FA7,
|
| 3496 |
+
0xFA800000FAC,
|
| 3497 |
+
0xFAD00000FB9,
|
| 3498 |
+
0xFBA00000FBD,
|
| 3499 |
+
0xFC600000FC7,
|
| 3500 |
+
0x10000000104A,
|
| 3501 |
+
0x10500000109E,
|
| 3502 |
+
0x10D0000010FB,
|
| 3503 |
+
0x10FD00001100,
|
| 3504 |
+
0x120000001249,
|
| 3505 |
+
0x124A0000124E,
|
| 3506 |
+
0x125000001257,
|
| 3507 |
+
0x125800001259,
|
| 3508 |
+
0x125A0000125E,
|
| 3509 |
+
0x126000001289,
|
| 3510 |
+
0x128A0000128E,
|
| 3511 |
+
0x1290000012B1,
|
| 3512 |
+
0x12B2000012B6,
|
| 3513 |
+
0x12B8000012BF,
|
| 3514 |
+
0x12C0000012C1,
|
| 3515 |
+
0x12C2000012C6,
|
| 3516 |
+
0x12C8000012D7,
|
| 3517 |
+
0x12D800001311,
|
| 3518 |
+
0x131200001316,
|
| 3519 |
+
0x13180000135B,
|
| 3520 |
+
0x135D00001360,
|
| 3521 |
+
0x138000001390,
|
| 3522 |
+
0x13A0000013F6,
|
| 3523 |
+
0x14010000166D,
|
| 3524 |
+
0x166F00001680,
|
| 3525 |
+
0x16810000169B,
|
| 3526 |
+
0x16A0000016EB,
|
| 3527 |
+
0x16F1000016F9,
|
| 3528 |
+
0x170000001716,
|
| 3529 |
+
0x171F00001735,
|
| 3530 |
+
0x174000001754,
|
| 3531 |
+
0x17600000176D,
|
| 3532 |
+
0x176E00001771,
|
| 3533 |
+
0x177200001774,
|
| 3534 |
+
0x1780000017B4,
|
| 3535 |
+
0x17B6000017D4,
|
| 3536 |
+
0x17D7000017D8,
|
| 3537 |
+
0x17DC000017DE,
|
| 3538 |
+
0x17E0000017EA,
|
| 3539 |
+
0x18100000181A,
|
| 3540 |
+
0x182000001879,
|
| 3541 |
+
0x1880000018AB,
|
| 3542 |
+
0x18B0000018F6,
|
| 3543 |
+
0x19000000191F,
|
| 3544 |
+
0x19200000192C,
|
| 3545 |
+
0x19300000193C,
|
| 3546 |
+
0x19460000196E,
|
| 3547 |
+
0x197000001975,
|
| 3548 |
+
0x1980000019AC,
|
| 3549 |
+
0x19B0000019CA,
|
| 3550 |
+
0x19D0000019DA,
|
| 3551 |
+
0x1A0000001A1C,
|
| 3552 |
+
0x1A2000001A5F,
|
| 3553 |
+
0x1A6000001A7D,
|
| 3554 |
+
0x1A7F00001A8A,
|
| 3555 |
+
0x1A9000001A9A,
|
| 3556 |
+
0x1AA700001AA8,
|
| 3557 |
+
0x1AB000001ABE,
|
| 3558 |
+
0x1ABF00001ACF,
|
| 3559 |
+
0x1B0000001B4D,
|
| 3560 |
+
0x1B5000001B5A,
|
| 3561 |
+
0x1B6B00001B74,
|
| 3562 |
+
0x1B8000001BF4,
|
| 3563 |
+
0x1C0000001C38,
|
| 3564 |
+
0x1C4000001C4A,
|
| 3565 |
+
0x1C4D00001C7E,
|
| 3566 |
+
0x1CD000001CD3,
|
| 3567 |
+
0x1CD400001CFB,
|
| 3568 |
+
0x1D0000001D2C,
|
| 3569 |
+
0x1D2F00001D30,
|
| 3570 |
+
0x1D3B00001D3C,
|
| 3571 |
+
0x1D4E00001D4F,
|
| 3572 |
+
0x1D6B00001D78,
|
| 3573 |
+
0x1D7900001D9B,
|
| 3574 |
+
0x1DC000001E00,
|
| 3575 |
+
0x1E0100001E02,
|
| 3576 |
+
0x1E0300001E04,
|
| 3577 |
+
0x1E0500001E06,
|
| 3578 |
+
0x1E0700001E08,
|
| 3579 |
+
0x1E0900001E0A,
|
| 3580 |
+
0x1E0B00001E0C,
|
| 3581 |
+
0x1E0D00001E0E,
|
| 3582 |
+
0x1E0F00001E10,
|
| 3583 |
+
0x1E1100001E12,
|
| 3584 |
+
0x1E1300001E14,
|
| 3585 |
+
0x1E1500001E16,
|
| 3586 |
+
0x1E1700001E18,
|
| 3587 |
+
0x1E1900001E1A,
|
| 3588 |
+
0x1E1B00001E1C,
|
| 3589 |
+
0x1E1D00001E1E,
|
| 3590 |
+
0x1E1F00001E20,
|
| 3591 |
+
0x1E2100001E22,
|
| 3592 |
+
0x1E2300001E24,
|
| 3593 |
+
0x1E2500001E26,
|
| 3594 |
+
0x1E2700001E28,
|
| 3595 |
+
0x1E2900001E2A,
|
| 3596 |
+
0x1E2B00001E2C,
|
| 3597 |
+
0x1E2D00001E2E,
|
| 3598 |
+
0x1E2F00001E30,
|
| 3599 |
+
0x1E3100001E32,
|
| 3600 |
+
0x1E3300001E34,
|
| 3601 |
+
0x1E3500001E36,
|
| 3602 |
+
0x1E3700001E38,
|
| 3603 |
+
0x1E3900001E3A,
|
| 3604 |
+
0x1E3B00001E3C,
|
| 3605 |
+
0x1E3D00001E3E,
|
| 3606 |
+
0x1E3F00001E40,
|
| 3607 |
+
0x1E4100001E42,
|
| 3608 |
+
0x1E4300001E44,
|
| 3609 |
+
0x1E4500001E46,
|
| 3610 |
+
0x1E4700001E48,
|
| 3611 |
+
0x1E4900001E4A,
|
| 3612 |
+
0x1E4B00001E4C,
|
| 3613 |
+
0x1E4D00001E4E,
|
| 3614 |
+
0x1E4F00001E50,
|
| 3615 |
+
0x1E5100001E52,
|
| 3616 |
+
0x1E5300001E54,
|
| 3617 |
+
0x1E5500001E56,
|
| 3618 |
+
0x1E5700001E58,
|
| 3619 |
+
0x1E5900001E5A,
|
| 3620 |
+
0x1E5B00001E5C,
|
| 3621 |
+
0x1E5D00001E5E,
|
| 3622 |
+
0x1E5F00001E60,
|
| 3623 |
+
0x1E6100001E62,
|
| 3624 |
+
0x1E6300001E64,
|
| 3625 |
+
0x1E6500001E66,
|
| 3626 |
+
0x1E6700001E68,
|
| 3627 |
+
0x1E6900001E6A,
|
| 3628 |
+
0x1E6B00001E6C,
|
| 3629 |
+
0x1E6D00001E6E,
|
| 3630 |
+
0x1E6F00001E70,
|
| 3631 |
+
0x1E7100001E72,
|
| 3632 |
+
0x1E7300001E74,
|
| 3633 |
+
0x1E7500001E76,
|
| 3634 |
+
0x1E7700001E78,
|
| 3635 |
+
0x1E7900001E7A,
|
| 3636 |
+
0x1E7B00001E7C,
|
| 3637 |
+
0x1E7D00001E7E,
|
| 3638 |
+
0x1E7F00001E80,
|
| 3639 |
+
0x1E8100001E82,
|
| 3640 |
+
0x1E8300001E84,
|
| 3641 |
+
0x1E8500001E86,
|
| 3642 |
+
0x1E8700001E88,
|
| 3643 |
+
0x1E8900001E8A,
|
| 3644 |
+
0x1E8B00001E8C,
|
| 3645 |
+
0x1E8D00001E8E,
|
| 3646 |
+
0x1E8F00001E90,
|
| 3647 |
+
0x1E9100001E92,
|
| 3648 |
+
0x1E9300001E94,
|
| 3649 |
+
0x1E9500001E9A,
|
| 3650 |
+
0x1E9C00001E9E,
|
| 3651 |
+
0x1E9F00001EA0,
|
| 3652 |
+
0x1EA100001EA2,
|
| 3653 |
+
0x1EA300001EA4,
|
| 3654 |
+
0x1EA500001EA6,
|
| 3655 |
+
0x1EA700001EA8,
|
| 3656 |
+
0x1EA900001EAA,
|
| 3657 |
+
0x1EAB00001EAC,
|
| 3658 |
+
0x1EAD00001EAE,
|
| 3659 |
+
0x1EAF00001EB0,
|
| 3660 |
+
0x1EB100001EB2,
|
| 3661 |
+
0x1EB300001EB4,
|
| 3662 |
+
0x1EB500001EB6,
|
| 3663 |
+
0x1EB700001EB8,
|
| 3664 |
+
0x1EB900001EBA,
|
| 3665 |
+
0x1EBB00001EBC,
|
| 3666 |
+
0x1EBD00001EBE,
|
| 3667 |
+
0x1EBF00001EC0,
|
| 3668 |
+
0x1EC100001EC2,
|
| 3669 |
+
0x1EC300001EC4,
|
| 3670 |
+
0x1EC500001EC6,
|
| 3671 |
+
0x1EC700001EC8,
|
| 3672 |
+
0x1EC900001ECA,
|
| 3673 |
+
0x1ECB00001ECC,
|
| 3674 |
+
0x1ECD00001ECE,
|
| 3675 |
+
0x1ECF00001ED0,
|
| 3676 |
+
0x1ED100001ED2,
|
| 3677 |
+
0x1ED300001ED4,
|
| 3678 |
+
0x1ED500001ED6,
|
| 3679 |
+
0x1ED700001ED8,
|
| 3680 |
+
0x1ED900001EDA,
|
| 3681 |
+
0x1EDB00001EDC,
|
| 3682 |
+
0x1EDD00001EDE,
|
| 3683 |
+
0x1EDF00001EE0,
|
| 3684 |
+
0x1EE100001EE2,
|
| 3685 |
+
0x1EE300001EE4,
|
| 3686 |
+
0x1EE500001EE6,
|
| 3687 |
+
0x1EE700001EE8,
|
| 3688 |
+
0x1EE900001EEA,
|
| 3689 |
+
0x1EEB00001EEC,
|
| 3690 |
+
0x1EED00001EEE,
|
| 3691 |
+
0x1EEF00001EF0,
|
| 3692 |
+
0x1EF100001EF2,
|
| 3693 |
+
0x1EF300001EF4,
|
| 3694 |
+
0x1EF500001EF6,
|
| 3695 |
+
0x1EF700001EF8,
|
| 3696 |
+
0x1EF900001EFA,
|
| 3697 |
+
0x1EFB00001EFC,
|
| 3698 |
+
0x1EFD00001EFE,
|
| 3699 |
+
0x1EFF00001F08,
|
| 3700 |
+
0x1F1000001F16,
|
| 3701 |
+
0x1F2000001F28,
|
| 3702 |
+
0x1F3000001F38,
|
| 3703 |
+
0x1F4000001F46,
|
| 3704 |
+
0x1F5000001F58,
|
| 3705 |
+
0x1F6000001F68,
|
| 3706 |
+
0x1F7000001F71,
|
| 3707 |
+
0x1F7200001F73,
|
| 3708 |
+
0x1F7400001F75,
|
| 3709 |
+
0x1F7600001F77,
|
| 3710 |
+
0x1F7800001F79,
|
| 3711 |
+
0x1F7A00001F7B,
|
| 3712 |
+
0x1F7C00001F7D,
|
| 3713 |
+
0x1FB000001FB2,
|
| 3714 |
+
0x1FB600001FB7,
|
| 3715 |
+
0x1FC600001FC7,
|
| 3716 |
+
0x1FD000001FD3,
|
| 3717 |
+
0x1FD600001FD8,
|
| 3718 |
+
0x1FE000001FE3,
|
| 3719 |
+
0x1FE400001FE8,
|
| 3720 |
+
0x1FF600001FF7,
|
| 3721 |
+
0x214E0000214F,
|
| 3722 |
+
0x218400002185,
|
| 3723 |
+
0x2C3000002C60,
|
| 3724 |
+
0x2C6100002C62,
|
| 3725 |
+
0x2C6500002C67,
|
| 3726 |
+
0x2C6800002C69,
|
| 3727 |
+
0x2C6A00002C6B,
|
| 3728 |
+
0x2C6C00002C6D,
|
| 3729 |
+
0x2C7100002C72,
|
| 3730 |
+
0x2C7300002C75,
|
| 3731 |
+
0x2C7600002C7C,
|
| 3732 |
+
0x2C8100002C82,
|
| 3733 |
+
0x2C8300002C84,
|
| 3734 |
+
0x2C8500002C86,
|
| 3735 |
+
0x2C8700002C88,
|
| 3736 |
+
0x2C8900002C8A,
|
| 3737 |
+
0x2C8B00002C8C,
|
| 3738 |
+
0x2C8D00002C8E,
|
| 3739 |
+
0x2C8F00002C90,
|
| 3740 |
+
0x2C9100002C92,
|
| 3741 |
+
0x2C9300002C94,
|
| 3742 |
+
0x2C9500002C96,
|
| 3743 |
+
0x2C9700002C98,
|
| 3744 |
+
0x2C9900002C9A,
|
| 3745 |
+
0x2C9B00002C9C,
|
| 3746 |
+
0x2C9D00002C9E,
|
| 3747 |
+
0x2C9F00002CA0,
|
| 3748 |
+
0x2CA100002CA2,
|
| 3749 |
+
0x2CA300002CA4,
|
| 3750 |
+
0x2CA500002CA6,
|
| 3751 |
+
0x2CA700002CA8,
|
| 3752 |
+
0x2CA900002CAA,
|
| 3753 |
+
0x2CAB00002CAC,
|
| 3754 |
+
0x2CAD00002CAE,
|
| 3755 |
+
0x2CAF00002CB0,
|
| 3756 |
+
0x2CB100002CB2,
|
| 3757 |
+
0x2CB300002CB4,
|
| 3758 |
+
0x2CB500002CB6,
|
| 3759 |
+
0x2CB700002CB8,
|
| 3760 |
+
0x2CB900002CBA,
|
| 3761 |
+
0x2CBB00002CBC,
|
| 3762 |
+
0x2CBD00002CBE,
|
| 3763 |
+
0x2CBF00002CC0,
|
| 3764 |
+
0x2CC100002CC2,
|
| 3765 |
+
0x2CC300002CC4,
|
| 3766 |
+
0x2CC500002CC6,
|
| 3767 |
+
0x2CC700002CC8,
|
| 3768 |
+
0x2CC900002CCA,
|
| 3769 |
+
0x2CCB00002CCC,
|
| 3770 |
+
0x2CCD00002CCE,
|
| 3771 |
+
0x2CCF00002CD0,
|
| 3772 |
+
0x2CD100002CD2,
|
| 3773 |
+
0x2CD300002CD4,
|
| 3774 |
+
0x2CD500002CD6,
|
| 3775 |
+
0x2CD700002CD8,
|
| 3776 |
+
0x2CD900002CDA,
|
| 3777 |
+
0x2CDB00002CDC,
|
| 3778 |
+
0x2CDD00002CDE,
|
| 3779 |
+
0x2CDF00002CE0,
|
| 3780 |
+
0x2CE100002CE2,
|
| 3781 |
+
0x2CE300002CE5,
|
| 3782 |
+
0x2CEC00002CED,
|
| 3783 |
+
0x2CEE00002CF2,
|
| 3784 |
+
0x2CF300002CF4,
|
| 3785 |
+
0x2D0000002D26,
|
| 3786 |
+
0x2D2700002D28,
|
| 3787 |
+
0x2D2D00002D2E,
|
| 3788 |
+
0x2D3000002D68,
|
| 3789 |
+
0x2D7F00002D97,
|
| 3790 |
+
0x2DA000002DA7,
|
| 3791 |
+
0x2DA800002DAF,
|
| 3792 |
+
0x2DB000002DB7,
|
| 3793 |
+
0x2DB800002DBF,
|
| 3794 |
+
0x2DC000002DC7,
|
| 3795 |
+
0x2DC800002DCF,
|
| 3796 |
+
0x2DD000002DD7,
|
| 3797 |
+
0x2DD800002DDF,
|
| 3798 |
+
0x2DE000002E00,
|
| 3799 |
+
0x2E2F00002E30,
|
| 3800 |
+
0x300500003008,
|
| 3801 |
+
0x302A0000302E,
|
| 3802 |
+
0x303C0000303D,
|
| 3803 |
+
0x304100003097,
|
| 3804 |
+
0x30990000309B,
|
| 3805 |
+
0x309D0000309F,
|
| 3806 |
+
0x30A1000030FB,
|
| 3807 |
+
0x30FC000030FF,
|
| 3808 |
+
0x310500003130,
|
| 3809 |
+
0x31A0000031C0,
|
| 3810 |
+
0x31F000003200,
|
| 3811 |
+
0x340000004DC0,
|
| 3812 |
+
0x4E000000A48D,
|
| 3813 |
+
0xA4D00000A4FE,
|
| 3814 |
+
0xA5000000A60D,
|
| 3815 |
+
0xA6100000A62C,
|
| 3816 |
+
0xA6410000A642,
|
| 3817 |
+
0xA6430000A644,
|
| 3818 |
+
0xA6450000A646,
|
| 3819 |
+
0xA6470000A648,
|
| 3820 |
+
0xA6490000A64A,
|
| 3821 |
+
0xA64B0000A64C,
|
| 3822 |
+
0xA64D0000A64E,
|
| 3823 |
+
0xA64F0000A650,
|
| 3824 |
+
0xA6510000A652,
|
| 3825 |
+
0xA6530000A654,
|
| 3826 |
+
0xA6550000A656,
|
| 3827 |
+
0xA6570000A658,
|
| 3828 |
+
0xA6590000A65A,
|
| 3829 |
+
0xA65B0000A65C,
|
| 3830 |
+
0xA65D0000A65E,
|
| 3831 |
+
0xA65F0000A660,
|
| 3832 |
+
0xA6610000A662,
|
| 3833 |
+
0xA6630000A664,
|
| 3834 |
+
0xA6650000A666,
|
| 3835 |
+
0xA6670000A668,
|
| 3836 |
+
0xA6690000A66A,
|
| 3837 |
+
0xA66B0000A66C,
|
| 3838 |
+
0xA66D0000A670,
|
| 3839 |
+
0xA6740000A67E,
|
| 3840 |
+
0xA67F0000A680,
|
| 3841 |
+
0xA6810000A682,
|
| 3842 |
+
0xA6830000A684,
|
| 3843 |
+
0xA6850000A686,
|
| 3844 |
+
0xA6870000A688,
|
| 3845 |
+
0xA6890000A68A,
|
| 3846 |
+
0xA68B0000A68C,
|
| 3847 |
+
0xA68D0000A68E,
|
| 3848 |
+
0xA68F0000A690,
|
| 3849 |
+
0xA6910000A692,
|
| 3850 |
+
0xA6930000A694,
|
| 3851 |
+
0xA6950000A696,
|
| 3852 |
+
0xA6970000A698,
|
| 3853 |
+
0xA6990000A69A,
|
| 3854 |
+
0xA69B0000A69C,
|
| 3855 |
+
0xA69E0000A6E6,
|
| 3856 |
+
0xA6F00000A6F2,
|
| 3857 |
+
0xA7170000A720,
|
| 3858 |
+
0xA7230000A724,
|
| 3859 |
+
0xA7250000A726,
|
| 3860 |
+
0xA7270000A728,
|
| 3861 |
+
0xA7290000A72A,
|
| 3862 |
+
0xA72B0000A72C,
|
| 3863 |
+
0xA72D0000A72E,
|
| 3864 |
+
0xA72F0000A732,
|
| 3865 |
+
0xA7330000A734,
|
| 3866 |
+
0xA7350000A736,
|
| 3867 |
+
0xA7370000A738,
|
| 3868 |
+
0xA7390000A73A,
|
| 3869 |
+
0xA73B0000A73C,
|
| 3870 |
+
0xA73D0000A73E,
|
| 3871 |
+
0xA73F0000A740,
|
| 3872 |
+
0xA7410000A742,
|
| 3873 |
+
0xA7430000A744,
|
| 3874 |
+
0xA7450000A746,
|
| 3875 |
+
0xA7470000A748,
|
| 3876 |
+
0xA7490000A74A,
|
| 3877 |
+
0xA74B0000A74C,
|
| 3878 |
+
0xA74D0000A74E,
|
| 3879 |
+
0xA74F0000A750,
|
| 3880 |
+
0xA7510000A752,
|
| 3881 |
+
0xA7530000A754,
|
| 3882 |
+
0xA7550000A756,
|
| 3883 |
+
0xA7570000A758,
|
| 3884 |
+
0xA7590000A75A,
|
| 3885 |
+
0xA75B0000A75C,
|
| 3886 |
+
0xA75D0000A75E,
|
| 3887 |
+
0xA75F0000A760,
|
| 3888 |
+
0xA7610000A762,
|
| 3889 |
+
0xA7630000A764,
|
| 3890 |
+
0xA7650000A766,
|
| 3891 |
+
0xA7670000A768,
|
| 3892 |
+
0xA7690000A76A,
|
| 3893 |
+
0xA76B0000A76C,
|
| 3894 |
+
0xA76D0000A76E,
|
| 3895 |
+
0xA76F0000A770,
|
| 3896 |
+
0xA7710000A779,
|
| 3897 |
+
0xA77A0000A77B,
|
| 3898 |
+
0xA77C0000A77D,
|
| 3899 |
+
0xA77F0000A780,
|
| 3900 |
+
0xA7810000A782,
|
| 3901 |
+
0xA7830000A784,
|
| 3902 |
+
0xA7850000A786,
|
| 3903 |
+
0xA7870000A789,
|
| 3904 |
+
0xA78C0000A78D,
|
| 3905 |
+
0xA78E0000A790,
|
| 3906 |
+
0xA7910000A792,
|
| 3907 |
+
0xA7930000A796,
|
| 3908 |
+
0xA7970000A798,
|
| 3909 |
+
0xA7990000A79A,
|
| 3910 |
+
0xA79B0000A79C,
|
| 3911 |
+
0xA79D0000A79E,
|
| 3912 |
+
0xA79F0000A7A0,
|
| 3913 |
+
0xA7A10000A7A2,
|
| 3914 |
+
0xA7A30000A7A4,
|
| 3915 |
+
0xA7A50000A7A6,
|
| 3916 |
+
0xA7A70000A7A8,
|
| 3917 |
+
0xA7A90000A7AA,
|
| 3918 |
+
0xA7AF0000A7B0,
|
| 3919 |
+
0xA7B50000A7B6,
|
| 3920 |
+
0xA7B70000A7B8,
|
| 3921 |
+
0xA7B90000A7BA,
|
| 3922 |
+
0xA7BB0000A7BC,
|
| 3923 |
+
0xA7BD0000A7BE,
|
| 3924 |
+
0xA7BF0000A7C0,
|
| 3925 |
+
0xA7C10000A7C2,
|
| 3926 |
+
0xA7C30000A7C4,
|
| 3927 |
+
0xA7C80000A7C9,
|
| 3928 |
+
0xA7CA0000A7CB,
|
| 3929 |
+
0xA7D10000A7D2,
|
| 3930 |
+
0xA7D30000A7D4,
|
| 3931 |
+
0xA7D50000A7D6,
|
| 3932 |
+
0xA7D70000A7D8,
|
| 3933 |
+
0xA7D90000A7DA,
|
| 3934 |
+
0xA7F60000A7F8,
|
| 3935 |
+
0xA7FA0000A828,
|
| 3936 |
+
0xA82C0000A82D,
|
| 3937 |
+
0xA8400000A874,
|
| 3938 |
+
0xA8800000A8C6,
|
| 3939 |
+
0xA8D00000A8DA,
|
| 3940 |
+
0xA8E00000A8F8,
|
| 3941 |
+
0xA8FB0000A8FC,
|
| 3942 |
+
0xA8FD0000A92E,
|
| 3943 |
+
0xA9300000A954,
|
| 3944 |
+
0xA9800000A9C1,
|
| 3945 |
+
0xA9CF0000A9DA,
|
| 3946 |
+
0xA9E00000A9FF,
|
| 3947 |
+
0xAA000000AA37,
|
| 3948 |
+
0xAA400000AA4E,
|
| 3949 |
+
0xAA500000AA5A,
|
| 3950 |
+
0xAA600000AA77,
|
| 3951 |
+
0xAA7A0000AAC3,
|
| 3952 |
+
0xAADB0000AADE,
|
| 3953 |
+
0xAAE00000AAF0,
|
| 3954 |
+
0xAAF20000AAF7,
|
| 3955 |
+
0xAB010000AB07,
|
| 3956 |
+
0xAB090000AB0F,
|
| 3957 |
+
0xAB110000AB17,
|
| 3958 |
+
0xAB200000AB27,
|
| 3959 |
+
0xAB280000AB2F,
|
| 3960 |
+
0xAB300000AB5B,
|
| 3961 |
+
0xAB600000AB69,
|
| 3962 |
+
0xABC00000ABEB,
|
| 3963 |
+
0xABEC0000ABEE,
|
| 3964 |
+
0xABF00000ABFA,
|
| 3965 |
+
0xAC000000D7A4,
|
| 3966 |
+
0xFA0E0000FA10,
|
| 3967 |
+
0xFA110000FA12,
|
| 3968 |
+
0xFA130000FA15,
|
| 3969 |
+
0xFA1F0000FA20,
|
| 3970 |
+
0xFA210000FA22,
|
| 3971 |
+
0xFA230000FA25,
|
| 3972 |
+
0xFA270000FA2A,
|
| 3973 |
+
0xFB1E0000FB1F,
|
| 3974 |
+
0xFE200000FE30,
|
| 3975 |
+
0xFE730000FE74,
|
| 3976 |
+
0x100000001000C,
|
| 3977 |
+
0x1000D00010027,
|
| 3978 |
+
0x100280001003B,
|
| 3979 |
+
0x1003C0001003E,
|
| 3980 |
+
0x1003F0001004E,
|
| 3981 |
+
0x100500001005E,
|
| 3982 |
+
0x10080000100FB,
|
| 3983 |
+
0x101FD000101FE,
|
| 3984 |
+
0x102800001029D,
|
| 3985 |
+
0x102A0000102D1,
|
| 3986 |
+
0x102E0000102E1,
|
| 3987 |
+
0x1030000010320,
|
| 3988 |
+
0x1032D00010341,
|
| 3989 |
+
0x103420001034A,
|
| 3990 |
+
0x103500001037B,
|
| 3991 |
+
0x103800001039E,
|
| 3992 |
+
0x103A0000103C4,
|
| 3993 |
+
0x103C8000103D0,
|
| 3994 |
+
0x104280001049E,
|
| 3995 |
+
0x104A0000104AA,
|
| 3996 |
+
0x104D8000104FC,
|
| 3997 |
+
0x1050000010528,
|
| 3998 |
+
0x1053000010564,
|
| 3999 |
+
0x10597000105A2,
|
| 4000 |
+
0x105A3000105B2,
|
| 4001 |
+
0x105B3000105BA,
|
| 4002 |
+
0x105BB000105BD,
|
| 4003 |
+
0x1060000010737,
|
| 4004 |
+
0x1074000010756,
|
| 4005 |
+
0x1076000010768,
|
| 4006 |
+
0x1078000010781,
|
| 4007 |
+
0x1080000010806,
|
| 4008 |
+
0x1080800010809,
|
| 4009 |
+
0x1080A00010836,
|
| 4010 |
+
0x1083700010839,
|
| 4011 |
+
0x1083C0001083D,
|
| 4012 |
+
0x1083F00010856,
|
| 4013 |
+
0x1086000010877,
|
| 4014 |
+
0x108800001089F,
|
| 4015 |
+
0x108E0000108F3,
|
| 4016 |
+
0x108F4000108F6,
|
| 4017 |
+
0x1090000010916,
|
| 4018 |
+
0x109200001093A,
|
| 4019 |
+
0x10980000109B8,
|
| 4020 |
+
0x109BE000109C0,
|
| 4021 |
+
0x10A0000010A04,
|
| 4022 |
+
0x10A0500010A07,
|
| 4023 |
+
0x10A0C00010A14,
|
| 4024 |
+
0x10A1500010A18,
|
| 4025 |
+
0x10A1900010A36,
|
| 4026 |
+
0x10A3800010A3B,
|
| 4027 |
+
0x10A3F00010A40,
|
| 4028 |
+
0x10A6000010A7D,
|
| 4029 |
+
0x10A8000010A9D,
|
| 4030 |
+
0x10AC000010AC8,
|
| 4031 |
+
0x10AC900010AE7,
|
| 4032 |
+
0x10B0000010B36,
|
| 4033 |
+
0x10B4000010B56,
|
| 4034 |
+
0x10B6000010B73,
|
| 4035 |
+
0x10B8000010B92,
|
| 4036 |
+
0x10C0000010C49,
|
| 4037 |
+
0x10CC000010CF3,
|
| 4038 |
+
0x10D0000010D28,
|
| 4039 |
+
0x10D3000010D3A,
|
| 4040 |
+
0x10E8000010EAA,
|
| 4041 |
+
0x10EAB00010EAD,
|
| 4042 |
+
0x10EB000010EB2,
|
| 4043 |
+
0x10EFD00010F1D,
|
| 4044 |
+
0x10F2700010F28,
|
| 4045 |
+
0x10F3000010F51,
|
| 4046 |
+
0x10F7000010F86,
|
| 4047 |
+
0x10FB000010FC5,
|
| 4048 |
+
0x10FE000010FF7,
|
| 4049 |
+
0x1100000011047,
|
| 4050 |
+
0x1106600011076,
|
| 4051 |
+
0x1107F000110BB,
|
| 4052 |
+
0x110C2000110C3,
|
| 4053 |
+
0x110D0000110E9,
|
| 4054 |
+
0x110F0000110FA,
|
| 4055 |
+
0x1110000011135,
|
| 4056 |
+
0x1113600011140,
|
| 4057 |
+
0x1114400011148,
|
| 4058 |
+
0x1115000011174,
|
| 4059 |
+
0x1117600011177,
|
| 4060 |
+
0x11180000111C5,
|
| 4061 |
+
0x111C9000111CD,
|
| 4062 |
+
0x111CE000111DB,
|
| 4063 |
+
0x111DC000111DD,
|
| 4064 |
+
0x1120000011212,
|
| 4065 |
+
0x1121300011238,
|
| 4066 |
+
0x1123E00011242,
|
| 4067 |
+
0x1128000011287,
|
| 4068 |
+
0x1128800011289,
|
| 4069 |
+
0x1128A0001128E,
|
| 4070 |
+
0x1128F0001129E,
|
| 4071 |
+
0x1129F000112A9,
|
| 4072 |
+
0x112B0000112EB,
|
| 4073 |
+
0x112F0000112FA,
|
| 4074 |
+
0x1130000011304,
|
| 4075 |
+
0x113050001130D,
|
| 4076 |
+
0x1130F00011311,
|
| 4077 |
+
0x1131300011329,
|
| 4078 |
+
0x1132A00011331,
|
| 4079 |
+
0x1133200011334,
|
| 4080 |
+
0x113350001133A,
|
| 4081 |
+
0x1133B00011345,
|
| 4082 |
+
0x1134700011349,
|
| 4083 |
+
0x1134B0001134E,
|
| 4084 |
+
0x1135000011351,
|
| 4085 |
+
0x1135700011358,
|
| 4086 |
+
0x1135D00011364,
|
| 4087 |
+
0x113660001136D,
|
| 4088 |
+
0x1137000011375,
|
| 4089 |
+
0x114000001144B,
|
| 4090 |
+
0x114500001145A,
|
| 4091 |
+
0x1145E00011462,
|
| 4092 |
+
0x11480000114C6,
|
| 4093 |
+
0x114C7000114C8,
|
| 4094 |
+
0x114D0000114DA,
|
| 4095 |
+
0x11580000115B6,
|
| 4096 |
+
0x115B8000115C1,
|
| 4097 |
+
0x115D8000115DE,
|
| 4098 |
+
0x1160000011641,
|
| 4099 |
+
0x1164400011645,
|
| 4100 |
+
0x116500001165A,
|
| 4101 |
+
0x11680000116B9,
|
| 4102 |
+
0x116C0000116CA,
|
| 4103 |
+
0x117000001171B,
|
| 4104 |
+
0x1171D0001172C,
|
| 4105 |
+
0x117300001173A,
|
| 4106 |
+
0x1174000011747,
|
| 4107 |
+
0x118000001183B,
|
| 4108 |
+
0x118C0000118EA,
|
| 4109 |
+
0x118FF00011907,
|
| 4110 |
+
0x119090001190A,
|
| 4111 |
+
0x1190C00011914,
|
| 4112 |
+
0x1191500011917,
|
| 4113 |
+
0x1191800011936,
|
| 4114 |
+
0x1193700011939,
|
| 4115 |
+
0x1193B00011944,
|
| 4116 |
+
0x119500001195A,
|
| 4117 |
+
0x119A0000119A8,
|
| 4118 |
+
0x119AA000119D8,
|
| 4119 |
+
0x119DA000119E2,
|
| 4120 |
+
0x119E3000119E5,
|
| 4121 |
+
0x11A0000011A3F,
|
| 4122 |
+
0x11A4700011A48,
|
| 4123 |
+
0x11A5000011A9A,
|
| 4124 |
+
0x11A9D00011A9E,
|
| 4125 |
+
0x11AB000011AF9,
|
| 4126 |
+
0x11C0000011C09,
|
| 4127 |
+
0x11C0A00011C37,
|
| 4128 |
+
0x11C3800011C41,
|
| 4129 |
+
0x11C5000011C5A,
|
| 4130 |
+
0x11C7200011C90,
|
| 4131 |
+
0x11C9200011CA8,
|
| 4132 |
+
0x11CA900011CB7,
|
| 4133 |
+
0x11D0000011D07,
|
| 4134 |
+
0x11D0800011D0A,
|
| 4135 |
+
0x11D0B00011D37,
|
| 4136 |
+
0x11D3A00011D3B,
|
| 4137 |
+
0x11D3C00011D3E,
|
| 4138 |
+
0x11D3F00011D48,
|
| 4139 |
+
0x11D5000011D5A,
|
| 4140 |
+
0x11D6000011D66,
|
| 4141 |
+
0x11D6700011D69,
|
| 4142 |
+
0x11D6A00011D8F,
|
| 4143 |
+
0x11D9000011D92,
|
| 4144 |
+
0x11D9300011D99,
|
| 4145 |
+
0x11DA000011DAA,
|
| 4146 |
+
0x11EE000011EF7,
|
| 4147 |
+
0x11F0000011F11,
|
| 4148 |
+
0x11F1200011F3B,
|
| 4149 |
+
0x11F3E00011F43,
|
| 4150 |
+
0x11F5000011F5A,
|
| 4151 |
+
0x11FB000011FB1,
|
| 4152 |
+
0x120000001239A,
|
| 4153 |
+
0x1248000012544,
|
| 4154 |
+
0x12F9000012FF1,
|
| 4155 |
+
0x1300000013430,
|
| 4156 |
+
0x1344000013456,
|
| 4157 |
+
0x1440000014647,
|
| 4158 |
+
0x1680000016A39,
|
| 4159 |
+
0x16A4000016A5F,
|
| 4160 |
+
0x16A6000016A6A,
|
| 4161 |
+
0x16A7000016ABF,
|
| 4162 |
+
0x16AC000016ACA,
|
| 4163 |
+
0x16AD000016AEE,
|
| 4164 |
+
0x16AF000016AF5,
|
| 4165 |
+
0x16B0000016B37,
|
| 4166 |
+
0x16B4000016B44,
|
| 4167 |
+
0x16B5000016B5A,
|
| 4168 |
+
0x16B6300016B78,
|
| 4169 |
+
0x16B7D00016B90,
|
| 4170 |
+
0x16E6000016E80,
|
| 4171 |
+
0x16F0000016F4B,
|
| 4172 |
+
0x16F4F00016F88,
|
| 4173 |
+
0x16F8F00016FA0,
|
| 4174 |
+
0x16FE000016FE2,
|
| 4175 |
+
0x16FE300016FE5,
|
| 4176 |
+
0x16FF000016FF2,
|
| 4177 |
+
0x17000000187F8,
|
| 4178 |
+
0x1880000018CD6,
|
| 4179 |
+
0x18D0000018D09,
|
| 4180 |
+
0x1AFF00001AFF4,
|
| 4181 |
+
0x1AFF50001AFFC,
|
| 4182 |
+
0x1AFFD0001AFFF,
|
| 4183 |
+
0x1B0000001B123,
|
| 4184 |
+
0x1B1320001B133,
|
| 4185 |
+
0x1B1500001B153,
|
| 4186 |
+
0x1B1550001B156,
|
| 4187 |
+
0x1B1640001B168,
|
| 4188 |
+
0x1B1700001B2FC,
|
| 4189 |
+
0x1BC000001BC6B,
|
| 4190 |
+
0x1BC700001BC7D,
|
| 4191 |
+
0x1BC800001BC89,
|
| 4192 |
+
0x1BC900001BC9A,
|
| 4193 |
+
0x1BC9D0001BC9F,
|
| 4194 |
+
0x1CF000001CF2E,
|
| 4195 |
+
0x1CF300001CF47,
|
| 4196 |
+
0x1DA000001DA37,
|
| 4197 |
+
0x1DA3B0001DA6D,
|
| 4198 |
+
0x1DA750001DA76,
|
| 4199 |
+
0x1DA840001DA85,
|
| 4200 |
+
0x1DA9B0001DAA0,
|
| 4201 |
+
0x1DAA10001DAB0,
|
| 4202 |
+
0x1DF000001DF1F,
|
| 4203 |
+
0x1DF250001DF2B,
|
| 4204 |
+
0x1E0000001E007,
|
| 4205 |
+
0x1E0080001E019,
|
| 4206 |
+
0x1E01B0001E022,
|
| 4207 |
+
0x1E0230001E025,
|
| 4208 |
+
0x1E0260001E02B,
|
| 4209 |
+
0x1E08F0001E090,
|
| 4210 |
+
0x1E1000001E12D,
|
| 4211 |
+
0x1E1300001E13E,
|
| 4212 |
+
0x1E1400001E14A,
|
| 4213 |
+
0x1E14E0001E14F,
|
| 4214 |
+
0x1E2900001E2AF,
|
| 4215 |
+
0x1E2C00001E2FA,
|
| 4216 |
+
0x1E4D00001E4FA,
|
| 4217 |
+
0x1E7E00001E7E7,
|
| 4218 |
+
0x1E7E80001E7EC,
|
| 4219 |
+
0x1E7ED0001E7EF,
|
| 4220 |
+
0x1E7F00001E7FF,
|
| 4221 |
+
0x1E8000001E8C5,
|
| 4222 |
+
0x1E8D00001E8D7,
|
| 4223 |
+
0x1E9220001E94C,
|
| 4224 |
+
0x1E9500001E95A,
|
| 4225 |
+
0x200000002A6E0,
|
| 4226 |
+
0x2A7000002B73A,
|
| 4227 |
+
0x2B7400002B81E,
|
| 4228 |
+
0x2B8200002CEA2,
|
| 4229 |
+
0x2CEB00002EBE1,
|
| 4230 |
+
0x2EBF00002EE5E,
|
| 4231 |
+
0x300000003134B,
|
| 4232 |
+
0x31350000323B0,
|
| 4233 |
+
),
|
| 4234 |
+
"CONTEXTJ": (0x200C0000200E,),
|
| 4235 |
+
"CONTEXTO": (
|
| 4236 |
+
0xB7000000B8,
|
| 4237 |
+
0x37500000376,
|
| 4238 |
+
0x5F3000005F5,
|
| 4239 |
+
0x6600000066A,
|
| 4240 |
+
0x6F0000006FA,
|
| 4241 |
+
0x30FB000030FC,
|
| 4242 |
+
),
|
| 4243 |
+
}
|
parrot/lib/python3.10/site-packages/idna/intranges.py
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Given a list of integers, made up of (hopefully) a small number of long runs
|
| 3 |
+
of consecutive integers, compute a representation of the form
|
| 4 |
+
((start1, end1), (start2, end2) ...). Then answer the question "was x present
|
| 5 |
+
in the original list?" in time O(log(# runs)).
|
| 6 |
+
"""
|
| 7 |
+
|
| 8 |
+
import bisect
|
| 9 |
+
from typing import List, Tuple
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
def intranges_from_list(list_: List[int]) -> Tuple[int, ...]:
|
| 13 |
+
"""Represent a list of integers as a sequence of ranges:
|
| 14 |
+
((start_0, end_0), (start_1, end_1), ...), such that the original
|
| 15 |
+
integers are exactly those x such that start_i <= x < end_i for some i.
|
| 16 |
+
|
| 17 |
+
Ranges are encoded as single integers (start << 32 | end), not as tuples.
|
| 18 |
+
"""
|
| 19 |
+
|
| 20 |
+
sorted_list = sorted(list_)
|
| 21 |
+
ranges = []
|
| 22 |
+
last_write = -1
|
| 23 |
+
for i in range(len(sorted_list)):
|
| 24 |
+
if i + 1 < len(sorted_list):
|
| 25 |
+
if sorted_list[i] == sorted_list[i + 1] - 1:
|
| 26 |
+
continue
|
| 27 |
+
current_range = sorted_list[last_write + 1 : i + 1]
|
| 28 |
+
ranges.append(_encode_range(current_range[0], current_range[-1] + 1))
|
| 29 |
+
last_write = i
|
| 30 |
+
|
| 31 |
+
return tuple(ranges)
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
def _encode_range(start: int, end: int) -> int:
|
| 35 |
+
return (start << 32) | end
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
def _decode_range(r: int) -> Tuple[int, int]:
|
| 39 |
+
return (r >> 32), (r & ((1 << 32) - 1))
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
def intranges_contain(int_: int, ranges: Tuple[int, ...]) -> bool:
|
| 43 |
+
"""Determine if `int_` falls into one of the ranges in `ranges`."""
|
| 44 |
+
tuple_ = _encode_range(int_, 0)
|
| 45 |
+
pos = bisect.bisect_left(ranges, tuple_)
|
| 46 |
+
# we could be immediately ahead of a tuple (start, end)
|
| 47 |
+
# with start < int_ <= end
|
| 48 |
+
if pos > 0:
|
| 49 |
+
left, right = _decode_range(ranges[pos - 1])
|
| 50 |
+
if left <= int_ < right:
|
| 51 |
+
return True
|
| 52 |
+
# or we could be immediately behind a tuple (int_, end)
|
| 53 |
+
if pos < len(ranges):
|
| 54 |
+
left, _ = _decode_range(ranges[pos])
|
| 55 |
+
if left == int_:
|
| 56 |
+
return True
|
| 57 |
+
return False
|
parrot/lib/python3.10/site-packages/idna/package_data.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
__version__ = "3.10"
|
parrot/lib/python3.10/site-packages/idna/py.typed
ADDED
|
File without changes
|
parrot/lib/python3.10/site-packages/idna/uts46data.py
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
parrot/lib/python3.10/site-packages/matplotlib-3.9.2.dist-info/INSTALLER
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
pip
|
parrot/lib/python3.10/site-packages/matplotlib-3.9.2.dist-info/METADATA
ADDED
|
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Metadata-Version: 2.1
|
| 2 |
+
Name: matplotlib
|
| 3 |
+
Version: 3.9.2
|
| 4 |
+
Summary: Python plotting package
|
| 5 |
+
Author: John D. Hunter, Michael Droettboom
|
| 6 |
+
Author-Email: Unknown <matplotlib-users@python.org>
|
| 7 |
+
License: License agreement for matplotlib versions 1.3.0 and later
|
| 8 |
+
=========================================================
|
| 9 |
+
|
| 10 |
+
1. This LICENSE AGREEMENT is between the Matplotlib Development Team
|
| 11 |
+
("MDT"), and the Individual or Organization ("Licensee") accessing and
|
| 12 |
+
otherwise using matplotlib software in source or binary form and its
|
| 13 |
+
associated documentation.
|
| 14 |
+
|
| 15 |
+
2. Subject to the terms and conditions of this License Agreement, MDT
|
| 16 |
+
hereby grants Licensee a nonexclusive, royalty-free, world-wide license
|
| 17 |
+
to reproduce, analyze, test, perform and/or display publicly, prepare
|
| 18 |
+
derivative works, distribute, and otherwise use matplotlib
|
| 19 |
+
alone or in any derivative version, provided, however, that MDT's
|
| 20 |
+
License Agreement and MDT's notice of copyright, i.e., "Copyright (c)
|
| 21 |
+
2012- Matplotlib Development Team; All Rights Reserved" are retained in
|
| 22 |
+
matplotlib alone or in any derivative version prepared by
|
| 23 |
+
Licensee.
|
| 24 |
+
|
| 25 |
+
3. In the event Licensee prepares a derivative work that is based on or
|
| 26 |
+
incorporates matplotlib or any part thereof, and wants to
|
| 27 |
+
make the derivative work available to others as provided herein, then
|
| 28 |
+
Licensee hereby agrees to include in any such work a brief summary of
|
| 29 |
+
the changes made to matplotlib .
|
| 30 |
+
|
| 31 |
+
4. MDT is making matplotlib available to Licensee on an "AS
|
| 32 |
+
IS" basis. MDT MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
| 33 |
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, MDT MAKES NO AND
|
| 34 |
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
| 35 |
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB
|
| 36 |
+
WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
|
| 37 |
+
|
| 38 |
+
5. MDT SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF MATPLOTLIB
|
| 39 |
+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
|
| 40 |
+
LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
|
| 41 |
+
MATPLOTLIB , OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF
|
| 42 |
+
THE POSSIBILITY THEREOF.
|
| 43 |
+
|
| 44 |
+
6. This License Agreement will automatically terminate upon a material
|
| 45 |
+
breach of its terms and conditions.
|
| 46 |
+
|
| 47 |
+
7. Nothing in this License Agreement shall be deemed to create any
|
| 48 |
+
relationship of agency, partnership, or joint venture between MDT and
|
| 49 |
+
Licensee. This License Agreement does not grant permission to use MDT
|
| 50 |
+
trademarks or trade name in a trademark sense to endorse or promote
|
| 51 |
+
products or services of Licensee, or any third party.
|
| 52 |
+
|
| 53 |
+
8. By copying, installing or otherwise using matplotlib ,
|
| 54 |
+
Licensee agrees to be bound by the terms and conditions of this License
|
| 55 |
+
Agreement.
|
| 56 |
+
|
| 57 |
+
License agreement for matplotlib versions prior to 1.3.0
|
| 58 |
+
========================================================
|
| 59 |
+
|
| 60 |
+
1. This LICENSE AGREEMENT is between John D. Hunter ("JDH"), and the
|
| 61 |
+
Individual or Organization ("Licensee") accessing and otherwise using
|
| 62 |
+
matplotlib software in source or binary form and its associated
|
| 63 |
+
documentation.
|
| 64 |
+
|
| 65 |
+
2. Subject to the terms and conditions of this License Agreement, JDH
|
| 66 |
+
hereby grants Licensee a nonexclusive, royalty-free, world-wide license
|
| 67 |
+
to reproduce, analyze, test, perform and/or display publicly, prepare
|
| 68 |
+
derivative works, distribute, and otherwise use matplotlib
|
| 69 |
+
alone or in any derivative version, provided, however, that JDH's
|
| 70 |
+
License Agreement and JDH's notice of copyright, i.e., "Copyright (c)
|
| 71 |
+
2002-2011 John D. Hunter; All Rights Reserved" are retained in
|
| 72 |
+
matplotlib alone or in any derivative version prepared by
|
| 73 |
+
Licensee.
|
| 74 |
+
|
| 75 |
+
3. In the event Licensee prepares a derivative work that is based on or
|
| 76 |
+
incorporates matplotlib or any part thereof, and wants to
|
| 77 |
+
make the derivative work available to others as provided herein, then
|
| 78 |
+
Licensee hereby agrees to include in any such work a brief summary of
|
| 79 |
+
the changes made to matplotlib.
|
| 80 |
+
|
| 81 |
+
4. JDH is making matplotlib available to Licensee on an "AS
|
| 82 |
+
IS" basis. JDH MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
| 83 |
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, JDH MAKES NO AND
|
| 84 |
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
| 85 |
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB
|
| 86 |
+
WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
|
| 87 |
+
|
| 88 |
+
5. JDH SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF MATPLOTLIB
|
| 89 |
+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
|
| 90 |
+
LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
|
| 91 |
+
MATPLOTLIB , OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF
|
| 92 |
+
THE POSSIBILITY THEREOF.
|
| 93 |
+
|
| 94 |
+
6. This License Agreement will automatically terminate upon a material
|
| 95 |
+
breach of its terms and conditions.
|
| 96 |
+
|
| 97 |
+
7. Nothing in this License Agreement shall be deemed to create any
|
| 98 |
+
relationship of agency, partnership, or joint venture between JDH and
|
| 99 |
+
Licensee. This License Agreement does not grant permission to use JDH
|
| 100 |
+
trademarks or trade name in a trademark sense to endorse or promote
|
| 101 |
+
products or services of Licensee, or any third party.
|
| 102 |
+
|
| 103 |
+
8. By copying, installing or otherwise using matplotlib,
|
| 104 |
+
Licensee agrees to be bound by the terms and conditions of this License
|
| 105 |
+
Agreement.
|
| 106 |
+
Classifier: Development Status :: 5 - Production/Stable
|
| 107 |
+
Classifier: Framework :: Matplotlib
|
| 108 |
+
Classifier: Intended Audience :: Science/Research
|
| 109 |
+
Classifier: Intended Audience :: Education
|
| 110 |
+
Classifier: License :: OSI Approved :: Python Software Foundation License
|
| 111 |
+
Classifier: Programming Language :: Python
|
| 112 |
+
Classifier: Programming Language :: Python :: 3
|
| 113 |
+
Classifier: Programming Language :: Python :: 3.9
|
| 114 |
+
Classifier: Programming Language :: Python :: 3.10
|
| 115 |
+
Classifier: Programming Language :: Python :: 3.11
|
| 116 |
+
Classifier: Programming Language :: Python :: 3.12
|
| 117 |
+
Classifier: Topic :: Scientific/Engineering :: Visualization
|
| 118 |
+
Project-URL: Homepage, https://matplotlib.org
|
| 119 |
+
Project-URL: Download, https://matplotlib.org/stable/install/index.html
|
| 120 |
+
Project-URL: Documentation, https://matplotlib.org
|
| 121 |
+
Project-URL: Source code, https://github.com/matplotlib/matplotlib
|
| 122 |
+
Project-URL: Bug tracker, https://github.com/matplotlib/matplotlib/issues
|
| 123 |
+
Project-URL: Forum, https://discourse.matplotlib.org/
|
| 124 |
+
Project-URL: Donate, https://numfocus.org/donate-to-matplotlib
|
| 125 |
+
Requires-Python: >=3.9
|
| 126 |
+
Requires-Dist: contourpy>=1.0.1
|
| 127 |
+
Requires-Dist: cycler>=0.10
|
| 128 |
+
Requires-Dist: fonttools>=4.22.0
|
| 129 |
+
Requires-Dist: kiwisolver>=1.3.1
|
| 130 |
+
Requires-Dist: numpy>=1.23
|
| 131 |
+
Requires-Dist: packaging>=20.0
|
| 132 |
+
Requires-Dist: pillow>=8
|
| 133 |
+
Requires-Dist: pyparsing>=2.3.1
|
| 134 |
+
Requires-Dist: python-dateutil>=2.7
|
| 135 |
+
Requires-Dist: importlib-resources>=3.2.0; python_version < "3.10"
|
| 136 |
+
Requires-Dist: meson-python>=0.13.1; extra == "dev"
|
| 137 |
+
Requires-Dist: numpy>=1.25; extra == "dev"
|
| 138 |
+
Requires-Dist: pybind11>=2.6; extra == "dev"
|
| 139 |
+
Requires-Dist: setuptools_scm>=7; extra == "dev"
|
| 140 |
+
Requires-Dist: setuptools>=64; extra == "dev"
|
| 141 |
+
Provides-Extra: dev
|
| 142 |
+
Description-Content-Type: text/markdown
|
| 143 |
+
|
| 144 |
+
[](https://pypi.org/project/matplotlib/)
|
| 145 |
+
[](https://anaconda.org/conda-forge/matplotlib)
|
| 146 |
+
[](https://pypi.org/project/matplotlib)
|
| 147 |
+
[](https://numfocus.org)
|
| 148 |
+
|
| 149 |
+
[](https://discourse.matplotlib.org)
|
| 150 |
+
[](https://gitter.im/matplotlib/matplotlib)
|
| 151 |
+
[](https://github.com/matplotlib/matplotlib/issues)
|
| 152 |
+
[](https://matplotlib.org/stable/devel/index.html)
|
| 153 |
+
|
| 154 |
+
[](https://github.com/matplotlib/matplotlib/actions?query=workflow%3ATests)
|
| 155 |
+
[](https://dev.azure.com/matplotlib/matplotlib/_build/latest?definitionId=1&branchName=main)
|
| 156 |
+
[](https://ci.appveyor.com/project/matplotlib/matplotlib)
|
| 157 |
+
[](https://app.codecov.io/gh/matplotlib/matplotlib)
|
| 158 |
+
[](https://jacobtomlinson.dev/effver)
|
| 159 |
+
|
| 160 |
+

|
| 161 |
+
|
| 162 |
+
Matplotlib is a comprehensive library for creating static, animated, and
|
| 163 |
+
interactive visualizations in Python.
|
| 164 |
+
|
| 165 |
+
Check out our [home page](https://matplotlib.org/) for more information.
|
| 166 |
+
|
| 167 |
+

|
| 168 |
+
|
| 169 |
+
Matplotlib produces publication-quality figures in a variety of hardcopy
|
| 170 |
+
formats and interactive environments across platforms. Matplotlib can be
|
| 171 |
+
used in Python scripts, Python/IPython shells, web application servers,
|
| 172 |
+
and various graphical user interface toolkits.
|
| 173 |
+
|
| 174 |
+
## Install
|
| 175 |
+
|
| 176 |
+
See the [install
|
| 177 |
+
documentation](https://matplotlib.org/stable/users/installing/index.html),
|
| 178 |
+
which is generated from `/doc/install/index.rst`
|
| 179 |
+
|
| 180 |
+
## Contribute
|
| 181 |
+
|
| 182 |
+
You've discovered a bug or something else you want to change — excellent!
|
| 183 |
+
|
| 184 |
+
You've worked out a way to fix it — even better!
|
| 185 |
+
|
| 186 |
+
You want to tell us about it — best of all!
|
| 187 |
+
|
| 188 |
+
Start at the [contributing
|
| 189 |
+
guide](https://matplotlib.org/devdocs/devel/contribute.html)!
|
| 190 |
+
|
| 191 |
+
## Contact
|
| 192 |
+
|
| 193 |
+
[Discourse](https://discourse.matplotlib.org/) is the discussion forum
|
| 194 |
+
for general questions and discussions and our recommended starting
|
| 195 |
+
point.
|
| 196 |
+
|
| 197 |
+
Our active mailing lists (which are mirrored on Discourse) are:
|
| 198 |
+
|
| 199 |
+
- [Users](https://mail.python.org/mailman/listinfo/matplotlib-users)
|
| 200 |
+
mailing list: <matplotlib-users@python.org>
|
| 201 |
+
- [Announcement](https://mail.python.org/mailman/listinfo/matplotlib-announce)
|
| 202 |
+
mailing list: <matplotlib-announce@python.org>
|
| 203 |
+
- [Development](https://mail.python.org/mailman/listinfo/matplotlib-devel)
|
| 204 |
+
mailing list: <matplotlib-devel@python.org>
|
| 205 |
+
|
| 206 |
+
[Gitter](https://gitter.im/matplotlib/matplotlib) is for coordinating
|
| 207 |
+
development and asking questions directly related to contributing to
|
| 208 |
+
matplotlib.
|
| 209 |
+
|
| 210 |
+
## Citing Matplotlib
|
| 211 |
+
|
| 212 |
+
If Matplotlib contributes to a project that leads to publication, please
|
| 213 |
+
acknowledge this by citing Matplotlib.
|
| 214 |
+
|
| 215 |
+
[A ready-made citation
|
| 216 |
+
entry](https://matplotlib.org/stable/users/project/citing.html) is
|
| 217 |
+
available.
|
parrot/lib/python3.10/site-packages/matplotlib-3.9.2.dist-info/RECORD
ADDED
|
@@ -0,0 +1,873 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
__pycache__/pylab.cpython-310.pyc,,
|
| 2 |
+
matplotlib-3.9.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
| 3 |
+
matplotlib-3.9.2.dist-info/LICENSE,sha256=WhqB6jAXKMi7opM9qDLAzWIina8giToCSrPVMkRGjbw,4830
|
| 4 |
+
matplotlib-3.9.2.dist-info/METADATA,sha256=JJ7rRRw_6LFIe_SkTnbsKzVsaG5rRhB-Igpxdh_tWl8,11257
|
| 5 |
+
matplotlib-3.9.2.dist-info/RECORD,,
|
| 6 |
+
matplotlib-3.9.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 7 |
+
matplotlib-3.9.2.dist-info/WHEEL,sha256=sZM_NeUMz2G4fDenMf11eikcCxcLaQWiYRmjwQBavQs,137
|
| 8 |
+
matplotlib/__init__.py,sha256=XXuQsQUhzWr2G0oF8iiQ9Cm4iArjXyjwK_FXYbq_yXw,53700
|
| 9 |
+
matplotlib/__init__.pyi,sha256=NPwMLxwar4wyMqXAMU_p_Wo3ea4xHJ1LrtZ_trNFFo8,2992
|
| 10 |
+
matplotlib/__pycache__/__init__.cpython-310.pyc,,
|
| 11 |
+
matplotlib/__pycache__/_afm.cpython-310.pyc,,
|
| 12 |
+
matplotlib/__pycache__/_animation_data.cpython-310.pyc,,
|
| 13 |
+
matplotlib/__pycache__/_blocking_input.cpython-310.pyc,,
|
| 14 |
+
matplotlib/__pycache__/_cm.cpython-310.pyc,,
|
| 15 |
+
matplotlib/__pycache__/_cm_listed.cpython-310.pyc,,
|
| 16 |
+
matplotlib/__pycache__/_color_data.cpython-310.pyc,,
|
| 17 |
+
matplotlib/__pycache__/_constrained_layout.cpython-310.pyc,,
|
| 18 |
+
matplotlib/__pycache__/_docstring.cpython-310.pyc,,
|
| 19 |
+
matplotlib/__pycache__/_enums.cpython-310.pyc,,
|
| 20 |
+
matplotlib/__pycache__/_fontconfig_pattern.cpython-310.pyc,,
|
| 21 |
+
matplotlib/__pycache__/_internal_utils.cpython-310.pyc,,
|
| 22 |
+
matplotlib/__pycache__/_layoutgrid.cpython-310.pyc,,
|
| 23 |
+
matplotlib/__pycache__/_mathtext.cpython-310.pyc,,
|
| 24 |
+
matplotlib/__pycache__/_mathtext_data.cpython-310.pyc,,
|
| 25 |
+
matplotlib/__pycache__/_pylab_helpers.cpython-310.pyc,,
|
| 26 |
+
matplotlib/__pycache__/_text_helpers.cpython-310.pyc,,
|
| 27 |
+
matplotlib/__pycache__/_tight_bbox.cpython-310.pyc,,
|
| 28 |
+
matplotlib/__pycache__/_tight_layout.cpython-310.pyc,,
|
| 29 |
+
matplotlib/__pycache__/_type1font.cpython-310.pyc,,
|
| 30 |
+
matplotlib/__pycache__/_version.cpython-310.pyc,,
|
| 31 |
+
matplotlib/__pycache__/animation.cpython-310.pyc,,
|
| 32 |
+
matplotlib/__pycache__/artist.cpython-310.pyc,,
|
| 33 |
+
matplotlib/__pycache__/axis.cpython-310.pyc,,
|
| 34 |
+
matplotlib/__pycache__/backend_bases.cpython-310.pyc,,
|
| 35 |
+
matplotlib/__pycache__/backend_managers.cpython-310.pyc,,
|
| 36 |
+
matplotlib/__pycache__/backend_tools.cpython-310.pyc,,
|
| 37 |
+
matplotlib/__pycache__/bezier.cpython-310.pyc,,
|
| 38 |
+
matplotlib/__pycache__/category.cpython-310.pyc,,
|
| 39 |
+
matplotlib/__pycache__/cbook.cpython-310.pyc,,
|
| 40 |
+
matplotlib/__pycache__/cm.cpython-310.pyc,,
|
| 41 |
+
matplotlib/__pycache__/collections.cpython-310.pyc,,
|
| 42 |
+
matplotlib/__pycache__/colorbar.cpython-310.pyc,,
|
| 43 |
+
matplotlib/__pycache__/colors.cpython-310.pyc,,
|
| 44 |
+
matplotlib/__pycache__/container.cpython-310.pyc,,
|
| 45 |
+
matplotlib/__pycache__/contour.cpython-310.pyc,,
|
| 46 |
+
matplotlib/__pycache__/dates.cpython-310.pyc,,
|
| 47 |
+
matplotlib/__pycache__/dviread.cpython-310.pyc,,
|
| 48 |
+
matplotlib/__pycache__/figure.cpython-310.pyc,,
|
| 49 |
+
matplotlib/__pycache__/font_manager.cpython-310.pyc,,
|
| 50 |
+
matplotlib/__pycache__/gridspec.cpython-310.pyc,,
|
| 51 |
+
matplotlib/__pycache__/hatch.cpython-310.pyc,,
|
| 52 |
+
matplotlib/__pycache__/image.cpython-310.pyc,,
|
| 53 |
+
matplotlib/__pycache__/layout_engine.cpython-310.pyc,,
|
| 54 |
+
matplotlib/__pycache__/legend.cpython-310.pyc,,
|
| 55 |
+
matplotlib/__pycache__/legend_handler.cpython-310.pyc,,
|
| 56 |
+
matplotlib/__pycache__/lines.cpython-310.pyc,,
|
| 57 |
+
matplotlib/__pycache__/markers.cpython-310.pyc,,
|
| 58 |
+
matplotlib/__pycache__/mathtext.cpython-310.pyc,,
|
| 59 |
+
matplotlib/__pycache__/mlab.cpython-310.pyc,,
|
| 60 |
+
matplotlib/__pycache__/offsetbox.cpython-310.pyc,,
|
| 61 |
+
matplotlib/__pycache__/patches.cpython-310.pyc,,
|
| 62 |
+
matplotlib/__pycache__/path.cpython-310.pyc,,
|
| 63 |
+
matplotlib/__pycache__/patheffects.cpython-310.pyc,,
|
| 64 |
+
matplotlib/__pycache__/pylab.cpython-310.pyc,,
|
| 65 |
+
matplotlib/__pycache__/pyplot.cpython-310.pyc,,
|
| 66 |
+
matplotlib/__pycache__/quiver.cpython-310.pyc,,
|
| 67 |
+
matplotlib/__pycache__/rcsetup.cpython-310.pyc,,
|
| 68 |
+
matplotlib/__pycache__/sankey.cpython-310.pyc,,
|
| 69 |
+
matplotlib/__pycache__/scale.cpython-310.pyc,,
|
| 70 |
+
matplotlib/__pycache__/spines.cpython-310.pyc,,
|
| 71 |
+
matplotlib/__pycache__/stackplot.cpython-310.pyc,,
|
| 72 |
+
matplotlib/__pycache__/streamplot.cpython-310.pyc,,
|
| 73 |
+
matplotlib/__pycache__/table.cpython-310.pyc,,
|
| 74 |
+
matplotlib/__pycache__/texmanager.cpython-310.pyc,,
|
| 75 |
+
matplotlib/__pycache__/text.cpython-310.pyc,,
|
| 76 |
+
matplotlib/__pycache__/textpath.cpython-310.pyc,,
|
| 77 |
+
matplotlib/__pycache__/ticker.cpython-310.pyc,,
|
| 78 |
+
matplotlib/__pycache__/transforms.cpython-310.pyc,,
|
| 79 |
+
matplotlib/__pycache__/typing.cpython-310.pyc,,
|
| 80 |
+
matplotlib/__pycache__/units.cpython-310.pyc,,
|
| 81 |
+
matplotlib/__pycache__/widgets.cpython-310.pyc,,
|
| 82 |
+
matplotlib/_afm.py,sha256=cWe1Ib37T6ZyHbR6_hPuzAjotMmi32y-kDB-i28iyqE,16692
|
| 83 |
+
matplotlib/_animation_data.py,sha256=JJJbbc-fMdPjkbQ7ng9BHL5i91VTDHQVTtEdWOvWBAI,7986
|
| 84 |
+
matplotlib/_api/__init__.py,sha256=FKsAM4RckCyJZiL-yXI1NRsvQxvbxxzSgvv8xpaX0I0,13304
|
| 85 |
+
matplotlib/_api/__init__.pyi,sha256=9xxTTkE9MIP4xFNwmRvM9j0QflFrqcFbowCAedGhdqo,2254
|
| 86 |
+
matplotlib/_api/__pycache__/__init__.cpython-310.pyc,,
|
| 87 |
+
matplotlib/_api/__pycache__/deprecation.cpython-310.pyc,,
|
| 88 |
+
matplotlib/_api/deprecation.py,sha256=F3IonykeAhU1z8N2ViqBEtPWWa1YDCYccmdl0CkgIEw,20027
|
| 89 |
+
matplotlib/_api/deprecation.pyi,sha256=a9djyVvnX2-t-IGrk3z1mrnYHcj4qYxRD0n9KDHWXlE,2208
|
| 90 |
+
matplotlib/_blocking_input.py,sha256=VHNsxvX2mTx_xBknd30MSicVlRXS4dCDe9hDctbV5rk,1224
|
| 91 |
+
matplotlib/_c_internal_utils.cpython-310-x86_64-linux-gnu.so,sha256=Xi3onUu0TD2Y3wFCsgNQ0EOQYlKmR1skvYUAsXsvqMA,250808
|
| 92 |
+
matplotlib/_c_internal_utils.pyi,sha256=MS48K9zquZY0Tvqr3GavyjIpi9euDvOMH-XPn9ZJ_tY,340
|
| 93 |
+
matplotlib/_cm.py,sha256=uxuEdcEkReRPOYpRCcRrCfsbl1N1T5l8QtnId3xnGUU,67190
|
| 94 |
+
matplotlib/_cm_listed.py,sha256=hpgMx7bjxJx5nl1PbQvaCDUBHQf8njaRrM2iMaBeZOM,109462
|
| 95 |
+
matplotlib/_color_data.py,sha256=k-wdTi6ArJxksqBfMT-7Uy2qWz8XX4Th5gsjf32CwmM,34780
|
| 96 |
+
matplotlib/_color_data.pyi,sha256=RdBRk01yuf3jYVlCwG351tIBCxehizkZMnKs9c8gnOw,170
|
| 97 |
+
matplotlib/_constrained_layout.py,sha256=zBx9pT8lIlOXrFb-K-8HSk_jjqFy-wwZsFf6z8SECnw,31003
|
| 98 |
+
matplotlib/_docstring.py,sha256=nPXtBXXO8doLznC_hkaf2OOiVZBQm-1TE-uA_KdtOAQ,3936
|
| 99 |
+
matplotlib/_docstring.pyi,sha256=YjWQjaiffjCBVQpNbI1lsuiUUBBD5HSSEOV2xKD1_KA,741
|
| 100 |
+
matplotlib/_enums.py,sha256=cq5dtb_qy4g3cHgr1KdVA9qzYalgz7KCtTytyFp3PAs,6474
|
| 101 |
+
matplotlib/_enums.pyi,sha256=B5MhNYWDyhVZteR5lo9uRJ8RiduSGKrYw1NkBTT8Mx4,364
|
| 102 |
+
matplotlib/_fontconfig_pattern.py,sha256=2livocARMbpys8tmicH6wlifcwcNoIstgruSY6DSAfk,4361
|
| 103 |
+
matplotlib/_image.cpython-310-x86_64-linux-gnu.so,sha256=2moUh-fNBqXaBYse1pkCxdSvU5YDX8ft6QAEHvtNiLM,544216
|
| 104 |
+
matplotlib/_image.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 105 |
+
matplotlib/_internal_utils.py,sha256=nhK6LLWYW93fBcsFiO09JmqFj2rgHEsGYFOeaC7HRKw,2140
|
| 106 |
+
matplotlib/_layoutgrid.py,sha256=mFB9asZVol2aV9hLBpdntuG5x1isKUrajF-3TUhCgso,21676
|
| 107 |
+
matplotlib/_mathtext.py,sha256=vVdbDoXC1lYioFO45cftsASoT4Re74rdREkUW0YNDfY,107860
|
| 108 |
+
matplotlib/_mathtext_data.py,sha256=Odf6FpGVC-ARfVIRokBl1qG_tvnAzWmCtdFICk0N9hc,65133
|
| 109 |
+
matplotlib/_path.cpython-310-x86_64-linux-gnu.so,sha256=w75bqU7hUe_qgaxwLxq84hVm7K7Evi6JgHZ13FgCNsA,472824
|
| 110 |
+
matplotlib/_path.pyi,sha256=yznyfzoUogH9vvi0vK68ga4Shlbrn5UBhAnLX8Ght1o,325
|
| 111 |
+
matplotlib/_pylab_helpers.py,sha256=9EyocyQhnPvsSzIvbthznz6wlIa74i94WSnja1vKi0U,4306
|
| 112 |
+
matplotlib/_pylab_helpers.pyi,sha256=7OZKr-OL3ipVt1EDZ6e-tRwHASz-ijYfcIdlPczXhvQ,1012
|
| 113 |
+
matplotlib/_qhull.cpython-310-x86_64-linux-gnu.so,sha256=qDaAPzHfAPfygAhat4c_OXA8Djw-tTNWkOihGRIRRa0,745280
|
| 114 |
+
matplotlib/_qhull.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 115 |
+
matplotlib/_text_helpers.py,sha256=Eowfk0L2lBmYjMk2wCYJseoBCMR6odSM2f5xOTe6j7k,2543
|
| 116 |
+
matplotlib/_tight_bbox.py,sha256=ddJ5ViXulbPLocHr-RkWK27WJSuV2WXUx74jZyL0NOg,2787
|
| 117 |
+
matplotlib/_tight_layout.py,sha256=A3vZKBmxci7w35OO9lxgfUqrRKgTr-N_dUza0M05WxE,12675
|
| 118 |
+
matplotlib/_tri.cpython-310-x86_64-linux-gnu.so,sha256=AqfW5A7hD9vXnWw7M4gZN91TbpnYFRkd1j_bcfcUsjI,404808
|
| 119 |
+
matplotlib/_tri.pyi,sha256=yUtwM4BGi_KjvDY6CT8-Pafi8mfKLJtqLMmwK0xNJkQ,1026
|
| 120 |
+
matplotlib/_ttconv.cpython-310-x86_64-linux-gnu.so,sha256=g6DSS6v_9f6p1H1dvdrFfkl-bMixRrihW2BoYPoaLh0,293432
|
| 121 |
+
matplotlib/_ttconv.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 122 |
+
matplotlib/_type1font.py,sha256=c_PXvyOFQ4YCRQJ23snWNkdEhuZ4k0JbLe55zaeoXfQ,28409
|
| 123 |
+
matplotlib/_version.py,sha256=qsPMQmVomgO0IonCJlurm62u9bPokQlWh2f4xafbuv4,18
|
| 124 |
+
matplotlib/animation.py,sha256=IlppBPOncHudQ_9O_-C_A8BUhCzmxNZUkeBWGrxeLJw,70902
|
| 125 |
+
matplotlib/animation.pyi,sha256=C8Fgmswh4um-qYgqPZNBEpXVaefRXi6e026pYjonLHg,6566
|
| 126 |
+
matplotlib/artist.py,sha256=PkkMaP_yg33K8Yukf-p3mJcsF8CRPAtB8z2U3qfTnf4,63724
|
| 127 |
+
matplotlib/artist.pyi,sha256=cNZ0vUZYz6GjJ-CYe80M7koriHlCcvojmOn26qC6T6E,6870
|
| 128 |
+
matplotlib/axes/__init__.py,sha256=M5qLawRtk4NWxZ2Hf9ohCM7Lm4qvbMy77VFebKCvvsk,365
|
| 129 |
+
matplotlib/axes/__init__.pyi,sha256=HP1z2v-PboHQS4dQjvJ7XjUjX-zw6taZRTTB9oVKwYE,303
|
| 130 |
+
matplotlib/axes/__pycache__/__init__.cpython-310.pyc,,
|
| 131 |
+
matplotlib/axes/__pycache__/_axes.cpython-310.pyc,,
|
| 132 |
+
matplotlib/axes/__pycache__/_base.cpython-310.pyc,,
|
| 133 |
+
matplotlib/axes/__pycache__/_secondary_axes.cpython-310.pyc,,
|
| 134 |
+
matplotlib/axes/_axes.py,sha256=4DnKP8g4s7U0uBlQPEynl35WfRYWsxRO6AuwGhIeMZk,342358
|
| 135 |
+
matplotlib/axes/_axes.pyi,sha256=V87WHlXhbMI7JuLpAkbGBrAhMpdy--2wXKJMzcJRYSw,25588
|
| 136 |
+
matplotlib/axes/_base.py,sha256=u3tSfBgYotdGMdK8IxxEAwTYV0IHIKrAdjEbMQD-2tc,182124
|
| 137 |
+
matplotlib/axes/_base.pyi,sha256=BLC_FyXh8F0Eu_XIuPum4CY_sqcFbJL1vc8USCzMIek,17010
|
| 138 |
+
matplotlib/axes/_secondary_axes.py,sha256=hg5ghWAcLe-XDgb66jaRnNau46fYW4nmeGKtANZ2Ygw,11867
|
| 139 |
+
matplotlib/axes/_secondary_axes.pyi,sha256=GtU55YzLNN7XHMRQcAmcAxcdcN-FzHw1RAJpOiTcZFk,1414
|
| 140 |
+
matplotlib/axis.py,sha256=9K96t3nvKMmR5CV_m2mmfYJ5fnnPXUkKWFI6uON_BWA,103108
|
| 141 |
+
matplotlib/axis.pyi,sha256=v15ue_f2ZQNEFDrjsmRWc7tLoGOjHQEgBIU3vqcmqoU,10156
|
| 142 |
+
matplotlib/backend_bases.py,sha256=tV4kREN0gxX9DFj6jM-G6HWs3DZhtnbdxnqyNwGkGfU,131593
|
| 143 |
+
matplotlib/backend_bases.pyi,sha256=SsMxDsEGxWCtuFlIG11x1CCQy04tvnaszDeUn_jlhAY,16216
|
| 144 |
+
matplotlib/backend_managers.py,sha256=RQheCO_cQBlaWsYMbAmswu0UPKU7bmLTI5LEFgotklA,11795
|
| 145 |
+
matplotlib/backend_managers.pyi,sha256=agnuM0wiZRqSgqti2AgbKJijRLvEPNLOrSY8PEwLjFE,2253
|
| 146 |
+
matplotlib/backend_tools.py,sha256=wXWJ5xLh7pCpbiGrLkJOeLAxE9f9_c0kdVTripfZaNY,33351
|
| 147 |
+
matplotlib/backend_tools.pyi,sha256=Pt07U2m84j7PPH_iim0mwZtf9BUhOlQC3kqAV6oOuNM,4030
|
| 148 |
+
matplotlib/backends/__init__.py,sha256=JowJe-tDrUBMNJTiJATgiEuACpgdxsKnRCYa-nC255A,206
|
| 149 |
+
matplotlib/backends/__pycache__/__init__.cpython-310.pyc,,
|
| 150 |
+
matplotlib/backends/__pycache__/_backend_gtk.cpython-310.pyc,,
|
| 151 |
+
matplotlib/backends/__pycache__/_backend_pdf_ps.cpython-310.pyc,,
|
| 152 |
+
matplotlib/backends/__pycache__/_backend_tk.cpython-310.pyc,,
|
| 153 |
+
matplotlib/backends/__pycache__/backend_agg.cpython-310.pyc,,
|
| 154 |
+
matplotlib/backends/__pycache__/backend_cairo.cpython-310.pyc,,
|
| 155 |
+
matplotlib/backends/__pycache__/backend_gtk3.cpython-310.pyc,,
|
| 156 |
+
matplotlib/backends/__pycache__/backend_gtk3agg.cpython-310.pyc,,
|
| 157 |
+
matplotlib/backends/__pycache__/backend_gtk3cairo.cpython-310.pyc,,
|
| 158 |
+
matplotlib/backends/__pycache__/backend_gtk4.cpython-310.pyc,,
|
| 159 |
+
matplotlib/backends/__pycache__/backend_gtk4agg.cpython-310.pyc,,
|
| 160 |
+
matplotlib/backends/__pycache__/backend_gtk4cairo.cpython-310.pyc,,
|
| 161 |
+
matplotlib/backends/__pycache__/backend_macosx.cpython-310.pyc,,
|
| 162 |
+
matplotlib/backends/__pycache__/backend_mixed.cpython-310.pyc,,
|
| 163 |
+
matplotlib/backends/__pycache__/backend_nbagg.cpython-310.pyc,,
|
| 164 |
+
matplotlib/backends/__pycache__/backend_pdf.cpython-310.pyc,,
|
| 165 |
+
matplotlib/backends/__pycache__/backend_pgf.cpython-310.pyc,,
|
| 166 |
+
matplotlib/backends/__pycache__/backend_ps.cpython-310.pyc,,
|
| 167 |
+
matplotlib/backends/__pycache__/backend_qt.cpython-310.pyc,,
|
| 168 |
+
matplotlib/backends/__pycache__/backend_qt5.cpython-310.pyc,,
|
| 169 |
+
matplotlib/backends/__pycache__/backend_qt5agg.cpython-310.pyc,,
|
| 170 |
+
matplotlib/backends/__pycache__/backend_qt5cairo.cpython-310.pyc,,
|
| 171 |
+
matplotlib/backends/__pycache__/backend_qtagg.cpython-310.pyc,,
|
| 172 |
+
matplotlib/backends/__pycache__/backend_qtcairo.cpython-310.pyc,,
|
| 173 |
+
matplotlib/backends/__pycache__/backend_svg.cpython-310.pyc,,
|
| 174 |
+
matplotlib/backends/__pycache__/backend_template.cpython-310.pyc,,
|
| 175 |
+
matplotlib/backends/__pycache__/backend_tkagg.cpython-310.pyc,,
|
| 176 |
+
matplotlib/backends/__pycache__/backend_tkcairo.cpython-310.pyc,,
|
| 177 |
+
matplotlib/backends/__pycache__/backend_webagg.cpython-310.pyc,,
|
| 178 |
+
matplotlib/backends/__pycache__/backend_webagg_core.cpython-310.pyc,,
|
| 179 |
+
matplotlib/backends/__pycache__/backend_wx.cpython-310.pyc,,
|
| 180 |
+
matplotlib/backends/__pycache__/backend_wxagg.cpython-310.pyc,,
|
| 181 |
+
matplotlib/backends/__pycache__/backend_wxcairo.cpython-310.pyc,,
|
| 182 |
+
matplotlib/backends/__pycache__/qt_compat.cpython-310.pyc,,
|
| 183 |
+
matplotlib/backends/__pycache__/registry.cpython-310.pyc,,
|
| 184 |
+
matplotlib/backends/_backend_agg.cpython-310-x86_64-linux-gnu.so,sha256=2snn7nmE56rMmjuSgHVOvoPKyFWbZ8SUNyY22sP-API,418232
|
| 185 |
+
matplotlib/backends/_backend_agg.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 186 |
+
matplotlib/backends/_backend_gtk.py,sha256=A2fFTrR_A5JT8w83eq-7N9olVsof2YsWsE_z8AR3C1M,11338
|
| 187 |
+
matplotlib/backends/_backend_pdf_ps.py,sha256=E799e3XOJ5mp6YoecWp63xDS-DGqFLd4JfsGc0tMLRI,4444
|
| 188 |
+
matplotlib/backends/_backend_tk.py,sha256=zVr77hxmEutHx9obexgG_gROu2lMlZIkhNk387e6grE,42222
|
| 189 |
+
matplotlib/backends/_macosx.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 190 |
+
matplotlib/backends/_tkagg.cpython-310-x86_64-linux-gnu.so,sha256=OOHiYQw4RqC7cFjYyRti8lEslBY7auPK_-iQUwZIQ7o,279032
|
| 191 |
+
matplotlib/backends/_tkagg.pyi,sha256=1yKnYKSgNFesrb0ZI5RQCyTO4zONgHW5MrJ9vq4HzyI,379
|
| 192 |
+
matplotlib/backends/backend_agg.py,sha256=wkhS9W2QBjGdIYU27hDXJu-MXRh4dB0_itGMBjkGWfQ,20434
|
| 193 |
+
matplotlib/backends/backend_cairo.py,sha256=Ah5M85Ppa8zYGOtLOizW0gzltjs3b4nD56qFeQR795U,18618
|
| 194 |
+
matplotlib/backends/backend_gtk3.py,sha256=xhjmb15l_9dnlU5aLfEcbh6s16t5uopIZEEgJtOSANg,21644
|
| 195 |
+
matplotlib/backends/backend_gtk3agg.py,sha256=LzA-FwoCKrBIu4v-PJHuqx3HWK-4OM7wuujyyl8EWnI,2465
|
| 196 |
+
matplotlib/backends/backend_gtk3cairo.py,sha256=zPsJzVm750if2LiQ9ybzsbX0rBhkP05XVvR9Lhz65so,1392
|
| 197 |
+
matplotlib/backends/backend_gtk4.py,sha256=m-GqRG7YTsQhfIK2TOn5rii2LhnInW5M_Y-0kpNWWiY,21170
|
| 198 |
+
matplotlib/backends/backend_gtk4agg.py,sha256=00i3qpIt9Tcf_S74GOWbeckiPlfVJoQ2pBbhXDMthF0,1262
|
| 199 |
+
matplotlib/backends/backend_gtk4cairo.py,sha256=sqWm3WgfNO8EsBjqzsD4U4cAc0f4q5SufYx7ZJacDf0,1125
|
| 200 |
+
matplotlib/backends/backend_macosx.py,sha256=MYeU1HyVwdIotSYuNcu4c18_gOgX4AnCU061DIvw1X8,7373
|
| 201 |
+
matplotlib/backends/backend_mixed.py,sha256=PAYTjNuunpAa4-JkBguvyOjgDlB0eg9ARDAWidKfJpc,4698
|
| 202 |
+
matplotlib/backends/backend_nbagg.py,sha256=Au9RHfRufpI0ngT4R0K0CUVtAMFi9Bg-YhDunlj_Lko,8000
|
| 203 |
+
matplotlib/backends/backend_pdf.py,sha256=5Qxe_nG5JW3G9bZXaeab6CtOMeb8WNUmQjekWARk4iY,105846
|
| 204 |
+
matplotlib/backends/backend_pgf.py,sha256=_MZKA2sWAvoCIkz9YEuAxMPS5EaIkx41-mVpqQ-S54c,39660
|
| 205 |
+
matplotlib/backends/backend_ps.py,sha256=o43IOl5SEx_oBbO8EBX-ihlD-aYfsK9hIvSho5GWxTE,47465
|
| 206 |
+
matplotlib/backends/backend_qt.py,sha256=nmADexMAKdgma76H0v4smeQg9065JdY8VZs4mNG_yys,41321
|
| 207 |
+
matplotlib/backends/backend_qt5.py,sha256=kzfoo2ksEGsiWAa2LGtZYzKvfzqJJWyGOohohcRAu1g,787
|
| 208 |
+
matplotlib/backends/backend_qt5agg.py,sha256=Vh7H8kqWH4X8a3VX2XZ2Vze9srwJavkNHAZxdJUz_bk,352
|
| 209 |
+
matplotlib/backends/backend_qt5cairo.py,sha256=Go2Y0GVkXh1xh6x4F255_e5Xbwwws-OiD1Fc0805E78,292
|
| 210 |
+
matplotlib/backends/backend_qtagg.py,sha256=ZjPtp5wR6tZGjbngPXRdVXYRhiPPrc5C0q2DmtdRkpY,3413
|
| 211 |
+
matplotlib/backends/backend_qtcairo.py,sha256=e3SUG50VGqo68eS_8ebTCVQPa4AaxLxuo1JiWX4TIWg,1770
|
| 212 |
+
matplotlib/backends/backend_svg.py,sha256=2EH6dGrDBJvHmW0MC51-2q8Sbtj8iAs1SlpVpjHH-WU,50078
|
| 213 |
+
matplotlib/backends/backend_template.py,sha256=Z352VD5tp_xsNcR-DQcqt-LOB8lXoNzkCzFaMZaS0Dg,8010
|
| 214 |
+
matplotlib/backends/backend_tkagg.py,sha256=z9gB16fq2d-DUNpbeSDDLWaYmc0Jz3cDqNlBKhnQg0c,592
|
| 215 |
+
matplotlib/backends/backend_tkcairo.py,sha256=JaGGXh8Y5FwVZtgryIucN941Olf_Pn6f4Re7Vuxl1-c,845
|
| 216 |
+
matplotlib/backends/backend_webagg.py,sha256=YzNscpsID8yu0XYO3NXiZLMPZnDKMAKdG_TO2Ya3g4k,11022
|
| 217 |
+
matplotlib/backends/backend_webagg_core.py,sha256=7lcoinjD0fswQ1-acN5QOB1HJ6YoUgIZGrsmgZP5cl8,18303
|
| 218 |
+
matplotlib/backends/backend_wx.py,sha256=Ph53LEd5HcT_YtPV_udrG3k7xnOn0LA5t1VxdbpGIVQ,50585
|
| 219 |
+
matplotlib/backends/backend_wxagg.py,sha256=tzcwYyW34j4LPfHm9uhuHwepwZIcspi3y8oPC8FJkdk,1468
|
| 220 |
+
matplotlib/backends/backend_wxcairo.py,sha256=TK-m3S0c1WipfKE2IpIPNeE4hoXPjfMvnWAzHpCXpFs,848
|
| 221 |
+
matplotlib/backends/qt_compat.py,sha256=Ox7GVBb1BYvRLiyMt9w0qrisSA_Rqwq1BbEblSSYq2M,5340
|
| 222 |
+
matplotlib/backends/qt_editor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 223 |
+
matplotlib/backends/qt_editor/__pycache__/__init__.cpython-310.pyc,,
|
| 224 |
+
matplotlib/backends/qt_editor/__pycache__/_formlayout.cpython-310.pyc,,
|
| 225 |
+
matplotlib/backends/qt_editor/__pycache__/figureoptions.cpython-310.pyc,,
|
| 226 |
+
matplotlib/backends/qt_editor/_formlayout.py,sha256=QmqqqLO6waqeSGOKjDNUwjvon53Z7yqil5AfqfftDWY,20953
|
| 227 |
+
matplotlib/backends/qt_editor/figureoptions.py,sha256=yiwFCGOHXx8GqbZ1VI_P5488IWE_Rl3Rhpv-Gs_IB2Q,9837
|
| 228 |
+
matplotlib/backends/registry.py,sha256=l6CsAe3Y25HZpkNjFOjduEuVlB_Y2VWX5oCBd_xqVTg,15708
|
| 229 |
+
matplotlib/backends/web_backend/all_figures.html,sha256=44Y-GvIJbNlqQaKSW3kwVKpTxBSG1WsdYz3ZmYHlUsA,1753
|
| 230 |
+
matplotlib/backends/web_backend/css/boilerplate.css,sha256=qui16QXRnQFNJDbcMasfH6KtN9hLjv8883U9cJmsVCE,2310
|
| 231 |
+
matplotlib/backends/web_backend/css/fbm.css,sha256=wa4vNkNv7fQ_TufjJjecFZEzPMR6W8x6uXJga_wQILw,1456
|
| 232 |
+
matplotlib/backends/web_backend/css/mpl.css,sha256=ruca_aA5kNnP-MZmLkriu8teVP1nIgwcFEpoB16j8Z4,1611
|
| 233 |
+
matplotlib/backends/web_backend/css/page.css,sha256=ca3nO3TaPw7865PN5SlGJBTc2H3rBXQCMaFPywX29y4,1623
|
| 234 |
+
matplotlib/backends/web_backend/ipython_inline_figure.html,sha256=wgSxUh3xpPAxOnZgSMnrhDM5hYncOfWRGgaCUezvedY,1311
|
| 235 |
+
matplotlib/backends/web_backend/js/mpl.js,sha256=nK4yXHi8DD8Oj0mlE_MZStFRH13-q67kFzlxpC_Sa-0,24376
|
| 236 |
+
matplotlib/backends/web_backend/js/mpl_tornado.js,sha256=Zs2Uzs7YUilG765nYvanCo-IK8HkHDtIum1KAq6bQ_w,302
|
| 237 |
+
matplotlib/backends/web_backend/js/nbagg_mpl.js,sha256=F-By4ZjOSmwpNAkxUUxUk35qCjGlf0B28Z0aOyfpxDM,9514
|
| 238 |
+
matplotlib/backends/web_backend/single_figure.html,sha256=wEBwF602JLHErBUEXiS6jXqmxYAIzHpa3MMFrnev6rs,1357
|
| 239 |
+
matplotlib/bezier.py,sha256=DMqrzM6Rc5g99UiKXsppoYI5Da5awrzYDCvDBOJzbNM,19049
|
| 240 |
+
matplotlib/bezier.pyi,sha256=itubQt_U1IKnQ508bhy6J8LSpaspvZIeOmJqg7JvOmU,2586
|
| 241 |
+
matplotlib/category.py,sha256=aDGxoBkadhun-NDpc4clsA2oHS7Ehqj2g2ApnUoV3Ig,7316
|
| 242 |
+
matplotlib/cbook.py,sha256=RwLo9zSEi0FqRhVgEc5NcNu8D2DS4PCokDM0p1DyLdw,79583
|
| 243 |
+
matplotlib/cbook.pyi,sha256=pq3CtksIt6AoYEH3WCbHKUv-M2fgkXRNbWOqxnXCbTM,6412
|
| 244 |
+
matplotlib/cm.py,sha256=N_v6hE1GTKeVqxR_Mfz5KyHeQNAMjCAIugnHAurXYFI,23745
|
| 245 |
+
matplotlib/cm.pyi,sha256=bgZU7a6K512niO9Rf7VqijDXqewCZZ3PKgsualbKTz4,2079
|
| 246 |
+
matplotlib/collections.py,sha256=sXK0PGHz162UlbWZbN7bNOiQbi00RvFZQkqLBL4gYxA,89127
|
| 247 |
+
matplotlib/collections.pyi,sha256=q0jLo4iym3IS_QaShIUf7g540vJFvN3M8vbMVFL2U6A,9993
|
| 248 |
+
matplotlib/colorbar.py,sha256=NS25-U7SbWw1LOfTWYht5HSy_0n9oMaJc_TDivUrgWc,60148
|
| 249 |
+
matplotlib/colorbar.pyi,sha256=lXMHYAvr9GnXcHgpy40WumUaNjX9TiHhpdWTpBwEl50,4800
|
| 250 |
+
matplotlib/colors.py,sha256=Geaj8LXOCjYusMiAKPI_HDYGLgTOmR-Sr1HfOhDPUZg,102024
|
| 251 |
+
matplotlib/colors.pyi,sha256=W7mMeE_PF2jv4VvTCaq9EVyeuZoY6SoutNI4Ema-uq8,11192
|
| 252 |
+
matplotlib/container.py,sha256=Y6v4j79gMk8QDYfrdOqbbJHH0BoOIO9enz4dtlaBSJU,4565
|
| 253 |
+
matplotlib/container.pyi,sha256=DdthHVj1-bQQV3VcpMD1uIPLXVUKyKhWMXy8yCniK1I,1805
|
| 254 |
+
matplotlib/contour.py,sha256=JZzHDJfeoa5veiTC-39674F1Ug0ETNIOXXfljuOp_KY,74560
|
| 255 |
+
matplotlib/contour.pyi,sha256=cco-D_g83ajEC0_B38ECTI47F49k-RxMCbcN6qduumA,5973
|
| 256 |
+
matplotlib/dates.py,sha256=fhN7zDua3xKIR-rbGdZMdANg0JZ2ry73rhfBPSr_hHc,66066
|
| 257 |
+
matplotlib/dviread.py,sha256=dcj4b6SLvOH1JucVIdoSQ50Tyngpfr-TT-WS5SgUu4k,41366
|
| 258 |
+
matplotlib/dviread.pyi,sha256=YZUFI3FQ2NDnodV7lCz9lAlsH0Yt0_mWMdZdmYOikHw,2197
|
| 259 |
+
matplotlib/figure.py,sha256=dttHRXxMNryvkZPTrn0JVXh_11opiQmqog-nc8NIlvs,137818
|
| 260 |
+
matplotlib/figure.pyi,sha256=CSPqZd36iQy-qbssqhCQizc40k6LabVJAvkfeJobEVA,14132
|
| 261 |
+
matplotlib/font_manager.py,sha256=5jDy5aRDIn0Gr2DZw_OGnNgVqwxJWHQvcR6VCV8xqGg,55298
|
| 262 |
+
matplotlib/font_manager.pyi,sha256=Jse1IshOdjhXHdjcvTxtos3rgsuECbRJzc264A-ZGus,5052
|
| 263 |
+
matplotlib/ft2font.cpython-310-x86_64-linux-gnu.so,sha256=bnSFwMCh-Z_wlgBEqUKBQvHgKgxdVtaliF77xwBBJZU,967848
|
| 264 |
+
matplotlib/ft2font.pyi,sha256=4TEeRwvPFm2UyYdxx0z7fmJAdb7Jk_l7CFbP5FdqVms,7046
|
| 265 |
+
matplotlib/gridspec.py,sha256=3_3f_mqb8au9U2CAcSE-VbQRPr_QjpMhfSGE3uxJJVg,29765
|
| 266 |
+
matplotlib/gridspec.pyi,sha256=kGzdRdRag6vMMLXyB1JmMCULY9WX4acQaPb238h0yDw,5108
|
| 267 |
+
matplotlib/hatch.py,sha256=xAHggohTuCv3ErJdISdTgmZhxhAFYFs3Petrqw84V7M,7450
|
| 268 |
+
matplotlib/hatch.pyi,sha256=OEFkNe8TgrBli_MDMW99Tvhr44S4ySPaYQomjVXpUUA,2098
|
| 269 |
+
matplotlib/image.py,sha256=rqMDIAnHyjI3tAkkZXi_s0BTn2yfPwp9IIsJCtQEvb0,71694
|
| 270 |
+
matplotlib/image.pyi,sha256=y8hOWg1hQDm8r__6DlJUsX4_WvxA5uneilN9Th3s7_c,6812
|
| 271 |
+
matplotlib/layout_engine.py,sha256=NOsx76R_jx7_94n8OeSgqo58A1Kmlmpc-YH0GePcY68,11248
|
| 272 |
+
matplotlib/layout_engine.pyi,sha256=9cKFTFPCvwmKIygTUvrvOq1iWnFYme9Shniiv2QbC74,1788
|
| 273 |
+
matplotlib/legend.py,sha256=13dPH2R0FAKwUBcq-NbYdPbYmOo6dUPAYccN9iOg-Bg,56015
|
| 274 |
+
matplotlib/legend.pyi,sha256=hn-MNF3SPHtSUqIhwVXTebU_Nzk_wIh5iKgf7AEAZRg,5364
|
| 275 |
+
matplotlib/legend_handler.py,sha256=CxW3PlOMhpU6Wnp0sI0NVXomLph5haHfC1l9e-m2kvo,29915
|
| 276 |
+
matplotlib/legend_handler.pyi,sha256=3VEfeioGIAxhd3mhg4PXETZjCKf4OlXL0jz1MAFGtos,7655
|
| 277 |
+
matplotlib/lines.py,sha256=hdXfHVl4cGUNiNZb-g_cImKm2F4Xp5YurRTeYTD-PeM,56084
|
| 278 |
+
matplotlib/lines.pyi,sha256=5RB6Fr5i67lRKqEiLNGIGRX5mtxT30nbt18WFrLsQao,6080
|
| 279 |
+
matplotlib/markers.py,sha256=g6ukerZ5n_sD_Enk0eJA4kkTvOOp8AfSGBq60PHot-E,33708
|
| 280 |
+
matplotlib/markers.pyi,sha256=FFFBsvilnbd8-5L04U70kfVoyBwc18w_fZ6DysTj9p0,1678
|
| 281 |
+
matplotlib/mathtext.py,sha256=FRczaMkP8Y17aSxlekQG1xdVs-51bxbo3afREoi0U2M,4943
|
| 282 |
+
matplotlib/mathtext.pyi,sha256=RCVxYGQ_CJ6wC7v_HkqoouU2PhtcvlJ1ffIyxzAC-so,1045
|
| 283 |
+
matplotlib/mlab.py,sha256=6iTxX5xyc4NEPpTzBQwE_CF6mwS4ShytML87lYtlcmA,30236
|
| 284 |
+
matplotlib/mlab.pyi,sha256=mkR7wbJS9eCQfCFsUWoXnqrAy0kcE3cVqpFZCeOGC_Q,3583
|
| 285 |
+
matplotlib/mpl-data/fonts/afm/cmex10.afm,sha256=blR3ERmrVBV5XKkAnDCj4NMeYVgzH7cXtJ3u59u9GuE,12070
|
| 286 |
+
matplotlib/mpl-data/fonts/afm/cmmi10.afm,sha256=5qwEOpedEo76bDUahyuuF1q0cD84tRrX-VQ4p3MlfBo,10416
|
| 287 |
+
matplotlib/mpl-data/fonts/afm/cmr10.afm,sha256=WDvgC_D3UkGJg9u-J0U6RaT02lF4oz3lQxHtg1r3lYw,10101
|
| 288 |
+
matplotlib/mpl-data/fonts/afm/cmsy10.afm,sha256=AbmzvCVWBceHRfmRfeJ9E6xzOQTFLk0U1zDfpf3_MaM,8295
|
| 289 |
+
matplotlib/mpl-data/fonts/afm/cmtt10.afm,sha256=4ji7_mTpeWMa93o_UHBWPKCnqsBfhJJNllat1lJArP4,6501
|
| 290 |
+
matplotlib/mpl-data/fonts/afm/pagd8a.afm,sha256=jjFrigwkTpYLqa26cpzZvKQNBo-PuF4bmDVqaM4pMWw,17183
|
| 291 |
+
matplotlib/mpl-data/fonts/afm/pagdo8a.afm,sha256=sgNQdeYyx8J-itGw9h31y95aMBiTCRvmNSPTXwwS7xg,17255
|
| 292 |
+
matplotlib/mpl-data/fonts/afm/pagk8a.afm,sha256=ZUtfHPloNqcvGMHMxaKDSlshhOcjwheUx143RwpGdIU,17241
|
| 293 |
+
matplotlib/mpl-data/fonts/afm/pagko8a.afm,sha256=Yj1wBg6Jsqqz1KBfhRoJ3ACR-CMQol8Fj_ZM5NZ1gDk,17346
|
| 294 |
+
matplotlib/mpl-data/fonts/afm/pbkd8a.afm,sha256=Zl5o6J_di9Y5j2EpHtjew-_sfg7-WoeVmO9PzOYSTUc,15157
|
| 295 |
+
matplotlib/mpl-data/fonts/afm/pbkdi8a.afm,sha256=JAOno930iTyfZILMf11vWtiaTgrJcPpP6FRTRhEMMD4,15278
|
| 296 |
+
matplotlib/mpl-data/fonts/afm/pbkl8a.afm,sha256=UJqJjOJ6xQDgDBLX157mKpohIJFVmHM-N6x2-DiGv14,15000
|
| 297 |
+
matplotlib/mpl-data/fonts/afm/pbkli8a.afm,sha256=AWislZ2hDbs0ox_qOWREugsbS8_8lpL48LPMR40qpi0,15181
|
| 298 |
+
matplotlib/mpl-data/fonts/afm/pcrb8a.afm,sha256=6j1TS2Uc7DWSc-8l42TGDc1u0Fg8JspeWfxFayjUwi8,15352
|
| 299 |
+
matplotlib/mpl-data/fonts/afm/pcrbo8a.afm,sha256=smg3mjl9QaBDtQIt06ko5GvaxLsO9QtTvYANuE5hfG0,15422
|
| 300 |
+
matplotlib/mpl-data/fonts/afm/pcrr8a.afm,sha256=7nxFr0Ehz4E5KG_zSE5SZOhxRH8MyfnCbw-7x5wu7tw,15339
|
| 301 |
+
matplotlib/mpl-data/fonts/afm/pcrro8a.afm,sha256=NKEz7XtdFkh9cA8MvY-S3UOZlV2Y_J3tMEWFFxj7QSg,15443
|
| 302 |
+
matplotlib/mpl-data/fonts/afm/phvb8a.afm,sha256=NAx4M4HjL7vANCJbc-tk04Vkol-T0oaXeQ3T2h-XUvM,17155
|
| 303 |
+
matplotlib/mpl-data/fonts/afm/phvb8an.afm,sha256=8e_myD-AQkNF7q9XNLb2m76_lX2TUr3a5wog_LIE1sk,17086
|
| 304 |
+
matplotlib/mpl-data/fonts/afm/phvbo8a.afm,sha256=8fkBRmJ-SWY2YrBg8fFyjJyrJp8daQ6JPO6LvhM8xPI,17230
|
| 305 |
+
matplotlib/mpl-data/fonts/afm/phvbo8an.afm,sha256=aeVRvV4r15BBvxuRJ0MG8ZHuH2HViuIiCYkvuapmkmM,17195
|
| 306 |
+
matplotlib/mpl-data/fonts/afm/phvl8a.afm,sha256=IyMYM-bgl-gI6rG0EuZZ2OLzlxJfGeSh8xqsh0t-eJQ,15627
|
| 307 |
+
matplotlib/mpl-data/fonts/afm/phvlo8a.afm,sha256=s12C-eNnIDHJ_UVbuiprjxBjCiHIbS3Y8ORTC-qTpuI,15729
|
| 308 |
+
matplotlib/mpl-data/fonts/afm/phvr8a.afm,sha256=Kt8KaRidts89EBIK29X2JomDUEDxvroeaJz_RNTi6r4,17839
|
| 309 |
+
matplotlib/mpl-data/fonts/afm/phvr8an.afm,sha256=lL5fAHTRwODl-sB5mH7IfsD1tnnea4yRUK-_Ca2bQHM,17781
|
| 310 |
+
matplotlib/mpl-data/fonts/afm/phvro8a.afm,sha256=3KqK3eejiR4hIFBUynuSX_4lMdE2V2T58xOF8lX-fwc,17919
|
| 311 |
+
matplotlib/mpl-data/fonts/afm/phvro8an.afm,sha256=Vx9rRf3YfasMY7tz-njSxz67xHKk-fNkN7yBi0X2IP0,17877
|
| 312 |
+
matplotlib/mpl-data/fonts/afm/pncb8a.afm,sha256=aoXepTcDQtQa_mspflMJkEFKefzXHoyjz6ioJVI0YNc,16028
|
| 313 |
+
matplotlib/mpl-data/fonts/afm/pncbi8a.afm,sha256=pCWW1MYgy0EmvwaYsaYJaAI_LfrsKmDANHu7Pk0RaiU,17496
|
| 314 |
+
matplotlib/mpl-data/fonts/afm/pncr8a.afm,sha256=0CIB2BLe9r-6_Wl5ObRTTf98UOrezmGQ8ZOuBX5kLks,16665
|
| 315 |
+
matplotlib/mpl-data/fonts/afm/pncri8a.afm,sha256=5R-pLZOnaHNG8pjV6MP3Ai-d2OTQYR_cYCb5zQhzfSU,16920
|
| 316 |
+
matplotlib/mpl-data/fonts/afm/pplb8a.afm,sha256=3EzUbNnXr5Ft5eFLY00W9oWu59rHORgDXUuJaOoKN58,15662
|
| 317 |
+
matplotlib/mpl-data/fonts/afm/pplbi8a.afm,sha256=X_9tVspvrcMer3OS8qvdwjFFqpAXYZneyCL2NHA902g,15810
|
| 318 |
+
matplotlib/mpl-data/fonts/afm/pplr8a.afm,sha256=ijMb497FDJ9nVdVMb21F7W3-cu9sb_9nF0oriFpSn8k,15752
|
| 319 |
+
matplotlib/mpl-data/fonts/afm/pplri8a.afm,sha256=8KITbarcUUMi_hdoRLLmNHtlqs0TtOSKqtPFft7X5nY,15733
|
| 320 |
+
matplotlib/mpl-data/fonts/afm/psyr.afm,sha256=Iyt8ajE4B2Tm34oBj2pKtctIf9kPfq05suQefq8p3Ro,9644
|
| 321 |
+
matplotlib/mpl-data/fonts/afm/ptmb8a.afm,sha256=bL1fA1NC4_nW14Zrnxz4nHlXJb4dzELJPvodqKnYeMg,17983
|
| 322 |
+
matplotlib/mpl-data/fonts/afm/ptmbi8a.afm,sha256=-_Ui6XlKaFTHEnkoS_-1GtIr5VtGa3gFQ2ezLOYHs08,18070
|
| 323 |
+
matplotlib/mpl-data/fonts/afm/ptmr8a.afm,sha256=IEcsWcmzJyjCwkgsw4o6hIMmzlyXUglJat9s1PZNnEU,17942
|
| 324 |
+
matplotlib/mpl-data/fonts/afm/ptmri8a.afm,sha256=49fQMg5fIGguZ7rgc_2styMK55Pv5bPTs7wCzqpcGpk,18068
|
| 325 |
+
matplotlib/mpl-data/fonts/afm/putb8a.afm,sha256=qMaHTdpkrNL-m4DWhjpxJCSmgYkCv1qIzLlFfM0rl40,21532
|
| 326 |
+
matplotlib/mpl-data/fonts/afm/putbi8a.afm,sha256=g7AVJyiTxeMpNk_1cSfmYgM09uNUfPlZyWGv3D1vcAk,21931
|
| 327 |
+
matplotlib/mpl-data/fonts/afm/putr8a.afm,sha256=XYmNC5GQgSVAZKTIYdYeNksE6znNm9GF_0SmQlriqx0,22148
|
| 328 |
+
matplotlib/mpl-data/fonts/afm/putri8a.afm,sha256=i7fVe-iLyLtQxCfAa4IxdxH-ufcHmMk7hbCGG5TxAY4,21891
|
| 329 |
+
matplotlib/mpl-data/fonts/afm/pzcmi8a.afm,sha256=wyuoIWEZOcoXrSl1tPzLkEahik7kGi91JJj-tkFRG4A,16250
|
| 330 |
+
matplotlib/mpl-data/fonts/afm/pzdr.afm,sha256=MyjLAnzKYRdQBfof1W3k_hf30MvqOkqL__G22mQ5xww,9467
|
| 331 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm,sha256=sIDDI-B82VZ3C0mI_mHFITCZ7PVn37AIYMv1CrHX4sE,15333
|
| 332 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm,sha256=zg61QobD3YU9UBfCXmvmhBNaFKno-xj8sY0b2RpgfLw,15399
|
| 333 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm,sha256=vRQm5j1sTUN4hicT1PcVZ9P9DTTUHhEzfPXqUUzVZhE,15441
|
| 334 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm,sha256=Mdcq2teZEBJrIqVXnsnhee7oZnTs6-P8_292kWGTrw4,15335
|
| 335 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm,sha256=i2l4gcjuYXoXf28uK7yIVwuf0rnw6J7PwPVQeHj5iPw,69269
|
| 336 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm,sha256=Um5O6qK11DXLt8uj_0IoWkc84TKqHK3bObSKUswQqvY,69365
|
| 337 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm,sha256=hVYDg2b52kqtbVeCzmiv25bW1yYdpkZS-LXlGREN2Rs,74392
|
| 338 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm,sha256=23cvKDD7bQAJB3kdjSahJSTZaUOppznlIO6FXGslyW8,74292
|
| 339 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm,sha256=P5UaoXr4y0qh4SiMa5uqijDT6ZDr2-jPmj1ayry593E,9740
|
| 340 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm,sha256=cQTmr2LFPwKQE_sGQageMcmFicjye16mKJslsJLHQyE,64251
|
| 341 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm,sha256=pzWOdycm6RqocBWgAVY5Jq0z3Fp7LuqWgLNMx4q6OFw,59642
|
| 342 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm,sha256=bK5puSMpGT_YUILwyJrXoxjfj7XJOdfv5TQ_iKsJRzw,66328
|
| 343 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm,sha256=hhNrUnpazuDDKD1WpraPxqPWCYLrO7D7bMVOg-zI13o,60460
|
| 344 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm,sha256=ZuOmt9GcKofjdOq8kqhPhtAIhOwkL2rTJTmZxAjFakA,9527
|
| 345 |
+
matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt,sha256=MRv8ppSITYYAb7lt5EOw9DWWNZIblfxsFhu5TQE7cpI,828
|
| 346 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSans-Bold.ttf,sha256=sYS4njwQdfIva3FXW2_CDUlys8_TsjMiym_Vltyu8Wc,704128
|
| 347 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSans-BoldOblique.ttf,sha256=bt8CgxYBhq9FHL7nHnuEXy5Mq_Jku5ks5mjIPCVGXm8,641720
|
| 348 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSans-Oblique.ttf,sha256=zN90s1DxH9PdV3TeUOXmNGoaXaH1t9X7g1kGZel6UhM,633840
|
| 349 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf,sha256=P99pyr8GBJ6nCgC1kZNA4s4ebQKwzDxLRPtoAb0eDSI,756072
|
| 350 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSansDisplay.ttf,sha256=ggmdz7paqGjN_CdFGYlSX-MpL3N_s8ngMozpzvWWUvY,25712
|
| 351 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Bold.ttf,sha256=uq2ppRcv4giGJRr_BDP8OEYZEtXa8HKH577lZiCo2pY,331536
|
| 352 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-BoldOblique.ttf,sha256=ppCBwVx2yCfgonpaf1x0thNchDSZlVSV_6jCDTqYKIs,253116
|
| 353 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Oblique.ttf,sha256=KAUoE_enCfyJ9S0ZLcmV708P3Fw9e3OknWhJsZFtDNA,251472
|
| 354 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSansMono.ttf,sha256=YC7Ia4lIz82VZIL-ZPlMNshndwFJ7y95HUYT9EO87LM,340240
|
| 355 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Bold.ttf,sha256=w3U_Lta8Zz8VhG3EWt2-s7nIcvMvsY_VOiHxvvHtdnY,355692
|
| 356 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSerif-BoldItalic.ttf,sha256=2T7-x6nS6CZ2jRou6VuVhw4V4pWZqE80hK8d4c7C4YE,347064
|
| 357 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Italic.ttf,sha256=PnmU-8VPoQzjNSpC1Uj63X2crbacsRCbydlg9trFfwQ,345612
|
| 358 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSerif.ttf,sha256=EHJElW6ZYrnpb6zNxVGCXgrgiYrhNzcTPhuSGi_TX_o,379740
|
| 359 |
+
matplotlib/mpl-data/fonts/ttf/DejaVuSerifDisplay.ttf,sha256=KRTzLkfHd8J75Wd6-ufbTeefnkXeb8kJfZlJwjwU99U,14300
|
| 360 |
+
matplotlib/mpl-data/fonts/ttf/LICENSE_DEJAVU,sha256=11k43sCY8G8Kw8AIUwZdlPAgvhw8Yu8dwpdboVtNmw4,4816
|
| 361 |
+
matplotlib/mpl-data/fonts/ttf/LICENSE_STIX,sha256=urPTHf7wf0g2JPL2XycR52BluOcnMnixwHHt4QQcmVk,5476
|
| 362 |
+
matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf,sha256=FnN4Ax4t3cYhbWeBnJJg6aBv_ExHjk4jy5im_USxg8I,448228
|
| 363 |
+
matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf,sha256=6FM9xwg_o0a9oZM9YOpKg7Z9CUW86vGzVB-CtKDixqA,237360
|
| 364 |
+
matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf,sha256=mHiP1LpI37sr0CbA4gokeosGxzcoeWKLemuw1bsJc2w,181152
|
| 365 |
+
matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf,sha256=bPyzM9IrfDxiO9_UAXTxTIXD1nMcphZsHtyAFA6uhSc,175040
|
| 366 |
+
matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf,sha256=Ulb34CEzWsSFTRgPDovxmJZOwvyCAXYnbhaqvGU3u1c,59108
|
| 367 |
+
matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf,sha256=XRBqW3jR_8MBdFU0ObhiV7-kXwiBIMs7QVClHcT5tgs,30512
|
| 368 |
+
matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf,sha256=pb22DnbDf2yQqizotc3wBDqFGC_g27YcCGJivH9-Le8,41272
|
| 369 |
+
matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf,sha256=BMr9pWiBv2YIZdq04X4c3CgL6NPLUPrl64aV1N4w9Ug,46752
|
| 370 |
+
matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf,sha256=wYuH1gYUpCuusqItRH5kf9p_s6mUD-9X3L5RvRtKSxs,13656
|
| 371 |
+
matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf,sha256=yNdvjUoSmsZCULmD7SVq9HabndG9P4dPhboL1JpAf0s,12228
|
| 372 |
+
matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf,sha256=-9xVMYL4_1rcO8FiCKrCfR4PaSmKtA42ddLGqwtei1w,15972
|
| 373 |
+
matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf,sha256=cYexyo8rZcdqMlpa9fNF5a2IoXLUTZuIvh0JD1Qp0i4,12556
|
| 374 |
+
matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf,sha256=0lbHzpndzJmO8S42mlkhsz5NbvJLQCaH5Mcc7QZRDzc,19760
|
| 375 |
+
matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf,sha256=3eBc-VtYbhQU3BnxiypfO6eAzEu8BdDvtIJSFbkS2oY,12192
|
| 376 |
+
matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf,sha256=XFSKCptbESM8uxHtUFSAV2cybwxhSjd8dWVByq6f3w0,15836
|
| 377 |
+
matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf,sha256=MUCYHrA0ZqFiSE_PjIGlJZgMuv79aUgQqE7Dtu3kuo0,12116
|
| 378 |
+
matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf,sha256=_sdxDuEwBDtADpu9CyIXQxV7sIqA2TZVBCUiUjq5UCk,15704
|
| 379 |
+
matplotlib/mpl-data/fonts/ttf/cmb10.ttf,sha256=B0SXtQxD6ldZcYFZH5iT04_BKofpUQT1ZX_CSB9hojo,25680
|
| 380 |
+
matplotlib/mpl-data/fonts/ttf/cmex10.ttf,sha256=ryjwwXByOsd2pxv6WVrKCemNFa5cPVTOGa_VYZyWqQU,21092
|
| 381 |
+
matplotlib/mpl-data/fonts/ttf/cmmi10.ttf,sha256=MJKWW4gR_WpnZXmWZIRRgfwd0TMLk3-RWAjEhdMWI00,32560
|
| 382 |
+
matplotlib/mpl-data/fonts/ttf/cmr10.ttf,sha256=Tdl2GwWMAJ25shRfVe5mF9CTwnPdPWxbPkP_YRD6m_Y,26348
|
| 383 |
+
matplotlib/mpl-data/fonts/ttf/cmss10.ttf,sha256=ffkag9BbLkcexjjLC0NaNgo8eSsJ_EKn2mfpHy55EVo,20376
|
| 384 |
+
matplotlib/mpl-data/fonts/ttf/cmsy10.ttf,sha256=uyJu2TLz8QDNDlL15JEu5VO0G2nnv9uNOFTbDrZgUjI,29396
|
| 385 |
+
matplotlib/mpl-data/fonts/ttf/cmtt10.ttf,sha256=YhHwmuk1mZka_alwwkZp2tGnfiU9kVYk-_IS9wLwcdc,28136
|
| 386 |
+
matplotlib/mpl-data/images/back-symbolic.svg,sha256=Okj_ressZkfe6Ewv_o7GF5toc5qWCeFkQ2cHQ25BdVE,1532
|
| 387 |
+
matplotlib/mpl-data/images/back.pdf,sha256=ZR7CJo_dAeCM-KlaGvskgtHQyRtrPIolc8REOmcoqJk,1623
|
| 388 |
+
matplotlib/mpl-data/images/back.png,sha256=E4dGf4Gnz1xJ1v2tMygHV0YNQgShreDeVApaMb-74mU,380
|
| 389 |
+
matplotlib/mpl-data/images/back.svg,sha256=Okj_ressZkfe6Ewv_o7GF5toc5qWCeFkQ2cHQ25BdVE,1532
|
| 390 |
+
matplotlib/mpl-data/images/back_large.png,sha256=9A6hUSQeszhYONE4ZuH3kvOItM0JfDVu6tkfromCbsQ,620
|
| 391 |
+
matplotlib/mpl-data/images/filesave-symbolic.svg,sha256=dMGXvLSOHPu44kiWgZx-B_My_tLWaP6J6GgxJfL4FW0,2049
|
| 392 |
+
matplotlib/mpl-data/images/filesave.pdf,sha256=P1EPPV2g50WTt8UaX-6kFoTZM1xVqo6S2H6FJ6Zd1ec,1734
|
| 393 |
+
matplotlib/mpl-data/images/filesave.png,sha256=b7ctucrM_F2mG-DycTedG_a_y4pHkx3F-zM7l18GLhk,458
|
| 394 |
+
matplotlib/mpl-data/images/filesave.svg,sha256=dMGXvLSOHPu44kiWgZx-B_My_tLWaP6J6GgxJfL4FW0,2049
|
| 395 |
+
matplotlib/mpl-data/images/filesave_large.png,sha256=LNbRD5KZ3Kf7nbp-stx_a1_6XfGBSWUfDdpgmnzoRvk,720
|
| 396 |
+
matplotlib/mpl-data/images/forward-symbolic.svg,sha256=kOiKq3a4mieMRLVCwQBdOMTRrWG2NOX_5-rbAFHpdmQ,1551
|
| 397 |
+
matplotlib/mpl-data/images/forward.pdf,sha256=KIqIL4YId43LkcOxV_TT5uvz1SP8k5iUNUeJmAElMV8,1630
|
| 398 |
+
matplotlib/mpl-data/images/forward.png,sha256=pKbLepgGiGeyY2TCBl8svjvm7Z4CS3iysFxcq4GR-wk,357
|
| 399 |
+
matplotlib/mpl-data/images/forward.svg,sha256=kOiKq3a4mieMRLVCwQBdOMTRrWG2NOX_5-rbAFHpdmQ,1551
|
| 400 |
+
matplotlib/mpl-data/images/forward_large.png,sha256=36h7m7DZDHql6kkdpNPckyi2LKCe_xhhyavWARz_2kQ,593
|
| 401 |
+
matplotlib/mpl-data/images/hand.pdf,sha256=hspwkNY915KPD7AMWnVQs7LFPOtlcj0VUiLu76dMabQ,4172
|
| 402 |
+
matplotlib/mpl-data/images/hand.png,sha256=2cchRETGKa0hYNKUxnJABwkyYXEBPqJy_VqSPlT0W2Q,979
|
| 403 |
+
matplotlib/mpl-data/images/hand.svg,sha256=hxxBtakaVFA7mpZOGakvo0QUcb2x06rojeS5gnVmyuc,4906
|
| 404 |
+
matplotlib/mpl-data/images/help-symbolic.svg,sha256=XVcFcuzcL3SQ3LjfSbtdLYDjoB5YUkj2jk2Gk8vaZF8,1890
|
| 405 |
+
matplotlib/mpl-data/images/help.pdf,sha256=CeE978IMi0YWznWKjIT1R8IrP4KhZ0S7usPUvreSgcA,1813
|
| 406 |
+
matplotlib/mpl-data/images/help.png,sha256=s4pQrqaQ0py8I7vc9hv3BI3DO_tky-7YBMpaHuBDCBY,472
|
| 407 |
+
matplotlib/mpl-data/images/help.svg,sha256=XVcFcuzcL3SQ3LjfSbtdLYDjoB5YUkj2jk2Gk8vaZF8,1890
|
| 408 |
+
matplotlib/mpl-data/images/help_large.png,sha256=1IwEyWfGRgnoCWM-r9CJHEogTJVD5n1c8LXTK4AJ4RE,747
|
| 409 |
+
matplotlib/mpl-data/images/home-symbolic.svg,sha256=ptrus8h5PZTi9ahYfnaz-uZ8MAHCr72aPeMW48TBR9Q,1911
|
| 410 |
+
matplotlib/mpl-data/images/home.pdf,sha256=e0e0pI-XRtPmvUCW2VTKL1DeYu1pvPmUUeRSgEbWmik,1737
|
| 411 |
+
matplotlib/mpl-data/images/home.png,sha256=IcFdAAUa6_A0qt8IO3I8p4rpXpQgAlJ8ndBECCh7C1w,468
|
| 412 |
+
matplotlib/mpl-data/images/home.svg,sha256=ptrus8h5PZTi9ahYfnaz-uZ8MAHCr72aPeMW48TBR9Q,1911
|
| 413 |
+
matplotlib/mpl-data/images/home_large.png,sha256=uxS2O3tWOHh1iau7CaVV4ermIJaZ007ibm5Z3i8kXYg,790
|
| 414 |
+
matplotlib/mpl-data/images/matplotlib.pdf,sha256=BkSUf-2xoij-eXfpV2t7y1JFKG1zD1gtV6aAg3Xi_wE,22852
|
| 415 |
+
matplotlib/mpl-data/images/matplotlib.png,sha256=w8KLRYVa-voUZXa41hgJauQuoois23f3NFfdc72pUYY,1283
|
| 416 |
+
matplotlib/mpl-data/images/matplotlib.svg,sha256=QiTIcqlQwGaVPtHsEk-vtmJk1wxwZSvijhqBe_b9VCI,62087
|
| 417 |
+
matplotlib/mpl-data/images/matplotlib_large.png,sha256=ElRoue9grUqkZXJngk-nvh4GKfpvJ4gE69WryjCbX5U,3088
|
| 418 |
+
matplotlib/mpl-data/images/move-symbolic.svg,sha256=_uamLnjQ20iwSuKbd8JvTXUFaRq4206MrpFWvtErr8I,2529
|
| 419 |
+
matplotlib/mpl-data/images/move.pdf,sha256=CXk3PGK9WL5t-5J-G2X5Tl-nb6lcErTBS5oUj2St6aU,1867
|
| 420 |
+
matplotlib/mpl-data/images/move.png,sha256=TmjR41IzSzxGbhiUcV64X0zx2BjrxbWH3cSKvnG2vzc,481
|
| 421 |
+
matplotlib/mpl-data/images/move.svg,sha256=_uamLnjQ20iwSuKbd8JvTXUFaRq4206MrpFWvtErr8I,2529
|
| 422 |
+
matplotlib/mpl-data/images/move_large.png,sha256=Skjz2nW_RTA5s_0g88gdq2hrVbm6DOcfYW4Fu42Fn9U,767
|
| 423 |
+
matplotlib/mpl-data/images/qt4_editor_options.pdf,sha256=2qu6GVyBrJvVHxychQoJUiXPYxBylbH2j90QnytXs_w,1568
|
| 424 |
+
matplotlib/mpl-data/images/qt4_editor_options.png,sha256=EryQjQ5hh2dwmIxtzCFiMN1U6Tnd11p1CDfgH5ZHjNM,380
|
| 425 |
+
matplotlib/mpl-data/images/qt4_editor_options.svg,sha256=sdrNIxYT-BLvJ30ASnaRQ5PxF3SB41-pgdaIJT0KqBg,1264
|
| 426 |
+
matplotlib/mpl-data/images/qt4_editor_options_large.png,sha256=-Pd-9Vh5aIr3PZa8O6Ge_BLo41kiEnpmkdDj8a11JkY,619
|
| 427 |
+
matplotlib/mpl-data/images/subplots-symbolic.svg,sha256=Gq4fDSS99Rv5rbR8_nenV6jcY5VsKPARWeH-BZBk9CU,2150
|
| 428 |
+
matplotlib/mpl-data/images/subplots.pdf,sha256=Q0syPMI5EvtgM-CE-YXKOkL9eFUAZnj_X2Ihoj6R4p4,1714
|
| 429 |
+
matplotlib/mpl-data/images/subplots.png,sha256=MUfCItq3_yzb9yRieGOglpn0Y74h8IA7m5i70B63iRc,445
|
| 430 |
+
matplotlib/mpl-data/images/subplots.svg,sha256=Gq4fDSS99Rv5rbR8_nenV6jcY5VsKPARWeH-BZBk9CU,2150
|
| 431 |
+
matplotlib/mpl-data/images/subplots_large.png,sha256=Edu9SwVMQEXJZ5ogU5cyW7VLcwXJdhdf-EtxxmxdkIs,662
|
| 432 |
+
matplotlib/mpl-data/images/zoom_to_rect-symbolic.svg,sha256=uMmdGkO43ZHlezkpieR3_MiqlEc5vROffRDOhY4sxm4,1499
|
| 433 |
+
matplotlib/mpl-data/images/zoom_to_rect.pdf,sha256=SEvPc24gfZRpl-dHv7nx8KkxPyU66Kq4zgQTvGFm9KA,1609
|
| 434 |
+
matplotlib/mpl-data/images/zoom_to_rect.png,sha256=aNz3QZBrIgxu9E-fFfaQweCVNitGuDUFoC27e5NU2L4,530
|
| 435 |
+
matplotlib/mpl-data/images/zoom_to_rect.svg,sha256=uMmdGkO43ZHlezkpieR3_MiqlEc5vROffRDOhY4sxm4,1499
|
| 436 |
+
matplotlib/mpl-data/images/zoom_to_rect_large.png,sha256=V6pkxmm6VwFExdg_PEJWdK37HB7k3cE_corLa7RbUMk,1016
|
| 437 |
+
matplotlib/mpl-data/kpsewhich.lua,sha256=RdyYaBnBLy3NsB5c2R5FGrKu-V-WBcZim24NWilsTfw,139
|
| 438 |
+
matplotlib/mpl-data/matplotlibrc,sha256=wlUqhpUjmDxJ3C9QmmYZiUyDuRGo9lWyNGidWJKogFM,42364
|
| 439 |
+
matplotlib/mpl-data/plot_directive/plot_directive.css,sha256=utSJ1oETz0UG6AC9hU134J_JY78ENijqMZXN0JMBUfk,318
|
| 440 |
+
matplotlib/mpl-data/sample_data/Minduka_Present_Blue_Pack.png,sha256=XnKGiCanpDKalQ5anvo5NZSAeDP7fyflzQAaivuc0IE,13634
|
| 441 |
+
matplotlib/mpl-data/sample_data/README.txt,sha256=ABz19VBKfGewdY39QInG9Qccgn1MTYV3bT5Ph7TCy2Y,128
|
| 442 |
+
matplotlib/mpl-data/sample_data/Stocks.csv,sha256=72878aZNXGxd5wLvFUw_rnj-nfg4gqtrucZji-w830c,67924
|
| 443 |
+
matplotlib/mpl-data/sample_data/axes_grid/bivariate_normal.npy,sha256=DpWZ9udAh6ospYqneEa27D6EkRgORFwHosacZXVu98U,1880
|
| 444 |
+
matplotlib/mpl-data/sample_data/data_x_x2_x3.csv,sha256=A0SU3buOUGhT-NI_6LQ6p70fFSIU3iLFdgzvzrKR6SE,132
|
| 445 |
+
matplotlib/mpl-data/sample_data/eeg.dat,sha256=KGVjFt8ABKz7p6XZirNfcxSTOpGGNuyA8JYErRKLRBc,25600
|
| 446 |
+
matplotlib/mpl-data/sample_data/embedding_in_wx3.xrc,sha256=cUqVw5vDHNSZoaO4J0ebZUf5SrJP36775abs7R9Bclg,2186
|
| 447 |
+
matplotlib/mpl-data/sample_data/goog.npz,sha256=QAkXzzDmtmT3sNqT18dFhg06qQCNqLfxYNLdEuajGLE,22845
|
| 448 |
+
matplotlib/mpl-data/sample_data/grace_hopper.jpg,sha256=qMptc0dlcDsJcoq0f-WfRz2Trjln_CTHwCiMPHrbcTA,61306
|
| 449 |
+
matplotlib/mpl-data/sample_data/jacksboro_fault_dem.npz,sha256=1JP1CjPoKkQgSUxU0fyhU50Xe9wnqxkLxf5ukvYvtjc,174061
|
| 450 |
+
matplotlib/mpl-data/sample_data/logo2.png,sha256=DXNx4FXeyqxHy26AmvNELpwezQLxweLQY9HP7ktKIdc,22279
|
| 451 |
+
matplotlib/mpl-data/sample_data/membrane.dat,sha256=q3lbQpIBpbtXXGNw1eFwkN_PwxdDGqk4L46IE2b0M1c,48000
|
| 452 |
+
matplotlib/mpl-data/sample_data/msft.csv,sha256=GArKb0O3DgKZRsKdJf6lX3rMSf-PCekIiBoLNdgF7Mk,3211
|
| 453 |
+
matplotlib/mpl-data/sample_data/s1045.ima.gz,sha256=MrQk1k9it-ccsk0p_VOTitVmTWCAVaZ6srKvQ2n4uJ4,33229
|
| 454 |
+
matplotlib/mpl-data/sample_data/topobathy.npz,sha256=AkTgMpFwLfRQJNy1ysvE89TLMNct-n_TccSsYcQrT78,45224
|
| 455 |
+
matplotlib/mpl-data/stylelib/Solarize_Light2.mplstyle,sha256=aytOm4eT_SPvs7HC28ZY4GukeN44q-SE0JEMCR8kVOk,1257
|
| 456 |
+
matplotlib/mpl-data/stylelib/_classic_test_patch.mplstyle,sha256=iopHpMaM3im_AK2aiHGuM2DKM5i9Kc84v6NQEoSb10Q,167
|
| 457 |
+
matplotlib/mpl-data/stylelib/_mpl-gallery-nogrid.mplstyle,sha256=1VOL3USqD6iuGQaSynNg1QhyUwvKLnkLyUKdbBMnnqg,489
|
| 458 |
+
matplotlib/mpl-data/stylelib/_mpl-gallery.mplstyle,sha256=MN-q59CiDqHXB8xFKXxzCbJJbJmNDhBe9lDJJAoMTPA,504
|
| 459 |
+
matplotlib/mpl-data/stylelib/bmh.mplstyle,sha256=-KbhaI859BITHIoyUZIfpQDjfckgLAlDAS_ydKsm6mc,712
|
| 460 |
+
matplotlib/mpl-data/stylelib/classic.mplstyle,sha256=tGkwXsHm15yZij7HT_9N8L9_z8-D_ao2wUWtimVikGA,24693
|
| 461 |
+
matplotlib/mpl-data/stylelib/dark_background.mplstyle,sha256=Ht6phZUy3zNRdcfHKcSb1uh3O8DunSPX8HPt9xTyzuo,658
|
| 462 |
+
matplotlib/mpl-data/stylelib/fast.mplstyle,sha256=yTa2YEIIP9xi5V_G0p2vSlxghuhNwjRi9gPECMxyRiM,288
|
| 463 |
+
matplotlib/mpl-data/stylelib/fivethirtyeight.mplstyle,sha256=WNUmAFuBPcqQPVgt6AS1ldy8Be2XO01N-1YQL__Q6ZY,832
|
| 464 |
+
matplotlib/mpl-data/stylelib/ggplot.mplstyle,sha256=u2oPHMLWFtZcpIjHk2swi2Nrt4NgnEtof5lxcwM0RD0,956
|
| 465 |
+
matplotlib/mpl-data/stylelib/grayscale.mplstyle,sha256=KCLg-pXpns9cnKDXKN2WH6mV41OH-6cbT-5zKQotSdw,526
|
| 466 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-bright.mplstyle,sha256=pDqn3-NUyVLvlfkYs8n8HzNZvmslVMChkeH-HtZuJIc,144
|
| 467 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-colorblind.mplstyle,sha256=eCSzFj5_2vR6n5qu1rHE46wvSVGZcdVqz85ov40ZsH8,148
|
| 468 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-dark-palette.mplstyle,sha256=p5ABKNQHRG7bk4HXqMQrRBjDlxGAo3RCXHdQmP7g-Ng,142
|
| 469 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-dark.mplstyle,sha256=I4xQ75vE5_9X4k0cNDiqhhnF3OcrZ2xlPX8Ll7OCkoE,667
|
| 470 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-darkgrid.mplstyle,sha256=2bXOSzS5gmPzRBrRmzVWyhg_7ZaBRQ6t_-O-cRuyZoA,670
|
| 471 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-deep.mplstyle,sha256=44dLcXjjRgR-6yaopgGRInaVgz3jk8VJVQTbBIcxRB0,142
|
| 472 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-muted.mplstyle,sha256=T4o3jvqKD_ImXDkp66XFOV_xrBVFUolJU34JDFk1Xkk,143
|
| 473 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-notebook.mplstyle,sha256=PcvZQbYrDdducrNlavBPmQ1g2minio_9GkUUFRdgtoM,382
|
| 474 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-paper.mplstyle,sha256=n0mboUp2C4Usq2j6tNWcu4TZ_YT4-kKgrYO0t-rz1yw,393
|
| 475 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-pastel.mplstyle,sha256=8nV8qRpbUrnFZeyE6VcQ1oRuZPLil2W74M2U37DNMOE,144
|
| 476 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-poster.mplstyle,sha256=dUaKqTE4MRfUq2rWVXbbou7kzD7Z9PE9Ko8aXLza8JA,403
|
| 477 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-talk.mplstyle,sha256=7FnBaBEdWBbncTm6_ER-EQVa_bZgU7dncgez-ez8R74,403
|
| 478 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-ticks.mplstyle,sha256=CITZmZFUFp40MK2Oz8tI8a7WRoCizQU9Z4J172YWfWw,665
|
| 479 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-white.mplstyle,sha256=WjJ6LEU6rlCwUugToawciAbKP9oERFHr9rfFlUrdTx0,665
|
| 480 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8-whitegrid.mplstyle,sha256=ec4BjsNzmOvHptcJ3mdPxULF3S1_U1EUocuqfIpw-Nk,664
|
| 481 |
+
matplotlib/mpl-data/stylelib/seaborn-v0_8.mplstyle,sha256=_Xu6qXKzi4b3GymCOB1b1-ykKTQ8xhDliZ8ezHGTiAs,1130
|
| 482 |
+
matplotlib/mpl-data/stylelib/tableau-colorblind10.mplstyle,sha256=BsirZVd1LmPWT4tBIz6loZPjZcInoQrIGfC7rvzqmJw,190
|
| 483 |
+
matplotlib/offsetbox.py,sha256=HZl6P222abYu_FjtS8yrnfnLbxrqDta94X5Iki8bUtk,52958
|
| 484 |
+
matplotlib/offsetbox.pyi,sha256=qtRlo1OQQ1eUSRwzvHT8EWa8a2YQ54b9j1YZwxpo0AQ,10390
|
| 485 |
+
matplotlib/patches.py,sha256=sfawmLPt_cpMZ-URNub4_COlgJFrxRFA5goJhg3_HcE,162832
|
| 486 |
+
matplotlib/patches.pyi,sha256=OvxnwlppjOnWDTAu17y4qIYnk8G2lEVh19SrsJweW8U,22543
|
| 487 |
+
matplotlib/path.py,sha256=N87A45qgGW337KOriFkNSqjGhC7ZT0B9I5MDBbB2ebo,42079
|
| 488 |
+
matplotlib/path.pyi,sha256=N1XOCWSUG4RtCcMo02yvvq3HDYo_369oKQkEJUHN80c,4777
|
| 489 |
+
matplotlib/patheffects.py,sha256=s7J8EiS3i110JYSgQdoH16xaNHMf9xnUhj9SkJjwSmQ,18789
|
| 490 |
+
matplotlib/patheffects.pyi,sha256=7-FhuxGGrer94GtJ1sZ0YxOmK6Nv4oixTmsKb6-ijOg,3664
|
| 491 |
+
matplotlib/projections/__init__.py,sha256=jq1SJYHwkgHKHA-c_4r9j-dV2ZpgmUkWZnCOVNPtmKo,4436
|
| 492 |
+
matplotlib/projections/__init__.pyi,sha256=D28dSYmwZcSBFBtNDer-QqE_lqXAhHKersuAlvi89jE,673
|
| 493 |
+
matplotlib/projections/__pycache__/__init__.cpython-310.pyc,,
|
| 494 |
+
matplotlib/projections/__pycache__/geo.cpython-310.pyc,,
|
| 495 |
+
matplotlib/projections/__pycache__/polar.cpython-310.pyc,,
|
| 496 |
+
matplotlib/projections/geo.py,sha256=inOLKvVTfZUTC-1Wl0Rq9eXouplbcVbWptkRVsFTkj8,17711
|
| 497 |
+
matplotlib/projections/geo.pyi,sha256=vPfhvj7_e0ZnKjyfDUNC89RGCktycJBPnn5D8w0A7N8,3775
|
| 498 |
+
matplotlib/projections/polar.py,sha256=d448pT7GPT0ukQTsr97NkPNtjQwC4ypDUJsPePEuj3w,56568
|
| 499 |
+
matplotlib/projections/polar.pyi,sha256=IWNSLQIo5cXFBJur5VFVDQBwAtq5n1XFZMnrj85mCBg,6636
|
| 500 |
+
matplotlib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 501 |
+
matplotlib/pylab.py,sha256=VqUqd2J2-dKtltZtsYP8ePKoX1jsNDpTyqlcmpfC-lo,2369
|
| 502 |
+
matplotlib/pyplot.py,sha256=ydE449Dwz5FMgmx18EC7O_PnNJvDZJPxExAsK8BR_vs,147190
|
| 503 |
+
matplotlib/quiver.py,sha256=YDCU2XRe2VQhXo-LdAsM6Aa5doSIOikWfgLFYT-i4no,46177
|
| 504 |
+
matplotlib/quiver.pyi,sha256=7WC5M42icWeWVzOvDJVNdZ3NC4KvZz1M38hXeNRd1dE,5581
|
| 505 |
+
matplotlib/rcsetup.py,sha256=St4wrlo-NAy8iIZxTNl4cQSyJB6ejeW6QYi7P1K-BFM,51836
|
| 506 |
+
matplotlib/rcsetup.pyi,sha256=0VTIhzfKgBcKxOeOdoKq1oa7ZubalOj9Ks0efE0-cms,4337
|
| 507 |
+
matplotlib/sankey.py,sha256=qFEkTvL15SL0_vIOLldCyb5YsYniUzFnXs09kDuNmI0,36158
|
| 508 |
+
matplotlib/sankey.pyi,sha256=xa6EMuSEZQYycZWdqlxIgWqQ7gfWKPKF9ZDK7WYQAC0,1462
|
| 509 |
+
matplotlib/scale.py,sha256=GZKWo9toXXvkbxS28D7pMU2Fms-F4eR2RUCIjesKk1Q,25990
|
| 510 |
+
matplotlib/scale.pyi,sha256=-ptRptcqiAuzfKwrjgSWWOxFmjRUTOKGwIoWtuBXKgY,5057
|
| 511 |
+
matplotlib/sphinxext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 512 |
+
matplotlib/sphinxext/__pycache__/__init__.cpython-310.pyc,,
|
| 513 |
+
matplotlib/sphinxext/__pycache__/figmpl_directive.cpython-310.pyc,,
|
| 514 |
+
matplotlib/sphinxext/__pycache__/mathmpl.cpython-310.pyc,,
|
| 515 |
+
matplotlib/sphinxext/__pycache__/plot_directive.cpython-310.pyc,,
|
| 516 |
+
matplotlib/sphinxext/__pycache__/roles.cpython-310.pyc,,
|
| 517 |
+
matplotlib/sphinxext/figmpl_directive.py,sha256=GaIho4pRZ9f0vKx9g6BSj64AF2BdRWV6Z_uzamCytWs,9118
|
| 518 |
+
matplotlib/sphinxext/mathmpl.py,sha256=R24VAgKSOkYx2sarr2MGHgsosvKopih6JEIu8VM65wc,7810
|
| 519 |
+
matplotlib/sphinxext/plot_directive.py,sha256=6eoNy8lyELEpjYgUvrAkjEqDOc4-5ndQ-zjpF4gKQ74,32430
|
| 520 |
+
matplotlib/sphinxext/roles.py,sha256=U7P4t06foLF2PsZJrTN4mfaspKGRoYwFZ3ijIhIUVyo,4882
|
| 521 |
+
matplotlib/spines.py,sha256=TM77Hz0LzJtp-12RTiykKNenIp_vwzrvkGooxMK6Upc,21593
|
| 522 |
+
matplotlib/spines.pyi,sha256=QXWS95dKxHbwzrtky-lrd4bXuj7eiz8mv54qIrMd0Ks,2956
|
| 523 |
+
matplotlib/stackplot.py,sha256=G4sylNIsZpJkWvbc4bdYdlyidicZFFB7e5J2jOtYUwU,4968
|
| 524 |
+
matplotlib/stackplot.pyi,sha256=311zv4wPimk9_GJdr_sfu1laNZRpKwsZ8pLMq16v8UQ,536
|
| 525 |
+
matplotlib/streamplot.py,sha256=rXVKYEi4MfSg3HnAaWb8w4qFp95mRf6dosMVqtXZEpE,24011
|
| 526 |
+
matplotlib/streamplot.pyi,sha256=wA0K5e_ZjXneS5WzonHxoKPLla3-IdflAcIrB0svtOY,2664
|
| 527 |
+
matplotlib/style/__init__.py,sha256=fraQtyBC3TY2ZTsLdxL7zNs9tJYZtje7tbiqEf3M56M,140
|
| 528 |
+
matplotlib/style/__pycache__/__init__.cpython-310.pyc,,
|
| 529 |
+
matplotlib/style/__pycache__/core.cpython-310.pyc,,
|
| 530 |
+
matplotlib/style/core.py,sha256=P67uPZwbLqggEHTpKTc17G20QeUl00P7AFSONf77L2g,8609
|
| 531 |
+
matplotlib/style/core.pyi,sha256=DElPp0fbkwKaaVOVb5VGHfI8ohRB9m4uVGKjZl3A65E,449
|
| 532 |
+
matplotlib/table.py,sha256=Q76nxe9lf-izvLsSE21PMyRImRWUehA3U-SfQnwj8x0,27161
|
| 533 |
+
matplotlib/table.pyi,sha256=AMQswiPK8WZ8NATDqy5GtwAlvwR5qStRFDYL13gxRYg,3041
|
| 534 |
+
matplotlib/testing/__init__.py,sha256=pTaqH1qgGNBeWCmvK_vjqFJXJ9dvZXCaKQ-8jHSpaEc,6942
|
| 535 |
+
matplotlib/testing/__init__.pyi,sha256=ffqfetWzyCVrSx7BlnoxCmbgIaZg2x57nDrq9eucRk0,1752
|
| 536 |
+
matplotlib/testing/__pycache__/__init__.cpython-310.pyc,,
|
| 537 |
+
matplotlib/testing/__pycache__/_markers.cpython-310.pyc,,
|
| 538 |
+
matplotlib/testing/__pycache__/compare.cpython-310.pyc,,
|
| 539 |
+
matplotlib/testing/__pycache__/conftest.cpython-310.pyc,,
|
| 540 |
+
matplotlib/testing/__pycache__/decorators.cpython-310.pyc,,
|
| 541 |
+
matplotlib/testing/__pycache__/exceptions.cpython-310.pyc,,
|
| 542 |
+
matplotlib/testing/__pycache__/widgets.cpython-310.pyc,,
|
| 543 |
+
matplotlib/testing/_markers.py,sha256=0iNyOi25XLv_gTfSUqiRizdSqJzozePPBMRo72H2Je4,1419
|
| 544 |
+
matplotlib/testing/compare.py,sha256=d4lEAmi-C0rCxLrELwfiQezOthqEgnhvuKeIskYim0Q,19332
|
| 545 |
+
matplotlib/testing/compare.pyi,sha256=xlJ4chgXKe567NUavlu-dalyPr4wAQUbd2Fz6aK_JII,1192
|
| 546 |
+
matplotlib/testing/conftest.py,sha256=-boEzYRlszzHJ2T9ZJq5qu8B38BlJ2hNpkzpIRGCSsA,3669
|
| 547 |
+
matplotlib/testing/conftest.pyi,sha256=4_MStQN6gy_h0YfhlPbqR81QVeVcn-FRqaKyyXedUEk,332
|
| 548 |
+
matplotlib/testing/decorators.py,sha256=viNGSCIQ9Ul_wjMCjrm-ebC_BClwU1Zkhxww6dq1m2k,18021
|
| 549 |
+
matplotlib/testing/decorators.pyi,sha256=0fSpdLBtEH7ZP_trVJ7RPxNtOX9sJ_z-MkNsbUxF8nM,872
|
| 550 |
+
matplotlib/testing/exceptions.py,sha256=72QmjiHG7DwxSvlJf8mei-hRit5AH3NKh0-osBo4YbY,138
|
| 551 |
+
matplotlib/testing/jpl_units/Duration.py,sha256=9FMBu9uj6orCWtf23cf6_9HCFUC50xAHrCzaxATwQfM,3966
|
| 552 |
+
matplotlib/testing/jpl_units/Epoch.py,sha256=-FGxeq-VvCS9GVPwOEE5ind_G4Tl9ztD-gYcW9CWzjo,6100
|
| 553 |
+
matplotlib/testing/jpl_units/EpochConverter.py,sha256=fhWjyP567bzcTU_oNuJJpucoolqS88Nt-yEFg1-3yEk,2944
|
| 554 |
+
matplotlib/testing/jpl_units/StrConverter.py,sha256=codGw9b_Zc-MG_YK4CiyMrnMR8ahR9hw836O2SsV8QI,2865
|
| 555 |
+
matplotlib/testing/jpl_units/UnitDbl.py,sha256=EABjyEK4MVouyvlwi_9KdYDg-qbYY3aLHoUjRw37Fb0,5882
|
| 556 |
+
matplotlib/testing/jpl_units/UnitDblConverter.py,sha256=B8DssrQVyC4mwvSFP78cGL0vCnZgVhDaAbZE-jsXLUg,2828
|
| 557 |
+
matplotlib/testing/jpl_units/UnitDblFormatter.py,sha256=246hgA4_pCfJm-P94hEsxqnTS9t0XlvLC8p1v_bw2pU,657
|
| 558 |
+
matplotlib/testing/jpl_units/__init__.py,sha256=p__9RUwrt2LJ2eoT2JPM-42XLxSJrfA4az3rN5uP6d4,2684
|
| 559 |
+
matplotlib/testing/jpl_units/__pycache__/Duration.cpython-310.pyc,,
|
| 560 |
+
matplotlib/testing/jpl_units/__pycache__/Epoch.cpython-310.pyc,,
|
| 561 |
+
matplotlib/testing/jpl_units/__pycache__/EpochConverter.cpython-310.pyc,,
|
| 562 |
+
matplotlib/testing/jpl_units/__pycache__/StrConverter.cpython-310.pyc,,
|
| 563 |
+
matplotlib/testing/jpl_units/__pycache__/UnitDbl.cpython-310.pyc,,
|
| 564 |
+
matplotlib/testing/jpl_units/__pycache__/UnitDblConverter.cpython-310.pyc,,
|
| 565 |
+
matplotlib/testing/jpl_units/__pycache__/UnitDblFormatter.cpython-310.pyc,,
|
| 566 |
+
matplotlib/testing/jpl_units/__pycache__/__init__.cpython-310.pyc,,
|
| 567 |
+
matplotlib/testing/widgets.py,sha256=d5wWO4ulIBFj0ecOiuxqTTDInuYI6-1MSQp0SX9HG7c,3471
|
| 568 |
+
matplotlib/testing/widgets.pyi,sha256=Ioau7Q2aPRDZLx8hze2DOe3E1vn7QPxePC74WMR7tFc,831
|
| 569 |
+
matplotlib/tests/__init__.py,sha256=XyXveEAxafB87gnbx0jkC0MggzKO8FvORq_6RtJRwo4,366
|
| 570 |
+
matplotlib/tests/__pycache__/__init__.cpython-310.pyc,,
|
| 571 |
+
matplotlib/tests/__pycache__/conftest.cpython-310.pyc,,
|
| 572 |
+
matplotlib/tests/__pycache__/test_afm.cpython-310.pyc,,
|
| 573 |
+
matplotlib/tests/__pycache__/test_agg.cpython-310.pyc,,
|
| 574 |
+
matplotlib/tests/__pycache__/test_agg_filter.cpython-310.pyc,,
|
| 575 |
+
matplotlib/tests/__pycache__/test_animation.cpython-310.pyc,,
|
| 576 |
+
matplotlib/tests/__pycache__/test_api.cpython-310.pyc,,
|
| 577 |
+
matplotlib/tests/__pycache__/test_arrow_patches.cpython-310.pyc,,
|
| 578 |
+
matplotlib/tests/__pycache__/test_artist.cpython-310.pyc,,
|
| 579 |
+
matplotlib/tests/__pycache__/test_axes.cpython-310.pyc,,
|
| 580 |
+
matplotlib/tests/__pycache__/test_axis.cpython-310.pyc,,
|
| 581 |
+
matplotlib/tests/__pycache__/test_backend_bases.cpython-310.pyc,,
|
| 582 |
+
matplotlib/tests/__pycache__/test_backend_cairo.cpython-310.pyc,,
|
| 583 |
+
matplotlib/tests/__pycache__/test_backend_gtk3.cpython-310.pyc,,
|
| 584 |
+
matplotlib/tests/__pycache__/test_backend_macosx.cpython-310.pyc,,
|
| 585 |
+
matplotlib/tests/__pycache__/test_backend_nbagg.cpython-310.pyc,,
|
| 586 |
+
matplotlib/tests/__pycache__/test_backend_pdf.cpython-310.pyc,,
|
| 587 |
+
matplotlib/tests/__pycache__/test_backend_pgf.cpython-310.pyc,,
|
| 588 |
+
matplotlib/tests/__pycache__/test_backend_ps.cpython-310.pyc,,
|
| 589 |
+
matplotlib/tests/__pycache__/test_backend_qt.cpython-310.pyc,,
|
| 590 |
+
matplotlib/tests/__pycache__/test_backend_svg.cpython-310.pyc,,
|
| 591 |
+
matplotlib/tests/__pycache__/test_backend_template.cpython-310.pyc,,
|
| 592 |
+
matplotlib/tests/__pycache__/test_backend_tk.cpython-310.pyc,,
|
| 593 |
+
matplotlib/tests/__pycache__/test_backend_tools.cpython-310.pyc,,
|
| 594 |
+
matplotlib/tests/__pycache__/test_backend_webagg.cpython-310.pyc,,
|
| 595 |
+
matplotlib/tests/__pycache__/test_backends_interactive.cpython-310.pyc,,
|
| 596 |
+
matplotlib/tests/__pycache__/test_basic.cpython-310.pyc,,
|
| 597 |
+
matplotlib/tests/__pycache__/test_bbox_tight.cpython-310.pyc,,
|
| 598 |
+
matplotlib/tests/__pycache__/test_category.cpython-310.pyc,,
|
| 599 |
+
matplotlib/tests/__pycache__/test_cbook.cpython-310.pyc,,
|
| 600 |
+
matplotlib/tests/__pycache__/test_collections.cpython-310.pyc,,
|
| 601 |
+
matplotlib/tests/__pycache__/test_colorbar.cpython-310.pyc,,
|
| 602 |
+
matplotlib/tests/__pycache__/test_colors.cpython-310.pyc,,
|
| 603 |
+
matplotlib/tests/__pycache__/test_compare_images.cpython-310.pyc,,
|
| 604 |
+
matplotlib/tests/__pycache__/test_constrainedlayout.cpython-310.pyc,,
|
| 605 |
+
matplotlib/tests/__pycache__/test_container.cpython-310.pyc,,
|
| 606 |
+
matplotlib/tests/__pycache__/test_contour.cpython-310.pyc,,
|
| 607 |
+
matplotlib/tests/__pycache__/test_cycles.cpython-310.pyc,,
|
| 608 |
+
matplotlib/tests/__pycache__/test_dates.cpython-310.pyc,,
|
| 609 |
+
matplotlib/tests/__pycache__/test_datetime.cpython-310.pyc,,
|
| 610 |
+
matplotlib/tests/__pycache__/test_determinism.cpython-310.pyc,,
|
| 611 |
+
matplotlib/tests/__pycache__/test_doc.cpython-310.pyc,,
|
| 612 |
+
matplotlib/tests/__pycache__/test_dviread.cpython-310.pyc,,
|
| 613 |
+
matplotlib/tests/__pycache__/test_figure.cpython-310.pyc,,
|
| 614 |
+
matplotlib/tests/__pycache__/test_font_manager.cpython-310.pyc,,
|
| 615 |
+
matplotlib/tests/__pycache__/test_fontconfig_pattern.cpython-310.pyc,,
|
| 616 |
+
matplotlib/tests/__pycache__/test_ft2font.cpython-310.pyc,,
|
| 617 |
+
matplotlib/tests/__pycache__/test_getattr.cpython-310.pyc,,
|
| 618 |
+
matplotlib/tests/__pycache__/test_gridspec.cpython-310.pyc,,
|
| 619 |
+
matplotlib/tests/__pycache__/test_image.cpython-310.pyc,,
|
| 620 |
+
matplotlib/tests/__pycache__/test_legend.cpython-310.pyc,,
|
| 621 |
+
matplotlib/tests/__pycache__/test_lines.cpython-310.pyc,,
|
| 622 |
+
matplotlib/tests/__pycache__/test_marker.cpython-310.pyc,,
|
| 623 |
+
matplotlib/tests/__pycache__/test_mathtext.cpython-310.pyc,,
|
| 624 |
+
matplotlib/tests/__pycache__/test_matplotlib.cpython-310.pyc,,
|
| 625 |
+
matplotlib/tests/__pycache__/test_mlab.cpython-310.pyc,,
|
| 626 |
+
matplotlib/tests/__pycache__/test_offsetbox.cpython-310.pyc,,
|
| 627 |
+
matplotlib/tests/__pycache__/test_patches.cpython-310.pyc,,
|
| 628 |
+
matplotlib/tests/__pycache__/test_path.cpython-310.pyc,,
|
| 629 |
+
matplotlib/tests/__pycache__/test_patheffects.cpython-310.pyc,,
|
| 630 |
+
matplotlib/tests/__pycache__/test_pickle.cpython-310.pyc,,
|
| 631 |
+
matplotlib/tests/__pycache__/test_png.cpython-310.pyc,,
|
| 632 |
+
matplotlib/tests/__pycache__/test_polar.cpython-310.pyc,,
|
| 633 |
+
matplotlib/tests/__pycache__/test_preprocess_data.cpython-310.pyc,,
|
| 634 |
+
matplotlib/tests/__pycache__/test_pyplot.cpython-310.pyc,,
|
| 635 |
+
matplotlib/tests/__pycache__/test_quiver.cpython-310.pyc,,
|
| 636 |
+
matplotlib/tests/__pycache__/test_rcparams.cpython-310.pyc,,
|
| 637 |
+
matplotlib/tests/__pycache__/test_sankey.cpython-310.pyc,,
|
| 638 |
+
matplotlib/tests/__pycache__/test_scale.cpython-310.pyc,,
|
| 639 |
+
matplotlib/tests/__pycache__/test_simplification.cpython-310.pyc,,
|
| 640 |
+
matplotlib/tests/__pycache__/test_skew.cpython-310.pyc,,
|
| 641 |
+
matplotlib/tests/__pycache__/test_sphinxext.cpython-310.pyc,,
|
| 642 |
+
matplotlib/tests/__pycache__/test_spines.cpython-310.pyc,,
|
| 643 |
+
matplotlib/tests/__pycache__/test_streamplot.cpython-310.pyc,,
|
| 644 |
+
matplotlib/tests/__pycache__/test_style.cpython-310.pyc,,
|
| 645 |
+
matplotlib/tests/__pycache__/test_subplots.cpython-310.pyc,,
|
| 646 |
+
matplotlib/tests/__pycache__/test_table.cpython-310.pyc,,
|
| 647 |
+
matplotlib/tests/__pycache__/test_testing.cpython-310.pyc,,
|
| 648 |
+
matplotlib/tests/__pycache__/test_texmanager.cpython-310.pyc,,
|
| 649 |
+
matplotlib/tests/__pycache__/test_text.cpython-310.pyc,,
|
| 650 |
+
matplotlib/tests/__pycache__/test_textpath.cpython-310.pyc,,
|
| 651 |
+
matplotlib/tests/__pycache__/test_ticker.cpython-310.pyc,,
|
| 652 |
+
matplotlib/tests/__pycache__/test_tightlayout.cpython-310.pyc,,
|
| 653 |
+
matplotlib/tests/__pycache__/test_transforms.cpython-310.pyc,,
|
| 654 |
+
matplotlib/tests/__pycache__/test_triangulation.cpython-310.pyc,,
|
| 655 |
+
matplotlib/tests/__pycache__/test_ttconv.cpython-310.pyc,,
|
| 656 |
+
matplotlib/tests/__pycache__/test_type1font.cpython-310.pyc,,
|
| 657 |
+
matplotlib/tests/__pycache__/test_units.cpython-310.pyc,,
|
| 658 |
+
matplotlib/tests/__pycache__/test_usetex.cpython-310.pyc,,
|
| 659 |
+
matplotlib/tests/__pycache__/test_widgets.cpython-310.pyc,,
|
| 660 |
+
matplotlib/tests/conftest.py,sha256=HNR8xF4YiUoKY03WKoeABGwSRcKFMwI9cNFXZJDzz-A,119
|
| 661 |
+
matplotlib/tests/test_afm.py,sha256=A7jm2o-QaQH9SSpiFxGtZkbVU0LJZE69jfPv7RczOD4,3701
|
| 662 |
+
matplotlib/tests/test_agg.py,sha256=BwRu6BuTWPZYsc2YxcfllV9cvZ7WPbCe36Alhmkr-6k,10740
|
| 663 |
+
matplotlib/tests/test_agg_filter.py,sha256=3c_Smtb4OHEOfdMFCOb2qKhzMXSbNoaUtsJ0pW47Q44,1067
|
| 664 |
+
matplotlib/tests/test_animation.py,sha256=gwxe9pC1Jv00TjusWvgYiX32E1xMxGejSRkwqAoxuPY,17743
|
| 665 |
+
matplotlib/tests/test_api.py,sha256=fTw5hpYH_N_2YeoYcKJwLwFwn4LXDAOy-ZgvyWwU6x4,3503
|
| 666 |
+
matplotlib/tests/test_arrow_patches.py,sha256=wzczYyoF_YWuj5DjbNJ7iyAfWSkMXPYB1AjIoEEqoCM,6571
|
| 667 |
+
matplotlib/tests/test_artist.py,sha256=9ZQ82ZP4PKIuzucDD45phJZBDnPJkdbcPeHzrGNhHF8,17433
|
| 668 |
+
matplotlib/tests/test_axes.py,sha256=vK364YRsN0kibDJQ07YtgmECBZymxeLy1AkD4tEPNRs,306413
|
| 669 |
+
matplotlib/tests/test_axis.py,sha256=ecaZ66ng6NkwrffxyEug9GzEx4YouY49xamqyvrJ0kA,268
|
| 670 |
+
matplotlib/tests/test_backend_bases.py,sha256=CDYfkBSD9xji68S6ytx5pSg1QwF3RGLOv5WSZW6lS1Q,22631
|
| 671 |
+
matplotlib/tests/test_backend_cairo.py,sha256=O2LTYjsfPn__bKtTz4MGGBodpSshoPkzu0INsc18xmI,1821
|
| 672 |
+
matplotlib/tests/test_backend_gtk3.py,sha256=6i9wimlBue9Tb-i_UyjMt_MdP9Z-SoOCXy5Tz64hK3Q,1739
|
| 673 |
+
matplotlib/tests/test_backend_macosx.py,sha256=IgWMoxDqDP9du5w8iRrDygHgiuCQi4EgEsPXpVw3DWA,1723
|
| 674 |
+
matplotlib/tests/test_backend_nbagg.py,sha256=o6ON7tt_LOW7wzg4StIMYuTgMFSPNWt1FOv2FFMIefk,1459
|
| 675 |
+
matplotlib/tests/test_backend_pdf.py,sha256=G9ppQYISSVHpyEHShmzP-ItYc4W8wq2KnyZ8LWh9JYE,15145
|
| 676 |
+
matplotlib/tests/test_backend_pgf.py,sha256=ai6Pr61a4_Dx826wo_vJGXYxI1N7ZtzBbx0TIMnwHog,13230
|
| 677 |
+
matplotlib/tests/test_backend_ps.py,sha256=SxQYqNKDFNOhtifKw02qx95LeHFOcCiHZIbaNGsEMH8,12572
|
| 678 |
+
matplotlib/tests/test_backend_qt.py,sha256=A1LntIOeismjmqels6bKt9LOiT9Z4lS-pxo1MG0Rw2I,12350
|
| 679 |
+
matplotlib/tests/test_backend_svg.py,sha256=zChB85qffPQ9KmFQQ1OCZH0F3GhqVuZiu8Ac_MjXADw,21053
|
| 680 |
+
matplotlib/tests/test_backend_template.py,sha256=uuE7oZ9pSBVDWrPL05B0WgCFsgv6HlXyetuPTfJn6a8,2184
|
| 681 |
+
matplotlib/tests/test_backend_tk.py,sha256=0xWzougpgqIMXVbgczboBhoM2cmEmV7kKeogw5n5M0M,8303
|
| 682 |
+
matplotlib/tests/test_backend_tools.py,sha256=C-B7NCkyWsQ5KzQEnI5Be16DsAHHZJU9P5v9--wsF-o,501
|
| 683 |
+
matplotlib/tests/test_backend_webagg.py,sha256=4Oc-z7w-mTGETB1x0FQ_gZP9qHfyWh5lwWc9qPkkisc,938
|
| 684 |
+
matplotlib/tests/test_backends_interactive.py,sha256=y2okqMnc2Gezln5DDH8TjhJTBg1WmPUSy1KjPSFx4l4,28022
|
| 685 |
+
matplotlib/tests/test_basic.py,sha256=8XmkUXa8LgZO-BXqo5AusB4beRBVBKl52kFdOrS_2Po,1133
|
| 686 |
+
matplotlib/tests/test_bbox_tight.py,sha256=y08219QyXHk1KINciiFLiMIm4xVbCfhLe1Ch9rpV7jE,6313
|
| 687 |
+
matplotlib/tests/test_category.py,sha256=S6Y681G-wU1R10GCdtDMmR6fbVGURSLzFOWu0SNkON8,11700
|
| 688 |
+
matplotlib/tests/test_cbook.py,sha256=cnygK9Dotacl5IOHFCwVxkJ3wAZJ3RkZb3mNewSXyRg,31419
|
| 689 |
+
matplotlib/tests/test_collections.py,sha256=YKvxQCIXqEeh6e67N_UV-qMbUeWKJECDOLj5-mBpXjw,46689
|
| 690 |
+
matplotlib/tests/test_colorbar.py,sha256=EJKhhIA79JmAi2D9vAh3PK6Uujdvrm16usb4oGhPdqc,46648
|
| 691 |
+
matplotlib/tests/test_colors.py,sha256=4MejF3jWuDTad8kL9NeIgvbT4-ysTF1MhL1f2Rwo070,60244
|
| 692 |
+
matplotlib/tests/test_compare_images.py,sha256=NcBoT8HAxtzoR1zZBu0V3MFpGWtdFaDblQ8o3OTO6zM,3260
|
| 693 |
+
matplotlib/tests/test_constrainedlayout.py,sha256=hQml8aHHoma6stcX0tUnWxeKbhHfma3ExJEoRY_zwc4,22737
|
| 694 |
+
matplotlib/tests/test_container.py,sha256=FTewckOd3dJqLOzEUa29Itjqusk7Mx7MK5xPVMhzMmc,694
|
| 695 |
+
matplotlib/tests/test_contour.py,sha256=K9lrTYw8tux3Kce5Dw3ugDTdKZ4u2nxQ1mQLNSuqmBc,32930
|
| 696 |
+
matplotlib/tests/test_cycles.py,sha256=3KyRmWH29WUgvIXUT06tKVDNCfDWqxuxlLueIp-FIl0,5996
|
| 697 |
+
matplotlib/tests/test_dates.py,sha256=l9LbiYzmF-zlvwD2QdGBbWGgJNF94gRHhsYKLzIjI18,55944
|
| 698 |
+
matplotlib/tests/test_datetime.py,sha256=_sh6R405rrZHce-WgH9GLcjLHXwTLpIPvVUs7BUQaCM,32621
|
| 699 |
+
matplotlib/tests/test_determinism.py,sha256=gsz-JIDkSBev0Mm-bE1jxvsh1V1UJ_lRK-QCVeO-P_s,4626
|
| 700 |
+
matplotlib/tests/test_doc.py,sha256=K6HhdRcHRUNNC0iIhxBLCq5tOqxqHBSvanHxXg5w5iI,1015
|
| 701 |
+
matplotlib/tests/test_dviread.py,sha256=JeTuA2FMUj1FddxDVBXUtnvZYTgztE-CyRXL_mI20P0,2764
|
| 702 |
+
matplotlib/tests/test_figure.py,sha256=9sUvk9A5VZQivMeiphTsrmm3g9eDuuiojtO-1-awSzE,58430
|
| 703 |
+
matplotlib/tests/test_font_manager.py,sha256=tHeeojRH-zC2fIcSziFi-j_nzPDm3qbPdUl9CGOrNek,12222
|
| 704 |
+
matplotlib/tests/test_fontconfig_pattern.py,sha256=LSR6lWF_0cVOshkGiflYaTCLcISRIJM6mjXm5QtDjX4,2168
|
| 705 |
+
matplotlib/tests/test_ft2font.py,sha256=vvc6OOHPkVDwTaOQVP2kt9H1_scFZeOWBTb8zdSrVn8,4469
|
| 706 |
+
matplotlib/tests/test_getattr.py,sha256=Tl_H1zpwLdSIVutc4vi-QwDCeWPzBGpN31N9ItzTkeQ,1090
|
| 707 |
+
matplotlib/tests/test_gridspec.py,sha256=SYJuJucA_PyQ2Rsov1RaNhadOEWGDcMbQcVFrWIoy3I,1580
|
| 708 |
+
matplotlib/tests/test_image.py,sha256=kU0we_NRlVWgZ6OjvrHbHbVsMcMZ1nTfbmtYqK3gorY,53038
|
| 709 |
+
matplotlib/tests/test_legend.py,sha256=h_iKOlVolZKRT3lSF88bb8yR1QJW-N2A6ewWMsx1_xc,54884
|
| 710 |
+
matplotlib/tests/test_lines.py,sha256=wm4Edxli11yZ8wS_N4zaSPeXccThmh87lJEtFK7Whak,14427
|
| 711 |
+
matplotlib/tests/test_marker.py,sha256=w0WVHoaD-6iybjUSENoVFFdUOOR13943JcE4sgz3qhI,11410
|
| 712 |
+
matplotlib/tests/test_mathtext.py,sha256=SMzfo3HbfslCw7EmVYaWZgw975K0hMtjw6n0BQqn6pk,24513
|
| 713 |
+
matplotlib/tests/test_matplotlib.py,sha256=YPBZQdO6BEC4mPKxXD_W-HoFzoOZwGGifYrYdCDcy48,2887
|
| 714 |
+
matplotlib/tests/test_mlab.py,sha256=d4qMyogTFMrvlRZEpDs7SjhSmmCnBUMNgSX2bJU6eDk,42269
|
| 715 |
+
matplotlib/tests/test_offsetbox.py,sha256=_QeANIzM3oAlyx8RB8KO6-y1v7nBsIHV0DDOrLjymMI,16119
|
| 716 |
+
matplotlib/tests/test_patches.py,sha256=Da97JR1rG_Y__5iSMurf5S4XJlBJumR6CuWrKPDSjfU,31971
|
| 717 |
+
matplotlib/tests/test_path.py,sha256=xJgfg1wQ0AZdTX3fFEh4Qy37Wozx7yY0pzfOqSml2V0,19247
|
| 718 |
+
matplotlib/tests/test_patheffects.py,sha256=IqFuGi0wBB5ivyKAr2d4w_St48sbyuLVOSBmDK8FZWM,8089
|
| 719 |
+
matplotlib/tests/test_pickle.py,sha256=etOZ-QcYF15jmUJpzRzbhBZ90qL9Mb3VOYCAnQ3RyWs,9607
|
| 720 |
+
matplotlib/tests/test_png.py,sha256=xyXs9STg5WyoKCeqyK7zNoj5OGYlkJZIwP_GMIJqLTA,1240
|
| 721 |
+
matplotlib/tests/test_polar.py,sha256=NPrQ1BCLfcaJJYRc6dK84kfTxyBsHaTjet9_JenewVs,15578
|
| 722 |
+
matplotlib/tests/test_preprocess_data.py,sha256=cIVICUi1iahMQS30sqI5IlT2RYJRH2gJ0z60FyuYUFk,11363
|
| 723 |
+
matplotlib/tests/test_pyplot.py,sha256=b3ryM3bPeyZ3KYivwexyTbJbt6u27cTFKKKu6q17CCU,13077
|
| 724 |
+
matplotlib/tests/test_quiver.py,sha256=ABpTj72peaKpeSs-UgT1NTD3njMtVrvJ5aNDozpH_P4,10105
|
| 725 |
+
matplotlib/tests/test_rcparams.py,sha256=45FgTqVL72-fDBmoKqQ79opqwYFfhsQCVG-3raRj28k,25198
|
| 726 |
+
matplotlib/tests/test_sankey.py,sha256=yg4i-qHT5MljFzFGViOnHbMkumM8bhPwRgoQ5M6CUEs,3900
|
| 727 |
+
matplotlib/tests/test_scale.py,sha256=3jUrfVsyxRE9FpmtWDC-ySo04E26s-ahDL9O3iKeEpQ,8411
|
| 728 |
+
matplotlib/tests/test_simplification.py,sha256=rq5RGw8dSwhCXEr-kUnCqLot_UUGH2JD30xZiIc0RN4,18869
|
| 729 |
+
matplotlib/tests/test_skew.py,sha256=vraGslq4buDkaugNIhK96K6BCswlJ-9ar-vpxFLA-eY,6340
|
| 730 |
+
matplotlib/tests/test_sphinxext.py,sha256=N-mey5MZWVaLxbN1wPvwqisV-u2ewvp9mA0uFQaPSEo,9724
|
| 731 |
+
matplotlib/tests/test_spines.py,sha256=q61XCKIySvm32S3imHA3SR5vVRGFVo-VUCx_LpKN_Fc,4893
|
| 732 |
+
matplotlib/tests/test_streamplot.py,sha256=FeZdKlfXvywlaM_YJp57IPRY-TNji5rklU4UgU1bmro,5723
|
| 733 |
+
matplotlib/tests/test_style.py,sha256=sd6rMLpPBS1hinR2svI1rXZmnXUnMQk1szxSNBUXtzU,6509
|
| 734 |
+
matplotlib/tests/test_subplots.py,sha256=OMgOqLT00zm6KD62jx5iiUJasCRVBU1K8G-6jmjBFiI,10766
|
| 735 |
+
matplotlib/tests/test_table.py,sha256=4H3-8JDKhcev4_lLSLm_HoJdYZuE29T2wm83iicbmos,8103
|
| 736 |
+
matplotlib/tests/test_testing.py,sha256=eh-1r4PIXcM7hfSKCNTU899QxRYWhZBg6W7x0TDVUxo,1057
|
| 737 |
+
matplotlib/tests/test_texmanager.py,sha256=j_5ZG02ztIO-m0oXzd31a13YFw_G7JR7Ldt3fwf-phI,2647
|
| 738 |
+
matplotlib/tests/test_text.py,sha256=7kfcbyqL4uAxHGQl7WgV4RyPTnjAd8Y4zCS2M6tSZVM,38473
|
| 739 |
+
matplotlib/tests/test_textpath.py,sha256=WLXvT5OzE6Tew4pr87LH-cgioCzM7srgMNRemiMEC5o,271
|
| 740 |
+
matplotlib/tests/test_ticker.py,sha256=ncU6yN3mcFpu2HjjjlPZHu230NNfEVyCClxbCx2wNuU,71991
|
| 741 |
+
matplotlib/tests/test_tightlayout.py,sha256=Hzv2oivfF_ajK2VS1yCZqUV0GsOcyYWSPcb5WsClHqo,12731
|
| 742 |
+
matplotlib/tests/test_transforms.py,sha256=MTsHEjZEWW63BnFgoAIgjElBdQ42x5DaVgpkGoL8U_g,46700
|
| 743 |
+
matplotlib/tests/test_triangulation.py,sha256=SlOePrPHzlwKiK9GIOXFkYEvsoO6oOSv3Cwq8ZxjMeI,54943
|
| 744 |
+
matplotlib/tests/test_ttconv.py,sha256=yW3YkGWTh-h9KXcyy70dEH4ytVuhMlzl-HMsNbK_gX8,540
|
| 745 |
+
matplotlib/tests/test_type1font.py,sha256=7TUXy8ehA3el-zvd4U9bnocYbelssDhUeph5cOFoaE4,6369
|
| 746 |
+
matplotlib/tests/test_units.py,sha256=B_4KZi4QE3M-5BXIxvz2Q2iU20II36LJp-XSeyfefyc,10039
|
| 747 |
+
matplotlib/tests/test_usetex.py,sha256=a-Y6NuyROPHDGP2ELsOZNSVwBUoGtAv1xQZfisl9lSE,6405
|
| 748 |
+
matplotlib/tests/test_widgets.py,sha256=RB8RBow51kNGGk1adppF6yQ-bmxSm0akNBTKBrPBL0U,67025
|
| 749 |
+
matplotlib/texmanager.py,sha256=zbnzSYgmoyTB3rapePXvbH9CrLMmxIL3GEPnV2KN1Ys,15098
|
| 750 |
+
matplotlib/texmanager.pyi,sha256=di3gbC9muXKTo5VCrW5ye-e19A1mrOl8e8lvI3b904A,1116
|
| 751 |
+
matplotlib/text.py,sha256=POLIW_kNgJJeuhbz4IgIXTW0MkQLVHgANHXSjVw1dbc,70583
|
| 752 |
+
matplotlib/text.pyi,sha256=LGMi0PLN7hlWeNVyS57bePXGjpXWhIy1AqyS2h7mCak,8027
|
| 753 |
+
matplotlib/textpath.py,sha256=TUyF7xSUzj-6_agCuGl-8kX57hBqsGZIROMHwWAZ1ro,13254
|
| 754 |
+
matplotlib/textpath.pyi,sha256=rqOeTAeQYgm2b2NpetrEX0gMF8PzzW43xS5mNfUA98M,2529
|
| 755 |
+
matplotlib/ticker.py,sha256=M2nHTXOYmNDaXjpcfom68iAH5zkRzzWO3D4Tyb2YLUM,104581
|
| 756 |
+
matplotlib/ticker.pyi,sha256=konxZrZgNRz8PpaEHadIVa0WSIdRh5ORisDEuaUzSbA,10208
|
| 757 |
+
matplotlib/transforms.py,sha256=rfr3PQ8jEyscsXPQrGCbGE3gbTvzNi31Xc9-x0ACVKM,100003
|
| 758 |
+
matplotlib/transforms.pyi,sha256=E_I9VfgTtA3Df2mUROfwG-gyvccJ4KOCp3nFt1qWixc,11978
|
| 759 |
+
matplotlib/tri/__init__.py,sha256=asnfefKRpJv7sGbfddCMybnJInVDPwgph7g0mpoh2u4,820
|
| 760 |
+
matplotlib/tri/__pycache__/__init__.cpython-310.pyc,,
|
| 761 |
+
matplotlib/tri/__pycache__/_triangulation.cpython-310.pyc,,
|
| 762 |
+
matplotlib/tri/__pycache__/_tricontour.cpython-310.pyc,,
|
| 763 |
+
matplotlib/tri/__pycache__/_trifinder.cpython-310.pyc,,
|
| 764 |
+
matplotlib/tri/__pycache__/_triinterpolate.cpython-310.pyc,,
|
| 765 |
+
matplotlib/tri/__pycache__/_tripcolor.cpython-310.pyc,,
|
| 766 |
+
matplotlib/tri/__pycache__/_triplot.cpython-310.pyc,,
|
| 767 |
+
matplotlib/tri/__pycache__/_trirefine.cpython-310.pyc,,
|
| 768 |
+
matplotlib/tri/__pycache__/_tritools.cpython-310.pyc,,
|
| 769 |
+
matplotlib/tri/_triangulation.py,sha256=Ur2lKMOx4NrZxwyi0hBeBnVzicuKaCke0NkrZneSklM,9784
|
| 770 |
+
matplotlib/tri/_triangulation.pyi,sha256=pVw1rvpIcl00p7V7E9GcvJSqQWyoxlZXX_p0_VSxTiY,1017
|
| 771 |
+
matplotlib/tri/_tricontour.py,sha256=HFekvmC3eIUG1kw3O6NnyBHSRYjyF8pWqrIXbK53RoA,10239
|
| 772 |
+
matplotlib/tri/_tricontour.pyi,sha256=jnsAmVRX0-FOUw9ptUgci9J4T4JQRloKeH8fh8aAi-o,1155
|
| 773 |
+
matplotlib/tri/_trifinder.py,sha256=3gUzJZDIwfdsSJUE8hIKso9e1-UGvynUN9HxaqC1EEc,3522
|
| 774 |
+
matplotlib/tri/_trifinder.pyi,sha256=dXcZucacAS3Ch6nrDBPh2e3LYZLfZ7VwqpBUBb-vMPo,405
|
| 775 |
+
matplotlib/tri/_triinterpolate.py,sha256=4FtyJSoJpHcFxkSkZHZ1aNengVNWqVKF4l78PgCH8O0,62445
|
| 776 |
+
matplotlib/tri/_triinterpolate.pyi,sha256=SPuetoGqDlE5jo48yQQazqTY4NfcQ3_2ZYqEE6LFkTw,964
|
| 777 |
+
matplotlib/tri/_tripcolor.py,sha256=3j5J67vO3HuTAfnaZm93wyilpmEX-bX4eiJNAsbOZJM,6275
|
| 778 |
+
matplotlib/tri/_tripcolor.pyi,sha256=QsA-A2ohj3r_tAElt2-9pzi47JiU01tNlRPDIptqnh4,1781
|
| 779 |
+
matplotlib/tri/_triplot.py,sha256=jlHSz36Z5S18zBKc639PlSqdhfl7jHol8ExlddJuDI4,3102
|
| 780 |
+
matplotlib/tri/_triplot.pyi,sha256=9USU-BfitrcdQE8yWOUlBX59QBNoHCWivDon9JbDQ0k,446
|
| 781 |
+
matplotlib/tri/_trirefine.py,sha256=NG8bsDhZ5EOxMT-MsEWzJm11ZR3_8CAYHlG53IGi0ps,13178
|
| 782 |
+
matplotlib/tri/_trirefine.pyi,sha256=J_PmjbeI6UbLaeecgj1OCvGe_sr9UUsNK9NGBSlQ320,1056
|
| 783 |
+
matplotlib/tri/_tritools.py,sha256=wC9KVE6UqkWVHpyW9FU4hQdqRVRVmJlhaBF1EXsaD8U,10575
|
| 784 |
+
matplotlib/tri/_tritools.pyi,sha256=XWwwvH2nIAmH8k59aRjnLBVQbTwKvd_FzdsRNASCJMw,402
|
| 785 |
+
matplotlib/typing.py,sha256=CaCkp84zE_7aDG_Ee6mZfI5k4LG60f354orvBrIvLLg,2098
|
| 786 |
+
matplotlib/units.py,sha256=7O-llc8k3GpdotUs2tWcEGgoUHHX-Y7o0R7f-1Jve3k,6429
|
| 787 |
+
matplotlib/widgets.py,sha256=nzcLR5-PaH2KUfLW9V_G38OeEc5wx1VX5m4afv4HMCQ,151735
|
| 788 |
+
matplotlib/widgets.pyi,sha256=rZjyEMCNKR8Xz-igAZj7rxh4ZoOqUzis3SuEIV6qSKs,15375
|
| 789 |
+
mpl_toolkits/axes_grid1/__init__.py,sha256=wiuUCQo1g20SW5T3mFOmI9dGCJY6aDmglpQw5DfszEU,371
|
| 790 |
+
mpl_toolkits/axes_grid1/__pycache__/__init__.cpython-310.pyc,,
|
| 791 |
+
mpl_toolkits/axes_grid1/__pycache__/anchored_artists.cpython-310.pyc,,
|
| 792 |
+
mpl_toolkits/axes_grid1/__pycache__/axes_divider.cpython-310.pyc,,
|
| 793 |
+
mpl_toolkits/axes_grid1/__pycache__/axes_grid.cpython-310.pyc,,
|
| 794 |
+
mpl_toolkits/axes_grid1/__pycache__/axes_rgb.cpython-310.pyc,,
|
| 795 |
+
mpl_toolkits/axes_grid1/__pycache__/axes_size.cpython-310.pyc,,
|
| 796 |
+
mpl_toolkits/axes_grid1/__pycache__/inset_locator.cpython-310.pyc,,
|
| 797 |
+
mpl_toolkits/axes_grid1/__pycache__/mpl_axes.cpython-310.pyc,,
|
| 798 |
+
mpl_toolkits/axes_grid1/__pycache__/parasite_axes.cpython-310.pyc,,
|
| 799 |
+
mpl_toolkits/axes_grid1/anchored_artists.py,sha256=pRyYM69J3iEdIZq5IpbCOQBXD6LbkiE-SPCEh-ZDKw4,19211
|
| 800 |
+
mpl_toolkits/axes_grid1/axes_divider.py,sha256=Q5mdTLc7k5z660u53c-XdfNf_cDSFIGnqp9Tgb3uXJQ,24557
|
| 801 |
+
mpl_toolkits/axes_grid1/axes_grid.py,sha256=4ZOhjLn_29I3Q0QZZbnAjEN7e9MwmW-aydrQC4LqKko,22297
|
| 802 |
+
mpl_toolkits/axes_grid1/axes_rgb.py,sha256=pabgaWJuLTCPw2FlT6Zfy5d0_95CEvaLeosWRTElR98,5227
|
| 803 |
+
mpl_toolkits/axes_grid1/axes_size.py,sha256=ize47FCDCehkvBu1wxoaRt3BRUjubjaQdBjdm92oDZU,7029
|
| 804 |
+
mpl_toolkits/axes_grid1/inset_locator.py,sha256=0FzpYiTGKKHewYFzDGP_giwVm5dMGtdbbDbyjXKqD28,21133
|
| 805 |
+
mpl_toolkits/axes_grid1/mpl_axes.py,sha256=vFCttnj9JIgY3Mt2eOi-O_FVvdZ6SW_sBtIBFib6bz4,4251
|
| 806 |
+
mpl_toolkits/axes_grid1/parasite_axes.py,sha256=T-ve7kZbh3WLKPSr6X7MrFfwN9LaQh71i1ADtJ-Feyk,9416
|
| 807 |
+
mpl_toolkits/axes_grid1/tests/__init__.py,sha256=sKLxL9jEJBX7eh5OumtXSOnTriPrJUkujTHFtnJVFrM,365
|
| 808 |
+
mpl_toolkits/axes_grid1/tests/__pycache__/__init__.cpython-310.pyc,,
|
| 809 |
+
mpl_toolkits/axes_grid1/tests/__pycache__/conftest.cpython-310.pyc,,
|
| 810 |
+
mpl_toolkits/axes_grid1/tests/__pycache__/test_axes_grid1.cpython-310.pyc,,
|
| 811 |
+
mpl_toolkits/axes_grid1/tests/conftest.py,sha256=zB61sy90X97YJ16mIGiuaEAaBIjBEzRAK_qfSCichQM,147
|
| 812 |
+
mpl_toolkits/axes_grid1/tests/test_axes_grid1.py,sha256=VxF-VNnYvad5sqMGMqP0JWbNADCpBtyG8_EO94l5eVc,29401
|
| 813 |
+
mpl_toolkits/axisartist/__init__.py,sha256=RPaNDl22FbmDP7ZRsku1yCqpoNqcclCk0a3rXj3G7fE,631
|
| 814 |
+
mpl_toolkits/axisartist/__pycache__/__init__.cpython-310.pyc,,
|
| 815 |
+
mpl_toolkits/axisartist/__pycache__/angle_helper.cpython-310.pyc,,
|
| 816 |
+
mpl_toolkits/axisartist/__pycache__/axes_divider.cpython-310.pyc,,
|
| 817 |
+
mpl_toolkits/axisartist/__pycache__/axes_grid.cpython-310.pyc,,
|
| 818 |
+
mpl_toolkits/axisartist/__pycache__/axes_rgb.cpython-310.pyc,,
|
| 819 |
+
mpl_toolkits/axisartist/__pycache__/axis_artist.cpython-310.pyc,,
|
| 820 |
+
mpl_toolkits/axisartist/__pycache__/axisline_style.cpython-310.pyc,,
|
| 821 |
+
mpl_toolkits/axisartist/__pycache__/axislines.cpython-310.pyc,,
|
| 822 |
+
mpl_toolkits/axisartist/__pycache__/floating_axes.cpython-310.pyc,,
|
| 823 |
+
mpl_toolkits/axisartist/__pycache__/grid_finder.cpython-310.pyc,,
|
| 824 |
+
mpl_toolkits/axisartist/__pycache__/grid_helper_curvelinear.cpython-310.pyc,,
|
| 825 |
+
mpl_toolkits/axisartist/__pycache__/parasite_axes.cpython-310.pyc,,
|
| 826 |
+
mpl_toolkits/axisartist/angle_helper.py,sha256=-mjKpaR1pLMJuoc0sx0_V3bv0iRPMrpS7r_WI0UYrCc,12952
|
| 827 |
+
mpl_toolkits/axisartist/axes_divider.py,sha256=ltdw9uabafN8MXqTcmtpA2mVFKmDqswCDzPZA6Qp2oo,135
|
| 828 |
+
mpl_toolkits/axisartist/axes_grid.py,sha256=MiF5JTwOy8mKBpicIQk_itM0Mvcaq9-ctdayPR3JQto,593
|
| 829 |
+
mpl_toolkits/axisartist/axes_rgb.py,sha256=gfqcc7N3iAFGfShu1g2516unMj5hvNoeF2YRSJslopQ,532
|
| 830 |
+
mpl_toolkits/axisartist/axis_artist.py,sha256=lzFeyR1RCIvRFv2SCz-FNQHugQjtEMU2rX4fWn7XXnI,38158
|
| 831 |
+
mpl_toolkits/axisartist/axisline_style.py,sha256=9jbDkXEzMQiDHR-lDYKZEvTADtJwt2qlN1cErVUUdx0,6723
|
| 832 |
+
mpl_toolkits/axisartist/axislines.py,sha256=yzP-0k5dkC4jiUmxpADds1Ygl3bPbkCz4c7US_5hs4g,16708
|
| 833 |
+
mpl_toolkits/axisartist/floating_axes.py,sha256=-Zmt33-KlX8h5BXuf_DNE518JV7tOM_A_X7JCae-VkY,10670
|
| 834 |
+
mpl_toolkits/axisartist/grid_finder.py,sha256=Hi2zwnQilavgrqWKScuSRba_WBPqqrbmErGU0XyAsOo,12265
|
| 835 |
+
mpl_toolkits/axisartist/grid_helper_curvelinear.py,sha256=ofN7pPqEMh3r6bSf9eOHkAZEOrmhiNZV-Yig3jozkC4,12349
|
| 836 |
+
mpl_toolkits/axisartist/parasite_axes.py,sha256=Ydi4-0Lbczr6K7Sz1-fRwK4Tm8KlHrOIumx67Xbo_9c,244
|
| 837 |
+
mpl_toolkits/axisartist/tests/__init__.py,sha256=sKLxL9jEJBX7eh5OumtXSOnTriPrJUkujTHFtnJVFrM,365
|
| 838 |
+
mpl_toolkits/axisartist/tests/__pycache__/__init__.cpython-310.pyc,,
|
| 839 |
+
mpl_toolkits/axisartist/tests/__pycache__/conftest.cpython-310.pyc,,
|
| 840 |
+
mpl_toolkits/axisartist/tests/__pycache__/test_angle_helper.cpython-310.pyc,,
|
| 841 |
+
mpl_toolkits/axisartist/tests/__pycache__/test_axis_artist.cpython-310.pyc,,
|
| 842 |
+
mpl_toolkits/axisartist/tests/__pycache__/test_axislines.cpython-310.pyc,,
|
| 843 |
+
mpl_toolkits/axisartist/tests/__pycache__/test_floating_axes.cpython-310.pyc,,
|
| 844 |
+
mpl_toolkits/axisartist/tests/__pycache__/test_grid_finder.cpython-310.pyc,,
|
| 845 |
+
mpl_toolkits/axisartist/tests/__pycache__/test_grid_helper_curvelinear.cpython-310.pyc,,
|
| 846 |
+
mpl_toolkits/axisartist/tests/conftest.py,sha256=zB61sy90X97YJ16mIGiuaEAaBIjBEzRAK_qfSCichQM,147
|
| 847 |
+
mpl_toolkits/axisartist/tests/test_angle_helper.py,sha256=PwhJwBm2kk4uMyhdO5arQs8IlqSX2vN0hvUzI7YHqrw,5670
|
| 848 |
+
mpl_toolkits/axisartist/tests/test_axis_artist.py,sha256=wt3bicVgUPnBX48-dH0Z6hboHgutIgwVpaGkcUZDeVU,2980
|
| 849 |
+
mpl_toolkits/axisartist/tests/test_axislines.py,sha256=fmAVzqSgbLdqtBhq1G0DADySb6Rx5wdgMJUPlfEB-pk,4361
|
| 850 |
+
mpl_toolkits/axisartist/tests/test_floating_axes.py,sha256=l24VB1SLrsJZOMMH2jmBny9ETha4AqAM5KokdGOa5Wk,4083
|
| 851 |
+
mpl_toolkits/axisartist/tests/test_grid_finder.py,sha256=cwQLDOdcJbAY2E7dr8595yzuNh1_Yh80r_O8WGT2hMY,1156
|
| 852 |
+
mpl_toolkits/axisartist/tests/test_grid_helper_curvelinear.py,sha256=OhHej0vCfCjJJknT7yIt4OxZd6OMJCXnFoT3pzqUtTo,7216
|
| 853 |
+
mpl_toolkits/mplot3d/__init__.py,sha256=fH9HdMfFMvjbIWqy2gjQnm2m3ae1CvLiuH6LwKHo0kI,49
|
| 854 |
+
mpl_toolkits/mplot3d/__pycache__/__init__.cpython-310.pyc,,
|
| 855 |
+
mpl_toolkits/mplot3d/__pycache__/art3d.cpython-310.pyc,,
|
| 856 |
+
mpl_toolkits/mplot3d/__pycache__/axes3d.cpython-310.pyc,,
|
| 857 |
+
mpl_toolkits/mplot3d/__pycache__/axis3d.cpython-310.pyc,,
|
| 858 |
+
mpl_toolkits/mplot3d/__pycache__/proj3d.cpython-310.pyc,,
|
| 859 |
+
mpl_toolkits/mplot3d/art3d.py,sha256=i6kAohPCP68d7LUXsuYy6rTMMsX_pGm-NfUxLb5RMzw,43016
|
| 860 |
+
mpl_toolkits/mplot3d/axes3d.py,sha256=_Q_Xj1jqBsjYxt4BqmUfm8QG_QWykvItQdO669-nDIk,141531
|
| 861 |
+
mpl_toolkits/mplot3d/axis3d.py,sha256=VTA4TmBVlsXVqNKYlKGnqsYRRpdaY026eUCdarGKPCk,29809
|
| 862 |
+
mpl_toolkits/mplot3d/proj3d.py,sha256=exvdG39Py5cXCzzfGnLJSvn5MZ-EE-MRRGejMdAW0Aw,6933
|
| 863 |
+
mpl_toolkits/mplot3d/tests/__init__.py,sha256=sKLxL9jEJBX7eh5OumtXSOnTriPrJUkujTHFtnJVFrM,365
|
| 864 |
+
mpl_toolkits/mplot3d/tests/__pycache__/__init__.cpython-310.pyc,,
|
| 865 |
+
mpl_toolkits/mplot3d/tests/__pycache__/conftest.cpython-310.pyc,,
|
| 866 |
+
mpl_toolkits/mplot3d/tests/__pycache__/test_art3d.cpython-310.pyc,,
|
| 867 |
+
mpl_toolkits/mplot3d/tests/__pycache__/test_axes3d.cpython-310.pyc,,
|
| 868 |
+
mpl_toolkits/mplot3d/tests/__pycache__/test_legend3d.cpython-310.pyc,,
|
| 869 |
+
mpl_toolkits/mplot3d/tests/conftest.py,sha256=zB61sy90X97YJ16mIGiuaEAaBIjBEzRAK_qfSCichQM,147
|
| 870 |
+
mpl_toolkits/mplot3d/tests/test_art3d.py,sha256=wpRhsMkGD8HdBCyIXM3SnydJWUlD6I5FRlZJM5xD_5w,1817
|
| 871 |
+
mpl_toolkits/mplot3d/tests/test_axes3d.py,sha256=yQ_H6NOwYcaR1QwQqOeoJ06fUHalk7OU7z3UiA7r9sk,83216
|
| 872 |
+
mpl_toolkits/mplot3d/tests/test_legend3d.py,sha256=A6CWWz3q5VqYu7WRhwALSWMYkPwj941sQ5GErWLdBZ8,4342
|
| 873 |
+
pylab.py,sha256=zUXU0l7e7C5jmDSJbM0GLQxBun3xzuXNf1tuoZYA6Xk,110
|
parrot/lib/python3.10/site-packages/matplotlib-3.9.2.dist-info/REQUESTED
ADDED
|
File without changes
|
parrot/lib/python3.10/site-packages/matplotlib-3.9.2.dist-info/WHEEL
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Wheel-Version: 1.0
|
| 2 |
+
Generator: meson
|
| 3 |
+
Root-Is-Purelib: false
|
| 4 |
+
Tag: cp310-cp310-manylinux_2_17_x86_64
|
| 5 |
+
Tag: cp310-cp310-manylinux2014_x86_64
|
| 6 |
+
|
parrot/lib/python3.10/site-packages/rpds/__init__.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from .rpds import *
|
| 2 |
+
|
| 3 |
+
__doc__ = rpds.__doc__
|
| 4 |
+
if hasattr(rpds, "__all__"):
|
| 5 |
+
__all__ = rpds.__all__
|
parrot/lib/python3.10/site-packages/rpds/__init__.pyi
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from typing import (
|
| 2 |
+
ItemsView,
|
| 3 |
+
Iterable,
|
| 4 |
+
Iterator,
|
| 5 |
+
KeysView,
|
| 6 |
+
Mapping,
|
| 7 |
+
TypeVar,
|
| 8 |
+
ValuesView,
|
| 9 |
+
)
|
| 10 |
+
|
| 11 |
+
_T = TypeVar("_T")
|
| 12 |
+
_KT_co = TypeVar("_KT_co", covariant=True)
|
| 13 |
+
_VT_co = TypeVar("_VT_co", covariant=True)
|
| 14 |
+
_KU_co = TypeVar("_KU_co", covariant=True)
|
| 15 |
+
_VU_co = TypeVar("_VU_co", covariant=True)
|
| 16 |
+
|
| 17 |
+
class HashTrieMap(Mapping[_KT_co, _VT_co]):
|
| 18 |
+
def __init__(
|
| 19 |
+
self,
|
| 20 |
+
value: Mapping[_KT_co, _VT_co] | Iterable[tuple[_KT_co, _VT_co]] = {},
|
| 21 |
+
**kwds: Mapping[_KT_co, _VT_co],
|
| 22 |
+
): ...
|
| 23 |
+
def __getitem__(self, key: _KT_co) -> _VT_co: ...
|
| 24 |
+
def __iter__(self) -> Iterator[_KT_co]: ...
|
| 25 |
+
def __len__(self) -> int: ...
|
| 26 |
+
def discard(self, key: _KT_co) -> HashTrieMap[_KT_co, _VT_co]: ...
|
| 27 |
+
def items(self) -> ItemsView[_KT_co, _VT_co]: ...
|
| 28 |
+
def keys(self) -> KeysView[_KT_co]: ...
|
| 29 |
+
def values(self) -> ValuesView[_VT_co]: ...
|
| 30 |
+
def remove(self, key: _KT_co) -> HashTrieMap[_KT_co, _VT_co]: ...
|
| 31 |
+
def insert(
|
| 32 |
+
self,
|
| 33 |
+
key: _KT_co,
|
| 34 |
+
val: _VT_co,
|
| 35 |
+
) -> HashTrieMap[_KT_co, _VT_co]: ...
|
| 36 |
+
def update(
|
| 37 |
+
self,
|
| 38 |
+
*args: Mapping[_KU_co, _VU_co] | Iterable[tuple[_KU_co, _VU_co]],
|
| 39 |
+
) -> HashTrieMap[_KT_co | _KU_co, _VT_co | _VU_co]: ...
|
| 40 |
+
@classmethod
|
| 41 |
+
def convert(
|
| 42 |
+
cls,
|
| 43 |
+
value: Mapping[_KT_co, _VT_co] | Iterable[tuple[_KT_co, _VT_co]],
|
| 44 |
+
) -> HashTrieMap[_KT_co, _VT_co]: ...
|
| 45 |
+
@classmethod
|
| 46 |
+
def fromkeys(
|
| 47 |
+
cls,
|
| 48 |
+
keys: Iterable[_KT_co],
|
| 49 |
+
value: _VT_co = None,
|
| 50 |
+
) -> HashTrieMap[_KT_co, _VT_co]: ...
|
| 51 |
+
|
| 52 |
+
class HashTrieSet(frozenset[_T]):
|
| 53 |
+
def __init__(self, value: Iterable[_T] = ()): ...
|
| 54 |
+
def __iter__(self) -> Iterator[_T]: ...
|
| 55 |
+
def __len__(self) -> int: ...
|
| 56 |
+
def discard(self, value: _T) -> HashTrieSet[_T]: ...
|
| 57 |
+
def remove(self, value: _T) -> HashTrieSet[_T]: ...
|
| 58 |
+
def insert(self, value: _T) -> HashTrieSet[_T]: ...
|
| 59 |
+
def update(self, *args: Iterable[_T]) -> HashTrieSet[_T]: ...
|
| 60 |
+
|
| 61 |
+
class List(Iterable[_T]):
|
| 62 |
+
def __init__(self, value: Iterable[_T] = (), *more: _T): ...
|
| 63 |
+
def __iter__(self) -> Iterator[_T]: ...
|
| 64 |
+
def __len__(self) -> int: ...
|
| 65 |
+
def push_front(self, value: _T) -> List[_T]: ...
|
| 66 |
+
def drop_first(self) -> List[_T]: ...
|
| 67 |
+
|
| 68 |
+
class Queue(Iterable[_T]):
|
| 69 |
+
def __init__(self, value: Iterable[_T] = (), *more: _T): ...
|
| 70 |
+
def __iter__(self) -> Iterator[_T]: ...
|
| 71 |
+
def __len__(self) -> int: ...
|
| 72 |
+
def enqueue(self, value: _T) -> Queue[_T]: ...
|
| 73 |
+
def dequeue(self, value: _T) -> Queue[_T]: ...
|
| 74 |
+
@property
|
| 75 |
+
def is_empty(self) -> _T: ...
|
| 76 |
+
@property
|
| 77 |
+
def peek(self) -> _T: ...
|