mirror of
https://github.com/python/cpython.git
synced 2025-09-29 11:45:57 +00:00
[3.6] bpo-30876: Relative import from unloaded package now reimports the package (GH-2639) (#2676)
instead of failing with SystemError.
Relative import from non-package now fails with ImportError rather than
SystemError.
(cherry picked from commit 8a9cd20edc
)
This commit is contained in:
parent
65de1f3672
commit
28343e3392
8 changed files with 381 additions and 379 deletions
|
@ -919,10 +919,6 @@ def _sanity_check(name, package, level):
|
||||||
elif not package:
|
elif not package:
|
||||||
raise ImportError('attempted relative import with no known parent '
|
raise ImportError('attempted relative import with no known parent '
|
||||||
'package')
|
'package')
|
||||||
elif package not in sys.modules:
|
|
||||||
msg = ('Parent module {!r} not loaded, cannot perform relative '
|
|
||||||
'import')
|
|
||||||
raise SystemError(msg.format(package))
|
|
||||||
if not name and level == 0:
|
if not name and level == 0:
|
||||||
raise ValueError('Empty module name')
|
raise ValueError('Empty module name')
|
||||||
|
|
||||||
|
|
|
@ -24,8 +24,9 @@ from test.support import (
|
||||||
EnvironmentVarGuard, TESTFN, check_warnings, forget, is_jython,
|
EnvironmentVarGuard, TESTFN, check_warnings, forget, is_jython,
|
||||||
make_legacy_pyc, rmtree, run_unittest, swap_attr, swap_item, temp_umask,
|
make_legacy_pyc, rmtree, run_unittest, swap_attr, swap_item, temp_umask,
|
||||||
unlink, unload, create_empty_file, cpython_only, TESTFN_UNENCODABLE,
|
unlink, unload, create_empty_file, cpython_only, TESTFN_UNENCODABLE,
|
||||||
temp_dir)
|
temp_dir, DirsOnSysPath)
|
||||||
from test.support import script_helper
|
from test.support import script_helper
|
||||||
|
from test.test_importlib.util import uncache
|
||||||
|
|
||||||
|
|
||||||
skip_if_dont_write_bytecode = unittest.skipIf(
|
skip_if_dont_write_bytecode = unittest.skipIf(
|
||||||
|
@ -640,11 +641,11 @@ class RelativeImportTests(unittest.TestCase):
|
||||||
|
|
||||||
# Check relative import fails with only __package__ wrong
|
# Check relative import fails with only __package__ wrong
|
||||||
ns = dict(__package__='foo', __name__='test.notarealmodule')
|
ns = dict(__package__='foo', __name__='test.notarealmodule')
|
||||||
self.assertRaises(SystemError, check_relative)
|
self.assertRaises(ModuleNotFoundError, check_relative)
|
||||||
|
|
||||||
# Check relative import fails with __package__ and __name__ wrong
|
# Check relative import fails with __package__ and __name__ wrong
|
||||||
ns = dict(__package__='foo', __name__='notarealpkg.notarealmodule')
|
ns = dict(__package__='foo', __name__='notarealpkg.notarealmodule')
|
||||||
self.assertRaises(SystemError, check_relative)
|
self.assertRaises(ModuleNotFoundError, check_relative)
|
||||||
|
|
||||||
# Check relative import fails with package set to a non-string
|
# Check relative import fails with package set to a non-string
|
||||||
ns = dict(__package__=object())
|
ns = dict(__package__=object())
|
||||||
|
@ -659,6 +660,20 @@ class RelativeImportTests(unittest.TestCase):
|
||||||
self.fail("explicit relative import triggered an "
|
self.fail("explicit relative import triggered an "
|
||||||
"implicit absolute import")
|
"implicit absolute import")
|
||||||
|
|
||||||
|
def test_import_from_non_package(self):
|
||||||
|
path = os.path.join(os.path.dirname(__file__), 'data', 'package2')
|
||||||
|
with uncache('submodule1', 'submodule2'), DirsOnSysPath(path):
|
||||||
|
with self.assertRaises(ImportError):
|
||||||
|
import submodule1
|
||||||
|
self.assertNotIn('submodule1', sys.modules)
|
||||||
|
self.assertNotIn('submodule2', sys.modules)
|
||||||
|
|
||||||
|
def test_import_from_unloaded_package(self):
|
||||||
|
with uncache('package2', 'package2.submodule1', 'package2.submodule2'), \
|
||||||
|
DirsOnSysPath(os.path.join(os.path.dirname(__file__), 'data')):
|
||||||
|
import package2.submodule1
|
||||||
|
package2.submodule1.submodule2
|
||||||
|
|
||||||
|
|
||||||
class OverridingImportBuiltinTests(unittest.TestCase):
|
class OverridingImportBuiltinTests(unittest.TestCase):
|
||||||
def test_override_builtin(self):
|
def test_override_builtin(self):
|
||||||
|
|
3
Lib/test/test_import/data/package2/submodule1.py
Normal file
3
Lib/test/test_import/data/package2/submodule1.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
import sys
|
||||||
|
sys.modules.pop(__package__, None)
|
||||||
|
from . import submodule2
|
0
Lib/test/test_import/data/package2/submodule2.py
Normal file
0
Lib/test/test_import/data/package2/submodule2.py
Normal file
|
@ -81,7 +81,7 @@ class Using__package__:
|
||||||
|
|
||||||
def test_bad__package__(self):
|
def test_bad__package__(self):
|
||||||
globals = {'__package__': '<not real>'}
|
globals = {'__package__': '<not real>'}
|
||||||
with self.assertRaises(SystemError):
|
with self.assertRaises(ModuleNotFoundError):
|
||||||
self.__import__('', globals, {}, ['relimport'], 1)
|
self.__import__('', globals, {}, ['relimport'], 1)
|
||||||
|
|
||||||
def test_bunk__package__(self):
|
def test_bunk__package__(self):
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
Relative import from unloaded package now reimports the package instead of
|
||||||
|
failing with SystemError. Relative import from non-package now fails with
|
||||||
|
ImportError rather than SystemError.
|
|
@ -1345,7 +1345,6 @@ resolve_name(PyObject *name, PyObject *globals, int level)
|
||||||
PyObject *abs_name;
|
PyObject *abs_name;
|
||||||
PyObject *package = NULL;
|
PyObject *package = NULL;
|
||||||
PyObject *spec;
|
PyObject *spec;
|
||||||
PyInterpreterState *interp = PyThreadState_GET()->interp;
|
|
||||||
Py_ssize_t last_dot;
|
Py_ssize_t last_dot;
|
||||||
PyObject *base;
|
PyObject *base;
|
||||||
int level_up;
|
int level_up;
|
||||||
|
@ -1449,12 +1448,6 @@ resolve_name(PyObject *name, PyObject *globals, int level)
|
||||||
"attempted relative import with no known parent package");
|
"attempted relative import with no known parent package");
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
else if (PyDict_GetItem(interp->modules, package) == NULL) {
|
|
||||||
PyErr_Format(PyExc_SystemError,
|
|
||||||
"Parent module %R not loaded, cannot perform relative "
|
|
||||||
"import", package);
|
|
||||||
goto error;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (level_up = 1; level_up < level; level_up += 1) {
|
for (level_up = 1; level_up < level; level_up += 1) {
|
||||||
last_dot = PyUnicode_FindChar(package, '.', 0, last_dot, -1);
|
last_dot = PyUnicode_FindChar(package, '.', 0, last_dot, -1);
|
||||||
|
|
|
@ -1442,371 +1442,363 @@ const unsigned char _Py_M__importlib[] = {
|
||||||
12,5,10,1,10,1,8,1,2,1,10,1,14,1,12,1,
|
12,5,10,1,10,1,8,1,2,1,10,1,14,1,12,1,
|
||||||
8,1,8,2,22,1,8,2,16,1,10,1,2,1,10,1,
|
8,1,8,2,22,1,8,2,16,1,10,1,2,1,10,1,
|
||||||
14,4,6,2,8,1,4,2,6,2,8,2,114,170,0,0,
|
14,4,6,2,8,1,4,2,6,2,8,2,114,170,0,0,
|
||||||
0,99,3,0,0,0,0,0,0,0,4,0,0,0,4,0,
|
0,99,3,0,0,0,0,0,0,0,3,0,0,0,4,0,
|
||||||
0,0,67,0,0,0,115,140,0,0,0,116,0,124,0,116,
|
0,0,67,0,0,0,115,110,0,0,0,116,0,124,0,116,
|
||||||
1,131,2,115,28,116,2,100,1,106,3,116,4,124,0,131,
|
1,131,2,115,28,116,2,100,1,106,3,116,4,124,0,131,
|
||||||
1,131,1,131,1,130,1,124,2,100,2,107,0,114,44,116,
|
1,131,1,131,1,130,1,124,2,100,2,107,0,114,44,116,
|
||||||
5,100,3,131,1,130,1,124,2,100,2,107,4,114,114,116,
|
5,100,3,131,1,130,1,124,2,100,2,107,4,114,84,116,
|
||||||
0,124,1,116,1,131,2,115,72,116,2,100,4,131,1,130,
|
0,124,1,116,1,131,2,115,72,116,2,100,4,131,1,130,
|
||||||
1,110,42,124,1,115,86,116,6,100,5,131,1,130,1,110,
|
1,110,12,124,1,115,84,116,6,100,5,131,1,130,1,124,
|
||||||
28,124,1,116,7,106,8,107,7,114,114,100,6,125,3,116,
|
0,12,0,114,106,124,2,100,2,107,2,114,106,116,5,100,
|
||||||
9,124,3,106,3,124,1,131,1,131,1,130,1,124,0,12,
|
6,131,1,130,1,100,7,83,0,41,8,122,28,86,101,114,
|
||||||
0,114,136,124,2,100,2,107,2,114,136,116,5,100,7,131,
|
105,102,121,32,97,114,103,117,109,101,110,116,115,32,97,114,
|
||||||
1,130,1,100,8,83,0,41,9,122,28,86,101,114,105,102,
|
101,32,34,115,97,110,101,34,46,122,31,109,111,100,117,108,
|
||||||
121,32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,
|
101,32,110,97,109,101,32,109,117,115,116,32,98,101,32,115,
|
||||||
34,115,97,110,101,34,46,122,31,109,111,100,117,108,101,32,
|
116,114,44,32,110,111,116,32,123,125,114,19,0,0,0,122,
|
||||||
110,97,109,101,32,109,117,115,116,32,98,101,32,115,116,114,
|
18,108,101,118,101,108,32,109,117,115,116,32,98,101,32,62,
|
||||||
44,32,110,111,116,32,123,125,114,19,0,0,0,122,18,108,
|
61,32,48,122,31,95,95,112,97,99,107,97,103,101,95,95,
|
||||||
101,118,101,108,32,109,117,115,116,32,98,101,32,62,61,32,
|
32,110,111,116,32,115,101,116,32,116,111,32,97,32,115,116,
|
||||||
48,122,31,95,95,112,97,99,107,97,103,101,95,95,32,110,
|
114,105,110,103,122,54,97,116,116,101,109,112,116,101,100,32,
|
||||||
111,116,32,115,101,116,32,116,111,32,97,32,115,116,114,105,
|
114,101,108,97,116,105,118,101,32,105,109,112,111,114,116,32,
|
||||||
110,103,122,54,97,116,116,101,109,112,116,101,100,32,114,101,
|
119,105,116,104,32,110,111,32,107,110,111,119,110,32,112,97,
|
||||||
108,97,116,105,118,101,32,105,109,112,111,114,116,32,119,105,
|
114,101,110,116,32,112,97,99,107,97,103,101,122,17,69,109,
|
||||||
116,104,32,110,111,32,107,110,111,119,110,32,112,97,114,101,
|
112,116,121,32,109,111,100,117,108,101,32,110,97,109,101,78,
|
||||||
110,116,32,112,97,99,107,97,103,101,122,61,80,97,114,101,
|
41,7,218,10,105,115,105,110,115,116,97,110,99,101,218,3,
|
||||||
110,116,32,109,111,100,117,108,101,32,123,33,114,125,32,110,
|
115,116,114,218,9,84,121,112,101,69,114,114,111,114,114,38,
|
||||||
111,116,32,108,111,97,100,101,100,44,32,99,97,110,110,111,
|
0,0,0,114,13,0,0,0,114,160,0,0,0,114,71,0,
|
||||||
116,32,112,101,114,102,111,114,109,32,114,101,108,97,116,105,
|
0,0,41,3,114,15,0,0,0,114,161,0,0,0,114,162,
|
||||||
118,101,32,105,109,112,111,114,116,122,17,69,109,112,116,121,
|
0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,0,
|
||||||
32,109,111,100,117,108,101,32,110,97,109,101,78,41,10,218,
|
0,0,218,13,95,115,97,110,105,116,121,95,99,104,101,99,
|
||||||
10,105,115,105,110,115,116,97,110,99,101,218,3,115,116,114,
|
107,142,3,0,0,115,22,0,0,0,0,2,10,1,18,1,
|
||||||
218,9,84,121,112,101,69,114,114,111,114,114,38,0,0,0,
|
8,1,8,1,8,1,10,1,10,1,4,1,8,2,14,1,
|
||||||
114,13,0,0,0,114,160,0,0,0,114,71,0,0,0,114,
|
114,174,0,0,0,122,16,78,111,32,109,111,100,117,108,101,
|
||||||
14,0,0,0,114,80,0,0,0,218,11,83,121,115,116,101,
|
32,110,97,109,101,100,32,122,4,123,33,114,125,99,2,0,
|
||||||
109,69,114,114,111,114,41,4,114,15,0,0,0,114,161,0,
|
0,0,0,0,0,0,8,0,0,0,12,0,0,0,67,0,
|
||||||
0,0,114,162,0,0,0,114,139,0,0,0,114,10,0,0,
|
0,0,115,220,0,0,0,100,0,125,2,124,0,106,0,100,
|
||||||
0,114,10,0,0,0,114,11,0,0,0,218,13,95,115,97,
|
1,131,1,100,2,25,0,125,3,124,3,114,134,124,3,116,
|
||||||
110,105,116,121,95,99,104,101,99,107,142,3,0,0,115,28,
|
1,106,2,107,7,114,42,116,3,124,1,124,3,131,2,1,
|
||||||
0,0,0,0,2,10,1,18,1,8,1,8,1,8,1,10,
|
0,124,0,116,1,106,2,107,6,114,62,116,1,106,2,124,
|
||||||
1,10,1,4,1,10,2,10,1,4,2,14,1,14,1,114,
|
0,25,0,83,0,116,1,106,2,124,3,25,0,125,4,121,
|
||||||
175,0,0,0,122,16,78,111,32,109,111,100,117,108,101,32,
|
10,124,4,106,4,125,2,87,0,110,50,4,0,116,5,107,
|
||||||
110,97,109,101,100,32,122,4,123,33,114,125,99,2,0,0,
|
10,114,132,1,0,1,0,1,0,116,6,100,3,23,0,106,
|
||||||
0,0,0,0,0,8,0,0,0,12,0,0,0,67,0,0,
|
7,124,0,124,3,131,2,125,5,116,8,124,5,124,0,100,
|
||||||
0,115,220,0,0,0,100,0,125,2,124,0,106,0,100,1,
|
4,141,2,100,0,130,2,89,0,110,2,88,0,116,9,124,
|
||||||
131,1,100,2,25,0,125,3,124,3,114,134,124,3,116,1,
|
0,124,2,131,2,125,6,124,6,100,0,107,8,114,172,116,
|
||||||
106,2,107,7,114,42,116,3,124,1,124,3,131,2,1,0,
|
8,116,6,106,7,124,0,131,1,124,0,100,4,141,2,130,
|
||||||
124,0,116,1,106,2,107,6,114,62,116,1,106,2,124,0,
|
1,110,8,116,10,124,6,131,1,125,7,124,3,114,216,116,
|
||||||
25,0,83,0,116,1,106,2,124,3,25,0,125,4,121,10,
|
1,106,2,124,3,25,0,125,4,116,11,124,4,124,0,106,
|
||||||
124,4,106,4,125,2,87,0,110,50,4,0,116,5,107,10,
|
0,100,1,131,1,100,5,25,0,124,7,131,3,1,0,124,
|
||||||
114,132,1,0,1,0,1,0,116,6,100,3,23,0,106,7,
|
7,83,0,41,6,78,114,118,0,0,0,114,19,0,0,0,
|
||||||
124,0,124,3,131,2,125,5,116,8,124,5,124,0,100,4,
|
122,23,59,32,123,33,114,125,32,105,115,32,110,111,116,32,
|
||||||
141,2,100,0,130,2,89,0,110,2,88,0,116,9,124,0,
|
97,32,112,97,99,107,97,103,101,41,1,114,15,0,0,0,
|
||||||
124,2,131,2,125,6,124,6,100,0,107,8,114,172,116,8,
|
233,2,0,0,0,41,12,114,119,0,0,0,114,14,0,0,
|
||||||
116,6,106,7,124,0,131,1,124,0,100,4,141,2,130,1,
|
0,114,80,0,0,0,114,59,0,0,0,114,128,0,0,0,
|
||||||
110,8,116,10,124,6,131,1,125,7,124,3,114,216,116,1,
|
114,91,0,0,0,218,8,95,69,82,82,95,77,83,71,114,
|
||||||
106,2,124,3,25,0,125,4,116,11,124,4,124,0,106,0,
|
38,0,0,0,218,19,77,111,100,117,108,101,78,111,116,70,
|
||||||
100,1,131,1,100,5,25,0,124,7,131,3,1,0,124,7,
|
111,117,110,100,69,114,114,111,114,114,170,0,0,0,114,141,
|
||||||
83,0,41,6,78,114,118,0,0,0,114,19,0,0,0,122,
|
0,0,0,114,5,0,0,0,41,8,114,15,0,0,0,218,
|
||||||
23,59,32,123,33,114,125,32,105,115,32,110,111,116,32,97,
|
7,105,109,112,111,114,116,95,114,144,0,0,0,114,120,0,
|
||||||
32,112,97,99,107,97,103,101,41,1,114,15,0,0,0,233,
|
0,0,90,13,112,97,114,101,110,116,95,109,111,100,117,108,
|
||||||
2,0,0,0,41,12,114,119,0,0,0,114,14,0,0,0,
|
101,114,139,0,0,0,114,83,0,0,0,114,84,0,0,0,
|
||||||
114,80,0,0,0,114,59,0,0,0,114,128,0,0,0,114,
|
114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,
|
||||||
91,0,0,0,218,8,95,69,82,82,95,77,83,71,114,38,
|
23,95,102,105,110,100,95,97,110,100,95,108,111,97,100,95,
|
||||||
0,0,0,218,19,77,111,100,117,108,101,78,111,116,70,111,
|
117,110,108,111,99,107,101,100,161,3,0,0,115,42,0,0,
|
||||||
117,110,100,69,114,114,111,114,114,170,0,0,0,114,141,0,
|
0,0,1,4,1,14,1,4,1,10,1,10,2,10,1,10,
|
||||||
0,0,114,5,0,0,0,41,8,114,15,0,0,0,218,7,
|
1,10,1,2,1,10,1,14,1,16,1,20,1,10,1,8,
|
||||||
105,109,112,111,114,116,95,114,144,0,0,0,114,120,0,0,
|
1,20,2,8,1,4,2,10,1,22,1,114,179,0,0,0,
|
||||||
0,90,13,112,97,114,101,110,116,95,109,111,100,117,108,101,
|
99,2,0,0,0,0,0,0,0,4,0,0,0,11,0,0,
|
||||||
114,139,0,0,0,114,83,0,0,0,114,84,0,0,0,114,
|
0,67,0,0,0,115,92,0,0,0,116,0,124,0,131,1,
|
||||||
10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,23,
|
143,26,1,0,124,0,116,1,106,2,107,7,114,30,116,3,
|
||||||
95,102,105,110,100,95,97,110,100,95,108,111,97,100,95,117,
|
124,0,124,1,131,2,83,0,87,0,100,1,81,0,82,0,
|
||||||
110,108,111,99,107,101,100,165,3,0,0,115,42,0,0,0,
|
88,0,116,1,106,2,124,0,25,0,125,2,124,2,100,1,
|
||||||
0,1,4,1,14,1,4,1,10,1,10,2,10,1,10,1,
|
107,8,114,80,100,2,106,4,124,0,131,1,125,3,116,5,
|
||||||
10,1,2,1,10,1,14,1,16,1,20,1,10,1,8,1,
|
124,3,124,0,100,3,141,2,130,1,116,6,124,0,131,1,
|
||||||
20,2,8,1,4,2,10,1,22,1,114,180,0,0,0,99,
|
1,0,124,2,83,0,41,4,122,25,70,105,110,100,32,97,
|
||||||
2,0,0,0,0,0,0,0,4,0,0,0,11,0,0,0,
|
110,100,32,108,111,97,100,32,116,104,101,32,109,111,100,117,
|
||||||
67,0,0,0,115,92,0,0,0,116,0,124,0,131,1,143,
|
108,101,46,78,122,40,105,109,112,111,114,116,32,111,102,32,
|
||||||
26,1,0,124,0,116,1,106,2,107,7,114,30,116,3,124,
|
123,125,32,104,97,108,116,101,100,59,32,78,111,110,101,32,
|
||||||
0,124,1,131,2,83,0,87,0,100,1,81,0,82,0,88,
|
105,110,32,115,121,115,46,109,111,100,117,108,101,115,41,1,
|
||||||
0,116,1,106,2,124,0,25,0,125,2,124,2,100,1,107,
|
114,15,0,0,0,41,7,114,42,0,0,0,114,14,0,0,
|
||||||
8,114,80,100,2,106,4,124,0,131,1,125,3,116,5,124,
|
0,114,80,0,0,0,114,179,0,0,0,114,38,0,0,0,
|
||||||
3,124,0,100,3,141,2,130,1,116,6,124,0,131,1,1,
|
114,177,0,0,0,114,57,0,0,0,41,4,114,15,0,0,
|
||||||
0,124,2,83,0,41,4,122,25,70,105,110,100,32,97,110,
|
0,114,178,0,0,0,114,84,0,0,0,114,68,0,0,0,
|
||||||
100,32,108,111,97,100,32,116,104,101,32,109,111,100,117,108,
|
114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,
|
||||||
101,46,78,122,40,105,109,112,111,114,116,32,111,102,32,123,
|
14,95,102,105,110,100,95,97,110,100,95,108,111,97,100,188,
|
||||||
125,32,104,97,108,116,101,100,59,32,78,111,110,101,32,105,
|
3,0,0,115,20,0,0,0,0,2,10,1,10,1,20,2,
|
||||||
110,32,115,121,115,46,109,111,100,117,108,101,115,41,1,114,
|
10,1,8,1,4,1,6,1,12,2,8,1,114,180,0,0,
|
||||||
15,0,0,0,41,7,114,42,0,0,0,114,14,0,0,0,
|
0,114,19,0,0,0,99,3,0,0,0,0,0,0,0,3,
|
||||||
114,80,0,0,0,114,180,0,0,0,114,38,0,0,0,114,
|
0,0,0,4,0,0,0,67,0,0,0,115,42,0,0,0,
|
||||||
178,0,0,0,114,57,0,0,0,41,4,114,15,0,0,0,
|
116,0,124,0,124,1,124,2,131,3,1,0,124,2,100,1,
|
||||||
114,179,0,0,0,114,84,0,0,0,114,68,0,0,0,114,
|
107,4,114,32,116,1,124,0,124,1,124,2,131,3,125,0,
|
||||||
10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,14,
|
116,2,124,0,116,3,131,2,83,0,41,2,97,50,1,0,
|
||||||
95,102,105,110,100,95,97,110,100,95,108,111,97,100,192,3,
|
0,73,109,112,111,114,116,32,97,110,100,32,114,101,116,117,
|
||||||
0,0,115,20,0,0,0,0,2,10,1,10,1,20,2,10,
|
114,110,32,116,104,101,32,109,111,100,117,108,101,32,98,97,
|
||||||
1,8,1,4,1,6,1,12,2,8,1,114,181,0,0,0,
|
115,101,100,32,111,110,32,105,116,115,32,110,97,109,101,44,
|
||||||
114,19,0,0,0,99,3,0,0,0,0,0,0,0,3,0,
|
32,116,104,101,32,112,97,99,107,97,103,101,32,116,104,101,
|
||||||
0,0,4,0,0,0,67,0,0,0,115,42,0,0,0,116,
|
32,99,97,108,108,32,105,115,10,32,32,32,32,98,101,105,
|
||||||
0,124,0,124,1,124,2,131,3,1,0,124,2,100,1,107,
|
110,103,32,109,97,100,101,32,102,114,111,109,44,32,97,110,
|
||||||
4,114,32,116,1,124,0,124,1,124,2,131,3,125,0,116,
|
100,32,116,104,101,32,108,101,118,101,108,32,97,100,106,117,
|
||||||
2,124,0,116,3,131,2,83,0,41,2,97,50,1,0,0,
|
115,116,109,101,110,116,46,10,10,32,32,32,32,84,104,105,
|
||||||
73,109,112,111,114,116,32,97,110,100,32,114,101,116,117,114,
|
115,32,102,117,110,99,116,105,111,110,32,114,101,112,114,101,
|
||||||
110,32,116,104,101,32,109,111,100,117,108,101,32,98,97,115,
|
115,101,110,116,115,32,116,104,101,32,103,114,101,97,116,101,
|
||||||
101,100,32,111,110,32,105,116,115,32,110,97,109,101,44,32,
|
115,116,32,99,111,109,109,111,110,32,100,101,110,111,109,105,
|
||||||
116,104,101,32,112,97,99,107,97,103,101,32,116,104,101,32,
|
110,97,116,111,114,32,111,102,32,102,117,110,99,116,105,111,
|
||||||
99,97,108,108,32,105,115,10,32,32,32,32,98,101,105,110,
|
110,97,108,105,116,121,10,32,32,32,32,98,101,116,119,101,
|
||||||
103,32,109,97,100,101,32,102,114,111,109,44,32,97,110,100,
|
101,110,32,105,109,112,111,114,116,95,109,111,100,117,108,101,
|
||||||
32,116,104,101,32,108,101,118,101,108,32,97,100,106,117,115,
|
32,97,110,100,32,95,95,105,109,112,111,114,116,95,95,46,
|
||||||
116,109,101,110,116,46,10,10,32,32,32,32,84,104,105,115,
|
32,84,104,105,115,32,105,110,99,108,117,100,101,115,32,115,
|
||||||
32,102,117,110,99,116,105,111,110,32,114,101,112,114,101,115,
|
101,116,116,105,110,103,32,95,95,112,97,99,107,97,103,101,
|
||||||
101,110,116,115,32,116,104,101,32,103,114,101,97,116,101,115,
|
95,95,32,105,102,10,32,32,32,32,116,104,101,32,108,111,
|
||||||
116,32,99,111,109,109,111,110,32,100,101,110,111,109,105,110,
|
97,100,101,114,32,100,105,100,32,110,111,116,46,10,10,32,
|
||||||
97,116,111,114,32,111,102,32,102,117,110,99,116,105,111,110,
|
32,32,32,114,19,0,0,0,41,4,114,174,0,0,0,114,
|
||||||
97,108,105,116,121,10,32,32,32,32,98,101,116,119,101,101,
|
163,0,0,0,114,180,0,0,0,218,11,95,103,99,100,95,
|
||||||
110,32,105,109,112,111,114,116,95,109,111,100,117,108,101,32,
|
105,109,112,111,114,116,41,3,114,15,0,0,0,114,161,0,
|
||||||
97,110,100,32,95,95,105,109,112,111,114,116,95,95,46,32,
|
0,0,114,162,0,0,0,114,10,0,0,0,114,10,0,0,
|
||||||
84,104,105,115,32,105,110,99,108,117,100,101,115,32,115,101,
|
0,114,11,0,0,0,114,181,0,0,0,204,3,0,0,115,
|
||||||
116,116,105,110,103,32,95,95,112,97,99,107,97,103,101,95,
|
8,0,0,0,0,9,12,1,8,1,12,1,114,181,0,0,
|
||||||
95,32,105,102,10,32,32,32,32,116,104,101,32,108,111,97,
|
0,99,3,0,0,0,0,0,0,0,6,0,0,0,17,0,
|
||||||
100,101,114,32,100,105,100,32,110,111,116,46,10,10,32,32,
|
0,0,67,0,0,0,115,164,0,0,0,116,0,124,0,100,
|
||||||
32,32,114,19,0,0,0,41,4,114,175,0,0,0,114,163,
|
1,131,2,114,160,100,2,124,1,107,6,114,58,116,1,124,
|
||||||
0,0,0,114,181,0,0,0,218,11,95,103,99,100,95,105,
|
1,131,1,125,1,124,1,106,2,100,2,131,1,1,0,116,
|
||||||
109,112,111,114,116,41,3,114,15,0,0,0,114,161,0,0,
|
0,124,0,100,3,131,2,114,58,124,1,106,3,124,0,106,
|
||||||
0,114,162,0,0,0,114,10,0,0,0,114,10,0,0,0,
|
4,131,1,1,0,120,100,124,1,68,0,93,92,125,3,116,
|
||||||
114,11,0,0,0,114,182,0,0,0,208,3,0,0,115,8,
|
0,124,0,124,3,131,2,115,64,100,4,106,5,124,0,106,
|
||||||
0,0,0,0,9,12,1,8,1,12,1,114,182,0,0,0,
|
6,124,3,131,2,125,4,121,14,116,7,124,2,124,4,131,
|
||||||
99,3,0,0,0,0,0,0,0,6,0,0,0,17,0,0,
|
2,1,0,87,0,113,64,4,0,116,8,107,10,114,154,1,
|
||||||
0,67,0,0,0,115,164,0,0,0,116,0,124,0,100,1,
|
0,125,5,1,0,122,20,124,5,106,9,124,4,107,2,114,
|
||||||
131,2,114,160,100,2,124,1,107,6,114,58,116,1,124,1,
|
136,119,64,130,0,87,0,89,0,100,5,100,5,125,5,126,
|
||||||
131,1,125,1,124,1,106,2,100,2,131,1,1,0,116,0,
|
5,88,0,113,64,88,0,113,64,87,0,124,0,83,0,41,
|
||||||
124,0,100,3,131,2,114,58,124,1,106,3,124,0,106,4,
|
6,122,238,70,105,103,117,114,101,32,111,117,116,32,119,104,
|
||||||
131,1,1,0,120,100,124,1,68,0,93,92,125,3,116,0,
|
97,116,32,95,95,105,109,112,111,114,116,95,95,32,115,104,
|
||||||
124,0,124,3,131,2,115,64,100,4,106,5,124,0,106,6,
|
111,117,108,100,32,114,101,116,117,114,110,46,10,10,32,32,
|
||||||
124,3,131,2,125,4,121,14,116,7,124,2,124,4,131,2,
|
32,32,84,104,101,32,105,109,112,111,114,116,95,32,112,97,
|
||||||
1,0,87,0,113,64,4,0,116,8,107,10,114,154,1,0,
|
114,97,109,101,116,101,114,32,105,115,32,97,32,99,97,108,
|
||||||
125,5,1,0,122,20,124,5,106,9,124,4,107,2,114,136,
|
108,97,98,108,101,32,119,104,105,99,104,32,116,97,107,101,
|
||||||
119,64,130,0,87,0,89,0,100,5,100,5,125,5,126,5,
|
115,32,116,104,101,32,110,97,109,101,32,111,102,32,109,111,
|
||||||
88,0,113,64,88,0,113,64,87,0,124,0,83,0,41,6,
|
100,117,108,101,32,116,111,10,32,32,32,32,105,109,112,111,
|
||||||
122,238,70,105,103,117,114,101,32,111,117,116,32,119,104,97,
|
114,116,46,32,73,116,32,105,115,32,114,101,113,117,105,114,
|
||||||
116,32,95,95,105,109,112,111,114,116,95,95,32,115,104,111,
|
101,100,32,116,111,32,100,101,99,111,117,112,108,101,32,116,
|
||||||
117,108,100,32,114,101,116,117,114,110,46,10,10,32,32,32,
|
104,101,32,102,117,110,99,116,105,111,110,32,102,114,111,109,
|
||||||
32,84,104,101,32,105,109,112,111,114,116,95,32,112,97,114,
|
32,97,115,115,117,109,105,110,103,32,105,109,112,111,114,116,
|
||||||
97,109,101,116,101,114,32,105,115,32,97,32,99,97,108,108,
|
108,105,98,39,115,10,32,32,32,32,105,109,112,111,114,116,
|
||||||
97,98,108,101,32,119,104,105,99,104,32,116,97,107,101,115,
|
32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,
|
||||||
32,116,104,101,32,110,97,109,101,32,111,102,32,109,111,100,
|
105,115,32,100,101,115,105,114,101,100,46,10,10,32,32,32,
|
||||||
117,108,101,32,116,111,10,32,32,32,32,105,109,112,111,114,
|
32,114,128,0,0,0,250,1,42,218,7,95,95,97,108,108,
|
||||||
116,46,32,73,116,32,105,115,32,114,101,113,117,105,114,101,
|
95,95,122,5,123,125,46,123,125,78,41,10,114,4,0,0,
|
||||||
100,32,116,111,32,100,101,99,111,117,112,108,101,32,116,104,
|
0,114,127,0,0,0,218,6,114,101,109,111,118,101,218,6,
|
||||||
101,32,102,117,110,99,116,105,111,110,32,102,114,111,109,32,
|
101,120,116,101,110,100,114,183,0,0,0,114,38,0,0,0,
|
||||||
97,115,115,117,109,105,110,103,32,105,109,112,111,114,116,108,
|
114,1,0,0,0,114,59,0,0,0,114,177,0,0,0,114,
|
||||||
105,98,39,115,10,32,32,32,32,105,109,112,111,114,116,32,
|
15,0,0,0,41,6,114,84,0,0,0,218,8,102,114,111,
|
||||||
105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,105,
|
109,108,105,115,116,114,178,0,0,0,218,1,120,90,9,102,
|
||||||
115,32,100,101,115,105,114,101,100,46,10,10,32,32,32,32,
|
114,111,109,95,110,97,109,101,90,3,101,120,99,114,10,0,
|
||||||
114,128,0,0,0,250,1,42,218,7,95,95,97,108,108,95,
|
0,0,114,10,0,0,0,114,11,0,0,0,218,16,95,104,
|
||||||
95,122,5,123,125,46,123,125,78,41,10,114,4,0,0,0,
|
97,110,100,108,101,95,102,114,111,109,108,105,115,116,219,3,
|
||||||
114,127,0,0,0,218,6,114,101,109,111,118,101,218,6,101,
|
0,0,115,32,0,0,0,0,10,10,1,8,1,8,1,10,
|
||||||
120,116,101,110,100,114,184,0,0,0,114,38,0,0,0,114,
|
1,10,1,12,1,10,1,10,1,14,1,2,1,14,1,16,
|
||||||
1,0,0,0,114,59,0,0,0,114,178,0,0,0,114,15,
|
4,10,1,2,1,24,1,114,188,0,0,0,99,1,0,0,
|
||||||
0,0,0,41,6,114,84,0,0,0,218,8,102,114,111,109,
|
0,0,0,0,0,3,0,0,0,6,0,0,0,67,0,0,
|
||||||
108,105,115,116,114,179,0,0,0,218,1,120,90,9,102,114,
|
0,115,146,0,0,0,124,0,106,0,100,1,131,1,125,1,
|
||||||
111,109,95,110,97,109,101,90,3,101,120,99,114,10,0,0,
|
124,0,106,0,100,2,131,1,125,2,124,1,100,3,107,9,
|
||||||
0,114,10,0,0,0,114,11,0,0,0,218,16,95,104,97,
|
114,82,124,2,100,3,107,9,114,78,124,1,124,2,106,1,
|
||||||
110,100,108,101,95,102,114,111,109,108,105,115,116,223,3,0,
|
107,3,114,78,116,2,106,3,100,4,124,1,155,2,100,5,
|
||||||
0,115,32,0,0,0,0,10,10,1,8,1,8,1,10,1,
|
124,2,106,1,155,2,100,6,157,5,116,4,100,7,100,8,
|
||||||
10,1,12,1,10,1,10,1,14,1,2,1,14,1,16,4,
|
141,3,1,0,124,1,83,0,124,2,100,3,107,9,114,96,
|
||||||
10,1,2,1,24,1,114,189,0,0,0,99,1,0,0,0,
|
124,2,106,1,83,0,116,2,106,3,100,9,116,4,100,7,
|
||||||
0,0,0,0,3,0,0,0,6,0,0,0,67,0,0,0,
|
100,8,141,3,1,0,124,0,100,10,25,0,125,1,100,11,
|
||||||
115,146,0,0,0,124,0,106,0,100,1,131,1,125,1,124,
|
124,0,107,7,114,142,124,1,106,5,100,12,131,1,100,13,
|
||||||
0,106,0,100,2,131,1,125,2,124,1,100,3,107,9,114,
|
25,0,125,1,124,1,83,0,41,14,122,167,67,97,108,99,
|
||||||
82,124,2,100,3,107,9,114,78,124,1,124,2,106,1,107,
|
117,108,97,116,101,32,119,104,97,116,32,95,95,112,97,99,
|
||||||
3,114,78,116,2,106,3,100,4,124,1,155,2,100,5,124,
|
107,97,103,101,95,95,32,115,104,111,117,108,100,32,98,101,
|
||||||
2,106,1,155,2,100,6,157,5,116,4,100,7,100,8,141,
|
46,10,10,32,32,32,32,95,95,112,97,99,107,97,103,101,
|
||||||
3,1,0,124,1,83,0,124,2,100,3,107,9,114,96,124,
|
95,95,32,105,115,32,110,111,116,32,103,117,97,114,97,110,
|
||||||
2,106,1,83,0,116,2,106,3,100,9,116,4,100,7,100,
|
116,101,101,100,32,116,111,32,98,101,32,100,101,102,105,110,
|
||||||
8,141,3,1,0,124,0,100,10,25,0,125,1,100,11,124,
|
101,100,32,111,114,32,99,111,117,108,100,32,98,101,32,115,
|
||||||
0,107,7,114,142,124,1,106,5,100,12,131,1,100,13,25,
|
101,116,32,116,111,32,78,111,110,101,10,32,32,32,32,116,
|
||||||
0,125,1,124,1,83,0,41,14,122,167,67,97,108,99,117,
|
111,32,114,101,112,114,101,115,101,110,116,32,116,104,97,116,
|
||||||
108,97,116,101,32,119,104,97,116,32,95,95,112,97,99,107,
|
32,105,116,115,32,112,114,111,112,101,114,32,118,97,108,117,
|
||||||
97,103,101,95,95,32,115,104,111,117,108,100,32,98,101,46,
|
101,32,105,115,32,117,110,107,110,111,119,110,46,10,10,32,
|
||||||
10,10,32,32,32,32,95,95,112,97,99,107,97,103,101,95,
|
32,32,32,114,131,0,0,0,114,90,0,0,0,78,122,32,
|
||||||
95,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,
|
95,95,112,97,99,107,97,103,101,95,95,32,33,61,32,95,
|
||||||
101,101,100,32,116,111,32,98,101,32,100,101,102,105,110,101,
|
95,115,112,101,99,95,95,46,112,97,114,101,110,116,32,40,
|
||||||
100,32,111,114,32,99,111,117,108,100,32,98,101,32,115,101,
|
122,4,32,33,61,32,250,1,41,233,3,0,0,0,41,1,
|
||||||
116,32,116,111,32,78,111,110,101,10,32,32,32,32,116,111,
|
90,10,115,116,97,99,107,108,101,118,101,108,122,89,99,97,
|
||||||
32,114,101,112,114,101,115,101,110,116,32,116,104,97,116,32,
|
110,39,116,32,114,101,115,111,108,118,101,32,112,97,99,107,
|
||||||
105,116,115,32,112,114,111,112,101,114,32,118,97,108,117,101,
|
97,103,101,32,102,114,111,109,32,95,95,115,112,101,99,95,
|
||||||
32,105,115,32,117,110,107,110,111,119,110,46,10,10,32,32,
|
95,32,111,114,32,95,95,112,97,99,107,97,103,101,95,95,
|
||||||
32,32,114,131,0,0,0,114,90,0,0,0,78,122,32,95,
|
44,32,102,97,108,108,105,110,103,32,98,97,99,107,32,111,
|
||||||
95,112,97,99,107,97,103,101,95,95,32,33,61,32,95,95,
|
110,32,95,95,110,97,109,101,95,95,32,97,110,100,32,95,
|
||||||
115,112,101,99,95,95,46,112,97,114,101,110,116,32,40,122,
|
95,112,97,116,104,95,95,114,1,0,0,0,114,128,0,0,
|
||||||
4,32,33,61,32,250,1,41,233,3,0,0,0,41,1,90,
|
0,114,118,0,0,0,114,19,0,0,0,41,6,114,30,0,
|
||||||
10,115,116,97,99,107,108,101,118,101,108,122,89,99,97,110,
|
0,0,114,120,0,0,0,114,167,0,0,0,114,168,0,0,
|
||||||
39,116,32,114,101,115,111,108,118,101,32,112,97,99,107,97,
|
0,114,169,0,0,0,114,119,0,0,0,41,3,218,7,103,
|
||||||
103,101,32,102,114,111,109,32,95,95,115,112,101,99,95,95,
|
108,111,98,97,108,115,114,161,0,0,0,114,83,0,0,0,
|
||||||
32,111,114,32,95,95,112,97,99,107,97,103,101,95,95,44,
|
114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,
|
||||||
32,102,97,108,108,105,110,103,32,98,97,99,107,32,111,110,
|
17,95,99,97,108,99,95,95,95,112,97,99,107,97,103,101,
|
||||||
32,95,95,110,97,109,101,95,95,32,97,110,100,32,95,95,
|
95,95,250,3,0,0,115,30,0,0,0,0,7,10,1,10,
|
||||||
112,97,116,104,95,95,114,1,0,0,0,114,128,0,0,0,
|
1,8,1,18,1,22,2,10,1,4,1,8,1,6,2,6,
|
||||||
114,118,0,0,0,114,19,0,0,0,41,6,114,30,0,0,
|
2,10,1,8,1,8,1,14,1,114,192,0,0,0,99,5,
|
||||||
0,114,120,0,0,0,114,167,0,0,0,114,168,0,0,0,
|
0,0,0,0,0,0,0,9,0,0,0,5,0,0,0,67,
|
||||||
114,169,0,0,0,114,119,0,0,0,41,3,218,7,103,108,
|
0,0,0,115,166,0,0,0,124,4,100,1,107,2,114,18,
|
||||||
111,98,97,108,115,114,161,0,0,0,114,83,0,0,0,114,
|
116,0,124,0,131,1,125,5,110,36,124,1,100,2,107,9,
|
||||||
10,0,0,0,114,10,0,0,0,114,11,0,0,0,218,17,
|
114,30,124,1,110,2,105,0,125,6,116,1,124,6,131,1,
|
||||||
95,99,97,108,99,95,95,95,112,97,99,107,97,103,101,95,
|
125,7,116,0,124,0,124,7,124,4,131,3,125,5,124,3,
|
||||||
95,254,3,0,0,115,30,0,0,0,0,7,10,1,10,1,
|
115,150,124,4,100,1,107,2,114,84,116,0,124,0,106,2,
|
||||||
8,1,18,1,22,2,10,1,4,1,8,1,6,2,6,2,
|
100,3,131,1,100,1,25,0,131,1,83,0,124,0,115,92,
|
||||||
10,1,8,1,8,1,14,1,114,193,0,0,0,99,5,0,
|
124,5,83,0,116,3,124,0,131,1,116,3,124,0,106,2,
|
||||||
0,0,0,0,0,0,9,0,0,0,5,0,0,0,67,0,
|
100,3,131,1,100,1,25,0,131,1,24,0,125,8,116,4,
|
||||||
0,0,115,166,0,0,0,124,4,100,1,107,2,114,18,116,
|
106,5,124,5,106,6,100,2,116,3,124,5,106,6,131,1,
|
||||||
0,124,0,131,1,125,5,110,36,124,1,100,2,107,9,114,
|
124,8,24,0,133,2,25,0,25,0,83,0,110,12,116,7,
|
||||||
30,124,1,110,2,105,0,125,6,116,1,124,6,131,1,125,
|
124,5,124,3,116,0,131,3,83,0,100,2,83,0,41,4,
|
||||||
7,116,0,124,0,124,7,124,4,131,3,125,5,124,3,115,
|
97,215,1,0,0,73,109,112,111,114,116,32,97,32,109,111,
|
||||||
150,124,4,100,1,107,2,114,84,116,0,124,0,106,2,100,
|
100,117,108,101,46,10,10,32,32,32,32,84,104,101,32,39,
|
||||||
3,131,1,100,1,25,0,131,1,83,0,124,0,115,92,124,
|
103,108,111,98,97,108,115,39,32,97,114,103,117,109,101,110,
|
||||||
5,83,0,116,3,124,0,131,1,116,3,124,0,106,2,100,
|
116,32,105,115,32,117,115,101,100,32,116,111,32,105,110,102,
|
||||||
3,131,1,100,1,25,0,131,1,24,0,125,8,116,4,106,
|
101,114,32,119,104,101,114,101,32,116,104,101,32,105,109,112,
|
||||||
5,124,5,106,6,100,2,116,3,124,5,106,6,131,1,124,
|
111,114,116,32,105,115,32,111,99,99,117,114,114,105,110,103,
|
||||||
8,24,0,133,2,25,0,25,0,83,0,110,12,116,7,124,
|
32,102,114,111,109,10,32,32,32,32,116,111,32,104,97,110,
|
||||||
5,124,3,116,0,131,3,83,0,100,2,83,0,41,4,97,
|
100,108,101,32,114,101,108,97,116,105,118,101,32,105,109,112,
|
||||||
215,1,0,0,73,109,112,111,114,116,32,97,32,109,111,100,
|
111,114,116,115,46,32,84,104,101,32,39,108,111,99,97,108,
|
||||||
117,108,101,46,10,10,32,32,32,32,84,104,101,32,39,103,
|
115,39,32,97,114,103,117,109,101,110,116,32,105,115,32,105,
|
||||||
108,111,98,97,108,115,39,32,97,114,103,117,109,101,110,116,
|
103,110,111,114,101,100,46,32,84,104,101,10,32,32,32,32,
|
||||||
32,105,115,32,117,115,101,100,32,116,111,32,105,110,102,101,
|
39,102,114,111,109,108,105,115,116,39,32,97,114,103,117,109,
|
||||||
114,32,119,104,101,114,101,32,116,104,101,32,105,109,112,111,
|
101,110,116,32,115,112,101,99,105,102,105,101,115,32,119,104,
|
||||||
114,116,32,105,115,32,111,99,99,117,114,114,105,110,103,32,
|
97,116,32,115,104,111,117,108,100,32,101,120,105,115,116,32,
|
||||||
102,114,111,109,10,32,32,32,32,116,111,32,104,97,110,100,
|
97,115,32,97,116,116,114,105,98,117,116,101,115,32,111,110,
|
||||||
108,101,32,114,101,108,97,116,105,118,101,32,105,109,112,111,
|
32,116,104,101,32,109,111,100,117,108,101,10,32,32,32,32,
|
||||||
114,116,115,46,32,84,104,101,32,39,108,111,99,97,108,115,
|
98,101,105,110,103,32,105,109,112,111,114,116,101,100,32,40,
|
||||||
39,32,97,114,103,117,109,101,110,116,32,105,115,32,105,103,
|
101,46,103,46,32,96,96,102,114,111,109,32,109,111,100,117,
|
||||||
110,111,114,101,100,46,32,84,104,101,10,32,32,32,32,39,
|
108,101,32,105,109,112,111,114,116,32,60,102,114,111,109,108,
|
||||||
102,114,111,109,108,105,115,116,39,32,97,114,103,117,109,101,
|
105,115,116,62,96,96,41,46,32,32,84,104,101,32,39,108,
|
||||||
110,116,32,115,112,101,99,105,102,105,101,115,32,119,104,97,
|
101,118,101,108,39,10,32,32,32,32,97,114,103,117,109,101,
|
||||||
116,32,115,104,111,117,108,100,32,101,120,105,115,116,32,97,
|
110,116,32,114,101,112,114,101,115,101,110,116,115,32,116,104,
|
||||||
115,32,97,116,116,114,105,98,117,116,101,115,32,111,110,32,
|
101,32,112,97,99,107,97,103,101,32,108,111,99,97,116,105,
|
||||||
116,104,101,32,109,111,100,117,108,101,10,32,32,32,32,98,
|
111,110,32,116,111,32,105,109,112,111,114,116,32,102,114,111,
|
||||||
101,105,110,103,32,105,109,112,111,114,116,101,100,32,40,101,
|
109,32,105,110,32,97,32,114,101,108,97,116,105,118,101,10,
|
||||||
46,103,46,32,96,96,102,114,111,109,32,109,111,100,117,108,
|
32,32,32,32,105,109,112,111,114,116,32,40,101,46,103,46,
|
||||||
101,32,105,109,112,111,114,116,32,60,102,114,111,109,108,105,
|
32,96,96,102,114,111,109,32,46,46,112,107,103,32,105,109,
|
||||||
115,116,62,96,96,41,46,32,32,84,104,101,32,39,108,101,
|
112,111,114,116,32,109,111,100,96,96,32,119,111,117,108,100,
|
||||||
118,101,108,39,10,32,32,32,32,97,114,103,117,109,101,110,
|
32,104,97,118,101,32,97,32,39,108,101,118,101,108,39,32,
|
||||||
116,32,114,101,112,114,101,115,101,110,116,115,32,116,104,101,
|
111,102,32,50,41,46,10,10,32,32,32,32,114,19,0,0,
|
||||||
32,112,97,99,107,97,103,101,32,108,111,99,97,116,105,111,
|
0,78,114,118,0,0,0,41,8,114,181,0,0,0,114,192,
|
||||||
110,32,116,111,32,105,109,112,111,114,116,32,102,114,111,109,
|
0,0,0,218,9,112,97,114,116,105,116,105,111,110,114,159,
|
||||||
32,105,110,32,97,32,114,101,108,97,116,105,118,101,10,32,
|
0,0,0,114,14,0,0,0,114,80,0,0,0,114,1,0,
|
||||||
32,32,32,105,109,112,111,114,116,32,40,101,46,103,46,32,
|
0,0,114,188,0,0,0,41,9,114,15,0,0,0,114,191,
|
||||||
96,96,102,114,111,109,32,46,46,112,107,103,32,105,109,112,
|
0,0,0,218,6,108,111,99,97,108,115,114,186,0,0,0,
|
||||||
111,114,116,32,109,111,100,96,96,32,119,111,117,108,100,32,
|
114,162,0,0,0,114,84,0,0,0,90,8,103,108,111,98,
|
||||||
104,97,118,101,32,97,32,39,108,101,118,101,108,39,32,111,
|
97,108,115,95,114,161,0,0,0,90,7,99,117,116,95,111,
|
||||||
102,32,50,41,46,10,10,32,32,32,32,114,19,0,0,0,
|
102,102,114,10,0,0,0,114,10,0,0,0,114,11,0,0,
|
||||||
78,114,118,0,0,0,41,8,114,182,0,0,0,114,193,0,
|
0,218,10,95,95,105,109,112,111,114,116,95,95,21,4,0,
|
||||||
0,0,218,9,112,97,114,116,105,116,105,111,110,114,159,0,
|
0,115,26,0,0,0,0,11,8,1,10,2,16,1,8,1,
|
||||||
0,0,114,14,0,0,0,114,80,0,0,0,114,1,0,0,
|
12,1,4,3,8,1,18,1,4,1,4,4,26,3,32,2,
|
||||||
0,114,189,0,0,0,41,9,114,15,0,0,0,114,192,0,
|
114,195,0,0,0,99,1,0,0,0,0,0,0,0,2,0,
|
||||||
0,0,218,6,108,111,99,97,108,115,114,187,0,0,0,114,
|
0,0,3,0,0,0,67,0,0,0,115,38,0,0,0,116,
|
||||||
162,0,0,0,114,84,0,0,0,90,8,103,108,111,98,97,
|
0,106,1,124,0,131,1,125,1,124,1,100,0,107,8,114,
|
||||||
108,115,95,114,161,0,0,0,90,7,99,117,116,95,111,102,
|
30,116,2,100,1,124,0,23,0,131,1,130,1,116,3,124,
|
||||||
102,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,
|
1,131,1,83,0,41,2,78,122,25,110,111,32,98,117,105,
|
||||||
218,10,95,95,105,109,112,111,114,116,95,95,25,4,0,0,
|
108,116,45,105,110,32,109,111,100,117,108,101,32,110,97,109,
|
||||||
115,26,0,0,0,0,11,8,1,10,2,16,1,8,1,12,
|
101,100,32,41,4,114,142,0,0,0,114,146,0,0,0,114,
|
||||||
1,4,3,8,1,18,1,4,1,4,4,26,3,32,2,114,
|
71,0,0,0,114,141,0,0,0,41,2,114,15,0,0,0,
|
||||||
196,0,0,0,99,1,0,0,0,0,0,0,0,2,0,0,
|
114,83,0,0,0,114,10,0,0,0,114,10,0,0,0,114,
|
||||||
0,3,0,0,0,67,0,0,0,115,38,0,0,0,116,0,
|
11,0,0,0,218,18,95,98,117,105,108,116,105,110,95,102,
|
||||||
106,1,124,0,131,1,125,1,124,1,100,0,107,8,114,30,
|
114,111,109,95,110,97,109,101,56,4,0,0,115,8,0,0,
|
||||||
116,2,100,1,124,0,23,0,131,1,130,1,116,3,124,1,
|
0,0,1,10,1,8,1,12,1,114,196,0,0,0,99,2,
|
||||||
131,1,83,0,41,2,78,122,25,110,111,32,98,117,105,108,
|
0,0,0,0,0,0,0,12,0,0,0,12,0,0,0,67,
|
||||||
116,45,105,110,32,109,111,100,117,108,101,32,110,97,109,101,
|
0,0,0,115,244,0,0,0,124,1,97,0,124,0,97,1,
|
||||||
100,32,41,4,114,142,0,0,0,114,146,0,0,0,114,71,
|
116,2,116,1,131,1,125,2,120,86,116,1,106,3,106,4,
|
||||||
0,0,0,114,141,0,0,0,41,2,114,15,0,0,0,114,
|
131,0,68,0,93,72,92,2,125,3,125,4,116,5,124,4,
|
||||||
83,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,
|
124,2,131,2,114,28,124,3,116,1,106,6,107,6,114,62,
|
||||||
0,0,0,218,18,95,98,117,105,108,116,105,110,95,102,114,
|
116,7,125,5,110,18,116,0,106,8,124,3,131,1,114,28,
|
||||||
111,109,95,110,97,109,101,60,4,0,0,115,8,0,0,0,
|
116,9,125,5,110,2,113,28,116,10,124,4,124,5,131,2,
|
||||||
0,1,10,1,8,1,12,1,114,197,0,0,0,99,2,0,
|
125,6,116,11,124,6,124,4,131,2,1,0,113,28,87,0,
|
||||||
0,0,0,0,0,0,12,0,0,0,12,0,0,0,67,0,
|
116,1,106,3,116,12,25,0,125,7,120,54,100,5,68,0,
|
||||||
0,0,115,244,0,0,0,124,1,97,0,124,0,97,1,116,
|
93,46,125,8,124,8,116,1,106,3,107,7,114,144,116,13,
|
||||||
2,116,1,131,1,125,2,120,86,116,1,106,3,106,4,131,
|
124,8,131,1,125,9,110,10,116,1,106,3,124,8,25,0,
|
||||||
0,68,0,93,72,92,2,125,3,125,4,116,5,124,4,124,
|
125,9,116,14,124,7,124,8,124,9,131,3,1,0,113,120,
|
||||||
2,131,2,114,28,124,3,116,1,106,6,107,6,114,62,116,
|
87,0,121,12,116,13,100,2,131,1,125,10,87,0,110,24,
|
||||||
7,125,5,110,18,116,0,106,8,124,3,131,1,114,28,116,
|
4,0,116,15,107,10,114,206,1,0,1,0,1,0,100,3,
|
||||||
9,125,5,110,2,113,28,116,10,124,4,124,5,131,2,125,
|
125,10,89,0,110,2,88,0,116,14,124,7,100,2,124,10,
|
||||||
6,116,11,124,6,124,4,131,2,1,0,113,28,87,0,116,
|
131,3,1,0,116,13,100,4,131,1,125,11,116,14,124,7,
|
||||||
1,106,3,116,12,25,0,125,7,120,54,100,5,68,0,93,
|
100,4,124,11,131,3,1,0,100,3,83,0,41,6,122,250,
|
||||||
46,125,8,124,8,116,1,106,3,107,7,114,144,116,13,124,
|
83,101,116,117,112,32,105,109,112,111,114,116,108,105,98,32,
|
||||||
8,131,1,125,9,110,10,116,1,106,3,124,8,25,0,125,
|
98,121,32,105,109,112,111,114,116,105,110,103,32,110,101,101,
|
||||||
9,116,14,124,7,124,8,124,9,131,3,1,0,113,120,87,
|
100,101,100,32,98,117,105,108,116,45,105,110,32,109,111,100,
|
||||||
0,121,12,116,13,100,2,131,1,125,10,87,0,110,24,4,
|
117,108,101,115,32,97,110,100,32,105,110,106,101,99,116,105,
|
||||||
0,116,15,107,10,114,206,1,0,1,0,1,0,100,3,125,
|
110,103,32,116,104,101,109,10,32,32,32,32,105,110,116,111,
|
||||||
10,89,0,110,2,88,0,116,14,124,7,100,2,124,10,131,
|
32,116,104,101,32,103,108,111,98,97,108,32,110,97,109,101,
|
||||||
3,1,0,116,13,100,4,131,1,125,11,116,14,124,7,100,
|
115,112,97,99,101,46,10,10,32,32,32,32,65,115,32,115,
|
||||||
4,124,11,131,3,1,0,100,3,83,0,41,6,122,250,83,
|
121,115,32,105,115,32,110,101,101,100,101,100,32,102,111,114,
|
||||||
101,116,117,112,32,105,109,112,111,114,116,108,105,98,32,98,
|
32,115,121,115,46,109,111,100,117,108,101,115,32,97,99,99,
|
||||||
121,32,105,109,112,111,114,116,105,110,103,32,110,101,101,100,
|
101,115,115,32,97,110,100,32,95,105,109,112,32,105,115,32,
|
||||||
101,100,32,98,117,105,108,116,45,105,110,32,109,111,100,117,
|
110,101,101,100,101,100,32,116,111,32,108,111,97,100,32,98,
|
||||||
108,101,115,32,97,110,100,32,105,110,106,101,99,116,105,110,
|
117,105,108,116,45,105,110,10,32,32,32,32,109,111,100,117,
|
||||||
103,32,116,104,101,109,10,32,32,32,32,105,110,116,111,32,
|
108,101,115,44,32,116,104,111,115,101,32,116,119,111,32,109,
|
||||||
116,104,101,32,103,108,111,98,97,108,32,110,97,109,101,115,
|
111,100,117,108,101,115,32,109,117,115,116,32,98,101,32,101,
|
||||||
112,97,99,101,46,10,10,32,32,32,32,65,115,32,115,121,
|
120,112,108,105,99,105,116,108,121,32,112,97,115,115,101,100,
|
||||||
115,32,105,115,32,110,101,101,100,101,100,32,102,111,114,32,
|
32,105,110,46,10,10,32,32,32,32,114,167,0,0,0,114,
|
||||||
115,121,115,46,109,111,100,117,108,101,115,32,97,99,99,101,
|
20,0,0,0,78,114,55,0,0,0,41,1,114,167,0,0,
|
||||||
115,115,32,97,110,100,32,95,105,109,112,32,105,115,32,110,
|
0,41,16,114,52,0,0,0,114,14,0,0,0,114,13,0,
|
||||||
101,101,100,101,100,32,116,111,32,108,111,97,100,32,98,117,
|
0,0,114,80,0,0,0,218,5,105,116,101,109,115,114,171,
|
||||||
105,108,116,45,105,110,10,32,32,32,32,109,111,100,117,108,
|
0,0,0,114,70,0,0,0,114,142,0,0,0,114,76,0,
|
||||||
101,115,44,32,116,104,111,115,101,32,116,119,111,32,109,111,
|
0,0,114,152,0,0,0,114,129,0,0,0,114,134,0,0,
|
||||||
100,117,108,101,115,32,109,117,115,116,32,98,101,32,101,120,
|
0,114,1,0,0,0,114,196,0,0,0,114,5,0,0,0,
|
||||||
112,108,105,99,105,116,108,121,32,112,97,115,115,101,100,32,
|
114,71,0,0,0,41,12,218,10,115,121,115,95,109,111,100,
|
||||||
105,110,46,10,10,32,32,32,32,114,167,0,0,0,114,20,
|
117,108,101,218,11,95,105,109,112,95,109,111,100,117,108,101,
|
||||||
0,0,0,78,114,55,0,0,0,41,1,114,167,0,0,0,
|
90,11,109,111,100,117,108,101,95,116,121,112,101,114,15,0,
|
||||||
41,16,114,52,0,0,0,114,14,0,0,0,114,13,0,0,
|
0,0,114,84,0,0,0,114,94,0,0,0,114,83,0,0,
|
||||||
0,114,80,0,0,0,218,5,105,116,101,109,115,114,171,0,
|
0,90,11,115,101,108,102,95,109,111,100,117,108,101,90,12,
|
||||||
0,0,114,70,0,0,0,114,142,0,0,0,114,76,0,0,
|
98,117,105,108,116,105,110,95,110,97,109,101,90,14,98,117,
|
||||||
0,114,152,0,0,0,114,129,0,0,0,114,134,0,0,0,
|
105,108,116,105,110,95,109,111,100,117,108,101,90,13,116,104,
|
||||||
114,1,0,0,0,114,197,0,0,0,114,5,0,0,0,114,
|
114,101,97,100,95,109,111,100,117,108,101,90,14,119,101,97,
|
||||||
71,0,0,0,41,12,218,10,115,121,115,95,109,111,100,117,
|
107,114,101,102,95,109,111,100,117,108,101,114,10,0,0,0,
|
||||||
108,101,218,11,95,105,109,112,95,109,111,100,117,108,101,90,
|
114,10,0,0,0,114,11,0,0,0,218,6,95,115,101,116,
|
||||||
11,109,111,100,117,108,101,95,116,121,112,101,114,15,0,0,
|
117,112,63,4,0,0,115,50,0,0,0,0,9,4,1,4,
|
||||||
0,114,84,0,0,0,114,94,0,0,0,114,83,0,0,0,
|
3,8,1,20,1,10,1,10,1,6,1,10,1,6,2,2,
|
||||||
90,11,115,101,108,102,95,109,111,100,117,108,101,90,12,98,
|
1,10,1,14,3,10,1,10,1,10,1,10,2,10,1,16,
|
||||||
117,105,108,116,105,110,95,110,97,109,101,90,14,98,117,105,
|
3,2,1,12,1,14,2,10,1,12,3,8,1,114,200,0,
|
||||||
108,116,105,110,95,109,111,100,117,108,101,90,13,116,104,114,
|
0,0,99,2,0,0,0,0,0,0,0,3,0,0,0,3,
|
||||||
101,97,100,95,109,111,100,117,108,101,90,14,119,101,97,107,
|
0,0,0,67,0,0,0,115,66,0,0,0,116,0,124,0,
|
||||||
114,101,102,95,109,111,100,117,108,101,114,10,0,0,0,114,
|
124,1,131,2,1,0,116,1,106,2,106,3,116,4,131,1,
|
||||||
10,0,0,0,114,11,0,0,0,218,6,95,115,101,116,117,
|
1,0,116,1,106,2,106,3,116,5,131,1,1,0,100,1,
|
||||||
112,67,4,0,0,115,50,0,0,0,0,9,4,1,4,3,
|
100,2,108,6,125,2,124,2,97,7,124,2,106,8,116,1,
|
||||||
8,1,20,1,10,1,10,1,6,1,10,1,6,2,2,1,
|
106,9,116,10,25,0,131,1,1,0,100,2,83,0,41,3,
|
||||||
10,1,14,3,10,1,10,1,10,1,10,2,10,1,16,3,
|
122,50,73,110,115,116,97,108,108,32,105,109,112,111,114,116,
|
||||||
2,1,12,1,14,2,10,1,12,3,8,1,114,201,0,0,
|
108,105,98,32,97,115,32,116,104,101,32,105,109,112,108,101,
|
||||||
0,99,2,0,0,0,0,0,0,0,3,0,0,0,3,0,
|
109,101,110,116,97,116,105,111,110,32,111,102,32,105,109,112,
|
||||||
0,0,67,0,0,0,115,66,0,0,0,116,0,124,0,124,
|
111,114,116,46,114,19,0,0,0,78,41,11,114,200,0,0,
|
||||||
1,131,2,1,0,116,1,106,2,106,3,116,4,131,1,1,
|
0,114,14,0,0,0,114,166,0,0,0,114,110,0,0,0,
|
||||||
0,116,1,106,2,106,3,116,5,131,1,1,0,100,1,100,
|
114,142,0,0,0,114,152,0,0,0,218,26,95,102,114,111,
|
||||||
2,108,6,125,2,124,2,97,7,124,2,106,8,116,1,106,
|
122,101,110,95,105,109,112,111,114,116,108,105,98,95,101,120,
|
||||||
9,116,10,25,0,131,1,1,0,100,2,83,0,41,3,122,
|
116,101,114,110,97,108,114,116,0,0,0,218,8,95,105,110,
|
||||||
50,73,110,115,116,97,108,108,32,105,109,112,111,114,116,108,
|
115,116,97,108,108,114,80,0,0,0,114,1,0,0,0,41,
|
||||||
105,98,32,97,115,32,116,104,101,32,105,109,112,108,101,109,
|
3,114,198,0,0,0,114,199,0,0,0,114,201,0,0,0,
|
||||||
101,110,116,97,116,105,111,110,32,111,102,32,105,109,112,111,
|
114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,114,
|
||||||
114,116,46,114,19,0,0,0,78,41,11,114,201,0,0,0,
|
202,0,0,0,110,4,0,0,115,12,0,0,0,0,2,10,
|
||||||
114,14,0,0,0,114,166,0,0,0,114,110,0,0,0,114,
|
2,12,1,12,3,8,1,4,1,114,202,0,0,0,41,2,
|
||||||
142,0,0,0,114,152,0,0,0,218,26,95,102,114,111,122,
|
78,78,41,1,78,41,2,78,114,19,0,0,0,41,50,114,
|
||||||
101,110,95,105,109,112,111,114,116,108,105,98,95,101,120,116,
|
3,0,0,0,114,116,0,0,0,114,12,0,0,0,114,16,
|
||||||
101,114,110,97,108,114,116,0,0,0,218,8,95,105,110,115,
|
0,0,0,114,49,0,0,0,114,29,0,0,0,114,36,0,
|
||||||
116,97,108,108,114,80,0,0,0,114,1,0,0,0,41,3,
|
0,0,114,17,0,0,0,114,18,0,0,0,114,41,0,0,
|
||||||
114,199,0,0,0,114,200,0,0,0,114,202,0,0,0,114,
|
0,114,42,0,0,0,114,45,0,0,0,114,57,0,0,0,
|
||||||
10,0,0,0,114,10,0,0,0,114,11,0,0,0,114,203,
|
114,59,0,0,0,114,69,0,0,0,114,75,0,0,0,114,
|
||||||
0,0,0,114,4,0,0,115,12,0,0,0,0,2,10,2,
|
78,0,0,0,114,85,0,0,0,114,96,0,0,0,114,97,
|
||||||
12,1,12,3,8,1,4,1,114,203,0,0,0,41,2,78,
|
0,0,0,114,103,0,0,0,114,79,0,0,0,218,6,111,
|
||||||
78,41,1,78,41,2,78,114,19,0,0,0,41,50,114,3,
|
98,106,101,99,116,90,9,95,80,79,80,85,76,65,84,69,
|
||||||
0,0,0,114,116,0,0,0,114,12,0,0,0,114,16,0,
|
114,129,0,0,0,114,134,0,0,0,114,137,0,0,0,114,
|
||||||
0,0,114,49,0,0,0,114,29,0,0,0,114,36,0,0,
|
92,0,0,0,114,81,0,0,0,114,140,0,0,0,114,141,
|
||||||
0,114,17,0,0,0,114,18,0,0,0,114,41,0,0,0,
|
0,0,0,114,82,0,0,0,114,142,0,0,0,114,152,0,
|
||||||
114,42,0,0,0,114,45,0,0,0,114,57,0,0,0,114,
|
0,0,114,157,0,0,0,114,163,0,0,0,114,165,0,0,
|
||||||
59,0,0,0,114,69,0,0,0,114,75,0,0,0,114,78,
|
0,114,170,0,0,0,114,174,0,0,0,90,15,95,69,82,
|
||||||
0,0,0,114,85,0,0,0,114,96,0,0,0,114,97,0,
|
82,95,77,83,71,95,80,82,69,70,73,88,114,176,0,0,
|
||||||
0,0,114,103,0,0,0,114,79,0,0,0,218,6,111,98,
|
0,114,179,0,0,0,114,180,0,0,0,114,181,0,0,0,
|
||||||
106,101,99,116,90,9,95,80,79,80,85,76,65,84,69,114,
|
114,188,0,0,0,114,192,0,0,0,114,195,0,0,0,114,
|
||||||
129,0,0,0,114,134,0,0,0,114,137,0,0,0,114,92,
|
196,0,0,0,114,200,0,0,0,114,202,0,0,0,114,10,
|
||||||
0,0,0,114,81,0,0,0,114,140,0,0,0,114,141,0,
|
0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,0,
|
||||||
0,0,114,82,0,0,0,114,142,0,0,0,114,152,0,0,
|
0,0,218,8,60,109,111,100,117,108,101,62,8,0,0,0,
|
||||||
0,114,157,0,0,0,114,163,0,0,0,114,165,0,0,0,
|
115,94,0,0,0,4,17,4,2,8,8,8,8,4,2,4,
|
||||||
114,170,0,0,0,114,175,0,0,0,90,15,95,69,82,82,
|
3,16,4,14,68,14,21,14,16,8,27,8,17,8,11,14,
|
||||||
95,77,83,71,95,80,82,69,70,73,88,114,177,0,0,0,
|
8,8,11,8,12,8,16,8,36,14,27,14,101,16,26,6,
|
||||||
114,180,0,0,0,114,181,0,0,0,114,182,0,0,0,114,
|
3,10,45,14,60,8,17,8,17,8,24,8,29,8,23,8,
|
||||||
189,0,0,0,114,193,0,0,0,114,196,0,0,0,114,197,
|
15,14,73,14,77,14,13,8,9,8,9,10,47,8,16,4,
|
||||||
0,0,0,114,201,0,0,0,114,203,0,0,0,114,10,0,
|
1,8,2,8,27,8,16,10,15,8,31,8,27,18,35,8,
|
||||||
0,0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,
|
7,8,47,
|
||||||
0,218,8,60,109,111,100,117,108,101,62,8,0,0,0,115,
|
|
||||||
94,0,0,0,4,17,4,2,8,8,8,8,4,2,4,3,
|
|
||||||
16,4,14,68,14,21,14,16,8,27,8,17,8,11,14,8,
|
|
||||||
8,11,8,12,8,16,8,36,14,27,14,101,16,26,6,3,
|
|
||||||
10,45,14,60,8,17,8,17,8,24,8,29,8,23,8,15,
|
|
||||||
14,73,14,77,14,13,8,9,8,9,10,47,8,20,4,1,
|
|
||||||
8,2,8,27,8,16,10,15,8,31,8,27,18,35,8,7,
|
|
||||||
8,47,
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue