Commit 0911c0d2 authored by Brett Cannon's avatar Brett Cannon

Merge for issue #26367

parents d9dc5302 4f38cb41
...@@ -922,9 +922,12 @@ def _sanity_check(name, package, level): ...@@ -922,9 +922,12 @@ def _sanity_check(name, package, level):
raise TypeError('module name must be str, not {}'.format(type(name))) raise TypeError('module name must be str, not {}'.format(type(name)))
if level < 0: if level < 0:
raise ValueError('level must be >= 0') raise ValueError('level must be >= 0')
if package: if level > 0:
if not isinstance(package, str): if not isinstance(package, str):
raise TypeError('__package__ not set to a string') raise TypeError('__package__ not set to a string')
elif not package:
raise ImportError('attempted relative import with no known parent '
'package')
elif package not in sys.modules: elif package not in sys.modules:
msg = ('Parent module {!r} not loaded, cannot perform relative ' msg = ('Parent module {!r} not loaded, cannot perform relative '
'import') 'import')
......
...@@ -218,6 +218,11 @@ class RelativeImports: ...@@ -218,6 +218,11 @@ class RelativeImports:
self.__import__('a', {'__package__': '', '__spec__': None}, self.__import__('a', {'__package__': '', '__spec__': None},
level=1) level=1)
def test_relative_import_no_package_exists_absolute(self):
with self.assertRaises(ImportError):
self.__import__('sys', {'__package__': '', '__spec__': None},
level=1)
(Frozen_RelativeImports, (Frozen_RelativeImports,
Source_RelativeImports Source_RelativeImports
......
...@@ -185,6 +185,9 @@ Core and Builtins ...@@ -185,6 +185,9 @@ Core and Builtins
Library Library
------- -------
- Issue #26367: importlib.__init__() raises ImportError like
builtins.__import__() when ``level`` is specified but without an accompanying
package specified.
- Issue #26309: In the "socketserver" module, shut down the request (closing - Issue #26309: In the "socketserver" module, shut down the request (closing
the connected socket) when verify_request() returns false. Patch by Aviv the connected socket) when verify_request() returns false. Patch by Aviv
......
...@@ -1611,400 +1611,405 @@ const unsigned char _Py_M__importlib[] = { ...@@ -1611,400 +1611,405 @@ const unsigned char _Py_M__importlib[] = {
1,12,2,22,1,13,1,3,1,13,1,13,4,9,2,12, 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, 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,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, 0,115,206,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, 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, 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, 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, 3,0,131,1,0,130,1,0,124,2,0,100,2,0,107,4,
0,124,1,0,116,1,0,131,2,0,115,102,0,116,2,0, 0,114,171,0,116,0,0,124,1,0,116,1,0,131,2,0,
100,4,0,131,1,0,130,1,0,110,42,0,124,1,0,116, 115,108,0,116,2,0,100,4,0,131,1,0,130,1,0,110,
6,0,106,7,0,107,7,0,114,144,0,100,5,0,125,3, 63,0,124,1,0,115,129,0,116,6,0,100,5,0,131,1,
0,116,8,0,124,3,0,106,3,0,124,1,0,131,1,0, 0,130,1,0,110,42,0,124,1,0,116,7,0,106,8,0,
131,1,0,130,1,0,124,0,0,12,114,175,0,124,2,0, 107,7,0,114,171,0,100,6,0,125,3,0,116,9,0,124,
100,2,0,107,2,0,114,175,0,116,5,0,100,6,0,131, 3,0,106,3,0,124,1,0,131,1,0,131,1,0,130,1,
1,0,130,1,0,100,7,0,83,41,8,122,28,86,101,114, 0,124,0,0,12,114,202,0,124,2,0,100,2,0,107,2,
105,102,121,32,97,114,103,117,109,101,110,116,115,32,97,114, 0,114,202,0,116,5,0,100,7,0,131,1,0,130,1,0,
101,32,34,115,97,110,101,34,46,122,31,109,111,100,117,108, 100,8,0,83,41,9,122,28,86,101,114,105,102,121,32,97,
101,32,110,97,109,101,32,109,117,115,116,32,98,101,32,115, 114,103,117,109,101,110,116,115,32,97,114,101,32,34,115,97,
116,114,44,32,110,111,116,32,123,125,114,33,0,0,0,122, 110,101,34,46,122,31,109,111,100,117,108,101,32,110,97,109,
18,108,101,118,101,108,32,109,117,115,116,32,98,101,32,62, 101,32,109,117,115,116,32,98,101,32,115,116,114,44,32,110,
61,32,48,122,31,95,95,112,97,99,107,97,103,101,95,95, 111,116,32,123,125,114,33,0,0,0,122,18,108,101,118,101,
32,110,111,116,32,115,101,116,32,116,111,32,97,32,115,116, 108,32,109,117,115,116,32,98,101,32,62,61,32,48,122,31,
114,105,110,103,122,61,80,97,114,101,110,116,32,109,111,100, 95,95,112,97,99,107,97,103,101,95,95,32,110,111,116,32,
117,108,101,32,123,33,114,125,32,110,111,116,32,108,111,97, 115,101,116,32,116,111,32,97,32,115,116,114,105,110,103,122,
100,101,100,44,32,99,97,110,110,111,116,32,112,101,114,102, 54,97,116,116,101,109,112,116,101,100,32,114,101,108,97,116,
111,114,109,32,114,101,108,97,116,105,118,101,32,105,109,112, 105,118,101,32,105,109,112,111,114,116,32,119,105,116,104,32,
111,114,116,122,17,69,109,112,116,121,32,109,111,100,117,108, 110,111,32,107,110,111,119,110,32,112,97,114,101,110,116,32,
101,32,110,97,109,101,78,41,9,218,10,105,115,105,110,115, 112,97,99,107,97,103,101,122,61,80,97,114,101,110,116,32,
116,97,110,99,101,218,3,115,116,114,218,9,84,121,112,101, 109,111,100,117,108,101,32,123,33,114,125,32,110,111,116,32,
69,114,114,111,114,114,50,0,0,0,114,13,0,0,0,114, 108,111,97,100,101,100,44,32,99,97,110,110,111,116,32,112,
169,0,0,0,114,14,0,0,0,114,21,0,0,0,218,11, 101,114,102,111,114,109,32,114,101,108,97,116,105,118,101,32,
83,121,115,116,101,109,69,114,114,111,114,41,4,114,15,0, 105,109,112,111,114,116,122,17,69,109,112,116,121,32,109,111,
0,0,114,170,0,0,0,114,171,0,0,0,114,148,0,0, 100,117,108,101,32,110,97,109,101,78,41,10,218,10,105,115,
0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, 105,110,115,116,97,110,99,101,218,3,115,116,114,218,9,84,
218,13,95,115,97,110,105,116,121,95,99,104,101,99,107,151, 121,112,101,69,114,114,111,114,114,50,0,0,0,114,13,0,
3,0,0,115,24,0,0,0,0,2,15,1,27,1,12,1, 0,0,114,169,0,0,0,114,77,0,0,0,114,14,0,0,
12,1,6,1,15,1,15,1,15,1,6,2,21,1,19,1, 0,114,21,0,0,0,218,11,83,121,115,116,101,109,69,114,
114,182,0,0,0,122,16,78,111,32,109,111,100,117,108,101, 114,111,114,41,4,114,15,0,0,0,114,170,0,0,0,114,
32,110,97,109,101,100,32,122,4,123,33,114,125,99,2,0, 171,0,0,0,114,148,0,0,0,114,10,0,0,0,114,10,
0,0,0,0,0,0,8,0,0,0,12,0,0,0,67,0, 0,0,0,114,11,0,0,0,218,13,95,115,97,110,105,116,
0,0,115,40,1,0,0,100,0,0,125,2,0,124,0,0, 121,95,99,104,101,99,107,151,3,0,0,115,28,0,0,0,
106,0,0,100,1,0,131,1,0,100,2,0,25,125,3,0, 0,2,15,1,27,1,12,1,12,1,12,1,15,1,15,1,
124,3,0,114,175,0,124,3,0,116,1,0,106,2,0,107, 6,1,15,2,15,1,6,2,21,1,19,1,114,182,0,0,
7,0,114,59,0,116,3,0,124,1,0,124,3,0,131,2, 0,122,16,78,111,32,109,111,100,117,108,101,32,110,97,109,
0,1,124,0,0,116,1,0,106,2,0,107,6,0,114,85, 101,100,32,122,4,123,33,114,125,99,2,0,0,0,0,0,
0,116,1,0,106,2,0,124,0,0,25,83,116,1,0,106, 0,0,8,0,0,0,12,0,0,0,67,0,0,0,115,40,
2,0,124,3,0,25,125,4,0,121,13,0,124,4,0,106, 1,0,0,100,0,0,125,2,0,124,0,0,106,0,0,100,
4,0,125,2,0,87,110,61,0,4,116,5,0,107,10,0, 1,0,131,1,0,100,2,0,25,125,3,0,124,3,0,114,
114,174,0,1,1,1,116,6,0,100,3,0,23,106,7,0, 175,0,124,3,0,116,1,0,106,2,0,107,7,0,114,59,
124,0,0,124,3,0,131,2,0,125,5,0,116,8,0,124, 0,116,3,0,124,1,0,124,3,0,131,2,0,1,124,0,
5,0,100,4,0,124,0,0,131,1,1,100,0,0,130,2, 0,116,1,0,106,2,0,107,6,0,114,85,0,116,1,0,
0,89,110,1,0,88,116,9,0,124,0,0,124,2,0,131, 106,2,0,124,0,0,25,83,116,1,0,106,2,0,124,3,
2,0,125,6,0,124,6,0,100,0,0,107,8,0,114,232, 0,25,125,4,0,121,13,0,124,4,0,106,4,0,125,2,
0,116,8,0,116,6,0,106,7,0,124,0,0,131,1,0, 0,87,110,61,0,4,116,5,0,107,10,0,114,174,0,1,
100,4,0,124,0,0,131,1,1,130,1,0,110,12,0,116, 1,1,116,6,0,100,3,0,23,106,7,0,124,0,0,124,
10,0,124,6,0,131,1,0,125,7,0,124,3,0,114,36, 3,0,131,2,0,125,5,0,116,8,0,124,5,0,100,4,
1,116,1,0,106,2,0,124,3,0,25,125,4,0,116,11, 0,124,0,0,131,1,1,100,0,0,130,2,0,89,110,1,
0,124,4,0,124,0,0,106,0,0,100,1,0,131,1,0, 0,88,116,9,0,124,0,0,124,2,0,131,2,0,125,6,
100,5,0,25,124,7,0,131,3,0,1,124,7,0,83,41, 0,124,6,0,100,0,0,107,8,0,114,232,0,116,8,0,
6,78,114,121,0,0,0,114,33,0,0,0,122,23,59,32, 116,6,0,106,7,0,124,0,0,131,1,0,100,4,0,124,
123,33,114,125,32,105,115,32,110,111,116,32,97,32,112,97, 0,0,131,1,1,130,1,0,110,12,0,116,10,0,124,6,
99,107,97,103,101,114,15,0,0,0,114,141,0,0,0,41, 0,131,1,0,125,7,0,124,3,0,114,36,1,116,1,0,
12,114,122,0,0,0,114,14,0,0,0,114,21,0,0,0, 106,2,0,124,3,0,25,125,4,0,116,11,0,124,4,0,
114,65,0,0,0,114,131,0,0,0,114,96,0,0,0,218, 124,0,0,106,0,0,100,1,0,131,1,0,100,5,0,25,
8,95,69,82,82,95,77,83,71,114,50,0,0,0,114,77, 124,7,0,131,3,0,1,124,7,0,83,41,6,78,114,121,
0,0,0,114,177,0,0,0,114,150,0,0,0,114,5,0, 0,0,0,114,33,0,0,0,122,23,59,32,123,33,114,125,
0,0,41,8,114,15,0,0,0,218,7,105,109,112,111,114, 32,105,115,32,110,111,116,32,97,32,112,97,99,107,97,103,
116,95,114,153,0,0,0,114,123,0,0,0,90,13,112,97, 101,114,15,0,0,0,114,141,0,0,0,41,12,114,122,0,
114,101,110,116,95,109,111,100,117,108,101,114,148,0,0,0, 0,0,114,14,0,0,0,114,21,0,0,0,114,65,0,0,
114,88,0,0,0,114,89,0,0,0,114,10,0,0,0,114, 0,114,131,0,0,0,114,96,0,0,0,218,8,95,69,82,
10,0,0,0,114,11,0,0,0,218,23,95,102,105,110,100, 82,95,77,83,71,114,50,0,0,0,114,77,0,0,0,114,
95,97,110,100,95,108,111,97,100,95,117,110,108,111,99,107, 177,0,0,0,114,150,0,0,0,114,5,0,0,0,41,8,
101,100,171,3,0,0,115,42,0,0,0,0,1,6,1,19, 114,15,0,0,0,218,7,105,109,112,111,114,116,95,114,153,
1,6,1,15,1,13,2,15,1,11,1,13,1,3,1,13, 0,0,0,114,123,0,0,0,90,13,112,97,114,101,110,116,
1,13,1,22,1,26,1,15,1,12,1,30,2,12,1,6, 95,109,111,100,117,108,101,114,148,0,0,0,114,88,0,0,
2,13,1,29,1,114,185,0,0,0,99,2,0,0,0,0, 0,114,89,0,0,0,114,10,0,0,0,114,10,0,0,0,
0,0,0,2,0,0,0,10,0,0,0,67,0,0,0,115, 114,11,0,0,0,218,23,95,102,105,110,100,95,97,110,100,
37,0,0,0,116,0,0,124,0,0,131,1,0,143,18,0, 95,108,111,97,100,95,117,110,108,111,99,107,101,100,174,3,
1,116,1,0,124,0,0,124,1,0,131,2,0,83,87,100, 0,0,115,42,0,0,0,0,1,6,1,19,1,6,1,15,
1,0,81,82,88,100,1,0,83,41,2,122,54,70,105,110, 1,13,2,15,1,11,1,13,1,3,1,13,1,13,1,22,
100,32,97,110,100,32,108,111,97,100,32,116,104,101,32,109, 1,26,1,15,1,12,1,30,2,12,1,6,2,13,1,29,
111,100,117,108,101,44,32,97,110,100,32,114,101,108,101,97, 1,114,185,0,0,0,99,2,0,0,0,0,0,0,0,2,
115,101,32,116,104,101,32,105,109,112,111,114,116,32,108,111, 0,0,0,10,0,0,0,67,0,0,0,115,37,0,0,0,
99,107,46,78,41,2,114,54,0,0,0,114,185,0,0,0, 116,0,0,124,0,0,131,1,0,143,18,0,1,116,1,0,
41,2,114,15,0,0,0,114,184,0,0,0,114,10,0,0, 124,0,0,124,1,0,131,2,0,83,87,100,1,0,81,82,
0,114,10,0,0,0,114,11,0,0,0,218,14,95,102,105, 88,100,1,0,83,41,2,122,54,70,105,110,100,32,97,110,
110,100,95,97,110,100,95,108,111,97,100,198,3,0,0,115, 100,32,108,111,97,100,32,116,104,101,32,109,111,100,117,108,
4,0,0,0,0,2,13,1,114,186,0,0,0,114,33,0, 101,44,32,97,110,100,32,114,101,108,101,97,115,101,32,116,
0,0,99,3,0,0,0,0,0,0,0,5,0,0,0,4, 104,101,32,105,109,112,111,114,116,32,108,111,99,107,46,78,
0,0,0,67,0,0,0,115,166,0,0,0,116,0,0,124, 41,2,114,54,0,0,0,114,185,0,0,0,41,2,114,15,
0,0,124,1,0,124,2,0,131,3,0,1,124,2,0,100, 0,0,0,114,184,0,0,0,114,10,0,0,0,114,10,0,
1,0,107,4,0,114,46,0,116,1,0,124,0,0,124,1, 0,0,114,11,0,0,0,218,14,95,102,105,110,100,95,97,
0,124,2,0,131,3,0,125,0,0,116,2,0,106,3,0, 110,100,95,108,111,97,100,201,3,0,0,115,4,0,0,0,
131,0,0,1,124,0,0,116,4,0,106,5,0,107,7,0, 0,2,13,1,114,186,0,0,0,114,33,0,0,0,99,3,
114,84,0,116,6,0,124,0,0,116,7,0,131,2,0,83, 0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,67,
116,4,0,106,5,0,124,0,0,25,125,3,0,124,3,0, 0,0,0,115,166,0,0,0,116,0,0,124,0,0,124,1,
100,2,0,107,8,0,114,152,0,116,2,0,106,8,0,131, 0,124,2,0,131,3,0,1,124,2,0,100,1,0,107,4,
0,0,1,100,3,0,106,9,0,124,0,0,131,1,0,125, 0,114,46,0,116,1,0,124,0,0,124,1,0,124,2,0,
4,0,116,10,0,124,4,0,100,4,0,124,0,0,131,1, 131,3,0,125,0,0,116,2,0,106,3,0,131,0,0,1,
1,130,1,0,116,11,0,124,0,0,131,1,0,1,124,3, 124,0,0,116,4,0,106,5,0,107,7,0,114,84,0,116,
0,83,41,5,97,50,1,0,0,73,109,112,111,114,116,32, 6,0,124,0,0,116,7,0,131,2,0,83,116,4,0,106,
97,110,100,32,114,101,116,117,114,110,32,116,104,101,32,109, 5,0,124,0,0,25,125,3,0,124,3,0,100,2,0,107,
111,100,117,108,101,32,98,97,115,101,100,32,111,110,32,105, 8,0,114,152,0,116,2,0,106,8,0,131,0,0,1,100,
116,115,32,110,97,109,101,44,32,116,104,101,32,112,97,99, 3,0,106,9,0,124,0,0,131,1,0,125,4,0,116,10,
107,97,103,101,32,116,104,101,32,99,97,108,108,32,105,115, 0,124,4,0,100,4,0,124,0,0,131,1,1,130,1,0,
10,32,32,32,32,98,101,105,110,103,32,109,97,100,101,32, 116,11,0,124,0,0,131,1,0,1,124,3,0,83,41,5,
102,114,111,109,44,32,97,110,100,32,116,104,101,32,108,101, 97,50,1,0,0,73,109,112,111,114,116,32,97,110,100,32,
118,101,108,32,97,100,106,117,115,116,109,101,110,116,46,10, 114,101,116,117,114,110,32,116,104,101,32,109,111,100,117,108,
10,32,32,32,32,84,104,105,115,32,102,117,110,99,116,105, 101,32,98,97,115,101,100,32,111,110,32,105,116,115,32,110,
111,110,32,114,101,112,114,101,115,101,110,116,115,32,116,104, 97,109,101,44,32,116,104,101,32,112,97,99,107,97,103,101,
101,32,103,114,101,97,116,101,115,116,32,99,111,109,109,111, 32,116,104,101,32,99,97,108,108,32,105,115,10,32,32,32,
110,32,100,101,110,111,109,105,110,97,116,111,114,32,111,102, 32,98,101,105,110,103,32,109,97,100,101,32,102,114,111,109,
32,102,117,110,99,116,105,111,110,97,108,105,116,121,10,32, 44,32,97,110,100,32,116,104,101,32,108,101,118,101,108,32,
32,32,32,98,101,116,119,101,101,110,32,105,109,112,111,114, 97,100,106,117,115,116,109,101,110,116,46,10,10,32,32,32,
116,95,109,111,100,117,108,101,32,97,110,100,32,95,95,105, 32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,114,
109,112,111,114,116,95,95,46,32,84,104,105,115,32,105,110, 101,112,114,101,115,101,110,116,115,32,116,104,101,32,103,114,
99,108,117,100,101,115,32,115,101,116,116,105,110,103,32,95, 101,97,116,101,115,116,32,99,111,109,109,111,110,32,100,101,
95,112,97,99,107,97,103,101,95,95,32,105,102,10,32,32, 110,111,109,105,110,97,116,111,114,32,111,102,32,102,117,110,
32,32,116,104,101,32,108,111,97,100,101,114,32,100,105,100, 99,116,105,111,110,97,108,105,116,121,10,32,32,32,32,98,
32,110,111,116,46,10,10,32,32,32,32,114,33,0,0,0, 101,116,119,101,101,110,32,105,109,112,111,114,116,95,109,111,
78,122,40,105,109,112,111,114,116,32,111,102,32,123,125,32, 100,117,108,101,32,97,110,100,32,95,95,105,109,112,111,114,
104,97,108,116,101,100,59,32,78,111,110,101,32,105,110,32, 116,95,95,46,32,84,104,105,115,32,105,110,99,108,117,100,
115,121,115,46,109,111,100,117,108,101,115,114,15,0,0,0, 101,115,32,115,101,116,116,105,110,103,32,95,95,112,97,99,
41,12,114,182,0,0,0,114,172,0,0,0,114,57,0,0, 107,97,103,101,95,95,32,105,102,10,32,32,32,32,116,104,
0,114,146,0,0,0,114,14,0,0,0,114,21,0,0,0, 101,32,108,111,97,100,101,114,32,100,105,100,32,110,111,116,
114,186,0,0,0,218,11,95,103,99,100,95,105,109,112,111, 46,10,10,32,32,32,32,114,33,0,0,0,78,122,40,105,
114,116,114,58,0,0,0,114,50,0,0,0,114,77,0,0, 109,112,111,114,116,32,111,102,32,123,125,32,104,97,108,116,
0,114,63,0,0,0,41,5,114,15,0,0,0,114,170,0, 101,100,59,32,78,111,110,101,32,105,110,32,115,121,115,46,
0,0,114,171,0,0,0,114,89,0,0,0,114,74,0,0, 109,111,100,117,108,101,115,114,15,0,0,0,41,12,114,182,
0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, 0,0,0,114,172,0,0,0,114,57,0,0,0,114,146,0,
114,187,0,0,0,204,3,0,0,115,28,0,0,0,0,9, 0,0,114,14,0,0,0,114,21,0,0,0,114,186,0,0,
16,1,12,1,18,1,10,1,15,1,13,1,13,1,12,1, 0,218,11,95,103,99,100,95,105,109,112,111,114,116,114,58,
10,1,6,1,9,1,18,1,10,1,114,187,0,0,0,99, 0,0,0,114,50,0,0,0,114,77,0,0,0,114,63,0,
3,0,0,0,0,0,0,0,6,0,0,0,17,0,0,0, 0,0,41,5,114,15,0,0,0,114,170,0,0,0,114,171,
67,0,0,0,115,239,0,0,0,116,0,0,124,0,0,100, 0,0,0,114,89,0,0,0,114,74,0,0,0,114,10,0,
1,0,131,2,0,114,235,0,100,2,0,124,1,0,107,6, 0,0,114,10,0,0,0,114,11,0,0,0,114,187,0,0,
0,114,83,0,116,1,0,124,1,0,131,1,0,125,1,0, 0,207,3,0,0,115,28,0,0,0,0,9,16,1,12,1,
124,1,0,106,2,0,100,2,0,131,1,0,1,116,0,0, 18,1,10,1,15,1,13,1,13,1,12,1,10,1,6,1,
124,0,0,100,3,0,131,2,0,114,83,0,124,1,0,106, 9,1,18,1,10,1,114,187,0,0,0,99,3,0,0,0,
3,0,124,0,0,106,4,0,131,1,0,1,120,149,0,124, 0,0,0,0,6,0,0,0,17,0,0,0,67,0,0,0,
1,0,68,93,141,0,125,3,0,116,0,0,124,0,0,124, 115,239,0,0,0,116,0,0,124,0,0,100,1,0,131,2,
3,0,131,2,0,115,90,0,100,4,0,106,5,0,124,0, 0,114,235,0,100,2,0,124,1,0,107,6,0,114,83,0,
0,106,6,0,124,3,0,131,2,0,125,4,0,121,17,0, 116,1,0,124,1,0,131,1,0,125,1,0,124,1,0,106,
116,7,0,124,2,0,124,4,0,131,2,0,1,87,113,90, 2,0,100,2,0,131,1,0,1,116,0,0,124,0,0,100,
0,4,116,8,0,107,10,0,114,230,0,1,125,5,0,1, 3,0,131,2,0,114,83,0,124,1,0,106,3,0,124,0,
122,47,0,116,9,0,124,5,0,131,1,0,106,10,0,116, 0,106,4,0,131,1,0,1,120,149,0,124,1,0,68,93,
11,0,131,1,0,114,209,0,124,5,0,106,12,0,124,4, 141,0,125,3,0,116,0,0,124,0,0,124,3,0,131,2,
0,107,2,0,114,209,0,119,90,0,130,0,0,87,89,100, 0,115,90,0,100,4,0,106,5,0,124,0,0,106,6,0,
5,0,100,5,0,125,5,0,126,5,0,88,113,90,0,88, 124,3,0,131,2,0,125,4,0,121,17,0,116,7,0,124,
113,90,0,87,124,0,0,83,41,6,122,238,70,105,103,117, 2,0,124,4,0,131,2,0,1,87,113,90,0,4,116,8,
114,101,32,111,117,116,32,119,104,97,116,32,95,95,105,109, 0,107,10,0,114,230,0,1,125,5,0,1,122,47,0,116,
112,111,114,116,95,95,32,115,104,111,117,108,100,32,114,101, 9,0,124,5,0,131,1,0,106,10,0,116,11,0,131,1,
116,117,114,110,46,10,10,32,32,32,32,84,104,101,32,105, 0,114,209,0,124,5,0,106,12,0,124,4,0,107,2,0,
109,112,111,114,116,95,32,112,97,114,97,109,101,116,101,114, 114,209,0,119,90,0,130,0,0,87,89,100,5,0,100,5,
32,105,115,32,97,32,99,97,108,108,97,98,108,101,32,119, 0,125,5,0,126,5,0,88,113,90,0,88,113,90,0,87,
104,105,99,104,32,116,97,107,101,115,32,116,104,101,32,110, 124,0,0,83,41,6,122,238,70,105,103,117,114,101,32,111,
97,109,101,32,111,102,32,109,111,100,117,108,101,32,116,111, 117,116,32,119,104,97,116,32,95,95,105,109,112,111,114,116,
10,32,32,32,32,105,109,112,111,114,116,46,32,73,116,32, 95,95,32,115,104,111,117,108,100,32,114,101,116,117,114,110,
105,115,32,114,101,113,117,105,114,101,100,32,116,111,32,100, 46,10,10,32,32,32,32,84,104,101,32,105,109,112,111,114,
101,99,111,117,112,108,101,32,116,104,101,32,102,117,110,99, 116,95,32,112,97,114,97,109,101,116,101,114,32,105,115,32,
116,105,111,110,32,102,114,111,109,32,97,115,115,117,109,105, 97,32,99,97,108,108,97,98,108,101,32,119,104,105,99,104,
110,103,32,105,109,112,111,114,116,108,105,98,39,115,10,32, 32,116,97,107,101,115,32,116,104,101,32,110,97,109,101,32,
32,32,32,105,109,112,111,114,116,32,105,109,112,108,101,109, 111,102,32,109,111,100,117,108,101,32,116,111,10,32,32,32,
101,110,116,97,116,105,111,110,32,105,115,32,100,101,115,105, 32,105,109,112,111,114,116,46,32,73,116,32,105,115,32,114,
114,101,100,46,10,10,32,32,32,32,114,131,0,0,0,250, 101,113,117,105,114,101,100,32,116,111,32,100,101,99,111,117,
1,42,218,7,95,95,97,108,108,95,95,122,5,123,125,46, 112,108,101,32,116,104,101,32,102,117,110,99,116,105,111,110,
123,125,78,41,13,114,4,0,0,0,114,130,0,0,0,218, 32,102,114,111,109,32,97,115,115,117,109,105,110,103,32,105,
6,114,101,109,111,118,101,218,6,101,120,116,101,110,100,114, 109,112,111,114,116,108,105,98,39,115,10,32,32,32,32,105,
189,0,0,0,114,50,0,0,0,114,1,0,0,0,114,65, 109,112,111,114,116,32,105,109,112,108,101,109,101,110,116,97,
0,0,0,114,77,0,0,0,114,179,0,0,0,114,71,0, 116,105,111,110,32,105,115,32,100,101,115,105,114,101,100,46,
0,0,218,15,95,69,82,82,95,77,83,71,95,80,82,69, 10,10,32,32,32,32,114,131,0,0,0,250,1,42,218,7,
70,73,88,114,15,0,0,0,41,6,114,89,0,0,0,218, 95,95,97,108,108,95,95,122,5,123,125,46,123,125,78,41,
8,102,114,111,109,108,105,115,116,114,184,0,0,0,218,1, 13,114,4,0,0,0,114,130,0,0,0,218,6,114,101,109,
120,90,9,102,114,111,109,95,110,97,109,101,90,3,101,120, 111,118,101,218,6,101,120,116,101,110,100,114,189,0,0,0,
99,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, 114,50,0,0,0,114,1,0,0,0,114,65,0,0,0,114,
218,16,95,104,97,110,100,108,101,95,102,114,111,109,108,105, 77,0,0,0,114,179,0,0,0,114,71,0,0,0,218,15,
115,116,228,3,0,0,115,34,0,0,0,0,10,15,1,12, 95,69,82,82,95,77,83,71,95,80,82,69,70,73,88,114,
1,12,1,13,1,15,1,16,1,13,1,15,1,21,1,3, 15,0,0,0,41,6,114,89,0,0,0,218,8,102,114,111,
1,17,1,18,4,21,1,15,1,3,1,26,1,114,195,0, 109,108,105,115,116,114,184,0,0,0,218,1,120,90,9,102,
0,0,99,1,0,0,0,0,0,0,0,3,0,0,0,7, 114,111,109,95,110,97,109,101,90,3,101,120,99,114,10,0,
0,0,0,67,0,0,0,115,214,0,0,0,124,0,0,106, 0,0,114,10,0,0,0,114,11,0,0,0,218,16,95,104,
0,0,100,1,0,131,1,0,125,1,0,124,0,0,106,0, 97,110,100,108,101,95,102,114,111,109,108,105,115,116,231,3,
0,100,2,0,131,1,0,125,2,0,124,1,0,100,3,0, 0,0,115,34,0,0,0,0,10,15,1,12,1,12,1,13,
107,9,0,114,128,0,124,2,0,100,3,0,107,9,0,114, 1,15,1,16,1,13,1,15,1,21,1,3,1,17,1,18,
124,0,124,1,0,124,2,0,106,1,0,107,3,0,114,124, 4,21,1,15,1,3,1,26,1,114,195,0,0,0,99,1,
0,116,2,0,106,3,0,100,4,0,106,4,0,100,5,0, 0,0,0,0,0,0,0,3,0,0,0,7,0,0,0,67,
124,1,0,155,2,0,100,6,0,124,2,0,106,1,0,155, 0,0,0,115,214,0,0,0,124,0,0,106,0,0,100,1,
2,0,100,7,0,103,5,0,131,1,0,116,5,0,100,8, 0,131,1,0,125,1,0,124,0,0,106,0,0,100,2,0,
0,100,9,0,131,2,1,1,124,1,0,83,124,2,0,100, 131,1,0,125,2,0,124,1,0,100,3,0,107,9,0,114,
3,0,107,9,0,114,147,0,124,2,0,106,1,0,83,116, 128,0,124,2,0,100,3,0,107,9,0,114,124,0,124,1,
2,0,106,3,0,100,10,0,116,5,0,100,8,0,100,9, 0,124,2,0,106,1,0,107,3,0,114,124,0,116,2,0,
0,131,2,1,1,124,0,0,100,11,0,25,125,1,0,100, 106,3,0,100,4,0,106,4,0,100,5,0,124,1,0,155,
12,0,124,0,0,107,7,0,114,210,0,124,1,0,106,6, 2,0,100,6,0,124,2,0,106,1,0,155,2,0,100,7,
0,100,13,0,131,1,0,100,14,0,25,125,1,0,124,1, 0,103,5,0,131,1,0,116,5,0,100,8,0,100,9,0,
0,83,41,15,122,167,67,97,108,99,117,108,97,116,101,32, 131,2,1,1,124,1,0,83,124,2,0,100,3,0,107,9,
119,104,97,116,32,95,95,112,97,99,107,97,103,101,95,95, 0,114,147,0,124,2,0,106,1,0,83,116,2,0,106,3,
32,115,104,111,117,108,100,32,98,101,46,10,10,32,32,32, 0,100,10,0,116,5,0,100,8,0,100,9,0,131,2,1,
32,95,95,112,97,99,107,97,103,101,95,95,32,105,115,32, 1,124,0,0,100,11,0,25,125,1,0,100,12,0,124,0,
110,111,116,32,103,117,97,114,97,110,116,101,101,100,32,116, 0,107,7,0,114,210,0,124,1,0,106,6,0,100,13,0,
111,32,98,101,32,100,101,102,105,110,101,100,32,111,114,32, 131,1,0,100,14,0,25,125,1,0,124,1,0,83,41,15,
99,111,117,108,100,32,98,101,32,115,101,116,32,116,111,32, 122,167,67,97,108,99,117,108,97,116,101,32,119,104,97,116,
78,111,110,101,10,32,32,32,32,116,111,32,114,101,112,114, 32,95,95,112,97,99,107,97,103,101,95,95,32,115,104,111,
101,115,101,110,116,32,116,104,97,116,32,105,116,115,32,112, 117,108,100,32,98,101,46,10,10,32,32,32,32,95,95,112,
114,111,112,101,114,32,118,97,108,117,101,32,105,115,32,117, 97,99,107,97,103,101,95,95,32,105,115,32,110,111,116,32,
110,107,110,111,119,110,46,10,10,32,32,32,32,114,134,0, 103,117,97,114,97,110,116,101,101,100,32,116,111,32,98,101,
0,0,114,95,0,0,0,78,218,0,122,32,95,95,112,97, 32,100,101,102,105,110,101,100,32,111,114,32,99,111,117,108,
99,107,97,103,101,95,95,32,33,61,32,95,95,115,112,101, 100,32,98,101,32,115,101,116,32,116,111,32,78,111,110,101,
99,95,95,46,112,97,114,101,110,116,32,40,122,4,32,33, 10,32,32,32,32,116,111,32,114,101,112,114,101,115,101,110,
61,32,250,1,41,114,140,0,0,0,233,3,0,0,0,122, 116,32,116,104,97,116,32,105,116,115,32,112,114,111,112,101,
89,99,97,110,39,116,32,114,101,115,111,108,118,101,32,112, 114,32,118,97,108,117,101,32,105,115,32,117,110,107,110,111,
97,99,107,97,103,101,32,102,114,111,109,32,95,95,115,112, 119,110,46,10,10,32,32,32,32,114,134,0,0,0,114,95,
101,99,95,95,32,111,114,32,95,95,112,97,99,107,97,103, 0,0,0,78,218,0,122,32,95,95,112,97,99,107,97,103,
101,95,95,44,32,102,97,108,108,105,110,103,32,98,97,99, 101,95,95,32,33,61,32,95,95,115,112,101,99,95,95,46,
107,32,111,110,32,95,95,110,97,109,101,95,95,32,97,110, 112,97,114,101,110,116,32,40,122,4,32,33,61,32,250,1,
100,32,95,95,112,97,116,104,95,95,114,1,0,0,0,114, 41,114,140,0,0,0,233,3,0,0,0,122,89,99,97,110,
131,0,0,0,114,121,0,0,0,114,33,0,0,0,41,7, 39,116,32,114,101,115,111,108,118,101,32,112,97,99,107,97,
114,42,0,0,0,114,123,0,0,0,114,142,0,0,0,114, 103,101,32,102,114,111,109,32,95,95,115,112,101,99,95,95,
143,0,0,0,114,115,0,0,0,114,176,0,0,0,114,122, 32,111,114,32,95,95,112,97,99,107,97,103,101,95,95,44,
0,0,0,41,3,218,7,103,108,111,98,97,108,115,114,170, 32,102,97,108,108,105,110,103,32,98,97,99,107,32,111,110,
0,0,0,114,88,0,0,0,114,10,0,0,0,114,10,0, 32,95,95,110,97,109,101,95,95,32,97,110,100,32,95,95,
0,0,114,11,0,0,0,218,17,95,99,97,108,99,95,95, 112,97,116,104,95,95,114,1,0,0,0,114,131,0,0,0,
95,112,97,99,107,97,103,101,95,95,4,4,0,0,115,30, 114,121,0,0,0,114,33,0,0,0,41,7,114,42,0,0,
0,0,0,0,7,15,1,15,1,12,1,27,1,42,2,13, 0,114,123,0,0,0,114,142,0,0,0,114,143,0,0,0,
1,4,1,12,1,7,2,9,2,13,1,10,1,12,1,19, 114,115,0,0,0,114,176,0,0,0,114,122,0,0,0,41,
1,114,200,0,0,0,99,5,0,0,0,0,0,0,0,9, 3,218,7,103,108,111,98,97,108,115,114,170,0,0,0,114,
0,0,0,5,0,0,0,67,0,0,0,115,227,0,0,0, 88,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,
124,4,0,100,1,0,107,2,0,114,27,0,116,0,0,124, 0,0,0,218,17,95,99,97,108,99,95,95,95,112,97,99,
0,0,131,1,0,125,5,0,110,54,0,124,1,0,100,2, 107,97,103,101,95,95,7,4,0,0,115,30,0,0,0,0,
0,107,9,0,114,45,0,124,1,0,110,3,0,105,0,0, 7,15,1,15,1,12,1,27,1,42,2,13,1,4,1,12,
125,6,0,116,1,0,124,6,0,131,1,0,125,7,0,116, 1,7,2,9,2,13,1,10,1,12,1,19,1,114,200,0,
0,0,124,0,0,124,7,0,124,4,0,131,3,0,125,5, 0,0,99,5,0,0,0,0,0,0,0,9,0,0,0,5,
0,124,3,0,115,207,0,124,4,0,100,1,0,107,2,0, 0,0,0,67,0,0,0,115,227,0,0,0,124,4,0,100,
114,122,0,116,0,0,124,0,0,106,2,0,100,3,0,131, 1,0,107,2,0,114,27,0,116,0,0,124,0,0,131,1,
1,0,100,1,0,25,131,1,0,83,124,0,0,115,132,0, 0,125,5,0,110,54,0,124,1,0,100,2,0,107,9,0,
124,5,0,83,116,3,0,124,0,0,131,1,0,116,3,0, 114,45,0,124,1,0,110,3,0,105,0,0,125,6,0,116,
124,0,0,106,2,0,100,3,0,131,1,0,100,1,0,25, 1,0,124,6,0,131,1,0,125,7,0,116,0,0,124,0,
131,1,0,24,125,8,0,116,4,0,106,5,0,124,5,0, 0,124,7,0,124,4,0,131,3,0,125,5,0,124,3,0,
106,6,0,100,2,0,116,3,0,124,5,0,106,6,0,131, 115,207,0,124,4,0,100,1,0,107,2,0,114,122,0,116,
1,0,124,8,0,24,133,2,0,25,25,83,110,16,0,116, 0,0,124,0,0,106,2,0,100,3,0,131,1,0,100,1,
7,0,124,5,0,124,3,0,116,0,0,131,3,0,83,100, 0,25,131,1,0,83,124,0,0,115,132,0,124,5,0,83,
2,0,83,41,4,97,214,1,0,0,73,109,112,111,114,116, 116,3,0,124,0,0,131,1,0,116,3,0,124,0,0,106,
32,97,32,109,111,100,117,108,101,46,10,10,32,32,32,32, 2,0,100,3,0,131,1,0,100,1,0,25,131,1,0,24,
84,104,101,32,39,103,108,111,98,97,108,115,39,32,97,114, 125,8,0,116,4,0,106,5,0,124,5,0,106,6,0,100,
103,117,109,101,110,116,32,105,115,32,117,115,101,100,32,116, 2,0,116,3,0,124,5,0,106,6,0,131,1,0,124,8,
111,32,105,110,102,101,114,32,119,104,101,114,101,32,116,104, 0,24,133,2,0,25,25,83,110,16,0,116,7,0,124,5,
101,32,105,109,112,111,114,116,32,105,115,32,111,99,99,117, 0,124,3,0,116,0,0,131,3,0,83,100,2,0,83,41,
114,105,110,103,32,102,114,111,109,10,32,32,32,32,116,111, 4,97,214,1,0,0,73,109,112,111,114,116,32,97,32,109,
32,104,97,110,100,108,101,32,114,101,108,97,116,105,118,101, 111,100,117,108,101,46,10,10,32,32,32,32,84,104,101,32,
32,105,109,112,111,114,116,115,46,32,84,104,101,32,39,108, 39,103,108,111,98,97,108,115,39,32,97,114,103,117,109,101,
111,99,97,108,115,39,32,97,114,103,117,109,101,110,116,32, 110,116,32,105,115,32,117,115,101,100,32,116,111,32,105,110,
105,115,32,105,103,110,111,114,101,100,46,32,84,104,101,10, 102,101,114,32,119,104,101,114,101,32,116,104,101,32,105,109,
32,32,32,32,39,102,114,111,109,108,105,115,116,39,32,97, 112,111,114,116,32,105,115,32,111,99,99,117,114,105,110,103,
114,103,117,109,101,110,116,32,115,112,101,99,105,102,105,101, 32,102,114,111,109,10,32,32,32,32,116,111,32,104,97,110,
115,32,119,104,97,116,32,115,104,111,117,108,100,32,101,120, 100,108,101,32,114,101,108,97,116,105,118,101,32,105,109,112,
105,115,116,32,97,115,32,97,116,116,114,105,98,117,116,101, 111,114,116,115,46,32,84,104,101,32,39,108,111,99,97,108,
115,32,111,110,32,116,104,101,32,109,111,100,117,108,101,10, 115,39,32,97,114,103,117,109,101,110,116,32,105,115,32,105,
32,32,32,32,98,101,105,110,103,32,105,109,112,111,114,116, 103,110,111,114,101,100,46,32,84,104,101,10,32,32,32,32,
101,100,32,40,101,46,103,46,32,96,96,102,114,111,109,32, 39,102,114,111,109,108,105,115,116,39,32,97,114,103,117,109,
109,111,100,117,108,101,32,105,109,112,111,114,116,32,60,102, 101,110,116,32,115,112,101,99,105,102,105,101,115,32,119,104,
114,111,109,108,105,115,116,62,96,96,41,46,32,32,84,104, 97,116,32,115,104,111,117,108,100,32,101,120,105,115,116,32,
101,32,39,108,101,118,101,108,39,10,32,32,32,32,97,114, 97,115,32,97,116,116,114,105,98,117,116,101,115,32,111,110,
103,117,109,101,110,116,32,114,101,112,114,101,115,101,110,116, 32,116,104,101,32,109,111,100,117,108,101,10,32,32,32,32,
115,32,116,104,101,32,112,97,99,107,97,103,101,32,108,111, 98,101,105,110,103,32,105,109,112,111,114,116,101,100,32,40,
99,97,116,105,111,110,32,116,111,32,105,109,112,111,114,116, 101,46,103,46,32,96,96,102,114,111,109,32,109,111,100,117,
32,102,114,111,109,32,105,110,32,97,32,114,101,108,97,116, 108,101,32,105,109,112,111,114,116,32,60,102,114,111,109,108,
105,118,101,10,32,32,32,32,105,109,112,111,114,116,32,40, 105,115,116,62,96,96,41,46,32,32,84,104,101,32,39,108,
101,46,103,46,32,96,96,102,114,111,109,32,46,46,112,107, 101,118,101,108,39,10,32,32,32,32,97,114,103,117,109,101,
103,32,105,109,112,111,114,116,32,109,111,100,96,96,32,119, 110,116,32,114,101,112,114,101,115,101,110,116,115,32,116,104,
111,117,108,100,32,104,97,118,101,32,97,32,39,108,101,118, 101,32,112,97,99,107,97,103,101,32,108,111,99,97,116,105,
101,108,39,32,111,102,32,50,41,46,10,10,32,32,32,32, 111,110,32,116,111,32,105,109,112,111,114,116,32,102,114,111,
114,33,0,0,0,78,114,121,0,0,0,41,8,114,187,0, 109,32,105,110,32,97,32,114,101,108,97,116,105,118,101,10,
0,0,114,200,0,0,0,218,9,112,97,114,116,105,116,105, 32,32,32,32,105,109,112,111,114,116,32,40,101,46,103,46,
111,110,114,168,0,0,0,114,14,0,0,0,114,21,0,0, 32,96,96,102,114,111,109,32,46,46,112,107,103,32,105,109,
0,114,1,0,0,0,114,195,0,0,0,41,9,114,15,0, 112,111,114,116,32,109,111,100,96,96,32,119,111,117,108,100,
0,0,114,199,0,0,0,218,6,108,111,99,97,108,115,114, 32,104,97,118,101,32,97,32,39,108,101,118,101,108,39,32,
193,0,0,0,114,171,0,0,0,114,89,0,0,0,90,8, 111,102,32,50,41,46,10,10,32,32,32,32,114,33,0,0,
103,108,111,98,97,108,115,95,114,170,0,0,0,90,7,99, 0,78,114,121,0,0,0,41,8,114,187,0,0,0,114,200,
117,116,95,111,102,102,114,10,0,0,0,114,10,0,0,0, 0,0,0,218,9,112,97,114,116,105,116,105,111,110,114,168,
114,11,0,0,0,218,10,95,95,105,109,112,111,114,116,95, 0,0,0,114,14,0,0,0,114,21,0,0,0,114,1,0,
95,31,4,0,0,115,26,0,0,0,0,11,12,1,15,2, 0,0,114,195,0,0,0,41,9,114,15,0,0,0,114,199,
24,1,12,1,18,1,6,3,12,1,23,1,6,1,4,4, 0,0,0,218,6,108,111,99,97,108,115,114,193,0,0,0,
35,3,40,2,114,203,0,0,0,99,1,0,0,0,0,0, 114,171,0,0,0,114,89,0,0,0,90,8,103,108,111,98,
0,0,2,0,0,0,3,0,0,0,67,0,0,0,115,53, 97,108,115,95,114,170,0,0,0,90,7,99,117,116,95,111,
0,0,0,116,0,0,106,1,0,124,0,0,131,1,0,125, 102,102,114,10,0,0,0,114,10,0,0,0,114,11,0,0,
1,0,124,1,0,100,0,0,107,8,0,114,43,0,116,2, 0,218,10,95,95,105,109,112,111,114,116,95,95,34,4,0,
0,100,1,0,124,0,0,23,131,1,0,130,1,0,116,3, 0,115,26,0,0,0,0,11,12,1,15,2,24,1,12,1,
0,124,1,0,131,1,0,83,41,2,78,122,25,110,111,32, 18,1,6,3,12,1,23,1,6,1,4,4,35,3,40,2,
98,117,105,108,116,45,105,110,32,109,111,100,117,108,101,32, 114,203,0,0,0,99,1,0,0,0,0,0,0,0,2,0,
110,97,109,101,100,32,41,4,114,151,0,0,0,114,155,0, 0,0,3,0,0,0,67,0,0,0,115,53,0,0,0,116,
0,0,114,77,0,0,0,114,150,0,0,0,41,2,114,15, 0,0,106,1,0,124,0,0,131,1,0,125,1,0,124,1,
0,0,0,114,88,0,0,0,114,10,0,0,0,114,10,0, 0,100,0,0,107,8,0,114,43,0,116,2,0,100,1,0,
0,0,114,11,0,0,0,218,18,95,98,117,105,108,116,105, 124,0,0,23,131,1,0,130,1,0,116,3,0,124,1,0,
110,95,102,114,111,109,95,110,97,109,101,66,4,0,0,115, 131,1,0,83,41,2,78,122,25,110,111,32,98,117,105,108,
8,0,0,0,0,1,15,1,12,1,16,1,114,204,0,0, 116,45,105,110,32,109,111,100,117,108,101,32,110,97,109,101,
0,99,2,0,0,0,0,0,0,0,12,0,0,0,12,0, 100,32,41,4,114,151,0,0,0,114,155,0,0,0,114,77,
0,0,67,0,0,0,115,74,1,0,0,124,1,0,97,0, 0,0,0,114,150,0,0,0,41,2,114,15,0,0,0,114,
0,124,0,0,97,1,0,116,2,0,116,1,0,131,1,0, 88,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11,
125,2,0,120,123,0,116,1,0,106,3,0,106,4,0,131, 0,0,0,218,18,95,98,117,105,108,116,105,110,95,102,114,
0,0,68,93,106,0,92,2,0,125,3,0,125,4,0,116, 111,109,95,110,97,109,101,69,4,0,0,115,8,0,0,0,
5,0,124,4,0,124,2,0,131,2,0,114,40,0,124,3, 0,1,15,1,12,1,16,1,114,204,0,0,0,99,2,0,
0,116,1,0,106,6,0,107,6,0,114,91,0,116,7,0, 0,0,0,0,0,0,12,0,0,0,12,0,0,0,67,0,
125,5,0,110,27,0,116,0,0,106,8,0,124,3,0,131, 0,0,115,74,1,0,0,124,1,0,97,0,0,124,0,0,
1,0,114,40,0,116,9,0,125,5,0,110,3,0,113,40, 97,1,0,116,2,0,116,1,0,131,1,0,125,2,0,120,
0,116,10,0,124,4,0,124,5,0,131,2,0,125,6,0, 123,0,116,1,0,106,3,0,106,4,0,131,0,0,68,93,
116,11,0,124,6,0,124,4,0,131,2,0,1,113,40,0, 106,0,92,2,0,125,3,0,125,4,0,116,5,0,124,4,
87,116,1,0,106,3,0,116,12,0,25,125,7,0,120,73, 0,124,2,0,131,2,0,114,40,0,124,3,0,116,1,0,
0,100,5,0,68,93,65,0,125,8,0,124,8,0,116,1, 106,6,0,107,6,0,114,91,0,116,7,0,125,5,0,110,
0,106,3,0,107,7,0,114,206,0,116,13,0,124,8,0, 27,0,116,0,0,106,8,0,124,3,0,131,1,0,114,40,
131,1,0,125,9,0,110,13,0,116,1,0,106,3,0,124, 0,116,9,0,125,5,0,110,3,0,113,40,0,116,10,0,
8,0,25,125,9,0,116,14,0,124,7,0,124,8,0,124, 124,4,0,124,5,0,131,2,0,125,6,0,116,11,0,124,
9,0,131,3,0,1,113,170,0,87,121,16,0,116,13,0, 6,0,124,4,0,131,2,0,1,113,40,0,87,116,1,0,
100,2,0,131,1,0,125,10,0,87,110,24,0,4,116,15, 106,3,0,116,12,0,25,125,7,0,120,73,0,100,5,0,
0,107,10,0,114,25,1,1,1,1,100,3,0,125,10,0, 68,93,65,0,125,8,0,124,8,0,116,1,0,106,3,0,
89,110,1,0,88,116,14,0,124,7,0,100,2,0,124,10, 107,7,0,114,206,0,116,13,0,124,8,0,131,1,0,125,
0,131,3,0,1,116,13,0,100,4,0,131,1,0,125,11, 9,0,110,13,0,116,1,0,106,3,0,124,8,0,25,125,
0,116,14,0,124,7,0,100,4,0,124,11,0,131,3,0, 9,0,116,14,0,124,7,0,124,8,0,124,9,0,131,3,
1,100,3,0,83,41,6,122,250,83,101,116,117,112,32,105, 0,1,113,170,0,87,121,16,0,116,13,0,100,2,0,131,
109,112,111,114,116,108,105,98,32,98,121,32,105,109,112,111, 1,0,125,10,0,87,110,24,0,4,116,15,0,107,10,0,
114,116,105,110,103,32,110,101,101,100,101,100,32,98,117,105, 114,25,1,1,1,1,100,3,0,125,10,0,89,110,1,0,
108,116,45,105,110,32,109,111,100,117,108,101,115,32,97,110, 88,116,14,0,124,7,0,100,2,0,124,10,0,131,3,0,
100,32,105,110,106,101,99,116,105,110,103,32,116,104,101,109, 1,116,13,0,100,4,0,131,1,0,125,11,0,116,14,0,
10,32,32,32,32,105,110,116,111,32,116,104,101,32,103,108, 124,7,0,100,4,0,124,11,0,131,3,0,1,100,3,0,
111,98,97,108,32,110,97,109,101,115,112,97,99,101,46,10, 83,41,6,122,250,83,101,116,117,112,32,105,109,112,111,114,
10,32,32,32,32,65,115,32,115,121,115,32,105,115,32,110, 116,108,105,98,32,98,121,32,105,109,112,111,114,116,105,110,
101,101,100,101,100,32,102,111,114,32,115,121,115,46,109,111, 103,32,110,101,101,100,101,100,32,98,117,105,108,116,45,105,
100,117,108,101,115,32,97,99,99,101,115,115,32,97,110,100, 110,32,109,111,100,117,108,101,115,32,97,110,100,32,105,110,
32,95,105,109,112,32,105,115,32,110,101,101,100,101,100,32, 106,101,99,116,105,110,103,32,116,104,101,109,10,32,32,32,
116,111,32,108,111,97,100,32,98,117,105,108,116,45,105,110, 32,105,110,116,111,32,116,104,101,32,103,108,111,98,97,108,
10,32,32,32,32,109,111,100,117,108,101,115,44,32,116,104, 32,110,97,109,101,115,112,97,99,101,46,10,10,32,32,32,
111,115,101,32,116,119,111,32,109,111,100,117,108,101,115,32, 32,65,115,32,115,121,115,32,105,115,32,110,101,101,100,101,
109,117,115,116,32,98,101,32,101,120,112,108,105,99,105,116, 100,32,102,111,114,32,115,121,115,46,109,111,100,117,108,101,
108,121,32,112,97,115,115,101,100,32,105,110,46,10,10,32, 115,32,97,99,99,101,115,115,32,97,110,100,32,95,105,109,
32,32,32,114,142,0,0,0,114,34,0,0,0,78,114,62, 112,32,105,115,32,110,101,101,100,101,100,32,116,111,32,108,
0,0,0,41,1,122,9,95,119,97,114,110,105,110,103,115, 111,97,100,32,98,117,105,108,116,45,105,110,10,32,32,32,
41,16,114,57,0,0,0,114,14,0,0,0,114,13,0,0, 32,109,111,100,117,108,101,115,44,32,116,104,111,115,101,32,
0,114,21,0,0,0,218,5,105,116,101,109,115,114,178,0, 116,119,111,32,109,111,100,117,108,101,115,32,109,117,115,116,
0,0,114,76,0,0,0,114,151,0,0,0,114,82,0,0, 32,98,101,32,101,120,112,108,105,99,105,116,108,121,32,112,
0,114,161,0,0,0,114,132,0,0,0,114,137,0,0,0, 97,115,115,101,100,32,105,110,46,10,10,32,32,32,32,114,
114,1,0,0,0,114,204,0,0,0,114,5,0,0,0,114, 142,0,0,0,114,34,0,0,0,78,114,62,0,0,0,41,
77,0,0,0,41,12,218,10,115,121,115,95,109,111,100,117, 1,122,9,95,119,97,114,110,105,110,103,115,41,16,114,57,
108,101,218,11,95,105,109,112,95,109,111,100,117,108,101,90, 0,0,0,114,14,0,0,0,114,13,0,0,0,114,21,0,
11,109,111,100,117,108,101,95,116,121,112,101,114,15,0,0, 0,0,218,5,105,116,101,109,115,114,178,0,0,0,114,76,
0,114,89,0,0,0,114,99,0,0,0,114,88,0,0,0, 0,0,0,114,151,0,0,0,114,82,0,0,0,114,161,0,
90,11,115,101,108,102,95,109,111,100,117,108,101,90,12,98, 0,0,114,132,0,0,0,114,137,0,0,0,114,1,0,0,
117,105,108,116,105,110,95,110,97,109,101,90,14,98,117,105, 0,114,204,0,0,0,114,5,0,0,0,114,77,0,0,0,
108,116,105,110,95,109,111,100,117,108,101,90,13,116,104,114, 41,12,218,10,115,121,115,95,109,111,100,117,108,101,218,11,
101,97,100,95,109,111,100,117,108,101,90,14,119,101,97,107, 95,105,109,112,95,109,111,100,117,108,101,90,11,109,111,100,
114,101,102,95,109,111,100,117,108,101,114,10,0,0,0,114, 117,108,101,95,116,121,112,101,114,15,0,0,0,114,89,0,
10,0,0,0,114,11,0,0,0,218,6,95,115,101,116,117, 0,0,114,99,0,0,0,114,88,0,0,0,90,11,115,101,
112,73,4,0,0,115,50,0,0,0,0,9,6,1,6,3, 108,102,95,109,111,100,117,108,101,90,12,98,117,105,108,116,
12,1,28,1,15,1,15,1,9,1,15,1,9,2,3,1, 105,110,95,110,97,109,101,90,14,98,117,105,108,116,105,110,
15,1,17,3,13,1,13,1,15,1,15,2,13,1,20,3, 95,109,111,100,117,108,101,90,13,116,104,114,101,97,100,95,
3,1,16,1,13,2,11,1,16,3,12,1,114,208,0,0, 109,111,100,117,108,101,90,14,119,101,97,107,114,101,102,95,
0,99,2,0,0,0,0,0,0,0,3,0,0,0,3,0, 109,111,100,117,108,101,114,10,0,0,0,114,10,0,0,0,
0,0,67,0,0,0,115,87,0,0,0,116,0,0,124,0, 114,11,0,0,0,218,6,95,115,101,116,117,112,76,4,0,
0,124,1,0,131,2,0,1,116,1,0,106,2,0,106,3, 0,115,50,0,0,0,0,9,6,1,6,3,12,1,28,1,
0,116,4,0,131,1,0,1,116,1,0,106,2,0,106,3, 15,1,15,1,9,1,15,1,9,2,3,1,15,1,17,3,
0,116,5,0,131,1,0,1,100,1,0,100,2,0,108,6, 13,1,13,1,15,1,15,2,13,1,20,3,3,1,16,1,
0,125,2,0,124,2,0,97,7,0,124,2,0,106,8,0, 13,2,11,1,16,3,12,1,114,208,0,0,0,99,2,0,
116,1,0,106,9,0,116,10,0,25,131,1,0,1,100,2, 0,0,0,0,0,0,3,0,0,0,3,0,0,0,67,0,
0,83,41,3,122,50,73,110,115,116,97,108,108,32,105,109, 0,0,115,87,0,0,0,116,0,0,124,0,0,124,1,0,
112,111,114,116,108,105,98,32,97,115,32,116,104,101,32,105, 131,2,0,1,116,1,0,106,2,0,106,3,0,116,4,0,
109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102, 131,1,0,1,116,1,0,106,2,0,106,3,0,116,5,0,
32,105,109,112,111,114,116,46,114,33,0,0,0,78,41,11, 131,1,0,1,100,1,0,100,2,0,108,6,0,125,2,0,
114,208,0,0,0,114,14,0,0,0,114,175,0,0,0,114, 124,2,0,97,7,0,124,2,0,106,8,0,116,1,0,106,
113,0,0,0,114,151,0,0,0,114,161,0,0,0,218,26, 9,0,116,10,0,25,131,1,0,1,100,2,0,83,41,3,
95,102,114,111,122,101,110,95,105,109,112,111,114,116,108,105, 122,50,73,110,115,116,97,108,108,32,105,109,112,111,114,116,
98,95,101,120,116,101,114,110,97,108,114,119,0,0,0,218, 108,105,98,32,97,115,32,116,104,101,32,105,109,112,108,101,
8,95,105,110,115,116,97,108,108,114,21,0,0,0,114,1, 109,101,110,116,97,116,105,111,110,32,111,102,32,105,109,112,
0,0,0,41,3,114,206,0,0,0,114,207,0,0,0,114, 111,114,116,46,114,33,0,0,0,78,41,11,114,208,0,0,
209,0,0,0,114,10,0,0,0,114,10,0,0,0,114,11, 0,114,14,0,0,0,114,175,0,0,0,114,113,0,0,0,
0,0,0,114,210,0,0,0,120,4,0,0,115,12,0,0, 114,151,0,0,0,114,161,0,0,0,218,26,95,102,114,111,
0,0,2,13,2,16,1,16,3,12,1,6,1,114,210,0, 122,101,110,95,105,109,112,111,114,116,108,105,98,95,101,120,
0,0,41,51,114,3,0,0,0,114,119,0,0,0,114,12, 116,101,114,110,97,108,114,119,0,0,0,218,8,95,105,110,
0,0,0,114,16,0,0,0,114,17,0,0,0,114,59,0, 115,116,97,108,108,114,21,0,0,0,114,1,0,0,0,41,
0,0,114,41,0,0,0,114,48,0,0,0,114,31,0,0, 3,114,206,0,0,0,114,207,0,0,0,114,209,0,0,0,
0,114,32,0,0,0,114,53,0,0,0,114,54,0,0,0, 114,10,0,0,0,114,10,0,0,0,114,11,0,0,0,114,
114,56,0,0,0,114,63,0,0,0,114,65,0,0,0,114, 210,0,0,0,123,4,0,0,115,12,0,0,0,0,2,13,
75,0,0,0,114,81,0,0,0,114,84,0,0,0,114,90, 2,16,1,16,3,12,1,6,1,114,210,0,0,0,41,51,
0,0,0,114,101,0,0,0,114,102,0,0,0,114,106,0, 114,3,0,0,0,114,119,0,0,0,114,12,0,0,0,114,
0,0,114,85,0,0,0,218,6,111,98,106,101,99,116,90, 16,0,0,0,114,17,0,0,0,114,59,0,0,0,114,41,
9,95,80,79,80,85,76,65,84,69,114,132,0,0,0,114, 0,0,0,114,48,0,0,0,114,31,0,0,0,114,32,0,
137,0,0,0,114,145,0,0,0,114,97,0,0,0,114,86, 0,0,114,53,0,0,0,114,54,0,0,0,114,56,0,0,
0,0,0,114,149,0,0,0,114,150,0,0,0,114,87,0, 0,114,63,0,0,0,114,65,0,0,0,114,75,0,0,0,
0,0,114,151,0,0,0,114,161,0,0,0,114,166,0,0, 114,81,0,0,0,114,84,0,0,0,114,90,0,0,0,114,
0,114,172,0,0,0,114,174,0,0,0,114,177,0,0,0, 101,0,0,0,114,102,0,0,0,114,106,0,0,0,114,85,
114,182,0,0,0,114,192,0,0,0,114,183,0,0,0,114, 0,0,0,218,6,111,98,106,101,99,116,90,9,95,80,79,
185,0,0,0,114,186,0,0,0,114,187,0,0,0,114,195, 80,85,76,65,84,69,114,132,0,0,0,114,137,0,0,0,
0,0,0,114,200,0,0,0,114,203,0,0,0,114,204,0, 114,145,0,0,0,114,97,0,0,0,114,86,0,0,0,114,
0,0,114,208,0,0,0,114,210,0,0,0,114,10,0,0, 149,0,0,0,114,150,0,0,0,114,87,0,0,0,114,151,
0,114,10,0,0,0,114,10,0,0,0,114,11,0,0,0, 0,0,0,114,161,0,0,0,114,166,0,0,0,114,172,0,
218,8,60,109,111,100,117,108,101,62,8,0,0,0,115,96, 0,0,114,174,0,0,0,114,177,0,0,0,114,182,0,0,
0,0,0,6,17,6,2,12,8,12,4,19,20,6,2,6, 0,114,192,0,0,0,114,183,0,0,0,114,185,0,0,0,
3,22,4,19,68,19,21,19,19,12,19,12,19,12,11,18, 114,186,0,0,0,114,187,0,0,0,114,195,0,0,0,114,
8,12,11,12,12,12,16,12,36,19,27,19,101,24,26,9, 200,0,0,0,114,203,0,0,0,114,204,0,0,0,114,208,
3,18,45,18,60,12,18,12,17,12,25,12,29,12,23,12, 0,0,0,114,210,0,0,0,114,10,0,0,0,114,10,0,
16,19,73,19,77,19,13,12,9,12,9,15,40,12,17,6, 0,0,114,10,0,0,0,114,11,0,0,0,218,8,60,109,
1,10,2,12,27,12,6,18,24,12,32,12,27,24,35,12, 111,100,117,108,101,62,8,0,0,0,115,96,0,0,0,6,
7,12,47, 17,6,2,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,101,24,26,9,3,18,45,18,
60,12,18,12,17,12,25,12,29,12,23,12,16,19,73,19,
77,19,13,12,9,12,9,15,40,12,20,6,1,10,2,12,
27,12,6,18,24,12,32,12,27,24,35,12,7,12,47,
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment