diff --git a/.gitignore b/.gitignore --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,3 @@ -# Two-trick pony for OSX and other case insensitive file systems: -# Ignore ./python binary on Unix but still look into ./Python/ directory. -/python -!/Python/** *.cover *.o *.orig @@ -71,6 +67,7 @@ platform pybuilddir.txt pyconfig.h +python$ python-config python-config.py python.bat diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -147,4 +147,3 @@ 5d4b6a57d5fd7564bf73f3db0e46fe5eeb00bcd8 v3.5.0a1 0337bd7ebcb6559d69679bc7025059ad1ce4f432 v3.5.0a2 82656e28b5e5c4ae48d8dd8b5f0d7968908a82b6 v3.5.0a3 -413e0e0004f4f954331cb8122aa55fe208984955 v3.5.0a4 diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst --- a/Doc/c-api/object.rst +++ b/Doc/c-api/object.rst @@ -203,7 +203,7 @@ i.e. contained in ``cls.__mro__``. Normally only class objects, i.e. instances of :class:`type` or a derived - class, are considered classes. However, objects can override this by having + class, are considered classes. However, objects can override this by haivng a :attr:`__bases__` attribute (which must be a tuple of base classes). diff --git a/Doc/c-api/structures.rst b/Doc/c-api/structures.rst --- a/Doc/c-api/structures.rst +++ b/Doc/c-api/structures.rst @@ -44,7 +44,7 @@ PyObject ob_base; - See documentation of :c:type:`PyObject` above. + See documentation of :c:type::`PyObject` above. .. c:macro:: PyObject_VAR_HEAD diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1948,7 +1948,10 @@ as an argument:: def convert_arg_line_to_args(self, arg_line): - return arg_line.split() + for arg in arg_line.split(): + if not arg.strip(): + continue + yield arg Exiting methods diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst --- a/Doc/library/compileall.rst +++ b/Doc/library/compileall.rst @@ -142,8 +142,8 @@ The argument *workers* specifies how many workers are used to compile files in parallel. The default is to not use multiple workers. If the platform can't use multiple workers and *workers* argument is given, - then sequential compilation will be used as a fallback. If *workers* is - lower than ``0``, a :exc:`ValueError` will be raised. + then a :exc:`NotImplementedError` will be raised. + If *workers* is lower than ``0``, a :exc:`ValueError` will be raised. .. versionchanged:: 3.2 Added the *legacy* and *optimize* parameter. diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -666,8 +666,8 @@ .. _datetime-datetime: -:class:`.datetime` Objects --------------------------- +:class:`datetime` Objects +------------------------- A :class:`.datetime` object is a single object containing all the information from a :class:`date` object and a :class:`.time` object. Like a :class:`date` diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst --- a/Doc/library/difflib.rst +++ b/Doc/library/difflib.rst @@ -315,21 +315,6 @@ See :ref:`difflib-interface` for a more detailed example. -.. function:: diff_bytes(dfunc, a, b, fromfile=b'', tofile=b'', fromfiledate=b'', tofiledate=b'', n=3, lineterm=b'\\n') - - Compare *a* and *b* (lists of bytes objects) using *dfunc*; yield a - sequence of delta lines (also bytes) in the format returned by *dfunc*. - *dfunc* must be a callable, typically either :func:`unified_diff` or - :func:`context_diff`. - - Allows you to compare data with unknown or inconsistent encoding. All - inputs except *n* must be bytes objects, not str. Works by losslessly - converting all inputs (except *n*) to str, and calling ``dfunc(a, b, - fromfile, tofile, fromfiledate, tofiledate, n, lineterm)``. The output of - *dfunc* is then converted back to bytes, so the delta lines that you - receive have the same unknown/inconsistent encodings as *a* and *b*. - - .. versionadded:: 3.5 .. function:: IS_LINE_JUNK(line) diff --git a/Doc/library/fnmatch.rst b/Doc/library/fnmatch.rst --- a/Doc/library/fnmatch.rst +++ b/Doc/library/fnmatch.rst @@ -83,7 +83,7 @@ >>> >>> regex = fnmatch.translate('*.txt') >>> regex - '.*\\.txt\\Z(?ms)' + '.*\\.txt$' >>> reobj = re.compile(regex) >>> reobj.match('foobar.txt') <_sre.SRE_Match object; span=(0, 10), match='foobar.txt'> diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst --- a/Doc/library/http.client.rst +++ b/Doc/library/http.client.rst @@ -19,11 +19,6 @@ HTTPS protocols. It is normally not used directly --- the module :mod:`urllib.request` uses it to handle URLs that use HTTP and HTTPS. -.. seealso:: - - The `Requests package `_ - is recommended for a higher-level http client interface. - .. note:: HTTPS support is only available if Python was compiled with SSL support diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -149,6 +149,12 @@ There are a number of other caveats: + If a module is syntactically correct but its initialization fails, the first + :keyword:`import` statement for it does not bind its name locally, but does + store a (partially initialized) module object in ``sys.modules``. To reload the + module you must first :keyword:`import` it again (this will bind the name to the + partially initialized module object) before you can :func:`reload` it. + When a module is reloaded, its dictionary (containing the module's global variables) is retained. Redefinitions of names will override the old definitions, so this is generally not a problem. If the new version of a module diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -159,6 +159,12 @@ There are a number of other caveats: + If a module is syntactically correct but its initialization fails, the first + :keyword:`import` statement for it does not bind its name locally, but does + store a (partially initialized) module object in ``sys.modules``. To reload + the module you must first :keyword:`import` it again (this will bind the name + to the partially initialized module object) before you can :func:`reload` it. + When a module is reloaded, its dictionary (containing the module's global variables) is retained. Redefinitions of names will override the old definitions, so this is generally not a problem. If the new version of a @@ -1114,7 +1120,7 @@ file path. For example, if *path* is ``/foo/bar/__pycache__/baz.cpython-32.pyc`` the returned path would be ``/foo/bar/baz.py``. *path* need not exist, however if it does not conform - to :pep:`3147` or :pep:`488` format, a ``ValueError`` is raised. If + to :pep:`3147` or :pep`488` format, a ``ValueError`` is raised. If :attr:`sys.implementation.cache_tag` is not defined, :exc:`NotImplementedError` is raised. diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -486,9 +486,7 @@ responsible for converting a :class:`LogRecord` to (usually) a string which can be interpreted by either a human or an external system. The base :class:`Formatter` allows a formatting string to be specified. If none is -supplied, the default value of ``'%(message)s'`` is used, which just includes -the message in the logging call. To have additional items of information in the -formatted output (such as a timestamp), keep reading. +supplied, the default value of ``'%(message)s'`` is used. A Formatter can be initialized with a format string which makes use of knowledge of the :class:`LogRecord` attributes - such as the default value mentioned above diff --git a/Doc/library/os.rst b/Doc/library/os.rst --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -773,7 +773,7 @@ .. seealso:: - The :func:`.stat` function. + The :func:`stat` function. Availability: Unix, Windows. @@ -1647,7 +1647,7 @@ .. seealso:: - The :func:`.stat` function. + The :func:`stat` function. .. versionchanged:: 3.2 Added support for Windows 6.0 (Vista) symbolic links. diff --git a/Doc/library/py_compile.rst b/Doc/library/py_compile.rst --- a/Doc/library/py_compile.rst +++ b/Doc/library/py_compile.rst @@ -30,7 +30,7 @@ Compile a source file to byte-code and write out the byte-code cache file. The source code is loaded from the file name *file*. The byte-code is - written to *cfile*, which defaults to the :pep:`3147`/:pep:`488` path, ending + written to *cfile*, which defaults to the :pep:`3147`/:pep`488` path, ending in ``.pyc``. For example, if *file* is ``/foo/bar/baz.py`` *cfile* will default to ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2. If *dfile* is diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2289,19 +2289,6 @@ >>> bytes.fromhex('2Ef0 F1f2 ') b'.\xf0\xf1\xf2' -A reverse conversion function exists to transform a bytes object into its -hexadecimal representation. - -.. method:: bytes.hex() - - Return a string object containing two hexadecimal digits for each - byte in the instance. - - >>> b'\xf0\xf1\xf2'.hex() - 'f0f1f2' - - .. versionadded:: 3.5 - Since bytes objects are sequences of integers (akin to a tuple), for a bytes object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be a bytes object of length 1. (This contrasts with text strings, where both indexing @@ -2357,19 +2344,6 @@ >>> bytearray.fromhex('2Ef0 F1f2 ') bytearray(b'.\xf0\xf1\xf2') -A reverse conversion function exists to transform a bytearray object into its -hexadecimal representation. - -.. method:: bytearray.hex() - - Return a string object containing two hexadecimal digits for each - byte in the instance. - - >>> bytearray(b'\xf0\xf1\xf2').hex() - 'f0f1f2' - - .. versionadded:: 3.5 - Since bytearray objects are sequences of integers (akin to a list), for a bytearray object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be a bytearray object of length 1. (This contrasts with text strings, where @@ -3484,17 +3458,6 @@ supports all format strings, including those that are not in :mod:`struct` module syntax. - .. method:: hex() - - Return a string object containing two hexadecimal digits for each - byte in the buffer. :: - - >>> m = memoryview(b"abc") - >>> m.hex() - '616263' - - .. versionadded:: 3.5 - .. method:: tolist() Return the data in the buffer as a list of elements. :: diff --git a/Doc/library/symtable.rst b/Doc/library/symtable.rst --- a/Doc/library/symtable.rst +++ b/Doc/library/symtable.rst @@ -71,6 +71,10 @@ Return ``True`` if the block uses ``exec``. + .. method:: has_import_star() + + Return ``True`` if the block uses a starred from-import. + .. method:: get_identifiers() Return a list of names of symbols in this table. diff --git a/Doc/library/timeit.rst b/Doc/library/timeit.rst --- a/Doc/library/timeit.rst +++ b/Doc/library/timeit.rst @@ -104,8 +104,6 @@ method. The :meth:`.repeat` method is a convenience to call :meth:`.timeit` multiple times and return a list of results. - The execution time of *setup* is excluded from the overall timed execution run. - The *stmt* and *setup* parameters can also take objects that are callable without arguments. This will embed calls to them in a timer function that will then be executed by :meth:`.timeit`. Note that the timing overhead is a diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -12,11 +12,6 @@ opening URLs (mostly HTTP) in a complex world --- basic and digest authentication, redirections, cookies and more. -.. seealso:: - - The `Requests package `_ - is recommended for a higher-level http client interface. - The :mod:`urllib.request` module defines the following functions: diff --git a/Doc/reference/executionmodel.rst b/Doc/reference/executionmodel.rst --- a/Doc/reference/executionmodel.rst +++ b/Doc/reference/executionmodel.rst @@ -161,6 +161,10 @@ If a variable is referenced in an enclosing scope, it is illegal to delete the name. An error will be reported at compile time. +If the wild card form of import --- ``import *`` --- is used in a function and +the function contains or is a nested block with free variables, the compiler +will raise a :exc:`SyntaxError`. + .. XXX from * also invalid with relative imports (at least currently) The :func:`eval` and :func:`exec` functions do not have access to the full diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst --- a/Doc/reference/import.rst +++ b/Doc/reference/import.rst @@ -468,41 +468,6 @@ ``create_module()`` is not. Starting in Python 3.6 it will be an error to not define ``create_module()`` on a loader attached to a ModuleSpec. -Submodules ----------- - -When a submodule is loaded using any mechanism (e.g. ``importlib`` APIs, the -``import`` or ``import-from`` statements, or built-in ``__import__()``) a -binding is placed in the parent module's namespace to the submodule object. -For example, if package ``spam`` has a submodule ``foo``, after importing -``spam.foo``, ``spam`` will have an attribute ``foo`` which is bound to the -submodule. Let's say you have the following directory structure:: - - spam/ - __init__.py - foo.py - bar.py - -and ``spam/__init__.py`` has the following lines in it:: - - from .foo import Foo - from .bar import Bar - -then executing the following puts a name binding to ``foo`` and ``bar`` in the -``spam`` module:: - - >>> import spam - >>> spam.foo - - >>> spam.bar - - -Given Python's familiar name binding rules this might seem surprising, but -it's actually a fundamental feature of the import system. The invariant -holding is that if you have ``sys.modules['spam']`` and -``sys.modules['spam.foo']`` (as you would after the above import), the latter -must appear as the ``foo`` attribute of the former. - Module spec ----------- diff --git a/Doc/tools/susp-ignored.csv b/Doc/tools/susp-ignored.csv --- a/Doc/tools/susp-ignored.csv +++ b/Doc/tools/susp-ignored.csv @@ -275,6 +275,7 @@ whatsnew/3.2,,:prefix,zope-conf = ${custom:prefix}/etc/zope.conf whatsnew/changelog,,:gz,": TarFile opened with external fileobj and ""w:gz"" mode didn't" whatsnew/changelog,,::,": Use ""127.0.0.1"" or ""::1"" instead of ""localhost"" as much as" +library/stdtypes,3688,::,>>> m[::2].tolist() library/tarfile,149,:xz,'x:xz' library/xml.etree.elementtree,290,:sometag,prefix:sometag library/xml.etree.elementtree,301,:fictional,">> m[::2].tolist() diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -199,7 +199,7 @@ .. cmdoption:: -B - If given, Python won't try to write ``.pyc`` files on the + If given, Python won't try to write ``.pyc``` files on the import of source modules. See also :envvar:`PYTHONDONTWRITEBYTECODE`. diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -80,9 +80,6 @@ * ``bytes % args``, ``bytearray % args``: :pep:`461` - Adding ``%`` formatting to bytes and bytearray -* ``b'\xf0\x9f\x90\x8d'.hex()``, ``bytearray(b'\xf0\x9f\x90\x8d').hex()``, - ``memoryview(b'\xf0\x9f\x90\x8d').hex()``: :issue:`9951` - A ``hex`` method - has been added to bytes, bytearray, and memoryview. Implementation improvements: @@ -305,9 +302,6 @@ charset of HTML document changed from ``'ISO-8859-1'`` to ``'utf-8'``. (Contributed by Berker Peksag in :issue:`2052`.) -* It's now possible to compare lists of byte strings with - :func:`difflib.diff_bytes` (fixes a regression from Python 2). - distutils --------- diff --git a/Include/patchlevel.h b/Include/patchlevel.h --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -20,10 +20,10 @@ #define PY_MINOR_VERSION 5 #define PY_MICRO_VERSION 0 #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA -#define PY_RELEASE_SERIAL 4 +#define PY_RELEASE_SERIAL 3 /* Version as a string */ -#define PY_VERSION "3.5.0a4+" +#define PY_VERSION "3.5.0a3+" /*--end constants--*/ /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. diff --git a/Include/pystrhex.h b/Include/pystrhex.h deleted file mode 100644 --- a/Include/pystrhex.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef Py_STRHEX_H -#define Py_STRHEX_H - -#ifdef __cplusplus -extern "C" { -#endif - -/* Returns a str() containing the hex representation of argbuf. */ -PyAPI_FUNC(PyObject*) _Py_strhex(const char* argbuf, const Py_ssize_t arglen); -/* Returns a bytes() containing the ASCII hex representation of argbuf. */ -PyAPI_FUNC(PyObject*) _Py_strhex_bytes(const char* argbuf, const Py_ssize_t arglen); - -#ifdef __cplusplus -} -#endif - -#endif /* !Py_STRHEX_H */ diff --git a/Include/symtable.h b/Include/symtable.h --- a/Include/symtable.h +++ b/Include/symtable.h @@ -43,6 +43,7 @@ PyObject *ste_children; /* list of child blocks */ PyObject *ste_directives;/* locations of global and nonlocal statements */ _Py_block_ty ste_type; /* module, class, or function */ + int ste_unoptimized; /* false if namespace is optimized */ int ste_nested; /* true if block is nested */ unsigned ste_free : 1; /* true if block has free variables */ unsigned ste_child_free : 1; /* true if a child block has free vars, @@ -107,6 +108,10 @@ #define FREE 4 #define CELL 5 +/* The following two names are used for the ste_unoptimized bit field */ +#define OPT_IMPORT_STAR 1 +#define OPT_TOPLEVEL 2 /* top-level names, including eval and exec */ + #define GENERATOR 1 #define GENERATOR_EXPRESSION 2 diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -2060,6 +2060,12 @@ PyObject *element /* Element string */ ); +/* Checks whether the string contains any NUL characters. */ + +#ifndef Py_LIMITED_API +PyAPI_FUNC(int) _PyUnicode_HasNULChars(PyObject *); +#endif + /* Checks whether argument is a valid identifier. */ PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s); diff --git a/Lib/asyncio/queues.py b/Lib/asyncio/queues.py --- a/Lib/asyncio/queues.py +++ b/Lib/asyncio/queues.py @@ -53,8 +53,6 @@ self._finished.set() self._init(maxsize) - # These three are overridable in subclasses. - def _init(self, maxsize): self._queue = collections.deque() @@ -63,11 +61,6 @@ def _put(self, item): self._queue.append(item) - - # End of the overridable methods. - - def __put_internal(self, item): - self._put(item) self._unfinished_tasks += 1 self._finished.clear() @@ -139,7 +132,7 @@ 'queue non-empty, why are getters waiting?') getter = self._getters.popleft() - self.__put_internal(item) + self._put(item) # getter cannot be cancelled, we just removed done getters getter.set_result(self._get()) @@ -151,7 +144,7 @@ yield from waiter else: - self.__put_internal(item) + self._put(item) def put_nowait(self, item): """Put an item into the queue without blocking. @@ -164,7 +157,7 @@ 'queue non-empty, why are getters waiting?') getter = self._getters.popleft() - self.__put_internal(item) + self._put(item) # getter cannot be cancelled, we just removed done getters getter.set_result(self._get()) @@ -172,7 +165,7 @@ elif self._maxsize > 0 and self._maxsize <= self.qsize(): raise QueueFull else: - self.__put_internal(item) + self._put(item) @coroutine def get(self): @@ -186,7 +179,7 @@ if self._putters: assert self.full(), 'queue not full, why are putters waiting?' item, putter = self._putters.popleft() - self.__put_internal(item) + self._put(item) # When a getter runs and frees up a slot so this putter can # run, we need to defer the put for a tick to ensure that @@ -213,7 +206,7 @@ if self._putters: assert self.full(), 'queue not full, why are putters waiting?' item, putter = self._putters.popleft() - self.__put_internal(item) + self._put(item) # Wake putter on next tick. # getter cannot be cancelled, we just removed done putters diff --git a/Lib/compileall.py b/Lib/compileall.py --- a/Lib/compileall.py +++ b/Lib/compileall.py @@ -69,9 +69,11 @@ files = _walk_dir(dir, quiet=quiet, maxlevels=maxlevels, ddir=ddir) success = 1 - if workers is not None and workers != 1 and ProcessPoolExecutor is not None: + if workers is not None and workers != 1: if workers < 0: raise ValueError('workers must be greater or equal to 0') + if ProcessPoolExecutor is None: + raise NotImplementedError('multiprocessing support not available') workers = workers or None with ProcessPoolExecutor(max_workers=workers) as executor: diff --git a/Lib/ctypes/test/test_values.py b/Lib/ctypes/test/test_values.py --- a/Lib/ctypes/test/test_values.py +++ b/Lib/ctypes/test/test_values.py @@ -59,8 +59,13 @@ items = [] # _frozen_importlib changes size whenever importlib._bootstrap # changes, so it gets a special case. We should make sure it's - # found, but don't worry about its size too much. - _fzn_implib_seen = False + # found, but don't worry about its size too much. The same + # applies to _frozen_importlib_external. + bootstrap_seen = [] + bootstrap_expected = ( + b'_frozen_importlib', + b'_frozen_importlib_external', + ) for entry in ft: # This is dangerous. We *can* iterate over a pointer, but # the loop will not terminate (maybe with an access @@ -68,10 +73,10 @@ if entry.name is None: break - if entry.name == b'_frozen_importlib': - _fzn_implib_seen = True + if entry.name in bootstrap_expected: + bootstrap_seen.append(entry.name) self.assertTrue(entry.size, - "_frozen_importlib was reported as having no size") + "{} was reported as having no size".format(entry.name)) continue items.append((entry.name, entry.size)) @@ -81,8 +86,8 @@ ] self.assertEqual(items, expected) - self.assertTrue(_fzn_implib_seen, - "_frozen_importlib wasn't found in PyImport_FrozenModules") + self.assertEqual(sorted(bootstrap_seen), bootstrap_expected, + "frozen bootstrap modules did not match PyImport_FrozenModules") from ctypes import _pointer_type_cache del _pointer_type_cache[struct_frozen] diff --git a/Lib/difflib.py b/Lib/difflib.py --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -28,7 +28,7 @@ __all__ = ['get_close_matches', 'ndiff', 'restore', 'SequenceMatcher', 'Differ','IS_CHARACTER_JUNK', 'IS_LINE_JUNK', 'context_diff', - 'unified_diff', 'diff_bytes', 'HtmlDiff', 'Match'] + 'unified_diff', 'HtmlDiff', 'Match'] from heapq import nlargest as _nlargest from collections import namedtuple as _namedtuple @@ -1174,7 +1174,6 @@ four """ - _check_types(a, b, fromfile, tofile, fromfiledate, tofiledate, lineterm) started = False for group in SequenceMatcher(None,a,b).get_grouped_opcodes(n): if not started: @@ -1262,7 +1261,6 @@ four """ - _check_types(a, b, fromfile, tofile, fromfiledate, tofiledate, lineterm) prefix = dict(insert='+ ', delete='- ', replace='! ', equal=' ') started = False for group in SequenceMatcher(None,a,b).get_grouped_opcodes(n): @@ -1294,53 +1292,6 @@ for line in b[j1:j2]: yield prefix[tag] + line -def _check_types(a, b, *args): - # Checking types is weird, but the alternative is garbled output when - # someone passes mixed bytes and str to {unified,context}_diff(). E.g. - # without this check, passing filenames as bytes results in output like - # --- b'oldfile.txt' - # +++ b'newfile.txt' - # because of how str.format() incorporates bytes objects. - if a and not isinstance(a[0], str): - raise TypeError('lines to compare must be str, not %s (%r)' % - (type(a[0]).__name__, a[0])) - if b and not isinstance(b[0], str): - raise TypeError('lines to compare must be str, not %s (%r)' % - (type(b[0]).__name__, b[0])) - for arg in args: - if not isinstance(arg, str): - raise TypeError('all arguments must be str, not: %r' % (arg,)) - -def diff_bytes(dfunc, a, b, fromfile=b'', tofile=b'', - fromfiledate=b'', tofiledate=b'', n=3, lineterm=b'\n'): - r""" - Compare `a` and `b`, two sequences of lines represented as bytes rather - than str. This is a wrapper for `dfunc`, which is typically either - unified_diff() or context_diff(). Inputs are losslessly converted to - strings so that `dfunc` only has to worry about strings, and encoded - back to bytes on return. This is necessary to compare files with - unknown or inconsistent encoding. All other inputs (except `n`) must be - bytes rather than str. - """ - def decode(s): - try: - return s.decode('ascii', 'surrogateescape') - except AttributeError as err: - msg = ('all arguments must be bytes, not %s (%r)' % - (type(s).__name__, s)) - raise TypeError(msg) from err - a = list(map(decode, a)) - b = list(map(decode, b)) - fromfile = decode(fromfile) - tofile = decode(tofile) - fromfiledate = decode(fromfiledate) - tofiledate = decode(tofiledate) - lineterm = decode(lineterm) - - lines = dfunc(a, b, fromfile, tofile, fromfiledate, tofiledate, n, lineterm) - for line in lines: - yield line.encode('ascii', 'surrogateescape') - def ndiff(a, b, linejunk=None, charjunk=IS_CHARACTER_JUNK): r""" Compare `a` and `b` (lists of strings); return a `Differ`-style delta. diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -13,5 +13,5 @@ # Updated automatically by the Python release process. # #--start constants-- -__version__ = "3.5.0a4" +__version__ = "3.5.0a3" #--end constants-- diff --git a/Lib/idlelib/idlever.py b/Lib/idlelib/idlever.py --- a/Lib/idlelib/idlever.py +++ b/Lib/idlelib/idlever.py @@ -1,1 +1,1 @@ -IDLE_VERSION = "3.5.0a4" +IDLE_VERSION = "3.5.0a3" diff --git a/Lib/imp.py b/Lib/imp.py --- a/Lib/imp.py +++ b/Lib/imp.py @@ -16,7 +16,8 @@ # Platform doesn't support dynamic loading. load_dynamic = None -from importlib._bootstrap import SourcelessFileLoader, _ERR_MSG, _exec, _load +from importlib._bootstrap import _ERR_MSG, _exec, _load +from importlib._bootstrap_external import SourcelessFileLoader from importlib import machinery from importlib import util diff --git a/Lib/importlib/__init__.py b/Lib/importlib/__init__.py --- a/Lib/importlib/__init__.py +++ b/Lib/importlib/__init__.py @@ -30,9 +30,25 @@ pass sys.modules['importlib._bootstrap'] = _bootstrap +try: + import _frozen_importlib_external as _bootstrap_external +except ImportError: + from . import _bootstrap_external + _bootstrap_external._setup(_bootstrap) +else: + _bootstrap_external.__name__ = 'importlib._bootstrap_external' + _bootstrap_external.__package__ = 'importlib' + try: + _bootstrap_external.__file__ = __file__.replace('__init__.py', '_bootstrap_external.py') + except NameError: + # __file__ is not guaranteed to be defined, e.g. if this code gets + # frozen by a tool like cx_Freeze. + pass + sys.modules['importlib._bootstrap_external'] = _bootstrap_external + # To simplify imports in test code -_w_long = _bootstrap._w_long -_r_long = _bootstrap._r_long +_w_long = _bootstrap_external._w_long +_r_long = _bootstrap_external._r_long # Fully bootstrapped at this point, import whatever you like, circular # dependencies and startup overhead minimisation permitting :) diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -22,102 +22,6 @@ # Bootstrap-related code ###################################################### -_CASE_INSENSITIVE_PLATFORMS = 'win', 'cygwin', 'darwin' - - -def _make_relax_case(): - if sys.platform.startswith(_CASE_INSENSITIVE_PLATFORMS): - def _relax_case(): - """True if filenames must be checked case-insensitively.""" - return b'PYTHONCASEOK' in _os.environ - else: - def _relax_case(): - """True if filenames must be checked case-insensitively.""" - return False - return _relax_case - - -def _w_long(x): - """Convert a 32-bit integer to little-endian.""" - return (int(x) & 0xFFFFFFFF).to_bytes(4, 'little') - - -def _r_long(int_bytes): - """Convert 4 bytes in little-endian to an integer.""" - return int.from_bytes(int_bytes, 'little') - - -def _path_join(*path_parts): - """Replacement for os.path.join().""" - return path_sep.join([part.rstrip(path_separators) - for part in path_parts if part]) - - -def _path_split(path): - """Replacement for os.path.split().""" - if len(path_separators) == 1: - front, _, tail = path.rpartition(path_sep) - return front, tail - for x in reversed(path): - if x in path_separators: - front, tail = path.rsplit(x, maxsplit=1) - return front, tail - return '', path - - -def _path_stat(path): - """Stat the path. - - Made a separate function to make it easier to override in experiments - (e.g. cache stat results). - - """ - return _os.stat(path) - - -def _path_is_mode_type(path, mode): - """Test whether the path is the specified mode type.""" - try: - stat_info = _path_stat(path) - except OSError: - return False - return (stat_info.st_mode & 0o170000) == mode - - -def _path_isfile(path): - """Replacement for os.path.isfile.""" - return _path_is_mode_type(path, 0o100000) - - -def _path_isdir(path): - """Replacement for os.path.isdir.""" - if not path: - path = _os.getcwd() - return _path_is_mode_type(path, 0o040000) - - -def _write_atomic(path, data, mode=0o666): - """Best-effort function to write data to a path atomically. - Be prepared to handle a FileExistsError if concurrent writing of the - temporary file is attempted.""" - # id() is used to generate a pseudo-random filename. - path_tmp = '{}.{}'.format(path, id(path)) - fd = _os.open(path_tmp, - _os.O_EXCL | _os.O_CREAT | _os.O_WRONLY, mode & 0o666) - try: - # We first write data to a temporary file, and then use os.replace() to - # perform an atomic rename. - with _io.FileIO(fd, 'wb') as file: - file.write(data) - _os.replace(path_tmp, path) - except OSError: - try: - _os.unlink(path_tmp) - except OSError: - pass - raise - - def _wrap(new, old): """Simple substitute for functools.update_wrapper.""" for replace in ['__module__', '__name__', '__qualname__', '__doc__']: @@ -130,10 +34,6 @@ return type(sys)(name) -_code_type = type(_wrap.__code__) - - - class _ManageReload: """Manages the possible clean-up of sys.modules for load_module().""" @@ -309,7 +209,6 @@ lock.release() # Frame stripping magic ############################################### - def _call_with_frames_removed(f, *args, **kwds): """remove_importlib_frames in import.c will always remove sequences of importlib frames that end with a call to this function @@ -321,230 +220,6 @@ return f(*args, **kwds) -# Finder/loader utility code ############################################### - -# Magic word to reject .pyc files generated by other Python versions. -# It should change for each incompatible change to the bytecode. -# -# The value of CR and LF is incorporated so if you ever read or write -# a .pyc file in text mode the magic number will be wrong; also, the -# Apple MPW compiler swaps their values, botching string constants. -# -# The magic numbers must be spaced apart at least 2 values, as the -# -U interpeter flag will cause MAGIC+1 being used. They have been -# odd numbers for some time now. -# -# There were a variety of old schemes for setting the magic number. -# The current working scheme is to increment the previous value by -# 10. -# -# Starting with the adoption of PEP 3147 in Python 3.2, every bump in magic -# number also includes a new "magic tag", i.e. a human readable string used -# to represent the magic number in __pycache__ directories. When you change -# the magic number, you must also set a new unique magic tag. Generally this -# can be named after the Python major version of the magic number bump, but -# it can really be anything, as long as it's different than anything else -# that's come before. The tags are included in the following table, starting -# with Python 3.2a0. -# -# Known values: -# Python 1.5: 20121 -# Python 1.5.1: 20121 -# Python 1.5.2: 20121 -# Python 1.6: 50428 -# Python 2.0: 50823 -# Python 2.0.1: 50823 -# Python 2.1: 60202 -# Python 2.1.1: 60202 -# Python 2.1.2: 60202 -# Python 2.2: 60717 -# Python 2.3a0: 62011 -# Python 2.3a0: 62021 -# Python 2.3a0: 62011 (!) -# Python 2.4a0: 62041 -# Python 2.4a3: 62051 -# Python 2.4b1: 62061 -# Python 2.5a0: 62071 -# Python 2.5a0: 62081 (ast-branch) -# Python 2.5a0: 62091 (with) -# Python 2.5a0: 62092 (changed WITH_CLEANUP opcode) -# Python 2.5b3: 62101 (fix wrong code: for x, in ...) -# Python 2.5b3: 62111 (fix wrong code: x += yield) -# Python 2.5c1: 62121 (fix wrong lnotab with for loops and -# storing constants that should have been removed) -# Python 2.5c2: 62131 (fix wrong code: for x, in ... in listcomp/genexp) -# Python 2.6a0: 62151 (peephole optimizations and STORE_MAP opcode) -# Python 2.6a1: 62161 (WITH_CLEANUP optimization) -# Python 2.7a0: 62171 (optimize list comprehensions/change LIST_APPEND) -# Python 2.7a0: 62181 (optimize conditional branches: -# introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE) -# Python 2.7a0 62191 (introduce SETUP_WITH) -# Python 2.7a0 62201 (introduce BUILD_SET) -# Python 2.7a0 62211 (introduce MAP_ADD and SET_ADD) -# Python 3000: 3000 -# 3010 (removed UNARY_CONVERT) -# 3020 (added BUILD_SET) -# 3030 (added keyword-only parameters) -# 3040 (added signature annotations) -# 3050 (print becomes a function) -# 3060 (PEP 3115 metaclass syntax) -# 3061 (string literals become unicode) -# 3071 (PEP 3109 raise changes) -# 3081 (PEP 3137 make __file__ and __name__ unicode) -# 3091 (kill str8 interning) -# 3101 (merge from 2.6a0, see 62151) -# 3103 (__file__ points to source file) -# Python 3.0a4: 3111 (WITH_CLEANUP optimization). -# Python 3.0a5: 3131 (lexical exception stacking, including POP_EXCEPT) -# Python 3.1a0: 3141 (optimize list, set and dict comprehensions: -# change LIST_APPEND and SET_ADD, add MAP_ADD) -# Python 3.1a0: 3151 (optimize conditional branches: -# introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE) -# Python 3.2a0: 3160 (add SETUP_WITH) -# tag: cpython-32 -# Python 3.2a1: 3170 (add DUP_TOP_TWO, remove DUP_TOPX and ROT_FOUR) -# tag: cpython-32 -# Python 3.2a2 3180 (add DELETE_DEREF) -# Python 3.3a0 3190 __class__ super closure changed -# Python 3.3a0 3200 (__qualname__ added) -# 3210 (added size modulo 2**32 to the pyc header) -# Python 3.3a1 3220 (changed PEP 380 implementation) -# Python 3.3a4 3230 (revert changes to implicit __class__ closure) -# Python 3.4a1 3250 (evaluate positional default arguments before -# keyword-only defaults) -# Python 3.4a1 3260 (add LOAD_CLASSDEREF; allow locals of class to override -# free vars) -# Python 3.4a1 3270 (various tweaks to the __class__ closure) -# Python 3.4a1 3280 (remove implicit class argument) -# Python 3.4a4 3290 (changes to __qualname__ computation) -# Python 3.4a4 3300 (more changes to __qualname__ computation) -# Python 3.4rc2 3310 (alter __qualname__ computation) -# Python 3.5a0 3320 (matrix multiplication operator) -# -# MAGIC must change whenever the bytecode emitted by the compiler may no -# longer be understood by older implementations of the eval loop (usually -# due to the addition of new opcodes). - -MAGIC_NUMBER = (3320).to_bytes(2, 'little') + b'\r\n' -_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c - -_PYCACHE = '__pycache__' -_OPT = 'opt-' - -SOURCE_SUFFIXES = ['.py'] # _setup() adds .pyw as needed. - -BYTECODE_SUFFIXES = ['.pyc'] -# Deprecated. -DEBUG_BYTECODE_SUFFIXES = OPTIMIZED_BYTECODE_SUFFIXES = BYTECODE_SUFFIXES - -def cache_from_source(path, debug_override=None, *, optimization=None): - """Given the path to a .py file, return the path to its .pyc file. - - The .py file does not need to exist; this simply returns the path to the - .pyc file calculated as if the .py file were imported. - - The 'optimization' parameter controls the presumed optimization level of - the bytecode file. If 'optimization' is not None, the string representation - of the argument is taken and verified to be alphanumeric (else ValueError - is raised). - - The debug_override parameter is deprecated. If debug_override is not None, - a True value is the same as setting 'optimization' to the empty string - while a False value is equivalent to setting 'optimization' to '1'. - - If sys.implementation.cache_tag is None then NotImplementedError is raised. - - """ - if debug_override is not None: - _warnings.warn('the debug_override parameter is deprecated; use ' - "'optimization' instead", DeprecationWarning) - if optimization is not None: - message = 'debug_override or optimization must be set to None' - raise TypeError(message) - optimization = '' if debug_override else 1 - head, tail = _path_split(path) - base, sep, rest = tail.rpartition('.') - tag = sys.implementation.cache_tag - if tag is None: - raise NotImplementedError('sys.implementation.cache_tag is None') - almost_filename = ''.join([(base if base else rest), sep, tag]) - if optimization is None: - if sys.flags.optimize == 0: - optimization = '' - else: - optimization = sys.flags.optimize - optimization = str(optimization) - if optimization != '': - if not optimization.isalnum(): - raise ValueError('{!r} is not alphanumeric'.format(optimization)) - almost_filename = '{}.{}{}'.format(almost_filename, _OPT, optimization) - return _path_join(head, _PYCACHE, almost_filename + BYTECODE_SUFFIXES[0]) - - -def source_from_cache(path): - """Given the path to a .pyc. file, return the path to its .py file. - - The .pyc file does not need to exist; this simply returns the path to - the .py file calculated to correspond to the .pyc file. If path does - not conform to PEP 3147/488 format, ValueError will be raised. If - sys.implementation.cache_tag is None then NotImplementedError is raised. - - """ - if sys.implementation.cache_tag is None: - raise NotImplementedError('sys.implementation.cache_tag is None') - head, pycache_filename = _path_split(path) - head, pycache = _path_split(head) - if pycache != _PYCACHE: - raise ValueError('{} not bottom-level directory in ' - '{!r}'.format(_PYCACHE, path)) - dot_count = pycache_filename.count('.') - if dot_count not in {2, 3}: - raise ValueError('expected only 2 or 3 dots in ' - '{!r}'.format(pycache_filename)) - elif dot_count == 3: - optimization = pycache_filename.rsplit('.', 2)[-2] - if not optimization.startswith(_OPT): - raise ValueError("optimization portion of filename does not start " - "with {!r}".format(_OPT)) - opt_level = optimization[len(_OPT):] - if not opt_level.isalnum(): - raise ValueError("optimization level {!r} is not an alphanumeric " - "value".format(optimization)) - base_filename = pycache_filename.partition('.')[0] - return _path_join(head, base_filename + SOURCE_SUFFIXES[0]) - - -def _get_sourcefile(bytecode_path): - """Convert a bytecode file path to a source path (if possible). - - This function exists purely for backwards-compatibility for - PyImport_ExecCodeModuleWithFilenames() in the C API. - - """ - if len(bytecode_path) == 0: - return None - rest, _, extension = bytecode_path.rpartition('.') - if not rest or extension.lower()[-3:-1] != 'py': - return bytecode_path - try: - source_path = source_from_cache(bytecode_path) - except (NotImplementedError, ValueError): - source_path = bytecode_path[:-1] - return source_path if _path_isfile(source_path) else bytecode_path - - -def _calc_mode(path): - """Calculate the mode permissions for a bytecode file.""" - try: - mode = _path_stat(path).st_mode - except OSError: - mode = 0o666 - # We always ensure write access so we can update cached files - # later even when the source files are read-only on Windows (#6074) - mode |= 0o200 - return mode - - def _verbose_message(message, *args, verbosity=1): """Print the message to stderr if -v/PYTHONVERBOSE is turned on.""" if sys.flags.verbose >= verbosity: @@ -553,24 +228,6 @@ print(message.format(*args), file=sys.stderr) -def _check_name(method): - """Decorator to verify that the module being requested matches the one the - loader can handle. - - The first argument (self) must define _name which the second argument is - compared against. If the comparison fails then ImportError is raised. - - """ - def _check_name_wrapper(self, name=None, *args, **kwargs): - if name is None: - name = self.name - elif self.name != name: - raise ImportError('loader cannot handle %s' % name, name=name) - return method(self, name, *args, **kwargs) - _wrap(_check_name_wrapper, method) - return _check_name_wrapper - - def _requires_builtin(fxn): """Decorator to verify the named module is built-in.""" def _requires_builtin_wrapper(self, fullname): @@ -593,23 +250,6 @@ return _requires_frozen_wrapper -def _find_module_shim(self, fullname): - """Try to find a loader for the specified module by delegating to - self.find_loader(). - - This method is deprecated in favor of finder.find_spec(). - - """ - # Call find_loader(). If it returns a string (indicating this - # is a namespace package portion), generate a warning and - # return None. - loader, portions = self.find_loader(fullname) - if loader is None and len(portions): - msg = 'Not importing directory {}: missing __init__' - _warnings.warn(msg.format(portions[0]), ImportWarning) - return loader - - # Typically used by loader classes as a method replacement. def _load_module_shim(self, fullname): """Load the specified module into sys.modules and return it. @@ -625,96 +265,6 @@ else: return _load(spec) - -def _validate_bytecode_header(data, source_stats=None, name=None, path=None): - """Validate the header of the passed-in bytecode against source_stats (if - given) and returning the bytecode that can be compiled by compile(). - - All other arguments are used to enhance error reporting. - - ImportError is raised when the magic number is incorrect or the bytecode is - found to be stale. EOFError is raised when the data is found to be - truncated. - - """ - exc_details = {} - if name is not None: - exc_details['name'] = name - else: - # To prevent having to make all messages have a conditional name. - name = '' - if path is not None: - exc_details['path'] = path - magic = data[:4] - raw_timestamp = data[4:8] - raw_size = data[8:12] - if magic != MAGIC_NUMBER: - message = 'bad magic number in {!r}: {!r}'.format(name, magic) - _verbose_message(message) - raise ImportError(message, **exc_details) - elif len(raw_timestamp) != 4: - message = 'reached EOF while reading timestamp in {!r}'.format(name) - _verbose_message(message) - raise EOFError(message) - elif len(raw_size) != 4: - message = 'reached EOF while reading size of source in {!r}'.format(name) - _verbose_message(message) - raise EOFError(message) - if source_stats is not None: - try: - source_mtime = int(source_stats['mtime']) - except KeyError: - pass - else: - if _r_long(raw_timestamp) != source_mtime: - message = 'bytecode is stale for {!r}'.format(name) - _verbose_message(message) - raise ImportError(message, **exc_details) - try: - source_size = source_stats['size'] & 0xFFFFFFFF - except KeyError: - pass - else: - if _r_long(raw_size) != source_size: - raise ImportError('bytecode is stale for {!r}'.format(name), - **exc_details) - return data[12:] - - -def _compile_bytecode(data, name=None, bytecode_path=None, source_path=None): - """Compile bytecode as returned by _validate_bytecode_header().""" - code = marshal.loads(data) - if isinstance(code, _code_type): - _verbose_message('code object from {!r}', bytecode_path) - if source_path is not None: - _imp._fix_co_filename(code, source_path) - return code - else: - raise ImportError('Non-code object in {!r}'.format(bytecode_path), - name=name, path=bytecode_path) - -def _code_to_bytecode(code, mtime=0, source_size=0): - """Compile a code object into bytecode for writing out to a byte-compiled - file.""" - data = bytearray(MAGIC_NUMBER) - data.extend(_w_long(mtime)) - data.extend(_w_long(source_size)) - data.extend(marshal.dumps(code)) - return data - - -def decode_source(source_bytes): - """Decode bytes representing source code and return the string. - - Universal newline support is used in the decoding. - """ - import tokenize # To avoid bootstrap issues. - source_bytes_readline = _io.BytesIO(source_bytes).readline - encoding = tokenize.detect_encoding(source_bytes_readline) - newline_decoder = _io.IncrementalNewlineDecoder(None, True) - return newline_decoder.decode(source_bytes.decode(encoding[0])) - - # Module specifications ####################################################### def _module_repr(module): @@ -855,14 +405,8 @@ def cached(self): if self._cached is None: if self.origin is not None and self._set_fileattr: - filename = self.origin - if filename.endswith(tuple(SOURCE_SUFFIXES)): - try: - self._cached = cache_from_source(filename) - except NotImplementedError: - pass - elif filename.endswith(tuple(BYTECODE_SUFFIXES)): - self._cached = filename + import _frozen_importlib_external as _bootstrap_external # XXX yuck + self._cached = _bootstrap_external._get_cached(self.origin) return self._cached @cached.setter @@ -889,6 +433,7 @@ def spec_from_loader(name, loader, *, origin=None, is_package=None): """Return a module spec based on various loader methods.""" if hasattr(loader, 'get_filename'): + from ._bootstrap_external import spec_from_file_location # XXX yuck if is_package is None: return spec_from_file_location(name, loader=loader) search = [] if is_package else None @@ -911,70 +456,6 @@ _POPULATE = object() -def spec_from_file_location(name, location=None, *, loader=None, - submodule_search_locations=_POPULATE): - """Return a module spec based on a file location. - - To indicate that the module is a package, set - submodule_search_locations to a list of directory paths. An - empty list is sufficient, though its not otherwise useful to the - import system. - - The loader must take a spec as its only __init__() arg. - - """ - if location is None: - # The caller may simply want a partially populated location- - # oriented spec. So we set the location to a bogus value and - # fill in as much as we can. - location = '' - if hasattr(loader, 'get_filename'): - # ExecutionLoader - try: - location = loader.get_filename(name) - except ImportError: - pass - - # If the location is on the filesystem, but doesn't actually exist, - # we could return None here, indicating that the location is not - # valid. However, we don't have a good way of testing since an - # indirect location (e.g. a zip file or URL) will look like a - # non-existent file relative to the filesystem. - - spec = ModuleSpec(name, loader, origin=location) - spec._set_fileattr = True - - # Pick a loader if one wasn't provided. - if loader is None: - for loader_class, suffixes in _get_supported_file_loaders(): - if location.endswith(tuple(suffixes)): - loader = loader_class(name, location) - spec.loader = loader - break - else: - return None - - # Set submodule_search_paths appropriately. - if submodule_search_locations is _POPULATE: - # Check the loader. - if hasattr(loader, 'is_package'): - try: - is_package = loader.is_package(name) - except ImportError: - pass - else: - if is_package: - spec.submodule_search_locations = [] - else: - spec.submodule_search_locations = submodule_search_locations - if spec.submodule_search_locations == []: - if location: - dirname = _path_split(location)[0] - spec.submodule_search_locations.append(dirname) - - return spec - - def _spec_from_module(module, loader=None, origin=None): # This function is meant for use in _setup(). try: @@ -1035,6 +516,7 @@ if loader is None: # A backward compatibility hack. if spec.submodule_search_locations is not None: + from ._bootstrap_external import _NamespaceLoader # XXX yuck loader = _NamespaceLoader.__new__(_NamespaceLoader) loader._path = spec.submodule_search_locations try: @@ -1202,29 +684,6 @@ return _load_unlocked(spec) -def _fix_up_module(ns, name, pathname, cpathname=None): - # This function is used by PyImport_ExecCodeModuleObject(). - loader = ns.get('__loader__') - spec = ns.get('__spec__') - if not loader: - if spec: - loader = spec.loader - elif pathname == cpathname: - loader = SourcelessFileLoader(name, pathname) - else: - loader = SourceFileLoader(name, pathname) - if not spec: - spec = spec_from_file_location(name, pathname, loader=loader) - try: - ns['__spec__'] = spec - ns['__loader__'] = loader - ns['__file__'] = pathname - ns['__cached__'] = cpathname - except Exception: - # Not important enough to report. - pass - - # Loaders ##################################################################### class BuiltinImporter: @@ -1351,6 +810,7 @@ This method is deprecated. Use exec_module() instead. """ + from ._bootstrap_external import _load_module_shim # XXX yuck return _load_module_shim(cls, fullname) @classmethod @@ -1372,742 +832,6 @@ return _imp.is_frozen_package(fullname) -class WindowsRegistryFinder: - - """Meta path finder for modules declared in the Windows registry.""" - - REGISTRY_KEY = ( - 'Software\\Python\\PythonCore\\{sys_version}' - '\\Modules\\{fullname}') - REGISTRY_KEY_DEBUG = ( - 'Software\\Python\\PythonCore\\{sys_version}' - '\\Modules\\{fullname}\\Debug') - DEBUG_BUILD = False # Changed in _setup() - - @classmethod - def _open_registry(cls, key): - try: - return _winreg.OpenKey(_winreg.HKEY_CURRENT_USER, key) - except OSError: - return _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, key) - - @classmethod - def _search_registry(cls, fullname): - if cls.DEBUG_BUILD: - registry_key = cls.REGISTRY_KEY_DEBUG - else: - registry_key = cls.REGISTRY_KEY - key = registry_key.format(fullname=fullname, - sys_version=sys.version[:3]) - try: - with cls._open_registry(key) as hkey: - filepath = _winreg.QueryValue(hkey, '') - except OSError: - return None - return filepath - - @classmethod - def find_spec(cls, fullname, path=None, target=None): - filepath = cls._search_registry(fullname) - if filepath is None: - return None - try: - _path_stat(filepath) - except OSError: - return None - for loader, suffixes in _get_supported_file_loaders(): - if filepath.endswith(tuple(suffixes)): - spec = spec_from_loader(fullname, loader(fullname, filepath), - origin=filepath) - return spec - - @classmethod - def find_module(cls, fullname, path=None): - """Find module named in the registry. - - This method is deprecated. Use exec_module() instead. - - """ - spec = cls.find_spec(fullname, path) - if spec is not None: - return spec.loader - else: - return None - - -class _LoaderBasics: - - """Base class of common code needed by both SourceLoader and - SourcelessFileLoader.""" - - def is_package(self, fullname): - """Concrete implementation of InspectLoader.is_package by checking if - the path returned by get_filename has a filename of '__init__.py'.""" - filename = _path_split(self.get_filename(fullname))[1] - filename_base = filename.rsplit('.', 1)[0] - tail_name = fullname.rpartition('.')[2] - return filename_base == '__init__' and tail_name != '__init__' - - def create_module(self, spec): - """Use default semantics for module creation.""" - - def exec_module(self, module): - """Execute the module.""" - code = self.get_code(module.__name__) - if code is None: - raise ImportError('cannot load module {!r} when get_code() ' - 'returns None'.format(module.__name__)) - _call_with_frames_removed(exec, code, module.__dict__) - - load_module = _load_module_shim - - -class SourceLoader(_LoaderBasics): - - def path_mtime(self, path): - """Optional method that returns the modification time (an int) for the - specified path, where path is a str. - - Raises IOError when the path cannot be handled. - """ - raise IOError - - def path_stats(self, path): - """Optional method returning a metadata dict for the specified path - to by the path (str). - Possible keys: - - 'mtime' (mandatory) is the numeric timestamp of last source - code modification; - - 'size' (optional) is the size in bytes of the source code. - - Implementing this method allows the loader to read bytecode files. - Raises IOError when the path cannot be handled. - """ - return {'mtime': self.path_mtime(path)} - - def _cache_bytecode(self, source_path, cache_path, data): - """Optional method which writes data (bytes) to a file path (a str). - - Implementing this method allows for the writing of bytecode files. - - The source path is needed in order to correctly transfer permissions - """ - # For backwards compatibility, we delegate to set_data() - return self.set_data(cache_path, data) - - def set_data(self, path, data): - """Optional method which writes data (bytes) to a file path (a str). - - Implementing this method allows for the writing of bytecode files. - """ - - - def get_source(self, fullname): - """Concrete implementation of InspectLoader.get_source.""" - path = self.get_filename(fullname) - try: - source_bytes = self.get_data(path) - except OSError as exc: - raise ImportError('source not available through get_data()', - name=fullname) from exc - return decode_source(source_bytes) - - def source_to_code(self, data, path, *, _optimize=-1): - """Return the code object compiled from source. - - The 'data' argument can be any object type that compile() supports. - """ - return _call_with_frames_removed(compile, data, path, 'exec', - dont_inherit=True, optimize=_optimize) - - def get_code(self, fullname): - """Concrete implementation of InspectLoader.get_code. - - Reading of bytecode requires path_stats to be implemented. To write - bytecode, set_data must also be implemented. - - """ - source_path = self.get_filename(fullname) - source_mtime = None - try: - bytecode_path = cache_from_source(source_path) - except NotImplementedError: - bytecode_path = None - else: - try: - st = self.path_stats(source_path) - except IOError: - pass - else: - source_mtime = int(st['mtime']) - try: - data = self.get_data(bytecode_path) - except OSError: - pass - else: - try: - bytes_data = _validate_bytecode_header(data, - source_stats=st, name=fullname, - path=bytecode_path) - except (ImportError, EOFError): - pass - else: - _verbose_message('{} matches {}', bytecode_path, - source_path) - return _compile_bytecode(bytes_data, name=fullname, - bytecode_path=bytecode_path, - source_path=source_path) - source_bytes = self.get_data(source_path) - code_object = self.source_to_code(source_bytes, source_path) - _verbose_message('code object from {}', source_path) - if (not sys.dont_write_bytecode and bytecode_path is not None and - source_mtime is not None): - data = _code_to_bytecode(code_object, source_mtime, - len(source_bytes)) - try: - self._cache_bytecode(source_path, bytecode_path, data) - _verbose_message('wrote {!r}', bytecode_path) - except NotImplementedError: - pass - return code_object - - -class FileLoader: - - """Base file loader class which implements the loader protocol methods that - require file system usage.""" - - def __init__(self, fullname, path): - """Cache the module name and the path to the file found by the - finder.""" - self.name = fullname - self.path = path - - def __eq__(self, other): - return (self.__class__ == other.__class__ and - self.__dict__ == other.__dict__) - - def __hash__(self): - return hash(self.name) ^ hash(self.path) - - @_check_name - def load_module(self, fullname): - """Load a module from a file. - - This method is deprecated. Use exec_module() instead. - - """ - # The only reason for this method is for the name check. - # Issue #14857: Avoid the zero-argument form of super so the implementation - # of that form can be updated without breaking the frozen module - return super(FileLoader, self).load_module(fullname) - - @_check_name - def get_filename(self, fullname): - """Return the path to the source file as found by the finder.""" - return self.path - - def get_data(self, path): - """Return the data from path as raw bytes.""" - with _io.FileIO(path, 'r') as file: - return file.read() - - -class SourceFileLoader(FileLoader, SourceLoader): - - """Concrete implementation of SourceLoader using the file system.""" - - def path_stats(self, path): - """Return the metadata for the path.""" - st = _path_stat(path) - return {'mtime': st.st_mtime, 'size': st.st_size} - - def _cache_bytecode(self, source_path, bytecode_path, data): - # Adapt between the two APIs - mode = _calc_mode(source_path) - return self.set_data(bytecode_path, data, _mode=mode) - - def set_data(self, path, data, *, _mode=0o666): - """Write bytes data to a file.""" - parent, filename = _path_split(path) - path_parts = [] - # Figure out what directories are missing. - while parent and not _path_isdir(parent): - parent, part = _path_split(parent) - path_parts.append(part) - # Create needed directories. - for part in reversed(path_parts): - parent = _path_join(parent, part) - try: - _os.mkdir(parent) - except FileExistsError: - # Probably another Python process already created the dir. - continue - except OSError as exc: - # Could be a permission error, read-only filesystem: just forget - # about writing the data. - _verbose_message('could not create {!r}: {!r}', parent, exc) - return - try: - _write_atomic(path, data, _mode) - _verbose_message('created {!r}', path) - except OSError as exc: - # Same as above: just don't write the bytecode. - _verbose_message('could not create {!r}: {!r}', path, exc) - - -class SourcelessFileLoader(FileLoader, _LoaderBasics): - - """Loader which handles sourceless file imports.""" - - def get_code(self, fullname): - path = self.get_filename(fullname) - data = self.get_data(path) - bytes_data = _validate_bytecode_header(data, name=fullname, path=path) - return _compile_bytecode(bytes_data, name=fullname, bytecode_path=path) - - def get_source(self, fullname): - """Return None as there is no source code.""" - return None - - -# Filled in by _setup(). -EXTENSION_SUFFIXES = [] - - -class ExtensionFileLoader: - - """Loader for extension modules. - - The constructor is designed to work with FileFinder. - - """ - - def __init__(self, name, path): - self.name = name - self.path = path - - def __eq__(self, other): - return (self.__class__ == other.__class__ and - self.__dict__ == other.__dict__) - - def __hash__(self): - return hash(self.name) ^ hash(self.path) - - @_check_name - def load_module(self, fullname): - """Load an extension module.""" - # Once an exec_module() implementation is added we can also - # add a deprecation warning here. - with _ManageReload(fullname): - module = _call_with_frames_removed(_imp.load_dynamic, - fullname, self.path) - _verbose_message('extension module loaded from {!r}', self.path) - is_package = self.is_package(fullname) - if is_package and not hasattr(module, '__path__'): - module.__path__ = [_path_split(self.path)[0]] - module.__loader__ = self - module.__package__ = module.__name__ - if not is_package: - module.__package__ = module.__package__.rpartition('.')[0] - return module - - def is_package(self, fullname): - """Return True if the extension module is a package.""" - file_name = _path_split(self.path)[1] - return any(file_name == '__init__' + suffix - for suffix in EXTENSION_SUFFIXES) - - def get_code(self, fullname): - """Return None as an extension module cannot create a code object.""" - return None - - def get_source(self, fullname): - """Return None as extension modules have no source code.""" - return None - - @_check_name - def get_filename(self, fullname): - """Return the path to the source file as found by the finder.""" - return self.path - - -class _NamespacePath: - """Represents a namespace package's path. It uses the module name - to find its parent module, and from there it looks up the parent's - __path__. When this changes, the module's own path is recomputed, - using path_finder. For top-level modules, the parent module's path - is sys.path.""" - - def __init__(self, name, path, path_finder): - self._name = name - self._path = path - self._last_parent_path = tuple(self._get_parent_path()) - self._path_finder = path_finder - - def _find_parent_path_names(self): - """Returns a tuple of (parent-module-name, parent-path-attr-name)""" - parent, dot, me = self._name.rpartition('.') - if dot == '': - # This is a top-level module. sys.path contains the parent path. - return 'sys', 'path' - # Not a top-level module. parent-module.__path__ contains the - # parent path. - return parent, '__path__' - - def _get_parent_path(self): - parent_module_name, path_attr_name = self._find_parent_path_names() - return getattr(sys.modules[parent_module_name], path_attr_name) - - def _recalculate(self): - # If the parent's path has changed, recalculate _path - parent_path = tuple(self._get_parent_path()) # Make a copy - if parent_path != self._last_parent_path: - spec = self._path_finder(self._name, parent_path) - # Note that no changes are made if a loader is returned, but we - # do remember the new parent path - if spec is not None and spec.loader is None: - if spec.submodule_search_locations: - self._path = spec.submodule_search_locations - self._last_parent_path = parent_path # Save the copy - return self._path - - def __iter__(self): - return iter(self._recalculate()) - - def __len__(self): - return len(self._recalculate()) - - def __repr__(self): - return '_NamespacePath({!r})'.format(self._path) - - def __contains__(self, item): - return item in self._recalculate() - - def append(self, item): - self._path.append(item) - - -# We use this exclusively in module_from_spec() for backward-compatibility. -class _NamespaceLoader: - def __init__(self, name, path, path_finder): - self._path = _NamespacePath(name, path, path_finder) - - @classmethod - def module_repr(cls, module): - """Return repr for the module. - - The method is deprecated. The import machinery does the job itself. - - """ - return ''.format(module.__name__) - - def is_package(self, fullname): - return True - - def get_source(self, fullname): - return '' - - def get_code(self, fullname): - return compile('', '', 'exec', dont_inherit=True) - - def create_module(self, spec): - """Use default semantics for module creation.""" - - def exec_module(self, module): - pass - - def load_module(self, fullname): - """Load a namespace module. - - This method is deprecated. Use exec_module() instead. - - """ - # The import system never calls this method. - _verbose_message('namespace module loaded with path {!r}', self._path) - return _load_module_shim(self, fullname) - - -# Finders ##################################################################### - -class PathFinder: - - """Meta path finder for sys.path and package __path__ attributes.""" - - @classmethod - def invalidate_caches(cls): - """Call the invalidate_caches() method on all path entry finders - stored in sys.path_importer_caches (where implemented).""" - for finder in sys.path_importer_cache.values(): - if hasattr(finder, 'invalidate_caches'): - finder.invalidate_caches() - - @classmethod - def _path_hooks(cls, path): - """Search sequence of hooks for a finder for 'path'. - - If 'hooks' is false then use sys.path_hooks. - - """ - if sys.path_hooks is not None and not sys.path_hooks: - _warnings.warn('sys.path_hooks is empty', ImportWarning) - for hook in sys.path_hooks: - try: - return hook(path) - except ImportError: - continue - else: - return None - - @classmethod - def _path_importer_cache(cls, path): - """Get the finder for the path entry from sys.path_importer_cache. - - If the path entry is not in the cache, find the appropriate finder - and cache it. If no finder is available, store None. - - """ - if path == '': - try: - path = _os.getcwd() - except FileNotFoundError: - # Don't cache the failure as the cwd can easily change to - # a valid directory later on. - return None - try: - finder = sys.path_importer_cache[path] - except KeyError: - finder = cls._path_hooks(path) - sys.path_importer_cache[path] = finder - return finder - - @classmethod - def _legacy_get_spec(cls, fullname, finder): - # This would be a good place for a DeprecationWarning if - # we ended up going that route. - if hasattr(finder, 'find_loader'): - loader, portions = finder.find_loader(fullname) - else: - loader = finder.find_module(fullname) - portions = [] - if loader is not None: - return spec_from_loader(fullname, loader) - spec = ModuleSpec(fullname, None) - spec.submodule_search_locations = portions - return spec - - @classmethod - def _get_spec(cls, fullname, path, target=None): - """Find the loader or namespace_path for this module/package name.""" - # If this ends up being a namespace package, namespace_path is - # the list of paths that will become its __path__ - namespace_path = [] - for entry in path: - if not isinstance(entry, (str, bytes)): - continue - finder = cls._path_importer_cache(entry) - if finder is not None: - if hasattr(finder, 'find_spec'): - spec = finder.find_spec(fullname, target) - else: - spec = cls._legacy_get_spec(fullname, finder) - if spec is None: - continue - if spec.loader is not None: - return spec - portions = spec.submodule_search_locations - if portions is None: - raise ImportError('spec missing loader') - # This is possibly part of a namespace package. - # Remember these path entries (if any) for when we - # create a namespace package, and continue iterating - # on path. - namespace_path.extend(portions) - else: - spec = ModuleSpec(fullname, None) - spec.submodule_search_locations = namespace_path - return spec - - @classmethod - def find_spec(cls, fullname, path=None, target=None): - """find the module on sys.path or 'path' based on sys.path_hooks and - sys.path_importer_cache.""" - if path is None: - path = sys.path - spec = cls._get_spec(fullname, path, target) - if spec is None: - return None - elif spec.loader is None: - namespace_path = spec.submodule_search_locations - if namespace_path: - # We found at least one namespace path. Return a - # spec which can create the namespace package. - spec.origin = 'namespace' - spec.submodule_search_locations = _NamespacePath(fullname, namespace_path, cls._get_spec) - return spec - else: - return None - else: - return spec - - @classmethod - def find_module(cls, fullname, path=None): - """find the module on sys.path or 'path' based on sys.path_hooks and - sys.path_importer_cache. - - This method is deprecated. Use find_spec() instead. - - """ - spec = cls.find_spec(fullname, path) - if spec is None: - return None - return spec.loader - - -class FileFinder: - - """File-based finder. - - Interactions with the file system are cached for performance, being - refreshed when the directory the finder is handling has been modified. - - """ - - def __init__(self, path, *loader_details): - """Initialize with the path to search on and a variable number of - 2-tuples containing the loader and the file suffixes the loader - recognizes.""" - loaders = [] - for loader, suffixes in loader_details: - loaders.extend((suffix, loader) for suffix in suffixes) - self._loaders = loaders - # Base (directory) path - self.path = path or '.' - self._path_mtime = -1 - self._path_cache = set() - self._relaxed_path_cache = set() - - def invalidate_caches(self): - """Invalidate the directory mtime.""" - self._path_mtime = -1 - - find_module = _find_module_shim - - def find_loader(self, fullname): - """Try to find a loader for the specified module, or the namespace - package portions. Returns (loader, list-of-portions). - - This method is deprecated. Use find_spec() instead. - - """ - spec = self.find_spec(fullname) - if spec is None: - return None, [] - return spec.loader, spec.submodule_search_locations or [] - - def _get_spec(self, loader_class, fullname, path, smsl, target): - loader = loader_class(fullname, path) - return spec_from_file_location(fullname, path, loader=loader, - submodule_search_locations=smsl) - - def find_spec(self, fullname, target=None): - """Try to find a loader for the specified module, or the namespace - package portions. Returns (loader, list-of-portions).""" - is_namespace = False - tail_module = fullname.rpartition('.')[2] - try: - mtime = _path_stat(self.path or _os.getcwd()).st_mtime - except OSError: - mtime = -1 - if mtime != self._path_mtime: - self._fill_cache() - self._path_mtime = mtime - # tail_module keeps the original casing, for __file__ and friends - if _relax_case(): - cache = self._relaxed_path_cache - cache_module = tail_module.lower() - else: - cache = self._path_cache - cache_module = tail_module - # Check if the module is the name of a directory (and thus a package). - if cache_module in cache: - base_path = _path_join(self.path, tail_module) - for suffix, loader_class in self._loaders: - init_filename = '__init__' + suffix - full_path = _path_join(base_path, init_filename) - if _path_isfile(full_path): - return self._get_spec(loader_class, fullname, full_path, [base_path], target) - else: - # If a namespace package, return the path if we don't - # find a module in the next section. - is_namespace = _path_isdir(base_path) - # Check for a file w/ a proper suffix exists. - for suffix, loader_class in self._loaders: - full_path = _path_join(self.path, tail_module + suffix) - _verbose_message('trying {}'.format(full_path), verbosity=2) - if cache_module + suffix in cache: - if _path_isfile(full_path): - return self._get_spec(loader_class, fullname, full_path, None, target) - if is_namespace: - _verbose_message('possible namespace for {}'.format(base_path)) - spec = ModuleSpec(fullname, None) - spec.submodule_search_locations = [base_path] - return spec - return None - - def _fill_cache(self): - """Fill the cache of potential modules and packages for this directory.""" - path = self.path - try: - contents = _os.listdir(path or _os.getcwd()) - except (FileNotFoundError, PermissionError, NotADirectoryError): - # Directory has either been removed, turned into a file, or made - # unreadable. - contents = [] - # We store two cached versions, to handle runtime changes of the - # PYTHONCASEOK environment variable. - if not sys.platform.startswith('win'): - self._path_cache = set(contents) - else: - # Windows users can import modules with case-insensitive file - # suffixes (for legacy reasons). Make the suffix lowercase here - # so it's done once instead of for every import. This is safe as - # the specified suffixes to check against are always specified in a - # case-sensitive manner. - lower_suffix_contents = set() - for item in contents: - name, dot, suffix = item.partition('.') - if dot: - new_name = '{}.{}'.format(name, suffix.lower()) - else: - new_name = name - lower_suffix_contents.add(new_name) - self._path_cache = lower_suffix_contents - if sys.platform.startswith(_CASE_INSENSITIVE_PLATFORMS): - self._relaxed_path_cache = {fn.lower() for fn in contents} - - @classmethod - def path_hook(cls, *loader_details): - """A class method which returns a closure to use on sys.path_hook - which will return an instance using the specified loaders and the path - called on the closure. - - If the path called on the closure is not a directory, ImportError is - raised. - - """ - def path_hook_for_FileFinder(path): - """Path hook for importlib.machinery.FileFinder.""" - if not _path_isdir(path): - raise ImportError('only directories are supported', path=path) - return cls(path, *loader_details) - - return path_hook_for_FileFinder - - def __repr__(self): - return 'FileFinder({!r})'.format(self.path) - - # Import itself ############################################################### class _ImportLockContext: @@ -2305,17 +1029,6 @@ return package -def _get_supported_file_loaders(): - """Returns a list of file-based module loaders. - - Each item is a tuple (loader, suffixes). - """ - extensions = ExtensionFileLoader, _imp.extension_suffixes() - source = SourceFileLoader, SOURCE_SUFFIXES - bytecode = SourcelessFileLoader, BYTECODE_SUFFIXES - return [extensions, source, bytecode] - - def __import__(name, globals=None, locals=None, fromlist=(), level=0): """Import a module. @@ -2385,34 +1098,13 @@ # Directly load built-in modules needed during bootstrap. self_module = sys.modules[__name__] - for builtin_name in ('_io', '_warnings', 'builtins', 'marshal'): + for builtin_name in ('_warnings',): if builtin_name not in sys.modules: builtin_module = _builtin_from_name(builtin_name) else: builtin_module = sys.modules[builtin_name] setattr(self_module, builtin_name, builtin_module) - # Directly load the os module (needed during bootstrap). - os_details = ('posix', ['/']), ('nt', ['\\', '/']) - for builtin_os, path_separators in os_details: - # Assumption made in _path_join() - assert all(len(sep) == 1 for sep in path_separators) - path_sep = path_separators[0] - if builtin_os in sys.modules: - os_module = sys.modules[builtin_os] - break - else: - try: - os_module = _builtin_from_name(builtin_os) - break - except ImportError: - continue - else: - raise ImportError('importlib requires posix or nt') - setattr(self_module, '_os', os_module) - setattr(self_module, 'path_sep', path_sep) - setattr(self_module, 'path_separators', ''.join(path_separators)) - # Directly load the _thread module (needed during bootstrap). try: thread_module = _builtin_from_name('_thread') @@ -2425,27 +1117,14 @@ weakref_module = _builtin_from_name('_weakref') setattr(self_module, '_weakref', weakref_module) - # Directly load the winreg module (needed during bootstrap). - if builtin_os == 'nt': - winreg_module = _builtin_from_name('winreg') - setattr(self_module, '_winreg', winreg_module) - - # Constants - setattr(self_module, '_relax_case', _make_relax_case()) - EXTENSION_SUFFIXES.extend(_imp.extension_suffixes()) - if builtin_os == 'nt': - SOURCE_SUFFIXES.append('.pyw') - if '_d.pyd' in EXTENSION_SUFFIXES: - WindowsRegistryFinder.DEBUG_BUILD = True - def _install(sys_module, _imp_module): """Install importlib as the implementation of import.""" _setup(sys_module, _imp_module) - supported_loaders = _get_supported_file_loaders() - sys.path_hooks.extend([FileFinder.path_hook(*supported_loaders)]) + sys.meta_path.append(BuiltinImporter) sys.meta_path.append(FrozenImporter) - if _os.__name__ == 'nt': - sys.meta_path.append(WindowsRegistryFinder) - sys.meta_path.append(PathFinder) + + import _frozen_importlib_external + _frozen_importlib_external._install(sys.modules[__name__]) + sys.modules[__name__]._bootstrap_external = _frozen_importlib_external diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py new file mode 100644 --- /dev/null +++ b/Lib/importlib/_bootstrap_external.py @@ -0,0 +1,1462 @@ +"""Core implementation of path-based import. + +This module is NOT meant to be directly imported! It has been designed such +that it can be bootstrapped into Python as the implementation of import. As +such it requires the injection of specific modules and attributes in order to +work. One should use importlib as the public-facing version of this module. + +""" +# +# IMPORTANT: Whenever making changes to this module, be sure to run +# a top-level make in order to get the frozen version of the module +# updated. Not doing so will result in the Makefile to fail for +# all others who don't have a ./python around to freeze the module +# in the early stages of compilation. +# + +# See importlib._setup() for what is injected into the global namespace. + +# When editing this code be aware that code executed at import time CANNOT +# reference any injected objects! This includes not only global code but also +# anything specified at the class level. + +# Bootstrap-related code ###################################################### + +_CASE_INSENSITIVE_PLATFORMS = 'win', 'cygwin', 'darwin' + + +def _make_relax_case(): + if sys.platform.startswith(_CASE_INSENSITIVE_PLATFORMS): + def _relax_case(): + """True if filenames must be checked case-insensitively.""" + return b'PYTHONCASEOK' in _os.environ + else: + def _relax_case(): + """True if filenames must be checked case-insensitively.""" + return False + return _relax_case + + +def _w_long(x): + """Convert a 32-bit integer to little-endian.""" + return (int(x) & 0xFFFFFFFF).to_bytes(4, 'little') + + +def _r_long(int_bytes): + """Convert 4 bytes in little-endian to an integer.""" + return int.from_bytes(int_bytes, 'little') + + +def _path_join(*path_parts): + """Replacement for os.path.join().""" + return path_sep.join([part.rstrip(path_separators) + for part in path_parts if part]) + + +def _path_split(path): + """Replacement for os.path.split().""" + if len(path_separators) == 1: + front, _, tail = path.rpartition(path_sep) + return front, tail + for x in reversed(path): + if x in path_separators: + front, tail = path.rsplit(x, maxsplit=1) + return front, tail + return '', path + + +def _path_stat(path): + """Stat the path. + + Made a separate function to make it easier to override in experiments + (e.g. cache stat results). + + """ + return _os.stat(path) + + +def _path_is_mode_type(path, mode): + """Test whether the path is the specified mode type.""" + try: + stat_info = _path_stat(path) + except OSError: + return False + return (stat_info.st_mode & 0o170000) == mode + + +def _path_isfile(path): + """Replacement for os.path.isfile.""" + return _path_is_mode_type(path, 0o100000) + + +def _path_isdir(path): + """Replacement for os.path.isdir.""" + if not path: + path = _os.getcwd() + return _path_is_mode_type(path, 0o040000) + + +def _write_atomic(path, data, mode=0o666): + """Best-effort function to write data to a path atomically. + Be prepared to handle a FileExistsError if concurrent writing of the + temporary file is attempted.""" + # id() is used to generate a pseudo-random filename. + path_tmp = '{}.{}'.format(path, id(path)) + fd = _os.open(path_tmp, + _os.O_EXCL | _os.O_CREAT | _os.O_WRONLY, mode & 0o666) + try: + # We first write data to a temporary file, and then use os.replace() to + # perform an atomic rename. + with _io.FileIO(fd, 'wb') as file: + file.write(data) + _os.replace(path_tmp, path) + except OSError: + try: + _os.unlink(path_tmp) + except OSError: + pass + raise + + +_code_type = type(_write_atomic.__code__) + + +# Finder/loader utility code ############################################### + +# Magic word to reject .pyc files generated by other Python versions. +# It should change for each incompatible change to the bytecode. +# +# The value of CR and LF is incorporated so if you ever read or write +# a .pyc file in text mode the magic number will be wrong; also, the +# Apple MPW compiler swaps their values, botching string constants. +# +# The magic numbers must be spaced apart at least 2 values, as the +# -U interpeter flag will cause MAGIC+1 being used. They have been +# odd numbers for some time now. +# +# There were a variety of old schemes for setting the magic number. +# The current working scheme is to increment the previous value by +# 10. +# +# Starting with the adoption of PEP 3147 in Python 3.2, every bump in magic +# number also includes a new "magic tag", i.e. a human readable string used +# to represent the magic number in __pycache__ directories. When you change +# the magic number, you must also set a new unique magic tag. Generally this +# can be named after the Python major version of the magic number bump, but +# it can really be anything, as long as it's different than anything else +# that's come before. The tags are included in the following table, starting +# with Python 3.2a0. +# +# Known values: +# Python 1.5: 20121 +# Python 1.5.1: 20121 +# Python 1.5.2: 20121 +# Python 1.6: 50428 +# Python 2.0: 50823 +# Python 2.0.1: 50823 +# Python 2.1: 60202 +# Python 2.1.1: 60202 +# Python 2.1.2: 60202 +# Python 2.2: 60717 +# Python 2.3a0: 62011 +# Python 2.3a0: 62021 +# Python 2.3a0: 62011 (!) +# Python 2.4a0: 62041 +# Python 2.4a3: 62051 +# Python 2.4b1: 62061 +# Python 2.5a0: 62071 +# Python 2.5a0: 62081 (ast-branch) +# Python 2.5a0: 62091 (with) +# Python 2.5a0: 62092 (changed WITH_CLEANUP opcode) +# Python 2.5b3: 62101 (fix wrong code: for x, in ...) +# Python 2.5b3: 62111 (fix wrong code: x += yield) +# Python 2.5c1: 62121 (fix wrong lnotab with for loops and +# storing constants that should have been removed) +# Python 2.5c2: 62131 (fix wrong code: for x, in ... in listcomp/genexp) +# Python 2.6a0: 62151 (peephole optimizations and STORE_MAP opcode) +# Python 2.6a1: 62161 (WITH_CLEANUP optimization) +# Python 2.7a0: 62171 (optimize list comprehensions/change LIST_APPEND) +# Python 2.7a0: 62181 (optimize conditional branches: +# introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE) +# Python 2.7a0 62191 (introduce SETUP_WITH) +# Python 2.7a0 62201 (introduce BUILD_SET) +# Python 2.7a0 62211 (introduce MAP_ADD and SET_ADD) +# Python 3000: 3000 +# 3010 (removed UNARY_CONVERT) +# 3020 (added BUILD_SET) +# 3030 (added keyword-only parameters) +# 3040 (added signature annotations) +# 3050 (print becomes a function) +# 3060 (PEP 3115 metaclass syntax) +# 3061 (string literals become unicode) +# 3071 (PEP 3109 raise changes) +# 3081 (PEP 3137 make __file__ and __name__ unicode) +# 3091 (kill str8 interning) +# 3101 (merge from 2.6a0, see 62151) +# 3103 (__file__ points to source file) +# Python 3.0a4: 3111 (WITH_CLEANUP optimization). +# Python 3.0a5: 3131 (lexical exception stacking, including POP_EXCEPT) +# Python 3.1a0: 3141 (optimize list, set and dict comprehensions: +# change LIST_APPEND and SET_ADD, add MAP_ADD) +# Python 3.1a0: 3151 (optimize conditional branches: +# introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE) +# Python 3.2a0: 3160 (add SETUP_WITH) +# tag: cpython-32 +# Python 3.2a1: 3170 (add DUP_TOP_TWO, remove DUP_TOPX and ROT_FOUR) +# tag: cpython-32 +# Python 3.2a2 3180 (add DELETE_DEREF) +# Python 3.3a0 3190 __class__ super closure changed +# Python 3.3a0 3200 (__qualname__ added) +# 3210 (added size modulo 2**32 to the pyc header) +# Python 3.3a1 3220 (changed PEP 380 implementation) +# Python 3.3a4 3230 (revert changes to implicit __class__ closure) +# Python 3.4a1 3250 (evaluate positional default arguments before +# keyword-only defaults) +# Python 3.4a1 3260 (add LOAD_CLASSDEREF; allow locals of class to override +# free vars) +# Python 3.4a1 3270 (various tweaks to the __class__ closure) +# Python 3.4a1 3280 (remove implicit class argument) +# Python 3.4a4 3290 (changes to __qualname__ computation) +# Python 3.4a4 3300 (more changes to __qualname__ computation) +# Python 3.4rc2 3310 (alter __qualname__ computation) +# Python 3.5a0 3320 (matrix multiplication operator) +# +# MAGIC must change whenever the bytecode emitted by the compiler may no +# longer be understood by older implementations of the eval loop (usually +# due to the addition of new opcodes). + +MAGIC_NUMBER = (3320).to_bytes(2, 'little') + b'\r\n' +_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c + +_PYCACHE = '__pycache__' +_OPT = 'opt-' + +SOURCE_SUFFIXES = ['.py'] # _setup() adds .pyw as needed. + +BYTECODE_SUFFIXES = ['.pyc'] +# Deprecated. +DEBUG_BYTECODE_SUFFIXES = OPTIMIZED_BYTECODE_SUFFIXES = BYTECODE_SUFFIXES + +def cache_from_source(path, debug_override=None, *, optimization=None): + """Given the path to a .py file, return the path to its .pyc file. + + The .py file does not need to exist; this simply returns the path to the + .pyc file calculated as if the .py file were imported. + + The 'optimization' parameter controls the presumed optimization level of + the bytecode file. If 'optimization' is not None, the string representation + of the argument is taken and verified to be alphanumeric (else ValueError + is raised). + + The debug_override parameter is deprecated. If debug_override is not None, + a True value is the same as setting 'optimization' to the empty string + while a False value is equivalent to setting 'optimization' to '1'. + + If sys.implementation.cache_tag is None then NotImplementedError is raised. + + """ + if debug_override is not None: + _warnings.warn('the debug_override parameter is deprecated; use ' + "'optimization' instead", DeprecationWarning) + if optimization is not None: + message = 'debug_override or optimization must be set to None' + raise TypeError(message) + optimization = '' if debug_override else 1 + head, tail = _path_split(path) + base, sep, rest = tail.rpartition('.') + tag = sys.implementation.cache_tag + if tag is None: + raise NotImplementedError('sys.implementation.cache_tag is None') + almost_filename = ''.join([(base if base else rest), sep, tag]) + if optimization is None: + if sys.flags.optimize == 0: + optimization = '' + else: + optimization = sys.flags.optimize + optimization = str(optimization) + if optimization != '': + if not optimization.isalnum(): + raise ValueError('{!r} is not alphanumeric'.format(optimization)) + almost_filename = '{}.{}{}'.format(almost_filename, _OPT, optimization) + return _path_join(head, _PYCACHE, almost_filename + BYTECODE_SUFFIXES[0]) + + +def source_from_cache(path): + """Given the path to a .pyc. file, return the path to its .py file. + + The .pyc file does not need to exist; this simply returns the path to + the .py file calculated to correspond to the .pyc file. If path does + not conform to PEP 3147/488 format, ValueError will be raised. If + sys.implementation.cache_tag is None then NotImplementedError is raised. + + """ + if sys.implementation.cache_tag is None: + raise NotImplementedError('sys.implementation.cache_tag is None') + head, pycache_filename = _path_split(path) + head, pycache = _path_split(head) + if pycache != _PYCACHE: + raise ValueError('{} not bottom-level directory in ' + '{!r}'.format(_PYCACHE, path)) + dot_count = pycache_filename.count('.') + if dot_count not in {2, 3}: + raise ValueError('expected only 2 or 3 dots in ' + '{!r}'.format(pycache_filename)) + elif dot_count == 3: + optimization = pycache_filename.rsplit('.', 2)[-2] + if not optimization.startswith(_OPT): + raise ValueError("optimization portion of filename does not start " + "with {!r}".format(_OPT)) + opt_level = optimization[len(_OPT):] + if not opt_level.isalnum(): + raise ValueError("optimization level {!r} is not an alphanumeric " + "value".format(optimization)) + base_filename = pycache_filename.partition('.')[0] + return _path_join(head, base_filename + SOURCE_SUFFIXES[0]) + + +def _get_sourcefile(bytecode_path): + """Convert a bytecode file path to a source path (if possible). + + This function exists purely for backwards-compatibility for + PyImport_ExecCodeModuleWithFilenames() in the C API. + + """ + if len(bytecode_path) == 0: + return None + rest, _, extension = bytecode_path.rpartition('.') + if not rest or extension.lower()[-3:-1] != 'py': + return bytecode_path + try: + source_path = source_from_cache(bytecode_path) + except (NotImplementedError, ValueError): + source_path = bytecode_path[:-1] + return source_path if _path_isfile(source_path) else bytecode_path + + +def _get_cached(filename): + if filename.endswith(tuple(SOURCE_SUFFIXES)): + try: + return cache_from_source(filename) + except NotImplementedError: + pass + elif filename.endswith(tuple(BYTECODE_SUFFIXES)): + return filename + else: + return None + + +def _calc_mode(path): + """Calculate the mode permissions for a bytecode file.""" + try: + mode = _path_stat(path).st_mode + except OSError: + mode = 0o666 + # We always ensure write access so we can update cached files + # later even when the source files are read-only on Windows (#6074) + mode |= 0o200 + return mode + + +def _verbose_message(message, *args, verbosity=1): + """Print the message to stderr if -v/PYTHONVERBOSE is turned on.""" + if sys.flags.verbose >= verbosity: + if not message.startswith(('#', 'import ')): + message = '# ' + message + print(message.format(*args), file=sys.stderr) + + +def _check_name(method): + """Decorator to verify that the module being requested matches the one the + loader can handle. + + The first argument (self) must define _name which the second argument is + compared against. If the comparison fails then ImportError is raised. + + """ + def _check_name_wrapper(self, name=None, *args, **kwargs): + if name is None: + name = self.name + elif self.name != name: + raise ImportError('loader cannot handle %s' % name, name=name) + return method(self, name, *args, **kwargs) + try: + _wrap = _bootstrap._wrap + except NameError: + # XXX yuck + def _wrap(new, old): + for replace in ['__module__', '__name__', '__qualname__', '__doc__']: + if hasattr(old, replace): + setattr(new, replace, getattr(old, replace)) + new.__dict__.update(old.__dict__) + _wrap(_check_name_wrapper, method) + return _check_name_wrapper + + +def _find_module_shim(self, fullname): + """Try to find a loader for the specified module by delegating to + self.find_loader(). + + This method is deprecated in favor of finder.find_spec(). + + """ + # Call find_loader(). If it returns a string (indicating this + # is a namespace package portion), generate a warning and + # return None. + loader, portions = self.find_loader(fullname) + if loader is None and len(portions): + msg = 'Not importing directory {}: missing __init__' + _warnings.warn(msg.format(portions[0]), ImportWarning) + return loader + + +# Typically used by loader classes as a method replacement. +def _load_module_shim(self, fullname): + """Load the specified module into sys.modules and return it. + + This method is deprecated. Use loader.exec_module instead. + + """ + spec = spec_from_loader(fullname, self) + if fullname in sys.modules: + module = sys.modules[fullname] + _bootstrap._exec(spec, module) + return sys.modules[fullname] + else: + return _bootstrap._load(spec) + + +def _validate_bytecode_header(data, source_stats=None, name=None, path=None): + """Validate the header of the passed-in bytecode against source_stats (if + given) and returning the bytecode that can be compiled by compile(). + + All other arguments are used to enhance error reporting. + + ImportError is raised when the magic number is incorrect or the bytecode is + found to be stale. EOFError is raised when the data is found to be + truncated. + + """ + exc_details = {} + if name is not None: + exc_details['name'] = name + else: + # To prevent having to make all messages have a conditional name. + name = '' + if path is not None: + exc_details['path'] = path + magic = data[:4] + raw_timestamp = data[4:8] + raw_size = data[8:12] + if magic != MAGIC_NUMBER: + message = 'bad magic number in {!r}: {!r}'.format(name, magic) + _verbose_message(message) + raise ImportError(message, **exc_details) + elif len(raw_timestamp) != 4: + message = 'reached EOF while reading timestamp in {!r}'.format(name) + _verbose_message(message) + raise EOFError(message) + elif len(raw_size) != 4: + message = 'reached EOF while reading size of source in {!r}'.format(name) + _verbose_message(message) + raise EOFError(message) + if source_stats is not None: + try: + source_mtime = int(source_stats['mtime']) + except KeyError: + pass + else: + if _r_long(raw_timestamp) != source_mtime: + message = 'bytecode is stale for {!r}'.format(name) + _verbose_message(message) + raise ImportError(message, **exc_details) + try: + source_size = source_stats['size'] & 0xFFFFFFFF + except KeyError: + pass + else: + if _r_long(raw_size) != source_size: + raise ImportError('bytecode is stale for {!r}'.format(name), + **exc_details) + return data[12:] + + +def _compile_bytecode(data, name=None, bytecode_path=None, source_path=None): + """Compile bytecode as returned by _validate_bytecode_header().""" + code = marshal.loads(data) + if isinstance(code, _code_type): + _verbose_message('code object from {!r}', bytecode_path) + if source_path is not None: + _imp._fix_co_filename(code, source_path) + return code + else: + raise ImportError('Non-code object in {!r}'.format(bytecode_path), + name=name, path=bytecode_path) + +def _code_to_bytecode(code, mtime=0, source_size=0): + """Compile a code object into bytecode for writing out to a byte-compiled + file.""" + data = bytearray(MAGIC_NUMBER) + data.extend(_w_long(mtime)) + data.extend(_w_long(source_size)) + data.extend(marshal.dumps(code)) + return data + + +def decode_source(source_bytes): + """Decode bytes representing source code and return the string. + + Universal newline support is used in the decoding. + """ + import tokenize # To avoid bootstrap issues. + source_bytes_readline = _io.BytesIO(source_bytes).readline + encoding = tokenize.detect_encoding(source_bytes_readline) + newline_decoder = _io.IncrementalNewlineDecoder(None, True) + return newline_decoder.decode(source_bytes.decode(encoding[0])) + + +# Module specifications ####################################################### + +def spec_from_loader(name, loader, *, origin=None, is_package=None): + """Return a module spec based on various loader methods.""" + if hasattr(loader, 'get_filename'): + if is_package is None: + return spec_from_file_location(name, loader=loader) + search = [] if is_package else None + return spec_from_file_location(name, loader=loader, + submodule_search_locations=search) + + if is_package is None: + if hasattr(loader, 'is_package'): + try: + is_package = loader.is_package(name) + except ImportError: + is_package = None # aka, undefined + else: + # the default + is_package = False + + return _bootstrap.ModuleSpec(name, loader, origin=origin, is_package=is_package) + + +_POPULATE = object() + + +def spec_from_file_location(name, location=None, *, loader=None, + submodule_search_locations=_POPULATE): + """Return a module spec based on a file location. + + To indicate that the module is a package, set + submodule_search_locations to a list of directory paths. An + empty list is sufficient, though its not otherwise useful to the + import system. + + The loader must take a spec as its only __init__() arg. + + """ + if location is None: + # The caller may simply want a partially populated location- + # oriented spec. So we set the location to a bogus value and + # fill in as much as we can. + location = '' + if hasattr(loader, 'get_filename'): + # ExecutionLoader + try: + location = loader.get_filename(name) + except ImportError: + pass + + # If the location is on the filesystem, but doesn't actually exist, + # we could return None here, indicating that the location is not + # valid. However, we don't have a good way of testing since an + # indirect location (e.g. a zip file or URL) will look like a + # non-existent file relative to the filesystem. + + spec = _bootstrap.ModuleSpec(name, loader, origin=location) + spec._set_fileattr = True + + # Pick a loader if one wasn't provided. + if loader is None: + for loader_class, suffixes in _get_supported_file_loaders(): + if location.endswith(tuple(suffixes)): + loader = loader_class(name, location) + spec.loader = loader + break + else: + return None + + # Set submodule_search_paths appropriately. + if submodule_search_locations is _POPULATE: + # Check the loader. + if hasattr(loader, 'is_package'): + try: + is_package = loader.is_package(name) + except ImportError: + pass + else: + if is_package: + spec.submodule_search_locations = [] + else: + spec.submodule_search_locations = submodule_search_locations + if spec.submodule_search_locations == []: + if location: + dirname = _path_split(location)[0] + spec.submodule_search_locations.append(dirname) + + return spec + + +# Loaders ##################################################################### + +class WindowsRegistryFinder: + + """Meta path finder for modules declared in the Windows registry.""" + + REGISTRY_KEY = ( + 'Software\\Python\\PythonCore\\{sys_version}' + '\\Modules\\{fullname}') + REGISTRY_KEY_DEBUG = ( + 'Software\\Python\\PythonCore\\{sys_version}' + '\\Modules\\{fullname}\\Debug') + DEBUG_BUILD = False # Changed in _setup() + + @classmethod + def _open_registry(cls, key): + try: + return _winreg.OpenKey(_winreg.HKEY_CURRENT_USER, key) + except OSError: + return _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, key) + + @classmethod + def _search_registry(cls, fullname): + if cls.DEBUG_BUILD: + registry_key = cls.REGISTRY_KEY_DEBUG + else: + registry_key = cls.REGISTRY_KEY + key = registry_key.format(fullname=fullname, + sys_version=sys.version[:3]) + try: + with cls._open_registry(key) as hkey: + filepath = _winreg.QueryValue(hkey, '') + except OSError: + return None + return filepath + + @classmethod + def find_spec(cls, fullname, path=None, target=None): + filepath = cls._search_registry(fullname) + if filepath is None: + return None + try: + _path_stat(filepath) + except OSError: + return None + for loader, suffixes in _get_supported_file_loaders(): + if filepath.endswith(tuple(suffixes)): + spec = spec_from_loader(fullname, loader(fullname, filepath), + origin=filepath) + return spec + + @classmethod + def find_module(cls, fullname, path=None): + """Find module named in the registry. + + This method is deprecated. Use exec_module() instead. + + """ + spec = cls.find_spec(fullname, path) + if spec is not None: + return spec.loader + else: + return None + + +class _LoaderBasics: + + """Base class of common code needed by both SourceLoader and + SourcelessFileLoader.""" + + def is_package(self, fullname): + """Concrete implementation of InspectLoader.is_package by checking if + the path returned by get_filename has a filename of '__init__.py'.""" + filename = _path_split(self.get_filename(fullname))[1] + filename_base = filename.rsplit('.', 1)[0] + tail_name = fullname.rpartition('.')[2] + return filename_base == '__init__' and tail_name != '__init__' + + def create_module(self, spec): + """Use default semantics for module creation.""" + + def exec_module(self, module): + """Execute the module.""" + code = self.get_code(module.__name__) + if code is None: + raise ImportError('cannot load module {!r} when get_code() ' + 'returns None'.format(module.__name__)) + _bootstrap._call_with_frames_removed(exec, code, module.__dict__) + + load_module = _load_module_shim + + +class SourceLoader(_LoaderBasics): + + def path_mtime(self, path): + """Optional method that returns the modification time (an int) for the + specified path, where path is a str. + + Raises IOError when the path cannot be handled. + """ + raise IOError + + def path_stats(self, path): + """Optional method returning a metadata dict for the specified path + to by the path (str). + Possible keys: + - 'mtime' (mandatory) is the numeric timestamp of last source + code modification; + - 'size' (optional) is the size in bytes of the source code. + + Implementing this method allows the loader to read bytecode files. + Raises IOError when the path cannot be handled. + """ + return {'mtime': self.path_mtime(path)} + + def _cache_bytecode(self, source_path, cache_path, data): + """Optional method which writes data (bytes) to a file path (a str). + + Implementing this method allows for the writing of bytecode files. + + The source path is needed in order to correctly transfer permissions + """ + # For backwards compatibility, we delegate to set_data() + return self.set_data(cache_path, data) + + def set_data(self, path, data): + """Optional method which writes data (bytes) to a file path (a str). + + Implementing this method allows for the writing of bytecode files. + """ + + + def get_source(self, fullname): + """Concrete implementation of InspectLoader.get_source.""" + path = self.get_filename(fullname) + try: + source_bytes = self.get_data(path) + except OSError as exc: + raise ImportError('source not available through get_data()', + name=fullname) from exc + return decode_source(source_bytes) + + def source_to_code(self, data, path, *, _optimize=-1): + """Return the code object compiled from source. + + The 'data' argument can be any object type that compile() supports. + """ + return _bootstrap._call_with_frames_removed(compile, data, path, 'exec', + dont_inherit=True, optimize=_optimize) + + def get_code(self, fullname): + """Concrete implementation of InspectLoader.get_code. + + Reading of bytecode requires path_stats to be implemented. To write + bytecode, set_data must also be implemented. + + """ + source_path = self.get_filename(fullname) + source_mtime = None + try: + bytecode_path = cache_from_source(source_path) + except NotImplementedError: + bytecode_path = None + else: + try: + st = self.path_stats(source_path) + except IOError: + pass + else: + source_mtime = int(st['mtime']) + try: + data = self.get_data(bytecode_path) + except OSError: + pass + else: + try: + bytes_data = _validate_bytecode_header(data, + source_stats=st, name=fullname, + path=bytecode_path) + except (ImportError, EOFError): + pass + else: + _verbose_message('{} matches {}', bytecode_path, + source_path) + return _compile_bytecode(bytes_data, name=fullname, + bytecode_path=bytecode_path, + source_path=source_path) + source_bytes = self.get_data(source_path) + code_object = self.source_to_code(source_bytes, source_path) + _verbose_message('code object from {}', source_path) + if (not sys.dont_write_bytecode and bytecode_path is not None and + source_mtime is not None): + data = _code_to_bytecode(code_object, source_mtime, + len(source_bytes)) + try: + self._cache_bytecode(source_path, bytecode_path, data) + _verbose_message('wrote {!r}', bytecode_path) + except NotImplementedError: + pass + return code_object + + +class FileLoader: + + """Base file loader class which implements the loader protocol methods that + require file system usage.""" + + def __init__(self, fullname, path): + """Cache the module name and the path to the file found by the + finder.""" + self.name = fullname + self.path = path + + def __eq__(self, other): + return (self.__class__ == other.__class__ and + self.__dict__ == other.__dict__) + + def __hash__(self): + return hash(self.name) ^ hash(self.path) + + @_check_name + def load_module(self, fullname): + """Load a module from a file. + + This method is deprecated. Use exec_module() instead. + + """ + # The only reason for this method is for the name check. + # Issue #14857: Avoid the zero-argument form of super so the implementation + # of that form can be updated without breaking the frozen module + return super(FileLoader, self).load_module(fullname) + + @_check_name + def get_filename(self, fullname): + """Return the path to the source file as found by the finder.""" + return self.path + + def get_data(self, path): + """Return the data from path as raw bytes.""" + with _io.FileIO(path, 'r') as file: + return file.read() + + +class SourceFileLoader(FileLoader, SourceLoader): + + """Concrete implementation of SourceLoader using the file system.""" + + def path_stats(self, path): + """Return the metadata for the path.""" + st = _path_stat(path) + return {'mtime': st.st_mtime, 'size': st.st_size} + + def _cache_bytecode(self, source_path, bytecode_path, data): + # Adapt between the two APIs + mode = _calc_mode(source_path) + return self.set_data(bytecode_path, data, _mode=mode) + + def set_data(self, path, data, *, _mode=0o666): + """Write bytes data to a file.""" + parent, filename = _path_split(path) + path_parts = [] + # Figure out what directories are missing. + while parent and not _path_isdir(parent): + parent, part = _path_split(parent) + path_parts.append(part) + # Create needed directories. + for part in reversed(path_parts): + parent = _path_join(parent, part) + try: + _os.mkdir(parent) + except FileExistsError: + # Probably another Python process already created the dir. + continue + except OSError as exc: + # Could be a permission error, read-only filesystem: just forget + # about writing the data. + _verbose_message('could not create {!r}: {!r}', parent, exc) + return + try: + _write_atomic(path, data, _mode) + _verbose_message('created {!r}', path) + except OSError as exc: + # Same as above: just don't write the bytecode. + _verbose_message('could not create {!r}: {!r}', path, exc) + + +class SourcelessFileLoader(FileLoader, _LoaderBasics): + + """Loader which handles sourceless file imports.""" + + def get_code(self, fullname): + path = self.get_filename(fullname) + data = self.get_data(path) + bytes_data = _validate_bytecode_header(data, name=fullname, path=path) + return _compile_bytecode(bytes_data, name=fullname, bytecode_path=path) + + def get_source(self, fullname): + """Return None as there is no source code.""" + return None + + +# Filled in by _setup(). +EXTENSION_SUFFIXES = [] + + +class ExtensionFileLoader: + + """Loader for extension modules. + + The constructor is designed to work with FileFinder. + + """ + + def __init__(self, name, path): + self.name = name + self.path = path + + def __eq__(self, other): + return (self.__class__ == other.__class__ and + self.__dict__ == other.__dict__) + + def __hash__(self): + return hash(self.name) ^ hash(self.path) + + @_check_name + def load_module(self, fullname): + """Load an extension module.""" + # Once an exec_module() implementation is added we can also + # add a deprecation warning here. + with _bootstrap._ManageReload(fullname): + module = _bootstrap._call_with_frames_removed(_imp.load_dynamic, + fullname, self.path) + _verbose_message('extension module loaded from {!r}', self.path) + is_package = self.is_package(fullname) + if is_package and not hasattr(module, '__path__'): + module.__path__ = [_path_split(self.path)[0]] + module.__loader__ = self + module.__package__ = module.__name__ + if not is_package: + module.__package__ = module.__package__.rpartition('.')[0] + return module + + def is_package(self, fullname): + """Return True if the extension module is a package.""" + file_name = _path_split(self.path)[1] + return any(file_name == '__init__' + suffix + for suffix in EXTENSION_SUFFIXES) + + def get_code(self, fullname): + """Return None as an extension module cannot create a code object.""" + return None + + def get_source(self, fullname): + """Return None as extension modules have no source code.""" + return None + + @_check_name + def get_filename(self, fullname): + """Return the path to the source file as found by the finder.""" + return self.path + + +class _NamespacePath: + """Represents a namespace package's path. It uses the module name + to find its parent module, and from there it looks up the parent's + __path__. When this changes, the module's own path is recomputed, + using path_finder. For top-level modules, the parent module's path + is sys.path.""" + + def __init__(self, name, path, path_finder): + self._name = name + self._path = path + self._last_parent_path = tuple(self._get_parent_path()) + self._path_finder = path_finder + + def _find_parent_path_names(self): + """Returns a tuple of (parent-module-name, parent-path-attr-name)""" + parent, dot, me = self._name.rpartition('.') + if dot == '': + # This is a top-level module. sys.path contains the parent path. + return 'sys', 'path' + # Not a top-level module. parent-module.__path__ contains the + # parent path. + return parent, '__path__' + + def _get_parent_path(self): + parent_module_name, path_attr_name = self._find_parent_path_names() + return getattr(sys.modules[parent_module_name], path_attr_name) + + def _recalculate(self): + # If the parent's path has changed, recalculate _path + parent_path = tuple(self._get_parent_path()) # Make a copy + if parent_path != self._last_parent_path: + spec = self._path_finder(self._name, parent_path) + # Note that no changes are made if a loader is returned, but we + # do remember the new parent path + if spec is not None and spec.loader is None: + if spec.submodule_search_locations: + self._path = spec.submodule_search_locations + self._last_parent_path = parent_path # Save the copy + return self._path + + def __iter__(self): + return iter(self._recalculate()) + + def __len__(self): + return len(self._recalculate()) + + def __repr__(self): + return '_NamespacePath({!r})'.format(self._path) + + def __contains__(self, item): + return item in self._recalculate() + + def append(self, item): + self._path.append(item) + + +# We use this exclusively in module_from_spec() for backward-compatibility. +class _NamespaceLoader: + def __init__(self, name, path, path_finder): + self._path = _NamespacePath(name, path, path_finder) + + @classmethod + def module_repr(cls, module): + """Return repr for the module. + + The method is deprecated. The import machinery does the job itself. + + """ + return ''.format(module.__name__) + + def is_package(self, fullname): + return True + + def get_source(self, fullname): + return '' + + def get_code(self, fullname): + return compile('', '', 'exec', dont_inherit=True) + + def create_module(self, spec): + """Use default semantics for module creation.""" + + def exec_module(self, module): + pass + + def load_module(self, fullname): + """Load a namespace module. + + This method is deprecated. Use exec_module() instead. + + """ + # The import system never calls this method. + _verbose_message('namespace module loaded with path {!r}', self._path) + return _load_module_shim(self, fullname) + + +# Finders ##################################################################### + +class PathFinder: + + """Meta path finder for sys.path and package __path__ attributes.""" + + @classmethod + def invalidate_caches(cls): + """Call the invalidate_caches() method on all path entry finders + stored in sys.path_importer_caches (where implemented).""" + for finder in sys.path_importer_cache.values(): + if hasattr(finder, 'invalidate_caches'): + finder.invalidate_caches() + + @classmethod + def _path_hooks(cls, path): + """Search sequence of hooks for a finder for 'path'. + + If 'hooks' is false then use sys.path_hooks. + + """ + if sys.path_hooks is not None and not sys.path_hooks: + _warnings.warn('sys.path_hooks is empty', ImportWarning) + for hook in sys.path_hooks: + try: + return hook(path) + except ImportError: + continue + else: + return None + + @classmethod + def _path_importer_cache(cls, path): + """Get the finder for the path entry from sys.path_importer_cache. + + If the path entry is not in the cache, find the appropriate finder + and cache it. If no finder is available, store None. + + """ + if path == '': + try: + path = _os.getcwd() + except FileNotFoundError: + # Don't cache the failure as the cwd can easily change to + # a valid directory later on. + return None + try: + finder = sys.path_importer_cache[path] + except KeyError: + finder = cls._path_hooks(path) + sys.path_importer_cache[path] = finder + return finder + + @classmethod + def _legacy_get_spec(cls, fullname, finder): + # This would be a good place for a DeprecationWarning if + # we ended up going that route. + if hasattr(finder, 'find_loader'): + loader, portions = finder.find_loader(fullname) + else: + loader = finder.find_module(fullname) + portions = [] + if loader is not None: + return spec_from_loader(fullname, loader) + spec = _bootstrap.ModuleSpec(fullname, None) + spec.submodule_search_locations = portions + return spec + + @classmethod + def _get_spec(cls, fullname, path, target=None): + """Find the loader or namespace_path for this module/package name.""" + # If this ends up being a namespace package, namespace_path is + # the list of paths that will become its __path__ + namespace_path = [] + for entry in path: + if not isinstance(entry, (str, bytes)): + continue + finder = cls._path_importer_cache(entry) + if finder is not None: + if hasattr(finder, 'find_spec'): + spec = finder.find_spec(fullname, target) + else: + spec = cls._legacy_get_spec(fullname, finder) + if spec is None: + continue + if spec.loader is not None: + return spec + portions = spec.submodule_search_locations + if portions is None: + raise ImportError('spec missing loader') + # This is possibly part of a namespace package. + # Remember these path entries (if any) for when we + # create a namespace package, and continue iterating + # on path. + namespace_path.extend(portions) + else: + spec = _bootstrap.ModuleSpec(fullname, None) + spec.submodule_search_locations = namespace_path + return spec + + @classmethod + def find_spec(cls, fullname, path=None, target=None): + """find the module on sys.path or 'path' based on sys.path_hooks and + sys.path_importer_cache.""" + if path is None: + path = sys.path + spec = cls._get_spec(fullname, path, target) + if spec is None: + return None + elif spec.loader is None: + namespace_path = spec.submodule_search_locations + if namespace_path: + # We found at least one namespace path. Return a + # spec which can create the namespace package. + spec.origin = 'namespace' + spec.submodule_search_locations = _NamespacePath(fullname, namespace_path, cls._get_spec) + return spec + else: + return None + else: + return spec + + @classmethod + def find_module(cls, fullname, path=None): + """find the module on sys.path or 'path' based on sys.path_hooks and + sys.path_importer_cache. + + This method is deprecated. Use find_spec() instead. + + """ + spec = cls.find_spec(fullname, path) + if spec is None: + return None + return spec.loader + + +class FileFinder: + + """File-based finder. + + Interactions with the file system are cached for performance, being + refreshed when the directory the finder is handling has been modified. + + """ + + def __init__(self, path, *loader_details): + """Initialize with the path to search on and a variable number of + 2-tuples containing the loader and the file suffixes the loader + recognizes.""" + loaders = [] + for loader, suffixes in loader_details: + loaders.extend((suffix, loader) for suffix in suffixes) + self._loaders = loaders + # Base (directory) path + self.path = path or '.' + self._path_mtime = -1 + self._path_cache = set() + self._relaxed_path_cache = set() + + def invalidate_caches(self): + """Invalidate the directory mtime.""" + self._path_mtime = -1 + + find_module = _find_module_shim + + def find_loader(self, fullname): + """Try to find a loader for the specified module, or the namespace + package portions. Returns (loader, list-of-portions). + + This method is deprecated. Use find_spec() instead. + + """ + spec = self.find_spec(fullname) + if spec is None: + return None, [] + return spec.loader, spec.submodule_search_locations or [] + + def _get_spec(self, loader_class, fullname, path, smsl, target): + loader = loader_class(fullname, path) + return spec_from_file_location(fullname, path, loader=loader, + submodule_search_locations=smsl) + + def find_spec(self, fullname, target=None): + """Try to find a loader for the specified module, or the namespace + package portions. Returns (loader, list-of-portions).""" + is_namespace = False + tail_module = fullname.rpartition('.')[2] + try: + mtime = _path_stat(self.path or _os.getcwd()).st_mtime + except OSError: + mtime = -1 + if mtime != self._path_mtime: + self._fill_cache() + self._path_mtime = mtime + # tail_module keeps the original casing, for __file__ and friends + if _relax_case(): + cache = self._relaxed_path_cache + cache_module = tail_module.lower() + else: + cache = self._path_cache + cache_module = tail_module + # Check if the module is the name of a directory (and thus a package). + if cache_module in cache: + base_path = _path_join(self.path, tail_module) + for suffix, loader_class in self._loaders: + init_filename = '__init__' + suffix + full_path = _path_join(base_path, init_filename) + if _path_isfile(full_path): + return self._get_spec(loader_class, fullname, full_path, [base_path], target) + else: + # If a namespace package, return the path if we don't + # find a module in the next section. + is_namespace = _path_isdir(base_path) + # Check for a file w/ a proper suffix exists. + for suffix, loader_class in self._loaders: + full_path = _path_join(self.path, tail_module + suffix) + _verbose_message('trying {}'.format(full_path), verbosity=2) + if cache_module + suffix in cache: + if _path_isfile(full_path): + return self._get_spec(loader_class, fullname, full_path, None, target) + if is_namespace: + _verbose_message('possible namespace for {}'.format(base_path)) + spec = _bootstrap.ModuleSpec(fullname, None) + spec.submodule_search_locations = [base_path] + return spec + return None + + def _fill_cache(self): + """Fill the cache of potential modules and packages for this directory.""" + path = self.path + try: + contents = _os.listdir(path or _os.getcwd()) + except (FileNotFoundError, PermissionError, NotADirectoryError): + # Directory has either been removed, turned into a file, or made + # unreadable. + contents = [] + # We store two cached versions, to handle runtime changes of the + # PYTHONCASEOK environment variable. + if not sys.platform.startswith('win'): + self._path_cache = set(contents) + else: + # Windows users can import modules with case-insensitive file + # suffixes (for legacy reasons). Make the suffix lowercase here + # so it's done once instead of for every import. This is safe as + # the specified suffixes to check against are always specified in a + # case-sensitive manner. + lower_suffix_contents = set() + for item in contents: + name, dot, suffix = item.partition('.') + if dot: + new_name = '{}.{}'.format(name, suffix.lower()) + else: + new_name = name + lower_suffix_contents.add(new_name) + self._path_cache = lower_suffix_contents + if sys.platform.startswith(_CASE_INSENSITIVE_PLATFORMS): + self._relaxed_path_cache = {fn.lower() for fn in contents} + + @classmethod + def path_hook(cls, *loader_details): + """A class method which returns a closure to use on sys.path_hook + which will return an instance using the specified loaders and the path + called on the closure. + + If the path called on the closure is not a directory, ImportError is + raised. + + """ + def path_hook_for_FileFinder(path): + """Path hook for importlib.machinery.FileFinder.""" + if not _path_isdir(path): + raise ImportError('only directories are supported', path=path) + return cls(path, *loader_details) + + return path_hook_for_FileFinder + + def __repr__(self): + return 'FileFinder({!r})'.format(self.path) + + +# Import setup ############################################################### + +def _fix_up_module(ns, name, pathname, cpathname=None): + # This function is used by PyImport_ExecCodeModuleObject(). + loader = ns.get('__loader__') + spec = ns.get('__spec__') + if not loader: + if spec: + loader = spec.loader + elif pathname == cpathname: + loader = SourcelessFileLoader(name, pathname) + else: + loader = SourceFileLoader(name, pathname) + if not spec: + spec = spec_from_file_location(name, pathname, loader=loader) + try: + ns['__spec__'] = spec + ns['__loader__'] = loader + ns['__file__'] = pathname + ns['__cached__'] = cpathname + except Exception: + # Not important enough to report. + pass + + +def _get_supported_file_loaders(): + """Returns a list of file-based module loaders. + + Each item is a tuple (loader, suffixes). + """ + extensions = ExtensionFileLoader, _imp.extension_suffixes() + source = SourceFileLoader, SOURCE_SUFFIXES + bytecode = SourcelessFileLoader, BYTECODE_SUFFIXES + return [extensions, source, bytecode] + + +def _setup(_bootstrap_module): + """Setup the path-based importers for importlib by importing needed + built-in modules and injecting them into the global namespace. + + Other components are extracted from the core bootstrap module. + + """ + global sys, _imp, _bootstrap + _bootstrap = _bootstrap_module + sys = _bootstrap.sys + _imp = _bootstrap._imp + + # Directly load built-in modules needed during bootstrap. + self_module = sys.modules[__name__] + for builtin_name in ('_io', '_warnings', 'builtins', 'marshal'): + if builtin_name not in sys.modules: + builtin_module = _bootstrap._builtin_from_name(builtin_name) + else: + builtin_module = sys.modules[builtin_name] + setattr(self_module, builtin_name, builtin_module) + + # Directly load the os module (needed during bootstrap). + os_details = ('posix', ['/']), ('nt', ['\\', '/']) + for builtin_os, path_separators in os_details: + # Assumption made in _path_join() + assert all(len(sep) == 1 for sep in path_separators) + path_sep = path_separators[0] + if builtin_os in sys.modules: + os_module = sys.modules[builtin_os] + break + else: + try: + os_module = _bootstrap._builtin_from_name(builtin_os) + break + except ImportError: + continue + else: + raise ImportError('importlib requires posix or nt') + setattr(self_module, '_os', os_module) + setattr(self_module, 'path_sep', path_sep) + setattr(self_module, 'path_separators', ''.join(path_separators)) + + # Directly load the _thread module (needed during bootstrap). + try: + thread_module = _bootstrap._builtin_from_name('_thread') + except ImportError: + # Python was built without threads + thread_module = None + setattr(self_module, '_thread', thread_module) + + # Directly load the _weakref module (needed during bootstrap). + weakref_module = _bootstrap._builtin_from_name('_weakref') + setattr(self_module, '_weakref', weakref_module) + + # Directly load the winreg module (needed during bootstrap). + if builtin_os == 'nt': + winreg_module = _bootstrap._builtin_from_name('winreg') + setattr(self_module, '_winreg', winreg_module) + + # Constants + setattr(self_module, '_relax_case', _make_relax_case()) + EXTENSION_SUFFIXES.extend(_imp.extension_suffixes()) + if builtin_os == 'nt': + SOURCE_SUFFIXES.append('.pyw') + if '_d.pyd' in EXTENSION_SUFFIXES: + WindowsRegistryFinder.DEBUG_BUILD = True + + +def _install(_bootstrap_module): + """Install the path-based import components.""" + _setup(_bootstrap_module) + supported_loaders = _get_supported_file_loaders() + sys.path_hooks.extend([FileFinder.path_hook(*supported_loaders)]) + if _os.__name__ == 'nt': + sys.meta_path.append(WindowsRegistryFinder) + sys.meta_path.append(PathFinder) + + # XXX We expose a couple of classes in _bootstrap for the sake of + # a setuptools bug (https://bitbucket.org/pypa/setuptools/issue/378). + _bootstrap_module.FileFinder = FileFinder + _bootstrap_module.SourceFileLoader = SourceFileLoader diff --git a/Lib/importlib/abc.py b/Lib/importlib/abc.py --- a/Lib/importlib/abc.py +++ b/Lib/importlib/abc.py @@ -1,12 +1,17 @@ """Abstract base classes related to import.""" -from . import _bootstrap +from . import _bootstrap_external from . import machinery try: import _frozen_importlib +# import _frozen_importlib_external except ImportError as exc: if exc.name != '_frozen_importlib': raise _frozen_importlib = None +try: + import _frozen_importlib_external +except ImportError as exc: + _frozen_importlib_external = _bootstrap_external import abc @@ -14,7 +19,10 @@ for cls in classes: abstract_cls.register(cls) if _frozen_importlib is not None: - frozen_cls = getattr(_frozen_importlib, cls.__name__) + try: + frozen_cls = getattr(_frozen_importlib, cls.__name__) + except AttributeError: + frozen_cls = getattr(_frozen_importlib_external, cls.__name__) abstract_cls.register(frozen_cls) @@ -102,7 +110,7 @@ else: return None, [] - find_module = _bootstrap._find_module_shim + find_module = _bootstrap_external._find_module_shim def invalidate_caches(self): """An optional method for clearing the finder's cache, if any. @@ -144,7 +152,7 @@ """ if not hasattr(self, 'exec_module'): raise ImportError - return _bootstrap._load_module_shim(self, fullname) + return _bootstrap_external._load_module_shim(self, fullname) def module_repr(self, module): """Return a module's repr. @@ -222,8 +230,8 @@ argument should be where the data was retrieved (when applicable).""" return compile(data, path, 'exec', dont_inherit=True) - exec_module = _bootstrap._LoaderBasics.exec_module - load_module = _bootstrap._LoaderBasics.load_module + exec_module = _bootstrap_external._LoaderBasics.exec_module + load_module = _bootstrap_external._LoaderBasics.load_module _register(InspectLoader, machinery.BuiltinImporter, machinery.FrozenImporter) @@ -265,7 +273,7 @@ _register(ExecutionLoader, machinery.ExtensionFileLoader) -class FileLoader(_bootstrap.FileLoader, ResourceLoader, ExecutionLoader): +class FileLoader(_bootstrap_external.FileLoader, ResourceLoader, ExecutionLoader): """Abstract base class partially implementing the ResourceLoader and ExecutionLoader ABCs.""" @@ -274,7 +282,7 @@ machinery.SourcelessFileLoader) -class SourceLoader(_bootstrap.SourceLoader, ResourceLoader, ExecutionLoader): +class SourceLoader(_bootstrap_external.SourceLoader, ResourceLoader, ExecutionLoader): """Abstract base class for loading source code (and optionally any corresponding bytecode). diff --git a/Lib/importlib/machinery.py b/Lib/importlib/machinery.py --- a/Lib/importlib/machinery.py +++ b/Lib/importlib/machinery.py @@ -2,18 +2,18 @@ import _imp -from ._bootstrap import (SOURCE_SUFFIXES, DEBUG_BYTECODE_SUFFIXES, - OPTIMIZED_BYTECODE_SUFFIXES, BYTECODE_SUFFIXES, - EXTENSION_SUFFIXES) from ._bootstrap import ModuleSpec from ._bootstrap import BuiltinImporter from ._bootstrap import FrozenImporter -from ._bootstrap import WindowsRegistryFinder -from ._bootstrap import PathFinder -from ._bootstrap import FileFinder -from ._bootstrap import SourceFileLoader -from ._bootstrap import SourcelessFileLoader -from ._bootstrap import ExtensionFileLoader +from ._bootstrap_external import (SOURCE_SUFFIXES, DEBUG_BYTECODE_SUFFIXES, + OPTIMIZED_BYTECODE_SUFFIXES, BYTECODE_SUFFIXES, + EXTENSION_SUFFIXES) +from ._bootstrap_external import WindowsRegistryFinder +from ._bootstrap_external import PathFinder +from ._bootstrap_external import FileFinder +from ._bootstrap_external import SourceFileLoader +from ._bootstrap_external import SourcelessFileLoader +from ._bootstrap_external import ExtensionFileLoader def all_suffixes(): diff --git a/Lib/importlib/util.py b/Lib/importlib/util.py --- a/Lib/importlib/util.py +++ b/Lib/importlib/util.py @@ -1,14 +1,14 @@ """Utility code for constructing importers, etc.""" from . import abc -from ._bootstrap import MAGIC_NUMBER -from ._bootstrap import cache_from_source -from ._bootstrap import decode_source from ._bootstrap import module_from_spec -from ._bootstrap import source_from_cache +from ._bootstrap import _resolve_name from ._bootstrap import spec_from_loader -from ._bootstrap import spec_from_file_location -from ._bootstrap import _resolve_name from ._bootstrap import _find_spec +from ._bootstrap_external import MAGIC_NUMBER +from ._bootstrap_external import cache_from_source +from ._bootstrap_external import decode_source +from ._bootstrap_external import source_from_cache +from ._bootstrap_external import spec_from_file_location from contextlib import contextmanager import functools diff --git a/Lib/modulefinder.py b/Lib/modulefinder.py --- a/Lib/modulefinder.py +++ b/Lib/modulefinder.py @@ -1,7 +1,7 @@ """Find modules used by a script, using introspection.""" import dis -import importlib._bootstrap +import importlib._bootstrap_external import importlib.machinery import marshal import os @@ -289,7 +289,7 @@ co = compile(fp.read()+'\n', pathname, 'exec') elif type == imp.PY_COMPILED: try: - marshal_data = importlib._bootstrap._validate_bytecode_header(fp.read()) + marshal_data = importlib._bootstrap_external._validate_bytecode_header(fp.read()) except ImportError as exc: self.msgout(2, "raise ImportError: " + str(exc), pathname) raise diff --git a/Lib/py_compile.py b/Lib/py_compile.py --- a/Lib/py_compile.py +++ b/Lib/py_compile.py @@ -3,7 +3,7 @@ This module has intimate knowledge of the format of .pyc files. """ -import importlib._bootstrap +import importlib._bootstrap_external import importlib.machinery import importlib.util import os @@ -137,10 +137,10 @@ except FileExistsError: pass source_stats = loader.path_stats(file) - bytecode = importlib._bootstrap._code_to_bytecode( + bytecode = importlib._bootstrap_external._code_to_bytecode( code, source_stats['mtime'], source_stats['size']) - mode = importlib._bootstrap._calc_mode(file) - importlib._bootstrap._write_atomic(cfile, bytecode, mode) + mode = importlib._bootstrap_external._calc_mode(file) + importlib._bootstrap_external._write_atomic(cfile, bytecode, mode) return cfile diff --git a/Lib/pydoc.py b/Lib/pydoc.py --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -53,6 +53,7 @@ import builtins import importlib._bootstrap +import importlib._bootstrap_external import importlib.machinery import importlib.util import inspect @@ -292,9 +293,9 @@ filename = os.path.basename(path) name, ext = os.path.splitext(filename) if is_bytecode: - loader = importlib._bootstrap.SourcelessFileLoader(name, path) + loader = importlib._bootstrap_external.SourcelessFileLoader(name, path) else: - loader = importlib._bootstrap.SourceFileLoader(name, path) + loader = importlib._bootstrap_external.SourceFileLoader(name, path) # XXX We probably don't need to pass in the loader here. spec = importlib.util.spec_from_file_location(name, path, loader=loader) try: @@ -1588,7 +1589,7 @@ """Given an object or a path to an object, get the object and its name.""" if isinstance(thing, str): object = locate(thing, forceload) - if object is None: + if not object: raise ImportError('''\ No Python documentation found for %r. Use help() to get the interactive help utility. diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py --- a/Lib/pydoc_data/topics.py +++ b/Lib/pydoc_data/topics.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Autogenerated by Sphinx on Sun Apr 19 13:44:03 2015 +# Autogenerated by Sphinx on Sun Mar 29 15:14:32 2015 topics = {'assert': u'\nThe "assert" statement\n**********************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, "assert expression", is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, "assert expression1, expression2", is equivalent to\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that "__debug__" and "AssertionError" refer\nto the built-in variables with those names. In the current\nimplementation, the built-in variable "__debug__" is "True" under\nnormal circumstances, "False" when optimization is requested (command\nline option -O). The current code generator emits no code for an\nassert statement when optimization is requested at compile time. Note\nthat it is unnecessary to include the source code for the expression\nthat failed in the error message; it will be displayed as part of the\nstack trace.\n\nAssignments to "__debug__" are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n', 'assignment': u'\nAssignment statements\n*********************\n\nAssignment statements are used to (re)bind names to values and to\nmodify attributes or items of mutable objects:\n\n assignment_stmt ::= (target_list "=")+ (expression_list | yield_expression)\n target_list ::= target ("," target)* [","]\n target ::= identifier\n | "(" target_list ")"\n | "[" target_list "]"\n | attributeref\n | subscription\n | slicing\n | "*" target\n\n(See section *Primaries* for the syntax definitions for\n*attributeref*, *subscription*, and *slicing*.)\n\nAn assignment statement evaluates the expression list (remember that\nthis can be a single expression or a comma-separated list, the latter\nyielding a tuple) and assigns the single resulting object to each of\nthe target lists, from left to right.\n\nAssignment is defined recursively depending on the form of the target\n(list). When a target is part of a mutable object (an attribute\nreference, subscription or slicing), the mutable object must\nultimately perform the assignment and decide about its validity, and\nmay raise an exception if the assignment is unacceptable. The rules\nobserved by various types and the exceptions raised are given with the\ndefinition of the object types (see section *The standard type\nhierarchy*).\n\nAssignment of an object to a target list, optionally enclosed in\nparentheses or square brackets, is recursively defined as follows.\n\n* If the target list is a single target: The object is assigned to\n that target.\n\n* If the target list is a comma-separated list of targets: The\n object must be an iterable with the same number of items as there\n are targets in the target list, and the items are assigned, from\n left to right, to the corresponding targets.\n\n * If the target list contains one target prefixed with an\n asterisk, called a "starred" target: The object must be a sequence\n with at least as many items as there are targets in the target\n list, minus one. The first items of the sequence are assigned,\n from left to right, to the targets before the starred target. The\n final items of the sequence are assigned to the targets after the\n starred target. A list of the remaining items in the sequence is\n then assigned to the starred target (the list can be empty).\n\n * Else: The object must be a sequence with the same number of\n items as there are targets in the target list, and the items are\n assigned, from left to right, to the corresponding targets.\n\nAssignment of an object to a single target is recursively defined as\nfollows.\n\n* If the target is an identifier (name):\n\n * If the name does not occur in a "global" or "nonlocal" statement\n in the current code block: the name is bound to the object in the\n current local namespace.\n\n * Otherwise: the name is bound to the object in the global\n namespace or the outer namespace determined by "nonlocal",\n respectively.\n\n The name is rebound if it was already bound. This may cause the\n reference count for the object previously bound to the name to reach\n zero, causing the object to be deallocated and its destructor (if it\n has one) to be called.\n\n* If the target is a target list enclosed in parentheses or in\n square brackets: The object must be an iterable with the same number\n of items as there are targets in the target list, and its items are\n assigned, from left to right, to the corresponding targets.\n\n* If the target is an attribute reference: The primary expression in\n the reference is evaluated. It should yield an object with\n assignable attributes; if this is not the case, "TypeError" is\n raised. That object is then asked to assign the assigned object to\n the given attribute; if it cannot perform the assignment, it raises\n an exception (usually but not necessarily "AttributeError").\n\n Note: If the object is a class instance and the attribute reference\n occurs on both sides of the assignment operator, the RHS expression,\n "a.x" can access either an instance attribute or (if no instance\n attribute exists) a class attribute. The LHS target "a.x" is always\n set as an instance attribute, creating it if necessary. Thus, the\n two occurrences of "a.x" do not necessarily refer to the same\n attribute: if the RHS expression refers to a class attribute, the\n LHS creates a new instance attribute as the target of the\n assignment:\n\n class Cls:\n x = 3 # class variable\n inst = Cls()\n inst.x = inst.x + 1 # writes inst.x as 4 leaving Cls.x as 3\n\n This description does not necessarily apply to descriptor\n attributes, such as properties created with "property()".\n\n* If the target is a subscription: The primary expression in the\n reference is evaluated. It should yield either a mutable sequence\n object (such as a list) or a mapping object (such as a dictionary).\n Next, the subscript expression is evaluated.\n\n If the primary is a mutable sequence object (such as a list), the\n subscript must yield an integer. If it is negative, the sequence\'s\n length is added to it. The resulting value must be a nonnegative\n integer less than the sequence\'s length, and the sequence is asked\n to assign the assigned object to its item with that index. If the\n index is out of range, "IndexError" is raised (assignment to a\n subscripted sequence cannot add new items to a list).\n\n If the primary is a mapping object (such as a dictionary), the\n subscript must have a type compatible with the mapping\'s key type,\n and the mapping is then asked to create a key/datum pair which maps\n the subscript to the assigned object. This can either replace an\n existing key/value pair with the same key value, or insert a new\n key/value pair (if no key with the same value existed).\n\n For user-defined objects, the "__setitem__()" method is called with\n appropriate arguments.\n\n* If the target is a slicing: The primary expression in the\n reference is evaluated. It should yield a mutable sequence object\n (such as a list). The assigned object should be a sequence object\n of the same type. Next, the lower and upper bound expressions are\n evaluated, insofar they are present; defaults are zero and the\n sequence\'s length. The bounds should evaluate to integers. If\n either bound is negative, the sequence\'s length is added to it. The\n resulting bounds are clipped to lie between zero and the sequence\'s\n length, inclusive. Finally, the sequence object is asked to replace\n the slice with the items of the assigned sequence. The length of\n the slice may be different from the length of the assigned sequence,\n thus changing the length of the target sequence, if the target\n sequence allows it.\n\n**CPython implementation detail:** In the current implementation, the\nsyntax for targets is taken to be the same as for expressions, and\ninvalid syntax is rejected during the code generation phase, causing\nless detailed error messages.\n\nAlthough the definition of assignment implies that overlaps between\nthe left-hand side and the right-hand side are \'simultanenous\' (for\nexample "a, b = b, a" swaps two variables), overlaps *within* the\ncollection of assigned-to variables occur left-to-right, sometimes\nresulting in confusion. For instance, the following program prints\n"[0, 2]":\n\n x = [0, 1]\n i = 0\n i, x[i] = 1, 2 # i is updated, then x[i] is updated\n print(x)\n\nSee also: **PEP 3132** - Extended Iterable Unpacking\n\n The specification for the "*target" feature.\n\n\nAugmented assignment statements\n===============================\n\nAugmented assignment is the combination, in a single statement, of a\nbinary operation and an assignment statement:\n\n augmented_assignment_stmt ::= augtarget augop (expression_list | yield_expression)\n augtarget ::= identifier | attributeref | subscription | slicing\n augop ::= "+=" | "-=" | "*=" | "@=" | "/=" | "//=" | "%=" | "**="\n | ">>=" | "<<=" | "&=" | "^=" | "|="\n\n(See section *Primaries* for the syntax definitions of the last three\nsymbols.)\n\nAn augmented assignment evaluates the target (which, unlike normal\nassignment statements, cannot be an unpacking) and the expression\nlist, performs the binary operation specific to the type of assignment\non the two operands, and assigns the result to the original target.\nThe target is only evaluated once.\n\nAn augmented assignment expression like "x += 1" can be rewritten as\n"x = x + 1" to achieve a similar, but not exactly equal effect. In the\naugmented version, "x" is only evaluated once. Also, when possible,\nthe actual operation is performed *in-place*, meaning that rather than\ncreating a new object and assigning that to the target, the old object\nis modified instead.\n\nUnlike normal assignments, augmented assignments evaluate the left-\nhand side *before* evaluating the right-hand side. For example, "a[i]\n+= f(x)" first looks-up "a[i]", then it evaluates "f(x)" and performs\nthe addition, and lastly, it writes the result back to "a[i]".\n\nWith the exception of assigning to tuples and multiple targets in a\nsingle statement, the assignment done by augmented assignment\nstatements is handled the same way as normal assignments. Similarly,\nwith the exception of the possible *in-place* behavior, the binary\noperation performed by augmented assignment is the same as the normal\nbinary operations.\n\nFor targets which are attribute references, the same *caveat about\nclass and instance attributes* applies as for regular assignments.\n', 'atom-identifiers': u'\nIdentifiers (Names)\n*******************\n\nAn identifier occurring as an atom is a name. See section\n*Identifiers and keywords* for lexical definition and section *Naming\nand binding* for documentation of naming and binding.\n\nWhen the name is bound to an object, evaluation of the atom yields\nthat object. When a name is not bound, an attempt to evaluate it\nraises a "NameError" exception.\n\n**Private name mangling:** When an identifier that textually occurs in\na class definition begins with two or more underscore characters and\ndoes not end in two or more underscores, it is considered a *private\nname* of that class. Private names are transformed to a longer form\nbefore code is generated for them. The transformation inserts the\nclass name, with leading underscores removed and a single underscore\ninserted, in front of the name. For example, the identifier "__spam"\noccurring in a class named "Ham" will be transformed to "_Ham__spam".\nThis transformation is independent of the syntactical context in which\nthe identifier is used. If the transformed name is extremely long\n(longer than 255 characters), implementation defined truncation may\nhappen. If the class name consists only of underscores, no\ntransformation is done.\n', @@ -60,8 +60,8 @@ 'shifting': u'\nShifting operations\n*******************\n\nThe shifting operations have lower priority than the arithmetic\noperations:\n\n shift_expr ::= a_expr | shift_expr ( "<<" | ">>" ) a_expr\n\nThese operators accept integers as arguments. They shift the first\nargument to the left or right by the number of bits given by the\nsecond argument.\n\nA right shift by *n* bits is defined as floor division by "pow(2,n)".\nA left shift by *n* bits is defined as multiplication with "pow(2,n)".\n\nNote: In the current implementation, the right-hand operand is\n required to be at most "sys.maxsize". If the right-hand operand is\n larger than "sys.maxsize" an "OverflowError" exception is raised.\n', 'slicings': u'\nSlicings\n********\n\nA slicing selects a range of items in a sequence object (e.g., a\nstring, tuple or list). Slicings may be used as expressions or as\ntargets in assignment or "del" statements. The syntax for a slicing:\n\n slicing ::= primary "[" slice_list "]"\n slice_list ::= slice_item ("," slice_item)* [","]\n slice_item ::= expression | proper_slice\n proper_slice ::= [lower_bound] ":" [upper_bound] [ ":" [stride] ]\n lower_bound ::= expression\n upper_bound ::= expression\n stride ::= expression\n\nThere is ambiguity in the formal syntax here: anything that looks like\nan expression list also looks like a slice list, so any subscription\ncan be interpreted as a slicing. Rather than further complicating the\nsyntax, this is disambiguated by defining that in this case the\ninterpretation as a subscription takes priority over the\ninterpretation as a slicing (this is the case if the slice list\ncontains no proper slice).\n\nThe semantics for a slicing are as follows. The primary is indexed\n(using the same "__getitem__()" method as normal subscription) with a\nkey that is constructed from the slice list, as follows. If the slice\nlist contains at least one comma, the key is a tuple containing the\nconversion of the slice items; otherwise, the conversion of the lone\nslice item is the key. The conversion of a slice item that is an\nexpression is that expression. The conversion of a proper slice is a\nslice object (see section *The standard type hierarchy*) whose\n"start", "stop" and "step" attributes are the values of the\nexpressions given as lower bound, upper bound and stride,\nrespectively, substituting "None" for missing expressions.\n', 'specialattrs': u'\nSpecial Attributes\n******************\n\nThe implementation adds a few special read-only attributes to several\nobject types, where they are relevant. Some of these are not reported\nby the "dir()" built-in function.\n\nobject.__dict__\n\n A dictionary or other mapping object used to store an object\'s\n (writable) attributes.\n\ninstance.__class__\n\n The class to which a class instance belongs.\n\nclass.__bases__\n\n The tuple of base classes of a class object.\n\nclass.__name__\n\n The name of the class or type.\n\nclass.__qualname__\n\n The *qualified name* of the class or type.\n\n New in version 3.3.\n\nclass.__mro__\n\n This attribute is a tuple of classes that are considered when\n looking for base classes during method resolution.\n\nclass.mro()\n\n This method can be overridden by a metaclass to customize the\n method resolution order for its instances. It is called at class\n instantiation, and its result is stored in "__mro__".\n\nclass.__subclasses__()\n\n Each class keeps a list of weak references to its immediate\n subclasses. This method returns a list of all those references\n still alive. Example:\n\n >>> int.__subclasses__()\n []\n\n-[ Footnotes ]-\n\n[1] Additional information on these special methods may be found\n in the Python Reference Manual (*Basic customization*).\n\n[2] As a consequence, the list "[1, 2]" is considered equal to\n "[1.0, 2.0]", and similarly for tuples.\n\n[3] They must have since the parser can\'t tell the type of the\n operands.\n\n[4] Cased characters are those with general category property\n being one of "Lu" (Letter, uppercase), "Ll" (Letter, lowercase),\n or "Lt" (Letter, titlecase).\n\n[5] To format only a tuple you should therefore provide a\n singleton tuple whose only element is the tuple to be formatted.\n', - 'specialnames': u'\nSpecial method names\n********************\n\nA class can implement certain operations that are invoked by special\nsyntax (such as arithmetic operations or subscripting and slicing) by\ndefining methods with special names. This is Python\'s approach to\n*operator overloading*, allowing classes to define their own behavior\nwith respect to language operators. For instance, if a class defines\na method named "__getitem__()", and "x" is an instance of this class,\nthen "x[i]" is roughly equivalent to "type(x).__getitem__(x, i)".\nExcept where mentioned, attempts to execute an operation raise an\nexception when no appropriate method is defined (typically\n"AttributeError" or "TypeError").\n\nWhen implementing a class that emulates any built-in type, it is\nimportant that the emulation only be implemented to the degree that it\nmakes sense for the object being modelled. For example, some\nsequences may work well with retrieval of individual elements, but\nextracting a slice may not make sense. (One example of this is the\n"NodeList" interface in the W3C\'s Document Object Model.)\n\n\nBasic customization\n===================\n\nobject.__new__(cls[, ...])\n\n Called to create a new instance of class *cls*. "__new__()" is a\n static method (special-cased so you need not declare it as such)\n that takes the class of which an instance was requested as its\n first argument. The remaining arguments are those passed to the\n object constructor expression (the call to the class). The return\n value of "__new__()" should be the new object instance (usually an\n instance of *cls*).\n\n Typical implementations create a new instance of the class by\n invoking the superclass\'s "__new__()" method using\n "super(currentclass, cls).__new__(cls[, ...])" with appropriate\n arguments and then modifying the newly-created instance as\n necessary before returning it.\n\n If "__new__()" returns an instance of *cls*, then the new\n instance\'s "__init__()" method will be invoked like\n "__init__(self[, ...])", where *self* is the new instance and the\n remaining arguments are the same as were passed to "__new__()".\n\n If "__new__()" does not return an instance of *cls*, then the new\n instance\'s "__init__()" method will not be invoked.\n\n "__new__()" is intended mainly to allow subclasses of immutable\n types (like int, str, or tuple) to customize instance creation. It\n is also commonly overridden in custom metaclasses in order to\n customize class creation.\n\nobject.__init__(self[, ...])\n\n Called after the instance has been created (by "__new__()"), but\n before it is returned to the caller. The arguments are those\n passed to the class constructor expression. If a base class has an\n "__init__()" method, the derived class\'s "__init__()" method, if\n any, must explicitly call it to ensure proper initialization of the\n base class part of the instance; for example:\n "BaseClass.__init__(self, [args...])".\n\n Because "__new__()" and "__init__()" work together in constructing\n objects ("__new__()" to create it, and "__init__()" to customise\n it), no non-"None" value may be returned by "__init__()"; doing so\n will cause a "TypeError" to be raised at runtime.\n\nobject.__del__(self)\n\n Called when the instance is about to be destroyed. This is also\n called a destructor. If a base class has a "__del__()" method, the\n derived class\'s "__del__()" method, if any, must explicitly call it\n to ensure proper deletion of the base class part of the instance.\n Note that it is possible (though not recommended!) for the\n "__del__()" method to postpone destruction of the instance by\n creating a new reference to it. It may then be called at a later\n time when this new reference is deleted. It is not guaranteed that\n "__del__()" methods are called for objects that still exist when\n the interpreter exits.\n\n Note: "del x" doesn\'t directly call "x.__del__()" --- the former\n decrements the reference count for "x" by one, and the latter is\n only called when "x"\'s reference count reaches zero. Some common\n situations that may prevent the reference count of an object from\n going to zero include: circular references between objects (e.g.,\n a doubly-linked list or a tree data structure with parent and\n child pointers); a reference to the object on the stack frame of\n a function that caught an exception (the traceback stored in\n "sys.exc_info()[2]" keeps the stack frame alive); or a reference\n to the object on the stack frame that raised an unhandled\n exception in interactive mode (the traceback stored in\n "sys.last_traceback" keeps the stack frame alive). The first\n situation can only be remedied by explicitly breaking the cycles;\n the second can be resolved by freeing the reference to the\n traceback object when it is no longer useful, and the third can\n be resolved by storing "None" in "sys.last_traceback". Circular\n references which are garbage are detected and cleaned up when the\n cyclic garbage collector is enabled (it\'s on by default). Refer\n to the documentation for the "gc" module for more information\n about this topic.\n\n Warning: Due to the precarious circumstances under which\n "__del__()" methods are invoked, exceptions that occur during\n their execution are ignored, and a warning is printed to\n "sys.stderr" instead. Also, when "__del__()" is invoked in\n response to a module being deleted (e.g., when execution of the\n program is done), other globals referenced by the "__del__()"\n method may already have been deleted or in the process of being\n torn down (e.g. the import machinery shutting down). For this\n reason, "__del__()" methods should do the absolute minimum needed\n to maintain external invariants. Starting with version 1.5,\n Python guarantees that globals whose name begins with a single\n underscore are deleted from their module before other globals are\n deleted; if no other references to such globals exist, this may\n help in assuring that imported modules are still available at the\n time when the "__del__()" method is called.\n\nobject.__repr__(self)\n\n Called by the "repr()" built-in function to compute the "official"\n string representation of an object. If at all possible, this\n should look like a valid Python expression that could be used to\n recreate an object with the same value (given an appropriate\n environment). If this is not possible, a string of the form\n "<...some useful description...>" should be returned. The return\n value must be a string object. If a class defines "__repr__()" but\n not "__str__()", then "__repr__()" is also used when an "informal"\n string representation of instances of that class is required.\n\n This is typically used for debugging, so it is important that the\n representation is information-rich and unambiguous.\n\nobject.__str__(self)\n\n Called by "str(object)" and the built-in functions "format()" and\n "print()" to compute the "informal" or nicely printable string\n representation of an object. The return value must be a *string*\n object.\n\n This method differs from "object.__repr__()" in that there is no\n expectation that "__str__()" return a valid Python expression: a\n more convenient or concise representation can be used.\n\n The default implementation defined by the built-in type "object"\n calls "object.__repr__()".\n\nobject.__bytes__(self)\n\n Called by "bytes()" to compute a byte-string representation of an\n object. This should return a "bytes" object.\n\nobject.__format__(self, format_spec)\n\n Called by the "format()" built-in function (and by extension, the\n "str.format()" method of class "str") to produce a "formatted"\n string representation of an object. The "format_spec" argument is a\n string that contains a description of the formatting options\n desired. The interpretation of the "format_spec" argument is up to\n the type implementing "__format__()", however most classes will\n either delegate formatting to one of the built-in types, or use a\n similar formatting option syntax.\n\n See *Format Specification Mini-Language* for a description of the\n standard formatting syntax.\n\n The return value must be a string object.\n\n Changed in version 3.4: The __format__ method of "object" itself\n raises a "TypeError" if passed any non-empty string.\n\nobject.__lt__(self, other)\nobject.__le__(self, other)\nobject.__eq__(self, other)\nobject.__ne__(self, other)\nobject.__gt__(self, other)\nobject.__ge__(self, other)\n\n These are the so-called "rich comparison" methods. The\n correspondence between operator symbols and method names is as\n follows: "xy" calls\n "x.__gt__(y)", and "x>=y" calls "x.__ge__(y)".\n\n A rich comparison method may return the singleton "NotImplemented"\n if it does not implement the operation for a given pair of\n arguments. By convention, "False" and "True" are returned for a\n successful comparison. However, these methods can return any value,\n so if the comparison operator is used in a Boolean context (e.g.,\n in the condition of an "if" statement), Python will call "bool()"\n on the value to determine if the result is true or false.\n\n There are no implied relationships among the comparison operators.\n The truth of "x==y" does not imply that "x!=y" is false.\n Accordingly, when defining "__eq__()", one should also define\n "__ne__()" so that the operators will behave as expected. See the\n paragraph on "__hash__()" for some important notes on creating\n *hashable* objects which support custom comparison operations and\n are usable as dictionary keys.\n\n There are no swapped-argument versions of these methods (to be used\n when the left argument does not support the operation but the right\n argument does); rather, "__lt__()" and "__gt__()" are each other\'s\n reflection, "__le__()" and "__ge__()" are each other\'s reflection,\n and "__eq__()" and "__ne__()" are their own reflection.\n\n Arguments to rich comparison methods are never coerced.\n\n To automatically generate ordering operations from a single root\n operation, see "functools.total_ordering()".\n\nobject.__hash__(self)\n\n Called by built-in function "hash()" and for operations on members\n of hashed collections including "set", "frozenset", and "dict".\n "__hash__()" should return an integer. The only required property\n is that objects which compare equal have the same hash value; it is\n advised to somehow mix together (e.g. using exclusive or) the hash\n values for the components of the object that also play a part in\n comparison of objects.\n\n Note: "hash()" truncates the value returned from an object\'s\n custom "__hash__()" method to the size of a "Py_ssize_t". This\n is typically 8 bytes on 64-bit builds and 4 bytes on 32-bit\n builds. If an object\'s "__hash__()" must interoperate on builds\n of different bit sizes, be sure to check the width on all\n supported builds. An easy way to do this is with "python -c\n "import sys; print(sys.hash_info.width)""\n\n If a class does not define an "__eq__()" method it should not\n define a "__hash__()" operation either; if it defines "__eq__()"\n but not "__hash__()", its instances will not be usable as items in\n hashable collections. If a class defines mutable objects and\n implements an "__eq__()" method, it should not implement\n "__hash__()", since the implementation of hashable collections\n requires that a key\'s hash value is immutable (if the object\'s hash\n value changes, it will be in the wrong hash bucket).\n\n User-defined classes have "__eq__()" and "__hash__()" methods by\n default; with them, all objects compare unequal (except with\n themselves) and "x.__hash__()" returns an appropriate value such\n that "x == y" implies both that "x is y" and "hash(x) == hash(y)".\n\n A class that overrides "__eq__()" and does not define "__hash__()"\n will have its "__hash__()" implicitly set to "None". When the\n "__hash__()" method of a class is "None", instances of the class\n will raise an appropriate "TypeError" when a program attempts to\n retrieve their hash value, and will also be correctly identified as\n unhashable when checking "isinstance(obj, collections.Hashable").\n\n If a class that overrides "__eq__()" needs to retain the\n implementation of "__hash__()" from a parent class, the interpreter\n must be told this explicitly by setting "__hash__ =\n .__hash__".\n\n If a class that does not override "__eq__()" wishes to suppress\n hash support, it should include "__hash__ = None" in the class\n definition. A class which defines its own "__hash__()" that\n explicitly raises a "TypeError" would be incorrectly identified as\n hashable by an "isinstance(obj, collections.Hashable)" call.\n\n Note: By default, the "__hash__()" values of str, bytes and\n datetime objects are "salted" with an unpredictable random value.\n Although they remain constant within an individual Python\n process, they are not predictable between repeated invocations of\n Python.This is intended to provide protection against a denial-\n of-service caused by carefully-chosen inputs that exploit the\n worst case performance of a dict insertion, O(n^2) complexity.\n See http://www.ocert.org/advisories/ocert-2011-003.html for\n details.Changing hash values affects the iteration order of\n dicts, sets and other mappings. Python has never made guarantees\n about this ordering (and it typically varies between 32-bit and\n 64-bit builds).See also "PYTHONHASHSEED".\n\n Changed in version 3.3: Hash randomization is enabled by default.\n\nobject.__bool__(self)\n\n Called to implement truth value testing and the built-in operation\n "bool()"; should return "False" or "True". When this method is not\n defined, "__len__()" is called, if it is defined, and the object is\n considered true if its result is nonzero. If a class defines\n neither "__len__()" nor "__bool__()", all its instances are\n considered true.\n\n\nCustomizing attribute access\n============================\n\nThe following methods can be defined to customize the meaning of\nattribute access (use of, assignment to, or deletion of "x.name") for\nclass instances.\n\nobject.__getattr__(self, name)\n\n Called when an attribute lookup has not found the attribute in the\n usual places (i.e. it is not an instance attribute nor is it found\n in the class tree for "self"). "name" is the attribute name. This\n method should return the (computed) attribute value or raise an\n "AttributeError" exception.\n\n Note that if the attribute is found through the normal mechanism,\n "__getattr__()" is not called. (This is an intentional asymmetry\n between "__getattr__()" and "__setattr__()".) This is done both for\n efficiency reasons and because otherwise "__getattr__()" would have\n no way to access other attributes of the instance. Note that at\n least for instance variables, you can fake total control by not\n inserting any values in the instance attribute dictionary (but\n instead inserting them in another object). See the\n "__getattribute__()" method below for a way to actually get total\n control over attribute access.\n\nobject.__getattribute__(self, name)\n\n Called unconditionally to implement attribute accesses for\n instances of the class. If the class also defines "__getattr__()",\n the latter will not be called unless "__getattribute__()" either\n calls it explicitly or raises an "AttributeError". This method\n should return the (computed) attribute value or raise an\n "AttributeError" exception. In order to avoid infinite recursion in\n this method, its implementation should always call the base class\n method with the same name to access any attributes it needs, for\n example, "object.__getattribute__(self, name)".\n\n Note: This method may still be bypassed when looking up special\n methods as the result of implicit invocation via language syntax\n or built-in functions. See *Special method lookup*.\n\nobject.__setattr__(self, name, value)\n\n Called when an attribute assignment is attempted. This is called\n instead of the normal mechanism (i.e. store the value in the\n instance dictionary). *name* is the attribute name, *value* is the\n value to be assigned to it.\n\n If "__setattr__()" wants to assign to an instance attribute, it\n should call the base class method with the same name, for example,\n "object.__setattr__(self, name, value)".\n\nobject.__delattr__(self, name)\n\n Like "__setattr__()" but for attribute deletion instead of\n assignment. This should only be implemented if "del obj.name" is\n meaningful for the object.\n\nobject.__dir__(self)\n\n Called when "dir()" is called on the object. A sequence must be\n returned. "dir()" converts the returned sequence to a list and\n sorts it.\n\n\nImplementing Descriptors\n------------------------\n\nThe following methods only apply when an instance of the class\ncontaining the method (a so-called *descriptor* class) appears in an\n*owner* class (the descriptor must be in either the owner\'s class\ndictionary or in the class dictionary for one of its parents). In the\nexamples below, "the attribute" refers to the attribute whose name is\nthe key of the property in the owner class\' "__dict__".\n\nobject.__get__(self, instance, owner)\n\n Called to get the attribute of the owner class (class attribute\n access) or of an instance of that class (instance attribute\n access). *owner* is always the owner class, while *instance* is the\n instance that the attribute was accessed through, or "None" when\n the attribute is accessed through the *owner*. This method should\n return the (computed) attribute value or raise an "AttributeError"\n exception.\n\nobject.__set__(self, instance, value)\n\n Called to set the attribute on an instance *instance* of the owner\n class to a new value, *value*.\n\nobject.__delete__(self, instance)\n\n Called to delete the attribute on an instance *instance* of the\n owner class.\n\nThe attribute "__objclass__" is interpreted by the "inspect" module as\nspecifying the class where this object was defined (setting this\nappropriately can assist in runtime introspection of dynamic class\nattributes). For callables, it may indicate that an instance of the\ngiven type (or a subclass) is expected or required as the first\npositional argument (for example, CPython sets this attribute for\nunbound methods that are implemented in C).\n\n\nInvoking Descriptors\n--------------------\n\nIn general, a descriptor is an object attribute with "binding\nbehavior", one whose attribute access has been overridden by methods\nin the descriptor protocol: "__get__()", "__set__()", and\n"__delete__()". If any of those methods are defined for an object, it\nis said to be a descriptor.\n\nThe default behavior for attribute access is to get, set, or delete\nthe attribute from an object\'s dictionary. For instance, "a.x" has a\nlookup chain starting with "a.__dict__[\'x\']", then\n"type(a).__dict__[\'x\']", and continuing through the base classes of\n"type(a)" excluding metaclasses.\n\nHowever, if the looked-up value is an object defining one of the\ndescriptor methods, then Python may override the default behavior and\ninvoke the descriptor method instead. Where this occurs in the\nprecedence chain depends on which descriptor methods were defined and\nhow they were called.\n\nThe starting point for descriptor invocation is a binding, "a.x". How\nthe arguments are assembled depends on "a":\n\nDirect Call\n The simplest and least common call is when user code directly\n invokes a descriptor method: "x.__get__(a)".\n\nInstance Binding\n If binding to an object instance, "a.x" is transformed into the\n call: "type(a).__dict__[\'x\'].__get__(a, type(a))".\n\nClass Binding\n If binding to a class, "A.x" is transformed into the call:\n "A.__dict__[\'x\'].__get__(None, A)".\n\nSuper Binding\n If "a" is an instance of "super", then the binding "super(B,\n obj).m()" searches "obj.__class__.__mro__" for the base class "A"\n immediately preceding "B" and then invokes the descriptor with the\n call: "A.__dict__[\'m\'].__get__(obj, obj.__class__)".\n\nFor instance bindings, the precedence of descriptor invocation depends\non the which descriptor methods are defined. A descriptor can define\nany combination of "__get__()", "__set__()" and "__delete__()". If it\ndoes not define "__get__()", then accessing the attribute will return\nthe descriptor object itself unless there is a value in the object\'s\ninstance dictionary. If the descriptor defines "__set__()" and/or\n"__delete__()", it is a data descriptor; if it defines neither, it is\na non-data descriptor. Normally, data descriptors define both\n"__get__()" and "__set__()", while non-data descriptors have just the\n"__get__()" method. Data descriptors with "__set__()" and "__get__()"\ndefined always override a redefinition in an instance dictionary. In\ncontrast, non-data descriptors can be overridden by instances.\n\nPython methods (including "staticmethod()" and "classmethod()") are\nimplemented as non-data descriptors. Accordingly, instances can\nredefine and override methods. This allows individual instances to\nacquire behaviors that differ from other instances of the same class.\n\nThe "property()" function is implemented as a data descriptor.\nAccordingly, instances cannot override the behavior of a property.\n\n\n__slots__\n---------\n\nBy default, instances of classes have a dictionary for attribute\nstorage. This wastes space for objects having very few instance\nvariables. The space consumption can become acute when creating large\nnumbers of instances.\n\nThe default can be overridden by defining *__slots__* in a class\ndefinition. The *__slots__* declaration takes a sequence of instance\nvariables and reserves just enough space in each instance to hold a\nvalue for each variable. Space is saved because *__dict__* is not\ncreated for each instance.\n\nobject.__slots__\n\n This class variable can be assigned a string, iterable, or sequence\n of strings with variable names used by instances. *__slots__*\n reserves space for the declared variables and prevents the\n automatic creation of *__dict__* and *__weakref__* for each\n instance.\n\n\nNotes on using *__slots__*\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n* When inheriting from a class without *__slots__*, the *__dict__*\n attribute of that class will always be accessible, so a *__slots__*\n definition in the subclass is meaningless.\n\n* Without a *__dict__* variable, instances cannot be assigned new\n variables not listed in the *__slots__* definition. Attempts to\n assign to an unlisted variable name raises "AttributeError". If\n dynamic assignment of new variables is desired, then add\n "\'__dict__\'" to the sequence of strings in the *__slots__*\n declaration.\n\n* Without a *__weakref__* variable for each instance, classes\n defining *__slots__* do not support weak references to its\n instances. If weak reference support is needed, then add\n "\'__weakref__\'" to the sequence of strings in the *__slots__*\n declaration.\n\n* *__slots__* are implemented at the class level by creating\n descriptors (*Implementing Descriptors*) for each variable name. As\n a result, class attributes cannot be used to set default values for\n instance variables defined by *__slots__*; otherwise, the class\n attribute would overwrite the descriptor assignment.\n\n* The action of a *__slots__* declaration is limited to the class\n where it is defined. As a result, subclasses will have a *__dict__*\n unless they also define *__slots__* (which must only contain names\n of any *additional* slots).\n\n* If a class defines a slot also defined in a base class, the\n instance variable defined by the base class slot is inaccessible\n (except by retrieving its descriptor directly from the base class).\n This renders the meaning of the program undefined. In the future, a\n check may be added to prevent this.\n\n* Nonempty *__slots__* does not work for classes derived from\n "variable-length" built-in types such as "int", "bytes" and "tuple".\n\n* Any non-string iterable may be assigned to *__slots__*. Mappings\n may also be used; however, in the future, special meaning may be\n assigned to the values corresponding to each key.\n\n* *__class__* assignment works only if both classes have the same\n *__slots__*.\n\n\nCustomizing class creation\n==========================\n\nBy default, classes are constructed using "type()". The class body is\nexecuted in a new namespace and the class name is bound locally to the\nresult of "type(name, bases, namespace)".\n\nThe class creation process can be customised by passing the\n"metaclass" keyword argument in the class definition line, or by\ninheriting from an existing class that included such an argument. In\nthe following example, both "MyClass" and "MySubclass" are instances\nof "Meta":\n\n class Meta(type):\n pass\n\n class MyClass(metaclass=Meta):\n pass\n\n class MySubclass(MyClass):\n pass\n\nAny other keyword arguments that are specified in the class definition\nare passed through to all metaclass operations described below.\n\nWhen a class definition is executed, the following steps occur:\n\n* the appropriate metaclass is determined\n\n* the class namespace is prepared\n\n* the class body is executed\n\n* the class object is created\n\n\nDetermining the appropriate metaclass\n-------------------------------------\n\nThe appropriate metaclass for a class definition is determined as\nfollows:\n\n* if no bases and no explicit metaclass are given, then "type()" is\n used\n\n* if an explicit metaclass is given and it is *not* an instance of\n "type()", then it is used directly as the metaclass\n\n* if an instance of "type()" is given as the explicit metaclass, or\n bases are defined, then the most derived metaclass is used\n\nThe most derived metaclass is selected from the explicitly specified\nmetaclass (if any) and the metaclasses (i.e. "type(cls)") of all\nspecified base classes. The most derived metaclass is one which is a\nsubtype of *all* of these candidate metaclasses. If none of the\ncandidate metaclasses meets that criterion, then the class definition\nwill fail with "TypeError".\n\n\nPreparing the class namespace\n-----------------------------\n\nOnce the appropriate metaclass has been identified, then the class\nnamespace is prepared. If the metaclass has a "__prepare__" attribute,\nit is called as "namespace = metaclass.__prepare__(name, bases,\n**kwds)" (where the additional keyword arguments, if any, come from\nthe class definition).\n\nIf the metaclass has no "__prepare__" attribute, then the class\nnamespace is initialised as an empty "dict()" instance.\n\nSee also: **PEP 3115** - Metaclasses in Python 3000\n\n Introduced the "__prepare__" namespace hook\n\n\nExecuting the class body\n------------------------\n\nThe class body is executed (approximately) as "exec(body, globals(),\nnamespace)". The key difference from a normal call to "exec()" is that\nlexical scoping allows the class body (including any methods) to\nreference names from the current and outer scopes when the class\ndefinition occurs inside a function.\n\nHowever, even when the class definition occurs inside the function,\nmethods defined inside the class still cannot see names defined at the\nclass scope. Class variables must be accessed through the first\nparameter of instance or class methods, and cannot be accessed at all\nfrom static methods.\n\n\nCreating the class object\n-------------------------\n\nOnce the class namespace has been populated by executing the class\nbody, the class object is created by calling "metaclass(name, bases,\nnamespace, **kwds)" (the additional keywords passed here are the same\nas those passed to "__prepare__").\n\nThis class object is the one that will be referenced by the zero-\nargument form of "super()". "__class__" is an implicit closure\nreference created by the compiler if any methods in a class body refer\nto either "__class__" or "super". This allows the zero argument form\nof "super()" to correctly identify the class being defined based on\nlexical scoping, while the class or instance that was used to make the\ncurrent call is identified based on the first argument passed to the\nmethod.\n\nAfter the class object is created, it is passed to the class\ndecorators included in the class definition (if any) and the resulting\nobject is bound in the local namespace as the defined class.\n\nSee also: **PEP 3135** - New super\n\n Describes the implicit "__class__" closure reference\n\n\nMetaclass example\n-----------------\n\nThe potential uses for metaclasses are boundless. Some ideas that have\nbeen explored include logging, interface checking, automatic\ndelegation, automatic property creation, proxies, frameworks, and\nautomatic resource locking/synchronization.\n\nHere is an example of a metaclass that uses an\n"collections.OrderedDict" to remember the order that class variables\nare defined:\n\n class OrderedClass(type):\n\n @classmethod\n def __prepare__(metacls, name, bases, **kwds):\n return collections.OrderedDict()\n\n def __new__(cls, name, bases, namespace, **kwds):\n result = type.__new__(cls, name, bases, dict(namespace))\n result.members = tuple(namespace)\n return result\n\n class A(metaclass=OrderedClass):\n def one(self): pass\n def two(self): pass\n def three(self): pass\n def four(self): pass\n\n >>> A.members\n (\'__module__\', \'one\', \'two\', \'three\', \'four\')\n\nWhen the class definition for *A* gets executed, the process begins\nwith calling the metaclass\'s "__prepare__()" method which returns an\nempty "collections.OrderedDict". That mapping records the methods and\nattributes of *A* as they are defined within the body of the class\nstatement. Once those definitions are executed, the ordered dictionary\nis fully populated and the metaclass\'s "__new__()" method gets\ninvoked. That method builds the new type and it saves the ordered\ndictionary keys in an attribute called "members".\n\n\nCustomizing instance and subclass checks\n========================================\n\nThe following methods are used to override the default behavior of the\n"isinstance()" and "issubclass()" built-in functions.\n\nIn particular, the metaclass "abc.ABCMeta" implements these methods in\norder to allow the addition of Abstract Base Classes (ABCs) as\n"virtual base classes" to any class or type (including built-in\ntypes), including other ABCs.\n\nclass.__instancecheck__(self, instance)\n\n Return true if *instance* should be considered a (direct or\n indirect) instance of *class*. If defined, called to implement\n "isinstance(instance, class)".\n\nclass.__subclasscheck__(self, subclass)\n\n Return true if *subclass* should be considered a (direct or\n indirect) subclass of *class*. If defined, called to implement\n "issubclass(subclass, class)".\n\nNote that these methods are looked up on the type (metaclass) of a\nclass. They cannot be defined as class methods in the actual class.\nThis is consistent with the lookup of special methods that are called\non instances, only in this case the instance is itself a class.\n\nSee also: **PEP 3119** - Introducing Abstract Base Classes\n\n Includes the specification for customizing "isinstance()" and\n "issubclass()" behavior through "__instancecheck__()" and\n "__subclasscheck__()", with motivation for this functionality in\n the context of adding Abstract Base Classes (see the "abc"\n module) to the language.\n\n\nEmulating callable objects\n==========================\n\nobject.__call__(self[, args...])\n\n Called when the instance is "called" as a function; if this method\n is defined, "x(arg1, arg2, ...)" is a shorthand for\n "x.__call__(arg1, arg2, ...)".\n\n\nEmulating container types\n=========================\n\nThe following methods can be defined to implement container objects.\nContainers usually are sequences (such as lists or tuples) or mappings\n(like dictionaries), but can represent other containers as well. The\nfirst set of methods is used either to emulate a sequence or to\nemulate a mapping; the difference is that for a sequence, the\nallowable keys should be the integers *k* for which "0 <= k < N" where\n*N* is the length of the sequence, or slice objects, which define a\nrange of items. It is also recommended that mappings provide the\nmethods "keys()", "values()", "items()", "get()", "clear()",\n"setdefault()", "pop()", "popitem()", "copy()", and "update()"\nbehaving similar to those for Python\'s standard dictionary objects.\nThe "collections" module provides a "MutableMapping" abstract base\nclass to help create those methods from a base set of "__getitem__()",\n"__setitem__()", "__delitem__()", and "keys()". Mutable sequences\nshould provide methods "append()", "count()", "index()", "extend()",\n"insert()", "pop()", "remove()", "reverse()" and "sort()", like Python\nstandard list objects. Finally, sequence types should implement\naddition (meaning concatenation) and multiplication (meaning\nrepetition) by defining the methods "__add__()", "__radd__()",\n"__iadd__()", "__mul__()", "__rmul__()" and "__imul__()" described\nbelow; they should not define other numerical operators. It is\nrecommended that both mappings and sequences implement the\n"__contains__()" method to allow efficient use of the "in" operator;\nfor mappings, "in" should search the mapping\'s keys; for sequences, it\nshould search through the values. It is further recommended that both\nmappings and sequences implement the "__iter__()" method to allow\nefficient iteration through the container; for mappings, "__iter__()"\nshould be the same as "keys()"; for sequences, it should iterate\nthrough the values.\n\nobject.__len__(self)\n\n Called to implement the built-in function "len()". Should return\n the length of the object, an integer ">=" 0. Also, an object that\n doesn\'t define a "__bool__()" method and whose "__len__()" method\n returns zero is considered to be false in a Boolean context.\n\nobject.__length_hint__(self)\n\n Called to implement "operator.length_hint()". Should return an\n estimated length for the object (which may be greater or less than\n the actual length). The length must be an integer ">=" 0. This\n method is purely an optimization and is never required for\n correctness.\n\n New in version 3.4.\n\nNote: Slicing is done exclusively with the following three methods.\n A call like\n\n a[1:2] = b\n\n is translated to\n\n a[slice(1, 2, None)] = b\n\n and so forth. Missing slice items are always filled in with "None".\n\nobject.__getitem__(self, key)\n\n Called to implement evaluation of "self[key]". For sequence types,\n the accepted keys should be integers and slice objects. Note that\n the special interpretation of negative indexes (if the class wishes\n to emulate a sequence type) is up to the "__getitem__()" method. If\n *key* is of an inappropriate type, "TypeError" may be raised; if of\n a value outside the set of indexes for the sequence (after any\n special interpretation of negative values), "IndexError" should be\n raised. For mapping types, if *key* is missing (not in the\n container), "KeyError" should be raised.\n\n Note: "for" loops expect that an "IndexError" will be raised for\n illegal indexes to allow proper detection of the end of the\n sequence.\n\nobject.__missing__(self, key)\n\n Called by "dict"."__getitem__()" to implement "self[key]" for dict\n subclasses when key is not in the dictionary.\n\nobject.__setitem__(self, key, value)\n\n Called to implement assignment to "self[key]". Same note as for\n "__getitem__()". This should only be implemented for mappings if\n the objects support changes to the values for keys, or if new keys\n can be added, or for sequences if elements can be replaced. The\n same exceptions should be raised for improper *key* values as for\n the "__getitem__()" method.\n\nobject.__delitem__(self, key)\n\n Called to implement deletion of "self[key]". Same note as for\n "__getitem__()". This should only be implemented for mappings if\n the objects support removal of keys, or for sequences if elements\n can be removed from the sequence. The same exceptions should be\n raised for improper *key* values as for the "__getitem__()" method.\n\nobject.__iter__(self)\n\n This method is called when an iterator is required for a container.\n This method should return a new iterator object that can iterate\n over all the objects in the container. For mappings, it should\n iterate over the keys of the container.\n\n Iterator objects also need to implement this method; they are\n required to return themselves. For more information on iterator\n objects, see *Iterator Types*.\n\nobject.__reversed__(self)\n\n Called (if present) by the "reversed()" built-in to implement\n reverse iteration. It should return a new iterator object that\n iterates over all the objects in the container in reverse order.\n\n If the "__reversed__()" method is not provided, the "reversed()"\n built-in will fall back to using the sequence protocol ("__len__()"\n and "__getitem__()"). Objects that support the sequence protocol\n should only provide "__reversed__()" if they can provide an\n implementation that is more efficient than the one provided by\n "reversed()".\n\nThe membership test operators ("in" and "not in") are normally\nimplemented as an iteration through a sequence. However, container\nobjects can supply the following special method with a more efficient\nimplementation, which also does not require the object be a sequence.\n\nobject.__contains__(self, item)\n\n Called to implement membership test operators. Should return true\n if *item* is in *self*, false otherwise. For mapping objects, this\n should consider the keys of the mapping rather than the values or\n the key-item pairs.\n\n For objects that don\'t define "__contains__()", the membership test\n first tries iteration via "__iter__()", then the old sequence\n iteration protocol via "__getitem__()", see *this section in the\n language reference*.\n\n\nEmulating numeric types\n=======================\n\nThe following methods can be defined to emulate numeric objects.\nMethods corresponding to operations that are not supported by the\nparticular kind of number implemented (e.g., bitwise operations for\nnon-integral numbers) should be left undefined.\n\nobject.__add__(self, other)\nobject.__sub__(self, other)\nobject.__mul__(self, other)\nobject.__matmul__(self, other)\nobject.__truediv__(self, other)\nobject.__floordiv__(self, other)\nobject.__mod__(self, other)\nobject.__divmod__(self, other)\nobject.__pow__(self, other[, modulo])\nobject.__lshift__(self, other)\nobject.__rshift__(self, other)\nobject.__and__(self, other)\nobject.__xor__(self, other)\nobject.__or__(self, other)\n\n These methods are called to implement the binary arithmetic\n operations ("+", "-", "*", "@", "/", "//", "%", "divmod()",\n "pow()", "**", "<<", ">>", "&", "^", "|"). For instance, to\n evaluate the expression "x + y", where *x* is an instance of a\n class that has an "__add__()" method, "x.__add__(y)" is called.\n The "__divmod__()" method should be the equivalent to using\n "__floordiv__()" and "__mod__()"; it should not be related to\n "__truediv__()". Note that "__pow__()" should be defined to accept\n an optional third argument if the ternary version of the built-in\n "pow()" function is to be supported.\n\n If one of those methods does not support the operation with the\n supplied arguments, it should return "NotImplemented".\n\nobject.__radd__(self, other)\nobject.__rsub__(self, other)\nobject.__rmul__(self, other)\nobject.__rmatmul__(self, other)\nobject.__rtruediv__(self, other)\nobject.__rfloordiv__(self, other)\nobject.__rmod__(self, other)\nobject.__rdivmod__(self, other)\nobject.__rpow__(self, other)\nobject.__rlshift__(self, other)\nobject.__rrshift__(self, other)\nobject.__rand__(self, other)\nobject.__rxor__(self, other)\nobject.__ror__(self, other)\n\n These methods are called to implement the binary arithmetic\n operations ("+", "-", "*", "@", "/", "//", "%", "divmod()",\n "pow()", "**", "<<", ">>", "&", "^", "|") with reflected (swapped)\n operands. These functions are only called if the left operand does\n not support the corresponding operation and the operands are of\n different types. [2] For instance, to evaluate the expression "x -\n y", where *y* is an instance of a class that has an "__rsub__()"\n method, "y.__rsub__(x)" is called if "x.__sub__(y)" returns\n *NotImplemented*.\n\n Note that ternary "pow()" will not try calling "__rpow__()" (the\n coercion rules would become too complicated).\n\n Note: If the right operand\'s type is a subclass of the left\n operand\'s type and that subclass provides the reflected method\n for the operation, this method will be called before the left\n operand\'s non-reflected method. This behavior allows subclasses\n to override their ancestors\' operations.\n\nobject.__iadd__(self, other)\nobject.__isub__(self, other)\nobject.__imul__(self, other)\nobject.__imatmul__(self, other)\nobject.__itruediv__(self, other)\nobject.__ifloordiv__(self, other)\nobject.__imod__(self, other)\nobject.__ipow__(self, other[, modulo])\nobject.__ilshift__(self, other)\nobject.__irshift__(self, other)\nobject.__iand__(self, other)\nobject.__ixor__(self, other)\nobject.__ior__(self, other)\n\n These methods are called to implement the augmented arithmetic\n assignments ("+=", "-=", "*=", "@=", "/=", "//=", "%=", "**=",\n "<<=", ">>=", "&=", "^=", "|="). These methods should attempt to\n do the operation in-place (modifying *self*) and return the result\n (which could be, but does not have to be, *self*). If a specific\n method is not defined, the augmented assignment falls back to the\n normal methods. For instance, if *x* is an instance of a class\n with an "__iadd__()" method, "x += y" is equivalent to "x =\n x.__iadd__(y)" . Otherwise, "x.__add__(y)" and "y.__radd__(x)" are\n considered, as with the evaluation of "x + y". In certain\n situations, augmented assignment can result in unexpected errors\n (see *Why does a_tuple[i] += [\'item\'] raise an exception when the\n addition works?*), but this behavior is in fact part of the data\n model.\n\nobject.__neg__(self)\nobject.__pos__(self)\nobject.__abs__(self)\nobject.__invert__(self)\n\n Called to implement the unary arithmetic operations ("-", "+",\n "abs()" and "~").\n\nobject.__complex__(self)\nobject.__int__(self)\nobject.__float__(self)\nobject.__round__(self[, n])\n\n Called to implement the built-in functions "complex()", "int()",\n "float()" and "round()". Should return a value of the appropriate\n type.\n\nobject.__index__(self)\n\n Called to implement "operator.index()", and whenever Python needs\n to losslessly convert the numeric object to an integer object (such\n as in slicing, or in the built-in "bin()", "hex()" and "oct()"\n functions). Presence of this method indicates that the numeric\n object is an integer type. Must return an integer.\n\n Note: In order to have a coherent integer type class, when\n "__index__()" is defined "__int__()" should also be defined, and\n both should return the same value.\n\n\nWith Statement Context Managers\n===============================\n\nA *context manager* is an object that defines the runtime context to\nbe established when executing a "with" statement. The context manager\nhandles the entry into, and the exit from, the desired runtime context\nfor the execution of the block of code. Context managers are normally\ninvoked using the "with" statement (described in section *The with\nstatement*), but can also be used by directly invoking their methods.\n\nTypical uses of context managers include saving and restoring various\nkinds of global state, locking and unlocking resources, closing opened\nfiles, etc.\n\nFor more information on context managers, see *Context Manager Types*.\n\nobject.__enter__(self)\n\n Enter the runtime context related to this object. The "with"\n statement will bind this method\'s return value to the target(s)\n specified in the "as" clause of the statement, if any.\n\nobject.__exit__(self, exc_type, exc_value, traceback)\n\n Exit the runtime context related to this object. The parameters\n describe the exception that caused the context to be exited. If the\n context was exited without an exception, all three arguments will\n be "None".\n\n If an exception is supplied, and the method wishes to suppress the\n exception (i.e., prevent it from being propagated), it should\n return a true value. Otherwise, the exception will be processed\n normally upon exit from this method.\n\n Note that "__exit__()" methods should not reraise the passed-in\n exception; this is the caller\'s responsibility.\n\nSee also: **PEP 0343** - The "with" statement\n\n The specification, background, and examples for the Python "with"\n statement.\n\n\nSpecial method lookup\n=====================\n\nFor custom classes, implicit invocations of special methods are only\nguaranteed to work correctly if defined on an object\'s type, not in\nthe object\'s instance dictionary. That behaviour is the reason why\nthe following code raises an exception:\n\n >>> class C:\n ... pass\n ...\n >>> c = C()\n >>> c.__len__ = lambda: 5\n >>> len(c)\n Traceback (most recent call last):\n File "", line 1, in \n TypeError: object of type \'C\' has no len()\n\nThe rationale behind this behaviour lies with a number of special\nmethods such as "__hash__()" and "__repr__()" that are implemented by\nall objects, including type objects. If the implicit lookup of these\nmethods used the conventional lookup process, they would fail when\ninvoked on the type object itself:\n\n >>> 1 .__hash__() == hash(1)\n True\n >>> int.__hash__() == hash(int)\n Traceback (most recent call last):\n File "", line 1, in \n TypeError: descriptor \'__hash__\' of \'int\' object needs an argument\n\nIncorrectly attempting to invoke an unbound method of a class in this\nway is sometimes referred to as \'metaclass confusion\', and is avoided\nby bypassing the instance when looking up special methods:\n\n >>> type(1).__hash__(1) == hash(1)\n True\n >>> type(int).__hash__(int) == hash(int)\n True\n\nIn addition to bypassing any instance attributes in the interest of\ncorrectness, implicit special method lookup generally also bypasses\nthe "__getattribute__()" method even of the object\'s metaclass:\n\n >>> class Meta(type):\n ... def __getattribute__(*args):\n ... print("Metaclass getattribute invoked")\n ... return type.__getattribute__(*args)\n ...\n >>> class C(object, metaclass=Meta):\n ... def __len__(self):\n ... return 10\n ... def __getattribute__(*args):\n ... print("Class getattribute invoked")\n ... return object.__getattribute__(*args)\n ...\n >>> c = C()\n >>> c.__len__() # Explicit lookup via instance\n Class getattribute invoked\n 10\n >>> type(c).__len__(c) # Explicit lookup via type\n Metaclass getattribute invoked\n 10\n >>> len(c) # Implicit lookup\n 10\n\nBypassing the "__getattribute__()" machinery in this fashion provides\nsignificant scope for speed optimisations within the interpreter, at\nthe cost of some flexibility in the handling of special methods (the\nspecial method *must* be set on the class object itself in order to be\nconsistently invoked by the interpreter).\n\n-[ Footnotes ]-\n\n[1] It *is* possible in some cases to change an object\'s type,\n under certain controlled conditions. It generally isn\'t a good\n idea though, since it can lead to some very strange behaviour if\n it is handled incorrectly.\n\n[2] For operands of the same type, it is assumed that if the non-\n reflected method (such as "__add__()") fails the operation is not\n supported, which is why the reflected method is not called.\n', - 'string-methods': u'\nString Methods\n**************\n\nStrings implement all of the *common* sequence operations, along with\nthe additional methods described below.\n\nStrings also support two styles of string formatting, one providing a\nlarge degree of flexibility and customization (see "str.format()",\n*Format String Syntax* and *String Formatting*) and the other based on\nC "printf" style formatting that handles a narrower range of types and\nis slightly harder to use correctly, but is often faster for the cases\nit can handle (*printf-style String Formatting*).\n\nThe *Text Processing Services* section of the standard library covers\na number of other modules that provide various text related utilities\n(including regular expression support in the "re" module).\n\nstr.capitalize()\n\n Return a copy of the string with its first character capitalized\n and the rest lowercased.\n\nstr.casefold()\n\n Return a casefolded copy of the string. Casefolded strings may be\n used for caseless matching.\n\n Casefolding is similar to lowercasing but more aggressive because\n it is intended to remove all case distinctions in a string. For\n example, the German lowercase letter "\'\xdf\'" is equivalent to ""ss"".\n Since it is already lowercase, "lower()" would do nothing to "\'\xdf\'";\n "casefold()" converts it to ""ss"".\n\n The casefolding algorithm is described in section 3.13 of the\n Unicode Standard.\n\n New in version 3.3.\n\nstr.center(width[, fillchar])\n\n Return centered in a string of length *width*. Padding is done\n using the specified *fillchar* (default is an ASCII space). The\n original string is returned if *width* is less than or equal to\n "len(s)".\n\nstr.count(sub[, start[, end]])\n\n Return the number of non-overlapping occurrences of substring *sub*\n in the range [*start*, *end*]. Optional arguments *start* and\n *end* are interpreted as in slice notation.\n\nstr.encode(encoding="utf-8", errors="strict")\n\n Return an encoded version of the string as a bytes object. Default\n encoding is "\'utf-8\'". *errors* may be given to set a different\n error handling scheme. The default for *errors* is "\'strict\'",\n meaning that encoding errors raise a "UnicodeError". Other possible\n values are "\'ignore\'", "\'replace\'", "\'xmlcharrefreplace\'",\n "\'backslashreplace\'" and any other name registered via\n "codecs.register_error()", see section *Error Handlers*. For a list\n of possible encodings, see section *Standard Encodings*.\n\n Changed in version 3.1: Support for keyword arguments added.\n\nstr.endswith(suffix[, start[, end]])\n\n Return "True" if the string ends with the specified *suffix*,\n otherwise return "False". *suffix* can also be a tuple of suffixes\n to look for. With optional *start*, test beginning at that\n position. With optional *end*, stop comparing at that position.\n\nstr.expandtabs(tabsize=8)\n\n Return a copy of the string where all tab characters are replaced\n by one or more spaces, depending on the current column and the\n given tab size. Tab positions occur every *tabsize* characters\n (default is 8, giving tab positions at columns 0, 8, 16 and so on).\n To expand the string, the current column is set to zero and the\n string is examined character by character. If the character is a\n tab ("\\t"), one or more space characters are inserted in the result\n until the current column is equal to the next tab position. (The\n tab character itself is not copied.) If the character is a newline\n ("\\n") or return ("\\r"), it is copied and the current column is\n reset to zero. Any other character is copied unchanged and the\n current column is incremented by one regardless of how the\n character is represented when printed.\n\n >>> \'01\\t012\\t0123\\t01234\'.expandtabs()\n \'01 012 0123 01234\'\n >>> \'01\\t012\\t0123\\t01234\'.expandtabs(4)\n \'01 012 0123 01234\'\n\nstr.find(sub[, start[, end]])\n\n Return the lowest index in the string where substring *sub* is\n found, such that *sub* is contained in the slice "s[start:end]".\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return "-1" if *sub* is not found.\n\n Note: The "find()" method should be used only if you need to know\n the position of *sub*. To check if *sub* is a substring or not,\n use the "in" operator:\n\n >>> \'Py\' in \'Python\'\n True\n\nstr.format(*args, **kwargs)\n\n Perform a string formatting operation. The string on which this\n method is called can contain literal text or replacement fields\n delimited by braces "{}". Each replacement field contains either\n the numeric index of a positional argument, or the name of a\n keyword argument. Returns a copy of the string where each\n replacement field is replaced with the string value of the\n corresponding argument.\n\n >>> "The sum of 1 + 2 is {0}".format(1+2)\n \'The sum of 1 + 2 is 3\'\n\n See *Format String Syntax* for a description of the various\n formatting options that can be specified in format strings.\n\nstr.format_map(mapping)\n\n Similar to "str.format(**mapping)", except that "mapping" is used\n directly and not copied to a "dict". This is useful if for example\n "mapping" is a dict subclass:\n\n >>> class Default(dict):\n ... def __missing__(self, key):\n ... return key\n ...\n >>> \'{name} was born in {country}\'.format_map(Default(name=\'Guido\'))\n \'Guido was born in country\'\n\n New in version 3.2.\n\nstr.index(sub[, start[, end]])\n\n Like "find()", but raise "ValueError" when the substring is not\n found.\n\nstr.isalnum()\n\n Return true if all characters in the string are alphanumeric and\n there is at least one character, false otherwise. A character "c"\n is alphanumeric if one of the following returns "True":\n "c.isalpha()", "c.isdecimal()", "c.isdigit()", or "c.isnumeric()".\n\nstr.isalpha()\n\n Return true if all characters in the string are alphabetic and\n there is at least one character, false otherwise. Alphabetic\n characters are those characters defined in the Unicode character\n database as "Letter", i.e., those with general category property\n being one of "Lm", "Lt", "Lu", "Ll", or "Lo". Note that this is\n different from the "Alphabetic" property defined in the Unicode\n Standard.\n\nstr.isdecimal()\n\n Return true if all characters in the string are decimal characters\n and there is at least one character, false otherwise. Decimal\n characters are those from general category "Nd". This category\n includes digit characters, and all characters that can be used to\n form decimal-radix numbers, e.g. U+0660, ARABIC-INDIC DIGIT ZERO.\n\nstr.isdigit()\n\n Return true if all characters in the string are digits and there is\n at least one character, false otherwise. Digits include decimal\n characters and digits that need special handling, such as the\n compatibility superscript digits. Formally, a digit is a character\n that has the property value Numeric_Type=Digit or\n Numeric_Type=Decimal.\n\nstr.isidentifier()\n\n Return true if the string is a valid identifier according to the\n language definition, section *Identifiers and keywords*.\n\n Use "keyword.iskeyword()" to test for reserved identifiers such as\n "def" and "class".\n\nstr.islower()\n\n Return true if all cased characters [4] in the string are lowercase\n and there is at least one cased character, false otherwise.\n\nstr.isnumeric()\n\n Return true if all characters in the string are numeric characters,\n and there is at least one character, false otherwise. Numeric\n characters include digit characters, and all characters that have\n the Unicode numeric value property, e.g. U+2155, VULGAR FRACTION\n ONE FIFTH. Formally, numeric characters are those with the\n property value Numeric_Type=Digit, Numeric_Type=Decimal or\n Numeric_Type=Numeric.\n\nstr.isprintable()\n\n Return true if all characters in the string are printable or the\n string is empty, false otherwise. Nonprintable characters are\n those characters defined in the Unicode character database as\n "Other" or "Separator", excepting the ASCII space (0x20) which is\n considered printable. (Note that printable characters in this\n context are those which should not be escaped when "repr()" is\n invoked on a string. It has no bearing on the handling of strings\n written to "sys.stdout" or "sys.stderr".)\n\nstr.isspace()\n\n Return true if there are only whitespace characters in the string\n and there is at least one character, false otherwise. Whitespace\n characters are those characters defined in the Unicode character\n database as "Other" or "Separator" and those with bidirectional\n property being one of "WS", "B", or "S".\n\nstr.istitle()\n\n Return true if the string is a titlecased string and there is at\n least one character, for example uppercase characters may only\n follow uncased characters and lowercase characters only cased ones.\n Return false otherwise.\n\nstr.isupper()\n\n Return true if all cased characters [4] in the string are uppercase\n and there is at least one cased character, false otherwise.\n\nstr.join(iterable)\n\n Return a string which is the concatenation of the strings in the\n *iterable* *iterable*. A "TypeError" will be raised if there are\n any non-string values in *iterable*, including "bytes" objects.\n The separator between elements is the string providing this method.\n\nstr.ljust(width[, fillchar])\n\n Return the string left justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is an ASCII\n space). The original string is returned if *width* is less than or\n equal to "len(s)".\n\nstr.lower()\n\n Return a copy of the string with all the cased characters [4]\n converted to lowercase.\n\n The lowercasing algorithm used is described in section 3.13 of the\n Unicode Standard.\n\nstr.lstrip([chars])\n\n Return a copy of the string with leading characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or "None", the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a prefix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.lstrip()\n \'spacious \'\n >>> \'www.example.com\'.lstrip(\'cmowz.\')\n \'example.com\'\n\nstatic str.maketrans(x[, y[, z]])\n\n This static method returns a translation table usable for\n "str.translate()".\n\n If there is only one argument, it must be a dictionary mapping\n Unicode ordinals (integers) or characters (strings of length 1) to\n Unicode ordinals, strings (of arbitrary lengths) or None.\n Character keys will then be converted to ordinals.\n\n If there are two arguments, they must be strings of equal length,\n and in the resulting dictionary, each character in x will be mapped\n to the character at the same position in y. If there is a third\n argument, it must be a string, whose characters will be mapped to\n None in the result.\n\nstr.partition(sep)\n\n Split the string at the first occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing the string itself, followed by\n two empty strings.\n\nstr.replace(old, new[, count])\n\n Return a copy of the string with all occurrences of substring *old*\n replaced by *new*. If the optional argument *count* is given, only\n the first *count* occurrences are replaced.\n\nstr.rfind(sub[, start[, end]])\n\n Return the highest index in the string where substring *sub* is\n found, such that *sub* is contained within "s[start:end]".\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return "-1" on failure.\n\nstr.rindex(sub[, start[, end]])\n\n Like "rfind()" but raises "ValueError" when the substring *sub* is\n not found.\n\nstr.rjust(width[, fillchar])\n\n Return the string right justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is an ASCII\n space). The original string is returned if *width* is less than or\n equal to "len(s)".\n\nstr.rpartition(sep)\n\n Split the string at the last occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing two empty strings, followed by\n the string itself.\n\nstr.rsplit(sep=None, maxsplit=-1)\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit* splits\n are done, the *rightmost* ones. If *sep* is not specified or\n "None", any whitespace string is a separator. Except for splitting\n from the right, "rsplit()" behaves like "split()" which is\n described in detail below.\n\nstr.rstrip([chars])\n\n Return a copy of the string with trailing characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or "None", the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a suffix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.rstrip()\n \' spacious\'\n >>> \'mississippi\'.rstrip(\'ipz\')\n \'mississ\'\n\nstr.split(sep=None, maxsplit=-1)\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit*\n splits are done (thus, the list will have at most "maxsplit+1"\n elements). If *maxsplit* is not specified or "-1", then there is\n no limit on the number of splits (all possible splits are made).\n\n If *sep* is given, consecutive delimiters are not grouped together\n and are deemed to delimit empty strings (for example,\n "\'1,,2\'.split(\',\')" returns "[\'1\', \'\', \'2\']"). The *sep* argument\n may consist of multiple characters (for example,\n "\'1<>2<>3\'.split(\'<>\')" returns "[\'1\', \'2\', \'3\']"). Splitting an\n empty string with a specified separator returns "[\'\']".\n\n For example:\n\n >>> \'1,2,3\'.split(\',\')\n [\'1\', \'2\', \'3\']\n >>> \'1,2,3\'.split(\',\', maxsplit=1)\n [\'1\', \'2,3\']\n >>> \'1,2,,3,\'.split(\',\')\n [\'1\', \'2\', \'\', \'3\', \'\']\n\n If *sep* is not specified or is "None", a different splitting\n algorithm is applied: runs of consecutive whitespace are regarded\n as a single separator, and the result will contain no empty strings\n at the start or end if the string has leading or trailing\n whitespace. Consequently, splitting an empty string or a string\n consisting of just whitespace with a "None" separator returns "[]".\n\n For example:\n\n >>> \'1 2 3\'.split()\n [\'1\', \'2\', \'3\']\n >>> \'1 2 3\'.split(maxsplit=1)\n [\'1\', \'2 3\']\n >>> \' 1 2 3 \'.split()\n [\'1\', \'2\', \'3\']\n\nstr.splitlines([keepends])\n\n Return a list of the lines in the string, breaking at line\n boundaries. Line breaks are not included in the resulting list\n unless *keepends* is given and true.\n\n This method splits on the following line boundaries. In\n particular, the boundaries are a superset of *universal newlines*.\n\n +-------------------------+-------------------------------+\n | Representation | Description |\n +=========================+===============================+\n | "\\n" | Line Feed |\n +-------------------------+-------------------------------+\n | "\\r" | Carriage Return |\n +-------------------------+-------------------------------+\n | "\\r\\n" | Carriage Return + Line Feed |\n +-------------------------+-------------------------------+\n | "\\v" or "\\x0b" | Line Tabulation |\n +-------------------------+-------------------------------+\n | "\\f" or "\\x0c" | Form Feed |\n +-------------------------+-------------------------------+\n | "\\x1c" | File Separator |\n +-------------------------+-------------------------------+\n | "\\x1d" | Group Separator |\n +-------------------------+-------------------------------+\n | "\\x1e" | Record Separator |\n +-------------------------+-------------------------------+\n | "\\x85" | Next Line (C1 Control Code) |\n +-------------------------+-------------------------------+\n | "\\u2028" | Line Separator |\n +-------------------------+-------------------------------+\n | "\\u2029" | Paragraph Separator |\n +-------------------------+-------------------------------+\n\n Changed in version 3.2: "\\v" and "\\f" added to list of line\n boundaries.\n\n For example:\n\n >>> \'ab c\\n\\nde fg\\rkl\\r\\n\'.splitlines()\n [\'ab c\', \'\', \'de fg\', \'kl\']\n >>> \'ab c\\n\\nde fg\\rkl\\r\\n\'.splitlines(keepends=True)\n [\'ab c\\n\', \'\\n\', \'de fg\\r\', \'kl\\r\\n\']\n\n Unlike "split()" when a delimiter string *sep* is given, this\n method returns an empty list for the empty string, and a terminal\n line break does not result in an extra line:\n\n >>> "".splitlines()\n []\n >>> "One line\\n".splitlines()\n [\'One line\']\n\n For comparison, "split(\'\\n\')" gives:\n\n >>> \'\'.split(\'\\n\')\n [\'\']\n >>> \'Two lines\\n\'.split(\'\\n\')\n [\'Two lines\', \'\']\n\nstr.startswith(prefix[, start[, end]])\n\n Return "True" if string starts with the *prefix*, otherwise return\n "False". *prefix* can also be a tuple of prefixes to look for.\n With optional *start*, test string beginning at that position.\n With optional *end*, stop comparing string at that position.\n\nstr.strip([chars])\n\n Return a copy of the string with the leading and trailing\n characters removed. The *chars* argument is a string specifying the\n set of characters to be removed. If omitted or "None", the *chars*\n argument defaults to removing whitespace. The *chars* argument is\n not a prefix or suffix; rather, all combinations of its values are\n stripped:\n\n >>> \' spacious \'.strip()\n \'spacious\'\n >>> \'www.example.com\'.strip(\'cmowz.\')\n \'example\'\n\nstr.swapcase()\n\n Return a copy of the string with uppercase characters converted to\n lowercase and vice versa. Note that it is not necessarily true that\n "s.swapcase().swapcase() == s".\n\nstr.title()\n\n Return a titlecased version of the string where words start with an\n uppercase character and the remaining characters are lowercase.\n\n For example:\n\n >>> \'Hello world\'.title()\n \'Hello World\'\n\n The algorithm uses a simple language-independent definition of a\n word as groups of consecutive letters. The definition works in\n many contexts but it means that apostrophes in contractions and\n possessives form word boundaries, which may not be the desired\n result:\n\n >>> "they\'re bill\'s friends from the UK".title()\n "They\'Re Bill\'S Friends From The Uk"\n\n A workaround for apostrophes can be constructed using regular\n expressions:\n\n >>> import re\n >>> def titlecase(s):\n ... return re.sub(r"[A-Za-z]+(\'[A-Za-z]+)?",\n ... lambda mo: mo.group(0)[0].upper() +\n ... mo.group(0)[1:].lower(),\n ... s)\n ...\n >>> titlecase("they\'re bill\'s friends.")\n "They\'re Bill\'s Friends."\n\nstr.translate(map)\n\n Return a copy of the *s* where all characters have been mapped\n through the *map* which must be a dictionary of Unicode ordinals\n (integers) to Unicode ordinals, strings or "None". Unmapped\n characters are left untouched. Characters mapped to "None" are\n deleted.\n\n You can use "str.maketrans()" to create a translation map from\n character-to-character mappings in different formats.\n\n Note: An even more flexible approach is to create a custom\n character mapping codec using the "codecs" module (see\n "encodings.cp1251" for an example).\n\nstr.upper()\n\n Return a copy of the string with all the cased characters [4]\n converted to uppercase. Note that "str.upper().isupper()" might be\n "False" if "s" contains uncased characters or if the Unicode\n category of the resulting character(s) is not "Lu" (Letter,\n uppercase), but e.g. "Lt" (Letter, titlecase).\n\n The uppercasing algorithm used is described in section 3.13 of the\n Unicode Standard.\n\nstr.zfill(width)\n\n Return a copy of the string left filled with ASCII "\'0\'" digits to\n make a string of length *width*. A leading sign prefix\n ("\'+\'"/"\'-\'") is handled by inserting the padding *after* the sign\n character rather than before. The original string is returned if\n *width* is less than or equal to "len(s)".\n\n For example:\n\n >>> "42".zfill(5)\n \'00042\'\n >>> "-42".zfill(5)\n \'-0042\'\n', + 'specialnames': u'\nSpecial method names\n********************\n\nA class can implement certain operations that are invoked by special\nsyntax (such as arithmetic operations or subscripting and slicing) by\ndefining methods with special names. This is Python\'s approach to\n*operator overloading*, allowing classes to define their own behavior\nwith respect to language operators. For instance, if a class defines\na method named "__getitem__()", and "x" is an instance of this class,\nthen "x[i]" is roughly equivalent to "type(x).__getitem__(x, i)".\nExcept where mentioned, attempts to execute an operation raise an\nexception when no appropriate method is defined (typically\n"AttributeError" or "TypeError").\n\nWhen implementing a class that emulates any built-in type, it is\nimportant that the emulation only be implemented to the degree that it\nmakes sense for the object being modelled. For example, some\nsequences may work well with retrieval of individual elements, but\nextracting a slice may not make sense. (One example of this is the\n"NodeList" interface in the W3C\'s Document Object Model.)\n\n\nBasic customization\n===================\n\nobject.__new__(cls[, ...])\n\n Called to create a new instance of class *cls*. "__new__()" is a\n static method (special-cased so you need not declare it as such)\n that takes the class of which an instance was requested as its\n first argument. The remaining arguments are those passed to the\n object constructor expression (the call to the class). The return\n value of "__new__()" should be the new object instance (usually an\n instance of *cls*).\n\n Typical implementations create a new instance of the class by\n invoking the superclass\'s "__new__()" method using\n "super(currentclass, cls).__new__(cls[, ...])" with appropriate\n arguments and then modifying the newly-created instance as\n necessary before returning it.\n\n If "__new__()" returns an instance of *cls*, then the new\n instance\'s "__init__()" method will be invoked like\n "__init__(self[, ...])", where *self* is the new instance and the\n remaining arguments are the same as were passed to "__new__()".\n\n If "__new__()" does not return an instance of *cls*, then the new\n instance\'s "__init__()" method will not be invoked.\n\n "__new__()" is intended mainly to allow subclasses of immutable\n types (like int, str, or tuple) to customize instance creation. It\n is also commonly overridden in custom metaclasses in order to\n customize class creation.\n\nobject.__init__(self[, ...])\n\n Called after the instance has been created (by "__new__()"), but\n before it is returned to the caller. The arguments are those\n passed to the class constructor expression. If a base class has an\n "__init__()" method, the derived class\'s "__init__()" method, if\n any, must explicitly call it to ensure proper initialization of the\n base class part of the instance; for example:\n "BaseClass.__init__(self, [args...])".\n\n Because "__new__()" and "__init__()" work together in constructing\n objects ("__new__()" to create it, and "__init__()" to customise\n it), no non-"None" value may be returned by "__init__()"; doing so\n will cause a "TypeError" to be raised at runtime.\n\nobject.__del__(self)\n\n Called when the instance is about to be destroyed. This is also\n called a destructor. If a base class has a "__del__()" method, the\n derived class\'s "__del__()" method, if any, must explicitly call it\n to ensure proper deletion of the base class part of the instance.\n Note that it is possible (though not recommended!) for the\n "__del__()" method to postpone destruction of the instance by\n creating a new reference to it. It may then be called at a later\n time when this new reference is deleted. It is not guaranteed that\n "__del__()" methods are called for objects that still exist when\n the interpreter exits.\n\n Note: "del x" doesn\'t directly call "x.__del__()" --- the former\n decrements the reference count for "x" by one, and the latter is\n only called when "x"\'s reference count reaches zero. Some common\n situations that may prevent the reference count of an object from\n going to zero include: circular references between objects (e.g.,\n a doubly-linked list or a tree data structure with parent and\n child pointers); a reference to the object on the stack frame of\n a function that caught an exception (the traceback stored in\n "sys.exc_info()[2]" keeps the stack frame alive); or a reference\n to the object on the stack frame that raised an unhandled\n exception in interactive mode (the traceback stored in\n "sys.last_traceback" keeps the stack frame alive). The first\n situation can only be remedied by explicitly breaking the cycles;\n the second can be resolved by freeing the reference to the\n traceback object when it is no longer useful, and the third can\n be resolved by storing "None" in "sys.last_traceback". Circular\n references which are garbage are detected and cleaned up when the\n cyclic garbage collector is enabled (it\'s on by default). Refer\n to the documentation for the "gc" module for more information\n about this topic.\n\n Warning: Due to the precarious circumstances under which\n "__del__()" methods are invoked, exceptions that occur during\n their execution are ignored, and a warning is printed to\n "sys.stderr" instead. Also, when "__del__()" is invoked in\n response to a module being deleted (e.g., when execution of the\n program is done), other globals referenced by the "__del__()"\n method may already have been deleted or in the process of being\n torn down (e.g. the import machinery shutting down). For this\n reason, "__del__()" methods should do the absolute minimum needed\n to maintain external invariants. Starting with version 1.5,\n Python guarantees that globals whose name begins with a single\n underscore are deleted from their module before other globals are\n deleted; if no other references to such globals exist, this may\n help in assuring that imported modules are still available at the\n time when the "__del__()" method is called.\n\nobject.__repr__(self)\n\n Called by the "repr()" built-in function to compute the "official"\n string representation of an object. If at all possible, this\n should look like a valid Python expression that could be used to\n recreate an object with the same value (given an appropriate\n environment). If this is not possible, a string of the form\n "<...some useful description...>" should be returned. The return\n value must be a string object. If a class defines "__repr__()" but\n not "__str__()", then "__repr__()" is also used when an "informal"\n string representation of instances of that class is required.\n\n This is typically used for debugging, so it is important that the\n representation is information-rich and unambiguous.\n\nobject.__str__(self)\n\n Called by "str(object)" and the built-in functions "format()" and\n "print()" to compute the "informal" or nicely printable string\n representation of an object. The return value must be a *string*\n object.\n\n This method differs from "object.__repr__()" in that there is no\n expectation that "__str__()" return a valid Python expression: a\n more convenient or concise representation can be used.\n\n The default implementation defined by the built-in type "object"\n calls "object.__repr__()".\n\nobject.__bytes__(self)\n\n Called by "bytes()" to compute a byte-string representation of an\n object. This should return a "bytes" object.\n\nobject.__format__(self, format_spec)\n\n Called by the "format()" built-in function (and by extension, the\n "str.format()" method of class "str") to produce a "formatted"\n string representation of an object. The "format_spec" argument is a\n string that contains a description of the formatting options\n desired. The interpretation of the "format_spec" argument is up to\n the type implementing "__format__()", however most classes will\n either delegate formatting to one of the built-in types, or use a\n similar formatting option syntax.\n\n See *Format Specification Mini-Language* for a description of the\n standard formatting syntax.\n\n The return value must be a string object.\n\n Changed in version 3.4: The __format__ method of "object" itself\n raises a "TypeError" if passed any non-empty string.\n\nobject.__lt__(self, other)\nobject.__le__(self, other)\nobject.__eq__(self, other)\nobject.__ne__(self, other)\nobject.__gt__(self, other)\nobject.__ge__(self, other)\n\n These are the so-called "rich comparison" methods. The\n correspondence between operator symbols and method names is as\n follows: "xy" calls\n "x.__gt__(y)", and "x>=y" calls "x.__ge__(y)".\n\n A rich comparison method may return the singleton "NotImplemented"\n if it does not implement the operation for a given pair of\n arguments. By convention, "False" and "True" are returned for a\n successful comparison. However, these methods can return any value,\n so if the comparison operator is used in a Boolean context (e.g.,\n in the condition of an "if" statement), Python will call "bool()"\n on the value to determine if the result is true or false.\n\n There are no implied relationships among the comparison operators.\n The truth of "x==y" does not imply that "x!=y" is false.\n Accordingly, when defining "__eq__()", one should also define\n "__ne__()" so that the operators will behave as expected. See the\n paragraph on "__hash__()" for some important notes on creating\n *hashable* objects which support custom comparison operations and\n are usable as dictionary keys.\n\n There are no swapped-argument versions of these methods (to be used\n when the left argument does not support the operation but the right\n argument does); rather, "__lt__()" and "__gt__()" are each other\'s\n reflection, "__le__()" and "__ge__()" are each other\'s reflection,\n and "__eq__()" and "__ne__()" are their own reflection.\n\n Arguments to rich comparison methods are never coerced.\n\n To automatically generate ordering operations from a single root\n operation, see "functools.total_ordering()".\n\nobject.__hash__(self)\n\n Called by built-in function "hash()" and for operations on members\n of hashed collections including "set", "frozenset", and "dict".\n "__hash__()" should return an integer. The only required property\n is that objects which compare equal have the same hash value; it is\n advised to somehow mix together (e.g. using exclusive or) the hash\n values for the components of the object that also play a part in\n comparison of objects.\n\n Note: "hash()" truncates the value returned from an object\'s\n custom "__hash__()" method to the size of a "Py_ssize_t". This\n is typically 8 bytes on 64-bit builds and 4 bytes on 32-bit\n builds. If an object\'s "__hash__()" must interoperate on builds\n of different bit sizes, be sure to check the width on all\n supported builds. An easy way to do this is with "python -c\n "import sys; print(sys.hash_info.width)""\n\n If a class does not define an "__eq__()" method it should not\n define a "__hash__()" operation either; if it defines "__eq__()"\n but not "__hash__()", its instances will not be usable as items in\n hashable collections. If a class defines mutable objects and\n implements an "__eq__()" method, it should not implement\n "__hash__()", since the implementation of hashable collections\n requires that a key\'s hash value is immutable (if the object\'s hash\n value changes, it will be in the wrong hash bucket).\n\n User-defined classes have "__eq__()" and "__hash__()" methods by\n default; with them, all objects compare unequal (except with\n themselves) and "x.__hash__()" returns an appropriate value such\n that "x == y" implies both that "x is y" and "hash(x) == hash(y)".\n\n A class that overrides "__eq__()" and does not define "__hash__()"\n will have its "__hash__()" implicitly set to "None". When the\n "__hash__()" method of a class is "None", instances of the class\n will raise an appropriate "TypeError" when a program attempts to\n retrieve their hash value, and will also be correctly identified as\n unhashable when checking "isinstance(obj, collections.Hashable").\n\n If a class that overrides "__eq__()" needs to retain the\n implementation of "__hash__()" from a parent class, the interpreter\n must be told this explicitly by setting "__hash__ =\n .__hash__".\n\n If a class that does not override "__eq__()" wishes to suppress\n hash support, it should include "__hash__ = None" in the class\n definition. A class which defines its own "__hash__()" that\n explicitly raises a "TypeError" would be incorrectly identified as\n hashable by an "isinstance(obj, collections.Hashable)" call.\n\n Note: By default, the "__hash__()" values of str, bytes and\n datetime objects are "salted" with an unpredictable random value.\n Although they remain constant within an individual Python\n process, they are not predictable between repeated invocations of\n Python.This is intended to provide protection against a denial-\n of-service caused by carefully-chosen inputs that exploit the\n worst case performance of a dict insertion, O(n^2) complexity.\n See http://www.ocert.org/advisories/ocert-2011-003.html for\n details.Changing hash values affects the iteration order of\n dicts, sets and other mappings. Python has never made guarantees\n about this ordering (and it typically varies between 32-bit and\n 64-bit builds).See also "PYTHONHASHSEED".\n\n Changed in version 3.3: Hash randomization is enabled by default.\n\nobject.__bool__(self)\n\n Called to implement truth value testing and the built-in operation\n "bool()"; should return "False" or "True". When this method is not\n defined, "__len__()" is called, if it is defined, and the object is\n considered true if its result is nonzero. If a class defines\n neither "__len__()" nor "__bool__()", all its instances are\n considered true.\n\n\nCustomizing attribute access\n============================\n\nThe following methods can be defined to customize the meaning of\nattribute access (use of, assignment to, or deletion of "x.name") for\nclass instances.\n\nobject.__getattr__(self, name)\n\n Called when an attribute lookup has not found the attribute in the\n usual places (i.e. it is not an instance attribute nor is it found\n in the class tree for "self"). "name" is the attribute name. This\n method should return the (computed) attribute value or raise an\n "AttributeError" exception.\n\n Note that if the attribute is found through the normal mechanism,\n "__getattr__()" is not called. (This is an intentional asymmetry\n between "__getattr__()" and "__setattr__()".) This is done both for\n efficiency reasons and because otherwise "__getattr__()" would have\n no way to access other attributes of the instance. Note that at\n least for instance variables, you can fake total control by not\n inserting any values in the instance attribute dictionary (but\n instead inserting them in another object). See the\n "__getattribute__()" method below for a way to actually get total\n control over attribute access.\n\nobject.__getattribute__(self, name)\n\n Called unconditionally to implement attribute accesses for\n instances of the class. If the class also defines "__getattr__()",\n the latter will not be called unless "__getattribute__()" either\n calls it explicitly or raises an "AttributeError". This method\n should return the (computed) attribute value or raise an\n "AttributeError" exception. In order to avoid infinite recursion in\n this method, its implementation should always call the base class\n method with the same name to access any attributes it needs, for\n example, "object.__getattribute__(self, name)".\n\n Note: This method may still be bypassed when looking up special\n methods as the result of implicit invocation via language syntax\n or built-in functions. See *Special method lookup*.\n\nobject.__setattr__(self, name, value)\n\n Called when an attribute assignment is attempted. This is called\n instead of the normal mechanism (i.e. store the value in the\n instance dictionary). *name* is the attribute name, *value* is the\n value to be assigned to it.\n\n If "__setattr__()" wants to assign to an instance attribute, it\n should call the base class method with the same name, for example,\n "object.__setattr__(self, name, value)".\n\nobject.__delattr__(self, name)\n\n Like "__setattr__()" but for attribute deletion instead of\n assignment. This should only be implemented if "del obj.name" is\n meaningful for the object.\n\nobject.__dir__(self)\n\n Called when "dir()" is called on the object. A sequence must be\n returned. "dir()" converts the returned sequence to a list and\n sorts it.\n\n\nImplementing Descriptors\n------------------------\n\nThe following methods only apply when an instance of the class\ncontaining the method (a so-called *descriptor* class) appears in an\n*owner* class (the descriptor must be in either the owner\'s class\ndictionary or in the class dictionary for one of its parents). In the\nexamples below, "the attribute" refers to the attribute whose name is\nthe key of the property in the owner class\' "__dict__".\n\nobject.__get__(self, instance, owner)\n\n Called to get the attribute of the owner class (class attribute\n access) or of an instance of that class (instance attribute\n access). *owner* is always the owner class, while *instance* is the\n instance that the attribute was accessed through, or "None" when\n the attribute is accessed through the *owner*. This method should\n return the (computed) attribute value or raise an "AttributeError"\n exception.\n\nobject.__set__(self, instance, value)\n\n Called to set the attribute on an instance *instance* of the owner\n class to a new value, *value*.\n\nobject.__delete__(self, instance)\n\n Called to delete the attribute on an instance *instance* of the\n owner class.\n\nThe attribute "__objclass__" is interpreted by the "inspect" module as\nspecifying the class where this object was defined (setting this\nappropriately can assist in runtime introspection of dynamic class\nattributes). For callables, it may indicate that an instance of the\ngiven type (or a subclass) is expected or required as the first\npositional argument (for example, CPython sets this attribute for\nunbound methods that are implemented in C).\n\n\nInvoking Descriptors\n--------------------\n\nIn general, a descriptor is an object attribute with "binding\nbehavior", one whose attribute access has been overridden by methods\nin the descriptor protocol: "__get__()", "__set__()", and\n"__delete__()". If any of those methods are defined for an object, it\nis said to be a descriptor.\n\nThe default behavior for attribute access is to get, set, or delete\nthe attribute from an object\'s dictionary. For instance, "a.x" has a\nlookup chain starting with "a.__dict__[\'x\']", then\n"type(a).__dict__[\'x\']", and continuing through the base classes of\n"type(a)" excluding metaclasses.\n\nHowever, if the looked-up value is an object defining one of the\ndescriptor methods, then Python may override the default behavior and\ninvoke the descriptor method instead. Where this occurs in the\nprecedence chain depends on which descriptor methods were defined and\nhow they were called.\n\nThe starting point for descriptor invocation is a binding, "a.x". How\nthe arguments are assembled depends on "a":\n\nDirect Call\n The simplest and least common call is when user code directly\n invokes a descriptor method: "x.__get__(a)".\n\nInstance Binding\n If binding to an object instance, "a.x" is transformed into the\n call: "type(a).__dict__[\'x\'].__get__(a, type(a))".\n\nClass Binding\n If binding to a class, "A.x" is transformed into the call:\n "A.__dict__[\'x\'].__get__(None, A)".\n\nSuper Binding\n If "a" is an instance of "super", then the binding "super(B,\n obj).m()" searches "obj.__class__.__mro__" for the base class "A"\n immediately preceding "B" and then invokes the descriptor with the\n call: "A.__dict__[\'m\'].__get__(obj, obj.__class__)".\n\nFor instance bindings, the precedence of descriptor invocation depends\non the which descriptor methods are defined. A descriptor can define\nany combination of "__get__()", "__set__()" and "__delete__()". If it\ndoes not define "__get__()", then accessing the attribute will return\nthe descriptor object itself unless there is a value in the object\'s\ninstance dictionary. If the descriptor defines "__set__()" and/or\n"__delete__()", it is a data descriptor; if it defines neither, it is\na non-data descriptor. Normally, data descriptors define both\n"__get__()" and "__set__()", while non-data descriptors have just the\n"__get__()" method. Data descriptors with "__set__()" and "__get__()"\ndefined always override a redefinition in an instance dictionary. In\ncontrast, non-data descriptors can be overridden by instances.\n\nPython methods (including "staticmethod()" and "classmethod()") are\nimplemented as non-data descriptors. Accordingly, instances can\nredefine and override methods. This allows individual instances to\nacquire behaviors that differ from other instances of the same class.\n\nThe "property()" function is implemented as a data descriptor.\nAccordingly, instances cannot override the behavior of a property.\n\n\n__slots__\n---------\n\nBy default, instances of classes have a dictionary for attribute\nstorage. This wastes space for objects having very few instance\nvariables. The space consumption can become acute when creating large\nnumbers of instances.\n\nThe default can be overridden by defining *__slots__* in a class\ndefinition. The *__slots__* declaration takes a sequence of instance\nvariables and reserves just enough space in each instance to hold a\nvalue for each variable. Space is saved because *__dict__* is not\ncreated for each instance.\n\nobject.__slots__\n\n This class variable can be assigned a string, iterable, or sequence\n of strings with variable names used by instances. *__slots__*\n reserves space for the declared variables and prevents the\n automatic creation of *__dict__* and *__weakref__* for each\n instance.\n\n\nNotes on using *__slots__*\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n* When inheriting from a class without *__slots__*, the *__dict__*\n attribute of that class will always be accessible, so a *__slots__*\n definition in the subclass is meaningless.\n\n* Without a *__dict__* variable, instances cannot be assigned new\n variables not listed in the *__slots__* definition. Attempts to\n assign to an unlisted variable name raises "AttributeError". If\n dynamic assignment of new variables is desired, then add\n "\'__dict__\'" to the sequence of strings in the *__slots__*\n declaration.\n\n* Without a *__weakref__* variable for each instance, classes\n defining *__slots__* do not support weak references to its\n instances. If weak reference support is needed, then add\n "\'__weakref__\'" to the sequence of strings in the *__slots__*\n declaration.\n\n* *__slots__* are implemented at the class level by creating\n descriptors (*Implementing Descriptors*) for each variable name. As\n a result, class attributes cannot be used to set default values for\n instance variables defined by *__slots__*; otherwise, the class\n attribute would overwrite the descriptor assignment.\n\n* The action of a *__slots__* declaration is limited to the class\n where it is defined. As a result, subclasses will have a *__dict__*\n unless they also define *__slots__* (which must only contain names\n of any *additional* slots).\n\n* If a class defines a slot also defined in a base class, the\n instance variable defined by the base class slot is inaccessible\n (except by retrieving its descriptor directly from the base class).\n This renders the meaning of the program undefined. In the future, a\n check may be added to prevent this.\n\n* Nonempty *__slots__* does not work for classes derived from\n "variable-length" built-in types such as "int", "bytes" and "tuple".\n\n* Any non-string iterable may be assigned to *__slots__*. Mappings\n may also be used; however, in the future, special meaning may be\n assigned to the values corresponding to each key.\n\n* *__class__* assignment works only if both classes have the same\n *__slots__*.\n\n\nCustomizing class creation\n==========================\n\nBy default, classes are constructed using "type()". The class body is\nexecuted in a new namespace and the class name is bound locally to the\nresult of "type(name, bases, namespace)".\n\nThe class creation process can be customised by passing the\n"metaclass" keyword argument in the class definition line, or by\ninheriting from an existing class that included such an argument. In\nthe following example, both "MyClass" and "MySubclass" are instances\nof "Meta":\n\n class Meta(type):\n pass\n\n class MyClass(metaclass=Meta):\n pass\n\n class MySubclass(MyClass):\n pass\n\nAny other keyword arguments that are specified in the class definition\nare passed through to all metaclass operations described below.\n\nWhen a class definition is executed, the following steps occur:\n\n* the appropriate metaclass is determined\n\n* the class namespace is prepared\n\n* the class body is executed\n\n* the class object is created\n\n\nDetermining the appropriate metaclass\n-------------------------------------\n\nThe appropriate metaclass for a class definition is determined as\nfollows:\n\n* if no bases and no explicit metaclass are given, then "type()" is\n used\n\n* if an explicit metaclass is given and it is *not* an instance of\n "type()", then it is used directly as the metaclass\n\n* if an instance of "type()" is given as the explicit metaclass, or\n bases are defined, then the most derived metaclass is used\n\nThe most derived metaclass is selected from the explicitly specified\nmetaclass (if any) and the metaclasses (i.e. "type(cls)") of all\nspecified base classes. The most derived metaclass is one which is a\nsubtype of *all* of these candidate metaclasses. If none of the\ncandidate metaclasses meets that criterion, then the class definition\nwill fail with "TypeError".\n\n\nPreparing the class namespace\n-----------------------------\n\nOnce the appropriate metaclass has been identified, then the class\nnamespace is prepared. If the metaclass has a "__prepare__" attribute,\nit is called as "namespace = metaclass.__prepare__(name, bases,\n**kwds)" (where the additional keyword arguments, if any, come from\nthe class definition).\n\nIf the metaclass has no "__prepare__" attribute, then the class\nnamespace is initialised as an empty "dict()" instance.\n\nSee also: **PEP 3115** - Metaclasses in Python 3000\n\n Introduced the "__prepare__" namespace hook\n\n\nExecuting the class body\n------------------------\n\nThe class body is executed (approximately) as "exec(body, globals(),\nnamespace)". The key difference from a normal call to "exec()" is that\nlexical scoping allows the class body (including any methods) to\nreference names from the current and outer scopes when the class\ndefinition occurs inside a function.\n\nHowever, even when the class definition occurs inside the function,\nmethods defined inside the class still cannot see names defined at the\nclass scope. Class variables must be accessed through the first\nparameter of instance or class methods, and cannot be accessed at all\nfrom static methods.\n\n\nCreating the class object\n-------------------------\n\nOnce the class namespace has been populated by executing the class\nbody, the class object is created by calling "metaclass(name, bases,\nnamespace, **kwds)" (the additional keywords passed here are the same\nas those passed to "__prepare__").\n\nThis class object is the one that will be referenced by the zero-\nargument form of "super()". "__class__" is an implicit closure\nreference created by the compiler if any methods in a class body refer\nto either "__class__" or "super". This allows the zero argument form\nof "super()" to correctly identify the class being defined based on\nlexical scoping, while the class or instance that was used to make the\ncurrent call is identified based on the first argument passed to the\nmethod.\n\nAfter the class object is created, it is passed to the class\ndecorators included in the class definition (if any) and the resulting\nobject is bound in the local namespace as the defined class.\n\nSee also: **PEP 3135** - New super\n\n Describes the implicit "__class__" closure reference\n\n\nMetaclass example\n-----------------\n\nThe potential uses for metaclasses are boundless. Some ideas that have\nbeen explored include logging, interface checking, automatic\ndelegation, automatic property creation, proxies, frameworks, and\nautomatic resource locking/synchronization.\n\nHere is an example of a metaclass that uses an\n"collections.OrderedDict" to remember the order that class variables\nare defined:\n\n class OrderedClass(type):\n\n @classmethod\n def __prepare__(metacls, name, bases, **kwds):\n return collections.OrderedDict()\n\n def __new__(cls, name, bases, namespace, **kwds):\n result = type.__new__(cls, name, bases, dict(namespace))\n result.members = tuple(namespace)\n return result\n\n class A(metaclass=OrderedClass):\n def one(self): pass\n def two(self): pass\n def three(self): pass\n def four(self): pass\n\n >>> A.members\n (\'__module__\', \'one\', \'two\', \'three\', \'four\')\n\nWhen the class definition for *A* gets executed, the process begins\nwith calling the metaclass\'s "__prepare__()" method which returns an\nempty "collections.OrderedDict". That mapping records the methods and\nattributes of *A* as they are defined within the body of the class\nstatement. Once those definitions are executed, the ordered dictionary\nis fully populated and the metaclass\'s "__new__()" method gets\ninvoked. That method builds the new type and it saves the ordered\ndictionary keys in an attribute called "members".\n\n\nCustomizing instance and subclass checks\n========================================\n\nThe following methods are used to override the default behavior of the\n"isinstance()" and "issubclass()" built-in functions.\n\nIn particular, the metaclass "abc.ABCMeta" implements these methods in\norder to allow the addition of Abstract Base Classes (ABCs) as\n"virtual base classes" to any class or type (including built-in\ntypes), including other ABCs.\n\nclass.__instancecheck__(self, instance)\n\n Return true if *instance* should be considered a (direct or\n indirect) instance of *class*. If defined, called to implement\n "isinstance(instance, class)".\n\nclass.__subclasscheck__(self, subclass)\n\n Return true if *subclass* should be considered a (direct or\n indirect) subclass of *class*. If defined, called to implement\n "issubclass(subclass, class)".\n\nNote that these methods are looked up on the type (metaclass) of a\nclass. They cannot be defined as class methods in the actual class.\nThis is consistent with the lookup of special methods that are called\non instances, only in this case the instance is itself a class.\n\nSee also: **PEP 3119** - Introducing Abstract Base Classes\n\n Includes the specification for customizing "isinstance()" and\n "issubclass()" behavior through "__instancecheck__()" and\n "__subclasscheck__()", with motivation for this functionality in\n the context of adding Abstract Base Classes (see the "abc"\n module) to the language.\n\n\nEmulating callable objects\n==========================\n\nobject.__call__(self[, args...])\n\n Called when the instance is "called" as a function; if this method\n is defined, "x(arg1, arg2, ...)" is a shorthand for\n "x.__call__(arg1, arg2, ...)".\n\n\nEmulating container types\n=========================\n\nThe following methods can be defined to implement container objects.\nContainers usually are sequences (such as lists or tuples) or mappings\n(like dictionaries), but can represent other containers as well. The\nfirst set of methods is used either to emulate a sequence or to\nemulate a mapping; the difference is that for a sequence, the\nallowable keys should be the integers *k* for which "0 <= k < N" where\n*N* is the length of the sequence, or slice objects, which define a\nrange of items. It is also recommended that mappings provide the\nmethods "keys()", "values()", "items()", "get()", "clear()",\n"setdefault()", "pop()", "popitem()", "copy()", and "update()"\nbehaving similar to those for Python\'s standard dictionary objects.\nThe "collections" module provides a "MutableMapping" abstract base\nclass to help create those methods from a base set of "__getitem__()",\n"__setitem__()", "__delitem__()", and "keys()". Mutable sequences\nshould provide methods "append()", "count()", "index()", "extend()",\n"insert()", "pop()", "remove()", "reverse()" and "sort()", like Python\nstandard list objects. Finally, sequence types should implement\naddition (meaning concatenation) and multiplication (meaning\nrepetition) by defining the methods "__add__()", "__radd__()",\n"__iadd__()", "__mul__()", "__rmul__()" and "__imul__()" described\nbelow; they should not define other numerical operators. It is\nrecommended that both mappings and sequences implement the\n"__contains__()" method to allow efficient use of the "in" operator;\nfor mappings, "in" should search the mapping\'s keys; for sequences, it\nshould search through the values. It is further recommended that both\nmappings and sequences implement the "__iter__()" method to allow\nefficient iteration through the container; for mappings, "__iter__()"\nshould be the same as "keys()"; for sequences, it should iterate\nthrough the values.\n\nobject.__len__(self)\n\n Called to implement the built-in function "len()". Should return\n the length of the object, an integer ">=" 0. Also, an object that\n doesn\'t define a "__bool__()" method and whose "__len__()" method\n returns zero is considered to be false in a Boolean context.\n\nobject.__length_hint__(self)\n\n Called to implement "operator.length_hint()". Should return an\n estimated length for the object (which may be greater or less than\n the actual length). The length must be an integer ">=" 0. This\n method is purely an optimization and is never required for\n correctness.\n\n New in version 3.4.\n\nNote: Slicing is done exclusively with the following three methods.\n A call like\n\n a[1:2] = b\n\n is translated to\n\n a[slice(1, 2, None)] = b\n\n and so forth. Missing slice items are always filled in with "None".\n\nobject.__getitem__(self, key)\n\n Called to implement evaluation of "self[key]". For sequence types,\n the accepted keys should be integers and slice objects. Note that\n the special interpretation of negative indexes (if the class wishes\n to emulate a sequence type) is up to the "__getitem__()" method. If\n *key* is of an inappropriate type, "TypeError" may be raised; if of\n a value outside the set of indexes for the sequence (after any\n special interpretation of negative values), "IndexError" should be\n raised. For mapping types, if *key* is missing (not in the\n container), "KeyError" should be raised.\n\n Note: "for" loops expect that an "IndexError" will be raised for\n illegal indexes to allow proper detection of the end of the\n sequence.\n\nobject.__missing__(self, key)\n\n Called by "dict"."__getitem__()" to implement "self[key]" for dict\n subclasses when key is not in the dictionary.\n\nobject.__setitem__(self, key, value)\n\n Called to implement assignment to "self[key]". Same note as for\n "__getitem__()". This should only be implemented for mappings if\n the objects support changes to the values for keys, or if new keys\n can be added, or for sequences if elements can be replaced. The\n same exceptions should be raised for improper *key* values as for\n the "__getitem__()" method.\n\nobject.__delitem__(self, key)\n\n Called to implement deletion of "self[key]". Same note as for\n "__getitem__()". This should only be implemented for mappings if\n the objects support removal of keys, or for sequences if elements\n can be removed from the sequence. The same exceptions should be\n raised for improper *key* values as for the "__getitem__()" method.\n\nobject.__iter__(self)\n\n This method is called when an iterator is required for a container.\n This method should return a new iterator object that can iterate\n over all the objects in the container. For mappings, it should\n iterate over the keys of the container.\n\n Iterator objects also need to implement this method; they are\n required to return themselves. For more information on iterator\n objects, see *Iterator Types*.\n\nobject.__reversed__(self)\n\n Called (if present) by the "reversed()" built-in to implement\n reverse iteration. It should return a new iterator object that\n iterates over all the objects in the container in reverse order.\n\n If the "__reversed__()" method is not provided, the "reversed()"\n built-in will fall back to using the sequence protocol ("__len__()"\n and "__getitem__()"). Objects that support the sequence protocol\n should only provide "__reversed__()" if they can provide an\n implementation that is more efficient than the one provided by\n "reversed()".\n\nThe membership test operators ("in" and "not in") are normally\nimplemented as an iteration through a sequence. However, container\nobjects can supply the following special method with a more efficient\nimplementation, which also does not require the object be a sequence.\n\nobject.__contains__(self, item)\n\n Called to implement membership test operators. Should return true\n if *item* is in *self*, false otherwise. For mapping objects, this\n should consider the keys of the mapping rather than the values or\n the key-item pairs.\n\n For objects that don\'t define "__contains__()", the membership test\n first tries iteration via "__iter__()", then the old sequence\n iteration protocol via "__getitem__()", see *this section in the\n language reference*.\n\n\nEmulating numeric types\n=======================\n\nThe following methods can be defined to emulate numeric objects.\nMethods corresponding to operations that are not supported by the\nparticular kind of number implemented (e.g., bitwise operations for\nnon-integral numbers) should be left undefined.\n\nobject.__add__(self, other)\nobject.__sub__(self, other)\nobject.__mul__(self, other)\nobject.__matmul__(self, other)\nobject.__truediv__(self, other)\nobject.__floordiv__(self, other)\nobject.__mod__(self, other)\nobject.__divmod__(self, other)\nobject.__pow__(self, other[, modulo])\nobject.__lshift__(self, other)\nobject.__rshift__(self, other)\nobject.__and__(self, other)\nobject.__xor__(self, other)\nobject.__or__(self, other)\n\n These methods are called to implement the binary arithmetic\n operations ("+", "-", "*", "@", "/", "//", "%", "divmod()",\n "pow()", "**", "<<", ">>", "&", "^", "|"). For instance, to\n evaluate the expression "x + y", where *x* is an instance of a\n class that has an "__add__()" method, "x.__add__(y)" is called.\n The "__divmod__()" method should be the equivalent to using\n "__floordiv__()" and "__mod__()"; it should not be related to\n "__truediv__()". Note that "__pow__()" should be defined to accept\n an optional third argument if the ternary version of the built-in\n "pow()" function is to be supported.\n\n If one of those methods does not support the operation with the\n supplied arguments, it should return "NotImplemented".\n\nobject.__radd__(self, other)\nobject.__rsub__(self, other)\nobject.__rmul__(self, other)\nobject.__rmatmul__(self, other)\nobject.__rtruediv__(self, other)\nobject.__rfloordiv__(self, other)\nobject.__rmod__(self, other)\nobject.__rdivmod__(self, other)\nobject.__rpow__(self, other)\nobject.__rlshift__(self, other)\nobject.__rrshift__(self, other)\nobject.__rand__(self, other)\nobject.__rxor__(self, other)\nobject.__ror__(self, other)\n\n These methods are called to implement the binary arithmetic\n operations ("+", "-", "*", "@", "/", "//", "%", "divmod()",\n "pow()", "**", "<<", ">>", "&", "^", "|") with reflected (swapped)\n operands. These functions are only called if the left operand does\n not support the corresponding operation and the operands are of\n different types. [2] For instance, to evaluate the expression "x -\n y", where *y* is an instance of a class that has an "__rsub__()"\n method, "y.__rsub__(x)" is called if "x.__sub__(y)" returns\n *NotImplemented*.\n\n Note that ternary "pow()" will not try calling "__rpow__()" (the\n coercion rules would become too complicated).\n\n Note: If the right operand\'s type is a subclass of the left\n operand\'s type and that subclass provides the reflected method\n for the operation, this method will be called before the left\n operand\'s non-reflected method. This behavior allows subclasses\n to override their ancestors\' operations.\n\nobject.__iadd__(self, other)\nobject.__isub__(self, other)\nobject.__imul__(self, other)\nobject.__imatmul__(self, other)\nobject.__itruediv__(self, other)\nobject.__ifloordiv__(self, other)\nobject.__imod__(self, other)\nobject.__ipow__(self, other[, modulo])\nobject.__ilshift__(self, other)\nobject.__irshift__(self, other)\nobject.__iand__(self, other)\nobject.__ixor__(self, other)\nobject.__ior__(self, other)\n\n These methods are called to implement the augmented arithmetic\n assignments ("+=", "-=", "*=", "@=", "/=", "//=", "%=", "**=",\n "<<=", ">>=", "&=", "^=", "|="). These methods should attempt to\n do the operation in-place (modifying *self*) and return the result\n (which could be, but does not have to be, *self*). If a specific\n method is not defined, the augmented assignment falls back to the\n normal methods. For instance, if *x* is an instance of a class\n with an "__iadd__()" method, "x += y" is equivalent to "x =\n x.__iadd__(y)" . Otherwise, "x.__add__(y)" and "y.__radd__(x)" are\n considered, as with the evaluation of "x + y". In certain\n situations, augmented assignment can result in unexpected errors\n (see *Why does a_tuple[i] += [\'item\'] raise an exception when the\n addition works?*), but this behavior is in fact part of the data\n model.\n\nobject.__neg__(self)\nobject.__pos__(self)\nobject.__abs__(self)\nobject.__invert__(self)\n\n Called to implement the unary arithmetic operations ("-", "+",\n "abs()" and "~").\n\nobject.__complex__(self)\nobject.__int__(self)\nobject.__float__(self)\nobject.__round__(self[, n])\n\n Called to implement the built-in functions "complex()", "int()",\n "float()" and "round()". Should return a value of the appropriate\n type.\n\nobject.__index__(self)\n\n Called to implement "operator.index()", and whenever Python needs\n to losslessly convert the numeric object to an integer object (such\n as in slicing, or in the built-in "bin()", "hex()" and "oct()"\n functions). Presence of this method indicates that the numeric\n object is an integer type. Must return an integer.\n\n Note: In order to have a coherent integer type class, when\n "__index__()" is defined "__int__()" should also be defined, and\n both should return the same value.\n\n\nWith Statement Context Managers\n===============================\n\nA *context manager* is an object that defines the runtime context to\nbe established when executing a "with" statement. The context manager\nhandles the entry into, and the exit from, the desired runtime context\nfor the execution of the block of code. Context managers are normally\ninvoked using the "with" statement (described in section *The with\nstatement*), but can also be used by directly invoking their methods.\n\nTypical uses of context managers include saving and restoring various\nkinds of global state, locking and unlocking resources, closing opened\nfiles, etc.\n\nFor more information on context managers, see *Context Manager Types*.\n\nobject.__enter__(self)\n\n Enter the runtime context related to this object. The "with"\n statement will bind this method\'s return value to the target(s)\n specified in the "as" clause of the statement, if any.\n\nobject.__exit__(self, exc_type, exc_value, traceback)\n\n Exit the runtime context related to this object. The parameters\n describe the exception that caused the context to be exited. If the\n context was exited without an exception, all three arguments will\n be "None".\n\n If an exception is supplied, and the method wishes to suppress the\n exception (i.e., prevent it from being propagated), it should\n return a true value. Otherwise, the exception will be processed\n normally upon exit from this method.\n\n Note that "__exit__()" methods should not reraise the passed-in\n exception; this is the caller\'s responsibility.\n\nSee also: **PEP 0343** - The "with" statement\n\n The specification, background, and examples for the Python "with"\n statement.\n\n\nSpecial method lookup\n=====================\n\nFor custom classes, implicit invocations of special methods are only\nguaranteed to work correctly if defined on an object\'s type, not in\nthe object\'s instance dictionary. That behaviour is the reason why\nthe following code raises an exception:\n\n >>> class C:\n ... pass\n ...\n >>> c = C()\n >>> c.__len__ = lambda: 5\n >>> len(c)\n Traceback (most recent call last):\n File "", line 1, in \n TypeError: object of type \'C\' has no len()\n\nThe rationale behind this behaviour lies with a number of special\nmethods such as "__hash__()" and "__repr__()" that are implemented by\nall objects, including type objects. If the implicit lookup of these\nmethods used the conventional lookup process, they would fail when\ninvoked on the type object itself:\n\n >>> 1 .__hash__() == hash(1)\n True\n >>> int.__hash__() == hash(int)\n Traceback (most recent call last):\n File "", line 1, in \n TypeError: descriptor \'__hash__\' of \'int\' object needs an argument\n\nIncorrectly attempting to invoke an unbound method of a class in this\nway is sometimes referred to as \'metaclass confusion\', and is avoided\nby bypassing the instance when looking up special methods:\n\n >>> type(1).__hash__(1) == hash(1)\n True\n >>> type(int).__hash__(int) == hash(int)\n True\n\nIn addition to bypassing any instance attributes in the interest of\ncorrectness, implicit special method lookup generally also bypasses\nthe "__getattribute__()" method even of the object\'s metaclass:\n\n >>> class Meta(type):\n ... def __getattribute__(*args):\n ... print("Metaclass getattribute invoked")\n ... return type.__getattribute__(*args)\n ...\n >>> class C(object, metaclass=Meta):\n ... def __len__(self):\n ... return 10\n ... def __getattribute__(*args):\n ... print("Class getattribute invoked")\n ... return object.__getattribute__(*args)\n ...\n >>> c = C()\n >>> c.__len__() # Explicit lookup via instance\n Class getattribute invoked\n 10\n >>> type(c).__len__(c) # Explicit lookup via type\n Metaclass getattribute invoked\n 10\n >>> len(c) # Implicit lookup\n 10\n\nBypassing the "__getattribute__()" machinery in this fashion provides\nsignificant scope for speed optimisations within the interpreter, at\nthe cost of some flexibility in the handling of special methods (the\nspecial method *must* be set on the class object itself in order to be\nconsistently invoked by the interpreter).\n\n-[ Footnotes ]-\n\n[1] It *is* possible in some cases to change an object\'s type,\n under certain controlled conditions. It generally isn\'t a good\n idea though, since it can lead to some very strange behaviour if\n it is handled incorrectly.\n\n[2] For operands of the same type, it is assumed that if the non-\n reflected method (such as "__add__()") fails the operation is not\n supported, which is why the reflected method is not called.\n', + 'string-methods': u'\nString Methods\n**************\n\nStrings implement all of the *common* sequence operations, along with\nthe additional methods described below.\n\nStrings also support two styles of string formatting, one providing a\nlarge degree of flexibility and customization (see "str.format()",\n*Format String Syntax* and *String Formatting*) and the other based on\nC "printf" style formatting that handles a narrower range of types and\nis slightly harder to use correctly, but is often faster for the cases\nit can handle (*printf-style String Formatting*).\n\nThe *Text Processing Services* section of the standard library covers\na number of other modules that provide various text related utilities\n(including regular expression support in the "re" module).\n\nstr.capitalize()\n\n Return a copy of the string with its first character capitalized\n and the rest lowercased.\n\nstr.casefold()\n\n Return a casefolded copy of the string. Casefolded strings may be\n used for caseless matching.\n\n Casefolding is similar to lowercasing but more aggressive because\n it is intended to remove all case distinctions in a string. For\n example, the German lowercase letter "\'\xdf\'" is equivalent to ""ss"".\n Since it is already lowercase, "lower()" would do nothing to "\'\xdf\'";\n "casefold()" converts it to ""ss"".\n\n The casefolding algorithm is described in section 3.13 of the\n Unicode Standard.\n\n New in version 3.3.\n\nstr.center(width[, fillchar])\n\n Return centered in a string of length *width*. Padding is done\n using the specified *fillchar* (default is an ASCII space). The\n original string is returned if *width* is less than or equal to\n "len(s)".\n\nstr.count(sub[, start[, end]])\n\n Return the number of non-overlapping occurrences of substring *sub*\n in the range [*start*, *end*]. Optional arguments *start* and\n *end* are interpreted as in slice notation.\n\nstr.encode(encoding="utf-8", errors="strict")\n\n Return an encoded version of the string as a bytes object. Default\n encoding is "\'utf-8\'". *errors* may be given to set a different\n error handling scheme. The default for *errors* is "\'strict\'",\n meaning that encoding errors raise a "UnicodeError". Other possible\n values are "\'ignore\'", "\'replace\'", "\'xmlcharrefreplace\'",\n "\'backslashreplace\'" and any other name registered via\n "codecs.register_error()", see section *Error Handlers*. For a list\n of possible encodings, see section *Standard Encodings*.\n\n Changed in version 3.1: Support for keyword arguments added.\n\nstr.endswith(suffix[, start[, end]])\n\n Return "True" if the string ends with the specified *suffix*,\n otherwise return "False". *suffix* can also be a tuple of suffixes\n to look for. With optional *start*, test beginning at that\n position. With optional *end*, stop comparing at that position.\n\nstr.expandtabs(tabsize=8)\n\n Return a copy of the string where all tab characters are replaced\n by one or more spaces, depending on the current column and the\n given tab size. Tab positions occur every *tabsize* characters\n (default is 8, giving tab positions at columns 0, 8, 16 and so on).\n To expand the string, the current column is set to zero and the\n string is examined character by character. If the character is a\n tab ("\\t"), one or more space characters are inserted in the result\n until the current column is equal to the next tab position. (The\n tab character itself is not copied.) If the character is a newline\n ("\\n") or return ("\\r"), it is copied and the current column is\n reset to zero. Any other character is copied unchanged and the\n current column is incremented by one regardless of how the\n character is represented when printed.\n\n >>> \'01\\t012\\t0123\\t01234\'.expandtabs()\n \'01 012 0123 01234\'\n >>> \'01\\t012\\t0123\\t01234\'.expandtabs(4)\n \'01 012 0123 01234\'\n\nstr.find(sub[, start[, end]])\n\n Return the lowest index in the string where substring *sub* is\n found, such that *sub* is contained in the slice "s[start:end]".\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return "-1" if *sub* is not found.\n\n Note: The "find()" method should be used only if you need to know\n the position of *sub*. To check if *sub* is a substring or not,\n use the "in" operator:\n\n >>> \'Py\' in \'Python\'\n True\n\nstr.format(*args, **kwargs)\n\n Perform a string formatting operation. The string on which this\n method is called can contain literal text or replacement fields\n delimited by braces "{}". Each replacement field contains either\n the numeric index of a positional argument, or the name of a\n keyword argument. Returns a copy of the string where each\n replacement field is replaced with the string value of the\n corresponding argument.\n\n >>> "The sum of 1 + 2 is {0}".format(1+2)\n \'The sum of 1 + 2 is 3\'\n\n See *Format String Syntax* for a description of the various\n formatting options that can be specified in format strings.\n\nstr.format_map(mapping)\n\n Similar to "str.format(**mapping)", except that "mapping" is used\n directly and not copied to a "dict". This is useful if for example\n "mapping" is a dict subclass:\n\n >>> class Default(dict):\n ... def __missing__(self, key):\n ... return key\n ...\n >>> \'{name} was born in {country}\'.format_map(Default(name=\'Guido\'))\n \'Guido was born in country\'\n\n New in version 3.2.\n\nstr.index(sub[, start[, end]])\n\n Like "find()", but raise "ValueError" when the substring is not\n found.\n\nstr.isalnum()\n\n Return true if all characters in the string are alphanumeric and\n there is at least one character, false otherwise. A character "c"\n is alphanumeric if one of the following returns "True":\n "c.isalpha()", "c.isdecimal()", "c.isdigit()", or "c.isnumeric()".\n\nstr.isalpha()\n\n Return true if all characters in the string are alphabetic and\n there is at least one character, false otherwise. Alphabetic\n characters are those characters defined in the Unicode character\n database as "Letter", i.e., those with general category property\n being one of "Lm", "Lt", "Lu", "Ll", or "Lo". Note that this is\n different from the "Alphabetic" property defined in the Unicode\n Standard.\n\nstr.isdecimal()\n\n Return true if all characters in the string are decimal characters\n and there is at least one character, false otherwise. Decimal\n characters are those from general category "Nd". This category\n includes digit characters, and all characters that can be used to\n form decimal-radix numbers, e.g. U+0660, ARABIC-INDIC DIGIT ZERO.\n\nstr.isdigit()\n\n Return true if all characters in the string are digits and there is\n at least one character, false otherwise. Digits include decimal\n characters and digits that need special handling, such as the\n compatibility superscript digits. Formally, a digit is a character\n that has the property value Numeric_Type=Digit or\n Numeric_Type=Decimal.\n\nstr.isidentifier()\n\n Return true if the string is a valid identifier according to the\n language definition, section *Identifiers and keywords*.\n\n Use "keyword.iskeyword()" to test for reserved identifiers such as\n "def" and "class".\n\nstr.islower()\n\n Return true if all cased characters [4] in the string are lowercase\n and there is at least one cased character, false otherwise.\n\nstr.isnumeric()\n\n Return true if all characters in the string are numeric characters,\n and there is at least one character, false otherwise. Numeric\n characters include digit characters, and all characters that have\n the Unicode numeric value property, e.g. U+2155, VULGAR FRACTION\n ONE FIFTH. Formally, numeric characters are those with the\n property value Numeric_Type=Digit, Numeric_Type=Decimal or\n Numeric_Type=Numeric.\n\nstr.isprintable()\n\n Return true if all characters in the string are printable or the\n string is empty, false otherwise. Nonprintable characters are\n those characters defined in the Unicode character database as\n "Other" or "Separator", excepting the ASCII space (0x20) which is\n considered printable. (Note that printable characters in this\n context are those which should not be escaped when "repr()" is\n invoked on a string. It has no bearing on the handling of strings\n written to "sys.stdout" or "sys.stderr".)\n\nstr.isspace()\n\n Return true if there are only whitespace characters in the string\n and there is at least one character, false otherwise. Whitespace\n characters are those characters defined in the Unicode character\n database as "Other" or "Separator" and those with bidirectional\n property being one of "WS", "B", or "S".\n\nstr.istitle()\n\n Return true if the string is a titlecased string and there is at\n least one character, for example uppercase characters may only\n follow uncased characters and lowercase characters only cased ones.\n Return false otherwise.\n\nstr.isupper()\n\n Return true if all cased characters [4] in the string are uppercase\n and there is at least one cased character, false otherwise.\n\nstr.join(iterable)\n\n Return a string which is the concatenation of the strings in the\n *iterable* *iterable*. A "TypeError" will be raised if there are\n any non-string values in *iterable*, including "bytes" objects.\n The separator between elements is the string providing this method.\n\nstr.ljust(width[, fillchar])\n\n Return the string left justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is an ASCII\n space). The original string is returned if *width* is less than or\n equal to "len(s)".\n\nstr.lower()\n\n Return a copy of the string with all the cased characters [4]\n converted to lowercase.\n\n The lowercasing algorithm used is described in section 3.13 of the\n Unicode Standard.\n\nstr.lstrip([chars])\n\n Return a copy of the string with leading characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or "None", the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a prefix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.lstrip()\n \'spacious \'\n >>> \'www.example.com\'.lstrip(\'cmowz.\')\n \'example.com\'\n\nstatic str.maketrans(x[, y[, z]])\n\n This static method returns a translation table usable for\n "str.translate()".\n\n If there is only one argument, it must be a dictionary mapping\n Unicode ordinals (integers) or characters (strings of length 1) to\n Unicode ordinals, strings (of arbitrary lengths) or None.\n Character keys will then be converted to ordinals.\n\n If there are two arguments, they must be strings of equal length,\n and in the resulting dictionary, each character in x will be mapped\n to the character at the same position in y. If there is a third\n argument, it must be a string, whose characters will be mapped to\n None in the result.\n\nstr.partition(sep)\n\n Split the string at the first occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing the string itself, followed by\n two empty strings.\n\nstr.replace(old, new[, count])\n\n Return a copy of the string with all occurrences of substring *old*\n replaced by *new*. If the optional argument *count* is given, only\n the first *count* occurrences are replaced.\n\nstr.rfind(sub[, start[, end]])\n\n Return the highest index in the string where substring *sub* is\n found, such that *sub* is contained within "s[start:end]".\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return "-1" on failure.\n\nstr.rindex(sub[, start[, end]])\n\n Like "rfind()" but raises "ValueError" when the substring *sub* is\n not found.\n\nstr.rjust(width[, fillchar])\n\n Return the string right justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is an ASCII\n space). The original string is returned if *width* is less than or\n equal to "len(s)".\n\nstr.rpartition(sep)\n\n Split the string at the last occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing two empty strings, followed by\n the string itself.\n\nstr.rsplit(sep=None, maxsplit=-1)\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit* splits\n are done, the *rightmost* ones. If *sep* is not specified or\n "None", any whitespace string is a separator. Except for splitting\n from the right, "rsplit()" behaves like "split()" which is\n described in detail below.\n\nstr.rstrip([chars])\n\n Return a copy of the string with trailing characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or "None", the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a suffix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.rstrip()\n \' spacious\'\n >>> \'mississippi\'.rstrip(\'ipz\')\n \'mississ\'\n\nstr.split(sep=None, maxsplit=-1)\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit*\n splits are done (thus, the list will have at most "maxsplit+1"\n elements). If *maxsplit* is not specified or "-1", then there is\n no limit on the number of splits (all possible splits are made).\n\n If *sep* is given, consecutive delimiters are not grouped together\n and are deemed to delimit empty strings (for example,\n "\'1,,2\'.split(\',\')" returns "[\'1\', \'\', \'2\']"). The *sep* argument\n may consist of multiple characters (for example,\n "\'1<>2<>3\'.split(\'<>\')" returns "[\'1\', \'2\', \'3\']"). Splitting an\n empty string with a specified separator returns "[\'\']".\n\n For example:\n\n >>> \'1,2,3\'.split(\',\')\n [\'1\', \'2\', \'3\']\n >>> \'1,2,3\'.split(\',\', maxsplit=1)\n [\'1\', \'2,3\']\n >>> \'1,2,,3,\'.split(\',\')\n [\'1\', \'2\', \'\', \'3\', \'\']\n\n If *sep* is not specified or is "None", a different splitting\n algorithm is applied: runs of consecutive whitespace are regarded\n as a single separator, and the result will contain no empty strings\n at the start or end if the string has leading or trailing\n whitespace. Consequently, splitting an empty string or a string\n consisting of just whitespace with a "None" separator returns "[]".\n\n For example:\n\n >>> \'1 2 3\'.split()\n [\'1\', \'2\', \'3\']\n >>> \'1 2 3\'.split(maxsplit=1)\n [\'1\', \'2 3\']\n >>> \' 1 2 3 \'.split()\n [\'1\', \'2\', \'3\']\n\nstr.splitlines([keepends])\n\n Return a list of the lines in the string, breaking at line\n boundaries. This method uses the *universal newlines* approach to\n splitting lines. Line breaks are not included in the resulting list\n unless *keepends* is given and true.\n\n For example:\n\n >>> \'ab c\\n\\nde fg\\rkl\\r\\n\'.splitlines()\n [\'ab c\', \'\', \'de fg\', \'kl\']\n >>> \'ab c\\n\\nde fg\\rkl\\r\\n\'.splitlines(keepends=True)\n [\'ab c\\n\', \'\\n\', \'de fg\\r\', \'kl\\r\\n\']\n\n Unlike "split()" when a delimiter string *sep* is given, this\n method returns an empty list for the empty string, and a terminal\n line break does not result in an extra line:\n\n >>> "".splitlines()\n []\n >>> "One line\\n".splitlines()\n [\'One line\']\n\n For comparison, "split(\'\\n\')" gives:\n\n >>> \'\'.split(\'\\n\')\n [\'\']\n >>> \'Two lines\\n\'.split(\'\\n\')\n [\'Two lines\', \'\']\n\nstr.startswith(prefix[, start[, end]])\n\n Return "True" if string starts with the *prefix*, otherwise return\n "False". *prefix* can also be a tuple of prefixes to look for.\n With optional *start*, test string beginning at that position.\n With optional *end*, stop comparing string at that position.\n\nstr.strip([chars])\n\n Return a copy of the string with the leading and trailing\n characters removed. The *chars* argument is a string specifying the\n set of characters to be removed. If omitted or "None", the *chars*\n argument defaults to removing whitespace. The *chars* argument is\n not a prefix or suffix; rather, all combinations of its values are\n stripped:\n\n >>> \' spacious \'.strip()\n \'spacious\'\n >>> \'www.example.com\'.strip(\'cmowz.\')\n \'example\'\n\nstr.swapcase()\n\n Return a copy of the string with uppercase characters converted to\n lowercase and vice versa. Note that it is not necessarily true that\n "s.swapcase().swapcase() == s".\n\nstr.title()\n\n Return a titlecased version of the string where words start with an\n uppercase character and the remaining characters are lowercase.\n\n For example:\n\n >>> \'Hello world\'.title()\n \'Hello World\'\n\n The algorithm uses a simple language-independent definition of a\n word as groups of consecutive letters. The definition works in\n many contexts but it means that apostrophes in contractions and\n possessives form word boundaries, which may not be the desired\n result:\n\n >>> "they\'re bill\'s friends from the UK".title()\n "They\'Re Bill\'S Friends From The Uk"\n\n A workaround for apostrophes can be constructed using regular\n expressions:\n\n >>> import re\n >>> def titlecase(s):\n ... return re.sub(r"[A-Za-z]+(\'[A-Za-z]+)?",\n ... lambda mo: mo.group(0)[0].upper() +\n ... mo.group(0)[1:].lower(),\n ... s)\n ...\n >>> titlecase("they\'re bill\'s friends.")\n "They\'re Bill\'s Friends."\n\nstr.translate(map)\n\n Return a copy of the *s* where all characters have been mapped\n through the *map* which must be a dictionary of Unicode ordinals\n (integers) to Unicode ordinals, strings or "None". Unmapped\n characters are left untouched. Characters mapped to "None" are\n deleted.\n\n You can use "str.maketrans()" to create a translation map from\n character-to-character mappings in different formats.\n\n Note: An even more flexible approach is to create a custom\n character mapping codec using the "codecs" module (see\n "encodings.cp1251" for an example).\n\nstr.upper()\n\n Return a copy of the string with all the cased characters [4]\n converted to uppercase. Note that "str.upper().isupper()" might be\n "False" if "s" contains uncased characters or if the Unicode\n category of the resulting character(s) is not "Lu" (Letter,\n uppercase), but e.g. "Lt" (Letter, titlecase).\n\n The uppercasing algorithm used is described in section 3.13 of the\n Unicode Standard.\n\nstr.zfill(width)\n\n Return a copy of the string left filled with ASCII "\'0\'" digits to\n make a string of length *width*. A leading sign prefix ("\'+\'"/"\'-\'"\n is handled by inserting the padding *after* the sign character\n rather than before. The original string is returned if *width* is\n less than or equal to "len(s)".\n\n For example:\n\n >>> "42".zfill(5)\n \'00042\'\n >>> "-42".zfill(5)\n \'-0042\'\n', 'strings': u'\nString and Bytes literals\n*************************\n\nString literals are described by the following lexical definitions:\n\n stringliteral ::= [stringprefix](shortstring | longstring)\n stringprefix ::= "r" | "u" | "R" | "U"\n shortstring ::= "\'" shortstringitem* "\'" | \'"\' shortstringitem* \'"\'\n longstring ::= "\'\'\'" longstringitem* "\'\'\'" | \'"""\' longstringitem* \'"""\'\n shortstringitem ::= shortstringchar | stringescapeseq\n longstringitem ::= longstringchar | stringescapeseq\n shortstringchar ::= \n longstringchar ::= \n stringescapeseq ::= "\\" \n\n bytesliteral ::= bytesprefix(shortbytes | longbytes)\n bytesprefix ::= "b" | "B" | "br" | "Br" | "bR" | "BR" | "rb" | "rB" | "Rb" | "RB"\n shortbytes ::= "\'" shortbytesitem* "\'" | \'"\' shortbytesitem* \'"\'\n longbytes ::= "\'\'\'" longbytesitem* "\'\'\'" | \'"""\' longbytesitem* \'"""\'\n shortbytesitem ::= shortbyteschar | bytesescapeseq\n longbytesitem ::= longbyteschar | bytesescapeseq\n shortbyteschar ::= \n longbyteschar ::= \n bytesescapeseq ::= "\\" \n\nOne syntactic restriction not indicated by these productions is that\nwhitespace is not allowed between the "stringprefix" or "bytesprefix"\nand the rest of the literal. The source character set is defined by\nthe encoding declaration; it is UTF-8 if no encoding declaration is\ngiven in the source file; see section *Encoding declarations*.\n\nIn plain English: Both types of literals can be enclosed in matching\nsingle quotes ("\'") or double quotes ("""). They can also be enclosed\nin matching groups of three single or double quotes (these are\ngenerally referred to as *triple-quoted strings*). The backslash\n("\\") character is used to escape characters that otherwise have a\nspecial meaning, such as newline, backslash itself, or the quote\ncharacter.\n\nBytes literals are always prefixed with "\'b\'" or "\'B\'"; they produce\nan instance of the "bytes" type instead of the "str" type. They may\nonly contain ASCII characters; bytes with a numeric value of 128 or\ngreater must be expressed with escapes.\n\nAs of Python 3.3 it is possible again to prefix string literals with a\n"u" prefix to simplify maintenance of dual 2.x and 3.x codebases.\n\nBoth string and bytes literals may optionally be prefixed with a\nletter "\'r\'" or "\'R\'"; such strings are called *raw strings* and treat\nbackslashes as literal characters. As a result, in string literals,\n"\'\\U\'" and "\'\\u\'" escapes in raw strings are not treated specially.\nGiven that Python 2.x\'s raw unicode literals behave differently than\nPython 3.x\'s the "\'ur\'" syntax is not supported.\n\nNew in version 3.3: The "\'rb\'" prefix of raw bytes literals has been\nadded as a synonym of "\'br\'".\n\nNew in version 3.3: Support for the unicode legacy literal\n("u\'value\'") was reintroduced to simplify the maintenance of dual\nPython 2.x and 3.x codebases. See **PEP 414** for more information.\n\nIn triple-quoted literals, unescaped newlines and quotes are allowed\n(and are retained), except that three unescaped quotes in a row\nterminate the literal. (A "quote" is the character used to open the\nliteral, i.e. either "\'" or """.)\n\nUnless an "\'r\'" or "\'R\'" prefix is present, escape sequences in string\nand bytes literals are interpreted according to rules similar to those\nused by Standard C. The recognized escape sequences are:\n\n+-------------------+-----------------------------------+---------+\n| Escape Sequence | Meaning | Notes |\n+===================+===================================+=========+\n| "\\newline" | Backslash and newline ignored | |\n+-------------------+-----------------------------------+---------+\n| "\\\\" | Backslash ("\\") | |\n+-------------------+-----------------------------------+---------+\n| "\\\'" | Single quote ("\'") | |\n+-------------------+-----------------------------------+---------+\n| "\\"" | Double quote (""") | |\n+-------------------+-----------------------------------+---------+\n| "\\a" | ASCII Bell (BEL) | |\n+-------------------+-----------------------------------+---------+\n| "\\b" | ASCII Backspace (BS) | |\n+-------------------+-----------------------------------+---------+\n| "\\f" | ASCII Formfeed (FF) | |\n+-------------------+-----------------------------------+---------+\n| "\\n" | ASCII Linefeed (LF) | |\n+-------------------+-----------------------------------+---------+\n| "\\r" | ASCII Carriage Return (CR) | |\n+-------------------+-----------------------------------+---------+\n| "\\t" | ASCII Horizontal Tab (TAB) | |\n+-------------------+-----------------------------------+---------+\n| "\\v" | ASCII Vertical Tab (VT) | |\n+-------------------+-----------------------------------+---------+\n| "\\ooo" | Character with octal value *ooo* | (1,3) |\n+-------------------+-----------------------------------+---------+\n| "\\xhh" | Character with hex value *hh* | (2,3) |\n+-------------------+-----------------------------------+---------+\n\nEscape sequences only recognized in string literals are:\n\n+-------------------+-----------------------------------+---------+\n| Escape Sequence | Meaning | Notes |\n+===================+===================================+=========+\n| "\\N{name}" | Character named *name* in the | (4) |\n| | Unicode database | |\n+-------------------+-----------------------------------+---------+\n| "\\uxxxx" | Character with 16-bit hex value | (5) |\n| | *xxxx* | |\n+-------------------+-----------------------------------+---------+\n| "\\Uxxxxxxxx" | Character with 32-bit hex value | (6) |\n| | *xxxxxxxx* | |\n+-------------------+-----------------------------------+---------+\n\nNotes:\n\n1. As in Standard C, up to three octal digits are accepted.\n\n2. Unlike in Standard C, exactly two hex digits are required.\n\n3. In a bytes literal, hexadecimal and octal escapes denote the\n byte with the given value. In a string literal, these escapes\n denote a Unicode character with the given value.\n\n4. Changed in version 3.3: Support for name aliases [1] has been\n added.\n\n5. Individual code units which form parts of a surrogate pair can\n be encoded using this escape sequence. Exactly four hex digits are\n required.\n\n6. Any Unicode character can be encoded this way. Exactly eight\n hex digits are required.\n\nUnlike Standard C, all unrecognized escape sequences are left in the\nstring unchanged, i.e., *the backslash is left in the result*. (This\nbehavior is useful when debugging: if an escape sequence is mistyped,\nthe resulting output is more easily recognized as broken.) It is also\nimportant to note that the escape sequences only recognized in string\nliterals fall into the category of unrecognized escapes for bytes\nliterals.\n\nEven in a raw literal, quotes can be escaped with a backslash, but the\nbackslash remains in the result; for example, "r"\\""" is a valid\nstring literal consisting of two characters: a backslash and a double\nquote; "r"\\"" is not a valid string literal (even a raw string cannot\nend in an odd number of backslashes). Specifically, *a raw literal\ncannot end in a single backslash* (since the backslash would escape\nthe following quote character). Note also that a single backslash\nfollowed by a newline is interpreted as those two characters as part\nof the literal, *not* as a line continuation.\n', 'subscriptions': u'\nSubscriptions\n*************\n\nA subscription selects an item of a sequence (string, tuple or list)\nor mapping (dictionary) object:\n\n subscription ::= primary "[" expression_list "]"\n\nThe primary must evaluate to an object that supports subscription\n(lists or dictionaries for example). User-defined objects can support\nsubscription by defining a "__getitem__()" method.\n\nFor built-in objects, there are two types of objects that support\nsubscription:\n\nIf the primary is a mapping, the expression list must evaluate to an\nobject whose value is one of the keys of the mapping, and the\nsubscription selects the value in the mapping that corresponds to that\nkey. (The expression list is a tuple except if it has exactly one\nitem.)\n\nIf the primary is a sequence, the expression (list) must evaluate to\nan integer or a slice (as discussed in the following section).\n\nThe formal syntax makes no special provision for negative indices in\nsequences; however, built-in sequences all provide a "__getitem__()"\nmethod that interprets negative indices by adding the length of the\nsequence to the index (so that "x[-1]" selects the last item of "x").\nThe resulting value must be a nonnegative integer less than the number\nof items in the sequence, and the subscription selects the item whose\nindex is that value (counting from zero). Since the support for\nnegative indices and slicing occurs in the object\'s "__getitem__()"\nmethod, subclasses overriding this method will need to explicitly add\nthat support.\n\nA string\'s items are characters. A character is not a separate data\ntype but a string of exactly one character.\n', 'truth': u'\nTruth Value Testing\n*******************\n\nAny object can be tested for truth value, for use in an "if" or\n"while" condition or as operand of the Boolean operations below. The\nfollowing values are considered false:\n\n* "None"\n\n* "False"\n\n* zero of any numeric type, for example, "0", "0.0", "0j".\n\n* any empty sequence, for example, "\'\'", "()", "[]".\n\n* any empty mapping, for example, "{}".\n\n* instances of user-defined classes, if the class defines a\n "__bool__()" or "__len__()" method, when that method returns the\n integer zero or "bool" value "False". [1]\n\nAll other values are considered true --- so objects of many types are\nalways true.\n\nOperations and built-in functions that have a Boolean result always\nreturn "0" or "False" for false and "1" or "True" for true, unless\notherwise stated. (Important exception: the Boolean operations "or"\nand "and" always return one of their operands.)\n', diff --git a/Lib/runpy.py b/Lib/runpy.py --- a/Lib/runpy.py +++ b/Lib/runpy.py @@ -58,7 +58,7 @@ self.value = self._sentinel sys.argv[0] = self._saved_value -# TODO: Replace these helpers with importlib._bootstrap functions +# TODO: Replace these helpers with importlib._bootstrap_external functions. def _run_code(code, run_globals, init_globals=None, mod_name=None, mod_spec=None, pkg_name=None, script_name=None): diff --git a/Lib/site.py b/Lib/site.py --- a/Lib/site.py +++ b/Lib/site.py @@ -98,8 +98,8 @@ def abs_paths(): """Set all module __file__ and __cached__ attributes to an absolute path""" for m in set(sys.modules.values()): - if (getattr(getattr(m, '__loader__', None), '__module__', None) != - '_frozen_importlib'): + if (getattr(getattr(m, '__loader__', None), '__module__', None) not in + ('_frozen_importlib', '_frozen_importlib_external')): continue # don't mess with a PEP 302-supplied __file__ try: m.__file__ = os.path.abspath(m.__file__) diff --git a/Lib/symtable.py b/Lib/symtable.py --- a/Lib/symtable.py +++ b/Lib/symtable.py @@ -2,7 +2,7 @@ import _symtable from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM, - DEF_IMPORT, DEF_BOUND, SCOPE_OFF, SCOPE_MASK, FREE, + DEF_IMPORT, DEF_BOUND, OPT_IMPORT_STAR, SCOPE_OFF, SCOPE_MASK, FREE, LOCAL, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL) import weakref @@ -74,7 +74,8 @@ return self._table.lineno def is_optimized(self): - return bool(self._table.type == _symtable.TYPE_FUNCTION) + return bool(self._table.type == _symtable.TYPE_FUNCTION + and not self._table.optimized) def is_nested(self): return bool(self._table.nested) @@ -86,6 +87,10 @@ """Return true if the scope uses exec. Deprecated method.""" return False + def has_import_star(self): + """Return true if the scope uses import *""" + return bool(self._table.optimized & OPT_IMPORT_STAR) + def get_identifiers(self): return self._table.symbols.keys() diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py --- a/Lib/test/_test_multiprocessing.py +++ b/Lib/test/_test_multiprocessing.py @@ -1799,23 +1799,17 @@ it = self.pool.imap_unordered(sqr, exception_throwing_generator(10, 3), 1) - expected_values = list(map(sqr, list(range(10)))) with self.assertRaises(SayWhenError): # imap_unordered makes it difficult to anticipate the SayWhenError for i in range(10): - value = next(it) - self.assertIn(value, expected_values) - expected_values.remove(value) + self.assertEqual(next(it), i*i) it = self.pool.imap_unordered(sqr, exception_throwing_generator(20, 7), 2) - expected_values = list(map(sqr, list(range(20)))) with self.assertRaises(SayWhenError): for i in range(20): - value = next(it) - self.assertIn(value, expected_values) - expected_values.remove(value) + self.assertEqual(next(it), i*i) def test_make_pool(self): self.assertRaises(ValueError, multiprocessing.Pool, -1) diff --git a/Lib/test/test_asyncio/test_queues.py b/Lib/test/test_asyncio/test_queues.py --- a/Lib/test/test_asyncio/test_queues.py +++ b/Lib/test/test_asyncio/test_queues.py @@ -408,16 +408,14 @@ self.assertEqual([1, 2, 3], items) -class _QueueJoinTestMixin: - - q_class = None +class QueueJoinTests(_QueueTestBase): def test_task_done_underflow(self): - q = self.q_class(loop=self.loop) + q = asyncio.Queue(loop=self.loop) self.assertRaises(ValueError, q.task_done) def test_task_done(self): - q = self.q_class(loop=self.loop) + q = asyncio.Queue(loop=self.loop) for i in range(100): q.put_nowait(i) @@ -454,7 +452,7 @@ self.loop.run_until_complete(asyncio.wait(tasks, loop=self.loop)) def test_join_empty_queue(self): - q = self.q_class(loop=self.loop) + q = asyncio.Queue(loop=self.loop) # Test that a queue join()s successfully, and before anything else # (done twice for insurance). @@ -467,24 +465,12 @@ self.loop.run_until_complete(join()) def test_format(self): - q = self.q_class(loop=self.loop) + q = asyncio.Queue(loop=self.loop) self.assertEqual(q._format(), 'maxsize=0') q._unfinished_tasks = 2 self.assertEqual(q._format(), 'maxsize=0 tasks=2') -class QueueJoinTests(_QueueJoinTestMixin, _QueueTestBase): - q_class = asyncio.Queue - - -class LifoQueueJoinTests(_QueueJoinTestMixin, _QueueTestBase): - q_class = asyncio.LifoQueue - - -class PriorityQueueJoinTests(_QueueJoinTestMixin, _QueueTestBase): - q_class = asyncio.PriorityQueue - - if __name__ == '__main__': unittest.main() diff --git a/Lib/test/test_binascii.py b/Lib/test/test_binascii.py --- a/Lib/test/test_binascii.py +++ b/Lib/test/test_binascii.py @@ -135,18 +135,6 @@ # Issue #7701 (crash on a pydebug build) self.assertEqual(binascii.b2a_uu(b'x'), b'!> \n') - def test_crc_hqx(self): - crc = binascii.crc_hqx(self.type2test(b"Test the CRC-32 of"), 0) - crc = binascii.crc_hqx(self.type2test(b" this string."), crc) - self.assertEqual(crc, 14290) - - self.assertRaises(TypeError, binascii.crc_hqx) - self.assertRaises(TypeError, binascii.crc_hqx, self.type2test(b'')) - - for crc in 0, 1, 0x1234, 0x12345, 0x12345678, -1: - self.assertEqual(binascii.crc_hqx(self.type2test(b''), crc), - crc & 0xffff) - def test_crc32(self): crc = binascii.crc32(self.type2test(b"Test the CRC-32 of")) crc = binascii.crc32(self.type2test(b" this string."), crc) diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py --- a/Lib/test/test_bytes.py +++ b/Lib/test/test_bytes.py @@ -301,14 +301,6 @@ self.assertRaises(ValueError, self.type2test.fromhex, '\x00') self.assertRaises(ValueError, self.type2test.fromhex, '12 \x00 34') - def test_hex(self): - self.assertRaises(TypeError, self.type2test.hex) - self.assertRaises(TypeError, self.type2test.hex, 1) - self.assertEqual(self.type2test(b"").hex(), "") - self.assertEqual(bytearray([0x1a, 0x2b, 0x30]).hex(), '1a2b30') - self.assertEqual(self.type2test(b"\x1a\x2b\x30").hex(), '1a2b30') - self.assertEqual(memoryview(b"\x1a\x2b\x30").hex(), '1a2b30') - def test_join(self): self.assertEqual(self.type2test(b"").join([]), b"") self.assertEqual(self.type2test(b"").join([b""]), b"") diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -1,11 +1,9 @@ import math -import os import unittest import sys import _ast -import tempfile import types -from test import support, script_helper +from test import support class TestSpecifics(unittest.TestCase): @@ -494,16 +492,6 @@ self.assertInvalidSingle('f()\nxy # blah\nblah()') self.assertInvalidSingle('x = 5 # comment\nx = 6\n') - def test_particularly_evil_undecodable(self): - # Issue 24022 - src = b'0000\x00\n00000000000\n\x00\n\x9e\n' - with tempfile.TemporaryDirectory() as tmpd: - fn = os.path.join(tmpd, "bad.py") - with open(fn, "wb") as fp: - fp.write(src) - res = script_helper.run_python_until_end(fn)[0] - self.assertIn(b"Non-UTF-8", res.err) - @support.cpython_only def test_compiler_recursion_limit(self): # Expected limit is sys.getrecursionlimit() * the scaling factor diff --git a/Lib/test/test_compileall.py b/Lib/test/test_compileall.py --- a/Lib/test/test_compileall.py +++ b/Lib/test/test_compileall.py @@ -136,10 +136,10 @@ self.assertTrue(compile_file_mock.called) @mock.patch('compileall.ProcessPoolExecutor', new=None) - @mock.patch('compileall.compile_file') - def test_compile_missing_multiprocessing(self, compile_file_mock): - compileall.compile_dir(self.directory, quiet=True, workers=5) - self.assertTrue(compile_file_mock.called) + def test_compile_missing_multiprocessing(self): + with self.assertRaisesRegex(NotImplementedError, + "multiprocessing support not available"): + compileall.compile_dir(self.directory, quiet=True, workers=5) class EncodingTest(unittest.TestCase): """Issue 6716: compileall should escape source code when printing errors diff --git a/Lib/test/test_difflib.py b/Lib/test/test_difflib.py --- a/Lib/test/test_difflib.py +++ b/Lib/test/test_difflib.py @@ -322,157 +322,12 @@ self.assertEqual(fmt(0,0), '0') -class TestBytes(unittest.TestCase): - # don't really care about the content of the output, just the fact - # that it's bytes and we don't crash - def check(self, diff): - diff = list(diff) # trigger exceptions first - for line in diff: - self.assertIsInstance( - line, bytes, - "all lines of diff should be bytes, but got: %r" % line) - - def test_byte_content(self): - # if we receive byte strings, we return byte strings - a = [b'hello', b'andr\xe9'] # iso-8859-1 bytes - b = [b'hello', b'andr\xc3\xa9'] # utf-8 bytes - - unified = difflib.unified_diff - context = difflib.context_diff - - check = self.check - check(difflib.diff_bytes(unified, a, a)) - check(difflib.diff_bytes(unified, a, b)) - - # now with filenames (content and filenames are all bytes!) - check(difflib.diff_bytes(unified, a, a, b'a', b'a')) - check(difflib.diff_bytes(unified, a, b, b'a', b'b')) - - # and with filenames and dates - check(difflib.diff_bytes(unified, a, a, b'a', b'a', b'2005', b'2013')) - check(difflib.diff_bytes(unified, a, b, b'a', b'b', b'2005', b'2013')) - - # same all over again, with context diff - check(difflib.diff_bytes(context, a, a)) - check(difflib.diff_bytes(context, a, b)) - check(difflib.diff_bytes(context, a, a, b'a', b'a')) - check(difflib.diff_bytes(context, a, b, b'a', b'b')) - check(difflib.diff_bytes(context, a, a, b'a', b'a', b'2005', b'2013')) - check(difflib.diff_bytes(context, a, b, b'a', b'b', b'2005', b'2013')) - - def test_byte_filenames(self): - # somebody renamed a file from ISO-8859-2 to UTF-8 - fna = b'\xb3odz.txt' # "Å‚odz.txt" - fnb = b'\xc5\x82odz.txt' - - # they transcoded the content at the same time - a = [b'\xa3odz is a city in Poland.'] - b = [b'\xc5\x81odz is a city in Poland.'] - - check = self.check - unified = difflib.unified_diff - context = difflib.context_diff - check(difflib.diff_bytes(unified, a, b, fna, fnb)) - check(difflib.diff_bytes(context, a, b, fna, fnb)) - - def assertDiff(expect, actual): - # do not compare expect and equal as lists, because unittest - # uses difflib to report difference between lists - actual = list(actual) - self.assertEqual(len(expect), len(actual)) - for e, a in zip(expect, actual): - self.assertEqual(e, a) - - expect = [ - b'--- \xb3odz.txt', - b'+++ \xc5\x82odz.txt', - b'@@ -1 +1 @@', - b'-\xa3odz is a city in Poland.', - b'+\xc5\x81odz is a city in Poland.', - ] - actual = difflib.diff_bytes(unified, a, b, fna, fnb, lineterm=b'') - assertDiff(expect, actual) - - # with dates (plain ASCII) - datea = b'2005-03-18' - dateb = b'2005-03-19' - check(difflib.diff_bytes(unified, a, b, fna, fnb, datea, dateb)) - check(difflib.diff_bytes(context, a, b, fna, fnb, datea, dateb)) - - expect = [ - # note the mixed encodings here: this is deeply wrong by every - # tenet of Unicode, but it doesn't crash, it's parseable by - # patch, and it's how UNIX(tm) diff behaves - b'--- \xb3odz.txt\t2005-03-18', - b'+++ \xc5\x82odz.txt\t2005-03-19', - b'@@ -1 +1 @@', - b'-\xa3odz is a city in Poland.', - b'+\xc5\x81odz is a city in Poland.', - ] - actual = difflib.diff_bytes(unified, a, b, fna, fnb, datea, dateb, - lineterm=b'') - assertDiff(expect, actual) - - def test_mixed_types_content(self): - # type of input content must be consistent: all str or all bytes - a = [b'hello'] - b = ['hello'] - - unified = difflib.unified_diff - context = difflib.context_diff - - expect = "lines to compare must be str, not bytes (b'hello')" - self._assert_type_error(expect, unified, a, b) - self._assert_type_error(expect, unified, b, a) - self._assert_type_error(expect, context, a, b) - self._assert_type_error(expect, context, b, a) - - expect = "all arguments must be bytes, not str ('hello')" - self._assert_type_error(expect, difflib.diff_bytes, unified, a, b) - self._assert_type_error(expect, difflib.diff_bytes, unified, b, a) - self._assert_type_error(expect, difflib.diff_bytes, context, a, b) - self._assert_type_error(expect, difflib.diff_bytes, context, b, a) - - def test_mixed_types_filenames(self): - # cannot pass filenames as bytes if content is str (this may not be - # the right behaviour, but at least the test demonstrates how - # things work) - a = ['hello\n'] - b = ['ohell\n'] - fna = b'ol\xe9.txt' # filename transcoded from ISO-8859-1 - fnb = b'ol\xc3a9.txt' # to UTF-8 - self._assert_type_error( - "all arguments must be str, not: b'ol\\xe9.txt'", - difflib.unified_diff, a, b, fna, fnb) - - def test_mixed_types_dates(self): - # type of dates must be consistent with type of contents - a = [b'foo\n'] - b = [b'bar\n'] - datea = '1 fév' - dateb = '3 fév' - self._assert_type_error( - "all arguments must be bytes, not str ('1 fév')", - difflib.diff_bytes, difflib.unified_diff, - a, b, b'a', b'b', datea, dateb) - - # if input is str, non-ASCII dates are fine - a = ['foo\n'] - b = ['bar\n'] - list(difflib.unified_diff(a, b, 'a', 'b', datea, dateb)) - - def _assert_type_error(self, msg, generator, *args): - with self.assertRaises(TypeError) as ctx: - list(generator(*args)) - self.assertEqual(msg, str(ctx.exception)) - - def test_main(): difflib.HtmlDiff._default_prefix = 0 Doctests = doctest.DocTestSuite(difflib) run_unittest( TestWithAscii, TestAutojunk, TestSFpatches, TestSFbugs, - TestOutputFormat, TestBytes, Doctests) + TestOutputFormat, Doctests) if __name__ == '__main__': test_main() diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -659,7 +659,7 @@ >>> import builtins >>> tests = doctest.DocTestFinder().find(builtins) - >>> 790 < len(tests) < 810 # approximate number of objects with docstrings + >>> 790 < len(tests) < 800 # approximate number of objects with docstrings True >>> real_tests = [t for t in tests if len(t.examples) > 0] >>> len(real_tests) # objects that actually have doctests diff --git a/Lib/test/test_import/__init__.py b/Lib/test/test_import/__init__.py --- a/Lib/test/test_import/__init__.py +++ b/Lib/test/test_import/__init__.py @@ -1,7 +1,7 @@ # We import importlib *ASAP* in order to test #15386 import importlib import importlib.util -from importlib._bootstrap import _get_sourcefile +from importlib._bootstrap_external import _get_sourcefile import builtins import marshal import os @@ -291,8 +291,7 @@ except OverflowError: self.skipTest("cannot set modification time to large integer") except OSError as e: - if e.errno not in (getattr(errno, 'EOVERFLOW', None), - getattr(errno, 'EINVAL', None)): + if e.errno != getattr(errno, 'EOVERFLOW', None): raise self.skipTest("cannot set modification time to large integer ({})".format(e)) __import__(TESTFN) @@ -845,19 +844,27 @@ self.assertEqual(mod.__package__, 'importlib') self.assertTrue(mod.__file__.endswith('_bootstrap.py'), mod.__file__) + def test_frozen_importlib_external_is_bootstrap_external(self): + from importlib import _bootstrap_external + mod = sys.modules['_frozen_importlib_external'] + self.assertIs(mod, _bootstrap_external) + self.assertEqual(mod.__name__, 'importlib._bootstrap_external') + self.assertEqual(mod.__package__, 'importlib') + self.assertTrue(mod.__file__.endswith('_bootstrap_external.py'), mod.__file__) + def test_there_can_be_only_one(self): # Issue #15386 revealed a tricky loophole in the bootstrapping # This test is technically redundant, since the bug caused importing # this test module to crash completely, but it helps prove the point from importlib import machinery mod = sys.modules['_frozen_importlib'] - self.assertIs(machinery.FileFinder, mod.FileFinder) + self.assertIs(machinery.ModuleSpec, mod.ModuleSpec) @cpython_only class GetSourcefileTests(unittest.TestCase): - """Test importlib._bootstrap._get_sourcefile() as used by the C API. + """Test importlib._bootstrap_external._get_sourcefile() as used by the C API. Because of the peculiarities of the need of this function, the tests are knowingly whitebox tests. @@ -867,7 +874,7 @@ def test_get_sourcefile(self): # Given a valid bytecode path, return the path to the corresponding # source file if it exists. - with mock.patch('importlib._bootstrap._path_isfile') as _path_isfile: + with mock.patch('importlib._bootstrap_external._path_isfile') as _path_isfile: _path_isfile.return_value = True; path = TESTFN + '.pyc' expect = TESTFN + '.py' @@ -876,7 +883,7 @@ def test_get_sourcefile_no_source(self): # Given a valid bytecode path without a corresponding source path, # return the original bytecode path. - with mock.patch('importlib._bootstrap._path_isfile') as _path_isfile: + with mock.patch('importlib._bootstrap_external._path_isfile') as _path_isfile: _path_isfile.return_value = False; path = TESTFN + '.pyc' self.assertEqual(_get_sourcefile(path), path) @@ -1031,7 +1038,7 @@ # We simulate a bug in importlib and check that it's not stripped # away from the traceback. self.create_module("foo", "") - importlib = sys.modules['_frozen_importlib'] + importlib = sys.modules['_frozen_importlib_external'] if 'load_module' in vars(importlib.SourceLoader): old_exec_module = importlib.SourceLoader.exec_module else: diff --git a/Lib/test/test_importlib/extension/test_case_sensitivity.py b/Lib/test/test_importlib/extension/test_case_sensitivity.py --- a/Lib/test/test_importlib/extension/test_case_sensitivity.py +++ b/Lib/test/test_importlib/extension/test_case_sensitivity.py @@ -1,4 +1,4 @@ -from importlib import _bootstrap +from importlib import _bootstrap_external import sys from test import support import unittest @@ -26,7 +26,7 @@ def test_case_sensitive(self): with support.EnvironmentVarGuard() as env: env.unset('PYTHONCASEOK') - if b'PYTHONCASEOK' in _bootstrap._os.environ: + if b'PYTHONCASEOK' in _bootstrap_external._os.environ: self.skipTest('os.environ changes not reflected in ' '_os.environ') loader = self.find_module() @@ -35,7 +35,7 @@ def test_case_insensitivity(self): with support.EnvironmentVarGuard() as env: env.set('PYTHONCASEOK', '1') - if b'PYTHONCASEOK' not in _bootstrap._os.environ: + if b'PYTHONCASEOK' not in _bootstrap_external._os.environ: self.skipTest('os.environ changes not reflected in ' '_os.environ') loader = self.find_module() diff --git a/Lib/test/test_importlib/import_/test_path.py b/Lib/test/test_importlib/import_/test_path.py --- a/Lib/test/test_importlib/import_/test_path.py +++ b/Lib/test/test_importlib/import_/test_path.py @@ -99,7 +99,7 @@ new_path_importer_cache.pop(None, None) new_path_hooks = [zipimport.zipimporter, self.machinery.FileFinder.path_hook( - *self.importlib._bootstrap._get_supported_file_loaders())] + *self.importlib._bootstrap_external._get_supported_file_loaders())] missing = object() email = sys.modules.pop('email', missing) try: diff --git a/Lib/test/test_importlib/source/test_case_sensitivity.py b/Lib/test/test_importlib/source/test_case_sensitivity.py --- a/Lib/test/test_importlib/source/test_case_sensitivity.py +++ b/Lib/test/test_importlib/source/test_case_sensitivity.py @@ -42,7 +42,7 @@ def test_sensitive(self): with test_support.EnvironmentVarGuard() as env: env.unset('PYTHONCASEOK') - if b'PYTHONCASEOK' in self.importlib._bootstrap._os.environ: + if b'PYTHONCASEOK' in self.importlib._bootstrap_external._os.environ: self.skipTest('os.environ changes not reflected in ' '_os.environ') sensitive, insensitive = self.sensitivity_test() @@ -53,7 +53,7 @@ def test_insensitive(self): with test_support.EnvironmentVarGuard() as env: env.set('PYTHONCASEOK', '1') - if b'PYTHONCASEOK' not in self.importlib._bootstrap._os.environ: + if b'PYTHONCASEOK' not in self.importlib._bootstrap_external._os.environ: self.skipTest('os.environ changes not reflected in ' '_os.environ') sensitive, insensitive = self.sensitivity_test() diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -442,36 +442,6 @@ else: self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode)) - @unittest.skipUnless(hasattr(posix, 'stat'), 'test needs posix.stat()') - @unittest.skipUnless(hasattr(posix, 'makedev'), 'test needs posix.makedev()') - def test_makedev(self): - st = posix.stat(support.TESTFN) - dev = st.st_dev - self.assertIsInstance(dev, int) - self.assertGreaterEqual(dev, 0) - - major = posix.major(dev) - self.assertIsInstance(major, int) - self.assertGreaterEqual(major, 0) - self.assertEqual(posix.major(dev), major) - self.assertRaises(TypeError, posix.major, float(dev)) - self.assertRaises(TypeError, posix.major) - self.assertRaises((ValueError, OverflowError), posix.major, -1) - - minor = posix.minor(dev) - self.assertIsInstance(minor, int) - self.assertGreaterEqual(minor, 0) - self.assertEqual(posix.minor(dev), minor) - self.assertRaises(TypeError, posix.minor, float(dev)) - self.assertRaises(TypeError, posix.minor) - self.assertRaises((ValueError, OverflowError), posix.minor, -1) - - self.assertEqual(posix.makedev(major, minor), dev) - self.assertRaises(TypeError, posix.makedev, float(major), minor) - self.assertRaises(TypeError, posix.makedev, major, float(minor)) - self.assertRaises(TypeError, posix.makedev, major) - self.assertRaises(TypeError, posix.makedev) - def _test_all_chown_common(self, chown_func, first_param, stat_func): """Common code for chown, fchown and lchown tests.""" def check_stat(uid, gid): @@ -1168,42 +1138,6 @@ else: self.fail("No valid path_error2() test for os." + name) - def test_path_with_null_character(self): - fn = support.TESTFN - fn_with_NUL = fn + '\0' - self.addCleanup(support.unlink, fn) - support.unlink(fn) - fd = None - try: - with self.assertRaises(ValueError): - fd = os.open(fn_with_NUL, os.O_WRONLY | os.O_CREAT) # raises - finally: - if fd is not None: - os.close(fd) - self.assertFalse(os.path.exists(fn)) - self.assertRaises(ValueError, os.mkdir, fn_with_NUL) - self.assertFalse(os.path.exists(fn)) - open(fn, 'wb').close() - self.assertRaises(ValueError, os.stat, fn_with_NUL) - - def test_path_with_null_byte(self): - fn = os.fsencode(support.TESTFN) - fn_with_NUL = fn + b'\0' - self.addCleanup(support.unlink, fn) - support.unlink(fn) - fd = None - try: - with self.assertRaises(ValueError): - fd = os.open(fn_with_NUL, os.O_WRONLY | os.O_CREAT) # raises - finally: - if fd is not None: - os.close(fd) - self.assertFalse(os.path.exists(fn)) - self.assertRaises(ValueError, os.mkdir, fn_with_NUL) - self.assertFalse(os.path.exists(fn)) - open(fn, 'wb').close() - self.assertRaises(ValueError, os.stat, fn_with_NUL) - class PosixGroupsTester(unittest.TestCase): def setUp(self): diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -1006,14 +1006,6 @@ result = output.getvalue().strip() self.assertEqual(expected_text, result) - def test_resolve_false(self): - # Issue #23008: pydoc enum.{,Int}Enum failed - # because bool(enum.Enum) is False. - with captured_stdout() as help_io: - pydoc.help('enum.Enum') - helptext = help_io.getvalue() - self.assertIn('class Enum', helptext) - @reap_threads def test_main(): diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -355,8 +355,10 @@ stdout, stderr = proc.communicate() self.assertEqual(proc.returncode, 0) os__file__, os__cached__ = stdout.splitlines()[:2] - self.assertTrue(os.path.isabs(os__file__)) - self.assertTrue(os.path.isabs(os__cached__)) + self.assertTrue(os.path.isabs(os__file__), + "expected absolute path, got {}".format(os__file__)) + self.assertTrue(os.path.isabs(os__cached__), + "expected absolute path, got {}".format(os__cached__)) def test_no_duplicate_paths(self): # No duplicate paths should exist in sys.path diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@ -1,5 +1,4 @@ import unittest -import re import sys import os from test import support @@ -18,22 +17,27 @@ except ImportError: INT_MAX = PY_SSIZE_T_MAX = sys.maxsize -tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) +tcl_version = _tkinter.TCL_VERSION.split('.') +try: + for i in range(len(tcl_version)): + tcl_version[i] = int(tcl_version[i]) +except ValueError: + pass +tcl_version = tuple(tcl_version) _tk_patchlevel = None def get_tk_patchlevel(): global _tk_patchlevel if _tk_patchlevel is None: tcl = Tcl() - patchlevel = tcl.call('info', 'patchlevel') - m = re.fullmatch(r'(\d+)\.(\d+)([ab.])(\d+)', patchlevel) - major, minor, releaselevel, serial = m.groups() - major, minor, serial = int(major), int(minor), int(serial) - releaselevel = {'a': 'alpha', 'b': 'beta', '.': 'final'}[releaselevel] - if releaselevel == 'final': - _tk_patchlevel = major, minor, serial, releaselevel, 0 - else: - _tk_patchlevel = major, minor, 0, releaselevel, serial + patchlevel = [] + for x in tcl.call('info', 'patchlevel').split('.'): + try: + x = int(x, 10) + except ValueError: + x = -1 + patchlevel.append(x) + _tk_patchlevel = tuple(patchlevel) return _tk_patchlevel @@ -131,9 +135,7 @@ def get_integers(self): integers = (0, 1, -1, 2**31-1, -2**31, 2**31, -2**31-1, 2**63-1, -2**63) - # bignum was added in Tcl 8.5, but its support is able only since 8.5.8 - if (get_tk_patchlevel() >= (8, 6, 0, 'final') or - (8, 5, 8) <= get_tk_patchlevel() < (8, 6)): + if tcl_version >= (8, 5): # bignum was added in Tcl 8.5 integers += (2**63, -2**63-1, 2**1000, -2**1000) return integers diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -23,7 +23,6 @@ # CacheFTPHandler (hard to write) # parse_keqv_list, parse_http_list, HTTPDigestAuthHandler - class TrivialTests(unittest.TestCase): def test___all__(self): @@ -74,7 +73,6 @@ err = urllib.error.URLError('reason') self.assertIn(err.reason, str(err)) - class RequestHdrsTests(unittest.TestCase): def test_request_headers_dict(self): @@ -134,6 +132,7 @@ req.remove_header("Unredirected-spam") self.assertFalse(req.has_header("Unredirected-spam")) + def test_password_manager(self): mgr = urllib.request.HTTPPasswordMgr() add = mgr.add_password @@ -237,60 +236,43 @@ class MockOpener: addheaders = [] - def open(self, req, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT): self.req, self.data, self.timeout = req, data, timeout - def error(self, proto, *args): self.proto, self.args = proto, args - class MockFile: - def read(self, count=None): - pass - - def readline(self, count=None): - pass - - def close(self): - pass - + def read(self, count=None): pass + def readline(self, count=None): pass + def close(self): pass class MockHeaders(dict): def getheaders(self, name): return list(self.values()) - class MockResponse(io.StringIO): def __init__(self, code, msg, headers, data, url=None): io.StringIO.__init__(self, data) self.code, self.msg, self.headers, self.url = code, msg, headers, url - def info(self): return self.headers - def geturl(self): return self.url - class MockCookieJar: def add_cookie_header(self, request): self.ach_req = request - def extract_cookies(self, response, request): self.ec_req, self.ec_r = request, response - class FakeMethod: def __init__(self, meth_name, action, handle): self.meth_name = meth_name self.handle = handle self.action = action - def __call__(self, *args): return self.handle(self.meth_name, self.action, *args) - class MockHTTPResponse(io.IOBase): def __init__(self, fp, msg, status, reason): self.fp = fp @@ -344,31 +326,24 @@ self.data = body if self.raise_on_endheaders: raise OSError() - def getresponse(self): return MockHTTPResponse(MockFile(), {}, 200, "OK") def close(self): pass - class MockHandler: # useful for testing handler machinery # see add_ordered_mock_handlers() docstring handler_order = 500 - def __init__(self, methods): self._define_methods(methods) - def _define_methods(self, methods): for spec in methods: - if len(spec) == 2: - name, action = spec - else: - name, action = spec, None + if len(spec) == 2: name, action = spec + else: name, action = spec, None meth = FakeMethod(name, action, self.handle) setattr(self.__class__, name, meth) - def handle(self, fn_name, action, *args, **kwds): self.parent.calls.append((self, fn_name, args, kwds)) if action is None: @@ -391,21 +366,16 @@ elif action == "raise": raise urllib.error.URLError("blah") assert False - - def close(self): - pass - + def close(self): pass def add_parent(self, parent): self.parent = parent self.parent.calls = [] - def __lt__(self, other): if not hasattr(other, "handler_order"): # No handler_order, leave in original order. Yuck. return True return self.handler_order < other.handler_order - def add_ordered_mock_handlers(opener, meth_spec): """Create MockHandlers and add them to an OpenerDirector. @@ -428,9 +398,7 @@ handlers = [] count = 0 for meths in meth_spec: - class MockHandlerSubclass(MockHandler): - pass - + class MockHandlerSubclass(MockHandler): pass h = MockHandlerSubclass(meths) h.handler_order += count h.add_parent(opener) @@ -439,14 +407,12 @@ opener.add_handler(h) return handlers - def build_test_opener(*handler_instances): opener = OpenerDirector() for h in handler_instances: opener.add_handler(h) return opener - class MockHTTPHandler(urllib.request.BaseHandler): # useful for testing redirections and auth # sends supplied headers and code as first response @@ -455,11 +421,9 @@ self.code = code self.headers = headers self.reset() - def reset(self): self._count = 0 self.requests = [] - def http_open(self, req): import email, http.client, copy self.requests.append(copy.deepcopy(req)) @@ -474,7 +438,6 @@ msg = email.message_from_string("\r\n\r\n") return MockResponse(200, "OK", msg, "", req.get_full_url()) - class MockHTTPSHandler(urllib.request.AbstractHTTPHandler): # Useful for testing the Proxy-Authorization request by verifying the # properties of httpcon @@ -505,14 +468,12 @@ return MockResponse(self.code, name, MockFile(), "", req.get_full_url()) - class MockPasswordManager: def add_password(self, realm, uri, user, password): self.realm = realm self.url = uri self.user = user self.password = password - def find_user_password(self, realm, authuri): self.target_realm = realm self.target_url = authuri @@ -577,11 +538,11 @@ def test_handler_order(self): o = OpenerDirector() handlers = [] - for meths, handler_order in [([("http_open", "return self")], 500), - (["http_open"], 0)]: - class MockHandlerSubclass(MockHandler): - pass - + for meths, handler_order in [ + ([("http_open", "return self")], 500), + (["http_open"], 0), + ]: + class MockHandlerSubclass(MockHandler): pass h = MockHandlerSubclass(meths) h.handler_order = handler_order handlers.append(h) @@ -619,8 +580,7 @@ handlers = add_ordered_mock_handlers(o, meth_spec) class Unknown: - def __eq__(self, other): - return True + def __eq__(self, other): return True req = Request("http://example.com/") o.open(req) @@ -633,6 +593,7 @@ self.assertEqual((handler, method_name), got[:2]) self.assertEqual(args, got[2]) + def test_processors(self): # *_request / *_response methods get called appropriately o = OpenerDirector() @@ -668,7 +629,6 @@ if args[1] is not None: self.assertIsInstance(args[1], MockResponse) - def sanepathname2url(path): try: path.encode("utf-8") @@ -680,25 +640,18 @@ # XXX don't ask me about the mac... return urlpath - class HandlerTests(unittest.TestCase): def test_ftp(self): class MockFTPWrapper: - def __init__(self, data): - self.data = data - + def __init__(self, data): self.data = data def retrfile(self, filename, filetype): self.filename, self.filetype = filename, filetype return io.StringIO(self.data), len(self.data) - - def close(self): - pass + def close(self): pass class NullFTPHandler(urllib.request.FTPHandler): - def __init__(self, data): - self.data = data - + def __init__(self, data): self.data = data def connect_ftp(self, user, passwd, host, port, dirs, timeout=socket._GLOBAL_DEFAULT_TIMEOUT): self.user, self.passwd = user, passwd @@ -936,7 +889,7 @@ self.assertRaises(ValueError, h.do_request_, req) else: newreq = h.do_request_(req) - self.assertEqual(int(newreq.get_header('Content-length')), 30) + self.assertEqual(int(newreq.get_header('Content-length')),30) file_obj.close() @@ -969,12 +922,12 @@ # Check whether host is determined correctly if there is no proxy np_ds_req = h.do_request_(ds_req) - self.assertEqual(np_ds_req.unredirected_hdrs["Host"], "example.com") + self.assertEqual(np_ds_req.unredirected_hdrs["Host"],"example.com") # Check whether host is determined correctly if there is a proxy - ds_req.set_proxy("someproxy:3128", None) + ds_req.set_proxy("someproxy:3128",None) p_ds_req = h.do_request_(ds_req) - self.assertEqual(p_ds_req.unredirected_hdrs["Host"], "example.com") + self.assertEqual(p_ds_req.unredirected_hdrs["Host"],"example.com") def test_full_url_setter(self): # Checks to ensure that components are set correctly after setting the @@ -1016,14 +969,15 @@ weird_url = 'http://www.python.org?getspam' req = Request(weird_url) newreq = h.do_request_(req) - self.assertEqual(newreq.host, 'www.python.org') - self.assertEqual(newreq.selector, '/?getspam') + self.assertEqual(newreq.host,'www.python.org') + self.assertEqual(newreq.selector,'/?getspam') url_without_path = 'http://www.python.org' req = Request(url_without_path) newreq = h.do_request_(req) - self.assertEqual(newreq.host, 'www.python.org') - self.assertEqual(newreq.selector, '') + self.assertEqual(newreq.host,'www.python.org') + self.assertEqual(newreq.selector,'') + def test_errors(self): h = urllib.request.HTTPErrorProcessor() @@ -1110,7 +1064,6 @@ # loop detection req = Request(from_url) req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT - def redirect(h, req, url=to_url): h.http_error_302(req, MockFile(), 302, "Blah", MockHeaders({"location": url})) @@ -1141,6 +1094,7 @@ self.assertEqual(count, urllib.request.HTTPRedirectHandler.max_redirections) + def test_invalid_redirect(self): from_url = "http://example.com/a.html" valid_schemes = ['http','https','ftp'] @@ -1243,6 +1197,7 @@ self.assertEqual(req.host, "www.python.org") del os.environ['no_proxy'] + def test_proxy_https(self): o = OpenerDirector() ph = urllib.request.ProxyHandler(dict(https="proxy.example.com:3128")) @@ -1266,21 +1221,21 @@ https_handler = MockHTTPSHandler() o.add_handler(https_handler) req = Request("https://www.example.com/") - req.add_header("Proxy-Authorization", "FooBar") - req.add_header("User-Agent", "Grail") + req.add_header("Proxy-Authorization","FooBar") + req.add_header("User-Agent","Grail") self.assertEqual(req.host, "www.example.com") self.assertIsNone(req._tunnel_host) o.open(req) # Verify Proxy-Authorization gets tunneled to request. # httpsconn req_headers do not have the Proxy-Authorization header but # the req will have. - self.assertNotIn(("Proxy-Authorization", "FooBar"), + self.assertNotIn(("Proxy-Authorization","FooBar"), https_handler.httpconn.req_headers) - self.assertIn(("User-Agent", "Grail"), + self.assertIn(("User-Agent","Grail"), https_handler.httpconn.req_headers) self.assertIsNotNone(req._tunnel_host) self.assertEqual(req.host, "proxy.example.com:3128") - self.assertEqual(req.get_header("Proxy-authorization"), "FooBar") + self.assertEqual(req.get_header("Proxy-authorization"),"FooBar") # TODO: This should be only for OSX @unittest.skipUnless(sys.platform == 'darwin', "only relevant for OSX") @@ -1312,7 +1267,7 @@ realm = "ACME Widget Store" http_handler = MockHTTPHandler( 401, 'WWW-Authenticate: Basic realm=%s%s%s\r\n\r\n' % - (quote_char, realm, quote_char)) + (quote_char, realm, quote_char) ) opener.add_handler(auth_handler) opener.add_handler(http_handler) self._test_basic_auth(opener, auth_handler, "Authorization", @@ -1370,16 +1325,13 @@ def __init__(self): OpenerDirector.__init__(self) self.recorded = [] - def record(self, info): self.recorded.append(info) - class TestDigestAuthHandler(urllib.request.HTTPDigestAuthHandler): def http_error_401(self, *args, **kwds): self.parent.record("digest") urllib.request.HTTPDigestAuthHandler.http_error_401(self, *args, **kwds) - class TestBasicAuthHandler(urllib.request.HTTPBasicAuthHandler): def http_error_401(self, *args, **kwds): self.parent.record("basic") @@ -1415,7 +1367,7 @@ 401, 'WWW-Authenticate: Kerberos\r\n\r\n') opener.add_handler(digest_auth_handler) opener.add_handler(http_handler) - self.assertRaises(ValueError, opener.open, "http://www.example.com") + self.assertRaises(ValueError,opener.open,"http://www.example.com") def test_unsupported_auth_basic_handler(self): # While using BasicAuthHandler @@ -1425,7 +1377,7 @@ 401, 'WWW-Authenticate: NTLM\r\n\r\n') opener.add_handler(basic_auth_handler) opener.add_handler(http_handler) - self.assertRaises(ValueError, opener.open, "http://www.example.com") + self.assertRaises(ValueError,opener.open,"http://www.example.com") def _test_basic_auth(self, opener, auth_handler, auth_header, realm, http_handler, password_manager, @@ -1558,7 +1510,6 @@ self.assertTrue(conn.fakesock.closed, "Connection not closed") - class MiscTests(unittest.TestCase): def opener_has_handler(self, opener, handler_class): @@ -1566,16 +1517,11 @@ for h in opener.handlers)) def test_build_opener(self): - class MyHTTPHandler(urllib.request.HTTPHandler): - pass - + class MyHTTPHandler(urllib.request.HTTPHandler): pass class FooHandler(urllib.request.BaseHandler): - def foo_open(self): - pass - + def foo_open(self): pass class BarHandler(urllib.request.BaseHandler): - def bar_open(self): - pass + def bar_open(self): pass build_opener = urllib.request.build_opener @@ -1602,9 +1548,7 @@ self.opener_has_handler(o, urllib.request.HTTPHandler) # Issue2670: multiple handlers sharing the same base class - class MyOtherHTTPHandler(urllib.request.HTTPHandler): - pass - + class MyOtherHTTPHandler(urllib.request.HTTPHandler): pass o = build_opener(MyHTTPHandler, MyOtherHTTPHandler) self.opener_has_handler(o, MyHTTPHandler) self.opener_has_handler(o, MyOtherHTTPHandler) @@ -1640,8 +1584,6 @@ self.assertEqual(err.headers, 'Content-Length: 42') expected_errmsg = 'HTTP Error %s: %s' % (err.code, err.msg) self.assertEqual(str(err), expected_errmsg) - expected_errmsg = '' % (err.code, err.msg) - self.assertEqual(repr(err), expected_errmsg) def test_parse_proxy(self): parse_proxy_test_cases = [ @@ -1680,10 +1622,9 @@ self.assertRaises(ValueError, _parse_proxy, 'file:/ftp.example.com'), - class RequestTests(unittest.TestCase): class PutRequest(Request): - method = 'PUT' + method='PUT' def setUp(self): self.get = Request("http://www.python.org/~jeremy/") @@ -1772,7 +1713,7 @@ def test_url_fullurl_get_full_url(self): urls = ['http://docs.python.org', 'http://docs.python.org/library/urllib2.html#OK', - 'http://www.python.org/?qs=query#fragment=true'] + 'http://www.python.org/?qs=query#fragment=true' ] for url in urls: req = Request(url) self.assertEqual(req.get_full_url(), req.full_url) diff --git a/Lib/timeit.py b/Lib/timeit.py --- a/Lib/timeit.py +++ b/Lib/timeit.py @@ -14,8 +14,7 @@ Options: -n/--number N: how many times to execute 'statement' (default: see below) -r/--repeat N: how many times to repeat the timer (default 3) - -s/--setup S: statement to be executed once initially (default 'pass'). - Execution time of this setup statement is NOT timed. + -s/--setup S: statement to be executed once initially (default 'pass') -p/--process: use time.process_time() (default is time.perf_counter()) -t/--time: use time.time() (deprecated) -c/--clock: use time.clock() (deprecated) diff --git a/Lib/tkinter/test/support.py b/Lib/tkinter/test/support.py --- a/Lib/tkinter/test/support.py +++ b/Lib/tkinter/test/support.py @@ -1,6 +1,7 @@ -import re +import sys import tkinter import unittest +from test.support import requires class AbstractTkTest: @@ -62,15 +63,14 @@ global _tk_patchlevel if _tk_patchlevel is None: tcl = tkinter.Tcl() - patchlevel = tcl.call('info', 'patchlevel') - m = re.fullmatch(r'(\d+)\.(\d+)([ab.])(\d+)', patchlevel) - major, minor, releaselevel, serial = m.groups() - major, minor, serial = int(major), int(minor), int(serial) - releaselevel = {'a': 'alpha', 'b': 'beta', '.': 'final'}[releaselevel] - if releaselevel == 'final': - _tk_patchlevel = major, minor, serial, releaselevel, 0 - else: - _tk_patchlevel = major, minor, 0, releaselevel, serial + patchlevel = [] + for x in tcl.call('info', 'patchlevel').split('.'): + try: + x = int(x, 10) + except ValueError: + x = -1 + patchlevel.append(x) + _tk_patchlevel = tuple(patchlevel) return _tk_patchlevel units = { diff --git a/Lib/tkinter/test/test_tkinter/test_widgets.py b/Lib/tkinter/test/test_tkinter/test_widgets.py --- a/Lib/tkinter/test/test_tkinter/test_widgets.py +++ b/Lib/tkinter/test/test_tkinter/test_widgets.py @@ -1041,7 +1041,7 @@ def test_paneconfigure_height(self): p, b, c = self.create2() self.check_paneconfigure(p, b, 'height', 10, 10, - stringify=get_tk_patchlevel() < (8, 5, 11)) + stringify=tcl_version < (8, 5)) self.check_paneconfigure_bad(p, b, 'height', 'bad screen distance "badValue"') @@ -1089,7 +1089,7 @@ def test_paneconfigure_width(self): p, b, c = self.create2() self.check_paneconfigure(p, b, 'width', 10, 10, - stringify=get_tk_patchlevel() < (8, 5, 11)) + stringify=tcl_version < (8, 5)) self.check_paneconfigure_bad(p, b, 'width', 'bad screen distance "badValue"') diff --git a/Lib/tkinter/test/test_ttk/test_widgets.py b/Lib/tkinter/test/test_ttk/test_widgets.py --- a/Lib/tkinter/test/test_ttk/test_widgets.py +++ b/Lib/tkinter/test/test_ttk/test_widgets.py @@ -20,7 +20,7 @@ widget = self.create() self.assertEqual(widget['class'], '') errmsg='attempt to change read-only option' - if get_tk_patchlevel() < (8, 6, 0, 'beta', 3): + if get_tk_patchlevel() < (8, 6, 0): # actually this was changed in 8.6b3 errmsg='Attempt to change read-only option' self.checkInvalidParam(widget, 'class', 'Foo', errmsg=errmsg) widget2 = self.create(class_='Foo') @@ -352,8 +352,7 @@ expected=('mon', 'tue', 'wed', 'thur')) self.checkParam(self.combo, 'values', ('mon', 'tue', 'wed', 'thur')) self.checkParam(self.combo, 'values', (42, 3.14, '', 'any string')) - self.checkParam(self.combo, 'values', '', - expected='' if get_tk_patchlevel() < (8, 5, 10) else ()) + self.checkParam(self.combo, 'values', '', expected=()) self.combo['values'] = ['a', 1, 'c'] @@ -552,7 +551,7 @@ widget = self.create() self.assertEqual(str(widget['orient']), 'vertical') errmsg='attempt to change read-only option' - if get_tk_patchlevel() < (8, 6, 0, 'beta', 3): + if get_tk_patchlevel() < (8, 6, 0): # actually this was changed in 8.6b3 errmsg='Attempt to change read-only option' self.checkInvalidParam(widget, 'orient', 'horizontal', errmsg=errmsg) @@ -1126,8 +1125,7 @@ self.checkParam(widget, 'columns', 'a b c', expected=('a', 'b', 'c')) self.checkParam(widget, 'columns', ('a', 'b', 'c')) - self.checkParam(widget, 'columns', (), - expected='' if get_tk_patchlevel() < (8, 5, 10) else ()) + self.checkParam(widget, 'columns', ()) def test_displaycolumns(self): widget = self.create() diff --git a/Lib/urllib/error.py b/Lib/urllib/error.py --- a/Lib/urllib/error.py +++ b/Lib/urllib/error.py @@ -35,7 +35,6 @@ def __str__(self): return '' % self.reason - class HTTPError(URLError, urllib.response.addinfourl): """Raised when HTTP error occurs, but also acts like non-error return""" __super_init = urllib.response.addinfourl.__init__ @@ -56,9 +55,6 @@ def __str__(self): return 'HTTP Error %s: %s' % (self.code, self.msg) - def __repr__(self): - return '' % (self.code, self.msg) - # since URLError specifies a .reason attribute, HTTPError should also # provide this attribute. See issue13211 for discussion. @property @@ -73,9 +69,8 @@ def headers(self, headers): self.hdrs = headers - +# exception raised when downloaded size does not match content-length class ContentTooShortError(URLError): - """Exception raised when downloaded size does not match content-length.""" def __init__(self, message, content): URLError.__init__(self, message) self.content = content diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -402,7 +402,6 @@ Python/getopt.o \ Python/pystrcmp.o \ Python/pystrtod.o \ - Python/pystrhex.o \ Python/dtoa.o \ Python/formatter_unicode.o \ Python/fileutils.o \ @@ -533,6 +532,7 @@ : # force rebuilding of parser and importlib @touch $(GRAMMAR_INPUT) @touch $(srcdir)/Lib/importlib/_bootstrap.py + @touch $(srcdir)/Lib/importlib/_bootstrap_external.py : # build with coverage info $(MAKE) coverage : # run tests, ignore failures @@ -694,6 +694,10 @@ Programs/_freeze_importlib: Programs/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN) $(LINKCC) $(PY_LDFLAGS) -o $@ Programs/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST) +Python/importlib_external.h: $(srcdir)/Lib/importlib/_bootstrap_external.py Programs/_freeze_importlib + ./Programs/_freeze_importlib \ + $(srcdir)/Lib/importlib/_bootstrap_external.py Python/importlib_external.h + Python/importlib.h: $(srcdir)/Lib/importlib/_bootstrap.py Programs/_freeze_importlib ./Programs/_freeze_importlib \ $(srcdir)/Lib/importlib/_bootstrap.py Python/importlib.h @@ -841,7 +845,7 @@ Python/ceval.o: $(OPCODETARGETS_H) $(srcdir)/Python/ceval_gil.h -Python/frozen.o: Python/importlib.h +Python/frozen.o: Python/importlib.h Python/importlib_external.h Objects/typeobject.o: Objects/typeslots.inc Objects/typeslots.inc: $(srcdir)/Include/typeslots.h $(srcdir)/Objects/typeslots.py @@ -920,7 +924,6 @@ $(srcdir)/Include/pystate.h \ $(srcdir)/Include/pystrcmp.h \ $(srcdir)/Include/pystrtod.h \ - $(srcdir)/Include/pystrhex.h \ $(srcdir)/Include/pythonrun.h \ $(srcdir)/Include/pythread.h \ $(srcdir)/Include/pytime.h \ @@ -1137,7 +1140,8 @@ # Install the library PLATDIR= @PLATDIR@ -MACHDEPS= $(PLATDIR) +EXTRAPLATDIR= @EXTRAPLATDIR@ +MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR) XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \ tkinter/test/test_ttk site-packages test \ diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -1547,7 +1547,6 @@ Robert Xiao Florent Xicluna Hirokazu Yamamoto -Arnon Yaari Ka-Ping Yee Jason Yeo EungJun Yi diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -2,66 +2,10 @@ Python News +++++++++++ -What's New in Python 3.5.0 beta 1? -================================== - -Release date: 2015-04-24 - -Core and Builtins ------------------ - -- Issue #23996: Avoid a crash when a delegated generator raises an - unnormalized StopIteration exception. Patch by Stefan Behnel. - -- Issue #23910: Optimize property() getter calls. Patch by Joe Jevnik. - -- Issue #24022: Fix tokenizer crash when processing undecodable source code. - -- Issue #9951: Added a hex() method to bytes, bytearray, and memoryview. - -Library -------- - -- Issue #9246: On POSIX, os.getcwd() now supports paths longer than 1025 bytes. - Patch written by William Orr. - -- Issue #17445: add difflib.diff_bytes() to support comparison of - byte strings (fixes a regression from Python 2). - -- Issue #23917: Fall back to sequential compilation when ProcessPoolExecutor - doesn't exist. Patch by Claudiu Popa. - -- Issue #23008: Fixed resolving attributes with boolean value is False in pydoc. - -- Fix asyncio issue 235: LifoQueue and PriorityQueue's put didn't - increment unfinished tasks (this bug was introduced when - JoinableQueue was merged with Queue). - -- Issue #23908: os functions now reject paths with embedded null character - on Windows instead of silently truncate them. - -- Issue #23728: binascii.crc_hqx() could return an integer outside of the range - 0-0xffff for empty data. - -- Issue #23887: urllib.error.HTTPError now has a proper repr() representation. - Patch by Berker Peksag. - -Documentation -------------- - -- Issue #24029: Document the name binding behavior for submodule imports. - -- Issue #24077: Fix typo in man page for -I command option: -s, not -S - -Tools/Demos ------------ - -- Issue #24031: make patchcheck now supports git checkouts, too. - What's New in Python 3.5.0 alpha 4? =================================== -Release date: 2015-04-19 +Release date: XXX Core and Builtins ----------------- @@ -90,11 +34,6 @@ - Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError on non-integer input. -- Issue #24044: Fix possible null pointer dereference in list.sort in out of - memory conditions. - -- Issue #21354: PyCFunction_New function is exposed by python DLL again. - Library ------- @@ -234,7 +173,6 @@ - Issue #23310: Fix MagicMock's initializer to work with __methods__, just like configure_mock(). Patch by Kasia Jachim. - Build ----- diff --git a/Misc/python.man b/Misc/python.man --- a/Misc/python.man +++ b/Misc/python.man @@ -87,7 +87,8 @@ .SH DESCRIPTION Python is an interpreted, interactive, object-oriented programming language that combines remarkable power with very clear syntax. -For an introduction to programming in Python, see the Python Tutorial. +For an introduction to programming in Python you are referred to the +Python Tutorial. The Python Library Reference documents built-in and standard types, constants, functions and modules. Finally, the Python Reference Manual describes the syntax and @@ -142,7 +143,7 @@ raises an exception. .TP .B \-I -Run Python in isolated mode. This also implies \fB\-E\fP and \fB\-s\fP. In +Run Python in isolated mode. This also implies \fB\-E\fP and \fB\-S\fP. In isolated mode sys.path contains neither the script’s directory nor the user’s site-packages directory. All PYTHON* environment variables are ignored, too. Further restrictions may be imposed to prevent the user from injecting @@ -431,17 +432,17 @@ The integer must be a decimal number in the range [0,4294967295]. Specifying the value 0 will disable hash randomization. .SH AUTHOR -The Python Software Foundation: https://www.python.org/psf +The Python Software Foundation: http://www.python.org/psf .SH INTERNET RESOURCES -Main website: https://www.python.org/ +Main website: http://www.python.org/ .br -Documentation: https://docs.python.org/ +Documentation: http://docs.python.org/py3k/ .br -Developer resources: https://docs.python.org/devguide/ +Developer resources: http://docs.python.org/devguide/ .br -Downloads: https://www.python.org/downloads/ +Downloads: http://python.org/download/ .br -Module repository: https://pypi.python.org/ +Module repository: http://pypi.python.org/ .br Newsgroups: comp.lang.python, comp.lang.python.announce .SH LICENSING diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c --- a/Modules/_hashopenssl.c +++ b/Modules/_hashopenssl.c @@ -16,7 +16,6 @@ #include "Python.h" #include "structmember.h" #include "hashlib.h" -#include "pystrhex.h" /* EVP is the preferred interface to hashing in OpenSSL */ @@ -158,7 +157,9 @@ { unsigned char digest[EVP_MAX_MD_SIZE]; EVP_MD_CTX temp_ctx; - unsigned int digest_size; + PyObject *retval; + char *hex_digest; + unsigned int i, j, digest_size; /* Get the raw (binary) digest value */ locked_EVP_MD_CTX_copy(&temp_ctx, self); @@ -167,7 +168,22 @@ EVP_MD_CTX_cleanup(&temp_ctx); - return _Py_strhex((const char *)digest, digest_size); + /* Allocate a new buffer */ + hex_digest = PyMem_Malloc(digest_size * 2 + 1); + if (!hex_digest) + return PyErr_NoMemory(); + + /* Make hex version of the digest */ + for(i=j=0; i> 4) & 0xf; + hex_digest[j++] = Py_hexdigits[c]; + c = (digest[i] & 0xf); + hex_digest[j++] = Py_hexdigits[c]; + } + retval = PyUnicode_FromStringAndSize(hex_digest, digest_size * 2); + PyMem_Free(hex_digest); + return retval; } PyDoc_STRVAR(EVP_update__doc__, diff --git a/Modules/_io/clinic/_iomodule.c.h b/Modules/_io/clinic/_iomodule.c.h --- a/Modules/_io/clinic/_iomodule.c.h +++ b/Modules/_io/clinic/_iomodule.c.h @@ -148,7 +148,8 @@ int closefd = 1; PyObject *opener = Py_None; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|sizzziO:open", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|sizzziO:open", _keywords, &file, &mode, &buffering, &encoding, &errors, &newline, &closefd, &opener)) goto exit; return_value = _io_open_impl(module, file, mode, buffering, encoding, errors, newline, closefd, opener); @@ -156,4 +157,4 @@ exit: return return_value; } -/*[clinic end generated code: output=97cdc09bf68a8064 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=c51a5a443c11f02b input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/bufferedio.c.h b/Modules/_io/clinic/bufferedio.c.h --- a/Modules/_io/clinic/bufferedio.c.h +++ b/Modules/_io/clinic/bufferedio.c.h @@ -19,7 +19,9 @@ PyObject *return_value = NULL; Py_buffer buffer = {NULL, NULL}; - if (!PyArg_Parse(arg, "w*:readinto", &buffer)) + if (!PyArg_Parse(arg, + "w*:readinto", + &buffer)) goto exit; return_value = _io__BufferedIOBase_readinto_impl(self, &buffer); @@ -48,7 +50,9 @@ PyObject *return_value = NULL; Py_buffer buffer = {NULL, NULL}; - if (!PyArg_Parse(arg, "w*:readinto1", &buffer)) + if (!PyArg_Parse(arg, + "w*:readinto1", + &buffer)) goto exit; return_value = _io__BufferedIOBase_readinto1_impl(self, &buffer); @@ -98,7 +102,8 @@ PyObject *return_value = NULL; Py_ssize_t size = 0; - if (!PyArg_ParseTuple(args, "|n:peek", + if (!PyArg_ParseTuple(args, + "|n:peek", &size)) goto exit; return_value = _io__Buffered_peek_impl(self, size); @@ -124,7 +129,8 @@ PyObject *return_value = NULL; Py_ssize_t n = -1; - if (!PyArg_ParseTuple(args, "|O&:read", + if (!PyArg_ParseTuple(args, + "|O&:read", _PyIO_ConvertSsize_t, &n)) goto exit; return_value = _io__Buffered_read_impl(self, n); @@ -150,7 +156,9 @@ PyObject *return_value = NULL; Py_ssize_t n; - if (!PyArg_Parse(arg, "n:read1", &n)) + if (!PyArg_Parse(arg, + "n:read1", + &n)) goto exit; return_value = _io__Buffered_read1_impl(self, n); @@ -175,7 +183,9 @@ PyObject *return_value = NULL; Py_buffer buffer = {NULL, NULL}; - if (!PyArg_Parse(arg, "w*:readinto", &buffer)) + if (!PyArg_Parse(arg, + "w*:readinto", + &buffer)) goto exit; return_value = _io__Buffered_readinto_impl(self, &buffer); @@ -204,7 +214,9 @@ PyObject *return_value = NULL; Py_buffer buffer = {NULL, NULL}; - if (!PyArg_Parse(arg, "w*:readinto1", &buffer)) + if (!PyArg_Parse(arg, + "w*:readinto1", + &buffer)) goto exit; return_value = _io__Buffered_readinto1_impl(self, &buffer); @@ -233,7 +245,8 @@ PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!PyArg_ParseTuple(args, "|O&:readline", + if (!PyArg_ParseTuple(args, + "|O&:readline", _PyIO_ConvertSsize_t, &size)) goto exit; return_value = _io__Buffered_readline_impl(self, size); @@ -260,7 +273,8 @@ PyObject *targetobj; int whence = 0; - if (!PyArg_ParseTuple(args, "O|i:seek", + if (!PyArg_ParseTuple(args, + "O|i:seek", &targetobj, &whence)) goto exit; return_value = _io__Buffered_seek_impl(self, targetobj, whence); @@ -314,7 +328,8 @@ PyObject *raw; Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|n:BufferedReader", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|n:BufferedReader", _keywords, &raw, &buffer_size)) goto exit; return_value = _io_BufferedReader___init___impl((buffered *)self, raw, buffer_size); @@ -345,7 +360,8 @@ PyObject *raw; Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|n:BufferedWriter", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|n:BufferedWriter", _keywords, &raw, &buffer_size)) goto exit; return_value = _io_BufferedWriter___init___impl((buffered *)self, raw, buffer_size); @@ -371,7 +387,9 @@ PyObject *return_value = NULL; Py_buffer buffer = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:write", &buffer)) + if (!PyArg_Parse(arg, + "y*:write", + &buffer)) goto exit; return_value = _io_BufferedWriter_write_impl(self, &buffer); @@ -412,7 +430,8 @@ if ((Py_TYPE(self) == &PyBufferedRWPair_Type) && !_PyArg_NoKeywords("BufferedRWPair", kwargs)) goto exit; - if (!PyArg_ParseTuple(args, "OO|n:BufferedRWPair", + if (!PyArg_ParseTuple(args, + "OO|n:BufferedRWPair", &reader, &writer, &buffer_size)) goto exit; return_value = _io_BufferedRWPair___init___impl((rwpair *)self, reader, writer, buffer_size); @@ -443,7 +462,8 @@ PyObject *raw; Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|n:BufferedRandom", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|n:BufferedRandom", _keywords, &raw, &buffer_size)) goto exit; return_value = _io_BufferedRandom___init___impl((buffered *)self, raw, buffer_size); @@ -451,4 +471,4 @@ exit: return return_value; } -/*[clinic end generated code: output=2bbb5e239b4ffe6f input=a9049054013a1b77]*/ +/*[clinic end generated code: output=78808e39f36e3fa9 input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/bytesio.c.h b/Modules/_io/clinic/bytesio.c.h --- a/Modules/_io/clinic/bytesio.c.h +++ b/Modules/_io/clinic/bytesio.c.h @@ -276,7 +276,9 @@ PyObject *return_value = NULL; Py_buffer buffer = {NULL, NULL}; - if (!PyArg_Parse(arg, "w*:readinto", &buffer)) + if (!PyArg_Parse(arg, + "w*:readinto", + &buffer)) goto exit; return_value = _io_BytesIO_readinto_impl(self, &buffer); @@ -344,7 +346,8 @@ Py_ssize_t pos; int whence = 0; - if (!PyArg_ParseTuple(args, "n|i:seek", + if (!PyArg_ParseTuple(args, + "n|i:seek", &pos, &whence)) goto exit; return_value = _io_BytesIO_seek_impl(self, pos, whence); @@ -411,7 +414,8 @@ static char *_keywords[] = {"initial_bytes", NULL}; PyObject *initvalue = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O:BytesIO", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|O:BytesIO", _keywords, &initvalue)) goto exit; return_value = _io_BytesIO___init___impl((bytesio *)self, initvalue); @@ -419,4 +423,4 @@ exit: return return_value; } -/*[clinic end generated code: output=500ccc149587fac4 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=e22697ada514f4eb input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/fileio.c.h b/Modules/_io/clinic/fileio.c.h --- a/Modules/_io/clinic/fileio.c.h +++ b/Modules/_io/clinic/fileio.c.h @@ -55,7 +55,8 @@ int closefd = 1; PyObject *opener = Py_None; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|siO:FileIO", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|siO:FileIO", _keywords, &nameobj, &mode, &closefd, &opener)) goto exit; return_value = _io_FileIO___init___impl((fileio *)self, nameobj, mode, closefd, opener); @@ -154,7 +155,9 @@ PyObject *return_value = NULL; Py_buffer buffer = {NULL, NULL}; - if (!PyArg_Parse(arg, "w*:readinto", &buffer)) + if (!PyArg_Parse(arg, + "w*:readinto", + &buffer)) goto exit; return_value = _io_FileIO_readinto_impl(self, &buffer); @@ -209,7 +212,8 @@ PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!PyArg_ParseTuple(args, "|O&:read", + if (!PyArg_ParseTuple(args, + "|O&:read", _PyIO_ConvertSsize_t, &size)) goto exit; return_value = _io_FileIO_read_impl(self, size); @@ -240,7 +244,9 @@ PyObject *return_value = NULL; Py_buffer b = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:write", &b)) + if (!PyArg_Parse(arg, + "y*:write", + &b)) goto exit; return_value = _io_FileIO_write_impl(self, &b); @@ -279,7 +285,8 @@ PyObject *pos; int whence = 0; - if (!PyArg_ParseTuple(args, "O|i:seek", + if (!PyArg_ParseTuple(args, + "O|i:seek", &pos, &whence)) goto exit; return_value = _io_FileIO_seek_impl(self, pos, whence); @@ -364,4 +371,4 @@ #ifndef _IO_FILEIO_TRUNCATE_METHODDEF #define _IO_FILEIO_TRUNCATE_METHODDEF #endif /* !defined(_IO_FILEIO_TRUNCATE_METHODDEF) */ -/*[clinic end generated code: output=b1a20b10c81add64 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=c6708e1980f6e02d input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/iobase.c.h b/Modules/_io/clinic/iobase.c.h --- a/Modules/_io/clinic/iobase.c.h +++ b/Modules/_io/clinic/iobase.c.h @@ -185,7 +185,8 @@ PyObject *return_value = NULL; Py_ssize_t limit = -1; - if (!PyArg_ParseTuple(args, "|O&:readline", + if (!PyArg_ParseTuple(args, + "|O&:readline", _PyIO_ConvertSsize_t, &limit)) goto exit; return_value = _io__IOBase_readline_impl(self, limit); @@ -216,7 +217,8 @@ PyObject *return_value = NULL; Py_ssize_t hint = -1; - if (!PyArg_ParseTuple(args, "|O&:readlines", + if (!PyArg_ParseTuple(args, + "|O&:readlines", _PyIO_ConvertSsize_t, &hint)) goto exit; return_value = _io__IOBase_readlines_impl(self, hint); @@ -250,7 +252,8 @@ PyObject *return_value = NULL; Py_ssize_t n = -1; - if (!PyArg_ParseTuple(args, "|n:read", + if (!PyArg_ParseTuple(args, + "|n:read", &n)) goto exit; return_value = _io__RawIOBase_read_impl(self, n); @@ -276,4 +279,4 @@ { return _io__RawIOBase_readall_impl(self); } -/*[clinic end generated code: output=fe034152b6884e65 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=84eef4b7541f54b7 input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/stringio.c.h b/Modules/_io/clinic/stringio.c.h --- a/Modules/_io/clinic/stringio.c.h +++ b/Modules/_io/clinic/stringio.c.h @@ -156,7 +156,8 @@ Py_ssize_t pos; int whence = 0; - if (!PyArg_ParseTuple(args, "n|i:seek", + if (!PyArg_ParseTuple(args, + "n|i:seek", &pos, &whence)) goto exit; return_value = _io_StringIO_seek_impl(self, pos, whence); @@ -221,7 +222,8 @@ PyObject *value = NULL; PyObject *newline_obj = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|OO:StringIO", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|OO:StringIO", _keywords, &value, &newline_obj)) goto exit; return_value = _io_StringIO___init___impl((stringio *)self, value, newline_obj); @@ -283,4 +285,4 @@ { return _io_StringIO_seekable_impl(self); } -/*[clinic end generated code: output=f061cf3a20cd14ed input=a9049054013a1b77]*/ +/*[clinic end generated code: output=f3062096d357c652 input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/textio.c.h b/Modules/_io/clinic/textio.c.h --- a/Modules/_io/clinic/textio.c.h +++ b/Modules/_io/clinic/textio.c.h @@ -29,7 +29,8 @@ int translate; PyObject *errors = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "Oi|O:IncrementalNewlineDecoder", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "Oi|O:IncrementalNewlineDecoder", _keywords, &decoder, &translate, &errors)) goto exit; return_value = _io_IncrementalNewlineDecoder___init___impl((nldecoder_object *)self, decoder, translate, errors); @@ -58,7 +59,8 @@ PyObject *input; int final = 0; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|i:decode", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|i:decode", _keywords, &input, &final)) goto exit; return_value = _io_IncrementalNewlineDecoder_decode_impl(self, input, final); @@ -161,7 +163,8 @@ int line_buffering = 0; int write_through = 0; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|zzzii:TextIOWrapper", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|zzzii:TextIOWrapper", _keywords, &buffer, &encoding, &errors, &newline, &line_buffering, &write_through)) goto exit; return_value = _io_TextIOWrapper___init___impl((textio *)self, buffer, encoding, errors, newline, line_buffering, write_through); @@ -204,7 +207,9 @@ PyObject *return_value = NULL; PyObject *text; - if (!PyArg_Parse(arg, "U:write", &text)) + if (!PyArg_Parse(arg, + "U:write", + &text)) goto exit; return_value = _io_TextIOWrapper_write_impl(self, text); @@ -229,7 +234,8 @@ PyObject *return_value = NULL; Py_ssize_t n = -1; - if (!PyArg_ParseTuple(args, "|O&:read", + if (!PyArg_ParseTuple(args, + "|O&:read", _PyIO_ConvertSsize_t, &n)) goto exit; return_value = _io_TextIOWrapper_read_impl(self, n); @@ -255,7 +261,8 @@ PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!PyArg_ParseTuple(args, "|n:readline", + if (!PyArg_ParseTuple(args, + "|n:readline", &size)) goto exit; return_value = _io_TextIOWrapper_readline_impl(self, size); @@ -282,7 +289,8 @@ PyObject *cookieObj; int whence = 0; - if (!PyArg_ParseTuple(args, "O|i:seek", + if (!PyArg_ParseTuple(args, + "O|i:seek", &cookieObj, &whence)) goto exit; return_value = _io_TextIOWrapper_seek_impl(self, cookieObj, whence); @@ -453,4 +461,4 @@ { return _io_TextIOWrapper_close_impl(self); } -/*[clinic end generated code: output=690608f85aab8ba5 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=a610bd3b694886c3 input=a9049054013a1b77]*/ diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c --- a/Modules/_io/fileio.c +++ b/Modules/_io/fileio.c @@ -281,14 +281,15 @@ #ifdef MS_WINDOWS if (PyUnicode_Check(nameobj)) { - Py_ssize_t length; - widename = PyUnicode_AsUnicodeAndSize(nameobj, &length); + int rv = _PyUnicode_HasNULChars(nameobj); + if (rv) { + if (rv != -1) + PyErr_SetString(PyExc_ValueError, "embedded null character"); + return -1; + } + widename = PyUnicode_AsUnicode(nameobj); if (widename == NULL) return -1; - if (wcslen(widename) != length) { - PyErr_SetString(PyExc_ValueError, "embedded null character"); - return -1; - } } else #endif if (fd < 0) diff --git a/Modules/_posixsubprocess.c b/Modules/_posixsubprocess.c --- a/Modules/_posixsubprocess.c +++ b/Modules/_posixsubprocess.c @@ -14,9 +14,6 @@ #ifdef HAVE_SYS_SYSCALL_H #include #endif -#if defined(HAVE_SYS_RESOURCE_H) -#include -#endif #ifdef HAVE_DIRENT_H #include #endif @@ -177,13 +174,6 @@ if (local_max_fd >= 0) return local_max_fd; #endif -#if defined(HAVE_SYS_RESOURCE_H) && defined(__OpenBSD__) - struct rlimit rl; - /* Not on the POSIX async signal safe functions list but likely - * safe. TODO - Someone should audit OpenBSD to make sure. */ - if (getrlimit(RLIMIT_NOFILE, &rl) >= 0) - return (long) rl.rlim_max; -#endif #ifdef _SC_OPEN_MAX local_max_fd = sysconf(_SC_OPEN_MAX); if (local_max_fd == -1) @@ -514,7 +504,7 @@ _Py_write_noraise(errpipe_write, "OSError:", 8); cur = hex_errno + sizeof(hex_errno); while (saved_errno != 0 && cur > hex_errno) { - *--cur = Py_hexdigits[saved_errno % 16]; + *--cur = "0123456789ABCDEF"[saved_errno % 16]; saved_errno /= 16; } _Py_write_noraise(errpipe_write, cur, hex_errno + sizeof(hex_errno) - cur); diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -52,12 +52,11 @@ #include "tkinter.h" -#if TK_HEX_VERSION < 0x08040200 +#if TK_VERSION_HEX < 0x08040002 #error "Tk older than 8.4 not supported" #endif -#if TK_HEX_VERSION >= 0x08050208 && TK_HEX_VERSION < 0x08060000 || \ - TK_HEX_VERSION >= 0x08060200 +#if TK_VERSION_HEX >= 0x08050000 #define HAVE_LIBTOMMAMTH #include #endif @@ -1228,7 +1227,7 @@ Tcl_GetCharLength(value)); } -#if TK_HEX_VERSION >= 0x08050000 +#if TK_VERSION_HEX >= 0x08050000 if (app->BooleanType == NULL && strcmp(value->typePtr->name, "booleanString") == 0) { /* booleanString type is not registered in Tcl */ diff --git a/Modules/binascii.c b/Modules/binascii.c --- a/Modules/binascii.c +++ b/Modules/binascii.c @@ -56,7 +56,6 @@ #define PY_SSIZE_T_CLEAN #include "Python.h" -#include "pystrhex.h" #ifdef USE_ZLIB_CRC32 #include "zlib.h" #endif @@ -909,31 +908,31 @@ /*[clinic input] -binascii.crc_hqx -> unsigned_int +binascii.crc_hqx -> int data: Py_buffer - crc: unsigned_int(bitwise=True) + crc: int / Compute hqx CRC incrementally. [clinic start generated code]*/ -static unsigned int -binascii_crc_hqx_impl(PyModuleDef *module, Py_buffer *data, unsigned int crc) -/*[clinic end generated code: output=167c2dac62625717 input=add8c53712ccceda]*/ +static int +binascii_crc_hqx_impl(PyModuleDef *module, Py_buffer *data, int crc) +/*[clinic end generated code: output=634dac18dfa863d7 input=68060931b2f51c8a]*/ { unsigned char *bin_data; + unsigned int ucrc = (unsigned int)crc; Py_ssize_t len; - crc &= 0xffff; bin_data = data->buf; len = data->len; while(len-- > 0) { - crc = ((crc<<8)&0xff00) ^ crctab_hqx[(crc>>8)^*bin_data++]; + ucrc=((ucrc<<8)&0xff00)^crctab_hqx[((ucrc>>8)&0xff)^*bin_data++]; } - return crc; + return (int)ucrc; } #ifndef USE_ZLIB_CRC32 @@ -1118,7 +1117,33 @@ binascii_b2a_hex_impl(PyModuleDef *module, Py_buffer *data) /*[clinic end generated code: output=179318922c2f8fda input=96423cfa299ff3b1]*/ { - return _Py_strhex_bytes((const char *)data->buf, data->len); + char* argbuf; + Py_ssize_t arglen; + PyObject *retval; + char* retbuf; + Py_ssize_t i, j; + + argbuf = data->buf; + arglen = data->len; + + assert(arglen >= 0); + if (arglen > PY_SSIZE_T_MAX / 2) + return PyErr_NoMemory(); + + retval = PyBytes_FromStringAndSize(NULL, arglen*2); + if (!retval) + return NULL; + retbuf = PyBytes_AS_STRING(retval); + + /* make hex version of string, taken from shamodule.c */ + for (i=j=0; i < arglen; i++) { + unsigned char c; + c = (argbuf[i] >> 4) & 0xf; + retbuf[j++] = Py_hexdigits[c]; + c = argbuf[i] & 0xf; + retbuf[j++] = Py_hexdigits[c]; + } + return retval; } /*[clinic input] @@ -1133,7 +1158,7 @@ binascii_hexlify_impl(PyModuleDef *module, Py_buffer *data) /*[clinic end generated code: output=6098440091fb61dc input=2e3afae7f083f061]*/ { - return _Py_strhex_bytes((const char *)data->buf, data->len); + return binascii_b2a_hex_impl(module, data); } static int diff --git a/Modules/cjkcodecs/clinic/multibytecodec.c.h b/Modules/cjkcodecs/clinic/multibytecodec.c.h --- a/Modules/cjkcodecs/clinic/multibytecodec.c.h +++ b/Modules/cjkcodecs/clinic/multibytecodec.c.h @@ -29,7 +29,8 @@ PyObject *input; const char *errors = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|z:encode", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|z:encode", _keywords, &input, &errors)) goto exit; return_value = _multibytecodec_MultibyteCodec_encode_impl(self, input, errors); @@ -65,7 +66,8 @@ Py_buffer input = {NULL, NULL}; const char *errors = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "y*|z:decode", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "y*|z:decode", _keywords, &input, &errors)) goto exit; return_value = _multibytecodec_MultibyteCodec_decode_impl(self, &input, errors); @@ -99,7 +101,8 @@ PyObject *input; int final = 0; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|i:encode", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|i:encode", _keywords, &input, &final)) goto exit; return_value = _multibytecodec_MultibyteIncrementalEncoder_encode_impl(self, input, final); @@ -146,7 +149,8 @@ Py_buffer input = {NULL, NULL}; int final = 0; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "y*|i:decode", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "y*|i:decode", _keywords, &input, &final)) goto exit; return_value = _multibytecodec_MultibyteIncrementalDecoder_decode_impl(self, &input, final); @@ -317,4 +321,4 @@ #define _MULTIBYTECODEC___CREATE_CODEC_METHODDEF \ {"__create_codec", (PyCFunction)_multibytecodec___create_codec, METH_O, _multibytecodec___create_codec__doc__}, -/*[clinic end generated code: output=c104f5fd548c1ac5 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=0fe582cb941024c1 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/_bz2module.c.h b/Modules/clinic/_bz2module.c.h --- a/Modules/clinic/_bz2module.c.h +++ b/Modules/clinic/_bz2module.c.h @@ -25,7 +25,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:compress", &data)) + if (!PyArg_Parse(arg, + "y*:compress", + &data)) goto exit; return_value = _bz2_BZ2Compressor_compress_impl(self, &data); @@ -82,7 +84,8 @@ if ((Py_TYPE(self) == &BZ2Compressor_Type) && !_PyArg_NoKeywords("BZ2Compressor", kwargs)) goto exit; - if (!PyArg_ParseTuple(args, "|i:BZ2Compressor", + if (!PyArg_ParseTuple(args, + "|i:BZ2Compressor", &compresslevel)) goto exit; return_value = _bz2_BZ2Compressor___init___impl((BZ2Compressor *)self, compresslevel); @@ -125,7 +128,8 @@ Py_buffer data = {NULL, NULL}; Py_ssize_t max_length = -1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "y*|n:decompress", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "y*|n:decompress", _keywords, &data, &max_length)) goto exit; return_value = _bz2_BZ2Decompressor_decompress_impl(self, &data, max_length); @@ -165,4 +169,4 @@ exit: return return_value; } -/*[clinic end generated code: output=fef29b76b3314fc7 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=e8a48a949969c355 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/_codecsmodule.c.h b/Modules/clinic/_codecsmodule.c.h --- a/Modules/clinic/_codecsmodule.c.h +++ b/Modules/clinic/_codecsmodule.c.h @@ -20,11 +20,13 @@ PyObject *return_value = NULL; const char *encoding; - if (!PyArg_Parse(arg, "s:_forget_codec", &encoding)) + if (!PyArg_Parse(arg, + "s:_forget_codec", + &encoding)) goto exit; return_value = _codecs__forget_codec_impl(module, encoding); exit: return return_value; } -/*[clinic end generated code: output=52cc017e06c8ef9a input=a9049054013a1b77]*/ +/*[clinic end generated code: output=fc5ce4d3166f7d96 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/_cryptmodule.c.h b/Modules/clinic/_cryptmodule.c.h --- a/Modules/clinic/_cryptmodule.c.h +++ b/Modules/clinic/_cryptmodule.c.h @@ -26,7 +26,8 @@ const char *word; const char *salt; - if (!PyArg_ParseTuple(args, "ss:crypt", + if (!PyArg_ParseTuple(args, + "ss:crypt", &word, &salt)) goto exit; return_value = crypt_crypt_impl(module, word, salt); @@ -34,4 +35,4 @@ exit: return return_value; } -/*[clinic end generated code: output=22c295c9bce018c4 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=b5b8d977189d19ea input=a9049054013a1b77]*/ diff --git a/Modules/clinic/_datetimemodule.c.h b/Modules/clinic/_datetimemodule.c.h --- a/Modules/clinic/_datetimemodule.c.h +++ b/Modules/clinic/_datetimemodule.c.h @@ -26,7 +26,8 @@ static char *_keywords[] = {"tz", NULL}; PyObject *tz = Py_None; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O:now", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|O:now", _keywords, &tz)) goto exit; return_value = datetime_datetime_now_impl(type, tz); @@ -34,4 +35,4 @@ exit: return return_value; } -/*[clinic end generated code: output=7f45c670d6e4953a input=a9049054013a1b77]*/ +/*[clinic end generated code: output=a5c51b96f10c462c input=a9049054013a1b77]*/ diff --git a/Modules/clinic/_dbmmodule.c.h b/Modules/clinic/_dbmmodule.c.h --- a/Modules/clinic/_dbmmodule.c.h +++ b/Modules/clinic/_dbmmodule.c.h @@ -59,7 +59,8 @@ Py_ssize_clean_t key_length; PyObject *default_value = NULL; - if (!PyArg_ParseTuple(args, "s#|O:get", + if (!PyArg_ParseTuple(args, + "s#|O:get", &key, &key_length, &default_value)) goto exit; return_value = _dbm_dbm_get_impl(self, key, key_length, default_value); @@ -92,7 +93,8 @@ Py_ssize_clean_t key_length; PyObject *default_value = NULL; - if (!PyArg_ParseTuple(args, "s#|O:setdefault", + if (!PyArg_ParseTuple(args, + "s#|O:setdefault", &key, &key_length, &default_value)) goto exit; return_value = _dbm_dbm_setdefault_impl(self, key, key_length, default_value); @@ -130,7 +132,8 @@ const char *flags = "r"; int mode = 438; - if (!PyArg_ParseTuple(args, "s|si:open", + if (!PyArg_ParseTuple(args, + "s|si:open", &filename, &flags, &mode)) goto exit; return_value = dbmopen_impl(module, filename, flags, mode); @@ -138,4 +141,4 @@ exit: return return_value; } -/*[clinic end generated code: output=1d92e81b28c558d0 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=951fcfdb6d667a61 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/_gdbmmodule.c.h b/Modules/clinic/_gdbmmodule.c.h --- a/Modules/clinic/_gdbmmodule.c.h +++ b/Modules/clinic/_gdbmmodule.c.h @@ -147,7 +147,9 @@ const char *key; Py_ssize_clean_t key_length; - if (!PyArg_Parse(arg, "s#:nextkey", &key, &key_length)) + if (!PyArg_Parse(arg, + "s#:nextkey", + &key, &key_length)) goto exit; return_value = _gdbm_gdbm_nextkey_impl(self, key, key_length); @@ -242,7 +244,8 @@ const char *flags = "r"; int mode = 438; - if (!PyArg_ParseTuple(args, "s|si:open", + if (!PyArg_ParseTuple(args, + "s|si:open", &name, &flags, &mode)) goto exit; return_value = dbmopen_impl(module, name, flags, mode); @@ -250,4 +253,4 @@ exit: return return_value; } -/*[clinic end generated code: output=d3d8d871bcccb68a input=a9049054013a1b77]*/ +/*[clinic end generated code: output=b41c68a5f30699cb input=a9049054013a1b77]*/ diff --git a/Modules/clinic/_lzmamodule.c.h b/Modules/clinic/_lzmamodule.c.h --- a/Modules/clinic/_lzmamodule.c.h +++ b/Modules/clinic/_lzmamodule.c.h @@ -25,7 +25,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:compress", &data)) + if (!PyArg_Parse(arg, + "y*:compress", + &data)) goto exit; return_value = _lzma_LZMACompressor_compress_impl(self, &data); @@ -93,7 +95,8 @@ Py_buffer data = {NULL, NULL}; Py_ssize_t max_length = -1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "y*|n:decompress", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "y*|n:decompress", _keywords, &data, &max_length)) goto exit; return_value = _lzma_LZMADecompressor_decompress_impl(self, &data, max_length); @@ -142,7 +145,8 @@ PyObject *memlimit = Py_None; PyObject *filters = Py_None; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|iOO:LZMADecompressor", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|iOO:LZMADecompressor", _keywords, &format, &memlimit, &filters)) goto exit; return_value = _lzma_LZMADecompressor___init___impl((Decompressor *)self, format, memlimit, filters); @@ -171,7 +175,9 @@ PyObject *return_value = NULL; int check_id; - if (!PyArg_Parse(arg, "i:is_check_supported", &check_id)) + if (!PyArg_Parse(arg, + "i:is_check_supported", + &check_id)) goto exit; return_value = _lzma_is_check_supported_impl(module, check_id); @@ -199,7 +205,9 @@ PyObject *return_value = NULL; lzma_filter filter = {LZMA_VLI_UNKNOWN, NULL}; - if (!PyArg_Parse(arg, "O&:_encode_filter_properties", lzma_filter_converter, &filter)) + if (!PyArg_Parse(arg, + "O&:_encode_filter_properties", + lzma_filter_converter, &filter)) goto exit; return_value = _lzma__encode_filter_properties_impl(module, filter); @@ -233,7 +241,8 @@ lzma_vli filter_id; Py_buffer encoded_props = {NULL, NULL}; - if (!PyArg_ParseTuple(args, "O&y*:_decode_filter_properties", + if (!PyArg_ParseTuple(args, + "O&y*:_decode_filter_properties", lzma_vli_converter, &filter_id, &encoded_props)) goto exit; return_value = _lzma__decode_filter_properties_impl(module, filter_id, &encoded_props); @@ -245,4 +254,4 @@ return return_value; } -/*[clinic end generated code: output=2d3e0842be3d3fe1 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=8981089cde080b54 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/_opcode.c.h b/Modules/clinic/_opcode.c.h --- a/Modules/clinic/_opcode.c.h +++ b/Modules/clinic/_opcode.c.h @@ -22,7 +22,8 @@ PyObject *oparg = Py_None; int _return_value; - if (!PyArg_ParseTuple(args, "i|O:stack_effect", + if (!PyArg_ParseTuple(args, + "i|O:stack_effect", &opcode, &oparg)) goto exit; _return_value = _opcode_stack_effect_impl(module, opcode, oparg); @@ -33,4 +34,4 @@ exit: return return_value; } -/*[clinic end generated code: output=8ee7cb735705e8b3 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=dbe45148bc21ecdf input=a9049054013a1b77]*/ diff --git a/Modules/clinic/_pickle.c.h b/Modules/clinic/_pickle.c.h --- a/Modules/clinic/_pickle.c.h +++ b/Modules/clinic/_pickle.c.h @@ -97,7 +97,8 @@ PyObject *protocol = NULL; int fix_imports = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|Op:Pickler", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|Op:Pickler", _keywords, &file, &protocol, &fix_imports)) goto exit; return_value = _pickle_Pickler___init___impl((PicklerObject *)self, file, protocol, fix_imports); @@ -287,7 +288,8 @@ const char *encoding = "ASCII"; const char *errors = "strict"; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|$pss:Unpickler", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|$pss:Unpickler", _keywords, &file, &fix_imports, &encoding, &errors)) goto exit; return_value = _pickle_Unpickler___init___impl((UnpicklerObject *)self, file, fix_imports, encoding, errors); @@ -393,7 +395,8 @@ PyObject *protocol = NULL; int fix_imports = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OO|O$p:dump", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "OO|O$p:dump", _keywords, &obj, &file, &protocol, &fix_imports)) goto exit; return_value = _pickle_dump_impl(module, obj, file, protocol, fix_imports); @@ -436,7 +439,8 @@ PyObject *protocol = NULL; int fix_imports = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|O$p:dumps", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|O$p:dumps", _keywords, &obj, &protocol, &fix_imports)) goto exit; return_value = _pickle_dumps_impl(module, obj, protocol, fix_imports); @@ -491,7 +495,8 @@ const char *encoding = "ASCII"; const char *errors = "strict"; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|$pss:load", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|$pss:load", _keywords, &file, &fix_imports, &encoding, &errors)) goto exit; return_value = _pickle_load_impl(module, file, fix_imports, encoding, errors); @@ -537,7 +542,8 @@ const char *encoding = "ASCII"; const char *errors = "strict"; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|$pss:loads", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O|$pss:loads", _keywords, &data, &fix_imports, &encoding, &errors)) goto exit; return_value = _pickle_loads_impl(module, data, fix_imports, encoding, errors); @@ -545,4 +551,4 @@ exit: return return_value; } -/*[clinic end generated code: output=06f3a5233298448e input=a9049054013a1b77]*/ +/*[clinic end generated code: output=2c413ecc2ec74f7c input=a9049054013a1b77]*/ diff --git a/Modules/clinic/arraymodule.c.h b/Modules/clinic/arraymodule.c.h --- a/Modules/clinic/arraymodule.c.h +++ b/Modules/clinic/arraymodule.c.h @@ -76,7 +76,8 @@ PyObject *return_value = NULL; Py_ssize_t i = -1; - if (!PyArg_ParseTuple(args, "|n:pop", + if (!PyArg_ParseTuple(args, + "|n:pop", &i)) goto exit; return_value = array_array_pop_impl(self, i); @@ -113,7 +114,8 @@ Py_ssize_t i; PyObject *v; - if (!PyArg_ParseTuple(args, "nO:insert", + if (!PyArg_ParseTuple(args, + "nO:insert", &i, &v)) goto exit; return_value = array_array_insert_impl(self, i, v); @@ -210,7 +212,8 @@ PyObject *f; Py_ssize_t n; - if (!PyArg_ParseTuple(args, "On:fromfile", + if (!PyArg_ParseTuple(args, + "On:fromfile", &f, &n)) goto exit; return_value = array_array_fromfile_impl(self, f, n); @@ -275,7 +278,9 @@ PyObject *return_value = NULL; Py_buffer buffer = {NULL, NULL}; - if (!PyArg_Parse(arg, "s*:fromstring", &buffer)) + if (!PyArg_Parse(arg, + "s*:fromstring", + &buffer)) goto exit; return_value = array_array_fromstring_impl(self, &buffer); @@ -305,7 +310,9 @@ PyObject *return_value = NULL; Py_buffer buffer = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:frombytes", &buffer)) + if (!PyArg_Parse(arg, + "y*:frombytes", + &buffer)) goto exit; return_value = array_array_frombytes_impl(self, &buffer); @@ -379,7 +386,9 @@ Py_UNICODE *ustr; Py_ssize_clean_t ustr_length; - if (!PyArg_Parse(arg, "u#:fromunicode", &ustr, &ustr_length)) + if (!PyArg_Parse(arg, + "u#:fromunicode", + &ustr, &ustr_length)) goto exit; return_value = array_array_fromunicode_impl(self, ustr, ustr_length); @@ -452,7 +461,8 @@ enum machine_format_code mformat_code; PyObject *items; - if (!PyArg_ParseTuple(args, "OCiO:_array_reconstructor", + if (!PyArg_ParseTuple(args, + "OCiO:_array_reconstructor", &arraytype, &typecode, &mformat_code, &items)) goto exit; return_value = array__array_reconstructor_impl(module, arraytype, typecode, mformat_code, items); @@ -496,4 +506,4 @@ #define ARRAY_ARRAYITERATOR___SETSTATE___METHODDEF \ {"__setstate__", (PyCFunction)array_arrayiterator___setstate__, METH_O, array_arrayiterator___setstate____doc__}, -/*[clinic end generated code: output=d2e82c65ea841cfc input=a9049054013a1b77]*/ +/*[clinic end generated code: output=48e8198c8087cd00 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/audioop.c.h b/Modules/clinic/audioop.c.h --- a/Modules/clinic/audioop.c.h +++ b/Modules/clinic/audioop.c.h @@ -23,7 +23,8 @@ int width; Py_ssize_t index; - if (!PyArg_ParseTuple(args, "y*in:getsample", + if (!PyArg_ParseTuple(args, + "y*in:getsample", &fragment, &width, &index)) goto exit; return_value = audioop_getsample_impl(module, &fragment, width, index); @@ -55,7 +56,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:max", + if (!PyArg_ParseTuple(args, + "y*i:max", &fragment, &width)) goto exit; return_value = audioop_max_impl(module, &fragment, width); @@ -87,7 +89,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:minmax", + if (!PyArg_ParseTuple(args, + "y*i:minmax", &fragment, &width)) goto exit; return_value = audioop_minmax_impl(module, &fragment, width); @@ -119,7 +122,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:avg", + if (!PyArg_ParseTuple(args, + "y*i:avg", &fragment, &width)) goto exit; return_value = audioop_avg_impl(module, &fragment, width); @@ -151,7 +155,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:rms", + if (!PyArg_ParseTuple(args, + "y*i:rms", &fragment, &width)) goto exit; return_value = audioop_rms_impl(module, &fragment, width); @@ -184,7 +189,8 @@ Py_buffer fragment = {NULL, NULL}; Py_buffer reference = {NULL, NULL}; - if (!PyArg_ParseTuple(args, "y*y*:findfit", + if (!PyArg_ParseTuple(args, + "y*y*:findfit", &fragment, &reference)) goto exit; return_value = audioop_findfit_impl(module, &fragment, &reference); @@ -220,7 +226,8 @@ Py_buffer fragment = {NULL, NULL}; Py_buffer reference = {NULL, NULL}; - if (!PyArg_ParseTuple(args, "y*y*:findfactor", + if (!PyArg_ParseTuple(args, + "y*y*:findfactor", &fragment, &reference)) goto exit; return_value = audioop_findfactor_impl(module, &fragment, &reference); @@ -256,7 +263,8 @@ Py_buffer fragment = {NULL, NULL}; Py_ssize_t length; - if (!PyArg_ParseTuple(args, "y*n:findmax", + if (!PyArg_ParseTuple(args, + "y*n:findmax", &fragment, &length)) goto exit; return_value = audioop_findmax_impl(module, &fragment, length); @@ -288,7 +296,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:avgpp", + if (!PyArg_ParseTuple(args, + "y*i:avgpp", &fragment, &width)) goto exit; return_value = audioop_avgpp_impl(module, &fragment, width); @@ -320,7 +329,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:maxpp", + if (!PyArg_ParseTuple(args, + "y*i:maxpp", &fragment, &width)) goto exit; return_value = audioop_maxpp_impl(module, &fragment, width); @@ -352,7 +362,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:cross", + if (!PyArg_ParseTuple(args, + "y*i:cross", &fragment, &width)) goto exit; return_value = audioop_cross_impl(module, &fragment, width); @@ -386,7 +397,8 @@ int width; double factor; - if (!PyArg_ParseTuple(args, "y*id:mul", + if (!PyArg_ParseTuple(args, + "y*id:mul", &fragment, &width, &factor)) goto exit; return_value = audioop_mul_impl(module, &fragment, width, factor); @@ -421,7 +433,8 @@ double lfactor; double rfactor; - if (!PyArg_ParseTuple(args, "y*idd:tomono", + if (!PyArg_ParseTuple(args, + "y*idd:tomono", &fragment, &width, &lfactor, &rfactor)) goto exit; return_value = audioop_tomono_impl(module, &fragment, width, lfactor, rfactor); @@ -456,7 +469,8 @@ double lfactor; double rfactor; - if (!PyArg_ParseTuple(args, "y*idd:tostereo", + if (!PyArg_ParseTuple(args, + "y*idd:tostereo", &fragment, &width, &lfactor, &rfactor)) goto exit; return_value = audioop_tostereo_impl(module, &fragment, width, lfactor, rfactor); @@ -490,7 +504,8 @@ Py_buffer fragment2 = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*y*i:add", + if (!PyArg_ParseTuple(args, + "y*y*i:add", &fragment1, &fragment2, &width)) goto exit; return_value = audioop_add_impl(module, &fragment1, &fragment2, width); @@ -527,7 +542,8 @@ int width; int bias; - if (!PyArg_ParseTuple(args, "y*ii:bias", + if (!PyArg_ParseTuple(args, + "y*ii:bias", &fragment, &width, &bias)) goto exit; return_value = audioop_bias_impl(module, &fragment, width, bias); @@ -559,7 +575,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:reverse", + if (!PyArg_ParseTuple(args, + "y*i:reverse", &fragment, &width)) goto exit; return_value = audioop_reverse_impl(module, &fragment, width); @@ -591,7 +608,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:byteswap", + if (!PyArg_ParseTuple(args, + "y*i:byteswap", &fragment, &width)) goto exit; return_value = audioop_byteswap_impl(module, &fragment, width); @@ -625,7 +643,8 @@ int width; int newwidth; - if (!PyArg_ParseTuple(args, "y*ii:lin2lin", + if (!PyArg_ParseTuple(args, + "y*ii:lin2lin", &fragment, &width, &newwidth)) goto exit; return_value = audioop_lin2lin_impl(module, &fragment, width, newwidth); @@ -666,7 +685,8 @@ int weightA = 1; int weightB = 0; - if (!PyArg_ParseTuple(args, "y*iiiiO|ii:ratecv", + if (!PyArg_ParseTuple(args, + "y*iiiiO|ii:ratecv", &fragment, &width, &nchannels, &inrate, &outrate, &state, &weightA, &weightB)) goto exit; return_value = audioop_ratecv_impl(module, &fragment, width, nchannels, inrate, outrate, state, weightA, weightB); @@ -698,7 +718,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:lin2ulaw", + if (!PyArg_ParseTuple(args, + "y*i:lin2ulaw", &fragment, &width)) goto exit; return_value = audioop_lin2ulaw_impl(module, &fragment, width); @@ -730,7 +751,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:ulaw2lin", + if (!PyArg_ParseTuple(args, + "y*i:ulaw2lin", &fragment, &width)) goto exit; return_value = audioop_ulaw2lin_impl(module, &fragment, width); @@ -762,7 +784,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:lin2alaw", + if (!PyArg_ParseTuple(args, + "y*i:lin2alaw", &fragment, &width)) goto exit; return_value = audioop_lin2alaw_impl(module, &fragment, width); @@ -794,7 +817,8 @@ Py_buffer fragment = {NULL, NULL}; int width; - if (!PyArg_ParseTuple(args, "y*i:alaw2lin", + if (!PyArg_ParseTuple(args, + "y*i:alaw2lin", &fragment, &width)) goto exit; return_value = audioop_alaw2lin_impl(module, &fragment, width); @@ -828,7 +852,8 @@ int width; PyObject *state; - if (!PyArg_ParseTuple(args, "y*iO:lin2adpcm", + if (!PyArg_ParseTuple(args, + "y*iO:lin2adpcm", &fragment, &width, &state)) goto exit; return_value = audioop_lin2adpcm_impl(module, &fragment, width, state); @@ -862,7 +887,8 @@ int width; PyObject *state; - if (!PyArg_ParseTuple(args, "y*iO:adpcm2lin", + if (!PyArg_ParseTuple(args, + "y*iO:adpcm2lin", &fragment, &width, &state)) goto exit; return_value = audioop_adpcm2lin_impl(module, &fragment, width, state); @@ -874,4 +900,4 @@ return return_value; } -/*[clinic end generated code: output=a076e1b213a8727b input=a9049054013a1b77]*/ +/*[clinic end generated code: output=9b01aafef50425ae input=a9049054013a1b77]*/ diff --git a/Modules/clinic/binascii.c.h b/Modules/clinic/binascii.c.h --- a/Modules/clinic/binascii.c.h +++ b/Modules/clinic/binascii.c.h @@ -20,7 +20,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "O&:a2b_uu", ascii_buffer_converter, &data)) + if (!PyArg_Parse(arg, + "O&:a2b_uu", + ascii_buffer_converter, &data)) goto exit; return_value = binascii_a2b_uu_impl(module, &data); @@ -50,7 +52,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:b2a_uu", &data)) + if (!PyArg_Parse(arg, + "y*:b2a_uu", + &data)) goto exit; return_value = binascii_b2a_uu_impl(module, &data); @@ -80,7 +84,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "O&:a2b_base64", ascii_buffer_converter, &data)) + if (!PyArg_Parse(arg, + "O&:a2b_base64", + ascii_buffer_converter, &data)) goto exit; return_value = binascii_a2b_base64_impl(module, &data); @@ -110,7 +116,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:b2a_base64", &data)) + if (!PyArg_Parse(arg, + "y*:b2a_base64", + &data)) goto exit; return_value = binascii_b2a_base64_impl(module, &data); @@ -140,7 +148,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "O&:a2b_hqx", ascii_buffer_converter, &data)) + if (!PyArg_Parse(arg, + "O&:a2b_hqx", + ascii_buffer_converter, &data)) goto exit; return_value = binascii_a2b_hqx_impl(module, &data); @@ -170,7 +180,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:rlecode_hqx", &data)) + if (!PyArg_Parse(arg, + "y*:rlecode_hqx", + &data)) goto exit; return_value = binascii_rlecode_hqx_impl(module, &data); @@ -200,7 +212,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:b2a_hqx", &data)) + if (!PyArg_Parse(arg, + "y*:b2a_hqx", + &data)) goto exit; return_value = binascii_b2a_hqx_impl(module, &data); @@ -230,7 +244,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:rledecode_hqx", &data)) + if (!PyArg_Parse(arg, + "y*:rledecode_hqx", + &data)) goto exit; return_value = binascii_rledecode_hqx_impl(module, &data); @@ -251,24 +267,25 @@ #define BINASCII_CRC_HQX_METHODDEF \ {"crc_hqx", (PyCFunction)binascii_crc_hqx, METH_VARARGS, binascii_crc_hqx__doc__}, -static unsigned int -binascii_crc_hqx_impl(PyModuleDef *module, Py_buffer *data, unsigned int crc); +static int +binascii_crc_hqx_impl(PyModuleDef *module, Py_buffer *data, int crc); static PyObject * binascii_crc_hqx(PyModuleDef *module, PyObject *args) { PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - unsigned int crc; - unsigned int _return_value; + int crc; + int _return_value; - if (!PyArg_ParseTuple(args, "y*I:crc_hqx", + if (!PyArg_ParseTuple(args, + "y*i:crc_hqx", &data, &crc)) goto exit; _return_value = binascii_crc_hqx_impl(module, &data, crc); - if ((_return_value == (unsigned int)-1) && PyErr_Occurred()) + if ((_return_value == -1) && PyErr_Occurred()) goto exit; - return_value = PyLong_FromUnsignedLong((unsigned long)_return_value); + return_value = PyLong_FromLong((long)_return_value); exit: /* Cleanup for data */ @@ -298,7 +315,8 @@ unsigned int crc = 0; unsigned int _return_value; - if (!PyArg_ParseTuple(args, "y*|I:crc32", + if (!PyArg_ParseTuple(args, + "y*|I:crc32", &data, &crc)) goto exit; _return_value = binascii_crc32_impl(module, &data, crc); @@ -335,7 +353,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:b2a_hex", &data)) + if (!PyArg_Parse(arg, + "y*:b2a_hex", + &data)) goto exit; return_value = binascii_b2a_hex_impl(module, &data); @@ -367,7 +387,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:hexlify", &data)) + if (!PyArg_Parse(arg, + "y*:hexlify", + &data)) goto exit; return_value = binascii_hexlify_impl(module, &data); @@ -400,7 +422,9 @@ PyObject *return_value = NULL; Py_buffer hexstr = {NULL, NULL}; - if (!PyArg_Parse(arg, "O&:a2b_hex", ascii_buffer_converter, &hexstr)) + if (!PyArg_Parse(arg, + "O&:a2b_hex", + ascii_buffer_converter, &hexstr)) goto exit; return_value = binascii_a2b_hex_impl(module, &hexstr); @@ -432,7 +456,9 @@ PyObject *return_value = NULL; Py_buffer hexstr = {NULL, NULL}; - if (!PyArg_Parse(arg, "O&:unhexlify", ascii_buffer_converter, &hexstr)) + if (!PyArg_Parse(arg, + "O&:unhexlify", + ascii_buffer_converter, &hexstr)) goto exit; return_value = binascii_unhexlify_impl(module, &hexstr); @@ -464,7 +490,8 @@ Py_buffer data = {NULL, NULL}; int header = 0; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|i:a2b_qp", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&|i:a2b_qp", _keywords, ascii_buffer_converter, &data, &header)) goto exit; return_value = binascii_a2b_qp_impl(module, &data, header); @@ -504,7 +531,8 @@ int istext = 1; int header = 0; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "y*|iii:b2a_qp", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "y*|iii:b2a_qp", _keywords, &data, "etabs, &istext, &header)) goto exit; return_value = binascii_b2a_qp_impl(module, &data, quotetabs, istext, header); @@ -516,4 +544,4 @@ return return_value; } -/*[clinic end generated code: output=b1a3cbf7660ebaa5 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=175025a8a94fbdd1 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/cmathmodule.c.h b/Modules/clinic/cmathmodule.c.h --- a/Modules/clinic/cmathmodule.c.h +++ b/Modules/clinic/cmathmodule.c.h @@ -21,7 +21,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:acos", &z)) + if (!PyArg_Parse(arg, + "D:acos", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -62,7 +64,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:acosh", &z)) + if (!PyArg_Parse(arg, + "D:acosh", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -103,7 +107,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:asin", &z)) + if (!PyArg_Parse(arg, + "D:asin", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -144,7 +150,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:asinh", &z)) + if (!PyArg_Parse(arg, + "D:asinh", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -185,7 +193,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:atan", &z)) + if (!PyArg_Parse(arg, + "D:atan", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -226,7 +236,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:atanh", &z)) + if (!PyArg_Parse(arg, + "D:atanh", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -267,7 +279,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:cos", &z)) + if (!PyArg_Parse(arg, + "D:cos", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -308,7 +322,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:cosh", &z)) + if (!PyArg_Parse(arg, + "D:cosh", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -349,7 +365,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:exp", &z)) + if (!PyArg_Parse(arg, + "D:exp", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -390,7 +408,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:log10", &z)) + if (!PyArg_Parse(arg, + "D:log10", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -431,7 +451,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:sin", &z)) + if (!PyArg_Parse(arg, + "D:sin", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -472,7 +494,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:sinh", &z)) + if (!PyArg_Parse(arg, + "D:sinh", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -513,7 +537,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:sqrt", &z)) + if (!PyArg_Parse(arg, + "D:sqrt", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -554,7 +580,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:tan", &z)) + if (!PyArg_Parse(arg, + "D:tan", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -595,7 +623,9 @@ Py_complex z; Py_complex _return_value; - if (!PyArg_Parse(arg, "D:tanh", &z)) + if (!PyArg_Parse(arg, + "D:tanh", + &z)) goto exit; /* modifications for z */ errno = 0; PyFPE_START_PROTECT("complex function", goto exit); @@ -638,7 +668,8 @@ Py_complex x; PyObject *y_obj = NULL; - if (!PyArg_ParseTuple(args, "D|O:log", + if (!PyArg_ParseTuple(args, + "D|O:log", &x, &y_obj)) goto exit; return_value = cmath_log_impl(module, x, y_obj); @@ -665,7 +696,9 @@ PyObject *return_value = NULL; Py_complex z; - if (!PyArg_Parse(arg, "D:phase", &z)) + if (!PyArg_Parse(arg, + "D:phase", + &z)) goto exit; return_value = cmath_phase_impl(module, z); @@ -693,7 +726,9 @@ PyObject *return_value = NULL; Py_complex z; - if (!PyArg_Parse(arg, "D:polar", &z)) + if (!PyArg_Parse(arg, + "D:polar", + &z)) goto exit; return_value = cmath_polar_impl(module, z); @@ -720,7 +755,8 @@ double r; double phi; - if (!PyArg_ParseTuple(args, "dd:rect", + if (!PyArg_ParseTuple(args, + "dd:rect", &r, &phi)) goto exit; return_value = cmath_rect_impl(module, r, phi); @@ -747,7 +783,9 @@ PyObject *return_value = NULL; Py_complex z; - if (!PyArg_Parse(arg, "D:isfinite", &z)) + if (!PyArg_Parse(arg, + "D:isfinite", + &z)) goto exit; return_value = cmath_isfinite_impl(module, z); @@ -773,7 +811,9 @@ PyObject *return_value = NULL; Py_complex z; - if (!PyArg_Parse(arg, "D:isnan", &z)) + if (!PyArg_Parse(arg, + "D:isnan", + &z)) goto exit; return_value = cmath_isnan_impl(module, z); @@ -799,11 +839,13 @@ PyObject *return_value = NULL; Py_complex z; - if (!PyArg_Parse(arg, "D:isinf", &z)) + if (!PyArg_Parse(arg, + "D:isinf", + &z)) goto exit; return_value = cmath_isinf_impl(module, z); exit: return return_value; } -/*[clinic end generated code: output=274f59792cf4f418 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=9143b8dcc8069024 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/fcntlmodule.c.h b/Modules/clinic/fcntlmodule.c.h --- a/Modules/clinic/fcntlmodule.c.h +++ b/Modules/clinic/fcntlmodule.c.h @@ -32,7 +32,8 @@ int code; PyObject *arg = NULL; - if (!PyArg_ParseTuple(args, "O&i|O:fcntl", + if (!PyArg_ParseTuple(args, + "O&i|O:fcntl", conv_descriptor, &fd, &code, &arg)) goto exit; return_value = fcntl_fcntl_impl(module, fd, code, arg); @@ -90,7 +91,8 @@ PyObject *ob_arg = NULL; int mutate_arg = 1; - if (!PyArg_ParseTuple(args, "O&I|Op:ioctl", + if (!PyArg_ParseTuple(args, + "O&I|Op:ioctl", conv_descriptor, &fd, &code, &ob_arg, &mutate_arg)) goto exit; return_value = fcntl_ioctl_impl(module, fd, code, ob_arg, mutate_arg); @@ -121,7 +123,8 @@ int fd; int code; - if (!PyArg_ParseTuple(args, "O&i:flock", + if (!PyArg_ParseTuple(args, + "O&i:flock", conv_descriptor, &fd, &code)) goto exit; return_value = fcntl_flock_impl(module, fd, code); @@ -174,7 +177,8 @@ PyObject *startobj = NULL; int whence = 0; - if (!PyArg_ParseTuple(args, "O&i|OOi:lockf", + if (!PyArg_ParseTuple(args, + "O&i|OOi:lockf", conv_descriptor, &fd, &code, &lenobj, &startobj, &whence)) goto exit; return_value = fcntl_lockf_impl(module, fd, code, lenobj, startobj, whence); @@ -182,4 +186,4 @@ exit: return return_value; } -/*[clinic end generated code: output=92963b631d00f0fe input=a9049054013a1b77]*/ +/*[clinic end generated code: output=badaa968eb04410d input=a9049054013a1b77]*/ diff --git a/Modules/clinic/grpmodule.c.h b/Modules/clinic/grpmodule.c.h --- a/Modules/clinic/grpmodule.c.h +++ b/Modules/clinic/grpmodule.c.h @@ -23,7 +23,8 @@ static char *_keywords[] = {"id", NULL}; PyObject *id; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O:getgrgid", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O:getgrgid", _keywords, &id)) goto exit; return_value = grp_getgrgid_impl(module, id); @@ -53,7 +54,8 @@ static char *_keywords[] = {"name", NULL}; PyObject *name; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "U:getgrnam", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "U:getgrnam", _keywords, &name)) goto exit; return_value = grp_getgrnam_impl(module, name); @@ -82,4 +84,4 @@ { return grp_getgrall_impl(module); } -/*[clinic end generated code: output=5191c25600afb1bd input=a9049054013a1b77]*/ +/*[clinic end generated code: output=4709a6ba40bb8df9 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/md5module.c.h b/Modules/clinic/md5module.c.h --- a/Modules/clinic/md5module.c.h +++ b/Modules/clinic/md5module.c.h @@ -84,7 +84,8 @@ static char *_keywords[] = {"string", NULL}; PyObject *string = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O:md5", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|O:md5", _keywords, &string)) goto exit; return_value = _md5_md5_impl(module, string); @@ -92,4 +93,4 @@ exit: return return_value; } -/*[clinic end generated code: output=0f803ded701aca54 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=f72618edfd35d984 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/posixmodule.c.h b/Modules/clinic/posixmodule.c.h --- a/Modules/clinic/posixmodule.c.h +++ b/Modules/clinic/posixmodule.c.h @@ -42,7 +42,8 @@ int dir_fd = DEFAULT_DIR_FD; int follow_symlinks = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|$O&p:stat", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&|$O&p:stat", _keywords, path_converter, &path, FSTATAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) goto exit; return_value = os_stat_impl(module, &path, dir_fd, follow_symlinks); @@ -77,7 +78,8 @@ path_t path = PATH_T_INITIALIZE("lstat", "path", 0, 0); int dir_fd = DEFAULT_DIR_FD; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|$O&:lstat", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&|$O&:lstat", _keywords, path_converter, &path, FSTATAT_DIR_FD_CONVERTER, &dir_fd)) goto exit; return_value = os_lstat_impl(module, &path, dir_fd); @@ -140,7 +142,8 @@ int follow_symlinks = 1; int _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&i|$O&pp:access", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&i|$O&pp:access", _keywords, path_converter, &path, &mode, FACCESSAT_DIR_FD_CONVERTER, &dir_fd, &effective_ids, &follow_symlinks)) goto exit; _return_value = os_access_impl(module, &path, mode, dir_fd, effective_ids, follow_symlinks); @@ -179,7 +182,9 @@ int fd; char *_return_value; - if (!PyArg_Parse(arg, "i:ttyname", &fd)) + if (!PyArg_Parse(arg, + "i:ttyname", + &fd)) goto exit; _return_value = os_ttyname_impl(module, fd); if (_return_value == NULL) @@ -237,7 +242,8 @@ static char *_keywords[] = {"path", NULL}; path_t path = PATH_T_INITIALIZE("chdir", "path", 0, PATH_HAVE_FCHDIR); - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&:chdir", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&:chdir", _keywords, path_converter, &path)) goto exit; return_value = os_chdir_impl(module, &path); @@ -273,7 +279,8 @@ static char *_keywords[] = {"fd", NULL}; int fd; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&:fchdir", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&:fchdir", _keywords, fildes_converter, &fd)) goto exit; return_value = os_fchdir_impl(module, fd); @@ -327,7 +334,8 @@ int dir_fd = DEFAULT_DIR_FD; int follow_symlinks = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&i|$O&p:chmod", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&i|$O&p:chmod", _keywords, path_converter, &path, &mode, FCHMODAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) goto exit; return_value = os_chmod_impl(module, &path, mode, dir_fd, follow_symlinks); @@ -363,7 +371,8 @@ int fd; int mode; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "ii:fchmod", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "ii:fchmod", _keywords, &fd, &mode)) goto exit; return_value = os_fchmod_impl(module, fd, mode); @@ -399,7 +408,8 @@ path_t path = PATH_T_INITIALIZE("lchmod", "path", 0, 0); int mode; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&i:lchmod", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&i:lchmod", _keywords, path_converter, &path, &mode)) goto exit; return_value = os_lchmod_impl(module, &path, mode); @@ -443,7 +453,8 @@ unsigned long flags; int follow_symlinks = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&k|p:chflags", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&k|p:chflags", _keywords, path_converter, &path, &flags, &follow_symlinks)) goto exit; return_value = os_chflags_impl(module, &path, flags, follow_symlinks); @@ -482,7 +493,8 @@ path_t path = PATH_T_INITIALIZE("lchflags", "path", 0, 0); unsigned long flags; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&k:lchflags", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&k:lchflags", _keywords, path_converter, &path, &flags)) goto exit; return_value = os_lchflags_impl(module, &path, flags); @@ -517,7 +529,8 @@ static char *_keywords[] = {"path", NULL}; path_t path = PATH_T_INITIALIZE("chroot", "path", 0, 0); - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&:chroot", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&:chroot", _keywords, path_converter, &path)) goto exit; return_value = os_chroot_impl(module, &path); @@ -552,7 +565,8 @@ static char *_keywords[] = {"fd", NULL}; int fd; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&:fsync", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&:fsync", _keywords, fildes_converter, &fd)) goto exit; return_value = os_fsync_impl(module, fd); @@ -606,7 +620,8 @@ static char *_keywords[] = {"fd", NULL}; int fd; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&:fdatasync", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&:fdatasync", _keywords, fildes_converter, &fd)) goto exit; return_value = os_fdatasync_impl(module, fd); @@ -667,7 +682,8 @@ int dir_fd = DEFAULT_DIR_FD; int follow_symlinks = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&O&|$O&p:chown", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&O&O&|$O&p:chown", _keywords, path_converter, &path, _Py_Uid_Converter, &uid, _Py_Gid_Converter, &gid, FCHOWNAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) goto exit; return_value = os_chown_impl(module, &path, uid, gid, dir_fd, follow_symlinks); @@ -706,7 +722,8 @@ uid_t uid; gid_t gid; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "iO&O&:fchown", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "iO&O&:fchown", _keywords, &fd, _Py_Uid_Converter, &uid, _Py_Gid_Converter, &gid)) goto exit; return_value = os_fchown_impl(module, fd, uid, gid); @@ -743,7 +760,8 @@ uid_t uid; gid_t gid; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&O&:lchown", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&O&O&:lchown", _keywords, path_converter, &path, _Py_Uid_Converter, &uid, _Py_Gid_Converter, &gid)) goto exit; return_value = os_lchown_impl(module, &path, uid, gid); @@ -830,7 +848,8 @@ int dst_dir_fd = DEFAULT_DIR_FD; int follow_symlinks = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&|$O&O&p:link", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&O&|$O&O&p:link", _keywords, path_converter, &src, path_converter, &dst, dir_fd_converter, &src_dir_fd, dir_fd_converter, &dst_dir_fd, &follow_symlinks)) goto exit; return_value = os_link_impl(module, &src, &dst, src_dir_fd, dst_dir_fd, follow_symlinks); @@ -876,7 +895,8 @@ static char *_keywords[] = {"path", NULL}; path_t path = PATH_T_INITIALIZE("listdir", "path", 1, PATH_HAVE_FDOPENDIR); - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O&:listdir", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|O&:listdir", _keywords, path_converter, &path)) goto exit; return_value = os_listdir_impl(module, &path); @@ -908,7 +928,9 @@ PyObject *return_value = NULL; PyObject *path; - if (!PyArg_Parse(arg, "U:_getfinalpathname", &path)) + if (!PyArg_Parse(arg, + "U:_getfinalpathname", + &path)) goto exit; return_value = os__getfinalpathname_impl(module, path); @@ -939,7 +961,8 @@ static char *_keywords[] = {"path", NULL}; PyObject *path; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "U:_getvolumepathname", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "U:_getvolumepathname", _keywords, &path)) goto exit; return_value = os__getvolumepathname_impl(module, path); @@ -978,7 +1001,8 @@ int mode = 511; int dir_fd = DEFAULT_DIR_FD; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|i$O&:mkdir", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&|i$O&:mkdir", _keywords, path_converter, &path, &mode, MKDIRAT_DIR_FD_CONVERTER, &dir_fd)) goto exit; return_value = os_mkdir_impl(module, &path, mode, dir_fd); @@ -1010,7 +1034,9 @@ PyObject *return_value = NULL; int increment; - if (!PyArg_Parse(arg, "i:nice", &increment)) + if (!PyArg_Parse(arg, + "i:nice", + &increment)) goto exit; return_value = os_nice_impl(module, increment); @@ -1042,7 +1068,8 @@ int which; int who; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "ii:getpriority", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "ii:getpriority", _keywords, &which, &who)) goto exit; return_value = os_getpriority_impl(module, which, who); @@ -1076,7 +1103,8 @@ int who; int priority; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "iii:setpriority", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "iii:setpriority", _keywords, &which, &who, &priority)) goto exit; return_value = os_setpriority_impl(module, which, who, priority); @@ -1116,7 +1144,8 @@ int src_dir_fd = DEFAULT_DIR_FD; int dst_dir_fd = DEFAULT_DIR_FD; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&|$O&O&:rename", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&O&|$O&O&:rename", _keywords, path_converter, &src, path_converter, &dst, dir_fd_converter, &src_dir_fd, dir_fd_converter, &dst_dir_fd)) goto exit; return_value = os_rename_impl(module, &src, &dst, src_dir_fd, dst_dir_fd); @@ -1159,7 +1188,8 @@ int src_dir_fd = DEFAULT_DIR_FD; int dst_dir_fd = DEFAULT_DIR_FD; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&|$O&O&:replace", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&O&|$O&O&:replace", _keywords, path_converter, &src, path_converter, &dst, dir_fd_converter, &src_dir_fd, dir_fd_converter, &dst_dir_fd)) goto exit; return_value = os_replace_impl(module, &src, &dst, src_dir_fd, dst_dir_fd); @@ -1198,7 +1228,8 @@ path_t path = PATH_T_INITIALIZE("rmdir", "path", 0, 0); int dir_fd = DEFAULT_DIR_FD; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|$O&:rmdir", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&|$O&:rmdir", _keywords, path_converter, &path, UNLINKAT_DIR_FD_CONVERTER, &dir_fd)) goto exit; return_value = os_rmdir_impl(module, &path, dir_fd); @@ -1232,7 +1263,8 @@ Py_UNICODE *command; long _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "u:system", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "u:system", _keywords, &command)) goto exit; _return_value = os_system_impl(module, command); @@ -1268,7 +1300,8 @@ PyObject *command = NULL; long _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&:system", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&:system", _keywords, PyUnicode_FSConverter, &command)) goto exit; _return_value = os_system_impl(module, command); @@ -1303,7 +1336,9 @@ PyObject *return_value = NULL; int mask; - if (!PyArg_Parse(arg, "i:umask", &mask)) + if (!PyArg_Parse(arg, + "i:umask", + &mask)) goto exit; return_value = os_umask_impl(module, mask); @@ -1336,7 +1371,8 @@ path_t path = PATH_T_INITIALIZE("unlink", "path", 0, 0); int dir_fd = DEFAULT_DIR_FD; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|$O&:unlink", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&|$O&:unlink", _keywords, path_converter, &path, UNLINKAT_DIR_FD_CONVERTER, &dir_fd)) goto exit; return_value = os_unlink_impl(module, &path, dir_fd); @@ -1373,7 +1409,8 @@ path_t path = PATH_T_INITIALIZE("remove", "path", 0, 0); int dir_fd = DEFAULT_DIR_FD; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|$O&:remove", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&|$O&:remove", _keywords, path_converter, &path, UNLINKAT_DIR_FD_CONVERTER, &dir_fd)) goto exit; return_value = os_remove_impl(module, &path, dir_fd); @@ -1457,7 +1494,8 @@ int dir_fd = DEFAULT_DIR_FD; int follow_symlinks = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|O$OO&p:utime", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&|O$OO&p:utime", _keywords, path_converter, &path, ×, &ns, FUTIMENSAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) goto exit; return_value = os_utime_impl(module, &path, times, ns, dir_fd, follow_symlinks); @@ -1488,7 +1526,8 @@ static char *_keywords[] = {"status", NULL}; int status; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:_exit", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:_exit", _keywords, &status)) goto exit; return_value = os__exit_impl(module, status); @@ -1523,7 +1562,8 @@ PyObject *path = NULL; PyObject *argv; - if (!PyArg_ParseTuple(args, "O&O:execv", + if (!PyArg_ParseTuple(args, + "O&O:execv", PyUnicode_FSConverter, &path, &argv)) goto exit; return_value = os_execv_impl(module, path, argv); @@ -1568,7 +1608,8 @@ PyObject *argv; PyObject *env; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&OO:execve", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&OO:execve", _keywords, path_converter, &path, &argv, &env)) goto exit; return_value = os_execve_impl(module, &path, argv, env); @@ -1611,7 +1652,8 @@ PyObject *path = NULL; PyObject *argv; - if (!PyArg_ParseTuple(args, "iO&O:spawnv", + if (!PyArg_ParseTuple(args, + "iO&O:spawnv", &mode, PyUnicode_FSConverter, &path, &argv)) goto exit; return_value = os_spawnv_impl(module, mode, path, argv); @@ -1658,7 +1700,8 @@ PyObject *argv; PyObject *env; - if (!PyArg_ParseTuple(args, "iO&OO:spawnve", + if (!PyArg_ParseTuple(args, + "iO&OO:spawnve", &mode, PyUnicode_FSConverter, &path, &argv, &env)) goto exit; return_value = os_spawnve_impl(module, mode, path, argv, env); @@ -1741,7 +1784,8 @@ static char *_keywords[] = {"policy", NULL}; int policy; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:sched_get_priority_max", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:sched_get_priority_max", _keywords, &policy)) goto exit; return_value = os_sched_get_priority_max_impl(module, policy); @@ -1773,7 +1817,8 @@ static char *_keywords[] = {"policy", NULL}; int policy; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:sched_get_priority_min", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:sched_get_priority_min", _keywords, &policy)) goto exit; return_value = os_sched_get_priority_min_impl(module, policy); @@ -1806,7 +1851,9 @@ PyObject *return_value = NULL; pid_t pid; - if (!PyArg_Parse(arg, "" _Py_PARSE_PID ":sched_getscheduler", &pid)) + if (!PyArg_Parse(arg, + "" _Py_PARSE_PID ":sched_getscheduler", + &pid)) goto exit; return_value = os_sched_getscheduler_impl(module, pid); @@ -1837,7 +1884,8 @@ static char *_keywords[] = {"sched_priority", NULL}; PyObject *sched_priority; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O:sched_param", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O:sched_param", _keywords, &sched_priority)) goto exit; return_value = os_sched_param_impl(type, sched_priority); @@ -1874,7 +1922,8 @@ int policy; struct sched_param param; - if (!PyArg_ParseTuple(args, "" _Py_PARSE_PID "iO&:sched_setscheduler", + if (!PyArg_ParseTuple(args, + "" _Py_PARSE_PID "iO&:sched_setscheduler", &pid, &policy, convert_sched_param, ¶m)) goto exit; return_value = os_sched_setscheduler_impl(module, pid, policy, ¶m); @@ -1908,7 +1957,9 @@ PyObject *return_value = NULL; pid_t pid; - if (!PyArg_Parse(arg, "" _Py_PARSE_PID ":sched_getparam", &pid)) + if (!PyArg_Parse(arg, + "" _Py_PARSE_PID ":sched_getparam", + &pid)) goto exit; return_value = os_sched_getparam_impl(module, pid); @@ -1943,7 +1994,8 @@ pid_t pid; struct sched_param param; - if (!PyArg_ParseTuple(args, "" _Py_PARSE_PID "O&:sched_setparam", + if (!PyArg_ParseTuple(args, + "" _Py_PARSE_PID "O&:sched_setparam", &pid, convert_sched_param, ¶m)) goto exit; return_value = os_sched_setparam_impl(module, pid, ¶m); @@ -1977,7 +2029,9 @@ pid_t pid; double _return_value; - if (!PyArg_Parse(arg, "" _Py_PARSE_PID ":sched_rr_get_interval", &pid)) + if (!PyArg_Parse(arg, + "" _Py_PARSE_PID ":sched_rr_get_interval", + &pid)) goto exit; _return_value = os_sched_rr_get_interval_impl(module, pid); if ((_return_value == -1.0) && PyErr_Occurred()) @@ -2035,7 +2089,8 @@ pid_t pid; PyObject *mask; - if (!PyArg_ParseTuple(args, "" _Py_PARSE_PID "O:sched_setaffinity", + if (!PyArg_ParseTuple(args, + "" _Py_PARSE_PID "O:sched_setaffinity", &pid, &mask)) goto exit; return_value = os_sched_setaffinity_impl(module, pid, mask); @@ -2068,7 +2123,9 @@ PyObject *return_value = NULL; pid_t pid; - if (!PyArg_Parse(arg, "" _Py_PARSE_PID ":sched_getaffinity", &pid)) + if (!PyArg_Parse(arg, + "" _Py_PARSE_PID ":sched_getaffinity", + &pid)) goto exit; return_value = os_sched_getaffinity_impl(module, pid); @@ -2257,7 +2314,8 @@ static char *_keywords[] = {"pid", NULL}; pid_t pid; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "" _Py_PARSE_PID ":getpgid", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "" _Py_PARSE_PID ":getpgid", _keywords, &pid)) goto exit; return_value = os_getpgid_impl(module, pid); @@ -2402,7 +2460,8 @@ pid_t pid; Py_ssize_t signal; - if (!PyArg_ParseTuple(args, "" _Py_PARSE_PID "n:kill", + if (!PyArg_ParseTuple(args, + "" _Py_PARSE_PID "n:kill", &pid, &signal)) goto exit; return_value = os_kill_impl(module, pid, signal); @@ -2434,7 +2493,8 @@ pid_t pgid; int signal; - if (!PyArg_ParseTuple(args, "" _Py_PARSE_PID "i:killpg", + if (!PyArg_ParseTuple(args, + "" _Py_PARSE_PID "i:killpg", &pgid, &signal)) goto exit; return_value = os_killpg_impl(module, pgid, signal); @@ -2465,7 +2525,9 @@ PyObject *return_value = NULL; int op; - if (!PyArg_Parse(arg, "i:plock", &op)) + if (!PyArg_Parse(arg, + "i:plock", + &op)) goto exit; return_value = os_plock_impl(module, op); @@ -2495,7 +2557,9 @@ PyObject *return_value = NULL; uid_t uid; - if (!PyArg_Parse(arg, "O&:setuid", _Py_Uid_Converter, &uid)) + if (!PyArg_Parse(arg, + "O&:setuid", + _Py_Uid_Converter, &uid)) goto exit; return_value = os_setuid_impl(module, uid); @@ -2525,7 +2589,9 @@ PyObject *return_value = NULL; uid_t euid; - if (!PyArg_Parse(arg, "O&:seteuid", _Py_Uid_Converter, &euid)) + if (!PyArg_Parse(arg, + "O&:seteuid", + _Py_Uid_Converter, &euid)) goto exit; return_value = os_seteuid_impl(module, euid); @@ -2555,7 +2621,9 @@ PyObject *return_value = NULL; gid_t egid; - if (!PyArg_Parse(arg, "O&:setegid", _Py_Gid_Converter, &egid)) + if (!PyArg_Parse(arg, + "O&:setegid", + _Py_Gid_Converter, &egid)) goto exit; return_value = os_setegid_impl(module, egid); @@ -2586,7 +2654,8 @@ uid_t ruid; uid_t euid; - if (!PyArg_ParseTuple(args, "O&O&:setreuid", + if (!PyArg_ParseTuple(args, + "O&O&:setreuid", _Py_Uid_Converter, &ruid, _Py_Uid_Converter, &euid)) goto exit; return_value = os_setreuid_impl(module, ruid, euid); @@ -2618,7 +2687,8 @@ gid_t rgid; gid_t egid; - if (!PyArg_ParseTuple(args, "O&O&:setregid", + if (!PyArg_ParseTuple(args, + "O&O&:setregid", _Py_Gid_Converter, &rgid, _Py_Gid_Converter, &egid)) goto exit; return_value = os_setregid_impl(module, rgid, egid); @@ -2649,7 +2719,9 @@ PyObject *return_value = NULL; gid_t gid; - if (!PyArg_Parse(arg, "O&:setgid", _Py_Gid_Converter, &gid)) + if (!PyArg_Parse(arg, + "O&:setgid", + _Py_Gid_Converter, &gid)) goto exit; return_value = os_setgid_impl(module, gid); @@ -2696,7 +2768,8 @@ static char *_keywords[] = {"options", NULL}; int options; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:wait3", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:wait3", _keywords, &options)) goto exit; return_value = os_wait3_impl(module, options); @@ -2732,7 +2805,8 @@ pid_t pid; int options; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "" _Py_PARSE_PID "i:wait4", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "" _Py_PARSE_PID "i:wait4", _keywords, &pid, &options)) goto exit; return_value = os_wait4_impl(module, pid, options); @@ -2776,7 +2850,8 @@ id_t id; int options; - if (!PyArg_ParseTuple(args, "i" _Py_PARSE_PID "i:waitid", + if (!PyArg_ParseTuple(args, + "i" _Py_PARSE_PID "i:waitid", &idtype, &id, &options)) goto exit; return_value = os_waitid_impl(module, idtype, id, options); @@ -2813,7 +2888,8 @@ pid_t pid; int options; - if (!PyArg_ParseTuple(args, "" _Py_PARSE_PID "i:waitpid", + if (!PyArg_ParseTuple(args, + "" _Py_PARSE_PID "i:waitpid", &pid, &options)) goto exit; return_value = os_waitpid_impl(module, pid, options); @@ -2850,7 +2926,8 @@ Py_intptr_t pid; int options; - if (!PyArg_ParseTuple(args, "" _Py_PARSE_INTPTR "i:waitpid", + if (!PyArg_ParseTuple(args, + "" _Py_PARSE_INTPTR "i:waitpid", &pid, &options)) goto exit; return_value = os_waitpid_impl(module, pid, options); @@ -2921,7 +2998,8 @@ int target_is_directory = 0; int dir_fd = DEFAULT_DIR_FD; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&|p$O&:symlink", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&O&|p$O&:symlink", _keywords, path_converter, &src, path_converter, &dst, &target_is_directory, SYMLINKAT_DIR_FD_CONVERTER, &dir_fd)) goto exit; return_value = os_symlink_impl(module, &src, &dst, target_is_directory, dir_fd); @@ -2983,7 +3061,9 @@ PyObject *return_value = NULL; pid_t pid; - if (!PyArg_Parse(arg, "" _Py_PARSE_PID ":getsid", &pid)) + if (!PyArg_Parse(arg, + "" _Py_PARSE_PID ":getsid", + &pid)) goto exit; return_value = os_getsid_impl(module, pid); @@ -3036,7 +3116,8 @@ pid_t pid; pid_t pgrp; - if (!PyArg_ParseTuple(args, "" _Py_PARSE_PID "" _Py_PARSE_PID ":setpgid", + if (!PyArg_ParseTuple(args, + "" _Py_PARSE_PID "" _Py_PARSE_PID ":setpgid", &pid, &pgrp)) goto exit; return_value = os_setpgid_impl(module, pid, pgrp); @@ -3067,7 +3148,9 @@ PyObject *return_value = NULL; int fd; - if (!PyArg_Parse(arg, "i:tcgetpgrp", &fd)) + if (!PyArg_Parse(arg, + "i:tcgetpgrp", + &fd)) goto exit; return_value = os_tcgetpgrp_impl(module, fd); @@ -3098,7 +3181,8 @@ int fd; pid_t pgid; - if (!PyArg_ParseTuple(args, "i" _Py_PARSE_PID ":tcsetpgrp", + if (!PyArg_ParseTuple(args, + "i" _Py_PARSE_PID ":tcsetpgrp", &fd, &pgid)) goto exit; return_value = os_tcsetpgrp_impl(module, fd, pgid); @@ -3138,7 +3222,8 @@ int dir_fd = DEFAULT_DIR_FD; int _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&i|i$O&:open", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&i|i$O&:open", _keywords, path_converter, &path, &flags, &mode, OPENAT_DIR_FD_CONVERTER, &dir_fd)) goto exit; _return_value = os_open_impl(module, &path, flags, mode, dir_fd); @@ -3172,7 +3257,8 @@ static char *_keywords[] = {"fd", NULL}; int fd; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:close", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:close", _keywords, &fd)) goto exit; return_value = os_close_impl(module, fd); @@ -3200,7 +3286,8 @@ int fd_low; int fd_high; - if (!PyArg_ParseTuple(args, "ii:closerange", + if (!PyArg_ParseTuple(args, + "ii:closerange", &fd_low, &fd_high)) goto exit; return_value = os_closerange_impl(module, fd_low, fd_high); @@ -3228,7 +3315,9 @@ int fd; int _return_value; - if (!PyArg_Parse(arg, "i:dup", &fd)) + if (!PyArg_Parse(arg, + "i:dup", + &fd)) goto exit; _return_value = os_dup_impl(module, fd); if ((_return_value == -1) && PyErr_Occurred()) @@ -3260,7 +3349,8 @@ int fd2; int inheritable = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "ii|p:dup2", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "ii|p:dup2", _keywords, &fd, &fd2, &inheritable)) goto exit; return_value = os_dup2_impl(module, fd, fd2, inheritable); @@ -3298,7 +3388,8 @@ int command; Py_off_t length; - if (!PyArg_ParseTuple(args, "iiO&:lockf", + if (!PyArg_ParseTuple(args, + "iiO&:lockf", &fd, &command, Py_off_t_converter, &length)) goto exit; return_value = os_lockf_impl(module, fd, command, length); @@ -3333,7 +3424,8 @@ int how; Py_off_t _return_value; - if (!PyArg_ParseTuple(args, "iO&i:lseek", + if (!PyArg_ParseTuple(args, + "iO&i:lseek", &fd, Py_off_t_converter, &position, &how)) goto exit; _return_value = os_lseek_impl(module, fd, position, how); @@ -3364,7 +3456,8 @@ int fd; Py_ssize_t length; - if (!PyArg_ParseTuple(args, "in:read", + if (!PyArg_ParseTuple(args, + "in:read", &fd, &length)) goto exit; return_value = os_read_impl(module, fd, length); @@ -3403,7 +3496,8 @@ PyObject *buffers; Py_ssize_t _return_value; - if (!PyArg_ParseTuple(args, "iO:readv", + if (!PyArg_ParseTuple(args, + "iO:readv", &fd, &buffers)) goto exit; _return_value = os_readv_impl(module, fd, buffers); @@ -3442,7 +3536,8 @@ int length; Py_off_t offset; - if (!PyArg_ParseTuple(args, "iiO&:pread", + if (!PyArg_ParseTuple(args, + "iiO&:pread", &fd, &length, Py_off_t_converter, &offset)) goto exit; return_value = os_pread_impl(module, fd, length, offset); @@ -3473,7 +3568,8 @@ Py_buffer data = {NULL, NULL}; Py_ssize_t _return_value; - if (!PyArg_ParseTuple(args, "iy*:write", + if (!PyArg_ParseTuple(args, + "iy*:write", &fd, &data)) goto exit; _return_value = os_write_impl(module, fd, &data); @@ -3511,7 +3607,8 @@ static char *_keywords[] = {"fd", NULL}; int fd; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:fstat", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:fstat", _keywords, &fd)) goto exit; return_value = os_fstat_impl(module, fd); @@ -3542,7 +3639,9 @@ int fd; int _return_value; - if (!PyArg_Parse(arg, "i:isatty", &fd)) + if (!PyArg_Parse(arg, + "i:isatty", + &fd)) goto exit; _return_value = os_isatty_impl(module, fd); if ((_return_value == -1) && PyErr_Occurred()) @@ -3604,7 +3703,9 @@ PyObject *return_value = NULL; int flags; - if (!PyArg_Parse(arg, "i:pipe2", &flags)) + if (!PyArg_Parse(arg, + "i:pipe2", + &flags)) goto exit; return_value = os_pipe2_impl(module, flags); @@ -3639,7 +3740,8 @@ PyObject *buffers; Py_ssize_t _return_value; - if (!PyArg_ParseTuple(args, "iO:writev", + if (!PyArg_ParseTuple(args, + "iO:writev", &fd, &buffers)) goto exit; _return_value = os_writev_impl(module, fd, buffers); @@ -3681,7 +3783,8 @@ Py_off_t offset; Py_ssize_t _return_value; - if (!PyArg_ParseTuple(args, "iy*O&:pwrite", + if (!PyArg_ParseTuple(args, + "iy*O&:pwrite", &fd, &buffer, Py_off_t_converter, &offset)) goto exit; _return_value = os_pwrite_impl(module, fd, &buffer, offset); @@ -3727,7 +3830,8 @@ int mode = 438; int dir_fd = DEFAULT_DIR_FD; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|i$O&:mkfifo", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&|i$O&:mkfifo", _keywords, path_converter, &path, &mode, MKFIFOAT_DIR_FD_CONVERTER, &dir_fd)) goto exit; return_value = os_mkfifo_impl(module, &path, mode, dir_fd); @@ -3778,7 +3882,8 @@ dev_t device = 0; int dir_fd = DEFAULT_DIR_FD; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|iO&$O&:mknod", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&|iO&$O&:mknod", _keywords, path_converter, &path, &mode, _Py_Dev_Converter, &device, MKNODAT_DIR_FD_CONVERTER, &dir_fd)) goto exit; return_value = os_mknod_impl(module, &path, mode, device, dir_fd); @@ -3813,7 +3918,9 @@ dev_t device; unsigned int _return_value; - if (!PyArg_Parse(arg, "O&:major", _Py_Dev_Converter, &device)) + if (!PyArg_Parse(arg, + "O&:major", + _Py_Dev_Converter, &device)) goto exit; _return_value = os_major_impl(module, device); if ((_return_value == (unsigned int)-1) && PyErr_Occurred()) @@ -3847,7 +3954,9 @@ dev_t device; unsigned int _return_value; - if (!PyArg_Parse(arg, "O&:minor", _Py_Dev_Converter, &device)) + if (!PyArg_Parse(arg, + "O&:minor", + _Py_Dev_Converter, &device)) goto exit; _return_value = os_minor_impl(module, device); if ((_return_value == (unsigned int)-1) && PyErr_Occurred()) @@ -3882,7 +3991,8 @@ int minor; dev_t _return_value; - if (!PyArg_ParseTuple(args, "ii:makedev", + if (!PyArg_ParseTuple(args, + "ii:makedev", &major, &minor)) goto exit; _return_value = os_makedev_impl(module, major, minor); @@ -3917,7 +4027,8 @@ int fd; Py_off_t length; - if (!PyArg_ParseTuple(args, "iO&:ftruncate", + if (!PyArg_ParseTuple(args, + "iO&:ftruncate", &fd, Py_off_t_converter, &length)) goto exit; return_value = os_ftruncate_impl(module, fd, length); @@ -3953,7 +4064,8 @@ path_t path = PATH_T_INITIALIZE("truncate", "path", 0, PATH_HAVE_FTRUNCATE); Py_off_t length; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&:truncate", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&O&:truncate", _keywords, path_converter, &path, Py_off_t_converter, &length)) goto exit; return_value = os_truncate_impl(module, &path, length); @@ -3993,7 +4105,8 @@ Py_off_t offset; Py_off_t length; - if (!PyArg_ParseTuple(args, "iO&O&:posix_fallocate", + if (!PyArg_ParseTuple(args, + "iO&O&:posix_fallocate", &fd, Py_off_t_converter, &offset, Py_off_t_converter, &length)) goto exit; return_value = os_posix_fallocate_impl(module, fd, offset, length); @@ -4036,7 +4149,8 @@ Py_off_t length; int advice; - if (!PyArg_ParseTuple(args, "iO&O&i:posix_fadvise", + if (!PyArg_ParseTuple(args, + "iO&O&i:posix_fadvise", &fd, Py_off_t_converter, &offset, Py_off_t_converter, &length, &advice)) goto exit; return_value = os_posix_fadvise_impl(module, fd, offset, length, advice); @@ -4068,7 +4182,8 @@ PyObject *name; PyObject *value; - if (!PyArg_ParseTuple(args, "UU:putenv", + if (!PyArg_ParseTuple(args, + "UU:putenv", &name, &value)) goto exit; return_value = os_putenv_impl(module, name, value); @@ -4100,7 +4215,8 @@ PyObject *name = NULL; PyObject *value = NULL; - if (!PyArg_ParseTuple(args, "O&O&:putenv", + if (!PyArg_ParseTuple(args, + "O&O&:putenv", PyUnicode_FSConverter, &name, PyUnicode_FSConverter, &value)) goto exit; return_value = os_putenv_impl(module, name, value); @@ -4136,7 +4252,9 @@ PyObject *return_value = NULL; PyObject *name = NULL; - if (!PyArg_Parse(arg, "O&:unsetenv", PyUnicode_FSConverter, &name)) + if (!PyArg_Parse(arg, + "O&:unsetenv", + PyUnicode_FSConverter, &name)) goto exit; return_value = os_unsetenv_impl(module, name); @@ -4167,7 +4285,9 @@ PyObject *return_value = NULL; int code; - if (!PyArg_Parse(arg, "i:strerror", &code)) + if (!PyArg_Parse(arg, + "i:strerror", + &code)) goto exit; return_value = os_strerror_impl(module, code); @@ -4196,7 +4316,9 @@ int status; int _return_value; - if (!PyArg_Parse(arg, "i:WCOREDUMP", &status)) + if (!PyArg_Parse(arg, + "i:WCOREDUMP", + &status)) goto exit; _return_value = os_WCOREDUMP_impl(module, status); if ((_return_value == -1) && PyErr_Occurred()) @@ -4234,7 +4356,8 @@ int status; int _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:WIFCONTINUED", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:WIFCONTINUED", _keywords, &status)) goto exit; _return_value = os_WIFCONTINUED_impl(module, status); @@ -4270,7 +4393,8 @@ int status; int _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:WIFSTOPPED", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:WIFSTOPPED", _keywords, &status)) goto exit; _return_value = os_WIFSTOPPED_impl(module, status); @@ -4306,7 +4430,8 @@ int status; int _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:WIFSIGNALED", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:WIFSIGNALED", _keywords, &status)) goto exit; _return_value = os_WIFSIGNALED_impl(module, status); @@ -4342,7 +4467,8 @@ int status; int _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:WIFEXITED", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:WIFEXITED", _keywords, &status)) goto exit; _return_value = os_WIFEXITED_impl(module, status); @@ -4378,7 +4504,8 @@ int status; int _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:WEXITSTATUS", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:WEXITSTATUS", _keywords, &status)) goto exit; _return_value = os_WEXITSTATUS_impl(module, status); @@ -4414,7 +4541,8 @@ int status; int _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:WTERMSIG", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:WTERMSIG", _keywords, &status)) goto exit; _return_value = os_WTERMSIG_impl(module, status); @@ -4450,7 +4578,8 @@ int status; int _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:WSTOPSIG", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:WSTOPSIG", _keywords, &status)) goto exit; _return_value = os_WSTOPSIG_impl(module, status); @@ -4486,7 +4615,9 @@ PyObject *return_value = NULL; int fd; - if (!PyArg_Parse(arg, "i:fstatvfs", &fd)) + if (!PyArg_Parse(arg, + "i:fstatvfs", + &fd)) goto exit; return_value = os_fstatvfs_impl(module, fd); @@ -4521,7 +4652,8 @@ static char *_keywords[] = {"path", NULL}; path_t path = PATH_T_INITIALIZE("statvfs", "path", 0, PATH_HAVE_FSTATVFS); - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&:statvfs", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&:statvfs", _keywords, path_converter, &path)) goto exit; return_value = os_statvfs_impl(module, &path); @@ -4556,7 +4688,8 @@ static char *_keywords[] = {"path", NULL}; Py_UNICODE *path; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "u:_getdiskusage", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "u:_getdiskusage", _keywords, &path)) goto exit; return_value = os__getdiskusage_impl(module, path); @@ -4591,7 +4724,8 @@ int name; long _return_value; - if (!PyArg_ParseTuple(args, "iO&:fpathconf", + if (!PyArg_ParseTuple(args, + "iO&:fpathconf", &fd, conv_path_confname, &name)) goto exit; _return_value = os_fpathconf_impl(module, fd, name); @@ -4632,7 +4766,8 @@ int name; long _return_value; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&:pathconf", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&O&:pathconf", _keywords, path_converter, &path, conv_path_confname, &name)) goto exit; _return_value = os_pathconf_impl(module, &path, name); @@ -4669,7 +4804,9 @@ PyObject *return_value = NULL; int name; - if (!PyArg_Parse(arg, "O&:confstr", conv_confstr_confname, &name)) + if (!PyArg_Parse(arg, + "O&:confstr", + conv_confstr_confname, &name)) goto exit; return_value = os_confstr_impl(module, name); @@ -4700,7 +4837,9 @@ int name; long _return_value; - if (!PyArg_Parse(arg, "O&:sysconf", conv_sysconf_confname, &name)) + if (!PyArg_Parse(arg, + "O&:sysconf", + conv_sysconf_confname, &name)) goto exit; _return_value = os_sysconf_impl(module, name); if ((_return_value == -1) && PyErr_Occurred()) @@ -4782,7 +4921,8 @@ static char *_keywords[] = {"fd", NULL}; int fd; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i:device_encoding", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i:device_encoding", _keywords, &fd)) goto exit; return_value = os_device_encoding_impl(module, fd); @@ -4813,7 +4953,8 @@ uid_t euid; uid_t suid; - if (!PyArg_ParseTuple(args, "O&O&O&:setresuid", + if (!PyArg_ParseTuple(args, + "O&O&O&:setresuid", _Py_Uid_Converter, &ruid, _Py_Uid_Converter, &euid, _Py_Uid_Converter, &suid)) goto exit; return_value = os_setresuid_impl(module, ruid, euid, suid); @@ -4846,7 +4987,8 @@ gid_t egid; gid_t sgid; - if (!PyArg_ParseTuple(args, "O&O&O&:setresgid", + if (!PyArg_ParseTuple(args, + "O&O&O&:setresgid", _Py_Gid_Converter, &rgid, _Py_Gid_Converter, &egid, _Py_Gid_Converter, &sgid)) goto exit; return_value = os_setresgid_impl(module, rgid, egid, sgid); @@ -4930,7 +5072,8 @@ path_t attribute = PATH_T_INITIALIZE("getxattr", "attribute", 0, 0); int follow_symlinks = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&|$p:getxattr", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&O&|$p:getxattr", _keywords, path_converter, &path, path_converter, &attribute, &follow_symlinks)) goto exit; return_value = os_getxattr_impl(module, &path, &attribute, follow_symlinks); @@ -4978,7 +5121,8 @@ int flags = 0; int follow_symlinks = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&y*|i$p:setxattr", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&O&y*|i$p:setxattr", _keywords, path_converter, &path, path_converter, &attribute, &value, &flags, &follow_symlinks)) goto exit; return_value = os_setxattr_impl(module, &path, &attribute, &value, flags, follow_symlinks); @@ -5026,7 +5170,8 @@ path_t attribute = PATH_T_INITIALIZE("removexattr", "attribute", 0, 0); int follow_symlinks = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&|$p:removexattr", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "O&O&|$p:removexattr", _keywords, path_converter, &path, path_converter, &attribute, &follow_symlinks)) goto exit; return_value = os_removexattr_impl(module, &path, &attribute, follow_symlinks); @@ -5070,7 +5215,8 @@ path_t path = PATH_T_INITIALIZE("listxattr", "path", 1, 1); int follow_symlinks = 1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O&$p:listxattr", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|O&$p:listxattr", _keywords, path_converter, &path, &follow_symlinks)) goto exit; return_value = os_listxattr_impl(module, &path, follow_symlinks); @@ -5102,7 +5248,9 @@ PyObject *return_value = NULL; Py_ssize_t size; - if (!PyArg_Parse(arg, "n:urandom", &size)) + if (!PyArg_Parse(arg, + "n:urandom", + &size)) goto exit; return_value = os_urandom_impl(module, size); @@ -5147,7 +5295,9 @@ int fd; int _return_value; - if (!PyArg_Parse(arg, "i:get_inheritable", &fd)) + if (!PyArg_Parse(arg, + "i:get_inheritable", + &fd)) goto exit; _return_value = os_get_inheritable_impl(module, fd); if ((_return_value == -1) && PyErr_Occurred()) @@ -5177,7 +5327,8 @@ int fd; int inheritable; - if (!PyArg_ParseTuple(args, "ii:set_inheritable", + if (!PyArg_ParseTuple(args, + "ii:set_inheritable", &fd, &inheritable)) goto exit; return_value = os_set_inheritable_impl(module, fd, inheritable); @@ -5207,7 +5358,9 @@ Py_intptr_t handle; int _return_value; - if (!PyArg_Parse(arg, "" _Py_PARSE_INTPTR ":get_handle_inheritable", &handle)) + if (!PyArg_Parse(arg, + "" _Py_PARSE_INTPTR ":get_handle_inheritable", + &handle)) goto exit; _return_value = os_get_handle_inheritable_impl(module, handle); if ((_return_value == -1) && PyErr_Occurred()) @@ -5242,7 +5395,8 @@ Py_intptr_t handle; int inheritable; - if (!PyArg_ParseTuple(args, "" _Py_PARSE_INTPTR "p:set_handle_inheritable", + if (!PyArg_ParseTuple(args, + "" _Py_PARSE_INTPTR "p:set_handle_inheritable", &handle, &inheritable)) goto exit; return_value = os_set_handle_inheritable_impl(module, handle, inheritable); @@ -5716,4 +5870,4 @@ #ifndef OS_SET_HANDLE_INHERITABLE_METHODDEF #define OS_SET_HANDLE_INHERITABLE_METHODDEF #endif /* !defined(OS_SET_HANDLE_INHERITABLE_METHODDEF) */ -/*[clinic end generated code: output=bba73c13a01c09a0 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=0e3fb3bb5df25fea input=a9049054013a1b77]*/ diff --git a/Modules/clinic/pwdmodule.c.h b/Modules/clinic/pwdmodule.c.h --- a/Modules/clinic/pwdmodule.c.h +++ b/Modules/clinic/pwdmodule.c.h @@ -33,7 +33,9 @@ PyObject *return_value = NULL; PyObject *arg; - if (!PyArg_Parse(arg_, "U:getpwnam", &arg)) + if (!PyArg_Parse(arg_, + "U:getpwnam", + &arg)) goto exit; return_value = pwd_getpwnam_impl(module, arg); @@ -68,4 +70,4 @@ #ifndef PWD_GETPWALL_METHODDEF #define PWD_GETPWALL_METHODDEF #endif /* !defined(PWD_GETPWALL_METHODDEF) */ -/*[clinic end generated code: output=2ed0ecf34fd3f98f input=a9049054013a1b77]*/ +/*[clinic end generated code: output=e7d5ac24b20e91ae input=a9049054013a1b77]*/ diff --git a/Modules/clinic/pyexpat.c.h b/Modules/clinic/pyexpat.c.h --- a/Modules/clinic/pyexpat.c.h +++ b/Modules/clinic/pyexpat.c.h @@ -24,7 +24,8 @@ PyObject *data; int isFinal = 0; - if (!PyArg_ParseTuple(args, "O|i:Parse", + if (!PyArg_ParseTuple(args, + "O|i:Parse", &data, &isFinal)) goto exit; return_value = pyexpat_xmlparser_Parse_impl(self, data, isFinal); @@ -60,7 +61,9 @@ PyObject *return_value = NULL; const char *base; - if (!PyArg_Parse(arg, "s:SetBase", &base)) + if (!PyArg_Parse(arg, + "s:SetBase", + &base)) goto exit; return_value = pyexpat_xmlparser_SetBase_impl(self, base); @@ -128,7 +131,8 @@ const char *context; const char *encoding = NULL; - if (!PyArg_ParseTuple(args, "z|s:ExternalEntityParserCreate", + if (!PyArg_ParseTuple(args, + "z|s:ExternalEntityParserCreate", &context, &encoding)) goto exit; return_value = pyexpat_xmlparser_ExternalEntityParserCreate_impl(self, context, encoding); @@ -160,7 +164,9 @@ PyObject *return_value = NULL; int flag; - if (!PyArg_Parse(arg, "i:SetParamEntityParsing", &flag)) + if (!PyArg_Parse(arg, + "i:SetParamEntityParsing", + &flag)) goto exit; return_value = pyexpat_xmlparser_SetParamEntityParsing_impl(self, flag); @@ -192,7 +198,8 @@ PyObject *return_value = NULL; int flag = 1; - if (!PyArg_ParseTuple(args, "|p:UseForeignDTD", + if (!PyArg_ParseTuple(args, + "|p:UseForeignDTD", &flag)) goto exit; return_value = pyexpat_xmlparser_UseForeignDTD_impl(self, flag); @@ -243,7 +250,8 @@ const char *namespace_separator = NULL; PyObject *intern = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|zzO:ParserCreate", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|zzO:ParserCreate", _keywords, &encoding, &namespace_separator, &intern)) goto exit; return_value = pyexpat_ParserCreate_impl(module, encoding, namespace_separator, intern); @@ -270,7 +278,9 @@ PyObject *return_value = NULL; long code; - if (!PyArg_Parse(arg, "l:ErrorString", &code)) + if (!PyArg_Parse(arg, + "l:ErrorString", + &code)) goto exit; return_value = pyexpat_ErrorString_impl(module, code); @@ -281,4 +291,4 @@ #ifndef PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF #define PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF #endif /* !defined(PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF) */ -/*[clinic end generated code: output=958c0faa1b855fc7 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=abdf05a21dae98c7 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/sha1module.c.h b/Modules/clinic/sha1module.c.h --- a/Modules/clinic/sha1module.c.h +++ b/Modules/clinic/sha1module.c.h @@ -84,7 +84,8 @@ static char *_keywords[] = {"string", NULL}; PyObject *string = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O:sha1", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|O:sha1", _keywords, &string)) goto exit; return_value = _sha1_sha1_impl(module, string); @@ -92,4 +93,4 @@ exit: return return_value; } -/*[clinic end generated code: output=be19102f3120490a input=a9049054013a1b77]*/ +/*[clinic end generated code: output=b2890b9ca964b217 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/sha256module.c.h b/Modules/clinic/sha256module.c.h --- a/Modules/clinic/sha256module.c.h +++ b/Modules/clinic/sha256module.c.h @@ -84,7 +84,8 @@ static char *_keywords[] = {"string", NULL}; PyObject *string = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O:sha256", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|O:sha256", _keywords, &string)) goto exit; return_value = _sha256_sha256_impl(module, string); @@ -112,7 +113,8 @@ static char *_keywords[] = {"string", NULL}; PyObject *string = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O:sha224", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|O:sha224", _keywords, &string)) goto exit; return_value = _sha256_sha224_impl(module, string); @@ -120,4 +122,4 @@ exit: return return_value; } -/*[clinic end generated code: output=354cedf3b632c7b2 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=8a0520371b097358 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/sha512module.c.h b/Modules/clinic/sha512module.c.h --- a/Modules/clinic/sha512module.c.h +++ b/Modules/clinic/sha512module.c.h @@ -102,7 +102,8 @@ static char *_keywords[] = {"string", NULL}; PyObject *string = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O:sha512", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|O:sha512", _keywords, &string)) goto exit; return_value = _sha512_sha512_impl(module, string); @@ -134,7 +135,8 @@ static char *_keywords[] = {"string", NULL}; PyObject *string = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O:sha384", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|O:sha384", _keywords, &string)) goto exit; return_value = _sha512_sha384_impl(module, string); @@ -168,4 +170,4 @@ #ifndef _SHA512_SHA384_METHODDEF #define _SHA512_SHA384_METHODDEF #endif /* !defined(_SHA512_SHA384_METHODDEF) */ -/*[clinic end generated code: output=1c7d385731fee7c0 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=de7bda19fde49310 input=a9049054013a1b77]*/ diff --git a/Modules/clinic/spwdmodule.c.h b/Modules/clinic/spwdmodule.c.h --- a/Modules/clinic/spwdmodule.c.h +++ b/Modules/clinic/spwdmodule.c.h @@ -24,7 +24,9 @@ PyObject *return_value = NULL; PyObject *arg; - if (!PyArg_Parse(arg_, "U:getspnam", &arg)) + if (!PyArg_Parse(arg_, + "U:getspnam", + &arg)) goto exit; return_value = spwd_getspnam_impl(module, arg); @@ -65,4 +67,4 @@ #ifndef SPWD_GETSPALL_METHODDEF #define SPWD_GETSPALL_METHODDEF #endif /* !defined(SPWD_GETSPALL_METHODDEF) */ -/*[clinic end generated code: output=6c178830413f7763 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=67a4f8c47008f28f input=a9049054013a1b77]*/ diff --git a/Modules/clinic/unicodedata.c.h b/Modules/clinic/unicodedata.c.h --- a/Modules/clinic/unicodedata.c.h +++ b/Modules/clinic/unicodedata.c.h @@ -26,7 +26,8 @@ int chr; PyObject *default_value = NULL; - if (!PyArg_ParseTuple(args, "C|O:decimal", + if (!PyArg_ParseTuple(args, + "C|O:decimal", &chr, &default_value)) goto exit; return_value = unicodedata_UCD_decimal_impl(self, chr, default_value); @@ -58,7 +59,8 @@ int chr; PyObject *default_value = NULL; - if (!PyArg_ParseTuple(args, "C|O:digit", + if (!PyArg_ParseTuple(args, + "C|O:digit", &chr, &default_value)) goto exit; return_value = unicodedata_UCD_digit_impl(self, chr, default_value); @@ -91,7 +93,8 @@ int chr; PyObject *default_value = NULL; - if (!PyArg_ParseTuple(args, "C|O:numeric", + if (!PyArg_ParseTuple(args, + "C|O:numeric", &chr, &default_value)) goto exit; return_value = unicodedata_UCD_numeric_impl(self, chr, default_value); @@ -118,7 +121,9 @@ PyObject *return_value = NULL; int chr; - if (!PyArg_Parse(arg, "C:category", &chr)) + if (!PyArg_Parse(arg, + "C:category", + &chr)) goto exit; return_value = unicodedata_UCD_category_impl(self, chr); @@ -146,7 +151,9 @@ PyObject *return_value = NULL; int chr; - if (!PyArg_Parse(arg, "C:bidirectional", &chr)) + if (!PyArg_Parse(arg, + "C:bidirectional", + &chr)) goto exit; return_value = unicodedata_UCD_bidirectional_impl(self, chr); @@ -175,7 +182,9 @@ int chr; int _return_value; - if (!PyArg_Parse(arg, "C:combining", &chr)) + if (!PyArg_Parse(arg, + "C:combining", + &chr)) goto exit; _return_value = unicodedata_UCD_combining_impl(self, chr); if ((_return_value == -1) && PyErr_Occurred()) @@ -208,7 +217,9 @@ int chr; int _return_value; - if (!PyArg_Parse(arg, "C:mirrored", &chr)) + if (!PyArg_Parse(arg, + "C:mirrored", + &chr)) goto exit; _return_value = unicodedata_UCD_mirrored_impl(self, chr); if ((_return_value == -1) && PyErr_Occurred()) @@ -237,7 +248,9 @@ PyObject *return_value = NULL; int chr; - if (!PyArg_Parse(arg, "C:east_asian_width", &chr)) + if (!PyArg_Parse(arg, + "C:east_asian_width", + &chr)) goto exit; return_value = unicodedata_UCD_east_asian_width_impl(self, chr); @@ -265,7 +278,9 @@ PyObject *return_value = NULL; int chr; - if (!PyArg_Parse(arg, "C:decomposition", &chr)) + if (!PyArg_Parse(arg, + "C:decomposition", + &chr)) goto exit; return_value = unicodedata_UCD_decomposition_impl(self, chr); @@ -295,7 +310,8 @@ const char *form; PyObject *input; - if (!PyArg_ParseTuple(args, "sO!:normalize", + if (!PyArg_ParseTuple(args, + "sO!:normalize", &form, &PyUnicode_Type, &input)) goto exit; return_value = unicodedata_UCD_normalize_impl(self, form, input); @@ -326,7 +342,8 @@ int chr; PyObject *default_value = NULL; - if (!PyArg_ParseTuple(args, "C|O:name", + if (!PyArg_ParseTuple(args, + "C|O:name", &chr, &default_value)) goto exit; return_value = unicodedata_UCD_name_impl(self, chr, default_value); @@ -358,11 +375,13 @@ const char *name; Py_ssize_clean_t name_length; - if (!PyArg_Parse(arg, "s#:lookup", &name, &name_length)) + if (!PyArg_Parse(arg, + "s#:lookup", + &name, &name_length)) goto exit; return_value = unicodedata_UCD_lookup_impl(self, name, name_length); exit: return return_value; } -/*[clinic end generated code: output=4f8da33c6bc6efc9 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=1f04e31ae703ffed input=a9049054013a1b77]*/ diff --git a/Modules/clinic/zlibmodule.c.h b/Modules/clinic/zlibmodule.c.h --- a/Modules/clinic/zlibmodule.c.h +++ b/Modules/clinic/zlibmodule.c.h @@ -26,7 +26,8 @@ Py_buffer bytes = {NULL, NULL}; int level = Z_DEFAULT_COMPRESSION; - if (!PyArg_ParseTuple(args, "y*|i:compress", + if (!PyArg_ParseTuple(args, + "y*|i:compress", &bytes, &level)) goto exit; return_value = zlib_compress_impl(module, &bytes, level); @@ -67,7 +68,8 @@ int wbits = MAX_WBITS; unsigned int bufsize = DEF_BUF_SIZE; - if (!PyArg_ParseTuple(args, "y*|iO&:decompress", + if (!PyArg_ParseTuple(args, + "y*|iO&:decompress", &data, &wbits, uint_converter, &bufsize)) goto exit; return_value = zlib_decompress_impl(module, &data, wbits, bufsize); @@ -125,7 +127,8 @@ int strategy = Z_DEFAULT_STRATEGY; Py_buffer zdict = {NULL, NULL}; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|iiiiiy*:compressobj", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|iiiiiy*:compressobj", _keywords, &level, &method, &wbits, &memLevel, &strategy, &zdict)) goto exit; return_value = zlib_compressobj_impl(module, level, method, wbits, memLevel, strategy, &zdict); @@ -164,7 +167,8 @@ int wbits = MAX_WBITS; PyObject *zdict = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|iO:decompressobj", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|iO:decompressobj", _keywords, &wbits, &zdict)) goto exit; return_value = zlib_decompressobj_impl(module, wbits, zdict); @@ -198,7 +202,9 @@ PyObject *return_value = NULL; Py_buffer data = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:compress", &data)) + if (!PyArg_Parse(arg, + "y*:compress", + &data)) goto exit; return_value = zlib_Compress_compress_impl(self, &data); @@ -241,7 +247,8 @@ Py_buffer data = {NULL, NULL}; unsigned int max_length = 0; - if (!PyArg_ParseTuple(args, "y*|O&:decompress", + if (!PyArg_ParseTuple(args, + "y*|O&:decompress", &data, uint_converter, &max_length)) goto exit; return_value = zlib_Decompress_decompress_impl(self, &data, max_length); @@ -278,7 +285,8 @@ PyObject *return_value = NULL; int mode = Z_FINISH; - if (!PyArg_ParseTuple(args, "|i:flush", + if (!PyArg_ParseTuple(args, + "|i:flush", &mode)) goto exit; return_value = zlib_Compress_flush_impl(self, mode); @@ -352,7 +360,8 @@ PyObject *return_value = NULL; unsigned int length = DEF_BUF_SIZE; - if (!PyArg_ParseTuple(args, "|O&:flush", + if (!PyArg_ParseTuple(args, + "|O&:flush", uint_converter, &length)) goto exit; return_value = zlib_Decompress_flush_impl(self, length); @@ -385,7 +394,8 @@ Py_buffer data = {NULL, NULL}; unsigned int value = 1; - if (!PyArg_ParseTuple(args, "y*|I:adler32", + if (!PyArg_ParseTuple(args, + "y*|I:adler32", &data, &value)) goto exit; return_value = zlib_adler32_impl(module, &data, value); @@ -422,7 +432,8 @@ Py_buffer data = {NULL, NULL}; unsigned int value = 0; - if (!PyArg_ParseTuple(args, "y*|I:crc32", + if (!PyArg_ParseTuple(args, + "y*|I:crc32", &data, &value)) goto exit; return_value = zlib_crc32_impl(module, &data, value); @@ -438,4 +449,4 @@ #ifndef ZLIB_COMPRESS_COPY_METHODDEF #define ZLIB_COMPRESS_COPY_METHODDEF #endif /* !defined(ZLIB_COMPRESS_COPY_METHODDEF) */ -/*[clinic end generated code: output=56ed1147bbbb4788 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=6cdeb624bebfe11f input=a9049054013a1b77]*/ diff --git a/Modules/md5module.c b/Modules/md5module.c --- a/Modules/md5module.c +++ b/Modules/md5module.c @@ -18,7 +18,6 @@ #include "Python.h" #include "hashlib.h" -#include "pystrhex.h" /*[clinic input] module _md5 @@ -388,12 +387,32 @@ { unsigned char digest[MD5_DIGESTSIZE]; struct md5_state temp; + PyObject *retval; + Py_UCS1 *hex_digest; + int i, j; /* Get the raw (binary) digest value */ temp = self->hash_state; md5_done(&temp, digest); - return _Py_strhex((const char*)digest, MD5_DIGESTSIZE); + /* Create a new string */ + retval = PyUnicode_New(MD5_DIGESTSIZE * 2, 127); + if (!retval) + return NULL; + hex_digest = PyUnicode_1BYTE_DATA(retval); + + /* Make hex version of the digest */ + for(i=j=0; i> 4) & 0xf; + hex_digest[j++] = Py_hexdigits[c]; + c = (digest[i] & 0xf); + hex_digest[j++] = Py_hexdigits[c]; + } +#ifdef Py_DEBUG + assert(_PyUnicode_CheckConsistency(retval, 1)); +#endif + return retval; } /*[clinic input] diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -866,11 +866,6 @@ Py_DECREF(unicode); return 0; } - if (wcslen(wide) != length) { - FORMAT_EXCEPTION(PyExc_ValueError, "embedded null character"); - Py_DECREF(unicode); - return 0; - } path->wide = wide; path->narrow = NULL; @@ -3267,15 +3262,12 @@ static PyObject * posix_getcwd(int use_bytes) { - char *buf, *tmpbuf; - char *cwd; - const size_t chunk = 1024; - size_t buflen = 0; - PyObject *obj; + char buf[1026]; + char *res; #ifdef MS_WINDOWS if (!use_bytes) { - wchar_t wbuf[MAXPATHLEN]; + wchar_t wbuf[1026]; wchar_t *wbuf2 = wbuf; PyObject *resobj; DWORD len; @@ -3309,31 +3301,14 @@ return NULL; #endif - buf = cwd = NULL; Py_BEGIN_ALLOW_THREADS - do { - buflen += chunk; - tmpbuf = PyMem_RawRealloc(buf, buflen); - if (tmpbuf == NULL) - break; - - buf = tmpbuf; - cwd = getcwd(buf, buflen); - } while (cwd == NULL && errno == ERANGE); + res = getcwd(buf, sizeof buf); Py_END_ALLOW_THREADS - - if (cwd == NULL) { - PyMem_RawFree(buf); + if (res == NULL) return posix_error(); - } - if (use_bytes) - obj = PyBytes_FromStringAndSize(buf, strlen(buf)); - else - obj = PyUnicode_DecodeFSDefault(buf); - PyMem_RawFree(buf); - - return obj; + return PyBytes_FromStringAndSize(buf, strlen(buf)); + return PyUnicode_DecodeFSDefault(buf); } @@ -8893,7 +8868,7 @@ fd = _wopen(path->wide, _O_WRONLY | _O_BINARY | _O_NOINHERIT); else fd = _open(path->narrow, _O_WRONLY | _O_BINARY | _O_NOINHERIT); - if (fd < 0) + if (fd < 0) result = -1; else { result = _chsize_s(fd, length); @@ -9911,7 +9886,7 @@ return PyErr_NoMemory(); len2 = confstr(name, buf, len); assert(len == len2); - result = PyUnicode_DecodeFSDefaultAndSize(buf, len2-1); + result = PyUnicode_DecodeFSDefaultAndSize(buf, len-1); PyMem_Free(buf); } else diff --git a/Modules/readline.c b/Modules/readline.c --- a/Modules/readline.c +++ b/Modules/readline.c @@ -1103,6 +1103,8 @@ rl_callback_handler_remove(); } +extern PyThreadState* _PyOS_ReadlineTState; + static char * readline_until_enter_or_signal(const char *prompt, int *signal) { diff --git a/Modules/sha1module.c b/Modules/sha1module.c --- a/Modules/sha1module.c +++ b/Modules/sha1module.c @@ -18,7 +18,6 @@ #include "Python.h" #include "hashlib.h" -#include "pystrhex.h" /*[clinic input] module _sha1 @@ -365,12 +364,32 @@ { unsigned char digest[SHA1_DIGESTSIZE]; struct sha1_state temp; + PyObject *retval; + Py_UCS1 *hex_digest; + int i, j; /* Get the raw (binary) digest value */ temp = self->hash_state; sha1_done(&temp, digest); - return _Py_strhex((const char *)digest, SHA1_DIGESTSIZE); + /* Create a new string */ + retval = PyUnicode_New(SHA1_DIGESTSIZE * 2, 127); + if (!retval) + return NULL; + hex_digest = PyUnicode_1BYTE_DATA(retval); + + /* Make hex version of the digest */ + for(i=j=0; i> 4) & 0xf; + hex_digest[j++] = Py_hexdigits[c]; + c = (digest[i] & 0xf); + hex_digest[j++] = Py_hexdigits[c]; + } +#ifdef Py_DEBUG + assert(_PyUnicode_CheckConsistency(retval, 1)); +#endif + return retval; } /*[clinic input] diff --git a/Modules/sha256module.c b/Modules/sha256module.c --- a/Modules/sha256module.c +++ b/Modules/sha256module.c @@ -19,7 +19,6 @@ #include "Python.h" #include "structmember.h" #include "hashlib.h" -#include "pystrhex.h" /*[clinic input] module _sha256 @@ -455,12 +454,32 @@ { unsigned char digest[SHA_DIGESTSIZE]; SHAobject temp; + PyObject *retval; + Py_UCS1 *hex_digest; + int i, j; /* Get the raw (binary) digest value */ SHAcopy(self, &temp); sha_final(digest, &temp); - return _Py_strhex((const char *)digest, self->digestsize); + /* Create a new string */ + retval = PyUnicode_New(self->digestsize * 2, 127); + if (!retval) + return NULL; + hex_digest = PyUnicode_1BYTE_DATA(retval); + + /* Make hex version of the digest */ + for(i=j=0; idigestsize; i++) { + unsigned char c; + c = (digest[i] >> 4) & 0xf; + hex_digest[j++] = Py_hexdigits[c]; + c = (digest[i] & 0xf); + hex_digest[j++] = Py_hexdigits[c]; + } +#ifdef Py_DEBUG + assert(_PyUnicode_CheckConsistency(retval, 1)); +#endif + return retval; } /*[clinic input] diff --git a/Modules/sha512module.c b/Modules/sha512module.c --- a/Modules/sha512module.c +++ b/Modules/sha512module.c @@ -19,7 +19,6 @@ #include "Python.h" #include "structmember.h" #include "hashlib.h" -#include "pystrhex.h" /*[clinic input] module _sha512 @@ -522,12 +521,32 @@ { unsigned char digest[SHA_DIGESTSIZE]; SHAobject temp; + PyObject *retval; + Py_UCS1 *hex_digest; + int i, j; /* Get the raw (binary) digest value */ SHAcopy(self, &temp); sha512_final(digest, &temp); - return _Py_strhex((const char *)digest, self->digestsize); + /* Create a new string */ + retval = PyUnicode_New(self->digestsize * 2, 127); + if (!retval) + return NULL; + hex_digest = PyUnicode_1BYTE_DATA(retval); + + /* Make hex version of the digest */ + for (i=j=0; idigestsize; i++) { + unsigned char c; + c = (digest[i] >> 4) & 0xf; + hex_digest[j++] = Py_hexdigits[c]; + c = (digest[i] & 0xf); + hex_digest[j++] = Py_hexdigits[c]; + } +#ifdef Py_DEBUG + assert(_PyUnicode_CheckConsistency(retval, 1)); +#endif + return retval; } /*[clinic input] diff --git a/Modules/symtablemodule.c b/Modules/symtablemodule.c --- a/Modules/symtablemodule.c +++ b/Modules/symtablemodule.c @@ -84,6 +84,9 @@ PyModule_AddIntConstant(m, "TYPE_CLASS", ClassBlock); PyModule_AddIntConstant(m, "TYPE_MODULE", ModuleBlock); + PyModule_AddIntMacro(m, OPT_IMPORT_STAR); + PyModule_AddIntMacro(m, OPT_TOPLEVEL); + PyModule_AddIntMacro(m, LOCAL); PyModule_AddIntMacro(m, GLOBAL_EXPLICIT); PyModule_AddIntMacro(m, GLOBAL_IMPLICIT); diff --git a/Modules/tkinter.h b/Modules/tkinter.h --- a/Modules/tkinter.h +++ b/Modules/tkinter.h @@ -4,24 +4,24 @@ /* This header is used to share some macros between _tkinter.c and * tkappinit.c. * Be sure to include tk.h before including this header so - * TK_HEX_VERSION is properly defined. */ + * TK_VERSION_HEX is properly defined. */ /* TK_RELEASE_LEVEL is always one of the following: - * TCL_ALPHA_RELEASE 0 + * TCL_ALPHA_RELEASE 0 * TCL_BETA_RELEASE 1 * TCL_FINAL_RELEASE 2 */ -#define TK_HEX_VERSION ((TK_MAJOR_VERSION << 24) | \ - (TK_MINOR_VERSION << 16) | \ - (TK_RELEASE_LEVEL << 8) | \ - (TK_RELEASE_SERIAL << 0)) +#define TK_VERSION_HEX ((TK_MAJOR_VERSION << 24) | \ + (TK_MINOR_VERSION << 16) | \ + (TK_RELEASE_SERIAL << 8) | \ + (TK_RELEASE_LEVEL << 0)) /* Protect Tk 8.4.13 and older from a deadlock that happens when trying * to load tk after a failed attempt. */ -#if TK_HEX_VERSION < 0x0804020e +#if TK_VERSION_HEX < 0x08040e02 #define TKINTER_PROTECT_LOADTK #define TKINTER_LOADTK_ERRMSG \ - "Calling Tk_Init again after a previous call failed might deadlock" + "Calling Tk_Init again after a previous call failed might deadlock" #endif #endif /* !TKINTER_H */ diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -5,7 +5,6 @@ #include "structmember.h" #include "bytes_methods.h" #include "bytesobject.h" -#include "pystrhex.h" /*[clinic input] class bytearray "PyByteArrayObject *" "&PyByteArray_Type" @@ -2873,19 +2872,6 @@ return NULL; } -PyDoc_STRVAR(hex__doc__, -"B.hex() -> string\n\ -\n\ -Create a string of hexadecimal numbers from a bytearray object.\n\ -Example: bytearray([0xb9, 0x01, 0xef]).hex() -> 'b901ef'."); - -static PyObject * -bytearray_hex(PyBytesObject *self) -{ - char* argbuf = PyByteArray_AS_STRING(self); - Py_ssize_t arglen = PyByteArray_GET_SIZE(self); - return _Py_strhex(argbuf, arglen); -} static PyObject * _common_reduce(PyByteArrayObject *self, int proto) @@ -3016,7 +3002,6 @@ BYTEARRAY_EXTEND_METHODDEF {"find", (PyCFunction)bytearray_find, METH_VARARGS, find__doc__}, BYTEARRAY_FROMHEX_METHODDEF - {"hex", (PyCFunction)bytearray_hex, METH_NOARGS, hex__doc__}, {"index", (PyCFunction)bytearray_index, METH_VARARGS, index__doc__}, BYTEARRAY_INSERT_METHODDEF {"isalnum", (PyCFunction)stringlib_isalnum, METH_NOARGS, diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -5,7 +5,6 @@ #include "Python.h" #include "bytes_methods.h" -#include "pystrhex.h" #include /*[clinic input] @@ -3037,20 +3036,6 @@ return NULL; } -PyDoc_STRVAR(hex__doc__, -"B.hex() -> string\n\ -\n\ -Create a string of hexadecimal numbers from a bytes object.\n\ -Example: b'\\xb9\\x01\\xef'.hex() -> 'b901ef'."); - -static PyObject * -bytes_hex(PyBytesObject *self) -{ - char* argbuf = PyBytes_AS_STRING(self); - Py_ssize_t arglen = PyBytes_GET_SIZE(self); - return _Py_strhex(argbuf, arglen); -} - static PyObject * bytes_getnewargs(PyBytesObject *v) { @@ -3072,7 +3057,6 @@ expandtabs__doc__}, {"find", (PyCFunction)bytes_find, METH_VARARGS, find__doc__}, BYTES_FROMHEX_METHODDEF - {"hex", (PyCFunction)bytes_hex, METH_NOARGS, hex__doc__}, {"index", (PyCFunction)bytes_index, METH_VARARGS, index__doc__}, {"isalnum", (PyCFunction)stringlib_isalnum, METH_NOARGS, _Py_isalnum__doc__}, diff --git a/Objects/clinic/bytearrayobject.c.h b/Objects/clinic/bytearrayobject.c.h --- a/Objects/clinic/bytearrayobject.c.h +++ b/Objects/clinic/bytearrayobject.c.h @@ -107,7 +107,8 @@ Py_buffer frm = {NULL, NULL}; Py_buffer to = {NULL, NULL}; - if (!PyArg_ParseTuple(args, "y*y*:maketrans", + if (!PyArg_ParseTuple(args, + "y*y*:maketrans", &frm, &to)) goto exit; return_value = bytearray_maketrans_impl(&frm, &to); @@ -151,7 +152,8 @@ Py_buffer new = {NULL, NULL}; Py_ssize_t count = -1; - if (!PyArg_ParseTuple(args, "y*y*|n:replace", + if (!PyArg_ParseTuple(args, + "y*y*|n:replace", &old, &new, &count)) goto exit; return_value = bytearray_replace_impl(self, &old, &new, count); @@ -196,7 +198,8 @@ PyObject *sep = Py_None; Py_ssize_t maxsplit = -1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|On:split", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|On:split", _keywords, &sep, &maxsplit)) goto exit; return_value = bytearray_split_impl(self, sep, maxsplit); @@ -268,7 +271,8 @@ PyObject *sep = Py_None; Py_ssize_t maxsplit = -1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|On:rsplit", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|On:rsplit", _keywords, &sep, &maxsplit)) goto exit; return_value = bytearray_rsplit_impl(self, sep, maxsplit); @@ -319,7 +323,8 @@ Py_ssize_t index; int item; - if (!PyArg_ParseTuple(args, "nO&:insert", + if (!PyArg_ParseTuple(args, + "nO&:insert", &index, _getbytevalue, &item)) goto exit; return_value = bytearray_insert_impl(self, index, item); @@ -349,7 +354,9 @@ PyObject *return_value = NULL; int item; - if (!PyArg_Parse(arg, "O&:append", _getbytevalue, &item)) + if (!PyArg_Parse(arg, + "O&:append", + _getbytevalue, &item)) goto exit; return_value = bytearray_append_impl(self, item); @@ -393,7 +400,8 @@ PyObject *return_value = NULL; Py_ssize_t index = -1; - if (!PyArg_ParseTuple(args, "|n:pop", + if (!PyArg_ParseTuple(args, + "|n:pop", &index)) goto exit; return_value = bytearray_pop_impl(self, index); @@ -423,7 +431,9 @@ PyObject *return_value = NULL; int value; - if (!PyArg_Parse(arg, "O&:remove", _getbytevalue, &value)) + if (!PyArg_Parse(arg, + "O&:remove", + _getbytevalue, &value)) goto exit; return_value = bytearray_remove_impl(self, value); @@ -551,7 +561,8 @@ const char *encoding = NULL; const char *errors = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ss:decode", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|ss:decode", _keywords, &encoding, &errors)) goto exit; return_value = bytearray_decode_impl(self, encoding, errors); @@ -595,7 +606,8 @@ static char *_keywords[] = {"keepends", NULL}; int keepends = 0; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i:splitlines", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|i:splitlines", _keywords, &keepends)) goto exit; return_value = bytearray_splitlines_impl(self, keepends); @@ -625,7 +637,9 @@ PyObject *return_value = NULL; PyObject *string; - if (!PyArg_Parse(arg, "U:fromhex", &string)) + if (!PyArg_Parse(arg, + "U:fromhex", + &string)) goto exit; return_value = bytearray_fromhex_impl((PyObject*)cls, string); @@ -669,7 +683,8 @@ PyObject *return_value = NULL; int proto = 0; - if (!PyArg_ParseTuple(args, "|i:__reduce_ex__", + if (!PyArg_ParseTuple(args, + "|i:__reduce_ex__", &proto)) goto exit; return_value = bytearray_reduce_ex_impl(self, proto); @@ -695,4 +710,4 @@ { return bytearray_sizeof_impl(self); } -/*[clinic end generated code: output=966c15ff22c5e243 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=2a698741a4f14047 input=a9049054013a1b77]*/ diff --git a/Objects/clinic/bytesobject.c.h b/Objects/clinic/bytesobject.c.h --- a/Objects/clinic/bytesobject.c.h +++ b/Objects/clinic/bytesobject.c.h @@ -30,7 +30,8 @@ PyObject *sep = Py_None; Py_ssize_t maxsplit = -1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|On:split", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|On:split", _keywords, &sep, &maxsplit)) goto exit; return_value = bytes_split_impl(self, sep, maxsplit); @@ -64,7 +65,9 @@ PyObject *return_value = NULL; Py_buffer sep = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:partition", &sep)) + if (!PyArg_Parse(arg, + "y*:partition", + &sep)) goto exit; return_value = bytes_partition_impl(self, &sep); @@ -101,7 +104,9 @@ PyObject *return_value = NULL; Py_buffer sep = {NULL, NULL}; - if (!PyArg_Parse(arg, "y*:rpartition", &sep)) + if (!PyArg_Parse(arg, + "y*:rpartition", + &sep)) goto exit; return_value = bytes_rpartition_impl(self, &sep); @@ -143,7 +148,8 @@ PyObject *sep = Py_None; Py_ssize_t maxsplit = -1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|On:rsplit", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|On:rsplit", _keywords, &sep, &maxsplit)) goto exit; return_value = bytes_rsplit_impl(self, sep, maxsplit); @@ -326,7 +332,8 @@ Py_buffer frm = {NULL, NULL}; Py_buffer to = {NULL, NULL}; - if (!PyArg_ParseTuple(args, "y*y*:maketrans", + if (!PyArg_ParseTuple(args, + "y*y*:maketrans", &frm, &to)) goto exit; return_value = bytes_maketrans_impl(&frm, &to); @@ -370,7 +377,8 @@ Py_buffer new = {NULL, NULL}; Py_ssize_t count = -1; - if (!PyArg_ParseTuple(args, "y*y*|n:replace", + if (!PyArg_ParseTuple(args, + "y*y*|n:replace", &old, &new, &count)) goto exit; return_value = bytes_replace_impl(self, &old, &new, count); @@ -416,7 +424,8 @@ const char *encoding = NULL; const char *errors = NULL; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ss:decode", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|ss:decode", _keywords, &encoding, &errors)) goto exit; return_value = bytes_decode_impl(self, encoding, errors); @@ -447,7 +456,8 @@ static char *_keywords[] = {"keepends", NULL}; int keepends = 0; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i:splitlines", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|i:splitlines", _keywords, &keepends)) goto exit; return_value = bytes_splitlines_impl(self, keepends); @@ -477,11 +487,13 @@ PyObject *return_value = NULL; PyObject *string; - if (!PyArg_Parse(arg, "U:fromhex", &string)) + if (!PyArg_Parse(arg, + "U:fromhex", + &string)) goto exit; return_value = bytes_fromhex_impl(type, string); exit: return return_value; } -/*[clinic end generated code: output=bd0ce8f25d7e18f4 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=deaf886e15270679 input=a9049054013a1b77]*/ diff --git a/Objects/clinic/unicodeobject.c.h b/Objects/clinic/unicodeobject.c.h --- a/Objects/clinic/unicodeobject.c.h +++ b/Objects/clinic/unicodeobject.c.h @@ -30,7 +30,8 @@ PyObject *y = NULL; PyObject *z = NULL; - if (!PyArg_ParseTuple(args, "O|UU:maketrans", + if (!PyArg_ParseTuple(args, + "O|UU:maketrans", &x, &y, &z)) goto exit; return_value = unicode_maketrans_impl(x, y, z); @@ -38,4 +39,4 @@ exit: return return_value; } -/*[clinic end generated code: output=94affdff5b2daff5 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=4670413843c53055 input=a9049054013a1b77]*/ diff --git a/Objects/descrobject.c b/Objects/descrobject.c --- a/Objects/descrobject.c +++ b/Objects/descrobject.c @@ -1372,8 +1372,6 @@ static PyObject * property_descr_get(PyObject *self, PyObject *obj, PyObject *type) { - static PyObject *args = NULL; - PyObject *ret; propertyobject *gs = (propertyobject *)self; if (obj == NULL || obj == Py_None) { @@ -1384,13 +1382,7 @@ PyErr_SetString(PyExc_AttributeError, "unreadable attribute"); return NULL; } - if (!args && !(args = PyTuple_New(1))) { - return NULL; - } - PyTuple_SET_ITEM(args, 0, obj); - ret = PyObject_Call(gs->prop_get, args, NULL); - PyTuple_SET_ITEM(args, 0, NULL); - return ret; + return PyObject_CallFunctionObjArgs(gs->prop_get, obj, NULL); } static int diff --git a/Objects/genobject.c b/Objects/genobject.c --- a/Objects/genobject.c +++ b/Objects/genobject.c @@ -396,30 +396,13 @@ if (PyErr_ExceptionMatches(PyExc_StopIteration)) { PyErr_Fetch(&et, &ev, &tb); - if (ev) { - /* exception will usually be normalised already */ - if (Py_TYPE(ev) == (PyTypeObject *) et - || PyObject_IsInstance(ev, PyExc_StopIteration)) { - value = ((PyStopIterationObject *)ev)->value; - Py_INCREF(value); - Py_DECREF(ev); - } else if (et == PyExc_StopIteration) { - /* avoid normalisation and take ev as value */ - value = ev; - } else { - /* normalisation required */ - PyErr_NormalizeException(&et, &ev, &tb); - if (!PyObject_IsInstance(ev, PyExc_StopIteration)) { - PyErr_Restore(et, ev, tb); - return -1; - } - value = ((PyStopIterationObject *)ev)->value; - Py_INCREF(value); - Py_DECREF(ev); - } - } Py_XDECREF(et); Py_XDECREF(tb); + if (ev) { + value = ((PyStopIterationObject *)ev)->value; + Py_INCREF(value); + Py_DECREF(ev); + } } else if (PyErr_Occurred()) { return -1; } diff --git a/Objects/listobject.c b/Objects/listobject.c --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -1961,10 +1961,8 @@ keys = &ms.temparray[saved_ob_size+1]; else { keys = PyMem_MALLOC(sizeof(PyObject *) * saved_ob_size); - if (keys == NULL) { - PyErr_NoMemory(); - goto keyfunc_fail; - } + if (keys == NULL) + return NULL; } for (i = 0; i < saved_ob_size ; i++) { diff --git a/Objects/memoryobject.c b/Objects/memoryobject.c --- a/Objects/memoryobject.c +++ b/Objects/memoryobject.c @@ -1,7 +1,6 @@ /* Memoryview object implementation */ #include "Python.h" -#include "pystrhex.h" #include @@ -2159,14 +2158,6 @@ } static PyObject * -memory_hex(PyMemoryViewObject *self, PyObject *dummy) -{ - Py_buffer *src = VIEW_ADDR(self); - CHECK_RELEASED(self); - return _Py_strhex(src->buf, src->len); -} - -static PyObject * memory_repr(PyMemoryViewObject *self) { if (self->flags & _Py_MEMORYVIEW_RELEASED) @@ -3070,10 +3061,6 @@ "tobytes($self, /)\n--\n\ \n\ Return the data in the buffer as a byte string."); -PyDoc_STRVAR(memory_hex_doc, -"hex($self, /)\n--\n\ -\n\ -Return the data in the buffer as a string of hexadecimal numbers."); PyDoc_STRVAR(memory_tolist_doc, "tolist($self, /)\n--\n\ \n\ @@ -3086,7 +3073,6 @@ static PyMethodDef memory_methods[] = { {"release", (PyCFunction)memory_release, METH_NOARGS, memory_release_doc}, {"tobytes", (PyCFunction)memory_tobytes, METH_NOARGS, memory_tobytes_doc}, - {"hex", (PyCFunction)memory_hex, METH_NOARGS, memory_hex_doc}, {"tolist", (PyCFunction)memory_tolist, METH_NOARGS, memory_tolist_doc}, {"cast", (PyCFunction)memory_cast, METH_VARARGS|METH_KEYWORDS, memory_cast_doc}, {"__enter__", memory_enter, METH_NOARGS, NULL}, diff --git a/Objects/methodobject.c b/Objects/methodobject.c --- a/Objects/methodobject.c +++ b/Objects/methodobject.c @@ -16,7 +16,7 @@ /* undefine macro trampoline to PyCFunction_NewEx */ #undef PyCFunction_New -PyAPI_FUNC(PyObject *) +PyObject * PyCFunction_New(PyMethodDef *ml, PyObject *self) { return PyCFunction_NewEx(ml, self, NULL); diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c --- a/Objects/rangeobject.c +++ b/Objects/rangeobject.c @@ -139,11 +139,7 @@ "range(stop) -> range object\n\ range(start, stop[, step]) -> range object\n\ \n\ -Return an object that produces a sequence of integers from start (inclusive)\n\ -to stop (exclusive) by step. range(i, j) produces i, i+1, i+2, ..., j-1.\n\ -start defaults to 0, and stop is omitted! range(4) produces 0, 1, 2, 3.\n\ -These are exactly the valid indices for a list of 4 elements.\n\ -When step is given, it specifies the increment (or decrement)."); +Return a sequence of numbers from start to stop by step."); static void range_dealloc(rangeobject *r) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -3607,6 +3607,21 @@ int +_PyUnicode_HasNULChars(PyObject* str) +{ + Py_ssize_t pos; + + if (PyUnicode_READY(str) == -1) + return -1; + pos = findchar(PyUnicode_DATA(str), PyUnicode_KIND(str), + PyUnicode_GET_LENGTH(str), '\0', 1); + if (pos == -1) + return 0; + else + return 1; +} + +int PyUnicode_FSConverter(PyObject* arg, void* addr) { PyObject *output = NULL; diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -147,7 +147,6 @@ - @@ -377,7 +376,6 @@ - diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -243,9 +243,6 @@ Include - - Include - Include @@ -911,9 +908,6 @@ Python - - Python - Python diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -1307,8 +1307,6 @@ { PyObject *s; int result; - if (tok->decoding_erred) - return 0; s = PyUnicode_DecodeUTF8(tok->start, tok->cur - tok->start, NULL); if (s == NULL || PyUnicode_READY(s) == -1) { if (PyErr_ExceptionMatches(PyExc_UnicodeDecodeError)) { @@ -1477,8 +1475,11 @@ c = tok_nextc(tok); } tok_backup(tok, c); - if (nonascii && !verify_identifier(tok)) + if (nonascii && + !verify_identifier(tok)) { + tok->done = E_IDENTIFIER; return ERRORTOKEN; + } *p_start = tok->start; *p_end = tok->cur; return NAME; diff --git a/Programs/_freeze_importlib.c b/Programs/_freeze_importlib.c --- a/Programs/_freeze_importlib.c +++ b/Programs/_freeze_importlib.c @@ -12,6 +12,7 @@ #include #endif +int Py_FrozenFlag = 1; /* Suppress errors from getpath.c */ /* To avoid a circular dependency on frozen.o, we create our own structure of frozen modules instead, left deliberately blank so as to avoid @@ -33,13 +34,14 @@ int main(int argc, char *argv[]) { - char *inpath, *outpath; + char *inpath, *outpath, *code_name; FILE *infile = NULL, *outfile = NULL; struct _Py_stat_struct status; size_t text_size, data_size, n; char *text = NULL; unsigned char *data; PyObject *code = NULL, *marshalled = NULL; + int is_bootstrap = 1; PyImport_FrozenModules = _PyImport_FrozenModules; @@ -82,8 +84,14 @@ /* Don't install importlib, since it could execute outdated bytecode. */ _Py_InitializeEx_Private(1, 0); - code = Py_CompileStringExFlags(text, "", - Py_file_input, NULL, 0); + if (strstr(inpath, "_external") != NULL) { + is_bootstrap = 0; + } + + code_name = is_bootstrap ? + "" : + ""; + code = Py_CompileStringExFlags(text, code_name, Py_file_input, NULL, 0); if (code == NULL) goto error; free(text); @@ -106,7 +114,11 @@ goto error; } fprintf(outfile, "%s\n", header); - fprintf(outfile, "const unsigned char _Py_M__importlib[] = {\n"); + if (is_bootstrap) + fprintf(outfile, "const unsigned char _Py_M__importlib[] = {\n"); + else + fprintf(outfile, + "const unsigned char _Py_M__importlib_external[] = {\n"); for (n = 0; n < data_size; n += 16) { size_t i, end = Py_MIN(n + 16, data_size); fprintf(outfile, " "); diff --git a/Python/clinic/bltinmodule.c.h b/Python/clinic/bltinmodule.c.h --- a/Python/clinic/bltinmodule.c.h +++ b/Python/clinic/bltinmodule.c.h @@ -93,7 +93,8 @@ PyObject *value; PyObject *format_spec = NULL; - if (!PyArg_ParseTuple(args, "O|U:format", + if (!PyArg_ParseTuple(args, + "O|U:format", &value, &format_spec)) goto exit; return_value = builtin_format_impl(module, value, format_spec); @@ -120,7 +121,9 @@ PyObject *return_value = NULL; int i; - if (!PyArg_Parse(arg, "i:chr", &i)) + if (!PyArg_Parse(arg, + "i:chr", + &i)) goto exit; return_value = builtin_chr_impl(module, i); @@ -166,7 +169,8 @@ int dont_inherit = 0; int optimize = -1; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OO&s|iii:compile", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "OO&s|iii:compile", _keywords, &source, PyUnicode_FSDecoder, &filename, &mode, &flags, &dont_inherit, &optimize)) goto exit; return_value = builtin_compile_impl(module, source, filename, mode, flags, dont_inherit, optimize); @@ -660,4 +664,4 @@ exit: return return_value; } -/*[clinic end generated code: output=9b34d1ca57effad8 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=b308ab64aa4d4ff8 input=a9049054013a1b77]*/ diff --git a/Python/clinic/import.c.h b/Python/clinic/import.c.h --- a/Python/clinic/import.c.h +++ b/Python/clinic/import.c.h @@ -88,7 +88,8 @@ PyCodeObject *code; PyObject *path; - if (!PyArg_ParseTuple(args, "O!U:_fix_co_filename", + if (!PyArg_ParseTuple(args, + "O!U:_fix_co_filename", &PyCode_Type, &code, &path)) goto exit; return_value = _imp__fix_co_filename_impl(module, code, path); @@ -133,7 +134,9 @@ PyObject *return_value = NULL; PyObject *name; - if (!PyArg_Parse(arg, "U:init_builtin", &name)) + if (!PyArg_Parse(arg, + "U:init_builtin", + &name)) goto exit; return_value = _imp_init_builtin_impl(module, name); @@ -159,7 +162,9 @@ PyObject *return_value = NULL; PyObject *name; - if (!PyArg_Parse(arg, "U:init_frozen", &name)) + if (!PyArg_Parse(arg, + "U:init_frozen", + &name)) goto exit; return_value = _imp_init_frozen_impl(module, name); @@ -185,7 +190,9 @@ PyObject *return_value = NULL; PyObject *name; - if (!PyArg_Parse(arg, "U:get_frozen_object", &name)) + if (!PyArg_Parse(arg, + "U:get_frozen_object", + &name)) goto exit; return_value = _imp_get_frozen_object_impl(module, name); @@ -211,7 +218,9 @@ PyObject *return_value = NULL; PyObject *name; - if (!PyArg_Parse(arg, "U:is_frozen_package", &name)) + if (!PyArg_Parse(arg, + "U:is_frozen_package", + &name)) goto exit; return_value = _imp_is_frozen_package_impl(module, name); @@ -237,7 +246,9 @@ PyObject *return_value = NULL; PyObject *name; - if (!PyArg_Parse(arg, "U:is_builtin", &name)) + if (!PyArg_Parse(arg, + "U:is_builtin", + &name)) goto exit; return_value = _imp_is_builtin_impl(module, name); @@ -263,7 +274,9 @@ PyObject *return_value = NULL; PyObject *name; - if (!PyArg_Parse(arg, "U:is_frozen", &name)) + if (!PyArg_Parse(arg, + "U:is_frozen", + &name)) goto exit; return_value = _imp_is_frozen_impl(module, name); @@ -294,7 +307,8 @@ PyObject *path; PyObject *file = NULL; - if (!PyArg_ParseTuple(args, "UO&|O:load_dynamic", + if (!PyArg_ParseTuple(args, + "UO&|O:load_dynamic", &name, PyUnicode_FSDecoder, &path, &file)) goto exit; return_value = _imp_load_dynamic_impl(module, name, path, file); @@ -308,4 +322,4 @@ #ifndef _IMP_LOAD_DYNAMIC_METHODDEF #define _IMP_LOAD_DYNAMIC_METHODDEF #endif /* !defined(_IMP_LOAD_DYNAMIC_METHODDEF) */ -/*[clinic end generated code: output=6d75cece35863874 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=b64fe33fe76591cf input=a9049054013a1b77]*/ diff --git a/Python/compile.c b/Python/compile.c --- a/Python/compile.c +++ b/Python/compile.c @@ -2753,7 +2753,8 @@ optype = OP_FAST; break; case GLOBAL_IMPLICIT: - if (c->u->u_ste->ste_type == FunctionBlock) + if (c->u->u_ste->ste_type == FunctionBlock && + !c->u->u_ste->ste_unoptimized) optype = OP_GLOBAL; break; case GLOBAL_EXPLICIT: @@ -4184,7 +4185,9 @@ int flags = 0; Py_ssize_t n; if (ste->ste_type == FunctionBlock) { - flags |= CO_NEWLOCALS | CO_OPTIMIZED; + flags |= CO_NEWLOCALS; + if (!ste->ste_unoptimized) + flags |= CO_OPTIMIZED; if (ste->ste_nested) flags |= CO_NESTED; if (ste->ste_generator) diff --git a/Python/frozen.c b/Python/frozen.c --- a/Python/frozen.c +++ b/Python/frozen.c @@ -3,6 +3,7 @@ #include "Python.h" #include "importlib.h" +#include "importlib_external.h" /* In order to test the support for frozen modules, by default we define a single frozen module, __hello__. Loading it will print @@ -31,6 +32,8 @@ static const struct _frozen _PyImport_FrozenModules[] = { /* importlib */ {"_frozen_importlib", _Py_M__importlib, (int)sizeof(_Py_M__importlib)}, + {"_frozen_importlib_external", _Py_M__importlib_external, + (int)sizeof(_Py_M__importlib_external)}, /* Test module */ {"__hello__", M___hello__, SIZE}, /* Test package (negative size indicates package-ness) */ diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -491,8 +491,13 @@ { long res; PyInterpreterState *interp = PyThreadState_Get()->interp; - PyObject *pyc_magic = PyObject_GetAttrString(interp->importlib, - "_RAW_MAGIC_NUMBER"); + PyObject *external, *pyc_magic; + + external = PyObject_GetAttrString(interp->importlib, "_bootstrap_external"); + if (external == NULL) + return -1; + pyc_magic = PyObject_GetAttrString(external, "_RAW_MAGIC_NUMBER"); + Py_DECREF(external); if (pyc_magic == NULL) return -1; res = PyLong_AsLong(pyc_magic); @@ -737,7 +742,7 @@ const char *cpathname) { PyObject *m = NULL; - PyObject *nameobj, *pathobj = NULL, *cpathobj = NULL; + PyObject *nameobj, *pathobj = NULL, *cpathobj = NULL, *external= NULL; nameobj = PyUnicode_FromString(name); if (nameobj == NULL) @@ -765,9 +770,14 @@ "no interpreter!"); } - pathobj = _PyObject_CallMethodIdObjArgs(interp->importlib, - &PyId__get_sourcefile, cpathobj, - NULL); + external= PyObject_GetAttrString(interp->importlib, + "_bootstrap_external"); + if (external != NULL) { + pathobj = _PyObject_CallMethodIdObjArgs(external, + &PyId__get_sourcefile, cpathobj, + NULL); + Py_DECREF(external); + } if (pathobj == NULL) PyErr_Clear(); } @@ -833,7 +843,7 @@ PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname, PyObject *cpathname) { - PyObject *d, *res; + PyObject *d, *external, *res; PyInterpreterState *interp = PyThreadState_GET()->interp; _Py_IDENTIFIER(_fix_up_module); @@ -845,9 +855,13 @@ if (pathname == NULL) { pathname = ((PyCodeObject *)co)->co_filename; } - res = _PyObject_CallMethodIdObjArgs(interp->importlib, + external = PyObject_GetAttrString(interp->importlib, "_bootstrap_external"); + if (external == NULL) + return NULL; + res = _PyObject_CallMethodIdObjArgs(external, &PyId__fix_up_module, d, name, pathname, cpathname, NULL); + Py_DECREF(external); if (res != NULL) { Py_DECREF(res); res = exec_code_in_module(name, d, co); @@ -1245,6 +1259,7 @@ remove_importlib_frames(void) { const char *importlib_filename = ""; + const char *external_filename = ""; const char *remove_frames = "_call_with_frames_removed"; int always_trim = 0; int in_importlib = 0; @@ -1274,7 +1289,10 @@ assert(PyTraceBack_Check(tb)); now_in_importlib = (PyUnicode_CompareWithASCIIString( code->co_filename, - importlib_filename) == 0); + importlib_filename) == 0) || + (PyUnicode_CompareWithASCIIString( + code->co_filename, + external_filename) == 0); if (now_in_importlib && !in_importlib) { /* This is the link to this chunk of importlib tracebacks */ outer_link = prev_link; diff --git a/Python/importlib.h b/Python/importlib.h --- a/Python/importlib.h +++ b/Python/importlib.h @@ -1,2148 +1,1223 @@ /* Auto-generated by Programs/_freeze_importlib.c */ const unsigned char _Py_M__importlib[] = { - 99,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0, - 0,64,0,0,0,115,56,5,0,0,100,0,0,90,0,0, - 100,178,0,90,1,0,100,4,0,100,5,0,132,0,0,90, - 2,0,100,6,0,100,7,0,132,0,0,90,3,0,100,8, - 0,100,9,0,132,0,0,90,4,0,100,10,0,100,11,0, - 132,0,0,90,5,0,100,12,0,100,13,0,132,0,0,90, - 6,0,100,14,0,100,15,0,132,0,0,90,7,0,100,16, - 0,100,17,0,132,0,0,90,8,0,100,18,0,100,19,0, - 132,0,0,90,9,0,100,20,0,100,21,0,132,0,0,90, - 10,0,100,22,0,100,23,0,100,24,0,132,1,0,90,11, - 0,100,25,0,100,26,0,132,0,0,90,12,0,100,27,0, - 100,28,0,132,0,0,90,13,0,101,14,0,101,12,0,106, - 15,0,131,1,0,90,16,0,71,100,29,0,100,30,0,132, - 0,0,100,30,0,131,2,0,90,17,0,105,0,0,90,18, - 0,105,0,0,90,19,0,71,100,31,0,100,32,0,132,0, - 0,100,32,0,101,20,0,131,3,0,90,21,0,71,100,33, - 0,100,34,0,132,0,0,100,34,0,131,2,0,90,22,0, - 71,100,35,0,100,36,0,132,0,0,100,36,0,131,2,0, - 90,23,0,71,100,37,0,100,38,0,132,0,0,100,38,0, - 131,2,0,90,24,0,100,39,0,100,40,0,132,0,0,90, - 25,0,100,41,0,100,42,0,132,0,0,90,26,0,100,43, - 0,100,44,0,132,0,0,90,27,0,100,45,0,106,28,0, - 100,46,0,100,47,0,131,2,0,100,48,0,23,90,29,0, - 101,30,0,106,31,0,101,29,0,100,47,0,131,2,0,90, - 32,0,100,49,0,90,33,0,100,50,0,90,34,0,100,51, - 0,103,1,0,90,35,0,100,52,0,103,1,0,90,36,0, - 101,36,0,4,90,37,0,90,38,0,100,53,0,100,54,0, - 100,53,0,100,55,0,100,56,0,132,1,1,90,39,0,100, - 57,0,100,58,0,132,0,0,90,40,0,100,59,0,100,60, - 0,132,0,0,90,41,0,100,61,0,100,62,0,132,0,0, - 90,42,0,100,63,0,100,64,0,100,65,0,100,66,0,132, - 0,1,90,43,0,100,67,0,100,68,0,132,0,0,90,44, - 0,100,69,0,100,70,0,132,0,0,90,45,0,100,71,0, - 100,72,0,132,0,0,90,46,0,100,73,0,100,74,0,132, - 0,0,90,47,0,100,75,0,100,76,0,132,0,0,90,48, - 0,100,53,0,100,53,0,100,53,0,100,77,0,100,78,0, - 132,3,0,90,49,0,100,53,0,100,53,0,100,53,0,100, - 79,0,100,80,0,132,3,0,90,50,0,100,81,0,100,81, - 0,100,82,0,100,83,0,132,2,0,90,51,0,100,84,0, - 100,85,0,132,0,0,90,52,0,100,86,0,100,87,0,132, - 0,0,90,53,0,71,100,88,0,100,89,0,132,0,0,100, - 89,0,131,2,0,90,54,0,71,100,90,0,100,91,0,132, - 0,0,100,91,0,131,2,0,90,55,0,100,92,0,100,53, - 0,100,93,0,100,53,0,100,94,0,100,95,0,132,0,2, - 90,56,0,101,57,0,131,0,0,90,58,0,100,53,0,100, - 96,0,100,53,0,100,97,0,101,58,0,100,98,0,100,99, - 0,132,1,2,90,59,0,100,53,0,100,53,0,100,100,0, - 100,101,0,132,2,0,90,60,0,100,102,0,100,103,0,100, - 104,0,100,105,0,132,0,1,90,61,0,100,106,0,100,107, - 0,132,0,0,90,62,0,100,108,0,100,109,0,132,0,0, - 90,63,0,100,110,0,100,111,0,132,0,0,90,64,0,100, - 112,0,100,113,0,132,0,0,90,65,0,100,114,0,100,115, - 0,132,0,0,90,66,0,100,116,0,100,117,0,132,0,0, - 90,67,0,100,53,0,100,118,0,100,119,0,132,1,0,90, - 68,0,71,100,120,0,100,121,0,132,0,0,100,121,0,131, - 2,0,90,69,0,71,100,122,0,100,123,0,132,0,0,100, - 123,0,131,2,0,90,70,0,71,100,124,0,100,125,0,132, - 0,0,100,125,0,131,2,0,90,71,0,71,100,126,0,100, - 127,0,132,0,0,100,127,0,131,2,0,90,72,0,71,100, - 128,0,100,129,0,132,0,0,100,129,0,101,72,0,131,3, - 0,90,73,0,71,100,130,0,100,131,0,132,0,0,100,131, - 0,131,2,0,90,74,0,71,100,132,0,100,133,0,132,0, - 0,100,133,0,101,74,0,101,73,0,131,4,0,90,75,0, - 71,100,134,0,100,135,0,132,0,0,100,135,0,101,74,0, - 101,72,0,131,4,0,90,76,0,103,0,0,90,77,0,71, - 100,136,0,100,137,0,132,0,0,100,137,0,131,2,0,90, - 78,0,71,100,138,0,100,139,0,132,0,0,100,139,0,131, - 2,0,90,79,0,71,100,140,0,100,141,0,132,0,0,100, - 141,0,131,2,0,90,80,0,71,100,142,0,100,143,0,132, - 0,0,100,143,0,131,2,0,90,81,0,71,100,144,0,100, - 145,0,132,0,0,100,145,0,131,2,0,90,82,0,71,100, - 146,0,100,147,0,132,0,0,100,147,0,131,2,0,90,83, - 0,100,148,0,100,149,0,132,0,0,90,84,0,100,150,0, - 100,151,0,132,0,0,90,85,0,100,53,0,100,152,0,100, - 153,0,132,1,0,90,86,0,100,154,0,100,155,0,132,0, - 0,90,87,0,100,156,0,90,88,0,101,88,0,100,157,0, - 23,90,89,0,100,158,0,100,159,0,132,0,0,90,90,0, - 100,160,0,100,161,0,132,0,0,90,91,0,100,53,0,100, - 81,0,100,162,0,100,163,0,132,2,0,90,92,0,100,164, - 0,100,165,0,132,0,0,90,93,0,100,166,0,100,167,0, - 132,0,0,90,94,0,100,168,0,100,169,0,132,0,0,90, - 95,0,100,53,0,100,53,0,102,0,0,100,81,0,100,170, - 0,100,171,0,132,4,0,90,96,0,100,172,0,100,173,0, - 132,0,0,90,97,0,100,174,0,100,175,0,132,0,0,90, - 98,0,100,176,0,100,177,0,132,0,0,90,99,0,100,53, - 0,83,41,179,97,83,1,0,0,67,111,114,101,32,105,109, - 112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32, - 105,109,112,111,114,116,46,10,10,84,104,105,115,32,109,111, - 100,117,108,101,32,105,115,32,78,79,84,32,109,101,97,110, - 116,32,116,111,32,98,101,32,100,105,114,101,99,116,108,121, - 32,105,109,112,111,114,116,101,100,33,32,73,116,32,104,97, - 115,32,98,101,101,110,32,100,101,115,105,103,110,101,100,32, - 115,117,99,104,10,116,104,97,116,32,105,116,32,99,97,110, - 32,98,101,32,98,111,111,116,115,116,114,97,112,112,101,100, - 32,105,110,116,111,32,80,121,116,104,111,110,32,97,115,32, - 116,104,101,32,105,109,112,108,101,109,101,110,116,97,116,105, - 111,110,32,111,102,32,105,109,112,111,114,116,46,32,65,115, - 10,115,117,99,104,32,105,116,32,114,101,113,117,105,114,101, - 115,32,116,104,101,32,105,110,106,101,99,116,105,111,110,32, - 111,102,32,115,112,101,99,105,102,105,99,32,109,111,100,117, - 108,101,115,32,97,110,100,32,97,116,116,114,105,98,117,116, - 101,115,32,105,110,32,111,114,100,101,114,32,116,111,10,119, - 111,114,107,46,32,79,110,101,32,115,104,111,117,108,100,32, - 117,115,101,32,105,109,112,111,114,116,108,105,98,32,97,115, - 32,116,104,101,32,112,117,98,108,105,99,45,102,97,99,105, - 110,103,32,118,101,114,115,105,111,110,32,111,102,32,116,104, - 105,115,32,109,111,100,117,108,101,46,10,10,218,3,119,105, - 110,218,6,99,121,103,119,105,110,218,6,100,97,114,119,105, - 110,99,0,0,0,0,0,0,0,0,1,0,0,0,2,0, - 0,0,67,0,0,0,115,49,0,0,0,116,0,0,106,1, - 0,106,2,0,116,3,0,131,1,0,114,33,0,100,1,0, - 100,2,0,132,0,0,125,0,0,110,12,0,100,3,0,100, - 2,0,132,0,0,125,0,0,124,0,0,83,41,4,78,99, - 0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0, - 83,0,0,0,115,13,0,0,0,100,1,0,116,0,0,106, - 1,0,107,6,0,83,41,2,122,53,84,114,117,101,32,105, - 102,32,102,105,108,101,110,97,109,101,115,32,109,117,115,116, - 32,98,101,32,99,104,101,99,107,101,100,32,99,97,115,101, - 45,105,110,115,101,110,115,105,116,105,118,101,108,121,46,115, - 12,0,0,0,80,89,84,72,79,78,67,65,83,69,79,75, - 41,2,218,3,95,111,115,90,7,101,110,118,105,114,111,110, - 169,0,114,4,0,0,0,114,4,0,0,0,250,29,60,102, - 114,111,122,101,110,32,105,109,112,111,114,116,108,105,98,46, - 95,98,111,111,116,115,116,114,97,112,62,218,11,95,114,101, - 108,97,120,95,99,97,115,101,30,0,0,0,115,2,0,0, - 0,0,2,122,37,95,109,97,107,101,95,114,101,108,97,120, - 95,99,97,115,101,46,60,108,111,99,97,108,115,62,46,95, - 114,101,108,97,120,95,99,97,115,101,99,0,0,0,0,0, - 0,0,0,0,0,0,0,1,0,0,0,83,0,0,0,115, - 4,0,0,0,100,1,0,83,41,2,122,53,84,114,117,101, - 32,105,102,32,102,105,108,101,110,97,109,101,115,32,109,117, - 115,116,32,98,101,32,99,104,101,99,107,101,100,32,99,97, - 115,101,45,105,110,115,101,110,115,105,116,105,118,101,108,121, - 46,70,114,4,0,0,0,114,4,0,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,114,6,0,0,0, - 34,0,0,0,115,2,0,0,0,0,2,41,4,218,3,115, - 121,115,218,8,112,108,97,116,102,111,114,109,218,10,115,116, - 97,114,116,115,119,105,116,104,218,27,95,67,65,83,69,95, - 73,78,83,69,78,83,73,84,73,86,69,95,80,76,65,84, - 70,79,82,77,83,41,1,114,6,0,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,218,16,95,109,97, - 107,101,95,114,101,108,97,120,95,99,97,115,101,28,0,0, - 0,115,8,0,0,0,0,1,18,1,15,4,12,3,114,11, + 99,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0, + 0,64,0,0,0,115,163,2,0,0,100,0,0,90,0,0, + 100,1,0,100,2,0,132,0,0,90,1,0,100,3,0,100, + 4,0,132,0,0,90,2,0,71,100,5,0,100,6,0,132, + 0,0,100,6,0,131,2,0,90,3,0,105,0,0,90,4, + 0,105,0,0,90,5,0,71,100,7,0,100,8,0,132,0, + 0,100,8,0,101,6,0,131,3,0,90,7,0,71,100,9, + 0,100,10,0,132,0,0,100,10,0,131,2,0,90,8,0, + 71,100,11,0,100,12,0,132,0,0,100,12,0,131,2,0, + 90,9,0,71,100,13,0,100,14,0,132,0,0,100,14,0, + 131,2,0,90,10,0,100,15,0,100,16,0,132,0,0,90, + 11,0,100,17,0,100,18,0,132,0,0,90,12,0,100,19, + 0,100,20,0,132,0,0,90,13,0,100,21,0,100,22,0, + 100,23,0,100,24,0,132,0,1,90,14,0,100,25,0,100, + 26,0,132,0,0,90,15,0,100,27,0,100,28,0,132,0, + 0,90,16,0,100,29,0,100,30,0,132,0,0,90,17,0, + 100,31,0,100,32,0,132,0,0,90,18,0,71,100,33,0, + 100,34,0,132,0,0,100,34,0,131,2,0,90,19,0,71, + 100,35,0,100,36,0,132,0,0,100,36,0,131,2,0,90, + 20,0,100,37,0,100,38,0,100,39,0,100,38,0,100,40, + 0,100,41,0,132,0,2,90,21,0,101,22,0,131,0,0, + 90,23,0,100,38,0,100,38,0,100,42,0,100,43,0,132, + 2,0,90,24,0,100,44,0,100,45,0,100,46,0,100,47, + 0,132,0,1,90,25,0,100,48,0,100,49,0,132,0,0, + 90,26,0,100,50,0,100,51,0,132,0,0,90,27,0,100, + 52,0,100,53,0,132,0,0,90,28,0,100,54,0,100,55, + 0,132,0,0,90,29,0,100,56,0,100,57,0,132,0,0, + 90,30,0,100,58,0,100,59,0,132,0,0,90,31,0,71, + 100,60,0,100,61,0,132,0,0,100,61,0,131,2,0,90, + 32,0,71,100,62,0,100,63,0,132,0,0,100,63,0,131, + 2,0,90,33,0,71,100,64,0,100,65,0,132,0,0,100, + 65,0,131,2,0,90,34,0,100,66,0,100,67,0,132,0, + 0,90,35,0,100,68,0,100,69,0,132,0,0,90,36,0, + 100,38,0,100,70,0,100,71,0,132,1,0,90,37,0,100, + 72,0,100,73,0,132,0,0,90,38,0,100,74,0,90,39, + 0,101,39,0,100,75,0,23,90,40,0,100,76,0,100,77, + 0,132,0,0,90,41,0,100,78,0,100,79,0,132,0,0, + 90,42,0,100,38,0,100,80,0,100,81,0,100,82,0,132, + 2,0,90,43,0,100,83,0,100,84,0,132,0,0,90,44, + 0,100,85,0,100,86,0,132,0,0,90,45,0,100,38,0, + 100,38,0,102,0,0,100,80,0,100,87,0,100,88,0,132, + 4,0,90,46,0,100,89,0,100,90,0,132,0,0,90,47, + 0,100,91,0,100,92,0,132,0,0,90,48,0,100,93,0, + 100,94,0,132,0,0,90,49,0,100,38,0,83,41,95,97, + 83,1,0,0,67,111,114,101,32,105,109,112,108,101,109,101, + 110,116,97,116,105,111,110,32,111,102,32,105,109,112,111,114, + 116,46,10,10,84,104,105,115,32,109,111,100,117,108,101,32, + 105,115,32,78,79,84,32,109,101,97,110,116,32,116,111,32, + 98,101,32,100,105,114,101,99,116,108,121,32,105,109,112,111, + 114,116,101,100,33,32,73,116,32,104,97,115,32,98,101,101, + 110,32,100,101,115,105,103,110,101,100,32,115,117,99,104,10, + 116,104,97,116,32,105,116,32,99,97,110,32,98,101,32,98, + 111,111,116,115,116,114,97,112,112,101,100,32,105,110,116,111, + 32,80,121,116,104,111,110,32,97,115,32,116,104,101,32,105, + 109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102, + 32,105,109,112,111,114,116,46,32,65,115,10,115,117,99,104, + 32,105,116,32,114,101,113,117,105,114,101,115,32,116,104,101, + 32,105,110,106,101,99,116,105,111,110,32,111,102,32,115,112, + 101,99,105,102,105,99,32,109,111,100,117,108,101,115,32,97, + 110,100,32,97,116,116,114,105,98,117,116,101,115,32,105,110, + 32,111,114,100,101,114,32,116,111,10,119,111,114,107,46,32, + 79,110,101,32,115,104,111,117,108,100,32,117,115,101,32,105, + 109,112,111,114,116,108,105,98,32,97,115,32,116,104,101,32, + 112,117,98,108,105,99,45,102,97,99,105,110,103,32,118,101, + 114,115,105,111,110,32,111,102,32,116,104,105,115,32,109,111, + 100,117,108,101,46,10,10,99,2,0,0,0,0,0,0,0, + 3,0,0,0,7,0,0,0,67,0,0,0,115,92,0,0, + 0,120,66,0,100,1,0,100,2,0,100,3,0,100,4,0, + 103,4,0,68,93,46,0,125,2,0,116,0,0,124,1,0, + 124,2,0,131,2,0,114,19,0,116,1,0,124,0,0,124, + 2,0,116,2,0,124,1,0,124,2,0,131,2,0,131,3, + 0,1,113,19,0,87,124,0,0,106,3,0,106,4,0,124, + 1,0,106,3,0,131,1,0,1,100,5,0,83,41,6,122, + 47,83,105,109,112,108,101,32,115,117,98,115,116,105,116,117, + 116,101,32,102,111,114,32,102,117,110,99,116,111,111,108,115, + 46,117,112,100,97,116,101,95,119,114,97,112,112,101,114,46, + 218,10,95,95,109,111,100,117,108,101,95,95,218,8,95,95, + 110,97,109,101,95,95,218,12,95,95,113,117,97,108,110,97, + 109,101,95,95,218,7,95,95,100,111,99,95,95,78,41,5, + 218,7,104,97,115,97,116,116,114,218,7,115,101,116,97,116, + 116,114,218,7,103,101,116,97,116,116,114,218,8,95,95,100, + 105,99,116,95,95,218,6,117,112,100,97,116,101,41,3,90, + 3,110,101,119,90,3,111,108,100,218,7,114,101,112,108,97, + 99,101,169,0,114,10,0,0,0,250,29,60,102,114,111,122, + 101,110,32,105,109,112,111,114,116,108,105,98,46,95,98,111, + 111,116,115,116,114,97,112,62,218,5,95,119,114,97,112,25, + 0,0,0,115,8,0,0,0,0,2,25,1,15,1,29,1, + 114,12,0,0,0,99,1,0,0,0,0,0,0,0,1,0, + 0,0,2,0,0,0,67,0,0,0,115,16,0,0,0,116, + 0,0,116,1,0,131,1,0,124,0,0,131,1,0,83,41, + 1,78,41,2,218,4,116,121,112,101,218,3,115,121,115,41, + 1,218,4,110,97,109,101,114,10,0,0,0,114,10,0,0, + 0,114,11,0,0,0,218,11,95,110,101,119,95,109,111,100, + 117,108,101,33,0,0,0,115,2,0,0,0,0,1,114,16, + 0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0, + 2,0,0,0,64,0,0,0,115,58,0,0,0,101,0,0, + 90,1,0,100,0,0,90,2,0,100,1,0,90,3,0,100, + 2,0,100,3,0,132,0,0,90,4,0,100,4,0,100,5, + 0,132,0,0,90,5,0,100,6,0,100,7,0,132,0,0, + 90,6,0,100,8,0,83,41,9,218,13,95,77,97,110,97, + 103,101,82,101,108,111,97,100,122,63,77,97,110,97,103,101, + 115,32,116,104,101,32,112,111,115,115,105,98,108,101,32,99, + 108,101,97,110,45,117,112,32,111,102,32,115,121,115,46,109, + 111,100,117,108,101,115,32,102,111,114,32,108,111,97,100,95, + 109,111,100,117,108,101,40,41,46,99,2,0,0,0,0,0, + 0,0,2,0,0,0,2,0,0,0,67,0,0,0,115,13, + 0,0,0,124,1,0,124,0,0,95,0,0,100,0,0,83, + 41,1,78,41,1,218,5,95,110,97,109,101,41,2,218,4, + 115,101,108,102,114,15,0,0,0,114,10,0,0,0,114,10, + 0,0,0,114,11,0,0,0,218,8,95,95,105,110,105,116, + 95,95,41,0,0,0,115,2,0,0,0,0,1,122,22,95, + 77,97,110,97,103,101,82,101,108,111,97,100,46,95,95,105, + 110,105,116,95,95,99,1,0,0,0,0,0,0,0,1,0, + 0,0,2,0,0,0,67,0,0,0,115,25,0,0,0,124, + 0,0,106,0,0,116,1,0,106,2,0,107,6,0,124,0, + 0,95,3,0,100,0,0,83,41,1,78,41,4,114,18,0, + 0,0,114,14,0,0,0,218,7,109,111,100,117,108,101,115, + 218,10,95,105,115,95,114,101,108,111,97,100,41,1,114,19, + 0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,0, + 0,0,218,9,95,95,101,110,116,101,114,95,95,44,0,0, + 0,115,2,0,0,0,0,1,122,23,95,77,97,110,97,103, + 101,82,101,108,111,97,100,46,95,95,101,110,116,101,114,95, + 95,99,1,0,0,0,0,0,0,0,2,0,0,0,11,0, + 0,0,71,0,0,0,115,77,0,0,0,116,0,0,100,1, + 0,100,2,0,132,0,0,124,1,0,68,131,1,0,131,1, + 0,114,73,0,124,0,0,106,1,0,12,114,73,0,121,17, + 0,116,2,0,106,3,0,124,0,0,106,4,0,61,87,110, + 18,0,4,116,5,0,107,10,0,114,72,0,1,1,1,89, + 110,1,0,88,100,0,0,83,41,3,78,99,1,0,0,0, + 0,0,0,0,2,0,0,0,3,0,0,0,115,0,0,0, + 115,27,0,0,0,124,0,0,93,17,0,125,1,0,124,1, + 0,100,0,0,107,9,0,86,1,113,3,0,100,0,0,83, + 41,1,78,114,10,0,0,0,41,2,218,2,46,48,218,3, + 97,114,103,114,10,0,0,0,114,10,0,0,0,114,11,0, + 0,0,250,9,60,103,101,110,101,120,112,114,62,48,0,0, + 0,115,2,0,0,0,6,0,122,41,95,77,97,110,97,103, + 101,82,101,108,111,97,100,46,95,95,101,120,105,116,95,95, + 46,60,108,111,99,97,108,115,62,46,60,103,101,110,101,120, + 112,114,62,41,6,218,3,97,110,121,114,22,0,0,0,114, + 14,0,0,0,114,21,0,0,0,114,18,0,0,0,218,8, + 75,101,121,69,114,114,111,114,41,2,114,19,0,0,0,218, + 4,97,114,103,115,114,10,0,0,0,114,10,0,0,0,114, + 11,0,0,0,218,8,95,95,101,120,105,116,95,95,47,0, + 0,0,115,10,0,0,0,0,1,35,1,3,1,17,1,13, + 1,122,22,95,77,97,110,97,103,101,82,101,108,111,97,100, + 46,95,95,101,120,105,116,95,95,78,41,7,114,1,0,0, + 0,114,0,0,0,0,114,2,0,0,0,114,3,0,0,0, + 114,20,0,0,0,114,23,0,0,0,114,30,0,0,0,114, + 10,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11, + 0,0,0,114,17,0,0,0,37,0,0,0,115,8,0,0, + 0,12,2,6,2,12,3,12,3,114,17,0,0,0,99,0, + 0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,64, + 0,0,0,115,16,0,0,0,101,0,0,90,1,0,100,0, + 0,90,2,0,100,1,0,83,41,2,218,14,95,68,101,97, + 100,108,111,99,107,69,114,114,111,114,78,41,3,114,1,0, + 0,0,114,0,0,0,0,114,2,0,0,0,114,10,0,0, + 0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, + 114,31,0,0,0,62,0,0,0,115,2,0,0,0,12,1, + 114,31,0,0,0,99,0,0,0,0,0,0,0,0,0,0, + 0,0,2,0,0,0,64,0,0,0,115,82,0,0,0,101, + 0,0,90,1,0,100,0,0,90,2,0,100,1,0,90,3, + 0,100,2,0,100,3,0,132,0,0,90,4,0,100,4,0, + 100,5,0,132,0,0,90,5,0,100,6,0,100,7,0,132, + 0,0,90,6,0,100,8,0,100,9,0,132,0,0,90,7, + 0,100,10,0,100,11,0,132,0,0,90,8,0,100,12,0, + 83,41,13,218,11,95,77,111,100,117,108,101,76,111,99,107, + 122,169,65,32,114,101,99,117,114,115,105,118,101,32,108,111, + 99,107,32,105,109,112,108,101,109,101,110,116,97,116,105,111, + 110,32,119,104,105,99,104,32,105,115,32,97,98,108,101,32, + 116,111,32,100,101,116,101,99,116,32,100,101,97,100,108,111, + 99,107,115,10,32,32,32,32,40,101,46,103,46,32,116,104, + 114,101,97,100,32,49,32,116,114,121,105,110,103,32,116,111, + 32,116,97,107,101,32,108,111,99,107,115,32,65,32,116,104, + 101,110,32,66,44,32,97,110,100,32,116,104,114,101,97,100, + 32,50,32,116,114,121,105,110,103,32,116,111,10,32,32,32, + 32,116,97,107,101,32,108,111,99,107,115,32,66,32,116,104, + 101,110,32,65,41,46,10,32,32,32,32,99,2,0,0,0, + 0,0,0,0,2,0,0,0,2,0,0,0,67,0,0,0, + 115,70,0,0,0,116,0,0,106,1,0,131,0,0,124,0, + 0,95,2,0,116,0,0,106,1,0,131,0,0,124,0,0, + 95,3,0,124,1,0,124,0,0,95,4,0,100,0,0,124, + 0,0,95,5,0,100,1,0,124,0,0,95,6,0,100,1, + 0,124,0,0,95,7,0,100,0,0,83,41,2,78,233,0, + 0,0,0,41,8,218,7,95,116,104,114,101,97,100,90,13, + 97,108,108,111,99,97,116,101,95,108,111,99,107,218,4,108, + 111,99,107,218,6,119,97,107,101,117,112,114,15,0,0,0, + 218,5,111,119,110,101,114,218,5,99,111,117,110,116,218,7, + 119,97,105,116,101,114,115,41,2,114,19,0,0,0,114,15, + 0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,0, + 0,0,114,20,0,0,0,72,0,0,0,115,12,0,0,0, + 0,1,15,1,15,1,9,1,9,1,9,1,122,20,95,77, + 111,100,117,108,101,76,111,99,107,46,95,95,105,110,105,116, + 95,95,99,1,0,0,0,0,0,0,0,4,0,0,0,2, + 0,0,0,67,0,0,0,115,88,0,0,0,116,0,0,106, + 1,0,131,0,0,125,1,0,124,0,0,106,2,0,125,2, + 0,120,60,0,116,3,0,106,4,0,124,2,0,131,1,0, + 125,3,0,124,3,0,100,0,0,107,8,0,114,55,0,100, + 1,0,83,124,3,0,106,2,0,125,2,0,124,2,0,124, + 1,0,107,2,0,114,24,0,100,2,0,83,113,24,0,87, + 100,0,0,83,41,3,78,70,84,41,5,114,34,0,0,0, + 218,9,103,101,116,95,105,100,101,110,116,114,37,0,0,0, + 218,12,95,98,108,111,99,107,105,110,103,95,111,110,218,3, + 103,101,116,41,4,114,19,0,0,0,90,2,109,101,218,3, + 116,105,100,114,35,0,0,0,114,10,0,0,0,114,10,0, + 0,0,114,11,0,0,0,218,12,104,97,115,95,100,101,97, + 100,108,111,99,107,80,0,0,0,115,18,0,0,0,0,2, + 12,1,9,1,3,1,15,1,12,1,4,1,9,1,12,1, + 122,24,95,77,111,100,117,108,101,76,111,99,107,46,104,97, + 115,95,100,101,97,100,108,111,99,107,99,1,0,0,0,0, + 0,0,0,2,0,0,0,16,0,0,0,67,0,0,0,115, + 209,0,0,0,116,0,0,106,1,0,131,0,0,125,1,0, + 124,0,0,116,2,0,124,1,0,60,122,172,0,120,165,0, + 124,0,0,106,3,0,143,124,0,1,124,0,0,106,4,0, + 100,1,0,107,2,0,115,68,0,124,0,0,106,5,0,124, + 1,0,107,2,0,114,96,0,124,1,0,124,0,0,95,5, + 0,124,0,0,4,106,4,0,100,2,0,55,2,95,4,0, + 100,3,0,83,124,0,0,106,6,0,131,0,0,114,124,0, + 116,7,0,100,4,0,124,0,0,22,131,1,0,130,1,0, + 124,0,0,106,8,0,106,9,0,100,5,0,131,1,0,114, + 157,0,124,0,0,4,106,10,0,100,2,0,55,2,95,10, + 0,87,100,6,0,81,88,124,0,0,106,8,0,106,9,0, + 131,0,0,1,124,0,0,106,8,0,106,11,0,131,0,0, + 1,113,28,0,87,87,100,6,0,116,2,0,124,1,0,61, + 88,100,6,0,83,41,7,122,185,10,32,32,32,32,32,32, + 32,32,65,99,113,117,105,114,101,32,116,104,101,32,109,111, + 100,117,108,101,32,108,111,99,107,46,32,32,73,102,32,97, + 32,112,111,116,101,110,116,105,97,108,32,100,101,97,100,108, + 111,99,107,32,105,115,32,100,101,116,101,99,116,101,100,44, + 10,32,32,32,32,32,32,32,32,97,32,95,68,101,97,100, + 108,111,99,107,69,114,114,111,114,32,105,115,32,114,97,105, + 115,101,100,46,10,32,32,32,32,32,32,32,32,79,116,104, + 101,114,119,105,115,101,44,32,116,104,101,32,108,111,99,107, + 32,105,115,32,97,108,119,97,121,115,32,97,99,113,117,105, + 114,101,100,32,97,110,100,32,84,114,117,101,32,105,115,32, + 114,101,116,117,114,110,101,100,46,10,32,32,32,32,32,32, + 32,32,114,33,0,0,0,233,1,0,0,0,84,122,23,100, + 101,97,100,108,111,99,107,32,100,101,116,101,99,116,101,100, + 32,98,121,32,37,114,70,78,41,12,114,34,0,0,0,114, + 40,0,0,0,114,41,0,0,0,114,35,0,0,0,114,38, + 0,0,0,114,37,0,0,0,114,44,0,0,0,114,31,0, + 0,0,114,36,0,0,0,218,7,97,99,113,117,105,114,101, + 114,39,0,0,0,218,7,114,101,108,101,97,115,101,41,2, + 114,19,0,0,0,114,43,0,0,0,114,10,0,0,0,114, + 10,0,0,0,114,11,0,0,0,114,46,0,0,0,92,0, + 0,0,115,32,0,0,0,0,6,12,1,10,1,3,1,3, + 1,10,1,30,1,9,1,15,1,4,1,12,1,16,1,18, + 1,21,2,13,1,21,2,122,19,95,77,111,100,117,108,101, + 76,111,99,107,46,97,99,113,117,105,114,101,99,1,0,0, + 0,0,0,0,0,2,0,0,0,10,0,0,0,67,0,0, + 0,115,156,0,0,0,116,0,0,106,1,0,131,0,0,125, + 1,0,124,0,0,106,2,0,143,129,0,1,124,0,0,106, + 3,0,124,1,0,107,3,0,114,49,0,116,4,0,100,1, + 0,131,1,0,130,1,0,124,0,0,106,5,0,100,2,0, + 107,4,0,115,70,0,116,6,0,130,1,0,124,0,0,4, + 106,5,0,100,3,0,56,2,95,5,0,124,0,0,106,5, + 0,100,2,0,107,2,0,114,146,0,100,0,0,124,0,0, + 95,3,0,124,0,0,106,7,0,114,146,0,124,0,0,4, + 106,7,0,100,3,0,56,2,95,7,0,124,0,0,106,8, + 0,106,9,0,131,0,0,1,87,100,0,0,81,88,100,0, + 0,83,41,4,78,122,31,99,97,110,110,111,116,32,114,101, + 108,101,97,115,101,32,117,110,45,97,99,113,117,105,114,101, + 100,32,108,111,99,107,114,33,0,0,0,114,45,0,0,0, + 41,10,114,34,0,0,0,114,40,0,0,0,114,35,0,0, + 0,114,37,0,0,0,218,12,82,117,110,116,105,109,101,69, + 114,114,111,114,114,38,0,0,0,218,14,65,115,115,101,114, + 116,105,111,110,69,114,114,111,114,114,39,0,0,0,114,36, + 0,0,0,114,47,0,0,0,41,2,114,19,0,0,0,114, + 43,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11, + 0,0,0,114,47,0,0,0,117,0,0,0,115,22,0,0, + 0,0,1,12,1,10,1,15,1,12,1,21,1,15,1,15, + 1,9,1,9,1,15,1,122,19,95,77,111,100,117,108,101, + 76,111,99,107,46,114,101,108,101,97,115,101,99,1,0,0, + 0,0,0,0,0,1,0,0,0,4,0,0,0,67,0,0, + 0,115,25,0,0,0,100,1,0,106,0,0,124,0,0,106, + 1,0,116,2,0,124,0,0,131,1,0,131,2,0,83,41, + 2,78,122,23,95,77,111,100,117,108,101,76,111,99,107,40, + 123,33,114,125,41,32,97,116,32,123,125,41,3,218,6,102, + 111,114,109,97,116,114,15,0,0,0,218,2,105,100,41,1, + 114,19,0,0,0,114,10,0,0,0,114,10,0,0,0,114, + 11,0,0,0,218,8,95,95,114,101,112,114,95,95,130,0, + 0,0,115,2,0,0,0,0,1,122,20,95,77,111,100,117, + 108,101,76,111,99,107,46,95,95,114,101,112,114,95,95,78, + 41,9,114,1,0,0,0,114,0,0,0,0,114,2,0,0, + 0,114,3,0,0,0,114,20,0,0,0,114,44,0,0,0, + 114,46,0,0,0,114,47,0,0,0,114,52,0,0,0,114, + 10,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11, + 0,0,0,114,32,0,0,0,66,0,0,0,115,12,0,0, + 0,12,4,6,2,12,8,12,12,12,25,12,13,114,32,0, + 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,2, + 0,0,0,64,0,0,0,115,70,0,0,0,101,0,0,90, + 1,0,100,0,0,90,2,0,100,1,0,90,3,0,100,2, + 0,100,3,0,132,0,0,90,4,0,100,4,0,100,5,0, + 132,0,0,90,5,0,100,6,0,100,7,0,132,0,0,90, + 6,0,100,8,0,100,9,0,132,0,0,90,7,0,100,10, + 0,83,41,11,218,16,95,68,117,109,109,121,77,111,100,117, + 108,101,76,111,99,107,122,86,65,32,115,105,109,112,108,101, + 32,95,77,111,100,117,108,101,76,111,99,107,32,101,113,117, + 105,118,97,108,101,110,116,32,102,111,114,32,80,121,116,104, + 111,110,32,98,117,105,108,100,115,32,119,105,116,104,111,117, + 116,10,32,32,32,32,109,117,108,116,105,45,116,104,114,101, + 97,100,105,110,103,32,115,117,112,112,111,114,116,46,99,2, + 0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,67, + 0,0,0,115,22,0,0,0,124,1,0,124,0,0,95,0, + 0,100,1,0,124,0,0,95,1,0,100,0,0,83,41,2, + 78,114,33,0,0,0,41,2,114,15,0,0,0,114,38,0, + 0,0,41,2,114,19,0,0,0,114,15,0,0,0,114,10, + 0,0,0,114,10,0,0,0,114,11,0,0,0,114,20,0, + 0,0,138,0,0,0,115,4,0,0,0,0,1,9,1,122, + 25,95,68,117,109,109,121,77,111,100,117,108,101,76,111,99, + 107,46,95,95,105,110,105,116,95,95,99,1,0,0,0,0, + 0,0,0,1,0,0,0,3,0,0,0,67,0,0,0,115, + 19,0,0,0,124,0,0,4,106,0,0,100,1,0,55,2, + 95,0,0,100,2,0,83,41,3,78,114,45,0,0,0,84, + 41,1,114,38,0,0,0,41,1,114,19,0,0,0,114,10, + 0,0,0,114,10,0,0,0,114,11,0,0,0,114,46,0, + 0,0,142,0,0,0,115,4,0,0,0,0,1,15,1,122, + 24,95,68,117,109,109,121,77,111,100,117,108,101,76,111,99, + 107,46,97,99,113,117,105,114,101,99,1,0,0,0,0,0, + 0,0,1,0,0,0,3,0,0,0,67,0,0,0,115,46, + 0,0,0,124,0,0,106,0,0,100,1,0,107,2,0,114, + 27,0,116,1,0,100,2,0,131,1,0,130,1,0,124,0, + 0,4,106,0,0,100,3,0,56,2,95,0,0,100,0,0, + 83,41,4,78,114,33,0,0,0,122,31,99,97,110,110,111, + 116,32,114,101,108,101,97,115,101,32,117,110,45,97,99,113, + 117,105,114,101,100,32,108,111,99,107,114,45,0,0,0,41, + 2,114,38,0,0,0,114,48,0,0,0,41,1,114,19,0, + 0,0,114,10,0,0,0,114,10,0,0,0,114,11,0,0, + 0,114,47,0,0,0,146,0,0,0,115,6,0,0,0,0, + 1,15,1,12,1,122,24,95,68,117,109,109,121,77,111,100, + 117,108,101,76,111,99,107,46,114,101,108,101,97,115,101,99, + 1,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0, + 67,0,0,0,115,25,0,0,0,100,1,0,106,0,0,124, + 0,0,106,1,0,116,2,0,124,0,0,131,1,0,131,2, + 0,83,41,2,78,122,28,95,68,117,109,109,121,77,111,100, + 117,108,101,76,111,99,107,40,123,33,114,125,41,32,97,116, + 32,123,125,41,3,114,50,0,0,0,114,15,0,0,0,114, + 51,0,0,0,41,1,114,19,0,0,0,114,10,0,0,0, + 114,10,0,0,0,114,11,0,0,0,114,52,0,0,0,151, + 0,0,0,115,2,0,0,0,0,1,122,25,95,68,117,109, + 109,121,77,111,100,117,108,101,76,111,99,107,46,95,95,114, + 101,112,114,95,95,78,41,8,114,1,0,0,0,114,0,0, + 0,0,114,2,0,0,0,114,3,0,0,0,114,20,0,0, + 0,114,46,0,0,0,114,47,0,0,0,114,52,0,0,0, + 114,10,0,0,0,114,10,0,0,0,114,10,0,0,0,114, + 11,0,0,0,114,53,0,0,0,134,0,0,0,115,10,0, + 0,0,12,2,6,2,12,4,12,4,12,5,114,53,0,0, + 0,99,0,0,0,0,0,0,0,0,0,0,0,0,2,0, + 0,0,64,0,0,0,115,52,0,0,0,101,0,0,90,1, + 0,100,0,0,90,2,0,100,1,0,100,2,0,132,0,0, + 90,3,0,100,3,0,100,4,0,132,0,0,90,4,0,100, + 5,0,100,6,0,132,0,0,90,5,0,100,7,0,83,41, + 8,218,18,95,77,111,100,117,108,101,76,111,99,107,77,97, + 110,97,103,101,114,99,2,0,0,0,0,0,0,0,2,0, + 0,0,2,0,0,0,67,0,0,0,115,22,0,0,0,124, + 1,0,124,0,0,95,0,0,100,0,0,124,0,0,95,1, + 0,100,0,0,83,41,1,78,41,2,114,18,0,0,0,218, + 5,95,108,111,99,107,41,2,114,19,0,0,0,114,15,0, + 0,0,114,10,0,0,0,114,10,0,0,0,114,11,0,0, + 0,114,20,0,0,0,157,0,0,0,115,4,0,0,0,0, + 1,9,1,122,27,95,77,111,100,117,108,101,76,111,99,107, + 77,97,110,97,103,101,114,46,95,95,105,110,105,116,95,95, + 99,1,0,0,0,0,0,0,0,1,0,0,0,10,0,0, + 0,67,0,0,0,115,53,0,0,0,122,22,0,116,0,0, + 124,0,0,106,1,0,131,1,0,124,0,0,95,2,0,87, + 100,0,0,116,3,0,106,4,0,131,0,0,1,88,124,0, + 0,106,2,0,106,5,0,131,0,0,1,100,0,0,83,41, + 1,78,41,6,218,16,95,103,101,116,95,109,111,100,117,108, + 101,95,108,111,99,107,114,18,0,0,0,114,55,0,0,0, + 218,4,95,105,109,112,218,12,114,101,108,101,97,115,101,95, + 108,111,99,107,114,46,0,0,0,41,1,114,19,0,0,0, + 114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,114, + 23,0,0,0,161,0,0,0,115,8,0,0,0,0,1,3, + 1,22,2,11,1,122,28,95,77,111,100,117,108,101,76,111, + 99,107,77,97,110,97,103,101,114,46,95,95,101,110,116,101, + 114,95,95,99,1,0,0,0,0,0,0,0,3,0,0,0, + 1,0,0,0,79,0,0,0,115,17,0,0,0,124,0,0, + 106,0,0,106,1,0,131,0,0,1,100,0,0,83,41,1, + 78,41,2,114,55,0,0,0,114,47,0,0,0,41,3,114, + 19,0,0,0,114,29,0,0,0,90,6,107,119,97,114,103, + 115,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, + 114,30,0,0,0,168,0,0,0,115,2,0,0,0,0,1, + 122,27,95,77,111,100,117,108,101,76,111,99,107,77,97,110, + 97,103,101,114,46,95,95,101,120,105,116,95,95,78,41,6, + 114,1,0,0,0,114,0,0,0,0,114,2,0,0,0,114, + 20,0,0,0,114,23,0,0,0,114,30,0,0,0,114,10, + 0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,0, + 0,0,114,54,0,0,0,155,0,0,0,115,6,0,0,0, + 12,2,12,4,12,7,114,54,0,0,0,99,1,0,0,0, + 0,0,0,0,3,0,0,0,11,0,0,0,3,0,0,0, + 115,139,0,0,0,100,1,0,125,1,0,121,17,0,116,0, + 0,136,0,0,25,131,0,0,125,1,0,87,110,18,0,4, + 116,1,0,107,10,0,114,43,0,1,1,1,89,110,1,0, + 88,124,1,0,100,1,0,107,8,0,114,135,0,116,2,0, + 100,1,0,107,8,0,114,83,0,116,3,0,136,0,0,131, + 1,0,125,1,0,110,12,0,116,4,0,136,0,0,131,1, + 0,125,1,0,135,0,0,102,1,0,100,2,0,100,3,0, + 134,0,0,125,2,0,116,5,0,106,6,0,124,1,0,124, + 2,0,131,2,0,116,0,0,136,0,0,60,124,1,0,83, + 41,4,122,109,71,101,116,32,111,114,32,99,114,101,97,116, + 101,32,116,104,101,32,109,111,100,117,108,101,32,108,111,99, + 107,32,102,111,114,32,97,32,103,105,118,101,110,32,109,111, + 100,117,108,101,32,110,97,109,101,46,10,10,32,32,32,32, + 83,104,111,117,108,100,32,111,110,108,121,32,98,101,32,99, + 97,108,108,101,100,32,119,105,116,104,32,116,104,101,32,105, + 109,112,111,114,116,32,108,111,99,107,32,116,97,107,101,110, + 46,78,99,1,0,0,0,0,0,0,0,1,0,0,0,2, + 0,0,0,19,0,0,0,115,11,0,0,0,116,0,0,136, + 0,0,61,100,0,0,83,41,1,78,41,1,218,13,95,109, + 111,100,117,108,101,95,108,111,99,107,115,41,1,218,1,95, + 41,1,114,15,0,0,0,114,10,0,0,0,114,11,0,0, + 0,218,2,99,98,188,0,0,0,115,2,0,0,0,0,1, + 122,28,95,103,101,116,95,109,111,100,117,108,101,95,108,111, + 99,107,46,60,108,111,99,97,108,115,62,46,99,98,41,7, + 114,59,0,0,0,114,28,0,0,0,114,34,0,0,0,114, + 53,0,0,0,114,32,0,0,0,218,8,95,119,101,97,107, + 114,101,102,90,3,114,101,102,41,3,114,15,0,0,0,114, + 35,0,0,0,114,61,0,0,0,114,10,0,0,0,41,1, + 114,15,0,0,0,114,11,0,0,0,114,56,0,0,0,174, + 0,0,0,115,24,0,0,0,0,4,6,1,3,1,17,1, + 13,1,5,1,12,1,12,1,15,2,12,1,18,2,22,1, + 114,56,0,0,0,99,1,0,0,0,0,0,0,0,2,0, + 0,0,11,0,0,0,67,0,0,0,115,71,0,0,0,116, + 0,0,124,0,0,131,1,0,125,1,0,116,1,0,106,2, + 0,131,0,0,1,121,14,0,124,1,0,106,3,0,131,0, + 0,1,87,110,18,0,4,116,4,0,107,10,0,114,56,0, + 1,1,1,89,110,11,0,88,124,1,0,106,5,0,131,0, + 0,1,100,1,0,83,41,2,97,21,1,0,0,82,101,108, + 101,97,115,101,32,116,104,101,32,103,108,111,98,97,108,32, + 105,109,112,111,114,116,32,108,111,99,107,44,32,97,110,100, + 32,97,99,113,117,105,114,101,115,32,116,104,101,110,32,114, + 101,108,101,97,115,101,32,116,104,101,10,32,32,32,32,109, + 111,100,117,108,101,32,108,111,99,107,32,102,111,114,32,97, + 32,103,105,118,101,110,32,109,111,100,117,108,101,32,110,97, + 109,101,46,10,32,32,32,32,84,104,105,115,32,105,115,32, + 117,115,101,100,32,116,111,32,101,110,115,117,114,101,32,97, + 32,109,111,100,117,108,101,32,105,115,32,99,111,109,112,108, + 101,116,101,108,121,32,105,110,105,116,105,97,108,105,122,101, + 100,44,32,105,110,32,116,104,101,10,32,32,32,32,101,118, + 101,110,116,32,105,116,32,105,115,32,98,101,105,110,103,32, + 105,109,112,111,114,116,101,100,32,98,121,32,97,110,111,116, + 104,101,114,32,116,104,114,101,97,100,46,10,10,32,32,32, + 32,83,104,111,117,108,100,32,111,110,108,121,32,98,101,32, + 99,97,108,108,101,100,32,119,105,116,104,32,116,104,101,32, + 105,109,112,111,114,116,32,108,111,99,107,32,116,97,107,101, + 110,46,78,41,6,114,56,0,0,0,114,57,0,0,0,114, + 58,0,0,0,114,46,0,0,0,114,31,0,0,0,114,47, + 0,0,0,41,2,114,15,0,0,0,114,35,0,0,0,114, + 10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,19, + 95,108,111,99,107,95,117,110,108,111,99,107,95,109,111,100, + 117,108,101,193,0,0,0,115,14,0,0,0,0,7,12,1, + 10,1,3,1,14,1,13,3,5,2,114,63,0,0,0,99, + 1,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0, + 79,0,0,0,115,13,0,0,0,124,0,0,124,1,0,124, + 2,0,142,0,0,83,41,1,97,46,1,0,0,114,101,109, + 111,118,101,95,105,109,112,111,114,116,108,105,98,95,102,114, + 97,109,101,115,32,105,110,32,105,109,112,111,114,116,46,99, + 32,119,105,108,108,32,97,108,119,97,121,115,32,114,101,109, + 111,118,101,32,115,101,113,117,101,110,99,101,115,10,32,32, + 32,32,111,102,32,105,109,112,111,114,116,108,105,98,32,102, + 114,97,109,101,115,32,116,104,97,116,32,101,110,100,32,119, + 105,116,104,32,97,32,99,97,108,108,32,116,111,32,116,104, + 105,115,32,102,117,110,99,116,105,111,110,10,10,32,32,32, + 32,85,115,101,32,105,116,32,105,110,115,116,101,97,100,32, + 111,102,32,97,32,110,111,114,109,97,108,32,99,97,108,108, + 32,105,110,32,112,108,97,99,101,115,32,119,104,101,114,101, + 32,105,110,99,108,117,100,105,110,103,32,116,104,101,32,105, + 109,112,111,114,116,108,105,98,10,32,32,32,32,102,114,97, + 109,101,115,32,105,110,116,114,111,100,117,99,101,115,32,117, + 110,119,97,110,116,101,100,32,110,111,105,115,101,32,105,110, + 116,111,32,116,104,101,32,116,114,97,99,101,98,97,99,107, + 32,40,101,46,103,46,32,119,104,101,110,32,101,120,101,99, + 117,116,105,110,103,10,32,32,32,32,109,111,100,117,108,101, + 32,99,111,100,101,41,10,32,32,32,32,114,10,0,0,0, + 41,3,218,1,102,114,29,0,0,0,90,4,107,119,100,115, + 114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,218, + 25,95,99,97,108,108,95,119,105,116,104,95,102,114,97,109, + 101,115,95,114,101,109,111,118,101,100,212,0,0,0,115,2, + 0,0,0,0,8,114,65,0,0,0,218,9,118,101,114,98, + 111,115,105,116,121,114,45,0,0,0,99,1,0,0,0,1, + 0,0,0,3,0,0,0,4,0,0,0,71,0,0,0,115, + 75,0,0,0,116,0,0,106,1,0,106,2,0,124,1,0, + 107,5,0,114,71,0,124,0,0,106,3,0,100,6,0,131, + 1,0,115,43,0,100,3,0,124,0,0,23,125,0,0,116, + 4,0,124,0,0,106,5,0,124,2,0,140,0,0,100,4, + 0,116,0,0,106,6,0,131,1,1,1,100,5,0,83,41, + 7,122,61,80,114,105,110,116,32,116,104,101,32,109,101,115, + 115,97,103,101,32,116,111,32,115,116,100,101,114,114,32,105, + 102,32,45,118,47,80,89,84,72,79,78,86,69,82,66,79, + 83,69,32,105,115,32,116,117,114,110,101,100,32,111,110,46, + 250,1,35,250,7,105,109,112,111,114,116,32,122,2,35,32, + 90,4,102,105,108,101,78,41,2,114,67,0,0,0,114,68, + 0,0,0,41,7,114,14,0,0,0,218,5,102,108,97,103, + 115,218,7,118,101,114,98,111,115,101,218,10,115,116,97,114, + 116,115,119,105,116,104,218,5,112,114,105,110,116,114,50,0, + 0,0,218,6,115,116,100,101,114,114,41,3,218,7,109,101, + 115,115,97,103,101,114,66,0,0,0,114,29,0,0,0,114, + 10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,16, + 95,118,101,114,98,111,115,101,95,109,101,115,115,97,103,101, + 223,0,0,0,115,8,0,0,0,0,2,18,1,15,1,10, + 1,114,75,0,0,0,99,1,0,0,0,0,0,0,0,2, + 0,0,0,3,0,0,0,3,0,0,0,115,35,0,0,0, + 135,0,0,102,1,0,100,1,0,100,2,0,134,0,0,125, + 1,0,116,0,0,124,1,0,136,0,0,131,2,0,1,124, + 1,0,83,41,3,122,49,68,101,99,111,114,97,116,111,114, + 32,116,111,32,118,101,114,105,102,121,32,116,104,101,32,110, + 97,109,101,100,32,109,111,100,117,108,101,32,105,115,32,98, + 117,105,108,116,45,105,110,46,99,2,0,0,0,0,0,0, + 0,2,0,0,0,4,0,0,0,19,0,0,0,115,55,0, + 0,0,124,1,0,116,0,0,106,1,0,107,7,0,114,42, + 0,116,2,0,100,1,0,106,3,0,124,1,0,131,1,0, + 100,2,0,124,1,0,131,1,1,130,1,0,136,0,0,124, + 0,0,124,1,0,131,2,0,83,41,3,78,122,29,123,33, + 114,125,32,105,115,32,110,111,116,32,97,32,98,117,105,108, + 116,45,105,110,32,109,111,100,117,108,101,114,15,0,0,0, + 41,4,114,14,0,0,0,218,20,98,117,105,108,116,105,110, + 95,109,111,100,117,108,101,95,110,97,109,101,115,218,11,73, + 109,112,111,114,116,69,114,114,111,114,114,50,0,0,0,41, + 2,114,19,0,0,0,218,8,102,117,108,108,110,97,109,101, + 41,1,218,3,102,120,110,114,10,0,0,0,114,11,0,0, + 0,218,25,95,114,101,113,117,105,114,101,115,95,98,117,105, + 108,116,105,110,95,119,114,97,112,112,101,114,233,0,0,0, + 115,8,0,0,0,0,1,15,1,18,1,9,1,122,52,95, + 114,101,113,117,105,114,101,115,95,98,117,105,108,116,105,110, + 46,60,108,111,99,97,108,115,62,46,95,114,101,113,117,105, + 114,101,115,95,98,117,105,108,116,105,110,95,119,114,97,112, + 112,101,114,41,1,114,12,0,0,0,41,2,114,79,0,0, + 0,114,80,0,0,0,114,10,0,0,0,41,1,114,79,0, + 0,0,114,11,0,0,0,218,17,95,114,101,113,117,105,114, + 101,115,95,98,117,105,108,116,105,110,231,0,0,0,115,6, + 0,0,0,0,2,18,5,13,1,114,81,0,0,0,99,1, + 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,3, + 0,0,0,115,35,0,0,0,135,0,0,102,1,0,100,1, + 0,100,2,0,134,0,0,125,1,0,116,0,0,124,1,0, + 136,0,0,131,2,0,1,124,1,0,83,41,3,122,47,68, + 101,99,111,114,97,116,111,114,32,116,111,32,118,101,114,105, + 102,121,32,116,104,101,32,110,97,109,101,100,32,109,111,100, + 117,108,101,32,105,115,32,102,114,111,122,101,110,46,99,2, + 0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,19, + 0,0,0,115,55,0,0,0,116,0,0,106,1,0,124,1, + 0,131,1,0,115,42,0,116,2,0,100,1,0,106,3,0, + 124,1,0,131,1,0,100,2,0,124,1,0,131,1,1,130, + 1,0,136,0,0,124,0,0,124,1,0,131,2,0,83,41, + 3,78,122,27,123,33,114,125,32,105,115,32,110,111,116,32, + 97,32,102,114,111,122,101,110,32,109,111,100,117,108,101,114, + 15,0,0,0,41,4,114,57,0,0,0,218,9,105,115,95, + 102,114,111,122,101,110,114,77,0,0,0,114,50,0,0,0, + 41,2,114,19,0,0,0,114,78,0,0,0,41,1,114,79, + 0,0,0,114,10,0,0,0,114,11,0,0,0,218,24,95, + 114,101,113,117,105,114,101,115,95,102,114,111,122,101,110,95, + 119,114,97,112,112,101,114,244,0,0,0,115,8,0,0,0, + 0,1,15,1,18,1,9,1,122,50,95,114,101,113,117,105, + 114,101,115,95,102,114,111,122,101,110,46,60,108,111,99,97, + 108,115,62,46,95,114,101,113,117,105,114,101,115,95,102,114, + 111,122,101,110,95,119,114,97,112,112,101,114,41,1,114,12, + 0,0,0,41,2,114,79,0,0,0,114,83,0,0,0,114, + 10,0,0,0,41,1,114,79,0,0,0,114,11,0,0,0, + 218,16,95,114,101,113,117,105,114,101,115,95,102,114,111,122, + 101,110,242,0,0,0,115,6,0,0,0,0,2,18,5,13, + 1,114,84,0,0,0,99,2,0,0,0,0,0,0,0,4, + 0,0,0,3,0,0,0,67,0,0,0,115,81,0,0,0, + 116,0,0,124,1,0,124,0,0,131,2,0,125,2,0,124, + 1,0,116,1,0,106,2,0,107,6,0,114,67,0,116,1, + 0,106,2,0,124,1,0,25,125,3,0,116,3,0,124,2, + 0,124,3,0,131,2,0,1,116,1,0,106,2,0,124,1, + 0,25,83,116,4,0,124,2,0,131,1,0,83,100,1,0, + 83,41,2,122,128,76,111,97,100,32,116,104,101,32,115,112, + 101,99,105,102,105,101,100,32,109,111,100,117,108,101,32,105, + 110,116,111,32,115,121,115,46,109,111,100,117,108,101,115,32, + 97,110,100,32,114,101,116,117,114,110,32,105,116,46,10,10, + 32,32,32,32,84,104,105,115,32,109,101,116,104,111,100,32, + 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,32, + 85,115,101,32,108,111,97,100,101,114,46,101,120,101,99,95, + 109,111,100,117,108,101,32,105,110,115,116,101,97,100,46,10, + 10,32,32,32,32,78,41,5,218,16,115,112,101,99,95,102, + 114,111,109,95,108,111,97,100,101,114,114,14,0,0,0,114, + 21,0,0,0,218,5,95,101,120,101,99,218,5,95,108,111, + 97,100,41,4,114,19,0,0,0,114,78,0,0,0,218,4, + 115,112,101,99,218,6,109,111,100,117,108,101,114,10,0,0, + 0,114,10,0,0,0,114,11,0,0,0,218,17,95,108,111, + 97,100,95,109,111,100,117,108,101,95,115,104,105,109,254,0, + 0,0,115,12,0,0,0,0,6,15,1,15,1,13,1,13, + 1,11,2,114,90,0,0,0,99,1,0,0,0,0,0,0, + 0,5,0,0,0,35,0,0,0,67,0,0,0,115,6,1, + 0,0,116,0,0,124,0,0,100,1,0,100,0,0,131,3, + 0,125,1,0,116,1,0,124,1,0,100,2,0,131,2,0, + 114,71,0,121,17,0,124,1,0,106,2,0,124,0,0,131, + 1,0,83,87,110,18,0,4,116,3,0,107,10,0,114,70, + 0,1,1,1,89,110,1,0,88,121,13,0,124,0,0,106, + 4,0,125,2,0,87,110,18,0,4,116,5,0,107,10,0, + 114,104,0,1,1,1,89,110,23,0,88,124,2,0,100,0, + 0,107,9,0,114,127,0,116,6,0,124,2,0,131,1,0, + 83,121,13,0,124,0,0,106,7,0,125,3,0,87,110,24, + 0,4,116,5,0,107,10,0,114,166,0,1,1,1,100,3, + 0,125,3,0,89,110,1,0,88,121,13,0,124,0,0,106, + 8,0,125,4,0,87,110,59,0,4,116,5,0,107,10,0, + 114,241,0,1,1,1,124,1,0,100,0,0,107,8,0,114, + 221,0,100,4,0,106,9,0,124,3,0,131,1,0,83,100, + 5,0,106,9,0,124,3,0,124,1,0,131,2,0,83,89, + 110,17,0,88,100,6,0,106,9,0,124,3,0,124,4,0, + 131,2,0,83,100,0,0,83,41,7,78,218,10,95,95,108, + 111,97,100,101,114,95,95,218,11,109,111,100,117,108,101,95, + 114,101,112,114,250,1,63,122,13,60,109,111,100,117,108,101, + 32,123,33,114,125,62,122,20,60,109,111,100,117,108,101,32, + 123,33,114,125,32,40,123,33,114,125,41,62,122,23,60,109, + 111,100,117,108,101,32,123,33,114,125,32,102,114,111,109,32, + 123,33,114,125,62,41,10,114,6,0,0,0,114,4,0,0, + 0,114,92,0,0,0,218,9,69,120,99,101,112,116,105,111, + 110,218,8,95,95,115,112,101,99,95,95,218,14,65,116,116, + 114,105,98,117,116,101,69,114,114,111,114,218,22,95,109,111, + 100,117,108,101,95,114,101,112,114,95,102,114,111,109,95,115, + 112,101,99,114,1,0,0,0,218,8,95,95,102,105,108,101, + 95,95,114,50,0,0,0,41,5,114,89,0,0,0,218,6, + 108,111,97,100,101,114,114,88,0,0,0,114,15,0,0,0, + 218,8,102,105,108,101,110,97,109,101,114,10,0,0,0,114, + 10,0,0,0,114,11,0,0,0,218,12,95,109,111,100,117, + 108,101,95,114,101,112,114,14,1,0,0,115,46,0,0,0, + 0,2,18,1,15,4,3,1,17,1,13,1,5,1,3,1, + 13,1,13,1,5,2,12,1,10,4,3,1,13,1,13,1, + 11,1,3,1,13,1,13,1,12,1,13,2,21,2,114,101, + 0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0, + 2,0,0,0,64,0,0,0,115,52,0,0,0,101,0,0, + 90,1,0,100,0,0,90,2,0,100,1,0,100,2,0,132, + 0,0,90,3,0,100,3,0,100,4,0,132,0,0,90,4, + 0,100,5,0,100,6,0,132,0,0,90,5,0,100,7,0, + 83,41,8,218,17,95,105,110,115,116,97,108,108,101,100,95, + 115,97,102,101,108,121,99,2,0,0,0,0,0,0,0,2, + 0,0,0,2,0,0,0,67,0,0,0,115,25,0,0,0, + 124,1,0,124,0,0,95,0,0,124,1,0,106,1,0,124, + 0,0,95,2,0,100,0,0,83,41,1,78,41,3,218,7, + 95,109,111,100,117,108,101,114,95,0,0,0,218,5,95,115, + 112,101,99,41,2,114,19,0,0,0,114,89,0,0,0,114, + 10,0,0,0,114,10,0,0,0,114,11,0,0,0,114,20, + 0,0,0,52,1,0,0,115,4,0,0,0,0,1,9,1, + 122,26,95,105,110,115,116,97,108,108,101,100,95,115,97,102, + 101,108,121,46,95,95,105,110,105,116,95,95,99,1,0,0, + 0,0,0,0,0,1,0,0,0,3,0,0,0,67,0,0, + 0,115,38,0,0,0,100,1,0,124,0,0,106,0,0,95, + 1,0,124,0,0,106,2,0,116,3,0,106,4,0,124,0, + 0,106,0,0,106,5,0,60,100,0,0,83,41,2,78,84, + 41,6,114,104,0,0,0,218,13,95,105,110,105,116,105,97, + 108,105,122,105,110,103,114,103,0,0,0,114,14,0,0,0, + 114,21,0,0,0,114,15,0,0,0,41,1,114,19,0,0, + 0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, + 114,23,0,0,0,56,1,0,0,115,4,0,0,0,0,4, + 12,1,122,27,95,105,110,115,116,97,108,108,101,100,95,115, + 97,102,101,108,121,46,95,95,101,110,116,101,114,95,95,99, + 1,0,0,0,0,0,0,0,3,0,0,0,17,0,0,0, + 71,0,0,0,115,121,0,0,0,122,101,0,124,0,0,106, + 0,0,125,2,0,116,1,0,100,1,0,100,2,0,132,0, + 0,124,1,0,68,131,1,0,131,1,0,114,78,0,121,17, + 0,116,2,0,106,3,0,124,2,0,106,4,0,61,87,113, + 100,0,4,116,5,0,107,10,0,114,74,0,1,1,1,89, + 113,100,0,88,110,22,0,116,6,0,100,3,0,124,2,0, + 106,4,0,124,2,0,106,7,0,131,3,0,1,87,100,0, + 0,100,4,0,124,0,0,106,0,0,95,8,0,88,100,0, + 0,83,41,5,78,99,1,0,0,0,0,0,0,0,2,0, + 0,0,3,0,0,0,115,0,0,0,115,27,0,0,0,124, + 0,0,93,17,0,125,1,0,124,1,0,100,0,0,107,9, + 0,86,1,113,3,0,100,0,0,83,41,1,78,114,10,0, + 0,0,41,2,114,24,0,0,0,114,25,0,0,0,114,10, + 0,0,0,114,10,0,0,0,114,11,0,0,0,114,26,0, + 0,0,66,1,0,0,115,2,0,0,0,6,0,122,45,95, + 105,110,115,116,97,108,108,101,100,95,115,97,102,101,108,121, + 46,95,95,101,120,105,116,95,95,46,60,108,111,99,97,108, + 115,62,46,60,103,101,110,101,120,112,114,62,122,18,105,109, + 112,111,114,116,32,123,33,114,125,32,35,32,123,33,114,125, + 70,41,9,114,104,0,0,0,114,27,0,0,0,114,14,0, + 0,0,114,21,0,0,0,114,15,0,0,0,114,28,0,0, + 0,114,75,0,0,0,114,99,0,0,0,114,105,0,0,0, + 41,3,114,19,0,0,0,114,29,0,0,0,114,88,0,0, + 0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, + 114,30,0,0,0,63,1,0,0,115,18,0,0,0,0,1, + 3,1,9,1,25,1,3,1,17,1,13,1,8,2,26,2, + 122,26,95,105,110,115,116,97,108,108,101,100,95,115,97,102, + 101,108,121,46,95,95,101,120,105,116,95,95,78,41,6,114, + 1,0,0,0,114,0,0,0,0,114,2,0,0,0,114,20, + 0,0,0,114,23,0,0,0,114,30,0,0,0,114,10,0, + 0,0,114,10,0,0,0,114,10,0,0,0,114,11,0,0, + 0,114,102,0,0,0,50,1,0,0,115,6,0,0,0,12, + 2,12,4,12,7,114,102,0,0,0,99,0,0,0,0,0, + 0,0,0,0,0,0,0,8,0,0,0,64,0,0,0,115, + 172,0,0,0,101,0,0,90,1,0,100,0,0,90,2,0, + 100,1,0,90,3,0,100,2,0,100,3,0,100,4,0,100, + 3,0,100,5,0,100,3,0,100,6,0,100,7,0,132,0, + 3,90,4,0,100,8,0,100,9,0,132,0,0,90,5,0, + 100,10,0,100,11,0,132,0,0,90,6,0,101,7,0,100, + 12,0,100,13,0,132,0,0,131,1,0,90,8,0,101,8, + 0,106,9,0,100,14,0,100,13,0,132,0,0,131,1,0, + 90,8,0,101,7,0,100,15,0,100,16,0,132,0,0,131, + 1,0,90,10,0,101,7,0,100,17,0,100,18,0,132,0, + 0,131,1,0,90,11,0,101,11,0,106,9,0,100,19,0, + 100,18,0,132,0,0,131,1,0,90,11,0,100,3,0,83, + 41,20,218,10,77,111,100,117,108,101,83,112,101,99,97,208, + 5,0,0,84,104,101,32,115,112,101,99,105,102,105,99,97, + 116,105,111,110,32,102,111,114,32,97,32,109,111,100,117,108, + 101,44,32,117,115,101,100,32,102,111,114,32,108,111,97,100, + 105,110,103,46,10,10,32,32,32,32,65,32,109,111,100,117, + 108,101,39,115,32,115,112,101,99,32,105,115,32,116,104,101, + 32,115,111,117,114,99,101,32,102,111,114,32,105,110,102,111, + 114,109,97,116,105,111,110,32,97,98,111,117,116,32,116,104, + 101,32,109,111,100,117,108,101,46,32,32,70,111,114,10,32, + 32,32,32,100,97,116,97,32,97,115,115,111,99,105,97,116, + 101,100,32,119,105,116,104,32,116,104,101,32,109,111,100,117, + 108,101,44,32,105,110,99,108,117,100,105,110,103,32,115,111, + 117,114,99,101,44,32,117,115,101,32,116,104,101,32,115,112, + 101,99,39,115,10,32,32,32,32,108,111,97,100,101,114,46, + 10,10,32,32,32,32,96,110,97,109,101,96,32,105,115,32, + 116,104,101,32,97,98,115,111,108,117,116,101,32,110,97,109, + 101,32,111,102,32,116,104,101,32,109,111,100,117,108,101,46, + 32,32,96,108,111,97,100,101,114,96,32,105,115,32,116,104, + 101,32,108,111,97,100,101,114,10,32,32,32,32,116,111,32, + 117,115,101,32,119,104,101,110,32,108,111,97,100,105,110,103, + 32,116,104,101,32,109,111,100,117,108,101,46,32,32,96,112, + 97,114,101,110,116,96,32,105,115,32,116,104,101,32,110,97, + 109,101,32,111,102,32,116,104,101,10,32,32,32,32,112,97, + 99,107,97,103,101,32,116,104,101,32,109,111,100,117,108,101, + 32,105,115,32,105,110,46,32,32,84,104,101,32,112,97,114, + 101,110,116,32,105,115,32,100,101,114,105,118,101,100,32,102, + 114,111,109,32,116,104,101,32,110,97,109,101,46,10,10,32, + 32,32,32,96,105,115,95,112,97,99,107,97,103,101,96,32, + 100,101,116,101,114,109,105,110,101,115,32,105,102,32,116,104, + 101,32,109,111,100,117,108,101,32,105,115,32,99,111,110,115, + 105,100,101,114,101,100,32,97,32,112,97,99,107,97,103,101, + 32,111,114,10,32,32,32,32,110,111,116,46,32,32,79,110, + 32,109,111,100,117,108,101,115,32,116,104,105,115,32,105,115, + 32,114,101,102,108,101,99,116,101,100,32,98,121,32,116,104, + 101,32,96,95,95,112,97,116,104,95,95,96,32,97,116,116, + 114,105,98,117,116,101,46,10,10,32,32,32,32,96,111,114, + 105,103,105,110,96,32,105,115,32,116,104,101,32,115,112,101, + 99,105,102,105,99,32,108,111,99,97,116,105,111,110,32,117, + 115,101,100,32,98,121,32,116,104,101,32,108,111,97,100,101, + 114,32,102,114,111,109,32,119,104,105,99,104,32,116,111,10, + 32,32,32,32,108,111,97,100,32,116,104,101,32,109,111,100, + 117,108,101,44,32,105,102,32,116,104,97,116,32,105,110,102, + 111,114,109,97,116,105,111,110,32,105,115,32,97,118,97,105, + 108,97,98,108,101,46,32,32,87,104,101,110,32,102,105,108, + 101,110,97,109,101,32,105,115,10,32,32,32,32,115,101,116, + 44,32,111,114,105,103,105,110,32,119,105,108,108,32,109,97, + 116,99,104,46,10,10,32,32,32,32,96,104,97,115,95,108, + 111,99,97,116,105,111,110,96,32,105,110,100,105,99,97,116, + 101,115,32,116,104,97,116,32,97,32,115,112,101,99,39,115, + 32,34,111,114,105,103,105,110,34,32,114,101,102,108,101,99, + 116,115,32,97,32,108,111,99,97,116,105,111,110,46,10,32, + 32,32,32,87,104,101,110,32,116,104,105,115,32,105,115,32, + 84,114,117,101,44,32,96,95,95,102,105,108,101,95,95,96, + 32,97,116,116,114,105,98,117,116,101,32,111,102,32,116,104, + 101,32,109,111,100,117,108,101,32,105,115,32,115,101,116,46, + 10,10,32,32,32,32,96,99,97,99,104,101,100,96,32,105, + 115,32,116,104,101,32,108,111,99,97,116,105,111,110,32,111, + 102,32,116,104,101,32,99,97,99,104,101,100,32,98,121,116, + 101,99,111,100,101,32,102,105,108,101,44,32,105,102,32,97, + 110,121,46,32,32,73,116,10,32,32,32,32,99,111,114,114, + 101,115,112,111,110,100,115,32,116,111,32,116,104,101,32,96, + 95,95,99,97,99,104,101,100,95,95,96,32,97,116,116,114, + 105,98,117,116,101,46,10,10,32,32,32,32,96,115,117,98, + 109,111,100,117,108,101,95,115,101,97,114,99,104,95,108,111, + 99,97,116,105,111,110,115,96,32,105,115,32,116,104,101,32, + 115,101,113,117,101,110,99,101,32,111,102,32,112,97,116,104, + 32,101,110,116,114,105,101,115,32,116,111,10,32,32,32,32, + 115,101,97,114,99,104,32,119,104,101,110,32,105,109,112,111, + 114,116,105,110,103,32,115,117,98,109,111,100,117,108,101,115, + 46,32,32,73,102,32,115,101,116,44,32,105,115,95,112,97, + 99,107,97,103,101,32,115,104,111,117,108,100,32,98,101,10, + 32,32,32,32,84,114,117,101,45,45,97,110,100,32,70,97, + 108,115,101,32,111,116,104,101,114,119,105,115,101,46,10,10, + 32,32,32,32,80,97,99,107,97,103,101,115,32,97,114,101, + 32,115,105,109,112,108,121,32,109,111,100,117,108,101,115,32, + 116,104,97,116,32,40,109,97,121,41,32,104,97,118,101,32, + 115,117,98,109,111,100,117,108,101,115,46,32,32,73,102,32, + 97,32,115,112,101,99,10,32,32,32,32,104,97,115,32,97, + 32,110,111,110,45,78,111,110,101,32,118,97,108,117,101,32, + 105,110,32,96,115,117,98,109,111,100,117,108,101,95,115,101, + 97,114,99,104,95,108,111,99,97,116,105,111,110,115,96,44, + 32,116,104,101,32,105,109,112,111,114,116,10,32,32,32,32, + 115,121,115,116,101,109,32,119,105,108,108,32,99,111,110,115, + 105,100,101,114,32,109,111,100,117,108,101,115,32,108,111,97, + 100,101,100,32,102,114,111,109,32,116,104,101,32,115,112,101, + 99,32,97,115,32,112,97,99,107,97,103,101,115,46,10,10, + 32,32,32,32,79,110,108,121,32,102,105,110,100,101,114,115, + 32,40,115,101,101,32,105,109,112,111,114,116,108,105,98,46, + 97,98,99,46,77,101,116,97,80,97,116,104,70,105,110,100, + 101,114,32,97,110,100,10,32,32,32,32,105,109,112,111,114, + 116,108,105,98,46,97,98,99,46,80,97,116,104,69,110,116, + 114,121,70,105,110,100,101,114,41,32,115,104,111,117,108,100, + 32,109,111,100,105,102,121,32,77,111,100,117,108,101,83,112, + 101,99,32,105,110,115,116,97,110,99,101,115,46,10,10,32, + 32,32,32,218,6,111,114,105,103,105,110,78,218,12,108,111, + 97,100,101,114,95,115,116,97,116,101,218,10,105,115,95,112, + 97,99,107,97,103,101,99,3,0,0,0,3,0,0,0,6, + 0,0,0,2,0,0,0,67,0,0,0,115,79,0,0,0, + 124,1,0,124,0,0,95,0,0,124,2,0,124,0,0,95, + 1,0,124,3,0,124,0,0,95,2,0,124,4,0,124,0, + 0,95,3,0,124,5,0,114,48,0,103,0,0,110,3,0, + 100,0,0,124,0,0,95,4,0,100,1,0,124,0,0,95, + 5,0,100,0,0,124,0,0,95,6,0,100,0,0,83,41, + 2,78,70,41,7,114,15,0,0,0,114,99,0,0,0,114, + 107,0,0,0,114,108,0,0,0,218,26,115,117,98,109,111, + 100,117,108,101,95,115,101,97,114,99,104,95,108,111,99,97, + 116,105,111,110,115,218,13,95,115,101,116,95,102,105,108,101, + 97,116,116,114,218,7,95,99,97,99,104,101,100,41,6,114, + 19,0,0,0,114,15,0,0,0,114,99,0,0,0,114,107, + 0,0,0,114,108,0,0,0,114,109,0,0,0,114,10,0, + 0,0,114,10,0,0,0,114,11,0,0,0,114,20,0,0, + 0,114,1,0,0,115,14,0,0,0,0,2,9,1,9,1, + 9,1,9,1,21,3,9,1,122,19,77,111,100,117,108,101, + 83,112,101,99,46,95,95,105,110,105,116,95,95,99,1,0, + 0,0,0,0,0,0,2,0,0,0,4,0,0,0,67,0, + 0,0,115,147,0,0,0,100,1,0,106,0,0,124,0,0, + 106,1,0,131,1,0,100,2,0,106,0,0,124,0,0,106, + 2,0,131,1,0,103,2,0,125,1,0,124,0,0,106,3, + 0,100,0,0,107,9,0,114,76,0,124,1,0,106,4,0, + 100,3,0,106,0,0,124,0,0,106,3,0,131,1,0,131, + 1,0,1,124,0,0,106,5,0,100,0,0,107,9,0,114, + 116,0,124,1,0,106,4,0,100,4,0,106,0,0,124,0, + 0,106,5,0,131,1,0,131,1,0,1,100,5,0,106,0, + 0,124,0,0,106,6,0,106,7,0,100,6,0,106,8,0, + 124,1,0,131,1,0,131,2,0,83,41,7,78,122,9,110, + 97,109,101,61,123,33,114,125,122,11,108,111,97,100,101,114, + 61,123,33,114,125,122,11,111,114,105,103,105,110,61,123,33, + 114,125,122,29,115,117,98,109,111,100,117,108,101,95,115,101, + 97,114,99,104,95,108,111,99,97,116,105,111,110,115,61,123, + 125,122,6,123,125,40,123,125,41,122,2,44,32,41,9,114, + 50,0,0,0,114,15,0,0,0,114,99,0,0,0,114,107, + 0,0,0,218,6,97,112,112,101,110,100,114,110,0,0,0, + 218,9,95,95,99,108,97,115,115,95,95,114,1,0,0,0, + 218,4,106,111,105,110,41,2,114,19,0,0,0,114,29,0, + 0,0,114,10,0,0,0,114,10,0,0,0,114,11,0,0, + 0,114,52,0,0,0,126,1,0,0,115,16,0,0,0,0, + 1,15,1,21,1,15,1,25,1,15,1,12,1,13,1,122, + 19,77,111,100,117,108,101,83,112,101,99,46,95,95,114,101, + 112,114,95,95,99,2,0,0,0,0,0,0,0,3,0,0, + 0,11,0,0,0,67,0,0,0,115,145,0,0,0,124,0, + 0,106,0,0,125,2,0,121,107,0,124,0,0,106,1,0, + 124,1,0,106,1,0,107,2,0,111,114,0,124,0,0,106, + 2,0,124,1,0,106,2,0,107,2,0,111,114,0,124,0, + 0,106,3,0,124,1,0,106,3,0,107,2,0,111,114,0, + 124,2,0,124,1,0,106,0,0,107,2,0,111,114,0,124, + 0,0,106,4,0,124,1,0,106,4,0,107,2,0,111,114, + 0,124,0,0,106,5,0,124,1,0,106,5,0,107,2,0, + 83,87,110,22,0,4,116,6,0,107,10,0,114,140,0,1, + 1,1,100,1,0,83,89,110,1,0,88,100,0,0,83,41, + 2,78,70,41,7,114,110,0,0,0,114,15,0,0,0,114, + 99,0,0,0,114,107,0,0,0,218,6,99,97,99,104,101, + 100,218,12,104,97,115,95,108,111,99,97,116,105,111,110,114, + 96,0,0,0,41,3,114,19,0,0,0,90,5,111,116,104, + 101,114,90,4,115,109,115,108,114,10,0,0,0,114,10,0, + 0,0,114,11,0,0,0,218,6,95,95,101,113,95,95,136, + 1,0,0,115,20,0,0,0,0,1,9,1,3,1,18,1, + 18,1,18,1,15,1,18,1,20,1,13,1,122,17,77,111, + 100,117,108,101,83,112,101,99,46,95,95,101,113,95,95,99, + 1,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0, + 67,0,0,0,115,79,0,0,0,124,0,0,106,0,0,100, + 0,0,107,8,0,114,72,0,124,0,0,106,1,0,100,0, + 0,107,9,0,114,72,0,124,0,0,106,2,0,114,72,0, + 100,1,0,100,0,0,108,3,0,125,1,0,124,1,0,106, + 4,0,124,0,0,106,1,0,131,1,0,124,0,0,95,0, + 0,124,0,0,106,0,0,83,41,2,78,114,33,0,0,0, + 41,5,114,112,0,0,0,114,107,0,0,0,114,111,0,0, + 0,218,26,95,102,114,111,122,101,110,95,105,109,112,111,114, + 116,108,105,98,95,101,120,116,101,114,110,97,108,90,11,95, + 103,101,116,95,99,97,99,104,101,100,41,2,114,19,0,0, + 0,218,19,95,98,111,111,116,115,116,114,97,112,95,101,120, + 116,101,114,110,97,108,114,10,0,0,0,114,10,0,0,0, + 114,11,0,0,0,114,116,0,0,0,148,1,0,0,115,10, + 0,0,0,0,2,15,1,24,1,12,1,21,1,122,17,77, + 111,100,117,108,101,83,112,101,99,46,99,97,99,104,101,100, + 99,2,0,0,0,0,0,0,0,2,0,0,0,2,0,0, + 0,67,0,0,0,115,13,0,0,0,124,1,0,124,0,0, + 95,0,0,100,0,0,83,41,1,78,41,1,114,112,0,0, + 0,41,2,114,19,0,0,0,114,116,0,0,0,114,10,0, + 0,0,114,10,0,0,0,114,11,0,0,0,114,116,0,0, + 0,156,1,0,0,115,2,0,0,0,0,2,99,1,0,0, + 0,0,0,0,0,1,0,0,0,2,0,0,0,67,0,0, + 0,115,46,0,0,0,124,0,0,106,0,0,100,1,0,107, + 8,0,114,35,0,124,0,0,106,1,0,106,2,0,100,2, + 0,131,1,0,100,3,0,25,83,124,0,0,106,1,0,83, + 100,1,0,83,41,4,122,32,84,104,101,32,110,97,109,101, + 32,111,102,32,116,104,101,32,109,111,100,117,108,101,39,115, + 32,112,97,114,101,110,116,46,78,218,1,46,114,33,0,0, + 0,41,3,114,110,0,0,0,114,15,0,0,0,218,10,114, + 112,97,114,116,105,116,105,111,110,41,1,114,19,0,0,0, + 114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,218, + 6,112,97,114,101,110,116,160,1,0,0,115,6,0,0,0, + 0,3,15,1,20,2,122,17,77,111,100,117,108,101,83,112, + 101,99,46,112,97,114,101,110,116,99,1,0,0,0,0,0, + 0,0,1,0,0,0,1,0,0,0,67,0,0,0,115,7, + 0,0,0,124,0,0,106,0,0,83,41,1,78,41,1,114, + 111,0,0,0,41,1,114,19,0,0,0,114,10,0,0,0, + 114,10,0,0,0,114,11,0,0,0,114,117,0,0,0,168, + 1,0,0,115,2,0,0,0,0,2,122,23,77,111,100,117, + 108,101,83,112,101,99,46,104,97,115,95,108,111,99,97,116, + 105,111,110,99,2,0,0,0,0,0,0,0,2,0,0,0, + 2,0,0,0,67,0,0,0,115,19,0,0,0,116,0,0, + 124,1,0,131,1,0,124,0,0,95,1,0,100,0,0,83, + 41,1,78,41,2,218,4,98,111,111,108,114,111,0,0,0, + 41,2,114,19,0,0,0,218,5,118,97,108,117,101,114,10, + 0,0,0,114,10,0,0,0,114,11,0,0,0,114,117,0, + 0,0,172,1,0,0,115,2,0,0,0,0,2,41,12,114, + 1,0,0,0,114,0,0,0,0,114,2,0,0,0,114,3, + 0,0,0,114,20,0,0,0,114,52,0,0,0,114,118,0, + 0,0,218,8,112,114,111,112,101,114,116,121,114,116,0,0, + 0,218,6,115,101,116,116,101,114,114,123,0,0,0,114,117, + 0,0,0,114,10,0,0,0,114,10,0,0,0,114,10,0, + 0,0,114,11,0,0,0,114,106,0,0,0,77,1,0,0, + 115,20,0,0,0,12,35,6,2,15,1,15,11,12,10,12, + 12,18,8,21,4,18,8,18,4,114,106,0,0,0,114,107, + 0,0,0,78,114,109,0,0,0,99,2,0,0,0,2,0, + 0,0,6,0,0,0,15,0,0,0,67,0,0,0,115,206, + 0,0,0,116,0,0,124,1,0,100,1,0,131,2,0,114, + 99,0,100,2,0,100,3,0,108,1,0,109,2,0,125,4, + 0,1,124,3,0,100,4,0,107,8,0,114,59,0,124,4, + 0,124,0,0,100,5,0,124,1,0,131,1,1,83,124,3, + 0,114,71,0,103,0,0,110,3,0,100,4,0,125,5,0, + 124,4,0,124,0,0,100,5,0,124,1,0,100,6,0,124, + 5,0,131,1,2,83,124,3,0,100,4,0,107,8,0,114, + 181,0,116,0,0,124,1,0,100,7,0,131,2,0,114,175, + 0,121,19,0,124,1,0,106,3,0,124,0,0,131,1,0, + 125,3,0,87,113,181,0,4,116,4,0,107,10,0,114,171, + 0,1,1,1,100,4,0,125,3,0,89,113,181,0,88,110, + 6,0,100,8,0,125,3,0,116,5,0,124,0,0,124,1, + 0,100,9,0,124,2,0,100,7,0,124,3,0,131,2,2, + 83,41,10,122,53,82,101,116,117,114,110,32,97,32,109,111, + 100,117,108,101,32,115,112,101,99,32,98,97,115,101,100,32, + 111,110,32,118,97,114,105,111,117,115,32,108,111,97,100,101, + 114,32,109,101,116,104,111,100,115,46,90,12,103,101,116,95, + 102,105,108,101,110,97,109,101,114,45,0,0,0,41,1,218, + 23,115,112,101,99,95,102,114,111,109,95,102,105,108,101,95, + 108,111,99,97,116,105,111,110,78,114,99,0,0,0,114,110, + 0,0,0,114,109,0,0,0,70,114,107,0,0,0,41,6, + 114,4,0,0,0,114,120,0,0,0,114,128,0,0,0,114, + 109,0,0,0,114,77,0,0,0,114,106,0,0,0,41,6, + 114,15,0,0,0,114,99,0,0,0,114,107,0,0,0,114, + 109,0,0,0,114,128,0,0,0,90,6,115,101,97,114,99, + 104,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, + 114,85,0,0,0,177,1,0,0,115,30,0,0,0,0,2, + 15,1,16,1,12,1,16,1,18,1,15,1,7,2,12,1, + 15,1,3,1,19,1,13,1,14,3,6,2,114,85,0,0, + 0,99,3,0,0,0,0,0,0,0,8,0,0,0,53,0, + 0,0,67,0,0,0,115,118,1,0,0,121,13,0,124,0, + 0,106,0,0,125,3,0,87,110,18,0,4,116,1,0,107, + 10,0,114,33,0,1,1,1,89,110,17,0,88,124,3,0, + 100,0,0,107,9,0,114,50,0,124,3,0,83,124,0,0, + 106,2,0,125,4,0,124,1,0,100,0,0,107,8,0,114, + 105,0,121,13,0,124,0,0,106,3,0,125,1,0,87,110, + 18,0,4,116,1,0,107,10,0,114,104,0,1,1,1,89, + 110,1,0,88,121,13,0,124,0,0,106,4,0,125,5,0, + 87,110,24,0,4,116,1,0,107,10,0,114,144,0,1,1, + 1,100,0,0,125,5,0,89,110,1,0,88,124,2,0,100, + 0,0,107,8,0,114,218,0,124,5,0,100,0,0,107,8, + 0,114,212,0,121,13,0,124,1,0,106,5,0,125,2,0, + 87,113,218,0,4,116,1,0,107,10,0,114,208,0,1,1, + 1,100,0,0,125,2,0,89,113,218,0,88,110,6,0,124, + 5,0,125,2,0,121,13,0,124,0,0,106,6,0,125,6, + 0,87,110,24,0,4,116,1,0,107,10,0,114,1,1,1, + 1,1,100,0,0,125,6,0,89,110,1,0,88,121,19,0, + 116,7,0,124,0,0,106,8,0,131,1,0,125,7,0,87, + 110,24,0,4,116,1,0,107,10,0,114,47,1,1,1,1, + 100,0,0,125,7,0,89,110,1,0,88,116,9,0,124,4, + 0,124,1,0,100,1,0,124,2,0,131,2,1,125,3,0, + 124,5,0,100,0,0,107,8,0,114,87,1,100,2,0,110, + 3,0,100,3,0,124,3,0,95,10,0,124,6,0,124,3, + 0,95,11,0,124,7,0,124,3,0,95,12,0,124,3,0, + 83,41,4,78,114,107,0,0,0,70,84,41,13,114,95,0, + 0,0,114,96,0,0,0,114,1,0,0,0,114,91,0,0, + 0,114,98,0,0,0,90,7,95,79,82,73,71,73,78,218, + 10,95,95,99,97,99,104,101,100,95,95,218,4,108,105,115, + 116,218,8,95,95,112,97,116,104,95,95,114,106,0,0,0, + 114,111,0,0,0,114,116,0,0,0,114,110,0,0,0,41, + 8,114,89,0,0,0,114,99,0,0,0,114,107,0,0,0, + 114,88,0,0,0,114,15,0,0,0,90,8,108,111,99,97, + 116,105,111,110,114,116,0,0,0,114,110,0,0,0,114,10, + 0,0,0,114,10,0,0,0,114,11,0,0,0,218,17,95, + 115,112,101,99,95,102,114,111,109,95,109,111,100,117,108,101, + 203,1,0,0,115,72,0,0,0,0,2,3,1,13,1,13, + 1,5,2,12,1,4,2,9,1,12,1,3,1,13,1,13, + 2,5,1,3,1,13,1,13,1,11,1,12,1,12,1,3, + 1,13,1,13,1,14,2,6,1,3,1,13,1,13,1,11, + 1,3,1,19,1,13,1,11,2,21,1,27,1,9,1,9, + 1,114,132,0,0,0,218,8,111,118,101,114,114,105,100,101, + 70,99,2,0,0,0,1,0,0,0,5,0,0,0,59,0, + 0,0,67,0,0,0,115,43,2,0,0,124,2,0,115,30, + 0,116,0,0,124,1,0,100,1,0,100,0,0,131,3,0, + 100,0,0,107,8,0,114,67,0,121,16,0,124,0,0,106, + 1,0,124,1,0,95,2,0,87,110,18,0,4,116,3,0, + 107,10,0,114,66,0,1,1,1,89,110,1,0,88,124,2, + 0,115,97,0,116,0,0,124,1,0,100,2,0,100,0,0, + 131,3,0,100,0,0,107,8,0,114,210,0,124,0,0,106, + 4,0,125,3,0,124,3,0,100,0,0,107,8,0,114,176, + 0,124,0,0,106,5,0,100,0,0,107,9,0,114,176,0, + 100,3,0,100,4,0,108,6,0,109,7,0,125,4,0,1, + 124,4,0,106,8,0,124,4,0,131,1,0,125,3,0,124, + 0,0,106,5,0,124,3,0,95,9,0,121,13,0,124,3, + 0,124,1,0,95,10,0,87,110,18,0,4,116,3,0,107, + 10,0,114,209,0,1,1,1,89,110,1,0,88,124,2,0, + 115,240,0,116,0,0,124,1,0,100,5,0,100,0,0,131, + 3,0,100,0,0,107,8,0,114,21,1,121,16,0,124,0, + 0,106,11,0,124,1,0,95,12,0,87,110,18,0,4,116, + 3,0,107,10,0,114,20,1,1,1,1,89,110,1,0,88, + 121,13,0,124,0,0,124,1,0,95,13,0,87,110,18,0, + 4,116,3,0,107,10,0,114,54,1,1,1,1,89,110,1, + 0,88,124,2,0,115,85,1,116,0,0,124,1,0,100,6, + 0,100,0,0,131,3,0,100,0,0,107,8,0,114,137,1, + 124,0,0,106,5,0,100,0,0,107,9,0,114,137,1,121, + 16,0,124,0,0,106,5,0,124,1,0,95,14,0,87,110, + 18,0,4,116,3,0,107,10,0,114,136,1,1,1,1,89, + 110,1,0,88,124,0,0,106,15,0,114,39,2,124,2,0, + 115,176,1,116,0,0,124,1,0,100,7,0,100,0,0,131, + 3,0,100,0,0,107,8,0,114,213,1,121,16,0,124,0, + 0,106,16,0,124,1,0,95,17,0,87,110,18,0,4,116, + 3,0,107,10,0,114,212,1,1,1,1,89,110,1,0,88, + 124,2,0,115,243,1,116,0,0,124,1,0,100,8,0,100, + 0,0,131,3,0,100,0,0,107,8,0,114,39,2,124,0, + 0,106,18,0,100,0,0,107,9,0,114,39,2,121,16,0, + 124,0,0,106,18,0,124,1,0,95,19,0,87,110,18,0, + 4,116,3,0,107,10,0,114,38,2,1,1,1,89,110,1, + 0,88,124,1,0,83,41,9,78,114,1,0,0,0,114,91, + 0,0,0,114,45,0,0,0,41,1,218,16,95,78,97,109, + 101,115,112,97,99,101,76,111,97,100,101,114,218,11,95,95, + 112,97,99,107,97,103,101,95,95,114,131,0,0,0,114,98, + 0,0,0,114,129,0,0,0,41,20,114,6,0,0,0,114, + 15,0,0,0,114,1,0,0,0,114,96,0,0,0,114,99, + 0,0,0,114,110,0,0,0,114,120,0,0,0,114,134,0, + 0,0,218,7,95,95,110,101,119,95,95,90,5,95,112,97, + 116,104,114,91,0,0,0,114,123,0,0,0,114,135,0,0, + 0,114,95,0,0,0,114,131,0,0,0,114,117,0,0,0, + 114,107,0,0,0,114,98,0,0,0,114,116,0,0,0,114, + 129,0,0,0,41,5,114,88,0,0,0,114,89,0,0,0, + 114,133,0,0,0,114,99,0,0,0,114,134,0,0,0,114, + 10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,18, + 95,105,110,105,116,95,109,111,100,117,108,101,95,97,116,116, + 114,115,248,1,0,0,115,88,0,0,0,0,4,30,1,3, + 1,16,1,13,1,5,2,30,1,9,1,12,2,15,1,16, + 1,15,1,12,1,3,1,13,1,13,1,5,2,30,1,3, + 1,16,1,13,1,5,2,3,1,13,1,13,1,5,2,30, + 1,15,1,3,1,16,1,13,1,5,2,9,1,30,1,3, + 1,16,1,13,1,5,2,30,1,15,1,3,1,16,1,13, + 1,5,1,114,137,0,0,0,99,1,0,0,0,0,0,0, + 0,2,0,0,0,5,0,0,0,67,0,0,0,115,129,0, + 0,0,100,1,0,125,1,0,116,0,0,124,0,0,106,1, + 0,100,2,0,131,2,0,114,45,0,124,0,0,106,1,0, + 106,2,0,124,0,0,131,1,0,125,1,0,110,40,0,116, + 0,0,124,0,0,106,1,0,100,3,0,131,2,0,114,85, + 0,116,3,0,106,4,0,100,4,0,116,5,0,100,5,0, + 100,6,0,131,2,1,1,124,1,0,100,1,0,107,8,0, + 114,112,0,116,6,0,124,0,0,106,7,0,131,1,0,125, + 1,0,116,8,0,124,0,0,124,1,0,131,2,0,1,124, + 1,0,83,41,7,122,43,67,114,101,97,116,101,32,97,32, + 109,111,100,117,108,101,32,98,97,115,101,100,32,111,110,32, + 116,104,101,32,112,114,111,118,105,100,101,100,32,115,112,101, + 99,46,78,218,13,99,114,101,97,116,101,95,109,111,100,117, + 108,101,218,11,101,120,101,99,95,109,111,100,117,108,101,122, + 87,115,116,97,114,116,105,110,103,32,105,110,32,80,121,116, + 104,111,110,32,51,46,54,44,32,108,111,97,100,101,114,115, + 32,100,101,102,105,110,105,110,103,32,101,120,101,99,95,109, + 111,100,117,108,101,40,41,32,109,117,115,116,32,97,108,115, + 111,32,100,101,102,105,110,101,32,99,114,101,97,116,101,95, + 109,111,100,117,108,101,40,41,90,10,115,116,97,99,107,108, + 101,118,101,108,233,2,0,0,0,41,9,114,4,0,0,0, + 114,99,0,0,0,114,138,0,0,0,218,9,95,119,97,114, + 110,105,110,103,115,218,4,119,97,114,110,218,18,68,101,112, + 114,101,99,97,116,105,111,110,87,97,114,110,105,110,103,114, + 16,0,0,0,114,15,0,0,0,114,137,0,0,0,41,2, + 114,88,0,0,0,114,89,0,0,0,114,10,0,0,0,114, + 10,0,0,0,114,11,0,0,0,218,16,109,111,100,117,108, + 101,95,102,114,111,109,95,115,112,101,99,49,2,0,0,115, + 20,0,0,0,0,3,6,1,18,3,21,1,18,1,9,2, + 13,1,12,1,15,1,13,1,114,144,0,0,0,99,1,0, + 0,0,0,0,0,0,2,0,0,0,3,0,0,0,67,0, + 0,0,115,149,0,0,0,124,0,0,106,0,0,100,1,0, + 107,8,0,114,21,0,100,2,0,110,6,0,124,0,0,106, + 0,0,125,1,0,124,0,0,106,1,0,100,1,0,107,8, + 0,114,95,0,124,0,0,106,2,0,100,1,0,107,8,0, + 114,73,0,100,3,0,106,3,0,124,1,0,131,1,0,83, + 100,4,0,106,3,0,124,1,0,124,0,0,106,2,0,131, + 2,0,83,110,50,0,124,0,0,106,4,0,114,123,0,100, + 5,0,106,3,0,124,1,0,124,0,0,106,1,0,131,2, + 0,83,100,6,0,106,3,0,124,0,0,106,0,0,124,0, + 0,106,1,0,131,2,0,83,100,1,0,83,41,7,122,38, + 82,101,116,117,114,110,32,116,104,101,32,114,101,112,114,32, + 116,111,32,117,115,101,32,102,111,114,32,116,104,101,32,109, + 111,100,117,108,101,46,78,114,93,0,0,0,122,13,60,109, + 111,100,117,108,101,32,123,33,114,125,62,122,20,60,109,111, + 100,117,108,101,32,123,33,114,125,32,40,123,33,114,125,41, + 62,122,23,60,109,111,100,117,108,101,32,123,33,114,125,32, + 102,114,111,109,32,123,33,114,125,62,122,18,60,109,111,100, + 117,108,101,32,123,33,114,125,32,40,123,125,41,62,41,5, + 114,15,0,0,0,114,107,0,0,0,114,99,0,0,0,114, + 50,0,0,0,114,117,0,0,0,41,2,114,88,0,0,0, + 114,15,0,0,0,114,10,0,0,0,114,10,0,0,0,114, + 11,0,0,0,114,97,0,0,0,67,2,0,0,115,16,0, + 0,0,0,3,30,1,15,1,15,1,13,2,22,2,9,1, + 19,2,114,97,0,0,0,99,2,0,0,0,0,0,0,0, + 4,0,0,0,12,0,0,0,67,0,0,0,115,252,0,0, + 0,124,0,0,106,0,0,125,2,0,116,1,0,106,2,0, + 131,0,0,1,116,3,0,124,2,0,131,1,0,143,208,0, + 1,116,4,0,106,5,0,106,6,0,124,2,0,131,1,0, + 124,1,0,107,9,0,114,89,0,100,1,0,106,7,0,124, + 2,0,131,1,0,125,3,0,116,8,0,124,3,0,100,2, + 0,124,2,0,131,1,1,130,1,0,124,0,0,106,9,0, + 100,3,0,107,8,0,114,163,0,124,0,0,106,10,0,100, + 3,0,107,8,0,114,140,0,116,8,0,100,4,0,100,2, + 0,124,0,0,106,0,0,131,1,1,130,1,0,116,11,0, + 124,0,0,124,1,0,100,5,0,100,6,0,131,2,1,1, + 124,1,0,83,116,11,0,124,0,0,124,1,0,100,5,0, + 100,6,0,131,2,1,1,116,12,0,124,0,0,106,9,0, + 100,7,0,131,2,0,115,219,0,124,0,0,106,9,0,106, + 13,0,124,2,0,131,1,0,1,110,16,0,124,0,0,106, + 9,0,106,14,0,124,1,0,131,1,0,1,87,100,3,0, + 81,88,116,4,0,106,5,0,124,2,0,25,83,41,8,122, + 51,69,120,101,99,117,116,101,32,116,104,101,32,115,112,101, + 99,32,105,110,32,97,110,32,101,120,105,115,116,105,110,103, + 32,109,111,100,117,108,101,39,115,32,110,97,109,101,115,112, + 97,99,101,46,122,30,109,111,100,117,108,101,32,123,33,114, + 125,32,110,111,116,32,105,110,32,115,121,115,46,109,111,100, + 117,108,101,115,114,15,0,0,0,78,122,14,109,105,115,115, + 105,110,103,32,108,111,97,100,101,114,114,133,0,0,0,84, + 114,139,0,0,0,41,15,114,15,0,0,0,114,57,0,0, + 0,218,12,97,99,113,117,105,114,101,95,108,111,99,107,114, + 54,0,0,0,114,14,0,0,0,114,21,0,0,0,114,42, + 0,0,0,114,50,0,0,0,114,77,0,0,0,114,99,0, + 0,0,114,110,0,0,0,114,137,0,0,0,114,4,0,0, + 0,218,11,108,111,97,100,95,109,111,100,117,108,101,114,139, + 0,0,0,41,4,114,88,0,0,0,114,89,0,0,0,114, + 15,0,0,0,218,3,109,115,103,114,10,0,0,0,114,10, + 0,0,0,114,11,0,0,0,114,86,0,0,0,84,2,0, + 0,115,32,0,0,0,0,2,9,1,10,1,13,1,24,1, + 15,1,18,1,15,1,15,1,21,2,19,1,4,1,19,1, + 18,4,19,2,22,1,114,86,0,0,0,99,1,0,0,0, + 0,0,0,0,2,0,0,0,27,0,0,0,67,0,0,0, + 115,3,1,0,0,124,0,0,106,0,0,106,1,0,124,0, + 0,106,2,0,131,1,0,1,116,3,0,106,4,0,124,0, + 0,106,2,0,25,125,1,0,116,5,0,124,1,0,100,1, + 0,100,0,0,131,3,0,100,0,0,107,8,0,114,96,0, + 121,16,0,124,0,0,106,0,0,124,1,0,95,6,0,87, + 110,18,0,4,116,7,0,107,10,0,114,95,0,1,1,1, + 89,110,1,0,88,116,5,0,124,1,0,100,2,0,100,0, + 0,131,3,0,100,0,0,107,8,0,114,197,0,121,56,0, + 124,1,0,106,8,0,124,1,0,95,9,0,116,10,0,124, + 1,0,100,3,0,131,2,0,115,175,0,124,0,0,106,2, + 0,106,11,0,100,4,0,131,1,0,100,5,0,25,124,1, + 0,95,9,0,87,110,18,0,4,116,7,0,107,10,0,114, + 196,0,1,1,1,89,110,1,0,88,116,5,0,124,1,0, + 100,6,0,100,0,0,131,3,0,100,0,0,107,8,0,114, + 255,0,121,13,0,124,0,0,124,1,0,95,12,0,87,110, + 18,0,4,116,7,0,107,10,0,114,254,0,1,1,1,89, + 110,1,0,88,124,1,0,83,41,7,78,114,91,0,0,0, + 114,135,0,0,0,114,131,0,0,0,114,121,0,0,0,114, + 33,0,0,0,114,95,0,0,0,41,13,114,99,0,0,0, + 114,146,0,0,0,114,15,0,0,0,114,14,0,0,0,114, + 21,0,0,0,114,6,0,0,0,114,91,0,0,0,114,96, + 0,0,0,114,1,0,0,0,114,135,0,0,0,114,4,0, + 0,0,114,122,0,0,0,114,95,0,0,0,41,2,114,88, + 0,0,0,114,89,0,0,0,114,10,0,0,0,114,10,0, + 0,0,114,11,0,0,0,218,25,95,108,111,97,100,95,98, + 97,99,107,119,97,114,100,95,99,111,109,112,97,116,105,98, + 108,101,109,2,0,0,115,40,0,0,0,0,4,19,2,16, + 1,24,1,3,1,16,1,13,1,5,1,24,1,3,4,12, + 1,15,1,29,1,13,1,5,1,24,1,3,1,13,1,13, + 1,5,1,114,148,0,0,0,99,1,0,0,0,0,0,0, + 0,2,0,0,0,11,0,0,0,67,0,0,0,115,158,0, + 0,0,124,0,0,106,0,0,100,0,0,107,9,0,114,43, + 0,116,1,0,124,0,0,106,0,0,100,1,0,131,2,0, + 115,43,0,116,2,0,124,0,0,131,1,0,83,116,3,0, + 124,0,0,131,1,0,125,1,0,116,4,0,124,1,0,131, + 1,0,143,75,0,1,124,0,0,106,0,0,100,0,0,107, + 8,0,114,122,0,124,0,0,106,5,0,100,0,0,107,8, + 0,114,138,0,116,6,0,100,2,0,100,3,0,124,0,0, + 106,7,0,131,1,1,130,1,0,110,16,0,124,0,0,106, + 0,0,106,8,0,124,1,0,131,1,0,1,87,100,0,0, + 81,88,116,9,0,106,10,0,124,0,0,106,7,0,25,83, + 41,4,78,114,139,0,0,0,122,14,109,105,115,115,105,110, + 103,32,108,111,97,100,101,114,114,15,0,0,0,41,11,114, + 99,0,0,0,114,4,0,0,0,114,148,0,0,0,114,144, + 0,0,0,114,102,0,0,0,114,110,0,0,0,114,77,0, + 0,0,114,15,0,0,0,114,139,0,0,0,114,14,0,0, + 0,114,21,0,0,0,41,2,114,88,0,0,0,114,89,0, + 0,0,114,10,0,0,0,114,10,0,0,0,114,11,0,0, + 0,218,14,95,108,111,97,100,95,117,110,108,111,99,107,101, + 100,138,2,0,0,115,20,0,0,0,0,2,15,2,18,1, + 10,2,12,1,13,1,15,1,15,1,24,3,22,5,114,149, 0,0,0,99,1,0,0,0,0,0,0,0,1,0,0,0, - 3,0,0,0,67,0,0,0,115,26,0,0,0,116,0,0, - 124,0,0,131,1,0,100,1,0,64,106,1,0,100,2,0, - 100,3,0,131,2,0,83,41,4,122,42,67,111,110,118,101, - 114,116,32,97,32,51,50,45,98,105,116,32,105,110,116,101, - 103,101,114,32,116,111,32,108,105,116,116,108,101,45,101,110, - 100,105,97,110,46,108,3,0,0,0,255,127,255,127,3,0, - 233,4,0,0,0,218,6,108,105,116,116,108,101,41,2,218, - 3,105,110,116,218,8,116,111,95,98,121,116,101,115,41,1, - 218,1,120,114,4,0,0,0,114,4,0,0,0,114,5,0, - 0,0,218,7,95,119,95,108,111,110,103,40,0,0,0,115, - 2,0,0,0,0,2,114,17,0,0,0,99,1,0,0,0, - 0,0,0,0,1,0,0,0,3,0,0,0,67,0,0,0, - 115,16,0,0,0,116,0,0,106,1,0,124,0,0,100,1, - 0,131,2,0,83,41,2,122,47,67,111,110,118,101,114,116, - 32,52,32,98,121,116,101,115,32,105,110,32,108,105,116,116, - 108,101,45,101,110,100,105,97,110,32,116,111,32,97,110,32, - 105,110,116,101,103,101,114,46,114,13,0,0,0,41,2,114, - 14,0,0,0,218,10,102,114,111,109,95,98,121,116,101,115, - 41,1,90,9,105,110,116,95,98,121,116,101,115,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,218,7,95,114, - 95,108,111,110,103,45,0,0,0,115,2,0,0,0,0,2, - 114,19,0,0,0,99,0,0,0,0,0,0,0,0,1,0, - 0,0,3,0,0,0,71,0,0,0,115,26,0,0,0,116, - 0,0,106,1,0,100,1,0,100,2,0,132,0,0,124,0, - 0,68,131,1,0,131,1,0,83,41,3,122,31,82,101,112, - 108,97,99,101,109,101,110,116,32,102,111,114,32,111,115,46, - 112,97,116,104,46,106,111,105,110,40,41,46,99,1,0,0, - 0,0,0,0,0,2,0,0,0,4,0,0,0,83,0,0, - 0,115,37,0,0,0,103,0,0,124,0,0,93,27,0,125, - 1,0,124,1,0,114,6,0,124,1,0,106,0,0,116,1, - 0,131,1,0,145,2,0,113,6,0,83,114,4,0,0,0, - 41,2,218,6,114,115,116,114,105,112,218,15,112,97,116,104, - 95,115,101,112,97,114,97,116,111,114,115,41,2,218,2,46, - 48,218,4,112,97,114,116,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,250,10,60,108,105,115,116,99,111,109, - 112,62,52,0,0,0,115,2,0,0,0,9,1,122,30,95, - 112,97,116,104,95,106,111,105,110,46,60,108,111,99,97,108, - 115,62,46,60,108,105,115,116,99,111,109,112,62,41,2,218, - 8,112,97,116,104,95,115,101,112,218,4,106,111,105,110,41, - 1,218,10,112,97,116,104,95,112,97,114,116,115,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,218,10,95,112, - 97,116,104,95,106,111,105,110,50,0,0,0,115,4,0,0, - 0,0,2,15,1,114,28,0,0,0,99,1,0,0,0,0, - 0,0,0,5,0,0,0,5,0,0,0,67,0,0,0,115, - 134,0,0,0,116,0,0,116,1,0,131,1,0,100,1,0, - 107,2,0,114,52,0,124,0,0,106,2,0,116,3,0,131, - 1,0,92,3,0,125,1,0,125,2,0,125,3,0,124,1, - 0,124,3,0,102,2,0,83,120,69,0,116,4,0,124,0, - 0,131,1,0,68,93,55,0,125,4,0,124,4,0,116,1, - 0,107,6,0,114,65,0,124,0,0,106,5,0,124,4,0, - 100,2,0,100,1,0,131,1,1,92,2,0,125,1,0,125, - 3,0,124,1,0,124,3,0,102,2,0,83,113,65,0,87, - 100,3,0,124,0,0,102,2,0,83,41,4,122,32,82,101, - 112,108,97,99,101,109,101,110,116,32,102,111,114,32,111,115, - 46,112,97,116,104,46,115,112,108,105,116,40,41,46,233,1, - 0,0,0,90,8,109,97,120,115,112,108,105,116,218,0,41, - 6,218,3,108,101,110,114,21,0,0,0,218,10,114,112,97, - 114,116,105,116,105,111,110,114,25,0,0,0,218,8,114,101, - 118,101,114,115,101,100,218,6,114,115,112,108,105,116,41,5, - 218,4,112,97,116,104,90,5,102,114,111,110,116,218,1,95, - 218,4,116,97,105,108,114,16,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,218,11,95,112,97,116, - 104,95,115,112,108,105,116,56,0,0,0,115,16,0,0,0, - 0,2,18,1,24,1,10,1,19,1,12,1,27,1,14,1, - 114,38,0,0,0,99,1,0,0,0,0,0,0,0,1,0, - 0,0,2,0,0,0,67,0,0,0,115,13,0,0,0,116, - 0,0,106,1,0,124,0,0,131,1,0,83,41,1,122,126, - 83,116,97,116,32,116,104,101,32,112,97,116,104,46,10,10, - 32,32,32,32,77,97,100,101,32,97,32,115,101,112,97,114, - 97,116,101,32,102,117,110,99,116,105,111,110,32,116,111,32, - 109,97,107,101,32,105,116,32,101,97,115,105,101,114,32,116, - 111,32,111,118,101,114,114,105,100,101,32,105,110,32,101,120, - 112,101,114,105,109,101,110,116,115,10,32,32,32,32,40,101, - 46,103,46,32,99,97,99,104,101,32,115,116,97,116,32,114, - 101,115,117,108,116,115,41,46,10,10,32,32,32,32,41,2, - 114,3,0,0,0,90,4,115,116,97,116,41,1,114,35,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, - 0,218,10,95,112,97,116,104,95,115,116,97,116,68,0,0, - 0,115,2,0,0,0,0,7,114,39,0,0,0,99,2,0, - 0,0,0,0,0,0,3,0,0,0,11,0,0,0,67,0, - 0,0,115,58,0,0,0,121,16,0,116,0,0,124,0,0, - 131,1,0,125,2,0,87,110,22,0,4,116,1,0,107,10, - 0,114,40,0,1,1,1,100,1,0,83,89,110,1,0,88, - 124,2,0,106,2,0,100,2,0,64,124,1,0,107,2,0, - 83,41,3,122,49,84,101,115,116,32,119,104,101,116,104,101, - 114,32,116,104,101,32,112,97,116,104,32,105,115,32,116,104, - 101,32,115,112,101,99,105,102,105,101,100,32,109,111,100,101, - 32,116,121,112,101,46,70,105,0,240,0,0,41,3,114,39, - 0,0,0,218,7,79,83,69,114,114,111,114,218,7,115,116, - 95,109,111,100,101,41,3,114,35,0,0,0,218,4,109,111, - 100,101,90,9,115,116,97,116,95,105,110,102,111,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,218,18,95,112, - 97,116,104,95,105,115,95,109,111,100,101,95,116,121,112,101, - 78,0,0,0,115,10,0,0,0,0,2,3,1,16,1,13, - 1,9,1,114,43,0,0,0,99,1,0,0,0,0,0,0, - 0,1,0,0,0,3,0,0,0,67,0,0,0,115,13,0, - 0,0,116,0,0,124,0,0,100,1,0,131,2,0,83,41, - 2,122,31,82,101,112,108,97,99,101,109,101,110,116,32,102, - 111,114,32,111,115,46,112,97,116,104,46,105,115,102,105,108, - 101,46,105,0,128,0,0,41,1,114,43,0,0,0,41,1, - 114,35,0,0,0,114,4,0,0,0,114,4,0,0,0,114, - 5,0,0,0,218,12,95,112,97,116,104,95,105,115,102,105, - 108,101,87,0,0,0,115,2,0,0,0,0,2,114,44,0, - 0,0,99,1,0,0,0,0,0,0,0,1,0,0,0,3, - 0,0,0,67,0,0,0,115,31,0,0,0,124,0,0,115, - 18,0,116,0,0,106,1,0,131,0,0,125,0,0,116,2, - 0,124,0,0,100,1,0,131,2,0,83,41,2,122,30,82, - 101,112,108,97,99,101,109,101,110,116,32,102,111,114,32,111, - 115,46,112,97,116,104,46,105,115,100,105,114,46,105,0,64, - 0,0,41,3,114,3,0,0,0,218,6,103,101,116,99,119, - 100,114,43,0,0,0,41,1,114,35,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,218,11,95,112, - 97,116,104,95,105,115,100,105,114,92,0,0,0,115,6,0, - 0,0,0,2,6,1,12,1,114,46,0,0,0,105,182,1, - 0,0,99,3,0,0,0,0,0,0,0,6,0,0,0,17, - 0,0,0,67,0,0,0,115,192,0,0,0,100,1,0,106, - 0,0,124,0,0,116,1,0,124,0,0,131,1,0,131,2, - 0,125,3,0,116,2,0,106,3,0,124,3,0,116,2,0, - 106,4,0,116,2,0,106,5,0,66,116,2,0,106,6,0, - 66,124,2,0,100,2,0,64,131,3,0,125,4,0,121,60, - 0,116,7,0,106,8,0,124,4,0,100,3,0,131,2,0, - 143,20,0,125,5,0,124,5,0,106,9,0,124,1,0,131, - 1,0,1,87,100,4,0,81,88,116,2,0,106,10,0,124, - 3,0,124,0,0,131,2,0,1,87,110,59,0,4,116,11, - 0,107,10,0,114,187,0,1,1,1,121,17,0,116,2,0, - 106,12,0,124,3,0,131,1,0,1,87,110,18,0,4,116, - 11,0,107,10,0,114,179,0,1,1,1,89,110,1,0,88, - 130,0,0,89,110,1,0,88,100,4,0,83,41,5,122,162, - 66,101,115,116,45,101,102,102,111,114,116,32,102,117,110,99, - 116,105,111,110,32,116,111,32,119,114,105,116,101,32,100,97, - 116,97,32,116,111,32,97,32,112,97,116,104,32,97,116,111, - 109,105,99,97,108,108,121,46,10,32,32,32,32,66,101,32, - 112,114,101,112,97,114,101,100,32,116,111,32,104,97,110,100, - 108,101,32,97,32,70,105,108,101,69,120,105,115,116,115,69, - 114,114,111,114,32,105,102,32,99,111,110,99,117,114,114,101, - 110,116,32,119,114,105,116,105,110,103,32,111,102,32,116,104, - 101,10,32,32,32,32,116,101,109,112,111,114,97,114,121,32, - 102,105,108,101,32,105,115,32,97,116,116,101,109,112,116,101, - 100,46,122,5,123,125,46,123,125,105,182,1,0,0,90,2, - 119,98,78,41,13,218,6,102,111,114,109,97,116,218,2,105, - 100,114,3,0,0,0,90,4,111,112,101,110,90,6,79,95, - 69,88,67,76,90,7,79,95,67,82,69,65,84,90,8,79, - 95,87,82,79,78,76,89,218,3,95,105,111,218,6,70,105, - 108,101,73,79,218,5,119,114,105,116,101,218,7,114,101,112, - 108,97,99,101,114,40,0,0,0,90,6,117,110,108,105,110, - 107,41,6,114,35,0,0,0,218,4,100,97,116,97,114,42, - 0,0,0,90,8,112,97,116,104,95,116,109,112,90,2,102, - 100,218,4,102,105,108,101,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,218,13,95,119,114,105,116,101,95,97, - 116,111,109,105,99,99,0,0,0,115,26,0,0,0,0,5, - 24,1,9,1,33,1,3,3,21,1,19,1,20,1,13,1, - 3,1,17,1,13,1,5,1,114,55,0,0,0,99,2,0, - 0,0,0,0,0,0,3,0,0,0,7,0,0,0,67,0, - 0,0,115,92,0,0,0,120,66,0,100,1,0,100,2,0, - 100,3,0,100,4,0,103,4,0,68,93,46,0,125,2,0, - 116,0,0,124,1,0,124,2,0,131,2,0,114,19,0,116, - 1,0,124,0,0,124,2,0,116,2,0,124,1,0,124,2, - 0,131,2,0,131,3,0,1,113,19,0,87,124,0,0,106, - 3,0,106,4,0,124,1,0,106,3,0,131,1,0,1,100, - 5,0,83,41,6,122,47,83,105,109,112,108,101,32,115,117, - 98,115,116,105,116,117,116,101,32,102,111,114,32,102,117,110, - 99,116,111,111,108,115,46,117,112,100,97,116,101,95,119,114, - 97,112,112,101,114,46,218,10,95,95,109,111,100,117,108,101, - 95,95,218,8,95,95,110,97,109,101,95,95,218,12,95,95, - 113,117,97,108,110,97,109,101,95,95,218,7,95,95,100,111, - 99,95,95,78,41,5,218,7,104,97,115,97,116,116,114,218, - 7,115,101,116,97,116,116,114,218,7,103,101,116,97,116,116, - 114,218,8,95,95,100,105,99,116,95,95,218,6,117,112,100, - 97,116,101,41,3,90,3,110,101,119,90,3,111,108,100,114, - 52,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, - 0,0,0,218,5,95,119,114,97,112,121,0,0,0,115,8, - 0,0,0,0,2,25,1,15,1,29,1,114,65,0,0,0, - 99,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0, - 0,67,0,0,0,115,16,0,0,0,116,0,0,116,1,0, - 131,1,0,124,0,0,131,1,0,83,41,1,78,41,2,218, - 4,116,121,112,101,114,7,0,0,0,41,1,218,4,110,97, - 109,101,114,4,0,0,0,114,4,0,0,0,114,5,0,0, - 0,218,11,95,110,101,119,95,109,111,100,117,108,101,129,0, - 0,0,115,2,0,0,0,0,1,114,68,0,0,0,99,0, - 0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,64, - 0,0,0,115,58,0,0,0,101,0,0,90,1,0,100,0, - 0,90,2,0,100,1,0,90,3,0,100,2,0,100,3,0, - 132,0,0,90,4,0,100,4,0,100,5,0,132,0,0,90, - 5,0,100,6,0,100,7,0,132,0,0,90,6,0,100,8, - 0,83,41,9,218,13,95,77,97,110,97,103,101,82,101,108, - 111,97,100,122,63,77,97,110,97,103,101,115,32,116,104,101, - 32,112,111,115,115,105,98,108,101,32,99,108,101,97,110,45, - 117,112,32,111,102,32,115,121,115,46,109,111,100,117,108,101, - 115,32,102,111,114,32,108,111,97,100,95,109,111,100,117,108, - 101,40,41,46,99,2,0,0,0,0,0,0,0,2,0,0, - 0,2,0,0,0,67,0,0,0,115,13,0,0,0,124,1, - 0,124,0,0,95,0,0,100,0,0,83,41,1,78,41,1, - 218,5,95,110,97,109,101,41,2,218,4,115,101,108,102,114, - 67,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, - 0,0,0,218,8,95,95,105,110,105,116,95,95,141,0,0, - 0,115,2,0,0,0,0,1,122,22,95,77,97,110,97,103, - 101,82,101,108,111,97,100,46,95,95,105,110,105,116,95,95, - 99,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0, - 0,67,0,0,0,115,25,0,0,0,124,0,0,106,0,0, - 116,1,0,106,2,0,107,6,0,124,0,0,95,3,0,100, - 0,0,83,41,1,78,41,4,114,70,0,0,0,114,7,0, - 0,0,218,7,109,111,100,117,108,101,115,218,10,95,105,115, - 95,114,101,108,111,97,100,41,1,114,71,0,0,0,114,4, - 0,0,0,114,4,0,0,0,114,5,0,0,0,218,9,95, - 95,101,110,116,101,114,95,95,144,0,0,0,115,2,0,0, - 0,0,1,122,23,95,77,97,110,97,103,101,82,101,108,111, - 97,100,46,95,95,101,110,116,101,114,95,95,99,1,0,0, - 0,0,0,0,0,2,0,0,0,11,0,0,0,71,0,0, - 0,115,77,0,0,0,116,0,0,100,1,0,100,2,0,132, - 0,0,124,1,0,68,131,1,0,131,1,0,114,73,0,124, - 0,0,106,1,0,12,114,73,0,121,17,0,116,2,0,106, - 3,0,124,0,0,106,4,0,61,87,110,18,0,4,116,5, - 0,107,10,0,114,72,0,1,1,1,89,110,1,0,88,100, - 0,0,83,41,3,78,99,1,0,0,0,0,0,0,0,2, - 0,0,0,3,0,0,0,115,0,0,0,115,27,0,0,0, - 124,0,0,93,17,0,125,1,0,124,1,0,100,0,0,107, - 9,0,86,1,113,3,0,100,0,0,83,41,1,78,114,4, - 0,0,0,41,2,114,22,0,0,0,218,3,97,114,103,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,250,9, - 60,103,101,110,101,120,112,114,62,148,0,0,0,115,2,0, - 0,0,6,0,122,41,95,77,97,110,97,103,101,82,101,108, - 111,97,100,46,95,95,101,120,105,116,95,95,46,60,108,111, - 99,97,108,115,62,46,60,103,101,110,101,120,112,114,62,41, - 6,218,3,97,110,121,114,74,0,0,0,114,7,0,0,0, - 114,73,0,0,0,114,70,0,0,0,218,8,75,101,121,69, - 114,114,111,114,41,2,114,71,0,0,0,218,4,97,114,103, - 115,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 218,8,95,95,101,120,105,116,95,95,147,0,0,0,115,10, - 0,0,0,0,1,35,1,3,1,17,1,13,1,122,22,95, - 77,97,110,97,103,101,82,101,108,111,97,100,46,95,95,101, - 120,105,116,95,95,78,41,7,114,57,0,0,0,114,56,0, - 0,0,114,58,0,0,0,114,59,0,0,0,114,72,0,0, - 0,114,75,0,0,0,114,81,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, - 69,0,0,0,137,0,0,0,115,8,0,0,0,12,2,6, - 2,12,3,12,3,114,69,0,0,0,99,0,0,0,0,0, - 0,0,0,0,0,0,0,1,0,0,0,64,0,0,0,115, - 16,0,0,0,101,0,0,90,1,0,100,0,0,90,2,0, - 100,1,0,83,41,2,218,14,95,68,101,97,100,108,111,99, - 107,69,114,114,111,114,78,41,3,114,57,0,0,0,114,56, - 0,0,0,114,58,0,0,0,114,4,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,114,82,0,0, - 0,162,0,0,0,115,2,0,0,0,12,1,114,82,0,0, - 0,99,0,0,0,0,0,0,0,0,0,0,0,0,2,0, - 0,0,64,0,0,0,115,82,0,0,0,101,0,0,90,1, - 0,100,0,0,90,2,0,100,1,0,90,3,0,100,2,0, - 100,3,0,132,0,0,90,4,0,100,4,0,100,5,0,132, - 0,0,90,5,0,100,6,0,100,7,0,132,0,0,90,6, - 0,100,8,0,100,9,0,132,0,0,90,7,0,100,10,0, - 100,11,0,132,0,0,90,8,0,100,12,0,83,41,13,218, - 11,95,77,111,100,117,108,101,76,111,99,107,122,169,65,32, - 114,101,99,117,114,115,105,118,101,32,108,111,99,107,32,105, - 109,112,108,101,109,101,110,116,97,116,105,111,110,32,119,104, - 105,99,104,32,105,115,32,97,98,108,101,32,116,111,32,100, - 101,116,101,99,116,32,100,101,97,100,108,111,99,107,115,10, - 32,32,32,32,40,101,46,103,46,32,116,104,114,101,97,100, - 32,49,32,116,114,121,105,110,103,32,116,111,32,116,97,107, - 101,32,108,111,99,107,115,32,65,32,116,104,101,110,32,66, - 44,32,97,110,100,32,116,104,114,101,97,100,32,50,32,116, - 114,121,105,110,103,32,116,111,10,32,32,32,32,116,97,107, - 101,32,108,111,99,107,115,32,66,32,116,104,101,110,32,65, - 41,46,10,32,32,32,32,99,2,0,0,0,0,0,0,0, - 2,0,0,0,2,0,0,0,67,0,0,0,115,70,0,0, - 0,116,0,0,106,1,0,131,0,0,124,0,0,95,2,0, - 116,0,0,106,1,0,131,0,0,124,0,0,95,3,0,124, - 1,0,124,0,0,95,4,0,100,0,0,124,0,0,95,5, - 0,100,1,0,124,0,0,95,6,0,100,1,0,124,0,0, - 95,7,0,100,0,0,83,41,2,78,233,0,0,0,0,41, - 8,218,7,95,116,104,114,101,97,100,90,13,97,108,108,111, - 99,97,116,101,95,108,111,99,107,218,4,108,111,99,107,218, - 6,119,97,107,101,117,112,114,67,0,0,0,218,5,111,119, - 110,101,114,218,5,99,111,117,110,116,218,7,119,97,105,116, - 101,114,115,41,2,114,71,0,0,0,114,67,0,0,0,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,72, - 0,0,0,172,0,0,0,115,12,0,0,0,0,1,15,1, - 15,1,9,1,9,1,9,1,122,20,95,77,111,100,117,108, - 101,76,111,99,107,46,95,95,105,110,105,116,95,95,99,1, - 0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,67, - 0,0,0,115,88,0,0,0,116,0,0,106,1,0,131,0, - 0,125,1,0,124,0,0,106,2,0,125,2,0,120,60,0, - 116,3,0,106,4,0,124,2,0,131,1,0,125,3,0,124, - 3,0,100,0,0,107,8,0,114,55,0,100,1,0,83,124, - 3,0,106,2,0,125,2,0,124,2,0,124,1,0,107,2, - 0,114,24,0,100,2,0,83,113,24,0,87,100,0,0,83, - 41,3,78,70,84,41,5,114,85,0,0,0,218,9,103,101, - 116,95,105,100,101,110,116,114,88,0,0,0,218,12,95,98, - 108,111,99,107,105,110,103,95,111,110,218,3,103,101,116,41, - 4,114,71,0,0,0,218,2,109,101,218,3,116,105,100,114, - 86,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, - 0,0,0,218,12,104,97,115,95,100,101,97,100,108,111,99, - 107,180,0,0,0,115,18,0,0,0,0,2,12,1,9,1, - 3,1,15,1,12,1,4,1,9,1,12,1,122,24,95,77, - 111,100,117,108,101,76,111,99,107,46,104,97,115,95,100,101, - 97,100,108,111,99,107,99,1,0,0,0,0,0,0,0,2, - 0,0,0,16,0,0,0,67,0,0,0,115,209,0,0,0, - 116,0,0,106,1,0,131,0,0,125,1,0,124,0,0,116, - 2,0,124,1,0,60,122,172,0,120,165,0,124,0,0,106, - 3,0,143,124,0,1,124,0,0,106,4,0,100,1,0,107, - 2,0,115,68,0,124,0,0,106,5,0,124,1,0,107,2, - 0,114,96,0,124,1,0,124,0,0,95,5,0,124,0,0, - 4,106,4,0,100,2,0,55,2,95,4,0,100,3,0,83, - 124,0,0,106,6,0,131,0,0,114,124,0,116,7,0,100, - 4,0,124,0,0,22,131,1,0,130,1,0,124,0,0,106, - 8,0,106,9,0,100,5,0,131,1,0,114,157,0,124,0, - 0,4,106,10,0,100,2,0,55,2,95,10,0,87,100,6, - 0,81,88,124,0,0,106,8,0,106,9,0,131,0,0,1, - 124,0,0,106,8,0,106,11,0,131,0,0,1,113,28,0, - 87,87,100,6,0,116,2,0,124,1,0,61,88,100,6,0, - 83,41,7,122,185,10,32,32,32,32,32,32,32,32,65,99, - 113,117,105,114,101,32,116,104,101,32,109,111,100,117,108,101, - 32,108,111,99,107,46,32,32,73,102,32,97,32,112,111,116, - 101,110,116,105,97,108,32,100,101,97,100,108,111,99,107,32, - 105,115,32,100,101,116,101,99,116,101,100,44,10,32,32,32, - 32,32,32,32,32,97,32,95,68,101,97,100,108,111,99,107, - 69,114,114,111,114,32,105,115,32,114,97,105,115,101,100,46, - 10,32,32,32,32,32,32,32,32,79,116,104,101,114,119,105, - 115,101,44,32,116,104,101,32,108,111,99,107,32,105,115,32, - 97,108,119,97,121,115,32,97,99,113,117,105,114,101,100,32, - 97,110,100,32,84,114,117,101,32,105,115,32,114,101,116,117, - 114,110,101,100,46,10,32,32,32,32,32,32,32,32,114,84, - 0,0,0,114,29,0,0,0,84,122,23,100,101,97,100,108, - 111,99,107,32,100,101,116,101,99,116,101,100,32,98,121,32, - 37,114,70,78,41,12,114,85,0,0,0,114,91,0,0,0, - 114,92,0,0,0,114,86,0,0,0,114,89,0,0,0,114, - 88,0,0,0,114,96,0,0,0,114,82,0,0,0,114,87, - 0,0,0,218,7,97,99,113,117,105,114,101,114,90,0,0, - 0,218,7,114,101,108,101,97,115,101,41,2,114,71,0,0, - 0,114,95,0,0,0,114,4,0,0,0,114,4,0,0,0, - 114,5,0,0,0,114,97,0,0,0,192,0,0,0,115,32, - 0,0,0,0,6,12,1,10,1,3,1,3,1,10,1,30, - 1,9,1,15,1,4,1,12,1,16,1,18,1,21,2,13, - 1,21,2,122,19,95,77,111,100,117,108,101,76,111,99,107, - 46,97,99,113,117,105,114,101,99,1,0,0,0,0,0,0, - 0,2,0,0,0,10,0,0,0,67,0,0,0,115,156,0, - 0,0,116,0,0,106,1,0,131,0,0,125,1,0,124,0, - 0,106,2,0,143,129,0,1,124,0,0,106,3,0,124,1, - 0,107,3,0,114,49,0,116,4,0,100,1,0,131,1,0, - 130,1,0,124,0,0,106,5,0,100,2,0,107,4,0,115, - 70,0,116,6,0,130,1,0,124,0,0,4,106,5,0,100, - 3,0,56,2,95,5,0,124,0,0,106,5,0,100,2,0, - 107,2,0,114,146,0,100,0,0,124,0,0,95,3,0,124, - 0,0,106,7,0,114,146,0,124,0,0,4,106,7,0,100, - 3,0,56,2,95,7,0,124,0,0,106,8,0,106,9,0, - 131,0,0,1,87,100,0,0,81,88,100,0,0,83,41,4, - 78,122,31,99,97,110,110,111,116,32,114,101,108,101,97,115, - 101,32,117,110,45,97,99,113,117,105,114,101,100,32,108,111, - 99,107,114,84,0,0,0,114,29,0,0,0,41,10,114,85, - 0,0,0,114,91,0,0,0,114,86,0,0,0,114,88,0, - 0,0,218,12,82,117,110,116,105,109,101,69,114,114,111,114, - 114,89,0,0,0,218,14,65,115,115,101,114,116,105,111,110, - 69,114,114,111,114,114,90,0,0,0,114,87,0,0,0,114, - 98,0,0,0,41,2,114,71,0,0,0,114,95,0,0,0, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, - 98,0,0,0,217,0,0,0,115,22,0,0,0,0,1,12, - 1,10,1,15,1,12,1,21,1,15,1,15,1,9,1,9, - 1,15,1,122,19,95,77,111,100,117,108,101,76,111,99,107, - 46,114,101,108,101,97,115,101,99,1,0,0,0,0,0,0, - 0,1,0,0,0,4,0,0,0,67,0,0,0,115,25,0, - 0,0,100,1,0,106,0,0,124,0,0,106,1,0,116,2, - 0,124,0,0,131,1,0,131,2,0,83,41,2,78,122,23, - 95,77,111,100,117,108,101,76,111,99,107,40,123,33,114,125, - 41,32,97,116,32,123,125,41,3,114,47,0,0,0,114,67, - 0,0,0,114,48,0,0,0,41,1,114,71,0,0,0,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,8, - 95,95,114,101,112,114,95,95,230,0,0,0,115,2,0,0, - 0,0,1,122,20,95,77,111,100,117,108,101,76,111,99,107, - 46,95,95,114,101,112,114,95,95,78,41,9,114,57,0,0, - 0,114,56,0,0,0,114,58,0,0,0,114,59,0,0,0, - 114,72,0,0,0,114,96,0,0,0,114,97,0,0,0,114, - 98,0,0,0,114,101,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,4,0,0,0,114,5,0,0,0,114,83,0, - 0,0,166,0,0,0,115,12,0,0,0,12,4,6,2,12, - 8,12,12,12,25,12,13,114,83,0,0,0,99,0,0,0, - 0,0,0,0,0,0,0,0,0,2,0,0,0,64,0,0, - 0,115,70,0,0,0,101,0,0,90,1,0,100,0,0,90, - 2,0,100,1,0,90,3,0,100,2,0,100,3,0,132,0, - 0,90,4,0,100,4,0,100,5,0,132,0,0,90,5,0, - 100,6,0,100,7,0,132,0,0,90,6,0,100,8,0,100, - 9,0,132,0,0,90,7,0,100,10,0,83,41,11,218,16, - 95,68,117,109,109,121,77,111,100,117,108,101,76,111,99,107, - 122,86,65,32,115,105,109,112,108,101,32,95,77,111,100,117, - 108,101,76,111,99,107,32,101,113,117,105,118,97,108,101,110, - 116,32,102,111,114,32,80,121,116,104,111,110,32,98,117,105, - 108,100,115,32,119,105,116,104,111,117,116,10,32,32,32,32, - 109,117,108,116,105,45,116,104,114,101,97,100,105,110,103,32, - 115,117,112,112,111,114,116,46,99,2,0,0,0,0,0,0, - 0,2,0,0,0,2,0,0,0,67,0,0,0,115,22,0, - 0,0,124,1,0,124,0,0,95,0,0,100,1,0,124,0, - 0,95,1,0,100,0,0,83,41,2,78,114,84,0,0,0, - 41,2,114,67,0,0,0,114,89,0,0,0,41,2,114,71, - 0,0,0,114,67,0,0,0,114,4,0,0,0,114,4,0, - 0,0,114,5,0,0,0,114,72,0,0,0,238,0,0,0, - 115,4,0,0,0,0,1,9,1,122,25,95,68,117,109,109, - 121,77,111,100,117,108,101,76,111,99,107,46,95,95,105,110, - 105,116,95,95,99,1,0,0,0,0,0,0,0,1,0,0, - 0,3,0,0,0,67,0,0,0,115,19,0,0,0,124,0, - 0,4,106,0,0,100,1,0,55,2,95,0,0,100,2,0, - 83,41,3,78,114,29,0,0,0,84,41,1,114,89,0,0, - 0,41,1,114,71,0,0,0,114,4,0,0,0,114,4,0, - 0,0,114,5,0,0,0,114,97,0,0,0,242,0,0,0, - 115,4,0,0,0,0,1,15,1,122,24,95,68,117,109,109, - 121,77,111,100,117,108,101,76,111,99,107,46,97,99,113,117, - 105,114,101,99,1,0,0,0,0,0,0,0,1,0,0,0, - 3,0,0,0,67,0,0,0,115,46,0,0,0,124,0,0, - 106,0,0,100,1,0,107,2,0,114,27,0,116,1,0,100, - 2,0,131,1,0,130,1,0,124,0,0,4,106,0,0,100, - 3,0,56,2,95,0,0,100,0,0,83,41,4,78,114,84, - 0,0,0,122,31,99,97,110,110,111,116,32,114,101,108,101, - 97,115,101,32,117,110,45,97,99,113,117,105,114,101,100,32, - 108,111,99,107,114,29,0,0,0,41,2,114,89,0,0,0, - 114,99,0,0,0,41,1,114,71,0,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,114,98,0,0,0, - 246,0,0,0,115,6,0,0,0,0,1,15,1,12,1,122, - 24,95,68,117,109,109,121,77,111,100,117,108,101,76,111,99, - 107,46,114,101,108,101,97,115,101,99,1,0,0,0,0,0, - 0,0,1,0,0,0,4,0,0,0,67,0,0,0,115,25, - 0,0,0,100,1,0,106,0,0,124,0,0,106,1,0,116, - 2,0,124,0,0,131,1,0,131,2,0,83,41,2,78,122, - 28,95,68,117,109,109,121,77,111,100,117,108,101,76,111,99, - 107,40,123,33,114,125,41,32,97,116,32,123,125,41,3,114, - 47,0,0,0,114,67,0,0,0,114,48,0,0,0,41,1, - 114,71,0,0,0,114,4,0,0,0,114,4,0,0,0,114, - 5,0,0,0,114,101,0,0,0,251,0,0,0,115,2,0, - 0,0,0,1,122,25,95,68,117,109,109,121,77,111,100,117, - 108,101,76,111,99,107,46,95,95,114,101,112,114,95,95,78, - 41,8,114,57,0,0,0,114,56,0,0,0,114,58,0,0, - 0,114,59,0,0,0,114,72,0,0,0,114,97,0,0,0, - 114,98,0,0,0,114,101,0,0,0,114,4,0,0,0,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,102, - 0,0,0,234,0,0,0,115,10,0,0,0,12,2,6,2, - 12,4,12,4,12,5,114,102,0,0,0,99,0,0,0,0, - 0,0,0,0,0,0,0,0,2,0,0,0,64,0,0,0, - 115,52,0,0,0,101,0,0,90,1,0,100,0,0,90,2, - 0,100,1,0,100,2,0,132,0,0,90,3,0,100,3,0, - 100,4,0,132,0,0,90,4,0,100,5,0,100,6,0,132, - 0,0,90,5,0,100,7,0,83,41,8,218,18,95,77,111, - 100,117,108,101,76,111,99,107,77,97,110,97,103,101,114,99, - 2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0, - 67,0,0,0,115,22,0,0,0,124,1,0,124,0,0,95, - 0,0,100,0,0,124,0,0,95,1,0,100,0,0,83,41, - 1,78,41,2,114,70,0,0,0,218,5,95,108,111,99,107, - 41,2,114,71,0,0,0,114,67,0,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,114,72,0,0,0, - 1,1,0,0,115,4,0,0,0,0,1,9,1,122,27,95, - 77,111,100,117,108,101,76,111,99,107,77,97,110,97,103,101, - 114,46,95,95,105,110,105,116,95,95,99,1,0,0,0,0, - 0,0,0,1,0,0,0,10,0,0,0,67,0,0,0,115, - 53,0,0,0,122,22,0,116,0,0,124,0,0,106,1,0, - 131,1,0,124,0,0,95,2,0,87,100,0,0,116,3,0, - 106,4,0,131,0,0,1,88,124,0,0,106,2,0,106,5, - 0,131,0,0,1,100,0,0,83,41,1,78,41,6,218,16, - 95,103,101,116,95,109,111,100,117,108,101,95,108,111,99,107, - 114,70,0,0,0,114,104,0,0,0,218,4,95,105,109,112, - 218,12,114,101,108,101,97,115,101,95,108,111,99,107,114,97, - 0,0,0,41,1,114,71,0,0,0,114,4,0,0,0,114, - 4,0,0,0,114,5,0,0,0,114,75,0,0,0,5,1, - 0,0,115,8,0,0,0,0,1,3,1,22,2,11,1,122, - 28,95,77,111,100,117,108,101,76,111,99,107,77,97,110,97, - 103,101,114,46,95,95,101,110,116,101,114,95,95,99,1,0, - 0,0,0,0,0,0,3,0,0,0,1,0,0,0,79,0, - 0,0,115,17,0,0,0,124,0,0,106,0,0,106,1,0, - 131,0,0,1,100,0,0,83,41,1,78,41,2,114,104,0, - 0,0,114,98,0,0,0,41,3,114,71,0,0,0,114,80, - 0,0,0,218,6,107,119,97,114,103,115,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,114,81,0,0,0,12, - 1,0,0,115,2,0,0,0,0,1,122,27,95,77,111,100, - 117,108,101,76,111,99,107,77,97,110,97,103,101,114,46,95, - 95,101,120,105,116,95,95,78,41,6,114,57,0,0,0,114, - 56,0,0,0,114,58,0,0,0,114,72,0,0,0,114,75, - 0,0,0,114,81,0,0,0,114,4,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,114,103,0,0, - 0,255,0,0,0,115,6,0,0,0,12,2,12,4,12,7, - 114,103,0,0,0,99,1,0,0,0,0,0,0,0,3,0, - 0,0,11,0,0,0,3,0,0,0,115,139,0,0,0,100, - 1,0,125,1,0,121,17,0,116,0,0,136,0,0,25,131, - 0,0,125,1,0,87,110,18,0,4,116,1,0,107,10,0, - 114,43,0,1,1,1,89,110,1,0,88,124,1,0,100,1, - 0,107,8,0,114,135,0,116,2,0,100,1,0,107,8,0, - 114,83,0,116,3,0,136,0,0,131,1,0,125,1,0,110, - 12,0,116,4,0,136,0,0,131,1,0,125,1,0,135,0, - 0,102,1,0,100,2,0,100,3,0,134,0,0,125,2,0, - 116,5,0,106,6,0,124,1,0,124,2,0,131,2,0,116, - 0,0,136,0,0,60,124,1,0,83,41,4,122,109,71,101, - 116,32,111,114,32,99,114,101,97,116,101,32,116,104,101,32, - 109,111,100,117,108,101,32,108,111,99,107,32,102,111,114,32, - 97,32,103,105,118,101,110,32,109,111,100,117,108,101,32,110, - 97,109,101,46,10,10,32,32,32,32,83,104,111,117,108,100, - 32,111,110,108,121,32,98,101,32,99,97,108,108,101,100,32, - 119,105,116,104,32,116,104,101,32,105,109,112,111,114,116,32, - 108,111,99,107,32,116,97,107,101,110,46,78,99,1,0,0, - 0,0,0,0,0,1,0,0,0,2,0,0,0,19,0,0, - 0,115,11,0,0,0,116,0,0,136,0,0,61,100,0,0, - 83,41,1,78,41,1,218,13,95,109,111,100,117,108,101,95, - 108,111,99,107,115,41,1,114,36,0,0,0,41,1,114,67, - 0,0,0,114,4,0,0,0,114,5,0,0,0,218,2,99, - 98,32,1,0,0,115,2,0,0,0,0,1,122,28,95,103, - 101,116,95,109,111,100,117,108,101,95,108,111,99,107,46,60, - 108,111,99,97,108,115,62,46,99,98,41,7,114,109,0,0, - 0,114,79,0,0,0,114,85,0,0,0,114,102,0,0,0, - 114,83,0,0,0,218,8,95,119,101,97,107,114,101,102,90, - 3,114,101,102,41,3,114,67,0,0,0,114,86,0,0,0, - 114,110,0,0,0,114,4,0,0,0,41,1,114,67,0,0, - 0,114,5,0,0,0,114,105,0,0,0,18,1,0,0,115, - 24,0,0,0,0,4,6,1,3,1,17,1,13,1,5,1, - 12,1,12,1,15,2,12,1,18,2,22,1,114,105,0,0, - 0,99,1,0,0,0,0,0,0,0,2,0,0,0,11,0, - 0,0,67,0,0,0,115,71,0,0,0,116,0,0,124,0, - 0,131,1,0,125,1,0,116,1,0,106,2,0,131,0,0, - 1,121,14,0,124,1,0,106,3,0,131,0,0,1,87,110, - 18,0,4,116,4,0,107,10,0,114,56,0,1,1,1,89, - 110,11,0,88,124,1,0,106,5,0,131,0,0,1,100,1, - 0,83,41,2,97,21,1,0,0,82,101,108,101,97,115,101, - 32,116,104,101,32,103,108,111,98,97,108,32,105,109,112,111, - 114,116,32,108,111,99,107,44,32,97,110,100,32,97,99,113, - 117,105,114,101,115,32,116,104,101,110,32,114,101,108,101,97, - 115,101,32,116,104,101,10,32,32,32,32,109,111,100,117,108, - 101,32,108,111,99,107,32,102,111,114,32,97,32,103,105,118, - 101,110,32,109,111,100,117,108,101,32,110,97,109,101,46,10, - 32,32,32,32,84,104,105,115,32,105,115,32,117,115,101,100, - 32,116,111,32,101,110,115,117,114,101,32,97,32,109,111,100, - 117,108,101,32,105,115,32,99,111,109,112,108,101,116,101,108, - 121,32,105,110,105,116,105,97,108,105,122,101,100,44,32,105, - 110,32,116,104,101,10,32,32,32,32,101,118,101,110,116,32, - 105,116,32,105,115,32,98,101,105,110,103,32,105,109,112,111, - 114,116,101,100,32,98,121,32,97,110,111,116,104,101,114,32, - 116,104,114,101,97,100,46,10,10,32,32,32,32,83,104,111, - 117,108,100,32,111,110,108,121,32,98,101,32,99,97,108,108, - 101,100,32,119,105,116,104,32,116,104,101,32,105,109,112,111, - 114,116,32,108,111,99,107,32,116,97,107,101,110,46,78,41, - 6,114,105,0,0,0,114,106,0,0,0,114,107,0,0,0, - 114,97,0,0,0,114,82,0,0,0,114,98,0,0,0,41, - 2,114,67,0,0,0,114,86,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,218,19,95,108,111,99, - 107,95,117,110,108,111,99,107,95,109,111,100,117,108,101,37, - 1,0,0,115,14,0,0,0,0,7,12,1,10,1,3,1, - 14,1,13,3,5,2,114,112,0,0,0,99,1,0,0,0, - 0,0,0,0,3,0,0,0,3,0,0,0,79,0,0,0, - 115,13,0,0,0,124,0,0,124,1,0,124,2,0,142,0, - 0,83,41,1,97,46,1,0,0,114,101,109,111,118,101,95, - 105,109,112,111,114,116,108,105,98,95,102,114,97,109,101,115, - 32,105,110,32,105,109,112,111,114,116,46,99,32,119,105,108, - 108,32,97,108,119,97,121,115,32,114,101,109,111,118,101,32, - 115,101,113,117,101,110,99,101,115,10,32,32,32,32,111,102, - 32,105,109,112,111,114,116,108,105,98,32,102,114,97,109,101, - 115,32,116,104,97,116,32,101,110,100,32,119,105,116,104,32, - 97,32,99,97,108,108,32,116,111,32,116,104,105,115,32,102, - 117,110,99,116,105,111,110,10,10,32,32,32,32,85,115,101, - 32,105,116,32,105,110,115,116,101,97,100,32,111,102,32,97, - 32,110,111,114,109,97,108,32,99,97,108,108,32,105,110,32, - 112,108,97,99,101,115,32,119,104,101,114,101,32,105,110,99, - 108,117,100,105,110,103,32,116,104,101,32,105,109,112,111,114, - 116,108,105,98,10,32,32,32,32,102,114,97,109,101,115,32, - 105,110,116,114,111,100,117,99,101,115,32,117,110,119,97,110, - 116,101,100,32,110,111,105,115,101,32,105,110,116,111,32,116, - 104,101,32,116,114,97,99,101,98,97,99,107,32,40,101,46, - 103,46,32,119,104,101,110,32,101,120,101,99,117,116,105,110, - 103,10,32,32,32,32,109,111,100,117,108,101,32,99,111,100, - 101,41,10,32,32,32,32,114,4,0,0,0,41,3,218,1, - 102,114,80,0,0,0,90,4,107,119,100,115,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,218,25,95,99,97, - 108,108,95,119,105,116,104,95,102,114,97,109,101,115,95,114, - 101,109,111,118,101,100,57,1,0,0,115,2,0,0,0,0, - 8,114,114,0,0,0,105,248,12,0,0,233,2,0,0,0, - 114,13,0,0,0,115,2,0,0,0,13,10,90,11,95,95, - 112,121,99,97,99,104,101,95,95,122,4,111,112,116,45,122, - 3,46,112,121,122,4,46,112,121,99,78,218,12,111,112,116, - 105,109,105,122,97,116,105,111,110,99,2,0,0,0,1,0, - 0,0,11,0,0,0,6,0,0,0,67,0,0,0,115,87, - 1,0,0,124,1,0,100,1,0,107,9,0,114,76,0,116, - 0,0,106,1,0,100,2,0,116,2,0,131,2,0,1,124, - 2,0,100,1,0,107,9,0,114,58,0,100,3,0,125,3, - 0,116,3,0,124,3,0,131,1,0,130,1,0,124,1,0, - 114,70,0,100,4,0,110,3,0,100,5,0,125,2,0,116, - 4,0,124,0,0,131,1,0,92,2,0,125,4,0,125,5, - 0,124,5,0,106,5,0,100,6,0,131,1,0,92,3,0, - 125,6,0,125,7,0,125,8,0,116,6,0,106,7,0,106, - 8,0,125,9,0,124,9,0,100,1,0,107,8,0,114,154, - 0,116,9,0,100,7,0,131,1,0,130,1,0,100,4,0, - 106,10,0,124,6,0,114,172,0,124,6,0,110,3,0,124, - 8,0,124,7,0,124,9,0,103,3,0,131,1,0,125,10, - 0,124,2,0,100,1,0,107,8,0,114,241,0,116,6,0, - 106,11,0,106,12,0,100,8,0,107,2,0,114,229,0,100, - 4,0,125,2,0,110,12,0,116,6,0,106,11,0,106,12, - 0,125,2,0,116,13,0,124,2,0,131,1,0,125,2,0, - 124,2,0,100,4,0,107,3,0,114,63,1,124,2,0,106, - 14,0,131,0,0,115,42,1,116,15,0,100,9,0,106,16, - 0,124,2,0,131,1,0,131,1,0,130,1,0,100,10,0, - 106,16,0,124,10,0,116,17,0,124,2,0,131,3,0,125, - 10,0,116,18,0,124,4,0,116,19,0,124,10,0,116,20, - 0,100,8,0,25,23,131,3,0,83,41,11,97,254,2,0, - 0,71,105,118,101,110,32,116,104,101,32,112,97,116,104,32, - 116,111,32,97,32,46,112,121,32,102,105,108,101,44,32,114, - 101,116,117,114,110,32,116,104,101,32,112,97,116,104,32,116, - 111,32,105,116,115,32,46,112,121,99,32,102,105,108,101,46, - 10,10,32,32,32,32,84,104,101,32,46,112,121,32,102,105, - 108,101,32,100,111,101,115,32,110,111,116,32,110,101,101,100, - 32,116,111,32,101,120,105,115,116,59,32,116,104,105,115,32, - 115,105,109,112,108,121,32,114,101,116,117,114,110,115,32,116, - 104,101,32,112,97,116,104,32,116,111,32,116,104,101,10,32, - 32,32,32,46,112,121,99,32,102,105,108,101,32,99,97,108, - 99,117,108,97,116,101,100,32,97,115,32,105,102,32,116,104, - 101,32,46,112,121,32,102,105,108,101,32,119,101,114,101,32, - 105,109,112,111,114,116,101,100,46,10,10,32,32,32,32,84, - 104,101,32,39,111,112,116,105,109,105,122,97,116,105,111,110, - 39,32,112,97,114,97,109,101,116,101,114,32,99,111,110,116, - 114,111,108,115,32,116,104,101,32,112,114,101,115,117,109,101, - 100,32,111,112,116,105,109,105,122,97,116,105,111,110,32,108, - 101,118,101,108,32,111,102,10,32,32,32,32,116,104,101,32, - 98,121,116,101,99,111,100,101,32,102,105,108,101,46,32,73, - 102,32,39,111,112,116,105,109,105,122,97,116,105,111,110,39, - 32,105,115,32,110,111,116,32,78,111,110,101,44,32,116,104, - 101,32,115,116,114,105,110,103,32,114,101,112,114,101,115,101, - 110,116,97,116,105,111,110,10,32,32,32,32,111,102,32,116, - 104,101,32,97,114,103,117,109,101,110,116,32,105,115,32,116, - 97,107,101,110,32,97,110,100,32,118,101,114,105,102,105,101, - 100,32,116,111,32,98,101,32,97,108,112,104,97,110,117,109, - 101,114,105,99,32,40,101,108,115,101,32,86,97,108,117,101, - 69,114,114,111,114,10,32,32,32,32,105,115,32,114,97,105, - 115,101,100,41,46,10,10,32,32,32,32,84,104,101,32,100, - 101,98,117,103,95,111,118,101,114,114,105,100,101,32,112,97, - 114,97,109,101,116,101,114,32,105,115,32,100,101,112,114,101, - 99,97,116,101,100,46,32,73,102,32,100,101,98,117,103,95, - 111,118,101,114,114,105,100,101,32,105,115,32,110,111,116,32, - 78,111,110,101,44,10,32,32,32,32,97,32,84,114,117,101, - 32,118,97,108,117,101,32,105,115,32,116,104,101,32,115,97, - 109,101,32,97,115,32,115,101,116,116,105,110,103,32,39,111, - 112,116,105,109,105,122,97,116,105,111,110,39,32,116,111,32, - 116,104,101,32,101,109,112,116,121,32,115,116,114,105,110,103, - 10,32,32,32,32,119,104,105,108,101,32,97,32,70,97,108, - 115,101,32,118,97,108,117,101,32,105,115,32,101,113,117,105, - 118,97,108,101,110,116,32,116,111,32,115,101,116,116,105,110, - 103,32,39,111,112,116,105,109,105,122,97,116,105,111,110,39, - 32,116,111,32,39,49,39,46,10,10,32,32,32,32,73,102, - 32,115,121,115,46,105,109,112,108,101,109,101,110,116,97,116, - 105,111,110,46,99,97,99,104,101,95,116,97,103,32,105,115, - 32,78,111,110,101,32,116,104,101,110,32,78,111,116,73,109, - 112,108,101,109,101,110,116,101,100,69,114,114,111,114,32,105, - 115,32,114,97,105,115,101,100,46,10,10,32,32,32,32,78, - 122,70,116,104,101,32,100,101,98,117,103,95,111,118,101,114, - 114,105,100,101,32,112,97,114,97,109,101,116,101,114,32,105, - 115,32,100,101,112,114,101,99,97,116,101,100,59,32,117,115, - 101,32,39,111,112,116,105,109,105,122,97,116,105,111,110,39, - 32,105,110,115,116,101,97,100,122,50,100,101,98,117,103,95, - 111,118,101,114,114,105,100,101,32,111,114,32,111,112,116,105, - 109,105,122,97,116,105,111,110,32,109,117,115,116,32,98,101, - 32,115,101,116,32,116,111,32,78,111,110,101,114,30,0,0, - 0,114,29,0,0,0,218,1,46,122,36,115,121,115,46,105, - 109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,97, - 99,104,101,95,116,97,103,32,105,115,32,78,111,110,101,114, - 84,0,0,0,122,24,123,33,114,125,32,105,115,32,110,111, - 116,32,97,108,112,104,97,110,117,109,101,114,105,99,122,7, - 123,125,46,123,125,123,125,41,21,218,9,95,119,97,114,110, - 105,110,103,115,218,4,119,97,114,110,218,18,68,101,112,114, - 101,99,97,116,105,111,110,87,97,114,110,105,110,103,218,9, - 84,121,112,101,69,114,114,111,114,114,38,0,0,0,114,32, - 0,0,0,114,7,0,0,0,218,14,105,109,112,108,101,109, - 101,110,116,97,116,105,111,110,218,9,99,97,99,104,101,95, - 116,97,103,218,19,78,111,116,73,109,112,108,101,109,101,110, - 116,101,100,69,114,114,111,114,114,26,0,0,0,218,5,102, - 108,97,103,115,218,8,111,112,116,105,109,105,122,101,218,3, - 115,116,114,218,7,105,115,97,108,110,117,109,218,10,86,97, - 108,117,101,69,114,114,111,114,114,47,0,0,0,218,4,95, - 79,80,84,114,28,0,0,0,218,8,95,80,89,67,65,67, - 72,69,218,17,66,89,84,69,67,79,68,69,95,83,85,70, - 70,73,88,69,83,41,11,114,35,0,0,0,90,14,100,101, - 98,117,103,95,111,118,101,114,114,105,100,101,114,116,0,0, - 0,218,7,109,101,115,115,97,103,101,218,4,104,101,97,100, - 114,37,0,0,0,218,4,98,97,115,101,218,3,115,101,112, - 218,4,114,101,115,116,90,3,116,97,103,90,15,97,108,109, - 111,115,116,95,102,105,108,101,110,97,109,101,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,218,17,99,97,99, - 104,101,95,102,114,111,109,95,115,111,117,114,99,101,184,1, - 0,0,115,46,0,0,0,0,18,12,1,9,1,7,1,12, - 1,6,1,12,1,18,1,18,1,24,1,12,1,12,1,12, - 1,36,1,12,1,18,1,9,2,12,1,12,1,12,1,12, - 1,21,1,21,1,114,138,0,0,0,99,1,0,0,0,0, - 0,0,0,8,0,0,0,5,0,0,0,67,0,0,0,115, - 62,1,0,0,116,0,0,106,1,0,106,2,0,100,1,0, - 107,8,0,114,30,0,116,3,0,100,2,0,131,1,0,130, - 1,0,116,4,0,124,0,0,131,1,0,92,2,0,125,1, - 0,125,2,0,116,4,0,124,1,0,131,1,0,92,2,0, - 125,1,0,125,3,0,124,3,0,116,5,0,107,3,0,114, - 102,0,116,6,0,100,3,0,106,7,0,116,5,0,124,0, - 0,131,2,0,131,1,0,130,1,0,124,2,0,106,8,0, - 100,4,0,131,1,0,125,4,0,124,4,0,100,11,0,107, - 7,0,114,153,0,116,6,0,100,7,0,106,7,0,124,2, - 0,131,1,0,131,1,0,130,1,0,110,125,0,124,4,0, - 100,6,0,107,2,0,114,22,1,124,2,0,106,9,0,100, - 4,0,100,5,0,131,2,0,100,12,0,25,125,5,0,124, - 5,0,106,10,0,116,11,0,131,1,0,115,223,0,116,6, - 0,100,8,0,106,7,0,116,11,0,131,1,0,131,1,0, - 130,1,0,124,5,0,116,12,0,116,11,0,131,1,0,100, - 1,0,133,2,0,25,125,6,0,124,6,0,106,13,0,131, - 0,0,115,22,1,116,6,0,100,9,0,106,7,0,124,5, - 0,131,1,0,131,1,0,130,1,0,124,2,0,106,14,0, - 100,4,0,131,1,0,100,10,0,25,125,7,0,116,15,0, - 124,1,0,124,7,0,116,16,0,100,10,0,25,23,131,2, - 0,83,41,13,97,110,1,0,0,71,105,118,101,110,32,116, - 104,101,32,112,97,116,104,32,116,111,32,97,32,46,112,121, - 99,46,32,102,105,108,101,44,32,114,101,116,117,114,110,32, - 116,104,101,32,112,97,116,104,32,116,111,32,105,116,115,32, - 46,112,121,32,102,105,108,101,46,10,10,32,32,32,32,84, - 104,101,32,46,112,121,99,32,102,105,108,101,32,100,111,101, - 115,32,110,111,116,32,110,101,101,100,32,116,111,32,101,120, - 105,115,116,59,32,116,104,105,115,32,115,105,109,112,108,121, - 32,114,101,116,117,114,110,115,32,116,104,101,32,112,97,116, - 104,32,116,111,10,32,32,32,32,116,104,101,32,46,112,121, - 32,102,105,108,101,32,99,97,108,99,117,108,97,116,101,100, - 32,116,111,32,99,111,114,114,101,115,112,111,110,100,32,116, - 111,32,116,104,101,32,46,112,121,99,32,102,105,108,101,46, - 32,32,73,102,32,112,97,116,104,32,100,111,101,115,10,32, - 32,32,32,110,111,116,32,99,111,110,102,111,114,109,32,116, - 111,32,80,69,80,32,51,49,52,55,47,52,56,56,32,102, - 111,114,109,97,116,44,32,86,97,108,117,101,69,114,114,111, - 114,32,119,105,108,108,32,98,101,32,114,97,105,115,101,100, - 46,32,73,102,10,32,32,32,32,115,121,115,46,105,109,112, - 108,101,109,101,110,116,97,116,105,111,110,46,99,97,99,104, - 101,95,116,97,103,32,105,115,32,78,111,110,101,32,116,104, - 101,110,32,78,111,116,73,109,112,108,101,109,101,110,116,101, - 100,69,114,114,111,114,32,105,115,32,114,97,105,115,101,100, - 46,10,10,32,32,32,32,78,122,36,115,121,115,46,105,109, - 112,108,101,109,101,110,116,97,116,105,111,110,46,99,97,99, - 104,101,95,116,97,103,32,105,115,32,78,111,110,101,122,37, - 123,125,32,110,111,116,32,98,111,116,116,111,109,45,108,101, - 118,101,108,32,100,105,114,101,99,116,111,114,121,32,105,110, - 32,123,33,114,125,114,117,0,0,0,114,115,0,0,0,233, - 3,0,0,0,122,33,101,120,112,101,99,116,101,100,32,111, - 110,108,121,32,50,32,111,114,32,51,32,100,111,116,115,32, - 105,110,32,123,33,114,125,122,57,111,112,116,105,109,105,122, - 97,116,105,111,110,32,112,111,114,116,105,111,110,32,111,102, - 32,102,105,108,101,110,97,109,101,32,100,111,101,115,32,110, - 111,116,32,115,116,97,114,116,32,119,105,116,104,32,123,33, - 114,125,122,52,111,112,116,105,109,105,122,97,116,105,111,110, - 32,108,101,118,101,108,32,123,33,114,125,32,105,115,32,110, - 111,116,32,97,110,32,97,108,112,104,97,110,117,109,101,114, - 105,99,32,118,97,108,117,101,114,84,0,0,0,62,2,0, - 0,0,114,115,0,0,0,114,139,0,0,0,233,254,255,255, - 255,41,17,114,7,0,0,0,114,122,0,0,0,114,123,0, - 0,0,114,124,0,0,0,114,38,0,0,0,114,131,0,0, - 0,114,129,0,0,0,114,47,0,0,0,114,89,0,0,0, - 114,34,0,0,0,114,9,0,0,0,114,130,0,0,0,114, - 31,0,0,0,114,128,0,0,0,218,9,112,97,114,116,105, - 116,105,111,110,114,28,0,0,0,218,15,83,79,85,82,67, - 69,95,83,85,70,70,73,88,69,83,41,8,114,35,0,0, - 0,114,134,0,0,0,90,16,112,121,99,97,99,104,101,95, - 102,105,108,101,110,97,109,101,90,7,112,121,99,97,99,104, - 101,90,9,100,111,116,95,99,111,117,110,116,114,116,0,0, - 0,90,9,111,112,116,95,108,101,118,101,108,90,13,98,97, - 115,101,95,102,105,108,101,110,97,109,101,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,218,17,115,111,117,114, - 99,101,95,102,114,111,109,95,99,97,99,104,101,228,1,0, - 0,115,44,0,0,0,0,9,18,1,12,1,18,1,18,1, - 12,1,9,1,15,1,15,1,12,1,9,1,15,1,12,1, - 22,1,15,1,9,1,12,1,22,1,12,1,9,1,12,1, - 19,1,114,143,0,0,0,99,1,0,0,0,0,0,0,0, - 5,0,0,0,12,0,0,0,67,0,0,0,115,164,0,0, - 0,116,0,0,124,0,0,131,1,0,100,1,0,107,2,0, - 114,22,0,100,2,0,83,124,0,0,106,1,0,100,3,0, - 131,1,0,92,3,0,125,1,0,125,2,0,125,3,0,124, - 1,0,12,115,81,0,124,3,0,106,2,0,131,0,0,100, - 7,0,100,8,0,133,2,0,25,100,6,0,107,3,0,114, - 85,0,124,0,0,83,121,16,0,116,3,0,124,0,0,131, - 1,0,125,4,0,87,110,40,0,4,116,4,0,116,5,0, - 102,2,0,107,10,0,114,143,0,1,1,1,124,0,0,100, - 2,0,100,9,0,133,2,0,25,125,4,0,89,110,1,0, - 88,116,6,0,124,4,0,131,1,0,114,160,0,124,4,0, - 83,124,0,0,83,41,10,122,188,67,111,110,118,101,114,116, - 32,97,32,98,121,116,101,99,111,100,101,32,102,105,108,101, - 32,112,97,116,104,32,116,111,32,97,32,115,111,117,114,99, - 101,32,112,97,116,104,32,40,105,102,32,112,111,115,115,105, - 98,108,101,41,46,10,10,32,32,32,32,84,104,105,115,32, - 102,117,110,99,116,105,111,110,32,101,120,105,115,116,115,32, - 112,117,114,101,108,121,32,102,111,114,32,98,97,99,107,119, - 97,114,100,115,45,99,111,109,112,97,116,105,98,105,108,105, - 116,121,32,102,111,114,10,32,32,32,32,80,121,73,109,112, - 111,114,116,95,69,120,101,99,67,111,100,101,77,111,100,117, - 108,101,87,105,116,104,70,105,108,101,110,97,109,101,115,40, - 41,32,105,110,32,116,104,101,32,67,32,65,80,73,46,10, - 10,32,32,32,32,114,84,0,0,0,78,114,117,0,0,0, - 114,139,0,0,0,114,29,0,0,0,90,2,112,121,233,253, - 255,255,255,233,255,255,255,255,114,145,0,0,0,41,7,114, - 31,0,0,0,114,32,0,0,0,218,5,108,111,119,101,114, - 114,143,0,0,0,114,124,0,0,0,114,129,0,0,0,114, - 44,0,0,0,41,5,218,13,98,121,116,101,99,111,100,101, - 95,112,97,116,104,114,137,0,0,0,114,36,0,0,0,90, - 9,101,120,116,101,110,115,105,111,110,218,11,115,111,117,114, - 99,101,95,112,97,116,104,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,218,15,95,103,101,116,95,115,111,117, - 114,99,101,102,105,108,101,5,2,0,0,115,20,0,0,0, - 0,7,18,1,4,1,24,1,35,1,4,1,3,1,16,1, - 19,1,21,1,114,149,0,0,0,99,1,0,0,0,0,0, - 0,0,2,0,0,0,11,0,0,0,67,0,0,0,115,60, - 0,0,0,121,19,0,116,0,0,124,0,0,131,1,0,106, - 1,0,125,1,0,87,110,24,0,4,116,2,0,107,10,0, - 114,45,0,1,1,1,100,1,0,125,1,0,89,110,1,0, - 88,124,1,0,100,2,0,79,125,1,0,124,1,0,83,41, - 3,122,51,67,97,108,99,117,108,97,116,101,32,116,104,101, - 32,109,111,100,101,32,112,101,114,109,105,115,115,105,111,110, - 115,32,102,111,114,32,97,32,98,121,116,101,99,111,100,101, - 32,102,105,108,101,46,105,182,1,0,0,233,128,0,0,0, - 41,3,114,39,0,0,0,114,41,0,0,0,114,40,0,0, - 0,41,2,114,35,0,0,0,114,42,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,218,10,95,99, - 97,108,99,95,109,111,100,101,24,2,0,0,115,12,0,0, - 0,0,2,3,1,19,1,13,1,11,3,10,1,114,151,0, - 0,0,218,9,118,101,114,98,111,115,105,116,121,114,29,0, - 0,0,99,1,0,0,0,1,0,0,0,3,0,0,0,4, - 0,0,0,71,0,0,0,115,75,0,0,0,116,0,0,106, - 1,0,106,2,0,124,1,0,107,5,0,114,71,0,124,0, - 0,106,3,0,100,6,0,131,1,0,115,43,0,100,3,0, - 124,0,0,23,125,0,0,116,4,0,124,0,0,106,5,0, - 124,2,0,140,0,0,100,4,0,116,0,0,106,6,0,131, - 1,1,1,100,5,0,83,41,7,122,61,80,114,105,110,116, - 32,116,104,101,32,109,101,115,115,97,103,101,32,116,111,32, - 115,116,100,101,114,114,32,105,102,32,45,118,47,80,89,84, - 72,79,78,86,69,82,66,79,83,69,32,105,115,32,116,117, - 114,110,101,100,32,111,110,46,250,1,35,250,7,105,109,112, - 111,114,116,32,122,2,35,32,114,54,0,0,0,78,41,2, - 114,153,0,0,0,114,154,0,0,0,41,7,114,7,0,0, - 0,114,125,0,0,0,218,7,118,101,114,98,111,115,101,114, - 9,0,0,0,218,5,112,114,105,110,116,114,47,0,0,0, - 218,6,115,116,100,101,114,114,41,3,114,133,0,0,0,114, - 152,0,0,0,114,80,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,218,16,95,118,101,114,98,111, - 115,101,95,109,101,115,115,97,103,101,36,2,0,0,115,8, - 0,0,0,0,2,18,1,15,1,10,1,114,158,0,0,0, - 99,1,0,0,0,0,0,0,0,2,0,0,0,4,0,0, - 0,3,0,0,0,115,38,0,0,0,100,1,0,135,0,0, - 102,1,0,100,2,0,100,3,0,134,1,0,125,1,0,116, - 0,0,124,1,0,136,0,0,131,2,0,1,124,1,0,83, - 41,4,122,252,68,101,99,111,114,97,116,111,114,32,116,111, - 32,118,101,114,105,102,121,32,116,104,97,116,32,116,104,101, - 32,109,111,100,117,108,101,32,98,101,105,110,103,32,114,101, - 113,117,101,115,116,101,100,32,109,97,116,99,104,101,115,32, - 116,104,101,32,111,110,101,32,116,104,101,10,32,32,32,32, - 108,111,97,100,101,114,32,99,97,110,32,104,97,110,100,108, - 101,46,10,10,32,32,32,32,84,104,101,32,102,105,114,115, - 116,32,97,114,103,117,109,101,110,116,32,40,115,101,108,102, - 41,32,109,117,115,116,32,100,101,102,105,110,101,32,95,110, - 97,109,101,32,119,104,105,99,104,32,116,104,101,32,115,101, - 99,111,110,100,32,97,114,103,117,109,101,110,116,32,105,115, - 10,32,32,32,32,99,111,109,112,97,114,101,100,32,97,103, - 97,105,110,115,116,46,32,73,102,32,116,104,101,32,99,111, - 109,112,97,114,105,115,111,110,32,102,97,105,108,115,32,116, - 104,101,110,32,73,109,112,111,114,116,69,114,114,111,114,32, - 105,115,32,114,97,105,115,101,100,46,10,10,32,32,32,32, - 78,99,2,0,0,0,0,0,0,0,4,0,0,0,5,0, - 0,0,31,0,0,0,115,80,0,0,0,124,1,0,100,0, - 0,107,8,0,114,24,0,124,0,0,106,0,0,125,1,0, - 110,37,0,124,0,0,106,0,0,124,1,0,107,3,0,114, - 61,0,116,1,0,100,1,0,124,1,0,22,100,2,0,124, - 1,0,131,1,1,130,1,0,136,0,0,124,0,0,124,1, - 0,124,2,0,124,3,0,142,2,0,83,41,3,78,122,23, - 108,111,97,100,101,114,32,99,97,110,110,111,116,32,104,97, - 110,100,108,101,32,37,115,114,67,0,0,0,41,2,114,67, - 0,0,0,218,11,73,109,112,111,114,116,69,114,114,111,114, - 41,4,114,71,0,0,0,114,67,0,0,0,114,80,0,0, - 0,114,108,0,0,0,41,1,218,6,109,101,116,104,111,100, - 114,4,0,0,0,114,5,0,0,0,218,19,95,99,104,101, - 99,107,95,110,97,109,101,95,119,114,97,112,112,101,114,52, - 2,0,0,115,10,0,0,0,0,1,12,1,12,1,15,1, - 22,1,122,40,95,99,104,101,99,107,95,110,97,109,101,46, - 60,108,111,99,97,108,115,62,46,95,99,104,101,99,107,95, - 110,97,109,101,95,119,114,97,112,112,101,114,41,1,114,65, - 0,0,0,41,2,114,160,0,0,0,114,161,0,0,0,114, - 4,0,0,0,41,1,114,160,0,0,0,114,5,0,0,0, - 218,11,95,99,104,101,99,107,95,110,97,109,101,44,2,0, - 0,115,6,0,0,0,0,8,21,6,13,1,114,162,0,0, - 0,99,1,0,0,0,0,0,0,0,2,0,0,0,3,0, - 0,0,3,0,0,0,115,35,0,0,0,135,0,0,102,1, - 0,100,1,0,100,2,0,134,0,0,125,1,0,116,0,0, - 124,1,0,136,0,0,131,2,0,1,124,1,0,83,41,3, - 122,49,68,101,99,111,114,97,116,111,114,32,116,111,32,118, - 101,114,105,102,121,32,116,104,101,32,110,97,109,101,100,32, - 109,111,100,117,108,101,32,105,115,32,98,117,105,108,116,45, - 105,110,46,99,2,0,0,0,0,0,0,0,2,0,0,0, - 4,0,0,0,19,0,0,0,115,55,0,0,0,124,1,0, - 116,0,0,106,1,0,107,7,0,114,42,0,116,2,0,100, - 1,0,106,3,0,124,1,0,131,1,0,100,2,0,124,1, - 0,131,1,1,130,1,0,136,0,0,124,0,0,124,1,0, - 131,2,0,83,41,3,78,122,29,123,33,114,125,32,105,115, - 32,110,111,116,32,97,32,98,117,105,108,116,45,105,110,32, - 109,111,100,117,108,101,114,67,0,0,0,41,4,114,7,0, - 0,0,218,20,98,117,105,108,116,105,110,95,109,111,100,117, - 108,101,95,110,97,109,101,115,114,159,0,0,0,114,47,0, - 0,0,41,2,114,71,0,0,0,218,8,102,117,108,108,110, - 97,109,101,41,1,218,3,102,120,110,114,4,0,0,0,114, - 5,0,0,0,218,25,95,114,101,113,117,105,114,101,115,95, - 98,117,105,108,116,105,110,95,119,114,97,112,112,101,114,64, - 2,0,0,115,8,0,0,0,0,1,15,1,18,1,9,1, - 122,52,95,114,101,113,117,105,114,101,115,95,98,117,105,108, - 116,105,110,46,60,108,111,99,97,108,115,62,46,95,114,101, - 113,117,105,114,101,115,95,98,117,105,108,116,105,110,95,119, - 114,97,112,112,101,114,41,1,114,65,0,0,0,41,2,114, - 165,0,0,0,114,166,0,0,0,114,4,0,0,0,41,1, - 114,165,0,0,0,114,5,0,0,0,218,17,95,114,101,113, - 117,105,114,101,115,95,98,117,105,108,116,105,110,62,2,0, - 0,115,6,0,0,0,0,2,18,5,13,1,114,167,0,0, - 0,99,1,0,0,0,0,0,0,0,2,0,0,0,3,0, - 0,0,3,0,0,0,115,35,0,0,0,135,0,0,102,1, - 0,100,1,0,100,2,0,134,0,0,125,1,0,116,0,0, - 124,1,0,136,0,0,131,2,0,1,124,1,0,83,41,3, - 122,47,68,101,99,111,114,97,116,111,114,32,116,111,32,118, - 101,114,105,102,121,32,116,104,101,32,110,97,109,101,100,32, - 109,111,100,117,108,101,32,105,115,32,102,114,111,122,101,110, - 46,99,2,0,0,0,0,0,0,0,2,0,0,0,4,0, - 0,0,19,0,0,0,115,55,0,0,0,116,0,0,106,1, - 0,124,1,0,131,1,0,115,42,0,116,2,0,100,1,0, - 106,3,0,124,1,0,131,1,0,100,2,0,124,1,0,131, - 1,1,130,1,0,136,0,0,124,0,0,124,1,0,131,2, - 0,83,41,3,78,122,27,123,33,114,125,32,105,115,32,110, - 111,116,32,97,32,102,114,111,122,101,110,32,109,111,100,117, - 108,101,114,67,0,0,0,41,4,114,106,0,0,0,218,9, - 105,115,95,102,114,111,122,101,110,114,159,0,0,0,114,47, - 0,0,0,41,2,114,71,0,0,0,114,164,0,0,0,41, - 1,114,165,0,0,0,114,4,0,0,0,114,5,0,0,0, - 218,24,95,114,101,113,117,105,114,101,115,95,102,114,111,122, - 101,110,95,119,114,97,112,112,101,114,75,2,0,0,115,8, - 0,0,0,0,1,15,1,18,1,9,1,122,50,95,114,101, - 113,117,105,114,101,115,95,102,114,111,122,101,110,46,60,108, - 111,99,97,108,115,62,46,95,114,101,113,117,105,114,101,115, - 95,102,114,111,122,101,110,95,119,114,97,112,112,101,114,41, - 1,114,65,0,0,0,41,2,114,165,0,0,0,114,169,0, - 0,0,114,4,0,0,0,41,1,114,165,0,0,0,114,5, - 0,0,0,218,16,95,114,101,113,117,105,114,101,115,95,102, - 114,111,122,101,110,73,2,0,0,115,6,0,0,0,0,2, - 18,5,13,1,114,170,0,0,0,99,2,0,0,0,0,0, - 0,0,5,0,0,0,4,0,0,0,67,0,0,0,115,84, - 0,0,0,124,0,0,106,0,0,124,1,0,131,1,0,92, - 2,0,125,2,0,125,3,0,124,2,0,100,1,0,107,8, - 0,114,80,0,116,1,0,124,3,0,131,1,0,114,80,0, - 100,2,0,125,4,0,116,2,0,106,3,0,124,4,0,106, - 4,0,124,3,0,100,3,0,25,131,1,0,116,5,0,131, - 2,0,1,124,2,0,83,41,4,122,155,84,114,121,32,116, - 111,32,102,105,110,100,32,97,32,108,111,97,100,101,114,32, - 102,111,114,32,116,104,101,32,115,112,101,99,105,102,105,101, - 100,32,109,111,100,117,108,101,32,98,121,32,100,101,108,101, - 103,97,116,105,110,103,32,116,111,10,32,32,32,32,115,101, - 108,102,46,102,105,110,100,95,108,111,97,100,101,114,40,41, - 46,10,10,32,32,32,32,84,104,105,115,32,109,101,116,104, - 111,100,32,105,115,32,100,101,112,114,101,99,97,116,101,100, - 32,105,110,32,102,97,118,111,114,32,111,102,32,102,105,110, - 100,101,114,46,102,105,110,100,95,115,112,101,99,40,41,46, - 10,10,32,32,32,32,78,122,44,78,111,116,32,105,109,112, - 111,114,116,105,110,103,32,100,105,114,101,99,116,111,114,121, - 32,123,125,58,32,109,105,115,115,105,110,103,32,95,95,105, - 110,105,116,95,95,114,84,0,0,0,41,6,218,11,102,105, - 110,100,95,108,111,97,100,101,114,114,31,0,0,0,114,118, - 0,0,0,114,119,0,0,0,114,47,0,0,0,218,13,73, - 109,112,111,114,116,87,97,114,110,105,110,103,41,5,114,71, - 0,0,0,114,164,0,0,0,218,6,108,111,97,100,101,114, - 218,8,112,111,114,116,105,111,110,115,218,3,109,115,103,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,17, - 95,102,105,110,100,95,109,111,100,117,108,101,95,115,104,105, - 109,84,2,0,0,115,10,0,0,0,0,10,21,1,24,1, - 6,1,29,1,114,176,0,0,0,99,2,0,0,0,0,0, - 0,0,4,0,0,0,3,0,0,0,67,0,0,0,115,81, - 0,0,0,116,0,0,124,1,0,124,0,0,131,2,0,125, - 2,0,124,1,0,116,1,0,106,2,0,107,6,0,114,67, - 0,116,1,0,106,2,0,124,1,0,25,125,3,0,116,3, - 0,124,2,0,124,3,0,131,2,0,1,116,1,0,106,2, - 0,124,1,0,25,83,116,4,0,124,2,0,131,1,0,83, - 100,1,0,83,41,2,122,128,76,111,97,100,32,116,104,101, - 32,115,112,101,99,105,102,105,101,100,32,109,111,100,117,108, - 101,32,105,110,116,111,32,115,121,115,46,109,111,100,117,108, - 101,115,32,97,110,100,32,114,101,116,117,114,110,32,105,116, - 46,10,10,32,32,32,32,84,104,105,115,32,109,101,116,104, - 111,100,32,105,115,32,100,101,112,114,101,99,97,116,101,100, - 46,32,32,85,115,101,32,108,111,97,100,101,114,46,101,120, - 101,99,95,109,111,100,117,108,101,32,105,110,115,116,101,97, - 100,46,10,10,32,32,32,32,78,41,5,218,16,115,112,101, - 99,95,102,114,111,109,95,108,111,97,100,101,114,114,7,0, - 0,0,114,73,0,0,0,218,5,95,101,120,101,99,218,5, - 95,108,111,97,100,41,4,114,71,0,0,0,114,164,0,0, - 0,218,4,115,112,101,99,218,6,109,111,100,117,108,101,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,17, - 95,108,111,97,100,95,109,111,100,117,108,101,95,115,104,105, - 109,102,2,0,0,115,12,0,0,0,0,6,15,1,15,1, - 13,1,13,1,11,2,114,182,0,0,0,99,4,0,0,0, - 0,0,0,0,11,0,0,0,19,0,0,0,67,0,0,0, - 115,228,1,0,0,105,0,0,125,4,0,124,2,0,100,1, - 0,107,9,0,114,31,0,124,2,0,124,4,0,100,2,0, - 60,110,6,0,100,3,0,125,2,0,124,3,0,100,1,0, - 107,9,0,114,59,0,124,3,0,124,4,0,100,4,0,60, - 124,0,0,100,1,0,100,5,0,133,2,0,25,125,5,0, - 124,0,0,100,5,0,100,6,0,133,2,0,25,125,6,0, - 124,0,0,100,6,0,100,7,0,133,2,0,25,125,7,0, - 124,5,0,116,0,0,107,3,0,114,165,0,100,8,0,106, - 1,0,124,2,0,124,5,0,131,2,0,125,8,0,116,2, - 0,124,8,0,131,1,0,1,116,3,0,124,8,0,124,4, - 0,141,1,0,130,1,0,110,113,0,116,4,0,124,6,0, - 131,1,0,100,5,0,107,3,0,114,223,0,100,9,0,106, - 1,0,124,2,0,131,1,0,125,8,0,116,2,0,124,8, - 0,131,1,0,1,116,5,0,124,8,0,131,1,0,130,1, - 0,110,55,0,116,4,0,124,7,0,131,1,0,100,5,0, - 107,3,0,114,22,1,100,10,0,106,1,0,124,2,0,131, - 1,0,125,8,0,116,2,0,124,8,0,131,1,0,1,116, - 5,0,124,8,0,131,1,0,130,1,0,124,1,0,100,1, - 0,107,9,0,114,214,1,121,20,0,116,6,0,124,1,0, - 100,11,0,25,131,1,0,125,9,0,87,110,18,0,4,116, - 7,0,107,10,0,114,74,1,1,1,1,89,110,59,0,88, - 116,8,0,124,6,0,131,1,0,124,9,0,107,3,0,114, - 133,1,100,12,0,106,1,0,124,2,0,131,1,0,125,8, - 0,116,2,0,124,8,0,131,1,0,1,116,3,0,124,8, - 0,124,4,0,141,1,0,130,1,0,121,18,0,124,1,0, - 100,13,0,25,100,14,0,64,125,10,0,87,110,18,0,4, - 116,7,0,107,10,0,114,171,1,1,1,1,89,110,43,0, - 88,116,8,0,124,7,0,131,1,0,124,10,0,107,3,0, - 114,214,1,116,3,0,100,12,0,106,1,0,124,2,0,131, - 1,0,124,4,0,141,1,0,130,1,0,124,0,0,100,7, - 0,100,1,0,133,2,0,25,83,41,15,97,122,1,0,0, - 86,97,108,105,100,97,116,101,32,116,104,101,32,104,101,97, - 100,101,114,32,111,102,32,116,104,101,32,112,97,115,115,101, - 100,45,105,110,32,98,121,116,101,99,111,100,101,32,97,103, - 97,105,110,115,116,32,115,111,117,114,99,101,95,115,116,97, - 116,115,32,40,105,102,10,32,32,32,32,103,105,118,101,110, - 41,32,97,110,100,32,114,101,116,117,114,110,105,110,103,32, - 116,104,101,32,98,121,116,101,99,111,100,101,32,116,104,97, - 116,32,99,97,110,32,98,101,32,99,111,109,112,105,108,101, - 100,32,98,121,32,99,111,109,112,105,108,101,40,41,46,10, - 10,32,32,32,32,65,108,108,32,111,116,104,101,114,32,97, - 114,103,117,109,101,110,116,115,32,97,114,101,32,117,115,101, - 100,32,116,111,32,101,110,104,97,110,99,101,32,101,114,114, - 111,114,32,114,101,112,111,114,116,105,110,103,46,10,10,32, - 32,32,32,73,109,112,111,114,116,69,114,114,111,114,32,105, - 115,32,114,97,105,115,101,100,32,119,104,101,110,32,116,104, - 101,32,109,97,103,105,99,32,110,117,109,98,101,114,32,105, - 115,32,105,110,99,111,114,114,101,99,116,32,111,114,32,116, - 104,101,32,98,121,116,101,99,111,100,101,32,105,115,10,32, - 32,32,32,102,111,117,110,100,32,116,111,32,98,101,32,115, - 116,97,108,101,46,32,69,79,70,69,114,114,111,114,32,105, - 115,32,114,97,105,115,101,100,32,119,104,101,110,32,116,104, - 101,32,100,97,116,97,32,105,115,32,102,111,117,110,100,32, - 116,111,32,98,101,10,32,32,32,32,116,114,117,110,99,97, - 116,101,100,46,10,10,32,32,32,32,78,114,67,0,0,0, - 122,10,60,98,121,116,101,99,111,100,101,62,114,35,0,0, - 0,114,12,0,0,0,233,8,0,0,0,233,12,0,0,0, - 122,30,98,97,100,32,109,97,103,105,99,32,110,117,109,98, - 101,114,32,105,110,32,123,33,114,125,58,32,123,33,114,125, - 122,43,114,101,97,99,104,101,100,32,69,79,70,32,119,104, - 105,108,101,32,114,101,97,100,105,110,103,32,116,105,109,101, - 115,116,97,109,112,32,105,110,32,123,33,114,125,122,48,114, - 101,97,99,104,101,100,32,69,79,70,32,119,104,105,108,101, - 32,114,101,97,100,105,110,103,32,115,105,122,101,32,111,102, - 32,115,111,117,114,99,101,32,105,110,32,123,33,114,125,218, - 5,109,116,105,109,101,122,26,98,121,116,101,99,111,100,101, - 32,105,115,32,115,116,97,108,101,32,102,111,114,32,123,33, - 114,125,218,4,115,105,122,101,108,3,0,0,0,255,127,255, - 127,3,0,41,9,218,12,77,65,71,73,67,95,78,85,77, - 66,69,82,114,47,0,0,0,114,158,0,0,0,114,159,0, - 0,0,114,31,0,0,0,218,8,69,79,70,69,114,114,111, - 114,114,14,0,0,0,114,79,0,0,0,114,19,0,0,0, - 41,11,114,53,0,0,0,218,12,115,111,117,114,99,101,95, - 115,116,97,116,115,114,67,0,0,0,114,35,0,0,0,90, - 11,101,120,99,95,100,101,116,97,105,108,115,90,5,109,97, - 103,105,99,90,13,114,97,119,95,116,105,109,101,115,116,97, - 109,112,90,8,114,97,119,95,115,105,122,101,114,133,0,0, - 0,218,12,115,111,117,114,99,101,95,109,116,105,109,101,218, - 11,115,111,117,114,99,101,95,115,105,122,101,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,218,25,95,118,97, - 108,105,100,97,116,101,95,98,121,116,101,99,111,100,101,95, - 104,101,97,100,101,114,117,2,0,0,115,76,0,0,0,0, - 11,6,1,12,1,13,3,6,1,12,1,10,1,16,1,16, - 1,16,1,12,1,18,1,10,1,18,1,18,1,15,1,10, - 1,15,1,18,1,15,1,10,1,12,1,12,1,3,1,20, - 1,13,1,5,2,18,1,15,1,10,1,15,1,3,1,18, - 1,13,1,5,2,18,1,15,1,9,1,114,192,0,0,0, - 99,4,0,0,0,0,0,0,0,5,0,0,0,6,0,0, - 0,67,0,0,0,115,112,0,0,0,116,0,0,106,1,0, - 124,0,0,131,1,0,125,4,0,116,2,0,124,4,0,116, - 3,0,131,2,0,114,75,0,116,4,0,100,1,0,124,2, - 0,131,2,0,1,124,3,0,100,2,0,107,9,0,114,71, - 0,116,5,0,106,6,0,124,4,0,124,3,0,131,2,0, - 1,124,4,0,83,116,7,0,100,3,0,106,8,0,124,2, - 0,131,1,0,100,4,0,124,1,0,100,5,0,124,2,0, - 131,1,2,130,1,0,100,2,0,83,41,6,122,60,67,111, - 109,112,105,108,101,32,98,121,116,101,99,111,100,101,32,97, - 115,32,114,101,116,117,114,110,101,100,32,98,121,32,95,118, - 97,108,105,100,97,116,101,95,98,121,116,101,99,111,100,101, - 95,104,101,97,100,101,114,40,41,46,122,21,99,111,100,101, - 32,111,98,106,101,99,116,32,102,114,111,109,32,123,33,114, - 125,78,122,23,78,111,110,45,99,111,100,101,32,111,98,106, - 101,99,116,32,105,110,32,123,33,114,125,114,67,0,0,0, - 114,35,0,0,0,41,9,218,7,109,97,114,115,104,97,108, - 90,5,108,111,97,100,115,218,10,105,115,105,110,115,116,97, - 110,99,101,218,10,95,99,111,100,101,95,116,121,112,101,114, - 158,0,0,0,114,106,0,0,0,90,16,95,102,105,120,95, - 99,111,95,102,105,108,101,110,97,109,101,114,159,0,0,0, - 114,47,0,0,0,41,5,114,53,0,0,0,114,67,0,0, - 0,114,147,0,0,0,114,148,0,0,0,218,4,99,111,100, - 101,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 218,17,95,99,111,109,112,105,108,101,95,98,121,116,101,99, - 111,100,101,172,2,0,0,115,16,0,0,0,0,2,15,1, - 15,1,13,1,12,1,16,1,4,2,18,1,114,197,0,0, - 0,114,84,0,0,0,99,3,0,0,0,0,0,0,0,4, - 0,0,0,3,0,0,0,67,0,0,0,115,76,0,0,0, - 116,0,0,116,1,0,131,1,0,125,3,0,124,3,0,106, - 2,0,116,3,0,124,1,0,131,1,0,131,1,0,1,124, - 3,0,106,2,0,116,3,0,124,2,0,131,1,0,131,1, - 0,1,124,3,0,106,2,0,116,4,0,106,5,0,124,0, - 0,131,1,0,131,1,0,1,124,3,0,83,41,1,122,80, - 67,111,109,112,105,108,101,32,97,32,99,111,100,101,32,111, - 98,106,101,99,116,32,105,110,116,111,32,98,121,116,101,99, - 111,100,101,32,102,111,114,32,119,114,105,116,105,110,103,32, - 111,117,116,32,116,111,32,97,32,98,121,116,101,45,99,111, - 109,112,105,108,101,100,10,32,32,32,32,102,105,108,101,46, - 41,6,218,9,98,121,116,101,97,114,114,97,121,114,187,0, - 0,0,218,6,101,120,116,101,110,100,114,17,0,0,0,114, - 193,0,0,0,90,5,100,117,109,112,115,41,4,114,196,0, - 0,0,114,185,0,0,0,114,191,0,0,0,114,53,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 218,17,95,99,111,100,101,95,116,111,95,98,121,116,101,99, - 111,100,101,184,2,0,0,115,10,0,0,0,0,3,12,1, - 19,1,19,1,22,1,114,200,0,0,0,99,1,0,0,0, - 0,0,0,0,5,0,0,0,4,0,0,0,67,0,0,0, - 115,89,0,0,0,100,1,0,100,2,0,108,0,0,125,1, - 0,116,1,0,106,2,0,124,0,0,131,1,0,106,3,0, - 125,2,0,124,1,0,106,4,0,124,2,0,131,1,0,125, - 3,0,116,1,0,106,5,0,100,2,0,100,3,0,131,2, - 0,125,4,0,124,4,0,106,6,0,124,0,0,106,6,0, - 124,3,0,100,1,0,25,131,1,0,131,1,0,83,41,4, - 122,121,68,101,99,111,100,101,32,98,121,116,101,115,32,114, - 101,112,114,101,115,101,110,116,105,110,103,32,115,111,117,114, - 99,101,32,99,111,100,101,32,97,110,100,32,114,101,116,117, - 114,110,32,116,104,101,32,115,116,114,105,110,103,46,10,10, - 32,32,32,32,85,110,105,118,101,114,115,97,108,32,110,101, - 119,108,105,110,101,32,115,117,112,112,111,114,116,32,105,115, - 32,117,115,101,100,32,105,110,32,116,104,101,32,100,101,99, - 111,100,105,110,103,46,10,32,32,32,32,114,84,0,0,0, - 78,84,41,7,218,8,116,111,107,101,110,105,122,101,114,49, - 0,0,0,90,7,66,121,116,101,115,73,79,90,8,114,101, - 97,100,108,105,110,101,90,15,100,101,116,101,99,116,95,101, - 110,99,111,100,105,110,103,90,25,73,110,99,114,101,109,101, - 110,116,97,108,78,101,119,108,105,110,101,68,101,99,111,100, - 101,114,218,6,100,101,99,111,100,101,41,5,218,12,115,111, - 117,114,99,101,95,98,121,116,101,115,114,201,0,0,0,90, - 21,115,111,117,114,99,101,95,98,121,116,101,115,95,114,101, - 97,100,108,105,110,101,218,8,101,110,99,111,100,105,110,103, - 90,15,110,101,119,108,105,110,101,95,100,101,99,111,100,101, - 114,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 218,13,100,101,99,111,100,101,95,115,111,117,114,99,101,194, - 2,0,0,115,10,0,0,0,0,5,12,1,18,1,15,1, - 18,1,114,205,0,0,0,99,1,0,0,0,0,0,0,0, - 5,0,0,0,35,0,0,0,67,0,0,0,115,6,1,0, - 0,116,0,0,124,0,0,100,1,0,100,0,0,131,3,0, - 125,1,0,116,1,0,124,1,0,100,2,0,131,2,0,114, - 71,0,121,17,0,124,1,0,106,2,0,124,0,0,131,1, - 0,83,87,110,18,0,4,116,3,0,107,10,0,114,70,0, - 1,1,1,89,110,1,0,88,121,13,0,124,0,0,106,4, - 0,125,2,0,87,110,18,0,4,116,5,0,107,10,0,114, - 104,0,1,1,1,89,110,23,0,88,124,2,0,100,0,0, - 107,9,0,114,127,0,116,6,0,124,2,0,131,1,0,83, - 121,13,0,124,0,0,106,7,0,125,3,0,87,110,24,0, - 4,116,5,0,107,10,0,114,166,0,1,1,1,100,3,0, - 125,3,0,89,110,1,0,88,121,13,0,124,0,0,106,8, - 0,125,4,0,87,110,59,0,4,116,5,0,107,10,0,114, - 241,0,1,1,1,124,1,0,100,0,0,107,8,0,114,221, - 0,100,4,0,106,9,0,124,3,0,131,1,0,83,100,5, - 0,106,9,0,124,3,0,124,1,0,131,2,0,83,89,110, - 17,0,88,100,6,0,106,9,0,124,3,0,124,4,0,131, - 2,0,83,100,0,0,83,41,7,78,218,10,95,95,108,111, - 97,100,101,114,95,95,218,11,109,111,100,117,108,101,95,114, - 101,112,114,250,1,63,122,13,60,109,111,100,117,108,101,32, - 123,33,114,125,62,122,20,60,109,111,100,117,108,101,32,123, - 33,114,125,32,40,123,33,114,125,41,62,122,23,60,109,111, - 100,117,108,101,32,123,33,114,125,32,102,114,111,109,32,123, - 33,114,125,62,41,10,114,62,0,0,0,114,60,0,0,0, - 114,207,0,0,0,218,9,69,120,99,101,112,116,105,111,110, - 218,8,95,95,115,112,101,99,95,95,218,14,65,116,116,114, - 105,98,117,116,101,69,114,114,111,114,218,22,95,109,111,100, - 117,108,101,95,114,101,112,114,95,102,114,111,109,95,115,112, - 101,99,114,57,0,0,0,218,8,95,95,102,105,108,101,95, - 95,114,47,0,0,0,41,5,114,181,0,0,0,114,173,0, - 0,0,114,180,0,0,0,114,67,0,0,0,218,8,102,105, - 108,101,110,97,109,101,114,4,0,0,0,114,4,0,0,0, - 114,5,0,0,0,218,12,95,109,111,100,117,108,101,95,114, - 101,112,114,208,2,0,0,115,46,0,0,0,0,2,18,1, - 15,4,3,1,17,1,13,1,5,1,3,1,13,1,13,1, - 5,2,12,1,10,4,3,1,13,1,13,1,11,1,3,1, - 13,1,13,1,12,1,13,2,21,2,114,215,0,0,0,99, - 0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0, - 64,0,0,0,115,52,0,0,0,101,0,0,90,1,0,100, - 0,0,90,2,0,100,1,0,100,2,0,132,0,0,90,3, - 0,100,3,0,100,4,0,132,0,0,90,4,0,100,5,0, - 100,6,0,132,0,0,90,5,0,100,7,0,83,41,8,218, - 17,95,105,110,115,116,97,108,108,101,100,95,115,97,102,101, - 108,121,99,2,0,0,0,0,0,0,0,2,0,0,0,2, - 0,0,0,67,0,0,0,115,25,0,0,0,124,1,0,124, - 0,0,95,0,0,124,1,0,106,1,0,124,0,0,95,2, - 0,100,0,0,83,41,1,78,41,3,218,7,95,109,111,100, - 117,108,101,114,210,0,0,0,218,5,95,115,112,101,99,41, - 2,114,71,0,0,0,114,181,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,114,72,0,0,0,246, - 2,0,0,115,4,0,0,0,0,1,9,1,122,26,95,105, - 110,115,116,97,108,108,101,100,95,115,97,102,101,108,121,46, - 95,95,105,110,105,116,95,95,99,1,0,0,0,0,0,0, - 0,1,0,0,0,3,0,0,0,67,0,0,0,115,38,0, - 0,0,100,1,0,124,0,0,106,0,0,95,1,0,124,0, - 0,106,2,0,116,3,0,106,4,0,124,0,0,106,0,0, - 106,5,0,60,100,0,0,83,41,2,78,84,41,6,114,218, - 0,0,0,218,13,95,105,110,105,116,105,97,108,105,122,105, - 110,103,114,217,0,0,0,114,7,0,0,0,114,73,0,0, - 0,114,67,0,0,0,41,1,114,71,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,114,75,0,0, - 0,250,2,0,0,115,4,0,0,0,0,4,12,1,122,27, - 95,105,110,115,116,97,108,108,101,100,95,115,97,102,101,108, - 121,46,95,95,101,110,116,101,114,95,95,99,1,0,0,0, - 0,0,0,0,3,0,0,0,17,0,0,0,71,0,0,0, - 115,121,0,0,0,122,101,0,124,0,0,106,0,0,125,2, - 0,116,1,0,100,1,0,100,2,0,132,0,0,124,1,0, - 68,131,1,0,131,1,0,114,78,0,121,17,0,116,2,0, - 106,3,0,124,2,0,106,4,0,61,87,113,100,0,4,116, - 5,0,107,10,0,114,74,0,1,1,1,89,113,100,0,88, - 110,22,0,116,6,0,100,3,0,124,2,0,106,4,0,124, - 2,0,106,7,0,131,3,0,1,87,100,0,0,100,4,0, - 124,0,0,106,0,0,95,8,0,88,100,0,0,83,41,5, - 78,99,1,0,0,0,0,0,0,0,2,0,0,0,3,0, - 0,0,115,0,0,0,115,27,0,0,0,124,0,0,93,17, - 0,125,1,0,124,1,0,100,0,0,107,9,0,86,1,113, - 3,0,100,0,0,83,41,1,78,114,4,0,0,0,41,2, - 114,22,0,0,0,114,76,0,0,0,114,4,0,0,0,114, - 4,0,0,0,114,5,0,0,0,114,77,0,0,0,4,3, - 0,0,115,2,0,0,0,6,0,122,45,95,105,110,115,116, - 97,108,108,101,100,95,115,97,102,101,108,121,46,95,95,101, - 120,105,116,95,95,46,60,108,111,99,97,108,115,62,46,60, - 103,101,110,101,120,112,114,62,122,18,105,109,112,111,114,116, - 32,123,33,114,125,32,35,32,123,33,114,125,70,41,9,114, - 218,0,0,0,114,78,0,0,0,114,7,0,0,0,114,73, - 0,0,0,114,67,0,0,0,114,79,0,0,0,114,158,0, - 0,0,114,173,0,0,0,114,219,0,0,0,41,3,114,71, - 0,0,0,114,80,0,0,0,114,180,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,114,81,0,0, - 0,1,3,0,0,115,18,0,0,0,0,1,3,1,9,1, - 25,1,3,1,17,1,13,1,8,2,26,2,122,26,95,105, - 110,115,116,97,108,108,101,100,95,115,97,102,101,108,121,46, - 95,95,101,120,105,116,95,95,78,41,6,114,57,0,0,0, - 114,56,0,0,0,114,58,0,0,0,114,72,0,0,0,114, - 75,0,0,0,114,81,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,4,0,0,0,114,5,0,0,0,114,216,0, - 0,0,244,2,0,0,115,6,0,0,0,12,2,12,4,12, - 7,114,216,0,0,0,99,0,0,0,0,0,0,0,0,0, - 0,0,0,8,0,0,0,64,0,0,0,115,172,0,0,0, - 101,0,0,90,1,0,100,0,0,90,2,0,100,1,0,90, - 3,0,100,2,0,100,3,0,100,4,0,100,3,0,100,5, - 0,100,3,0,100,6,0,100,7,0,132,0,3,90,4,0, - 100,8,0,100,9,0,132,0,0,90,5,0,100,10,0,100, - 11,0,132,0,0,90,6,0,101,7,0,100,12,0,100,13, - 0,132,0,0,131,1,0,90,8,0,101,8,0,106,9,0, - 100,14,0,100,13,0,132,0,0,131,1,0,90,8,0,101, - 7,0,100,15,0,100,16,0,132,0,0,131,1,0,90,10, - 0,101,7,0,100,17,0,100,18,0,132,0,0,131,1,0, - 90,11,0,101,11,0,106,9,0,100,19,0,100,18,0,132, - 0,0,131,1,0,90,11,0,100,3,0,83,41,20,218,10, - 77,111,100,117,108,101,83,112,101,99,97,208,5,0,0,84, - 104,101,32,115,112,101,99,105,102,105,99,97,116,105,111,110, - 32,102,111,114,32,97,32,109,111,100,117,108,101,44,32,117, - 115,101,100,32,102,111,114,32,108,111,97,100,105,110,103,46, - 10,10,32,32,32,32,65,32,109,111,100,117,108,101,39,115, - 32,115,112,101,99,32,105,115,32,116,104,101,32,115,111,117, - 114,99,101,32,102,111,114,32,105,110,102,111,114,109,97,116, - 105,111,110,32,97,98,111,117,116,32,116,104,101,32,109,111, - 100,117,108,101,46,32,32,70,111,114,10,32,32,32,32,100, - 97,116,97,32,97,115,115,111,99,105,97,116,101,100,32,119, - 105,116,104,32,116,104,101,32,109,111,100,117,108,101,44,32, - 105,110,99,108,117,100,105,110,103,32,115,111,117,114,99,101, - 44,32,117,115,101,32,116,104,101,32,115,112,101,99,39,115, - 10,32,32,32,32,108,111,97,100,101,114,46,10,10,32,32, - 32,32,96,110,97,109,101,96,32,105,115,32,116,104,101,32, - 97,98,115,111,108,117,116,101,32,110,97,109,101,32,111,102, - 32,116,104,101,32,109,111,100,117,108,101,46,32,32,96,108, - 111,97,100,101,114,96,32,105,115,32,116,104,101,32,108,111, - 97,100,101,114,10,32,32,32,32,116,111,32,117,115,101,32, - 119,104,101,110,32,108,111,97,100,105,110,103,32,116,104,101, - 32,109,111,100,117,108,101,46,32,32,96,112,97,114,101,110, - 116,96,32,105,115,32,116,104,101,32,110,97,109,101,32,111, - 102,32,116,104,101,10,32,32,32,32,112,97,99,107,97,103, - 101,32,116,104,101,32,109,111,100,117,108,101,32,105,115,32, - 105,110,46,32,32,84,104,101,32,112,97,114,101,110,116,32, - 105,115,32,100,101,114,105,118,101,100,32,102,114,111,109,32, - 116,104,101,32,110,97,109,101,46,10,10,32,32,32,32,96, - 105,115,95,112,97,99,107,97,103,101,96,32,100,101,116,101, - 114,109,105,110,101,115,32,105,102,32,116,104,101,32,109,111, - 100,117,108,101,32,105,115,32,99,111,110,115,105,100,101,114, - 101,100,32,97,32,112,97,99,107,97,103,101,32,111,114,10, - 32,32,32,32,110,111,116,46,32,32,79,110,32,109,111,100, - 117,108,101,115,32,116,104,105,115,32,105,115,32,114,101,102, - 108,101,99,116,101,100,32,98,121,32,116,104,101,32,96,95, - 95,112,97,116,104,95,95,96,32,97,116,116,114,105,98,117, - 116,101,46,10,10,32,32,32,32,96,111,114,105,103,105,110, - 96,32,105,115,32,116,104,101,32,115,112,101,99,105,102,105, - 99,32,108,111,99,97,116,105,111,110,32,117,115,101,100,32, - 98,121,32,116,104,101,32,108,111,97,100,101,114,32,102,114, - 111,109,32,119,104,105,99,104,32,116,111,10,32,32,32,32, - 108,111,97,100,32,116,104,101,32,109,111,100,117,108,101,44, - 32,105,102,32,116,104,97,116,32,105,110,102,111,114,109,97, - 116,105,111,110,32,105,115,32,97,118,97,105,108,97,98,108, - 101,46,32,32,87,104,101,110,32,102,105,108,101,110,97,109, - 101,32,105,115,10,32,32,32,32,115,101,116,44,32,111,114, - 105,103,105,110,32,119,105,108,108,32,109,97,116,99,104,46, - 10,10,32,32,32,32,96,104,97,115,95,108,111,99,97,116, - 105,111,110,96,32,105,110,100,105,99,97,116,101,115,32,116, - 104,97,116,32,97,32,115,112,101,99,39,115,32,34,111,114, - 105,103,105,110,34,32,114,101,102,108,101,99,116,115,32,97, - 32,108,111,99,97,116,105,111,110,46,10,32,32,32,32,87, - 104,101,110,32,116,104,105,115,32,105,115,32,84,114,117,101, - 44,32,96,95,95,102,105,108,101,95,95,96,32,97,116,116, - 114,105,98,117,116,101,32,111,102,32,116,104,101,32,109,111, - 100,117,108,101,32,105,115,32,115,101,116,46,10,10,32,32, - 32,32,96,99,97,99,104,101,100,96,32,105,115,32,116,104, - 101,32,108,111,99,97,116,105,111,110,32,111,102,32,116,104, - 101,32,99,97,99,104,101,100,32,98,121,116,101,99,111,100, - 101,32,102,105,108,101,44,32,105,102,32,97,110,121,46,32, - 32,73,116,10,32,32,32,32,99,111,114,114,101,115,112,111, - 110,100,115,32,116,111,32,116,104,101,32,96,95,95,99,97, - 99,104,101,100,95,95,96,32,97,116,116,114,105,98,117,116, - 101,46,10,10,32,32,32,32,96,115,117,98,109,111,100,117, - 108,101,95,115,101,97,114,99,104,95,108,111,99,97,116,105, - 111,110,115,96,32,105,115,32,116,104,101,32,115,101,113,117, - 101,110,99,101,32,111,102,32,112,97,116,104,32,101,110,116, - 114,105,101,115,32,116,111,10,32,32,32,32,115,101,97,114, - 99,104,32,119,104,101,110,32,105,109,112,111,114,116,105,110, - 103,32,115,117,98,109,111,100,117,108,101,115,46,32,32,73, - 102,32,115,101,116,44,32,105,115,95,112,97,99,107,97,103, - 101,32,115,104,111,117,108,100,32,98,101,10,32,32,32,32, - 84,114,117,101,45,45,97,110,100,32,70,97,108,115,101,32, - 111,116,104,101,114,119,105,115,101,46,10,10,32,32,32,32, - 80,97,99,107,97,103,101,115,32,97,114,101,32,115,105,109, - 112,108,121,32,109,111,100,117,108,101,115,32,116,104,97,116, - 32,40,109,97,121,41,32,104,97,118,101,32,115,117,98,109, - 111,100,117,108,101,115,46,32,32,73,102,32,97,32,115,112, - 101,99,10,32,32,32,32,104,97,115,32,97,32,110,111,110, - 45,78,111,110,101,32,118,97,108,117,101,32,105,110,32,96, - 115,117,98,109,111,100,117,108,101,95,115,101,97,114,99,104, - 95,108,111,99,97,116,105,111,110,115,96,44,32,116,104,101, - 32,105,109,112,111,114,116,10,32,32,32,32,115,121,115,116, - 101,109,32,119,105,108,108,32,99,111,110,115,105,100,101,114, - 32,109,111,100,117,108,101,115,32,108,111,97,100,101,100,32, - 102,114,111,109,32,116,104,101,32,115,112,101,99,32,97,115, - 32,112,97,99,107,97,103,101,115,46,10,10,32,32,32,32, - 79,110,108,121,32,102,105,110,100,101,114,115,32,40,115,101, - 101,32,105,109,112,111,114,116,108,105,98,46,97,98,99,46, - 77,101,116,97,80,97,116,104,70,105,110,100,101,114,32,97, - 110,100,10,32,32,32,32,105,109,112,111,114,116,108,105,98, - 46,97,98,99,46,80,97,116,104,69,110,116,114,121,70,105, - 110,100,101,114,41,32,115,104,111,117,108,100,32,109,111,100, - 105,102,121,32,77,111,100,117,108,101,83,112,101,99,32,105, - 110,115,116,97,110,99,101,115,46,10,10,32,32,32,32,218, - 6,111,114,105,103,105,110,78,218,12,108,111,97,100,101,114, - 95,115,116,97,116,101,218,10,105,115,95,112,97,99,107,97, - 103,101,99,3,0,0,0,3,0,0,0,6,0,0,0,2, - 0,0,0,67,0,0,0,115,79,0,0,0,124,1,0,124, - 0,0,95,0,0,124,2,0,124,0,0,95,1,0,124,3, - 0,124,0,0,95,2,0,124,4,0,124,0,0,95,3,0, - 124,5,0,114,48,0,103,0,0,110,3,0,100,0,0,124, - 0,0,95,4,0,100,1,0,124,0,0,95,5,0,100,0, - 0,124,0,0,95,6,0,100,0,0,83,41,2,78,70,41, - 7,114,67,0,0,0,114,173,0,0,0,114,221,0,0,0, - 114,222,0,0,0,218,26,115,117,98,109,111,100,117,108,101, - 95,115,101,97,114,99,104,95,108,111,99,97,116,105,111,110, - 115,218,13,95,115,101,116,95,102,105,108,101,97,116,116,114, - 218,7,95,99,97,99,104,101,100,41,6,114,71,0,0,0, - 114,67,0,0,0,114,173,0,0,0,114,221,0,0,0,114, - 222,0,0,0,114,223,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,114,72,0,0,0,52,3,0, - 0,115,14,0,0,0,0,2,9,1,9,1,9,1,9,1, - 21,3,9,1,122,19,77,111,100,117,108,101,83,112,101,99, - 46,95,95,105,110,105,116,95,95,99,1,0,0,0,0,0, - 0,0,2,0,0,0,4,0,0,0,67,0,0,0,115,147, - 0,0,0,100,1,0,106,0,0,124,0,0,106,1,0,131, - 1,0,100,2,0,106,0,0,124,0,0,106,2,0,131,1, - 0,103,2,0,125,1,0,124,0,0,106,3,0,100,0,0, - 107,9,0,114,76,0,124,1,0,106,4,0,100,3,0,106, - 0,0,124,0,0,106,3,0,131,1,0,131,1,0,1,124, - 0,0,106,5,0,100,0,0,107,9,0,114,116,0,124,1, - 0,106,4,0,100,4,0,106,0,0,124,0,0,106,5,0, - 131,1,0,131,1,0,1,100,5,0,106,0,0,124,0,0, - 106,6,0,106,7,0,100,6,0,106,8,0,124,1,0,131, - 1,0,131,2,0,83,41,7,78,122,9,110,97,109,101,61, - 123,33,114,125,122,11,108,111,97,100,101,114,61,123,33,114, - 125,122,11,111,114,105,103,105,110,61,123,33,114,125,122,29, - 115,117,98,109,111,100,117,108,101,95,115,101,97,114,99,104, - 95,108,111,99,97,116,105,111,110,115,61,123,125,122,6,123, - 125,40,123,125,41,122,2,44,32,41,9,114,47,0,0,0, - 114,67,0,0,0,114,173,0,0,0,114,221,0,0,0,218, - 6,97,112,112,101,110,100,114,224,0,0,0,218,9,95,95, - 99,108,97,115,115,95,95,114,57,0,0,0,114,26,0,0, - 0,41,2,114,71,0,0,0,114,80,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,114,101,0,0, - 0,64,3,0,0,115,16,0,0,0,0,1,15,1,21,1, - 15,1,25,1,15,1,12,1,13,1,122,19,77,111,100,117, - 108,101,83,112,101,99,46,95,95,114,101,112,114,95,95,99, - 2,0,0,0,0,0,0,0,3,0,0,0,11,0,0,0, - 67,0,0,0,115,145,0,0,0,124,0,0,106,0,0,125, - 2,0,121,107,0,124,0,0,106,1,0,124,1,0,106,1, - 0,107,2,0,111,114,0,124,0,0,106,2,0,124,1,0, - 106,2,0,107,2,0,111,114,0,124,0,0,106,3,0,124, - 1,0,106,3,0,107,2,0,111,114,0,124,2,0,124,1, - 0,106,0,0,107,2,0,111,114,0,124,0,0,106,4,0, - 124,1,0,106,4,0,107,2,0,111,114,0,124,0,0,106, - 5,0,124,1,0,106,5,0,107,2,0,83,87,110,22,0, - 4,116,6,0,107,10,0,114,140,0,1,1,1,100,1,0, - 83,89,110,1,0,88,100,0,0,83,41,2,78,70,41,7, - 114,224,0,0,0,114,67,0,0,0,114,173,0,0,0,114, - 221,0,0,0,218,6,99,97,99,104,101,100,218,12,104,97, - 115,95,108,111,99,97,116,105,111,110,114,211,0,0,0,41, - 3,114,71,0,0,0,218,5,111,116,104,101,114,218,4,115, - 109,115,108,114,4,0,0,0,114,4,0,0,0,114,5,0, - 0,0,218,6,95,95,101,113,95,95,74,3,0,0,115,20, - 0,0,0,0,1,9,1,3,1,18,1,18,1,18,1,15, - 1,18,1,20,1,13,1,122,17,77,111,100,117,108,101,83, - 112,101,99,46,95,95,101,113,95,95,99,1,0,0,0,0, - 0,0,0,2,0,0,0,11,0,0,0,67,0,0,0,115, - 149,0,0,0,124,0,0,106,0,0,100,0,0,107,8,0, - 114,142,0,124,0,0,106,1,0,100,0,0,107,9,0,114, - 142,0,124,0,0,106,2,0,114,142,0,124,0,0,106,1, - 0,125,1,0,124,1,0,106,3,0,116,4,0,116,5,0, - 131,1,0,131,1,0,114,112,0,121,19,0,116,6,0,124, - 1,0,131,1,0,124,0,0,95,0,0,87,113,142,0,4, - 116,7,0,107,10,0,114,108,0,1,1,1,89,113,142,0, - 88,110,30,0,124,1,0,106,3,0,116,4,0,116,8,0, - 131,1,0,131,1,0,114,142,0,124,1,0,124,0,0,95, - 0,0,124,0,0,106,0,0,83,41,1,78,41,9,114,226, - 0,0,0,114,221,0,0,0,114,225,0,0,0,218,8,101, - 110,100,115,119,105,116,104,218,5,116,117,112,108,101,114,142, - 0,0,0,114,138,0,0,0,114,124,0,0,0,114,132,0, - 0,0,41,2,114,71,0,0,0,114,214,0,0,0,114,4, - 0,0,0,114,4,0,0,0,114,5,0,0,0,114,229,0, - 0,0,86,3,0,0,115,22,0,0,0,0,2,15,1,24, - 1,9,1,21,1,3,1,19,1,13,1,8,1,21,1,9, - 1,122,17,77,111,100,117,108,101,83,112,101,99,46,99,97, - 99,104,101,100,99,2,0,0,0,0,0,0,0,2,0,0, - 0,2,0,0,0,67,0,0,0,115,13,0,0,0,124,1, - 0,124,0,0,95,0,0,100,0,0,83,41,1,78,41,1, - 114,226,0,0,0,41,2,114,71,0,0,0,114,229,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 114,229,0,0,0,100,3,0,0,115,2,0,0,0,0,2, - 99,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0, - 0,67,0,0,0,115,46,0,0,0,124,0,0,106,0,0, - 100,1,0,107,8,0,114,35,0,124,0,0,106,1,0,106, - 2,0,100,2,0,131,1,0,100,3,0,25,83,124,0,0, - 106,1,0,83,100,1,0,83,41,4,122,32,84,104,101,32, - 110,97,109,101,32,111,102,32,116,104,101,32,109,111,100,117, - 108,101,39,115,32,112,97,114,101,110,116,46,78,114,117,0, - 0,0,114,84,0,0,0,41,3,114,224,0,0,0,114,67, - 0,0,0,114,32,0,0,0,41,1,114,71,0,0,0,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,6, - 112,97,114,101,110,116,104,3,0,0,115,6,0,0,0,0, - 3,15,1,20,2,122,17,77,111,100,117,108,101,83,112,101, - 99,46,112,97,114,101,110,116,99,1,0,0,0,0,0,0, - 0,1,0,0,0,1,0,0,0,67,0,0,0,115,7,0, - 0,0,124,0,0,106,0,0,83,41,1,78,41,1,114,225, - 0,0,0,41,1,114,71,0,0,0,114,4,0,0,0,114, - 4,0,0,0,114,5,0,0,0,114,230,0,0,0,112,3, - 0,0,115,2,0,0,0,0,2,122,23,77,111,100,117,108, - 101,83,112,101,99,46,104,97,115,95,108,111,99,97,116,105, - 111,110,99,2,0,0,0,0,0,0,0,2,0,0,0,2, - 0,0,0,67,0,0,0,115,19,0,0,0,116,0,0,124, - 1,0,131,1,0,124,0,0,95,1,0,100,0,0,83,41, - 1,78,41,2,218,4,98,111,111,108,114,225,0,0,0,41, - 2,114,71,0,0,0,218,5,118,97,108,117,101,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,114,230,0,0, - 0,116,3,0,0,115,2,0,0,0,0,2,41,12,114,57, - 0,0,0,114,56,0,0,0,114,58,0,0,0,114,59,0, - 0,0,114,72,0,0,0,114,101,0,0,0,114,233,0,0, - 0,218,8,112,114,111,112,101,114,116,121,114,229,0,0,0, - 218,6,115,101,116,116,101,114,114,236,0,0,0,114,230,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,114,220,0,0,0,15,3,0,0,115, - 20,0,0,0,12,35,6,2,15,1,15,11,12,10,12,12, - 18,14,21,4,18,8,18,4,114,220,0,0,0,114,221,0, - 0,0,114,223,0,0,0,99,2,0,0,0,2,0,0,0, - 5,0,0,0,15,0,0,0,67,0,0,0,115,190,0,0, - 0,116,0,0,124,1,0,100,1,0,131,2,0,114,83,0, - 124,3,0,100,2,0,107,8,0,114,43,0,116,1,0,124, - 0,0,100,3,0,124,1,0,131,1,1,83,124,3,0,114, - 55,0,103,0,0,110,3,0,100,2,0,125,4,0,116,1, - 0,124,0,0,100,3,0,124,1,0,100,4,0,124,4,0, - 131,1,2,83,124,3,0,100,2,0,107,8,0,114,165,0, - 116,0,0,124,1,0,100,5,0,131,2,0,114,159,0,121, - 19,0,124,1,0,106,2,0,124,0,0,131,1,0,125,3, - 0,87,113,165,0,4,116,3,0,107,10,0,114,155,0,1, - 1,1,100,2,0,125,3,0,89,113,165,0,88,110,6,0, - 100,6,0,125,3,0,116,4,0,124,0,0,124,1,0,100, - 7,0,124,2,0,100,5,0,124,3,0,131,2,2,83,41, - 8,122,53,82,101,116,117,114,110,32,97,32,109,111,100,117, - 108,101,32,115,112,101,99,32,98,97,115,101,100,32,111,110, - 32,118,97,114,105,111,117,115,32,108,111,97,100,101,114,32, - 109,101,116,104,111,100,115,46,218,12,103,101,116,95,102,105, - 108,101,110,97,109,101,78,114,173,0,0,0,114,224,0,0, - 0,114,223,0,0,0,70,114,221,0,0,0,41,5,114,60, - 0,0,0,218,23,115,112,101,99,95,102,114,111,109,95,102, - 105,108,101,95,108,111,99,97,116,105,111,110,114,223,0,0, - 0,114,159,0,0,0,114,220,0,0,0,41,5,114,67,0, - 0,0,114,173,0,0,0,114,221,0,0,0,114,223,0,0, - 0,90,6,115,101,97,114,99,104,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,114,177,0,0,0,121,3,0, - 0,115,28,0,0,0,0,2,15,1,12,1,16,1,18,1, - 15,1,7,2,12,1,15,1,3,1,19,1,13,1,14,3, - 6,2,114,177,0,0,0,114,173,0,0,0,114,224,0,0, - 0,99,2,0,0,0,2,0,0,0,9,0,0,0,19,0, - 0,0,67,0,0,0,115,86,1,0,0,124,1,0,100,1, - 0,107,8,0,114,73,0,100,2,0,125,1,0,116,0,0, - 124,2,0,100,3,0,131,2,0,114,73,0,121,19,0,124, - 2,0,106,1,0,124,0,0,131,1,0,125,1,0,87,110, - 18,0,4,116,2,0,107,10,0,114,72,0,1,1,1,89, - 110,1,0,88,116,3,0,124,0,0,124,2,0,100,4,0, - 124,1,0,131,2,1,125,4,0,100,5,0,124,4,0,95, - 4,0,124,2,0,100,1,0,107,8,0,114,191,0,120,73, - 0,116,5,0,131,0,0,68,93,58,0,92,2,0,125,5, - 0,125,6,0,124,1,0,106,6,0,116,7,0,124,6,0, - 131,1,0,131,1,0,114,125,0,124,5,0,124,0,0,124, - 1,0,131,2,0,125,2,0,124,2,0,124,4,0,95,8, - 0,80,113,125,0,87,100,1,0,83,124,3,0,116,9,0, - 107,8,0,114,20,1,116,0,0,124,2,0,100,6,0,131, - 2,0,114,29,1,121,19,0,124,2,0,106,10,0,124,0, - 0,131,1,0,125,7,0,87,110,18,0,4,116,2,0,107, - 10,0,114,1,1,1,1,1,89,113,29,1,88,124,7,0, - 114,29,1,103,0,0,124,4,0,95,11,0,110,9,0,124, - 3,0,124,4,0,95,11,0,124,4,0,106,11,0,103,0, - 0,107,2,0,114,82,1,124,1,0,114,82,1,116,12,0, - 124,1,0,131,1,0,100,7,0,25,125,8,0,124,4,0, - 106,11,0,106,13,0,124,8,0,131,1,0,1,124,4,0, - 83,41,8,97,61,1,0,0,82,101,116,117,114,110,32,97, - 32,109,111,100,117,108,101,32,115,112,101,99,32,98,97,115, - 101,100,32,111,110,32,97,32,102,105,108,101,32,108,111,99, - 97,116,105,111,110,46,10,10,32,32,32,32,84,111,32,105, - 110,100,105,99,97,116,101,32,116,104,97,116,32,116,104,101, - 32,109,111,100,117,108,101,32,105,115,32,97,32,112,97,99, - 107,97,103,101,44,32,115,101,116,10,32,32,32,32,115,117, - 98,109,111,100,117,108,101,95,115,101,97,114,99,104,95,108, - 111,99,97,116,105,111,110,115,32,116,111,32,97,32,108,105, - 115,116,32,111,102,32,100,105,114,101,99,116,111,114,121,32, - 112,97,116,104,115,46,32,32,65,110,10,32,32,32,32,101, - 109,112,116,121,32,108,105,115,116,32,105,115,32,115,117,102, - 102,105,99,105,101,110,116,44,32,116,104,111,117,103,104,32, - 105,116,115,32,110,111,116,32,111,116,104,101,114,119,105,115, - 101,32,117,115,101,102,117,108,32,116,111,32,116,104,101,10, - 32,32,32,32,105,109,112,111,114,116,32,115,121,115,116,101, - 109,46,10,10,32,32,32,32,84,104,101,32,108,111,97,100, - 101,114,32,109,117,115,116,32,116,97,107,101,32,97,32,115, - 112,101,99,32,97,115,32,105,116,115,32,111,110,108,121,32, - 95,95,105,110,105,116,95,95,40,41,32,97,114,103,46,10, - 10,32,32,32,32,78,122,9,60,117,110,107,110,111,119,110, - 62,114,241,0,0,0,114,221,0,0,0,84,114,223,0,0, - 0,114,84,0,0,0,41,14,114,60,0,0,0,114,241,0, - 0,0,114,159,0,0,0,114,220,0,0,0,114,225,0,0, - 0,218,27,95,103,101,116,95,115,117,112,112,111,114,116,101, - 100,95,102,105,108,101,95,108,111,97,100,101,114,115,114,234, - 0,0,0,114,235,0,0,0,114,173,0,0,0,218,9,95, - 80,79,80,85,76,65,84,69,114,223,0,0,0,114,224,0, - 0,0,114,38,0,0,0,114,227,0,0,0,41,9,114,67, - 0,0,0,218,8,108,111,99,97,116,105,111,110,114,173,0, - 0,0,114,224,0,0,0,114,180,0,0,0,218,12,108,111, - 97,100,101,114,95,99,108,97,115,115,218,8,115,117,102,102, - 105,120,101,115,114,223,0,0,0,90,7,100,105,114,110,97, - 109,101,114,4,0,0,0,114,4,0,0,0,114,5,0,0, - 0,114,242,0,0,0,146,3,0,0,115,60,0,0,0,0, - 12,12,4,6,1,15,2,3,1,19,1,13,1,5,8,21, - 1,9,3,12,1,22,1,21,1,15,1,9,1,5,2,4, - 3,12,2,15,1,3,1,19,1,13,1,5,2,6,1,12, - 2,9,1,15,1,6,1,16,1,16,2,114,242,0,0,0, - 99,3,0,0,0,0,0,0,0,8,0,0,0,53,0,0, - 0,67,0,0,0,115,118,1,0,0,121,13,0,124,0,0, - 106,0,0,125,3,0,87,110,18,0,4,116,1,0,107,10, - 0,114,33,0,1,1,1,89,110,17,0,88,124,3,0,100, - 0,0,107,9,0,114,50,0,124,3,0,83,124,0,0,106, - 2,0,125,4,0,124,1,0,100,0,0,107,8,0,114,105, - 0,121,13,0,124,0,0,106,3,0,125,1,0,87,110,18, - 0,4,116,1,0,107,10,0,114,104,0,1,1,1,89,110, - 1,0,88,121,13,0,124,0,0,106,4,0,125,5,0,87, - 110,24,0,4,116,1,0,107,10,0,114,144,0,1,1,1, - 100,0,0,125,5,0,89,110,1,0,88,124,2,0,100,0, - 0,107,8,0,114,218,0,124,5,0,100,0,0,107,8,0, - 114,212,0,121,13,0,124,1,0,106,5,0,125,2,0,87, - 113,218,0,4,116,1,0,107,10,0,114,208,0,1,1,1, - 100,0,0,125,2,0,89,113,218,0,88,110,6,0,124,5, - 0,125,2,0,121,13,0,124,0,0,106,6,0,125,6,0, - 87,110,24,0,4,116,1,0,107,10,0,114,1,1,1,1, - 1,100,0,0,125,6,0,89,110,1,0,88,121,19,0,116, - 7,0,124,0,0,106,8,0,131,1,0,125,7,0,87,110, - 24,0,4,116,1,0,107,10,0,114,47,1,1,1,1,100, - 0,0,125,7,0,89,110,1,0,88,116,9,0,124,4,0, - 124,1,0,100,1,0,124,2,0,131,2,1,125,3,0,124, - 5,0,100,0,0,107,8,0,114,87,1,100,2,0,110,3, - 0,100,3,0,124,3,0,95,10,0,124,6,0,124,3,0, - 95,11,0,124,7,0,124,3,0,95,12,0,124,3,0,83, - 41,4,78,114,221,0,0,0,70,84,41,13,114,210,0,0, - 0,114,211,0,0,0,114,57,0,0,0,114,206,0,0,0, - 114,213,0,0,0,90,7,95,79,82,73,71,73,78,218,10, - 95,95,99,97,99,104,101,100,95,95,218,4,108,105,115,116, - 218,8,95,95,112,97,116,104,95,95,114,220,0,0,0,114, - 225,0,0,0,114,229,0,0,0,114,224,0,0,0,41,8, - 114,181,0,0,0,114,173,0,0,0,114,221,0,0,0,114, - 180,0,0,0,114,67,0,0,0,114,245,0,0,0,114,229, - 0,0,0,114,224,0,0,0,114,4,0,0,0,114,4,0, - 0,0,114,5,0,0,0,218,17,95,115,112,101,99,95,102, - 114,111,109,95,109,111,100,117,108,101,210,3,0,0,115,72, - 0,0,0,0,2,3,1,13,1,13,1,5,2,12,1,4, - 2,9,1,12,1,3,1,13,1,13,2,5,1,3,1,13, - 1,13,1,11,1,12,1,12,1,3,1,13,1,13,1,14, - 2,6,1,3,1,13,1,13,1,11,1,3,1,19,1,13, - 1,11,2,21,1,27,1,9,1,9,1,114,251,0,0,0, - 218,8,111,118,101,114,114,105,100,101,70,99,2,0,0,0, - 1,0,0,0,4,0,0,0,59,0,0,0,67,0,0,0, - 115,27,2,0,0,124,2,0,115,30,0,116,0,0,124,1, - 0,100,1,0,100,0,0,131,3,0,100,0,0,107,8,0, - 114,67,0,121,16,0,124,0,0,106,1,0,124,1,0,95, - 2,0,87,110,18,0,4,116,3,0,107,10,0,114,66,0, - 1,1,1,89,110,1,0,88,124,2,0,115,97,0,116,0, - 0,124,1,0,100,2,0,100,0,0,131,3,0,100,0,0, - 107,8,0,114,194,0,124,0,0,106,4,0,125,3,0,124, - 3,0,100,0,0,107,8,0,114,160,0,124,0,0,106,5, - 0,100,0,0,107,9,0,114,160,0,116,6,0,106,7,0, - 116,6,0,131,1,0,125,3,0,124,0,0,106,5,0,124, - 3,0,95,8,0,121,13,0,124,3,0,124,1,0,95,9, - 0,87,110,18,0,4,116,3,0,107,10,0,114,193,0,1, - 1,1,89,110,1,0,88,124,2,0,115,224,0,116,0,0, - 124,1,0,100,3,0,100,0,0,131,3,0,100,0,0,107, - 8,0,114,5,1,121,16,0,124,0,0,106,10,0,124,1, - 0,95,11,0,87,110,18,0,4,116,3,0,107,10,0,114, - 4,1,1,1,1,89,110,1,0,88,121,13,0,124,0,0, - 124,1,0,95,12,0,87,110,18,0,4,116,3,0,107,10, - 0,114,38,1,1,1,1,89,110,1,0,88,124,2,0,115, - 69,1,116,0,0,124,1,0,100,4,0,100,0,0,131,3, - 0,100,0,0,107,8,0,114,121,1,124,0,0,106,5,0, - 100,0,0,107,9,0,114,121,1,121,16,0,124,0,0,106, - 5,0,124,1,0,95,13,0,87,110,18,0,4,116,3,0, - 107,10,0,114,120,1,1,1,1,89,110,1,0,88,124,0, - 0,106,14,0,114,23,2,124,2,0,115,160,1,116,0,0, - 124,1,0,100,5,0,100,0,0,131,3,0,100,0,0,107, - 8,0,114,197,1,121,16,0,124,0,0,106,15,0,124,1, - 0,95,16,0,87,110,18,0,4,116,3,0,107,10,0,114, - 196,1,1,1,1,89,110,1,0,88,124,2,0,115,227,1, - 116,0,0,124,1,0,100,6,0,100,0,0,131,3,0,100, - 0,0,107,8,0,114,23,2,124,0,0,106,17,0,100,0, - 0,107,9,0,114,23,2,121,16,0,124,0,0,106,17,0, - 124,1,0,95,18,0,87,110,18,0,4,116,3,0,107,10, - 0,114,22,2,1,1,1,89,110,1,0,88,124,1,0,83, - 41,7,78,114,57,0,0,0,114,206,0,0,0,218,11,95, - 95,112,97,99,107,97,103,101,95,95,114,250,0,0,0,114, - 213,0,0,0,114,248,0,0,0,41,19,114,62,0,0,0, - 114,67,0,0,0,114,57,0,0,0,114,211,0,0,0,114, - 173,0,0,0,114,224,0,0,0,218,16,95,78,97,109,101, - 115,112,97,99,101,76,111,97,100,101,114,218,7,95,95,110, - 101,119,95,95,218,5,95,112,97,116,104,114,206,0,0,0, - 114,236,0,0,0,114,253,0,0,0,114,210,0,0,0,114, - 250,0,0,0,114,230,0,0,0,114,221,0,0,0,114,213, - 0,0,0,114,229,0,0,0,114,248,0,0,0,41,4,114, - 180,0,0,0,114,181,0,0,0,114,252,0,0,0,114,173, - 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, - 0,0,218,18,95,105,110,105,116,95,109,111,100,117,108,101, - 95,97,116,116,114,115,255,3,0,0,115,86,0,0,0,0, - 4,30,1,3,1,16,1,13,1,5,2,30,1,9,1,12, - 2,15,1,15,1,12,1,3,1,13,1,13,1,5,2,30, - 1,3,1,16,1,13,1,5,2,3,1,13,1,13,1,5, - 2,30,1,15,1,3,1,16,1,13,1,5,2,9,1,30, - 1,3,1,16,1,13,1,5,2,30,1,15,1,3,1,16, - 1,13,1,5,1,114,1,1,0,0,99,1,0,0,0,0, - 0,0,0,2,0,0,0,5,0,0,0,67,0,0,0,115, - 129,0,0,0,100,1,0,125,1,0,116,0,0,124,0,0, - 106,1,0,100,2,0,131,2,0,114,45,0,124,0,0,106, - 1,0,106,2,0,124,0,0,131,1,0,125,1,0,110,40, - 0,116,0,0,124,0,0,106,1,0,100,3,0,131,2,0, - 114,85,0,116,3,0,106,4,0,100,4,0,116,5,0,100, - 5,0,100,6,0,131,2,1,1,124,1,0,100,1,0,107, - 8,0,114,112,0,116,6,0,124,0,0,106,7,0,131,1, - 0,125,1,0,116,8,0,124,0,0,124,1,0,131,2,0, - 1,124,1,0,83,41,7,122,43,67,114,101,97,116,101,32, - 97,32,109,111,100,117,108,101,32,98,97,115,101,100,32,111, - 110,32,116,104,101,32,112,114,111,118,105,100,101,100,32,115, - 112,101,99,46,78,218,13,99,114,101,97,116,101,95,109,111, - 100,117,108,101,218,11,101,120,101,99,95,109,111,100,117,108, - 101,122,87,115,116,97,114,116,105,110,103,32,105,110,32,80, - 121,116,104,111,110,32,51,46,54,44,32,108,111,97,100,101, - 114,115,32,100,101,102,105,110,105,110,103,32,101,120,101,99, - 95,109,111,100,117,108,101,40,41,32,109,117,115,116,32,97, - 108,115,111,32,100,101,102,105,110,101,32,99,114,101,97,116, - 101,95,109,111,100,117,108,101,40,41,90,10,115,116,97,99, - 107,108,101,118,101,108,114,115,0,0,0,41,9,114,60,0, - 0,0,114,173,0,0,0,114,2,1,0,0,114,118,0,0, - 0,114,119,0,0,0,114,120,0,0,0,114,68,0,0,0, - 114,67,0,0,0,114,1,1,0,0,41,2,114,180,0,0, - 0,114,181,0,0,0,114,4,0,0,0,114,4,0,0,0, - 114,5,0,0,0,218,16,109,111,100,117,108,101,95,102,114, - 111,109,95,115,112,101,99,55,4,0,0,115,20,0,0,0, - 0,3,6,1,18,3,21,1,18,1,9,2,13,1,12,1, - 15,1,13,1,114,4,1,0,0,99,1,0,0,0,0,0, - 0,0,2,0,0,0,3,0,0,0,67,0,0,0,115,149, - 0,0,0,124,0,0,106,0,0,100,1,0,107,8,0,114, - 21,0,100,2,0,110,6,0,124,0,0,106,0,0,125,1, - 0,124,0,0,106,1,0,100,1,0,107,8,0,114,95,0, - 124,0,0,106,2,0,100,1,0,107,8,0,114,73,0,100, - 3,0,106,3,0,124,1,0,131,1,0,83,100,4,0,106, - 3,0,124,1,0,124,0,0,106,2,0,131,2,0,83,110, - 50,0,124,0,0,106,4,0,114,123,0,100,5,0,106,3, - 0,124,1,0,124,0,0,106,1,0,131,2,0,83,100,6, - 0,106,3,0,124,0,0,106,0,0,124,0,0,106,1,0, - 131,2,0,83,100,1,0,83,41,7,122,38,82,101,116,117, - 114,110,32,116,104,101,32,114,101,112,114,32,116,111,32,117, - 115,101,32,102,111,114,32,116,104,101,32,109,111,100,117,108, - 101,46,78,114,208,0,0,0,122,13,60,109,111,100,117,108, - 101,32,123,33,114,125,62,122,20,60,109,111,100,117,108,101, - 32,123,33,114,125,32,40,123,33,114,125,41,62,122,23,60, - 109,111,100,117,108,101,32,123,33,114,125,32,102,114,111,109, - 32,123,33,114,125,62,122,18,60,109,111,100,117,108,101,32, - 123,33,114,125,32,40,123,125,41,62,41,5,114,67,0,0, - 0,114,221,0,0,0,114,173,0,0,0,114,47,0,0,0, - 114,230,0,0,0,41,2,114,180,0,0,0,114,67,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 114,212,0,0,0,73,4,0,0,115,16,0,0,0,0,3, - 30,1,15,1,15,1,13,2,22,2,9,1,19,2,114,212, - 0,0,0,99,2,0,0,0,0,0,0,0,4,0,0,0, - 12,0,0,0,67,0,0,0,115,252,0,0,0,124,0,0, - 106,0,0,125,2,0,116,1,0,106,2,0,131,0,0,1, - 116,3,0,124,2,0,131,1,0,143,208,0,1,116,4,0, - 106,5,0,106,6,0,124,2,0,131,1,0,124,1,0,107, - 9,0,114,89,0,100,1,0,106,7,0,124,2,0,131,1, - 0,125,3,0,116,8,0,124,3,0,100,2,0,124,2,0, - 131,1,1,130,1,0,124,0,0,106,9,0,100,3,0,107, - 8,0,114,163,0,124,0,0,106,10,0,100,3,0,107,8, - 0,114,140,0,116,8,0,100,4,0,100,2,0,124,0,0, - 106,0,0,131,1,1,130,1,0,116,11,0,124,0,0,124, - 1,0,100,5,0,100,6,0,131,2,1,1,124,1,0,83, - 116,11,0,124,0,0,124,1,0,100,5,0,100,6,0,131, - 2,1,1,116,12,0,124,0,0,106,9,0,100,7,0,131, - 2,0,115,219,0,124,0,0,106,9,0,106,13,0,124,2, - 0,131,1,0,1,110,16,0,124,0,0,106,9,0,106,14, - 0,124,1,0,131,1,0,1,87,100,3,0,81,88,116,4, - 0,106,5,0,124,2,0,25,83,41,8,122,51,69,120,101, - 99,117,116,101,32,116,104,101,32,115,112,101,99,32,105,110, - 32,97,110,32,101,120,105,115,116,105,110,103,32,109,111,100, - 117,108,101,39,115,32,110,97,109,101,115,112,97,99,101,46, - 122,30,109,111,100,117,108,101,32,123,33,114,125,32,110,111, - 116,32,105,110,32,115,121,115,46,109,111,100,117,108,101,115, - 114,67,0,0,0,78,122,14,109,105,115,115,105,110,103,32, - 108,111,97,100,101,114,114,252,0,0,0,84,114,3,1,0, - 0,41,15,114,67,0,0,0,114,106,0,0,0,218,12,97, - 99,113,117,105,114,101,95,108,111,99,107,114,103,0,0,0, - 114,7,0,0,0,114,73,0,0,0,114,93,0,0,0,114, - 47,0,0,0,114,159,0,0,0,114,173,0,0,0,114,224, - 0,0,0,114,1,1,0,0,114,60,0,0,0,218,11,108, - 111,97,100,95,109,111,100,117,108,101,114,3,1,0,0,41, - 4,114,180,0,0,0,114,181,0,0,0,114,67,0,0,0, - 114,175,0,0,0,114,4,0,0,0,114,4,0,0,0,114, - 5,0,0,0,114,178,0,0,0,90,4,0,0,115,32,0, - 0,0,0,2,9,1,10,1,13,1,24,1,15,1,18,1, - 15,1,15,1,21,2,19,1,4,1,19,1,18,4,19,2, - 22,1,114,178,0,0,0,99,1,0,0,0,0,0,0,0, - 2,0,0,0,27,0,0,0,67,0,0,0,115,3,1,0, - 0,124,0,0,106,0,0,106,1,0,124,0,0,106,2,0, - 131,1,0,1,116,3,0,106,4,0,124,0,0,106,2,0, - 25,125,1,0,116,5,0,124,1,0,100,1,0,100,0,0, - 131,3,0,100,0,0,107,8,0,114,96,0,121,16,0,124, - 0,0,106,0,0,124,1,0,95,6,0,87,110,18,0,4, - 116,7,0,107,10,0,114,95,0,1,1,1,89,110,1,0, - 88,116,5,0,124,1,0,100,2,0,100,0,0,131,3,0, - 100,0,0,107,8,0,114,197,0,121,56,0,124,1,0,106, - 8,0,124,1,0,95,9,0,116,10,0,124,1,0,100,3, - 0,131,2,0,115,175,0,124,0,0,106,2,0,106,11,0, - 100,4,0,131,1,0,100,5,0,25,124,1,0,95,9,0, - 87,110,18,0,4,116,7,0,107,10,0,114,196,0,1,1, - 1,89,110,1,0,88,116,5,0,124,1,0,100,6,0,100, - 0,0,131,3,0,100,0,0,107,8,0,114,255,0,121,13, - 0,124,0,0,124,1,0,95,12,0,87,110,18,0,4,116, - 7,0,107,10,0,114,254,0,1,1,1,89,110,1,0,88, - 124,1,0,83,41,7,78,114,206,0,0,0,114,253,0,0, - 0,114,250,0,0,0,114,117,0,0,0,114,84,0,0,0, - 114,210,0,0,0,41,13,114,173,0,0,0,114,6,1,0, - 0,114,67,0,0,0,114,7,0,0,0,114,73,0,0,0, - 114,62,0,0,0,114,206,0,0,0,114,211,0,0,0,114, - 57,0,0,0,114,253,0,0,0,114,60,0,0,0,114,32, - 0,0,0,114,210,0,0,0,41,2,114,180,0,0,0,114, - 181,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, - 0,0,0,218,25,95,108,111,97,100,95,98,97,99,107,119, - 97,114,100,95,99,111,109,112,97,116,105,98,108,101,115,4, - 0,0,115,40,0,0,0,0,4,19,2,16,1,24,1,3, - 1,16,1,13,1,5,1,24,1,3,4,12,1,15,1,29, - 1,13,1,5,1,24,1,3,1,13,1,13,1,5,1,114, - 7,1,0,0,99,1,0,0,0,0,0,0,0,2,0,0, - 0,11,0,0,0,67,0,0,0,115,158,0,0,0,124,0, - 0,106,0,0,100,0,0,107,9,0,114,43,0,116,1,0, - 124,0,0,106,0,0,100,1,0,131,2,0,115,43,0,116, - 2,0,124,0,0,131,1,0,83,116,3,0,124,0,0,131, - 1,0,125,1,0,116,4,0,124,1,0,131,1,0,143,75, - 0,1,124,0,0,106,0,0,100,0,0,107,8,0,114,122, - 0,124,0,0,106,5,0,100,0,0,107,8,0,114,138,0, - 116,6,0,100,2,0,100,3,0,124,0,0,106,7,0,131, - 1,1,130,1,0,110,16,0,124,0,0,106,0,0,106,8, - 0,124,1,0,131,1,0,1,87,100,0,0,81,88,116,9, - 0,106,10,0,124,0,0,106,7,0,25,83,41,4,78,114, - 3,1,0,0,122,14,109,105,115,115,105,110,103,32,108,111, - 97,100,101,114,114,67,0,0,0,41,11,114,173,0,0,0, - 114,60,0,0,0,114,7,1,0,0,114,4,1,0,0,114, - 216,0,0,0,114,224,0,0,0,114,159,0,0,0,114,67, - 0,0,0,114,3,1,0,0,114,7,0,0,0,114,73,0, - 0,0,41,2,114,180,0,0,0,114,181,0,0,0,114,4, - 0,0,0,114,4,0,0,0,114,5,0,0,0,218,14,95, - 108,111,97,100,95,117,110,108,111,99,107,101,100,144,4,0, - 0,115,20,0,0,0,0,2,15,2,18,1,10,2,12,1, - 13,1,15,1,15,1,24,3,22,5,114,8,1,0,0,99, - 1,0,0,0,0,0,0,0,1,0,0,0,9,0,0,0, - 67,0,0,0,115,46,0,0,0,116,0,0,106,1,0,131, - 0,0,1,116,2,0,124,0,0,106,3,0,131,1,0,143, - 15,0,1,116,4,0,124,0,0,131,1,0,83,87,100,1, - 0,81,88,100,1,0,83,41,2,122,191,82,101,116,117,114, - 110,32,97,32,110,101,119,32,109,111,100,117,108,101,32,111, - 98,106,101,99,116,44,32,108,111,97,100,101,100,32,98,121, - 32,116,104,101,32,115,112,101,99,39,115,32,108,111,97,100, - 101,114,46,10,10,32,32,32,32,84,104,101,32,109,111,100, - 117,108,101,32,105,115,32,110,111,116,32,97,100,100,101,100, - 32,116,111,32,105,116,115,32,112,97,114,101,110,116,46,10, - 10,32,32,32,32,73,102,32,97,32,109,111,100,117,108,101, - 32,105,115,32,97,108,114,101,97,100,121,32,105,110,32,115, - 121,115,46,109,111,100,117,108,101,115,44,32,116,104,97,116, - 32,101,120,105,115,116,105,110,103,32,109,111,100,117,108,101, - 32,103,101,116,115,10,32,32,32,32,99,108,111,98,98,101, - 114,101,100,46,10,10,32,32,32,32,78,41,5,114,106,0, - 0,0,114,5,1,0,0,114,103,0,0,0,114,67,0,0, - 0,114,8,1,0,0,41,1,114,180,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,114,179,0,0, - 0,167,4,0,0,115,6,0,0,0,0,9,10,1,16,1, - 114,179,0,0,0,99,4,0,0,0,0,0,0,0,6,0, - 0,0,11,0,0,0,67,0,0,0,115,195,0,0,0,124, - 0,0,106,0,0,100,1,0,131,1,0,125,4,0,124,0, - 0,106,0,0,100,2,0,131,1,0,125,5,0,124,4,0, - 115,99,0,124,5,0,114,54,0,124,5,0,106,1,0,125, - 4,0,110,45,0,124,2,0,124,3,0,107,2,0,114,84, - 0,116,2,0,124,1,0,124,2,0,131,2,0,125,4,0, - 110,15,0,116,3,0,124,1,0,124,2,0,131,2,0,125, - 4,0,124,5,0,115,126,0,116,4,0,124,1,0,124,2, - 0,100,3,0,124,4,0,131,2,1,125,5,0,121,44,0, - 124,5,0,124,0,0,100,2,0,60,124,4,0,124,0,0, - 100,1,0,60,124,2,0,124,0,0,100,4,0,60,124,3, - 0,124,0,0,100,5,0,60,87,110,18,0,4,116,5,0, - 107,10,0,114,190,0,1,1,1,89,110,1,0,88,100,0, - 0,83,41,6,78,114,206,0,0,0,114,210,0,0,0,114, - 173,0,0,0,114,213,0,0,0,114,248,0,0,0,41,6, - 114,93,0,0,0,114,173,0,0,0,218,20,83,111,117,114, - 99,101,108,101,115,115,70,105,108,101,76,111,97,100,101,114, - 218,16,83,111,117,114,99,101,70,105,108,101,76,111,97,100, - 101,114,114,242,0,0,0,114,209,0,0,0,41,6,90,2, - 110,115,114,67,0,0,0,90,8,112,97,116,104,110,97,109, - 101,90,9,99,112,97,116,104,110,97,109,101,114,173,0,0, - 0,114,180,0,0,0,114,4,0,0,0,114,4,0,0,0, - 114,5,0,0,0,218,14,95,102,105,120,95,117,112,95,109, - 111,100,117,108,101,181,4,0,0,115,34,0,0,0,0,2, - 15,1,15,1,6,1,6,1,12,1,12,1,18,2,15,1, - 6,1,21,1,3,1,10,1,10,1,10,1,14,1,13,2, - 114,11,1,0,0,99,0,0,0,0,0,0,0,0,0,0, - 0,0,5,0,0,0,64,0,0,0,115,181,0,0,0,101, - 0,0,90,1,0,100,0,0,90,2,0,100,1,0,90,3, - 0,101,4,0,100,2,0,100,3,0,132,0,0,131,1,0, - 90,5,0,101,6,0,100,4,0,100,4,0,100,5,0,100, - 6,0,132,2,0,131,1,0,90,7,0,101,6,0,100,4, - 0,100,7,0,100,8,0,132,1,0,131,1,0,90,8,0, - 101,6,0,101,9,0,100,9,0,100,10,0,132,0,0,131, - 1,0,131,1,0,90,10,0,101,6,0,101,9,0,100,11, - 0,100,12,0,132,0,0,131,1,0,131,1,0,90,11,0, - 101,6,0,101,9,0,100,13,0,100,14,0,132,0,0,131, - 1,0,131,1,0,90,12,0,101,6,0,101,9,0,100,15, - 0,100,16,0,132,0,0,131,1,0,131,1,0,90,13,0, - 100,4,0,83,41,17,218,15,66,117,105,108,116,105,110,73, - 109,112,111,114,116,101,114,122,144,77,101,116,97,32,112,97, - 116,104,32,105,109,112,111,114,116,32,102,111,114,32,98,117, - 105,108,116,45,105,110,32,109,111,100,117,108,101,115,46,10, - 10,32,32,32,32,65,108,108,32,109,101,116,104,111,100,115, - 32,97,114,101,32,101,105,116,104,101,114,32,99,108,97,115, - 115,32,111,114,32,115,116,97,116,105,99,32,109,101,116,104, - 111,100,115,32,116,111,32,97,118,111,105,100,32,116,104,101, - 32,110,101,101,100,32,116,111,10,32,32,32,32,105,110,115, - 116,97,110,116,105,97,116,101,32,116,104,101,32,99,108,97, - 115,115,46,10,10,32,32,32,32,99,1,0,0,0,0,0, - 0,0,1,0,0,0,2,0,0,0,67,0,0,0,115,16, - 0,0,0,100,1,0,106,0,0,124,0,0,106,1,0,131, - 1,0,83,41,2,122,115,82,101,116,117,114,110,32,114,101, - 112,114,32,102,111,114,32,116,104,101,32,109,111,100,117,108, - 101,46,10,10,32,32,32,32,32,32,32,32,84,104,101,32, - 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, - 97,116,101,100,46,32,32,84,104,101,32,105,109,112,111,114, - 116,32,109,97,99,104,105,110,101,114,121,32,100,111,101,115, - 32,116,104,101,32,106,111,98,32,105,116,115,101,108,102,46, - 10,10,32,32,32,32,32,32,32,32,122,24,60,109,111,100, - 117,108,101,32,123,33,114,125,32,40,98,117,105,108,116,45, - 105,110,41,62,41,2,114,47,0,0,0,114,57,0,0,0, - 41,1,114,181,0,0,0,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,114,207,0,0,0,215,4,0,0,115, - 2,0,0,0,0,7,122,27,66,117,105,108,116,105,110,73, - 109,112,111,114,116,101,114,46,109,111,100,117,108,101,95,114, - 101,112,114,78,99,4,0,0,0,0,0,0,0,4,0,0, - 0,5,0,0,0,67,0,0,0,115,58,0,0,0,124,2, - 0,100,0,0,107,9,0,114,16,0,100,0,0,83,116,0, - 0,106,1,0,124,1,0,131,1,0,114,50,0,116,2,0, - 124,1,0,124,0,0,100,1,0,100,2,0,131,2,1,83, - 100,0,0,83,100,0,0,83,41,3,78,114,221,0,0,0, - 122,8,98,117,105,108,116,45,105,110,41,3,114,106,0,0, - 0,90,10,105,115,95,98,117,105,108,116,105,110,114,177,0, - 0,0,41,4,218,3,99,108,115,114,164,0,0,0,114,35, - 0,0,0,218,6,116,97,114,103,101,116,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,218,9,102,105,110,100, - 95,115,112,101,99,224,4,0,0,115,10,0,0,0,0,2, - 12,1,4,1,15,1,19,2,122,25,66,117,105,108,116,105, - 110,73,109,112,111,114,116,101,114,46,102,105,110,100,95,115, - 112,101,99,99,3,0,0,0,0,0,0,0,4,0,0,0, - 3,0,0,0,67,0,0,0,115,41,0,0,0,124,0,0, - 106,0,0,124,1,0,124,2,0,131,2,0,125,3,0,124, - 3,0,100,1,0,107,9,0,114,37,0,124,3,0,106,1, - 0,83,100,1,0,83,41,2,122,175,70,105,110,100,32,116, - 104,101,32,98,117,105,108,116,45,105,110,32,109,111,100,117, - 108,101,46,10,10,32,32,32,32,32,32,32,32,73,102,32, - 39,112,97,116,104,39,32,105,115,32,101,118,101,114,32,115, - 112,101,99,105,102,105,101,100,32,116,104,101,110,32,116,104, - 101,32,115,101,97,114,99,104,32,105,115,32,99,111,110,115, - 105,100,101,114,101,100,32,97,32,102,97,105,108,117,114,101, - 46,10,10,32,32,32,32,32,32,32,32,84,104,105,115,32, - 109,101,116,104,111,100,32,105,115,32,100,101,112,114,101,99, - 97,116,101,100,46,32,32,85,115,101,32,102,105,110,100,95, - 115,112,101,99,40,41,32,105,110,115,116,101,97,100,46,10, - 10,32,32,32,32,32,32,32,32,78,41,2,114,15,1,0, - 0,114,173,0,0,0,41,4,114,13,1,0,0,114,164,0, - 0,0,114,35,0,0,0,114,180,0,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,218,11,102,105,110, - 100,95,109,111,100,117,108,101,233,4,0,0,115,4,0,0, - 0,0,9,18,1,122,27,66,117,105,108,116,105,110,73,109, - 112,111,114,116,101,114,46,102,105,110,100,95,109,111,100,117, - 108,101,99,2,0,0,0,0,0,0,0,3,0,0,0,10, - 0,0,0,67,0,0,0,115,59,0,0,0,116,0,0,124, - 1,0,131,1,0,143,23,0,1,116,1,0,116,2,0,106, - 3,0,124,1,0,131,2,0,125,2,0,87,100,1,0,81, - 88,124,0,0,124,2,0,95,4,0,100,2,0,124,2,0, - 95,5,0,124,2,0,83,41,3,122,23,76,111,97,100,32, - 97,32,98,117,105,108,116,45,105,110,32,109,111,100,117,108, - 101,46,78,114,30,0,0,0,41,6,114,69,0,0,0,114, - 114,0,0,0,114,106,0,0,0,90,12,105,110,105,116,95, - 98,117,105,108,116,105,110,114,206,0,0,0,114,253,0,0, - 0,41,3,114,13,1,0,0,114,164,0,0,0,114,181,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, - 0,114,6,1,0,0,245,4,0,0,115,10,0,0,0,0, - 6,13,1,24,1,9,1,9,1,122,27,66,117,105,108,116, - 105,110,73,109,112,111,114,116,101,114,46,108,111,97,100,95, - 109,111,100,117,108,101,99,2,0,0,0,0,0,0,0,2, - 0,0,0,1,0,0,0,67,0,0,0,115,4,0,0,0, - 100,1,0,83,41,2,122,57,82,101,116,117,114,110,32,78, - 111,110,101,32,97,115,32,98,117,105,108,116,45,105,110,32, - 109,111,100,117,108,101,115,32,100,111,32,110,111,116,32,104, - 97,118,101,32,99,111,100,101,32,111,98,106,101,99,116,115, - 46,78,114,4,0,0,0,41,2,114,13,1,0,0,114,164, - 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, - 0,0,218,8,103,101,116,95,99,111,100,101,1,5,0,0, - 115,2,0,0,0,0,4,122,24,66,117,105,108,116,105,110, - 73,109,112,111,114,116,101,114,46,103,101,116,95,99,111,100, - 101,99,2,0,0,0,0,0,0,0,2,0,0,0,1,0, - 0,0,67,0,0,0,115,4,0,0,0,100,1,0,83,41, - 2,122,56,82,101,116,117,114,110,32,78,111,110,101,32,97, - 115,32,98,117,105,108,116,45,105,110,32,109,111,100,117,108, - 101,115,32,100,111,32,110,111,116,32,104,97,118,101,32,115, - 111,117,114,99,101,32,99,111,100,101,46,78,114,4,0,0, - 0,41,2,114,13,1,0,0,114,164,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,218,10,103,101, - 116,95,115,111,117,114,99,101,7,5,0,0,115,2,0,0, - 0,0,4,122,26,66,117,105,108,116,105,110,73,109,112,111, - 114,116,101,114,46,103,101,116,95,115,111,117,114,99,101,99, - 2,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0, - 67,0,0,0,115,4,0,0,0,100,1,0,83,41,2,122, - 52,82,101,116,117,114,110,32,70,97,108,115,101,32,97,115, - 32,98,117,105,108,116,45,105,110,32,109,111,100,117,108,101, - 115,32,97,114,101,32,110,101,118,101,114,32,112,97,99,107, - 97,103,101,115,46,70,114,4,0,0,0,41,2,114,13,1, - 0,0,114,164,0,0,0,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,114,223,0,0,0,13,5,0,0,115, - 2,0,0,0,0,4,122,26,66,117,105,108,116,105,110,73, - 109,112,111,114,116,101,114,46,105,115,95,112,97,99,107,97, - 103,101,41,14,114,57,0,0,0,114,56,0,0,0,114,58, - 0,0,0,114,59,0,0,0,218,12,115,116,97,116,105,99, - 109,101,116,104,111,100,114,207,0,0,0,218,11,99,108,97, - 115,115,109,101,116,104,111,100,114,15,1,0,0,114,16,1, - 0,0,114,167,0,0,0,114,6,1,0,0,114,17,1,0, - 0,114,18,1,0,0,114,223,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, - 12,1,0,0,206,4,0,0,115,28,0,0,0,12,7,6, - 2,18,9,3,1,21,8,3,1,18,11,3,1,21,11,3, - 1,21,5,3,1,21,5,3,1,114,12,1,0,0,99,0, - 0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,64, - 0,0,0,115,211,0,0,0,101,0,0,90,1,0,100,0, - 0,90,2,0,100,1,0,90,3,0,101,4,0,100,2,0, - 100,3,0,132,0,0,131,1,0,90,5,0,101,6,0,100, - 4,0,100,4,0,100,5,0,100,6,0,132,2,0,131,1, - 0,90,7,0,101,6,0,100,4,0,100,7,0,100,8,0, - 132,1,0,131,1,0,90,8,0,101,6,0,100,9,0,100, - 10,0,132,0,0,131,1,0,90,9,0,101,4,0,100,11, - 0,100,12,0,132,0,0,131,1,0,90,10,0,101,6,0, - 100,13,0,100,14,0,132,0,0,131,1,0,90,11,0,101, - 6,0,101,12,0,100,15,0,100,16,0,132,0,0,131,1, - 0,131,1,0,90,13,0,101,6,0,101,12,0,100,17,0, - 100,18,0,132,0,0,131,1,0,131,1,0,90,14,0,101, - 6,0,101,12,0,100,19,0,100,20,0,132,0,0,131,1, - 0,131,1,0,90,15,0,100,4,0,83,41,21,218,14,70, - 114,111,122,101,110,73,109,112,111,114,116,101,114,122,142,77, - 101,116,97,32,112,97,116,104,32,105,109,112,111,114,116,32, - 102,111,114,32,102,114,111,122,101,110,32,109,111,100,117,108, + 9,0,0,0,67,0,0,0,115,46,0,0,0,116,0,0, + 106,1,0,131,0,0,1,116,2,0,124,0,0,106,3,0, + 131,1,0,143,15,0,1,116,4,0,124,0,0,131,1,0, + 83,87,100,1,0,81,88,100,1,0,83,41,2,122,191,82, + 101,116,117,114,110,32,97,32,110,101,119,32,109,111,100,117, + 108,101,32,111,98,106,101,99,116,44,32,108,111,97,100,101, + 100,32,98,121,32,116,104,101,32,115,112,101,99,39,115,32, + 108,111,97,100,101,114,46,10,10,32,32,32,32,84,104,101, + 32,109,111,100,117,108,101,32,105,115,32,110,111,116,32,97, + 100,100,101,100,32,116,111,32,105,116,115,32,112,97,114,101, + 110,116,46,10,10,32,32,32,32,73,102,32,97,32,109,111, + 100,117,108,101,32,105,115,32,97,108,114,101,97,100,121,32, + 105,110,32,115,121,115,46,109,111,100,117,108,101,115,44,32, + 116,104,97,116,32,101,120,105,115,116,105,110,103,32,109,111, + 100,117,108,101,32,103,101,116,115,10,32,32,32,32,99,108, + 111,98,98,101,114,101,100,46,10,10,32,32,32,32,78,41, + 5,114,57,0,0,0,114,145,0,0,0,114,54,0,0,0, + 114,15,0,0,0,114,149,0,0,0,41,1,114,88,0,0, + 0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, + 114,87,0,0,0,161,2,0,0,115,6,0,0,0,0,9, + 10,1,16,1,114,87,0,0,0,99,0,0,0,0,0,0, + 0,0,0,0,0,0,5,0,0,0,64,0,0,0,115,181, + 0,0,0,101,0,0,90,1,0,100,0,0,90,2,0,100, + 1,0,90,3,0,101,4,0,100,2,0,100,3,0,132,0, + 0,131,1,0,90,5,0,101,6,0,100,4,0,100,4,0, + 100,5,0,100,6,0,132,2,0,131,1,0,90,7,0,101, + 6,0,100,4,0,100,7,0,100,8,0,132,1,0,131,1, + 0,90,8,0,101,6,0,101,9,0,100,9,0,100,10,0, + 132,0,0,131,1,0,131,1,0,90,10,0,101,6,0,101, + 9,0,100,11,0,100,12,0,132,0,0,131,1,0,131,1, + 0,90,11,0,101,6,0,101,9,0,100,13,0,100,14,0, + 132,0,0,131,1,0,131,1,0,90,12,0,101,6,0,101, + 9,0,100,15,0,100,16,0,132,0,0,131,1,0,131,1, + 0,90,13,0,100,4,0,83,41,17,218,15,66,117,105,108, + 116,105,110,73,109,112,111,114,116,101,114,122,144,77,101,116, + 97,32,112,97,116,104,32,105,109,112,111,114,116,32,102,111, + 114,32,98,117,105,108,116,45,105,110,32,109,111,100,117,108, 101,115,46,10,10,32,32,32,32,65,108,108,32,109,101,116, 104,111,100,115,32,97,114,101,32,101,105,116,104,101,114,32, 99,108,97,115,115,32,111,114,32,115,116,97,116,105,99,32, @@ -2159,1902 +1234,544 @@ 112,114,101,99,97,116,101,100,46,32,32,84,104,101,32,105, 109,112,111,114,116,32,109,97,99,104,105,110,101,114,121,32, 100,111,101,115,32,116,104,101,32,106,111,98,32,105,116,115, - 101,108,102,46,10,10,32,32,32,32,32,32,32,32,122,22, - 60,109,111,100,117,108,101,32,123,33,114,125,32,40,102,114, - 111,122,101,110,41,62,41,2,114,47,0,0,0,114,57,0, - 0,0,41,1,218,1,109,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,114,207,0,0,0,29,5,0,0,115, - 2,0,0,0,0,7,122,26,70,114,111,122,101,110,73,109, - 112,111,114,116,101,114,46,109,111,100,117,108,101,95,114,101, - 112,114,78,99,4,0,0,0,0,0,0,0,4,0,0,0, - 5,0,0,0,67,0,0,0,115,42,0,0,0,116,0,0, - 106,1,0,124,1,0,131,1,0,114,34,0,116,2,0,124, - 1,0,124,0,0,100,1,0,100,2,0,131,2,1,83,100, - 0,0,83,100,0,0,83,41,3,78,114,221,0,0,0,90, - 6,102,114,111,122,101,110,41,3,114,106,0,0,0,114,168, - 0,0,0,114,177,0,0,0,41,4,114,13,1,0,0,114, - 164,0,0,0,114,35,0,0,0,114,14,1,0,0,114,4, - 0,0,0,114,4,0,0,0,114,5,0,0,0,114,15,1, - 0,0,38,5,0,0,115,6,0,0,0,0,2,15,1,19, - 2,122,24,70,114,111,122,101,110,73,109,112,111,114,116,101, - 114,46,102,105,110,100,95,115,112,101,99,99,3,0,0,0, - 0,0,0,0,3,0,0,0,2,0,0,0,67,0,0,0, - 115,23,0,0,0,116,0,0,106,1,0,124,1,0,131,1, - 0,114,19,0,124,0,0,83,100,1,0,83,41,2,122,93, - 70,105,110,100,32,97,32,102,114,111,122,101,110,32,109,111, - 100,117,108,101,46,10,10,32,32,32,32,32,32,32,32,84, - 104,105,115,32,109,101,116,104,111,100,32,105,115,32,100,101, - 112,114,101,99,97,116,101,100,46,32,32,85,115,101,32,102, - 105,110,100,95,115,112,101,99,40,41,32,105,110,115,116,101, - 97,100,46,10,10,32,32,32,32,32,32,32,32,78,41,2, - 114,106,0,0,0,114,168,0,0,0,41,3,114,13,1,0, - 0,114,164,0,0,0,114,35,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,114,16,1,0,0,45, - 5,0,0,115,2,0,0,0,0,7,122,26,70,114,111,122, - 101,110,73,109,112,111,114,116,101,114,46,102,105,110,100,95, - 109,111,100,117,108,101,99,2,0,0,0,0,0,0,0,2, - 0,0,0,1,0,0,0,67,0,0,0,115,4,0,0,0, - 100,1,0,83,41,2,122,42,85,115,101,32,100,101,102,97, - 117,108,116,32,115,101,109,97,110,116,105,99,115,32,102,111, - 114,32,109,111,100,117,108,101,32,99,114,101,97,116,105,111, - 110,46,78,114,4,0,0,0,41,2,114,13,1,0,0,114, - 180,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, - 0,0,0,114,2,1,0,0,54,5,0,0,115,0,0,0, - 0,122,28,70,114,111,122,101,110,73,109,112,111,114,116,101, - 114,46,99,114,101,97,116,101,95,109,111,100,117,108,101,99, - 1,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0, - 67,0,0,0,115,92,0,0,0,124,0,0,106,0,0,106, - 1,0,125,1,0,116,2,0,106,3,0,124,1,0,131,1, - 0,115,54,0,116,4,0,100,1,0,106,5,0,124,1,0, - 131,1,0,100,2,0,124,1,0,131,1,1,130,1,0,116, - 6,0,116,2,0,106,7,0,124,1,0,131,2,0,125,2, - 0,116,8,0,124,2,0,124,0,0,106,9,0,131,2,0, - 1,100,0,0,83,41,3,78,122,27,123,33,114,125,32,105, - 115,32,110,111,116,32,97,32,102,114,111,122,101,110,32,109, - 111,100,117,108,101,114,67,0,0,0,41,10,114,210,0,0, - 0,114,67,0,0,0,114,106,0,0,0,114,168,0,0,0, - 114,159,0,0,0,114,47,0,0,0,114,114,0,0,0,218, - 17,103,101,116,95,102,114,111,122,101,110,95,111,98,106,101, - 99,116,218,4,101,120,101,99,114,63,0,0,0,41,3,114, - 181,0,0,0,114,67,0,0,0,114,196,0,0,0,114,4, - 0,0,0,114,4,0,0,0,114,5,0,0,0,114,3,1, - 0,0,58,5,0,0,115,12,0,0,0,0,2,12,1,15, - 1,18,1,9,1,18,1,122,26,70,114,111,122,101,110,73, - 109,112,111,114,116,101,114,46,101,120,101,99,95,109,111,100, - 117,108,101,99,2,0,0,0,0,0,0,0,2,0,0,0, - 3,0,0,0,67,0,0,0,115,13,0,0,0,116,0,0, - 124,0,0,124,1,0,131,2,0,83,41,1,122,95,76,111, - 97,100,32,97,32,102,114,111,122,101,110,32,109,111,100,117, - 108,101,46,10,10,32,32,32,32,32,32,32,32,84,104,105, - 115,32,109,101,116,104,111,100,32,105,115,32,100,101,112,114, - 101,99,97,116,101,100,46,32,32,85,115,101,32,101,120,101, - 99,95,109,111,100,117,108,101,40,41,32,105,110,115,116,101, - 97,100,46,10,10,32,32,32,32,32,32,32,32,41,1,114, - 182,0,0,0,41,2,114,13,1,0,0,114,164,0,0,0, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, - 6,1,0,0,67,5,0,0,115,2,0,0,0,0,7,122, - 26,70,114,111,122,101,110,73,109,112,111,114,116,101,114,46, - 108,111,97,100,95,109,111,100,117,108,101,99,2,0,0,0, - 0,0,0,0,2,0,0,0,2,0,0,0,67,0,0,0, - 115,13,0,0,0,116,0,0,106,1,0,124,1,0,131,1, - 0,83,41,1,122,45,82,101,116,117,114,110,32,116,104,101, - 32,99,111,100,101,32,111,98,106,101,99,116,32,102,111,114, - 32,116,104,101,32,102,114,111,122,101,110,32,109,111,100,117, - 108,101,46,41,2,114,106,0,0,0,114,23,1,0,0,41, - 2,114,13,1,0,0,114,164,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,114,17,1,0,0,76, - 5,0,0,115,2,0,0,0,0,4,122,23,70,114,111,122, - 101,110,73,109,112,111,114,116,101,114,46,103,101,116,95,99, + 101,108,102,46,10,10,32,32,32,32,32,32,32,32,122,24, + 60,109,111,100,117,108,101,32,123,33,114,125,32,40,98,117, + 105,108,116,45,105,110,41,62,41,2,114,50,0,0,0,114, + 1,0,0,0,41,1,114,89,0,0,0,114,10,0,0,0, + 114,10,0,0,0,114,11,0,0,0,114,92,0,0,0,186, + 2,0,0,115,2,0,0,0,0,7,122,27,66,117,105,108, + 116,105,110,73,109,112,111,114,116,101,114,46,109,111,100,117, + 108,101,95,114,101,112,114,78,99,4,0,0,0,0,0,0, + 0,4,0,0,0,5,0,0,0,67,0,0,0,115,58,0, + 0,0,124,2,0,100,0,0,107,9,0,114,16,0,100,0, + 0,83,116,0,0,106,1,0,124,1,0,131,1,0,114,50, + 0,116,2,0,124,1,0,124,0,0,100,1,0,100,2,0, + 131,2,1,83,100,0,0,83,100,0,0,83,41,3,78,114, + 107,0,0,0,122,8,98,117,105,108,116,45,105,110,41,3, + 114,57,0,0,0,90,10,105,115,95,98,117,105,108,116,105, + 110,114,85,0,0,0,41,4,218,3,99,108,115,114,78,0, + 0,0,218,4,112,97,116,104,218,6,116,97,114,103,101,116, + 114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,218, + 9,102,105,110,100,95,115,112,101,99,195,2,0,0,115,10, + 0,0,0,0,2,12,1,4,1,15,1,19,2,122,25,66, + 117,105,108,116,105,110,73,109,112,111,114,116,101,114,46,102, + 105,110,100,95,115,112,101,99,99,3,0,0,0,0,0,0, + 0,4,0,0,0,3,0,0,0,67,0,0,0,115,41,0, + 0,0,124,0,0,106,0,0,124,1,0,124,2,0,131,2, + 0,125,3,0,124,3,0,100,1,0,107,9,0,114,37,0, + 124,3,0,106,1,0,83,100,1,0,83,41,2,122,175,70, + 105,110,100,32,116,104,101,32,98,117,105,108,116,45,105,110, + 32,109,111,100,117,108,101,46,10,10,32,32,32,32,32,32, + 32,32,73,102,32,39,112,97,116,104,39,32,105,115,32,101, + 118,101,114,32,115,112,101,99,105,102,105,101,100,32,116,104, + 101,110,32,116,104,101,32,115,101,97,114,99,104,32,105,115, + 32,99,111,110,115,105,100,101,114,101,100,32,97,32,102,97, + 105,108,117,114,101,46,10,10,32,32,32,32,32,32,32,32, + 84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,100, + 101,112,114,101,99,97,116,101,100,46,32,32,85,115,101,32, + 102,105,110,100,95,115,112,101,99,40,41,32,105,110,115,116, + 101,97,100,46,10,10,32,32,32,32,32,32,32,32,78,41, + 2,114,154,0,0,0,114,99,0,0,0,41,4,114,151,0, + 0,0,114,78,0,0,0,114,152,0,0,0,114,88,0,0, + 0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, + 218,11,102,105,110,100,95,109,111,100,117,108,101,204,2,0, + 0,115,4,0,0,0,0,9,18,1,122,27,66,117,105,108, + 116,105,110,73,109,112,111,114,116,101,114,46,102,105,110,100, + 95,109,111,100,117,108,101,99,2,0,0,0,0,0,0,0, + 3,0,0,0,10,0,0,0,67,0,0,0,115,59,0,0, + 0,116,0,0,124,1,0,131,1,0,143,23,0,1,116,1, + 0,116,2,0,106,3,0,124,1,0,131,2,0,125,2,0, + 87,100,1,0,81,88,124,0,0,124,2,0,95,4,0,100, + 2,0,124,2,0,95,5,0,124,2,0,83,41,3,122,23, + 76,111,97,100,32,97,32,98,117,105,108,116,45,105,110,32, + 109,111,100,117,108,101,46,78,218,0,41,6,114,17,0,0, + 0,114,65,0,0,0,114,57,0,0,0,90,12,105,110,105, + 116,95,98,117,105,108,116,105,110,114,91,0,0,0,114,135, + 0,0,0,41,3,114,151,0,0,0,114,78,0,0,0,114, + 89,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11, + 0,0,0,114,146,0,0,0,216,2,0,0,115,10,0,0, + 0,0,6,13,1,24,1,9,1,9,1,122,27,66,117,105, + 108,116,105,110,73,109,112,111,114,116,101,114,46,108,111,97, + 100,95,109,111,100,117,108,101,99,2,0,0,0,0,0,0, + 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, + 0,0,100,1,0,83,41,2,122,57,82,101,116,117,114,110, + 32,78,111,110,101,32,97,115,32,98,117,105,108,116,45,105, + 110,32,109,111,100,117,108,101,115,32,100,111,32,110,111,116, + 32,104,97,118,101,32,99,111,100,101,32,111,98,106,101,99, + 116,115,46,78,114,10,0,0,0,41,2,114,151,0,0,0, + 114,78,0,0,0,114,10,0,0,0,114,10,0,0,0,114, + 11,0,0,0,218,8,103,101,116,95,99,111,100,101,228,2, + 0,0,115,2,0,0,0,0,4,122,24,66,117,105,108,116, + 105,110,73,109,112,111,114,116,101,114,46,103,101,116,95,99, 111,100,101,99,2,0,0,0,0,0,0,0,2,0,0,0, 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, - 83,41,2,122,54,82,101,116,117,114,110,32,78,111,110,101, - 32,97,115,32,102,114,111,122,101,110,32,109,111,100,117,108, - 101,115,32,100,111,32,110,111,116,32,104,97,118,101,32,115, - 111,117,114,99,101,32,99,111,100,101,46,78,114,4,0,0, - 0,41,2,114,13,1,0,0,114,164,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,114,18,1,0, - 0,82,5,0,0,115,2,0,0,0,0,4,122,25,70,114, - 111,122,101,110,73,109,112,111,114,116,101,114,46,103,101,116, - 95,115,111,117,114,99,101,99,2,0,0,0,0,0,0,0, - 2,0,0,0,2,0,0,0,67,0,0,0,115,13,0,0, - 0,116,0,0,106,1,0,124,1,0,131,1,0,83,41,1, - 122,46,82,101,116,117,114,110,32,84,114,117,101,32,105,102, - 32,116,104,101,32,102,114,111,122,101,110,32,109,111,100,117, - 108,101,32,105,115,32,97,32,112,97,99,107,97,103,101,46, - 41,2,114,106,0,0,0,90,17,105,115,95,102,114,111,122, - 101,110,95,112,97,99,107,97,103,101,41,2,114,13,1,0, - 0,114,164,0,0,0,114,4,0,0,0,114,4,0,0,0, - 114,5,0,0,0,114,223,0,0,0,88,5,0,0,115,2, - 0,0,0,0,4,122,25,70,114,111,122,101,110,73,109,112, - 111,114,116,101,114,46,105,115,95,112,97,99,107,97,103,101, - 41,16,114,57,0,0,0,114,56,0,0,0,114,58,0,0, - 0,114,59,0,0,0,114,19,1,0,0,114,207,0,0,0, - 114,20,1,0,0,114,15,1,0,0,114,16,1,0,0,114, - 2,1,0,0,114,3,1,0,0,114,6,1,0,0,114,170, - 0,0,0,114,17,1,0,0,114,18,1,0,0,114,223,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,114,21,1,0,0,20,5,0,0,115, - 30,0,0,0,12,7,6,2,18,9,3,1,21,6,3,1, - 18,8,18,4,18,9,18,9,3,1,21,5,3,1,21,5, - 3,1,114,21,1,0,0,99,0,0,0,0,0,0,0,0, - 0,0,0,0,5,0,0,0,64,0,0,0,115,121,0,0, - 0,101,0,0,90,1,0,100,0,0,90,2,0,100,1,0, - 90,3,0,100,2,0,90,4,0,100,3,0,90,5,0,100, - 4,0,90,6,0,101,7,0,100,5,0,100,6,0,132,0, - 0,131,1,0,90,8,0,101,7,0,100,7,0,100,8,0, - 132,0,0,131,1,0,90,9,0,101,7,0,100,9,0,100, - 9,0,100,10,0,100,11,0,132,2,0,131,1,0,90,10, - 0,101,7,0,100,9,0,100,12,0,100,13,0,132,1,0, - 131,1,0,90,11,0,100,9,0,83,41,14,218,21,87,105, - 110,100,111,119,115,82,101,103,105,115,116,114,121,70,105,110, - 100,101,114,122,62,77,101,116,97,32,112,97,116,104,32,102, - 105,110,100,101,114,32,102,111,114,32,109,111,100,117,108,101, - 115,32,100,101,99,108,97,114,101,100,32,105,110,32,116,104, - 101,32,87,105,110,100,111,119,115,32,114,101,103,105,115,116, - 114,121,46,122,59,83,111,102,116,119,97,114,101,92,80,121, - 116,104,111,110,92,80,121,116,104,111,110,67,111,114,101,92, - 123,115,121,115,95,118,101,114,115,105,111,110,125,92,77,111, - 100,117,108,101,115,92,123,102,117,108,108,110,97,109,101,125, - 122,65,83,111,102,116,119,97,114,101,92,80,121,116,104,111, - 110,92,80,121,116,104,111,110,67,111,114,101,92,123,115,121, - 115,95,118,101,114,115,105,111,110,125,92,77,111,100,117,108, - 101,115,92,123,102,117,108,108,110,97,109,101,125,92,68,101, - 98,117,103,70,99,2,0,0,0,0,0,0,0,2,0,0, - 0,11,0,0,0,67,0,0,0,115,67,0,0,0,121,23, - 0,116,0,0,106,1,0,116,0,0,106,2,0,124,1,0, - 131,2,0,83,87,110,37,0,4,116,3,0,107,10,0,114, - 62,0,1,1,1,116,0,0,106,1,0,116,0,0,106,4, - 0,124,1,0,131,2,0,83,89,110,1,0,88,100,0,0, - 83,41,1,78,41,5,218,7,95,119,105,110,114,101,103,90, - 7,79,112,101,110,75,101,121,90,17,72,75,69,89,95,67, - 85,82,82,69,78,84,95,85,83,69,82,114,40,0,0,0, - 90,18,72,75,69,89,95,76,79,67,65,76,95,77,65,67, - 72,73,78,69,41,2,114,13,1,0,0,218,3,107,101,121, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, - 14,95,111,112,101,110,95,114,101,103,105,115,116,114,121,107, - 5,0,0,115,8,0,0,0,0,2,3,1,23,1,13,1, - 122,36,87,105,110,100,111,119,115,82,101,103,105,115,116,114, - 121,70,105,110,100,101,114,46,95,111,112,101,110,95,114,101, - 103,105,115,116,114,121,99,2,0,0,0,0,0,0,0,6, - 0,0,0,16,0,0,0,67,0,0,0,115,142,0,0,0, - 124,0,0,106,0,0,114,21,0,124,0,0,106,1,0,125, - 2,0,110,9,0,124,0,0,106,2,0,125,2,0,124,2, - 0,106,3,0,100,1,0,124,1,0,100,2,0,116,4,0, - 106,5,0,100,0,0,100,3,0,133,2,0,25,131,0,2, - 125,3,0,121,46,0,124,0,0,106,6,0,124,3,0,131, - 1,0,143,25,0,125,4,0,116,7,0,106,8,0,124,4, - 0,100,4,0,131,2,0,125,5,0,87,100,0,0,81,88, - 87,110,22,0,4,116,9,0,107,10,0,114,137,0,1,1, - 1,100,0,0,83,89,110,1,0,88,124,5,0,83,41,5, - 78,114,164,0,0,0,90,11,115,121,115,95,118,101,114,115, - 105,111,110,114,139,0,0,0,114,30,0,0,0,41,10,218, - 11,68,69,66,85,71,95,66,85,73,76,68,218,18,82,69, - 71,73,83,84,82,89,95,75,69,89,95,68,69,66,85,71, - 218,12,82,69,71,73,83,84,82,89,95,75,69,89,114,47, - 0,0,0,114,7,0,0,0,218,7,118,101,114,115,105,111, - 110,114,28,1,0,0,114,26,1,0,0,90,10,81,117,101, - 114,121,86,97,108,117,101,114,40,0,0,0,41,6,114,13, - 1,0,0,114,164,0,0,0,90,12,114,101,103,105,115,116, - 114,121,95,107,101,121,114,27,1,0,0,90,4,104,107,101, - 121,218,8,102,105,108,101,112,97,116,104,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,218,16,95,115,101,97, - 114,99,104,95,114,101,103,105,115,116,114,121,114,5,0,0, - 115,22,0,0,0,0,2,9,1,12,2,9,1,15,1,22, - 1,3,1,18,1,28,1,13,1,9,1,122,38,87,105,110, - 100,111,119,115,82,101,103,105,115,116,114,121,70,105,110,100, - 101,114,46,95,115,101,97,114,99,104,95,114,101,103,105,115, - 116,114,121,78,99,4,0,0,0,0,0,0,0,8,0,0, - 0,14,0,0,0,67,0,0,0,115,155,0,0,0,124,0, - 0,106,0,0,124,1,0,131,1,0,125,4,0,124,4,0, - 100,0,0,107,8,0,114,31,0,100,0,0,83,121,14,0, - 116,1,0,124,4,0,131,1,0,1,87,110,22,0,4,116, - 2,0,107,10,0,114,69,0,1,1,1,100,0,0,83,89, - 110,1,0,88,120,78,0,116,3,0,131,0,0,68,93,67, - 0,92,2,0,125,5,0,125,6,0,124,4,0,106,4,0, - 116,5,0,124,6,0,131,1,0,131,1,0,114,80,0,116, - 6,0,124,1,0,124,5,0,124,1,0,124,4,0,131,2, - 0,100,1,0,124,4,0,131,2,1,125,7,0,124,7,0, - 83,113,80,0,87,100,0,0,83,41,2,78,114,221,0,0, - 0,41,7,114,34,1,0,0,114,39,0,0,0,114,40,0, - 0,0,114,243,0,0,0,114,234,0,0,0,114,235,0,0, - 0,114,177,0,0,0,41,8,114,13,1,0,0,114,164,0, - 0,0,114,35,0,0,0,114,14,1,0,0,114,33,1,0, - 0,114,173,0,0,0,114,247,0,0,0,114,180,0,0,0, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, - 15,1,0,0,129,5,0,0,115,24,0,0,0,0,2,15, - 1,12,1,4,1,3,1,14,1,13,1,9,1,22,1,21, - 1,21,1,9,1,122,31,87,105,110,100,111,119,115,82,101, - 103,105,115,116,114,121,70,105,110,100,101,114,46,102,105,110, - 100,95,115,112,101,99,99,3,0,0,0,0,0,0,0,4, - 0,0,0,3,0,0,0,67,0,0,0,115,45,0,0,0, - 124,0,0,106,0,0,124,1,0,124,2,0,131,2,0,125, - 3,0,124,3,0,100,1,0,107,9,0,114,37,0,124,3, - 0,106,1,0,83,100,1,0,83,100,1,0,83,41,2,122, - 108,70,105,110,100,32,109,111,100,117,108,101,32,110,97,109, - 101,100,32,105,110,32,116,104,101,32,114,101,103,105,115,116, - 114,121,46,10,10,32,32,32,32,32,32,32,32,84,104,105, - 115,32,109,101,116,104,111,100,32,105,115,32,100,101,112,114, - 101,99,97,116,101,100,46,32,32,85,115,101,32,101,120,101, - 99,95,109,111,100,117,108,101,40,41,32,105,110,115,116,101, - 97,100,46,10,10,32,32,32,32,32,32,32,32,78,41,2, - 114,15,1,0,0,114,173,0,0,0,41,4,114,13,1,0, - 0,114,164,0,0,0,114,35,0,0,0,114,180,0,0,0, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, - 16,1,0,0,144,5,0,0,115,8,0,0,0,0,7,18, - 1,12,1,7,2,122,33,87,105,110,100,111,119,115,82,101, - 103,105,115,116,114,121,70,105,110,100,101,114,46,102,105,110, - 100,95,109,111,100,117,108,101,41,12,114,57,0,0,0,114, - 56,0,0,0,114,58,0,0,0,114,59,0,0,0,114,31, - 1,0,0,114,30,1,0,0,114,29,1,0,0,114,20,1, - 0,0,114,28,1,0,0,114,34,1,0,0,114,15,1,0, - 0,114,16,1,0,0,114,4,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,114,25,1,0,0,95, - 5,0,0,115,20,0,0,0,12,2,6,3,6,3,6,2, - 6,2,18,7,18,15,3,1,21,14,3,1,114,25,1,0, - 0,99,0,0,0,0,0,0,0,0,0,0,0,0,2,0, - 0,0,64,0,0,0,115,64,0,0,0,101,0,0,90,1, - 0,100,0,0,90,2,0,100,1,0,90,3,0,100,2,0, - 100,3,0,132,0,0,90,4,0,100,4,0,100,5,0,132, - 0,0,90,5,0,100,6,0,100,7,0,132,0,0,90,6, - 0,101,7,0,90,8,0,100,8,0,83,41,9,218,13,95, - 76,111,97,100,101,114,66,97,115,105,99,115,122,83,66,97, - 115,101,32,99,108,97,115,115,32,111,102,32,99,111,109,109, - 111,110,32,99,111,100,101,32,110,101,101,100,101,100,32,98, - 121,32,98,111,116,104,32,83,111,117,114,99,101,76,111,97, - 100,101,114,32,97,110,100,10,32,32,32,32,83,111,117,114, - 99,101,108,101,115,115,70,105,108,101,76,111,97,100,101,114, - 46,99,2,0,0,0,0,0,0,0,5,0,0,0,3,0, - 0,0,67,0,0,0,115,88,0,0,0,116,0,0,124,0, - 0,106,1,0,124,1,0,131,1,0,131,1,0,100,1,0, - 25,125,2,0,124,2,0,106,2,0,100,2,0,100,1,0, - 131,2,0,100,3,0,25,125,3,0,124,1,0,106,3,0, - 100,2,0,131,1,0,100,4,0,25,125,4,0,124,3,0, - 100,5,0,107,2,0,111,87,0,124,4,0,100,5,0,107, - 3,0,83,41,6,122,141,67,111,110,99,114,101,116,101,32, - 105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111, - 102,32,73,110,115,112,101,99,116,76,111,97,100,101,114,46, - 105,115,95,112,97,99,107,97,103,101,32,98,121,32,99,104, - 101,99,107,105,110,103,32,105,102,10,32,32,32,32,32,32, - 32,32,116,104,101,32,112,97,116,104,32,114,101,116,117,114, - 110,101,100,32,98,121,32,103,101,116,95,102,105,108,101,110, - 97,109,101,32,104,97,115,32,97,32,102,105,108,101,110,97, - 109,101,32,111,102,32,39,95,95,105,110,105,116,95,95,46, - 112,121,39,46,114,29,0,0,0,114,117,0,0,0,114,84, - 0,0,0,114,115,0,0,0,114,72,0,0,0,41,4,114, - 38,0,0,0,114,241,0,0,0,114,34,0,0,0,114,32, - 0,0,0,41,5,114,71,0,0,0,114,164,0,0,0,114, - 214,0,0,0,90,13,102,105,108,101,110,97,109,101,95,98, - 97,115,101,90,9,116,97,105,108,95,110,97,109,101,114,4, - 0,0,0,114,4,0,0,0,114,5,0,0,0,114,223,0, - 0,0,163,5,0,0,115,8,0,0,0,0,3,25,1,22, - 1,19,1,122,24,95,76,111,97,100,101,114,66,97,115,105, - 99,115,46,105,115,95,112,97,99,107,97,103,101,99,2,0, - 0,0,0,0,0,0,2,0,0,0,1,0,0,0,67,0, - 0,0,115,4,0,0,0,100,1,0,83,41,2,122,42,85, - 115,101,32,100,101,102,97,117,108,116,32,115,101,109,97,110, - 116,105,99,115,32,102,111,114,32,109,111,100,117,108,101,32, - 99,114,101,97,116,105,111,110,46,78,114,4,0,0,0,41, - 2,114,71,0,0,0,114,180,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,114,2,1,0,0,171, - 5,0,0,115,0,0,0,0,122,27,95,76,111,97,100,101, - 114,66,97,115,105,99,115,46,99,114,101,97,116,101,95,109, - 111,100,117,108,101,99,2,0,0,0,0,0,0,0,3,0, - 0,0,4,0,0,0,67,0,0,0,115,77,0,0,0,124, - 0,0,106,0,0,124,1,0,106,1,0,131,1,0,125,2, - 0,124,2,0,100,1,0,107,8,0,114,54,0,116,2,0, - 100,2,0,106,3,0,124,1,0,106,1,0,131,1,0,131, - 1,0,130,1,0,116,4,0,116,5,0,124,2,0,124,1, - 0,106,6,0,131,3,0,1,100,1,0,83,41,3,122,19, - 69,120,101,99,117,116,101,32,116,104,101,32,109,111,100,117, - 108,101,46,78,122,52,99,97,110,110,111,116,32,108,111,97, - 100,32,109,111,100,117,108,101,32,123,33,114,125,32,119,104, - 101,110,32,103,101,116,95,99,111,100,101,40,41,32,114,101, - 116,117,114,110,115,32,78,111,110,101,41,7,114,17,1,0, - 0,114,57,0,0,0,114,159,0,0,0,114,47,0,0,0, - 114,114,0,0,0,114,24,1,0,0,114,63,0,0,0,41, - 3,114,71,0,0,0,114,181,0,0,0,114,196,0,0,0, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, - 3,1,0,0,174,5,0,0,115,10,0,0,0,0,2,18, - 1,12,1,9,1,15,1,122,25,95,76,111,97,100,101,114, - 66,97,115,105,99,115,46,101,120,101,99,95,109,111,100,117, - 108,101,78,41,9,114,57,0,0,0,114,56,0,0,0,114, - 58,0,0,0,114,59,0,0,0,114,223,0,0,0,114,2, - 1,0,0,114,3,1,0,0,114,182,0,0,0,114,6,1, - 0,0,114,4,0,0,0,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,114,35,1,0,0,158,5,0,0,115, - 10,0,0,0,12,3,6,2,12,8,12,3,12,8,114,35, - 1,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0, - 4,0,0,0,64,0,0,0,115,106,0,0,0,101,0,0, - 90,1,0,100,0,0,90,2,0,100,1,0,100,2,0,132, - 0,0,90,3,0,100,3,0,100,4,0,132,0,0,90,4, - 0,100,5,0,100,6,0,132,0,0,90,5,0,100,7,0, - 100,8,0,132,0,0,90,6,0,100,9,0,100,10,0,132, - 0,0,90,7,0,100,11,0,100,18,0,100,13,0,100,14, - 0,132,0,1,90,8,0,100,15,0,100,16,0,132,0,0, - 90,9,0,100,17,0,83,41,19,218,12,83,111,117,114,99, - 101,76,111,97,100,101,114,99,2,0,0,0,0,0,0,0, - 2,0,0,0,1,0,0,0,67,0,0,0,115,10,0,0, - 0,116,0,0,130,1,0,100,1,0,83,41,2,122,178,79, - 112,116,105,111,110,97,108,32,109,101,116,104,111,100,32,116, - 104,97,116,32,114,101,116,117,114,110,115,32,116,104,101,32, - 109,111,100,105,102,105,99,97,116,105,111,110,32,116,105,109, - 101,32,40,97,110,32,105,110,116,41,32,102,111,114,32,116, - 104,101,10,32,32,32,32,32,32,32,32,115,112,101,99,105, - 102,105,101,100,32,112,97,116,104,44,32,119,104,101,114,101, - 32,112,97,116,104,32,105,115,32,97,32,115,116,114,46,10, - 10,32,32,32,32,32,32,32,32,82,97,105,115,101,115,32, - 73,79,69,114,114,111,114,32,119,104,101,110,32,116,104,101, - 32,112,97,116,104,32,99,97,110,110,111,116,32,98,101,32, - 104,97,110,100,108,101,100,46,10,32,32,32,32,32,32,32, - 32,78,41,1,218,7,73,79,69,114,114,111,114,41,2,114, - 71,0,0,0,114,35,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,218,10,112,97,116,104,95,109, - 116,105,109,101,187,5,0,0,115,2,0,0,0,0,6,122, - 23,83,111,117,114,99,101,76,111,97,100,101,114,46,112,97, - 116,104,95,109,116,105,109,101,99,2,0,0,0,0,0,0, - 0,2,0,0,0,3,0,0,0,67,0,0,0,115,20,0, - 0,0,105,1,0,124,0,0,106,0,0,124,1,0,131,1, - 0,100,1,0,54,83,41,2,97,170,1,0,0,79,112,116, - 105,111,110,97,108,32,109,101,116,104,111,100,32,114,101,116, - 117,114,110,105,110,103,32,97,32,109,101,116,97,100,97,116, - 97,32,100,105,99,116,32,102,111,114,32,116,104,101,32,115, - 112,101,99,105,102,105,101,100,32,112,97,116,104,10,32,32, - 32,32,32,32,32,32,116,111,32,98,121,32,116,104,101,32, - 112,97,116,104,32,40,115,116,114,41,46,10,32,32,32,32, - 32,32,32,32,80,111,115,115,105,98,108,101,32,107,101,121, - 115,58,10,32,32,32,32,32,32,32,32,45,32,39,109,116, - 105,109,101,39,32,40,109,97,110,100,97,116,111,114,121,41, - 32,105,115,32,116,104,101,32,110,117,109,101,114,105,99,32, - 116,105,109,101,115,116,97,109,112,32,111,102,32,108,97,115, - 116,32,115,111,117,114,99,101,10,32,32,32,32,32,32,32, - 32,32,32,99,111,100,101,32,109,111,100,105,102,105,99,97, - 116,105,111,110,59,10,32,32,32,32,32,32,32,32,45,32, - 39,115,105,122,101,39,32,40,111,112,116,105,111,110,97,108, - 41,32,105,115,32,116,104,101,32,115,105,122,101,32,105,110, - 32,98,121,116,101,115,32,111,102,32,116,104,101,32,115,111, - 117,114,99,101,32,99,111,100,101,46,10,10,32,32,32,32, - 32,32,32,32,73,109,112,108,101,109,101,110,116,105,110,103, - 32,116,104,105,115,32,109,101,116,104,111,100,32,97,108,108, - 111,119,115,32,116,104,101,32,108,111,97,100,101,114,32,116, - 111,32,114,101,97,100,32,98,121,116,101,99,111,100,101,32, - 102,105,108,101,115,46,10,32,32,32,32,32,32,32,32,82, - 97,105,115,101,115,32,73,79,69,114,114,111,114,32,119,104, - 101,110,32,116,104,101,32,112,97,116,104,32,99,97,110,110, - 111,116,32,98,101,32,104,97,110,100,108,101,100,46,10,32, - 32,32,32,32,32,32,32,114,185,0,0,0,41,1,114,38, - 1,0,0,41,2,114,71,0,0,0,114,35,0,0,0,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,10, - 112,97,116,104,95,115,116,97,116,115,195,5,0,0,115,2, - 0,0,0,0,11,122,23,83,111,117,114,99,101,76,111,97, - 100,101,114,46,112,97,116,104,95,115,116,97,116,115,99,4, - 0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,67, - 0,0,0,115,16,0,0,0,124,0,0,106,0,0,124,2, - 0,124,3,0,131,2,0,83,41,1,122,228,79,112,116,105, - 111,110,97,108,32,109,101,116,104,111,100,32,119,104,105,99, - 104,32,119,114,105,116,101,115,32,100,97,116,97,32,40,98, - 121,116,101,115,41,32,116,111,32,97,32,102,105,108,101,32, - 112,97,116,104,32,40,97,32,115,116,114,41,46,10,10,32, - 32,32,32,32,32,32,32,73,109,112,108,101,109,101,110,116, - 105,110,103,32,116,104,105,115,32,109,101,116,104,111,100,32, - 97,108,108,111,119,115,32,102,111,114,32,116,104,101,32,119, - 114,105,116,105,110,103,32,111,102,32,98,121,116,101,99,111, - 100,101,32,102,105,108,101,115,46,10,10,32,32,32,32,32, - 32,32,32,84,104,101,32,115,111,117,114,99,101,32,112,97, - 116,104,32,105,115,32,110,101,101,100,101,100,32,105,110,32, - 111,114,100,101,114,32,116,111,32,99,111,114,114,101,99,116, - 108,121,32,116,114,97,110,115,102,101,114,32,112,101,114,109, - 105,115,115,105,111,110,115,10,32,32,32,32,32,32,32,32, - 41,1,218,8,115,101,116,95,100,97,116,97,41,4,114,71, - 0,0,0,114,148,0,0,0,90,10,99,97,99,104,101,95, - 112,97,116,104,114,53,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,218,15,95,99,97,99,104,101, - 95,98,121,116,101,99,111,100,101,208,5,0,0,115,2,0, - 0,0,0,8,122,28,83,111,117,114,99,101,76,111,97,100, - 101,114,46,95,99,97,99,104,101,95,98,121,116,101,99,111, - 100,101,99,3,0,0,0,0,0,0,0,3,0,0,0,1, - 0,0,0,67,0,0,0,115,4,0,0,0,100,1,0,83, - 41,2,122,150,79,112,116,105,111,110,97,108,32,109,101,116, - 104,111,100,32,119,104,105,99,104,32,119,114,105,116,101,115, - 32,100,97,116,97,32,40,98,121,116,101,115,41,32,116,111, - 32,97,32,102,105,108,101,32,112,97,116,104,32,40,97,32, - 115,116,114,41,46,10,10,32,32,32,32,32,32,32,32,73, - 109,112,108,101,109,101,110,116,105,110,103,32,116,104,105,115, - 32,109,101,116,104,111,100,32,97,108,108,111,119,115,32,102, - 111,114,32,116,104,101,32,119,114,105,116,105,110,103,32,111, - 102,32,98,121,116,101,99,111,100,101,32,102,105,108,101,115, - 46,10,32,32,32,32,32,32,32,32,78,114,4,0,0,0, - 41,3,114,71,0,0,0,114,35,0,0,0,114,53,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 114,40,1,0,0,218,5,0,0,115,0,0,0,0,122,21, - 83,111,117,114,99,101,76,111,97,100,101,114,46,115,101,116, - 95,100,97,116,97,99,2,0,0,0,0,0,0,0,5,0, - 0,0,16,0,0,0,67,0,0,0,115,105,0,0,0,124, - 0,0,106,0,0,124,1,0,131,1,0,125,2,0,121,19, - 0,124,0,0,106,1,0,124,2,0,131,1,0,125,3,0, - 87,110,58,0,4,116,2,0,107,10,0,114,94,0,1,125, - 4,0,1,122,26,0,116,3,0,100,1,0,100,2,0,124, - 1,0,131,1,1,124,4,0,130,2,0,87,89,100,3,0, - 100,3,0,125,4,0,126,4,0,88,110,1,0,88,116,4, - 0,124,3,0,131,1,0,83,41,4,122,52,67,111,110,99, - 114,101,116,101,32,105,109,112,108,101,109,101,110,116,97,116, - 105,111,110,32,111,102,32,73,110,115,112,101,99,116,76,111, - 97,100,101,114,46,103,101,116,95,115,111,117,114,99,101,46, - 122,39,115,111,117,114,99,101,32,110,111,116,32,97,118,97, - 105,108,97,98,108,101,32,116,104,114,111,117,103,104,32,103, - 101,116,95,100,97,116,97,40,41,114,67,0,0,0,78,41, - 5,114,241,0,0,0,218,8,103,101,116,95,100,97,116,97, - 114,40,0,0,0,114,159,0,0,0,114,205,0,0,0,41, - 5,114,71,0,0,0,114,164,0,0,0,114,35,0,0,0, - 114,203,0,0,0,218,3,101,120,99,114,4,0,0,0,114, - 4,0,0,0,114,5,0,0,0,114,18,1,0,0,225,5, - 0,0,115,14,0,0,0,0,2,15,1,3,1,19,1,18, - 1,9,1,31,1,122,23,83,111,117,114,99,101,76,111,97, - 100,101,114,46,103,101,116,95,115,111,117,114,99,101,218,9, - 95,111,112,116,105,109,105,122,101,114,29,0,0,0,99,3, - 0,0,0,1,0,0,0,4,0,0,0,9,0,0,0,67, - 0,0,0,115,31,0,0,0,116,0,0,116,1,0,124,1, - 0,124,2,0,100,1,0,100,2,0,100,3,0,100,4,0, - 124,3,0,131,4,2,83,41,5,122,130,82,101,116,117,114, - 110,32,116,104,101,32,99,111,100,101,32,111,98,106,101,99, - 116,32,99,111,109,112,105,108,101,100,32,102,114,111,109,32, - 115,111,117,114,99,101,46,10,10,32,32,32,32,32,32,32, - 32,84,104,101,32,39,100,97,116,97,39,32,97,114,103,117, - 109,101,110,116,32,99,97,110,32,98,101,32,97,110,121,32, - 111,98,106,101,99,116,32,116,121,112,101,32,116,104,97,116, - 32,99,111,109,112,105,108,101,40,41,32,115,117,112,112,111, - 114,116,115,46,10,32,32,32,32,32,32,32,32,114,24,1, - 0,0,218,12,100,111,110,116,95,105,110,104,101,114,105,116, - 84,114,126,0,0,0,41,2,114,114,0,0,0,218,7,99, - 111,109,112,105,108,101,41,4,114,71,0,0,0,114,53,0, - 0,0,114,35,0,0,0,114,44,1,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,218,14,115,111,117, - 114,99,101,95,116,111,95,99,111,100,101,235,5,0,0,115, - 4,0,0,0,0,5,18,1,122,27,83,111,117,114,99,101, - 76,111,97,100,101,114,46,115,111,117,114,99,101,95,116,111, - 95,99,111,100,101,99,2,0,0,0,0,0,0,0,10,0, - 0,0,43,0,0,0,67,0,0,0,115,174,1,0,0,124, - 0,0,106,0,0,124,1,0,131,1,0,125,2,0,100,1, - 0,125,3,0,121,16,0,116,1,0,124,2,0,131,1,0, - 125,4,0,87,110,24,0,4,116,2,0,107,10,0,114,63, - 0,1,1,1,100,1,0,125,4,0,89,110,202,0,88,121, - 19,0,124,0,0,106,3,0,124,2,0,131,1,0,125,5, - 0,87,110,18,0,4,116,4,0,107,10,0,114,103,0,1, - 1,1,89,110,162,0,88,116,5,0,124,5,0,100,2,0, - 25,131,1,0,125,3,0,121,19,0,124,0,0,106,6,0, - 124,4,0,131,1,0,125,6,0,87,110,18,0,4,116,7, - 0,107,10,0,114,159,0,1,1,1,89,110,106,0,88,121, - 34,0,116,8,0,124,6,0,100,3,0,124,5,0,100,4, - 0,124,1,0,100,5,0,124,4,0,131,1,3,125,7,0, - 87,110,24,0,4,116,9,0,116,10,0,102,2,0,107,10, - 0,114,220,0,1,1,1,89,110,45,0,88,116,11,0,100, - 6,0,124,4,0,124,2,0,131,3,0,1,116,12,0,124, - 7,0,100,4,0,124,1,0,100,7,0,124,4,0,100,8, - 0,124,2,0,131,1,3,83,124,0,0,106,6,0,124,2, - 0,131,1,0,125,8,0,124,0,0,106,13,0,124,8,0, - 124,2,0,131,2,0,125,9,0,116,11,0,100,9,0,124, - 2,0,131,2,0,1,116,14,0,106,15,0,12,114,170,1, - 124,4,0,100,1,0,107,9,0,114,170,1,124,3,0,100, - 1,0,107,9,0,114,170,1,116,16,0,124,9,0,124,3, - 0,116,17,0,124,8,0,131,1,0,131,3,0,125,6,0, - 121,36,0,124,0,0,106,18,0,124,2,0,124,4,0,124, - 6,0,131,3,0,1,116,11,0,100,10,0,124,4,0,131, - 2,0,1,87,110,18,0,4,116,2,0,107,10,0,114,169, - 1,1,1,1,89,110,1,0,88,124,9,0,83,41,11,122, - 190,67,111,110,99,114,101,116,101,32,105,109,112,108,101,109, - 101,110,116,97,116,105,111,110,32,111,102,32,73,110,115,112, - 101,99,116,76,111,97,100,101,114,46,103,101,116,95,99,111, - 100,101,46,10,10,32,32,32,32,32,32,32,32,82,101,97, - 100,105,110,103,32,111,102,32,98,121,116,101,99,111,100,101, - 32,114,101,113,117,105,114,101,115,32,112,97,116,104,95,115, - 116,97,116,115,32,116,111,32,98,101,32,105,109,112,108,101, - 109,101,110,116,101,100,46,32,84,111,32,119,114,105,116,101, - 10,32,32,32,32,32,32,32,32,98,121,116,101,99,111,100, - 101,44,32,115,101,116,95,100,97,116,97,32,109,117,115,116, - 32,97,108,115,111,32,98,101,32,105,109,112,108,101,109,101, - 110,116,101,100,46,10,10,32,32,32,32,32,32,32,32,78, - 114,185,0,0,0,114,189,0,0,0,114,67,0,0,0,114, - 35,0,0,0,122,13,123,125,32,109,97,116,99,104,101,115, - 32,123,125,114,147,0,0,0,114,148,0,0,0,122,19,99, - 111,100,101,32,111,98,106,101,99,116,32,102,114,111,109,32, - 123,125,122,10,119,114,111,116,101,32,123,33,114,125,41,19, - 114,241,0,0,0,114,138,0,0,0,114,124,0,0,0,114, - 39,1,0,0,114,37,1,0,0,114,14,0,0,0,114,42, - 1,0,0,114,40,0,0,0,114,192,0,0,0,114,159,0, - 0,0,114,188,0,0,0,114,158,0,0,0,114,197,0,0, - 0,114,47,1,0,0,114,7,0,0,0,218,19,100,111,110, - 116,95,119,114,105,116,101,95,98,121,116,101,99,111,100,101, - 114,200,0,0,0,114,31,0,0,0,114,41,1,0,0,41, - 10,114,71,0,0,0,114,164,0,0,0,114,148,0,0,0, - 114,190,0,0,0,114,147,0,0,0,218,2,115,116,114,53, - 0,0,0,218,10,98,121,116,101,115,95,100,97,116,97,114, - 203,0,0,0,90,11,99,111,100,101,95,111,98,106,101,99, - 116,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 114,17,1,0,0,243,5,0,0,115,78,0,0,0,0,7, - 15,1,6,1,3,1,16,1,13,1,11,2,3,1,19,1, - 13,1,5,2,16,1,3,1,19,1,13,1,5,2,3,1, - 9,1,12,1,13,1,19,1,5,2,9,1,7,1,15,1, - 6,1,7,1,15,1,18,1,13,1,22,1,12,1,9,1, - 15,1,3,1,19,1,17,1,13,1,5,1,122,21,83,111, - 117,114,99,101,76,111,97,100,101,114,46,103,101,116,95,99, - 111,100,101,78,114,145,0,0,0,41,10,114,57,0,0,0, - 114,56,0,0,0,114,58,0,0,0,114,38,1,0,0,114, - 39,1,0,0,114,41,1,0,0,114,40,1,0,0,114,18, - 1,0,0,114,47,1,0,0,114,17,1,0,0,114,4,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, - 0,114,36,1,0,0,185,5,0,0,115,14,0,0,0,12, - 2,12,8,12,13,12,10,12,7,12,10,18,8,114,36,1, - 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,4, - 0,0,0,0,0,0,0,115,112,0,0,0,101,0,0,90, + 83,41,2,122,56,82,101,116,117,114,110,32,78,111,110,101, + 32,97,115,32,98,117,105,108,116,45,105,110,32,109,111,100, + 117,108,101,115,32,100,111,32,110,111,116,32,104,97,118,101, + 32,115,111,117,114,99,101,32,99,111,100,101,46,78,114,10, + 0,0,0,41,2,114,151,0,0,0,114,78,0,0,0,114, + 10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,10, + 103,101,116,95,115,111,117,114,99,101,234,2,0,0,115,2, + 0,0,0,0,4,122,26,66,117,105,108,116,105,110,73,109, + 112,111,114,116,101,114,46,103,101,116,95,115,111,117,114,99, + 101,99,2,0,0,0,0,0,0,0,2,0,0,0,1,0, + 0,0,67,0,0,0,115,4,0,0,0,100,1,0,83,41, + 2,122,52,82,101,116,117,114,110,32,70,97,108,115,101,32, + 97,115,32,98,117,105,108,116,45,105,110,32,109,111,100,117, + 108,101,115,32,97,114,101,32,110,101,118,101,114,32,112,97, + 99,107,97,103,101,115,46,70,114,10,0,0,0,41,2,114, + 151,0,0,0,114,78,0,0,0,114,10,0,0,0,114,10, + 0,0,0,114,11,0,0,0,114,109,0,0,0,240,2,0, + 0,115,2,0,0,0,0,4,122,26,66,117,105,108,116,105, + 110,73,109,112,111,114,116,101,114,46,105,115,95,112,97,99, + 107,97,103,101,41,14,114,1,0,0,0,114,0,0,0,0, + 114,2,0,0,0,114,3,0,0,0,218,12,115,116,97,116, + 105,99,109,101,116,104,111,100,114,92,0,0,0,218,11,99, + 108,97,115,115,109,101,116,104,111,100,114,154,0,0,0,114, + 155,0,0,0,114,81,0,0,0,114,146,0,0,0,114,157, + 0,0,0,114,158,0,0,0,114,109,0,0,0,114,10,0, + 0,0,114,10,0,0,0,114,10,0,0,0,114,11,0,0, + 0,114,150,0,0,0,177,2,0,0,115,28,0,0,0,12, + 7,6,2,18,9,3,1,21,8,3,1,18,11,3,1,21, + 11,3,1,21,5,3,1,21,5,3,1,114,150,0,0,0, + 99,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0, + 0,64,0,0,0,115,211,0,0,0,101,0,0,90,1,0, + 100,0,0,90,2,0,100,1,0,90,3,0,101,4,0,100, + 2,0,100,3,0,132,0,0,131,1,0,90,5,0,101,6, + 0,100,4,0,100,4,0,100,5,0,100,6,0,132,2,0, + 131,1,0,90,7,0,101,6,0,100,4,0,100,7,0,100, + 8,0,132,1,0,131,1,0,90,8,0,101,6,0,100,9, + 0,100,10,0,132,0,0,131,1,0,90,9,0,101,4,0, + 100,11,0,100,12,0,132,0,0,131,1,0,90,10,0,101, + 6,0,100,13,0,100,14,0,132,0,0,131,1,0,90,11, + 0,101,6,0,101,12,0,100,15,0,100,16,0,132,0,0, + 131,1,0,131,1,0,90,13,0,101,6,0,101,12,0,100, + 17,0,100,18,0,132,0,0,131,1,0,131,1,0,90,14, + 0,101,6,0,101,12,0,100,19,0,100,20,0,132,0,0, + 131,1,0,131,1,0,90,15,0,100,4,0,83,41,21,218, + 14,70,114,111,122,101,110,73,109,112,111,114,116,101,114,122, + 142,77,101,116,97,32,112,97,116,104,32,105,109,112,111,114, + 116,32,102,111,114,32,102,114,111,122,101,110,32,109,111,100, + 117,108,101,115,46,10,10,32,32,32,32,65,108,108,32,109, + 101,116,104,111,100,115,32,97,114,101,32,101,105,116,104,101, + 114,32,99,108,97,115,115,32,111,114,32,115,116,97,116,105, + 99,32,109,101,116,104,111,100,115,32,116,111,32,97,118,111, + 105,100,32,116,104,101,32,110,101,101,100,32,116,111,10,32, + 32,32,32,105,110,115,116,97,110,116,105,97,116,101,32,116, + 104,101,32,99,108,97,115,115,46,10,10,32,32,32,32,99, + 1,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0, + 67,0,0,0,115,16,0,0,0,100,1,0,106,0,0,124, + 0,0,106,1,0,131,1,0,83,41,2,122,115,82,101,116, + 117,114,110,32,114,101,112,114,32,102,111,114,32,116,104,101, + 32,109,111,100,117,108,101,46,10,10,32,32,32,32,32,32, + 32,32,84,104,101,32,109,101,116,104,111,100,32,105,115,32, + 100,101,112,114,101,99,97,116,101,100,46,32,32,84,104,101, + 32,105,109,112,111,114,116,32,109,97,99,104,105,110,101,114, + 121,32,100,111,101,115,32,116,104,101,32,106,111,98,32,105, + 116,115,101,108,102,46,10,10,32,32,32,32,32,32,32,32, + 122,22,60,109,111,100,117,108,101,32,123,33,114,125,32,40, + 102,114,111,122,101,110,41,62,41,2,114,50,0,0,0,114, + 1,0,0,0,41,1,218,1,109,114,10,0,0,0,114,10, + 0,0,0,114,11,0,0,0,114,92,0,0,0,0,3,0, + 0,115,2,0,0,0,0,7,122,26,70,114,111,122,101,110, + 73,109,112,111,114,116,101,114,46,109,111,100,117,108,101,95, + 114,101,112,114,78,99,4,0,0,0,0,0,0,0,4,0, + 0,0,5,0,0,0,67,0,0,0,115,42,0,0,0,116, + 0,0,106,1,0,124,1,0,131,1,0,114,34,0,116,2, + 0,124,1,0,124,0,0,100,1,0,100,2,0,131,2,1, + 83,100,0,0,83,100,0,0,83,41,3,78,114,107,0,0, + 0,90,6,102,114,111,122,101,110,41,3,114,57,0,0,0, + 114,82,0,0,0,114,85,0,0,0,41,4,114,151,0,0, + 0,114,78,0,0,0,114,152,0,0,0,114,153,0,0,0, + 114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,114, + 154,0,0,0,9,3,0,0,115,6,0,0,0,0,2,15, + 1,19,2,122,24,70,114,111,122,101,110,73,109,112,111,114, + 116,101,114,46,102,105,110,100,95,115,112,101,99,99,3,0, + 0,0,0,0,0,0,3,0,0,0,2,0,0,0,67,0, + 0,0,115,23,0,0,0,116,0,0,106,1,0,124,1,0, + 131,1,0,114,19,0,124,0,0,83,100,1,0,83,41,2, + 122,93,70,105,110,100,32,97,32,102,114,111,122,101,110,32, + 109,111,100,117,108,101,46,10,10,32,32,32,32,32,32,32, + 32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32, + 100,101,112,114,101,99,97,116,101,100,46,32,32,85,115,101, + 32,102,105,110,100,95,115,112,101,99,40,41,32,105,110,115, + 116,101,97,100,46,10,10,32,32,32,32,32,32,32,32,78, + 41,2,114,57,0,0,0,114,82,0,0,0,41,3,114,151, + 0,0,0,114,78,0,0,0,114,152,0,0,0,114,10,0, + 0,0,114,10,0,0,0,114,11,0,0,0,114,155,0,0, + 0,16,3,0,0,115,2,0,0,0,0,7,122,26,70,114, + 111,122,101,110,73,109,112,111,114,116,101,114,46,102,105,110, + 100,95,109,111,100,117,108,101,99,2,0,0,0,0,0,0, + 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, + 0,0,100,1,0,83,41,2,122,42,85,115,101,32,100,101, + 102,97,117,108,116,32,115,101,109,97,110,116,105,99,115,32, + 102,111,114,32,109,111,100,117,108,101,32,99,114,101,97,116, + 105,111,110,46,78,114,10,0,0,0,41,2,114,151,0,0, + 0,114,88,0,0,0,114,10,0,0,0,114,10,0,0,0, + 114,11,0,0,0,114,138,0,0,0,25,3,0,0,115,0, + 0,0,0,122,28,70,114,111,122,101,110,73,109,112,111,114, + 116,101,114,46,99,114,101,97,116,101,95,109,111,100,117,108, + 101,99,1,0,0,0,0,0,0,0,3,0,0,0,4,0, + 0,0,67,0,0,0,115,92,0,0,0,124,0,0,106,0, + 0,106,1,0,125,1,0,116,2,0,106,3,0,124,1,0, + 131,1,0,115,54,0,116,4,0,100,1,0,106,5,0,124, + 1,0,131,1,0,100,2,0,124,1,0,131,1,1,130,1, + 0,116,6,0,116,2,0,106,7,0,124,1,0,131,2,0, + 125,2,0,116,8,0,124,2,0,124,0,0,106,9,0,131, + 2,0,1,100,0,0,83,41,3,78,122,27,123,33,114,125, + 32,105,115,32,110,111,116,32,97,32,102,114,111,122,101,110, + 32,109,111,100,117,108,101,114,15,0,0,0,41,10,114,95, + 0,0,0,114,15,0,0,0,114,57,0,0,0,114,82,0, + 0,0,114,77,0,0,0,114,50,0,0,0,114,65,0,0, + 0,218,17,103,101,116,95,102,114,111,122,101,110,95,111,98, + 106,101,99,116,218,4,101,120,101,99,114,7,0,0,0,41, + 3,114,89,0,0,0,114,15,0,0,0,218,4,99,111,100, + 101,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, + 114,139,0,0,0,29,3,0,0,115,12,0,0,0,0,2, + 12,1,15,1,18,1,9,1,18,1,122,26,70,114,111,122, + 101,110,73,109,112,111,114,116,101,114,46,101,120,101,99,95, + 109,111,100,117,108,101,99,2,0,0,0,0,0,0,0,3, + 0,0,0,3,0,0,0,67,0,0,0,115,29,0,0,0, + 100,1,0,100,2,0,108,0,0,109,1,0,125,2,0,1, + 124,2,0,124,0,0,124,1,0,131,2,0,83,41,3,122, + 95,76,111,97,100,32,97,32,102,114,111,122,101,110,32,109, + 111,100,117,108,101,46,10,10,32,32,32,32,32,32,32,32, + 84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,100, + 101,112,114,101,99,97,116,101,100,46,32,32,85,115,101,32, + 101,120,101,99,95,109,111,100,117,108,101,40,41,32,105,110, + 115,116,101,97,100,46,10,10,32,32,32,32,32,32,32,32, + 114,45,0,0,0,41,1,114,90,0,0,0,41,2,114,120, + 0,0,0,114,90,0,0,0,41,3,114,151,0,0,0,114, + 78,0,0,0,114,90,0,0,0,114,10,0,0,0,114,10, + 0,0,0,114,11,0,0,0,114,146,0,0,0,38,3,0, + 0,115,4,0,0,0,0,7,16,1,122,26,70,114,111,122, + 101,110,73,109,112,111,114,116,101,114,46,108,111,97,100,95, + 109,111,100,117,108,101,99,2,0,0,0,0,0,0,0,2, + 0,0,0,2,0,0,0,67,0,0,0,115,13,0,0,0, + 116,0,0,106,1,0,124,1,0,131,1,0,83,41,1,122, + 45,82,101,116,117,114,110,32,116,104,101,32,99,111,100,101, + 32,111,98,106,101,99,116,32,102,111,114,32,116,104,101,32, + 102,114,111,122,101,110,32,109,111,100,117,108,101,46,41,2, + 114,57,0,0,0,114,163,0,0,0,41,2,114,151,0,0, + 0,114,78,0,0,0,114,10,0,0,0,114,10,0,0,0, + 114,11,0,0,0,114,157,0,0,0,48,3,0,0,115,2, + 0,0,0,0,4,122,23,70,114,111,122,101,110,73,109,112, + 111,114,116,101,114,46,103,101,116,95,99,111,100,101,99,2, + 0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,67, + 0,0,0,115,4,0,0,0,100,1,0,83,41,2,122,54, + 82,101,116,117,114,110,32,78,111,110,101,32,97,115,32,102, + 114,111,122,101,110,32,109,111,100,117,108,101,115,32,100,111, + 32,110,111,116,32,104,97,118,101,32,115,111,117,114,99,101, + 32,99,111,100,101,46,78,114,10,0,0,0,41,2,114,151, + 0,0,0,114,78,0,0,0,114,10,0,0,0,114,10,0, + 0,0,114,11,0,0,0,114,158,0,0,0,54,3,0,0, + 115,2,0,0,0,0,4,122,25,70,114,111,122,101,110,73, + 109,112,111,114,116,101,114,46,103,101,116,95,115,111,117,114, + 99,101,99,2,0,0,0,0,0,0,0,2,0,0,0,2, + 0,0,0,67,0,0,0,115,13,0,0,0,116,0,0,106, + 1,0,124,1,0,131,1,0,83,41,1,122,46,82,101,116, + 117,114,110,32,84,114,117,101,32,105,102,32,116,104,101,32, + 102,114,111,122,101,110,32,109,111,100,117,108,101,32,105,115, + 32,97,32,112,97,99,107,97,103,101,46,41,2,114,57,0, + 0,0,90,17,105,115,95,102,114,111,122,101,110,95,112,97, + 99,107,97,103,101,41,2,114,151,0,0,0,114,78,0,0, + 0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, + 114,109,0,0,0,60,3,0,0,115,2,0,0,0,0,4, + 122,25,70,114,111,122,101,110,73,109,112,111,114,116,101,114, + 46,105,115,95,112,97,99,107,97,103,101,41,16,114,1,0, + 0,0,114,0,0,0,0,114,2,0,0,0,114,3,0,0, + 0,114,159,0,0,0,114,92,0,0,0,114,160,0,0,0, + 114,154,0,0,0,114,155,0,0,0,114,138,0,0,0,114, + 139,0,0,0,114,146,0,0,0,114,84,0,0,0,114,157, + 0,0,0,114,158,0,0,0,114,109,0,0,0,114,10,0, + 0,0,114,10,0,0,0,114,10,0,0,0,114,11,0,0, + 0,114,161,0,0,0,247,2,0,0,115,30,0,0,0,12, + 7,6,2,18,9,3,1,21,6,3,1,18,8,18,4,18, + 9,18,10,3,1,21,5,3,1,21,5,3,1,114,161,0, + 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,2, + 0,0,0,64,0,0,0,115,46,0,0,0,101,0,0,90, 1,0,100,0,0,90,2,0,100,1,0,90,3,0,100,2, 0,100,3,0,132,0,0,90,4,0,100,4,0,100,5,0, - 132,0,0,90,5,0,100,6,0,100,7,0,132,0,0,90, - 6,0,101,7,0,135,0,0,102,1,0,100,8,0,100,9, - 0,134,0,0,131,1,0,90,8,0,101,7,0,100,10,0, - 100,11,0,132,0,0,131,1,0,90,9,0,100,12,0,100, - 13,0,132,0,0,90,10,0,135,0,0,83,41,14,218,10, - 70,105,108,101,76,111,97,100,101,114,122,103,66,97,115,101, - 32,102,105,108,101,32,108,111,97,100,101,114,32,99,108,97, - 115,115,32,119,104,105,99,104,32,105,109,112,108,101,109,101, - 110,116,115,32,116,104,101,32,108,111,97,100,101,114,32,112, - 114,111,116,111,99,111,108,32,109,101,116,104,111,100,115,32, - 116,104,97,116,10,32,32,32,32,114,101,113,117,105,114,101, - 32,102,105,108,101,32,115,121,115,116,101,109,32,117,115,97, - 103,101,46,99,3,0,0,0,0,0,0,0,3,0,0,0, - 2,0,0,0,67,0,0,0,115,22,0,0,0,124,1,0, - 124,0,0,95,0,0,124,2,0,124,0,0,95,1,0,100, - 1,0,83,41,2,122,75,67,97,99,104,101,32,116,104,101, - 32,109,111,100,117,108,101,32,110,97,109,101,32,97,110,100, - 32,116,104,101,32,112,97,116,104,32,116,111,32,116,104,101, - 32,102,105,108,101,32,102,111,117,110,100,32,98,121,32,116, - 104,101,10,32,32,32,32,32,32,32,32,102,105,110,100,101, - 114,46,78,41,2,114,67,0,0,0,114,35,0,0,0,41, - 3,114,71,0,0,0,114,164,0,0,0,114,35,0,0,0, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, - 72,0,0,0,44,6,0,0,115,4,0,0,0,0,3,9, - 1,122,19,70,105,108,101,76,111,97,100,101,114,46,95,95, - 105,110,105,116,95,95,99,2,0,0,0,0,0,0,0,2, - 0,0,0,2,0,0,0,67,0,0,0,115,34,0,0,0, - 124,0,0,106,0,0,124,1,0,106,0,0,107,2,0,111, - 33,0,124,0,0,106,1,0,124,1,0,106,1,0,107,2, - 0,83,41,1,78,41,2,114,228,0,0,0,114,63,0,0, - 0,41,2,114,71,0,0,0,114,231,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,114,233,0,0, - 0,50,6,0,0,115,4,0,0,0,0,1,18,1,122,17, - 70,105,108,101,76,111,97,100,101,114,46,95,95,101,113,95, - 95,99,1,0,0,0,0,0,0,0,1,0,0,0,3,0, - 0,0,67,0,0,0,115,26,0,0,0,116,0,0,124,0, - 0,106,1,0,131,1,0,116,0,0,124,0,0,106,2,0, - 131,1,0,65,83,41,1,78,41,3,218,4,104,97,115,104, - 114,67,0,0,0,114,35,0,0,0,41,1,114,71,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 218,8,95,95,104,97,115,104,95,95,54,6,0,0,115,2, - 0,0,0,0,1,122,19,70,105,108,101,76,111,97,100,101, - 114,46,95,95,104,97,115,104,95,95,99,2,0,0,0,0, - 0,0,0,2,0,0,0,3,0,0,0,3,0,0,0,115, - 22,0,0,0,116,0,0,116,1,0,124,0,0,131,2,0, - 106,2,0,124,1,0,131,1,0,83,41,1,122,100,76,111, - 97,100,32,97,32,109,111,100,117,108,101,32,102,114,111,109, - 32,97,32,102,105,108,101,46,10,10,32,32,32,32,32,32, - 32,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115, - 32,100,101,112,114,101,99,97,116,101,100,46,32,32,85,115, - 101,32,101,120,101,99,95,109,111,100,117,108,101,40,41,32, - 105,110,115,116,101,97,100,46,10,10,32,32,32,32,32,32, - 32,32,41,3,218,5,115,117,112,101,114,114,51,1,0,0, - 114,6,1,0,0,41,2,114,71,0,0,0,114,164,0,0, - 0,41,1,114,228,0,0,0,114,4,0,0,0,114,5,0, - 0,0,114,6,1,0,0,57,6,0,0,115,2,0,0,0, - 0,10,122,22,70,105,108,101,76,111,97,100,101,114,46,108, - 111,97,100,95,109,111,100,117,108,101,99,2,0,0,0,0, - 0,0,0,2,0,0,0,1,0,0,0,67,0,0,0,115, - 7,0,0,0,124,0,0,106,0,0,83,41,1,122,58,82, - 101,116,117,114,110,32,116,104,101,32,112,97,116,104,32,116, - 111,32,116,104,101,32,115,111,117,114,99,101,32,102,105,108, - 101,32,97,115,32,102,111,117,110,100,32,98,121,32,116,104, - 101,32,102,105,110,100,101,114,46,41,1,114,35,0,0,0, - 41,2,114,71,0,0,0,114,164,0,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,114,241,0,0,0, - 69,6,0,0,115,2,0,0,0,0,3,122,23,70,105,108, - 101,76,111,97,100,101,114,46,103,101,116,95,102,105,108,101, - 110,97,109,101,99,2,0,0,0,0,0,0,0,3,0,0, - 0,8,0,0,0,67,0,0,0,115,41,0,0,0,116,0, - 0,106,1,0,124,1,0,100,1,0,131,2,0,143,17,0, - 125,2,0,124,2,0,106,2,0,131,0,0,83,87,100,2, - 0,81,88,100,2,0,83,41,3,122,39,82,101,116,117,114, - 110,32,116,104,101,32,100,97,116,97,32,102,114,111,109,32, - 112,97,116,104,32,97,115,32,114,97,119,32,98,121,116,101, - 115,46,218,1,114,78,41,3,114,49,0,0,0,114,50,0, - 0,0,90,4,114,101,97,100,41,3,114,71,0,0,0,114, - 35,0,0,0,114,54,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,114,42,1,0,0,74,6,0, - 0,115,4,0,0,0,0,2,21,1,122,19,70,105,108,101, - 76,111,97,100,101,114,46,103,101,116,95,100,97,116,97,41, - 11,114,57,0,0,0,114,56,0,0,0,114,58,0,0,0, - 114,59,0,0,0,114,72,0,0,0,114,233,0,0,0,114, - 53,1,0,0,114,162,0,0,0,114,6,1,0,0,114,241, - 0,0,0,114,42,1,0,0,114,4,0,0,0,114,4,0, - 0,0,41,1,114,228,0,0,0,114,5,0,0,0,114,51, - 1,0,0,39,6,0,0,115,14,0,0,0,12,3,6,2, - 12,6,12,4,12,3,24,12,18,5,114,51,1,0,0,99, - 0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0, - 64,0,0,0,115,64,0,0,0,101,0,0,90,1,0,100, - 0,0,90,2,0,100,1,0,90,3,0,100,2,0,100,3, - 0,132,0,0,90,4,0,100,4,0,100,5,0,132,0,0, - 90,5,0,100,6,0,100,7,0,100,8,0,100,9,0,132, - 0,1,90,6,0,100,10,0,83,41,11,114,10,1,0,0, - 122,62,67,111,110,99,114,101,116,101,32,105,109,112,108,101, - 109,101,110,116,97,116,105,111,110,32,111,102,32,83,111,117, - 114,99,101,76,111,97,100,101,114,32,117,115,105,110,103,32, - 116,104,101,32,102,105,108,101,32,115,121,115,116,101,109,46, - 99,2,0,0,0,0,0,0,0,3,0,0,0,3,0,0, - 0,67,0,0,0,115,36,0,0,0,116,0,0,124,1,0, - 131,1,0,125,2,0,105,2,0,124,2,0,106,1,0,100, - 1,0,54,124,2,0,106,2,0,100,2,0,54,83,41,3, - 122,33,82,101,116,117,114,110,32,116,104,101,32,109,101,116, - 97,100,97,116,97,32,102,111,114,32,116,104,101,32,112,97, - 116,104,46,114,185,0,0,0,114,186,0,0,0,41,3,114, - 39,0,0,0,218,8,115,116,95,109,116,105,109,101,90,7, - 115,116,95,115,105,122,101,41,3,114,71,0,0,0,114,35, - 0,0,0,114,49,1,0,0,114,4,0,0,0,114,4,0, - 0,0,114,5,0,0,0,114,39,1,0,0,84,6,0,0, - 115,4,0,0,0,0,2,12,1,122,27,83,111,117,114,99, - 101,70,105,108,101,76,111,97,100,101,114,46,112,97,116,104, - 95,115,116,97,116,115,99,4,0,0,0,0,0,0,0,5, - 0,0,0,5,0,0,0,67,0,0,0,115,34,0,0,0, - 116,0,0,124,1,0,131,1,0,125,4,0,124,0,0,106, - 1,0,124,2,0,124,3,0,100,1,0,124,4,0,131,2, - 1,83,41,2,78,218,5,95,109,111,100,101,41,2,114,151, - 0,0,0,114,40,1,0,0,41,5,114,71,0,0,0,114, - 148,0,0,0,114,147,0,0,0,114,53,0,0,0,114,42, - 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, - 0,0,114,41,1,0,0,89,6,0,0,115,4,0,0,0, - 0,2,12,1,122,32,83,111,117,114,99,101,70,105,108,101, - 76,111,97,100,101,114,46,95,99,97,99,104,101,95,98,121, - 116,101,99,111,100,101,114,57,1,0,0,105,182,1,0,0, - 99,3,0,0,0,1,0,0,0,9,0,0,0,17,0,0, - 0,67,0,0,0,115,53,1,0,0,116,0,0,124,1,0, - 131,1,0,92,2,0,125,4,0,125,5,0,103,0,0,125, - 6,0,120,54,0,124,4,0,114,80,0,116,1,0,124,4, - 0,131,1,0,12,114,80,0,116,0,0,124,4,0,131,1, - 0,92,2,0,125,4,0,125,7,0,124,6,0,106,2,0, - 124,7,0,131,1,0,1,113,27,0,87,120,132,0,116,3, - 0,124,6,0,131,1,0,68,93,118,0,125,7,0,116,4, - 0,124,4,0,124,7,0,131,2,0,125,4,0,121,17,0, - 116,5,0,106,6,0,124,4,0,131,1,0,1,87,113,94, - 0,4,116,7,0,107,10,0,114,155,0,1,1,1,119,94, - 0,89,113,94,0,4,116,8,0,107,10,0,114,211,0,1, - 125,8,0,1,122,25,0,116,9,0,100,1,0,124,4,0, - 124,8,0,131,3,0,1,100,2,0,83,87,89,100,2,0, - 100,2,0,125,8,0,126,8,0,88,113,94,0,88,113,94, - 0,87,121,33,0,116,10,0,124,1,0,124,2,0,124,3, - 0,131,3,0,1,116,9,0,100,3,0,124,1,0,131,2, - 0,1,87,110,53,0,4,116,8,0,107,10,0,114,48,1, - 1,125,8,0,1,122,21,0,116,9,0,100,1,0,124,1, - 0,124,8,0,131,3,0,1,87,89,100,2,0,100,2,0, - 125,8,0,126,8,0,88,110,1,0,88,100,2,0,83,41, - 4,122,27,87,114,105,116,101,32,98,121,116,101,115,32,100, - 97,116,97,32,116,111,32,97,32,102,105,108,101,46,122,27, - 99,111,117,108,100,32,110,111,116,32,99,114,101,97,116,101, - 32,123,33,114,125,58,32,123,33,114,125,78,122,12,99,114, - 101,97,116,101,100,32,123,33,114,125,41,11,114,38,0,0, - 0,114,46,0,0,0,114,227,0,0,0,114,33,0,0,0, - 114,28,0,0,0,114,3,0,0,0,90,5,109,107,100,105, - 114,218,15,70,105,108,101,69,120,105,115,116,115,69,114,114, - 111,114,114,40,0,0,0,114,158,0,0,0,114,55,0,0, - 0,41,9,114,71,0,0,0,114,35,0,0,0,114,53,0, - 0,0,114,57,1,0,0,114,236,0,0,0,114,214,0,0, - 0,114,27,0,0,0,114,23,0,0,0,114,43,1,0,0, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, - 40,1,0,0,94,6,0,0,115,38,0,0,0,0,2,18, - 1,6,2,22,1,18,1,17,2,19,1,15,1,3,1,17, - 1,13,2,7,1,18,3,16,1,27,1,3,1,16,1,17, - 1,18,2,122,25,83,111,117,114,99,101,70,105,108,101,76, - 111,97,100,101,114,46,115,101,116,95,100,97,116,97,78,41, - 7,114,57,0,0,0,114,56,0,0,0,114,58,0,0,0, - 114,59,0,0,0,114,39,1,0,0,114,41,1,0,0,114, - 40,1,0,0,114,4,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,114,10,1,0,0,80,6,0, - 0,115,8,0,0,0,12,2,6,2,12,5,12,5,114,10, - 1,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0, - 2,0,0,0,64,0,0,0,115,46,0,0,0,101,0,0, - 90,1,0,100,0,0,90,2,0,100,1,0,90,3,0,100, - 2,0,100,3,0,132,0,0,90,4,0,100,4,0,100,5, - 0,132,0,0,90,5,0,100,6,0,83,41,7,114,9,1, - 0,0,122,45,76,111,97,100,101,114,32,119,104,105,99,104, - 32,104,97,110,100,108,101,115,32,115,111,117,114,99,101,108, - 101,115,115,32,102,105,108,101,32,105,109,112,111,114,116,115, - 46,99,2,0,0,0,0,0,0,0,5,0,0,0,6,0, - 0,0,67,0,0,0,115,76,0,0,0,124,0,0,106,0, - 0,124,1,0,131,1,0,125,2,0,124,0,0,106,1,0, - 124,2,0,131,1,0,125,3,0,116,2,0,124,3,0,100, - 1,0,124,1,0,100,2,0,124,2,0,131,1,2,125,4, - 0,116,3,0,124,4,0,100,1,0,124,1,0,100,3,0, - 124,2,0,131,1,2,83,41,4,78,114,67,0,0,0,114, - 35,0,0,0,114,147,0,0,0,41,4,114,241,0,0,0, - 114,42,1,0,0,114,192,0,0,0,114,197,0,0,0,41, - 5,114,71,0,0,0,114,164,0,0,0,114,35,0,0,0, - 114,53,0,0,0,114,50,1,0,0,114,4,0,0,0,114, - 4,0,0,0,114,5,0,0,0,114,17,1,0,0,127,6, - 0,0,115,8,0,0,0,0,1,15,1,15,1,24,1,122, - 29,83,111,117,114,99,101,108,101,115,115,70,105,108,101,76, - 111,97,100,101,114,46,103,101,116,95,99,111,100,101,99,2, - 0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,67, - 0,0,0,115,4,0,0,0,100,1,0,83,41,2,122,39, - 82,101,116,117,114,110,32,78,111,110,101,32,97,115,32,116, - 104,101,114,101,32,105,115,32,110,111,32,115,111,117,114,99, - 101,32,99,111,100,101,46,78,114,4,0,0,0,41,2,114, - 71,0,0,0,114,164,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,114,18,1,0,0,133,6,0, - 0,115,2,0,0,0,0,2,122,31,83,111,117,114,99,101, - 108,101,115,115,70,105,108,101,76,111,97,100,101,114,46,103, - 101,116,95,115,111,117,114,99,101,78,41,6,114,57,0,0, - 0,114,56,0,0,0,114,58,0,0,0,114,59,0,0,0, - 114,17,1,0,0,114,18,1,0,0,114,4,0,0,0,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,9, - 1,0,0,123,6,0,0,115,6,0,0,0,12,2,6,2, - 12,6,114,9,1,0,0,99,0,0,0,0,0,0,0,0, - 0,0,0,0,3,0,0,0,64,0,0,0,115,130,0,0, - 0,101,0,0,90,1,0,100,0,0,90,2,0,100,1,0, - 90,3,0,100,2,0,100,3,0,132,0,0,90,4,0,100, - 4,0,100,5,0,132,0,0,90,5,0,100,6,0,100,7, - 0,132,0,0,90,6,0,101,7,0,100,8,0,100,9,0, - 132,0,0,131,1,0,90,8,0,100,10,0,100,11,0,132, - 0,0,90,9,0,100,12,0,100,13,0,132,0,0,90,10, - 0,100,14,0,100,15,0,132,0,0,90,11,0,101,7,0, - 100,16,0,100,17,0,132,0,0,131,1,0,90,12,0,100, - 18,0,83,41,19,218,19,69,120,116,101,110,115,105,111,110, - 70,105,108,101,76,111,97,100,101,114,122,93,76,111,97,100, - 101,114,32,102,111,114,32,101,120,116,101,110,115,105,111,110, - 32,109,111,100,117,108,101,115,46,10,10,32,32,32,32,84, - 104,101,32,99,111,110,115,116,114,117,99,116,111,114,32,105, - 115,32,100,101,115,105,103,110,101,100,32,116,111,32,119,111, - 114,107,32,119,105,116,104,32,70,105,108,101,70,105,110,100, - 101,114,46,10,10,32,32,32,32,99,3,0,0,0,0,0, - 0,0,3,0,0,0,2,0,0,0,67,0,0,0,115,22, - 0,0,0,124,1,0,124,0,0,95,0,0,124,2,0,124, - 0,0,95,1,0,100,0,0,83,41,1,78,41,2,114,67, - 0,0,0,114,35,0,0,0,41,3,114,71,0,0,0,114, - 67,0,0,0,114,35,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,114,72,0,0,0,150,6,0, - 0,115,4,0,0,0,0,1,9,1,122,28,69,120,116,101, - 110,115,105,111,110,70,105,108,101,76,111,97,100,101,114,46, - 95,95,105,110,105,116,95,95,99,2,0,0,0,0,0,0, - 0,2,0,0,0,2,0,0,0,67,0,0,0,115,34,0, - 0,0,124,0,0,106,0,0,124,1,0,106,0,0,107,2, - 0,111,33,0,124,0,0,106,1,0,124,1,0,106,1,0, - 107,2,0,83,41,1,78,41,2,114,228,0,0,0,114,63, - 0,0,0,41,2,114,71,0,0,0,114,231,0,0,0,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,233, - 0,0,0,154,6,0,0,115,4,0,0,0,0,1,18,1, - 122,26,69,120,116,101,110,115,105,111,110,70,105,108,101,76, - 111,97,100,101,114,46,95,95,101,113,95,95,99,1,0,0, - 0,0,0,0,0,1,0,0,0,3,0,0,0,67,0,0, - 0,115,26,0,0,0,116,0,0,124,0,0,106,1,0,131, - 1,0,116,0,0,124,0,0,106,2,0,131,1,0,65,83, - 41,1,78,41,3,114,52,1,0,0,114,67,0,0,0,114, - 35,0,0,0,41,1,114,71,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,114,53,1,0,0,158, - 6,0,0,115,2,0,0,0,0,1,122,28,69,120,116,101, - 110,115,105,111,110,70,105,108,101,76,111,97,100,101,114,46, - 95,95,104,97,115,104,95,95,99,2,0,0,0,0,0,0, - 0,4,0,0,0,11,0,0,0,67,0,0,0,115,177,0, - 0,0,116,0,0,124,1,0,131,1,0,143,29,0,1,116, - 1,0,116,2,0,106,3,0,124,1,0,124,0,0,106,4, - 0,131,3,0,125,2,0,87,100,1,0,81,88,116,5,0, - 100,2,0,124,0,0,106,4,0,131,2,0,1,124,0,0, - 106,6,0,124,1,0,131,1,0,125,3,0,124,3,0,114, - 121,0,116,7,0,124,2,0,100,3,0,131,2,0,12,114, - 121,0,116,8,0,124,0,0,106,4,0,131,1,0,100,4, - 0,25,103,1,0,124,2,0,95,9,0,124,0,0,124,2, - 0,95,10,0,124,2,0,106,11,0,124,2,0,95,12,0, - 124,3,0,115,173,0,124,2,0,106,12,0,106,13,0,100, - 5,0,131,1,0,100,4,0,25,124,2,0,95,12,0,124, - 2,0,83,41,6,122,25,76,111,97,100,32,97,110,32,101, - 120,116,101,110,115,105,111,110,32,109,111,100,117,108,101,46, - 78,122,33,101,120,116,101,110,115,105,111,110,32,109,111,100, - 117,108,101,32,108,111,97,100,101,100,32,102,114,111,109,32, - 123,33,114,125,114,250,0,0,0,114,84,0,0,0,114,117, - 0,0,0,41,14,114,69,0,0,0,114,114,0,0,0,114, - 106,0,0,0,90,12,108,111,97,100,95,100,121,110,97,109, - 105,99,114,35,0,0,0,114,158,0,0,0,114,223,0,0, - 0,114,60,0,0,0,114,38,0,0,0,114,250,0,0,0, - 114,206,0,0,0,114,57,0,0,0,114,253,0,0,0,114, - 32,0,0,0,41,4,114,71,0,0,0,114,164,0,0,0, - 114,181,0,0,0,114,223,0,0,0,114,4,0,0,0,114, - 4,0,0,0,114,5,0,0,0,114,6,1,0,0,161,6, - 0,0,115,24,0,0,0,0,5,13,1,9,1,21,1,16, - 1,15,1,22,1,25,1,9,1,12,1,6,1,25,1,122, - 31,69,120,116,101,110,115,105,111,110,70,105,108,101,76,111, - 97,100,101,114,46,108,111,97,100,95,109,111,100,117,108,101, - 99,2,0,0,0,0,0,0,0,2,0,0,0,4,0,0, - 0,3,0,0,0,115,48,0,0,0,116,0,0,124,0,0, - 106,1,0,131,1,0,100,1,0,25,137,0,0,116,2,0, - 135,0,0,102,1,0,100,2,0,100,3,0,134,0,0,116, - 3,0,68,131,1,0,131,1,0,83,41,4,122,49,82,101, - 116,117,114,110,32,84,114,117,101,32,105,102,32,116,104,101, - 32,101,120,116,101,110,115,105,111,110,32,109,111,100,117,108, - 101,32,105,115,32,97,32,112,97,99,107,97,103,101,46,114, - 29,0,0,0,99,1,0,0,0,0,0,0,0,2,0,0, - 0,4,0,0,0,51,0,0,0,115,31,0,0,0,124,0, - 0,93,21,0,125,1,0,136,0,0,100,0,0,124,1,0, - 23,107,2,0,86,1,113,3,0,100,1,0,83,41,2,114, - 72,0,0,0,78,114,4,0,0,0,41,2,114,22,0,0, - 0,218,6,115,117,102,102,105,120,41,1,218,9,102,105,108, - 101,95,110,97,109,101,114,4,0,0,0,114,5,0,0,0, - 114,77,0,0,0,182,6,0,0,115,2,0,0,0,6,1, - 122,49,69,120,116,101,110,115,105,111,110,70,105,108,101,76, - 111,97,100,101,114,46,105,115,95,112,97,99,107,97,103,101, - 46,60,108,111,99,97,108,115,62,46,60,103,101,110,101,120, - 112,114,62,41,4,114,38,0,0,0,114,35,0,0,0,114, - 78,0,0,0,218,18,69,88,84,69,78,83,73,79,78,95, - 83,85,70,70,73,88,69,83,41,2,114,71,0,0,0,114, - 164,0,0,0,114,4,0,0,0,41,1,114,61,1,0,0, - 114,5,0,0,0,114,223,0,0,0,179,6,0,0,115,6, - 0,0,0,0,2,19,1,18,1,122,30,69,120,116,101,110, - 115,105,111,110,70,105,108,101,76,111,97,100,101,114,46,105, - 115,95,112,97,99,107,97,103,101,99,2,0,0,0,0,0, - 0,0,2,0,0,0,1,0,0,0,67,0,0,0,115,4, - 0,0,0,100,1,0,83,41,2,122,63,82,101,116,117,114, - 110,32,78,111,110,101,32,97,115,32,97,110,32,101,120,116, - 101,110,115,105,111,110,32,109,111,100,117,108,101,32,99,97, - 110,110,111,116,32,99,114,101,97,116,101,32,97,32,99,111, - 100,101,32,111,98,106,101,99,116,46,78,114,4,0,0,0, - 41,2,114,71,0,0,0,114,164,0,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,114,17,1,0,0, - 185,6,0,0,115,2,0,0,0,0,2,122,28,69,120,116, - 101,110,115,105,111,110,70,105,108,101,76,111,97,100,101,114, - 46,103,101,116,95,99,111,100,101,99,2,0,0,0,0,0, - 0,0,2,0,0,0,1,0,0,0,67,0,0,0,115,4, - 0,0,0,100,1,0,83,41,2,122,53,82,101,116,117,114, - 110,32,78,111,110,101,32,97,115,32,101,120,116,101,110,115, - 105,111,110,32,109,111,100,117,108,101,115,32,104,97,118,101, - 32,110,111,32,115,111,117,114,99,101,32,99,111,100,101,46, - 78,114,4,0,0,0,41,2,114,71,0,0,0,114,164,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, - 0,114,18,1,0,0,189,6,0,0,115,2,0,0,0,0, - 2,122,30,69,120,116,101,110,115,105,111,110,70,105,108,101, - 76,111,97,100,101,114,46,103,101,116,95,115,111,117,114,99, - 101,99,2,0,0,0,0,0,0,0,2,0,0,0,1,0, - 0,0,67,0,0,0,115,7,0,0,0,124,0,0,106,0, - 0,83,41,1,122,58,82,101,116,117,114,110,32,116,104,101, - 32,112,97,116,104,32,116,111,32,116,104,101,32,115,111,117, - 114,99,101,32,102,105,108,101,32,97,115,32,102,111,117,110, - 100,32,98,121,32,116,104,101,32,102,105,110,100,101,114,46, - 41,1,114,35,0,0,0,41,2,114,71,0,0,0,114,164, - 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, - 0,0,114,241,0,0,0,193,6,0,0,115,2,0,0,0, - 0,3,122,32,69,120,116,101,110,115,105,111,110,70,105,108, - 101,76,111,97,100,101,114,46,103,101,116,95,102,105,108,101, - 110,97,109,101,78,41,13,114,57,0,0,0,114,56,0,0, - 0,114,58,0,0,0,114,59,0,0,0,114,72,0,0,0, - 114,233,0,0,0,114,53,1,0,0,114,162,0,0,0,114, - 6,1,0,0,114,223,0,0,0,114,17,1,0,0,114,18, - 1,0,0,114,241,0,0,0,114,4,0,0,0,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,114,59,1,0, - 0,142,6,0,0,115,18,0,0,0,12,6,6,2,12,4, - 12,4,12,3,18,18,12,6,12,4,12,4,114,59,1,0, - 0,99,0,0,0,0,0,0,0,0,0,0,0,0,2,0, - 0,0,64,0,0,0,115,130,0,0,0,101,0,0,90,1, - 0,100,0,0,90,2,0,100,1,0,90,3,0,100,2,0, - 100,3,0,132,0,0,90,4,0,100,4,0,100,5,0,132, - 0,0,90,5,0,100,6,0,100,7,0,132,0,0,90,6, - 0,100,8,0,100,9,0,132,0,0,90,7,0,100,10,0, - 100,11,0,132,0,0,90,8,0,100,12,0,100,13,0,132, - 0,0,90,9,0,100,14,0,100,15,0,132,0,0,90,10, - 0,100,16,0,100,17,0,132,0,0,90,11,0,100,18,0, - 100,19,0,132,0,0,90,12,0,100,20,0,83,41,21,218, - 14,95,78,97,109,101,115,112,97,99,101,80,97,116,104,97, - 38,1,0,0,82,101,112,114,101,115,101,110,116,115,32,97, - 32,110,97,109,101,115,112,97,99,101,32,112,97,99,107,97, - 103,101,39,115,32,112,97,116,104,46,32,32,73,116,32,117, - 115,101,115,32,116,104,101,32,109,111,100,117,108,101,32,110, - 97,109,101,10,32,32,32,32,116,111,32,102,105,110,100,32, - 105,116,115,32,112,97,114,101,110,116,32,109,111,100,117,108, - 101,44,32,97,110,100,32,102,114,111,109,32,116,104,101,114, - 101,32,105,116,32,108,111,111,107,115,32,117,112,32,116,104, - 101,32,112,97,114,101,110,116,39,115,10,32,32,32,32,95, - 95,112,97,116,104,95,95,46,32,32,87,104,101,110,32,116, - 104,105,115,32,99,104,97,110,103,101,115,44,32,116,104,101, - 32,109,111,100,117,108,101,39,115,32,111,119,110,32,112,97, - 116,104,32,105,115,32,114,101,99,111,109,112,117,116,101,100, - 44,10,32,32,32,32,117,115,105,110,103,32,112,97,116,104, - 95,102,105,110,100,101,114,46,32,32,70,111,114,32,116,111, - 112,45,108,101,118,101,108,32,109,111,100,117,108,101,115,44, - 32,116,104,101,32,112,97,114,101,110,116,32,109,111,100,117, - 108,101,39,115,32,112,97,116,104,10,32,32,32,32,105,115, - 32,115,121,115,46,112,97,116,104,46,99,4,0,0,0,0, - 0,0,0,4,0,0,0,2,0,0,0,67,0,0,0,115, - 52,0,0,0,124,1,0,124,0,0,95,0,0,124,2,0, - 124,0,0,95,1,0,116,2,0,124,0,0,106,3,0,131, - 0,0,131,1,0,124,0,0,95,4,0,124,3,0,124,0, - 0,95,5,0,100,0,0,83,41,1,78,41,6,114,70,0, - 0,0,114,0,1,0,0,114,235,0,0,0,218,16,95,103, - 101,116,95,112,97,114,101,110,116,95,112,97,116,104,218,17, - 95,108,97,115,116,95,112,97,114,101,110,116,95,112,97,116, - 104,218,12,95,112,97,116,104,95,102,105,110,100,101,114,41, - 4,114,71,0,0,0,114,67,0,0,0,114,35,0,0,0, - 218,11,112,97,116,104,95,102,105,110,100,101,114,114,4,0, - 0,0,114,4,0,0,0,114,5,0,0,0,114,72,0,0, - 0,206,6,0,0,115,8,0,0,0,0,1,9,1,9,1, - 21,1,122,23,95,78,97,109,101,115,112,97,99,101,80,97, - 116,104,46,95,95,105,110,105,116,95,95,99,1,0,0,0, - 0,0,0,0,4,0,0,0,3,0,0,0,67,0,0,0, - 115,53,0,0,0,124,0,0,106,0,0,106,1,0,100,1, - 0,131,1,0,92,3,0,125,1,0,125,2,0,125,3,0, - 124,2,0,100,2,0,107,2,0,114,43,0,100,6,0,83, - 124,1,0,100,5,0,102,2,0,83,41,7,122,62,82,101, - 116,117,114,110,115,32,97,32,116,117,112,108,101,32,111,102, - 32,40,112,97,114,101,110,116,45,109,111,100,117,108,101,45, - 110,97,109,101,44,32,112,97,114,101,110,116,45,112,97,116, - 104,45,97,116,116,114,45,110,97,109,101,41,114,117,0,0, - 0,114,30,0,0,0,114,7,0,0,0,114,35,0,0,0, - 114,250,0,0,0,41,2,122,3,115,121,115,122,4,112,97, - 116,104,41,2,114,70,0,0,0,114,32,0,0,0,41,4, - 114,71,0,0,0,114,236,0,0,0,218,3,100,111,116,114, - 94,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, - 0,0,0,218,23,95,102,105,110,100,95,112,97,114,101,110, - 116,95,112,97,116,104,95,110,97,109,101,115,212,6,0,0, - 115,8,0,0,0,0,2,27,1,12,2,4,3,122,38,95, - 78,97,109,101,115,112,97,99,101,80,97,116,104,46,95,102, - 105,110,100,95,112,97,114,101,110,116,95,112,97,116,104,95, - 110,97,109,101,115,99,1,0,0,0,0,0,0,0,3,0, - 0,0,3,0,0,0,67,0,0,0,115,38,0,0,0,124, - 0,0,106,0,0,131,0,0,92,2,0,125,1,0,125,2, - 0,116,1,0,116,2,0,106,3,0,124,1,0,25,124,2, - 0,131,2,0,83,41,1,78,41,4,114,69,1,0,0,114, - 62,0,0,0,114,7,0,0,0,114,73,0,0,0,41,3, - 114,71,0,0,0,90,18,112,97,114,101,110,116,95,109,111, - 100,117,108,101,95,110,97,109,101,90,14,112,97,116,104,95, - 97,116,116,114,95,110,97,109,101,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,114,64,1,0,0,222,6,0, - 0,115,4,0,0,0,0,1,18,1,122,31,95,78,97,109, - 101,115,112,97,99,101,80,97,116,104,46,95,103,101,116,95, - 112,97,114,101,110,116,95,112,97,116,104,99,1,0,0,0, - 0,0,0,0,3,0,0,0,3,0,0,0,67,0,0,0, - 115,118,0,0,0,116,0,0,124,0,0,106,1,0,131,0, - 0,131,1,0,125,1,0,124,1,0,124,0,0,106,2,0, - 107,3,0,114,111,0,124,0,0,106,3,0,124,0,0,106, - 4,0,124,1,0,131,2,0,125,2,0,124,2,0,100,0, - 0,107,9,0,114,102,0,124,2,0,106,5,0,100,0,0, - 107,8,0,114,102,0,124,2,0,106,6,0,114,102,0,124, - 2,0,106,6,0,124,0,0,95,7,0,124,1,0,124,0, - 0,95,2,0,124,0,0,106,7,0,83,41,1,78,41,8, - 114,235,0,0,0,114,64,1,0,0,114,65,1,0,0,114, - 66,1,0,0,114,70,0,0,0,114,173,0,0,0,114,224, - 0,0,0,114,0,1,0,0,41,3,114,71,0,0,0,90, - 11,112,97,114,101,110,116,95,112,97,116,104,114,180,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 218,12,95,114,101,99,97,108,99,117,108,97,116,101,226,6, - 0,0,115,16,0,0,0,0,2,18,1,15,1,21,3,27, - 1,9,1,12,1,9,1,122,27,95,78,97,109,101,115,112, - 97,99,101,80,97,116,104,46,95,114,101,99,97,108,99,117, - 108,97,116,101,99,1,0,0,0,0,0,0,0,1,0,0, - 0,2,0,0,0,67,0,0,0,115,16,0,0,0,116,0, - 0,124,0,0,106,1,0,131,0,0,131,1,0,83,41,1, - 78,41,2,218,4,105,116,101,114,114,70,1,0,0,41,1, - 114,71,0,0,0,114,4,0,0,0,114,4,0,0,0,114, - 5,0,0,0,218,8,95,95,105,116,101,114,95,95,239,6, - 0,0,115,2,0,0,0,0,1,122,23,95,78,97,109,101, - 115,112,97,99,101,80,97,116,104,46,95,95,105,116,101,114, - 95,95,99,1,0,0,0,0,0,0,0,1,0,0,0,2, - 0,0,0,67,0,0,0,115,16,0,0,0,116,0,0,124, - 0,0,106,1,0,131,0,0,131,1,0,83,41,1,78,41, - 2,114,31,0,0,0,114,70,1,0,0,41,1,114,71,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, - 0,218,7,95,95,108,101,110,95,95,242,6,0,0,115,2, - 0,0,0,0,1,122,22,95,78,97,109,101,115,112,97,99, - 101,80,97,116,104,46,95,95,108,101,110,95,95,99,1,0, - 0,0,0,0,0,0,1,0,0,0,2,0,0,0,67,0, - 0,0,115,16,0,0,0,100,1,0,106,0,0,124,0,0, - 106,1,0,131,1,0,83,41,2,78,122,20,95,78,97,109, - 101,115,112,97,99,101,80,97,116,104,40,123,33,114,125,41, - 41,2,114,47,0,0,0,114,0,1,0,0,41,1,114,71, - 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, - 0,0,114,101,0,0,0,245,6,0,0,115,2,0,0,0, - 0,1,122,23,95,78,97,109,101,115,112,97,99,101,80,97, - 116,104,46,95,95,114,101,112,114,95,95,99,2,0,0,0, - 0,0,0,0,2,0,0,0,2,0,0,0,67,0,0,0, - 115,16,0,0,0,124,1,0,124,0,0,106,0,0,131,0, - 0,107,6,0,83,41,1,78,41,1,114,70,1,0,0,41, - 2,114,71,0,0,0,218,4,105,116,101,109,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,218,12,95,95,99, - 111,110,116,97,105,110,115,95,95,248,6,0,0,115,2,0, - 0,0,0,1,122,27,95,78,97,109,101,115,112,97,99,101, - 80,97,116,104,46,95,95,99,111,110,116,97,105,110,115,95, - 95,99,2,0,0,0,0,0,0,0,2,0,0,0,2,0, - 0,0,67,0,0,0,115,20,0,0,0,124,0,0,106,0, - 0,106,1,0,124,1,0,131,1,0,1,100,0,0,83,41, - 1,78,41,2,114,0,1,0,0,114,227,0,0,0,41,2, - 114,71,0,0,0,114,74,1,0,0,114,4,0,0,0,114, - 4,0,0,0,114,5,0,0,0,114,227,0,0,0,251,6, - 0,0,115,2,0,0,0,0,1,122,21,95,78,97,109,101, - 115,112,97,99,101,80,97,116,104,46,97,112,112,101,110,100, - 78,41,13,114,57,0,0,0,114,56,0,0,0,114,58,0, - 0,0,114,59,0,0,0,114,72,0,0,0,114,69,1,0, - 0,114,64,1,0,0,114,70,1,0,0,114,72,1,0,0, - 114,73,1,0,0,114,101,0,0,0,114,75,1,0,0,114, - 227,0,0,0,114,4,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,114,63,1,0,0,199,6,0, - 0,115,20,0,0,0,12,5,6,2,12,6,12,10,12,4, - 12,13,12,3,12,3,12,3,12,3,114,63,1,0,0,99, - 0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0, - 64,0,0,0,115,118,0,0,0,101,0,0,90,1,0,100, - 0,0,90,2,0,100,1,0,100,2,0,132,0,0,90,3, - 0,101,4,0,100,3,0,100,4,0,132,0,0,131,1,0, - 90,5,0,100,5,0,100,6,0,132,0,0,90,6,0,100, - 7,0,100,8,0,132,0,0,90,7,0,100,9,0,100,10, - 0,132,0,0,90,8,0,100,11,0,100,12,0,132,0,0, - 90,9,0,100,13,0,100,14,0,132,0,0,90,10,0,100, - 15,0,100,16,0,132,0,0,90,11,0,100,17,0,83,41, - 18,114,254,0,0,0,99,4,0,0,0,0,0,0,0,4, - 0,0,0,4,0,0,0,67,0,0,0,115,25,0,0,0, - 116,0,0,124,1,0,124,2,0,124,3,0,131,3,0,124, - 0,0,95,1,0,100,0,0,83,41,1,78,41,2,114,63, - 1,0,0,114,0,1,0,0,41,4,114,71,0,0,0,114, - 67,0,0,0,114,35,0,0,0,114,67,1,0,0,114,4, - 0,0,0,114,4,0,0,0,114,5,0,0,0,114,72,0, - 0,0,1,7,0,0,115,2,0,0,0,0,1,122,25,95, - 78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,46, - 95,95,105,110,105,116,95,95,99,2,0,0,0,0,0,0, - 0,2,0,0,0,2,0,0,0,67,0,0,0,115,16,0, - 0,0,100,1,0,106,0,0,124,1,0,106,1,0,131,1, - 0,83,41,2,122,115,82,101,116,117,114,110,32,114,101,112, - 114,32,102,111,114,32,116,104,101,32,109,111,100,117,108,101, - 46,10,10,32,32,32,32,32,32,32,32,84,104,101,32,109, - 101,116,104,111,100,32,105,115,32,100,101,112,114,101,99,97, - 116,101,100,46,32,32,84,104,101,32,105,109,112,111,114,116, - 32,109,97,99,104,105,110,101,114,121,32,100,111,101,115,32, - 116,104,101,32,106,111,98,32,105,116,115,101,108,102,46,10, - 10,32,32,32,32,32,32,32,32,122,25,60,109,111,100,117, - 108,101,32,123,33,114,125,32,40,110,97,109,101,115,112,97, - 99,101,41,62,41,2,114,47,0,0,0,114,57,0,0,0, - 41,2,114,13,1,0,0,114,181,0,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,114,207,0,0,0, - 4,7,0,0,115,2,0,0,0,0,7,122,28,95,78,97, - 109,101,115,112,97,99,101,76,111,97,100,101,114,46,109,111, - 100,117,108,101,95,114,101,112,114,99,2,0,0,0,0,0, - 0,0,2,0,0,0,1,0,0,0,67,0,0,0,115,4, - 0,0,0,100,1,0,83,41,2,78,84,114,4,0,0,0, - 41,2,114,71,0,0,0,114,164,0,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,114,223,0,0,0, - 13,7,0,0,115,2,0,0,0,0,1,122,27,95,78,97, - 109,101,115,112,97,99,101,76,111,97,100,101,114,46,105,115, - 95,112,97,99,107,97,103,101,99,2,0,0,0,0,0,0, - 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, - 0,0,100,1,0,83,41,2,78,114,30,0,0,0,114,4, - 0,0,0,41,2,114,71,0,0,0,114,164,0,0,0,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,18, - 1,0,0,16,7,0,0,115,2,0,0,0,0,1,122,27, - 95,78,97,109,101,115,112,97,99,101,76,111,97,100,101,114, - 46,103,101,116,95,115,111,117,114,99,101,99,2,0,0,0, - 0,0,0,0,2,0,0,0,6,0,0,0,67,0,0,0, - 115,22,0,0,0,116,0,0,100,1,0,100,2,0,100,3, - 0,100,4,0,100,5,0,131,3,1,83,41,6,78,114,30, - 0,0,0,122,8,60,115,116,114,105,110,103,62,114,24,1, - 0,0,114,45,1,0,0,84,41,1,114,46,1,0,0,41, - 2,114,71,0,0,0,114,164,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,114,17,1,0,0,19, - 7,0,0,115,2,0,0,0,0,1,122,25,95,78,97,109, - 101,115,112,97,99,101,76,111,97,100,101,114,46,103,101,116, - 95,99,111,100,101,99,2,0,0,0,0,0,0,0,2,0, - 0,0,1,0,0,0,67,0,0,0,115,4,0,0,0,100, - 1,0,83,41,2,122,42,85,115,101,32,100,101,102,97,117, - 108,116,32,115,101,109,97,110,116,105,99,115,32,102,111,114, - 32,109,111,100,117,108,101,32,99,114,101,97,116,105,111,110, - 46,78,114,4,0,0,0,41,2,114,71,0,0,0,114,180, - 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, - 0,0,114,2,1,0,0,22,7,0,0,115,0,0,0,0, - 122,30,95,78,97,109,101,115,112,97,99,101,76,111,97,100, - 101,114,46,99,114,101,97,116,101,95,109,111,100,117,108,101, - 99,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0, - 0,67,0,0,0,115,4,0,0,0,100,0,0,83,41,1, - 78,114,4,0,0,0,41,2,114,71,0,0,0,114,181,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, - 0,114,3,1,0,0,25,7,0,0,115,2,0,0,0,0, - 1,122,28,95,78,97,109,101,115,112,97,99,101,76,111,97, - 100,101,114,46,101,120,101,99,95,109,111,100,117,108,101,99, - 2,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0, - 67,0,0,0,115,29,0,0,0,116,0,0,100,1,0,124, - 0,0,106,1,0,131,2,0,1,116,2,0,124,0,0,124, - 1,0,131,2,0,83,41,2,122,98,76,111,97,100,32,97, - 32,110,97,109,101,115,112,97,99,101,32,109,111,100,117,108, - 101,46,10,10,32,32,32,32,32,32,32,32,84,104,105,115, - 32,109,101,116,104,111,100,32,105,115,32,100,101,112,114,101, - 99,97,116,101,100,46,32,32,85,115,101,32,101,120,101,99, - 95,109,111,100,117,108,101,40,41,32,105,110,115,116,101,97, - 100,46,10,10,32,32,32,32,32,32,32,32,122,38,110,97, - 109,101,115,112,97,99,101,32,109,111,100,117,108,101,32,108, - 111,97,100,101,100,32,119,105,116,104,32,112,97,116,104,32, - 123,33,114,125,41,3,114,158,0,0,0,114,0,1,0,0, - 114,182,0,0,0,41,2,114,71,0,0,0,114,164,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 114,6,1,0,0,28,7,0,0,115,4,0,0,0,0,7, - 16,1,122,28,95,78,97,109,101,115,112,97,99,101,76,111, - 97,100,101,114,46,108,111,97,100,95,109,111,100,117,108,101, - 78,41,12,114,57,0,0,0,114,56,0,0,0,114,58,0, - 0,0,114,72,0,0,0,114,20,1,0,0,114,207,0,0, - 0,114,223,0,0,0,114,18,1,0,0,114,17,1,0,0, - 114,2,1,0,0,114,3,1,0,0,114,6,1,0,0,114, - 4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, - 0,0,0,114,254,0,0,0,0,7,0,0,115,16,0,0, - 0,12,1,12,3,18,9,12,3,12,3,12,3,12,3,12, - 3,114,254,0,0,0,99,0,0,0,0,0,0,0,0,0, - 0,0,0,5,0,0,0,64,0,0,0,115,160,0,0,0, - 101,0,0,90,1,0,100,0,0,90,2,0,100,1,0,90, - 3,0,101,4,0,100,2,0,100,3,0,132,0,0,131,1, - 0,90,5,0,101,4,0,100,4,0,100,5,0,132,0,0, - 131,1,0,90,6,0,101,4,0,100,6,0,100,7,0,132, - 0,0,131,1,0,90,7,0,101,4,0,100,8,0,100,9, - 0,132,0,0,131,1,0,90,8,0,101,4,0,100,10,0, - 100,11,0,100,12,0,132,1,0,131,1,0,90,9,0,101, - 4,0,100,10,0,100,10,0,100,13,0,100,14,0,132,2, - 0,131,1,0,90,10,0,101,4,0,100,10,0,100,15,0, - 100,16,0,132,1,0,131,1,0,90,11,0,100,10,0,83, - 41,17,218,10,80,97,116,104,70,105,110,100,101,114,122,62, - 77,101,116,97,32,112,97,116,104,32,102,105,110,100,101,114, - 32,102,111,114,32,115,121,115,46,112,97,116,104,32,97,110, - 100,32,112,97,99,107,97,103,101,32,95,95,112,97,116,104, - 95,95,32,97,116,116,114,105,98,117,116,101,115,46,99,1, - 0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,67, - 0,0,0,115,55,0,0,0,120,48,0,116,0,0,106,1, - 0,106,2,0,131,0,0,68,93,31,0,125,1,0,116,3, - 0,124,1,0,100,1,0,131,2,0,114,16,0,124,1,0, - 106,4,0,131,0,0,1,113,16,0,87,100,2,0,83,41, - 3,122,125,67,97,108,108,32,116,104,101,32,105,110,118,97, - 108,105,100,97,116,101,95,99,97,99,104,101,115,40,41,32, - 109,101,116,104,111,100,32,111,110,32,97,108,108,32,112,97, - 116,104,32,101,110,116,114,121,32,102,105,110,100,101,114,115, - 10,32,32,32,32,32,32,32,32,115,116,111,114,101,100,32, - 105,110,32,115,121,115,46,112,97,116,104,95,105,109,112,111, - 114,116,101,114,95,99,97,99,104,101,115,32,40,119,104,101, - 114,101,32,105,109,112,108,101,109,101,110,116,101,100,41,46, - 218,17,105,110,118,97,108,105,100,97,116,101,95,99,97,99, - 104,101,115,78,41,5,114,7,0,0,0,218,19,112,97,116, - 104,95,105,109,112,111,114,116,101,114,95,99,97,99,104,101, - 218,6,118,97,108,117,101,115,114,60,0,0,0,114,77,1, - 0,0,41,2,114,13,1,0,0,218,6,102,105,110,100,101, - 114,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 114,77,1,0,0,45,7,0,0,115,6,0,0,0,0,4, - 22,1,15,1,122,28,80,97,116,104,70,105,110,100,101,114, - 46,105,110,118,97,108,105,100,97,116,101,95,99,97,99,104, - 101,115,99,2,0,0,0,0,0,0,0,3,0,0,0,12, - 0,0,0,67,0,0,0,115,107,0,0,0,116,0,0,106, - 1,0,100,1,0,107,9,0,114,41,0,116,0,0,106,1, - 0,12,114,41,0,116,2,0,106,3,0,100,2,0,116,4, - 0,131,2,0,1,120,59,0,116,0,0,106,1,0,68,93, - 44,0,125,2,0,121,14,0,124,2,0,124,1,0,131,1, - 0,83,87,113,51,0,4,116,5,0,107,10,0,114,94,0, - 1,1,1,119,51,0,89,113,51,0,88,113,51,0,87,100, - 1,0,83,100,1,0,83,41,3,122,113,83,101,97,114,99, - 104,32,115,101,113,117,101,110,99,101,32,111,102,32,104,111, - 111,107,115,32,102,111,114,32,97,32,102,105,110,100,101,114, - 32,102,111,114,32,39,112,97,116,104,39,46,10,10,32,32, - 32,32,32,32,32,32,73,102,32,39,104,111,111,107,115,39, - 32,105,115,32,102,97,108,115,101,32,116,104,101,110,32,117, - 115,101,32,115,121,115,46,112,97,116,104,95,104,111,111,107, - 115,46,10,10,32,32,32,32,32,32,32,32,78,122,23,115, - 121,115,46,112,97,116,104,95,104,111,111,107,115,32,105,115, - 32,101,109,112,116,121,41,6,114,7,0,0,0,218,10,112, - 97,116,104,95,104,111,111,107,115,114,118,0,0,0,114,119, - 0,0,0,114,172,0,0,0,114,159,0,0,0,41,3,114, - 13,1,0,0,114,35,0,0,0,90,4,104,111,111,107,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,11, - 95,112,97,116,104,95,104,111,111,107,115,53,7,0,0,115, - 16,0,0,0,0,7,25,1,16,1,16,1,3,1,14,1, - 13,1,12,2,122,22,80,97,116,104,70,105,110,100,101,114, - 46,95,112,97,116,104,95,104,111,111,107,115,99,2,0,0, - 0,0,0,0,0,3,0,0,0,19,0,0,0,67,0,0, - 0,115,123,0,0,0,124,1,0,100,1,0,107,2,0,114, - 53,0,121,16,0,116,0,0,106,1,0,131,0,0,125,1, - 0,87,110,22,0,4,116,2,0,107,10,0,114,52,0,1, - 1,1,100,2,0,83,89,110,1,0,88,121,17,0,116,3, - 0,106,4,0,124,1,0,25,125,2,0,87,110,46,0,4, - 116,5,0,107,10,0,114,118,0,1,1,1,124,0,0,106, - 6,0,124,1,0,131,1,0,125,2,0,124,2,0,116,3, - 0,106,4,0,124,1,0,60,89,110,1,0,88,124,2,0, - 83,41,3,122,210,71,101,116,32,116,104,101,32,102,105,110, - 100,101,114,32,102,111,114,32,116,104,101,32,112,97,116,104, - 32,101,110,116,114,121,32,102,114,111,109,32,115,121,115,46, - 112,97,116,104,95,105,109,112,111,114,116,101,114,95,99,97, - 99,104,101,46,10,10,32,32,32,32,32,32,32,32,73,102, - 32,116,104,101,32,112,97,116,104,32,101,110,116,114,121,32, - 105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,97, - 99,104,101,44,32,102,105,110,100,32,116,104,101,32,97,112, - 112,114,111,112,114,105,97,116,101,32,102,105,110,100,101,114, - 10,32,32,32,32,32,32,32,32,97,110,100,32,99,97,99, - 104,101,32,105,116,46,32,73,102,32,110,111,32,102,105,110, - 100,101,114,32,105,115,32,97,118,97,105,108,97,98,108,101, - 44,32,115,116,111,114,101,32,78,111,110,101,46,10,10,32, - 32,32,32,32,32,32,32,114,30,0,0,0,78,41,7,114, - 3,0,0,0,114,45,0,0,0,218,17,70,105,108,101,78, - 111,116,70,111,117,110,100,69,114,114,111,114,114,7,0,0, - 0,114,78,1,0,0,114,79,0,0,0,114,82,1,0,0, - 41,3,114,13,1,0,0,114,35,0,0,0,114,80,1,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 218,20,95,112,97,116,104,95,105,109,112,111,114,116,101,114, - 95,99,97,99,104,101,70,7,0,0,115,22,0,0,0,0, - 8,12,1,3,1,16,1,13,3,9,1,3,1,17,1,13, - 1,15,1,18,1,122,31,80,97,116,104,70,105,110,100,101, - 114,46,95,112,97,116,104,95,105,109,112,111,114,116,101,114, - 95,99,97,99,104,101,99,3,0,0,0,0,0,0,0,6, - 0,0,0,3,0,0,0,67,0,0,0,115,113,0,0,0, - 116,0,0,124,2,0,100,1,0,131,2,0,114,39,0,124, - 2,0,106,1,0,124,1,0,131,1,0,92,2,0,125,3, - 0,125,4,0,110,21,0,124,2,0,106,2,0,124,1,0, - 131,1,0,125,3,0,103,0,0,125,4,0,124,3,0,100, - 0,0,107,9,0,114,85,0,116,3,0,124,1,0,124,3, - 0,131,2,0,83,116,4,0,124,1,0,100,0,0,131,2, - 0,125,5,0,124,4,0,124,5,0,95,5,0,124,5,0, - 83,41,2,78,114,171,0,0,0,41,6,114,60,0,0,0, - 114,171,0,0,0,114,16,1,0,0,114,177,0,0,0,114, - 220,0,0,0,114,224,0,0,0,41,6,114,13,1,0,0, - 114,164,0,0,0,114,80,1,0,0,114,173,0,0,0,114, - 174,0,0,0,114,180,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,218,16,95,108,101,103,97,99, - 121,95,103,101,116,95,115,112,101,99,92,7,0,0,115,18, - 0,0,0,0,4,15,1,24,2,15,1,6,1,12,1,13, - 1,15,1,9,1,122,27,80,97,116,104,70,105,110,100,101, - 114,46,95,108,101,103,97,99,121,95,103,101,116,95,115,112, - 101,99,78,99,4,0,0,0,0,0,0,0,9,0,0,0, - 5,0,0,0,67,0,0,0,115,240,0,0,0,103,0,0, - 125,4,0,120,227,0,124,2,0,68,93,191,0,125,5,0, - 116,0,0,124,5,0,116,1,0,116,2,0,102,2,0,131, - 2,0,115,43,0,113,13,0,124,0,0,106,3,0,124,5, - 0,131,1,0,125,6,0,124,6,0,100,1,0,107,9,0, - 114,13,0,116,4,0,124,6,0,100,2,0,131,2,0,114, - 106,0,124,6,0,106,5,0,124,1,0,124,3,0,131,2, - 0,125,7,0,110,18,0,124,0,0,106,6,0,124,1,0, - 124,6,0,131,2,0,125,7,0,124,7,0,100,1,0,107, - 8,0,114,139,0,113,13,0,124,7,0,106,7,0,100,1, - 0,107,9,0,114,158,0,124,7,0,83,124,7,0,106,8, - 0,125,8,0,124,8,0,100,1,0,107,8,0,114,191,0, - 116,9,0,100,3,0,131,1,0,130,1,0,124,4,0,106, - 10,0,124,8,0,131,1,0,1,113,13,0,87,116,11,0, - 124,1,0,100,1,0,131,2,0,125,7,0,124,4,0,124, - 7,0,95,8,0,124,7,0,83,100,1,0,83,41,4,122, - 63,70,105,110,100,32,116,104,101,32,108,111,97,100,101,114, - 32,111,114,32,110,97,109,101,115,112,97,99,101,95,112,97, - 116,104,32,102,111,114,32,116,104,105,115,32,109,111,100,117, - 108,101,47,112,97,99,107,97,103,101,32,110,97,109,101,46, - 78,114,15,1,0,0,122,19,115,112,101,99,32,109,105,115, - 115,105,110,103,32,108,111,97,100,101,114,41,12,114,194,0, - 0,0,114,127,0,0,0,218,5,98,121,116,101,115,114,84, - 1,0,0,114,60,0,0,0,114,15,1,0,0,114,85,1, - 0,0,114,173,0,0,0,114,224,0,0,0,114,159,0,0, - 0,114,199,0,0,0,114,220,0,0,0,41,9,114,13,1, - 0,0,114,164,0,0,0,114,35,0,0,0,114,14,1,0, - 0,218,14,110,97,109,101,115,112,97,99,101,95,112,97,116, - 104,90,5,101,110,116,114,121,114,80,1,0,0,114,180,0, - 0,0,114,174,0,0,0,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,218,9,95,103,101,116,95,115,112,101, - 99,107,7,0,0,115,40,0,0,0,0,5,6,1,13,1, - 21,1,3,1,15,1,12,1,15,1,21,2,18,1,12,1, - 3,1,15,1,4,1,9,1,12,1,12,5,17,2,15,1, - 9,1,122,20,80,97,116,104,70,105,110,100,101,114,46,95, - 103,101,116,95,115,112,101,99,99,4,0,0,0,0,0,0, - 0,6,0,0,0,4,0,0,0,67,0,0,0,115,140,0, - 0,0,124,2,0,100,1,0,107,8,0,114,21,0,116,0, - 0,106,1,0,125,2,0,124,0,0,106,2,0,124,1,0, - 124,2,0,124,3,0,131,3,0,125,4,0,124,4,0,100, - 1,0,107,8,0,114,58,0,100,1,0,83,124,4,0,106, - 3,0,100,1,0,107,8,0,114,132,0,124,4,0,106,4, - 0,125,5,0,124,5,0,114,125,0,100,2,0,124,4,0, - 95,5,0,116,6,0,124,1,0,124,5,0,124,0,0,106, - 2,0,131,3,0,124,4,0,95,4,0,124,4,0,83,100, - 1,0,83,110,4,0,124,4,0,83,100,1,0,83,41,3, - 122,98,102,105,110,100,32,116,104,101,32,109,111,100,117,108, - 101,32,111,110,32,115,121,115,46,112,97,116,104,32,111,114, - 32,39,112,97,116,104,39,32,98,97,115,101,100,32,111,110, - 32,115,121,115,46,112,97,116,104,95,104,111,111,107,115,32, - 97,110,100,10,32,32,32,32,32,32,32,32,115,121,115,46, - 112,97,116,104,95,105,109,112,111,114,116,101,114,95,99,97, - 99,104,101,46,78,90,9,110,97,109,101,115,112,97,99,101, - 41,7,114,7,0,0,0,114,35,0,0,0,114,88,1,0, - 0,114,173,0,0,0,114,224,0,0,0,114,221,0,0,0, - 114,63,1,0,0,41,6,114,13,1,0,0,114,164,0,0, - 0,114,35,0,0,0,114,14,1,0,0,114,180,0,0,0, - 114,87,1,0,0,114,4,0,0,0,114,4,0,0,0,114, - 5,0,0,0,114,15,1,0,0,139,7,0,0,115,26,0, - 0,0,0,4,12,1,9,1,21,1,12,1,4,1,15,1, - 9,1,6,3,9,1,24,1,4,2,7,2,122,20,80,97, - 116,104,70,105,110,100,101,114,46,102,105,110,100,95,115,112, - 101,99,99,3,0,0,0,0,0,0,0,4,0,0,0,3, - 0,0,0,67,0,0,0,115,41,0,0,0,124,0,0,106, - 0,0,124,1,0,124,2,0,131,2,0,125,3,0,124,3, - 0,100,1,0,107,8,0,114,34,0,100,1,0,83,124,3, - 0,106,1,0,83,41,2,122,170,102,105,110,100,32,116,104, - 101,32,109,111,100,117,108,101,32,111,110,32,115,121,115,46, - 112,97,116,104,32,111,114,32,39,112,97,116,104,39,32,98, - 97,115,101,100,32,111,110,32,115,121,115,46,112,97,116,104, - 95,104,111,111,107,115,32,97,110,100,10,32,32,32,32,32, - 32,32,32,115,121,115,46,112,97,116,104,95,105,109,112,111, - 114,116,101,114,95,99,97,99,104,101,46,10,10,32,32,32, - 32,32,32,32,32,84,104,105,115,32,109,101,116,104,111,100, - 32,105,115,32,100,101,112,114,101,99,97,116,101,100,46,32, - 32,85,115,101,32,102,105,110,100,95,115,112,101,99,40,41, - 32,105,110,115,116,101,97,100,46,10,10,32,32,32,32,32, - 32,32,32,78,41,2,114,15,1,0,0,114,173,0,0,0, - 41,4,114,13,1,0,0,114,164,0,0,0,114,35,0,0, - 0,114,180,0,0,0,114,4,0,0,0,114,4,0,0,0, - 114,5,0,0,0,114,16,1,0,0,161,7,0,0,115,8, - 0,0,0,0,8,18,1,12,1,4,1,122,22,80,97,116, - 104,70,105,110,100,101,114,46,102,105,110,100,95,109,111,100, - 117,108,101,41,12,114,57,0,0,0,114,56,0,0,0,114, - 58,0,0,0,114,59,0,0,0,114,20,1,0,0,114,77, - 1,0,0,114,82,1,0,0,114,84,1,0,0,114,85,1, - 0,0,114,88,1,0,0,114,15,1,0,0,114,16,1,0, - 0,114,4,0,0,0,114,4,0,0,0,114,4,0,0,0, - 114,5,0,0,0,114,76,1,0,0,41,7,0,0,115,22, - 0,0,0,12,2,6,2,18,8,18,17,18,22,18,15,3, - 1,18,31,3,1,21,21,3,1,114,76,1,0,0,99,0, - 0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,64, - 0,0,0,115,133,0,0,0,101,0,0,90,1,0,100,0, - 0,90,2,0,100,1,0,90,3,0,100,2,0,100,3,0, - 132,0,0,90,4,0,100,4,0,100,5,0,132,0,0,90, - 5,0,101,6,0,90,7,0,100,6,0,100,7,0,132,0, - 0,90,8,0,100,8,0,100,9,0,132,0,0,90,9,0, - 100,10,0,100,11,0,100,12,0,132,1,0,90,10,0,100, - 13,0,100,14,0,132,0,0,90,11,0,101,12,0,100,15, - 0,100,16,0,132,0,0,131,1,0,90,13,0,100,17,0, - 100,18,0,132,0,0,90,14,0,100,10,0,83,41,19,218, - 10,70,105,108,101,70,105,110,100,101,114,122,172,70,105,108, - 101,45,98,97,115,101,100,32,102,105,110,100,101,114,46,10, - 10,32,32,32,32,73,110,116,101,114,97,99,116,105,111,110, - 115,32,119,105,116,104,32,116,104,101,32,102,105,108,101,32, - 115,121,115,116,101,109,32,97,114,101,32,99,97,99,104,101, - 100,32,102,111,114,32,112,101,114,102,111,114,109,97,110,99, - 101,44,32,98,101,105,110,103,10,32,32,32,32,114,101,102, - 114,101,115,104,101,100,32,119,104,101,110,32,116,104,101,32, - 100,105,114,101,99,116,111,114,121,32,116,104,101,32,102,105, - 110,100,101,114,32,105,115,32,104,97,110,100,108,105,110,103, - 32,104,97,115,32,98,101,101,110,32,109,111,100,105,102,105, - 101,100,46,10,10,32,32,32,32,99,2,0,0,0,0,0, - 0,0,5,0,0,0,5,0,0,0,7,0,0,0,115,122, - 0,0,0,103,0,0,125,3,0,120,52,0,124,2,0,68, - 93,44,0,92,2,0,137,0,0,125,4,0,124,3,0,106, - 0,0,135,0,0,102,1,0,100,1,0,100,2,0,134,0, - 0,124,4,0,68,131,1,0,131,1,0,1,113,13,0,87, - 124,3,0,124,0,0,95,1,0,124,1,0,112,79,0,100, - 3,0,124,0,0,95,2,0,100,6,0,124,0,0,95,3, - 0,116,4,0,131,0,0,124,0,0,95,5,0,116,4,0, - 131,0,0,124,0,0,95,6,0,100,5,0,83,41,7,122, - 154,73,110,105,116,105,97,108,105,122,101,32,119,105,116,104, - 32,116,104,101,32,112,97,116,104,32,116,111,32,115,101,97, - 114,99,104,32,111,110,32,97,110,100,32,97,32,118,97,114, - 105,97,98,108,101,32,110,117,109,98,101,114,32,111,102,10, - 32,32,32,32,32,32,32,32,50,45,116,117,112,108,101,115, - 32,99,111,110,116,97,105,110,105,110,103,32,116,104,101,32, - 108,111,97,100,101,114,32,97,110,100,32,116,104,101,32,102, - 105,108,101,32,115,117,102,102,105,120,101,115,32,116,104,101, - 32,108,111,97,100,101,114,10,32,32,32,32,32,32,32,32, - 114,101,99,111,103,110,105,122,101,115,46,99,1,0,0,0, - 0,0,0,0,2,0,0,0,3,0,0,0,51,0,0,0, - 115,27,0,0,0,124,0,0,93,17,0,125,1,0,124,1, - 0,136,0,0,102,2,0,86,1,113,3,0,100,0,0,83, - 41,1,78,114,4,0,0,0,41,2,114,22,0,0,0,114, - 60,1,0,0,41,1,114,173,0,0,0,114,4,0,0,0, - 114,5,0,0,0,114,77,0,0,0,190,7,0,0,115,2, - 0,0,0,6,0,122,38,70,105,108,101,70,105,110,100,101, - 114,46,95,95,105,110,105,116,95,95,46,60,108,111,99,97, - 108,115,62,46,60,103,101,110,101,120,112,114,62,114,117,0, - 0,0,114,29,0,0,0,78,114,145,0,0,0,41,7,114, - 199,0,0,0,218,8,95,108,111,97,100,101,114,115,114,35, - 0,0,0,218,11,95,112,97,116,104,95,109,116,105,109,101, - 218,3,115,101,116,218,11,95,112,97,116,104,95,99,97,99, - 104,101,218,19,95,114,101,108,97,120,101,100,95,112,97,116, - 104,95,99,97,99,104,101,41,5,114,71,0,0,0,114,35, - 0,0,0,218,14,108,111,97,100,101,114,95,100,101,116,97, - 105,108,115,90,7,108,111,97,100,101,114,115,114,247,0,0, - 0,114,4,0,0,0,41,1,114,173,0,0,0,114,5,0, - 0,0,114,72,0,0,0,184,7,0,0,115,16,0,0,0, - 0,4,6,1,19,1,36,1,9,2,15,1,9,1,12,1, - 122,19,70,105,108,101,70,105,110,100,101,114,46,95,95,105, - 110,105,116,95,95,99,1,0,0,0,0,0,0,0,1,0, - 0,0,2,0,0,0,67,0,0,0,115,13,0,0,0,100, - 3,0,124,0,0,95,0,0,100,2,0,83,41,4,122,31, - 73,110,118,97,108,105,100,97,116,101,32,116,104,101,32,100, - 105,114,101,99,116,111,114,121,32,109,116,105,109,101,46,114, - 29,0,0,0,78,114,145,0,0,0,41,1,114,91,1,0, - 0,41,1,114,71,0,0,0,114,4,0,0,0,114,4,0, - 0,0,114,5,0,0,0,114,77,1,0,0,198,7,0,0, - 115,2,0,0,0,0,2,122,28,70,105,108,101,70,105,110, - 100,101,114,46,105,110,118,97,108,105,100,97,116,101,95,99, - 97,99,104,101,115,99,2,0,0,0,0,0,0,0,3,0, - 0,0,2,0,0,0,67,0,0,0,115,59,0,0,0,124, - 0,0,106,0,0,124,1,0,131,1,0,125,2,0,124,2, - 0,100,1,0,107,8,0,114,37,0,100,1,0,103,0,0, - 102,2,0,83,124,2,0,106,1,0,124,2,0,106,2,0, - 112,55,0,103,0,0,102,2,0,83,41,2,122,197,84,114, - 121,32,116,111,32,102,105,110,100,32,97,32,108,111,97,100, - 101,114,32,102,111,114,32,116,104,101,32,115,112,101,99,105, - 102,105,101,100,32,109,111,100,117,108,101,44,32,111,114,32, - 116,104,101,32,110,97,109,101,115,112,97,99,101,10,32,32, - 32,32,32,32,32,32,112,97,99,107,97,103,101,32,112,111, - 114,116,105,111,110,115,46,32,82,101,116,117,114,110,115,32, - 40,108,111,97,100,101,114,44,32,108,105,115,116,45,111,102, - 45,112,111,114,116,105,111,110,115,41,46,10,10,32,32,32, - 32,32,32,32,32,84,104,105,115,32,109,101,116,104,111,100, - 32,105,115,32,100,101,112,114,101,99,97,116,101,100,46,32, - 32,85,115,101,32,102,105,110,100,95,115,112,101,99,40,41, - 32,105,110,115,116,101,97,100,46,10,10,32,32,32,32,32, - 32,32,32,78,41,3,114,15,1,0,0,114,173,0,0,0, - 114,224,0,0,0,41,3,114,71,0,0,0,114,164,0,0, - 0,114,180,0,0,0,114,4,0,0,0,114,4,0,0,0, - 114,5,0,0,0,114,171,0,0,0,204,7,0,0,115,8, - 0,0,0,0,7,15,1,12,1,10,1,122,22,70,105,108, - 101,70,105,110,100,101,114,46,102,105,110,100,95,108,111,97, - 100,101,114,99,6,0,0,0,0,0,0,0,7,0,0,0, - 7,0,0,0,67,0,0,0,115,40,0,0,0,124,1,0, - 124,2,0,124,3,0,131,2,0,125,6,0,116,0,0,124, - 2,0,124,3,0,100,1,0,124,6,0,100,2,0,124,4, - 0,131,2,2,83,41,3,78,114,173,0,0,0,114,224,0, - 0,0,41,1,114,242,0,0,0,41,7,114,71,0,0,0, - 114,246,0,0,0,114,164,0,0,0,114,35,0,0,0,114, - 232,0,0,0,114,14,1,0,0,114,173,0,0,0,114,4, - 0,0,0,114,4,0,0,0,114,5,0,0,0,114,88,1, - 0,0,216,7,0,0,115,6,0,0,0,0,1,15,1,18, - 1,122,20,70,105,108,101,70,105,110,100,101,114,46,95,103, - 101,116,95,115,112,101,99,78,99,3,0,0,0,0,0,0, - 0,14,0,0,0,15,0,0,0,67,0,0,0,115,231,1, - 0,0,100,1,0,125,3,0,124,1,0,106,0,0,100,2, - 0,131,1,0,100,3,0,25,125,4,0,121,34,0,116,1, - 0,124,0,0,106,2,0,112,49,0,116,3,0,106,4,0, - 131,0,0,131,1,0,106,5,0,125,5,0,87,110,24,0, - 4,116,6,0,107,10,0,114,85,0,1,1,1,100,10,0, - 125,5,0,89,110,1,0,88,124,5,0,124,0,0,106,7, - 0,107,3,0,114,120,0,124,0,0,106,8,0,131,0,0, - 1,124,5,0,124,0,0,95,7,0,116,9,0,131,0,0, - 114,153,0,124,0,0,106,10,0,125,6,0,124,4,0,106, - 11,0,131,0,0,125,7,0,110,15,0,124,0,0,106,12, - 0,125,6,0,124,4,0,125,7,0,124,7,0,124,6,0, - 107,6,0,114,45,1,116,13,0,124,0,0,106,2,0,124, - 4,0,131,2,0,125,8,0,120,100,0,124,0,0,106,14, - 0,68,93,77,0,92,2,0,125,9,0,125,10,0,100,5, - 0,124,9,0,23,125,11,0,116,13,0,124,8,0,124,11, - 0,131,2,0,125,12,0,116,15,0,124,12,0,131,1,0, - 114,208,0,124,0,0,106,16,0,124,10,0,124,1,0,124, - 12,0,124,8,0,103,1,0,124,2,0,131,5,0,83,113, - 208,0,87,116,17,0,124,8,0,131,1,0,125,3,0,120, - 123,0,124,0,0,106,14,0,68,93,112,0,92,2,0,125, - 9,0,125,10,0,116,13,0,124,0,0,106,2,0,124,4, - 0,124,9,0,23,131,2,0,125,12,0,116,18,0,100,6, - 0,106,19,0,124,12,0,131,1,0,100,7,0,100,3,0, - 131,1,1,1,124,7,0,124,9,0,23,124,6,0,107,6, - 0,114,55,1,116,15,0,124,12,0,131,1,0,114,55,1, - 124,0,0,106,16,0,124,10,0,124,1,0,124,12,0,100, - 8,0,124,2,0,131,5,0,83,113,55,1,87,124,3,0, - 114,227,1,116,18,0,100,9,0,106,19,0,124,8,0,131, - 1,0,131,1,0,1,116,20,0,124,1,0,100,8,0,131, - 2,0,125,13,0,124,8,0,103,1,0,124,13,0,95,21, - 0,124,13,0,83,100,8,0,83,41,11,122,125,84,114,121, - 32,116,111,32,102,105,110,100,32,97,32,108,111,97,100,101, - 114,32,102,111,114,32,116,104,101,32,115,112,101,99,105,102, - 105,101,100,32,109,111,100,117,108,101,44,32,111,114,32,116, - 104,101,32,110,97,109,101,115,112,97,99,101,10,32,32,32, - 32,32,32,32,32,112,97,99,107,97,103,101,32,112,111,114, - 116,105,111,110,115,46,32,82,101,116,117,114,110,115,32,40, - 108,111,97,100,101,114,44,32,108,105,115,116,45,111,102,45, - 112,111,114,116,105,111,110,115,41,46,70,114,117,0,0,0, - 114,115,0,0,0,114,29,0,0,0,114,72,0,0,0,122, - 9,116,114,121,105,110,103,32,123,125,114,152,0,0,0,78, - 122,25,112,111,115,115,105,98,108,101,32,110,97,109,101,115, - 112,97,99,101,32,102,111,114,32,123,125,114,145,0,0,0, - 41,22,114,32,0,0,0,114,39,0,0,0,114,35,0,0, - 0,114,3,0,0,0,114,45,0,0,0,114,56,1,0,0, - 114,40,0,0,0,114,91,1,0,0,218,11,95,102,105,108, - 108,95,99,97,99,104,101,114,6,0,0,0,114,94,1,0, - 0,114,146,0,0,0,114,93,1,0,0,114,28,0,0,0, - 114,90,1,0,0,114,44,0,0,0,114,88,1,0,0,114, - 46,0,0,0,114,158,0,0,0,114,47,0,0,0,114,220, - 0,0,0,114,224,0,0,0,41,14,114,71,0,0,0,114, - 164,0,0,0,114,14,1,0,0,90,12,105,115,95,110,97, - 109,101,115,112,97,99,101,90,11,116,97,105,108,95,109,111, - 100,117,108,101,114,185,0,0,0,90,5,99,97,99,104,101, - 90,12,99,97,99,104,101,95,109,111,100,117,108,101,90,9, - 98,97,115,101,95,112,97,116,104,114,60,1,0,0,114,246, - 0,0,0,90,13,105,110,105,116,95,102,105,108,101,110,97, - 109,101,90,9,102,117,108,108,95,112,97,116,104,114,180,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, - 0,114,15,1,0,0,221,7,0,0,115,68,0,0,0,0, - 3,6,1,19,1,3,1,34,1,13,1,11,1,15,1,10, - 1,9,2,9,1,9,1,15,2,9,1,6,2,12,1,18, - 1,22,1,10,1,15,1,12,1,32,4,12,2,22,1,22, - 1,25,1,16,1,12,1,29,1,6,1,19,1,15,1,12, - 1,4,1,122,20,70,105,108,101,70,105,110,100,101,114,46, - 102,105,110,100,95,115,112,101,99,99,1,0,0,0,0,0, - 0,0,9,0,0,0,13,0,0,0,67,0,0,0,115,11, - 1,0,0,124,0,0,106,0,0,125,1,0,121,31,0,116, - 1,0,106,2,0,124,1,0,112,33,0,116,1,0,106,3, - 0,131,0,0,131,1,0,125,2,0,87,110,33,0,4,116, - 4,0,116,5,0,116,6,0,102,3,0,107,10,0,114,75, - 0,1,1,1,103,0,0,125,2,0,89,110,1,0,88,116, - 7,0,106,8,0,106,9,0,100,1,0,131,1,0,115,112, - 0,116,10,0,124,2,0,131,1,0,124,0,0,95,11,0, - 110,111,0,116,10,0,131,0,0,125,3,0,120,90,0,124, - 2,0,68,93,82,0,125,4,0,124,4,0,106,12,0,100, - 2,0,131,1,0,92,3,0,125,5,0,125,6,0,125,7, - 0,124,6,0,114,191,0,100,3,0,106,13,0,124,5,0, - 124,7,0,106,14,0,131,0,0,131,2,0,125,8,0,110, - 6,0,124,5,0,125,8,0,124,3,0,106,15,0,124,8, - 0,131,1,0,1,113,128,0,87,124,3,0,124,0,0,95, - 11,0,116,7,0,106,8,0,106,9,0,116,16,0,131,1, - 0,114,7,1,100,4,0,100,5,0,132,0,0,124,2,0, - 68,131,1,0,124,0,0,95,17,0,100,6,0,83,41,7, - 122,68,70,105,108,108,32,116,104,101,32,99,97,99,104,101, - 32,111,102,32,112,111,116,101,110,116,105,97,108,32,109,111, - 100,117,108,101,115,32,97,110,100,32,112,97,99,107,97,103, - 101,115,32,102,111,114,32,116,104,105,115,32,100,105,114,101, - 99,116,111,114,121,46,114,0,0,0,0,114,117,0,0,0, - 122,5,123,125,46,123,125,99,1,0,0,0,0,0,0,0, - 2,0,0,0,3,0,0,0,83,0,0,0,115,28,0,0, - 0,104,0,0,124,0,0,93,18,0,125,1,0,124,1,0, - 106,0,0,131,0,0,146,2,0,113,6,0,83,114,4,0, - 0,0,41,1,114,146,0,0,0,41,2,114,22,0,0,0, - 90,2,102,110,114,4,0,0,0,114,4,0,0,0,114,5, - 0,0,0,250,9,60,115,101,116,99,111,109,112,62,39,8, - 0,0,115,2,0,0,0,9,0,122,41,70,105,108,101,70, - 105,110,100,101,114,46,95,102,105,108,108,95,99,97,99,104, - 101,46,60,108,111,99,97,108,115,62,46,60,115,101,116,99, - 111,109,112,62,78,41,18,114,35,0,0,0,114,3,0,0, - 0,90,7,108,105,115,116,100,105,114,114,45,0,0,0,114, - 83,1,0,0,218,15,80,101,114,109,105,115,115,105,111,110, - 69,114,114,111,114,218,18,78,111,116,65,68,105,114,101,99, - 116,111,114,121,69,114,114,111,114,114,7,0,0,0,114,8, - 0,0,0,114,9,0,0,0,114,92,1,0,0,114,93,1, - 0,0,114,141,0,0,0,114,47,0,0,0,114,146,0,0, - 0,218,3,97,100,100,114,10,0,0,0,114,94,1,0,0, - 41,9,114,71,0,0,0,114,35,0,0,0,90,8,99,111, - 110,116,101,110,116,115,90,21,108,111,119,101,114,95,115,117, - 102,102,105,120,95,99,111,110,116,101,110,116,115,114,74,1, - 0,0,114,67,0,0,0,114,68,1,0,0,114,60,1,0, - 0,90,8,110,101,119,95,110,97,109,101,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,114,96,1,0,0,10, - 8,0,0,115,34,0,0,0,0,2,9,1,3,1,31,1, - 22,3,11,3,18,1,18,7,9,1,13,1,24,1,6,1, - 27,2,6,1,17,1,9,1,18,1,122,22,70,105,108,101, - 70,105,110,100,101,114,46,95,102,105,108,108,95,99,97,99, - 104,101,99,1,0,0,0,0,0,0,0,3,0,0,0,3, - 0,0,0,7,0,0,0,115,25,0,0,0,135,0,0,135, - 1,0,102,2,0,100,1,0,100,2,0,134,0,0,125,2, - 0,124,2,0,83,41,3,97,20,1,0,0,65,32,99,108, - 97,115,115,32,109,101,116,104,111,100,32,119,104,105,99,104, - 32,114,101,116,117,114,110,115,32,97,32,99,108,111,115,117, - 114,101,32,116,111,32,117,115,101,32,111,110,32,115,121,115, - 46,112,97,116,104,95,104,111,111,107,10,32,32,32,32,32, - 32,32,32,119,104,105,99,104,32,119,105,108,108,32,114,101, - 116,117,114,110,32,97,110,32,105,110,115,116,97,110,99,101, - 32,117,115,105,110,103,32,116,104,101,32,115,112,101,99,105, - 102,105,101,100,32,108,111,97,100,101,114,115,32,97,110,100, - 32,116,104,101,32,112,97,116,104,10,32,32,32,32,32,32, - 32,32,99,97,108,108,101,100,32,111,110,32,116,104,101,32, - 99,108,111,115,117,114,101,46,10,10,32,32,32,32,32,32, - 32,32,73,102,32,116,104,101,32,112,97,116,104,32,99,97, - 108,108,101,100,32,111,110,32,116,104,101,32,99,108,111,115, - 117,114,101,32,105,115,32,110,111,116,32,97,32,100,105,114, - 101,99,116,111,114,121,44,32,73,109,112,111,114,116,69,114, - 114,111,114,32,105,115,10,32,32,32,32,32,32,32,32,114, - 97,105,115,101,100,46,10,10,32,32,32,32,32,32,32,32, - 99,1,0,0,0,0,0,0,0,1,0,0,0,4,0,0, - 0,19,0,0,0,115,43,0,0,0,116,0,0,124,0,0, - 131,1,0,115,30,0,116,1,0,100,1,0,100,2,0,124, - 0,0,131,1,1,130,1,0,136,0,0,124,0,0,136,1, - 0,140,1,0,83,41,3,122,45,80,97,116,104,32,104,111, - 111,107,32,102,111,114,32,105,109,112,111,114,116,108,105,98, - 46,109,97,99,104,105,110,101,114,121,46,70,105,108,101,70, - 105,110,100,101,114,46,122,30,111,110,108,121,32,100,105,114, - 101,99,116,111,114,105,101,115,32,97,114,101,32,115,117,112, - 112,111,114,116,101,100,114,35,0,0,0,41,2,114,46,0, - 0,0,114,159,0,0,0,41,1,114,35,0,0,0,41,2, - 114,13,1,0,0,114,95,1,0,0,114,4,0,0,0,114, - 5,0,0,0,218,24,112,97,116,104,95,104,111,111,107,95, - 102,111,114,95,70,105,108,101,70,105,110,100,101,114,51,8, - 0,0,115,6,0,0,0,0,2,12,1,18,1,122,54,70, - 105,108,101,70,105,110,100,101,114,46,112,97,116,104,95,104, - 111,111,107,46,60,108,111,99,97,108,115,62,46,112,97,116, - 104,95,104,111,111,107,95,102,111,114,95,70,105,108,101,70, - 105,110,100,101,114,114,4,0,0,0,41,3,114,13,1,0, - 0,114,95,1,0,0,114,101,1,0,0,114,4,0,0,0, - 41,2,114,13,1,0,0,114,95,1,0,0,114,5,0,0, - 0,218,9,112,97,116,104,95,104,111,111,107,41,8,0,0, - 115,4,0,0,0,0,10,21,6,122,20,70,105,108,101,70, - 105,110,100,101,114,46,112,97,116,104,95,104,111,111,107,99, - 1,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0, - 67,0,0,0,115,16,0,0,0,100,1,0,106,0,0,124, - 0,0,106,1,0,131,1,0,83,41,2,78,122,16,70,105, - 108,101,70,105,110,100,101,114,40,123,33,114,125,41,41,2, - 114,47,0,0,0,114,35,0,0,0,41,1,114,71,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 114,101,0,0,0,59,8,0,0,115,2,0,0,0,0,1, - 122,19,70,105,108,101,70,105,110,100,101,114,46,95,95,114, - 101,112,114,95,95,41,15,114,57,0,0,0,114,56,0,0, - 0,114,58,0,0,0,114,59,0,0,0,114,72,0,0,0, - 114,77,1,0,0,114,176,0,0,0,114,16,1,0,0,114, - 171,0,0,0,114,88,1,0,0,114,15,1,0,0,114,96, - 1,0,0,114,20,1,0,0,114,102,1,0,0,114,101,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,114,89,1,0,0,175,7,0,0,115, - 20,0,0,0,12,7,6,2,12,14,12,4,6,2,12,12, - 12,5,15,45,12,31,18,18,114,89,1,0,0,99,0,0, - 0,0,0,0,0,0,0,0,0,0,2,0,0,0,64,0, - 0,0,115,46,0,0,0,101,0,0,90,1,0,100,0,0, - 90,2,0,100,1,0,90,3,0,100,2,0,100,3,0,132, - 0,0,90,4,0,100,4,0,100,5,0,132,0,0,90,5, - 0,100,6,0,83,41,7,218,18,95,73,109,112,111,114,116, - 76,111,99,107,67,111,110,116,101,120,116,122,36,67,111,110, - 116,101,120,116,32,109,97,110,97,103,101,114,32,102,111,114, - 32,116,104,101,32,105,109,112,111,114,116,32,108,111,99,107, - 46,99,1,0,0,0,0,0,0,0,1,0,0,0,1,0, - 0,0,67,0,0,0,115,14,0,0,0,116,0,0,106,1, - 0,131,0,0,1,100,1,0,83,41,2,122,24,65,99,113, - 117,105,114,101,32,116,104,101,32,105,109,112,111,114,116,32, - 108,111,99,107,46,78,41,2,114,106,0,0,0,114,5,1, - 0,0,41,1,114,71,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,114,75,0,0,0,69,8,0, - 0,115,2,0,0,0,0,2,122,28,95,73,109,112,111,114, - 116,76,111,99,107,67,111,110,116,101,120,116,46,95,95,101, - 110,116,101,114,95,95,99,4,0,0,0,0,0,0,0,4, + 132,0,0,90,5,0,100,6,0,83,41,7,218,18,95,73, + 109,112,111,114,116,76,111,99,107,67,111,110,116,101,120,116, + 122,36,67,111,110,116,101,120,116,32,109,97,110,97,103,101, + 114,32,102,111,114,32,116,104,101,32,105,109,112,111,114,116, + 32,108,111,99,107,46,99,1,0,0,0,0,0,0,0,1, 0,0,0,1,0,0,0,67,0,0,0,115,14,0,0,0, 116,0,0,106,1,0,131,0,0,1,100,1,0,83,41,2, - 122,60,82,101,108,101,97,115,101,32,116,104,101,32,105,109, - 112,111,114,116,32,108,111,99,107,32,114,101,103,97,114,100, - 108,101,115,115,32,111,102,32,97,110,121,32,114,97,105,115, - 101,100,32,101,120,99,101,112,116,105,111,110,115,46,78,41, - 2,114,106,0,0,0,114,107,0,0,0,41,4,114,71,0, - 0,0,90,8,101,120,99,95,116,121,112,101,90,9,101,120, - 99,95,118,97,108,117,101,90,13,101,120,99,95,116,114,97, - 99,101,98,97,99,107,114,4,0,0,0,114,4,0,0,0, - 114,5,0,0,0,114,81,0,0,0,73,8,0,0,115,2, - 0,0,0,0,2,122,27,95,73,109,112,111,114,116,76,111, - 99,107,67,111,110,116,101,120,116,46,95,95,101,120,105,116, - 95,95,78,41,6,114,57,0,0,0,114,56,0,0,0,114, - 58,0,0,0,114,59,0,0,0,114,75,0,0,0,114,81, - 0,0,0,114,4,0,0,0,114,4,0,0,0,114,4,0, - 0,0,114,5,0,0,0,114,103,1,0,0,65,8,0,0, - 115,6,0,0,0,12,2,6,2,12,4,114,103,1,0,0, - 99,3,0,0,0,0,0,0,0,5,0,0,0,4,0,0, - 0,67,0,0,0,115,88,0,0,0,124,1,0,106,0,0, - 100,1,0,124,2,0,100,2,0,24,131,2,0,125,3,0, - 116,1,0,124,3,0,131,1,0,124,2,0,107,0,0,114, - 52,0,116,2,0,100,3,0,131,1,0,130,1,0,124,3, - 0,100,4,0,25,125,4,0,124,0,0,114,84,0,100,5, - 0,106,3,0,124,4,0,124,0,0,131,2,0,83,124,4, - 0,83,41,6,122,50,82,101,115,111,108,118,101,32,97,32, - 114,101,108,97,116,105,118,101,32,109,111,100,117,108,101,32, - 110,97,109,101,32,116,111,32,97,110,32,97,98,115,111,108, - 117,116,101,32,111,110,101,46,114,117,0,0,0,114,29,0, - 0,0,122,50,97,116,116,101,109,112,116,101,100,32,114,101, - 108,97,116,105,118,101,32,105,109,112,111,114,116,32,98,101, - 121,111,110,100,32,116,111,112,45,108,101,118,101,108,32,112, - 97,99,107,97,103,101,114,84,0,0,0,122,5,123,125,46, - 123,125,41,4,114,34,0,0,0,114,31,0,0,0,114,129, - 0,0,0,114,47,0,0,0,41,5,114,67,0,0,0,218, - 7,112,97,99,107,97,103,101,218,5,108,101,118,101,108,90, - 4,98,105,116,115,114,135,0,0,0,114,4,0,0,0,114, - 4,0,0,0,114,5,0,0,0,218,13,95,114,101,115,111, - 108,118,101,95,110,97,109,101,78,8,0,0,115,10,0,0, - 0,0,2,22,1,18,1,12,1,10,1,114,106,1,0,0, + 122,24,65,99,113,117,105,114,101,32,116,104,101,32,105,109, + 112,111,114,116,32,108,111,99,107,46,78,41,2,114,57,0, + 0,0,114,145,0,0,0,41,1,114,19,0,0,0,114,10, + 0,0,0,114,10,0,0,0,114,11,0,0,0,114,23,0, + 0,0,73,3,0,0,115,2,0,0,0,0,2,122,28,95, + 73,109,112,111,114,116,76,111,99,107,67,111,110,116,101,120, + 116,46,95,95,101,110,116,101,114,95,95,99,4,0,0,0, + 0,0,0,0,4,0,0,0,1,0,0,0,67,0,0,0, + 115,14,0,0,0,116,0,0,106,1,0,131,0,0,1,100, + 1,0,83,41,2,122,60,82,101,108,101,97,115,101,32,116, + 104,101,32,105,109,112,111,114,116,32,108,111,99,107,32,114, + 101,103,97,114,100,108,101,115,115,32,111,102,32,97,110,121, + 32,114,97,105,115,101,100,32,101,120,99,101,112,116,105,111, + 110,115,46,78,41,2,114,57,0,0,0,114,58,0,0,0, + 41,4,114,19,0,0,0,90,8,101,120,99,95,116,121,112, + 101,90,9,101,120,99,95,118,97,108,117,101,90,13,101,120, + 99,95,116,114,97,99,101,98,97,99,107,114,10,0,0,0, + 114,10,0,0,0,114,11,0,0,0,114,30,0,0,0,77, + 3,0,0,115,2,0,0,0,0,2,122,27,95,73,109,112, + 111,114,116,76,111,99,107,67,111,110,116,101,120,116,46,95, + 95,101,120,105,116,95,95,78,41,6,114,1,0,0,0,114, + 0,0,0,0,114,2,0,0,0,114,3,0,0,0,114,23, + 0,0,0,114,30,0,0,0,114,10,0,0,0,114,10,0, + 0,0,114,10,0,0,0,114,11,0,0,0,114,166,0,0, + 0,69,3,0,0,115,6,0,0,0,12,2,6,2,12,4, + 114,166,0,0,0,99,3,0,0,0,0,0,0,0,5,0, + 0,0,4,0,0,0,67,0,0,0,115,88,0,0,0,124, + 1,0,106,0,0,100,1,0,124,2,0,100,2,0,24,131, + 2,0,125,3,0,116,1,0,124,3,0,131,1,0,124,2, + 0,107,0,0,114,52,0,116,2,0,100,3,0,131,1,0, + 130,1,0,124,3,0,100,4,0,25,125,4,0,124,0,0, + 114,84,0,100,5,0,106,3,0,124,4,0,124,0,0,131, + 2,0,83,124,4,0,83,41,6,122,50,82,101,115,111,108, + 118,101,32,97,32,114,101,108,97,116,105,118,101,32,109,111, + 100,117,108,101,32,110,97,109,101,32,116,111,32,97,110,32, + 97,98,115,111,108,117,116,101,32,111,110,101,46,114,121,0, + 0,0,114,45,0,0,0,122,50,97,116,116,101,109,112,116, + 101,100,32,114,101,108,97,116,105,118,101,32,105,109,112,111, + 114,116,32,98,101,121,111,110,100,32,116,111,112,45,108,101, + 118,101,108,32,112,97,99,107,97,103,101,114,33,0,0,0, + 122,5,123,125,46,123,125,41,4,218,6,114,115,112,108,105, + 116,218,3,108,101,110,218,10,86,97,108,117,101,69,114,114, + 111,114,114,50,0,0,0,41,5,114,15,0,0,0,218,7, + 112,97,99,107,97,103,101,218,5,108,101,118,101,108,90,4, + 98,105,116,115,90,4,98,97,115,101,114,10,0,0,0,114, + 10,0,0,0,114,11,0,0,0,218,13,95,114,101,115,111, + 108,118,101,95,110,97,109,101,82,3,0,0,115,10,0,0, + 0,0,2,22,1,18,1,12,1,10,1,114,172,0,0,0, 99,3,0,0,0,0,0,0,0,4,0,0,0,3,0,0, 0,67,0,0,0,115,47,0,0,0,124,0,0,106,0,0, 124,1,0,124,2,0,131,2,0,125,3,0,124,3,0,100, 0,0,107,8,0,114,34,0,100,0,0,83,116,1,0,124, - 1,0,124,3,0,131,2,0,83,41,1,78,41,2,114,16, - 1,0,0,114,177,0,0,0,41,4,114,80,1,0,0,114, - 67,0,0,0,114,35,0,0,0,114,173,0,0,0,114,4, - 0,0,0,114,4,0,0,0,114,5,0,0,0,218,17,95, - 102,105,110,100,95,115,112,101,99,95,108,101,103,97,99,121, - 87,8,0,0,115,8,0,0,0,0,3,18,1,12,1,4, - 1,114,107,1,0,0,99,3,0,0,0,0,0,0,0,9, - 0,0,0,26,0,0,0,67,0,0,0,115,41,1,0,0, - 116,0,0,106,1,0,100,1,0,107,9,0,114,41,0,116, - 0,0,106,1,0,12,114,41,0,116,2,0,106,3,0,100, - 2,0,116,4,0,131,2,0,1,124,0,0,116,0,0,106, - 5,0,107,6,0,125,3,0,120,234,0,116,0,0,106,1, - 0,68,93,219,0,125,4,0,116,6,0,131,0,0,143,90, - 0,1,121,13,0,124,4,0,106,7,0,125,5,0,87,110, - 51,0,4,116,8,0,107,10,0,114,148,0,1,1,1,116, - 9,0,124,4,0,124,0,0,124,1,0,131,3,0,125,6, - 0,124,6,0,100,1,0,107,8,0,114,144,0,119,66,0, - 89,110,19,0,88,124,5,0,124,0,0,124,1,0,124,2, - 0,131,3,0,125,6,0,87,100,1,0,81,88,124,6,0, - 100,1,0,107,9,0,114,66,0,124,3,0,12,114,25,1, - 124,0,0,116,0,0,106,5,0,107,6,0,114,25,1,116, - 0,0,106,5,0,124,0,0,25,125,7,0,121,13,0,124, - 7,0,106,10,0,125,8,0,87,110,22,0,4,116,8,0, - 107,10,0,114,1,1,1,1,1,124,6,0,83,89,113,29, - 1,88,124,8,0,100,1,0,107,8,0,114,18,1,124,6, - 0,83,124,8,0,83,113,66,0,124,6,0,83,113,66,0, - 87,100,1,0,83,100,1,0,83,41,3,122,23,70,105,110, - 100,32,97,32,109,111,100,117,108,101,39,115,32,108,111,97, - 100,101,114,46,78,122,22,115,121,115,46,109,101,116,97,95, - 112,97,116,104,32,105,115,32,101,109,112,116,121,41,11,114, - 7,0,0,0,218,9,109,101,116,97,95,112,97,116,104,114, - 118,0,0,0,114,119,0,0,0,114,172,0,0,0,114,73, - 0,0,0,114,103,1,0,0,114,15,1,0,0,114,211,0, - 0,0,114,107,1,0,0,114,210,0,0,0,41,9,114,67, - 0,0,0,114,35,0,0,0,114,14,1,0,0,90,9,105, - 115,95,114,101,108,111,97,100,114,80,1,0,0,114,15,1, - 0,0,114,180,0,0,0,114,181,0,0,0,114,210,0,0, - 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, - 218,10,95,102,105,110,100,95,115,112,101,99,96,8,0,0, - 115,48,0,0,0,0,2,25,1,16,4,15,1,16,1,10, - 1,3,1,13,1,13,1,18,1,12,1,8,2,24,1,12, - 2,22,1,13,1,3,1,13,1,13,4,9,2,12,1,4, - 2,7,2,8,2,114,109,1,0,0,99,3,0,0,0,0, - 0,0,0,4,0,0,0,4,0,0,0,67,0,0,0,115, - 179,0,0,0,116,0,0,124,0,0,116,1,0,131,2,0, - 115,42,0,116,2,0,100,1,0,106,3,0,116,4,0,124, - 0,0,131,1,0,131,1,0,131,1,0,130,1,0,124,2, - 0,100,2,0,107,0,0,114,66,0,116,5,0,100,3,0, - 131,1,0,130,1,0,124,1,0,114,144,0,116,0,0,124, - 1,0,116,1,0,131,2,0,115,102,0,116,2,0,100,4, - 0,131,1,0,130,1,0,110,42,0,124,1,0,116,6,0, - 106,7,0,107,7,0,114,144,0,100,5,0,125,3,0,116, - 8,0,124,3,0,106,3,0,124,1,0,131,1,0,131,1, - 0,130,1,0,124,0,0,12,114,175,0,124,2,0,100,2, - 0,107,2,0,114,175,0,116,5,0,100,6,0,131,1,0, - 130,1,0,100,7,0,83,41,8,122,28,86,101,114,105,102, - 121,32,97,114,103,117,109,101,110,116,115,32,97,114,101,32, - 34,115,97,110,101,34,46,122,31,109,111,100,117,108,101,32, - 110,97,109,101,32,109,117,115,116,32,98,101,32,115,116,114, - 44,32,110,111,116,32,123,125,114,84,0,0,0,122,18,108, - 101,118,101,108,32,109,117,115,116,32,98,101,32,62,61,32, - 48,122,31,95,95,112,97,99,107,97,103,101,95,95,32,110, - 111,116,32,115,101,116,32,116,111,32,97,32,115,116,114,105, - 110,103,122,61,80,97,114,101,110,116,32,109,111,100,117,108, - 101,32,123,33,114,125,32,110,111,116,32,108,111,97,100,101, - 100,44,32,99,97,110,110,111,116,32,112,101,114,102,111,114, - 109,32,114,101,108,97,116,105,118,101,32,105,109,112,111,114, - 116,122,17,69,109,112,116,121,32,109,111,100,117,108,101,32, - 110,97,109,101,78,41,9,114,194,0,0,0,114,127,0,0, - 0,114,121,0,0,0,114,47,0,0,0,114,66,0,0,0, - 114,129,0,0,0,114,7,0,0,0,114,73,0,0,0,218, - 11,83,121,115,116,101,109,69,114,114,111,114,41,4,114,67, - 0,0,0,114,104,1,0,0,114,105,1,0,0,114,175,0, - 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, - 0,218,13,95,115,97,110,105,116,121,95,99,104,101,99,107, - 136,8,0,0,115,24,0,0,0,0,2,15,1,27,1,12, - 1,12,1,6,1,15,1,15,1,15,1,6,2,21,1,19, - 1,114,111,1,0,0,122,16,78,111,32,109,111,100,117,108, - 101,32,110,97,109,101,100,32,122,4,123,33,114,125,99,2, - 0,0,0,0,0,0,0,8,0,0,0,12,0,0,0,67, - 0,0,0,115,40,1,0,0,100,0,0,125,2,0,124,0, - 0,106,0,0,100,1,0,131,1,0,100,2,0,25,125,3, - 0,124,3,0,114,175,0,124,3,0,116,1,0,106,2,0, - 107,7,0,114,59,0,116,3,0,124,1,0,124,3,0,131, - 2,0,1,124,0,0,116,1,0,106,2,0,107,6,0,114, - 85,0,116,1,0,106,2,0,124,0,0,25,83,116,1,0, - 106,2,0,124,3,0,25,125,4,0,121,13,0,124,4,0, - 106,4,0,125,2,0,87,110,61,0,4,116,5,0,107,10, - 0,114,174,0,1,1,1,116,6,0,100,3,0,23,106,7, - 0,124,0,0,124,3,0,131,2,0,125,5,0,116,8,0, - 124,5,0,100,4,0,124,0,0,131,1,1,100,0,0,130, - 2,0,89,110,1,0,88,116,9,0,124,0,0,124,2,0, - 131,2,0,125,6,0,124,6,0,100,0,0,107,8,0,114, - 232,0,116,8,0,116,6,0,106,7,0,124,0,0,131,1, - 0,100,4,0,124,0,0,131,1,1,130,1,0,110,12,0, - 116,10,0,124,6,0,131,1,0,125,7,0,124,3,0,114, - 36,1,116,1,0,106,2,0,124,3,0,25,125,4,0,116, - 11,0,124,4,0,124,0,0,106,0,0,100,1,0,131,1, - 0,100,5,0,25,124,7,0,131,3,0,1,124,7,0,83, - 41,6,78,114,117,0,0,0,114,84,0,0,0,122,23,59, - 32,123,33,114,125,32,105,115,32,110,111,116,32,97,32,112, - 97,99,107,97,103,101,114,67,0,0,0,114,115,0,0,0, - 41,12,114,32,0,0,0,114,7,0,0,0,114,73,0,0, - 0,114,114,0,0,0,114,250,0,0,0,114,211,0,0,0, - 218,8,95,69,82,82,95,77,83,71,114,47,0,0,0,114, - 159,0,0,0,114,109,1,0,0,114,8,1,0,0,114,61, - 0,0,0,41,8,114,67,0,0,0,218,7,105,109,112,111, - 114,116,95,114,35,0,0,0,114,236,0,0,0,90,13,112, - 97,114,101,110,116,95,109,111,100,117,108,101,114,175,0,0, - 0,114,180,0,0,0,114,181,0,0,0,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,218,23,95,102,105,110, - 100,95,97,110,100,95,108,111,97,100,95,117,110,108,111,99, - 107,101,100,156,8,0,0,115,42,0,0,0,0,1,6,1, - 19,1,6,1,15,1,13,2,15,1,11,1,13,1,3,1, - 13,1,13,1,22,1,26,1,15,1,12,1,30,2,12,1, - 6,2,13,1,29,1,114,114,1,0,0,99,2,0,0,0, - 0,0,0,0,2,0,0,0,10,0,0,0,67,0,0,0, - 115,36,0,0,0,116,0,0,124,0,0,131,1,0,143,18, - 0,1,116,1,0,124,0,0,124,1,0,131,2,0,83,87, - 100,1,0,81,88,100,1,0,83,41,2,122,54,70,105,110, - 100,32,97,110,100,32,108,111,97,100,32,116,104,101,32,109, - 111,100,117,108,101,44,32,97,110,100,32,114,101,108,101,97, - 115,101,32,116,104,101,32,105,109,112,111,114,116,32,108,111, - 99,107,46,78,41,2,114,103,0,0,0,114,114,1,0,0, - 41,2,114,67,0,0,0,114,113,1,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,218,14,95,102,105, - 110,100,95,97,110,100,95,108,111,97,100,183,8,0,0,115, - 4,0,0,0,0,2,13,1,114,115,1,0,0,99,3,0, - 0,0,0,0,0,0,5,0,0,0,4,0,0,0,67,0, - 0,0,115,166,0,0,0,116,0,0,124,0,0,124,1,0, - 124,2,0,131,3,0,1,124,2,0,100,1,0,107,4,0, - 114,46,0,116,1,0,124,0,0,124,1,0,124,2,0,131, - 3,0,125,0,0,116,2,0,106,3,0,131,0,0,1,124, - 0,0,116,4,0,106,5,0,107,7,0,114,84,0,116,6, - 0,124,0,0,116,7,0,131,2,0,83,116,4,0,106,5, - 0,124,0,0,25,125,3,0,124,3,0,100,2,0,107,8, - 0,114,152,0,116,2,0,106,8,0,131,0,0,1,100,3, - 0,106,9,0,124,0,0,131,1,0,125,4,0,116,10,0, - 124,4,0,100,4,0,124,0,0,131,1,1,130,1,0,116, - 11,0,124,0,0,131,1,0,1,124,3,0,83,41,5,97, - 50,1,0,0,73,109,112,111,114,116,32,97,110,100,32,114, - 101,116,117,114,110,32,116,104,101,32,109,111,100,117,108,101, - 32,98,97,115,101,100,32,111,110,32,105,116,115,32,110,97, - 109,101,44,32,116,104,101,32,112,97,99,107,97,103,101,32, - 116,104,101,32,99,97,108,108,32,105,115,10,32,32,32,32, - 98,101,105,110,103,32,109,97,100,101,32,102,114,111,109,44, - 32,97,110,100,32,116,104,101,32,108,101,118,101,108,32,97, - 100,106,117,115,116,109,101,110,116,46,10,10,32,32,32,32, - 84,104,105,115,32,102,117,110,99,116,105,111,110,32,114,101, - 112,114,101,115,101,110,116,115,32,116,104,101,32,103,114,101, - 97,116,101,115,116,32,99,111,109,109,111,110,32,100,101,110, - 111,109,105,110,97,116,111,114,32,111,102,32,102,117,110,99, - 116,105,111,110,97,108,105,116,121,10,32,32,32,32,98,101, - 116,119,101,101,110,32,105,109,112,111,114,116,95,109,111,100, - 117,108,101,32,97,110,100,32,95,95,105,109,112,111,114,116, - 95,95,46,32,84,104,105,115,32,105,110,99,108,117,100,101, - 115,32,115,101,116,116,105,110,103,32,95,95,112,97,99,107, - 97,103,101,95,95,32,105,102,10,32,32,32,32,116,104,101, - 32,108,111,97,100,101,114,32,100,105,100,32,110,111,116,46, - 10,10,32,32,32,32,114,84,0,0,0,78,122,40,105,109, - 112,111,114,116,32,111,102,32,123,125,32,104,97,108,116,101, - 100,59,32,78,111,110,101,32,105,110,32,115,121,115,46,109, - 111,100,117,108,101,115,114,67,0,0,0,41,12,114,111,1, - 0,0,114,106,1,0,0,114,106,0,0,0,114,5,1,0, - 0,114,7,0,0,0,114,73,0,0,0,114,115,1,0,0, - 218,11,95,103,99,100,95,105,109,112,111,114,116,114,107,0, - 0,0,114,47,0,0,0,114,159,0,0,0,114,112,0,0, - 0,41,5,114,67,0,0,0,114,104,1,0,0,114,105,1, - 0,0,114,181,0,0,0,114,133,0,0,0,114,4,0,0, - 0,114,4,0,0,0,114,5,0,0,0,114,116,1,0,0, - 189,8,0,0,115,28,0,0,0,0,9,16,1,12,1,18, - 1,10,1,15,1,13,1,13,1,12,1,10,1,6,1,9, - 1,18,1,10,1,114,116,1,0,0,99,3,0,0,0,0, - 0,0,0,6,0,0,0,17,0,0,0,67,0,0,0,115, - 239,0,0,0,116,0,0,124,0,0,100,1,0,131,2,0, - 114,235,0,100,2,0,124,1,0,107,6,0,114,83,0,116, - 1,0,124,1,0,131,1,0,125,1,0,124,1,0,106,2, - 0,100,2,0,131,1,0,1,116,0,0,124,0,0,100,3, - 0,131,2,0,114,83,0,124,1,0,106,3,0,124,0,0, - 106,4,0,131,1,0,1,120,149,0,124,1,0,68,93,141, - 0,125,3,0,116,0,0,124,0,0,124,3,0,131,2,0, - 115,90,0,100,4,0,106,5,0,124,0,0,106,6,0,124, - 3,0,131,2,0,125,4,0,121,17,0,116,7,0,124,2, - 0,124,4,0,131,2,0,1,87,113,90,0,4,116,8,0, - 107,10,0,114,230,0,1,125,5,0,1,122,47,0,116,9, - 0,124,5,0,131,1,0,106,10,0,116,11,0,131,1,0, - 114,209,0,124,5,0,106,12,0,124,4,0,107,2,0,114, - 209,0,119,90,0,130,0,0,87,89,100,5,0,100,5,0, - 125,5,0,126,5,0,88,113,90,0,88,113,90,0,87,124, - 0,0,83,41,6,122,238,70,105,103,117,114,101,32,111,117, - 116,32,119,104,97,116,32,95,95,105,109,112,111,114,116,95, - 95,32,115,104,111,117,108,100,32,114,101,116,117,114,110,46, - 10,10,32,32,32,32,84,104,101,32,105,109,112,111,114,116, - 95,32,112,97,114,97,109,101,116,101,114,32,105,115,32,97, - 32,99,97,108,108,97,98,108,101,32,119,104,105,99,104,32, - 116,97,107,101,115,32,116,104,101,32,110,97,109,101,32,111, - 102,32,109,111,100,117,108,101,32,116,111,10,32,32,32,32, - 105,109,112,111,114,116,46,32,73,116,32,105,115,32,114,101, - 113,117,105,114,101,100,32,116,111,32,100,101,99,111,117,112, - 108,101,32,116,104,101,32,102,117,110,99,116,105,111,110,32, - 102,114,111,109,32,97,115,115,117,109,105,110,103,32,105,109, - 112,111,114,116,108,105,98,39,115,10,32,32,32,32,105,109, - 112,111,114,116,32,105,109,112,108,101,109,101,110,116,97,116, - 105,111,110,32,105,115,32,100,101,115,105,114,101,100,46,10, - 10,32,32,32,32,114,250,0,0,0,250,1,42,218,7,95, - 95,97,108,108,95,95,122,5,123,125,46,123,125,78,41,13, - 114,60,0,0,0,114,249,0,0,0,218,6,114,101,109,111, - 118,101,114,199,0,0,0,114,118,1,0,0,114,47,0,0, - 0,114,57,0,0,0,114,114,0,0,0,114,159,0,0,0, - 114,127,0,0,0,114,9,0,0,0,218,15,95,69,82,82, - 95,77,83,71,95,80,82,69,70,73,88,114,67,0,0,0, - 41,6,114,181,0,0,0,218,8,102,114,111,109,108,105,115, - 116,114,113,1,0,0,114,16,0,0,0,90,9,102,114,111, - 109,95,110,97,109,101,114,43,1,0,0,114,4,0,0,0, - 114,4,0,0,0,114,5,0,0,0,218,16,95,104,97,110, - 100,108,101,95,102,114,111,109,108,105,115,116,213,8,0,0, + 1,0,124,3,0,131,2,0,83,41,1,78,41,2,114,155, + 0,0,0,114,85,0,0,0,41,4,218,6,102,105,110,100, + 101,114,114,15,0,0,0,114,152,0,0,0,114,99,0,0, + 0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, + 218,17,95,102,105,110,100,95,115,112,101,99,95,108,101,103, + 97,99,121,91,3,0,0,115,8,0,0,0,0,3,18,1, + 12,1,4,1,114,174,0,0,0,99,3,0,0,0,0,0, + 0,0,9,0,0,0,26,0,0,0,67,0,0,0,115,41, + 1,0,0,116,0,0,106,1,0,100,1,0,107,9,0,114, + 41,0,116,0,0,106,1,0,12,114,41,0,116,2,0,106, + 3,0,100,2,0,116,4,0,131,2,0,1,124,0,0,116, + 0,0,106,5,0,107,6,0,125,3,0,120,234,0,116,0, + 0,106,1,0,68,93,219,0,125,4,0,116,6,0,131,0, + 0,143,90,0,1,121,13,0,124,4,0,106,7,0,125,5, + 0,87,110,51,0,4,116,8,0,107,10,0,114,148,0,1, + 1,1,116,9,0,124,4,0,124,0,0,124,1,0,131,3, + 0,125,6,0,124,6,0,100,1,0,107,8,0,114,144,0, + 119,66,0,89,110,19,0,88,124,5,0,124,0,0,124,1, + 0,124,2,0,131,3,0,125,6,0,87,100,1,0,81,88, + 124,6,0,100,1,0,107,9,0,114,66,0,124,3,0,12, + 114,25,1,124,0,0,116,0,0,106,5,0,107,6,0,114, + 25,1,116,0,0,106,5,0,124,0,0,25,125,7,0,121, + 13,0,124,7,0,106,10,0,125,8,0,87,110,22,0,4, + 116,8,0,107,10,0,114,1,1,1,1,1,124,6,0,83, + 89,113,29,1,88,124,8,0,100,1,0,107,8,0,114,18, + 1,124,6,0,83,124,8,0,83,113,66,0,124,6,0,83, + 113,66,0,87,100,1,0,83,100,1,0,83,41,3,122,23, + 70,105,110,100,32,97,32,109,111,100,117,108,101,39,115,32, + 108,111,97,100,101,114,46,78,122,22,115,121,115,46,109,101, + 116,97,95,112,97,116,104,32,105,115,32,101,109,112,116,121, + 41,11,114,14,0,0,0,218,9,109,101,116,97,95,112,97, + 116,104,114,141,0,0,0,114,142,0,0,0,218,13,73,109, + 112,111,114,116,87,97,114,110,105,110,103,114,21,0,0,0, + 114,166,0,0,0,114,154,0,0,0,114,96,0,0,0,114, + 174,0,0,0,114,95,0,0,0,41,9,114,15,0,0,0, + 114,152,0,0,0,114,153,0,0,0,90,9,105,115,95,114, + 101,108,111,97,100,114,173,0,0,0,114,154,0,0,0,114, + 88,0,0,0,114,89,0,0,0,114,95,0,0,0,114,10, + 0,0,0,114,10,0,0,0,114,11,0,0,0,218,10,95, + 102,105,110,100,95,115,112,101,99,100,3,0,0,115,48,0, + 0,0,0,2,25,1,16,4,15,1,16,1,10,1,3,1, + 13,1,13,1,18,1,12,1,8,2,24,1,12,2,22,1, + 13,1,3,1,13,1,13,4,9,2,12,1,4,2,7,2, + 8,2,114,177,0,0,0,99,3,0,0,0,0,0,0,0, + 4,0,0,0,4,0,0,0,67,0,0,0,115,179,0,0, + 0,116,0,0,124,0,0,116,1,0,131,2,0,115,42,0, + 116,2,0,100,1,0,106,3,0,116,4,0,124,0,0,131, + 1,0,131,1,0,131,1,0,130,1,0,124,2,0,100,2, + 0,107,0,0,114,66,0,116,5,0,100,3,0,131,1,0, + 130,1,0,124,1,0,114,144,0,116,0,0,124,1,0,116, + 1,0,131,2,0,115,102,0,116,2,0,100,4,0,131,1, + 0,130,1,0,110,42,0,124,1,0,116,6,0,106,7,0, + 107,7,0,114,144,0,100,5,0,125,3,0,116,8,0,124, + 3,0,106,3,0,124,1,0,131,1,0,131,1,0,130,1, + 0,124,0,0,12,114,175,0,124,2,0,100,2,0,107,2, + 0,114,175,0,116,5,0,100,6,0,131,1,0,130,1,0, + 100,7,0,83,41,8,122,28,86,101,114,105,102,121,32,97, + 114,103,117,109,101,110,116,115,32,97,114,101,32,34,115,97, + 110,101,34,46,122,31,109,111,100,117,108,101,32,110,97,109, + 101,32,109,117,115,116,32,98,101,32,115,116,114,44,32,110, + 111,116,32,123,125,114,33,0,0,0,122,18,108,101,118,101, + 108,32,109,117,115,116,32,98,101,32,62,61,32,48,122,31, + 95,95,112,97,99,107,97,103,101,95,95,32,110,111,116,32, + 115,101,116,32,116,111,32,97,32,115,116,114,105,110,103,122, + 61,80,97,114,101,110,116,32,109,111,100,117,108,101,32,123, + 33,114,125,32,110,111,116,32,108,111,97,100,101,100,44,32, + 99,97,110,110,111,116,32,112,101,114,102,111,114,109,32,114, + 101,108,97,116,105,118,101,32,105,109,112,111,114,116,122,17, + 69,109,112,116,121,32,109,111,100,117,108,101,32,110,97,109, + 101,78,41,9,218,10,105,115,105,110,115,116,97,110,99,101, + 218,3,115,116,114,218,9,84,121,112,101,69,114,114,111,114, + 114,50,0,0,0,114,13,0,0,0,114,169,0,0,0,114, + 14,0,0,0,114,21,0,0,0,218,11,83,121,115,116,101, + 109,69,114,114,111,114,41,4,114,15,0,0,0,114,170,0, + 0,0,114,171,0,0,0,114,147,0,0,0,114,10,0,0, + 0,114,10,0,0,0,114,11,0,0,0,218,13,95,115,97, + 110,105,116,121,95,99,104,101,99,107,140,3,0,0,115,24, + 0,0,0,0,2,15,1,27,1,12,1,12,1,6,1,15, + 1,15,1,15,1,6,2,21,1,19,1,114,182,0,0,0, + 122,16,78,111,32,109,111,100,117,108,101,32,110,97,109,101, + 100,32,122,4,123,33,114,125,99,2,0,0,0,0,0,0, + 0,8,0,0,0,12,0,0,0,67,0,0,0,115,40,1, + 0,0,100,0,0,125,2,0,124,0,0,106,0,0,100,1, + 0,131,1,0,100,2,0,25,125,3,0,124,3,0,114,175, + 0,124,3,0,116,1,0,106,2,0,107,7,0,114,59,0, + 116,3,0,124,1,0,124,3,0,131,2,0,1,124,0,0, + 116,1,0,106,2,0,107,6,0,114,85,0,116,1,0,106, + 2,0,124,0,0,25,83,116,1,0,106,2,0,124,3,0, + 25,125,4,0,121,13,0,124,4,0,106,4,0,125,2,0, + 87,110,61,0,4,116,5,0,107,10,0,114,174,0,1,1, + 1,116,6,0,100,3,0,23,106,7,0,124,0,0,124,3, + 0,131,2,0,125,5,0,116,8,0,124,5,0,100,4,0, + 124,0,0,131,1,1,100,0,0,130,2,0,89,110,1,0, + 88,116,9,0,124,0,0,124,2,0,131,2,0,125,6,0, + 124,6,0,100,0,0,107,8,0,114,232,0,116,8,0,116, + 6,0,106,7,0,124,0,0,131,1,0,100,4,0,124,0, + 0,131,1,1,130,1,0,110,12,0,116,10,0,124,6,0, + 131,1,0,125,7,0,124,3,0,114,36,1,116,1,0,106, + 2,0,124,3,0,25,125,4,0,116,11,0,124,4,0,124, + 0,0,106,0,0,100,1,0,131,1,0,100,5,0,25,124, + 7,0,131,3,0,1,124,7,0,83,41,6,78,114,121,0, + 0,0,114,33,0,0,0,122,23,59,32,123,33,114,125,32, + 105,115,32,110,111,116,32,97,32,112,97,99,107,97,103,101, + 114,15,0,0,0,114,140,0,0,0,41,12,114,122,0,0, + 0,114,14,0,0,0,114,21,0,0,0,114,65,0,0,0, + 114,131,0,0,0,114,96,0,0,0,218,8,95,69,82,82, + 95,77,83,71,114,50,0,0,0,114,77,0,0,0,114,177, + 0,0,0,114,149,0,0,0,114,5,0,0,0,41,8,114, + 15,0,0,0,218,7,105,109,112,111,114,116,95,114,152,0, + 0,0,114,123,0,0,0,90,13,112,97,114,101,110,116,95, + 109,111,100,117,108,101,114,147,0,0,0,114,88,0,0,0, + 114,89,0,0,0,114,10,0,0,0,114,10,0,0,0,114, + 11,0,0,0,218,23,95,102,105,110,100,95,97,110,100,95, + 108,111,97,100,95,117,110,108,111,99,107,101,100,160,3,0, + 0,115,42,0,0,0,0,1,6,1,19,1,6,1,15,1, + 13,2,15,1,11,1,13,1,3,1,13,1,13,1,22,1, + 26,1,15,1,12,1,30,2,12,1,6,2,13,1,29,1, + 114,185,0,0,0,99,2,0,0,0,0,0,0,0,2,0, + 0,0,10,0,0,0,67,0,0,0,115,36,0,0,0,116, + 0,0,124,0,0,131,1,0,143,18,0,1,116,1,0,124, + 0,0,124,1,0,131,2,0,83,87,100,1,0,81,88,100, + 1,0,83,41,2,122,54,70,105,110,100,32,97,110,100,32, + 108,111,97,100,32,116,104,101,32,109,111,100,117,108,101,44, + 32,97,110,100,32,114,101,108,101,97,115,101,32,116,104,101, + 32,105,109,112,111,114,116,32,108,111,99,107,46,78,41,2, + 114,54,0,0,0,114,185,0,0,0,41,2,114,15,0,0, + 0,114,184,0,0,0,114,10,0,0,0,114,10,0,0,0, + 114,11,0,0,0,218,14,95,102,105,110,100,95,97,110,100, + 95,108,111,97,100,187,3,0,0,115,4,0,0,0,0,2, + 13,1,114,186,0,0,0,114,33,0,0,0,99,3,0,0, + 0,0,0,0,0,5,0,0,0,4,0,0,0,67,0,0, + 0,115,166,0,0,0,116,0,0,124,0,0,124,1,0,124, + 2,0,131,3,0,1,124,2,0,100,1,0,107,4,0,114, + 46,0,116,1,0,124,0,0,124,1,0,124,2,0,131,3, + 0,125,0,0,116,2,0,106,3,0,131,0,0,1,124,0, + 0,116,4,0,106,5,0,107,7,0,114,84,0,116,6,0, + 124,0,0,116,7,0,131,2,0,83,116,4,0,106,5,0, + 124,0,0,25,125,3,0,124,3,0,100,2,0,107,8,0, + 114,152,0,116,2,0,106,8,0,131,0,0,1,100,3,0, + 106,9,0,124,0,0,131,1,0,125,4,0,116,10,0,124, + 4,0,100,4,0,124,0,0,131,1,1,130,1,0,116,11, + 0,124,0,0,131,1,0,1,124,3,0,83,41,5,97,50, + 1,0,0,73,109,112,111,114,116,32,97,110,100,32,114,101, + 116,117,114,110,32,116,104,101,32,109,111,100,117,108,101,32, + 98,97,115,101,100,32,111,110,32,105,116,115,32,110,97,109, + 101,44,32,116,104,101,32,112,97,99,107,97,103,101,32,116, + 104,101,32,99,97,108,108,32,105,115,10,32,32,32,32,98, + 101,105,110,103,32,109,97,100,101,32,102,114,111,109,44,32, + 97,110,100,32,116,104,101,32,108,101,118,101,108,32,97,100, + 106,117,115,116,109,101,110,116,46,10,10,32,32,32,32,84, + 104,105,115,32,102,117,110,99,116,105,111,110,32,114,101,112, + 114,101,115,101,110,116,115,32,116,104,101,32,103,114,101,97, + 116,101,115,116,32,99,111,109,109,111,110,32,100,101,110,111, + 109,105,110,97,116,111,114,32,111,102,32,102,117,110,99,116, + 105,111,110,97,108,105,116,121,10,32,32,32,32,98,101,116, + 119,101,101,110,32,105,109,112,111,114,116,95,109,111,100,117, + 108,101,32,97,110,100,32,95,95,105,109,112,111,114,116,95, + 95,46,32,84,104,105,115,32,105,110,99,108,117,100,101,115, + 32,115,101,116,116,105,110,103,32,95,95,112,97,99,107,97, + 103,101,95,95,32,105,102,10,32,32,32,32,116,104,101,32, + 108,111,97,100,101,114,32,100,105,100,32,110,111,116,46,10, + 10,32,32,32,32,114,33,0,0,0,78,122,40,105,109,112, + 111,114,116,32,111,102,32,123,125,32,104,97,108,116,101,100, + 59,32,78,111,110,101,32,105,110,32,115,121,115,46,109,111, + 100,117,108,101,115,114,15,0,0,0,41,12,114,182,0,0, + 0,114,172,0,0,0,114,57,0,0,0,114,145,0,0,0, + 114,14,0,0,0,114,21,0,0,0,114,186,0,0,0,218, + 11,95,103,99,100,95,105,109,112,111,114,116,114,58,0,0, + 0,114,50,0,0,0,114,77,0,0,0,114,63,0,0,0, + 41,5,114,15,0,0,0,114,170,0,0,0,114,171,0,0, + 0,114,89,0,0,0,114,74,0,0,0,114,10,0,0,0, + 114,10,0,0,0,114,11,0,0,0,114,187,0,0,0,193, + 3,0,0,115,28,0,0,0,0,9,16,1,12,1,18,1, + 10,1,15,1,13,1,13,1,12,1,10,1,6,1,9,1, + 18,1,10,1,114,187,0,0,0,99,3,0,0,0,0,0, + 0,0,6,0,0,0,17,0,0,0,67,0,0,0,115,239, + 0,0,0,116,0,0,124,0,0,100,1,0,131,2,0,114, + 235,0,100,2,0,124,1,0,107,6,0,114,83,0,116,1, + 0,124,1,0,131,1,0,125,1,0,124,1,0,106,2,0, + 100,2,0,131,1,0,1,116,0,0,124,0,0,100,3,0, + 131,2,0,114,83,0,124,1,0,106,3,0,124,0,0,106, + 4,0,131,1,0,1,120,149,0,124,1,0,68,93,141,0, + 125,3,0,116,0,0,124,0,0,124,3,0,131,2,0,115, + 90,0,100,4,0,106,5,0,124,0,0,106,6,0,124,3, + 0,131,2,0,125,4,0,121,17,0,116,7,0,124,2,0, + 124,4,0,131,2,0,1,87,113,90,0,4,116,8,0,107, + 10,0,114,230,0,1,125,5,0,1,122,47,0,116,9,0, + 124,5,0,131,1,0,106,10,0,116,11,0,131,1,0,114, + 209,0,124,5,0,106,12,0,124,4,0,107,2,0,114,209, + 0,119,90,0,130,0,0,87,89,100,5,0,100,5,0,125, + 5,0,126,5,0,88,113,90,0,88,113,90,0,87,124,0, + 0,83,41,6,122,238,70,105,103,117,114,101,32,111,117,116, + 32,119,104,97,116,32,95,95,105,109,112,111,114,116,95,95, + 32,115,104,111,117,108,100,32,114,101,116,117,114,110,46,10, + 10,32,32,32,32,84,104,101,32,105,109,112,111,114,116,95, + 32,112,97,114,97,109,101,116,101,114,32,105,115,32,97,32, + 99,97,108,108,97,98,108,101,32,119,104,105,99,104,32,116, + 97,107,101,115,32,116,104,101,32,110,97,109,101,32,111,102, + 32,109,111,100,117,108,101,32,116,111,10,32,32,32,32,105, + 109,112,111,114,116,46,32,73,116,32,105,115,32,114,101,113, + 117,105,114,101,100,32,116,111,32,100,101,99,111,117,112,108, + 101,32,116,104,101,32,102,117,110,99,116,105,111,110,32,102, + 114,111,109,32,97,115,115,117,109,105,110,103,32,105,109,112, + 111,114,116,108,105,98,39,115,10,32,32,32,32,105,109,112, + 111,114,116,32,105,109,112,108,101,109,101,110,116,97,116,105, + 111,110,32,105,115,32,100,101,115,105,114,101,100,46,10,10, + 32,32,32,32,114,131,0,0,0,250,1,42,218,7,95,95, + 97,108,108,95,95,122,5,123,125,46,123,125,78,41,13,114, + 4,0,0,0,114,130,0,0,0,218,6,114,101,109,111,118, + 101,218,6,101,120,116,101,110,100,114,189,0,0,0,114,50, + 0,0,0,114,1,0,0,0,114,65,0,0,0,114,77,0, + 0,0,114,179,0,0,0,114,71,0,0,0,218,15,95,69, + 82,82,95,77,83,71,95,80,82,69,70,73,88,114,15,0, + 0,0,41,6,114,89,0,0,0,218,8,102,114,111,109,108, + 105,115,116,114,184,0,0,0,218,1,120,90,9,102,114,111, + 109,95,110,97,109,101,90,3,101,120,99,114,10,0,0,0, + 114,10,0,0,0,114,11,0,0,0,218,16,95,104,97,110, + 100,108,101,95,102,114,111,109,108,105,115,116,217,3,0,0, 115,34,0,0,0,0,10,15,1,12,1,12,1,13,1,15, 1,16,1,13,1,15,1,21,1,3,1,17,1,18,4,21, - 1,15,1,3,1,26,1,114,122,1,0,0,99,1,0,0, + 1,15,1,3,1,26,1,114,195,0,0,0,99,1,0,0, 0,0,0,0,0,2,0,0,0,2,0,0,0,67,0,0, 0,115,72,0,0,0,124,0,0,106,0,0,100,1,0,131, 1,0,125,1,0,124,1,0,100,2,0,107,8,0,114,68, @@ -4071,285 +1788,185 @@ 10,32,32,32,32,116,111,32,114,101,112,114,101,115,101,110, 116,32,116,104,97,116,32,105,116,115,32,112,114,111,112,101, 114,32,118,97,108,117,101,32,105,115,32,117,110,107,110,111, - 119,110,46,10,10,32,32,32,32,114,253,0,0,0,78,114, - 57,0,0,0,114,250,0,0,0,114,117,0,0,0,114,84, - 0,0,0,41,2,114,93,0,0,0,114,32,0,0,0,41, - 2,218,7,103,108,111,98,97,108,115,114,104,1,0,0,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,17, + 119,110,46,10,10,32,32,32,32,114,135,0,0,0,78,114, + 1,0,0,0,114,131,0,0,0,114,121,0,0,0,114,33, + 0,0,0,41,2,114,42,0,0,0,114,122,0,0,0,41, + 2,218,7,103,108,111,98,97,108,115,114,170,0,0,0,114, + 10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,17, 95,99,97,108,99,95,95,95,112,97,99,107,97,103,101,95, - 95,245,8,0,0,115,12,0,0,0,0,7,15,1,12,1, - 10,1,12,1,19,1,114,124,1,0,0,99,0,0,0,0, - 0,0,0,0,3,0,0,0,3,0,0,0,67,0,0,0, - 115,55,0,0,0,116,0,0,116,1,0,106,2,0,131,0, - 0,102,2,0,125,0,0,116,3,0,116,4,0,102,2,0, - 125,1,0,116,5,0,116,6,0,102,2,0,125,2,0,124, - 0,0,124,1,0,124,2,0,103,3,0,83,41,1,122,95, - 82,101,116,117,114,110,115,32,97,32,108,105,115,116,32,111, - 102,32,102,105,108,101,45,98,97,115,101,100,32,109,111,100, - 117,108,101,32,108,111,97,100,101,114,115,46,10,10,32,32, - 32,32,69,97,99,104,32,105,116,101,109,32,105,115,32,97, - 32,116,117,112,108,101,32,40,108,111,97,100,101,114,44,32, - 115,117,102,102,105,120,101,115,41,46,10,32,32,32,32,41, - 7,114,59,1,0,0,114,106,0,0,0,218,18,101,120,116, - 101,110,115,105,111,110,95,115,117,102,102,105,120,101,115,114, - 10,1,0,0,114,142,0,0,0,114,9,1,0,0,114,132, - 0,0,0,41,3,90,10,101,120,116,101,110,115,105,111,110, - 115,90,6,115,111,117,114,99,101,90,8,98,121,116,101,99, - 111,100,101,114,4,0,0,0,114,4,0,0,0,114,5,0, - 0,0,114,243,0,0,0,4,9,0,0,115,8,0,0,0, - 0,5,18,1,12,1,12,1,114,243,0,0,0,99,5,0, - 0,0,0,0,0,0,9,0,0,0,5,0,0,0,67,0, - 0,0,115,227,0,0,0,124,4,0,100,1,0,107,2,0, - 114,27,0,116,0,0,124,0,0,131,1,0,125,5,0,110, - 54,0,124,1,0,100,2,0,107,9,0,114,45,0,124,1, - 0,110,3,0,105,0,0,125,6,0,116,1,0,124,6,0, - 131,1,0,125,7,0,116,0,0,124,0,0,124,7,0,124, - 4,0,131,3,0,125,5,0,124,3,0,115,207,0,124,4, - 0,100,1,0,107,2,0,114,122,0,116,0,0,124,0,0, - 106,2,0,100,3,0,131,1,0,100,1,0,25,131,1,0, - 83,124,0,0,115,132,0,124,5,0,83,116,3,0,124,0, - 0,131,1,0,116,3,0,124,0,0,106,2,0,100,3,0, - 131,1,0,100,1,0,25,131,1,0,24,125,8,0,116,4, - 0,106,5,0,124,5,0,106,6,0,100,2,0,116,3,0, - 124,5,0,106,6,0,131,1,0,124,8,0,24,133,2,0, - 25,25,83,110,16,0,116,7,0,124,5,0,124,3,0,116, - 0,0,131,3,0,83,100,2,0,83,41,4,97,214,1,0, - 0,73,109,112,111,114,116,32,97,32,109,111,100,117,108,101, - 46,10,10,32,32,32,32,84,104,101,32,39,103,108,111,98, - 97,108,115,39,32,97,114,103,117,109,101,110,116,32,105,115, - 32,117,115,101,100,32,116,111,32,105,110,102,101,114,32,119, - 104,101,114,101,32,116,104,101,32,105,109,112,111,114,116,32, - 105,115,32,111,99,99,117,114,105,110,103,32,102,114,111,109, - 10,32,32,32,32,116,111,32,104,97,110,100,108,101,32,114, - 101,108,97,116,105,118,101,32,105,109,112,111,114,116,115,46, - 32,84,104,101,32,39,108,111,99,97,108,115,39,32,97,114, - 103,117,109,101,110,116,32,105,115,32,105,103,110,111,114,101, - 100,46,32,84,104,101,10,32,32,32,32,39,102,114,111,109, - 108,105,115,116,39,32,97,114,103,117,109,101,110,116,32,115, - 112,101,99,105,102,105,101,115,32,119,104,97,116,32,115,104, - 111,117,108,100,32,101,120,105,115,116,32,97,115,32,97,116, - 116,114,105,98,117,116,101,115,32,111,110,32,116,104,101,32, - 109,111,100,117,108,101,10,32,32,32,32,98,101,105,110,103, - 32,105,109,112,111,114,116,101,100,32,40,101,46,103,46,32, - 96,96,102,114,111,109,32,109,111,100,117,108,101,32,105,109, - 112,111,114,116,32,60,102,114,111,109,108,105,115,116,62,96, - 96,41,46,32,32,84,104,101,32,39,108,101,118,101,108,39, - 10,32,32,32,32,97,114,103,117,109,101,110,116,32,114,101, - 112,114,101,115,101,110,116,115,32,116,104,101,32,112,97,99, - 107,97,103,101,32,108,111,99,97,116,105,111,110,32,116,111, - 32,105,109,112,111,114,116,32,102,114,111,109,32,105,110,32, - 97,32,114,101,108,97,116,105,118,101,10,32,32,32,32,105, - 109,112,111,114,116,32,40,101,46,103,46,32,96,96,102,114, - 111,109,32,46,46,112,107,103,32,105,109,112,111,114,116,32, - 109,111,100,96,96,32,119,111,117,108,100,32,104,97,118,101, - 32,97,32,39,108,101,118,101,108,39,32,111,102,32,50,41, - 46,10,10,32,32,32,32,114,84,0,0,0,78,114,117,0, - 0,0,41,8,114,116,1,0,0,114,124,1,0,0,114,141, - 0,0,0,114,31,0,0,0,114,7,0,0,0,114,73,0, - 0,0,114,57,0,0,0,114,122,1,0,0,41,9,114,67, - 0,0,0,114,123,1,0,0,218,6,108,111,99,97,108,115, - 114,121,1,0,0,114,105,1,0,0,114,181,0,0,0,90, - 8,103,108,111,98,97,108,115,95,114,104,1,0,0,90,7, - 99,117,116,95,111,102,102,114,4,0,0,0,114,4,0,0, - 0,114,5,0,0,0,218,10,95,95,105,109,112,111,114,116, - 95,95,15,9,0,0,115,26,0,0,0,0,11,12,1,15, - 2,24,1,12,1,18,1,6,3,12,1,23,1,6,1,4, - 4,35,3,40,2,114,127,1,0,0,99,1,0,0,0,0, - 0,0,0,2,0,0,0,3,0,0,0,67,0,0,0,115, - 53,0,0,0,116,0,0,106,1,0,124,0,0,131,1,0, - 125,1,0,124,1,0,100,0,0,107,8,0,114,43,0,116, - 2,0,100,1,0,124,0,0,23,131,1,0,130,1,0,116, - 3,0,124,1,0,131,1,0,83,41,2,78,122,25,110,111, - 32,98,117,105,108,116,45,105,110,32,109,111,100,117,108,101, - 32,110,97,109,101,100,32,41,4,114,12,1,0,0,114,15, - 1,0,0,114,159,0,0,0,114,8,1,0,0,41,2,114, - 67,0,0,0,114,180,0,0,0,114,4,0,0,0,114,4, - 0,0,0,114,5,0,0,0,218,18,95,98,117,105,108,116, - 105,110,95,102,114,111,109,95,110,97,109,101,50,9,0,0, - 115,8,0,0,0,0,1,15,1,12,1,16,1,114,128,1, - 0,0,99,2,0,0,0,0,0,0,0,18,0,0,0,12, - 0,0,0,67,0,0,0,115,181,2,0,0,124,1,0,97, - 0,0,124,0,0,97,1,0,116,2,0,116,1,0,131,1, - 0,125,2,0,120,123,0,116,1,0,106,3,0,106,4,0, - 131,0,0,68,93,106,0,92,2,0,125,3,0,125,4,0, - 116,5,0,124,4,0,124,2,0,131,2,0,114,40,0,124, - 3,0,116,1,0,106,6,0,107,6,0,114,91,0,116,7, - 0,125,5,0,110,27,0,116,0,0,106,8,0,124,3,0, - 131,1,0,114,40,0,116,9,0,125,5,0,110,3,0,113, - 40,0,116,10,0,124,4,0,124,5,0,131,2,0,125,6, - 0,116,11,0,124,6,0,124,4,0,131,2,0,1,113,40, - 0,87,116,1,0,106,3,0,116,12,0,25,125,7,0,120, - 73,0,100,26,0,68,93,65,0,125,8,0,124,8,0,116, - 1,0,106,3,0,107,7,0,114,206,0,116,13,0,124,8, - 0,131,1,0,125,9,0,110,13,0,116,1,0,106,3,0, - 124,8,0,25,125,9,0,116,14,0,124,7,0,124,8,0, - 124,9,0,131,3,0,1,113,170,0,87,100,5,0,100,6, - 0,103,1,0,102,2,0,100,7,0,100,8,0,100,6,0, - 103,2,0,102,2,0,102,2,0,125,10,0,120,146,0,124, - 10,0,68,93,126,0,92,2,0,125,11,0,125,12,0,116, - 15,0,100,9,0,100,10,0,132,0,0,124,12,0,68,131, - 1,0,131,1,0,115,66,1,116,16,0,130,1,0,124,12, - 0,100,11,0,25,125,13,0,124,11,0,116,1,0,106,3, - 0,107,6,0,114,108,1,116,1,0,106,3,0,124,11,0, - 25,125,14,0,80,113,23,1,121,17,0,116,13,0,124,11, - 0,131,1,0,125,14,0,80,87,113,23,1,4,116,17,0, - 107,10,0,114,148,1,1,1,1,119,23,1,89,113,23,1, - 88,113,23,1,87,116,17,0,100,12,0,131,1,0,130,1, - 0,116,14,0,124,7,0,100,13,0,124,14,0,131,3,0, - 1,116,14,0,124,7,0,100,14,0,124,13,0,131,3,0, - 1,116,14,0,124,7,0,100,15,0,100,16,0,106,18,0, - 124,12,0,131,1,0,131,3,0,1,121,16,0,116,13,0, - 100,17,0,131,1,0,125,15,0,87,110,24,0,4,116,17, - 0,107,10,0,114,8,2,1,1,1,100,18,0,125,15,0, - 89,110,1,0,88,116,14,0,124,7,0,100,17,0,124,15, - 0,131,3,0,1,116,13,0,100,19,0,131,1,0,125,16, - 0,116,14,0,124,7,0,100,19,0,124,16,0,131,3,0, - 1,124,11,0,100,7,0,107,2,0,114,93,2,116,13,0, - 100,20,0,131,1,0,125,17,0,116,14,0,124,7,0,100, - 21,0,124,17,0,131,3,0,1,116,14,0,124,7,0,100, - 22,0,116,19,0,131,0,0,131,3,0,1,116,20,0,106, - 21,0,116,0,0,106,22,0,131,0,0,131,1,0,1,124, - 11,0,100,7,0,107,2,0,114,177,2,116,23,0,106,24, - 0,100,23,0,131,1,0,1,100,24,0,116,20,0,107,6, - 0,114,177,2,100,25,0,116,25,0,95,26,0,100,18,0, - 83,41,27,122,250,83,101,116,117,112,32,105,109,112,111,114, - 116,108,105,98,32,98,121,32,105,109,112,111,114,116,105,110, - 103,32,110,101,101,100,101,100,32,98,117,105,108,116,45,105, - 110,32,109,111,100,117,108,101,115,32,97,110,100,32,105,110, - 106,101,99,116,105,110,103,32,116,104,101,109,10,32,32,32, - 32,105,110,116,111,32,116,104,101,32,103,108,111,98,97,108, - 32,110,97,109,101,115,112,97,99,101,46,10,10,32,32,32, - 32,65,115,32,115,121,115,32,105,115,32,110,101,101,100,101, - 100,32,102,111,114,32,115,121,115,46,109,111,100,117,108,101, - 115,32,97,99,99,101,115,115,32,97,110,100,32,95,105,109, - 112,32,105,115,32,110,101,101,100,101,100,32,116,111,32,108, - 111,97,100,32,98,117,105,108,116,45,105,110,10,32,32,32, - 32,109,111,100,117,108,101,115,44,32,116,104,111,115,101,32, - 116,119,111,32,109,111,100,117,108,101,115,32,109,117,115,116, - 32,98,101,32,101,120,112,108,105,99,105,116,108,121,32,112, - 97,115,115,101,100,32,105,110,46,10,10,32,32,32,32,114, - 49,0,0,0,114,118,0,0,0,218,8,98,117,105,108,116, - 105,110,115,114,193,0,0,0,90,5,112,111,115,105,120,250, - 1,47,218,2,110,116,250,1,92,99,1,0,0,0,0,0, - 0,0,2,0,0,0,3,0,0,0,115,0,0,0,115,33, - 0,0,0,124,0,0,93,23,0,125,1,0,116,0,0,124, - 1,0,131,1,0,100,0,0,107,2,0,86,1,113,3,0, - 100,1,0,83,41,2,114,29,0,0,0,78,41,1,114,31, - 0,0,0,41,2,114,22,0,0,0,114,136,0,0,0,114, - 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,77, - 0,0,0,95,9,0,0,115,2,0,0,0,6,0,122,25, - 95,115,101,116,117,112,46,60,108,111,99,97,108,115,62,46, - 60,103,101,110,101,120,112,114,62,114,84,0,0,0,122,30, - 105,109,112,111,114,116,108,105,98,32,114,101,113,117,105,114, - 101,115,32,112,111,115,105,120,32,111,114,32,110,116,114,3, - 0,0,0,114,25,0,0,0,114,21,0,0,0,114,30,0, - 0,0,114,85,0,0,0,78,114,111,0,0,0,90,6,119, - 105,110,114,101,103,114,26,1,0,0,114,6,0,0,0,122, - 4,46,112,121,119,122,6,95,100,46,112,121,100,84,41,4, - 122,3,95,105,111,122,9,95,119,97,114,110,105,110,103,115, - 122,8,98,117,105,108,116,105,110,115,122,7,109,97,114,115, - 104,97,108,41,27,114,106,0,0,0,114,7,0,0,0,114, - 66,0,0,0,114,73,0,0,0,218,5,105,116,101,109,115, - 114,194,0,0,0,114,163,0,0,0,114,12,1,0,0,114, - 168,0,0,0,114,21,1,0,0,114,251,0,0,0,114,1, - 1,0,0,114,57,0,0,0,114,128,1,0,0,114,61,0, - 0,0,218,3,97,108,108,114,100,0,0,0,114,159,0,0, - 0,114,26,0,0,0,114,11,0,0,0,114,62,1,0,0, - 114,199,0,0,0,114,125,1,0,0,114,142,0,0,0,114, - 227,0,0,0,114,25,1,0,0,114,29,1,0,0,41,18, - 218,10,115,121,115,95,109,111,100,117,108,101,218,11,95,105, - 109,112,95,109,111,100,117,108,101,90,11,109,111,100,117,108, - 101,95,116,121,112,101,114,67,0,0,0,114,181,0,0,0, - 114,173,0,0,0,114,180,0,0,0,90,11,115,101,108,102, - 95,109,111,100,117,108,101,90,12,98,117,105,108,116,105,110, - 95,110,97,109,101,90,14,98,117,105,108,116,105,110,95,109, - 111,100,117,108,101,90,10,111,115,95,100,101,116,97,105,108, - 115,90,10,98,117,105,108,116,105,110,95,111,115,114,21,0, - 0,0,114,25,0,0,0,90,9,111,115,95,109,111,100,117, - 108,101,90,13,116,104,114,101,97,100,95,109,111,100,117,108, - 101,90,14,119,101,97,107,114,101,102,95,109,111,100,117,108, - 101,90,13,119,105,110,114,101,103,95,109,111,100,117,108,101, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, - 6,95,115,101,116,117,112,57,9,0,0,115,100,0,0,0, - 0,9,6,1,6,3,12,1,28,1,15,1,15,1,9,1, - 15,1,9,2,3,1,15,1,17,3,13,1,13,1,15,1, - 15,2,13,1,20,3,33,1,19,2,31,1,10,1,15,1, - 13,1,4,2,3,1,12,1,5,1,13,1,12,2,12,1, - 16,1,16,1,25,3,3,1,16,1,13,2,11,1,16,3, - 12,1,16,3,12,1,12,1,16,3,19,1,19,1,12,1, - 13,1,12,1,114,137,1,0,0,99,2,0,0,0,0,0, - 0,0,3,0,0,0,3,0,0,0,67,0,0,0,115,133, - 0,0,0,116,0,0,124,0,0,124,1,0,131,2,0,1, - 116,1,0,131,0,0,125,2,0,116,2,0,106,3,0,106, - 4,0,116,5,0,106,6,0,124,2,0,140,0,0,103,1, - 0,131,1,0,1,116,2,0,106,7,0,106,8,0,116,9, - 0,131,1,0,1,116,2,0,106,7,0,106,8,0,116,10, - 0,131,1,0,1,116,11,0,106,12,0,100,1,0,107,2, - 0,114,113,0,116,2,0,106,7,0,106,8,0,116,13,0, - 131,1,0,1,116,2,0,106,7,0,106,8,0,116,14,0, - 131,1,0,1,100,2,0,83,41,3,122,50,73,110,115,116, - 97,108,108,32,105,109,112,111,114,116,108,105,98,32,97,115, - 32,116,104,101,32,105,109,112,108,101,109,101,110,116,97,116, - 105,111,110,32,111,102,32,105,109,112,111,114,116,46,114,131, - 1,0,0,78,41,15,114,137,1,0,0,114,243,0,0,0, - 114,7,0,0,0,114,81,1,0,0,114,199,0,0,0,114, - 89,1,0,0,114,102,1,0,0,114,108,1,0,0,114,227, - 0,0,0,114,12,1,0,0,114,21,1,0,0,114,3,0, - 0,0,114,57,0,0,0,114,25,1,0,0,114,76,1,0, - 0,41,3,114,135,1,0,0,114,136,1,0,0,90,17,115, - 117,112,112,111,114,116,101,100,95,108,111,97,100,101,114,115, - 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, - 8,95,105,110,115,116,97,108,108,138,9,0,0,115,16,0, - 0,0,0,2,13,1,9,1,28,1,16,1,16,1,15,1, - 16,1,114,138,1,0,0,41,3,122,3,119,105,110,114,1, - 0,0,0,114,2,0,0,0,41,100,114,59,0,0,0,114, - 10,0,0,0,114,11,0,0,0,114,17,0,0,0,114,19, - 0,0,0,114,28,0,0,0,114,38,0,0,0,114,39,0, - 0,0,114,43,0,0,0,114,44,0,0,0,114,46,0,0, - 0,114,55,0,0,0,114,65,0,0,0,114,68,0,0,0, - 114,66,0,0,0,218,8,95,95,99,111,100,101,95,95,114, - 195,0,0,0,114,69,0,0,0,114,109,0,0,0,114,92, - 0,0,0,114,99,0,0,0,114,82,0,0,0,114,83,0, - 0,0,114,102,0,0,0,114,103,0,0,0,114,105,0,0, - 0,114,112,0,0,0,114,114,0,0,0,114,15,0,0,0, - 114,187,0,0,0,114,14,0,0,0,114,18,0,0,0,90, - 17,95,82,65,87,95,77,65,71,73,67,95,78,85,77,66, - 69,82,114,131,0,0,0,114,130,0,0,0,114,142,0,0, - 0,114,132,0,0,0,90,23,68,69,66,85,71,95,66,89, - 84,69,67,79,68,69,95,83,85,70,70,73,88,69,83,90, - 27,79,80,84,73,77,73,90,69,68,95,66,89,84,69,67, - 79,68,69,95,83,85,70,70,73,88,69,83,114,138,0,0, - 0,114,143,0,0,0,114,149,0,0,0,114,151,0,0,0, - 114,158,0,0,0,114,162,0,0,0,114,167,0,0,0,114, - 170,0,0,0,114,176,0,0,0,114,182,0,0,0,114,192, - 0,0,0,114,197,0,0,0,114,200,0,0,0,114,205,0, - 0,0,114,215,0,0,0,114,216,0,0,0,114,220,0,0, - 0,114,177,0,0,0,218,6,111,98,106,101,99,116,114,244, - 0,0,0,114,242,0,0,0,114,251,0,0,0,114,1,1, - 0,0,114,4,1,0,0,114,212,0,0,0,114,178,0,0, - 0,114,7,1,0,0,114,8,1,0,0,114,179,0,0,0, - 114,11,1,0,0,114,12,1,0,0,114,21,1,0,0,114, - 25,1,0,0,114,35,1,0,0,114,36,1,0,0,114,51, - 1,0,0,114,10,1,0,0,114,9,1,0,0,114,62,1, - 0,0,114,59,1,0,0,114,63,1,0,0,114,254,0,0, - 0,114,76,1,0,0,114,89,1,0,0,114,103,1,0,0, - 114,106,1,0,0,114,107,1,0,0,114,109,1,0,0,114, - 111,1,0,0,114,120,1,0,0,114,112,1,0,0,114,114, - 1,0,0,114,115,1,0,0,114,116,1,0,0,114,122,1, - 0,0,114,124,1,0,0,114,243,0,0,0,114,127,1,0, - 0,114,128,1,0,0,114,137,1,0,0,114,138,1,0,0, - 114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,114, - 5,0,0,0,218,8,60,109,111,100,117,108,101,62,8,0, - 0,0,115,184,0,0,0,6,17,6,3,12,12,12,5,12, - 5,12,6,12,12,12,10,12,9,12,5,12,7,15,22,12, - 8,12,4,15,4,19,20,6,2,6,3,22,4,19,68,19, - 21,19,19,12,19,12,20,12,115,22,1,18,2,6,1,6, - 2,9,2,9,2,10,2,21,44,12,33,12,19,12,12,18, - 8,12,18,12,11,12,11,12,18,12,15,21,55,21,12,18, - 10,12,14,12,36,19,27,19,106,24,22,9,3,12,1,15, - 63,18,45,18,56,12,18,12,17,12,25,12,29,12,23,12, - 14,15,25,19,70,19,75,19,63,19,27,22,110,19,41,25, - 43,25,16,6,3,19,57,19,57,19,41,19,134,19,146,19, - 13,12,9,12,9,15,40,12,17,6,1,10,2,12,27,12, - 6,18,24,12,32,12,15,12,11,24,35,12,7,12,81, + 95,249,3,0,0,115,12,0,0,0,0,7,15,1,12,1, + 10,1,12,1,19,1,114,197,0,0,0,99,5,0,0,0, + 0,0,0,0,9,0,0,0,5,0,0,0,67,0,0,0, + 115,227,0,0,0,124,4,0,100,1,0,107,2,0,114,27, + 0,116,0,0,124,0,0,131,1,0,125,5,0,110,54,0, + 124,1,0,100,2,0,107,9,0,114,45,0,124,1,0,110, + 3,0,105,0,0,125,6,0,116,1,0,124,6,0,131,1, + 0,125,7,0,116,0,0,124,0,0,124,7,0,124,4,0, + 131,3,0,125,5,0,124,3,0,115,207,0,124,4,0,100, + 1,0,107,2,0,114,122,0,116,0,0,124,0,0,106,2, + 0,100,3,0,131,1,0,100,1,0,25,131,1,0,83,124, + 0,0,115,132,0,124,5,0,83,116,3,0,124,0,0,131, + 1,0,116,3,0,124,0,0,106,2,0,100,3,0,131,1, + 0,100,1,0,25,131,1,0,24,125,8,0,116,4,0,106, + 5,0,124,5,0,106,6,0,100,2,0,116,3,0,124,5, + 0,106,6,0,131,1,0,124,8,0,24,133,2,0,25,25, + 83,110,16,0,116,7,0,124,5,0,124,3,0,116,0,0, + 131,3,0,83,100,2,0,83,41,4,97,214,1,0,0,73, + 109,112,111,114,116,32,97,32,109,111,100,117,108,101,46,10, + 10,32,32,32,32,84,104,101,32,39,103,108,111,98,97,108, + 115,39,32,97,114,103,117,109,101,110,116,32,105,115,32,117, + 115,101,100,32,116,111,32,105,110,102,101,114,32,119,104,101, + 114,101,32,116,104,101,32,105,109,112,111,114,116,32,105,115, + 32,111,99,99,117,114,105,110,103,32,102,114,111,109,10,32, + 32,32,32,116,111,32,104,97,110,100,108,101,32,114,101,108, + 97,116,105,118,101,32,105,109,112,111,114,116,115,46,32,84, + 104,101,32,39,108,111,99,97,108,115,39,32,97,114,103,117, + 109,101,110,116,32,105,115,32,105,103,110,111,114,101,100,46, + 32,84,104,101,10,32,32,32,32,39,102,114,111,109,108,105, + 115,116,39,32,97,114,103,117,109,101,110,116,32,115,112,101, + 99,105,102,105,101,115,32,119,104,97,116,32,115,104,111,117, + 108,100,32,101,120,105,115,116,32,97,115,32,97,116,116,114, + 105,98,117,116,101,115,32,111,110,32,116,104,101,32,109,111, + 100,117,108,101,10,32,32,32,32,98,101,105,110,103,32,105, + 109,112,111,114,116,101,100,32,40,101,46,103,46,32,96,96, + 102,114,111,109,32,109,111,100,117,108,101,32,105,109,112,111, + 114,116,32,60,102,114,111,109,108,105,115,116,62,96,96,41, + 46,32,32,84,104,101,32,39,108,101,118,101,108,39,10,32, + 32,32,32,97,114,103,117,109,101,110,116,32,114,101,112,114, + 101,115,101,110,116,115,32,116,104,101,32,112,97,99,107,97, + 103,101,32,108,111,99,97,116,105,111,110,32,116,111,32,105, + 109,112,111,114,116,32,102,114,111,109,32,105,110,32,97,32, + 114,101,108,97,116,105,118,101,10,32,32,32,32,105,109,112, + 111,114,116,32,40,101,46,103,46,32,96,96,102,114,111,109, + 32,46,46,112,107,103,32,105,109,112,111,114,116,32,109,111, + 100,96,96,32,119,111,117,108,100,32,104,97,118,101,32,97, + 32,39,108,101,118,101,108,39,32,111,102,32,50,41,46,10, + 10,32,32,32,32,114,33,0,0,0,78,114,121,0,0,0, + 41,8,114,187,0,0,0,114,197,0,0,0,218,9,112,97, + 114,116,105,116,105,111,110,114,168,0,0,0,114,14,0,0, + 0,114,21,0,0,0,114,1,0,0,0,114,195,0,0,0, + 41,9,114,15,0,0,0,114,196,0,0,0,218,6,108,111, + 99,97,108,115,114,193,0,0,0,114,171,0,0,0,114,89, + 0,0,0,90,8,103,108,111,98,97,108,115,95,114,170,0, + 0,0,90,7,99,117,116,95,111,102,102,114,10,0,0,0, + 114,10,0,0,0,114,11,0,0,0,218,10,95,95,105,109, + 112,111,114,116,95,95,8,4,0,0,115,26,0,0,0,0, + 11,12,1,15,2,24,1,12,1,18,1,6,3,12,1,23, + 1,6,1,4,4,35,3,40,2,114,200,0,0,0,99,1, + 0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,67, + 0,0,0,115,53,0,0,0,116,0,0,106,1,0,124,0, + 0,131,1,0,125,1,0,124,1,0,100,0,0,107,8,0, + 114,43,0,116,2,0,100,1,0,124,0,0,23,131,1,0, + 130,1,0,116,3,0,124,1,0,131,1,0,83,41,2,78, + 122,25,110,111,32,98,117,105,108,116,45,105,110,32,109,111, + 100,117,108,101,32,110,97,109,101,100,32,41,4,114,150,0, + 0,0,114,154,0,0,0,114,77,0,0,0,114,149,0,0, + 0,41,2,114,15,0,0,0,114,88,0,0,0,114,10,0, + 0,0,114,10,0,0,0,114,11,0,0,0,218,18,95,98, + 117,105,108,116,105,110,95,102,114,111,109,95,110,97,109,101, + 43,4,0,0,115,8,0,0,0,0,1,15,1,12,1,16, + 1,114,201,0,0,0,99,2,0,0,0,0,0,0,0,12, + 0,0,0,12,0,0,0,67,0,0,0,115,74,1,0,0, + 124,1,0,97,0,0,124,0,0,97,1,0,116,2,0,116, + 1,0,131,1,0,125,2,0,120,123,0,116,1,0,106,3, + 0,106,4,0,131,0,0,68,93,106,0,92,2,0,125,3, + 0,125,4,0,116,5,0,124,4,0,124,2,0,131,2,0, + 114,40,0,124,3,0,116,1,0,106,6,0,107,6,0,114, + 91,0,116,7,0,125,5,0,110,27,0,116,0,0,106,8, + 0,124,3,0,131,1,0,114,40,0,116,9,0,125,5,0, + 110,3,0,113,40,0,116,10,0,124,4,0,124,5,0,131, + 2,0,125,6,0,116,11,0,124,6,0,124,4,0,131,2, + 0,1,113,40,0,87,116,1,0,106,3,0,116,12,0,25, + 125,7,0,120,73,0,100,5,0,68,93,65,0,125,8,0, + 124,8,0,116,1,0,106,3,0,107,7,0,114,206,0,116, + 13,0,124,8,0,131,1,0,125,9,0,110,13,0,116,1, + 0,106,3,0,124,8,0,25,125,9,0,116,14,0,124,7, + 0,124,8,0,124,9,0,131,3,0,1,113,170,0,87,121, + 16,0,116,13,0,100,2,0,131,1,0,125,10,0,87,110, + 24,0,4,116,15,0,107,10,0,114,25,1,1,1,1,100, + 3,0,125,10,0,89,110,1,0,88,116,14,0,124,7,0, + 100,2,0,124,10,0,131,3,0,1,116,13,0,100,4,0, + 131,1,0,125,11,0,116,14,0,124,7,0,100,4,0,124, + 11,0,131,3,0,1,100,3,0,83,41,6,122,250,83,101, + 116,117,112,32,105,109,112,111,114,116,108,105,98,32,98,121, + 32,105,109,112,111,114,116,105,110,103,32,110,101,101,100,101, + 100,32,98,117,105,108,116,45,105,110,32,109,111,100,117,108, + 101,115,32,97,110,100,32,105,110,106,101,99,116,105,110,103, + 32,116,104,101,109,10,32,32,32,32,105,110,116,111,32,116, + 104,101,32,103,108,111,98,97,108,32,110,97,109,101,115,112, + 97,99,101,46,10,10,32,32,32,32,65,115,32,115,121,115, + 32,105,115,32,110,101,101,100,101,100,32,102,111,114,32,115, + 121,115,46,109,111,100,117,108,101,115,32,97,99,99,101,115, + 115,32,97,110,100,32,95,105,109,112,32,105,115,32,110,101, + 101,100,101,100,32,116,111,32,108,111,97,100,32,98,117,105, + 108,116,45,105,110,10,32,32,32,32,109,111,100,117,108,101, + 115,44,32,116,104,111,115,101,32,116,119,111,32,109,111,100, + 117,108,101,115,32,109,117,115,116,32,98,101,32,101,120,112, + 108,105,99,105,116,108,121,32,112,97,115,115,101,100,32,105, + 110,46,10,10,32,32,32,32,114,141,0,0,0,114,34,0, + 0,0,78,114,62,0,0,0,41,1,122,9,95,119,97,114, + 110,105,110,103,115,41,16,114,57,0,0,0,114,14,0,0, + 0,114,13,0,0,0,114,21,0,0,0,218,5,105,116,101, + 109,115,114,178,0,0,0,114,76,0,0,0,114,150,0,0, + 0,114,82,0,0,0,114,161,0,0,0,114,132,0,0,0, + 114,137,0,0,0,114,1,0,0,0,114,201,0,0,0,114, + 5,0,0,0,114,77,0,0,0,41,12,218,10,115,121,115, + 95,109,111,100,117,108,101,218,11,95,105,109,112,95,109,111, + 100,117,108,101,90,11,109,111,100,117,108,101,95,116,121,112, + 101,114,15,0,0,0,114,89,0,0,0,114,99,0,0,0, + 114,88,0,0,0,90,11,115,101,108,102,95,109,111,100,117, + 108,101,90,12,98,117,105,108,116,105,110,95,110,97,109,101, + 90,14,98,117,105,108,116,105,110,95,109,111,100,117,108,101, + 90,13,116,104,114,101,97,100,95,109,111,100,117,108,101,90, + 14,119,101,97,107,114,101,102,95,109,111,100,117,108,101,114, + 10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,6, + 95,115,101,116,117,112,50,4,0,0,115,50,0,0,0,0, + 9,6,1,6,3,12,1,28,1,15,1,15,1,9,1,15, + 1,9,2,3,1,15,1,17,3,13,1,13,1,15,1,15, + 2,13,1,20,3,3,1,16,1,13,2,11,1,16,3,12, + 1,114,205,0,0,0,99,2,0,0,0,0,0,0,0,3, + 0,0,0,3,0,0,0,67,0,0,0,115,97,0,0,0, + 116,0,0,124,0,0,124,1,0,131,2,0,1,116,1,0, + 106,2,0,106,3,0,116,4,0,131,1,0,1,116,1,0, + 106,2,0,106,3,0,116,5,0,131,1,0,1,100,1,0, + 100,2,0,108,6,0,125,2,0,124,2,0,106,7,0,116, + 1,0,106,8,0,116,9,0,25,131,1,0,1,124,2,0, + 116,1,0,106,8,0,116,9,0,25,95,10,0,100,2,0, + 83,41,3,122,50,73,110,115,116,97,108,108,32,105,109,112, + 111,114,116,108,105,98,32,97,115,32,116,104,101,32,105,109, + 112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32, + 105,109,112,111,114,116,46,114,33,0,0,0,78,41,11,114, + 205,0,0,0,114,14,0,0,0,114,175,0,0,0,114,113, + 0,0,0,114,150,0,0,0,114,161,0,0,0,114,119,0, + 0,0,218,8,95,105,110,115,116,97,108,108,114,21,0,0, + 0,114,1,0,0,0,114,120,0,0,0,41,3,114,203,0, + 0,0,114,204,0,0,0,114,119,0,0,0,114,10,0,0, + 0,114,10,0,0,0,114,11,0,0,0,114,206,0,0,0, + 97,4,0,0,115,12,0,0,0,0,2,13,2,16,1,16, + 2,12,1,20,1,114,206,0,0,0,41,50,114,3,0,0, + 0,114,12,0,0,0,114,16,0,0,0,114,17,0,0,0, + 114,59,0,0,0,114,41,0,0,0,114,48,0,0,0,114, + 31,0,0,0,114,32,0,0,0,114,53,0,0,0,114,54, + 0,0,0,114,56,0,0,0,114,63,0,0,0,114,65,0, + 0,0,114,75,0,0,0,114,81,0,0,0,114,84,0,0, + 0,114,90,0,0,0,114,101,0,0,0,114,102,0,0,0, + 114,106,0,0,0,114,85,0,0,0,218,6,111,98,106,101, + 99,116,90,9,95,80,79,80,85,76,65,84,69,114,132,0, + 0,0,114,137,0,0,0,114,144,0,0,0,114,97,0,0, + 0,114,86,0,0,0,114,148,0,0,0,114,149,0,0,0, + 114,87,0,0,0,114,150,0,0,0,114,161,0,0,0,114, + 166,0,0,0,114,172,0,0,0,114,174,0,0,0,114,177, + 0,0,0,114,182,0,0,0,114,192,0,0,0,114,183,0, + 0,0,114,185,0,0,0,114,186,0,0,0,114,187,0,0, + 0,114,195,0,0,0,114,197,0,0,0,114,200,0,0,0, + 114,201,0,0,0,114,205,0,0,0,114,206,0,0,0,114, + 10,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11, + 0,0,0,218,8,60,109,111,100,117,108,101,62,8,0,0, + 0,115,94,0,0,0,6,17,12,8,12,4,19,20,6,2, + 6,3,22,4,19,68,19,21,19,19,12,19,12,19,12,11, + 18,8,12,11,12,12,12,16,12,36,19,27,19,100,24,23, + 9,3,18,45,18,57,12,18,12,17,12,25,12,29,12,23, + 12,16,19,70,19,78,19,13,12,9,12,9,15,40,12,17, + 6,1,10,2,12,27,12,6,18,24,12,32,12,15,24,35, + 12,7,12,47, }; diff --git a/Python/importlib_external.h b/Python/importlib_external.h new file mode 100644 --- /dev/null +++ b/Python/importlib_external.h @@ -0,0 +1,2633 @@ +/* Auto-generated by Programs/_freeze_importlib.c */ +const unsigned char _Py_M__importlib_external[] = { + 99,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0, + 0,64,0,0,0,115,2,3,0,0,100,0,0,90,0,0, + 100,102,0,90,1,0,100,4,0,100,5,0,132,0,0,90, + 2,0,100,6,0,100,7,0,132,0,0,90,3,0,100,8, + 0,100,9,0,132,0,0,90,4,0,100,10,0,100,11,0, + 132,0,0,90,5,0,100,12,0,100,13,0,132,0,0,90, + 6,0,100,14,0,100,15,0,132,0,0,90,7,0,100,16, + 0,100,17,0,132,0,0,90,8,0,100,18,0,100,19,0, + 132,0,0,90,9,0,100,20,0,100,21,0,132,0,0,90, + 10,0,100,22,0,100,23,0,100,24,0,132,1,0,90,11, + 0,101,12,0,101,11,0,106,13,0,131,1,0,90,14,0, + 100,25,0,106,15,0,100,26,0,100,27,0,131,2,0,100, + 28,0,23,90,16,0,101,17,0,106,18,0,101,16,0,100, + 27,0,131,2,0,90,19,0,100,29,0,90,20,0,100,30, + 0,90,21,0,100,31,0,103,1,0,90,22,0,100,32,0, + 103,1,0,90,23,0,101,23,0,4,90,24,0,90,25,0, + 100,33,0,100,34,0,100,33,0,100,35,0,100,36,0,132, + 1,1,90,26,0,100,37,0,100,38,0,132,0,0,90,27, + 0,100,39,0,100,40,0,132,0,0,90,28,0,100,41,0, + 100,42,0,132,0,0,90,29,0,100,43,0,100,44,0,132, + 0,0,90,30,0,100,45,0,100,46,0,100,47,0,100,48, + 0,132,0,1,90,31,0,100,49,0,100,50,0,132,0,0, + 90,32,0,100,51,0,100,52,0,132,0,0,90,33,0,100, + 53,0,100,54,0,132,0,0,90,34,0,100,33,0,100,33, + 0,100,33,0,100,55,0,100,56,0,132,3,0,90,35,0, + 100,33,0,100,33,0,100,33,0,100,57,0,100,58,0,132, + 3,0,90,36,0,100,59,0,100,59,0,100,60,0,100,61, + 0,132,2,0,90,37,0,100,62,0,100,63,0,132,0,0, + 90,38,0,100,64,0,100,33,0,100,65,0,100,33,0,100, + 66,0,100,67,0,132,0,2,90,39,0,101,40,0,131,0, + 0,90,41,0,100,33,0,100,68,0,100,33,0,100,69,0, + 101,41,0,100,70,0,100,71,0,132,1,2,90,42,0,71, + 100,72,0,100,73,0,132,0,0,100,73,0,131,2,0,90, + 43,0,71,100,74,0,100,75,0,132,0,0,100,75,0,131, + 2,0,90,44,0,71,100,76,0,100,77,0,132,0,0,100, + 77,0,101,44,0,131,3,0,90,45,0,71,100,78,0,100, + 79,0,132,0,0,100,79,0,131,2,0,90,46,0,71,100, + 80,0,100,81,0,132,0,0,100,81,0,101,46,0,101,45, + 0,131,4,0,90,47,0,71,100,82,0,100,83,0,132,0, + 0,100,83,0,101,46,0,101,44,0,131,4,0,90,48,0, + 103,0,0,90,49,0,71,100,84,0,100,85,0,132,0,0, + 100,85,0,131,2,0,90,50,0,71,100,86,0,100,87,0, + 132,0,0,100,87,0,131,2,0,90,51,0,71,100,88,0, + 100,89,0,132,0,0,100,89,0,131,2,0,90,52,0,71, + 100,90,0,100,91,0,132,0,0,100,91,0,131,2,0,90, + 53,0,71,100,92,0,100,93,0,132,0,0,100,93,0,131, + 2,0,90,54,0,100,33,0,100,94,0,100,95,0,132,1, + 0,90,55,0,100,96,0,100,97,0,132,0,0,90,56,0, + 100,98,0,100,99,0,132,0,0,90,57,0,100,100,0,100, + 101,0,132,0,0,90,58,0,100,33,0,83,41,103,97,94, + 1,0,0,67,111,114,101,32,105,109,112,108,101,109,101,110, + 116,97,116,105,111,110,32,111,102,32,112,97,116,104,45,98, + 97,115,101,100,32,105,109,112,111,114,116,46,10,10,84,104, + 105,115,32,109,111,100,117,108,101,32,105,115,32,78,79,84, + 32,109,101,97,110,116,32,116,111,32,98,101,32,100,105,114, + 101,99,116,108,121,32,105,109,112,111,114,116,101,100,33,32, + 73,116,32,104,97,115,32,98,101,101,110,32,100,101,115,105, + 103,110,101,100,32,115,117,99,104,10,116,104,97,116,32,105, + 116,32,99,97,110,32,98,101,32,98,111,111,116,115,116,114, + 97,112,112,101,100,32,105,110,116,111,32,80,121,116,104,111, + 110,32,97,115,32,116,104,101,32,105,109,112,108,101,109,101, + 110,116,97,116,105,111,110,32,111,102,32,105,109,112,111,114, + 116,46,32,65,115,10,115,117,99,104,32,105,116,32,114,101, + 113,117,105,114,101,115,32,116,104,101,32,105,110,106,101,99, + 116,105,111,110,32,111,102,32,115,112,101,99,105,102,105,99, + 32,109,111,100,117,108,101,115,32,97,110,100,32,97,116,116, + 114,105,98,117,116,101,115,32,105,110,32,111,114,100,101,114, + 32,116,111,10,119,111,114,107,46,32,79,110,101,32,115,104, + 111,117,108,100,32,117,115,101,32,105,109,112,111,114,116,108, + 105,98,32,97,115,32,116,104,101,32,112,117,98,108,105,99, + 45,102,97,99,105,110,103,32,118,101,114,115,105,111,110,32, + 111,102,32,116,104,105,115,32,109,111,100,117,108,101,46,10, + 10,218,3,119,105,110,218,6,99,121,103,119,105,110,218,6, + 100,97,114,119,105,110,99,0,0,0,0,0,0,0,0,1, + 0,0,0,2,0,0,0,67,0,0,0,115,49,0,0,0, + 116,0,0,106,1,0,106,2,0,116,3,0,131,1,0,114, + 33,0,100,1,0,100,2,0,132,0,0,125,0,0,110,12, + 0,100,3,0,100,2,0,132,0,0,125,0,0,124,0,0, + 83,41,4,78,99,0,0,0,0,0,0,0,0,0,0,0, + 0,2,0,0,0,83,0,0,0,115,13,0,0,0,100,1, + 0,116,0,0,106,1,0,107,6,0,83,41,2,122,53,84, + 114,117,101,32,105,102,32,102,105,108,101,110,97,109,101,115, + 32,109,117,115,116,32,98,101,32,99,104,101,99,107,101,100, + 32,99,97,115,101,45,105,110,115,101,110,115,105,116,105,118, + 101,108,121,46,115,12,0,0,0,80,89,84,72,79,78,67, + 65,83,69,79,75,41,2,218,3,95,111,115,90,7,101,110, + 118,105,114,111,110,169,0,114,4,0,0,0,114,4,0,0, + 0,250,38,60,102,114,111,122,101,110,32,105,109,112,111,114, + 116,108,105,98,46,95,98,111,111,116,115,116,114,97,112,95, + 101,120,116,101,114,110,97,108,62,218,11,95,114,101,108,97, + 120,95,99,97,115,101,30,0,0,0,115,2,0,0,0,0, + 2,122,37,95,109,97,107,101,95,114,101,108,97,120,95,99, + 97,115,101,46,60,108,111,99,97,108,115,62,46,95,114,101, + 108,97,120,95,99,97,115,101,99,0,0,0,0,0,0,0, + 0,0,0,0,0,1,0,0,0,83,0,0,0,115,4,0, + 0,0,100,1,0,83,41,2,122,53,84,114,117,101,32,105, + 102,32,102,105,108,101,110,97,109,101,115,32,109,117,115,116, + 32,98,101,32,99,104,101,99,107,101,100,32,99,97,115,101, + 45,105,110,115,101,110,115,105,116,105,118,101,108,121,46,70, + 114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,114, + 4,0,0,0,114,5,0,0,0,114,6,0,0,0,34,0, + 0,0,115,2,0,0,0,0,2,41,4,218,3,115,121,115, + 218,8,112,108,97,116,102,111,114,109,218,10,115,116,97,114, + 116,115,119,105,116,104,218,27,95,67,65,83,69,95,73,78, + 83,69,78,83,73,84,73,86,69,95,80,76,65,84,70,79, + 82,77,83,41,1,114,6,0,0,0,114,4,0,0,0,114, + 4,0,0,0,114,5,0,0,0,218,16,95,109,97,107,101, + 95,114,101,108,97,120,95,99,97,115,101,28,0,0,0,115, + 8,0,0,0,0,1,18,1,15,4,12,3,114,11,0,0, + 0,99,1,0,0,0,0,0,0,0,1,0,0,0,3,0, + 0,0,67,0,0,0,115,26,0,0,0,116,0,0,124,0, + 0,131,1,0,100,1,0,64,106,1,0,100,2,0,100,3, + 0,131,2,0,83,41,4,122,42,67,111,110,118,101,114,116, + 32,97,32,51,50,45,98,105,116,32,105,110,116,101,103,101, + 114,32,116,111,32,108,105,116,116,108,101,45,101,110,100,105, + 97,110,46,108,3,0,0,0,255,127,255,127,3,0,233,4, + 0,0,0,218,6,108,105,116,116,108,101,41,2,218,3,105, + 110,116,218,8,116,111,95,98,121,116,101,115,41,1,218,1, + 120,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 218,7,95,119,95,108,111,110,103,40,0,0,0,115,2,0, + 0,0,0,2,114,17,0,0,0,99,1,0,0,0,0,0, + 0,0,1,0,0,0,3,0,0,0,67,0,0,0,115,16, + 0,0,0,116,0,0,106,1,0,124,0,0,100,1,0,131, + 2,0,83,41,2,122,47,67,111,110,118,101,114,116,32,52, + 32,98,121,116,101,115,32,105,110,32,108,105,116,116,108,101, + 45,101,110,100,105,97,110,32,116,111,32,97,110,32,105,110, + 116,101,103,101,114,46,114,13,0,0,0,41,2,114,14,0, + 0,0,218,10,102,114,111,109,95,98,121,116,101,115,41,1, + 90,9,105,110,116,95,98,121,116,101,115,114,4,0,0,0, + 114,4,0,0,0,114,5,0,0,0,218,7,95,114,95,108, + 111,110,103,45,0,0,0,115,2,0,0,0,0,2,114,19, + 0,0,0,99,0,0,0,0,0,0,0,0,1,0,0,0, + 3,0,0,0,71,0,0,0,115,26,0,0,0,116,0,0, + 106,1,0,100,1,0,100,2,0,132,0,0,124,0,0,68, + 131,1,0,131,1,0,83,41,3,122,31,82,101,112,108,97, + 99,101,109,101,110,116,32,102,111,114,32,111,115,46,112,97, + 116,104,46,106,111,105,110,40,41,46,99,1,0,0,0,0, + 0,0,0,2,0,0,0,4,0,0,0,83,0,0,0,115, + 37,0,0,0,103,0,0,124,0,0,93,27,0,125,1,0, + 124,1,0,114,6,0,124,1,0,106,0,0,116,1,0,131, + 1,0,145,2,0,113,6,0,83,114,4,0,0,0,41,2, + 218,6,114,115,116,114,105,112,218,15,112,97,116,104,95,115, + 101,112,97,114,97,116,111,114,115,41,2,218,2,46,48,218, + 4,112,97,114,116,114,4,0,0,0,114,4,0,0,0,114, + 5,0,0,0,250,10,60,108,105,115,116,99,111,109,112,62, + 52,0,0,0,115,2,0,0,0,9,1,122,30,95,112,97, + 116,104,95,106,111,105,110,46,60,108,111,99,97,108,115,62, + 46,60,108,105,115,116,99,111,109,112,62,41,2,218,8,112, + 97,116,104,95,115,101,112,218,4,106,111,105,110,41,1,218, + 10,112,97,116,104,95,112,97,114,116,115,114,4,0,0,0, + 114,4,0,0,0,114,5,0,0,0,218,10,95,112,97,116, + 104,95,106,111,105,110,50,0,0,0,115,4,0,0,0,0, + 2,15,1,114,28,0,0,0,99,1,0,0,0,0,0,0, + 0,5,0,0,0,5,0,0,0,67,0,0,0,115,134,0, + 0,0,116,0,0,116,1,0,131,1,0,100,1,0,107,2, + 0,114,52,0,124,0,0,106,2,0,116,3,0,131,1,0, + 92,3,0,125,1,0,125,2,0,125,3,0,124,1,0,124, + 3,0,102,2,0,83,120,69,0,116,4,0,124,0,0,131, + 1,0,68,93,55,0,125,4,0,124,4,0,116,1,0,107, + 6,0,114,65,0,124,0,0,106,5,0,124,4,0,100,2, + 0,100,1,0,131,1,1,92,2,0,125,1,0,125,3,0, + 124,1,0,124,3,0,102,2,0,83,113,65,0,87,100,3, + 0,124,0,0,102,2,0,83,41,4,122,32,82,101,112,108, + 97,99,101,109,101,110,116,32,102,111,114,32,111,115,46,112, + 97,116,104,46,115,112,108,105,116,40,41,46,233,1,0,0, + 0,90,8,109,97,120,115,112,108,105,116,218,0,41,6,218, + 3,108,101,110,114,21,0,0,0,218,10,114,112,97,114,116, + 105,116,105,111,110,114,25,0,0,0,218,8,114,101,118,101, + 114,115,101,100,218,6,114,115,112,108,105,116,41,5,218,4, + 112,97,116,104,90,5,102,114,111,110,116,218,1,95,218,4, + 116,97,105,108,114,16,0,0,0,114,4,0,0,0,114,4, + 0,0,0,114,5,0,0,0,218,11,95,112,97,116,104,95, + 115,112,108,105,116,56,0,0,0,115,16,0,0,0,0,2, + 18,1,24,1,10,1,19,1,12,1,27,1,14,1,114,38, + 0,0,0,99,1,0,0,0,0,0,0,0,1,0,0,0, + 2,0,0,0,67,0,0,0,115,13,0,0,0,116,0,0, + 106,1,0,124,0,0,131,1,0,83,41,1,122,126,83,116, + 97,116,32,116,104,101,32,112,97,116,104,46,10,10,32,32, + 32,32,77,97,100,101,32,97,32,115,101,112,97,114,97,116, + 101,32,102,117,110,99,116,105,111,110,32,116,111,32,109,97, + 107,101,32,105,116,32,101,97,115,105,101,114,32,116,111,32, + 111,118,101,114,114,105,100,101,32,105,110,32,101,120,112,101, + 114,105,109,101,110,116,115,10,32,32,32,32,40,101,46,103, + 46,32,99,97,99,104,101,32,115,116,97,116,32,114,101,115, + 117,108,116,115,41,46,10,10,32,32,32,32,41,2,114,3, + 0,0,0,90,4,115,116,97,116,41,1,114,35,0,0,0, + 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, + 10,95,112,97,116,104,95,115,116,97,116,68,0,0,0,115, + 2,0,0,0,0,7,114,39,0,0,0,99,2,0,0,0, + 0,0,0,0,3,0,0,0,11,0,0,0,67,0,0,0, + 115,58,0,0,0,121,16,0,116,0,0,124,0,0,131,1, + 0,125,2,0,87,110,22,0,4,116,1,0,107,10,0,114, + 40,0,1,1,1,100,1,0,83,89,110,1,0,88,124,2, + 0,106,2,0,100,2,0,64,124,1,0,107,2,0,83,41, + 3,122,49,84,101,115,116,32,119,104,101,116,104,101,114,32, + 116,104,101,32,112,97,116,104,32,105,115,32,116,104,101,32, + 115,112,101,99,105,102,105,101,100,32,109,111,100,101,32,116, + 121,112,101,46,70,105,0,240,0,0,41,3,114,39,0,0, + 0,218,7,79,83,69,114,114,111,114,218,7,115,116,95,109, + 111,100,101,41,3,114,35,0,0,0,218,4,109,111,100,101, + 90,9,115,116,97,116,95,105,110,102,111,114,4,0,0,0, + 114,4,0,0,0,114,5,0,0,0,218,18,95,112,97,116, + 104,95,105,115,95,109,111,100,101,95,116,121,112,101,78,0, + 0,0,115,10,0,0,0,0,2,3,1,16,1,13,1,9, + 1,114,43,0,0,0,99,1,0,0,0,0,0,0,0,1, + 0,0,0,3,0,0,0,67,0,0,0,115,13,0,0,0, + 116,0,0,124,0,0,100,1,0,131,2,0,83,41,2,122, + 31,82,101,112,108,97,99,101,109,101,110,116,32,102,111,114, + 32,111,115,46,112,97,116,104,46,105,115,102,105,108,101,46, + 105,0,128,0,0,41,1,114,43,0,0,0,41,1,114,35, + 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, + 0,0,218,12,95,112,97,116,104,95,105,115,102,105,108,101, + 87,0,0,0,115,2,0,0,0,0,2,114,44,0,0,0, + 99,1,0,0,0,0,0,0,0,1,0,0,0,3,0,0, + 0,67,0,0,0,115,31,0,0,0,124,0,0,115,18,0, + 116,0,0,106,1,0,131,0,0,125,0,0,116,2,0,124, + 0,0,100,1,0,131,2,0,83,41,2,122,30,82,101,112, + 108,97,99,101,109,101,110,116,32,102,111,114,32,111,115,46, + 112,97,116,104,46,105,115,100,105,114,46,105,0,64,0,0, + 41,3,114,3,0,0,0,218,6,103,101,116,99,119,100,114, + 43,0,0,0,41,1,114,35,0,0,0,114,4,0,0,0, + 114,4,0,0,0,114,5,0,0,0,218,11,95,112,97,116, + 104,95,105,115,100,105,114,92,0,0,0,115,6,0,0,0, + 0,2,6,1,12,1,114,46,0,0,0,105,182,1,0,0, + 99,3,0,0,0,0,0,0,0,6,0,0,0,17,0,0, + 0,67,0,0,0,115,192,0,0,0,100,1,0,106,0,0, + 124,0,0,116,1,0,124,0,0,131,1,0,131,2,0,125, + 3,0,116,2,0,106,3,0,124,3,0,116,2,0,106,4, + 0,116,2,0,106,5,0,66,116,2,0,106,6,0,66,124, + 2,0,100,2,0,64,131,3,0,125,4,0,121,60,0,116, + 7,0,106,8,0,124,4,0,100,3,0,131,2,0,143,20, + 0,125,5,0,124,5,0,106,9,0,124,1,0,131,1,0, + 1,87,100,4,0,81,88,116,2,0,106,10,0,124,3,0, + 124,0,0,131,2,0,1,87,110,59,0,4,116,11,0,107, + 10,0,114,187,0,1,1,1,121,17,0,116,2,0,106,12, + 0,124,3,0,131,1,0,1,87,110,18,0,4,116,11,0, + 107,10,0,114,179,0,1,1,1,89,110,1,0,88,130,0, + 0,89,110,1,0,88,100,4,0,83,41,5,122,162,66,101, + 115,116,45,101,102,102,111,114,116,32,102,117,110,99,116,105, + 111,110,32,116,111,32,119,114,105,116,101,32,100,97,116,97, + 32,116,111,32,97,32,112,97,116,104,32,97,116,111,109,105, + 99,97,108,108,121,46,10,32,32,32,32,66,101,32,112,114, + 101,112,97,114,101,100,32,116,111,32,104,97,110,100,108,101, + 32,97,32,70,105,108,101,69,120,105,115,116,115,69,114,114, + 111,114,32,105,102,32,99,111,110,99,117,114,114,101,110,116, + 32,119,114,105,116,105,110,103,32,111,102,32,116,104,101,10, + 32,32,32,32,116,101,109,112,111,114,97,114,121,32,102,105, + 108,101,32,105,115,32,97,116,116,101,109,112,116,101,100,46, + 122,5,123,125,46,123,125,105,182,1,0,0,90,2,119,98, + 78,41,13,218,6,102,111,114,109,97,116,218,2,105,100,114, + 3,0,0,0,90,4,111,112,101,110,90,6,79,95,69,88, + 67,76,90,7,79,95,67,82,69,65,84,90,8,79,95,87, + 82,79,78,76,89,218,3,95,105,111,218,6,70,105,108,101, + 73,79,218,5,119,114,105,116,101,218,7,114,101,112,108,97, + 99,101,114,40,0,0,0,90,6,117,110,108,105,110,107,41, + 6,114,35,0,0,0,218,4,100,97,116,97,114,42,0,0, + 0,90,8,112,97,116,104,95,116,109,112,90,2,102,100,218, + 4,102,105,108,101,114,4,0,0,0,114,4,0,0,0,114, + 5,0,0,0,218,13,95,119,114,105,116,101,95,97,116,111, + 109,105,99,99,0,0,0,115,26,0,0,0,0,5,24,1, + 9,1,33,1,3,3,21,1,19,1,20,1,13,1,3,1, + 17,1,13,1,5,1,114,55,0,0,0,105,248,12,0,0, + 233,2,0,0,0,114,13,0,0,0,115,2,0,0,0,13, + 10,90,11,95,95,112,121,99,97,99,104,101,95,95,122,4, + 111,112,116,45,122,3,46,112,121,122,4,46,112,121,99,78, + 218,12,111,112,116,105,109,105,122,97,116,105,111,110,99,2, + 0,0,0,1,0,0,0,11,0,0,0,6,0,0,0,67, + 0,0,0,115,87,1,0,0,124,1,0,100,1,0,107,9, + 0,114,76,0,116,0,0,106,1,0,100,2,0,116,2,0, + 131,2,0,1,124,2,0,100,1,0,107,9,0,114,58,0, + 100,3,0,125,3,0,116,3,0,124,3,0,131,1,0,130, + 1,0,124,1,0,114,70,0,100,4,0,110,3,0,100,5, + 0,125,2,0,116,4,0,124,0,0,131,1,0,92,2,0, + 125,4,0,125,5,0,124,5,0,106,5,0,100,6,0,131, + 1,0,92,3,0,125,6,0,125,7,0,125,8,0,116,6, + 0,106,7,0,106,8,0,125,9,0,124,9,0,100,1,0, + 107,8,0,114,154,0,116,9,0,100,7,0,131,1,0,130, + 1,0,100,4,0,106,10,0,124,6,0,114,172,0,124,6, + 0,110,3,0,124,8,0,124,7,0,124,9,0,103,3,0, + 131,1,0,125,10,0,124,2,0,100,1,0,107,8,0,114, + 241,0,116,6,0,106,11,0,106,12,0,100,8,0,107,2, + 0,114,229,0,100,4,0,125,2,0,110,12,0,116,6,0, + 106,11,0,106,12,0,125,2,0,116,13,0,124,2,0,131, + 1,0,125,2,0,124,2,0,100,4,0,107,3,0,114,63, + 1,124,2,0,106,14,0,131,0,0,115,42,1,116,15,0, + 100,9,0,106,16,0,124,2,0,131,1,0,131,1,0,130, + 1,0,100,10,0,106,16,0,124,10,0,116,17,0,124,2, + 0,131,3,0,125,10,0,116,18,0,124,4,0,116,19,0, + 124,10,0,116,20,0,100,8,0,25,23,131,3,0,83,41, + 11,97,254,2,0,0,71,105,118,101,110,32,116,104,101,32, + 112,97,116,104,32,116,111,32,97,32,46,112,121,32,102,105, + 108,101,44,32,114,101,116,117,114,110,32,116,104,101,32,112, + 97,116,104,32,116,111,32,105,116,115,32,46,112,121,99,32, + 102,105,108,101,46,10,10,32,32,32,32,84,104,101,32,46, + 112,121,32,102,105,108,101,32,100,111,101,115,32,110,111,116, + 32,110,101,101,100,32,116,111,32,101,120,105,115,116,59,32, + 116,104,105,115,32,115,105,109,112,108,121,32,114,101,116,117, + 114,110,115,32,116,104,101,32,112,97,116,104,32,116,111,32, + 116,104,101,10,32,32,32,32,46,112,121,99,32,102,105,108, + 101,32,99,97,108,99,117,108,97,116,101,100,32,97,115,32, + 105,102,32,116,104,101,32,46,112,121,32,102,105,108,101,32, + 119,101,114,101,32,105,109,112,111,114,116,101,100,46,10,10, + 32,32,32,32,84,104,101,32,39,111,112,116,105,109,105,122, + 97,116,105,111,110,39,32,112,97,114,97,109,101,116,101,114, + 32,99,111,110,116,114,111,108,115,32,116,104,101,32,112,114, + 101,115,117,109,101,100,32,111,112,116,105,109,105,122,97,116, + 105,111,110,32,108,101,118,101,108,32,111,102,10,32,32,32, + 32,116,104,101,32,98,121,116,101,99,111,100,101,32,102,105, + 108,101,46,32,73,102,32,39,111,112,116,105,109,105,122,97, + 116,105,111,110,39,32,105,115,32,110,111,116,32,78,111,110, + 101,44,32,116,104,101,32,115,116,114,105,110,103,32,114,101, + 112,114,101,115,101,110,116,97,116,105,111,110,10,32,32,32, + 32,111,102,32,116,104,101,32,97,114,103,117,109,101,110,116, + 32,105,115,32,116,97,107,101,110,32,97,110,100,32,118,101, + 114,105,102,105,101,100,32,116,111,32,98,101,32,97,108,112, + 104,97,110,117,109,101,114,105,99,32,40,101,108,115,101,32, + 86,97,108,117,101,69,114,114,111,114,10,32,32,32,32,105, + 115,32,114,97,105,115,101,100,41,46,10,10,32,32,32,32, + 84,104,101,32,100,101,98,117,103,95,111,118,101,114,114,105, + 100,101,32,112,97,114,97,109,101,116,101,114,32,105,115,32, + 100,101,112,114,101,99,97,116,101,100,46,32,73,102,32,100, + 101,98,117,103,95,111,118,101,114,114,105,100,101,32,105,115, + 32,110,111,116,32,78,111,110,101,44,10,32,32,32,32,97, + 32,84,114,117,101,32,118,97,108,117,101,32,105,115,32,116, + 104,101,32,115,97,109,101,32,97,115,32,115,101,116,116,105, + 110,103,32,39,111,112,116,105,109,105,122,97,116,105,111,110, + 39,32,116,111,32,116,104,101,32,101,109,112,116,121,32,115, + 116,114,105,110,103,10,32,32,32,32,119,104,105,108,101,32, + 97,32,70,97,108,115,101,32,118,97,108,117,101,32,105,115, + 32,101,113,117,105,118,97,108,101,110,116,32,116,111,32,115, + 101,116,116,105,110,103,32,39,111,112,116,105,109,105,122,97, + 116,105,111,110,39,32,116,111,32,39,49,39,46,10,10,32, + 32,32,32,73,102,32,115,121,115,46,105,109,112,108,101,109, + 101,110,116,97,116,105,111,110,46,99,97,99,104,101,95,116, + 97,103,32,105,115,32,78,111,110,101,32,116,104,101,110,32, + 78,111,116,73,109,112,108,101,109,101,110,116,101,100,69,114, + 114,111,114,32,105,115,32,114,97,105,115,101,100,46,10,10, + 32,32,32,32,78,122,70,116,104,101,32,100,101,98,117,103, + 95,111,118,101,114,114,105,100,101,32,112,97,114,97,109,101, + 116,101,114,32,105,115,32,100,101,112,114,101,99,97,116,101, + 100,59,32,117,115,101,32,39,111,112,116,105,109,105,122,97, + 116,105,111,110,39,32,105,110,115,116,101,97,100,122,50,100, + 101,98,117,103,95,111,118,101,114,114,105,100,101,32,111,114, + 32,111,112,116,105,109,105,122,97,116,105,111,110,32,109,117, + 115,116,32,98,101,32,115,101,116,32,116,111,32,78,111,110, + 101,114,30,0,0,0,114,29,0,0,0,218,1,46,122,36, + 115,121,115,46,105,109,112,108,101,109,101,110,116,97,116,105, + 111,110,46,99,97,99,104,101,95,116,97,103,32,105,115,32, + 78,111,110,101,233,0,0,0,0,122,24,123,33,114,125,32, + 105,115,32,110,111,116,32,97,108,112,104,97,110,117,109,101, + 114,105,99,122,7,123,125,46,123,125,123,125,41,21,218,9, + 95,119,97,114,110,105,110,103,115,218,4,119,97,114,110,218, + 18,68,101,112,114,101,99,97,116,105,111,110,87,97,114,110, + 105,110,103,218,9,84,121,112,101,69,114,114,111,114,114,38, + 0,0,0,114,32,0,0,0,114,7,0,0,0,218,14,105, + 109,112,108,101,109,101,110,116,97,116,105,111,110,218,9,99, + 97,99,104,101,95,116,97,103,218,19,78,111,116,73,109,112, + 108,101,109,101,110,116,101,100,69,114,114,111,114,114,26,0, + 0,0,218,5,102,108,97,103,115,218,8,111,112,116,105,109, + 105,122,101,218,3,115,116,114,218,7,105,115,97,108,110,117, + 109,218,10,86,97,108,117,101,69,114,114,111,114,114,47,0, + 0,0,218,4,95,79,80,84,114,28,0,0,0,218,8,95, + 80,89,67,65,67,72,69,218,17,66,89,84,69,67,79,68, + 69,95,83,85,70,70,73,88,69,83,41,11,114,35,0,0, + 0,90,14,100,101,98,117,103,95,111,118,101,114,114,105,100, + 101,114,57,0,0,0,218,7,109,101,115,115,97,103,101,218, + 4,104,101,97,100,114,37,0,0,0,90,4,98,97,115,101, + 218,3,115,101,112,218,4,114,101,115,116,90,3,116,97,103, + 90,15,97,108,109,111,115,116,95,102,105,108,101,110,97,109, + 101,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 218,17,99,97,99,104,101,95,102,114,111,109,95,115,111,117, + 114,99,101,240,0,0,0,115,46,0,0,0,0,18,12,1, + 9,1,7,1,12,1,6,1,12,1,18,1,18,1,24,1, + 12,1,12,1,12,1,36,1,12,1,18,1,9,2,12,1, + 12,1,12,1,12,1,21,1,21,1,114,79,0,0,0,99, + 1,0,0,0,0,0,0,0,8,0,0,0,5,0,0,0, + 67,0,0,0,115,62,1,0,0,116,0,0,106,1,0,106, + 2,0,100,1,0,107,8,0,114,30,0,116,3,0,100,2, + 0,131,1,0,130,1,0,116,4,0,124,0,0,131,1,0, + 92,2,0,125,1,0,125,2,0,116,4,0,124,1,0,131, + 1,0,92,2,0,125,1,0,125,3,0,124,3,0,116,5, + 0,107,3,0,114,102,0,116,6,0,100,3,0,106,7,0, + 116,5,0,124,0,0,131,2,0,131,1,0,130,1,0,124, + 2,0,106,8,0,100,4,0,131,1,0,125,4,0,124,4, + 0,100,11,0,107,7,0,114,153,0,116,6,0,100,7,0, + 106,7,0,124,2,0,131,1,0,131,1,0,130,1,0,110, + 125,0,124,4,0,100,6,0,107,2,0,114,22,1,124,2, + 0,106,9,0,100,4,0,100,5,0,131,2,0,100,12,0, + 25,125,5,0,124,5,0,106,10,0,116,11,0,131,1,0, + 115,223,0,116,6,0,100,8,0,106,7,0,116,11,0,131, + 1,0,131,1,0,130,1,0,124,5,0,116,12,0,116,11, + 0,131,1,0,100,1,0,133,2,0,25,125,6,0,124,6, + 0,106,13,0,131,0,0,115,22,1,116,6,0,100,9,0, + 106,7,0,124,5,0,131,1,0,131,1,0,130,1,0,124, + 2,0,106,14,0,100,4,0,131,1,0,100,10,0,25,125, + 7,0,116,15,0,124,1,0,124,7,0,116,16,0,100,10, + 0,25,23,131,2,0,83,41,13,97,110,1,0,0,71,105, + 118,101,110,32,116,104,101,32,112,97,116,104,32,116,111,32, + 97,32,46,112,121,99,46,32,102,105,108,101,44,32,114,101, + 116,117,114,110,32,116,104,101,32,112,97,116,104,32,116,111, + 32,105,116,115,32,46,112,121,32,102,105,108,101,46,10,10, + 32,32,32,32,84,104,101,32,46,112,121,99,32,102,105,108, + 101,32,100,111,101,115,32,110,111,116,32,110,101,101,100,32, + 116,111,32,101,120,105,115,116,59,32,116,104,105,115,32,115, + 105,109,112,108,121,32,114,101,116,117,114,110,115,32,116,104, + 101,32,112,97,116,104,32,116,111,10,32,32,32,32,116,104, + 101,32,46,112,121,32,102,105,108,101,32,99,97,108,99,117, + 108,97,116,101,100,32,116,111,32,99,111,114,114,101,115,112, + 111,110,100,32,116,111,32,116,104,101,32,46,112,121,99,32, + 102,105,108,101,46,32,32,73,102,32,112,97,116,104,32,100, + 111,101,115,10,32,32,32,32,110,111,116,32,99,111,110,102, + 111,114,109,32,116,111,32,80,69,80,32,51,49,52,55,47, + 52,56,56,32,102,111,114,109,97,116,44,32,86,97,108,117, + 101,69,114,114,111,114,32,119,105,108,108,32,98,101,32,114, + 97,105,115,101,100,46,32,73,102,10,32,32,32,32,115,121, + 115,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110, + 46,99,97,99,104,101,95,116,97,103,32,105,115,32,78,111, + 110,101,32,116,104,101,110,32,78,111,116,73,109,112,108,101, + 109,101,110,116,101,100,69,114,114,111,114,32,105,115,32,114, + 97,105,115,101,100,46,10,10,32,32,32,32,78,122,36,115, + 121,115,46,105,109,112,108,101,109,101,110,116,97,116,105,111, + 110,46,99,97,99,104,101,95,116,97,103,32,105,115,32,78, + 111,110,101,122,37,123,125,32,110,111,116,32,98,111,116,116, + 111,109,45,108,101,118,101,108,32,100,105,114,101,99,116,111, + 114,121,32,105,110,32,123,33,114,125,114,58,0,0,0,114, + 56,0,0,0,233,3,0,0,0,122,33,101,120,112,101,99, + 116,101,100,32,111,110,108,121,32,50,32,111,114,32,51,32, + 100,111,116,115,32,105,110,32,123,33,114,125,122,57,111,112, + 116,105,109,105,122,97,116,105,111,110,32,112,111,114,116,105, + 111,110,32,111,102,32,102,105,108,101,110,97,109,101,32,100, + 111,101,115,32,110,111,116,32,115,116,97,114,116,32,119,105, + 116,104,32,123,33,114,125,122,52,111,112,116,105,109,105,122, + 97,116,105,111,110,32,108,101,118,101,108,32,123,33,114,125, + 32,105,115,32,110,111,116,32,97,110,32,97,108,112,104,97, + 110,117,109,101,114,105,99,32,118,97,108,117,101,114,59,0, + 0,0,62,2,0,0,0,114,56,0,0,0,114,80,0,0, + 0,233,254,255,255,255,41,17,114,7,0,0,0,114,64,0, + 0,0,114,65,0,0,0,114,66,0,0,0,114,38,0,0, + 0,114,73,0,0,0,114,71,0,0,0,114,47,0,0,0, + 218,5,99,111,117,110,116,114,34,0,0,0,114,9,0,0, + 0,114,72,0,0,0,114,31,0,0,0,114,70,0,0,0, + 218,9,112,97,114,116,105,116,105,111,110,114,28,0,0,0, + 218,15,83,79,85,82,67,69,95,83,85,70,70,73,88,69, + 83,41,8,114,35,0,0,0,114,76,0,0,0,90,16,112, + 121,99,97,99,104,101,95,102,105,108,101,110,97,109,101,90, + 7,112,121,99,97,99,104,101,90,9,100,111,116,95,99,111, + 117,110,116,114,57,0,0,0,90,9,111,112,116,95,108,101, + 118,101,108,90,13,98,97,115,101,95,102,105,108,101,110,97, + 109,101,114,4,0,0,0,114,4,0,0,0,114,5,0,0, + 0,218,17,115,111,117,114,99,101,95,102,114,111,109,95,99, + 97,99,104,101,28,1,0,0,115,44,0,0,0,0,9,18, + 1,12,1,18,1,18,1,12,1,9,1,15,1,15,1,12, + 1,9,1,15,1,12,1,22,1,15,1,9,1,12,1,22, + 1,12,1,9,1,12,1,19,1,114,85,0,0,0,99,1, + 0,0,0,0,0,0,0,5,0,0,0,12,0,0,0,67, + 0,0,0,115,164,0,0,0,116,0,0,124,0,0,131,1, + 0,100,1,0,107,2,0,114,22,0,100,2,0,83,124,0, + 0,106,1,0,100,3,0,131,1,0,92,3,0,125,1,0, + 125,2,0,125,3,0,124,1,0,12,115,81,0,124,3,0, + 106,2,0,131,0,0,100,7,0,100,8,0,133,2,0,25, + 100,6,0,107,3,0,114,85,0,124,0,0,83,121,16,0, + 116,3,0,124,0,0,131,1,0,125,4,0,87,110,40,0, + 4,116,4,0,116,5,0,102,2,0,107,10,0,114,143,0, + 1,1,1,124,0,0,100,2,0,100,9,0,133,2,0,25, + 125,4,0,89,110,1,0,88,116,6,0,124,4,0,131,1, + 0,114,160,0,124,4,0,83,124,0,0,83,41,10,122,188, + 67,111,110,118,101,114,116,32,97,32,98,121,116,101,99,111, + 100,101,32,102,105,108,101,32,112,97,116,104,32,116,111,32, + 97,32,115,111,117,114,99,101,32,112,97,116,104,32,40,105, + 102,32,112,111,115,115,105,98,108,101,41,46,10,10,32,32, + 32,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32, + 101,120,105,115,116,115,32,112,117,114,101,108,121,32,102,111, + 114,32,98,97,99,107,119,97,114,100,115,45,99,111,109,112, + 97,116,105,98,105,108,105,116,121,32,102,111,114,10,32,32, + 32,32,80,121,73,109,112,111,114,116,95,69,120,101,99,67, + 111,100,101,77,111,100,117,108,101,87,105,116,104,70,105,108, + 101,110,97,109,101,115,40,41,32,105,110,32,116,104,101,32, + 67,32,65,80,73,46,10,10,32,32,32,32,114,59,0,0, + 0,78,114,58,0,0,0,114,80,0,0,0,114,29,0,0, + 0,90,2,112,121,233,253,255,255,255,233,255,255,255,255,114, + 87,0,0,0,41,7,114,31,0,0,0,114,32,0,0,0, + 218,5,108,111,119,101,114,114,85,0,0,0,114,66,0,0, + 0,114,71,0,0,0,114,44,0,0,0,41,5,218,13,98, + 121,116,101,99,111,100,101,95,112,97,116,104,114,78,0,0, + 0,114,36,0,0,0,90,9,101,120,116,101,110,115,105,111, + 110,218,11,115,111,117,114,99,101,95,112,97,116,104,114,4, + 0,0,0,114,4,0,0,0,114,5,0,0,0,218,15,95, + 103,101,116,95,115,111,117,114,99,101,102,105,108,101,61,1, + 0,0,115,20,0,0,0,0,7,18,1,4,1,24,1,35, + 1,4,1,3,1,16,1,19,1,21,1,114,91,0,0,0, + 99,1,0,0,0,0,0,0,0,1,0,0,0,11,0,0, + 0,67,0,0,0,115,92,0,0,0,124,0,0,106,0,0, + 116,1,0,116,2,0,131,1,0,131,1,0,114,59,0,121, + 14,0,116,3,0,124,0,0,131,1,0,83,87,113,88,0, + 4,116,4,0,107,10,0,114,55,0,1,1,1,89,113,88, + 0,88,110,29,0,124,0,0,106,0,0,116,1,0,116,5, + 0,131,1,0,131,1,0,114,84,0,124,0,0,83,100,0, + 0,83,100,0,0,83,41,1,78,41,6,218,8,101,110,100, + 115,119,105,116,104,218,5,116,117,112,108,101,114,84,0,0, + 0,114,79,0,0,0,114,66,0,0,0,114,74,0,0,0, + 41,1,218,8,102,105,108,101,110,97,109,101,114,4,0,0, + 0,114,4,0,0,0,114,5,0,0,0,218,11,95,103,101, + 116,95,99,97,99,104,101,100,80,1,0,0,115,16,0,0, + 0,0,1,21,1,3,1,14,1,13,1,8,1,21,1,4, + 2,114,95,0,0,0,99,1,0,0,0,0,0,0,0,2, + 0,0,0,11,0,0,0,67,0,0,0,115,60,0,0,0, + 121,19,0,116,0,0,124,0,0,131,1,0,106,1,0,125, + 1,0,87,110,24,0,4,116,2,0,107,10,0,114,45,0, + 1,1,1,100,1,0,125,1,0,89,110,1,0,88,124,1, + 0,100,2,0,79,125,1,0,124,1,0,83,41,3,122,51, + 67,97,108,99,117,108,97,116,101,32,116,104,101,32,109,111, + 100,101,32,112,101,114,109,105,115,115,105,111,110,115,32,102, + 111,114,32,97,32,98,121,116,101,99,111,100,101,32,102,105, + 108,101,46,105,182,1,0,0,233,128,0,0,0,41,3,114, + 39,0,0,0,114,41,0,0,0,114,40,0,0,0,41,2, + 114,35,0,0,0,114,42,0,0,0,114,4,0,0,0,114, + 4,0,0,0,114,5,0,0,0,218,10,95,99,97,108,99, + 95,109,111,100,101,92,1,0,0,115,12,0,0,0,0,2, + 3,1,19,1,13,1,11,3,10,1,114,97,0,0,0,218, + 9,118,101,114,98,111,115,105,116,121,114,29,0,0,0,99, + 1,0,0,0,1,0,0,0,3,0,0,0,4,0,0,0, + 71,0,0,0,115,75,0,0,0,116,0,0,106,1,0,106, + 2,0,124,1,0,107,5,0,114,71,0,124,0,0,106,3, + 0,100,6,0,131,1,0,115,43,0,100,3,0,124,0,0, + 23,125,0,0,116,4,0,124,0,0,106,5,0,124,2,0, + 140,0,0,100,4,0,116,0,0,106,6,0,131,1,1,1, + 100,5,0,83,41,7,122,61,80,114,105,110,116,32,116,104, + 101,32,109,101,115,115,97,103,101,32,116,111,32,115,116,100, + 101,114,114,32,105,102,32,45,118,47,80,89,84,72,79,78, + 86,69,82,66,79,83,69,32,105,115,32,116,117,114,110,101, + 100,32,111,110,46,250,1,35,250,7,105,109,112,111,114,116, + 32,122,2,35,32,114,54,0,0,0,78,41,2,114,99,0, + 0,0,114,100,0,0,0,41,7,114,7,0,0,0,114,67, + 0,0,0,218,7,118,101,114,98,111,115,101,114,9,0,0, + 0,218,5,112,114,105,110,116,114,47,0,0,0,218,6,115, + 116,100,101,114,114,41,3,114,75,0,0,0,114,98,0,0, + 0,218,4,97,114,103,115,114,4,0,0,0,114,4,0,0, + 0,114,5,0,0,0,218,16,95,118,101,114,98,111,115,101, + 95,109,101,115,115,97,103,101,104,1,0,0,115,8,0,0, + 0,0,2,18,1,15,1,10,1,114,105,0,0,0,99,1, + 0,0,0,0,0,0,0,3,0,0,0,11,0,0,0,3, + 0,0,0,115,84,0,0,0,100,1,0,135,0,0,102,1, + 0,100,2,0,100,3,0,134,1,0,125,1,0,121,13,0, + 116,0,0,106,1,0,125,2,0,87,110,30,0,4,116,2, + 0,107,10,0,114,66,0,1,1,1,100,4,0,100,5,0, + 132,0,0,125,2,0,89,110,1,0,88,124,2,0,124,1, + 0,136,0,0,131,2,0,1,124,1,0,83,41,6,122,252, + 68,101,99,111,114,97,116,111,114,32,116,111,32,118,101,114, + 105,102,121,32,116,104,97,116,32,116,104,101,32,109,111,100, + 117,108,101,32,98,101,105,110,103,32,114,101,113,117,101,115, + 116,101,100,32,109,97,116,99,104,101,115,32,116,104,101,32, + 111,110,101,32,116,104,101,10,32,32,32,32,108,111,97,100, + 101,114,32,99,97,110,32,104,97,110,100,108,101,46,10,10, + 32,32,32,32,84,104,101,32,102,105,114,115,116,32,97,114, + 103,117,109,101,110,116,32,40,115,101,108,102,41,32,109,117, + 115,116,32,100,101,102,105,110,101,32,95,110,97,109,101,32, + 119,104,105,99,104,32,116,104,101,32,115,101,99,111,110,100, + 32,97,114,103,117,109,101,110,116,32,105,115,10,32,32,32, + 32,99,111,109,112,97,114,101,100,32,97,103,97,105,110,115, + 116,46,32,73,102,32,116,104,101,32,99,111,109,112,97,114, + 105,115,111,110,32,102,97,105,108,115,32,116,104,101,110,32, + 73,109,112,111,114,116,69,114,114,111,114,32,105,115,32,114, + 97,105,115,101,100,46,10,10,32,32,32,32,78,99,2,0, + 0,0,0,0,0,0,4,0,0,0,5,0,0,0,31,0, + 0,0,115,80,0,0,0,124,1,0,100,0,0,107,8,0, + 114,24,0,124,0,0,106,0,0,125,1,0,110,37,0,124, + 0,0,106,0,0,124,1,0,107,3,0,114,61,0,116,1, + 0,100,1,0,124,1,0,22,100,2,0,124,1,0,131,1, + 1,130,1,0,136,0,0,124,0,0,124,1,0,124,2,0, + 124,3,0,142,2,0,83,41,3,78,122,23,108,111,97,100, + 101,114,32,99,97,110,110,111,116,32,104,97,110,100,108,101, + 32,37,115,218,4,110,97,109,101,41,2,114,106,0,0,0, + 218,11,73,109,112,111,114,116,69,114,114,111,114,41,4,218, + 4,115,101,108,102,114,106,0,0,0,114,104,0,0,0,90, + 6,107,119,97,114,103,115,41,1,218,6,109,101,116,104,111, + 100,114,4,0,0,0,114,5,0,0,0,218,19,95,99,104, + 101,99,107,95,110,97,109,101,95,119,114,97,112,112,101,114, + 120,1,0,0,115,10,0,0,0,0,1,12,1,12,1,15, + 1,22,1,122,40,95,99,104,101,99,107,95,110,97,109,101, + 46,60,108,111,99,97,108,115,62,46,95,99,104,101,99,107, + 95,110,97,109,101,95,119,114,97,112,112,101,114,99,2,0, + 0,0,0,0,0,0,3,0,0,0,7,0,0,0,83,0, + 0,0,115,92,0,0,0,120,66,0,100,1,0,100,2,0, + 100,3,0,100,4,0,103,4,0,68,93,46,0,125,2,0, + 116,0,0,124,1,0,124,2,0,131,2,0,114,19,0,116, + 1,0,124,0,0,124,2,0,116,2,0,124,1,0,124,2, + 0,131,2,0,131,3,0,1,113,19,0,87,124,0,0,106, + 3,0,106,4,0,124,1,0,106,3,0,131,1,0,1,100, + 0,0,83,41,5,78,218,10,95,95,109,111,100,117,108,101, + 95,95,218,8,95,95,110,97,109,101,95,95,218,12,95,95, + 113,117,97,108,110,97,109,101,95,95,218,7,95,95,100,111, + 99,95,95,41,5,218,7,104,97,115,97,116,116,114,218,7, + 115,101,116,97,116,116,114,218,7,103,101,116,97,116,116,114, + 218,8,95,95,100,105,99,116,95,95,218,6,117,112,100,97, + 116,101,41,3,90,3,110,101,119,90,3,111,108,100,114,52, + 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, + 0,0,218,5,95,119,114,97,112,130,1,0,0,115,8,0, + 0,0,0,1,25,1,15,1,29,1,122,26,95,99,104,101, + 99,107,95,110,97,109,101,46,60,108,111,99,97,108,115,62, + 46,95,119,114,97,112,41,3,218,10,95,98,111,111,116,115, + 116,114,97,112,114,120,0,0,0,218,9,78,97,109,101,69, + 114,114,111,114,41,3,114,109,0,0,0,114,110,0,0,0, + 114,120,0,0,0,114,4,0,0,0,41,1,114,109,0,0, + 0,114,5,0,0,0,218,11,95,99,104,101,99,107,95,110, + 97,109,101,112,1,0,0,115,14,0,0,0,0,8,21,6, + 3,1,13,1,13,2,17,5,13,1,114,123,0,0,0,99, + 2,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0, + 67,0,0,0,115,84,0,0,0,124,0,0,106,0,0,124, + 1,0,131,1,0,92,2,0,125,2,0,125,3,0,124,2, + 0,100,1,0,107,8,0,114,80,0,116,1,0,124,3,0, + 131,1,0,114,80,0,100,2,0,125,4,0,116,2,0,106, + 3,0,124,4,0,106,4,0,124,3,0,100,3,0,25,131, + 1,0,116,5,0,131,2,0,1,124,2,0,83,41,4,122, + 155,84,114,121,32,116,111,32,102,105,110,100,32,97,32,108, + 111,97,100,101,114,32,102,111,114,32,116,104,101,32,115,112, + 101,99,105,102,105,101,100,32,109,111,100,117,108,101,32,98, + 121,32,100,101,108,101,103,97,116,105,110,103,32,116,111,10, + 32,32,32,32,115,101,108,102,46,102,105,110,100,95,108,111, + 97,100,101,114,40,41,46,10,10,32,32,32,32,84,104,105, + 115,32,109,101,116,104,111,100,32,105,115,32,100,101,112,114, + 101,99,97,116,101,100,32,105,110,32,102,97,118,111,114,32, + 111,102,32,102,105,110,100,101,114,46,102,105,110,100,95,115, + 112,101,99,40,41,46,10,10,32,32,32,32,78,122,44,78, + 111,116,32,105,109,112,111,114,116,105,110,103,32,100,105,114, + 101,99,116,111,114,121,32,123,125,58,32,109,105,115,115,105, + 110,103,32,95,95,105,110,105,116,95,95,114,59,0,0,0, + 41,6,218,11,102,105,110,100,95,108,111,97,100,101,114,114, + 31,0,0,0,114,60,0,0,0,114,61,0,0,0,114,47, + 0,0,0,218,13,73,109,112,111,114,116,87,97,114,110,105, + 110,103,41,5,114,108,0,0,0,218,8,102,117,108,108,110, + 97,109,101,218,6,108,111,97,100,101,114,218,8,112,111,114, + 116,105,111,110,115,218,3,109,115,103,114,4,0,0,0,114, + 4,0,0,0,114,5,0,0,0,218,17,95,102,105,110,100, + 95,109,111,100,117,108,101,95,115,104,105,109,139,1,0,0, + 115,10,0,0,0,0,10,21,1,24,1,6,1,29,1,114, + 130,0,0,0,99,2,0,0,0,0,0,0,0,4,0,0, + 0,3,0,0,0,67,0,0,0,115,87,0,0,0,116,0, + 0,124,1,0,124,0,0,131,2,0,125,2,0,124,1,0, + 116,1,0,106,2,0,107,6,0,114,70,0,116,1,0,106, + 2,0,124,1,0,25,125,3,0,116,3,0,106,4,0,124, + 2,0,124,3,0,131,2,0,1,116,1,0,106,2,0,124, + 1,0,25,83,116,3,0,106,5,0,124,2,0,131,1,0, + 83,100,1,0,83,41,2,122,128,76,111,97,100,32,116,104, + 101,32,115,112,101,99,105,102,105,101,100,32,109,111,100,117, + 108,101,32,105,110,116,111,32,115,121,115,46,109,111,100,117, + 108,101,115,32,97,110,100,32,114,101,116,117,114,110,32,105, + 116,46,10,10,32,32,32,32,84,104,105,115,32,109,101,116, + 104,111,100,32,105,115,32,100,101,112,114,101,99,97,116,101, + 100,46,32,32,85,115,101,32,108,111,97,100,101,114,46,101, + 120,101,99,95,109,111,100,117,108,101,32,105,110,115,116,101, + 97,100,46,10,10,32,32,32,32,78,41,6,218,16,115,112, + 101,99,95,102,114,111,109,95,108,111,97,100,101,114,114,7, + 0,0,0,218,7,109,111,100,117,108,101,115,114,121,0,0, + 0,90,5,95,101,120,101,99,90,5,95,108,111,97,100,41, + 4,114,108,0,0,0,114,126,0,0,0,218,4,115,112,101, + 99,218,6,109,111,100,117,108,101,114,4,0,0,0,114,4, + 0,0,0,114,5,0,0,0,218,17,95,108,111,97,100,95, + 109,111,100,117,108,101,95,115,104,105,109,157,1,0,0,115, + 12,0,0,0,0,6,15,1,15,1,13,1,16,1,11,2, + 114,135,0,0,0,99,4,0,0,0,0,0,0,0,11,0, + 0,0,19,0,0,0,67,0,0,0,115,228,1,0,0,105, + 0,0,125,4,0,124,2,0,100,1,0,107,9,0,114,31, + 0,124,2,0,124,4,0,100,2,0,60,110,6,0,100,3, + 0,125,2,0,124,3,0,100,1,0,107,9,0,114,59,0, + 124,3,0,124,4,0,100,4,0,60,124,0,0,100,1,0, + 100,5,0,133,2,0,25,125,5,0,124,0,0,100,5,0, + 100,6,0,133,2,0,25,125,6,0,124,0,0,100,6,0, + 100,7,0,133,2,0,25,125,7,0,124,5,0,116,0,0, + 107,3,0,114,165,0,100,8,0,106,1,0,124,2,0,124, + 5,0,131,2,0,125,8,0,116,2,0,124,8,0,131,1, + 0,1,116,3,0,124,8,0,124,4,0,141,1,0,130,1, + 0,110,113,0,116,4,0,124,6,0,131,1,0,100,5,0, + 107,3,0,114,223,0,100,9,0,106,1,0,124,2,0,131, + 1,0,125,8,0,116,2,0,124,8,0,131,1,0,1,116, + 5,0,124,8,0,131,1,0,130,1,0,110,55,0,116,4, + 0,124,7,0,131,1,0,100,5,0,107,3,0,114,22,1, + 100,10,0,106,1,0,124,2,0,131,1,0,125,8,0,116, + 2,0,124,8,0,131,1,0,1,116,5,0,124,8,0,131, + 1,0,130,1,0,124,1,0,100,1,0,107,9,0,114,214, + 1,121,20,0,116,6,0,124,1,0,100,11,0,25,131,1, + 0,125,9,0,87,110,18,0,4,116,7,0,107,10,0,114, + 74,1,1,1,1,89,110,59,0,88,116,8,0,124,6,0, + 131,1,0,124,9,0,107,3,0,114,133,1,100,12,0,106, + 1,0,124,2,0,131,1,0,125,8,0,116,2,0,124,8, + 0,131,1,0,1,116,3,0,124,8,0,124,4,0,141,1, + 0,130,1,0,121,18,0,124,1,0,100,13,0,25,100,14, + 0,64,125,10,0,87,110,18,0,4,116,7,0,107,10,0, + 114,171,1,1,1,1,89,110,43,0,88,116,8,0,124,7, + 0,131,1,0,124,10,0,107,3,0,114,214,1,116,3,0, + 100,12,0,106,1,0,124,2,0,131,1,0,124,4,0,141, + 1,0,130,1,0,124,0,0,100,7,0,100,1,0,133,2, + 0,25,83,41,15,97,122,1,0,0,86,97,108,105,100,97, + 116,101,32,116,104,101,32,104,101,97,100,101,114,32,111,102, + 32,116,104,101,32,112,97,115,115,101,100,45,105,110,32,98, + 121,116,101,99,111,100,101,32,97,103,97,105,110,115,116,32, + 115,111,117,114,99,101,95,115,116,97,116,115,32,40,105,102, + 10,32,32,32,32,103,105,118,101,110,41,32,97,110,100,32, + 114,101,116,117,114,110,105,110,103,32,116,104,101,32,98,121, + 116,101,99,111,100,101,32,116,104,97,116,32,99,97,110,32, + 98,101,32,99,111,109,112,105,108,101,100,32,98,121,32,99, + 111,109,112,105,108,101,40,41,46,10,10,32,32,32,32,65, + 108,108,32,111,116,104,101,114,32,97,114,103,117,109,101,110, + 116,115,32,97,114,101,32,117,115,101,100,32,116,111,32,101, + 110,104,97,110,99,101,32,101,114,114,111,114,32,114,101,112, + 111,114,116,105,110,103,46,10,10,32,32,32,32,73,109,112, + 111,114,116,69,114,114,111,114,32,105,115,32,114,97,105,115, + 101,100,32,119,104,101,110,32,116,104,101,32,109,97,103,105, + 99,32,110,117,109,98,101,114,32,105,115,32,105,110,99,111, + 114,114,101,99,116,32,111,114,32,116,104,101,32,98,121,116, + 101,99,111,100,101,32,105,115,10,32,32,32,32,102,111,117, + 110,100,32,116,111,32,98,101,32,115,116,97,108,101,46,32, + 69,79,70,69,114,114,111,114,32,105,115,32,114,97,105,115, + 101,100,32,119,104,101,110,32,116,104,101,32,100,97,116,97, + 32,105,115,32,102,111,117,110,100,32,116,111,32,98,101,10, + 32,32,32,32,116,114,117,110,99,97,116,101,100,46,10,10, + 32,32,32,32,78,114,106,0,0,0,122,10,60,98,121,116, + 101,99,111,100,101,62,114,35,0,0,0,114,12,0,0,0, + 233,8,0,0,0,233,12,0,0,0,122,30,98,97,100,32, + 109,97,103,105,99,32,110,117,109,98,101,114,32,105,110,32, + 123,33,114,125,58,32,123,33,114,125,122,43,114,101,97,99, + 104,101,100,32,69,79,70,32,119,104,105,108,101,32,114,101, + 97,100,105,110,103,32,116,105,109,101,115,116,97,109,112,32, + 105,110,32,123,33,114,125,122,48,114,101,97,99,104,101,100, + 32,69,79,70,32,119,104,105,108,101,32,114,101,97,100,105, + 110,103,32,115,105,122,101,32,111,102,32,115,111,117,114,99, + 101,32,105,110,32,123,33,114,125,218,5,109,116,105,109,101, + 122,26,98,121,116,101,99,111,100,101,32,105,115,32,115,116, + 97,108,101,32,102,111,114,32,123,33,114,125,218,4,115,105, + 122,101,108,3,0,0,0,255,127,255,127,3,0,41,9,218, + 12,77,65,71,73,67,95,78,85,77,66,69,82,114,47,0, + 0,0,114,105,0,0,0,114,107,0,0,0,114,31,0,0, + 0,218,8,69,79,70,69,114,114,111,114,114,14,0,0,0, + 218,8,75,101,121,69,114,114,111,114,114,19,0,0,0,41, + 11,114,53,0,0,0,218,12,115,111,117,114,99,101,95,115, + 116,97,116,115,114,106,0,0,0,114,35,0,0,0,90,11, + 101,120,99,95,100,101,116,97,105,108,115,90,5,109,97,103, + 105,99,90,13,114,97,119,95,116,105,109,101,115,116,97,109, + 112,90,8,114,97,119,95,115,105,122,101,114,75,0,0,0, + 218,12,115,111,117,114,99,101,95,109,116,105,109,101,218,11, + 115,111,117,114,99,101,95,115,105,122,101,114,4,0,0,0, + 114,4,0,0,0,114,5,0,0,0,218,25,95,118,97,108, + 105,100,97,116,101,95,98,121,116,101,99,111,100,101,95,104, + 101,97,100,101,114,172,1,0,0,115,76,0,0,0,0,11, + 6,1,12,1,13,3,6,1,12,1,10,1,16,1,16,1, + 16,1,12,1,18,1,10,1,18,1,18,1,15,1,10,1, + 15,1,18,1,15,1,10,1,12,1,12,1,3,1,20,1, + 13,1,5,2,18,1,15,1,10,1,15,1,3,1,18,1, + 13,1,5,2,18,1,15,1,9,1,114,146,0,0,0,99, + 4,0,0,0,0,0,0,0,5,0,0,0,6,0,0,0, + 67,0,0,0,115,112,0,0,0,116,0,0,106,1,0,124, + 0,0,131,1,0,125,4,0,116,2,0,124,4,0,116,3, + 0,131,2,0,114,75,0,116,4,0,100,1,0,124,2,0, + 131,2,0,1,124,3,0,100,2,0,107,9,0,114,71,0, + 116,5,0,106,6,0,124,4,0,124,3,0,131,2,0,1, + 124,4,0,83,116,7,0,100,3,0,106,8,0,124,2,0, + 131,1,0,100,4,0,124,1,0,100,5,0,124,2,0,131, + 1,2,130,1,0,100,2,0,83,41,6,122,60,67,111,109, + 112,105,108,101,32,98,121,116,101,99,111,100,101,32,97,115, + 32,114,101,116,117,114,110,101,100,32,98,121,32,95,118,97, + 108,105,100,97,116,101,95,98,121,116,101,99,111,100,101,95, + 104,101,97,100,101,114,40,41,46,122,21,99,111,100,101,32, + 111,98,106,101,99,116,32,102,114,111,109,32,123,33,114,125, + 78,122,23,78,111,110,45,99,111,100,101,32,111,98,106,101, + 99,116,32,105,110,32,123,33,114,125,114,106,0,0,0,114, + 35,0,0,0,41,9,218,7,109,97,114,115,104,97,108,90, + 5,108,111,97,100,115,218,10,105,115,105,110,115,116,97,110, + 99,101,218,10,95,99,111,100,101,95,116,121,112,101,114,105, + 0,0,0,218,4,95,105,109,112,90,16,95,102,105,120,95, + 99,111,95,102,105,108,101,110,97,109,101,114,107,0,0,0, + 114,47,0,0,0,41,5,114,53,0,0,0,114,106,0,0, + 0,114,89,0,0,0,114,90,0,0,0,218,4,99,111,100, + 101,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 218,17,95,99,111,109,112,105,108,101,95,98,121,116,101,99, + 111,100,101,227,1,0,0,115,16,0,0,0,0,2,15,1, + 15,1,13,1,12,1,16,1,4,2,18,1,114,152,0,0, + 0,114,59,0,0,0,99,3,0,0,0,0,0,0,0,4, + 0,0,0,3,0,0,0,67,0,0,0,115,76,0,0,0, + 116,0,0,116,1,0,131,1,0,125,3,0,124,3,0,106, + 2,0,116,3,0,124,1,0,131,1,0,131,1,0,1,124, + 3,0,106,2,0,116,3,0,124,2,0,131,1,0,131,1, + 0,1,124,3,0,106,2,0,116,4,0,106,5,0,124,0, + 0,131,1,0,131,1,0,1,124,3,0,83,41,1,122,80, + 67,111,109,112,105,108,101,32,97,32,99,111,100,101,32,111, + 98,106,101,99,116,32,105,110,116,111,32,98,121,116,101,99, + 111,100,101,32,102,111,114,32,119,114,105,116,105,110,103,32, + 111,117,116,32,116,111,32,97,32,98,121,116,101,45,99,111, + 109,112,105,108,101,100,10,32,32,32,32,102,105,108,101,46, + 41,6,218,9,98,121,116,101,97,114,114,97,121,114,140,0, + 0,0,218,6,101,120,116,101,110,100,114,17,0,0,0,114, + 147,0,0,0,90,5,100,117,109,112,115,41,4,114,151,0, + 0,0,114,138,0,0,0,114,145,0,0,0,114,53,0,0, + 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 218,17,95,99,111,100,101,95,116,111,95,98,121,116,101,99, + 111,100,101,239,1,0,0,115,10,0,0,0,0,3,12,1, + 19,1,19,1,22,1,114,155,0,0,0,99,1,0,0,0, + 0,0,0,0,5,0,0,0,4,0,0,0,67,0,0,0, + 115,89,0,0,0,100,1,0,100,2,0,108,0,0,125,1, + 0,116,1,0,106,2,0,124,0,0,131,1,0,106,3,0, + 125,2,0,124,1,0,106,4,0,124,2,0,131,1,0,125, + 3,0,116,1,0,106,5,0,100,2,0,100,3,0,131,2, + 0,125,4,0,124,4,0,106,6,0,124,0,0,106,6,0, + 124,3,0,100,1,0,25,131,1,0,131,1,0,83,41,4, + 122,121,68,101,99,111,100,101,32,98,121,116,101,115,32,114, + 101,112,114,101,115,101,110,116,105,110,103,32,115,111,117,114, + 99,101,32,99,111,100,101,32,97,110,100,32,114,101,116,117, + 114,110,32,116,104,101,32,115,116,114,105,110,103,46,10,10, + 32,32,32,32,85,110,105,118,101,114,115,97,108,32,110,101, + 119,108,105,110,101,32,115,117,112,112,111,114,116,32,105,115, + 32,117,115,101,100,32,105,110,32,116,104,101,32,100,101,99, + 111,100,105,110,103,46,10,32,32,32,32,114,59,0,0,0, + 78,84,41,7,218,8,116,111,107,101,110,105,122,101,114,49, + 0,0,0,90,7,66,121,116,101,115,73,79,90,8,114,101, + 97,100,108,105,110,101,90,15,100,101,116,101,99,116,95,101, + 110,99,111,100,105,110,103,90,25,73,110,99,114,101,109,101, + 110,116,97,108,78,101,119,108,105,110,101,68,101,99,111,100, + 101,114,218,6,100,101,99,111,100,101,41,5,218,12,115,111, + 117,114,99,101,95,98,121,116,101,115,114,156,0,0,0,90, + 21,115,111,117,114,99,101,95,98,121,116,101,115,95,114,101, + 97,100,108,105,110,101,218,8,101,110,99,111,100,105,110,103, + 90,15,110,101,119,108,105,110,101,95,100,101,99,111,100,101, + 114,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 218,13,100,101,99,111,100,101,95,115,111,117,114,99,101,249, + 1,0,0,115,10,0,0,0,0,5,12,1,18,1,15,1, + 18,1,114,160,0,0,0,218,6,111,114,105,103,105,110,218, + 10,105,115,95,112,97,99,107,97,103,101,99,2,0,0,0, + 2,0,0,0,5,0,0,0,15,0,0,0,67,0,0,0, + 115,193,0,0,0,116,0,0,124,1,0,100,1,0,131,2, + 0,114,83,0,124,3,0,100,2,0,107,8,0,114,43,0, + 116,1,0,124,0,0,100,3,0,124,1,0,131,1,1,83, + 124,3,0,114,55,0,103,0,0,110,3,0,100,2,0,125, + 4,0,116,1,0,124,0,0,100,3,0,124,1,0,100,4, + 0,124,4,0,131,1,2,83,124,3,0,100,2,0,107,8, + 0,114,165,0,116,0,0,124,1,0,100,5,0,131,2,0, + 114,159,0,121,19,0,124,1,0,106,2,0,124,0,0,131, + 1,0,125,3,0,87,113,165,0,4,116,3,0,107,10,0, + 114,155,0,1,1,1,100,2,0,125,3,0,89,113,165,0, + 88,110,6,0,100,6,0,125,3,0,116,4,0,106,5,0, + 124,0,0,124,1,0,100,7,0,124,2,0,100,5,0,124, + 3,0,131,2,2,83,41,8,122,53,82,101,116,117,114,110, + 32,97,32,109,111,100,117,108,101,32,115,112,101,99,32,98, + 97,115,101,100,32,111,110,32,118,97,114,105,111,117,115,32, + 108,111,97,100,101,114,32,109,101,116,104,111,100,115,46,218, + 12,103,101,116,95,102,105,108,101,110,97,109,101,78,114,127, + 0,0,0,218,26,115,117,98,109,111,100,117,108,101,95,115, + 101,97,114,99,104,95,108,111,99,97,116,105,111,110,115,114, + 162,0,0,0,70,114,161,0,0,0,41,6,114,115,0,0, + 0,218,23,115,112,101,99,95,102,114,111,109,95,102,105,108, + 101,95,108,111,99,97,116,105,111,110,114,162,0,0,0,114, + 107,0,0,0,114,121,0,0,0,218,10,77,111,100,117,108, + 101,83,112,101,99,41,5,114,106,0,0,0,114,127,0,0, + 0,114,161,0,0,0,114,162,0,0,0,90,6,115,101,97, + 114,99,104,114,4,0,0,0,114,4,0,0,0,114,5,0, + 0,0,114,131,0,0,0,7,2,0,0,115,28,0,0,0, + 0,2,15,1,12,1,16,1,18,1,15,1,7,2,12,1, + 15,1,3,1,19,1,13,1,14,3,6,2,114,131,0,0, + 0,114,127,0,0,0,114,164,0,0,0,99,2,0,0,0, + 2,0,0,0,9,0,0,0,19,0,0,0,67,0,0,0, + 115,89,1,0,0,124,1,0,100,1,0,107,8,0,114,73, + 0,100,2,0,125,1,0,116,0,0,124,2,0,100,3,0, + 131,2,0,114,73,0,121,19,0,124,2,0,106,1,0,124, + 0,0,131,1,0,125,1,0,87,110,18,0,4,116,2,0, + 107,10,0,114,72,0,1,1,1,89,110,1,0,88,116,3, + 0,106,4,0,124,0,0,124,2,0,100,4,0,124,1,0, + 131,2,1,125,4,0,100,5,0,124,4,0,95,5,0,124, + 2,0,100,1,0,107,8,0,114,194,0,120,73,0,116,6, + 0,131,0,0,68,93,58,0,92,2,0,125,5,0,125,6, + 0,124,1,0,106,7,0,116,8,0,124,6,0,131,1,0, + 131,1,0,114,128,0,124,5,0,124,0,0,124,1,0,131, + 2,0,125,2,0,124,2,0,124,4,0,95,9,0,80,113, + 128,0,87,100,1,0,83,124,3,0,116,10,0,107,8,0, + 114,23,1,116,0,0,124,2,0,100,6,0,131,2,0,114, + 32,1,121,19,0,124,2,0,106,11,0,124,0,0,131,1, + 0,125,7,0,87,110,18,0,4,116,2,0,107,10,0,114, + 4,1,1,1,1,89,113,32,1,88,124,7,0,114,32,1, + 103,0,0,124,4,0,95,12,0,110,9,0,124,3,0,124, + 4,0,95,12,0,124,4,0,106,12,0,103,0,0,107,2, + 0,114,85,1,124,1,0,114,85,1,116,13,0,124,1,0, + 131,1,0,100,7,0,25,125,8,0,124,4,0,106,12,0, + 106,14,0,124,8,0,131,1,0,1,124,4,0,83,41,8, + 97,61,1,0,0,82,101,116,117,114,110,32,97,32,109,111, + 100,117,108,101,32,115,112,101,99,32,98,97,115,101,100,32, + 111,110,32,97,32,102,105,108,101,32,108,111,99,97,116,105, + 111,110,46,10,10,32,32,32,32,84,111,32,105,110,100,105, + 99,97,116,101,32,116,104,97,116,32,116,104,101,32,109,111, + 100,117,108,101,32,105,115,32,97,32,112,97,99,107,97,103, + 101,44,32,115,101,116,10,32,32,32,32,115,117,98,109,111, + 100,117,108,101,95,115,101,97,114,99,104,95,108,111,99,97, + 116,105,111,110,115,32,116,111,32,97,32,108,105,115,116,32, + 111,102,32,100,105,114,101,99,116,111,114,121,32,112,97,116, + 104,115,46,32,32,65,110,10,32,32,32,32,101,109,112,116, + 121,32,108,105,115,116,32,105,115,32,115,117,102,102,105,99, + 105,101,110,116,44,32,116,104,111,117,103,104,32,105,116,115, + 32,110,111,116,32,111,116,104,101,114,119,105,115,101,32,117, + 115,101,102,117,108,32,116,111,32,116,104,101,10,32,32,32, + 32,105,109,112,111,114,116,32,115,121,115,116,101,109,46,10, + 10,32,32,32,32,84,104,101,32,108,111,97,100,101,114,32, + 109,117,115,116,32,116,97,107,101,32,97,32,115,112,101,99, + 32,97,115,32,105,116,115,32,111,110,108,121,32,95,95,105, + 110,105,116,95,95,40,41,32,97,114,103,46,10,10,32,32, + 32,32,78,122,9,60,117,110,107,110,111,119,110,62,114,163, + 0,0,0,114,161,0,0,0,84,114,162,0,0,0,114,59, + 0,0,0,41,15,114,115,0,0,0,114,163,0,0,0,114, + 107,0,0,0,114,121,0,0,0,114,166,0,0,0,90,13, + 95,115,101,116,95,102,105,108,101,97,116,116,114,218,27,95, + 103,101,116,95,115,117,112,112,111,114,116,101,100,95,102,105, + 108,101,95,108,111,97,100,101,114,115,114,92,0,0,0,114, + 93,0,0,0,114,127,0,0,0,218,9,95,80,79,80,85, + 76,65,84,69,114,162,0,0,0,114,164,0,0,0,114,38, + 0,0,0,218,6,97,112,112,101,110,100,41,9,114,106,0, + 0,0,90,8,108,111,99,97,116,105,111,110,114,127,0,0, + 0,114,164,0,0,0,114,133,0,0,0,218,12,108,111,97, + 100,101,114,95,99,108,97,115,115,218,8,115,117,102,102,105, + 120,101,115,114,162,0,0,0,90,7,100,105,114,110,97,109, + 101,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 114,165,0,0,0,32,2,0,0,115,60,0,0,0,0,12, + 12,4,6,1,15,2,3,1,19,1,13,1,5,8,24,1, + 9,3,12,1,22,1,21,1,15,1,9,1,5,2,4,3, + 12,2,15,1,3,1,19,1,13,1,5,2,6,1,12,2, + 9,1,15,1,6,1,16,1,16,2,114,165,0,0,0,99, + 0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0, + 64,0,0,0,115,121,0,0,0,101,0,0,90,1,0,100, + 0,0,90,2,0,100,1,0,90,3,0,100,2,0,90,4, + 0,100,3,0,90,5,0,100,4,0,90,6,0,101,7,0, + 100,5,0,100,6,0,132,0,0,131,1,0,90,8,0,101, + 7,0,100,7,0,100,8,0,132,0,0,131,1,0,90,9, + 0,101,7,0,100,9,0,100,9,0,100,10,0,100,11,0, + 132,2,0,131,1,0,90,10,0,101,7,0,100,9,0,100, + 12,0,100,13,0,132,1,0,131,1,0,90,11,0,100,9, + 0,83,41,14,218,21,87,105,110,100,111,119,115,82,101,103, + 105,115,116,114,121,70,105,110,100,101,114,122,62,77,101,116, + 97,32,112,97,116,104,32,102,105,110,100,101,114,32,102,111, + 114,32,109,111,100,117,108,101,115,32,100,101,99,108,97,114, + 101,100,32,105,110,32,116,104,101,32,87,105,110,100,111,119, + 115,32,114,101,103,105,115,116,114,121,46,122,59,83,111,102, + 116,119,97,114,101,92,80,121,116,104,111,110,92,80,121,116, + 104,111,110,67,111,114,101,92,123,115,121,115,95,118,101,114, + 115,105,111,110,125,92,77,111,100,117,108,101,115,92,123,102, + 117,108,108,110,97,109,101,125,122,65,83,111,102,116,119,97, + 114,101,92,80,121,116,104,111,110,92,80,121,116,104,111,110, + 67,111,114,101,92,123,115,121,115,95,118,101,114,115,105,111, + 110,125,92,77,111,100,117,108,101,115,92,123,102,117,108,108, + 110,97,109,101,125,92,68,101,98,117,103,70,99,2,0,0, + 0,0,0,0,0,2,0,0,0,11,0,0,0,67,0,0, + 0,115,67,0,0,0,121,23,0,116,0,0,106,1,0,116, + 0,0,106,2,0,124,1,0,131,2,0,83,87,110,37,0, + 4,116,3,0,107,10,0,114,62,0,1,1,1,116,0,0, + 106,1,0,116,0,0,106,4,0,124,1,0,131,2,0,83, + 89,110,1,0,88,100,0,0,83,41,1,78,41,5,218,7, + 95,119,105,110,114,101,103,90,7,79,112,101,110,75,101,121, + 90,17,72,75,69,89,95,67,85,82,82,69,78,84,95,85, + 83,69,82,114,40,0,0,0,90,18,72,75,69,89,95,76, + 79,67,65,76,95,77,65,67,72,73,78,69,41,2,218,3, + 99,108,115,218,3,107,101,121,114,4,0,0,0,114,4,0, + 0,0,114,5,0,0,0,218,14,95,111,112,101,110,95,114, + 101,103,105,115,116,114,121,110,2,0,0,115,8,0,0,0, + 0,2,3,1,23,1,13,1,122,36,87,105,110,100,111,119, + 115,82,101,103,105,115,116,114,121,70,105,110,100,101,114,46, + 95,111,112,101,110,95,114,101,103,105,115,116,114,121,99,2, + 0,0,0,0,0,0,0,6,0,0,0,16,0,0,0,67, + 0,0,0,115,142,0,0,0,124,0,0,106,0,0,114,21, + 0,124,0,0,106,1,0,125,2,0,110,9,0,124,0,0, + 106,2,0,125,2,0,124,2,0,106,3,0,100,1,0,124, + 1,0,100,2,0,116,4,0,106,5,0,100,0,0,100,3, + 0,133,2,0,25,131,0,2,125,3,0,121,46,0,124,0, + 0,106,6,0,124,3,0,131,1,0,143,25,0,125,4,0, + 116,7,0,106,8,0,124,4,0,100,4,0,131,2,0,125, + 5,0,87,100,0,0,81,88,87,110,22,0,4,116,9,0, + 107,10,0,114,137,0,1,1,1,100,0,0,83,89,110,1, + 0,88,124,5,0,83,41,5,78,114,126,0,0,0,90,11, + 115,121,115,95,118,101,114,115,105,111,110,114,80,0,0,0, + 114,30,0,0,0,41,10,218,11,68,69,66,85,71,95,66, + 85,73,76,68,218,18,82,69,71,73,83,84,82,89,95,75, + 69,89,95,68,69,66,85,71,218,12,82,69,71,73,83,84, + 82,89,95,75,69,89,114,47,0,0,0,114,7,0,0,0, + 218,7,118,101,114,115,105,111,110,114,176,0,0,0,114,173, + 0,0,0,90,10,81,117,101,114,121,86,97,108,117,101,114, + 40,0,0,0,41,6,114,174,0,0,0,114,126,0,0,0, + 90,12,114,101,103,105,115,116,114,121,95,107,101,121,114,175, + 0,0,0,90,4,104,107,101,121,218,8,102,105,108,101,112, + 97,116,104,114,4,0,0,0,114,4,0,0,0,114,5,0, + 0,0,218,16,95,115,101,97,114,99,104,95,114,101,103,105, + 115,116,114,121,117,2,0,0,115,22,0,0,0,0,2,9, + 1,12,2,9,1,15,1,22,1,3,1,18,1,28,1,13, + 1,9,1,122,38,87,105,110,100,111,119,115,82,101,103,105, + 115,116,114,121,70,105,110,100,101,114,46,95,115,101,97,114, + 99,104,95,114,101,103,105,115,116,114,121,78,99,4,0,0, + 0,0,0,0,0,8,0,0,0,14,0,0,0,67,0,0, + 0,115,155,0,0,0,124,0,0,106,0,0,124,1,0,131, + 1,0,125,4,0,124,4,0,100,0,0,107,8,0,114,31, + 0,100,0,0,83,121,14,0,116,1,0,124,4,0,131,1, + 0,1,87,110,22,0,4,116,2,0,107,10,0,114,69,0, + 1,1,1,100,0,0,83,89,110,1,0,88,120,78,0,116, + 3,0,131,0,0,68,93,67,0,92,2,0,125,5,0,125, + 6,0,124,4,0,106,4,0,116,5,0,124,6,0,131,1, + 0,131,1,0,114,80,0,116,6,0,124,1,0,124,5,0, + 124,1,0,124,4,0,131,2,0,100,1,0,124,4,0,131, + 2,1,125,7,0,124,7,0,83,113,80,0,87,100,0,0, + 83,41,2,78,114,161,0,0,0,41,7,114,182,0,0,0, + 114,39,0,0,0,114,40,0,0,0,114,167,0,0,0,114, + 92,0,0,0,114,93,0,0,0,114,131,0,0,0,41,8, + 114,174,0,0,0,114,126,0,0,0,114,35,0,0,0,218, + 6,116,97,114,103,101,116,114,181,0,0,0,114,127,0,0, + 0,114,171,0,0,0,114,133,0,0,0,114,4,0,0,0, + 114,4,0,0,0,114,5,0,0,0,218,9,102,105,110,100, + 95,115,112,101,99,132,2,0,0,115,24,0,0,0,0,2, + 15,1,12,1,4,1,3,1,14,1,13,1,9,1,22,1, + 21,1,21,1,9,1,122,31,87,105,110,100,111,119,115,82, + 101,103,105,115,116,114,121,70,105,110,100,101,114,46,102,105, + 110,100,95,115,112,101,99,99,3,0,0,0,0,0,0,0, + 4,0,0,0,3,0,0,0,67,0,0,0,115,45,0,0, + 0,124,0,0,106,0,0,124,1,0,124,2,0,131,2,0, + 125,3,0,124,3,0,100,1,0,107,9,0,114,37,0,124, + 3,0,106,1,0,83,100,1,0,83,100,1,0,83,41,2, + 122,108,70,105,110,100,32,109,111,100,117,108,101,32,110,97, + 109,101,100,32,105,110,32,116,104,101,32,114,101,103,105,115, + 116,114,121,46,10,10,32,32,32,32,32,32,32,32,84,104, + 105,115,32,109,101,116,104,111,100,32,105,115,32,100,101,112, + 114,101,99,97,116,101,100,46,32,32,85,115,101,32,101,120, + 101,99,95,109,111,100,117,108,101,40,41,32,105,110,115,116, + 101,97,100,46,10,10,32,32,32,32,32,32,32,32,78,41, + 2,114,184,0,0,0,114,127,0,0,0,41,4,114,174,0, + 0,0,114,126,0,0,0,114,35,0,0,0,114,133,0,0, + 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 218,11,102,105,110,100,95,109,111,100,117,108,101,147,2,0, + 0,115,8,0,0,0,0,7,18,1,12,1,7,2,122,33, + 87,105,110,100,111,119,115,82,101,103,105,115,116,114,121,70, + 105,110,100,101,114,46,102,105,110,100,95,109,111,100,117,108, + 101,41,12,114,112,0,0,0,114,111,0,0,0,114,113,0, + 0,0,114,114,0,0,0,114,179,0,0,0,114,178,0,0, + 0,114,177,0,0,0,218,11,99,108,97,115,115,109,101,116, + 104,111,100,114,176,0,0,0,114,182,0,0,0,114,184,0, + 0,0,114,185,0,0,0,114,4,0,0,0,114,4,0,0, + 0,114,4,0,0,0,114,5,0,0,0,114,172,0,0,0, + 98,2,0,0,115,20,0,0,0,12,2,6,3,6,3,6, + 2,6,2,18,7,18,15,3,1,21,14,3,1,114,172,0, + 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,2, + 0,0,0,64,0,0,0,115,64,0,0,0,101,0,0,90, + 1,0,100,0,0,90,2,0,100,1,0,90,3,0,100,2, + 0,100,3,0,132,0,0,90,4,0,100,4,0,100,5,0, + 132,0,0,90,5,0,100,6,0,100,7,0,132,0,0,90, + 6,0,101,7,0,90,8,0,100,8,0,83,41,9,218,13, + 95,76,111,97,100,101,114,66,97,115,105,99,115,122,83,66, + 97,115,101,32,99,108,97,115,115,32,111,102,32,99,111,109, + 109,111,110,32,99,111,100,101,32,110,101,101,100,101,100,32, + 98,121,32,98,111,116,104,32,83,111,117,114,99,101,76,111, + 97,100,101,114,32,97,110,100,10,32,32,32,32,83,111,117, + 114,99,101,108,101,115,115,70,105,108,101,76,111,97,100,101, + 114,46,99,2,0,0,0,0,0,0,0,5,0,0,0,3, + 0,0,0,67,0,0,0,115,88,0,0,0,116,0,0,124, + 0,0,106,1,0,124,1,0,131,1,0,131,1,0,100,1, + 0,25,125,2,0,124,2,0,106,2,0,100,2,0,100,1, + 0,131,2,0,100,3,0,25,125,3,0,124,1,0,106,3, + 0,100,2,0,131,1,0,100,4,0,25,125,4,0,124,3, + 0,100,5,0,107,2,0,111,87,0,124,4,0,100,5,0, + 107,3,0,83,41,6,122,141,67,111,110,99,114,101,116,101, + 32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32, + 111,102,32,73,110,115,112,101,99,116,76,111,97,100,101,114, + 46,105,115,95,112,97,99,107,97,103,101,32,98,121,32,99, + 104,101,99,107,105,110,103,32,105,102,10,32,32,32,32,32, + 32,32,32,116,104,101,32,112,97,116,104,32,114,101,116,117, + 114,110,101,100,32,98,121,32,103,101,116,95,102,105,108,101, + 110,97,109,101,32,104,97,115,32,97,32,102,105,108,101,110, + 97,109,101,32,111,102,32,39,95,95,105,110,105,116,95,95, + 46,112,121,39,46,114,29,0,0,0,114,58,0,0,0,114, + 59,0,0,0,114,56,0,0,0,218,8,95,95,105,110,105, + 116,95,95,41,4,114,38,0,0,0,114,163,0,0,0,114, + 34,0,0,0,114,32,0,0,0,41,5,114,108,0,0,0, + 114,126,0,0,0,114,94,0,0,0,90,13,102,105,108,101, + 110,97,109,101,95,98,97,115,101,90,9,116,97,105,108,95, + 110,97,109,101,114,4,0,0,0,114,4,0,0,0,114,5, + 0,0,0,114,162,0,0,0,166,2,0,0,115,8,0,0, + 0,0,3,25,1,22,1,19,1,122,24,95,76,111,97,100, + 101,114,66,97,115,105,99,115,46,105,115,95,112,97,99,107, + 97,103,101,99,2,0,0,0,0,0,0,0,2,0,0,0, + 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, + 83,41,2,122,42,85,115,101,32,100,101,102,97,117,108,116, + 32,115,101,109,97,110,116,105,99,115,32,102,111,114,32,109, + 111,100,117,108,101,32,99,114,101,97,116,105,111,110,46,78, + 114,4,0,0,0,41,2,114,108,0,0,0,114,133,0,0, + 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 218,13,99,114,101,97,116,101,95,109,111,100,117,108,101,174, + 2,0,0,115,0,0,0,0,122,27,95,76,111,97,100,101, + 114,66,97,115,105,99,115,46,99,114,101,97,116,101,95,109, + 111,100,117,108,101,99,2,0,0,0,0,0,0,0,3,0, + 0,0,4,0,0,0,67,0,0,0,115,80,0,0,0,124, + 0,0,106,0,0,124,1,0,106,1,0,131,1,0,125,2, + 0,124,2,0,100,1,0,107,8,0,114,54,0,116,2,0, + 100,2,0,106,3,0,124,1,0,106,1,0,131,1,0,131, + 1,0,130,1,0,116,4,0,106,5,0,116,6,0,124,2, + 0,124,1,0,106,7,0,131,3,0,1,100,1,0,83,41, + 3,122,19,69,120,101,99,117,116,101,32,116,104,101,32,109, + 111,100,117,108,101,46,78,122,52,99,97,110,110,111,116,32, + 108,111,97,100,32,109,111,100,117,108,101,32,123,33,114,125, + 32,119,104,101,110,32,103,101,116,95,99,111,100,101,40,41, + 32,114,101,116,117,114,110,115,32,78,111,110,101,41,8,218, + 8,103,101,116,95,99,111,100,101,114,112,0,0,0,114,107, + 0,0,0,114,47,0,0,0,114,121,0,0,0,218,25,95, + 99,97,108,108,95,119,105,116,104,95,102,114,97,109,101,115, + 95,114,101,109,111,118,101,100,218,4,101,120,101,99,114,118, + 0,0,0,41,3,114,108,0,0,0,114,134,0,0,0,114, + 151,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, + 0,0,0,218,11,101,120,101,99,95,109,111,100,117,108,101, + 177,2,0,0,115,10,0,0,0,0,2,18,1,12,1,9, + 1,15,1,122,25,95,76,111,97,100,101,114,66,97,115,105, + 99,115,46,101,120,101,99,95,109,111,100,117,108,101,78,41, + 9,114,112,0,0,0,114,111,0,0,0,114,113,0,0,0, + 114,114,0,0,0,114,162,0,0,0,114,189,0,0,0,114, + 193,0,0,0,114,135,0,0,0,218,11,108,111,97,100,95, + 109,111,100,117,108,101,114,4,0,0,0,114,4,0,0,0, + 114,4,0,0,0,114,5,0,0,0,114,187,0,0,0,161, + 2,0,0,115,10,0,0,0,12,3,6,2,12,8,12,3, + 12,8,114,187,0,0,0,99,0,0,0,0,0,0,0,0, + 0,0,0,0,4,0,0,0,64,0,0,0,115,106,0,0, + 0,101,0,0,90,1,0,100,0,0,90,2,0,100,1,0, + 100,2,0,132,0,0,90,3,0,100,3,0,100,4,0,132, + 0,0,90,4,0,100,5,0,100,6,0,132,0,0,90,5, + 0,100,7,0,100,8,0,132,0,0,90,6,0,100,9,0, + 100,10,0,132,0,0,90,7,0,100,11,0,100,18,0,100, + 13,0,100,14,0,132,0,1,90,8,0,100,15,0,100,16, + 0,132,0,0,90,9,0,100,17,0,83,41,19,218,12,83, + 111,117,114,99,101,76,111,97,100,101,114,99,2,0,0,0, + 0,0,0,0,2,0,0,0,1,0,0,0,67,0,0,0, + 115,10,0,0,0,116,0,0,130,1,0,100,1,0,83,41, + 2,122,178,79,112,116,105,111,110,97,108,32,109,101,116,104, + 111,100,32,116,104,97,116,32,114,101,116,117,114,110,115,32, + 116,104,101,32,109,111,100,105,102,105,99,97,116,105,111,110, + 32,116,105,109,101,32,40,97,110,32,105,110,116,41,32,102, + 111,114,32,116,104,101,10,32,32,32,32,32,32,32,32,115, + 112,101,99,105,102,105,101,100,32,112,97,116,104,44,32,119, + 104,101,114,101,32,112,97,116,104,32,105,115,32,97,32,115, + 116,114,46,10,10,32,32,32,32,32,32,32,32,82,97,105, + 115,101,115,32,73,79,69,114,114,111,114,32,119,104,101,110, + 32,116,104,101,32,112,97,116,104,32,99,97,110,110,111,116, + 32,98,101,32,104,97,110,100,108,101,100,46,10,32,32,32, + 32,32,32,32,32,78,41,1,218,7,73,79,69,114,114,111, + 114,41,2,114,108,0,0,0,114,35,0,0,0,114,4,0, + 0,0,114,4,0,0,0,114,5,0,0,0,218,10,112,97, + 116,104,95,109,116,105,109,101,190,2,0,0,115,2,0,0, + 0,0,6,122,23,83,111,117,114,99,101,76,111,97,100,101, + 114,46,112,97,116,104,95,109,116,105,109,101,99,2,0,0, + 0,0,0,0,0,2,0,0,0,3,0,0,0,67,0,0, + 0,115,20,0,0,0,105,1,0,124,0,0,106,0,0,124, + 1,0,131,1,0,100,1,0,54,83,41,2,97,170,1,0, + 0,79,112,116,105,111,110,97,108,32,109,101,116,104,111,100, + 32,114,101,116,117,114,110,105,110,103,32,97,32,109,101,116, + 97,100,97,116,97,32,100,105,99,116,32,102,111,114,32,116, + 104,101,32,115,112,101,99,105,102,105,101,100,32,112,97,116, + 104,10,32,32,32,32,32,32,32,32,116,111,32,98,121,32, + 116,104,101,32,112,97,116,104,32,40,115,116,114,41,46,10, + 32,32,32,32,32,32,32,32,80,111,115,115,105,98,108,101, + 32,107,101,121,115,58,10,32,32,32,32,32,32,32,32,45, + 32,39,109,116,105,109,101,39,32,40,109,97,110,100,97,116, + 111,114,121,41,32,105,115,32,116,104,101,32,110,117,109,101, + 114,105,99,32,116,105,109,101,115,116,97,109,112,32,111,102, + 32,108,97,115,116,32,115,111,117,114,99,101,10,32,32,32, + 32,32,32,32,32,32,32,99,111,100,101,32,109,111,100,105, + 102,105,99,97,116,105,111,110,59,10,32,32,32,32,32,32, + 32,32,45,32,39,115,105,122,101,39,32,40,111,112,116,105, + 111,110,97,108,41,32,105,115,32,116,104,101,32,115,105,122, + 101,32,105,110,32,98,121,116,101,115,32,111,102,32,116,104, + 101,32,115,111,117,114,99,101,32,99,111,100,101,46,10,10, + 32,32,32,32,32,32,32,32,73,109,112,108,101,109,101,110, + 116,105,110,103,32,116,104,105,115,32,109,101,116,104,111,100, + 32,97,108,108,111,119,115,32,116,104,101,32,108,111,97,100, + 101,114,32,116,111,32,114,101,97,100,32,98,121,116,101,99, + 111,100,101,32,102,105,108,101,115,46,10,32,32,32,32,32, + 32,32,32,82,97,105,115,101,115,32,73,79,69,114,114,111, + 114,32,119,104,101,110,32,116,104,101,32,112,97,116,104,32, + 99,97,110,110,111,116,32,98,101,32,104,97,110,100,108,101, + 100,46,10,32,32,32,32,32,32,32,32,114,138,0,0,0, + 41,1,114,197,0,0,0,41,2,114,108,0,0,0,114,35, + 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, + 0,0,218,10,112,97,116,104,95,115,116,97,116,115,198,2, + 0,0,115,2,0,0,0,0,11,122,23,83,111,117,114,99, + 101,76,111,97,100,101,114,46,112,97,116,104,95,115,116,97, + 116,115,99,4,0,0,0,0,0,0,0,4,0,0,0,3, + 0,0,0,67,0,0,0,115,16,0,0,0,124,0,0,106, + 0,0,124,2,0,124,3,0,131,2,0,83,41,1,122,228, + 79,112,116,105,111,110,97,108,32,109,101,116,104,111,100,32, + 119,104,105,99,104,32,119,114,105,116,101,115,32,100,97,116, + 97,32,40,98,121,116,101,115,41,32,116,111,32,97,32,102, + 105,108,101,32,112,97,116,104,32,40,97,32,115,116,114,41, + 46,10,10,32,32,32,32,32,32,32,32,73,109,112,108,101, + 109,101,110,116,105,110,103,32,116,104,105,115,32,109,101,116, + 104,111,100,32,97,108,108,111,119,115,32,102,111,114,32,116, + 104,101,32,119,114,105,116,105,110,103,32,111,102,32,98,121, + 116,101,99,111,100,101,32,102,105,108,101,115,46,10,10,32, + 32,32,32,32,32,32,32,84,104,101,32,115,111,117,114,99, + 101,32,112,97,116,104,32,105,115,32,110,101,101,100,101,100, + 32,105,110,32,111,114,100,101,114,32,116,111,32,99,111,114, + 114,101,99,116,108,121,32,116,114,97,110,115,102,101,114,32, + 112,101,114,109,105,115,115,105,111,110,115,10,32,32,32,32, + 32,32,32,32,41,1,218,8,115,101,116,95,100,97,116,97, + 41,4,114,108,0,0,0,114,90,0,0,0,90,10,99,97, + 99,104,101,95,112,97,116,104,114,53,0,0,0,114,4,0, + 0,0,114,4,0,0,0,114,5,0,0,0,218,15,95,99, + 97,99,104,101,95,98,121,116,101,99,111,100,101,211,2,0, + 0,115,2,0,0,0,0,8,122,28,83,111,117,114,99,101, + 76,111,97,100,101,114,46,95,99,97,99,104,101,95,98,121, + 116,101,99,111,100,101,99,3,0,0,0,0,0,0,0,3, + 0,0,0,1,0,0,0,67,0,0,0,115,4,0,0,0, + 100,1,0,83,41,2,122,150,79,112,116,105,111,110,97,108, + 32,109,101,116,104,111,100,32,119,104,105,99,104,32,119,114, + 105,116,101,115,32,100,97,116,97,32,40,98,121,116,101,115, + 41,32,116,111,32,97,32,102,105,108,101,32,112,97,116,104, + 32,40,97,32,115,116,114,41,46,10,10,32,32,32,32,32, + 32,32,32,73,109,112,108,101,109,101,110,116,105,110,103,32, + 116,104,105,115,32,109,101,116,104,111,100,32,97,108,108,111, + 119,115,32,102,111,114,32,116,104,101,32,119,114,105,116,105, + 110,103,32,111,102,32,98,121,116,101,99,111,100,101,32,102, + 105,108,101,115,46,10,32,32,32,32,32,32,32,32,78,114, + 4,0,0,0,41,3,114,108,0,0,0,114,35,0,0,0, + 114,53,0,0,0,114,4,0,0,0,114,4,0,0,0,114, + 5,0,0,0,114,199,0,0,0,221,2,0,0,115,0,0, + 0,0,122,21,83,111,117,114,99,101,76,111,97,100,101,114, + 46,115,101,116,95,100,97,116,97,99,2,0,0,0,0,0, + 0,0,5,0,0,0,16,0,0,0,67,0,0,0,115,105, + 0,0,0,124,0,0,106,0,0,124,1,0,131,1,0,125, + 2,0,121,19,0,124,0,0,106,1,0,124,2,0,131,1, + 0,125,3,0,87,110,58,0,4,116,2,0,107,10,0,114, + 94,0,1,125,4,0,1,122,26,0,116,3,0,100,1,0, + 100,2,0,124,1,0,131,1,1,124,4,0,130,2,0,87, + 89,100,3,0,100,3,0,125,4,0,126,4,0,88,110,1, + 0,88,116,4,0,124,3,0,131,1,0,83,41,4,122,52, + 67,111,110,99,114,101,116,101,32,105,109,112,108,101,109,101, + 110,116,97,116,105,111,110,32,111,102,32,73,110,115,112,101, + 99,116,76,111,97,100,101,114,46,103,101,116,95,115,111,117, + 114,99,101,46,122,39,115,111,117,114,99,101,32,110,111,116, + 32,97,118,97,105,108,97,98,108,101,32,116,104,114,111,117, + 103,104,32,103,101,116,95,100,97,116,97,40,41,114,106,0, + 0,0,78,41,5,114,163,0,0,0,218,8,103,101,116,95, + 100,97,116,97,114,40,0,0,0,114,107,0,0,0,114,160, + 0,0,0,41,5,114,108,0,0,0,114,126,0,0,0,114, + 35,0,0,0,114,158,0,0,0,218,3,101,120,99,114,4, + 0,0,0,114,4,0,0,0,114,5,0,0,0,218,10,103, + 101,116,95,115,111,117,114,99,101,228,2,0,0,115,14,0, + 0,0,0,2,15,1,3,1,19,1,18,1,9,1,31,1, + 122,23,83,111,117,114,99,101,76,111,97,100,101,114,46,103, + 101,116,95,115,111,117,114,99,101,218,9,95,111,112,116,105, + 109,105,122,101,114,29,0,0,0,99,3,0,0,0,1,0, + 0,0,4,0,0,0,9,0,0,0,67,0,0,0,115,34, + 0,0,0,116,0,0,106,1,0,116,2,0,124,1,0,124, + 2,0,100,1,0,100,2,0,100,3,0,100,4,0,124,3, + 0,131,4,2,83,41,5,122,130,82,101,116,117,114,110,32, + 116,104,101,32,99,111,100,101,32,111,98,106,101,99,116,32, + 99,111,109,112,105,108,101,100,32,102,114,111,109,32,115,111, + 117,114,99,101,46,10,10,32,32,32,32,32,32,32,32,84, + 104,101,32,39,100,97,116,97,39,32,97,114,103,117,109,101, + 110,116,32,99,97,110,32,98,101,32,97,110,121,32,111,98, + 106,101,99,116,32,116,121,112,101,32,116,104,97,116,32,99, + 111,109,112,105,108,101,40,41,32,115,117,112,112,111,114,116, + 115,46,10,32,32,32,32,32,32,32,32,114,192,0,0,0, + 218,12,100,111,110,116,95,105,110,104,101,114,105,116,84,114, + 68,0,0,0,41,3,114,121,0,0,0,114,191,0,0,0, + 218,7,99,111,109,112,105,108,101,41,4,114,108,0,0,0, + 114,53,0,0,0,114,35,0,0,0,114,204,0,0,0,114, + 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,14, + 115,111,117,114,99,101,95,116,111,95,99,111,100,101,238,2, + 0,0,115,4,0,0,0,0,5,21,1,122,27,83,111,117, + 114,99,101,76,111,97,100,101,114,46,115,111,117,114,99,101, + 95,116,111,95,99,111,100,101,99,2,0,0,0,0,0,0, + 0,10,0,0,0,43,0,0,0,67,0,0,0,115,174,1, + 0,0,124,0,0,106,0,0,124,1,0,131,1,0,125,2, + 0,100,1,0,125,3,0,121,16,0,116,1,0,124,2,0, + 131,1,0,125,4,0,87,110,24,0,4,116,2,0,107,10, + 0,114,63,0,1,1,1,100,1,0,125,4,0,89,110,202, + 0,88,121,19,0,124,0,0,106,3,0,124,2,0,131,1, + 0,125,5,0,87,110,18,0,4,116,4,0,107,10,0,114, + 103,0,1,1,1,89,110,162,0,88,116,5,0,124,5,0, + 100,2,0,25,131,1,0,125,3,0,121,19,0,124,0,0, + 106,6,0,124,4,0,131,1,0,125,6,0,87,110,18,0, + 4,116,7,0,107,10,0,114,159,0,1,1,1,89,110,106, + 0,88,121,34,0,116,8,0,124,6,0,100,3,0,124,5, + 0,100,4,0,124,1,0,100,5,0,124,4,0,131,1,3, + 125,7,0,87,110,24,0,4,116,9,0,116,10,0,102,2, + 0,107,10,0,114,220,0,1,1,1,89,110,45,0,88,116, + 11,0,100,6,0,124,4,0,124,2,0,131,3,0,1,116, + 12,0,124,7,0,100,4,0,124,1,0,100,7,0,124,4, + 0,100,8,0,124,2,0,131,1,3,83,124,0,0,106,6, + 0,124,2,0,131,1,0,125,8,0,124,0,0,106,13,0, + 124,8,0,124,2,0,131,2,0,125,9,0,116,11,0,100, + 9,0,124,2,0,131,2,0,1,116,14,0,106,15,0,12, + 114,170,1,124,4,0,100,1,0,107,9,0,114,170,1,124, + 3,0,100,1,0,107,9,0,114,170,1,116,16,0,124,9, + 0,124,3,0,116,17,0,124,8,0,131,1,0,131,3,0, + 125,6,0,121,36,0,124,0,0,106,18,0,124,2,0,124, + 4,0,124,6,0,131,3,0,1,116,11,0,100,10,0,124, + 4,0,131,2,0,1,87,110,18,0,4,116,2,0,107,10, + 0,114,169,1,1,1,1,89,110,1,0,88,124,9,0,83, + 41,11,122,190,67,111,110,99,114,101,116,101,32,105,109,112, + 108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,73, + 110,115,112,101,99,116,76,111,97,100,101,114,46,103,101,116, + 95,99,111,100,101,46,10,10,32,32,32,32,32,32,32,32, + 82,101,97,100,105,110,103,32,111,102,32,98,121,116,101,99, + 111,100,101,32,114,101,113,117,105,114,101,115,32,112,97,116, + 104,95,115,116,97,116,115,32,116,111,32,98,101,32,105,109, + 112,108,101,109,101,110,116,101,100,46,32,84,111,32,119,114, + 105,116,101,10,32,32,32,32,32,32,32,32,98,121,116,101, + 99,111,100,101,44,32,115,101,116,95,100,97,116,97,32,109, + 117,115,116,32,97,108,115,111,32,98,101,32,105,109,112,108, + 101,109,101,110,116,101,100,46,10,10,32,32,32,32,32,32, + 32,32,78,114,138,0,0,0,114,143,0,0,0,114,106,0, + 0,0,114,35,0,0,0,122,13,123,125,32,109,97,116,99, + 104,101,115,32,123,125,114,89,0,0,0,114,90,0,0,0, + 122,19,99,111,100,101,32,111,98,106,101,99,116,32,102,114, + 111,109,32,123,125,122,10,119,114,111,116,101,32,123,33,114, + 125,41,19,114,163,0,0,0,114,79,0,0,0,114,66,0, + 0,0,114,198,0,0,0,114,196,0,0,0,114,14,0,0, + 0,114,201,0,0,0,114,40,0,0,0,114,146,0,0,0, + 114,107,0,0,0,114,141,0,0,0,114,105,0,0,0,114, + 152,0,0,0,114,207,0,0,0,114,7,0,0,0,218,19, + 100,111,110,116,95,119,114,105,116,101,95,98,121,116,101,99, + 111,100,101,114,155,0,0,0,114,31,0,0,0,114,200,0, + 0,0,41,10,114,108,0,0,0,114,126,0,0,0,114,90, + 0,0,0,114,144,0,0,0,114,89,0,0,0,218,2,115, + 116,114,53,0,0,0,218,10,98,121,116,101,115,95,100,97, + 116,97,114,158,0,0,0,90,11,99,111,100,101,95,111,98, + 106,101,99,116,114,4,0,0,0,114,4,0,0,0,114,5, + 0,0,0,114,190,0,0,0,246,2,0,0,115,78,0,0, + 0,0,7,15,1,6,1,3,1,16,1,13,1,11,2,3, + 1,19,1,13,1,5,2,16,1,3,1,19,1,13,1,5, + 2,3,1,9,1,12,1,13,1,19,1,5,2,9,1,7, + 1,15,1,6,1,7,1,15,1,18,1,13,1,22,1,12, + 1,9,1,15,1,3,1,19,1,17,1,13,1,5,1,122, + 21,83,111,117,114,99,101,76,111,97,100,101,114,46,103,101, + 116,95,99,111,100,101,78,114,87,0,0,0,41,10,114,112, + 0,0,0,114,111,0,0,0,114,113,0,0,0,114,197,0, + 0,0,114,198,0,0,0,114,200,0,0,0,114,199,0,0, + 0,114,203,0,0,0,114,207,0,0,0,114,190,0,0,0, + 114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,114, + 5,0,0,0,114,195,0,0,0,188,2,0,0,115,14,0, + 0,0,12,2,12,8,12,13,12,10,12,7,12,10,18,8, + 114,195,0,0,0,99,0,0,0,0,0,0,0,0,0,0, + 0,0,4,0,0,0,0,0,0,0,115,112,0,0,0,101, + 0,0,90,1,0,100,0,0,90,2,0,100,1,0,90,3, + 0,100,2,0,100,3,0,132,0,0,90,4,0,100,4,0, + 100,5,0,132,0,0,90,5,0,100,6,0,100,7,0,132, + 0,0,90,6,0,101,7,0,135,0,0,102,1,0,100,8, + 0,100,9,0,134,0,0,131,1,0,90,8,0,101,7,0, + 100,10,0,100,11,0,132,0,0,131,1,0,90,9,0,100, + 12,0,100,13,0,132,0,0,90,10,0,135,0,0,83,41, + 14,218,10,70,105,108,101,76,111,97,100,101,114,122,103,66, + 97,115,101,32,102,105,108,101,32,108,111,97,100,101,114,32, + 99,108,97,115,115,32,119,104,105,99,104,32,105,109,112,108, + 101,109,101,110,116,115,32,116,104,101,32,108,111,97,100,101, + 114,32,112,114,111,116,111,99,111,108,32,109,101,116,104,111, + 100,115,32,116,104,97,116,10,32,32,32,32,114,101,113,117, + 105,114,101,32,102,105,108,101,32,115,121,115,116,101,109,32, + 117,115,97,103,101,46,99,3,0,0,0,0,0,0,0,3, + 0,0,0,2,0,0,0,67,0,0,0,115,22,0,0,0, + 124,1,0,124,0,0,95,0,0,124,2,0,124,0,0,95, + 1,0,100,1,0,83,41,2,122,75,67,97,99,104,101,32, + 116,104,101,32,109,111,100,117,108,101,32,110,97,109,101,32, + 97,110,100,32,116,104,101,32,112,97,116,104,32,116,111,32, + 116,104,101,32,102,105,108,101,32,102,111,117,110,100,32,98, + 121,32,116,104,101,10,32,32,32,32,32,32,32,32,102,105, + 110,100,101,114,46,78,41,2,114,106,0,0,0,114,35,0, + 0,0,41,3,114,108,0,0,0,114,126,0,0,0,114,35, + 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, + 0,0,114,188,0,0,0,47,3,0,0,115,4,0,0,0, + 0,3,9,1,122,19,70,105,108,101,76,111,97,100,101,114, + 46,95,95,105,110,105,116,95,95,99,2,0,0,0,0,0, + 0,0,2,0,0,0,2,0,0,0,67,0,0,0,115,34, + 0,0,0,124,0,0,106,0,0,124,1,0,106,0,0,107, + 2,0,111,33,0,124,0,0,106,1,0,124,1,0,106,1, + 0,107,2,0,83,41,1,78,41,2,218,9,95,95,99,108, + 97,115,115,95,95,114,118,0,0,0,41,2,114,108,0,0, + 0,218,5,111,116,104,101,114,114,4,0,0,0,114,4,0, + 0,0,114,5,0,0,0,218,6,95,95,101,113,95,95,53, + 3,0,0,115,4,0,0,0,0,1,18,1,122,17,70,105, + 108,101,76,111,97,100,101,114,46,95,95,101,113,95,95,99, + 1,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0, + 67,0,0,0,115,26,0,0,0,116,0,0,124,0,0,106, + 1,0,131,1,0,116,0,0,124,0,0,106,2,0,131,1, + 0,65,83,41,1,78,41,3,218,4,104,97,115,104,114,106, + 0,0,0,114,35,0,0,0,41,1,114,108,0,0,0,114, + 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,8, + 95,95,104,97,115,104,95,95,57,3,0,0,115,2,0,0, + 0,0,1,122,19,70,105,108,101,76,111,97,100,101,114,46, + 95,95,104,97,115,104,95,95,99,2,0,0,0,0,0,0, + 0,2,0,0,0,3,0,0,0,3,0,0,0,115,22,0, + 0,0,116,0,0,116,1,0,124,0,0,131,2,0,106,2, + 0,124,1,0,131,1,0,83,41,1,122,100,76,111,97,100, + 32,97,32,109,111,100,117,108,101,32,102,114,111,109,32,97, + 32,102,105,108,101,46,10,10,32,32,32,32,32,32,32,32, + 84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,100, + 101,112,114,101,99,97,116,101,100,46,32,32,85,115,101,32, + 101,120,101,99,95,109,111,100,117,108,101,40,41,32,105,110, + 115,116,101,97,100,46,10,10,32,32,32,32,32,32,32,32, + 41,3,218,5,115,117,112,101,114,114,211,0,0,0,114,194, + 0,0,0,41,2,114,108,0,0,0,114,126,0,0,0,41, + 1,114,212,0,0,0,114,4,0,0,0,114,5,0,0,0, + 114,194,0,0,0,60,3,0,0,115,2,0,0,0,0,10, + 122,22,70,105,108,101,76,111,97,100,101,114,46,108,111,97, + 100,95,109,111,100,117,108,101,99,2,0,0,0,0,0,0, + 0,2,0,0,0,1,0,0,0,67,0,0,0,115,7,0, + 0,0,124,0,0,106,0,0,83,41,1,122,58,82,101,116, + 117,114,110,32,116,104,101,32,112,97,116,104,32,116,111,32, + 116,104,101,32,115,111,117,114,99,101,32,102,105,108,101,32, + 97,115,32,102,111,117,110,100,32,98,121,32,116,104,101,32, + 102,105,110,100,101,114,46,41,1,114,35,0,0,0,41,2, + 114,108,0,0,0,114,126,0,0,0,114,4,0,0,0,114, + 4,0,0,0,114,5,0,0,0,114,163,0,0,0,72,3, + 0,0,115,2,0,0,0,0,3,122,23,70,105,108,101,76, + 111,97,100,101,114,46,103,101,116,95,102,105,108,101,110,97, + 109,101,99,2,0,0,0,0,0,0,0,3,0,0,0,8, + 0,0,0,67,0,0,0,115,41,0,0,0,116,0,0,106, + 1,0,124,1,0,100,1,0,131,2,0,143,17,0,125,2, + 0,124,2,0,106,2,0,131,0,0,83,87,100,2,0,81, + 88,100,2,0,83,41,3,122,39,82,101,116,117,114,110,32, + 116,104,101,32,100,97,116,97,32,102,114,111,109,32,112,97, + 116,104,32,97,115,32,114,97,119,32,98,121,116,101,115,46, + 218,1,114,78,41,3,114,49,0,0,0,114,50,0,0,0, + 90,4,114,101,97,100,41,3,114,108,0,0,0,114,35,0, + 0,0,114,54,0,0,0,114,4,0,0,0,114,4,0,0, + 0,114,5,0,0,0,114,201,0,0,0,77,3,0,0,115, + 4,0,0,0,0,2,21,1,122,19,70,105,108,101,76,111, + 97,100,101,114,46,103,101,116,95,100,97,116,97,41,11,114, + 112,0,0,0,114,111,0,0,0,114,113,0,0,0,114,114, + 0,0,0,114,188,0,0,0,114,214,0,0,0,114,216,0, + 0,0,114,123,0,0,0,114,194,0,0,0,114,163,0,0, + 0,114,201,0,0,0,114,4,0,0,0,114,4,0,0,0, + 41,1,114,212,0,0,0,114,5,0,0,0,114,211,0,0, + 0,42,3,0,0,115,14,0,0,0,12,3,6,2,12,6, + 12,4,12,3,24,12,18,5,114,211,0,0,0,99,0,0, + 0,0,0,0,0,0,0,0,0,0,4,0,0,0,64,0, + 0,0,115,64,0,0,0,101,0,0,90,1,0,100,0,0, + 90,2,0,100,1,0,90,3,0,100,2,0,100,3,0,132, + 0,0,90,4,0,100,4,0,100,5,0,132,0,0,90,5, + 0,100,6,0,100,7,0,100,8,0,100,9,0,132,0,1, + 90,6,0,100,10,0,83,41,11,218,16,83,111,117,114,99, + 101,70,105,108,101,76,111,97,100,101,114,122,62,67,111,110, + 99,114,101,116,101,32,105,109,112,108,101,109,101,110,116,97, + 116,105,111,110,32,111,102,32,83,111,117,114,99,101,76,111, + 97,100,101,114,32,117,115,105,110,103,32,116,104,101,32,102, + 105,108,101,32,115,121,115,116,101,109,46,99,2,0,0,0, + 0,0,0,0,3,0,0,0,3,0,0,0,67,0,0,0, + 115,36,0,0,0,116,0,0,124,1,0,131,1,0,125,2, + 0,105,2,0,124,2,0,106,1,0,100,1,0,54,124,2, + 0,106,2,0,100,2,0,54,83,41,3,122,33,82,101,116, + 117,114,110,32,116,104,101,32,109,101,116,97,100,97,116,97, + 32,102,111,114,32,116,104,101,32,112,97,116,104,46,114,138, + 0,0,0,114,139,0,0,0,41,3,114,39,0,0,0,218, + 8,115,116,95,109,116,105,109,101,90,7,115,116,95,115,105, + 122,101,41,3,114,108,0,0,0,114,35,0,0,0,114,209, + 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, + 0,0,114,198,0,0,0,87,3,0,0,115,4,0,0,0, + 0,2,12,1,122,27,83,111,117,114,99,101,70,105,108,101, + 76,111,97,100,101,114,46,112,97,116,104,95,115,116,97,116, + 115,99,4,0,0,0,0,0,0,0,5,0,0,0,5,0, + 0,0,67,0,0,0,115,34,0,0,0,116,0,0,124,1, + 0,131,1,0,125,4,0,124,0,0,106,1,0,124,2,0, + 124,3,0,100,1,0,124,4,0,131,2,1,83,41,2,78, + 218,5,95,109,111,100,101,41,2,114,97,0,0,0,114,199, + 0,0,0,41,5,114,108,0,0,0,114,90,0,0,0,114, + 89,0,0,0,114,53,0,0,0,114,42,0,0,0,114,4, + 0,0,0,114,4,0,0,0,114,5,0,0,0,114,200,0, + 0,0,92,3,0,0,115,4,0,0,0,0,2,12,1,122, + 32,83,111,117,114,99,101,70,105,108,101,76,111,97,100,101, + 114,46,95,99,97,99,104,101,95,98,121,116,101,99,111,100, + 101,114,221,0,0,0,105,182,1,0,0,99,3,0,0,0, + 1,0,0,0,9,0,0,0,17,0,0,0,67,0,0,0, + 115,53,1,0,0,116,0,0,124,1,0,131,1,0,92,2, + 0,125,4,0,125,5,0,103,0,0,125,6,0,120,54,0, + 124,4,0,114,80,0,116,1,0,124,4,0,131,1,0,12, + 114,80,0,116,0,0,124,4,0,131,1,0,92,2,0,125, + 4,0,125,7,0,124,6,0,106,2,0,124,7,0,131,1, + 0,1,113,27,0,87,120,132,0,116,3,0,124,6,0,131, + 1,0,68,93,118,0,125,7,0,116,4,0,124,4,0,124, + 7,0,131,2,0,125,4,0,121,17,0,116,5,0,106,6, + 0,124,4,0,131,1,0,1,87,113,94,0,4,116,7,0, + 107,10,0,114,155,0,1,1,1,119,94,0,89,113,94,0, + 4,116,8,0,107,10,0,114,211,0,1,125,8,0,1,122, + 25,0,116,9,0,100,1,0,124,4,0,124,8,0,131,3, + 0,1,100,2,0,83,87,89,100,2,0,100,2,0,125,8, + 0,126,8,0,88,113,94,0,88,113,94,0,87,121,33,0, + 116,10,0,124,1,0,124,2,0,124,3,0,131,3,0,1, + 116,9,0,100,3,0,124,1,0,131,2,0,1,87,110,53, + 0,4,116,8,0,107,10,0,114,48,1,1,125,8,0,1, + 122,21,0,116,9,0,100,1,0,124,1,0,124,8,0,131, + 3,0,1,87,89,100,2,0,100,2,0,125,8,0,126,8, + 0,88,110,1,0,88,100,2,0,83,41,4,122,27,87,114, + 105,116,101,32,98,121,116,101,115,32,100,97,116,97,32,116, + 111,32,97,32,102,105,108,101,46,122,27,99,111,117,108,100, + 32,110,111,116,32,99,114,101,97,116,101,32,123,33,114,125, + 58,32,123,33,114,125,78,122,12,99,114,101,97,116,101,100, + 32,123,33,114,125,41,11,114,38,0,0,0,114,46,0,0, + 0,114,169,0,0,0,114,33,0,0,0,114,28,0,0,0, + 114,3,0,0,0,90,5,109,107,100,105,114,218,15,70,105, + 108,101,69,120,105,115,116,115,69,114,114,111,114,114,40,0, + 0,0,114,105,0,0,0,114,55,0,0,0,41,9,114,108, + 0,0,0,114,35,0,0,0,114,53,0,0,0,114,221,0, + 0,0,218,6,112,97,114,101,110,116,114,94,0,0,0,114, + 27,0,0,0,114,23,0,0,0,114,202,0,0,0,114,4, + 0,0,0,114,4,0,0,0,114,5,0,0,0,114,199,0, + 0,0,97,3,0,0,115,38,0,0,0,0,2,18,1,6, + 2,22,1,18,1,17,2,19,1,15,1,3,1,17,1,13, + 2,7,1,18,3,16,1,27,1,3,1,16,1,17,1,18, + 2,122,25,83,111,117,114,99,101,70,105,108,101,76,111,97, + 100,101,114,46,115,101,116,95,100,97,116,97,78,41,7,114, + 112,0,0,0,114,111,0,0,0,114,113,0,0,0,114,114, + 0,0,0,114,198,0,0,0,114,200,0,0,0,114,199,0, + 0,0,114,4,0,0,0,114,4,0,0,0,114,4,0,0, + 0,114,5,0,0,0,114,219,0,0,0,83,3,0,0,115, + 8,0,0,0,12,2,6,2,12,5,12,5,114,219,0,0, + 0,99,0,0,0,0,0,0,0,0,0,0,0,0,2,0, + 0,0,64,0,0,0,115,46,0,0,0,101,0,0,90,1, + 0,100,0,0,90,2,0,100,1,0,90,3,0,100,2,0, + 100,3,0,132,0,0,90,4,0,100,4,0,100,5,0,132, + 0,0,90,5,0,100,6,0,83,41,7,218,20,83,111,117, + 114,99,101,108,101,115,115,70,105,108,101,76,111,97,100,101, + 114,122,45,76,111,97,100,101,114,32,119,104,105,99,104,32, + 104,97,110,100,108,101,115,32,115,111,117,114,99,101,108,101, + 115,115,32,102,105,108,101,32,105,109,112,111,114,116,115,46, + 99,2,0,0,0,0,0,0,0,5,0,0,0,6,0,0, + 0,67,0,0,0,115,76,0,0,0,124,0,0,106,0,0, + 124,1,0,131,1,0,125,2,0,124,0,0,106,1,0,124, + 2,0,131,1,0,125,3,0,116,2,0,124,3,0,100,1, + 0,124,1,0,100,2,0,124,2,0,131,1,2,125,4,0, + 116,3,0,124,4,0,100,1,0,124,1,0,100,3,0,124, + 2,0,131,1,2,83,41,4,78,114,106,0,0,0,114,35, + 0,0,0,114,89,0,0,0,41,4,114,163,0,0,0,114, + 201,0,0,0,114,146,0,0,0,114,152,0,0,0,41,5, + 114,108,0,0,0,114,126,0,0,0,114,35,0,0,0,114, + 53,0,0,0,114,210,0,0,0,114,4,0,0,0,114,4, + 0,0,0,114,5,0,0,0,114,190,0,0,0,130,3,0, + 0,115,8,0,0,0,0,1,15,1,15,1,24,1,122,29, + 83,111,117,114,99,101,108,101,115,115,70,105,108,101,76,111, + 97,100,101,114,46,103,101,116,95,99,111,100,101,99,2,0, + 0,0,0,0,0,0,2,0,0,0,1,0,0,0,67,0, + 0,0,115,4,0,0,0,100,1,0,83,41,2,122,39,82, + 101,116,117,114,110,32,78,111,110,101,32,97,115,32,116,104, + 101,114,101,32,105,115,32,110,111,32,115,111,117,114,99,101, + 32,99,111,100,101,46,78,114,4,0,0,0,41,2,114,108, + 0,0,0,114,126,0,0,0,114,4,0,0,0,114,4,0, + 0,0,114,5,0,0,0,114,203,0,0,0,136,3,0,0, + 115,2,0,0,0,0,2,122,31,83,111,117,114,99,101,108, + 101,115,115,70,105,108,101,76,111,97,100,101,114,46,103,101, + 116,95,115,111,117,114,99,101,78,41,6,114,112,0,0,0, + 114,111,0,0,0,114,113,0,0,0,114,114,0,0,0,114, + 190,0,0,0,114,203,0,0,0,114,4,0,0,0,114,4, + 0,0,0,114,4,0,0,0,114,5,0,0,0,114,224,0, + 0,0,126,3,0,0,115,6,0,0,0,12,2,6,2,12, + 6,114,224,0,0,0,99,0,0,0,0,0,0,0,0,0, + 0,0,0,3,0,0,0,64,0,0,0,115,130,0,0,0, + 101,0,0,90,1,0,100,0,0,90,2,0,100,1,0,90, + 3,0,100,2,0,100,3,0,132,0,0,90,4,0,100,4, + 0,100,5,0,132,0,0,90,5,0,100,6,0,100,7,0, + 132,0,0,90,6,0,101,7,0,100,8,0,100,9,0,132, + 0,0,131,1,0,90,8,0,100,10,0,100,11,0,132,0, + 0,90,9,0,100,12,0,100,13,0,132,0,0,90,10,0, + 100,14,0,100,15,0,132,0,0,90,11,0,101,7,0,100, + 16,0,100,17,0,132,0,0,131,1,0,90,12,0,100,18, + 0,83,41,19,218,19,69,120,116,101,110,115,105,111,110,70, + 105,108,101,76,111,97,100,101,114,122,93,76,111,97,100,101, + 114,32,102,111,114,32,101,120,116,101,110,115,105,111,110,32, + 109,111,100,117,108,101,115,46,10,10,32,32,32,32,84,104, + 101,32,99,111,110,115,116,114,117,99,116,111,114,32,105,115, + 32,100,101,115,105,103,110,101,100,32,116,111,32,119,111,114, + 107,32,119,105,116,104,32,70,105,108,101,70,105,110,100,101, + 114,46,10,10,32,32,32,32,99,3,0,0,0,0,0,0, + 0,3,0,0,0,2,0,0,0,67,0,0,0,115,22,0, + 0,0,124,1,0,124,0,0,95,0,0,124,2,0,124,0, + 0,95,1,0,100,0,0,83,41,1,78,41,2,114,106,0, + 0,0,114,35,0,0,0,41,3,114,108,0,0,0,114,106, + 0,0,0,114,35,0,0,0,114,4,0,0,0,114,4,0, + 0,0,114,5,0,0,0,114,188,0,0,0,153,3,0,0, + 115,4,0,0,0,0,1,9,1,122,28,69,120,116,101,110, + 115,105,111,110,70,105,108,101,76,111,97,100,101,114,46,95, + 95,105,110,105,116,95,95,99,2,0,0,0,0,0,0,0, + 2,0,0,0,2,0,0,0,67,0,0,0,115,34,0,0, + 0,124,0,0,106,0,0,124,1,0,106,0,0,107,2,0, + 111,33,0,124,0,0,106,1,0,124,1,0,106,1,0,107, + 2,0,83,41,1,78,41,2,114,212,0,0,0,114,118,0, + 0,0,41,2,114,108,0,0,0,114,213,0,0,0,114,4, + 0,0,0,114,4,0,0,0,114,5,0,0,0,114,214,0, + 0,0,157,3,0,0,115,4,0,0,0,0,1,18,1,122, + 26,69,120,116,101,110,115,105,111,110,70,105,108,101,76,111, + 97,100,101,114,46,95,95,101,113,95,95,99,1,0,0,0, + 0,0,0,0,1,0,0,0,3,0,0,0,67,0,0,0, + 115,26,0,0,0,116,0,0,124,0,0,106,1,0,131,1, + 0,116,0,0,124,0,0,106,2,0,131,1,0,65,83,41, + 1,78,41,3,114,215,0,0,0,114,106,0,0,0,114,35, + 0,0,0,41,1,114,108,0,0,0,114,4,0,0,0,114, + 4,0,0,0,114,5,0,0,0,114,216,0,0,0,161,3, + 0,0,115,2,0,0,0,0,1,122,28,69,120,116,101,110, + 115,105,111,110,70,105,108,101,76,111,97,100,101,114,46,95, + 95,104,97,115,104,95,95,99,2,0,0,0,0,0,0,0, + 4,0,0,0,11,0,0,0,67,0,0,0,115,183,0,0, + 0,116,0,0,106,1,0,124,1,0,131,1,0,143,32,0, + 1,116,0,0,106,2,0,116,3,0,106,4,0,124,1,0, + 124,0,0,106,5,0,131,3,0,125,2,0,87,100,1,0, + 81,88,116,6,0,100,2,0,124,0,0,106,5,0,131,2, + 0,1,124,0,0,106,7,0,124,1,0,131,1,0,125,3, + 0,124,3,0,114,127,0,116,8,0,124,2,0,100,3,0, + 131,2,0,12,114,127,0,116,9,0,124,0,0,106,5,0, + 131,1,0,100,4,0,25,103,1,0,124,2,0,95,10,0, + 124,0,0,124,2,0,95,11,0,124,2,0,106,12,0,124, + 2,0,95,13,0,124,3,0,115,179,0,124,2,0,106,13, + 0,106,14,0,100,5,0,131,1,0,100,4,0,25,124,2, + 0,95,13,0,124,2,0,83,41,6,122,25,76,111,97,100, + 32,97,110,32,101,120,116,101,110,115,105,111,110,32,109,111, + 100,117,108,101,46,78,122,33,101,120,116,101,110,115,105,111, + 110,32,109,111,100,117,108,101,32,108,111,97,100,101,100,32, + 102,114,111,109,32,123,33,114,125,218,8,95,95,112,97,116, + 104,95,95,114,59,0,0,0,114,58,0,0,0,41,15,114, + 121,0,0,0,90,13,95,77,97,110,97,103,101,82,101,108, + 111,97,100,114,191,0,0,0,114,150,0,0,0,90,12,108, + 111,97,100,95,100,121,110,97,109,105,99,114,35,0,0,0, + 114,105,0,0,0,114,162,0,0,0,114,115,0,0,0,114, + 38,0,0,0,114,226,0,0,0,218,10,95,95,108,111,97, + 100,101,114,95,95,114,112,0,0,0,218,11,95,95,112,97, + 99,107,97,103,101,95,95,114,32,0,0,0,41,4,114,108, + 0,0,0,114,126,0,0,0,114,134,0,0,0,114,162,0, + 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, + 0,114,194,0,0,0,164,3,0,0,115,24,0,0,0,0, + 5,16,1,12,1,21,1,16,1,15,1,22,1,25,1,9, + 1,12,1,6,1,25,1,122,31,69,120,116,101,110,115,105, + 111,110,70,105,108,101,76,111,97,100,101,114,46,108,111,97, + 100,95,109,111,100,117,108,101,99,2,0,0,0,0,0,0, + 0,2,0,0,0,4,0,0,0,3,0,0,0,115,48,0, + 0,0,116,0,0,124,0,0,106,1,0,131,1,0,100,1, + 0,25,137,0,0,116,2,0,135,0,0,102,1,0,100,2, + 0,100,3,0,134,0,0,116,3,0,68,131,1,0,131,1, + 0,83,41,4,122,49,82,101,116,117,114,110,32,84,114,117, + 101,32,105,102,32,116,104,101,32,101,120,116,101,110,115,105, + 111,110,32,109,111,100,117,108,101,32,105,115,32,97,32,112, + 97,99,107,97,103,101,46,114,29,0,0,0,99,1,0,0, + 0,0,0,0,0,2,0,0,0,4,0,0,0,51,0,0, + 0,115,31,0,0,0,124,0,0,93,21,0,125,1,0,136, + 0,0,100,0,0,124,1,0,23,107,2,0,86,1,113,3, + 0,100,1,0,83,41,2,114,188,0,0,0,78,114,4,0, + 0,0,41,2,114,22,0,0,0,218,6,115,117,102,102,105, + 120,41,1,218,9,102,105,108,101,95,110,97,109,101,114,4, + 0,0,0,114,5,0,0,0,250,9,60,103,101,110,101,120, + 112,114,62,185,3,0,0,115,2,0,0,0,6,1,122,49, + 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, + 100,101,114,46,105,115,95,112,97,99,107,97,103,101,46,60, + 108,111,99,97,108,115,62,46,60,103,101,110,101,120,112,114, + 62,41,4,114,38,0,0,0,114,35,0,0,0,218,3,97, + 110,121,218,18,69,88,84,69,78,83,73,79,78,95,83,85, + 70,70,73,88,69,83,41,2,114,108,0,0,0,114,126,0, + 0,0,114,4,0,0,0,41,1,114,230,0,0,0,114,5, + 0,0,0,114,162,0,0,0,182,3,0,0,115,6,0,0, + 0,0,2,19,1,18,1,122,30,69,120,116,101,110,115,105, + 111,110,70,105,108,101,76,111,97,100,101,114,46,105,115,95, + 112,97,99,107,97,103,101,99,2,0,0,0,0,0,0,0, + 2,0,0,0,1,0,0,0,67,0,0,0,115,4,0,0, + 0,100,1,0,83,41,2,122,63,82,101,116,117,114,110,32, + 78,111,110,101,32,97,115,32,97,110,32,101,120,116,101,110, + 115,105,111,110,32,109,111,100,117,108,101,32,99,97,110,110, + 111,116,32,99,114,101,97,116,101,32,97,32,99,111,100,101, + 32,111,98,106,101,99,116,46,78,114,4,0,0,0,41,2, + 114,108,0,0,0,114,126,0,0,0,114,4,0,0,0,114, + 4,0,0,0,114,5,0,0,0,114,190,0,0,0,188,3, + 0,0,115,2,0,0,0,0,2,122,28,69,120,116,101,110, + 115,105,111,110,70,105,108,101,76,111,97,100,101,114,46,103, + 101,116,95,99,111,100,101,99,2,0,0,0,0,0,0,0, + 2,0,0,0,1,0,0,0,67,0,0,0,115,4,0,0, + 0,100,1,0,83,41,2,122,53,82,101,116,117,114,110,32, + 78,111,110,101,32,97,115,32,101,120,116,101,110,115,105,111, + 110,32,109,111,100,117,108,101,115,32,104,97,118,101,32,110, + 111,32,115,111,117,114,99,101,32,99,111,100,101,46,78,114, + 4,0,0,0,41,2,114,108,0,0,0,114,126,0,0,0, + 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, + 203,0,0,0,192,3,0,0,115,2,0,0,0,0,2,122, + 30,69,120,116,101,110,115,105,111,110,70,105,108,101,76,111, + 97,100,101,114,46,103,101,116,95,115,111,117,114,99,101,99, + 2,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0, + 67,0,0,0,115,7,0,0,0,124,0,0,106,0,0,83, + 41,1,122,58,82,101,116,117,114,110,32,116,104,101,32,112, + 97,116,104,32,116,111,32,116,104,101,32,115,111,117,114,99, + 101,32,102,105,108,101,32,97,115,32,102,111,117,110,100,32, + 98,121,32,116,104,101,32,102,105,110,100,101,114,46,41,1, + 114,35,0,0,0,41,2,114,108,0,0,0,114,126,0,0, + 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 114,163,0,0,0,196,3,0,0,115,2,0,0,0,0,3, + 122,32,69,120,116,101,110,115,105,111,110,70,105,108,101,76, + 111,97,100,101,114,46,103,101,116,95,102,105,108,101,110,97, + 109,101,78,41,13,114,112,0,0,0,114,111,0,0,0,114, + 113,0,0,0,114,114,0,0,0,114,188,0,0,0,114,214, + 0,0,0,114,216,0,0,0,114,123,0,0,0,114,194,0, + 0,0,114,162,0,0,0,114,190,0,0,0,114,203,0,0, + 0,114,163,0,0,0,114,4,0,0,0,114,4,0,0,0, + 114,4,0,0,0,114,5,0,0,0,114,225,0,0,0,145, + 3,0,0,115,18,0,0,0,12,6,6,2,12,4,12,4, + 12,3,18,18,12,6,12,4,12,4,114,225,0,0,0,99, + 0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0, + 64,0,0,0,115,130,0,0,0,101,0,0,90,1,0,100, + 0,0,90,2,0,100,1,0,90,3,0,100,2,0,100,3, + 0,132,0,0,90,4,0,100,4,0,100,5,0,132,0,0, + 90,5,0,100,6,0,100,7,0,132,0,0,90,6,0,100, + 8,0,100,9,0,132,0,0,90,7,0,100,10,0,100,11, + 0,132,0,0,90,8,0,100,12,0,100,13,0,132,0,0, + 90,9,0,100,14,0,100,15,0,132,0,0,90,10,0,100, + 16,0,100,17,0,132,0,0,90,11,0,100,18,0,100,19, + 0,132,0,0,90,12,0,100,20,0,83,41,21,218,14,95, + 78,97,109,101,115,112,97,99,101,80,97,116,104,97,38,1, + 0,0,82,101,112,114,101,115,101,110,116,115,32,97,32,110, + 97,109,101,115,112,97,99,101,32,112,97,99,107,97,103,101, + 39,115,32,112,97,116,104,46,32,32,73,116,32,117,115,101, + 115,32,116,104,101,32,109,111,100,117,108,101,32,110,97,109, + 101,10,32,32,32,32,116,111,32,102,105,110,100,32,105,116, + 115,32,112,97,114,101,110,116,32,109,111,100,117,108,101,44, + 32,97,110,100,32,102,114,111,109,32,116,104,101,114,101,32, + 105,116,32,108,111,111,107,115,32,117,112,32,116,104,101,32, + 112,97,114,101,110,116,39,115,10,32,32,32,32,95,95,112, + 97,116,104,95,95,46,32,32,87,104,101,110,32,116,104,105, + 115,32,99,104,97,110,103,101,115,44,32,116,104,101,32,109, + 111,100,117,108,101,39,115,32,111,119,110,32,112,97,116,104, + 32,105,115,32,114,101,99,111,109,112,117,116,101,100,44,10, + 32,32,32,32,117,115,105,110,103,32,112,97,116,104,95,102, + 105,110,100,101,114,46,32,32,70,111,114,32,116,111,112,45, + 108,101,118,101,108,32,109,111,100,117,108,101,115,44,32,116, + 104,101,32,112,97,114,101,110,116,32,109,111,100,117,108,101, + 39,115,32,112,97,116,104,10,32,32,32,32,105,115,32,115, + 121,115,46,112,97,116,104,46,99,4,0,0,0,0,0,0, + 0,4,0,0,0,2,0,0,0,67,0,0,0,115,52,0, + 0,0,124,1,0,124,0,0,95,0,0,124,2,0,124,0, + 0,95,1,0,116,2,0,124,0,0,106,3,0,131,0,0, + 131,1,0,124,0,0,95,4,0,124,3,0,124,0,0,95, + 5,0,100,0,0,83,41,1,78,41,6,218,5,95,110,97, + 109,101,218,5,95,112,97,116,104,114,93,0,0,0,218,16, + 95,103,101,116,95,112,97,114,101,110,116,95,112,97,116,104, + 218,17,95,108,97,115,116,95,112,97,114,101,110,116,95,112, + 97,116,104,218,12,95,112,97,116,104,95,102,105,110,100,101, + 114,41,4,114,108,0,0,0,114,106,0,0,0,114,35,0, + 0,0,218,11,112,97,116,104,95,102,105,110,100,101,114,114, + 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,188, + 0,0,0,209,3,0,0,115,8,0,0,0,0,1,9,1, + 9,1,21,1,122,23,95,78,97,109,101,115,112,97,99,101, + 80,97,116,104,46,95,95,105,110,105,116,95,95,99,1,0, + 0,0,0,0,0,0,4,0,0,0,3,0,0,0,67,0, + 0,0,115,53,0,0,0,124,0,0,106,0,0,106,1,0, + 100,1,0,131,1,0,92,3,0,125,1,0,125,2,0,125, + 3,0,124,2,0,100,2,0,107,2,0,114,43,0,100,6, + 0,83,124,1,0,100,5,0,102,2,0,83,41,7,122,62, + 82,101,116,117,114,110,115,32,97,32,116,117,112,108,101,32, + 111,102,32,40,112,97,114,101,110,116,45,109,111,100,117,108, + 101,45,110,97,109,101,44,32,112,97,114,101,110,116,45,112, + 97,116,104,45,97,116,116,114,45,110,97,109,101,41,114,58, + 0,0,0,114,30,0,0,0,114,7,0,0,0,114,35,0, + 0,0,114,226,0,0,0,41,2,122,3,115,121,115,122,4, + 112,97,116,104,41,2,114,235,0,0,0,114,32,0,0,0, + 41,4,114,108,0,0,0,114,223,0,0,0,218,3,100,111, + 116,90,2,109,101,114,4,0,0,0,114,4,0,0,0,114, + 5,0,0,0,218,23,95,102,105,110,100,95,112,97,114,101, + 110,116,95,112,97,116,104,95,110,97,109,101,115,215,3,0, + 0,115,8,0,0,0,0,2,27,1,12,2,4,3,122,38, + 95,78,97,109,101,115,112,97,99,101,80,97,116,104,46,95, + 102,105,110,100,95,112,97,114,101,110,116,95,112,97,116,104, + 95,110,97,109,101,115,99,1,0,0,0,0,0,0,0,3, + 0,0,0,3,0,0,0,67,0,0,0,115,38,0,0,0, + 124,0,0,106,0,0,131,0,0,92,2,0,125,1,0,125, + 2,0,116,1,0,116,2,0,106,3,0,124,1,0,25,124, + 2,0,131,2,0,83,41,1,78,41,4,114,242,0,0,0, + 114,117,0,0,0,114,7,0,0,0,114,132,0,0,0,41, + 3,114,108,0,0,0,90,18,112,97,114,101,110,116,95,109, + 111,100,117,108,101,95,110,97,109,101,90,14,112,97,116,104, + 95,97,116,116,114,95,110,97,109,101,114,4,0,0,0,114, + 4,0,0,0,114,5,0,0,0,114,237,0,0,0,225,3, + 0,0,115,4,0,0,0,0,1,18,1,122,31,95,78,97, + 109,101,115,112,97,99,101,80,97,116,104,46,95,103,101,116, + 95,112,97,114,101,110,116,95,112,97,116,104,99,1,0,0, + 0,0,0,0,0,3,0,0,0,3,0,0,0,67,0,0, + 0,115,118,0,0,0,116,0,0,124,0,0,106,1,0,131, + 0,0,131,1,0,125,1,0,124,1,0,124,0,0,106,2, + 0,107,3,0,114,111,0,124,0,0,106,3,0,124,0,0, + 106,4,0,124,1,0,131,2,0,125,2,0,124,2,0,100, + 0,0,107,9,0,114,102,0,124,2,0,106,5,0,100,0, + 0,107,8,0,114,102,0,124,2,0,106,6,0,114,102,0, + 124,2,0,106,6,0,124,0,0,95,7,0,124,1,0,124, + 0,0,95,2,0,124,0,0,106,7,0,83,41,1,78,41, + 8,114,93,0,0,0,114,237,0,0,0,114,238,0,0,0, + 114,239,0,0,0,114,235,0,0,0,114,127,0,0,0,114, + 164,0,0,0,114,236,0,0,0,41,3,114,108,0,0,0, + 90,11,112,97,114,101,110,116,95,112,97,116,104,114,133,0, + 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, + 0,218,12,95,114,101,99,97,108,99,117,108,97,116,101,229, + 3,0,0,115,16,0,0,0,0,2,18,1,15,1,21,3, + 27,1,9,1,12,1,9,1,122,27,95,78,97,109,101,115, + 112,97,99,101,80,97,116,104,46,95,114,101,99,97,108,99, + 117,108,97,116,101,99,1,0,0,0,0,0,0,0,1,0, + 0,0,2,0,0,0,67,0,0,0,115,16,0,0,0,116, + 0,0,124,0,0,106,1,0,131,0,0,131,1,0,83,41, + 1,78,41,2,218,4,105,116,101,114,114,243,0,0,0,41, + 1,114,108,0,0,0,114,4,0,0,0,114,4,0,0,0, + 114,5,0,0,0,218,8,95,95,105,116,101,114,95,95,242, + 3,0,0,115,2,0,0,0,0,1,122,23,95,78,97,109, + 101,115,112,97,99,101,80,97,116,104,46,95,95,105,116,101, + 114,95,95,99,1,0,0,0,0,0,0,0,1,0,0,0, + 2,0,0,0,67,0,0,0,115,16,0,0,0,116,0,0, + 124,0,0,106,1,0,131,0,0,131,1,0,83,41,1,78, + 41,2,114,31,0,0,0,114,243,0,0,0,41,1,114,108, + 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, + 0,0,218,7,95,95,108,101,110,95,95,245,3,0,0,115, + 2,0,0,0,0,1,122,22,95,78,97,109,101,115,112,97, + 99,101,80,97,116,104,46,95,95,108,101,110,95,95,99,1, + 0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,67, + 0,0,0,115,16,0,0,0,100,1,0,106,0,0,124,0, + 0,106,1,0,131,1,0,83,41,2,78,122,20,95,78,97, + 109,101,115,112,97,99,101,80,97,116,104,40,123,33,114,125, + 41,41,2,114,47,0,0,0,114,236,0,0,0,41,1,114, + 108,0,0,0,114,4,0,0,0,114,4,0,0,0,114,5, + 0,0,0,218,8,95,95,114,101,112,114,95,95,248,3,0, + 0,115,2,0,0,0,0,1,122,23,95,78,97,109,101,115, + 112,97,99,101,80,97,116,104,46,95,95,114,101,112,114,95, + 95,99,2,0,0,0,0,0,0,0,2,0,0,0,2,0, + 0,0,67,0,0,0,115,16,0,0,0,124,1,0,124,0, + 0,106,0,0,131,0,0,107,6,0,83,41,1,78,41,1, + 114,243,0,0,0,41,2,114,108,0,0,0,218,4,105,116, + 101,109,114,4,0,0,0,114,4,0,0,0,114,5,0,0, + 0,218,12,95,95,99,111,110,116,97,105,110,115,95,95,251, + 3,0,0,115,2,0,0,0,0,1,122,27,95,78,97,109, + 101,115,112,97,99,101,80,97,116,104,46,95,95,99,111,110, + 116,97,105,110,115,95,95,99,2,0,0,0,0,0,0,0, + 2,0,0,0,2,0,0,0,67,0,0,0,115,20,0,0, + 0,124,0,0,106,0,0,106,1,0,124,1,0,131,1,0, + 1,100,0,0,83,41,1,78,41,2,114,236,0,0,0,114, + 169,0,0,0,41,2,114,108,0,0,0,114,248,0,0,0, + 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, + 169,0,0,0,254,3,0,0,115,2,0,0,0,0,1,122, + 21,95,78,97,109,101,115,112,97,99,101,80,97,116,104,46, + 97,112,112,101,110,100,78,41,13,114,112,0,0,0,114,111, + 0,0,0,114,113,0,0,0,114,114,0,0,0,114,188,0, + 0,0,114,242,0,0,0,114,237,0,0,0,114,243,0,0, + 0,114,245,0,0,0,114,246,0,0,0,114,247,0,0,0, + 114,249,0,0,0,114,169,0,0,0,114,4,0,0,0,114, + 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,234, + 0,0,0,202,3,0,0,115,20,0,0,0,12,5,6,2, + 12,6,12,10,12,4,12,13,12,3,12,3,12,3,12,3, + 114,234,0,0,0,99,0,0,0,0,0,0,0,0,0,0, + 0,0,3,0,0,0,64,0,0,0,115,118,0,0,0,101, + 0,0,90,1,0,100,0,0,90,2,0,100,1,0,100,2, + 0,132,0,0,90,3,0,101,4,0,100,3,0,100,4,0, + 132,0,0,131,1,0,90,5,0,100,5,0,100,6,0,132, + 0,0,90,6,0,100,7,0,100,8,0,132,0,0,90,7, + 0,100,9,0,100,10,0,132,0,0,90,8,0,100,11,0, + 100,12,0,132,0,0,90,9,0,100,13,0,100,14,0,132, + 0,0,90,10,0,100,15,0,100,16,0,132,0,0,90,11, + 0,100,17,0,83,41,18,218,16,95,78,97,109,101,115,112, + 97,99,101,76,111,97,100,101,114,99,4,0,0,0,0,0, + 0,0,4,0,0,0,4,0,0,0,67,0,0,0,115,25, + 0,0,0,116,0,0,124,1,0,124,2,0,124,3,0,131, + 3,0,124,0,0,95,1,0,100,0,0,83,41,1,78,41, + 2,114,234,0,0,0,114,236,0,0,0,41,4,114,108,0, + 0,0,114,106,0,0,0,114,35,0,0,0,114,240,0,0, + 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 114,188,0,0,0,4,4,0,0,115,2,0,0,0,0,1, + 122,25,95,78,97,109,101,115,112,97,99,101,76,111,97,100, + 101,114,46,95,95,105,110,105,116,95,95,99,2,0,0,0, + 0,0,0,0,2,0,0,0,2,0,0,0,67,0,0,0, + 115,16,0,0,0,100,1,0,106,0,0,124,1,0,106,1, + 0,131,1,0,83,41,2,122,115,82,101,116,117,114,110,32, + 114,101,112,114,32,102,111,114,32,116,104,101,32,109,111,100, + 117,108,101,46,10,10,32,32,32,32,32,32,32,32,84,104, + 101,32,109,101,116,104,111,100,32,105,115,32,100,101,112,114, + 101,99,97,116,101,100,46,32,32,84,104,101,32,105,109,112, + 111,114,116,32,109,97,99,104,105,110,101,114,121,32,100,111, + 101,115,32,116,104,101,32,106,111,98,32,105,116,115,101,108, + 102,46,10,10,32,32,32,32,32,32,32,32,122,25,60,109, + 111,100,117,108,101,32,123,33,114,125,32,40,110,97,109,101, + 115,112,97,99,101,41,62,41,2,114,47,0,0,0,114,112, + 0,0,0,41,2,114,174,0,0,0,114,134,0,0,0,114, + 4,0,0,0,114,4,0,0,0,114,5,0,0,0,218,11, + 109,111,100,117,108,101,95,114,101,112,114,7,4,0,0,115, + 2,0,0,0,0,7,122,28,95,78,97,109,101,115,112,97, + 99,101,76,111,97,100,101,114,46,109,111,100,117,108,101,95, + 114,101,112,114,99,2,0,0,0,0,0,0,0,2,0,0, + 0,1,0,0,0,67,0,0,0,115,4,0,0,0,100,1, + 0,83,41,2,78,84,114,4,0,0,0,41,2,114,108,0, + 0,0,114,126,0,0,0,114,4,0,0,0,114,4,0,0, + 0,114,5,0,0,0,114,162,0,0,0,16,4,0,0,115, + 2,0,0,0,0,1,122,27,95,78,97,109,101,115,112,97, + 99,101,76,111,97,100,101,114,46,105,115,95,112,97,99,107, + 97,103,101,99,2,0,0,0,0,0,0,0,2,0,0,0, + 1,0,0,0,67,0,0,0,115,4,0,0,0,100,1,0, + 83,41,2,78,114,30,0,0,0,114,4,0,0,0,41,2, + 114,108,0,0,0,114,126,0,0,0,114,4,0,0,0,114, + 4,0,0,0,114,5,0,0,0,114,203,0,0,0,19,4, + 0,0,115,2,0,0,0,0,1,122,27,95,78,97,109,101, + 115,112,97,99,101,76,111,97,100,101,114,46,103,101,116,95, + 115,111,117,114,99,101,99,2,0,0,0,0,0,0,0,2, + 0,0,0,6,0,0,0,67,0,0,0,115,22,0,0,0, + 116,0,0,100,1,0,100,2,0,100,3,0,100,4,0,100, + 5,0,131,3,1,83,41,6,78,114,30,0,0,0,122,8, + 60,115,116,114,105,110,103,62,114,192,0,0,0,114,205,0, + 0,0,84,41,1,114,206,0,0,0,41,2,114,108,0,0, + 0,114,126,0,0,0,114,4,0,0,0,114,4,0,0,0, + 114,5,0,0,0,114,190,0,0,0,22,4,0,0,115,2, + 0,0,0,0,1,122,25,95,78,97,109,101,115,112,97,99, + 101,76,111,97,100,101,114,46,103,101,116,95,99,111,100,101, + 99,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0, + 0,67,0,0,0,115,4,0,0,0,100,1,0,83,41,2, + 122,42,85,115,101,32,100,101,102,97,117,108,116,32,115,101, + 109,97,110,116,105,99,115,32,102,111,114,32,109,111,100,117, + 108,101,32,99,114,101,97,116,105,111,110,46,78,114,4,0, + 0,0,41,2,114,108,0,0,0,114,133,0,0,0,114,4, + 0,0,0,114,4,0,0,0,114,5,0,0,0,114,189,0, + 0,0,25,4,0,0,115,0,0,0,0,122,30,95,78,97, + 109,101,115,112,97,99,101,76,111,97,100,101,114,46,99,114, + 101,97,116,101,95,109,111,100,117,108,101,99,2,0,0,0, + 0,0,0,0,2,0,0,0,1,0,0,0,67,0,0,0, + 115,4,0,0,0,100,0,0,83,41,1,78,114,4,0,0, + 0,41,2,114,108,0,0,0,114,134,0,0,0,114,4,0, + 0,0,114,4,0,0,0,114,5,0,0,0,114,193,0,0, + 0,28,4,0,0,115,2,0,0,0,0,1,122,28,95,78, + 97,109,101,115,112,97,99,101,76,111,97,100,101,114,46,101, + 120,101,99,95,109,111,100,117,108,101,99,2,0,0,0,0, + 0,0,0,2,0,0,0,3,0,0,0,67,0,0,0,115, + 29,0,0,0,116,0,0,100,1,0,124,0,0,106,1,0, + 131,2,0,1,116,2,0,124,0,0,124,1,0,131,2,0, + 83,41,2,122,98,76,111,97,100,32,97,32,110,97,109,101, + 115,112,97,99,101,32,109,111,100,117,108,101,46,10,10,32, + 32,32,32,32,32,32,32,84,104,105,115,32,109,101,116,104, + 111,100,32,105,115,32,100,101,112,114,101,99,97,116,101,100, + 46,32,32,85,115,101,32,101,120,101,99,95,109,111,100,117, + 108,101,40,41,32,105,110,115,116,101,97,100,46,10,10,32, + 32,32,32,32,32,32,32,122,38,110,97,109,101,115,112,97, + 99,101,32,109,111,100,117,108,101,32,108,111,97,100,101,100, + 32,119,105,116,104,32,112,97,116,104,32,123,33,114,125,41, + 3,114,105,0,0,0,114,236,0,0,0,114,135,0,0,0, + 41,2,114,108,0,0,0,114,126,0,0,0,114,4,0,0, + 0,114,4,0,0,0,114,5,0,0,0,114,194,0,0,0, + 31,4,0,0,115,4,0,0,0,0,7,16,1,122,28,95, + 78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,46, + 108,111,97,100,95,109,111,100,117,108,101,78,41,12,114,112, + 0,0,0,114,111,0,0,0,114,113,0,0,0,114,188,0, + 0,0,114,186,0,0,0,114,251,0,0,0,114,162,0,0, + 0,114,203,0,0,0,114,190,0,0,0,114,189,0,0,0, + 114,193,0,0,0,114,194,0,0,0,114,4,0,0,0,114, + 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,250, + 0,0,0,3,4,0,0,115,16,0,0,0,12,1,12,3, + 18,9,12,3,12,3,12,3,12,3,12,3,114,250,0,0, + 0,99,0,0,0,0,0,0,0,0,0,0,0,0,5,0, + 0,0,64,0,0,0,115,160,0,0,0,101,0,0,90,1, + 0,100,0,0,90,2,0,100,1,0,90,3,0,101,4,0, + 100,2,0,100,3,0,132,0,0,131,1,0,90,5,0,101, + 4,0,100,4,0,100,5,0,132,0,0,131,1,0,90,6, + 0,101,4,0,100,6,0,100,7,0,132,0,0,131,1,0, + 90,7,0,101,4,0,100,8,0,100,9,0,132,0,0,131, + 1,0,90,8,0,101,4,0,100,10,0,100,11,0,100,12, + 0,132,1,0,131,1,0,90,9,0,101,4,0,100,10,0, + 100,10,0,100,13,0,100,14,0,132,2,0,131,1,0,90, + 10,0,101,4,0,100,10,0,100,15,0,100,16,0,132,1, + 0,131,1,0,90,11,0,100,10,0,83,41,17,218,10,80, + 97,116,104,70,105,110,100,101,114,122,62,77,101,116,97,32, + 112,97,116,104,32,102,105,110,100,101,114,32,102,111,114,32, + 115,121,115,46,112,97,116,104,32,97,110,100,32,112,97,99, + 107,97,103,101,32,95,95,112,97,116,104,95,95,32,97,116, + 116,114,105,98,117,116,101,115,46,99,1,0,0,0,0,0, + 0,0,2,0,0,0,4,0,0,0,67,0,0,0,115,55, + 0,0,0,120,48,0,116,0,0,106,1,0,106,2,0,131, + 0,0,68,93,31,0,125,1,0,116,3,0,124,1,0,100, + 1,0,131,2,0,114,16,0,124,1,0,106,4,0,131,0, + 0,1,113,16,0,87,100,2,0,83,41,3,122,125,67,97, + 108,108,32,116,104,101,32,105,110,118,97,108,105,100,97,116, + 101,95,99,97,99,104,101,115,40,41,32,109,101,116,104,111, + 100,32,111,110,32,97,108,108,32,112,97,116,104,32,101,110, + 116,114,121,32,102,105,110,100,101,114,115,10,32,32,32,32, + 32,32,32,32,115,116,111,114,101,100,32,105,110,32,115,121, + 115,46,112,97,116,104,95,105,109,112,111,114,116,101,114,95, + 99,97,99,104,101,115,32,40,119,104,101,114,101,32,105,109, + 112,108,101,109,101,110,116,101,100,41,46,218,17,105,110,118, + 97,108,105,100,97,116,101,95,99,97,99,104,101,115,78,41, + 5,114,7,0,0,0,218,19,112,97,116,104,95,105,109,112, + 111,114,116,101,114,95,99,97,99,104,101,218,6,118,97,108, + 117,101,115,114,115,0,0,0,114,253,0,0,0,41,2,114, + 174,0,0,0,218,6,102,105,110,100,101,114,114,4,0,0, + 0,114,4,0,0,0,114,5,0,0,0,114,253,0,0,0, + 48,4,0,0,115,6,0,0,0,0,4,22,1,15,1,122, + 28,80,97,116,104,70,105,110,100,101,114,46,105,110,118,97, + 108,105,100,97,116,101,95,99,97,99,104,101,115,99,2,0, + 0,0,0,0,0,0,3,0,0,0,12,0,0,0,67,0, + 0,0,115,107,0,0,0,116,0,0,106,1,0,100,1,0, + 107,9,0,114,41,0,116,0,0,106,1,0,12,114,41,0, + 116,2,0,106,3,0,100,2,0,116,4,0,131,2,0,1, + 120,59,0,116,0,0,106,1,0,68,93,44,0,125,2,0, + 121,14,0,124,2,0,124,1,0,131,1,0,83,87,113,51, + 0,4,116,5,0,107,10,0,114,94,0,1,1,1,119,51, + 0,89,113,51,0,88,113,51,0,87,100,1,0,83,100,1, + 0,83,41,3,122,113,83,101,97,114,99,104,32,115,101,113, + 117,101,110,99,101,32,111,102,32,104,111,111,107,115,32,102, + 111,114,32,97,32,102,105,110,100,101,114,32,102,111,114,32, + 39,112,97,116,104,39,46,10,10,32,32,32,32,32,32,32, + 32,73,102,32,39,104,111,111,107,115,39,32,105,115,32,102, + 97,108,115,101,32,116,104,101,110,32,117,115,101,32,115,121, + 115,46,112,97,116,104,95,104,111,111,107,115,46,10,10,32, + 32,32,32,32,32,32,32,78,122,23,115,121,115,46,112,97, + 116,104,95,104,111,111,107,115,32,105,115,32,101,109,112,116, + 121,41,6,114,7,0,0,0,218,10,112,97,116,104,95,104, + 111,111,107,115,114,60,0,0,0,114,61,0,0,0,114,125, + 0,0,0,114,107,0,0,0,41,3,114,174,0,0,0,114, + 35,0,0,0,90,4,104,111,111,107,114,4,0,0,0,114, + 4,0,0,0,114,5,0,0,0,218,11,95,112,97,116,104, + 95,104,111,111,107,115,56,4,0,0,115,16,0,0,0,0, + 7,25,1,16,1,16,1,3,1,14,1,13,1,12,2,122, + 22,80,97,116,104,70,105,110,100,101,114,46,95,112,97,116, + 104,95,104,111,111,107,115,99,2,0,0,0,0,0,0,0, + 3,0,0,0,19,0,0,0,67,0,0,0,115,123,0,0, + 0,124,1,0,100,1,0,107,2,0,114,53,0,121,16,0, + 116,0,0,106,1,0,131,0,0,125,1,0,87,110,22,0, + 4,116,2,0,107,10,0,114,52,0,1,1,1,100,2,0, + 83,89,110,1,0,88,121,17,0,116,3,0,106,4,0,124, + 1,0,25,125,2,0,87,110,46,0,4,116,5,0,107,10, + 0,114,118,0,1,1,1,124,0,0,106,6,0,124,1,0, + 131,1,0,125,2,0,124,2,0,116,3,0,106,4,0,124, + 1,0,60,89,110,1,0,88,124,2,0,83,41,3,122,210, + 71,101,116,32,116,104,101,32,102,105,110,100,101,114,32,102, + 111,114,32,116,104,101,32,112,97,116,104,32,101,110,116,114, + 121,32,102,114,111,109,32,115,121,115,46,112,97,116,104,95, + 105,109,112,111,114,116,101,114,95,99,97,99,104,101,46,10, + 10,32,32,32,32,32,32,32,32,73,102,32,116,104,101,32, + 112,97,116,104,32,101,110,116,114,121,32,105,115,32,110,111, + 116,32,105,110,32,116,104,101,32,99,97,99,104,101,44,32, + 102,105,110,100,32,116,104,101,32,97,112,112,114,111,112,114, + 105,97,116,101,32,102,105,110,100,101,114,10,32,32,32,32, + 32,32,32,32,97,110,100,32,99,97,99,104,101,32,105,116, + 46,32,73,102,32,110,111,32,102,105,110,100,101,114,32,105, + 115,32,97,118,97,105,108,97,98,108,101,44,32,115,116,111, + 114,101,32,78,111,110,101,46,10,10,32,32,32,32,32,32, + 32,32,114,30,0,0,0,78,41,7,114,3,0,0,0,114, + 45,0,0,0,218,17,70,105,108,101,78,111,116,70,111,117, + 110,100,69,114,114,111,114,114,7,0,0,0,114,254,0,0, + 0,114,142,0,0,0,114,2,1,0,0,41,3,114,174,0, + 0,0,114,35,0,0,0,114,0,1,0,0,114,4,0,0, + 0,114,4,0,0,0,114,5,0,0,0,218,20,95,112,97, + 116,104,95,105,109,112,111,114,116,101,114,95,99,97,99,104, + 101,73,4,0,0,115,22,0,0,0,0,8,12,1,3,1, + 16,1,13,3,9,1,3,1,17,1,13,1,15,1,18,1, + 122,31,80,97,116,104,70,105,110,100,101,114,46,95,112,97, + 116,104,95,105,109,112,111,114,116,101,114,95,99,97,99,104, + 101,99,3,0,0,0,0,0,0,0,6,0,0,0,3,0, + 0,0,67,0,0,0,115,116,0,0,0,116,0,0,124,2, + 0,100,1,0,131,2,0,114,39,0,124,2,0,106,1,0, + 124,1,0,131,1,0,92,2,0,125,3,0,125,4,0,110, + 21,0,124,2,0,106,2,0,124,1,0,131,1,0,125,3, + 0,103,0,0,125,4,0,124,3,0,100,0,0,107,9,0, + 114,85,0,116,3,0,124,1,0,124,3,0,131,2,0,83, + 116,4,0,106,5,0,124,1,0,100,0,0,131,2,0,125, + 5,0,124,4,0,124,5,0,95,6,0,124,5,0,83,41, + 2,78,114,124,0,0,0,41,7,114,115,0,0,0,114,124, + 0,0,0,114,185,0,0,0,114,131,0,0,0,114,121,0, + 0,0,114,166,0,0,0,114,164,0,0,0,41,6,114,174, + 0,0,0,114,126,0,0,0,114,0,1,0,0,114,127,0, + 0,0,114,128,0,0,0,114,133,0,0,0,114,4,0,0, + 0,114,4,0,0,0,114,5,0,0,0,218,16,95,108,101, + 103,97,99,121,95,103,101,116,95,115,112,101,99,95,4,0, + 0,115,18,0,0,0,0,4,15,1,24,2,15,1,6,1, + 12,1,13,1,18,1,9,1,122,27,80,97,116,104,70,105, + 110,100,101,114,46,95,108,101,103,97,99,121,95,103,101,116, + 95,115,112,101,99,78,99,4,0,0,0,0,0,0,0,9, + 0,0,0,5,0,0,0,67,0,0,0,115,243,0,0,0, + 103,0,0,125,4,0,120,230,0,124,2,0,68,93,191,0, + 125,5,0,116,0,0,124,5,0,116,1,0,116,2,0,102, + 2,0,131,2,0,115,43,0,113,13,0,124,0,0,106,3, + 0,124,5,0,131,1,0,125,6,0,124,6,0,100,1,0, + 107,9,0,114,13,0,116,4,0,124,6,0,100,2,0,131, + 2,0,114,106,0,124,6,0,106,5,0,124,1,0,124,3, + 0,131,2,0,125,7,0,110,18,0,124,0,0,106,6,0, + 124,1,0,124,6,0,131,2,0,125,7,0,124,7,0,100, + 1,0,107,8,0,114,139,0,113,13,0,124,7,0,106,7, + 0,100,1,0,107,9,0,114,158,0,124,7,0,83,124,7, + 0,106,8,0,125,8,0,124,8,0,100,1,0,107,8,0, + 114,191,0,116,9,0,100,3,0,131,1,0,130,1,0,124, + 4,0,106,10,0,124,8,0,131,1,0,1,113,13,0,87, + 116,11,0,106,12,0,124,1,0,100,1,0,131,2,0,125, + 7,0,124,4,0,124,7,0,95,8,0,124,7,0,83,100, + 1,0,83,41,4,122,63,70,105,110,100,32,116,104,101,32, + 108,111,97,100,101,114,32,111,114,32,110,97,109,101,115,112, + 97,99,101,95,112,97,116,104,32,102,111,114,32,116,104,105, + 115,32,109,111,100,117,108,101,47,112,97,99,107,97,103,101, + 32,110,97,109,101,46,78,114,184,0,0,0,122,19,115,112, + 101,99,32,109,105,115,115,105,110,103,32,108,111,97,100,101, + 114,41,13,114,148,0,0,0,114,69,0,0,0,218,5,98, + 121,116,101,115,114,4,1,0,0,114,115,0,0,0,114,184, + 0,0,0,114,5,1,0,0,114,127,0,0,0,114,164,0, + 0,0,114,107,0,0,0,114,154,0,0,0,114,121,0,0, + 0,114,166,0,0,0,41,9,114,174,0,0,0,114,126,0, + 0,0,114,35,0,0,0,114,183,0,0,0,218,14,110,97, + 109,101,115,112,97,99,101,95,112,97,116,104,90,5,101,110, + 116,114,121,114,0,1,0,0,114,133,0,0,0,114,128,0, + 0,0,114,4,0,0,0,114,4,0,0,0,114,5,0,0, + 0,218,9,95,103,101,116,95,115,112,101,99,110,4,0,0, + 115,40,0,0,0,0,5,6,1,13,1,21,1,3,1,15, + 1,12,1,15,1,21,2,18,1,12,1,3,1,15,1,4, + 1,9,1,12,1,12,5,17,2,18,1,9,1,122,20,80, + 97,116,104,70,105,110,100,101,114,46,95,103,101,116,95,115, + 112,101,99,99,4,0,0,0,0,0,0,0,6,0,0,0, + 4,0,0,0,67,0,0,0,115,140,0,0,0,124,2,0, + 100,1,0,107,8,0,114,21,0,116,0,0,106,1,0,125, + 2,0,124,0,0,106,2,0,124,1,0,124,2,0,124,3, + 0,131,3,0,125,4,0,124,4,0,100,1,0,107,8,0, + 114,58,0,100,1,0,83,124,4,0,106,3,0,100,1,0, + 107,8,0,114,132,0,124,4,0,106,4,0,125,5,0,124, + 5,0,114,125,0,100,2,0,124,4,0,95,5,0,116,6, + 0,124,1,0,124,5,0,124,0,0,106,2,0,131,3,0, + 124,4,0,95,4,0,124,4,0,83,100,1,0,83,110,4, + 0,124,4,0,83,100,1,0,83,41,3,122,98,102,105,110, + 100,32,116,104,101,32,109,111,100,117,108,101,32,111,110,32, + 115,121,115,46,112,97,116,104,32,111,114,32,39,112,97,116, + 104,39,32,98,97,115,101,100,32,111,110,32,115,121,115,46, + 112,97,116,104,95,104,111,111,107,115,32,97,110,100,10,32, + 32,32,32,32,32,32,32,115,121,115,46,112,97,116,104,95, + 105,109,112,111,114,116,101,114,95,99,97,99,104,101,46,78, + 90,9,110,97,109,101,115,112,97,99,101,41,7,114,7,0, + 0,0,114,35,0,0,0,114,8,1,0,0,114,127,0,0, + 0,114,164,0,0,0,114,161,0,0,0,114,234,0,0,0, + 41,6,114,174,0,0,0,114,126,0,0,0,114,35,0,0, + 0,114,183,0,0,0,114,133,0,0,0,114,7,1,0,0, + 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,114, + 184,0,0,0,142,4,0,0,115,26,0,0,0,0,4,12, + 1,9,1,21,1,12,1,4,1,15,1,9,1,6,3,9, + 1,24,1,4,2,7,2,122,20,80,97,116,104,70,105,110, + 100,101,114,46,102,105,110,100,95,115,112,101,99,99,3,0, + 0,0,0,0,0,0,4,0,0,0,3,0,0,0,67,0, + 0,0,115,41,0,0,0,124,0,0,106,0,0,124,1,0, + 124,2,0,131,2,0,125,3,0,124,3,0,100,1,0,107, + 8,0,114,34,0,100,1,0,83,124,3,0,106,1,0,83, + 41,2,122,170,102,105,110,100,32,116,104,101,32,109,111,100, + 117,108,101,32,111,110,32,115,121,115,46,112,97,116,104,32, + 111,114,32,39,112,97,116,104,39,32,98,97,115,101,100,32, + 111,110,32,115,121,115,46,112,97,116,104,95,104,111,111,107, + 115,32,97,110,100,10,32,32,32,32,32,32,32,32,115,121, + 115,46,112,97,116,104,95,105,109,112,111,114,116,101,114,95, + 99,97,99,104,101,46,10,10,32,32,32,32,32,32,32,32, + 84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,100, + 101,112,114,101,99,97,116,101,100,46,32,32,85,115,101,32, + 102,105,110,100,95,115,112,101,99,40,41,32,105,110,115,116, + 101,97,100,46,10,10,32,32,32,32,32,32,32,32,78,41, + 2,114,184,0,0,0,114,127,0,0,0,41,4,114,174,0, + 0,0,114,126,0,0,0,114,35,0,0,0,114,133,0,0, + 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 114,185,0,0,0,164,4,0,0,115,8,0,0,0,0,8, + 18,1,12,1,4,1,122,22,80,97,116,104,70,105,110,100, + 101,114,46,102,105,110,100,95,109,111,100,117,108,101,41,12, + 114,112,0,0,0,114,111,0,0,0,114,113,0,0,0,114, + 114,0,0,0,114,186,0,0,0,114,253,0,0,0,114,2, + 1,0,0,114,4,1,0,0,114,5,1,0,0,114,8,1, + 0,0,114,184,0,0,0,114,185,0,0,0,114,4,0,0, + 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 114,252,0,0,0,44,4,0,0,115,22,0,0,0,12,2, + 6,2,18,8,18,17,18,22,18,15,3,1,18,31,3,1, + 21,21,3,1,114,252,0,0,0,99,0,0,0,0,0,0, + 0,0,0,0,0,0,3,0,0,0,64,0,0,0,115,133, + 0,0,0,101,0,0,90,1,0,100,0,0,90,2,0,100, + 1,0,90,3,0,100,2,0,100,3,0,132,0,0,90,4, + 0,100,4,0,100,5,0,132,0,0,90,5,0,101,6,0, + 90,7,0,100,6,0,100,7,0,132,0,0,90,8,0,100, + 8,0,100,9,0,132,0,0,90,9,0,100,10,0,100,11, + 0,100,12,0,132,1,0,90,10,0,100,13,0,100,14,0, + 132,0,0,90,11,0,101,12,0,100,15,0,100,16,0,132, + 0,0,131,1,0,90,13,0,100,17,0,100,18,0,132,0, + 0,90,14,0,100,10,0,83,41,19,218,10,70,105,108,101, + 70,105,110,100,101,114,122,172,70,105,108,101,45,98,97,115, + 101,100,32,102,105,110,100,101,114,46,10,10,32,32,32,32, + 73,110,116,101,114,97,99,116,105,111,110,115,32,119,105,116, + 104,32,116,104,101,32,102,105,108,101,32,115,121,115,116,101, + 109,32,97,114,101,32,99,97,99,104,101,100,32,102,111,114, + 32,112,101,114,102,111,114,109,97,110,99,101,44,32,98,101, + 105,110,103,10,32,32,32,32,114,101,102,114,101,115,104,101, + 100,32,119,104,101,110,32,116,104,101,32,100,105,114,101,99, + 116,111,114,121,32,116,104,101,32,102,105,110,100,101,114,32, + 105,115,32,104,97,110,100,108,105,110,103,32,104,97,115,32, + 98,101,101,110,32,109,111,100,105,102,105,101,100,46,10,10, + 32,32,32,32,99,2,0,0,0,0,0,0,0,5,0,0, + 0,5,0,0,0,7,0,0,0,115,122,0,0,0,103,0, + 0,125,3,0,120,52,0,124,2,0,68,93,44,0,92,2, + 0,137,0,0,125,4,0,124,3,0,106,0,0,135,0,0, + 102,1,0,100,1,0,100,2,0,134,0,0,124,4,0,68, + 131,1,0,131,1,0,1,113,13,0,87,124,3,0,124,0, + 0,95,1,0,124,1,0,112,79,0,100,3,0,124,0,0, + 95,2,0,100,6,0,124,0,0,95,3,0,116,4,0,131, + 0,0,124,0,0,95,5,0,116,4,0,131,0,0,124,0, + 0,95,6,0,100,5,0,83,41,7,122,154,73,110,105,116, + 105,97,108,105,122,101,32,119,105,116,104,32,116,104,101,32, + 112,97,116,104,32,116,111,32,115,101,97,114,99,104,32,111, + 110,32,97,110,100,32,97,32,118,97,114,105,97,98,108,101, + 32,110,117,109,98,101,114,32,111,102,10,32,32,32,32,32, + 32,32,32,50,45,116,117,112,108,101,115,32,99,111,110,116, + 97,105,110,105,110,103,32,116,104,101,32,108,111,97,100,101, + 114,32,97,110,100,32,116,104,101,32,102,105,108,101,32,115, + 117,102,102,105,120,101,115,32,116,104,101,32,108,111,97,100, + 101,114,10,32,32,32,32,32,32,32,32,114,101,99,111,103, + 110,105,122,101,115,46,99,1,0,0,0,0,0,0,0,2, + 0,0,0,3,0,0,0,51,0,0,0,115,27,0,0,0, + 124,0,0,93,17,0,125,1,0,124,1,0,136,0,0,102, + 2,0,86,1,113,3,0,100,0,0,83,41,1,78,114,4, + 0,0,0,41,2,114,22,0,0,0,114,229,0,0,0,41, + 1,114,127,0,0,0,114,4,0,0,0,114,5,0,0,0, + 114,231,0,0,0,193,4,0,0,115,2,0,0,0,6,0, + 122,38,70,105,108,101,70,105,110,100,101,114,46,95,95,105, + 110,105,116,95,95,46,60,108,111,99,97,108,115,62,46,60, + 103,101,110,101,120,112,114,62,114,58,0,0,0,114,29,0, + 0,0,78,114,87,0,0,0,41,7,114,154,0,0,0,218, + 8,95,108,111,97,100,101,114,115,114,35,0,0,0,218,11, + 95,112,97,116,104,95,109,116,105,109,101,218,3,115,101,116, + 218,11,95,112,97,116,104,95,99,97,99,104,101,218,19,95, + 114,101,108,97,120,101,100,95,112,97,116,104,95,99,97,99, + 104,101,41,5,114,108,0,0,0,114,35,0,0,0,218,14, + 108,111,97,100,101,114,95,100,101,116,97,105,108,115,90,7, + 108,111,97,100,101,114,115,114,171,0,0,0,114,4,0,0, + 0,41,1,114,127,0,0,0,114,5,0,0,0,114,188,0, + 0,0,187,4,0,0,115,16,0,0,0,0,4,6,1,19, + 1,36,1,9,2,15,1,9,1,12,1,122,19,70,105,108, + 101,70,105,110,100,101,114,46,95,95,105,110,105,116,95,95, + 99,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0, + 0,67,0,0,0,115,13,0,0,0,100,3,0,124,0,0, + 95,0,0,100,2,0,83,41,4,122,31,73,110,118,97,108, + 105,100,97,116,101,32,116,104,101,32,100,105,114,101,99,116, + 111,114,121,32,109,116,105,109,101,46,114,29,0,0,0,78, + 114,87,0,0,0,41,1,114,11,1,0,0,41,1,114,108, + 0,0,0,114,4,0,0,0,114,4,0,0,0,114,5,0, + 0,0,114,253,0,0,0,201,4,0,0,115,2,0,0,0, + 0,2,122,28,70,105,108,101,70,105,110,100,101,114,46,105, + 110,118,97,108,105,100,97,116,101,95,99,97,99,104,101,115, + 99,2,0,0,0,0,0,0,0,3,0,0,0,2,0,0, + 0,67,0,0,0,115,59,0,0,0,124,0,0,106,0,0, + 124,1,0,131,1,0,125,2,0,124,2,0,100,1,0,107, + 8,0,114,37,0,100,1,0,103,0,0,102,2,0,83,124, + 2,0,106,1,0,124,2,0,106,2,0,112,55,0,103,0, + 0,102,2,0,83,41,2,122,197,84,114,121,32,116,111,32, + 102,105,110,100,32,97,32,108,111,97,100,101,114,32,102,111, + 114,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32, + 109,111,100,117,108,101,44,32,111,114,32,116,104,101,32,110, + 97,109,101,115,112,97,99,101,10,32,32,32,32,32,32,32, + 32,112,97,99,107,97,103,101,32,112,111,114,116,105,111,110, + 115,46,32,82,101,116,117,114,110,115,32,40,108,111,97,100, + 101,114,44,32,108,105,115,116,45,111,102,45,112,111,114,116, + 105,111,110,115,41,46,10,10,32,32,32,32,32,32,32,32, + 84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,100, + 101,112,114,101,99,97,116,101,100,46,32,32,85,115,101,32, + 102,105,110,100,95,115,112,101,99,40,41,32,105,110,115,116, + 101,97,100,46,10,10,32,32,32,32,32,32,32,32,78,41, + 3,114,184,0,0,0,114,127,0,0,0,114,164,0,0,0, + 41,3,114,108,0,0,0,114,126,0,0,0,114,133,0,0, + 0,114,4,0,0,0,114,4,0,0,0,114,5,0,0,0, + 114,124,0,0,0,207,4,0,0,115,8,0,0,0,0,7, + 15,1,12,1,10,1,122,22,70,105,108,101,70,105,110,100, + 101,114,46,102,105,110,100,95,108,111,97,100,101,114,99,6, + 0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,67, + 0,0,0,115,40,0,0,0,124,1,0,124,2,0,124,3, + 0,131,2,0,125,6,0,116,0,0,124,2,0,124,3,0, + 100,1,0,124,6,0,100,2,0,124,4,0,131,2,2,83, + 41,3,78,114,127,0,0,0,114,164,0,0,0,41,1,114, + 165,0,0,0,41,7,114,108,0,0,0,114,170,0,0,0, + 114,126,0,0,0,114,35,0,0,0,90,4,115,109,115,108, + 114,183,0,0,0,114,127,0,0,0,114,4,0,0,0,114, + 4,0,0,0,114,5,0,0,0,114,8,1,0,0,219,4, + 0,0,115,6,0,0,0,0,1,15,1,18,1,122,20,70, + 105,108,101,70,105,110,100,101,114,46,95,103,101,116,95,115, + 112,101,99,78,99,3,0,0,0,0,0,0,0,14,0,0, + 0,15,0,0,0,67,0,0,0,115,234,1,0,0,100,1, + 0,125,3,0,124,1,0,106,0,0,100,2,0,131,1,0, + 100,3,0,25,125,4,0,121,34,0,116,1,0,124,0,0, + 106,2,0,112,49,0,116,3,0,106,4,0,131,0,0,131, + 1,0,106,5,0,125,5,0,87,110,24,0,4,116,6,0, + 107,10,0,114,85,0,1,1,1,100,10,0,125,5,0,89, + 110,1,0,88,124,5,0,124,0,0,106,7,0,107,3,0, + 114,120,0,124,0,0,106,8,0,131,0,0,1,124,5,0, + 124,0,0,95,7,0,116,9,0,131,0,0,114,153,0,124, + 0,0,106,10,0,125,6,0,124,4,0,106,11,0,131,0, + 0,125,7,0,110,15,0,124,0,0,106,12,0,125,6,0, + 124,4,0,125,7,0,124,7,0,124,6,0,107,6,0,114, + 45,1,116,13,0,124,0,0,106,2,0,124,4,0,131,2, + 0,125,8,0,120,100,0,124,0,0,106,14,0,68,93,77, + 0,92,2,0,125,9,0,125,10,0,100,5,0,124,9,0, + 23,125,11,0,116,13,0,124,8,0,124,11,0,131,2,0, + 125,12,0,116,15,0,124,12,0,131,1,0,114,208,0,124, + 0,0,106,16,0,124,10,0,124,1,0,124,12,0,124,8, + 0,103,1,0,124,2,0,131,5,0,83,113,208,0,87,116, + 17,0,124,8,0,131,1,0,125,3,0,120,123,0,124,0, + 0,106,14,0,68,93,112,0,92,2,0,125,9,0,125,10, + 0,116,13,0,124,0,0,106,2,0,124,4,0,124,9,0, + 23,131,2,0,125,12,0,116,18,0,100,6,0,106,19,0, + 124,12,0,131,1,0,100,7,0,100,3,0,131,1,1,1, + 124,7,0,124,9,0,23,124,6,0,107,6,0,114,55,1, + 116,15,0,124,12,0,131,1,0,114,55,1,124,0,0,106, + 16,0,124,10,0,124,1,0,124,12,0,100,8,0,124,2, + 0,131,5,0,83,113,55,1,87,124,3,0,114,230,1,116, + 18,0,100,9,0,106,19,0,124,8,0,131,1,0,131,1, + 0,1,116,20,0,106,21,0,124,1,0,100,8,0,131,2, + 0,125,13,0,124,8,0,103,1,0,124,13,0,95,22,0, + 124,13,0,83,100,8,0,83,41,11,122,125,84,114,121,32, + 116,111,32,102,105,110,100,32,97,32,108,111,97,100,101,114, + 32,102,111,114,32,116,104,101,32,115,112,101,99,105,102,105, + 101,100,32,109,111,100,117,108,101,44,32,111,114,32,116,104, + 101,32,110,97,109,101,115,112,97,99,101,10,32,32,32,32, + 32,32,32,32,112,97,99,107,97,103,101,32,112,111,114,116, + 105,111,110,115,46,32,82,101,116,117,114,110,115,32,40,108, + 111,97,100,101,114,44,32,108,105,115,116,45,111,102,45,112, + 111,114,116,105,111,110,115,41,46,70,114,58,0,0,0,114, + 56,0,0,0,114,29,0,0,0,114,188,0,0,0,122,9, + 116,114,121,105,110,103,32,123,125,114,98,0,0,0,78,122, + 25,112,111,115,115,105,98,108,101,32,110,97,109,101,115,112, + 97,99,101,32,102,111,114,32,123,125,114,87,0,0,0,41, + 23,114,32,0,0,0,114,39,0,0,0,114,35,0,0,0, + 114,3,0,0,0,114,45,0,0,0,114,220,0,0,0,114, + 40,0,0,0,114,11,1,0,0,218,11,95,102,105,108,108, + 95,99,97,99,104,101,114,6,0,0,0,114,14,1,0,0, + 114,88,0,0,0,114,13,1,0,0,114,28,0,0,0,114, + 10,1,0,0,114,44,0,0,0,114,8,1,0,0,114,46, + 0,0,0,114,105,0,0,0,114,47,0,0,0,114,121,0, + 0,0,114,166,0,0,0,114,164,0,0,0,41,14,114,108, + 0,0,0,114,126,0,0,0,114,183,0,0,0,90,12,105, + 115,95,110,97,109,101,115,112,97,99,101,90,11,116,97,105, + 108,95,109,111,100,117,108,101,114,138,0,0,0,90,5,99, + 97,99,104,101,90,12,99,97,99,104,101,95,109,111,100,117, + 108,101,90,9,98,97,115,101,95,112,97,116,104,114,229,0, + 0,0,114,170,0,0,0,90,13,105,110,105,116,95,102,105, + 108,101,110,97,109,101,90,9,102,117,108,108,95,112,97,116, + 104,114,133,0,0,0,114,4,0,0,0,114,4,0,0,0, + 114,5,0,0,0,114,184,0,0,0,224,4,0,0,115,68, + 0,0,0,0,3,6,1,19,1,3,1,34,1,13,1,11, + 1,15,1,10,1,9,2,9,1,9,1,15,2,9,1,6, + 2,12,1,18,1,22,1,10,1,15,1,12,1,32,4,12, + 2,22,1,22,1,25,1,16,1,12,1,29,1,6,1,19, + 1,18,1,12,1,4,1,122,20,70,105,108,101,70,105,110, + 100,101,114,46,102,105,110,100,95,115,112,101,99,99,1,0, + 0,0,0,0,0,0,9,0,0,0,13,0,0,0,67,0, + 0,0,115,11,1,0,0,124,0,0,106,0,0,125,1,0, + 121,31,0,116,1,0,106,2,0,124,1,0,112,33,0,116, + 1,0,106,3,0,131,0,0,131,1,0,125,2,0,87,110, + 33,0,4,116,4,0,116,5,0,116,6,0,102,3,0,107, + 10,0,114,75,0,1,1,1,103,0,0,125,2,0,89,110, + 1,0,88,116,7,0,106,8,0,106,9,0,100,1,0,131, + 1,0,115,112,0,116,10,0,124,2,0,131,1,0,124,0, + 0,95,11,0,110,111,0,116,10,0,131,0,0,125,3,0, + 120,90,0,124,2,0,68,93,82,0,125,4,0,124,4,0, + 106,12,0,100,2,0,131,1,0,92,3,0,125,5,0,125, + 6,0,125,7,0,124,6,0,114,191,0,100,3,0,106,13, + 0,124,5,0,124,7,0,106,14,0,131,0,0,131,2,0, + 125,8,0,110,6,0,124,5,0,125,8,0,124,3,0,106, + 15,0,124,8,0,131,1,0,1,113,128,0,87,124,3,0, + 124,0,0,95,11,0,116,7,0,106,8,0,106,9,0,116, + 16,0,131,1,0,114,7,1,100,4,0,100,5,0,132,0, + 0,124,2,0,68,131,1,0,124,0,0,95,17,0,100,6, + 0,83,41,7,122,68,70,105,108,108,32,116,104,101,32,99, + 97,99,104,101,32,111,102,32,112,111,116,101,110,116,105,97, + 108,32,109,111,100,117,108,101,115,32,97,110,100,32,112,97, + 99,107,97,103,101,115,32,102,111,114,32,116,104,105,115,32, + 100,105,114,101,99,116,111,114,121,46,114,0,0,0,0,114, + 58,0,0,0,122,5,123,125,46,123,125,99,1,0,0,0, + 0,0,0,0,2,0,0,0,3,0,0,0,83,0,0,0, + 115,28,0,0,0,104,0,0,124,0,0,93,18,0,125,1, + 0,124,1,0,106,0,0,131,0,0,146,2,0,113,6,0, + 83,114,4,0,0,0,41,1,114,88,0,0,0,41,2,114, + 22,0,0,0,90,2,102,110,114,4,0,0,0,114,4,0, + 0,0,114,5,0,0,0,250,9,60,115,101,116,99,111,109, + 112,62,42,5,0,0,115,2,0,0,0,9,0,122,41,70, + 105,108,101,70,105,110,100,101,114,46,95,102,105,108,108,95, + 99,97,99,104,101,46,60,108,111,99,97,108,115,62,46,60, + 115,101,116,99,111,109,112,62,78,41,18,114,35,0,0,0, + 114,3,0,0,0,90,7,108,105,115,116,100,105,114,114,45, + 0,0,0,114,3,1,0,0,218,15,80,101,114,109,105,115, + 115,105,111,110,69,114,114,111,114,218,18,78,111,116,65,68, + 105,114,101,99,116,111,114,121,69,114,114,111,114,114,7,0, + 0,0,114,8,0,0,0,114,9,0,0,0,114,12,1,0, + 0,114,13,1,0,0,114,83,0,0,0,114,47,0,0,0, + 114,88,0,0,0,218,3,97,100,100,114,10,0,0,0,114, + 14,1,0,0,41,9,114,108,0,0,0,114,35,0,0,0, + 90,8,99,111,110,116,101,110,116,115,90,21,108,111,119,101, + 114,95,115,117,102,102,105,120,95,99,111,110,116,101,110,116, + 115,114,248,0,0,0,114,106,0,0,0,114,241,0,0,0, + 114,229,0,0,0,90,8,110,101,119,95,110,97,109,101,114, + 4,0,0,0,114,4,0,0,0,114,5,0,0,0,114,16, + 1,0,0,13,5,0,0,115,34,0,0,0,0,2,9,1, + 3,1,31,1,22,3,11,3,18,1,18,7,9,1,13,1, + 24,1,6,1,27,2,6,1,17,1,9,1,18,1,122,22, + 70,105,108,101,70,105,110,100,101,114,46,95,102,105,108,108, + 95,99,97,99,104,101,99,1,0,0,0,0,0,0,0,3, + 0,0,0,3,0,0,0,7,0,0,0,115,25,0,0,0, + 135,0,0,135,1,0,102,2,0,100,1,0,100,2,0,134, + 0,0,125,2,0,124,2,0,83,41,3,97,20,1,0,0, + 65,32,99,108,97,115,115,32,109,101,116,104,111,100,32,119, + 104,105,99,104,32,114,101,116,117,114,110,115,32,97,32,99, + 108,111,115,117,114,101,32,116,111,32,117,115,101,32,111,110, + 32,115,121,115,46,112,97,116,104,95,104,111,111,107,10,32, + 32,32,32,32,32,32,32,119,104,105,99,104,32,119,105,108, + 108,32,114,101,116,117,114,110,32,97,110,32,105,110,115,116, + 97,110,99,101,32,117,115,105,110,103,32,116,104,101,32,115, + 112,101,99,105,102,105,101,100,32,108,111,97,100,101,114,115, + 32,97,110,100,32,116,104,101,32,112,97,116,104,10,32,32, + 32,32,32,32,32,32,99,97,108,108,101,100,32,111,110,32, + 116,104,101,32,99,108,111,115,117,114,101,46,10,10,32,32, + 32,32,32,32,32,32,73,102,32,116,104,101,32,112,97,116, + 104,32,99,97,108,108,101,100,32,111,110,32,116,104,101,32, + 99,108,111,115,117,114,101,32,105,115,32,110,111,116,32,97, + 32,100,105,114,101,99,116,111,114,121,44,32,73,109,112,111, + 114,116,69,114,114,111,114,32,105,115,10,32,32,32,32,32, + 32,32,32,114,97,105,115,101,100,46,10,10,32,32,32,32, + 32,32,32,32,99,1,0,0,0,0,0,0,0,1,0,0, + 0,4,0,0,0,19,0,0,0,115,43,0,0,0,116,0, + 0,124,0,0,131,1,0,115,30,0,116,1,0,100,1,0, + 100,2,0,124,0,0,131,1,1,130,1,0,136,0,0,124, + 0,0,136,1,0,140,1,0,83,41,3,122,45,80,97,116, + 104,32,104,111,111,107,32,102,111,114,32,105,109,112,111,114, + 116,108,105,98,46,109,97,99,104,105,110,101,114,121,46,70, + 105,108,101,70,105,110,100,101,114,46,122,30,111,110,108,121, + 32,100,105,114,101,99,116,111,114,105,101,115,32,97,114,101, + 32,115,117,112,112,111,114,116,101,100,114,35,0,0,0,41, + 2,114,46,0,0,0,114,107,0,0,0,41,1,114,35,0, + 0,0,41,2,114,174,0,0,0,114,15,1,0,0,114,4, + 0,0,0,114,5,0,0,0,218,24,112,97,116,104,95,104, + 111,111,107,95,102,111,114,95,70,105,108,101,70,105,110,100, + 101,114,54,5,0,0,115,6,0,0,0,0,2,12,1,18, + 1,122,54,70,105,108,101,70,105,110,100,101,114,46,112,97, + 116,104,95,104,111,111,107,46,60,108,111,99,97,108,115,62, + 46,112,97,116,104,95,104,111,111,107,95,102,111,114,95,70, + 105,108,101,70,105,110,100,101,114,114,4,0,0,0,41,3, + 114,174,0,0,0,114,15,1,0,0,114,21,1,0,0,114, + 4,0,0,0,41,2,114,174,0,0,0,114,15,1,0,0, + 114,5,0,0,0,218,9,112,97,116,104,95,104,111,111,107, + 44,5,0,0,115,4,0,0,0,0,10,21,6,122,20,70, + 105,108,101,70,105,110,100,101,114,46,112,97,116,104,95,104, + 111,111,107,99,1,0,0,0,0,0,0,0,1,0,0,0, + 2,0,0,0,67,0,0,0,115,16,0,0,0,100,1,0, + 106,0,0,124,0,0,106,1,0,131,1,0,83,41,2,78, + 122,16,70,105,108,101,70,105,110,100,101,114,40,123,33,114, + 125,41,41,2,114,47,0,0,0,114,35,0,0,0,41,1, + 114,108,0,0,0,114,4,0,0,0,114,4,0,0,0,114, + 5,0,0,0,114,247,0,0,0,62,5,0,0,115,2,0, + 0,0,0,1,122,19,70,105,108,101,70,105,110,100,101,114, + 46,95,95,114,101,112,114,95,95,41,15,114,112,0,0,0, + 114,111,0,0,0,114,113,0,0,0,114,114,0,0,0,114, + 188,0,0,0,114,253,0,0,0,114,130,0,0,0,114,185, + 0,0,0,114,124,0,0,0,114,8,1,0,0,114,184,0, + 0,0,114,16,1,0,0,114,186,0,0,0,114,22,1,0, + 0,114,247,0,0,0,114,4,0,0,0,114,4,0,0,0, + 114,4,0,0,0,114,5,0,0,0,114,9,1,0,0,178, + 4,0,0,115,20,0,0,0,12,7,6,2,12,14,12,4, + 6,2,12,12,12,5,15,45,12,31,18,18,114,9,1,0, + 0,99,4,0,0,0,0,0,0,0,6,0,0,0,11,0, + 0,0,67,0,0,0,115,195,0,0,0,124,0,0,106,0, + 0,100,1,0,131,1,0,125,4,0,124,0,0,106,0,0, + 100,2,0,131,1,0,125,5,0,124,4,0,115,99,0,124, + 5,0,114,54,0,124,5,0,106,1,0,125,4,0,110,45, + 0,124,2,0,124,3,0,107,2,0,114,84,0,116,2,0, + 124,1,0,124,2,0,131,2,0,125,4,0,110,15,0,116, + 3,0,124,1,0,124,2,0,131,2,0,125,4,0,124,5, + 0,115,126,0,116,4,0,124,1,0,124,2,0,100,3,0, + 124,4,0,131,2,1,125,5,0,121,44,0,124,5,0,124, + 0,0,100,2,0,60,124,4,0,124,0,0,100,1,0,60, + 124,2,0,124,0,0,100,4,0,60,124,3,0,124,0,0, + 100,5,0,60,87,110,18,0,4,116,5,0,107,10,0,114, + 190,0,1,1,1,89,110,1,0,88,100,0,0,83,41,6, + 78,114,227,0,0,0,218,8,95,95,115,112,101,99,95,95, + 114,127,0,0,0,90,8,95,95,102,105,108,101,95,95,90, + 10,95,95,99,97,99,104,101,100,95,95,41,6,218,3,103, + 101,116,114,127,0,0,0,114,224,0,0,0,114,219,0,0, + 0,114,165,0,0,0,218,9,69,120,99,101,112,116,105,111, + 110,41,6,90,2,110,115,114,106,0,0,0,90,8,112,97, + 116,104,110,97,109,101,90,9,99,112,97,116,104,110,97,109, + 101,114,127,0,0,0,114,133,0,0,0,114,4,0,0,0, + 114,4,0,0,0,114,5,0,0,0,218,14,95,102,105,120, + 95,117,112,95,109,111,100,117,108,101,68,5,0,0,115,34, + 0,0,0,0,2,15,1,15,1,6,1,6,1,12,1,12, + 1,18,2,15,1,6,1,21,1,3,1,10,1,10,1,10, + 1,14,1,13,2,114,26,1,0,0,99,0,0,0,0,0, + 0,0,0,3,0,0,0,3,0,0,0,67,0,0,0,115, + 55,0,0,0,116,0,0,116,1,0,106,2,0,131,0,0, + 102,2,0,125,0,0,116,3,0,116,4,0,102,2,0,125, + 1,0,116,5,0,116,6,0,102,2,0,125,2,0,124,0, + 0,124,1,0,124,2,0,103,3,0,83,41,1,122,95,82, + 101,116,117,114,110,115,32,97,32,108,105,115,116,32,111,102, + 32,102,105,108,101,45,98,97,115,101,100,32,109,111,100,117, + 108,101,32,108,111,97,100,101,114,115,46,10,10,32,32,32, + 32,69,97,99,104,32,105,116,101,109,32,105,115,32,97,32, + 116,117,112,108,101,32,40,108,111,97,100,101,114,44,32,115, + 117,102,102,105,120,101,115,41,46,10,32,32,32,32,41,7, + 114,225,0,0,0,114,150,0,0,0,218,18,101,120,116,101, + 110,115,105,111,110,95,115,117,102,102,105,120,101,115,114,219, + 0,0,0,114,84,0,0,0,114,224,0,0,0,114,74,0, + 0,0,41,3,90,10,101,120,116,101,110,115,105,111,110,115, + 90,6,115,111,117,114,99,101,90,8,98,121,116,101,99,111, + 100,101,114,4,0,0,0,114,4,0,0,0,114,5,0,0, + 0,114,167,0,0,0,91,5,0,0,115,8,0,0,0,0, + 5,18,1,12,1,12,1,114,167,0,0,0,99,1,0,0, + 0,0,0,0,0,12,0,0,0,12,0,0,0,67,0,0, + 0,115,70,2,0,0,124,0,0,97,0,0,116,0,0,106, + 1,0,97,1,0,116,0,0,106,2,0,97,2,0,116,1, + 0,106,3,0,116,4,0,25,125,1,0,120,76,0,100,26, + 0,68,93,68,0,125,2,0,124,2,0,116,1,0,106,3, + 0,107,7,0,114,83,0,116,0,0,106,5,0,124,2,0, + 131,1,0,125,3,0,110,13,0,116,1,0,106,3,0,124, + 2,0,25,125,3,0,116,6,0,124,1,0,124,2,0,124, + 3,0,131,3,0,1,113,44,0,87,100,5,0,100,6,0, + 103,1,0,102,2,0,100,7,0,100,8,0,100,6,0,103, + 2,0,102,2,0,102,2,0,125,4,0,120,149,0,124,4, + 0,68,93,129,0,92,2,0,125,5,0,125,6,0,116,7, + 0,100,9,0,100,10,0,132,0,0,124,6,0,68,131,1, + 0,131,1,0,115,199,0,116,8,0,130,1,0,124,6,0, + 100,11,0,25,125,7,0,124,5,0,116,1,0,106,3,0, + 107,6,0,114,241,0,116,1,0,106,3,0,124,5,0,25, + 125,8,0,80,113,156,0,121,20,0,116,0,0,106,5,0, + 124,5,0,131,1,0,125,8,0,80,87,113,156,0,4,116, + 9,0,107,10,0,114,28,1,1,1,1,119,156,0,89,113, + 156,0,88,113,156,0,87,116,9,0,100,12,0,131,1,0, + 130,1,0,116,6,0,124,1,0,100,13,0,124,8,0,131, + 3,0,1,116,6,0,124,1,0,100,14,0,124,7,0,131, + 3,0,1,116,6,0,124,1,0,100,15,0,100,16,0,106, + 10,0,124,6,0,131,1,0,131,3,0,1,121,19,0,116, + 0,0,106,5,0,100,17,0,131,1,0,125,9,0,87,110, + 24,0,4,116,9,0,107,10,0,114,147,1,1,1,1,100, + 18,0,125,9,0,89,110,1,0,88,116,6,0,124,1,0, + 100,17,0,124,9,0,131,3,0,1,116,0,0,106,5,0, + 100,19,0,131,1,0,125,10,0,116,6,0,124,1,0,100, + 19,0,124,10,0,131,3,0,1,124,5,0,100,7,0,107, + 2,0,114,238,1,116,0,0,106,5,0,100,20,0,131,1, + 0,125,11,0,116,6,0,124,1,0,100,21,0,124,11,0, + 131,3,0,1,116,6,0,124,1,0,100,22,0,116,11,0, + 131,0,0,131,3,0,1,116,12,0,106,13,0,116,2,0, + 106,14,0,131,0,0,131,1,0,1,124,5,0,100,7,0, + 107,2,0,114,66,2,116,15,0,106,16,0,100,23,0,131, + 1,0,1,100,24,0,116,12,0,107,6,0,114,66,2,100, + 25,0,116,17,0,95,18,0,100,18,0,83,41,27,122,205, + 83,101,116,117,112,32,116,104,101,32,112,97,116,104,45,98, + 97,115,101,100,32,105,109,112,111,114,116,101,114,115,32,102, + 111,114,32,105,109,112,111,114,116,108,105,98,32,98,121,32, + 105,109,112,111,114,116,105,110,103,32,110,101,101,100,101,100, + 10,32,32,32,32,98,117,105,108,116,45,105,110,32,109,111, + 100,117,108,101,115,32,97,110,100,32,105,110,106,101,99,116, + 105,110,103,32,116,104,101,109,32,105,110,116,111,32,116,104, + 101,32,103,108,111,98,97,108,32,110,97,109,101,115,112,97, + 99,101,46,10,10,32,32,32,32,79,116,104,101,114,32,99, + 111,109,112,111,110,101,110,116,115,32,97,114,101,32,101,120, + 116,114,97,99,116,101,100,32,102,114,111,109,32,116,104,101, + 32,99,111,114,101,32,98,111,111,116,115,116,114,97,112,32, + 109,111,100,117,108,101,46,10,10,32,32,32,32,114,49,0, + 0,0,114,60,0,0,0,218,8,98,117,105,108,116,105,110, + 115,114,147,0,0,0,90,5,112,111,115,105,120,250,1,47, + 218,2,110,116,250,1,92,99,1,0,0,0,0,0,0,0, + 2,0,0,0,3,0,0,0,115,0,0,0,115,33,0,0, + 0,124,0,0,93,23,0,125,1,0,116,0,0,124,1,0, + 131,1,0,100,0,0,107,2,0,86,1,113,3,0,100,1, + 0,83,41,2,114,29,0,0,0,78,41,1,114,31,0,0, + 0,41,2,114,22,0,0,0,114,77,0,0,0,114,4,0, + 0,0,114,4,0,0,0,114,5,0,0,0,114,231,0,0, + 0,127,5,0,0,115,2,0,0,0,6,0,122,25,95,115, + 101,116,117,112,46,60,108,111,99,97,108,115,62,46,60,103, + 101,110,101,120,112,114,62,114,59,0,0,0,122,30,105,109, + 112,111,114,116,108,105,98,32,114,101,113,117,105,114,101,115, + 32,112,111,115,105,120,32,111,114,32,110,116,114,3,0,0, + 0,114,25,0,0,0,114,21,0,0,0,114,30,0,0,0, + 90,7,95,116,104,114,101,97,100,78,90,8,95,119,101,97, + 107,114,101,102,90,6,119,105,110,114,101,103,114,173,0,0, + 0,114,6,0,0,0,122,4,46,112,121,119,122,6,95,100, + 46,112,121,100,84,41,4,122,3,95,105,111,122,9,95,119, + 97,114,110,105,110,103,115,122,8,98,117,105,108,116,105,110, + 115,122,7,109,97,114,115,104,97,108,41,19,114,121,0,0, + 0,114,7,0,0,0,114,150,0,0,0,114,132,0,0,0, + 114,112,0,0,0,90,18,95,98,117,105,108,116,105,110,95, + 102,114,111,109,95,110,97,109,101,114,116,0,0,0,218,3, + 97,108,108,218,14,65,115,115,101,114,116,105,111,110,69,114, + 114,111,114,114,107,0,0,0,114,26,0,0,0,114,11,0, + 0,0,114,233,0,0,0,114,154,0,0,0,114,27,1,0, + 0,114,84,0,0,0,114,169,0,0,0,114,172,0,0,0, + 114,177,0,0,0,41,12,218,17,95,98,111,111,116,115,116, + 114,97,112,95,109,111,100,117,108,101,90,11,115,101,108,102, + 95,109,111,100,117,108,101,90,12,98,117,105,108,116,105,110, + 95,110,97,109,101,90,14,98,117,105,108,116,105,110,95,109, + 111,100,117,108,101,90,10,111,115,95,100,101,116,97,105,108, + 115,90,10,98,117,105,108,116,105,110,95,111,115,114,21,0, + 0,0,114,25,0,0,0,90,9,111,115,95,109,111,100,117, + 108,101,90,13,116,104,114,101,97,100,95,109,111,100,117,108, + 101,90,14,119,101,97,107,114,101,102,95,109,111,100,117,108, + 101,90,13,119,105,110,114,101,103,95,109,111,100,117,108,101, + 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, + 6,95,115,101,116,117,112,102,5,0,0,115,82,0,0,0, + 0,8,6,1,9,1,9,3,13,1,13,1,15,1,18,2, + 13,1,20,3,33,1,19,2,31,1,10,1,15,1,13,1, + 4,2,3,1,15,1,5,1,13,1,12,2,12,1,16,1, + 16,1,25,3,3,1,19,1,13,2,11,1,16,3,15,1, + 16,3,12,1,15,1,16,3,19,1,19,1,12,1,13,1, + 12,1,114,35,1,0,0,99,1,0,0,0,0,0,0,0, + 2,0,0,0,3,0,0,0,67,0,0,0,115,116,0,0, + 0,116,0,0,124,0,0,131,1,0,1,116,1,0,131,0, + 0,125,1,0,116,2,0,106,3,0,106,4,0,116,5,0, + 106,6,0,124,1,0,140,0,0,103,1,0,131,1,0,1, + 116,7,0,106,8,0,100,1,0,107,2,0,114,78,0,116, + 2,0,106,9,0,106,10,0,116,11,0,131,1,0,1,116, + 2,0,106,9,0,106,10,0,116,12,0,131,1,0,1,116, + 5,0,124,0,0,95,5,0,116,13,0,124,0,0,95,13, + 0,100,2,0,83,41,3,122,41,73,110,115,116,97,108,108, + 32,116,104,101,32,112,97,116,104,45,98,97,115,101,100,32, + 105,109,112,111,114,116,32,99,111,109,112,111,110,101,110,116, + 115,46,114,30,1,0,0,78,41,14,114,35,1,0,0,114, + 167,0,0,0,114,7,0,0,0,114,1,1,0,0,114,154, + 0,0,0,114,9,1,0,0,114,22,1,0,0,114,3,0, + 0,0,114,112,0,0,0,218,9,109,101,116,97,95,112,97, + 116,104,114,169,0,0,0,114,172,0,0,0,114,252,0,0, + 0,114,219,0,0,0,41,2,114,34,1,0,0,90,17,115, + 117,112,112,111,114,116,101,100,95,108,111,97,100,101,114,115, + 114,4,0,0,0,114,4,0,0,0,114,5,0,0,0,218, + 8,95,105,110,115,116,97,108,108,170,5,0,0,115,16,0, + 0,0,0,2,10,1,9,1,28,1,15,1,16,1,16,4, + 9,1,114,37,1,0,0,41,3,122,3,119,105,110,114,1, + 0,0,0,114,2,0,0,0,41,59,114,114,0,0,0,114, + 10,0,0,0,114,11,0,0,0,114,17,0,0,0,114,19, + 0,0,0,114,28,0,0,0,114,38,0,0,0,114,39,0, + 0,0,114,43,0,0,0,114,44,0,0,0,114,46,0,0, + 0,114,55,0,0,0,218,4,116,121,112,101,218,8,95,95, + 99,111,100,101,95,95,114,149,0,0,0,114,15,0,0,0, + 114,140,0,0,0,114,14,0,0,0,114,18,0,0,0,90, + 17,95,82,65,87,95,77,65,71,73,67,95,78,85,77,66, + 69,82,114,73,0,0,0,114,72,0,0,0,114,84,0,0, + 0,114,74,0,0,0,90,23,68,69,66,85,71,95,66,89, + 84,69,67,79,68,69,95,83,85,70,70,73,88,69,83,90, + 27,79,80,84,73,77,73,90,69,68,95,66,89,84,69,67, + 79,68,69,95,83,85,70,70,73,88,69,83,114,79,0,0, + 0,114,85,0,0,0,114,91,0,0,0,114,95,0,0,0, + 114,97,0,0,0,114,105,0,0,0,114,123,0,0,0,114, + 130,0,0,0,114,135,0,0,0,114,146,0,0,0,114,152, + 0,0,0,114,155,0,0,0,114,160,0,0,0,114,131,0, + 0,0,218,6,111,98,106,101,99,116,114,168,0,0,0,114, + 165,0,0,0,114,172,0,0,0,114,187,0,0,0,114,195, + 0,0,0,114,211,0,0,0,114,219,0,0,0,114,224,0, + 0,0,114,233,0,0,0,114,225,0,0,0,114,234,0,0, + 0,114,250,0,0,0,114,252,0,0,0,114,9,1,0,0, + 114,26,1,0,0,114,167,0,0,0,114,35,1,0,0,114, + 37,1,0,0,114,4,0,0,0,114,4,0,0,0,114,4, + 0,0,0,114,5,0,0,0,218,8,60,109,111,100,117,108, + 101,62,8,0,0,0,115,104,0,0,0,6,17,6,3,12, + 12,12,5,12,5,12,6,12,12,12,10,12,9,12,5,12, + 7,15,22,15,107,22,1,18,2,6,1,6,2,9,2,9, + 2,10,2,21,44,12,33,12,19,12,12,12,12,18,8,12, + 27,12,18,12,15,21,55,21,12,18,10,12,14,24,22,9, + 3,12,1,15,65,19,63,19,27,22,110,19,41,25,43,25, + 16,6,3,19,57,19,57,19,41,19,134,19,146,15,23,12, + 11,12,68, +}; diff --git a/Python/pystrhex.c b/Python/pystrhex.c deleted file mode 100644 --- a/Python/pystrhex.c +++ /dev/null @@ -1,61 +0,0 @@ -/* bytes to hex implementation */ - -#include "Python.h" - -static PyObject *_Py_strhex_impl(const char* argbuf, const Py_ssize_t arglen, - int return_bytes) -{ - PyObject *retval; - Py_UCS1* retbuf; - Py_ssize_t i, j; - - assert(arglen >= 0); - if (arglen > PY_SSIZE_T_MAX / 2) - return PyErr_NoMemory(); - - if (return_bytes) { - /* If _PyBytes_FromSize() were public we could avoid malloc+copy. */ - retbuf = (Py_UCS1*) PyMem_Malloc(arglen*2); - if (!retbuf) - return PyErr_NoMemory(); - retval = NULL; /* silence a compiler warning, assigned later. */ - } else { - retval = PyUnicode_New(arglen*2, 127); - if (!retval) - return NULL; - retbuf = PyUnicode_1BYTE_DATA(retval); - } - - /* make hex version of string, taken from shamodule.c */ - for (i=j=0; i < arglen; i++) { - unsigned char c; - c = (argbuf[i] >> 4) & 0xf; - retbuf[j++] = Py_hexdigits[c]; - c = argbuf[i] & 0xf; - retbuf[j++] = Py_hexdigits[c]; - } - - if (return_bytes) { - retval = PyBytes_FromStringAndSize((const char *)retbuf, arglen*2); - PyMem_Free(retbuf); - } -#ifdef Py_DEBUG - else { - assert(_PyUnicode_CheckConsistency(retval, 1)); - } -#endif - - return retval; -} - -PyAPI_FUNC(PyObject *) _Py_strhex(const char* argbuf, const Py_ssize_t arglen) -{ - return _Py_strhex_impl(argbuf, arglen, 0); -} - -/* Same as above but returns a bytes() instead of str() to avoid the - * need to decode the str() when bytes are needed. */ -PyAPI_FUNC(PyObject *) _Py_strhex_bytes(const char* argbuf, const Py_ssize_t arglen) -{ - return _Py_strhex_impl(argbuf, arglen, 1); -} diff --git a/Python/pythonrun.c b/Python/pythonrun.c --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -304,7 +304,7 @@ { PyInterpreterState *interp; PyThreadState *tstate; - PyObject *filename_obj, *loader_type, *loader; + PyObject *filename_obj, *bootstrap, *loader_type = NULL, *loader; int result = 0; filename_obj = PyUnicode_DecodeFSDefault(filename); @@ -313,7 +313,12 @@ /* Get current thread state and interpreter pointer */ tstate = PyThreadState_GET(); interp = tstate->interp; - loader_type = PyObject_GetAttrString(interp->importlib, loader_name); + bootstrap = PyObject_GetAttrString(interp->importlib, + "_bootstrap_external"); + if (bootstrap != NULL) { + loader_type = PyObject_GetAttrString(bootstrap, loader_name); + Py_DECREF(bootstrap); + } if (loader_type == NULL) { Py_DECREF(filename_obj); return -1; diff --git a/Python/symtable.c b/Python/symtable.c --- a/Python/symtable.c +++ b/Python/symtable.c @@ -47,6 +47,7 @@ ste->ste_directives = NULL; ste->ste_type = block; + ste->ste_unoptimized = 0; ste->ste_nested = 0; ste->ste_free = 0; ste->ste_varargs = 0; @@ -112,6 +113,7 @@ {"symbols", T_OBJECT, OFF(ste_symbols), READONLY}, {"varnames", T_OBJECT, OFF(ste_varnames), READONLY}, {"children", T_OBJECT, OFF(ste_children), READONLY}, + {"optimized",T_INT, OFF(ste_unoptimized), READONLY}, {"nested", T_INT, OFF(ste_nested), READONLY}, {"type", T_INT, OFF(ste_type), READONLY}, {"lineno", T_INT, OFF(ste_lineno), READONLY}, @@ -269,6 +271,7 @@ } st->st_top = st->st_cur; + st->st_cur->ste_unoptimized = OPT_TOPLEVEL; switch (mod->kind) { case Module_kind: seq = mod->v.Module.body; @@ -580,6 +583,35 @@ return 1; } +/* Check for illegal statements in unoptimized namespaces */ +static int +check_unoptimized(const PySTEntryObject* ste) { + const char* trailer; + + if (ste->ste_type != FunctionBlock || !ste->ste_unoptimized + || !(ste->ste_free || ste->ste_child_free)) + return 1; + + trailer = (ste->ste_child_free ? + "contains a nested function with free variables" : + "is a nested function"); + + switch (ste->ste_unoptimized) { + case OPT_TOPLEVEL: /* import * at top-level is fine */ + return 1; + case OPT_IMPORT_STAR: + PyErr_Format(PyExc_SyntaxError, + "import * is not allowed in function '%U' because it %s", + ste->ste_name, trailer); + break; + } + + PyErr_SyntaxLocationObject(ste->ste_table->st_filename, + ste->ste_opt_lineno, + ste->ste_opt_col_offset); + return 0; +} + /* Enter the final scope information into the ste_symbols dict. * * All arguments are dicts. Modifies symbols, others are read-only. @@ -822,6 +854,8 @@ if (!update_symbols(ste->ste_symbols, scopes, bound, newfree, ste->ste_type == ClassBlock)) goto error; + if (!check_unoptimized(ste)) + goto error; temp = PyNumber_InPlaceOr(free, newfree); if (!temp) @@ -1242,9 +1276,21 @@ break; case Import_kind: VISIT_SEQ(st, alias, s->v.Import.names); + /* XXX Don't have the lineno available inside + visit_alias */ + if (st->st_cur->ste_unoptimized && !st->st_cur->ste_opt_lineno) { + st->st_cur->ste_opt_lineno = s->lineno; + st->st_cur->ste_opt_col_offset = s->col_offset; + } break; case ImportFrom_kind: VISIT_SEQ(st, alias, s->v.ImportFrom.names); + /* XXX Don't have the lineno available inside + visit_alias */ + if (st->st_cur->ste_unoptimized && !st->st_cur->ste_opt_lineno) { + st->st_cur->ste_opt_lineno = s->lineno; + st->st_cur->ste_opt_col_offset = s->col_offset; + } break; case Global_kind: { int i; @@ -1600,6 +1646,7 @@ Py_DECREF(store_name); return 0; } + st->st_cur->ste_unoptimized |= OPT_IMPORT_STAR; Py_DECREF(store_name); return 1; } diff --git a/README b/README --- a/README +++ b/README @@ -1,4 +1,4 @@ -This is Python version 3.5.0 alpha 4 +This is Python version 3.5.0 alpha 3 ==================================== Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, diff --git a/Tools/clinic/clinic.py b/Tools/clinic/clinic.py --- a/Tools/clinic/clinic.py +++ b/Tools/clinic/clinic.py @@ -786,7 +786,9 @@ """ % argname) parser_definition = parser_body(parser_prototype, normalize_snippet(""" - if (!PyArg_Parse(%s, "{format_units}:{name}", {parse_arguments})) + if (!PyArg_Parse(%s, + "{format_units}:{name}", + {parse_arguments})) goto exit; """ % argname, indent=4)) @@ -823,7 +825,8 @@ parser_prototype = parser_prototype_varargs parser_definition = parser_body(parser_prototype, normalize_snippet(""" - if (!PyArg_ParseTuple(args, "{format_units}:{name}", + if (!PyArg_ParseTuple(args, + "{format_units}:{name}", {parse_arguments})) goto exit; """, indent=4)) @@ -835,12 +838,14 @@ parser_prototype = parser_prototype_keyword body = normalize_snippet(""" - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "{format_units}:{name}", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "{format_units}:{name}", _keywords, {parse_arguments})) goto exit; """, indent=4) parser_definition = parser_body(parser_prototype, normalize_snippet(""" - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "{format_units}:{name}", _keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "{format_units}:{name}", _keywords, {parse_arguments})) goto exit; """, indent=4)) diff --git a/Tools/freeze/freeze.py b/Tools/freeze/freeze.py --- a/Tools/freeze/freeze.py +++ b/Tools/freeze/freeze.py @@ -366,8 +366,10 @@ mf.load_file(mod) # Alias "importlib._bootstrap" to "_frozen_importlib" so that the - # import machinery can bootstrap. + # import machinery can bootstrap. Do the same for + # importlib._bootstrap_external. mf.modules["_frozen_importlib"] = mf.modules["importlib._bootstrap"] + mf.modules["_frozen_importlib_external"] = mf.modules["importlib._bootstrap_external"] # Add the main script as either __main__, or the actual module name. if python_entry_is_main: diff --git a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp --- a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp +++ b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp @@ -2343,7 +2343,7 @@ return FALSE; } - // Check whether at least CRT v10.0.9924.0 is available. + // Check whether at least CRT v10.0.9920.0 is available. // It should only be installed as a Windows Update package, which means // we don't need to worry about 32-bit/64-bit. // However, since the WU package does not include vcruntime140.dll, we @@ -2373,7 +2373,7 @@ BOOL result = FALSE; if (VerQueryValueW(pData, L"\\", (LPVOID*)&ffi, &cb) && - ffi->dwFileVersionMS == 0x000A0000 && ffi->dwFileVersionLS >= 0x26C40000) { + ffi->dwFileVersionMS == 0x000A0000 && ffi->dwFileVersionLS >= 0x26C00000) { result = TRUE; } diff --git a/Tools/msi/make_zip.proj b/Tools/msi/make_zip.proj --- a/Tools/msi/make_zip.proj +++ b/Tools/msi/make_zip.proj @@ -9,9 +9,8 @@ - false python-$(PythonVersion)-embed-$(ArchName) - .zip + .exe $(OutputPath)\en-us\$(TargetName)$(TargetExt) "$(PythonExe)" "$(MSBuildThisFileDirectory)\make_zip.py" $(Arguments) -e -o "$(TargetPath)" -t "$(IntermediateOutputPath)\zip_$(ArchName)" -a $(ArchName) diff --git a/Tools/msi/make_zip.py b/Tools/msi/make_zip.py --- a/Tools/msi/make_zip.py +++ b/Tools/msi/make_zip.py @@ -14,19 +14,7 @@ PYTHON_DLL_RE = re.compile(r'python\d\d?\.dll$', re.IGNORECASE) def is_not_debug(p): - if DEBUG_RE.search(p.name): - return False - - if TKTCL_RE.search(p.name): - return False - - return p.name.lower() not in { - '_ctypes_test.pyd', - '_testbuffer.pyd', - '_testcapi.pyd', - '_testimportmultiple.pyd', - 'xxlimited.pyd', - } + return not DEBUG_RE.search(p.name) and not TKTCL_RE.search(p.name) def is_not_debug_or_python(p): return is_not_debug(p) and not PYTHON_DLL_RE.search(p.name) @@ -43,6 +31,14 @@ return True suffix = p.suffix.lower() + if suffix == '.pyd': + return name not in { + '_ctypes_test.pyd', + '_testbuffer.pyd', + '_testcapi.pyd', + '_testimportmultiple.pyd', + 'xxlimited.pyd', + } return suffix not in {'.pyc', '.pyo'} def include_in_tools(p): @@ -157,7 +153,8 @@ subprocess.check_call([ str(rar), "a", - "-ed", "-ep1", "-s", "-r", + "-m5", "-ed", "-ep1", "-s", "-r", + "-sfxwincon.sfx", str(out), str(temp / '*') ]) diff --git a/Tools/msi/msi.props b/Tools/msi/msi.props --- a/Tools/msi/msi.props +++ b/Tools/msi/msi.props @@ -147,9 +147,7 @@ <_GenerateCommand>import uuid; print('\n'.join('{}={}'.format(i, uuid.uuid5(uuid.UUID('c8d9733e-a70c-43ff-ab0c-e26456f11083'), '$(ReleaseUri)' + j)) for i,j in [$(_Uuids.Replace(`"`,`'`))])) - + diff --git a/Tools/scripts/patchcheck.py b/Tools/scripts/patchcheck.py --- a/Tools/scripts/patchcheck.py +++ b/Tools/scripts/patchcheck.py @@ -49,31 +49,15 @@ @status("Getting the list of files that have been added/changed", info=lambda x: n_files_str(len(x))) def changed_files(): - """Get the list of changed or added files from Mercurial or git.""" - if os.path.isdir(os.path.join(SRCDIR, '.hg')): - cmd = 'hg status --added --modified --no-status' - if mq_patches_applied(): - cmd += ' --rev qparent' - with subprocess.Popen(cmd.split(), stdout=subprocess.PIPE) as st: - return [x.decode().rstrip() for x in st.stdout] - elif os.path.isdir(os.path.join(SRCDIR, '.git')): - cmd = 'git status --porcelain' - filenames = [] - with subprocess.Popen(cmd.split(), stdout=subprocess.PIPE) as st: - for line in st.stdout: - line = line.decode().rstrip() - status = set(line[:2]) - # modified, added or unmerged files - if not status.intersection('MAU'): - continue - filename = line[3:] - if ' -> ' in filename: - # file is renamed - filename = filename.split(' -> ', 2)[1].strip() - filenames.append(filename) - return filenames - else: - sys.exit('need a Mercurial or git checkout to get modified files') + """Get the list of changed or added files from Mercurial.""" + if not os.path.isdir(os.path.join(SRCDIR, '.hg')): + sys.exit('need a checkout to get modified files') + + cmd = 'hg status --added --modified --no-status' + if mq_patches_applied(): + cmd += ' --rev qparent' + with subprocess.Popen(cmd.split(), stdout=subprocess.PIPE) as st: + return [x.decode().rstrip() for x in st.stdout] def report_modified_files(file_paths):