ZTWHHH commited on
Commit
4bc02e8
·
verified ·
1 Parent(s): 44b6619

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. parrot/lib/python3.10/_threading_local.py +242 -0
  2. parrot/lib/python3.10/cgi.py +1004 -0
  3. parrot/lib/python3.10/codeop.py +153 -0
  4. parrot/lib/python3.10/fnmatch.py +199 -0
  5. parrot/lib/python3.10/lzma.py +356 -0
  6. parrot/lib/python3.10/pdb.py +1750 -0
  7. parrot/lib/python3.10/poplib.py +483 -0
  8. parrot/lib/python3.10/pyclbr.py +314 -0
  9. parrot/lib/python3.10/string.py +280 -0
  10. parrot/lib/python3.10/token.py +137 -0
  11. parrot/lib/tcl8.6/encoding/cns11643.enc +1584 -0
  12. parrot/lib/tcl8.6/encoding/cp852.enc +20 -0
  13. parrot/lib/tcl8.6/encoding/cp855.enc +20 -0
  14. parrot/lib/tcl8.6/encoding/cp864.enc +20 -0
  15. parrot/lib/tcl8.6/encoding/cp865.enc +20 -0
  16. parrot/lib/tcl8.6/encoding/cp874.enc +20 -0
  17. parrot/lib/tcl8.6/encoding/cp932.enc +801 -0
  18. parrot/lib/tcl8.6/encoding/cp949.enc +0 -0
  19. parrot/lib/tcl8.6/encoding/euc-jp.enc +1353 -0
  20. parrot/lib/tcl8.6/encoding/gb12345.enc +1414 -0
  21. parrot/lib/tcl8.6/encoding/gb2312.enc +1397 -0
  22. parrot/lib/tcl8.6/encoding/koi8-u.enc +20 -0
  23. parrot/lib/tcl8.6/msgs/af.msg +49 -0
  24. parrot/lib/tcl8.6/msgs/ar_lb.msg +39 -0
  25. parrot/lib/tcl8.6/msgs/be.msg +52 -0
  26. parrot/lib/tcl8.6/msgs/bg.msg +52 -0
  27. parrot/lib/tcl8.6/msgs/bn_in.msg +6 -0
  28. parrot/lib/tcl8.6/msgs/ca.msg +50 -0
  29. parrot/lib/tcl8.6/msgs/de_at.msg +35 -0
  30. parrot/lib/tcl8.6/msgs/el.msg +52 -0
  31. parrot/lib/tcl8.6/msgs/en_ca.msg +7 -0
  32. parrot/lib/tcl8.6/msgs/en_ie.msg +7 -0
  33. parrot/lib/tcl8.6/msgs/en_in.msg +8 -0
  34. parrot/lib/tcl8.6/msgs/en_nz.msg +7 -0
  35. parrot/lib/tcl8.6/msgs/en_sg.msg +6 -0
  36. parrot/lib/tcl8.6/msgs/eo.msg +54 -0
  37. parrot/lib/tcl8.6/msgs/es_bo.msg +6 -0
  38. parrot/lib/tcl8.6/msgs/es_do.msg +6 -0
  39. parrot/lib/tcl8.6/msgs/es_ec.msg +6 -0
  40. parrot/lib/tcl8.6/msgs/es_ni.msg +6 -0
  41. parrot/lib/tcl8.6/msgs/es_sv.msg +6 -0
  42. parrot/lib/tcl8.6/msgs/es_uy.msg +6 -0
  43. parrot/lib/tcl8.6/msgs/es_ve.msg +6 -0
  44. parrot/lib/tcl8.6/msgs/eu.msg +47 -0
  45. parrot/lib/tcl8.6/msgs/fa_ir.msg +9 -0
  46. parrot/lib/tcl8.6/msgs/fo.msg +47 -0
  47. parrot/lib/tcl8.6/msgs/fr.msg +52 -0
  48. parrot/lib/tcl8.6/msgs/fr_be.msg +7 -0
  49. parrot/lib/tcl8.6/msgs/fr_ca.msg +7 -0
  50. parrot/lib/tcl8.6/msgs/fr_ch.msg +7 -0
parrot/lib/python3.10/_threading_local.py ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Thread-local objects.
2
+
3
+ (Note that this module provides a Python version of the threading.local
4
+ class. Depending on the version of Python you're using, there may be a
5
+ faster one available. You should always import the `local` class from
6
+ `threading`.)
7
+
8
+ Thread-local objects support the management of thread-local data.
9
+ If you have data that you want to be local to a thread, simply create
10
+ a thread-local object and use its attributes:
11
+
12
+ >>> mydata = local()
13
+ >>> mydata.number = 42
14
+ >>> mydata.number
15
+ 42
16
+
17
+ You can also access the local-object's dictionary:
18
+
19
+ >>> mydata.__dict__
20
+ {'number': 42}
21
+ >>> mydata.__dict__.setdefault('widgets', [])
22
+ []
23
+ >>> mydata.widgets
24
+ []
25
+
26
+ What's important about thread-local objects is that their data are
27
+ local to a thread. If we access the data in a different thread:
28
+
29
+ >>> log = []
30
+ >>> def f():
31
+ ... items = sorted(mydata.__dict__.items())
32
+ ... log.append(items)
33
+ ... mydata.number = 11
34
+ ... log.append(mydata.number)
35
+
36
+ >>> import threading
37
+ >>> thread = threading.Thread(target=f)
38
+ >>> thread.start()
39
+ >>> thread.join()
40
+ >>> log
41
+ [[], 11]
42
+
43
+ we get different data. Furthermore, changes made in the other thread
44
+ don't affect data seen in this thread:
45
+
46
+ >>> mydata.number
47
+ 42
48
+
49
+ Of course, values you get from a local object, including a __dict__
50
+ attribute, are for whatever thread was current at the time the
51
+ attribute was read. For that reason, you generally don't want to save
52
+ these values across threads, as they apply only to the thread they
53
+ came from.
54
+
55
+ You can create custom local objects by subclassing the local class:
56
+
57
+ >>> class MyLocal(local):
58
+ ... number = 2
59
+ ... def __init__(self, /, **kw):
60
+ ... self.__dict__.update(kw)
61
+ ... def squared(self):
62
+ ... return self.number ** 2
63
+
64
+ This can be useful to support default values, methods and
65
+ initialization. Note that if you define an __init__ method, it will be
66
+ called each time the local object is used in a separate thread. This
67
+ is necessary to initialize each thread's dictionary.
68
+
69
+ Now if we create a local object:
70
+
71
+ >>> mydata = MyLocal(color='red')
72
+
73
+ Now we have a default number:
74
+
75
+ >>> mydata.number
76
+ 2
77
+
78
+ an initial color:
79
+
80
+ >>> mydata.color
81
+ 'red'
82
+ >>> del mydata.color
83
+
84
+ And a method that operates on the data:
85
+
86
+ >>> mydata.squared()
87
+ 4
88
+
89
+ As before, we can access the data in a separate thread:
90
+
91
+ >>> log = []
92
+ >>> thread = threading.Thread(target=f)
93
+ >>> thread.start()
94
+ >>> thread.join()
95
+ >>> log
96
+ [[('color', 'red')], 11]
97
+
98
+ without affecting this thread's data:
99
+
100
+ >>> mydata.number
101
+ 2
102
+ >>> mydata.color
103
+ Traceback (most recent call last):
104
+ ...
105
+ AttributeError: 'MyLocal' object has no attribute 'color'
106
+
107
+ Note that subclasses can define slots, but they are not thread
108
+ local. They are shared across threads:
109
+
110
+ >>> class MyLocal(local):
111
+ ... __slots__ = 'number'
112
+
113
+ >>> mydata = MyLocal()
114
+ >>> mydata.number = 42
115
+ >>> mydata.color = 'red'
116
+
117
+ So, the separate thread:
118
+
119
+ >>> thread = threading.Thread(target=f)
120
+ >>> thread.start()
121
+ >>> thread.join()
122
+
123
+ affects what we see:
124
+
125
+ >>> mydata.number
126
+ 11
127
+
128
+ >>> del mydata
129
+ """
130
+
131
+ from weakref import ref
132
+ from contextlib import contextmanager
133
+
134
+ __all__ = ["local"]
135
+
136
+ # We need to use objects from the threading module, but the threading
137
+ # module may also want to use our `local` class, if support for locals
138
+ # isn't compiled in to the `thread` module. This creates potential problems
139
+ # with circular imports. For that reason, we don't import `threading`
140
+ # until the bottom of this file (a hack sufficient to worm around the
141
+ # potential problems). Note that all platforms on CPython do have support
142
+ # for locals in the `thread` module, and there is no circular import problem
143
+ # then, so problems introduced by fiddling the order of imports here won't
144
+ # manifest.
145
+
146
+ class _localimpl:
147
+ """A class managing thread-local dicts"""
148
+ __slots__ = 'key', 'dicts', 'localargs', 'locallock', '__weakref__'
149
+
150
+ def __init__(self):
151
+ # The key used in the Thread objects' attribute dicts.
152
+ # We keep it a string for speed but make it unlikely to clash with
153
+ # a "real" attribute.
154
+ self.key = '_threading_local._localimpl.' + str(id(self))
155
+ # { id(Thread) -> (ref(Thread), thread-local dict) }
156
+ self.dicts = {}
157
+
158
+ def get_dict(self):
159
+ """Return the dict for the current thread. Raises KeyError if none
160
+ defined."""
161
+ thread = current_thread()
162
+ return self.dicts[id(thread)][1]
163
+
164
+ def create_dict(self):
165
+ """Create a new dict for the current thread, and return it."""
166
+ localdict = {}
167
+ key = self.key
168
+ thread = current_thread()
169
+ idt = id(thread)
170
+ def local_deleted(_, key=key):
171
+ # When the localimpl is deleted, remove the thread attribute.
172
+ thread = wrthread()
173
+ if thread is not None:
174
+ del thread.__dict__[key]
175
+ def thread_deleted(_, idt=idt):
176
+ # When the thread is deleted, remove the local dict.
177
+ # Note that this is suboptimal if the thread object gets
178
+ # caught in a reference loop. We would like to be called
179
+ # as soon as the OS-level thread ends instead.
180
+ local = wrlocal()
181
+ if local is not None:
182
+ dct = local.dicts.pop(idt)
183
+ wrlocal = ref(self, local_deleted)
184
+ wrthread = ref(thread, thread_deleted)
185
+ thread.__dict__[key] = wrlocal
186
+ self.dicts[idt] = wrthread, localdict
187
+ return localdict
188
+
189
+
190
+ @contextmanager
191
+ def _patch(self):
192
+ impl = object.__getattribute__(self, '_local__impl')
193
+ try:
194
+ dct = impl.get_dict()
195
+ except KeyError:
196
+ dct = impl.create_dict()
197
+ args, kw = impl.localargs
198
+ self.__init__(*args, **kw)
199
+ with impl.locallock:
200
+ object.__setattr__(self, '__dict__', dct)
201
+ yield
202
+
203
+
204
+ class local:
205
+ __slots__ = '_local__impl', '__dict__'
206
+
207
+ def __new__(cls, /, *args, **kw):
208
+ if (args or kw) and (cls.__init__ is object.__init__):
209
+ raise TypeError("Initialization arguments are not supported")
210
+ self = object.__new__(cls)
211
+ impl = _localimpl()
212
+ impl.localargs = (args, kw)
213
+ impl.locallock = RLock()
214
+ object.__setattr__(self, '_local__impl', impl)
215
+ # We need to create the thread dict in anticipation of
216
+ # __init__ being called, to make sure we don't call it
217
+ # again ourselves.
218
+ impl.create_dict()
219
+ return self
220
+
221
+ def __getattribute__(self, name):
222
+ with _patch(self):
223
+ return object.__getattribute__(self, name)
224
+
225
+ def __setattr__(self, name, value):
226
+ if name == '__dict__':
227
+ raise AttributeError(
228
+ "%r object attribute '__dict__' is read-only"
229
+ % self.__class__.__name__)
230
+ with _patch(self):
231
+ return object.__setattr__(self, name, value)
232
+
233
+ def __delattr__(self, name):
234
+ if name == '__dict__':
235
+ raise AttributeError(
236
+ "%r object attribute '__dict__' is read-only"
237
+ % self.__class__.__name__)
238
+ with _patch(self):
239
+ return object.__delattr__(self, name)
240
+
241
+
242
+ from threading import current_thread, RLock
parrot/lib/python3.10/cgi.py ADDED
@@ -0,0 +1,1004 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #! /usr/local/bin/python
2
+
3
+ # NOTE: the above "/usr/local/bin/python" is NOT a mistake. It is
4
+ # intentionally NOT "/usr/bin/env python". On many systems
5
+ # (e.g. Solaris), /usr/local/bin is not in $PATH as passed to CGI
6
+ # scripts, and /usr/local/bin is the default directory where Python is
7
+ # installed, so /usr/bin/env would be unable to find python. Granted,
8
+ # binary installations by Linux vendors often install Python in
9
+ # /usr/bin. So let those vendors patch cgi.py to match their choice
10
+ # of installation.
11
+
12
+ """Support module for CGI (Common Gateway Interface) scripts.
13
+
14
+ This module defines a number of utilities for use by CGI scripts
15
+ written in Python.
16
+ """
17
+
18
+ # History
19
+ # -------
20
+ #
21
+ # Michael McLay started this module. Steve Majewski changed the
22
+ # interface to SvFormContentDict and FormContentDict. The multipart
23
+ # parsing was inspired by code submitted by Andreas Paepcke. Guido van
24
+ # Rossum rewrote, reformatted and documented the module and is currently
25
+ # responsible for its maintenance.
26
+ #
27
+
28
+ __version__ = "2.6"
29
+
30
+
31
+ # Imports
32
+ # =======
33
+
34
+ from io import StringIO, BytesIO, TextIOWrapper
35
+ from collections.abc import Mapping
36
+ import sys
37
+ import os
38
+ import urllib.parse
39
+ from email.parser import FeedParser
40
+ from email.message import Message
41
+ import html
42
+ import locale
43
+ import tempfile
44
+ import warnings
45
+
46
+ __all__ = ["MiniFieldStorage", "FieldStorage", "parse", "parse_multipart",
47
+ "parse_header", "test", "print_exception", "print_environ",
48
+ "print_form", "print_directory", "print_arguments",
49
+ "print_environ_usage"]
50
+
51
+ # Logging support
52
+ # ===============
53
+
54
+ logfile = "" # Filename to log to, if not empty
55
+ logfp = None # File object to log to, if not None
56
+
57
+ def initlog(*allargs):
58
+ """Write a log message, if there is a log file.
59
+
60
+ Even though this function is called initlog(), you should always
61
+ use log(); log is a variable that is set either to initlog
62
+ (initially), to dolog (once the log file has been opened), or to
63
+ nolog (when logging is disabled).
64
+
65
+ The first argument is a format string; the remaining arguments (if
66
+ any) are arguments to the % operator, so e.g.
67
+ log("%s: %s", "a", "b")
68
+ will write "a: b" to the log file, followed by a newline.
69
+
70
+ If the global logfp is not None, it should be a file object to
71
+ which log data is written.
72
+
73
+ If the global logfp is None, the global logfile may be a string
74
+ giving a filename to open, in append mode. This file should be
75
+ world writable!!! If the file can't be opened, logging is
76
+ silently disabled (since there is no safe place where we could
77
+ send an error message).
78
+
79
+ """
80
+ global log, logfile, logfp
81
+ warnings.warn("cgi.log() is deprecated as of 3.10. Use logging instead",
82
+ DeprecationWarning, stacklevel=2)
83
+ if logfile and not logfp:
84
+ try:
85
+ logfp = open(logfile, "a", encoding="locale")
86
+ except OSError:
87
+ pass
88
+ if not logfp:
89
+ log = nolog
90
+ else:
91
+ log = dolog
92
+ log(*allargs)
93
+
94
+ def dolog(fmt, *args):
95
+ """Write a log message to the log file. See initlog() for docs."""
96
+ logfp.write(fmt%args + "\n")
97
+
98
+ def nolog(*allargs):
99
+ """Dummy function, assigned to log when logging is disabled."""
100
+ pass
101
+
102
+ def closelog():
103
+ """Close the log file."""
104
+ global log, logfile, logfp
105
+ logfile = ''
106
+ if logfp:
107
+ logfp.close()
108
+ logfp = None
109
+ log = initlog
110
+
111
+ log = initlog # The current logging function
112
+
113
+
114
+ # Parsing functions
115
+ # =================
116
+
117
+ # Maximum input we will accept when REQUEST_METHOD is POST
118
+ # 0 ==> unlimited input
119
+ maxlen = 0
120
+
121
+ def parse(fp=None, environ=os.environ, keep_blank_values=0,
122
+ strict_parsing=0, separator='&'):
123
+ """Parse a query in the environment or from a file (default stdin)
124
+
125
+ Arguments, all optional:
126
+
127
+ fp : file pointer; default: sys.stdin.buffer
128
+
129
+ environ : environment dictionary; default: os.environ
130
+
131
+ keep_blank_values: flag indicating whether blank values in
132
+ percent-encoded forms should be treated as blank strings.
133
+ A true value indicates that blanks should be retained as
134
+ blank strings. The default false value indicates that
135
+ blank values are to be ignored and treated as if they were
136
+ not included.
137
+
138
+ strict_parsing: flag indicating what to do with parsing errors.
139
+ If false (the default), errors are silently ignored.
140
+ If true, errors raise a ValueError exception.
141
+
142
+ separator: str. The symbol to use for separating the query arguments.
143
+ Defaults to &.
144
+ """
145
+ if fp is None:
146
+ fp = sys.stdin
147
+
148
+ # field keys and values (except for files) are returned as strings
149
+ # an encoding is required to decode the bytes read from self.fp
150
+ if hasattr(fp,'encoding'):
151
+ encoding = fp.encoding
152
+ else:
153
+ encoding = 'latin-1'
154
+
155
+ # fp.read() must return bytes
156
+ if isinstance(fp, TextIOWrapper):
157
+ fp = fp.buffer
158
+
159
+ if not 'REQUEST_METHOD' in environ:
160
+ environ['REQUEST_METHOD'] = 'GET' # For testing stand-alone
161
+ if environ['REQUEST_METHOD'] == 'POST':
162
+ ctype, pdict = parse_header(environ['CONTENT_TYPE'])
163
+ if ctype == 'multipart/form-data':
164
+ return parse_multipart(fp, pdict, separator=separator)
165
+ elif ctype == 'application/x-www-form-urlencoded':
166
+ clength = int(environ['CONTENT_LENGTH'])
167
+ if maxlen and clength > maxlen:
168
+ raise ValueError('Maximum content length exceeded')
169
+ qs = fp.read(clength).decode(encoding)
170
+ else:
171
+ qs = '' # Unknown content-type
172
+ if 'QUERY_STRING' in environ:
173
+ if qs: qs = qs + '&'
174
+ qs = qs + environ['QUERY_STRING']
175
+ elif sys.argv[1:]:
176
+ if qs: qs = qs + '&'
177
+ qs = qs + sys.argv[1]
178
+ environ['QUERY_STRING'] = qs # XXX Shouldn't, really
179
+ elif 'QUERY_STRING' in environ:
180
+ qs = environ['QUERY_STRING']
181
+ else:
182
+ if sys.argv[1:]:
183
+ qs = sys.argv[1]
184
+ else:
185
+ qs = ""
186
+ environ['QUERY_STRING'] = qs # XXX Shouldn't, really
187
+ return urllib.parse.parse_qs(qs, keep_blank_values, strict_parsing,
188
+ encoding=encoding, separator=separator)
189
+
190
+
191
+ def parse_multipart(fp, pdict, encoding="utf-8", errors="replace", separator='&'):
192
+ """Parse multipart input.
193
+
194
+ Arguments:
195
+ fp : input file
196
+ pdict: dictionary containing other parameters of content-type header
197
+ encoding, errors: request encoding and error handler, passed to
198
+ FieldStorage
199
+
200
+ Returns a dictionary just like parse_qs(): keys are the field names, each
201
+ value is a list of values for that field. For non-file fields, the value
202
+ is a list of strings.
203
+ """
204
+ # RFC 2046, Section 5.1 : The "multipart" boundary delimiters are always
205
+ # represented as 7bit US-ASCII.
206
+ boundary = pdict['boundary'].decode('ascii')
207
+ ctype = "multipart/form-data; boundary={}".format(boundary)
208
+ headers = Message()
209
+ headers.set_type(ctype)
210
+ try:
211
+ headers['Content-Length'] = pdict['CONTENT-LENGTH']
212
+ except KeyError:
213
+ pass
214
+ fs = FieldStorage(fp, headers=headers, encoding=encoding, errors=errors,
215
+ environ={'REQUEST_METHOD': 'POST'}, separator=separator)
216
+ return {k: fs.getlist(k) for k in fs}
217
+
218
+ def _parseparam(s):
219
+ while s[:1] == ';':
220
+ s = s[1:]
221
+ end = s.find(';')
222
+ while end > 0 and (s.count('"', 0, end) - s.count('\\"', 0, end)) % 2:
223
+ end = s.find(';', end + 1)
224
+ if end < 0:
225
+ end = len(s)
226
+ f = s[:end]
227
+ yield f.strip()
228
+ s = s[end:]
229
+
230
+ def parse_header(line):
231
+ """Parse a Content-type like header.
232
+
233
+ Return the main content-type and a dictionary of options.
234
+
235
+ """
236
+ parts = _parseparam(';' + line)
237
+ key = parts.__next__()
238
+ pdict = {}
239
+ for p in parts:
240
+ i = p.find('=')
241
+ if i >= 0:
242
+ name = p[:i].strip().lower()
243
+ value = p[i+1:].strip()
244
+ if len(value) >= 2 and value[0] == value[-1] == '"':
245
+ value = value[1:-1]
246
+ value = value.replace('\\\\', '\\').replace('\\"', '"')
247
+ pdict[name] = value
248
+ return key, pdict
249
+
250
+
251
+ # Classes for field storage
252
+ # =========================
253
+
254
+ class MiniFieldStorage:
255
+
256
+ """Like FieldStorage, for use when no file uploads are possible."""
257
+
258
+ # Dummy attributes
259
+ filename = None
260
+ list = None
261
+ type = None
262
+ file = None
263
+ type_options = {}
264
+ disposition = None
265
+ disposition_options = {}
266
+ headers = {}
267
+
268
+ def __init__(self, name, value):
269
+ """Constructor from field name and value."""
270
+ self.name = name
271
+ self.value = value
272
+ # self.file = StringIO(value)
273
+
274
+ def __repr__(self):
275
+ """Return printable representation."""
276
+ return "MiniFieldStorage(%r, %r)" % (self.name, self.value)
277
+
278
+
279
+ class FieldStorage:
280
+
281
+ """Store a sequence of fields, reading multipart/form-data.
282
+
283
+ This class provides naming, typing, files stored on disk, and
284
+ more. At the top level, it is accessible like a dictionary, whose
285
+ keys are the field names. (Note: None can occur as a field name.)
286
+ The items are either a Python list (if there's multiple values) or
287
+ another FieldStorage or MiniFieldStorage object. If it's a single
288
+ object, it has the following attributes:
289
+
290
+ name: the field name, if specified; otherwise None
291
+
292
+ filename: the filename, if specified; otherwise None; this is the
293
+ client side filename, *not* the file name on which it is
294
+ stored (that's a temporary file you don't deal with)
295
+
296
+ value: the value as a *string*; for file uploads, this
297
+ transparently reads the file every time you request the value
298
+ and returns *bytes*
299
+
300
+ file: the file(-like) object from which you can read the data *as
301
+ bytes* ; None if the data is stored a simple string
302
+
303
+ type: the content-type, or None if not specified
304
+
305
+ type_options: dictionary of options specified on the content-type
306
+ line
307
+
308
+ disposition: content-disposition, or None if not specified
309
+
310
+ disposition_options: dictionary of corresponding options
311
+
312
+ headers: a dictionary(-like) object (sometimes email.message.Message or a
313
+ subclass thereof) containing *all* headers
314
+
315
+ The class is subclassable, mostly for the purpose of overriding
316
+ the make_file() method, which is called internally to come up with
317
+ a file open for reading and writing. This makes it possible to
318
+ override the default choice of storing all files in a temporary
319
+ directory and unlinking them as soon as they have been opened.
320
+
321
+ """
322
+ def __init__(self, fp=None, headers=None, outerboundary=b'',
323
+ environ=os.environ, keep_blank_values=0, strict_parsing=0,
324
+ limit=None, encoding='utf-8', errors='replace',
325
+ max_num_fields=None, separator='&'):
326
+ """Constructor. Read multipart/* until last part.
327
+
328
+ Arguments, all optional:
329
+
330
+ fp : file pointer; default: sys.stdin.buffer
331
+ (not used when the request method is GET)
332
+ Can be :
333
+ 1. a TextIOWrapper object
334
+ 2. an object whose read() and readline() methods return bytes
335
+
336
+ headers : header dictionary-like object; default:
337
+ taken from environ as per CGI spec
338
+
339
+ outerboundary : terminating multipart boundary
340
+ (for internal use only)
341
+
342
+ environ : environment dictionary; default: os.environ
343
+
344
+ keep_blank_values: flag indicating whether blank values in
345
+ percent-encoded forms should be treated as blank strings.
346
+ A true value indicates that blanks should be retained as
347
+ blank strings. The default false value indicates that
348
+ blank values are to be ignored and treated as if they were
349
+ not included.
350
+
351
+ strict_parsing: flag indicating what to do with parsing errors.
352
+ If false (the default), errors are silently ignored.
353
+ If true, errors raise a ValueError exception.
354
+
355
+ limit : used internally to read parts of multipart/form-data forms,
356
+ to exit from the reading loop when reached. It is the difference
357
+ between the form content-length and the number of bytes already
358
+ read
359
+
360
+ encoding, errors : the encoding and error handler used to decode the
361
+ binary stream to strings. Must be the same as the charset defined
362
+ for the page sending the form (content-type : meta http-equiv or
363
+ header)
364
+
365
+ max_num_fields: int. If set, then __init__ throws a ValueError
366
+ if there are more than n fields read by parse_qsl().
367
+
368
+ """
369
+ method = 'GET'
370
+ self.keep_blank_values = keep_blank_values
371
+ self.strict_parsing = strict_parsing
372
+ self.max_num_fields = max_num_fields
373
+ self.separator = separator
374
+ if 'REQUEST_METHOD' in environ:
375
+ method = environ['REQUEST_METHOD'].upper()
376
+ self.qs_on_post = None
377
+ if method == 'GET' or method == 'HEAD':
378
+ if 'QUERY_STRING' in environ:
379
+ qs = environ['QUERY_STRING']
380
+ elif sys.argv[1:]:
381
+ qs = sys.argv[1]
382
+ else:
383
+ qs = ""
384
+ qs = qs.encode(locale.getpreferredencoding(), 'surrogateescape')
385
+ fp = BytesIO(qs)
386
+ if headers is None:
387
+ headers = {'content-type':
388
+ "application/x-www-form-urlencoded"}
389
+ if headers is None:
390
+ headers = {}
391
+ if method == 'POST':
392
+ # Set default content-type for POST to what's traditional
393
+ headers['content-type'] = "application/x-www-form-urlencoded"
394
+ if 'CONTENT_TYPE' in environ:
395
+ headers['content-type'] = environ['CONTENT_TYPE']
396
+ if 'QUERY_STRING' in environ:
397
+ self.qs_on_post = environ['QUERY_STRING']
398
+ if 'CONTENT_LENGTH' in environ:
399
+ headers['content-length'] = environ['CONTENT_LENGTH']
400
+ else:
401
+ if not (isinstance(headers, (Mapping, Message))):
402
+ raise TypeError("headers must be mapping or an instance of "
403
+ "email.message.Message")
404
+ self.headers = headers
405
+ if fp is None:
406
+ self.fp = sys.stdin.buffer
407
+ # self.fp.read() must return bytes
408
+ elif isinstance(fp, TextIOWrapper):
409
+ self.fp = fp.buffer
410
+ else:
411
+ if not (hasattr(fp, 'read') and hasattr(fp, 'readline')):
412
+ raise TypeError("fp must be file pointer")
413
+ self.fp = fp
414
+
415
+ self.encoding = encoding
416
+ self.errors = errors
417
+
418
+ if not isinstance(outerboundary, bytes):
419
+ raise TypeError('outerboundary must be bytes, not %s'
420
+ % type(outerboundary).__name__)
421
+ self.outerboundary = outerboundary
422
+
423
+ self.bytes_read = 0
424
+ self.limit = limit
425
+
426
+ # Process content-disposition header
427
+ cdisp, pdict = "", {}
428
+ if 'content-disposition' in self.headers:
429
+ cdisp, pdict = parse_header(self.headers['content-disposition'])
430
+ self.disposition = cdisp
431
+ self.disposition_options = pdict
432
+ self.name = None
433
+ if 'name' in pdict:
434
+ self.name = pdict['name']
435
+ self.filename = None
436
+ if 'filename' in pdict:
437
+ self.filename = pdict['filename']
438
+ self._binary_file = self.filename is not None
439
+
440
+ # Process content-type header
441
+ #
442
+ # Honor any existing content-type header. But if there is no
443
+ # content-type header, use some sensible defaults. Assume
444
+ # outerboundary is "" at the outer level, but something non-false
445
+ # inside a multi-part. The default for an inner part is text/plain,
446
+ # but for an outer part it should be urlencoded. This should catch
447
+ # bogus clients which erroneously forget to include a content-type
448
+ # header.
449
+ #
450
+ # See below for what we do if there does exist a content-type header,
451
+ # but it happens to be something we don't understand.
452
+ if 'content-type' in self.headers:
453
+ ctype, pdict = parse_header(self.headers['content-type'])
454
+ elif self.outerboundary or method != 'POST':
455
+ ctype, pdict = "text/plain", {}
456
+ else:
457
+ ctype, pdict = 'application/x-www-form-urlencoded', {}
458
+ self.type = ctype
459
+ self.type_options = pdict
460
+ if 'boundary' in pdict:
461
+ self.innerboundary = pdict['boundary'].encode(self.encoding,
462
+ self.errors)
463
+ else:
464
+ self.innerboundary = b""
465
+
466
+ clen = -1
467
+ if 'content-length' in self.headers:
468
+ try:
469
+ clen = int(self.headers['content-length'])
470
+ except ValueError:
471
+ pass
472
+ if maxlen and clen > maxlen:
473
+ raise ValueError('Maximum content length exceeded')
474
+ self.length = clen
475
+ if self.limit is None and clen >= 0:
476
+ self.limit = clen
477
+
478
+ self.list = self.file = None
479
+ self.done = 0
480
+ if ctype == 'application/x-www-form-urlencoded':
481
+ self.read_urlencoded()
482
+ elif ctype[:10] == 'multipart/':
483
+ self.read_multi(environ, keep_blank_values, strict_parsing)
484
+ else:
485
+ self.read_single()
486
+
487
+ def __del__(self):
488
+ try:
489
+ self.file.close()
490
+ except AttributeError:
491
+ pass
492
+
493
+ def __enter__(self):
494
+ return self
495
+
496
+ def __exit__(self, *args):
497
+ self.file.close()
498
+
499
+ def __repr__(self):
500
+ """Return a printable representation."""
501
+ return "FieldStorage(%r, %r, %r)" % (
502
+ self.name, self.filename, self.value)
503
+
504
+ def __iter__(self):
505
+ return iter(self.keys())
506
+
507
+ def __getattr__(self, name):
508
+ if name != 'value':
509
+ raise AttributeError(name)
510
+ if self.file:
511
+ self.file.seek(0)
512
+ value = self.file.read()
513
+ self.file.seek(0)
514
+ elif self.list is not None:
515
+ value = self.list
516
+ else:
517
+ value = None
518
+ return value
519
+
520
+ def __getitem__(self, key):
521
+ """Dictionary style indexing."""
522
+ if self.list is None:
523
+ raise TypeError("not indexable")
524
+ found = []
525
+ for item in self.list:
526
+ if item.name == key: found.append(item)
527
+ if not found:
528
+ raise KeyError(key)
529
+ if len(found) == 1:
530
+ return found[0]
531
+ else:
532
+ return found
533
+
534
+ def getvalue(self, key, default=None):
535
+ """Dictionary style get() method, including 'value' lookup."""
536
+ if key in self:
537
+ value = self[key]
538
+ if isinstance(value, list):
539
+ return [x.value for x in value]
540
+ else:
541
+ return value.value
542
+ else:
543
+ return default
544
+
545
+ def getfirst(self, key, default=None):
546
+ """ Return the first value received."""
547
+ if key in self:
548
+ value = self[key]
549
+ if isinstance(value, list):
550
+ return value[0].value
551
+ else:
552
+ return value.value
553
+ else:
554
+ return default
555
+
556
+ def getlist(self, key):
557
+ """ Return list of received values."""
558
+ if key in self:
559
+ value = self[key]
560
+ if isinstance(value, list):
561
+ return [x.value for x in value]
562
+ else:
563
+ return [value.value]
564
+ else:
565
+ return []
566
+
567
+ def keys(self):
568
+ """Dictionary style keys() method."""
569
+ if self.list is None:
570
+ raise TypeError("not indexable")
571
+ return list(set(item.name for item in self.list))
572
+
573
+ def __contains__(self, key):
574
+ """Dictionary style __contains__ method."""
575
+ if self.list is None:
576
+ raise TypeError("not indexable")
577
+ return any(item.name == key for item in self.list)
578
+
579
+ def __len__(self):
580
+ """Dictionary style len(x) support."""
581
+ return len(self.keys())
582
+
583
+ def __bool__(self):
584
+ if self.list is None:
585
+ raise TypeError("Cannot be converted to bool.")
586
+ return bool(self.list)
587
+
588
+ def read_urlencoded(self):
589
+ """Internal: read data in query string format."""
590
+ qs = self.fp.read(self.length)
591
+ if not isinstance(qs, bytes):
592
+ raise ValueError("%s should return bytes, got %s" \
593
+ % (self.fp, type(qs).__name__))
594
+ qs = qs.decode(self.encoding, self.errors)
595
+ if self.qs_on_post:
596
+ qs += '&' + self.qs_on_post
597
+ query = urllib.parse.parse_qsl(
598
+ qs, self.keep_blank_values, self.strict_parsing,
599
+ encoding=self.encoding, errors=self.errors,
600
+ max_num_fields=self.max_num_fields, separator=self.separator)
601
+ self.list = [MiniFieldStorage(key, value) for key, value in query]
602
+ self.skip_lines()
603
+
604
+ FieldStorageClass = None
605
+
606
+ def read_multi(self, environ, keep_blank_values, strict_parsing):
607
+ """Internal: read a part that is itself multipart."""
608
+ ib = self.innerboundary
609
+ if not valid_boundary(ib):
610
+ raise ValueError('Invalid boundary in multipart form: %r' % (ib,))
611
+ self.list = []
612
+ if self.qs_on_post:
613
+ query = urllib.parse.parse_qsl(
614
+ self.qs_on_post, self.keep_blank_values, self.strict_parsing,
615
+ encoding=self.encoding, errors=self.errors,
616
+ max_num_fields=self.max_num_fields, separator=self.separator)
617
+ self.list.extend(MiniFieldStorage(key, value) for key, value in query)
618
+
619
+ klass = self.FieldStorageClass or self.__class__
620
+ first_line = self.fp.readline() # bytes
621
+ if not isinstance(first_line, bytes):
622
+ raise ValueError("%s should return bytes, got %s" \
623
+ % (self.fp, type(first_line).__name__))
624
+ self.bytes_read += len(first_line)
625
+
626
+ # Ensure that we consume the file until we've hit our inner boundary
627
+ while (first_line.strip() != (b"--" + self.innerboundary) and
628
+ first_line):
629
+ first_line = self.fp.readline()
630
+ self.bytes_read += len(first_line)
631
+
632
+ # Propagate max_num_fields into the sub class appropriately
633
+ max_num_fields = self.max_num_fields
634
+ if max_num_fields is not None:
635
+ max_num_fields -= len(self.list)
636
+
637
+ while True:
638
+ parser = FeedParser()
639
+ hdr_text = b""
640
+ while True:
641
+ data = self.fp.readline()
642
+ hdr_text += data
643
+ if not data.strip():
644
+ break
645
+ if not hdr_text:
646
+ break
647
+ # parser takes strings, not bytes
648
+ self.bytes_read += len(hdr_text)
649
+ parser.feed(hdr_text.decode(self.encoding, self.errors))
650
+ headers = parser.close()
651
+
652
+ # Some clients add Content-Length for part headers, ignore them
653
+ if 'content-length' in headers:
654
+ del headers['content-length']
655
+
656
+ limit = None if self.limit is None \
657
+ else self.limit - self.bytes_read
658
+ part = klass(self.fp, headers, ib, environ, keep_blank_values,
659
+ strict_parsing, limit,
660
+ self.encoding, self.errors, max_num_fields, self.separator)
661
+
662
+ if max_num_fields is not None:
663
+ max_num_fields -= 1
664
+ if part.list:
665
+ max_num_fields -= len(part.list)
666
+ if max_num_fields < 0:
667
+ raise ValueError('Max number of fields exceeded')
668
+
669
+ self.bytes_read += part.bytes_read
670
+ self.list.append(part)
671
+ if part.done or self.bytes_read >= self.length > 0:
672
+ break
673
+ self.skip_lines()
674
+
675
+ def read_single(self):
676
+ """Internal: read an atomic part."""
677
+ if self.length >= 0:
678
+ self.read_binary()
679
+ self.skip_lines()
680
+ else:
681
+ self.read_lines()
682
+ self.file.seek(0)
683
+
684
+ bufsize = 8*1024 # I/O buffering size for copy to file
685
+
686
+ def read_binary(self):
687
+ """Internal: read binary data."""
688
+ self.file = self.make_file()
689
+ todo = self.length
690
+ if todo >= 0:
691
+ while todo > 0:
692
+ data = self.fp.read(min(todo, self.bufsize)) # bytes
693
+ if not isinstance(data, bytes):
694
+ raise ValueError("%s should return bytes, got %s"
695
+ % (self.fp, type(data).__name__))
696
+ self.bytes_read += len(data)
697
+ if not data:
698
+ self.done = -1
699
+ break
700
+ self.file.write(data)
701
+ todo = todo - len(data)
702
+
703
+ def read_lines(self):
704
+ """Internal: read lines until EOF or outerboundary."""
705
+ if self._binary_file:
706
+ self.file = self.__file = BytesIO() # store data as bytes for files
707
+ else:
708
+ self.file = self.__file = StringIO() # as strings for other fields
709
+ if self.outerboundary:
710
+ self.read_lines_to_outerboundary()
711
+ else:
712
+ self.read_lines_to_eof()
713
+
714
+ def __write(self, line):
715
+ """line is always bytes, not string"""
716
+ if self.__file is not None:
717
+ if self.__file.tell() + len(line) > 1000:
718
+ self.file = self.make_file()
719
+ data = self.__file.getvalue()
720
+ self.file.write(data)
721
+ self.__file = None
722
+ if self._binary_file:
723
+ # keep bytes
724
+ self.file.write(line)
725
+ else:
726
+ # decode to string
727
+ self.file.write(line.decode(self.encoding, self.errors))
728
+
729
+ def read_lines_to_eof(self):
730
+ """Internal: read lines until EOF."""
731
+ while 1:
732
+ line = self.fp.readline(1<<16) # bytes
733
+ self.bytes_read += len(line)
734
+ if not line:
735
+ self.done = -1
736
+ break
737
+ self.__write(line)
738
+
739
+ def read_lines_to_outerboundary(self):
740
+ """Internal: read lines until outerboundary.
741
+ Data is read as bytes: boundaries and line ends must be converted
742
+ to bytes for comparisons.
743
+ """
744
+ next_boundary = b"--" + self.outerboundary
745
+ last_boundary = next_boundary + b"--"
746
+ delim = b""
747
+ last_line_lfend = True
748
+ _read = 0
749
+ while 1:
750
+
751
+ if self.limit is not None and 0 <= self.limit <= _read:
752
+ break
753
+ line = self.fp.readline(1<<16) # bytes
754
+ self.bytes_read += len(line)
755
+ _read += len(line)
756
+ if not line:
757
+ self.done = -1
758
+ break
759
+ if delim == b"\r":
760
+ line = delim + line
761
+ delim = b""
762
+ if line.startswith(b"--") and last_line_lfend:
763
+ strippedline = line.rstrip()
764
+ if strippedline == next_boundary:
765
+ break
766
+ if strippedline == last_boundary:
767
+ self.done = 1
768
+ break
769
+ odelim = delim
770
+ if line.endswith(b"\r\n"):
771
+ delim = b"\r\n"
772
+ line = line[:-2]
773
+ last_line_lfend = True
774
+ elif line.endswith(b"\n"):
775
+ delim = b"\n"
776
+ line = line[:-1]
777
+ last_line_lfend = True
778
+ elif line.endswith(b"\r"):
779
+ # We may interrupt \r\n sequences if they span the 2**16
780
+ # byte boundary
781
+ delim = b"\r"
782
+ line = line[:-1]
783
+ last_line_lfend = False
784
+ else:
785
+ delim = b""
786
+ last_line_lfend = False
787
+ self.__write(odelim + line)
788
+
789
+ def skip_lines(self):
790
+ """Internal: skip lines until outer boundary if defined."""
791
+ if not self.outerboundary or self.done:
792
+ return
793
+ next_boundary = b"--" + self.outerboundary
794
+ last_boundary = next_boundary + b"--"
795
+ last_line_lfend = True
796
+ while True:
797
+ line = self.fp.readline(1<<16)
798
+ self.bytes_read += len(line)
799
+ if not line:
800
+ self.done = -1
801
+ break
802
+ if line.endswith(b"--") and last_line_lfend:
803
+ strippedline = line.strip()
804
+ if strippedline == next_boundary:
805
+ break
806
+ if strippedline == last_boundary:
807
+ self.done = 1
808
+ break
809
+ last_line_lfend = line.endswith(b'\n')
810
+
811
+ def make_file(self):
812
+ """Overridable: return a readable & writable file.
813
+
814
+ The file will be used as follows:
815
+ - data is written to it
816
+ - seek(0)
817
+ - data is read from it
818
+
819
+ The file is opened in binary mode for files, in text mode
820
+ for other fields
821
+
822
+ This version opens a temporary file for reading and writing,
823
+ and immediately deletes (unlinks) it. The trick (on Unix!) is
824
+ that the file can still be used, but it can't be opened by
825
+ another process, and it will automatically be deleted when it
826
+ is closed or when the current process terminates.
827
+
828
+ If you want a more permanent file, you derive a class which
829
+ overrides this method. If you want a visible temporary file
830
+ that is nevertheless automatically deleted when the script
831
+ terminates, try defining a __del__ method in a derived class
832
+ which unlinks the temporary files you have created.
833
+
834
+ """
835
+ if self._binary_file:
836
+ return tempfile.TemporaryFile("wb+")
837
+ else:
838
+ return tempfile.TemporaryFile("w+",
839
+ encoding=self.encoding, newline = '\n')
840
+
841
+
842
+ # Test/debug code
843
+ # ===============
844
+
845
+ def test(environ=os.environ):
846
+ """Robust test CGI script, usable as main program.
847
+
848
+ Write minimal HTTP headers and dump all information provided to
849
+ the script in HTML form.
850
+
851
+ """
852
+ print("Content-type: text/html")
853
+ print()
854
+ sys.stderr = sys.stdout
855
+ try:
856
+ form = FieldStorage() # Replace with other classes to test those
857
+ print_directory()
858
+ print_arguments()
859
+ print_form(form)
860
+ print_environ(environ)
861
+ print_environ_usage()
862
+ def f():
863
+ exec("testing print_exception() -- <I>italics?</I>")
864
+ def g(f=f):
865
+ f()
866
+ print("<H3>What follows is a test, not an actual exception:</H3>")
867
+ g()
868
+ except:
869
+ print_exception()
870
+
871
+ print("<H1>Second try with a small maxlen...</H1>")
872
+
873
+ global maxlen
874
+ maxlen = 50
875
+ try:
876
+ form = FieldStorage() # Replace with other classes to test those
877
+ print_directory()
878
+ print_arguments()
879
+ print_form(form)
880
+ print_environ(environ)
881
+ except:
882
+ print_exception()
883
+
884
+ def print_exception(type=None, value=None, tb=None, limit=None):
885
+ if type is None:
886
+ type, value, tb = sys.exc_info()
887
+ import traceback
888
+ print()
889
+ print("<H3>Traceback (most recent call last):</H3>")
890
+ list = traceback.format_tb(tb, limit) + \
891
+ traceback.format_exception_only(type, value)
892
+ print("<PRE>%s<B>%s</B></PRE>" % (
893
+ html.escape("".join(list[:-1])),
894
+ html.escape(list[-1]),
895
+ ))
896
+ del tb
897
+
898
+ def print_environ(environ=os.environ):
899
+ """Dump the shell environment as HTML."""
900
+ keys = sorted(environ.keys())
901
+ print()
902
+ print("<H3>Shell Environment:</H3>")
903
+ print("<DL>")
904
+ for key in keys:
905
+ print("<DT>", html.escape(key), "<DD>", html.escape(environ[key]))
906
+ print("</DL>")
907
+ print()
908
+
909
+ def print_form(form):
910
+ """Dump the contents of a form as HTML."""
911
+ keys = sorted(form.keys())
912
+ print()
913
+ print("<H3>Form Contents:</H3>")
914
+ if not keys:
915
+ print("<P>No form fields.")
916
+ print("<DL>")
917
+ for key in keys:
918
+ print("<DT>" + html.escape(key) + ":", end=' ')
919
+ value = form[key]
920
+ print("<i>" + html.escape(repr(type(value))) + "</i>")
921
+ print("<DD>" + html.escape(repr(value)))
922
+ print("</DL>")
923
+ print()
924
+
925
+ def print_directory():
926
+ """Dump the current directory as HTML."""
927
+ print()
928
+ print("<H3>Current Working Directory:</H3>")
929
+ try:
930
+ pwd = os.getcwd()
931
+ except OSError as msg:
932
+ print("OSError:", html.escape(str(msg)))
933
+ else:
934
+ print(html.escape(pwd))
935
+ print()
936
+
937
+ def print_arguments():
938
+ print()
939
+ print("<H3>Command Line Arguments:</H3>")
940
+ print()
941
+ print(sys.argv)
942
+ print()
943
+
944
+ def print_environ_usage():
945
+ """Dump a list of environment variables used by CGI as HTML."""
946
+ print("""
947
+ <H3>These environment variables could have been set:</H3>
948
+ <UL>
949
+ <LI>AUTH_TYPE
950
+ <LI>CONTENT_LENGTH
951
+ <LI>CONTENT_TYPE
952
+ <LI>DATE_GMT
953
+ <LI>DATE_LOCAL
954
+ <LI>DOCUMENT_NAME
955
+ <LI>DOCUMENT_ROOT
956
+ <LI>DOCUMENT_URI
957
+ <LI>GATEWAY_INTERFACE
958
+ <LI>LAST_MODIFIED
959
+ <LI>PATH
960
+ <LI>PATH_INFO
961
+ <LI>PATH_TRANSLATED
962
+ <LI>QUERY_STRING
963
+ <LI>REMOTE_ADDR
964
+ <LI>REMOTE_HOST
965
+ <LI>REMOTE_IDENT
966
+ <LI>REMOTE_USER
967
+ <LI>REQUEST_METHOD
968
+ <LI>SCRIPT_NAME
969
+ <LI>SERVER_NAME
970
+ <LI>SERVER_PORT
971
+ <LI>SERVER_PROTOCOL
972
+ <LI>SERVER_ROOT
973
+ <LI>SERVER_SOFTWARE
974
+ </UL>
975
+ In addition, HTTP headers sent by the server may be passed in the
976
+ environment as well. Here are some common variable names:
977
+ <UL>
978
+ <LI>HTTP_ACCEPT
979
+ <LI>HTTP_CONNECTION
980
+ <LI>HTTP_HOST
981
+ <LI>HTTP_PRAGMA
982
+ <LI>HTTP_REFERER
983
+ <LI>HTTP_USER_AGENT
984
+ </UL>
985
+ """)
986
+
987
+
988
+ # Utilities
989
+ # =========
990
+
991
+ def valid_boundary(s):
992
+ import re
993
+ if isinstance(s, bytes):
994
+ _vb_pattern = b"^[ -~]{0,200}[!-~]$"
995
+ else:
996
+ _vb_pattern = "^[ -~]{0,200}[!-~]$"
997
+ return re.match(_vb_pattern, s)
998
+
999
+ # Invoke mainline
1000
+ # ===============
1001
+
1002
+ # Call test() when this file is run as a script (not imported as a module)
1003
+ if __name__ == '__main__':
1004
+ test()
parrot/lib/python3.10/codeop.py ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ r"""Utilities to compile possibly incomplete Python source code.
2
+
3
+ This module provides two interfaces, broadly similar to the builtin
4
+ function compile(), which take program text, a filename and a 'mode'
5
+ and:
6
+
7
+ - Return code object if the command is complete and valid
8
+ - Return None if the command is incomplete
9
+ - Raise SyntaxError, ValueError or OverflowError if the command is a
10
+ syntax error (OverflowError and ValueError can be produced by
11
+ malformed literals).
12
+
13
+ The two interfaces are:
14
+
15
+ compile_command(source, filename, symbol):
16
+
17
+ Compiles a single command in the manner described above.
18
+
19
+ CommandCompiler():
20
+
21
+ Instances of this class have __call__ methods identical in
22
+ signature to compile_command; the difference is that if the
23
+ instance compiles program text containing a __future__ statement,
24
+ the instance 'remembers' and compiles all subsequent program texts
25
+ with the statement in force.
26
+
27
+ The module also provides another class:
28
+
29
+ Compile():
30
+
31
+ Instances of this class act like the built-in function compile,
32
+ but with 'memory' in the sense described above.
33
+ """
34
+
35
+ import __future__
36
+ import warnings
37
+
38
+ _features = [getattr(__future__, fname)
39
+ for fname in __future__.all_feature_names]
40
+
41
+ __all__ = ["compile_command", "Compile", "CommandCompiler"]
42
+
43
+ # The following flags match the values from Include/cpython/compile.h
44
+ # Caveat emptor: These flags are undocumented on purpose and depending
45
+ # on their effect outside the standard library is **unsupported**.
46
+ PyCF_DONT_IMPLY_DEDENT = 0x200
47
+ PyCF_ALLOW_INCOMPLETE_INPUT = 0x4000
48
+
49
+ def _maybe_compile(compiler, source, filename, symbol):
50
+ # Check for source consisting of only blank lines and comments.
51
+ for line in source.split("\n"):
52
+ line = line.strip()
53
+ if line and line[0] != '#':
54
+ break # Leave it alone.
55
+ else:
56
+ if symbol != "eval":
57
+ source = "pass" # Replace it with a 'pass' statement
58
+
59
+ # Disable compiler warnings when checking for incomplete input.
60
+ with warnings.catch_warnings():
61
+ warnings.simplefilter("ignore", (SyntaxWarning, DeprecationWarning))
62
+ try:
63
+ compiler(source, filename, symbol)
64
+ except SyntaxError: # Let other compile() errors propagate.
65
+ try:
66
+ compiler(source + "\n", filename, symbol)
67
+ return None
68
+ except SyntaxError as e:
69
+ if "incomplete input" in str(e):
70
+ return None
71
+ # fallthrough
72
+
73
+ return compiler(source, filename, symbol)
74
+
75
+
76
+ def _is_syntax_error(err1, err2):
77
+ rep1 = repr(err1)
78
+ rep2 = repr(err2)
79
+ if "was never closed" in rep1 and "was never closed" in rep2:
80
+ return False
81
+ if rep1 == rep2:
82
+ return True
83
+ return False
84
+
85
+ def _compile(source, filename, symbol):
86
+ return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT | PyCF_ALLOW_INCOMPLETE_INPUT)
87
+
88
+ def compile_command(source, filename="<input>", symbol="single"):
89
+ r"""Compile a command and determine whether it is incomplete.
90
+
91
+ Arguments:
92
+
93
+ source -- the source string; may contain \n characters
94
+ filename -- optional filename from which source was read; default
95
+ "<input>"
96
+ symbol -- optional grammar start symbol; "single" (default), "exec"
97
+ or "eval"
98
+
99
+ Return value / exceptions raised:
100
+
101
+ - Return a code object if the command is complete and valid
102
+ - Return None if the command is incomplete
103
+ - Raise SyntaxError, ValueError or OverflowError if the command is a
104
+ syntax error (OverflowError and ValueError can be produced by
105
+ malformed literals).
106
+ """
107
+ return _maybe_compile(_compile, source, filename, symbol)
108
+
109
+ class Compile:
110
+ """Instances of this class behave much like the built-in compile
111
+ function, but if one is used to compile text containing a future
112
+ statement, it "remembers" and compiles all subsequent program texts
113
+ with the statement in force."""
114
+ def __init__(self):
115
+ self.flags = PyCF_DONT_IMPLY_DEDENT | PyCF_ALLOW_INCOMPLETE_INPUT
116
+
117
+ def __call__(self, source, filename, symbol):
118
+ codeob = compile(source, filename, symbol, self.flags, True)
119
+ for feature in _features:
120
+ if codeob.co_flags & feature.compiler_flag:
121
+ self.flags |= feature.compiler_flag
122
+ return codeob
123
+
124
+ class CommandCompiler:
125
+ """Instances of this class have __call__ methods identical in
126
+ signature to compile_command; the difference is that if the
127
+ instance compiles program text containing a __future__ statement,
128
+ the instance 'remembers' and compiles all subsequent program texts
129
+ with the statement in force."""
130
+
131
+ def __init__(self,):
132
+ self.compiler = Compile()
133
+
134
+ def __call__(self, source, filename="<input>", symbol="single"):
135
+ r"""Compile a command and determine whether it is incomplete.
136
+
137
+ Arguments:
138
+
139
+ source -- the source string; may contain \n characters
140
+ filename -- optional filename from which source was read;
141
+ default "<input>"
142
+ symbol -- optional grammar start symbol; "single" (default) or
143
+ "eval"
144
+
145
+ Return value / exceptions raised:
146
+
147
+ - Return a code object if the command is complete and valid
148
+ - Return None if the command is incomplete
149
+ - Raise SyntaxError, ValueError or OverflowError if the command is a
150
+ syntax error (OverflowError and ValueError can be produced by
151
+ malformed literals).
152
+ """
153
+ return _maybe_compile(self.compiler, source, filename, symbol)
parrot/lib/python3.10/fnmatch.py ADDED
@@ -0,0 +1,199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Filename matching with shell patterns.
2
+
3
+ fnmatch(FILENAME, PATTERN) matches according to the local convention.
4
+ fnmatchcase(FILENAME, PATTERN) always takes case in account.
5
+
6
+ The functions operate by translating the pattern into a regular
7
+ expression. They cache the compiled regular expressions for speed.
8
+
9
+ The function translate(PATTERN) returns a regular expression
10
+ corresponding to PATTERN. (It does not compile it.)
11
+ """
12
+ import os
13
+ import posixpath
14
+ import re
15
+ import functools
16
+
17
+ __all__ = ["filter", "fnmatch", "fnmatchcase", "translate"]
18
+
19
+ # Build a thread-safe incrementing counter to help create unique regexp group
20
+ # names across calls.
21
+ from itertools import count
22
+ _nextgroupnum = count().__next__
23
+ del count
24
+
25
+ def fnmatch(name, pat):
26
+ """Test whether FILENAME matches PATTERN.
27
+
28
+ Patterns are Unix shell style:
29
+
30
+ * matches everything
31
+ ? matches any single character
32
+ [seq] matches any character in seq
33
+ [!seq] matches any char not in seq
34
+
35
+ An initial period in FILENAME is not special.
36
+ Both FILENAME and PATTERN are first case-normalized
37
+ if the operating system requires it.
38
+ If you don't want this, use fnmatchcase(FILENAME, PATTERN).
39
+ """
40
+ name = os.path.normcase(name)
41
+ pat = os.path.normcase(pat)
42
+ return fnmatchcase(name, pat)
43
+
44
+ @functools.lru_cache(maxsize=256, typed=True)
45
+ def _compile_pattern(pat):
46
+ if isinstance(pat, bytes):
47
+ pat_str = str(pat, 'ISO-8859-1')
48
+ res_str = translate(pat_str)
49
+ res = bytes(res_str, 'ISO-8859-1')
50
+ else:
51
+ res = translate(pat)
52
+ return re.compile(res).match
53
+
54
+ def filter(names, pat):
55
+ """Construct a list from those elements of the iterable NAMES that match PAT."""
56
+ result = []
57
+ pat = os.path.normcase(pat)
58
+ match = _compile_pattern(pat)
59
+ if os.path is posixpath:
60
+ # normcase on posix is NOP. Optimize it away from the loop.
61
+ for name in names:
62
+ if match(name):
63
+ result.append(name)
64
+ else:
65
+ for name in names:
66
+ if match(os.path.normcase(name)):
67
+ result.append(name)
68
+ return result
69
+
70
+ def fnmatchcase(name, pat):
71
+ """Test whether FILENAME matches PATTERN, including case.
72
+
73
+ This is a version of fnmatch() which doesn't case-normalize
74
+ its arguments.
75
+ """
76
+ match = _compile_pattern(pat)
77
+ return match(name) is not None
78
+
79
+
80
+ def translate(pat):
81
+ """Translate a shell PATTERN to a regular expression.
82
+
83
+ There is no way to quote meta-characters.
84
+ """
85
+
86
+ STAR = object()
87
+ res = []
88
+ add = res.append
89
+ i, n = 0, len(pat)
90
+ while i < n:
91
+ c = pat[i]
92
+ i = i+1
93
+ if c == '*':
94
+ # compress consecutive `*` into one
95
+ if (not res) or res[-1] is not STAR:
96
+ add(STAR)
97
+ elif c == '?':
98
+ add('.')
99
+ elif c == '[':
100
+ j = i
101
+ if j < n and pat[j] == '!':
102
+ j = j+1
103
+ if j < n and pat[j] == ']':
104
+ j = j+1
105
+ while j < n and pat[j] != ']':
106
+ j = j+1
107
+ if j >= n:
108
+ add('\\[')
109
+ else:
110
+ stuff = pat[i:j]
111
+ if '-' not in stuff:
112
+ stuff = stuff.replace('\\', r'\\')
113
+ else:
114
+ chunks = []
115
+ k = i+2 if pat[i] == '!' else i+1
116
+ while True:
117
+ k = pat.find('-', k, j)
118
+ if k < 0:
119
+ break
120
+ chunks.append(pat[i:k])
121
+ i = k+1
122
+ k = k+3
123
+ chunk = pat[i:j]
124
+ if chunk:
125
+ chunks.append(chunk)
126
+ else:
127
+ chunks[-1] += '-'
128
+ # Remove empty ranges -- invalid in RE.
129
+ for k in range(len(chunks)-1, 0, -1):
130
+ if chunks[k-1][-1] > chunks[k][0]:
131
+ chunks[k-1] = chunks[k-1][:-1] + chunks[k][1:]
132
+ del chunks[k]
133
+ # Escape backslashes and hyphens for set difference (--).
134
+ # Hyphens that create ranges shouldn't be escaped.
135
+ stuff = '-'.join(s.replace('\\', r'\\').replace('-', r'\-')
136
+ for s in chunks)
137
+ # Escape set operations (&&, ~~ and ||).
138
+ stuff = re.sub(r'([&~|])', r'\\\1', stuff)
139
+ i = j+1
140
+ if not stuff:
141
+ # Empty range: never match.
142
+ add('(?!)')
143
+ elif stuff == '!':
144
+ # Negated empty range: match any character.
145
+ add('.')
146
+ else:
147
+ if stuff[0] == '!':
148
+ stuff = '^' + stuff[1:]
149
+ elif stuff[0] in ('^', '['):
150
+ stuff = '\\' + stuff
151
+ add(f'[{stuff}]')
152
+ else:
153
+ add(re.escape(c))
154
+ assert i == n
155
+
156
+ # Deal with STARs.
157
+ inp = res
158
+ res = []
159
+ add = res.append
160
+ i, n = 0, len(inp)
161
+ # Fixed pieces at the start?
162
+ while i < n and inp[i] is not STAR:
163
+ add(inp[i])
164
+ i += 1
165
+ # Now deal with STAR fixed STAR fixed ...
166
+ # For an interior `STAR fixed` pairing, we want to do a minimal
167
+ # .*? match followed by `fixed`, with no possibility of backtracking.
168
+ # We can't spell that directly, but can trick it into working by matching
169
+ # .*?fixed
170
+ # in a lookahead assertion, save the matched part in a group, then
171
+ # consume that group via a backreference. If the overall match fails,
172
+ # the lookahead assertion won't try alternatives. So the translation is:
173
+ # (?=(?P<name>.*?fixed))(?P=name)
174
+ # Group names are created as needed: g0, g1, g2, ...
175
+ # The numbers are obtained from _nextgroupnum() to ensure they're unique
176
+ # across calls and across threads. This is because people rely on the
177
+ # undocumented ability to join multiple translate() results together via
178
+ # "|" to build large regexps matching "one of many" shell patterns.
179
+ while i < n:
180
+ assert inp[i] is STAR
181
+ i += 1
182
+ if i == n:
183
+ add(".*")
184
+ break
185
+ assert inp[i] is not STAR
186
+ fixed = []
187
+ while i < n and inp[i] is not STAR:
188
+ fixed.append(inp[i])
189
+ i += 1
190
+ fixed = "".join(fixed)
191
+ if i == n:
192
+ add(".*")
193
+ add(fixed)
194
+ else:
195
+ groupnum = _nextgroupnum()
196
+ add(f"(?=(?P<g{groupnum}>.*?{fixed}))(?P=g{groupnum})")
197
+ assert i == n
198
+ res = "".join(res)
199
+ return fr'(?s:{res})\Z'
parrot/lib/python3.10/lzma.py ADDED
@@ -0,0 +1,356 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Interface to the liblzma compression library.
2
+
3
+ This module provides a class for reading and writing compressed files,
4
+ classes for incremental (de)compression, and convenience functions for
5
+ one-shot (de)compression.
6
+
7
+ These classes and functions support both the XZ and legacy LZMA
8
+ container formats, as well as raw compressed data streams.
9
+ """
10
+
11
+ __all__ = [
12
+ "CHECK_NONE", "CHECK_CRC32", "CHECK_CRC64", "CHECK_SHA256",
13
+ "CHECK_ID_MAX", "CHECK_UNKNOWN",
14
+ "FILTER_LZMA1", "FILTER_LZMA2", "FILTER_DELTA", "FILTER_X86", "FILTER_IA64",
15
+ "FILTER_ARM", "FILTER_ARMTHUMB", "FILTER_POWERPC", "FILTER_SPARC",
16
+ "FORMAT_AUTO", "FORMAT_XZ", "FORMAT_ALONE", "FORMAT_RAW",
17
+ "MF_HC3", "MF_HC4", "MF_BT2", "MF_BT3", "MF_BT4",
18
+ "MODE_FAST", "MODE_NORMAL", "PRESET_DEFAULT", "PRESET_EXTREME",
19
+
20
+ "LZMACompressor", "LZMADecompressor", "LZMAFile", "LZMAError",
21
+ "open", "compress", "decompress", "is_check_supported",
22
+ ]
23
+
24
+ import builtins
25
+ import io
26
+ import os
27
+ from _lzma import *
28
+ from _lzma import _encode_filter_properties, _decode_filter_properties
29
+ import _compression
30
+
31
+
32
+ _MODE_CLOSED = 0
33
+ _MODE_READ = 1
34
+ # Value 2 no longer used
35
+ _MODE_WRITE = 3
36
+
37
+
38
+ class LZMAFile(_compression.BaseStream):
39
+
40
+ """A file object providing transparent LZMA (de)compression.
41
+
42
+ An LZMAFile can act as a wrapper for an existing file object, or
43
+ refer directly to a named file on disk.
44
+
45
+ Note that LZMAFile provides a *binary* file interface - data read
46
+ is returned as bytes, and data to be written must be given as bytes.
47
+ """
48
+
49
+ def __init__(self, filename=None, mode="r", *,
50
+ format=None, check=-1, preset=None, filters=None):
51
+ """Open an LZMA-compressed file in binary mode.
52
+
53
+ filename can be either an actual file name (given as a str,
54
+ bytes, or PathLike object), in which case the named file is
55
+ opened, or it can be an existing file object to read from or
56
+ write to.
57
+
58
+ mode can be "r" for reading (default), "w" for (over)writing,
59
+ "x" for creating exclusively, or "a" for appending. These can
60
+ equivalently be given as "rb", "wb", "xb" and "ab" respectively.
61
+
62
+ format specifies the container format to use for the file.
63
+ If mode is "r", this defaults to FORMAT_AUTO. Otherwise, the
64
+ default is FORMAT_XZ.
65
+
66
+ check specifies the integrity check to use. This argument can
67
+ only be used when opening a file for writing. For FORMAT_XZ,
68
+ the default is CHECK_CRC64. FORMAT_ALONE and FORMAT_RAW do not
69
+ support integrity checks - for these formats, check must be
70
+ omitted, or be CHECK_NONE.
71
+
72
+ When opening a file for reading, the *preset* argument is not
73
+ meaningful, and should be omitted. The *filters* argument should
74
+ also be omitted, except when format is FORMAT_RAW (in which case
75
+ it is required).
76
+
77
+ When opening a file for writing, the settings used by the
78
+ compressor can be specified either as a preset compression
79
+ level (with the *preset* argument), or in detail as a custom
80
+ filter chain (with the *filters* argument). For FORMAT_XZ and
81
+ FORMAT_ALONE, the default is to use the PRESET_DEFAULT preset
82
+ level. For FORMAT_RAW, the caller must always specify a filter
83
+ chain; the raw compressor does not support preset compression
84
+ levels.
85
+
86
+ preset (if provided) should be an integer in the range 0-9,
87
+ optionally OR-ed with the constant PRESET_EXTREME.
88
+
89
+ filters (if provided) should be a sequence of dicts. Each dict
90
+ should have an entry for "id" indicating ID of the filter, plus
91
+ additional entries for options to the filter.
92
+ """
93
+ self._fp = None
94
+ self._closefp = False
95
+ self._mode = _MODE_CLOSED
96
+
97
+ if mode in ("r", "rb"):
98
+ if check != -1:
99
+ raise ValueError("Cannot specify an integrity check "
100
+ "when opening a file for reading")
101
+ if preset is not None:
102
+ raise ValueError("Cannot specify a preset compression "
103
+ "level when opening a file for reading")
104
+ if format is None:
105
+ format = FORMAT_AUTO
106
+ mode_code = _MODE_READ
107
+ elif mode in ("w", "wb", "a", "ab", "x", "xb"):
108
+ if format is None:
109
+ format = FORMAT_XZ
110
+ mode_code = _MODE_WRITE
111
+ self._compressor = LZMACompressor(format=format, check=check,
112
+ preset=preset, filters=filters)
113
+ self._pos = 0
114
+ else:
115
+ raise ValueError("Invalid mode: {!r}".format(mode))
116
+
117
+ if isinstance(filename, (str, bytes, os.PathLike)):
118
+ if "b" not in mode:
119
+ mode += "b"
120
+ self._fp = builtins.open(filename, mode)
121
+ self._closefp = True
122
+ self._mode = mode_code
123
+ elif hasattr(filename, "read") or hasattr(filename, "write"):
124
+ self._fp = filename
125
+ self._mode = mode_code
126
+ else:
127
+ raise TypeError("filename must be a str, bytes, file or PathLike object")
128
+
129
+ if self._mode == _MODE_READ:
130
+ raw = _compression.DecompressReader(self._fp, LZMADecompressor,
131
+ trailing_error=LZMAError, format=format, filters=filters)
132
+ self._buffer = io.BufferedReader(raw)
133
+
134
+ def close(self):
135
+ """Flush and close the file.
136
+
137
+ May be called more than once without error. Once the file is
138
+ closed, any other operation on it will raise a ValueError.
139
+ """
140
+ if self._mode == _MODE_CLOSED:
141
+ return
142
+ try:
143
+ if self._mode == _MODE_READ:
144
+ self._buffer.close()
145
+ self._buffer = None
146
+ elif self._mode == _MODE_WRITE:
147
+ self._fp.write(self._compressor.flush())
148
+ self._compressor = None
149
+ finally:
150
+ try:
151
+ if self._closefp:
152
+ self._fp.close()
153
+ finally:
154
+ self._fp = None
155
+ self._closefp = False
156
+ self._mode = _MODE_CLOSED
157
+
158
+ @property
159
+ def closed(self):
160
+ """True if this file is closed."""
161
+ return self._mode == _MODE_CLOSED
162
+
163
+ def fileno(self):
164
+ """Return the file descriptor for the underlying file."""
165
+ self._check_not_closed()
166
+ return self._fp.fileno()
167
+
168
+ def seekable(self):
169
+ """Return whether the file supports seeking."""
170
+ return self.readable() and self._buffer.seekable()
171
+
172
+ def readable(self):
173
+ """Return whether the file was opened for reading."""
174
+ self._check_not_closed()
175
+ return self._mode == _MODE_READ
176
+
177
+ def writable(self):
178
+ """Return whether the file was opened for writing."""
179
+ self._check_not_closed()
180
+ return self._mode == _MODE_WRITE
181
+
182
+ def peek(self, size=-1):
183
+ """Return buffered data without advancing the file position.
184
+
185
+ Always returns at least one byte of data, unless at EOF.
186
+ The exact number of bytes returned is unspecified.
187
+ """
188
+ self._check_can_read()
189
+ # Relies on the undocumented fact that BufferedReader.peek() always
190
+ # returns at least one byte (except at EOF)
191
+ return self._buffer.peek(size)
192
+
193
+ def read(self, size=-1):
194
+ """Read up to size uncompressed bytes from the file.
195
+
196
+ If size is negative or omitted, read until EOF is reached.
197
+ Returns b"" if the file is already at EOF.
198
+ """
199
+ self._check_can_read()
200
+ return self._buffer.read(size)
201
+
202
+ def read1(self, size=-1):
203
+ """Read up to size uncompressed bytes, while trying to avoid
204
+ making multiple reads from the underlying stream. Reads up to a
205
+ buffer's worth of data if size is negative.
206
+
207
+ Returns b"" if the file is at EOF.
208
+ """
209
+ self._check_can_read()
210
+ if size < 0:
211
+ size = io.DEFAULT_BUFFER_SIZE
212
+ return self._buffer.read1(size)
213
+
214
+ def readline(self, size=-1):
215
+ """Read a line of uncompressed bytes from the file.
216
+
217
+ The terminating newline (if present) is retained. If size is
218
+ non-negative, no more than size bytes will be read (in which
219
+ case the line may be incomplete). Returns b'' if already at EOF.
220
+ """
221
+ self._check_can_read()
222
+ return self._buffer.readline(size)
223
+
224
+ def write(self, data):
225
+ """Write a bytes object to the file.
226
+
227
+ Returns the number of uncompressed bytes written, which is
228
+ always the length of data in bytes. Note that due to buffering,
229
+ the file on disk may not reflect the data written until close()
230
+ is called.
231
+ """
232
+ self._check_can_write()
233
+ if isinstance(data, (bytes, bytearray)):
234
+ length = len(data)
235
+ else:
236
+ # accept any data that supports the buffer protocol
237
+ data = memoryview(data)
238
+ length = data.nbytes
239
+
240
+ compressed = self._compressor.compress(data)
241
+ self._fp.write(compressed)
242
+ self._pos += length
243
+ return length
244
+
245
+ def seek(self, offset, whence=io.SEEK_SET):
246
+ """Change the file position.
247
+
248
+ The new position is specified by offset, relative to the
249
+ position indicated by whence. Possible values for whence are:
250
+
251
+ 0: start of stream (default): offset must not be negative
252
+ 1: current stream position
253
+ 2: end of stream; offset must not be positive
254
+
255
+ Returns the new file position.
256
+
257
+ Note that seeking is emulated, so depending on the parameters,
258
+ this operation may be extremely slow.
259
+ """
260
+ self._check_can_seek()
261
+ return self._buffer.seek(offset, whence)
262
+
263
+ def tell(self):
264
+ """Return the current file position."""
265
+ self._check_not_closed()
266
+ if self._mode == _MODE_READ:
267
+ return self._buffer.tell()
268
+ return self._pos
269
+
270
+
271
+ def open(filename, mode="rb", *,
272
+ format=None, check=-1, preset=None, filters=None,
273
+ encoding=None, errors=None, newline=None):
274
+ """Open an LZMA-compressed file in binary or text mode.
275
+
276
+ filename can be either an actual file name (given as a str, bytes,
277
+ or PathLike object), in which case the named file is opened, or it
278
+ can be an existing file object to read from or write to.
279
+
280
+ The mode argument can be "r", "rb" (default), "w", "wb", "x", "xb",
281
+ "a", or "ab" for binary mode, or "rt", "wt", "xt", or "at" for text
282
+ mode.
283
+
284
+ The format, check, preset and filters arguments specify the
285
+ compression settings, as for LZMACompressor, LZMADecompressor and
286
+ LZMAFile.
287
+
288
+ For binary mode, this function is equivalent to the LZMAFile
289
+ constructor: LZMAFile(filename, mode, ...). In this case, the
290
+ encoding, errors and newline arguments must not be provided.
291
+
292
+ For text mode, an LZMAFile object is created, and wrapped in an
293
+ io.TextIOWrapper instance with the specified encoding, error
294
+ handling behavior, and line ending(s).
295
+
296
+ """
297
+ if "t" in mode:
298
+ if "b" in mode:
299
+ raise ValueError("Invalid mode: %r" % (mode,))
300
+ else:
301
+ if encoding is not None:
302
+ raise ValueError("Argument 'encoding' not supported in binary mode")
303
+ if errors is not None:
304
+ raise ValueError("Argument 'errors' not supported in binary mode")
305
+ if newline is not None:
306
+ raise ValueError("Argument 'newline' not supported in binary mode")
307
+
308
+ lz_mode = mode.replace("t", "")
309
+ binary_file = LZMAFile(filename, lz_mode, format=format, check=check,
310
+ preset=preset, filters=filters)
311
+
312
+ if "t" in mode:
313
+ encoding = io.text_encoding(encoding)
314
+ return io.TextIOWrapper(binary_file, encoding, errors, newline)
315
+ else:
316
+ return binary_file
317
+
318
+
319
+ def compress(data, format=FORMAT_XZ, check=-1, preset=None, filters=None):
320
+ """Compress a block of data.
321
+
322
+ Refer to LZMACompressor's docstring for a description of the
323
+ optional arguments *format*, *check*, *preset* and *filters*.
324
+
325
+ For incremental compression, use an LZMACompressor instead.
326
+ """
327
+ comp = LZMACompressor(format, check, preset, filters)
328
+ return comp.compress(data) + comp.flush()
329
+
330
+
331
+ def decompress(data, format=FORMAT_AUTO, memlimit=None, filters=None):
332
+ """Decompress a block of data.
333
+
334
+ Refer to LZMADecompressor's docstring for a description of the
335
+ optional arguments *format*, *check* and *filters*.
336
+
337
+ For incremental decompression, use an LZMADecompressor instead.
338
+ """
339
+ results = []
340
+ while True:
341
+ decomp = LZMADecompressor(format, memlimit, filters)
342
+ try:
343
+ res = decomp.decompress(data)
344
+ except LZMAError:
345
+ if results:
346
+ break # Leftover data is not a valid LZMA/XZ stream; ignore it.
347
+ else:
348
+ raise # Error on the first iteration; bail out.
349
+ results.append(res)
350
+ if not decomp.eof:
351
+ raise LZMAError("Compressed data ended before the "
352
+ "end-of-stream marker was reached")
353
+ data = decomp.unused_data
354
+ if not data:
355
+ break
356
+ return b"".join(results)
parrot/lib/python3.10/pdb.py ADDED
@@ -0,0 +1,1750 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #! /usr/bin/env python3
2
+
3
+ """
4
+ The Python Debugger Pdb
5
+ =======================
6
+
7
+ To use the debugger in its simplest form:
8
+
9
+ >>> import pdb
10
+ >>> pdb.run('<a statement>')
11
+
12
+ The debugger's prompt is '(Pdb) '. This will stop in the first
13
+ function call in <a statement>.
14
+
15
+ Alternatively, if a statement terminated with an unhandled exception,
16
+ you can use pdb's post-mortem facility to inspect the contents of the
17
+ traceback:
18
+
19
+ >>> <a statement>
20
+ <exception traceback>
21
+ >>> import pdb
22
+ >>> pdb.pm()
23
+
24
+ The commands recognized by the debugger are listed in the next
25
+ section. Most can be abbreviated as indicated; e.g., h(elp) means
26
+ that 'help' can be typed as 'h' or 'help' (but not as 'he' or 'hel',
27
+ nor as 'H' or 'Help' or 'HELP'). Optional arguments are enclosed in
28
+ square brackets. Alternatives in the command syntax are separated
29
+ by a vertical bar (|).
30
+
31
+ A blank line repeats the previous command literally, except for
32
+ 'list', where it lists the next 11 lines.
33
+
34
+ Commands that the debugger doesn't recognize are assumed to be Python
35
+ statements and are executed in the context of the program being
36
+ debugged. Python statements can also be prefixed with an exclamation
37
+ point ('!'). This is a powerful way to inspect the program being
38
+ debugged; it is even possible to change variables or call functions.
39
+ When an exception occurs in such a statement, the exception name is
40
+ printed but the debugger's state is not changed.
41
+
42
+ The debugger supports aliases, which can save typing. And aliases can
43
+ have parameters (see the alias help entry) which allows one a certain
44
+ level of adaptability to the context under examination.
45
+
46
+ Multiple commands may be entered on a single line, separated by the
47
+ pair ';;'. No intelligence is applied to separating the commands; the
48
+ input is split at the first ';;', even if it is in the middle of a
49
+ quoted string.
50
+
51
+ If a file ".pdbrc" exists in your home directory or in the current
52
+ directory, it is read in and executed as if it had been typed at the
53
+ debugger prompt. This is particularly useful for aliases. If both
54
+ files exist, the one in the home directory is read first and aliases
55
+ defined there can be overridden by the local file. This behavior can be
56
+ disabled by passing the "readrc=False" argument to the Pdb constructor.
57
+
58
+ Aside from aliases, the debugger is not directly programmable; but it
59
+ is implemented as a class from which you can derive your own debugger
60
+ class, which you can make as fancy as you like.
61
+
62
+
63
+ Debugger commands
64
+ =================
65
+
66
+ """
67
+ # NOTE: the actual command documentation is collected from docstrings of the
68
+ # commands and is appended to __doc__ after the class has been defined.
69
+
70
+ import os
71
+ import io
72
+ import re
73
+ import sys
74
+ import cmd
75
+ import bdb
76
+ import dis
77
+ import code
78
+ import glob
79
+ import pprint
80
+ import signal
81
+ import inspect
82
+ import tokenize
83
+ import traceback
84
+ import linecache
85
+
86
+
87
+ class Restart(Exception):
88
+ """Causes a debugger to be restarted for the debugged python program."""
89
+ pass
90
+
91
+ __all__ = ["run", "pm", "Pdb", "runeval", "runctx", "runcall", "set_trace",
92
+ "post_mortem", "help"]
93
+
94
+ def find_function(funcname, filename):
95
+ cre = re.compile(r'def\s+%s\s*[(]' % re.escape(funcname))
96
+ try:
97
+ fp = tokenize.open(filename)
98
+ except OSError:
99
+ return None
100
+ # consumer of this info expects the first line to be 1
101
+ with fp:
102
+ for lineno, line in enumerate(fp, start=1):
103
+ if cre.match(line):
104
+ return funcname, filename, lineno
105
+ return None
106
+
107
+ def lasti2lineno(code, lasti):
108
+ linestarts = list(dis.findlinestarts(code))
109
+ linestarts.reverse()
110
+ for i, lineno in linestarts:
111
+ if lasti >= i:
112
+ return lineno
113
+ return 0
114
+
115
+
116
+ class _rstr(str):
117
+ """String that doesn't quote its repr."""
118
+ def __repr__(self):
119
+ return self
120
+
121
+
122
+ # Interaction prompt line will separate file and call info from code
123
+ # text using value of line_prefix string. A newline and arrow may
124
+ # be to your liking. You can set it once pdb is imported using the
125
+ # command "pdb.line_prefix = '\n% '".
126
+ # line_prefix = ': ' # Use this to get the old situation back
127
+ line_prefix = '\n-> ' # Probably a better default
128
+
129
+ class Pdb(bdb.Bdb, cmd.Cmd):
130
+
131
+ _previous_sigint_handler = None
132
+
133
+ def __init__(self, completekey='tab', stdin=None, stdout=None, skip=None,
134
+ nosigint=False, readrc=True):
135
+ bdb.Bdb.__init__(self, skip=skip)
136
+ cmd.Cmd.__init__(self, completekey, stdin, stdout)
137
+ sys.audit("pdb.Pdb")
138
+ if stdout:
139
+ self.use_rawinput = 0
140
+ self.prompt = '(Pdb) '
141
+ self.aliases = {}
142
+ self.displaying = {}
143
+ self.mainpyfile = ''
144
+ self._wait_for_mainpyfile = False
145
+ self.tb_lineno = {}
146
+ # Try to load readline if it exists
147
+ try:
148
+ import readline
149
+ # remove some common file name delimiters
150
+ readline.set_completer_delims(' \t\n`@#$%^&*()=+[{]}\\|;:\'",<>?')
151
+ except ImportError:
152
+ pass
153
+ self.allow_kbdint = False
154
+ self.nosigint = nosigint
155
+
156
+ # Read ~/.pdbrc and ./.pdbrc
157
+ self.rcLines = []
158
+ if readrc:
159
+ try:
160
+ with open(os.path.expanduser('~/.pdbrc')) as rcFile:
161
+ self.rcLines.extend(rcFile)
162
+ except OSError:
163
+ pass
164
+ try:
165
+ with open(".pdbrc") as rcFile:
166
+ self.rcLines.extend(rcFile)
167
+ except OSError:
168
+ pass
169
+
170
+ self.commands = {} # associates a command list to breakpoint numbers
171
+ self.commands_doprompt = {} # for each bp num, tells if the prompt
172
+ # must be disp. after execing the cmd list
173
+ self.commands_silent = {} # for each bp num, tells if the stack trace
174
+ # must be disp. after execing the cmd list
175
+ self.commands_defining = False # True while in the process of defining
176
+ # a command list
177
+ self.commands_bnum = None # The breakpoint number for which we are
178
+ # defining a list
179
+
180
+ def sigint_handler(self, signum, frame):
181
+ if self.allow_kbdint:
182
+ raise KeyboardInterrupt
183
+ self.message("\nProgram interrupted. (Use 'cont' to resume).")
184
+ self.set_step()
185
+ self.set_trace(frame)
186
+
187
+ def reset(self):
188
+ bdb.Bdb.reset(self)
189
+ self.forget()
190
+
191
+ def forget(self):
192
+ self.lineno = None
193
+ self.stack = []
194
+ self.curindex = 0
195
+ self.curframe = None
196
+ self.tb_lineno.clear()
197
+
198
+ def setup(self, f, tb):
199
+ self.forget()
200
+ self.stack, self.curindex = self.get_stack(f, tb)
201
+ while tb:
202
+ # when setting up post-mortem debugging with a traceback, save all
203
+ # the original line numbers to be displayed along the current line
204
+ # numbers (which can be different, e.g. due to finally clauses)
205
+ lineno = lasti2lineno(tb.tb_frame.f_code, tb.tb_lasti)
206
+ self.tb_lineno[tb.tb_frame] = lineno
207
+ tb = tb.tb_next
208
+ self.curframe = self.stack[self.curindex][0]
209
+ # The f_locals dictionary is updated from the actual frame
210
+ # locals whenever the .f_locals accessor is called, so we
211
+ # cache it here to ensure that modifications are not overwritten.
212
+ self.curframe_locals = self.curframe.f_locals
213
+ return self.execRcLines()
214
+
215
+ # Can be executed earlier than 'setup' if desired
216
+ def execRcLines(self):
217
+ if not self.rcLines:
218
+ return
219
+ # local copy because of recursion
220
+ rcLines = self.rcLines
221
+ rcLines.reverse()
222
+ # execute every line only once
223
+ self.rcLines = []
224
+ while rcLines:
225
+ line = rcLines.pop().strip()
226
+ if line and line[0] != '#':
227
+ if self.onecmd(line):
228
+ # if onecmd returns True, the command wants to exit
229
+ # from the interaction, save leftover rc lines
230
+ # to execute before next interaction
231
+ self.rcLines += reversed(rcLines)
232
+ return True
233
+
234
+ # Override Bdb methods
235
+
236
+ def user_call(self, frame, argument_list):
237
+ """This method is called when there is the remote possibility
238
+ that we ever need to stop in this function."""
239
+ if self._wait_for_mainpyfile:
240
+ return
241
+ if self.stop_here(frame):
242
+ self.message('--Call--')
243
+ self.interaction(frame, None)
244
+
245
+ def user_line(self, frame):
246
+ """This function is called when we stop or break at this line."""
247
+ if self._wait_for_mainpyfile:
248
+ if (self.mainpyfile != self.canonic(frame.f_code.co_filename)
249
+ or frame.f_lineno <= 0):
250
+ return
251
+ self._wait_for_mainpyfile = False
252
+ if self.bp_commands(frame):
253
+ self.interaction(frame, None)
254
+
255
+ def bp_commands(self, frame):
256
+ """Call every command that was set for the current active breakpoint
257
+ (if there is one).
258
+
259
+ Returns True if the normal interaction function must be called,
260
+ False otherwise."""
261
+ # self.currentbp is set in bdb in Bdb.break_here if a breakpoint was hit
262
+ if getattr(self, "currentbp", False) and \
263
+ self.currentbp in self.commands:
264
+ currentbp = self.currentbp
265
+ self.currentbp = 0
266
+ lastcmd_back = self.lastcmd
267
+ self.setup(frame, None)
268
+ for line in self.commands[currentbp]:
269
+ self.onecmd(line)
270
+ self.lastcmd = lastcmd_back
271
+ if not self.commands_silent[currentbp]:
272
+ self.print_stack_entry(self.stack[self.curindex])
273
+ if self.commands_doprompt[currentbp]:
274
+ self._cmdloop()
275
+ self.forget()
276
+ return
277
+ return 1
278
+
279
+ def user_return(self, frame, return_value):
280
+ """This function is called when a return trap is set here."""
281
+ if self._wait_for_mainpyfile:
282
+ return
283
+ frame.f_locals['__return__'] = return_value
284
+ self.message('--Return--')
285
+ self.interaction(frame, None)
286
+
287
+ def user_exception(self, frame, exc_info):
288
+ """This function is called if an exception occurs,
289
+ but only if we are to stop at or just below this level."""
290
+ if self._wait_for_mainpyfile:
291
+ return
292
+ exc_type, exc_value, exc_traceback = exc_info
293
+ frame.f_locals['__exception__'] = exc_type, exc_value
294
+
295
+ # An 'Internal StopIteration' exception is an exception debug event
296
+ # issued by the interpreter when handling a subgenerator run with
297
+ # 'yield from' or a generator controlled by a for loop. No exception has
298
+ # actually occurred in this case. The debugger uses this debug event to
299
+ # stop when the debuggee is returning from such generators.
300
+ prefix = 'Internal ' if (not exc_traceback
301
+ and exc_type is StopIteration) else ''
302
+ self.message('%s%s' % (prefix,
303
+ traceback.format_exception_only(exc_type, exc_value)[-1].strip()))
304
+ self.interaction(frame, exc_traceback)
305
+
306
+ # General interaction function
307
+ def _cmdloop(self):
308
+ while True:
309
+ try:
310
+ # keyboard interrupts allow for an easy way to cancel
311
+ # the current command, so allow them during interactive input
312
+ self.allow_kbdint = True
313
+ self.cmdloop()
314
+ self.allow_kbdint = False
315
+ break
316
+ except KeyboardInterrupt:
317
+ self.message('--KeyboardInterrupt--')
318
+
319
+ # Called before loop, handles display expressions
320
+ def preloop(self):
321
+ displaying = self.displaying.get(self.curframe)
322
+ if displaying:
323
+ for expr, oldvalue in displaying.items():
324
+ newvalue = self._getval_except(expr)
325
+ # check for identity first; this prevents custom __eq__ to
326
+ # be called at every loop, and also prevents instances whose
327
+ # fields are changed to be displayed
328
+ if newvalue is not oldvalue and newvalue != oldvalue:
329
+ displaying[expr] = newvalue
330
+ self.message('display %s: %r [old: %r]' %
331
+ (expr, newvalue, oldvalue))
332
+
333
+ def interaction(self, frame, traceback):
334
+ # Restore the previous signal handler at the Pdb prompt.
335
+ if Pdb._previous_sigint_handler:
336
+ try:
337
+ signal.signal(signal.SIGINT, Pdb._previous_sigint_handler)
338
+ except ValueError: # ValueError: signal only works in main thread
339
+ pass
340
+ else:
341
+ Pdb._previous_sigint_handler = None
342
+ if self.setup(frame, traceback):
343
+ # no interaction desired at this time (happens if .pdbrc contains
344
+ # a command like "continue")
345
+ self.forget()
346
+ return
347
+ self.print_stack_entry(self.stack[self.curindex])
348
+ self._cmdloop()
349
+ self.forget()
350
+
351
+ def displayhook(self, obj):
352
+ """Custom displayhook for the exec in default(), which prevents
353
+ assignment of the _ variable in the builtins.
354
+ """
355
+ # reproduce the behavior of the standard displayhook, not printing None
356
+ if obj is not None:
357
+ self.message(repr(obj))
358
+
359
+ def default(self, line):
360
+ if line[:1] == '!': line = line[1:]
361
+ locals = self.curframe_locals
362
+ globals = self.curframe.f_globals
363
+ try:
364
+ code = compile(line + '\n', '<stdin>', 'single')
365
+ save_stdout = sys.stdout
366
+ save_stdin = sys.stdin
367
+ save_displayhook = sys.displayhook
368
+ try:
369
+ sys.stdin = self.stdin
370
+ sys.stdout = self.stdout
371
+ sys.displayhook = self.displayhook
372
+ exec(code, globals, locals)
373
+ finally:
374
+ sys.stdout = save_stdout
375
+ sys.stdin = save_stdin
376
+ sys.displayhook = save_displayhook
377
+ except:
378
+ self._error_exc()
379
+
380
+ def precmd(self, line):
381
+ """Handle alias expansion and ';;' separator."""
382
+ if not line.strip():
383
+ return line
384
+ args = line.split()
385
+ while args[0] in self.aliases:
386
+ line = self.aliases[args[0]]
387
+ ii = 1
388
+ for tmpArg in args[1:]:
389
+ line = line.replace("%" + str(ii),
390
+ tmpArg)
391
+ ii += 1
392
+ line = line.replace("%*", ' '.join(args[1:]))
393
+ args = line.split()
394
+ # split into ';;' separated commands
395
+ # unless it's an alias command
396
+ if args[0] != 'alias':
397
+ marker = line.find(';;')
398
+ if marker >= 0:
399
+ # queue up everything after marker
400
+ next = line[marker+2:].lstrip()
401
+ self.cmdqueue.append(next)
402
+ line = line[:marker].rstrip()
403
+ return line
404
+
405
+ def onecmd(self, line):
406
+ """Interpret the argument as though it had been typed in response
407
+ to the prompt.
408
+
409
+ Checks whether this line is typed at the normal prompt or in
410
+ a breakpoint command list definition.
411
+ """
412
+ if not self.commands_defining:
413
+ return cmd.Cmd.onecmd(self, line)
414
+ else:
415
+ return self.handle_command_def(line)
416
+
417
+ def handle_command_def(self, line):
418
+ """Handles one command line during command list definition."""
419
+ cmd, arg, line = self.parseline(line)
420
+ if not cmd:
421
+ return
422
+ if cmd == 'silent':
423
+ self.commands_silent[self.commands_bnum] = True
424
+ return # continue to handle other cmd def in the cmd list
425
+ elif cmd == 'end':
426
+ self.cmdqueue = []
427
+ return 1 # end of cmd list
428
+ cmdlist = self.commands[self.commands_bnum]
429
+ if arg:
430
+ cmdlist.append(cmd+' '+arg)
431
+ else:
432
+ cmdlist.append(cmd)
433
+ # Determine if we must stop
434
+ try:
435
+ func = getattr(self, 'do_' + cmd)
436
+ except AttributeError:
437
+ func = self.default
438
+ # one of the resuming commands
439
+ if func.__name__ in self.commands_resuming:
440
+ self.commands_doprompt[self.commands_bnum] = False
441
+ self.cmdqueue = []
442
+ return 1
443
+ return
444
+
445
+ # interface abstraction functions
446
+
447
+ def message(self, msg):
448
+ print(msg, file=self.stdout)
449
+
450
+ def error(self, msg):
451
+ print('***', msg, file=self.stdout)
452
+
453
+ # Generic completion functions. Individual complete_foo methods can be
454
+ # assigned below to one of these functions.
455
+
456
+ def _complete_location(self, text, line, begidx, endidx):
457
+ # Complete a file/module/function location for break/tbreak/clear.
458
+ if line.strip().endswith((':', ',')):
459
+ # Here comes a line number or a condition which we can't complete.
460
+ return []
461
+ # First, try to find matching functions (i.e. expressions).
462
+ try:
463
+ ret = self._complete_expression(text, line, begidx, endidx)
464
+ except Exception:
465
+ ret = []
466
+ # Then, try to complete file names as well.
467
+ globs = glob.glob(glob.escape(text) + '*')
468
+ for fn in globs:
469
+ if os.path.isdir(fn):
470
+ ret.append(fn + '/')
471
+ elif os.path.isfile(fn) and fn.lower().endswith(('.py', '.pyw')):
472
+ ret.append(fn + ':')
473
+ return ret
474
+
475
+ def _complete_bpnumber(self, text, line, begidx, endidx):
476
+ # Complete a breakpoint number. (This would be more helpful if we could
477
+ # display additional info along with the completions, such as file/line
478
+ # of the breakpoint.)
479
+ return [str(i) for i, bp in enumerate(bdb.Breakpoint.bpbynumber)
480
+ if bp is not None and str(i).startswith(text)]
481
+
482
+ def _complete_expression(self, text, line, begidx, endidx):
483
+ # Complete an arbitrary expression.
484
+ if not self.curframe:
485
+ return []
486
+ # Collect globals and locals. It is usually not really sensible to also
487
+ # complete builtins, and they clutter the namespace quite heavily, so we
488
+ # leave them out.
489
+ ns = {**self.curframe.f_globals, **self.curframe_locals}
490
+ if '.' in text:
491
+ # Walk an attribute chain up to the last part, similar to what
492
+ # rlcompleter does. This will bail if any of the parts are not
493
+ # simple attribute access, which is what we want.
494
+ dotted = text.split('.')
495
+ try:
496
+ obj = ns[dotted[0]]
497
+ for part in dotted[1:-1]:
498
+ obj = getattr(obj, part)
499
+ except (KeyError, AttributeError):
500
+ return []
501
+ prefix = '.'.join(dotted[:-1]) + '.'
502
+ return [prefix + n for n in dir(obj) if n.startswith(dotted[-1])]
503
+ else:
504
+ # Complete a simple name.
505
+ return [n for n in ns.keys() if n.startswith(text)]
506
+
507
+ # Command definitions, called by cmdloop()
508
+ # The argument is the remaining string on the command line
509
+ # Return true to exit from the command loop
510
+
511
+ def do_commands(self, arg):
512
+ """commands [bpnumber]
513
+ (com) ...
514
+ (com) end
515
+ (Pdb)
516
+
517
+ Specify a list of commands for breakpoint number bpnumber.
518
+ The commands themselves are entered on the following lines.
519
+ Type a line containing just 'end' to terminate the commands.
520
+ The commands are executed when the breakpoint is hit.
521
+
522
+ To remove all commands from a breakpoint, type commands and
523
+ follow it immediately with end; that is, give no commands.
524
+
525
+ With no bpnumber argument, commands refers to the last
526
+ breakpoint set.
527
+
528
+ You can use breakpoint commands to start your program up
529
+ again. Simply use the continue command, or step, or any other
530
+ command that resumes execution.
531
+
532
+ Specifying any command resuming execution (currently continue,
533
+ step, next, return, jump, quit and their abbreviations)
534
+ terminates the command list (as if that command was
535
+ immediately followed by end). This is because any time you
536
+ resume execution (even with a simple next or step), you may
537
+ encounter another breakpoint -- which could have its own
538
+ command list, leading to ambiguities about which list to
539
+ execute.
540
+
541
+ If you use the 'silent' command in the command list, the usual
542
+ message about stopping at a breakpoint is not printed. This
543
+ may be desirable for breakpoints that are to print a specific
544
+ message and then continue. If none of the other commands
545
+ print anything, you will see no sign that the breakpoint was
546
+ reached.
547
+ """
548
+ if not arg:
549
+ bnum = len(bdb.Breakpoint.bpbynumber) - 1
550
+ else:
551
+ try:
552
+ bnum = int(arg)
553
+ except:
554
+ self.error("Usage: commands [bnum]\n ...\n end")
555
+ return
556
+ self.commands_bnum = bnum
557
+ # Save old definitions for the case of a keyboard interrupt.
558
+ if bnum in self.commands:
559
+ old_command_defs = (self.commands[bnum],
560
+ self.commands_doprompt[bnum],
561
+ self.commands_silent[bnum])
562
+ else:
563
+ old_command_defs = None
564
+ self.commands[bnum] = []
565
+ self.commands_doprompt[bnum] = True
566
+ self.commands_silent[bnum] = False
567
+
568
+ prompt_back = self.prompt
569
+ self.prompt = '(com) '
570
+ self.commands_defining = True
571
+ try:
572
+ self.cmdloop()
573
+ except KeyboardInterrupt:
574
+ # Restore old definitions.
575
+ if old_command_defs:
576
+ self.commands[bnum] = old_command_defs[0]
577
+ self.commands_doprompt[bnum] = old_command_defs[1]
578
+ self.commands_silent[bnum] = old_command_defs[2]
579
+ else:
580
+ del self.commands[bnum]
581
+ del self.commands_doprompt[bnum]
582
+ del self.commands_silent[bnum]
583
+ self.error('command definition aborted, old commands restored')
584
+ finally:
585
+ self.commands_defining = False
586
+ self.prompt = prompt_back
587
+
588
+ complete_commands = _complete_bpnumber
589
+
590
+ def do_break(self, arg, temporary = 0):
591
+ """b(reak) [ ([filename:]lineno | function) [, condition] ]
592
+ Without argument, list all breaks.
593
+
594
+ With a line number argument, set a break at this line in the
595
+ current file. With a function name, set a break at the first
596
+ executable line of that function. If a second argument is
597
+ present, it is a string specifying an expression which must
598
+ evaluate to true before the breakpoint is honored.
599
+
600
+ The line number may be prefixed with a filename and a colon,
601
+ to specify a breakpoint in another file (probably one that
602
+ hasn't been loaded yet). The file is searched for on
603
+ sys.path; the .py suffix may be omitted.
604
+ """
605
+ if not arg:
606
+ if self.breaks: # There's at least one
607
+ self.message("Num Type Disp Enb Where")
608
+ for bp in bdb.Breakpoint.bpbynumber:
609
+ if bp:
610
+ self.message(bp.bpformat())
611
+ return
612
+ # parse arguments; comma has lowest precedence
613
+ # and cannot occur in filename
614
+ filename = None
615
+ lineno = None
616
+ cond = None
617
+ comma = arg.find(',')
618
+ if comma > 0:
619
+ # parse stuff after comma: "condition"
620
+ cond = arg[comma+1:].lstrip()
621
+ arg = arg[:comma].rstrip()
622
+ # parse stuff before comma: [filename:]lineno | function
623
+ colon = arg.rfind(':')
624
+ funcname = None
625
+ if colon >= 0:
626
+ filename = arg[:colon].rstrip()
627
+ f = self.lookupmodule(filename)
628
+ if not f:
629
+ self.error('%r not found from sys.path' % filename)
630
+ return
631
+ else:
632
+ filename = f
633
+ arg = arg[colon+1:].lstrip()
634
+ try:
635
+ lineno = int(arg)
636
+ except ValueError:
637
+ self.error('Bad lineno: %s' % arg)
638
+ return
639
+ else:
640
+ # no colon; can be lineno or function
641
+ try:
642
+ lineno = int(arg)
643
+ except ValueError:
644
+ try:
645
+ func = eval(arg,
646
+ self.curframe.f_globals,
647
+ self.curframe_locals)
648
+ except:
649
+ func = arg
650
+ try:
651
+ if hasattr(func, '__func__'):
652
+ func = func.__func__
653
+ code = func.__code__
654
+ #use co_name to identify the bkpt (function names
655
+ #could be aliased, but co_name is invariant)
656
+ funcname = code.co_name
657
+ lineno = code.co_firstlineno
658
+ filename = code.co_filename
659
+ except:
660
+ # last thing to try
661
+ (ok, filename, ln) = self.lineinfo(arg)
662
+ if not ok:
663
+ self.error('The specified object %r is not a function '
664
+ 'or was not found along sys.path.' % arg)
665
+ return
666
+ funcname = ok # ok contains a function name
667
+ lineno = int(ln)
668
+ if not filename:
669
+ filename = self.defaultFile()
670
+ # Check for reasonable breakpoint
671
+ line = self.checkline(filename, lineno)
672
+ if line:
673
+ # now set the break point
674
+ err = self.set_break(filename, line, temporary, cond, funcname)
675
+ if err:
676
+ self.error(err)
677
+ else:
678
+ bp = self.get_breaks(filename, line)[-1]
679
+ self.message("Breakpoint %d at %s:%d" %
680
+ (bp.number, bp.file, bp.line))
681
+
682
+ # To be overridden in derived debuggers
683
+ def defaultFile(self):
684
+ """Produce a reasonable default."""
685
+ filename = self.curframe.f_code.co_filename
686
+ if filename == '<string>' and self.mainpyfile:
687
+ filename = self.mainpyfile
688
+ return filename
689
+
690
+ do_b = do_break
691
+
692
+ complete_break = _complete_location
693
+ complete_b = _complete_location
694
+
695
+ def do_tbreak(self, arg):
696
+ """tbreak [ ([filename:]lineno | function) [, condition] ]
697
+ Same arguments as break, but sets a temporary breakpoint: it
698
+ is automatically deleted when first hit.
699
+ """
700
+ self.do_break(arg, 1)
701
+
702
+ complete_tbreak = _complete_location
703
+
704
+ def lineinfo(self, identifier):
705
+ failed = (None, None, None)
706
+ # Input is identifier, may be in single quotes
707
+ idstring = identifier.split("'")
708
+ if len(idstring) == 1:
709
+ # not in single quotes
710
+ id = idstring[0].strip()
711
+ elif len(idstring) == 3:
712
+ # quoted
713
+ id = idstring[1].strip()
714
+ else:
715
+ return failed
716
+ if id == '': return failed
717
+ parts = id.split('.')
718
+ # Protection for derived debuggers
719
+ if parts[0] == 'self':
720
+ del parts[0]
721
+ if len(parts) == 0:
722
+ return failed
723
+ # Best first guess at file to look at
724
+ fname = self.defaultFile()
725
+ if len(parts) == 1:
726
+ item = parts[0]
727
+ else:
728
+ # More than one part.
729
+ # First is module, second is method/class
730
+ f = self.lookupmodule(parts[0])
731
+ if f:
732
+ fname = f
733
+ item = parts[1]
734
+ answer = find_function(item, fname)
735
+ return answer or failed
736
+
737
+ def checkline(self, filename, lineno):
738
+ """Check whether specified line seems to be executable.
739
+
740
+ Return `lineno` if it is, 0 if not (e.g. a docstring, comment, blank
741
+ line or EOF). Warning: testing is not comprehensive.
742
+ """
743
+ # this method should be callable before starting debugging, so default
744
+ # to "no globals" if there is no current frame
745
+ frame = getattr(self, 'curframe', None)
746
+ globs = frame.f_globals if frame else None
747
+ line = linecache.getline(filename, lineno, globs)
748
+ if not line:
749
+ self.message('End of file')
750
+ return 0
751
+ line = line.strip()
752
+ # Don't allow setting breakpoint at a blank line
753
+ if (not line or (line[0] == '#') or
754
+ (line[:3] == '"""') or line[:3] == "'''"):
755
+ self.error('Blank or comment')
756
+ return 0
757
+ return lineno
758
+
759
+ def do_enable(self, arg):
760
+ """enable bpnumber [bpnumber ...]
761
+ Enables the breakpoints given as a space separated list of
762
+ breakpoint numbers.
763
+ """
764
+ args = arg.split()
765
+ for i in args:
766
+ try:
767
+ bp = self.get_bpbynumber(i)
768
+ except ValueError as err:
769
+ self.error(err)
770
+ else:
771
+ bp.enable()
772
+ self.message('Enabled %s' % bp)
773
+
774
+ complete_enable = _complete_bpnumber
775
+
776
+ def do_disable(self, arg):
777
+ """disable bpnumber [bpnumber ...]
778
+ Disables the breakpoints given as a space separated list of
779
+ breakpoint numbers. Disabling a breakpoint means it cannot
780
+ cause the program to stop execution, but unlike clearing a
781
+ breakpoint, it remains in the list of breakpoints and can be
782
+ (re-)enabled.
783
+ """
784
+ args = arg.split()
785
+ for i in args:
786
+ try:
787
+ bp = self.get_bpbynumber(i)
788
+ except ValueError as err:
789
+ self.error(err)
790
+ else:
791
+ bp.disable()
792
+ self.message('Disabled %s' % bp)
793
+
794
+ complete_disable = _complete_bpnumber
795
+
796
+ def do_condition(self, arg):
797
+ """condition bpnumber [condition]
798
+ Set a new condition for the breakpoint, an expression which
799
+ must evaluate to true before the breakpoint is honored. If
800
+ condition is absent, any existing condition is removed; i.e.,
801
+ the breakpoint is made unconditional.
802
+ """
803
+ args = arg.split(' ', 1)
804
+ try:
805
+ cond = args[1]
806
+ except IndexError:
807
+ cond = None
808
+ try:
809
+ bp = self.get_bpbynumber(args[0].strip())
810
+ except IndexError:
811
+ self.error('Breakpoint number expected')
812
+ except ValueError as err:
813
+ self.error(err)
814
+ else:
815
+ bp.cond = cond
816
+ if not cond:
817
+ self.message('Breakpoint %d is now unconditional.' % bp.number)
818
+ else:
819
+ self.message('New condition set for breakpoint %d.' % bp.number)
820
+
821
+ complete_condition = _complete_bpnumber
822
+
823
+ def do_ignore(self, arg):
824
+ """ignore bpnumber [count]
825
+ Set the ignore count for the given breakpoint number. If
826
+ count is omitted, the ignore count is set to 0. A breakpoint
827
+ becomes active when the ignore count is zero. When non-zero,
828
+ the count is decremented each time the breakpoint is reached
829
+ and the breakpoint is not disabled and any associated
830
+ condition evaluates to true.
831
+ """
832
+ args = arg.split()
833
+ try:
834
+ count = int(args[1].strip())
835
+ except:
836
+ count = 0
837
+ try:
838
+ bp = self.get_bpbynumber(args[0].strip())
839
+ except IndexError:
840
+ self.error('Breakpoint number expected')
841
+ except ValueError as err:
842
+ self.error(err)
843
+ else:
844
+ bp.ignore = count
845
+ if count > 0:
846
+ if count > 1:
847
+ countstr = '%d crossings' % count
848
+ else:
849
+ countstr = '1 crossing'
850
+ self.message('Will ignore next %s of breakpoint %d.' %
851
+ (countstr, bp.number))
852
+ else:
853
+ self.message('Will stop next time breakpoint %d is reached.'
854
+ % bp.number)
855
+
856
+ complete_ignore = _complete_bpnumber
857
+
858
+ def do_clear(self, arg):
859
+ """cl(ear) filename:lineno\ncl(ear) [bpnumber [bpnumber...]]
860
+ With a space separated list of breakpoint numbers, clear
861
+ those breakpoints. Without argument, clear all breaks (but
862
+ first ask confirmation). With a filename:lineno argument,
863
+ clear all breaks at that line in that file.
864
+ """
865
+ if not arg:
866
+ try:
867
+ reply = input('Clear all breaks? ')
868
+ except EOFError:
869
+ reply = 'no'
870
+ reply = reply.strip().lower()
871
+ if reply in ('y', 'yes'):
872
+ bplist = [bp for bp in bdb.Breakpoint.bpbynumber if bp]
873
+ self.clear_all_breaks()
874
+ for bp in bplist:
875
+ self.message('Deleted %s' % bp)
876
+ return
877
+ if ':' in arg:
878
+ # Make sure it works for "clear C:\foo\bar.py:12"
879
+ i = arg.rfind(':')
880
+ filename = arg[:i]
881
+ arg = arg[i+1:]
882
+ try:
883
+ lineno = int(arg)
884
+ except ValueError:
885
+ err = "Invalid line number (%s)" % arg
886
+ else:
887
+ bplist = self.get_breaks(filename, lineno)[:]
888
+ err = self.clear_break(filename, lineno)
889
+ if err:
890
+ self.error(err)
891
+ else:
892
+ for bp in bplist:
893
+ self.message('Deleted %s' % bp)
894
+ return
895
+ numberlist = arg.split()
896
+ for i in numberlist:
897
+ try:
898
+ bp = self.get_bpbynumber(i)
899
+ except ValueError as err:
900
+ self.error(err)
901
+ else:
902
+ self.clear_bpbynumber(i)
903
+ self.message('Deleted %s' % bp)
904
+ do_cl = do_clear # 'c' is already an abbreviation for 'continue'
905
+
906
+ complete_clear = _complete_location
907
+ complete_cl = _complete_location
908
+
909
+ def do_where(self, arg):
910
+ """w(here)
911
+ Print a stack trace, with the most recent frame at the bottom.
912
+ An arrow indicates the "current frame", which determines the
913
+ context of most commands. 'bt' is an alias for this command.
914
+ """
915
+ self.print_stack_trace()
916
+ do_w = do_where
917
+ do_bt = do_where
918
+
919
+ def _select_frame(self, number):
920
+ assert 0 <= number < len(self.stack)
921
+ self.curindex = number
922
+ self.curframe = self.stack[self.curindex][0]
923
+ self.curframe_locals = self.curframe.f_locals
924
+ self.print_stack_entry(self.stack[self.curindex])
925
+ self.lineno = None
926
+
927
+ def do_up(self, arg):
928
+ """u(p) [count]
929
+ Move the current frame count (default one) levels up in the
930
+ stack trace (to an older frame).
931
+ """
932
+ if self.curindex == 0:
933
+ self.error('Oldest frame')
934
+ return
935
+ try:
936
+ count = int(arg or 1)
937
+ except ValueError:
938
+ self.error('Invalid frame count (%s)' % arg)
939
+ return
940
+ if count < 0:
941
+ newframe = 0
942
+ else:
943
+ newframe = max(0, self.curindex - count)
944
+ self._select_frame(newframe)
945
+ do_u = do_up
946
+
947
+ def do_down(self, arg):
948
+ """d(own) [count]
949
+ Move the current frame count (default one) levels down in the
950
+ stack trace (to a newer frame).
951
+ """
952
+ if self.curindex + 1 == len(self.stack):
953
+ self.error('Newest frame')
954
+ return
955
+ try:
956
+ count = int(arg or 1)
957
+ except ValueError:
958
+ self.error('Invalid frame count (%s)' % arg)
959
+ return
960
+ if count < 0:
961
+ newframe = len(self.stack) - 1
962
+ else:
963
+ newframe = min(len(self.stack) - 1, self.curindex + count)
964
+ self._select_frame(newframe)
965
+ do_d = do_down
966
+
967
+ def do_until(self, arg):
968
+ """unt(il) [lineno]
969
+ Without argument, continue execution until the line with a
970
+ number greater than the current one is reached. With a line
971
+ number, continue execution until a line with a number greater
972
+ or equal to that is reached. In both cases, also stop when
973
+ the current frame returns.
974
+ """
975
+ if arg:
976
+ try:
977
+ lineno = int(arg)
978
+ except ValueError:
979
+ self.error('Error in argument: %r' % arg)
980
+ return
981
+ if lineno <= self.curframe.f_lineno:
982
+ self.error('"until" line number is smaller than current '
983
+ 'line number')
984
+ return
985
+ else:
986
+ lineno = None
987
+ self.set_until(self.curframe, lineno)
988
+ return 1
989
+ do_unt = do_until
990
+
991
+ def do_step(self, arg):
992
+ """s(tep)
993
+ Execute the current line, stop at the first possible occasion
994
+ (either in a function that is called or in the current
995
+ function).
996
+ """
997
+ self.set_step()
998
+ return 1
999
+ do_s = do_step
1000
+
1001
+ def do_next(self, arg):
1002
+ """n(ext)
1003
+ Continue execution until the next line in the current function
1004
+ is reached or it returns.
1005
+ """
1006
+ self.set_next(self.curframe)
1007
+ return 1
1008
+ do_n = do_next
1009
+
1010
+ def do_run(self, arg):
1011
+ """run [args...]
1012
+ Restart the debugged python program. If a string is supplied
1013
+ it is split with "shlex", and the result is used as the new
1014
+ sys.argv. History, breakpoints, actions and debugger options
1015
+ are preserved. "restart" is an alias for "run".
1016
+ """
1017
+ if arg:
1018
+ import shlex
1019
+ argv0 = sys.argv[0:1]
1020
+ try:
1021
+ sys.argv = shlex.split(arg)
1022
+ except ValueError as e:
1023
+ self.error('Cannot run %s: %s' % (arg, e))
1024
+ return
1025
+ sys.argv[:0] = argv0
1026
+ # this is caught in the main debugger loop
1027
+ raise Restart
1028
+
1029
+ do_restart = do_run
1030
+
1031
+ def do_return(self, arg):
1032
+ """r(eturn)
1033
+ Continue execution until the current function returns.
1034
+ """
1035
+ self.set_return(self.curframe)
1036
+ return 1
1037
+ do_r = do_return
1038
+
1039
+ def do_continue(self, arg):
1040
+ """c(ont(inue))
1041
+ Continue execution, only stop when a breakpoint is encountered.
1042
+ """
1043
+ if not self.nosigint:
1044
+ try:
1045
+ Pdb._previous_sigint_handler = \
1046
+ signal.signal(signal.SIGINT, self.sigint_handler)
1047
+ except ValueError:
1048
+ # ValueError happens when do_continue() is invoked from
1049
+ # a non-main thread in which case we just continue without
1050
+ # SIGINT set. Would printing a message here (once) make
1051
+ # sense?
1052
+ pass
1053
+ self.set_continue()
1054
+ return 1
1055
+ do_c = do_cont = do_continue
1056
+
1057
+ def do_jump(self, arg):
1058
+ """j(ump) lineno
1059
+ Set the next line that will be executed. Only available in
1060
+ the bottom-most frame. This lets you jump back and execute
1061
+ code again, or jump forward to skip code that you don't want
1062
+ to run.
1063
+
1064
+ It should be noted that not all jumps are allowed -- for
1065
+ instance it is not possible to jump into the middle of a
1066
+ for loop or out of a finally clause.
1067
+ """
1068
+ if self.curindex + 1 != len(self.stack):
1069
+ self.error('You can only jump within the bottom frame')
1070
+ return
1071
+ try:
1072
+ arg = int(arg)
1073
+ except ValueError:
1074
+ self.error("The 'jump' command requires a line number")
1075
+ else:
1076
+ try:
1077
+ # Do the jump, fix up our copy of the stack, and display the
1078
+ # new position
1079
+ self.curframe.f_lineno = arg
1080
+ self.stack[self.curindex] = self.stack[self.curindex][0], arg
1081
+ self.print_stack_entry(self.stack[self.curindex])
1082
+ except ValueError as e:
1083
+ self.error('Jump failed: %s' % e)
1084
+ do_j = do_jump
1085
+
1086
+ def do_debug(self, arg):
1087
+ """debug code
1088
+ Enter a recursive debugger that steps through the code
1089
+ argument (which is an arbitrary expression or statement to be
1090
+ executed in the current environment).
1091
+ """
1092
+ sys.settrace(None)
1093
+ globals = self.curframe.f_globals
1094
+ locals = self.curframe_locals
1095
+ p = Pdb(self.completekey, self.stdin, self.stdout)
1096
+ p.prompt = "(%s) " % self.prompt.strip()
1097
+ self.message("ENTERING RECURSIVE DEBUGGER")
1098
+ try:
1099
+ sys.call_tracing(p.run, (arg, globals, locals))
1100
+ except Exception:
1101
+ self._error_exc()
1102
+ self.message("LEAVING RECURSIVE DEBUGGER")
1103
+ sys.settrace(self.trace_dispatch)
1104
+ self.lastcmd = p.lastcmd
1105
+
1106
+ complete_debug = _complete_expression
1107
+
1108
+ def do_quit(self, arg):
1109
+ """q(uit)\nexit
1110
+ Quit from the debugger. The program being executed is aborted.
1111
+ """
1112
+ self._user_requested_quit = True
1113
+ self.set_quit()
1114
+ return 1
1115
+
1116
+ do_q = do_quit
1117
+ do_exit = do_quit
1118
+
1119
+ def do_EOF(self, arg):
1120
+ """EOF
1121
+ Handles the receipt of EOF as a command.
1122
+ """
1123
+ self.message('')
1124
+ self._user_requested_quit = True
1125
+ self.set_quit()
1126
+ return 1
1127
+
1128
+ def do_args(self, arg):
1129
+ """a(rgs)
1130
+ Print the argument list of the current function.
1131
+ """
1132
+ co = self.curframe.f_code
1133
+ dict = self.curframe_locals
1134
+ n = co.co_argcount + co.co_kwonlyargcount
1135
+ if co.co_flags & inspect.CO_VARARGS: n = n+1
1136
+ if co.co_flags & inspect.CO_VARKEYWORDS: n = n+1
1137
+ for i in range(n):
1138
+ name = co.co_varnames[i]
1139
+ if name in dict:
1140
+ self.message('%s = %r' % (name, dict[name]))
1141
+ else:
1142
+ self.message('%s = *** undefined ***' % (name,))
1143
+ do_a = do_args
1144
+
1145
+ def do_retval(self, arg):
1146
+ """retval
1147
+ Print the return value for the last return of a function.
1148
+ """
1149
+ if '__return__' in self.curframe_locals:
1150
+ self.message(repr(self.curframe_locals['__return__']))
1151
+ else:
1152
+ self.error('Not yet returned!')
1153
+ do_rv = do_retval
1154
+
1155
+ def _getval(self, arg):
1156
+ try:
1157
+ return eval(arg, self.curframe.f_globals, self.curframe_locals)
1158
+ except:
1159
+ self._error_exc()
1160
+ raise
1161
+
1162
+ def _getval_except(self, arg, frame=None):
1163
+ try:
1164
+ if frame is None:
1165
+ return eval(arg, self.curframe.f_globals, self.curframe_locals)
1166
+ else:
1167
+ return eval(arg, frame.f_globals, frame.f_locals)
1168
+ except:
1169
+ exc_info = sys.exc_info()[:2]
1170
+ err = traceback.format_exception_only(*exc_info)[-1].strip()
1171
+ return _rstr('** raised %s **' % err)
1172
+
1173
+ def _error_exc(self):
1174
+ exc_info = sys.exc_info()[:2]
1175
+ self.error(traceback.format_exception_only(*exc_info)[-1].strip())
1176
+
1177
+ def _msg_val_func(self, arg, func):
1178
+ try:
1179
+ val = self._getval(arg)
1180
+ except:
1181
+ return # _getval() has displayed the error
1182
+ try:
1183
+ self.message(func(val))
1184
+ except:
1185
+ self._error_exc()
1186
+
1187
+ def do_p(self, arg):
1188
+ """p expression
1189
+ Print the value of the expression.
1190
+ """
1191
+ self._msg_val_func(arg, repr)
1192
+
1193
+ def do_pp(self, arg):
1194
+ """pp expression
1195
+ Pretty-print the value of the expression.
1196
+ """
1197
+ self._msg_val_func(arg, pprint.pformat)
1198
+
1199
+ complete_print = _complete_expression
1200
+ complete_p = _complete_expression
1201
+ complete_pp = _complete_expression
1202
+
1203
+ def do_list(self, arg):
1204
+ """l(ist) [first [,last] | .]
1205
+
1206
+ List source code for the current file. Without arguments,
1207
+ list 11 lines around the current line or continue the previous
1208
+ listing. With . as argument, list 11 lines around the current
1209
+ line. With one argument, list 11 lines starting at that line.
1210
+ With two arguments, list the given range; if the second
1211
+ argument is less than the first, it is a count.
1212
+
1213
+ The current line in the current frame is indicated by "->".
1214
+ If an exception is being debugged, the line where the
1215
+ exception was originally raised or propagated is indicated by
1216
+ ">>", if it differs from the current line.
1217
+ """
1218
+ self.lastcmd = 'list'
1219
+ last = None
1220
+ if arg and arg != '.':
1221
+ try:
1222
+ if ',' in arg:
1223
+ first, last = arg.split(',')
1224
+ first = int(first.strip())
1225
+ last = int(last.strip())
1226
+ if last < first:
1227
+ # assume it's a count
1228
+ last = first + last
1229
+ else:
1230
+ first = int(arg.strip())
1231
+ first = max(1, first - 5)
1232
+ except ValueError:
1233
+ self.error('Error in argument: %r' % arg)
1234
+ return
1235
+ elif self.lineno is None or arg == '.':
1236
+ first = max(1, self.curframe.f_lineno - 5)
1237
+ else:
1238
+ first = self.lineno + 1
1239
+ if last is None:
1240
+ last = first + 10
1241
+ filename = self.curframe.f_code.co_filename
1242
+ # gh-93696: stdlib frozen modules provide a useful __file__
1243
+ # this workaround can be removed with the closure of gh-89815
1244
+ if filename.startswith("<frozen"):
1245
+ tmp = self.curframe.f_globals.get("__file__")
1246
+ if isinstance(tmp, str):
1247
+ filename = tmp
1248
+ breaklist = self.get_file_breaks(filename)
1249
+ try:
1250
+ lines = linecache.getlines(filename, self.curframe.f_globals)
1251
+ self._print_lines(lines[first-1:last], first, breaklist,
1252
+ self.curframe)
1253
+ self.lineno = min(last, len(lines))
1254
+ if len(lines) < last:
1255
+ self.message('[EOF]')
1256
+ except KeyboardInterrupt:
1257
+ pass
1258
+ do_l = do_list
1259
+
1260
+ def do_longlist(self, arg):
1261
+ """longlist | ll
1262
+ List the whole source code for the current function or frame.
1263
+ """
1264
+ filename = self.curframe.f_code.co_filename
1265
+ breaklist = self.get_file_breaks(filename)
1266
+ try:
1267
+ lines, lineno = inspect.getsourcelines(self.curframe)
1268
+ except OSError as err:
1269
+ self.error(err)
1270
+ return
1271
+ self._print_lines(lines, lineno, breaklist, self.curframe)
1272
+ do_ll = do_longlist
1273
+
1274
+ def do_source(self, arg):
1275
+ """source expression
1276
+ Try to get source code for the given object and display it.
1277
+ """
1278
+ try:
1279
+ obj = self._getval(arg)
1280
+ except:
1281
+ return
1282
+ try:
1283
+ lines, lineno = inspect.getsourcelines(obj)
1284
+ except (OSError, TypeError) as err:
1285
+ self.error(err)
1286
+ return
1287
+ self._print_lines(lines, lineno)
1288
+
1289
+ complete_source = _complete_expression
1290
+
1291
+ def _print_lines(self, lines, start, breaks=(), frame=None):
1292
+ """Print a range of lines."""
1293
+ if frame:
1294
+ current_lineno = frame.f_lineno
1295
+ exc_lineno = self.tb_lineno.get(frame, -1)
1296
+ else:
1297
+ current_lineno = exc_lineno = -1
1298
+ for lineno, line in enumerate(lines, start):
1299
+ s = str(lineno).rjust(3)
1300
+ if len(s) < 4:
1301
+ s += ' '
1302
+ if lineno in breaks:
1303
+ s += 'B'
1304
+ else:
1305
+ s += ' '
1306
+ if lineno == current_lineno:
1307
+ s += '->'
1308
+ elif lineno == exc_lineno:
1309
+ s += '>>'
1310
+ self.message(s + '\t' + line.rstrip())
1311
+
1312
+ def do_whatis(self, arg):
1313
+ """whatis arg
1314
+ Print the type of the argument.
1315
+ """
1316
+ try:
1317
+ value = self._getval(arg)
1318
+ except:
1319
+ # _getval() already printed the error
1320
+ return
1321
+ code = None
1322
+ # Is it an instance method?
1323
+ try:
1324
+ code = value.__func__.__code__
1325
+ except Exception:
1326
+ pass
1327
+ if code:
1328
+ self.message('Method %s' % code.co_name)
1329
+ return
1330
+ # Is it a function?
1331
+ try:
1332
+ code = value.__code__
1333
+ except Exception:
1334
+ pass
1335
+ if code:
1336
+ self.message('Function %s' % code.co_name)
1337
+ return
1338
+ # Is it a class?
1339
+ if value.__class__ is type:
1340
+ self.message('Class %s.%s' % (value.__module__, value.__qualname__))
1341
+ return
1342
+ # None of the above...
1343
+ self.message(type(value))
1344
+
1345
+ complete_whatis = _complete_expression
1346
+
1347
+ def do_display(self, arg):
1348
+ """display [expression]
1349
+
1350
+ Display the value of the expression if it changed, each time execution
1351
+ stops in the current frame.
1352
+
1353
+ Without expression, list all display expressions for the current frame.
1354
+ """
1355
+ if not arg:
1356
+ self.message('Currently displaying:')
1357
+ for item in self.displaying.get(self.curframe, {}).items():
1358
+ self.message('%s: %r' % item)
1359
+ else:
1360
+ val = self._getval_except(arg)
1361
+ self.displaying.setdefault(self.curframe, {})[arg] = val
1362
+ self.message('display %s: %r' % (arg, val))
1363
+
1364
+ complete_display = _complete_expression
1365
+
1366
+ def do_undisplay(self, arg):
1367
+ """undisplay [expression]
1368
+
1369
+ Do not display the expression any more in the current frame.
1370
+
1371
+ Without expression, clear all display expressions for the current frame.
1372
+ """
1373
+ if arg:
1374
+ try:
1375
+ del self.displaying.get(self.curframe, {})[arg]
1376
+ except KeyError:
1377
+ self.error('not displaying %s' % arg)
1378
+ else:
1379
+ self.displaying.pop(self.curframe, None)
1380
+
1381
+ def complete_undisplay(self, text, line, begidx, endidx):
1382
+ return [e for e in self.displaying.get(self.curframe, {})
1383
+ if e.startswith(text)]
1384
+
1385
+ def do_interact(self, arg):
1386
+ """interact
1387
+
1388
+ Start an interactive interpreter whose global namespace
1389
+ contains all the (global and local) names found in the current scope.
1390
+ """
1391
+ ns = {**self.curframe.f_globals, **self.curframe_locals}
1392
+ code.interact("*interactive*", local=ns)
1393
+
1394
+ def do_alias(self, arg):
1395
+ """alias [name [command [parameter parameter ...] ]]
1396
+ Create an alias called 'name' that executes 'command'. The
1397
+ command must *not* be enclosed in quotes. Replaceable
1398
+ parameters can be indicated by %1, %2, and so on, while %* is
1399
+ replaced by all the parameters. If no command is given, the
1400
+ current alias for name is shown. If no name is given, all
1401
+ aliases are listed.
1402
+
1403
+ Aliases may be nested and can contain anything that can be
1404
+ legally typed at the pdb prompt. Note! You *can* override
1405
+ internal pdb commands with aliases! Those internal commands
1406
+ are then hidden until the alias is removed. Aliasing is
1407
+ recursively applied to the first word of the command line; all
1408
+ other words in the line are left alone.
1409
+
1410
+ As an example, here are two useful aliases (especially when
1411
+ placed in the .pdbrc file):
1412
+
1413
+ # Print instance variables (usage "pi classInst")
1414
+ alias pi for k in %1.__dict__.keys(): print("%1.",k,"=",%1.__dict__[k])
1415
+ # Print instance variables in self
1416
+ alias ps pi self
1417
+ """
1418
+ args = arg.split()
1419
+ if len(args) == 0:
1420
+ keys = sorted(self.aliases.keys())
1421
+ for alias in keys:
1422
+ self.message("%s = %s" % (alias, self.aliases[alias]))
1423
+ return
1424
+ if args[0] in self.aliases and len(args) == 1:
1425
+ self.message("%s = %s" % (args[0], self.aliases[args[0]]))
1426
+ else:
1427
+ self.aliases[args[0]] = ' '.join(args[1:])
1428
+
1429
+ def do_unalias(self, arg):
1430
+ """unalias name
1431
+ Delete the specified alias.
1432
+ """
1433
+ args = arg.split()
1434
+ if len(args) == 0: return
1435
+ if args[0] in self.aliases:
1436
+ del self.aliases[args[0]]
1437
+
1438
+ def complete_unalias(self, text, line, begidx, endidx):
1439
+ return [a for a in self.aliases if a.startswith(text)]
1440
+
1441
+ # List of all the commands making the program resume execution.
1442
+ commands_resuming = ['do_continue', 'do_step', 'do_next', 'do_return',
1443
+ 'do_quit', 'do_jump']
1444
+
1445
+ # Print a traceback starting at the top stack frame.
1446
+ # The most recently entered frame is printed last;
1447
+ # this is different from dbx and gdb, but consistent with
1448
+ # the Python interpreter's stack trace.
1449
+ # It is also consistent with the up/down commands (which are
1450
+ # compatible with dbx and gdb: up moves towards 'main()'
1451
+ # and down moves towards the most recent stack frame).
1452
+
1453
+ def print_stack_trace(self):
1454
+ try:
1455
+ for frame_lineno in self.stack:
1456
+ self.print_stack_entry(frame_lineno)
1457
+ except KeyboardInterrupt:
1458
+ pass
1459
+
1460
+ def print_stack_entry(self, frame_lineno, prompt_prefix=line_prefix):
1461
+ frame, lineno = frame_lineno
1462
+ if frame is self.curframe:
1463
+ prefix = '> '
1464
+ else:
1465
+ prefix = ' '
1466
+ self.message(prefix +
1467
+ self.format_stack_entry(frame_lineno, prompt_prefix))
1468
+
1469
+ # Provide help
1470
+
1471
+ def do_help(self, arg):
1472
+ """h(elp)
1473
+ Without argument, print the list of available commands.
1474
+ With a command name as argument, print help about that command.
1475
+ "help pdb" shows the full pdb documentation.
1476
+ "help exec" gives help on the ! command.
1477
+ """
1478
+ if not arg:
1479
+ return cmd.Cmd.do_help(self, arg)
1480
+ try:
1481
+ try:
1482
+ topic = getattr(self, 'help_' + arg)
1483
+ return topic()
1484
+ except AttributeError:
1485
+ command = getattr(self, 'do_' + arg)
1486
+ except AttributeError:
1487
+ self.error('No help for %r' % arg)
1488
+ else:
1489
+ if sys.flags.optimize >= 2:
1490
+ self.error('No help for %r; please do not run Python with -OO '
1491
+ 'if you need command help' % arg)
1492
+ return
1493
+ if command.__doc__ is None:
1494
+ self.error('No help for %r; __doc__ string missing' % arg)
1495
+ return
1496
+ self.message(command.__doc__.rstrip())
1497
+
1498
+ do_h = do_help
1499
+
1500
+ def help_exec(self):
1501
+ """(!) statement
1502
+ Execute the (one-line) statement in the context of the current
1503
+ stack frame. The exclamation point can be omitted unless the
1504
+ first word of the statement resembles a debugger command. To
1505
+ assign to a global variable you must always prefix the command
1506
+ with a 'global' command, e.g.:
1507
+ (Pdb) global list_options; list_options = ['-l']
1508
+ (Pdb)
1509
+ """
1510
+ self.message((self.help_exec.__doc__ or '').strip())
1511
+
1512
+ def help_pdb(self):
1513
+ help()
1514
+
1515
+ # other helper functions
1516
+
1517
+ def lookupmodule(self, filename):
1518
+ """Helper function for break/clear parsing -- may be overridden.
1519
+
1520
+ lookupmodule() translates (possibly incomplete) file or module name
1521
+ into an absolute file name.
1522
+ """
1523
+ if os.path.isabs(filename) and os.path.exists(filename):
1524
+ return filename
1525
+ f = os.path.join(sys.path[0], filename)
1526
+ if os.path.exists(f) and self.canonic(f) == self.mainpyfile:
1527
+ return f
1528
+ root, ext = os.path.splitext(filename)
1529
+ if ext == '':
1530
+ filename = filename + '.py'
1531
+ if os.path.isabs(filename):
1532
+ return filename
1533
+ for dirname in sys.path:
1534
+ while os.path.islink(dirname):
1535
+ dirname = os.readlink(dirname)
1536
+ fullname = os.path.join(dirname, filename)
1537
+ if os.path.exists(fullname):
1538
+ return fullname
1539
+ return None
1540
+
1541
+ def _runmodule(self, module_name):
1542
+ self._wait_for_mainpyfile = True
1543
+ self._user_requested_quit = False
1544
+ import runpy
1545
+ mod_name, mod_spec, code = runpy._get_module_details(module_name)
1546
+ self.mainpyfile = self.canonic(code.co_filename)
1547
+ import __main__
1548
+ __main__.__dict__.clear()
1549
+ __main__.__dict__.update({
1550
+ "__name__": "__main__",
1551
+ "__file__": self.mainpyfile,
1552
+ "__package__": mod_spec.parent,
1553
+ "__loader__": mod_spec.loader,
1554
+ "__spec__": mod_spec,
1555
+ "__builtins__": __builtins__,
1556
+ })
1557
+ self.run(code)
1558
+
1559
+ def _runscript(self, filename):
1560
+ # The script has to run in __main__ namespace (or imports from
1561
+ # __main__ will break).
1562
+ #
1563
+ # So we clear up the __main__ and set several special variables
1564
+ # (this gets rid of pdb's globals and cleans old variables on restarts).
1565
+ import __main__
1566
+ __main__.__dict__.clear()
1567
+ __main__.__dict__.update({"__name__" : "__main__",
1568
+ "__file__" : filename,
1569
+ "__builtins__": __builtins__,
1570
+ })
1571
+
1572
+ # When bdb sets tracing, a number of call and line events happens
1573
+ # BEFORE debugger even reaches user's code (and the exact sequence of
1574
+ # events depends on python version). So we take special measures to
1575
+ # avoid stopping before we reach the main script (see user_line and
1576
+ # user_call for details).
1577
+ self._wait_for_mainpyfile = True
1578
+ self.mainpyfile = self.canonic(filename)
1579
+ self._user_requested_quit = False
1580
+ with io.open_code(filename) as fp:
1581
+ statement = "exec(compile(%r, %r, 'exec'))" % \
1582
+ (fp.read(), self.mainpyfile)
1583
+ self.run(statement)
1584
+
1585
+ # Collect all command help into docstring, if not run with -OO
1586
+
1587
+ if __doc__ is not None:
1588
+ # unfortunately we can't guess this order from the class definition
1589
+ _help_order = [
1590
+ 'help', 'where', 'down', 'up', 'break', 'tbreak', 'clear', 'disable',
1591
+ 'enable', 'ignore', 'condition', 'commands', 'step', 'next', 'until',
1592
+ 'jump', 'return', 'retval', 'run', 'continue', 'list', 'longlist',
1593
+ 'args', 'p', 'pp', 'whatis', 'source', 'display', 'undisplay',
1594
+ 'interact', 'alias', 'unalias', 'debug', 'quit',
1595
+ ]
1596
+
1597
+ for _command in _help_order:
1598
+ __doc__ += getattr(Pdb, 'do_' + _command).__doc__.strip() + '\n\n'
1599
+ __doc__ += Pdb.help_exec.__doc__
1600
+
1601
+ del _help_order, _command
1602
+
1603
+
1604
+ # Simplified interface
1605
+
1606
+ def run(statement, globals=None, locals=None):
1607
+ Pdb().run(statement, globals, locals)
1608
+
1609
+ def runeval(expression, globals=None, locals=None):
1610
+ return Pdb().runeval(expression, globals, locals)
1611
+
1612
+ def runctx(statement, globals, locals):
1613
+ # B/W compatibility
1614
+ run(statement, globals, locals)
1615
+
1616
+ def runcall(*args, **kwds):
1617
+ return Pdb().runcall(*args, **kwds)
1618
+
1619
+ def set_trace(*, header=None):
1620
+ pdb = Pdb()
1621
+ if header is not None:
1622
+ pdb.message(header)
1623
+ pdb.set_trace(sys._getframe().f_back)
1624
+
1625
+ # Post-Mortem interface
1626
+
1627
+ def post_mortem(t=None):
1628
+ # handling the default
1629
+ if t is None:
1630
+ # sys.exc_info() returns (type, value, traceback) if an exception is
1631
+ # being handled, otherwise it returns None
1632
+ t = sys.exc_info()[2]
1633
+ if t is None:
1634
+ raise ValueError("A valid traceback must be passed if no "
1635
+ "exception is being handled")
1636
+
1637
+ p = Pdb()
1638
+ p.reset()
1639
+ p.interaction(None, t)
1640
+
1641
+ def pm():
1642
+ post_mortem(sys.last_traceback)
1643
+
1644
+
1645
+ # Main program for testing
1646
+
1647
+ TESTCMD = 'import x; x.main()'
1648
+
1649
+ def test():
1650
+ run(TESTCMD)
1651
+
1652
+ # print help
1653
+ def help():
1654
+ import pydoc
1655
+ pydoc.pager(__doc__)
1656
+
1657
+ _usage = """\
1658
+ usage: pdb.py [-c command] ... [-m module | pyfile] [arg] ...
1659
+
1660
+ Debug the Python program given by pyfile. Alternatively,
1661
+ an executable module or package to debug can be specified using
1662
+ the -m switch.
1663
+
1664
+ Initial commands are read from .pdbrc files in your home directory
1665
+ and in the current directory, if they exist. Commands supplied with
1666
+ -c are executed after commands from .pdbrc files.
1667
+
1668
+ To let the script run until an exception occurs, use "-c continue".
1669
+ To let the script run up to a given line X in the debugged file, use
1670
+ "-c 'until X'"."""
1671
+
1672
+ def main():
1673
+ import getopt
1674
+
1675
+ opts, args = getopt.getopt(sys.argv[1:], 'mhc:', ['help', 'command='])
1676
+
1677
+ if not args:
1678
+ print(_usage)
1679
+ sys.exit(2)
1680
+
1681
+ commands = []
1682
+ run_as_module = False
1683
+ for opt, optarg in opts:
1684
+ if opt in ['-h', '--help']:
1685
+ print(_usage)
1686
+ sys.exit()
1687
+ elif opt in ['-c', '--command']:
1688
+ commands.append(optarg)
1689
+ elif opt in ['-m']:
1690
+ run_as_module = True
1691
+
1692
+ mainpyfile = args[0] # Get script filename
1693
+ if not run_as_module and not os.path.exists(mainpyfile):
1694
+ print('Error:', mainpyfile, 'does not exist')
1695
+ sys.exit(1)
1696
+
1697
+ if run_as_module:
1698
+ import runpy
1699
+ try:
1700
+ runpy._get_module_details(mainpyfile)
1701
+ except Exception:
1702
+ traceback.print_exc()
1703
+ sys.exit(1)
1704
+
1705
+ sys.argv[:] = args # Hide "pdb.py" and pdb options from argument list
1706
+
1707
+ if not run_as_module:
1708
+ mainpyfile = os.path.realpath(mainpyfile)
1709
+ # Replace pdb's dir with script's dir in front of module search path.
1710
+ sys.path[0] = os.path.dirname(mainpyfile)
1711
+
1712
+ # Note on saving/restoring sys.argv: it's a good idea when sys.argv was
1713
+ # modified by the script being debugged. It's a bad idea when it was
1714
+ # changed by the user from the command line. There is a "restart" command
1715
+ # which allows explicit specification of command line arguments.
1716
+ pdb = Pdb()
1717
+ pdb.rcLines.extend(commands)
1718
+ while True:
1719
+ try:
1720
+ if run_as_module:
1721
+ pdb._runmodule(mainpyfile)
1722
+ else:
1723
+ pdb._runscript(mainpyfile)
1724
+ if pdb._user_requested_quit:
1725
+ break
1726
+ print("The program finished and will be restarted")
1727
+ except Restart:
1728
+ print("Restarting", mainpyfile, "with arguments:")
1729
+ print("\t" + " ".join(sys.argv[1:]))
1730
+ except SystemExit:
1731
+ # In most cases SystemExit does not warrant a post-mortem session.
1732
+ print("The program exited via sys.exit(). Exit status:", end=' ')
1733
+ print(sys.exc_info()[1])
1734
+ except SyntaxError:
1735
+ traceback.print_exc()
1736
+ sys.exit(1)
1737
+ except:
1738
+ traceback.print_exc()
1739
+ print("Uncaught exception. Entering post mortem debugging")
1740
+ print("Running 'cont' or 'step' will restart the program")
1741
+ t = sys.exc_info()[2]
1742
+ pdb.interaction(None, t)
1743
+ print("Post mortem debugger finished. The " + mainpyfile +
1744
+ " will be restarted")
1745
+
1746
+
1747
+ # When invoked as main program, invoke the debugger on a script
1748
+ if __name__ == '__main__':
1749
+ import pdb
1750
+ pdb.main()
parrot/lib/python3.10/poplib.py ADDED
@@ -0,0 +1,483 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """A POP3 client class.
2
+
3
+ Based on the J. Myers POP3 draft, Jan. 96
4
+ """
5
+
6
+ # Author: David Ascher <david_ascher@brown.edu>
7
+ # [heavily stealing from nntplib.py]
8
+ # Updated: Piers Lauder <piers@cs.su.oz.au> [Jul '97]
9
+ # String method conversion and test jig improvements by ESR, February 2001.
10
+ # Added the POP3_SSL class. Methods loosely based on IMAP_SSL. Hector Urtubia <urtubia@mrbook.org> Aug 2003
11
+
12
+ # Example (see the test function at the end of this file)
13
+
14
+ # Imports
15
+
16
+ import errno
17
+ import re
18
+ import socket
19
+ import sys
20
+
21
+ try:
22
+ import ssl
23
+ HAVE_SSL = True
24
+ except ImportError:
25
+ HAVE_SSL = False
26
+
27
+ __all__ = ["POP3","error_proto"]
28
+
29
+ # Exception raised when an error or invalid response is received:
30
+
31
+ class error_proto(Exception): pass
32
+
33
+ # Standard Port
34
+ POP3_PORT = 110
35
+
36
+ # POP SSL PORT
37
+ POP3_SSL_PORT = 995
38
+
39
+ # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
40
+ CR = b'\r'
41
+ LF = b'\n'
42
+ CRLF = CR+LF
43
+
44
+ # maximal line length when calling readline(). This is to prevent
45
+ # reading arbitrary length lines. RFC 1939 limits POP3 line length to
46
+ # 512 characters, including CRLF. We have selected 2048 just to be on
47
+ # the safe side.
48
+ _MAXLINE = 2048
49
+
50
+
51
+ class POP3:
52
+
53
+ """This class supports both the minimal and optional command sets.
54
+ Arguments can be strings or integers (where appropriate)
55
+ (e.g.: retr(1) and retr('1') both work equally well.
56
+
57
+ Minimal Command Set:
58
+ USER name user(name)
59
+ PASS string pass_(string)
60
+ STAT stat()
61
+ LIST [msg] list(msg = None)
62
+ RETR msg retr(msg)
63
+ DELE msg dele(msg)
64
+ NOOP noop()
65
+ RSET rset()
66
+ QUIT quit()
67
+
68
+ Optional Commands (some servers support these):
69
+ RPOP name rpop(name)
70
+ APOP name digest apop(name, digest)
71
+ TOP msg n top(msg, n)
72
+ UIDL [msg] uidl(msg = None)
73
+ CAPA capa()
74
+ STLS stls()
75
+ UTF8 utf8()
76
+
77
+ Raises one exception: 'error_proto'.
78
+
79
+ Instantiate with:
80
+ POP3(hostname, port=110)
81
+
82
+ NB: the POP protocol locks the mailbox from user
83
+ authorization until QUIT, so be sure to get in, suck
84
+ the messages, and quit, each time you access the
85
+ mailbox.
86
+
87
+ POP is a line-based protocol, which means large mail
88
+ messages consume lots of python cycles reading them
89
+ line-by-line.
90
+
91
+ If it's available on your mail server, use IMAP4
92
+ instead, it doesn't suffer from the two problems
93
+ above.
94
+ """
95
+
96
+ encoding = 'UTF-8'
97
+
98
+ def __init__(self, host, port=POP3_PORT,
99
+ timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
100
+ self.host = host
101
+ self.port = port
102
+ self._tls_established = False
103
+ sys.audit("poplib.connect", self, host, port)
104
+ self.sock = self._create_socket(timeout)
105
+ self.file = self.sock.makefile('rb')
106
+ self._debugging = 0
107
+ self.welcome = self._getresp()
108
+
109
+ def _create_socket(self, timeout):
110
+ if timeout is not None and not timeout:
111
+ raise ValueError('Non-blocking socket (timeout=0) is not supported')
112
+ return socket.create_connection((self.host, self.port), timeout)
113
+
114
+ def _putline(self, line):
115
+ if self._debugging > 1: print('*put*', repr(line))
116
+ sys.audit("poplib.putline", self, line)
117
+ self.sock.sendall(line + CRLF)
118
+
119
+
120
+ # Internal: send one command to the server (through _putline())
121
+
122
+ def _putcmd(self, line):
123
+ if self._debugging: print('*cmd*', repr(line))
124
+ line = bytes(line, self.encoding)
125
+ self._putline(line)
126
+
127
+
128
+ # Internal: return one line from the server, stripping CRLF.
129
+ # This is where all the CPU time of this module is consumed.
130
+ # Raise error_proto('-ERR EOF') if the connection is closed.
131
+
132
+ def _getline(self):
133
+ line = self.file.readline(_MAXLINE + 1)
134
+ if len(line) > _MAXLINE:
135
+ raise error_proto('line too long')
136
+
137
+ if self._debugging > 1: print('*get*', repr(line))
138
+ if not line: raise error_proto('-ERR EOF')
139
+ octets = len(line)
140
+ # server can send any combination of CR & LF
141
+ # however, 'readline()' returns lines ending in LF
142
+ # so only possibilities are ...LF, ...CRLF, CR...LF
143
+ if line[-2:] == CRLF:
144
+ return line[:-2], octets
145
+ if line[:1] == CR:
146
+ return line[1:-1], octets
147
+ return line[:-1], octets
148
+
149
+
150
+ # Internal: get a response from the server.
151
+ # Raise 'error_proto' if the response doesn't start with '+'.
152
+
153
+ def _getresp(self):
154
+ resp, o = self._getline()
155
+ if self._debugging > 1: print('*resp*', repr(resp))
156
+ if not resp.startswith(b'+'):
157
+ raise error_proto(resp)
158
+ return resp
159
+
160
+
161
+ # Internal: get a response plus following text from the server.
162
+
163
+ def _getlongresp(self):
164
+ resp = self._getresp()
165
+ list = []; octets = 0
166
+ line, o = self._getline()
167
+ while line != b'.':
168
+ if line.startswith(b'..'):
169
+ o = o-1
170
+ line = line[1:]
171
+ octets = octets + o
172
+ list.append(line)
173
+ line, o = self._getline()
174
+ return resp, list, octets
175
+
176
+
177
+ # Internal: send a command and get the response
178
+
179
+ def _shortcmd(self, line):
180
+ self._putcmd(line)
181
+ return self._getresp()
182
+
183
+
184
+ # Internal: send a command and get the response plus following text
185
+
186
+ def _longcmd(self, line):
187
+ self._putcmd(line)
188
+ return self._getlongresp()
189
+
190
+
191
+ # These can be useful:
192
+
193
+ def getwelcome(self):
194
+ return self.welcome
195
+
196
+
197
+ def set_debuglevel(self, level):
198
+ self._debugging = level
199
+
200
+
201
+ # Here are all the POP commands:
202
+
203
+ def user(self, user):
204
+ """Send user name, return response
205
+
206
+ (should indicate password required).
207
+ """
208
+ return self._shortcmd('USER %s' % user)
209
+
210
+
211
+ def pass_(self, pswd):
212
+ """Send password, return response
213
+
214
+ (response includes message count, mailbox size).
215
+
216
+ NB: mailbox is locked by server from here to 'quit()'
217
+ """
218
+ return self._shortcmd('PASS %s' % pswd)
219
+
220
+
221
+ def stat(self):
222
+ """Get mailbox status.
223
+
224
+ Result is tuple of 2 ints (message count, mailbox size)
225
+ """
226
+ retval = self._shortcmd('STAT')
227
+ rets = retval.split()
228
+ if self._debugging: print('*stat*', repr(rets))
229
+ numMessages = int(rets[1])
230
+ sizeMessages = int(rets[2])
231
+ return (numMessages, sizeMessages)
232
+
233
+
234
+ def list(self, which=None):
235
+ """Request listing, return result.
236
+
237
+ Result without a message number argument is in form
238
+ ['response', ['mesg_num octets', ...], octets].
239
+
240
+ Result when a message number argument is given is a
241
+ single response: the "scan listing" for that message.
242
+ """
243
+ if which is not None:
244
+ return self._shortcmd('LIST %s' % which)
245
+ return self._longcmd('LIST')
246
+
247
+
248
+ def retr(self, which):
249
+ """Retrieve whole message number 'which'.
250
+
251
+ Result is in form ['response', ['line', ...], octets].
252
+ """
253
+ return self._longcmd('RETR %s' % which)
254
+
255
+
256
+ def dele(self, which):
257
+ """Delete message number 'which'.
258
+
259
+ Result is 'response'.
260
+ """
261
+ return self._shortcmd('DELE %s' % which)
262
+
263
+
264
+ def noop(self):
265
+ """Does nothing.
266
+
267
+ One supposes the response indicates the server is alive.
268
+ """
269
+ return self._shortcmd('NOOP')
270
+
271
+
272
+ def rset(self):
273
+ """Unmark all messages marked for deletion."""
274
+ return self._shortcmd('RSET')
275
+
276
+
277
+ def quit(self):
278
+ """Signoff: commit changes on server, unlock mailbox, close connection."""
279
+ resp = self._shortcmd('QUIT')
280
+ self.close()
281
+ return resp
282
+
283
+ def close(self):
284
+ """Close the connection without assuming anything about it."""
285
+ try:
286
+ file = self.file
287
+ self.file = None
288
+ if file is not None:
289
+ file.close()
290
+ finally:
291
+ sock = self.sock
292
+ self.sock = None
293
+ if sock is not None:
294
+ try:
295
+ sock.shutdown(socket.SHUT_RDWR)
296
+ except OSError as exc:
297
+ # The server might already have closed the connection.
298
+ # On Windows, this may result in WSAEINVAL (error 10022):
299
+ # An invalid operation was attempted.
300
+ if (exc.errno != errno.ENOTCONN
301
+ and getattr(exc, 'winerror', 0) != 10022):
302
+ raise
303
+ finally:
304
+ sock.close()
305
+
306
+ #__del__ = quit
307
+
308
+
309
+ # optional commands:
310
+
311
+ def rpop(self, user):
312
+ """Not sure what this does."""
313
+ return self._shortcmd('RPOP %s' % user)
314
+
315
+
316
+ timestamp = re.compile(br'\+OK.[^<]*(<.*>)')
317
+
318
+ def apop(self, user, password):
319
+ """Authorisation
320
+
321
+ - only possible if server has supplied a timestamp in initial greeting.
322
+
323
+ Args:
324
+ user - mailbox user;
325
+ password - mailbox password.
326
+
327
+ NB: mailbox is locked by server from here to 'quit()'
328
+ """
329
+ secret = bytes(password, self.encoding)
330
+ m = self.timestamp.match(self.welcome)
331
+ if not m:
332
+ raise error_proto('-ERR APOP not supported by server')
333
+ import hashlib
334
+ digest = m.group(1)+secret
335
+ digest = hashlib.md5(digest).hexdigest()
336
+ return self._shortcmd('APOP %s %s' % (user, digest))
337
+
338
+
339
+ def top(self, which, howmuch):
340
+ """Retrieve message header of message number 'which'
341
+ and first 'howmuch' lines of message body.
342
+
343
+ Result is in form ['response', ['line', ...], octets].
344
+ """
345
+ return self._longcmd('TOP %s %s' % (which, howmuch))
346
+
347
+
348
+ def uidl(self, which=None):
349
+ """Return message digest (unique id) list.
350
+
351
+ If 'which', result contains unique id for that message
352
+ in the form 'response mesgnum uid', otherwise result is
353
+ the list ['response', ['mesgnum uid', ...], octets]
354
+ """
355
+ if which is not None:
356
+ return self._shortcmd('UIDL %s' % which)
357
+ return self._longcmd('UIDL')
358
+
359
+
360
+ def utf8(self):
361
+ """Try to enter UTF-8 mode (see RFC 6856). Returns server response.
362
+ """
363
+ return self._shortcmd('UTF8')
364
+
365
+
366
+ def capa(self):
367
+ """Return server capabilities (RFC 2449) as a dictionary
368
+ >>> c=poplib.POP3('localhost')
369
+ >>> c.capa()
370
+ {'IMPLEMENTATION': ['Cyrus', 'POP3', 'server', 'v2.2.12'],
371
+ 'TOP': [], 'LOGIN-DELAY': ['0'], 'AUTH-RESP-CODE': [],
372
+ 'EXPIRE': ['NEVER'], 'USER': [], 'STLS': [], 'PIPELINING': [],
373
+ 'UIDL': [], 'RESP-CODES': []}
374
+ >>>
375
+
376
+ Really, according to RFC 2449, the cyrus folks should avoid
377
+ having the implementation split into multiple arguments...
378
+ """
379
+ def _parsecap(line):
380
+ lst = line.decode('ascii').split()
381
+ return lst[0], lst[1:]
382
+
383
+ caps = {}
384
+ try:
385
+ resp = self._longcmd('CAPA')
386
+ rawcaps = resp[1]
387
+ for capline in rawcaps:
388
+ capnm, capargs = _parsecap(capline)
389
+ caps[capnm] = capargs
390
+ except error_proto:
391
+ raise error_proto('-ERR CAPA not supported by server')
392
+ return caps
393
+
394
+
395
+ def stls(self, context=None):
396
+ """Start a TLS session on the active connection as specified in RFC 2595.
397
+
398
+ context - a ssl.SSLContext
399
+ """
400
+ if not HAVE_SSL:
401
+ raise error_proto('-ERR TLS support missing')
402
+ if self._tls_established:
403
+ raise error_proto('-ERR TLS session already established')
404
+ caps = self.capa()
405
+ if not 'STLS' in caps:
406
+ raise error_proto('-ERR STLS not supported by server')
407
+ if context is None:
408
+ context = ssl._create_stdlib_context()
409
+ resp = self._shortcmd('STLS')
410
+ self.sock = context.wrap_socket(self.sock,
411
+ server_hostname=self.host)
412
+ self.file = self.sock.makefile('rb')
413
+ self._tls_established = True
414
+ return resp
415
+
416
+
417
+ if HAVE_SSL:
418
+
419
+ class POP3_SSL(POP3):
420
+ """POP3 client class over SSL connection
421
+
422
+ Instantiate with: POP3_SSL(hostname, port=995, keyfile=None, certfile=None,
423
+ context=None)
424
+
425
+ hostname - the hostname of the pop3 over ssl server
426
+ port - port number
427
+ keyfile - PEM formatted file that contains your private key
428
+ certfile - PEM formatted certificate chain file
429
+ context - a ssl.SSLContext
430
+
431
+ See the methods of the parent class POP3 for more documentation.
432
+ """
433
+
434
+ def __init__(self, host, port=POP3_SSL_PORT, keyfile=None, certfile=None,
435
+ timeout=socket._GLOBAL_DEFAULT_TIMEOUT, context=None):
436
+ if context is not None and keyfile is not None:
437
+ raise ValueError("context and keyfile arguments are mutually "
438
+ "exclusive")
439
+ if context is not None and certfile is not None:
440
+ raise ValueError("context and certfile arguments are mutually "
441
+ "exclusive")
442
+ if keyfile is not None or certfile is not None:
443
+ import warnings
444
+ warnings.warn("keyfile and certfile are deprecated, use a "
445
+ "custom context instead", DeprecationWarning, 2)
446
+ self.keyfile = keyfile
447
+ self.certfile = certfile
448
+ if context is None:
449
+ context = ssl._create_stdlib_context(certfile=certfile,
450
+ keyfile=keyfile)
451
+ self.context = context
452
+ POP3.__init__(self, host, port, timeout)
453
+
454
+ def _create_socket(self, timeout):
455
+ sock = POP3._create_socket(self, timeout)
456
+ sock = self.context.wrap_socket(sock,
457
+ server_hostname=self.host)
458
+ return sock
459
+
460
+ def stls(self, keyfile=None, certfile=None, context=None):
461
+ """The method unconditionally raises an exception since the
462
+ STLS command doesn't make any sense on an already established
463
+ SSL/TLS session.
464
+ """
465
+ raise error_proto('-ERR TLS session already established')
466
+
467
+ __all__.append("POP3_SSL")
468
+
469
+ if __name__ == "__main__":
470
+ import sys
471
+ a = POP3(sys.argv[1])
472
+ print(a.getwelcome())
473
+ a.user(sys.argv[2])
474
+ a.pass_(sys.argv[3])
475
+ a.list()
476
+ (numMsgs, totalSize) = a.stat()
477
+ for i in range(1, numMsgs + 1):
478
+ (header, msg, octets) = a.retr(i)
479
+ print("Message %d:" % i)
480
+ for line in msg:
481
+ print(' ' + line)
482
+ print('-----------------------')
483
+ a.quit()
parrot/lib/python3.10/pyclbr.py ADDED
@@ -0,0 +1,314 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Parse a Python module and describe its classes and functions.
2
+
3
+ Parse enough of a Python file to recognize imports and class and
4
+ function definitions, and to find out the superclasses of a class.
5
+
6
+ The interface consists of a single function:
7
+ readmodule_ex(module, path=None)
8
+ where module is the name of a Python module, and path is an optional
9
+ list of directories where the module is to be searched. If present,
10
+ path is prepended to the system search path sys.path. The return value
11
+ is a dictionary. The keys of the dictionary are the names of the
12
+ classes and functions defined in the module (including classes that are
13
+ defined via the from XXX import YYY construct). The values are
14
+ instances of classes Class and Function. One special key/value pair is
15
+ present for packages: the key '__path__' has a list as its value which
16
+ contains the package search path.
17
+
18
+ Classes and Functions have a common superclass: _Object. Every instance
19
+ has the following attributes:
20
+ module -- name of the module;
21
+ name -- name of the object;
22
+ file -- file in which the object is defined;
23
+ lineno -- line in the file where the object's definition starts;
24
+ end_lineno -- line in the file where the object's definition ends;
25
+ parent -- parent of this object, if any;
26
+ children -- nested objects contained in this object.
27
+ The 'children' attribute is a dictionary mapping names to objects.
28
+
29
+ Instances of Function describe functions with the attributes from _Object,
30
+ plus the following:
31
+ is_async -- if a function is defined with an 'async' prefix
32
+
33
+ Instances of Class describe classes with the attributes from _Object,
34
+ plus the following:
35
+ super -- list of super classes (Class instances if possible);
36
+ methods -- mapping of method names to beginning line numbers.
37
+ If the name of a super class is not recognized, the corresponding
38
+ entry in the list of super classes is not a class instance but a
39
+ string giving the name of the super class. Since import statements
40
+ are recognized and imported modules are scanned as well, this
41
+ shouldn't happen often.
42
+ """
43
+
44
+ import ast
45
+ import sys
46
+ import importlib.util
47
+
48
+ __all__ = ["readmodule", "readmodule_ex", "Class", "Function"]
49
+
50
+ _modules = {} # Initialize cache of modules we've seen.
51
+
52
+
53
+ class _Object:
54
+ "Information about Python class or function."
55
+ def __init__(self, module, name, file, lineno, end_lineno, parent):
56
+ self.module = module
57
+ self.name = name
58
+ self.file = file
59
+ self.lineno = lineno
60
+ self.end_lineno = end_lineno
61
+ self.parent = parent
62
+ self.children = {}
63
+ if parent is not None:
64
+ parent.children[name] = self
65
+
66
+
67
+ # Odd Function and Class signatures are for back-compatibility.
68
+ class Function(_Object):
69
+ "Information about a Python function, including methods."
70
+ def __init__(self, module, name, file, lineno,
71
+ parent=None, is_async=False, *, end_lineno=None):
72
+ super().__init__(module, name, file, lineno, end_lineno, parent)
73
+ self.is_async = is_async
74
+ if isinstance(parent, Class):
75
+ parent.methods[name] = lineno
76
+
77
+
78
+ class Class(_Object):
79
+ "Information about a Python class."
80
+ def __init__(self, module, name, super_, file, lineno,
81
+ parent=None, *, end_lineno=None):
82
+ super().__init__(module, name, file, lineno, end_lineno, parent)
83
+ self.super = super_ or []
84
+ self.methods = {}
85
+
86
+
87
+ # These 2 functions are used in these tests
88
+ # Lib/test/test_pyclbr, Lib/idlelib/idle_test/test_browser.py
89
+ def _nest_function(ob, func_name, lineno, end_lineno, is_async=False):
90
+ "Return a Function after nesting within ob."
91
+ return Function(ob.module, func_name, ob.file, lineno,
92
+ parent=ob, is_async=is_async, end_lineno=end_lineno)
93
+
94
+ def _nest_class(ob, class_name, lineno, end_lineno, super=None):
95
+ "Return a Class after nesting within ob."
96
+ return Class(ob.module, class_name, super, ob.file, lineno,
97
+ parent=ob, end_lineno=end_lineno)
98
+
99
+
100
+ def readmodule(module, path=None):
101
+ """Return Class objects for the top-level classes in module.
102
+
103
+ This is the original interface, before Functions were added.
104
+ """
105
+
106
+ res = {}
107
+ for key, value in _readmodule(module, path or []).items():
108
+ if isinstance(value, Class):
109
+ res[key] = value
110
+ return res
111
+
112
+ def readmodule_ex(module, path=None):
113
+ """Return a dictionary with all functions and classes in module.
114
+
115
+ Search for module in PATH + sys.path.
116
+ If possible, include imported superclasses.
117
+ Do this by reading source, without importing (and executing) it.
118
+ """
119
+ return _readmodule(module, path or [])
120
+
121
+
122
+ def _readmodule(module, path, inpackage=None):
123
+ """Do the hard work for readmodule[_ex].
124
+
125
+ If inpackage is given, it must be the dotted name of the package in
126
+ which we are searching for a submodule, and then PATH must be the
127
+ package search path; otherwise, we are searching for a top-level
128
+ module, and path is combined with sys.path.
129
+ """
130
+ # Compute the full module name (prepending inpackage if set).
131
+ if inpackage is not None:
132
+ fullmodule = "%s.%s" % (inpackage, module)
133
+ else:
134
+ fullmodule = module
135
+
136
+ # Check in the cache.
137
+ if fullmodule in _modules:
138
+ return _modules[fullmodule]
139
+
140
+ # Initialize the dict for this module's contents.
141
+ tree = {}
142
+
143
+ # Check if it is a built-in module; we don't do much for these.
144
+ if module in sys.builtin_module_names and inpackage is None:
145
+ _modules[module] = tree
146
+ return tree
147
+
148
+ # Check for a dotted module name.
149
+ i = module.rfind('.')
150
+ if i >= 0:
151
+ package = module[:i]
152
+ submodule = module[i+1:]
153
+ parent = _readmodule(package, path, inpackage)
154
+ if inpackage is not None:
155
+ package = "%s.%s" % (inpackage, package)
156
+ if not '__path__' in parent:
157
+ raise ImportError('No package named {}'.format(package))
158
+ return _readmodule(submodule, parent['__path__'], package)
159
+
160
+ # Search the path for the module.
161
+ f = None
162
+ if inpackage is not None:
163
+ search_path = path
164
+ else:
165
+ search_path = path + sys.path
166
+ spec = importlib.util._find_spec_from_path(fullmodule, search_path)
167
+ if spec is None:
168
+ raise ModuleNotFoundError(f"no module named {fullmodule!r}", name=fullmodule)
169
+ _modules[fullmodule] = tree
170
+ # Is module a package?
171
+ if spec.submodule_search_locations is not None:
172
+ tree['__path__'] = spec.submodule_search_locations
173
+ try:
174
+ source = spec.loader.get_source(fullmodule)
175
+ except (AttributeError, ImportError):
176
+ # If module is not Python source, we cannot do anything.
177
+ return tree
178
+ else:
179
+ if source is None:
180
+ return tree
181
+
182
+ fname = spec.loader.get_filename(fullmodule)
183
+ return _create_tree(fullmodule, path, fname, source, tree, inpackage)
184
+
185
+
186
+ class _ModuleBrowser(ast.NodeVisitor):
187
+ def __init__(self, module, path, file, tree, inpackage):
188
+ self.path = path
189
+ self.tree = tree
190
+ self.file = file
191
+ self.module = module
192
+ self.inpackage = inpackage
193
+ self.stack = []
194
+
195
+ def visit_ClassDef(self, node):
196
+ bases = []
197
+ for base in node.bases:
198
+ name = ast.unparse(base)
199
+ if name in self.tree:
200
+ # We know this super class.
201
+ bases.append(self.tree[name])
202
+ elif len(names := name.split(".")) > 1:
203
+ # Super class form is module.class:
204
+ # look in module for class.
205
+ *_, module, class_ = names
206
+ if module in _modules:
207
+ bases.append(_modules[module].get(class_, name))
208
+ else:
209
+ bases.append(name)
210
+
211
+ parent = self.stack[-1] if self.stack else None
212
+ class_ = Class(self.module, node.name, bases, self.file, node.lineno,
213
+ parent=parent, end_lineno=node.end_lineno)
214
+ if parent is None:
215
+ self.tree[node.name] = class_
216
+ self.stack.append(class_)
217
+ self.generic_visit(node)
218
+ self.stack.pop()
219
+
220
+ def visit_FunctionDef(self, node, *, is_async=False):
221
+ parent = self.stack[-1] if self.stack else None
222
+ function = Function(self.module, node.name, self.file, node.lineno,
223
+ parent, is_async, end_lineno=node.end_lineno)
224
+ if parent is None:
225
+ self.tree[node.name] = function
226
+ self.stack.append(function)
227
+ self.generic_visit(node)
228
+ self.stack.pop()
229
+
230
+ def visit_AsyncFunctionDef(self, node):
231
+ self.visit_FunctionDef(node, is_async=True)
232
+
233
+ def visit_Import(self, node):
234
+ if node.col_offset != 0:
235
+ return
236
+
237
+ for module in node.names:
238
+ try:
239
+ try:
240
+ _readmodule(module.name, self.path, self.inpackage)
241
+ except ImportError:
242
+ _readmodule(module.name, [])
243
+ except (ImportError, SyntaxError):
244
+ # If we can't find or parse the imported module,
245
+ # too bad -- don't die here.
246
+ continue
247
+
248
+ def visit_ImportFrom(self, node):
249
+ if node.col_offset != 0:
250
+ return
251
+ try:
252
+ module = "." * node.level
253
+ if node.module:
254
+ module += node.module
255
+ module = _readmodule(module, self.path, self.inpackage)
256
+ except (ImportError, SyntaxError):
257
+ return
258
+
259
+ for name in node.names:
260
+ if name.name in module:
261
+ self.tree[name.asname or name.name] = module[name.name]
262
+ elif name.name == "*":
263
+ for import_name, import_value in module.items():
264
+ if import_name.startswith("_"):
265
+ continue
266
+ self.tree[import_name] = import_value
267
+
268
+
269
+ def _create_tree(fullmodule, path, fname, source, tree, inpackage):
270
+ mbrowser = _ModuleBrowser(fullmodule, path, fname, tree, inpackage)
271
+ mbrowser.visit(ast.parse(source))
272
+ return mbrowser.tree
273
+
274
+
275
+ def _main():
276
+ "Print module output (default this file) for quick visual check."
277
+ import os
278
+ try:
279
+ mod = sys.argv[1]
280
+ except:
281
+ mod = __file__
282
+ if os.path.exists(mod):
283
+ path = [os.path.dirname(mod)]
284
+ mod = os.path.basename(mod)
285
+ if mod.lower().endswith(".py"):
286
+ mod = mod[:-3]
287
+ else:
288
+ path = []
289
+ tree = readmodule_ex(mod, path)
290
+ lineno_key = lambda a: getattr(a, 'lineno', 0)
291
+ objs = sorted(tree.values(), key=lineno_key, reverse=True)
292
+ indent_level = 2
293
+ while objs:
294
+ obj = objs.pop()
295
+ if isinstance(obj, list):
296
+ # Value is a __path__ key.
297
+ continue
298
+ if not hasattr(obj, 'indent'):
299
+ obj.indent = 0
300
+
301
+ if isinstance(obj, _Object):
302
+ new_objs = sorted(obj.children.values(),
303
+ key=lineno_key, reverse=True)
304
+ for ob in new_objs:
305
+ ob.indent = obj.indent + indent_level
306
+ objs.extend(new_objs)
307
+ if isinstance(obj, Class):
308
+ print("{}class {} {} {}"
309
+ .format(' ' * obj.indent, obj.name, obj.super, obj.lineno))
310
+ elif isinstance(obj, Function):
311
+ print("{}def {} {}".format(' ' * obj.indent, obj.name, obj.lineno))
312
+
313
+ if __name__ == "__main__":
314
+ _main()
parrot/lib/python3.10/string.py ADDED
@@ -0,0 +1,280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """A collection of string constants.
2
+
3
+ Public module variables:
4
+
5
+ whitespace -- a string containing all ASCII whitespace
6
+ ascii_lowercase -- a string containing all ASCII lowercase letters
7
+ ascii_uppercase -- a string containing all ASCII uppercase letters
8
+ ascii_letters -- a string containing all ASCII letters
9
+ digits -- a string containing all ASCII decimal digits
10
+ hexdigits -- a string containing all ASCII hexadecimal digits
11
+ octdigits -- a string containing all ASCII octal digits
12
+ punctuation -- a string containing all ASCII punctuation characters
13
+ printable -- a string containing all ASCII characters considered printable
14
+
15
+ """
16
+
17
+ __all__ = ["ascii_letters", "ascii_lowercase", "ascii_uppercase", "capwords",
18
+ "digits", "hexdigits", "octdigits", "printable", "punctuation",
19
+ "whitespace", "Formatter", "Template"]
20
+
21
+ import _string
22
+
23
+ # Some strings for ctype-style character classification
24
+ whitespace = ' \t\n\r\v\f'
25
+ ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
26
+ ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
27
+ ascii_letters = ascii_lowercase + ascii_uppercase
28
+ digits = '0123456789'
29
+ hexdigits = digits + 'abcdef' + 'ABCDEF'
30
+ octdigits = '01234567'
31
+ punctuation = r"""!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""
32
+ printable = digits + ascii_letters + punctuation + whitespace
33
+
34
+ # Functions which aren't available as string methods.
35
+
36
+ # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".
37
+ def capwords(s, sep=None):
38
+ """capwords(s [,sep]) -> string
39
+
40
+ Split the argument into words using split, capitalize each
41
+ word using capitalize, and join the capitalized words using
42
+ join. If the optional second argument sep is absent or None,
43
+ runs of whitespace characters are replaced by a single space
44
+ and leading and trailing whitespace are removed, otherwise
45
+ sep is used to split and join the words.
46
+
47
+ """
48
+ return (sep or ' ').join(x.capitalize() for x in s.split(sep))
49
+
50
+
51
+ ####################################################################
52
+ import re as _re
53
+ from collections import ChainMap as _ChainMap
54
+
55
+ _sentinel_dict = {}
56
+
57
+ class Template:
58
+ """A string class for supporting $-substitutions."""
59
+
60
+ delimiter = '$'
61
+ # r'[a-z]' matches to non-ASCII letters when used with IGNORECASE, but
62
+ # without the ASCII flag. We can't add re.ASCII to flags because of
63
+ # backward compatibility. So we use the ?a local flag and [a-z] pattern.
64
+ # See https://bugs.python.org/issue31672
65
+ idpattern = r'(?a:[_a-z][_a-z0-9]*)'
66
+ braceidpattern = None
67
+ flags = _re.IGNORECASE
68
+
69
+ def __init_subclass__(cls):
70
+ super().__init_subclass__()
71
+ if 'pattern' in cls.__dict__:
72
+ pattern = cls.pattern
73
+ else:
74
+ delim = _re.escape(cls.delimiter)
75
+ id = cls.idpattern
76
+ bid = cls.braceidpattern or cls.idpattern
77
+ pattern = fr"""
78
+ {delim}(?:
79
+ (?P<escaped>{delim}) | # Escape sequence of two delimiters
80
+ (?P<named>{id}) | # delimiter and a Python identifier
81
+ {{(?P<braced>{bid})}} | # delimiter and a braced identifier
82
+ (?P<invalid>) # Other ill-formed delimiter exprs
83
+ )
84
+ """
85
+ cls.pattern = _re.compile(pattern, cls.flags | _re.VERBOSE)
86
+
87
+ def __init__(self, template):
88
+ self.template = template
89
+
90
+ # Search for $$, $identifier, ${identifier}, and any bare $'s
91
+
92
+ def _invalid(self, mo):
93
+ i = mo.start('invalid')
94
+ lines = self.template[:i].splitlines(keepends=True)
95
+ if not lines:
96
+ colno = 1
97
+ lineno = 1
98
+ else:
99
+ colno = i - len(''.join(lines[:-1]))
100
+ lineno = len(lines)
101
+ raise ValueError('Invalid placeholder in string: line %d, col %d' %
102
+ (lineno, colno))
103
+
104
+ def substitute(self, mapping=_sentinel_dict, /, **kws):
105
+ if mapping is _sentinel_dict:
106
+ mapping = kws
107
+ elif kws:
108
+ mapping = _ChainMap(kws, mapping)
109
+ # Helper function for .sub()
110
+ def convert(mo):
111
+ # Check the most common path first.
112
+ named = mo.group('named') or mo.group('braced')
113
+ if named is not None:
114
+ return str(mapping[named])
115
+ if mo.group('escaped') is not None:
116
+ return self.delimiter
117
+ if mo.group('invalid') is not None:
118
+ self._invalid(mo)
119
+ raise ValueError('Unrecognized named group in pattern',
120
+ self.pattern)
121
+ return self.pattern.sub(convert, self.template)
122
+
123
+ def safe_substitute(self, mapping=_sentinel_dict, /, **kws):
124
+ if mapping is _sentinel_dict:
125
+ mapping = kws
126
+ elif kws:
127
+ mapping = _ChainMap(kws, mapping)
128
+ # Helper function for .sub()
129
+ def convert(mo):
130
+ named = mo.group('named') or mo.group('braced')
131
+ if named is not None:
132
+ try:
133
+ return str(mapping[named])
134
+ except KeyError:
135
+ return mo.group()
136
+ if mo.group('escaped') is not None:
137
+ return self.delimiter
138
+ if mo.group('invalid') is not None:
139
+ return mo.group()
140
+ raise ValueError('Unrecognized named group in pattern',
141
+ self.pattern)
142
+ return self.pattern.sub(convert, self.template)
143
+
144
+ # Initialize Template.pattern. __init_subclass__() is automatically called
145
+ # only for subclasses, not for the Template class itself.
146
+ Template.__init_subclass__()
147
+
148
+
149
+ ########################################################################
150
+ # the Formatter class
151
+ # see PEP 3101 for details and purpose of this class
152
+
153
+ # The hard parts are reused from the C implementation. They're exposed as "_"
154
+ # prefixed methods of str.
155
+
156
+ # The overall parser is implemented in _string.formatter_parser.
157
+ # The field name parser is implemented in _string.formatter_field_name_split
158
+
159
+ class Formatter:
160
+ def format(self, format_string, /, *args, **kwargs):
161
+ return self.vformat(format_string, args, kwargs)
162
+
163
+ def vformat(self, format_string, args, kwargs):
164
+ used_args = set()
165
+ result, _ = self._vformat(format_string, args, kwargs, used_args, 2)
166
+ self.check_unused_args(used_args, args, kwargs)
167
+ return result
168
+
169
+ def _vformat(self, format_string, args, kwargs, used_args, recursion_depth,
170
+ auto_arg_index=0):
171
+ if recursion_depth < 0:
172
+ raise ValueError('Max string recursion exceeded')
173
+ result = []
174
+ for literal_text, field_name, format_spec, conversion in \
175
+ self.parse(format_string):
176
+
177
+ # output the literal text
178
+ if literal_text:
179
+ result.append(literal_text)
180
+
181
+ # if there's a field, output it
182
+ if field_name is not None:
183
+ # this is some markup, find the object and do
184
+ # the formatting
185
+
186
+ # handle arg indexing when empty field_names are given.
187
+ if field_name == '':
188
+ if auto_arg_index is False:
189
+ raise ValueError('cannot switch from manual field '
190
+ 'specification to automatic field '
191
+ 'numbering')
192
+ field_name = str(auto_arg_index)
193
+ auto_arg_index += 1
194
+ elif field_name.isdigit():
195
+ if auto_arg_index:
196
+ raise ValueError('cannot switch from manual field '
197
+ 'specification to automatic field '
198
+ 'numbering')
199
+ # disable auto arg incrementing, if it gets
200
+ # used later on, then an exception will be raised
201
+ auto_arg_index = False
202
+
203
+ # given the field_name, find the object it references
204
+ # and the argument it came from
205
+ obj, arg_used = self.get_field(field_name, args, kwargs)
206
+ used_args.add(arg_used)
207
+
208
+ # do any conversion on the resulting object
209
+ obj = self.convert_field(obj, conversion)
210
+
211
+ # expand the format spec, if needed
212
+ format_spec, auto_arg_index = self._vformat(
213
+ format_spec, args, kwargs,
214
+ used_args, recursion_depth-1,
215
+ auto_arg_index=auto_arg_index)
216
+
217
+ # format the object and append to the result
218
+ result.append(self.format_field(obj, format_spec))
219
+
220
+ return ''.join(result), auto_arg_index
221
+
222
+
223
+ def get_value(self, key, args, kwargs):
224
+ if isinstance(key, int):
225
+ return args[key]
226
+ else:
227
+ return kwargs[key]
228
+
229
+
230
+ def check_unused_args(self, used_args, args, kwargs):
231
+ pass
232
+
233
+
234
+ def format_field(self, value, format_spec):
235
+ return format(value, format_spec)
236
+
237
+
238
+ def convert_field(self, value, conversion):
239
+ # do any conversion on the resulting object
240
+ if conversion is None:
241
+ return value
242
+ elif conversion == 's':
243
+ return str(value)
244
+ elif conversion == 'r':
245
+ return repr(value)
246
+ elif conversion == 'a':
247
+ return ascii(value)
248
+ raise ValueError("Unknown conversion specifier {0!s}".format(conversion))
249
+
250
+
251
+ # returns an iterable that contains tuples of the form:
252
+ # (literal_text, field_name, format_spec, conversion)
253
+ # literal_text can be zero length
254
+ # field_name can be None, in which case there's no
255
+ # object to format and output
256
+ # if field_name is not None, it is looked up, formatted
257
+ # with format_spec and conversion and then used
258
+ def parse(self, format_string):
259
+ return _string.formatter_parser(format_string)
260
+
261
+
262
+ # given a field_name, find the object it references.
263
+ # field_name: the field being looked up, e.g. "0.name"
264
+ # or "lookup[3]"
265
+ # used_args: a set of which args have been used
266
+ # args, kwargs: as passed in to vformat
267
+ def get_field(self, field_name, args, kwargs):
268
+ first, rest = _string.formatter_field_name_split(field_name)
269
+
270
+ obj = self.get_value(first, args, kwargs)
271
+
272
+ # loop through the rest of the field_name, doing
273
+ # getattr or getitem as needed
274
+ for is_attr, i in rest:
275
+ if is_attr:
276
+ obj = getattr(obj, i)
277
+ else:
278
+ obj = obj[i]
279
+
280
+ return obj, first
parrot/lib/python3.10/token.py ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Token constants."""
2
+ # Auto-generated by Tools/scripts/generate_token.py
3
+
4
+ __all__ = ['tok_name', 'ISTERMINAL', 'ISNONTERMINAL', 'ISEOF']
5
+
6
+ ENDMARKER = 0
7
+ NAME = 1
8
+ NUMBER = 2
9
+ STRING = 3
10
+ NEWLINE = 4
11
+ INDENT = 5
12
+ DEDENT = 6
13
+ LPAR = 7
14
+ RPAR = 8
15
+ LSQB = 9
16
+ RSQB = 10
17
+ COLON = 11
18
+ COMMA = 12
19
+ SEMI = 13
20
+ PLUS = 14
21
+ MINUS = 15
22
+ STAR = 16
23
+ SLASH = 17
24
+ VBAR = 18
25
+ AMPER = 19
26
+ LESS = 20
27
+ GREATER = 21
28
+ EQUAL = 22
29
+ DOT = 23
30
+ PERCENT = 24
31
+ LBRACE = 25
32
+ RBRACE = 26
33
+ EQEQUAL = 27
34
+ NOTEQUAL = 28
35
+ LESSEQUAL = 29
36
+ GREATEREQUAL = 30
37
+ TILDE = 31
38
+ CIRCUMFLEX = 32
39
+ LEFTSHIFT = 33
40
+ RIGHTSHIFT = 34
41
+ DOUBLESTAR = 35
42
+ PLUSEQUAL = 36
43
+ MINEQUAL = 37
44
+ STAREQUAL = 38
45
+ SLASHEQUAL = 39
46
+ PERCENTEQUAL = 40
47
+ AMPEREQUAL = 41
48
+ VBAREQUAL = 42
49
+ CIRCUMFLEXEQUAL = 43
50
+ LEFTSHIFTEQUAL = 44
51
+ RIGHTSHIFTEQUAL = 45
52
+ DOUBLESTAREQUAL = 46
53
+ DOUBLESLASH = 47
54
+ DOUBLESLASHEQUAL = 48
55
+ AT = 49
56
+ ATEQUAL = 50
57
+ RARROW = 51
58
+ ELLIPSIS = 52
59
+ COLONEQUAL = 53
60
+ OP = 54
61
+ AWAIT = 55
62
+ ASYNC = 56
63
+ TYPE_IGNORE = 57
64
+ TYPE_COMMENT = 58
65
+ SOFT_KEYWORD = 59
66
+ # These aren't used by the C tokenizer but are needed for tokenize.py
67
+ ERRORTOKEN = 60
68
+ COMMENT = 61
69
+ NL = 62
70
+ ENCODING = 63
71
+ N_TOKENS = 64
72
+ # Special definitions for cooperation with parser
73
+ NT_OFFSET = 256
74
+
75
+ tok_name = {value: name
76
+ for name, value in globals().items()
77
+ if isinstance(value, int) and not name.startswith('_')}
78
+ __all__.extend(tok_name.values())
79
+
80
+ EXACT_TOKEN_TYPES = {
81
+ '!=': NOTEQUAL,
82
+ '%': PERCENT,
83
+ '%=': PERCENTEQUAL,
84
+ '&': AMPER,
85
+ '&=': AMPEREQUAL,
86
+ '(': LPAR,
87
+ ')': RPAR,
88
+ '*': STAR,
89
+ '**': DOUBLESTAR,
90
+ '**=': DOUBLESTAREQUAL,
91
+ '*=': STAREQUAL,
92
+ '+': PLUS,
93
+ '+=': PLUSEQUAL,
94
+ ',': COMMA,
95
+ '-': MINUS,
96
+ '-=': MINEQUAL,
97
+ '->': RARROW,
98
+ '.': DOT,
99
+ '...': ELLIPSIS,
100
+ '/': SLASH,
101
+ '//': DOUBLESLASH,
102
+ '//=': DOUBLESLASHEQUAL,
103
+ '/=': SLASHEQUAL,
104
+ ':': COLON,
105
+ ':=': COLONEQUAL,
106
+ ';': SEMI,
107
+ '<': LESS,
108
+ '<<': LEFTSHIFT,
109
+ '<<=': LEFTSHIFTEQUAL,
110
+ '<=': LESSEQUAL,
111
+ '=': EQUAL,
112
+ '==': EQEQUAL,
113
+ '>': GREATER,
114
+ '>=': GREATEREQUAL,
115
+ '>>': RIGHTSHIFT,
116
+ '>>=': RIGHTSHIFTEQUAL,
117
+ '@': AT,
118
+ '@=': ATEQUAL,
119
+ '[': LSQB,
120
+ ']': RSQB,
121
+ '^': CIRCUMFLEX,
122
+ '^=': CIRCUMFLEXEQUAL,
123
+ '{': LBRACE,
124
+ '|': VBAR,
125
+ '|=': VBAREQUAL,
126
+ '}': RBRACE,
127
+ '~': TILDE,
128
+ }
129
+
130
+ def ISTERMINAL(x):
131
+ return x < NT_OFFSET
132
+
133
+ def ISNONTERMINAL(x):
134
+ return x >= NT_OFFSET
135
+
136
+ def ISEOF(x):
137
+ return x == ENDMARKER
parrot/lib/tcl8.6/encoding/cns11643.enc ADDED
@@ -0,0 +1,1584 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding file: cns11643, double-byte
2
+ D
3
+ 2134 0 93
4
+ 21
5
+ 0000000000000000000000000000000000000000000000000000000000000000
6
+ 0000000000000000000000000000000000000000000000000000000000000000
7
+ 00004E284E364E3F4E854E054E04518251965338536953B64E2A4E874E4951E2
8
+ 4E464E8F4EBC4EBE516651E35204529C53B95902590A5B805DDB5E7A5E7F5EF4
9
+ 5F505F515F61961D4E3C4E634E624EA351854EC54ECF4ECE4ECC518451865722
10
+ 572351E45205529E529D52FD5300533A5C735346535D538653B7620953CC6C15
11
+ 53CE57216C3F5E005F0C623762386534653565E04F0E738D4E974EE04F144EF1
12
+ 4EE74EF74EE64F1D4F024F054F2256D8518B518C519951E55213520B52A60000
13
+ 0000000000000000000000000000000000000000000000000000000000000000
14
+ 0000000000000000000000000000000000000000000000000000000000000000
15
+ 0000000000000000000000000000000000000000000000000000000000000000
16
+ 0000000000000000000000000000000000000000000000000000000000000000
17
+ 0000000000000000000000000000000000000000000000000000000000000000
18
+ 0000000000000000000000000000000000000000000000000000000000000000
19
+ 0000000000000000000000000000000000000000000000000000000000000000
20
+ 0000000000000000000000000000000000000000000000000000000000000000
21
+ 22
22
+ 0000000000000000000000000000000000000000000000000000000000000000
23
+ 0000000000000000000000000000000000000000000000000000000000000000
24
+ 000053225304530353075407531E535F536D538953BA53D0598053F653F753F9
25
+ 597E53F4597F5B565724590459185932593059345DDF59755E845B825BF95C14
26
+ 5FD55FD45FCF625C625E626462615E815E835F0D5F52625A5FCA5FC7623965EE
27
+ 624F65E7672F6B7A6C39673F673C6C376C446C45738C75927676909390926C4B
28
+ 6C4C4E214E204E224E684E894E984EF94EEF7F5182784EF84F064F034EFC4EEE
29
+ 4F1690994F284F1C4F074F1A4EFA4F17514A962351724F3B51B451B351B20000
30
+ 0000000000000000000000000000000000000000000000000000000000000000
31
+ 0000000000000000000000000000000000000000000000000000000000000000
32
+ 0000000000000000000000000000000000000000000000000000000000000000
33
+ 0000000000000000000000000000000000000000000000000000000000000000
34
+ 0000000000000000000000000000000000000000000000000000000000000000
35
+ 0000000000000000000000000000000000000000000000000000000000000000
36
+ 0000000000000000000000000000000000000000000000000000000000000000
37
+ 0000000000000000000000000000000000000000000000000000000000000000
38
+ 23
39
+ 0000000000000000000000000000000000000000000000000000000000000000
40
+ 0000000000000000000000000000000000000000000000000000000000000000
41
+ 00004F6451E84F675214520F5215521852A84F33534B534F518F5350521C538B
42
+ 522153BE52AE53D2541653FF538E540054305405541354155445541956E35735
43
+ 57365731573258EE59054E545447593656E756E55741597A574C5986574B5752
44
+ 5B865F535C1859985C3D5C78598E59A25990598F5C8059A15E085B925C285C2A
45
+ 5C8D5EF55F0E5C8B5C895C925FD35FDA5C935FDB5DE0620F625D625F62676257
46
+ 9F505E8D65EB65EA5F7867375FD2673267366B226BCE5FEE6C586C516C770000
47
+ 0000000000000000000000000000000000000000000000000000000000000000
48
+ 0000000000000000000000000000000000000000000000000000000000000000
49
+ 0000000000000000000000000000000000000000000000000000000000000000
50
+ 0000000000000000000000000000000000000000000000000000000000000000
51
+ 0000000000000000000000000000000000000000000000000000000000000000
52
+ 0000000000000000000000000000000000000000000000000000000000000000
53
+ 0000000000000000000000000000000000000000000000000000000000000000
54
+ 0000000000000000000000000000000000000000000000000000000000000000
55
+ 24
56
+ 0000000000000000000000000000000000000000000000000000000000000000
57
+ 0000000000000000000000000000000000000000000000000000000000000000
58
+ 00006C3C5FFA6C5A5FF76C53706F7072706E6283628C707372B172B26287738F
59
+ 627B627A6270793C6288808D808E6272827B65F08D718FB99096909A67454E24
60
+ 4E7167554E9C4F454F4A4F394F37674B4F324F426C1A4F444F4B6C6B4F404F35
61
+ 4F3151516C6F5150514E6C6D6C87519D6C9C51B551B851EC522352275226521F
62
+ 522B522052B452B372C65325533B537473957397739373947392544D75397594
63
+ 543A7681793D5444544C5423541A5432544B5421828F54345449545054220000
64
+ 0000000000000000000000000000000000000000000000000000000000000000
65
+ 0000000000000000000000000000000000000000000000000000000000000000
66
+ 0000000000000000000000000000000000000000000000000000000000000000
67
+ 0000000000000000000000000000000000000000000000000000000000000000
68
+ 0000000000000000000000000000000000000000000000000000000000000000
69
+ 0000000000000000000000000000000000000000000000000000000000000000
70
+ 0000000000000000000000000000000000000000000000000000000000000000
71
+ 0000000000000000000000000000000000000000000000000000000000000000
72
+ 25
73
+ 0000000000000000000000000000000000000000000000000000000000000000
74
+ 0000000000000000000000000000000000000000000000000000000000000000
75
+ 0000543F5451545A542F8FC956E956F256F356EF56ED56EC56E6574896285744
76
+ 573F573C575357564F85575F5743575857574F744F894F8457464F4C573D4F6A
77
+ 57425754575558F158F258F0590B9EA656F1593D4F955994598C519E599C51BE
78
+ 5235599F5233599B52315989599A530B658853925B8D54875BFE5BFF5BFD5C2B
79
+ 54885C845C8E5C9C5465546C5C855DF55E09546F54615E0B54985E925E905F03
80
+ 56F75F1E5F6357725FE75FFE5FE65FDC5FCE57805FFC5FDF5FEC5FF657620000
81
+ 0000000000000000000000000000000000000000000000000000000000000000
82
+ 0000000000000000000000000000000000000000000000000000000000000000
83
+ 0000000000000000000000000000000000000000000000000000000000000000
84
+ 0000000000000000000000000000000000000000000000000000000000000000
85
+ 0000000000000000000000000000000000000000000000000000000000000000
86
+ 0000000000000000000000000000000000000000000000000000000000000000
87
+ 0000000000000000000000000000000000000000000000000000000000000000
88
+ 0000000000000000000000000000000000000000000000000000000000000000
89
+ 26
90
+ 0000000000000000000000000000000000000000000000000000000000000000
91
+ 0000000000000000000000000000000000000000000000000000000000000000
92
+ 00005FF25FF05FF95945621359BA59CF623B623C628259C159B659BC6278628B
93
+ 59B1629E62A5629B629C6299628D6285629D62755C445C475CAE65F65CA05CB5
94
+ 5CAF66F5675B5C9F675467525CA267586744674A67615CB66C7F6C916C9E5E14
95
+ 6C6E6C7C6C9F6C755F246C566CA26C795F7D6CA15FE56CAA6CA0601970797077
96
+ 707E600A7075707B7264601E72BB72BC72C772B972BE72B66011600C7398601C
97
+ 6214623D62AD7593768062BE768376C076C162AE62B377F477F562A97ACC0000
98
+ 0000000000000000000000000000000000000000000000000000000000000000
99
+ 0000000000000000000000000000000000000000000000000000000000000000
100
+ 0000000000000000000000000000000000000000000000000000000000000000
101
+ 0000000000000000000000000000000000000000000000000000000000000000
102
+ 0000000000000000000000000000000000000000000000000000000000000000
103
+ 0000000000000000000000000000000000000000000000000000000000000000
104
+ 0000000000000000000000000000000000000000000000000000000000000000
105
+ 0000000000000000000000000000000000000000000000000000000000000000
106
+ 27
107
+ 0000000000000000000000000000000000000000000000000000000000000000
108
+ 0000000000000000000000000000000000000000000000000000000000000000
109
+ 00007ACD7CFA809F80918097809466048286828C65FB8295660B866C66058FB5
110
+ 8FBE8FC766F68FC190A990A4678E6792677690A896279626962B963396349629
111
+ 4E3D679F4E9D4F934F8A677D67814F6D4F8E4FA04FA24FA14F9F4FA36C1D4F72
112
+ 6CEC4F8C51566CD96CB651906CAD6CE76CB751ED51FE522F6CC3523C52345239
113
+ 52B952B552BF53556C9D5376537A53936D3053C153C253D554856CCF545F5493
114
+ 548954799EFE548F5469546D70915494546A548A708356FD56FB56F872D80000
115
+ 0000000000000000000000000000000000000000000000000000000000000000
116
+ 0000000000000000000000000000000000000000000000000000000000000000
117
+ 0000000000000000000000000000000000000000000000000000000000000000
118
+ 0000000000000000000000000000000000000000000000000000000000000000
119
+ 0000000000000000000000000000000000000000000000000000000000000000
120
+ 0000000000000000000000000000000000000000000000000000000000000000
121
+ 0000000000000000000000000000000000000000000000000000000000000000
122
+ 0000000000000000000000000000000000000000000000000000000000000000
123
+ 28
124
+ 0000000000000000000000000000000000000000000000000000000000000000
125
+ 0000000000000000000000000000000000000000000000000000000000000000
126
+ 000056FC56F6576557815763576772D1576E5778577F73A673A258F3594B594C
127
+ 74DD74E8753F59AD753E59C4759859C259B076F176F076F577F859BF77F959C9
128
+ 59B859AC7942793F79C559B759D77AFB5B607CFD5B965B9E5B945B9F5B9D80B5
129
+ 5C005C1982A082C05C495C4A82985CBB5CC182A782AE82BC5CB95C9E5CB45CBA
130
+ 5DF65E135E125E7782C35E9882A25E995E9D5EF8866E5EF98FD25F065F218FCD
131
+ 5F255F558FD790B290B45F845F8360306007963D6036963A96434FCD5FE90000
132
+ 0000000000000000000000000000000000000000000000000000000000000000
133
+ 0000000000000000000000000000000000000000000000000000000000000000
134
+ 0000000000000000000000000000000000000000000000000000000000000000
135
+ 0000000000000000000000000000000000000000000000000000000000000000
136
+ 0000000000000000000000000000000000000000000000000000000000000000
137
+ 0000000000000000000000000000000000000000000000000000000000000000
138
+ 0000000000000000000000000000000000000000000000000000000000000000
139
+ 0000000000000000000000000000000000000000000000000000000000000000
140
+ 29
141
+ 0000000000000000000000000000000000000000000000000000000000000000
142
+ 0000000000000000000000000000000000000000000000000000000000000000
143
+ 0000603D60084FC94FCB62BA62B24FDC62B762E462A74FDB4FC74FD662D562E1
144
+ 62DD62A662C162C562C062DF62E062DE53976589539965A665BA54A165FF54A5
145
+ 66176618660165FE54AE670C54B6676B67966782678A54BC67A354BE67A2678F
146
+ 54B067F967806B266B276B686B69579D6B816BB46BD1578F57996C1C579A5795
147
+ 58F4590D59536C976C6C6CDF5A006CEA59DD6CE46CD86CB26CCE6CC859F2708B
148
+ 70887090708F59F570877089708D70815BA8708C5CD05CD872405CD75CCB0000
149
+ 0000000000000000000000000000000000000000000000000000000000000000
150
+ 0000000000000000000000000000000000000000000000000000000000000000
151
+ 0000000000000000000000000000000000000000000000000000000000000000
152
+ 0000000000000000000000000000000000000000000000000000000000000000
153
+ 0000000000000000000000000000000000000000000000000000000000000000
154
+ 0000000000000000000000000000000000000000000000000000000000000000
155
+ 0000000000000000000000000000000000000000000000000000000000000000
156
+ 0000000000000000000000000000000000000000000000000000000000000000
157
+ 2A
158
+ 0000000000000000000000000000000000000000000000000000000000000000
159
+ 0000000000000000000000000000000000000000000000000000000000000000
160
+ 00007265726672685CC95CC772CD72D372DB5CD472CF73A773A3739E5CDF73AF
161
+ 5DF95E2173AA739C5E2075427544753B75415E9B759B759E5F0779C479C379C6
162
+ 6037603979C7607279CA604560537ACF7C767C747CFF7CFC6042605F7F5980A8
163
+ 6058606680B0624280B362CF80A480B680A780AC630380A65367820E82C4833E
164
+ 829C63006313631462FA631582AA62F082C9654365AA82A682B2662166326635
165
+ 8FCC8FD98FCA8FD88FCF90B7661D90AD90B99637670F9641963E96B697510000
166
+ 0000000000000000000000000000000000000000000000000000000000000000
167
+ 0000000000000000000000000000000000000000000000000000000000000000
168
+ 0000000000000000000000000000000000000000000000000000000000000000
169
+ 0000000000000000000000000000000000000000000000000000000000000000
170
+ 0000000000000000000000000000000000000000000000000000000000000000
171
+ 0000000000000000000000000000000000000000000000000000000000000000
172
+ 0000000000000000000000000000000000000000000000000000000000000000
173
+ 0000000000000000000000000000000000000000000000000000000000000000
174
+ 2B
175
+ 0000000000000000000000000000000000000000000000000000000000000000
176
+ 0000000000000000000000000000000000000000000000000000000000000000
177
+ 000097634E574E794EB24EB04EAF4EB14FD24FD567E44FBE4FB84FB04FB14FC8
178
+ 67F667EE4FC64FCC4FE54FE34FB4516A67B2519F67C651C167CC51C251C35245
179
+ 524867C967CA524F67EA67CB52C552CA52C453275358537D6BE053DD53DC53DA
180
+ 53D954B96D1F54D054B454CA6D0A54A354DA54A46D1954B2549E549F54B56D1D
181
+ 6D4254CD6D1854CC6D03570057AC5791578E578D579257A1579057A657A8709F
182
+ 579C579657A770A170B470B570A958F572495909590872705952726E72CA0000
183
+ 0000000000000000000000000000000000000000000000000000000000000000
184
+ 0000000000000000000000000000000000000000000000000000000000000000
185
+ 0000000000000000000000000000000000000000000000000000000000000000
186
+ 0000000000000000000000000000000000000000000000000000000000000000
187
+ 0000000000000000000000000000000000000000000000000000000000000000
188
+ 0000000000000000000000000000000000000000000000000000000000000000
189
+ 0000000000000000000000000000000000000000000000000000000000000000
190
+ 0000000000000000000000000000000000000000000000000000000000000000
191
+ 2C
192
+ 0000000000000000000000000000000000000000000000000000000000000000
193
+ 0000000000000000000000000000000000000000000000000000000000000000
194
+ 000059DF72E859EB59EF59F059D55A0D5A0459F95A0259F859E259D959E75B6A
195
+ 73B473EB5BAB73C75C1B5C2F73C6663C73CB74EC74EE5CD15CDC5CE65CE15CCD
196
+ 76795CE25CDD5CE55DFB5DFA5E1E76F75EA176FA77E75EFC5EFB5F2F78127805
197
+ 5F66780F780E7809605C7813604E6051794B794560236031607C605279D66060
198
+ 604A60617AD162187B017C7A7C787C797C7F7C807C81631F631762EA63216304
199
+ 63057FBE6531654465408014654265BE80C76629661B80C86623662C661A0000
200
+ 0000000000000000000000000000000000000000000000000000000000000000
201
+ 0000000000000000000000000000000000000000000000000000000000000000
202
+ 0000000000000000000000000000000000000000000000000000000000000000
203
+ 0000000000000000000000000000000000000000000000000000000000000000
204
+ 0000000000000000000000000000000000000000000000000000000000000000
205
+ 0000000000000000000000000000000000000000000000000000000000000000
206
+ 0000000000000000000000000000000000000000000000000000000000000000
207
+ 0000000000000000000000000000000000000000000000000000000000000000
208
+ 2D
209
+ 0000000000000000000000000000000000000000000000000000000000000000
210
+ 0000000000000000000000000000000000000000000000000000000000000000
211
+ 00006630663B661E6637663880C9670E80D780E667E867D6822167C767BC6852
212
+ 67BF67D567FE836367FB833A67B168016805680067D782F26B2A6B6B82FB82F6
213
+ 82F082EA6BE182E082FA6D236CFF6D146D056D136D066D21884E6D156CAF6CF4
214
+ 6D026D458A076D268FE36D448FEE6D2470A590BD70A390D570A270BB70A070AA
215
+ 90C891D470A870B670B270A79653964A70B9722E5005723C5013726D5030501B
216
+ 72E772ED503372EC72E572E24FF773C473BD73CF73C973C173D0503173CE0000
217
+ 0000000000000000000000000000000000000000000000000000000000000000
218
+ 0000000000000000000000000000000000000000000000000000000000000000
219
+ 0000000000000000000000000000000000000000000000000000000000000000
220
+ 0000000000000000000000000000000000000000000000000000000000000000
221
+ 0000000000000000000000000000000000000000000000000000000000000000
222
+ 0000000000000000000000000000000000000000000000000000000000000000
223
+ 0000000000000000000000000000000000000000000000000000000000000000
224
+ 0000000000000000000000000000000000000000000000000000000000000000
225
+ 2E
226
+ 0000000000000000000000000000000000000000000000000000000000000000
227
+ 0000000000000000000000000000000000000000000000000000000000000000
228
+ 000074ED74EB519374EF754975507546754A5261754D75A6525E525F525575A8
229
+ 52CD530E76C776FF54E276FD77E6780A54F37804780B78075504781578085511
230
+ 79D379D479D079D77A7C54F854E07A7D7A837A8257017AD47AD57AD37AD07AD2
231
+ 7AFE7AFC7C777C7C7C7B57B657BF57C757D057B957C1590E594A7F8F80D35A2D
232
+ 80CB80D25A0F810980E280DF80C65B6C822482F782D882DD5C565C5482F882FC
233
+ 5CEE5CF182E95D0082EE5E2982D0830E82E2830B82FD517986765F6786780000
234
+ 0000000000000000000000000000000000000000000000000000000000000000
235
+ 0000000000000000000000000000000000000000000000000000000000000000
236
+ 0000000000000000000000000000000000000000000000000000000000000000
237
+ 0000000000000000000000000000000000000000000000000000000000000000
238
+ 0000000000000000000000000000000000000000000000000000000000000000
239
+ 0000000000000000000000000000000000000000000000000000000000000000
240
+ 0000000000000000000000000000000000000000000000000000000000000000
241
+ 0000000000000000000000000000000000000000000000000000000000000000
242
+ 2F
243
+ 0000000000000000000000000000000000000000000000000000000000000000
244
+ 0000000000000000000000000000000000000000000000000000000000000000
245
+ 0000605A60678675867D6088884288666081898C8A0560958A0660978C9F609C
246
+ 8FF18FE78FE98FEF90C290BC632C90C690C06336634390CD90C9634B90C4633C
247
+ 958163419CEC50324FF9501D4FFF50044FF05003635150024FFC4FF250245008
248
+ 5036502E65C35010503850394FFD50564FFB51A351A651A1681A684951C751C9
249
+ 5260526452595265526752575263682B5253682F52CF684452CE52D052D152CC
250
+ 68266828682E550D54F46825551354EF54F554F9550255006B6D808255180000
251
+ 0000000000000000000000000000000000000000000000000000000000000000
252
+ 0000000000000000000000000000000000000000000000000000000000000000
253
+ 0000000000000000000000000000000000000000000000000000000000000000
254
+ 0000000000000000000000000000000000000000000000000000000000000000
255
+ 0000000000000000000000000000000000000000000000000000000000000000
256
+ 0000000000000000000000000000000000000000000000000000000000000000
257
+ 0000000000000000000000000000000000000000000000000000000000000000
258
+ 0000000000000000000000000000000000000000000000000000000000000000
259
+ 30
260
+ 0000000000000000000000000000000000000000000000000000000000000000
261
+ 0000000000000000000000000000000000000000000000000000000000000000
262
+ 000054F054F66BE86BE355196BE7570557C96D6357B757CD6D0D6D616D9257BE
263
+ 57BB6D6D57DB57C857C457C557D157CA57C06D676D605A215A2A6D7C5A1D6D82
264
+ 5A0B6D2F6D686D8B6D7E5A226D846D165A246D7B5A145A316D905A2F5A1A5A12
265
+ 70DD70CB5A2670E270D75BBC5BBB5BB75C055C065C525C5370C770DA5CFA5CEB
266
+ 72425CF35CF55CE95CEF72FA5E2A5E305E2E5E2C5E2F5EAF5EA973D95EFD5F32
267
+ 5F8E5F935F8F604F609973D2607E73D46074604B6073607573E874DE60560000
268
+ 0000000000000000000000000000000000000000000000000000000000000000
269
+ 0000000000000000000000000000000000000000000000000000000000000000
270
+ 0000000000000000000000000000000000000000000000000000000000000000
271
+ 0000000000000000000000000000000000000000000000000000000000000000
272
+ 0000000000000000000000000000000000000000000000000000000000000000
273
+ 0000000000000000000000000000000000000000000000000000000000000000
274
+ 0000000000000000000000000000000000000000000000000000000000000000
275
+ 0000000000000000000000000000000000000000000000000000000000000000
276
+ 31
277
+ 0000000000000000000000000000000000000000000000000000000000000000
278
+ 0000000000000000000000000000000000000000000000000000000000000000
279
+ 000060A9608B60A6755B609360AE609E60A7624575C075BF632E75BA63526330
280
+ 635B771B6319631B77126331635D6337633563537722635C633F654B78227835
281
+ 658B7828659A66506646664E6640782A664B6648795B66606644664D79526837
282
+ 682479EC79E0681B683679EA682C681968566847683E681E7A8B681568226827
283
+ 685968586855683068236B2E6B2B6B306B6C7B096B8B7C846BE96BEA6BE56D6B
284
+ 7C8D7C856D736D577D117D0E6D5D6D566D8F6D5B6D1C6D9A6D9B6D997F610000
285
+ 0000000000000000000000000000000000000000000000000000000000000000
286
+ 0000000000000000000000000000000000000000000000000000000000000000
287
+ 0000000000000000000000000000000000000000000000000000000000000000
288
+ 0000000000000000000000000000000000000000000000000000000000000000
289
+ 0000000000000000000000000000000000000000000000000000000000000000
290
+ 0000000000000000000000000000000000000000000000000000000000000000
291
+ 0000000000000000000000000000000000000000000000000000000000000000
292
+ 0000000000000000000000000000000000000000000000000000000000000000
293
+ 32
294
+ 0000000000000000000000000000000000000000000000000000000000000000
295
+ 0000000000000000000000000000000000000000000000000000000000000000
296
+ 00006D816D717F5D7F5B6D726D5C6D9670C470DB70CC70D070E370DF80F270D6
297
+ 70EE70D580FB81008201822F727A833372F573028319835173E273EC73D573F9
298
+ 73DF73E683228342834E831B73E473E174F3834D831683248320755675557558
299
+ 7557755E75C38353831E75B4834B75B18348865376CB76CC772A86967716770F
300
+ 869E8687773F772B770E772486857721771877DD86A7869578247836869D7958
301
+ 79598843796279DA79D9887679E179E579E879DB886F79E279F08874887C0000
302
+ 0000000000000000000000000000000000000000000000000000000000000000
303
+ 0000000000000000000000000000000000000000000000000000000000000000
304
+ 0000000000000000000000000000000000000000000000000000000000000000
305
+ 0000000000000000000000000000000000000000000000000000000000000000
306
+ 0000000000000000000000000000000000000000000000000000000000000000
307
+ 0000000000000000000000000000000000000000000000000000000000000000
308
+ 0000000000000000000000000000000000000000000000000000000000000000
309
+ 0000000000000000000000000000000000000000000000000000000000000000
310
+ 33
311
+ 0000000000000000000000000000000000000000000000000000000000000000
312
+ 0000000000000000000000000000000000000000000000000000000000000000
313
+ 00008A128C477ADA7ADD8CA47ADB7ADC8D788DB57B0D7B0B7B147C8E7C868FF5
314
+ 7C877C837C8B90048FFC8FF690D67D2490D990DA90E37D257F627F937F997F97
315
+ 90DC90E47FC47FC6800A91D591E28040803C803B80F680FF80EE810481038107
316
+ 506A506180F750605053822D505D82278229831F8357505B504A506250158321
317
+ 505F506983188358506450465040506E50738684869F869B868986A68692868F
318
+ 86A0884F8878887A886E887B88848873555055348A0D8A0B8A19553655350000
319
+ 0000000000000000000000000000000000000000000000000000000000000000
320
+ 0000000000000000000000000000000000000000000000000000000000000000
321
+ 0000000000000000000000000000000000000000000000000000000000000000
322
+ 0000000000000000000000000000000000000000000000000000000000000000
323
+ 0000000000000000000000000000000000000000000000000000000000000000
324
+ 0000000000000000000000000000000000000000000000000000000000000000
325
+ 0000000000000000000000000000000000000000000000000000000000000000
326
+ 0000000000000000000000000000000000000000000000000000000000000000
327
+ 34
328
+ 0000000000000000000000000000000000000000000000000000000000000000
329
+ 0000000000000000000000000000000000000000000000000000000000000000
330
+ 0000553055525545550C8FF990099008553990DE9151553B554091DB91DF91DE
331
+ 91D691E095859660965957F4965657ED57FD96BD57F8580B5042505958075044
332
+ 50665052505450715050507B507C505857E758015079506C507851A851D151CF
333
+ 5268527652D45A5553A053C45A385558554C55685A5F55495A6C5A53555D5529
334
+ 5A43555455535A44555A5A48553A553F552B57EA5A4C57EF5A695A4757DD57FE
335
+ 5A4257DE57E65B6E57E857FF580358F768A6591F5D1A595B595D595E5D0D0000
336
+ 0000000000000000000000000000000000000000000000000000000000000000
337
+ 0000000000000000000000000000000000000000000000000000000000000000
338
+ 0000000000000000000000000000000000000000000000000000000000000000
339
+ 0000000000000000000000000000000000000000000000000000000000000000
340
+ 0000000000000000000000000000000000000000000000000000000000000000
341
+ 0000000000000000000000000000000000000000000000000000000000000000
342
+ 0000000000000000000000000000000000000000000000000000000000000000
343
+ 0000000000000000000000000000000000000000000000000000000000000000
344
+ 35
345
+ 0000000000000000000000000000000000000000000000000000000000000000
346
+ 0000000000000000000000000000000000000000000000000000000000000000
347
+ 00005D265A2B5D0F5A3B5D125D235A615A3A5A6E5A4B5A6B5EB45EB95A455A4E
348
+ 5A685A3D5A715A3F5A6F5A7560905A735A2C5A595A545A4F5A6360CF60E45BC8
349
+ 60DD5BC360B15C5B5C6160CA5D215D0A5D0960C05D2C5D08638A63825D2A5D15
350
+ 639E5D105D1363975D2F5D18636F5DE35E395E355E3A5E32639C636D63AE637C
351
+ 5EBB5EBA5F345F39638563816391638D6098655360D066656661665B60D760AA
352
+ 666260A160A4688760EE689C60E7686E68AE60DE6956686F637E638B68A90000
353
+ 0000000000000000000000000000000000000000000000000000000000000000
354
+ 0000000000000000000000000000000000000000000000000000000000000000
355
+ 0000000000000000000000000000000000000000000000000000000000000000
356
+ 0000000000000000000000000000000000000000000000000000000000000000
357
+ 0000000000000000000000000000000000000000000000000000000000000000
358
+ 0000000000000000000000000000000000000000000000000000000000000000
359
+ 0000000000000000000000000000000000000000000000000000000000000000
360
+ 0000000000000000000000000000000000000000000000000000000000000000
361
+ 36
362
+ 0000000000000000000000000000000000000000000000000000000000000000
363
+ 0000000000000000000000000000000000000000000000000000000000000000
364
+ 0000687563796386639368776373636A686B636C68AA637F687163B263BA6896
365
+ 688B6366637468A4655A687B654E654D658D658E65AD6B3365C765CA6B9165C9
366
+ 6B8D65E366576C2A66636667671A671967166DAC6DE9689E68B6689868736E00
367
+ 689A688E68B768DB68A5686C68C168846DDB6DF46895687A68996DF068B868B9
368
+ 68706DCF6B356DD06B906BBB6BED6DD76DCD6DE36DC16DC36DCE70F771176DAD
369
+ 6E0470F06DB970F36DE770FC6E086E0671136E0A6DB070F66DF86E0C710E0000
370
+ 0000000000000000000000000000000000000000000000000000000000000000
371
+ 0000000000000000000000000000000000000000000000000000000000000000
372
+ 0000000000000000000000000000000000000000000000000000000000000000
373
+ 0000000000000000000000000000000000000000000000000000000000000000
374
+ 0000000000000000000000000000000000000000000000000000000000000000
375
+ 0000000000000000000000000000000000000000000000000000000000000000
376
+ 0000000000000000000000000000000000000000000000000000000000000000
377
+ 0000000000000000000000000000000000000000000000000000000000000000
378
+ 37
379
+ 0000000000000000000000000000000000000000000000000000000000000000
380
+ 0000000000000000000000000000000000000000000000000000000000000000
381
+ 00006DB1727B6E026E076E096E016E176DFF6E12730A730871037107710170F5
382
+ 70F1710870F2710F740170FE7407740073FA731A7310730E740273F374087564
383
+ 73FB75CE75D275CF751B752375617568768F756775D37739772F769077317732
384
+ 76D576D776D67730773B7726784877407849771E784A784C782678477850784B
385
+ 7851784F78427846796B796E796C79F279F879F179F579F379F97A907B357B3B
386
+ 7A9A7A937A917AE17B247B337B217B1C7B167B177B367B1F7B2F7C937C990000
387
+ 0000000000000000000000000000000000000000000000000000000000000000
388
+ 0000000000000000000000000000000000000000000000000000000000000000
389
+ 0000000000000000000000000000000000000000000000000000000000000000
390
+ 0000000000000000000000000000000000000000000000000000000000000000
391
+ 0000000000000000000000000000000000000000000000000000000000000000
392
+ 0000000000000000000000000000000000000000000000000000000000000000
393
+ 0000000000000000000000000000000000000000000000000000000000000000
394
+ 0000000000000000000000000000000000000000000000000000000000000000
395
+ 38
396
+ 0000000000000000000000000000000000000000000000000000000000000000
397
+ 0000000000000000000000000000000000000000000000000000000000000000
398
+ 00007C9A7C9C7C947D497C967D347D377D3D7D2D7D367D4C7D457D2C7D487D41
399
+ 7D477F3B7D3F7D4A7D3B7D288008801A7F9C801D7F9B8049804580447C9B7FD1
400
+ 7FC7812A812E801F801E81318047811A8134811781258119811B831D83718384
401
+ 8380837283A18127837983918211839F83AD823A8234832382748385839C83B7
402
+ 8658865A8373865786B2838F86AE8395839983758845889C889488A3888F88A5
403
+ 88A988A6888A88A0889089928991899483B08A268A328A2883AE83768A1C0000
404
+ 0000000000000000000000000000000000000000000000000000000000000000
405
+ 0000000000000000000000000000000000000000000000000000000000000000
406
+ 0000000000000000000000000000000000000000000000000000000000000000
407
+ 0000000000000000000000000000000000000000000000000000000000000000
408
+ 0000000000000000000000000000000000000000000000000000000000000000
409
+ 0000000000000000000000000000000000000000000000000000000000000000
410
+ 0000000000000000000000000000000000000000000000000000000000000000
411
+ 0000000000000000000000000000000000000000000000000000000000000000
412
+ 39
413
+ 0000000000000000000000000000000000000000000000000000000000000000
414
+ 0000000000000000000000000000000000000000000000000000000000000000
415
+ 000086568A2B8A2086C28A2986C586BA86B08A218C3A86B38C5B8C588C7C86BB
416
+ 8CA68CAE8CAD8D6588528D7E88958D7C8D7F8D7A8DBD889188A18DC08DBB8EAD
417
+ 8EAF8ED6889788A488AC888C88938ED9898289D69012900E90258A27901390EE
418
+ 8C3990AB90F78C5D9159915491F291F091E591F68DC28DB995878DC1965A8EDE
419
+ 8EDD966E8ED78EE08EE19679900B98E198E6900C9EC49ED24E8090F04E81508F
420
+ 50975088508990EC90E950815160915A91535E4251D391F491F151D251D60000
421
+ 0000000000000000000000000000000000000000000000000000000000000000
422
+ 0000000000000000000000000000000000000000000000000000000000000000
423
+ 0000000000000000000000000000000000000000000000000000000000000000
424
+ 0000000000000000000000000000000000000000000000000000000000000000
425
+ 0000000000000000000000000000000000000000000000000000000000000000
426
+ 0000000000000000000000000000000000000000000000000000000000000000
427
+ 0000000000000000000000000000000000000000000000000000000000000000
428
+ 0000000000000000000000000000000000000000000000000000000000000000
429
+ 3A
430
+ 0000000000000000000000000000000000000000000000000000000000000000
431
+ 0000000000000000000000000000000000000000000000000000000000000000
432
+ 0000527391F9527091EB91F791E853A853A653C5559755DE966D966B559655B4
433
+ 96BF55859804559B55A0509B555950945586508B50A355AF557A508E509D5068
434
+ 559E509255A9570F570E581A5312581F53A4583C5818583E582655AD583A5645
435
+ 5822559358FB5963596455815AA85AA35A825A885AA15A855A9855955A99558E
436
+ 5A895A815A965A80581E58275A91582857F5584858255ACF581B5833583F5836
437
+ 582E58395A875AA0582C5A7959615A865AAB5AAA5AA45A8D5A7E5A785BD50000
438
+ 0000000000000000000000000000000000000000000000000000000000000000
439
+ 0000000000000000000000000000000000000000000000000000000000000000
440
+ 0000000000000000000000000000000000000000000000000000000000000000
441
+ 0000000000000000000000000000000000000000000000000000000000000000
442
+ 0000000000000000000000000000000000000000000000000000000000000000
443
+ 0000000000000000000000000000000000000000000000000000000000000000
444
+ 0000000000000000000000000000000000000000000000000000000000000000
445
+ 0000000000000000000000000000000000000000000000000000000000000000
446
+ 3B
447
+ 0000000000000000000000000000000000000000000000000000000000000000
448
+ 0000000000000000000000000000000000000000000000000000000000000000
449
+ 00005A7C5AA55AAC5C1E5C5F5C5E5D445D3E5A975D485D1C5AA95D5B5D4D5A8C
450
+ 5A9C5D575A935D535D4F5BCD5D3B5D465BD15BCA5E465E475C305E485EC05EBD
451
+ 5EBF5D4B5F115D355F3E5F3B5D555F3A5D3A5D525D3D5FA75D5960EA5D396107
452
+ 6122610C5D325D3660B360D660D25E4160E360E560E95FAB60C9611160FD60E2
453
+ 60CE611E61206121621E611663E263DE63E660F860FC60FE60C163F8611863FE
454
+ 63C163BF63F763D1655F6560656163B063CE65D163E863EF667D666B667F0000
455
+ 0000000000000000000000000000000000000000000000000000000000000000
456
+ 0000000000000000000000000000000000000000000000000000000000000000
457
+ 0000000000000000000000000000000000000000000000000000000000000000
458
+ 0000000000000000000000000000000000000000000000000000000000000000
459
+ 0000000000000000000000000000000000000000000000000000000000000000
460
+ 0000000000000000000000000000000000000000000000000000000000000000
461
+ 0000000000000000000000000000000000000000000000000000000000000000
462
+ 0000000000000000000000000000000000000000000000000000000000000000
463
+ 3C
464
+ 0000000000000000000000000000000000000000000000000000000000000000
465
+ 0000000000000000000000000000000000000000000000000000000000000000
466
+ 000063CA63E066736681666D6669646163DF671E68ED63DC63C463D863D36903
467
+ 63C768FE68E5691E690263D763D9690968CA690065646901691868E268CF659D
468
+ 692E68C568FF65D2691C68C3667B6B6F66716B6E666A6BBE67016BF46C2D6904
469
+ 6DB66E756E1E68EA6E18690F6E4868F76E4F68E46E426E6A6E706DFE68E16907
470
+ 6E6D69086E7B6E7E6E5968EF6E5769146E806E5068FD6E296E766E2A6E4C712A
471
+ 68CE7135712C7137711D68F468D1713868D47134712B7133712771246B3B0000
472
+ 0000000000000000000000000000000000000000000000000000000000000000
473
+ 0000000000000000000000000000000000000000000000000000000000000000
474
+ 0000000000000000000000000000000000000000000000000000000000000000
475
+ 0000000000000000000000000000000000000000000000000000000000000000
476
+ 0000000000000000000000000000000000000000000000000000000000000000
477
+ 0000000000000000000000000000000000000000000000000000000000000000
478
+ 0000000000000000000000000000000000000000000000000000000000000000
479
+ 0000000000000000000000000000000000000000000000000000000000000000
480
+ 3D
481
+ 0000000000000000000000000000000000000000000000000000000000000000
482
+ 0000000000000000000000000000000000000000000000000000000000000000
483
+ 0000712D7232728372827287730673247338732A732C732B6DFC732F73287417
484
+ 6E496E88741974386E45741F7414743C73F7741C74157418743974F975246E51
485
+ 6E3B6E03756E756D7571758E6E6175E56E286E606E716E6B769476B36E3076D9
486
+ 6E657748774977436E776E55774277DF6E66786378766E5A785F786679667971
487
+ 712E713179767984797579FF7A0771287A0E7A09724B725A7288728972867285
488
+ 7AE77AE27B55733073227B437B577B6C7B427B5373267B417335730C7CA70000
489
+ 0000000000000000000000000000000000000000000000000000000000000000
490
+ 0000000000000000000000000000000000000000000000000000000000000000
491
+ 0000000000000000000000000000000000000000000000000000000000000000
492
+ 0000000000000000000000000000000000000000000000000000000000000000
493
+ 0000000000000000000000000000000000000000000000000000000000000000
494
+ 0000000000000000000000000000000000000000000000000000000000000000
495
+ 0000000000000000000000000000000000000000000000000000000000000000
496
+ 0000000000000000000000000000000000000000000000000000000000000000
497
+ 3E
498
+ 0000000000000000000000000000000000000000000000000000000000000000
499
+ 0000000000000000000000000000000000000000000000000000000000000000
500
+ 00007CA07CA67CA47D74741A7D59742D7D607D577D6C7D7E7D6474207D5A7D5D
501
+ 752F756F756C7D767D4D7D7575E67FD37FD675E475D78060804E8145813B7747
502
+ 814881428149814081148141774C81EF81F68203786483ED785C83DA841883D2
503
+ 8408787084007868785E786284178346841483D38405841F8402841683CD83E6
504
+ 7AE6865D86D586E17B447B487B4C7B4E86EE884788467CA27C9E88BB7CA188BF
505
+ 88B47D6388B57D56899A8A437D4F7D6D8A5A7D6B7D527D548A358A388A420000
506
+ 0000000000000000000000000000000000000000000000000000000000000000
507
+ 0000000000000000000000000000000000000000000000000000000000000000
508
+ 0000000000000000000000000000000000000000000000000000000000000000
509
+ 0000000000000000000000000000000000000000000000000000000000000000
510
+ 0000000000000000000000000000000000000000000000000000000000000000
511
+ 0000000000000000000000000000000000000000000000000000000000000000
512
+ 0000000000000000000000000000000000000000000000000000000000000000
513
+ 0000000000000000000000000000000000000000000000000000000000000000
514
+ 3F
515
+ 0000000000000000000000000000000000000000000000000000000000000000
516
+ 0000000000000000000000000000000000000000000000000000000000000000
517
+ 00008A498A5D8A4B8A3D7F667FA27FA07FA18C608C5E8C7F8C7E8C8380D48CB1
518
+ 8D878152814F8D888D83814D813A8D868D8B8D828DCA8DD28204823C8DD48DC9
519
+ 8EB0833B83CF83F98EF28EE48EF38EEA83E78EFD83FC8F9D902B902A83C89028
520
+ 9029902C840183DD903A90309037903B83CB910A83D683F583C991FE922083DE
521
+ 920B84069218922283D5921B920883D1920E9213839A83C3959583EE83C483FB
522
+ 968C967B967F968183FE968286E286E686D386E386DA96EE96ED86EB96EC0000
523
+ 0000000000000000000000000000000000000000000000000000000000000000
524
+ 0000000000000000000000000000000000000000000000000000000000000000
525
+ 0000000000000000000000000000000000000000000000000000000000000000
526
+ 0000000000000000000000000000000000000000000000000000000000000000
527
+ 0000000000000000000000000000000000000000000000000000000000000000
528
+ 0000000000000000000000000000000000000000000000000000000000000000
529
+ 0000000000000000000000000000000000000000000000000000000000000000
530
+ 0000000000000000000000000000000000000000000000000000000000000000
531
+ 40
532
+ 0000000000000000000000000000000000000000000000000000000000000000
533
+ 0000000000000000000000000000000000000000000000000000000000000000
534
+ 0000975F976F86D7976D86D188488856885588BA88D798F088B888C088BE9AA9
535
+ 88BC88B79AE04EB7890188C950CC50BC899750AA50B989DB50AB50C350CD517E
536
+ 527E52798A588A4452E152E052E7538053AB53AA53A953E055EA8C8055D78CBE
537
+ 8CB055C157158D84586C8D89585C58505861586A5869585658605866585F5923
538
+ 596659688EEF8EF75ACE8EF95AC55AC38EE58EF55AD08EE88EF68EEB8EF18EEC
539
+ 8EF45B745B765BDC5BD75BDA5BDB91045C205D6D5D6690F95D645D6E91000000
540
+ 0000000000000000000000000000000000000000000000000000000000000000
541
+ 0000000000000000000000000000000000000000000000000000000000000000
542
+ 0000000000000000000000000000000000000000000000000000000000000000
543
+ 0000000000000000000000000000000000000000000000000000000000000000
544
+ 0000000000000000000000000000000000000000000000000000000000000000
545
+ 0000000000000000000000000000000000000000000000000000000000000000
546
+ 0000000000000000000000000000000000000000000000000000000000000000
547
+ 0000000000000000000000000000000000000000000000000000000000000000
548
+ 41
549
+ 0000000000000000000000000000000000000000000000000000000000000000
550
+ 0000000000000000000000000000000000000000000000000000000000000000
551
+ 00005D605F425F5A5F6E9164915F6130613A612A614361196131921A613D920F
552
+ 920C92006408643264389206643192276419921C6411921992176429641D957B
553
+ 958D958C643C96876446644796899683643A640796C8656B96F16570656D9770
554
+ 65E4669398A998EB9CE69EF9668F4E844EB6669250BF668E50AE694650CA50B4
555
+ 50C850C250B050C150BA693150CB50C9693E50B8697C694352786973527C6955
556
+ 55DB55CC6985694D69506947696769366964696155BF697D6B446B406B710000
557
+ 0000000000000000000000000000000000000000000000000000000000000000
558
+ 0000000000000000000000000000000000000000000000000000000000000000
559
+ 0000000000000000000000000000000000000000000000000000000000000000
560
+ 0000000000000000000000000000000000000000000000000000000000000000
561
+ 0000000000000000000000000000000000000000000000000000000000000000
562
+ 0000000000000000000000000000000000000000000000000000000000000000
563
+ 0000000000000000000000000000000000000000000000000000000000000000
564
+ 0000000000000000000000000000000000000000000000000000000000000000
565
+ 42
566
+ 0000000000000000000000000000000000000000000000000000000000000000
567
+ 0000000000000000000000000000000000000000000000000000000000000000
568
+ 00006B736B9C55C855F255CD6BC155C26BFA6C316C325864584F6EB86EA8586F
569
+ 6E916EBB585D6E9A5865585B6EA9586358716EB56E6C6EE85ACB6EDD6EDA6EE6
570
+ 6EAC5AB05ABF5AC86ED96EE36EE96EDB5ACA716F5AB65ACD71485A90714A716B
571
+ 5BD9714F715771745D635D4A5D6571457151716D5D6872517250724E5E4F7341
572
+ 5E4A732E73465EC574275EC674487453743D5FAF745D74566149741E74477443
573
+ 74587449612E744C7445743E61297501751E91686223757A75EE760276970000
574
+ 0000000000000000000000000000000000000000000000000000000000000000
575
+ 0000000000000000000000000000000000000000000000000000000000000000
576
+ 0000000000000000000000000000000000000000000000000000000000000000
577
+ 0000000000000000000000000000000000000000000000000000000000000000
578
+ 0000000000000000000000000000000000000000000000000000000000000000
579
+ 0000000000000000000000000000000000000000000000000000000000000000
580
+ 0000000000000000000000000000000000000000000000000000000000000000
581
+ 0000000000000000000000000000000000000000000000000000000000000000
582
+ 43
583
+ 0000000000000000000000000000000000000000000000000000000000000000
584
+ 0000000000000000000000000000000000000000000000000000000000000000
585
+ 00007698641064126409775D77647753775878827890788A6439787A787D6423
586
+ 788B787864306428788D788878927881797E798364256427640B7980641B642E
587
+ 64217A0F656F65927A1D66867AA17AA466907AE97AEA66997B627B6B67207B5E
588
+ 695F7B79694E69627B6F7B686945696A7CAE6942695769597CB069487D906935
589
+ 7D8A69337D8B7D997D9569787D877D787D977D897D986976695869417FA3694C
590
+ 693B694B7FDD8057694F8163816A816C692F697B693C815D81756B43815F0000
591
+ 0000000000000000000000000000000000000000000000000000000000000000
592
+ 0000000000000000000000000000000000000000000000000000000000000000
593
+ 0000000000000000000000000000000000000000000000000000000000000000
594
+ 0000000000000000000000000000000000000000000000000000000000000000
595
+ 0000000000000000000000000000000000000000000000000000000000000000
596
+ 0000000000000000000000000000000000000000000000000000000000000000
597
+ 0000000000000000000000000000000000000000000000000000000000000000
598
+ 0000000000000000000000000000000000000000000000000000000000000000
599
+ 44
600
+ 0000000000000000000000000000000000000000000000000000000000000000
601
+ 0000000000000000000000000000000000000000000000000000000000000000
602
+ 00006B48817D816D6BFB6BFC8241844F84846E9B847F6EC88448842A847B8472
603
+ 8464842E845C84536EC6844184C86EC184628480843E848384716EA6844A8455
604
+ 84586EC36EDC6ED886FC86FD87156E8D871686FF6EBF6EB36ED0885888CF88E0
605
+ 6EA371477154715289E78A6A8A80715D8A6F8A6571788A788A7D8A8871587143
606
+ 8A648A7E715F8A678C638C88714D8CCD724F8CC9728C8DED7290728E733C7342
607
+ 733B733A73408EB1734974448F048F9E8FA090439046904890459040904C0000
608
+ 0000000000000000000000000000000000000000000000000000000000000000
609
+ 0000000000000000000000000000000000000000000000000000000000000000
610
+ 0000000000000000000000000000000000000000000000000000000000000000
611
+ 0000000000000000000000000000000000000000000000000000000000000000
612
+ 0000000000000000000000000000000000000000000000000000000000000000
613
+ 0000000000000000000000000000000000000000000000000000000000000000
614
+ 0000000000000000000000000000000000000000000000000000000000000000
615
+ 0000000000000000000000000000000000000000000000000000000000000000
616
+ 45
617
+ 0000000000000000000000000000000000000000000000000000000000000000
618
+ 0000000000000000000000000000000000000000000000000000000000000000
619
+ 000074427446910C9113911574FF916B9167925D9255923569839259922F923C
620
+ 928F925C926A9262925F926B926E923B92449241959A7699959976DD7755775F
621
+ 968F77529696775A7769776796F496FC776D9755788797797894788F788497EE
622
+ 97F57886980B788398F37899788098F798FF98F5798298EC98F17A117A18999A
623
+ 7A129AE29B3D9B5D9CE87A1B9CEB9CEF9CEE9E819F1450D050D950DC50D87B69
624
+ 50E150EB7B737B7150F450E250DE7B767B637CB251F47CAF7D887D8652ED0000
625
+ 0000000000000000000000000000000000000000000000000000000000000000
626
+ 0000000000000000000000000000000000000000000000000000000000000000
627
+ 0000000000000000000000000000000000000000000000000000000000000000
628
+ 0000000000000000000000000000000000000000000000000000000000000000
629
+ 0000000000000000000000000000000000000000000000000000000000000000
630
+ 0000000000000000000000000000000000000000000000000000000000000000
631
+ 0000000000000000000000000000000000000000000000000000000000000000
632
+ 0000000000000000000000000000000000000000000000000000000000000000
633
+ 46
634
+ 0000000000000000000000000000000000000000000000000000000000000000
635
+ 0000000000000000000000000000000000000000000000000000000000000000
636
+ 000052EA7D7F53327D7A53AE53B07D8355FB5603560B7D8456077D9255F87F6B
637
+ 5628561E7F6C5618561156515605571758928164588C817758785884587358AD
638
+ 58975895587758725896588D59108161596C82495AE782405AE4824584F15AEF
639
+ 5626847684795AF05D7B84655D83844084865D8B5D8C844D5D785E5284598474
640
+ 5ED05ECF85075FB35FB4843A8434847A617B8478616F6181613C614261386133
641
+ 844261606169617D6186622C62288452644C84C56457647C8447843664550000
642
+ 0000000000000000000000000000000000000000000000000000000000000000
643
+ 0000000000000000000000000000000000000000000000000000000000000000
644
+ 0000000000000000000000000000000000000000000000000000000000000000
645
+ 0000000000000000000000000000000000000000000000000000000000000000
646
+ 0000000000000000000000000000000000000000000000000000000000000000
647
+ 0000000000000000000000000000000000000000000000000000000000000000
648
+ 0000000000000000000000000000000000000000000000000000000000000000
649
+ 0000000000000000000000000000000000000000000000000000000000000000
650
+ 47
651
+ 0000000000000000000000000000000000000000000000000000000000000000
652
+ 0000000000000000000000000000000000000000000000000000000000000000
653
+ 000064626471646A6456643B6481846E644F647E646486F7870C86FA86D686F5
654
+ 657186F8870E66A5669A669C870D66A688D666A4698F69C569C8699269B288CC
655
+ 88D0898569E369C069D669D1699F69A269D289DC89E68A7669E169D5699D8A3F
656
+ 8A7769988A846B746BA18A816EF06EF38C3C8C4B6F1B6F0C6F1D6F346F286F17
657
+ 8C856F446F426F046F116EFA6F4A7191718E8D93718B718D717F718C717E717C
658
+ 71838DEE71888DE98DE372948DE773557353734F7354746C7465746674610000
659
+ 0000000000000000000000000000000000000000000000000000000000000000
660
+ 0000000000000000000000000000000000000000000000000000000000000000
661
+ 0000000000000000000000000000000000000000000000000000000000000000
662
+ 0000000000000000000000000000000000000000000000000000000000000000
663
+ 0000000000000000000000000000000000000000000000000000000000000000
664
+ 0000000000000000000000000000000000000000000000000000000000000000
665
+ 0000000000000000000000000000000000000000000000000000000000000000
666
+ 0000000000000000000000000000000000000000000000000000000000000000
667
+ 48
668
+ 0000000000000000000000000000000000000000000000000000000000000000
669
+ 0000000000000000000000000000000000000000000000000000000000000000
670
+ 0000746B746874768F0B7460903F74747506760E91107607910F911176B99114
671
+ 76B776E2916E7774777777767775923A777877719265777A715B777B78A678AE
672
+ 78B8926C924F926078B178AF923679897987923192547A2992507A2A924E7A2D
673
+ 7A2C92567A32959F7AEC7AF07B817B9E7B8396917B9296CE7BA37B9F7B9396F5
674
+ 7B867CB87CB79772980F980D980E98AC7DC87DB699AF7DD199B07DA87DAB9AAB
675
+ 7DB37DCD9CED7DCF7DA49EFD50E67F417F6F7F7150F350DB50EA50DD50E40000
676
+ 0000000000000000000000000000000000000000000000000000000000000000
677
+ 0000000000000000000000000000000000000000000000000000000000000000
678
+ 0000000000000000000000000000000000000000000000000000000000000000
679
+ 0000000000000000000000000000000000000000000000000000000000000000
680
+ 0000000000000000000000000000000000000000000000000000000000000000
681
+ 0000000000000000000000000000000000000000000000000000000000000000
682
+ 0000000000000000000000000000000000000000000000000000000000000000
683
+ 0000000000000000000000000000000000000000000000000000000000000000
684
+ 49
685
+ 0000000000000000000000000000000000000000000000000000000000000000
686
+ 0000000000000000000000000000000000000000000000000000000000000000
687
+ 000050D38023805B50EF8061805F818152805281818482135330824A824C5615
688
+ 560C561284BD8495561C849284C35602849684A584B584B384A384E484D884D5
689
+ 589884B784AD84DA84938736587A58875891873D872B87478739587B8745871D
690
+ 58FE88FF88EA5AEE88F55AD5890088ED890388E95AF35AE289EA5ADB8A9B8A8E
691
+ 8AA25AD98A9C8A948A908AA98AAC5C638A9F5D805D7D8A9D5D7A8C675D775D8A
692
+ 8CD08CD68CD48D988D9A8D975D7F5E585E598E0B8E088E018EB48EB35EDC0000
693
+ 0000000000000000000000000000000000000000000000000000000000000000
694
+ 0000000000000000000000000000000000000000000000000000000000000000
695
+ 0000000000000000000000000000000000000000000000000000000000000000
696
+ 0000000000000000000000000000000000000000000000000000000000000000
697
+ 0000000000000000000000000000000000000000000000000000000000000000
698
+ 0000000000000000000000000000000000000000000000000000000000000000
699
+ 0000000000000000000000000000000000000000000000000000000000000000
700
+ 0000000000000000000000000000000000000000000000000000000000000000
701
+ 4A
702
+ 0000000000000000000000000000000000000000000000000000000000000000
703
+ 0000000000000000000000000000000000000000000000000000000000000000
704
+ 00008FA18FA25ED2905A5F449061905F5FB6612C9125917B9176917C61739289
705
+ 92F692B192AD929292819284617A92AE9290929E616A6161615695A295A7622B
706
+ 642B644D645B645D96A0969D969F96D0647D96D1646664A6975964829764645C
707
+ 644B64539819645098149815981A646B645964656477990665A098F89901669F
708
+ 99BE99BC99B799B699C069C999B869CE699669B099C469BC99BF69999ADA9AE4
709
+ 9AE99AE89AEA9AE569BF9B2669BD69A49B4069B969CA699A69CF69B369930000
710
+ 0000000000000000000000000000000000000000000000000000000000000000
711
+ 0000000000000000000000000000000000000000000000000000000000000000
712
+ 0000000000000000000000000000000000000000000000000000000000000000
713
+ 0000000000000000000000000000000000000000000000000000000000000000
714
+ 0000000000000000000000000000000000000000000000000000000000000000
715
+ 0000000000000000000000000000000000000000000000000000000000000000
716
+ 0000000000000000000000000000000000000000000000000000000000000000
717
+ 0000000000000000000000000000000000000000000000000000000000000000
718
+ 4B
719
+ 0000000000000000000000000000000000000000000000000000000000000000
720
+ 0000000000000000000000000000000000000000000000000000000000000000
721
+ 000069AA9EBD699E69D969976990510E69B550F769C650FC510D510151DA51D9
722
+ 51DB5286528E52EE533353B16EF15647562D56546F37564B5652563156445656
723
+ 5650562B6F18564D5637564F58A258B76F7358B26EEE58AA58B558B06F3C58B4
724
+ 58A458A76F0E59265AFE6EFD5B046F395AFC6EFC5B065B0A5AFA5B0D5B005B0E
725
+ 7187719071895D9171855D8F5D905D985DA45D9B5DA35D965DE45E5A72957293
726
+ 5E5E734D5FB86157615C61A661956188747261A3618F75006164750361590000
727
+ 0000000000000000000000000000000000000000000000000000000000000000
728
+ 0000000000000000000000000000000000000000000000000000000000000000
729
+ 0000000000000000000000000000000000000000000000000000000000000000
730
+ 0000000000000000000000000000000000000000000000000000000000000000
731
+ 0000000000000000000000000000000000000000000000000000000000000000
732
+ 0000000000000000000000000000000000000000000000000000000000000000
733
+ 0000000000000000000000000000000000000000000000000000000000000000
734
+ 0000000000000000000000000000000000000000000000000000000000000000
735
+ 4C
736
+ 0000000000000000000000000000000000000000000000000000000000000000
737
+ 0000000000000000000000000000000000000000000000000000000000000000
738
+ 00006178761661856187619E7611760A6198619C7781777C622F6480649B648E
739
+ 648D649464C678B264A8648378AD64B9648664B464AF649178A064AA64A164A7
740
+ 66B666B3798B66BC66AC799466AD6A0E79886A1C6A1A7A2B7A4A6A0B7A2F69EF
741
+ 6A0C69F06A227AAC69D87B886A1269FA7B916A2A7B966A107B8C7B9B6A2969F9
742
+ 69EA6A2C6A247BA469E96B526B4F6B537CBA7DA76F106F656F757DAA7DC17DC0
743
+ 7DC56FD07DCE6F5C6F3D6F717DCC6F916F0B6F796F816F8F7DA66F596F740000
744
+ 0000000000000000000000000000000000000000000000000000000000000000
745
+ 0000000000000000000000000000000000000000000000000000000000000000
746
+ 0000000000000000000000000000000000000000000000000000000000000000
747
+ 0000000000000000000000000000000000000000000000000000000000000000
748
+ 0000000000000000000000000000000000000000000000000000000000000000
749
+ 0000000000000000000000000000000000000000000000000000000000000000
750
+ 0000000000000000000000000000000000000000000000000000000000000000
751
+ 0000000000000000000000000000000000000000000000000000000000000000
752
+ 4D
753
+ 0000000000000000000000000000000000000000000000000000000000000000
754
+ 0000000000000000000000000000000000000000000000000000000000000000
755
+ 00007DA171AE7F7371A371AD7FE57FDE71AB71A671A2818952F2725772557299
756
+ 734B747A8215849784A4748C748484BA84CE74827493747B84AB750984B484C1
757
+ 84CD84AA849A84B1778A849D779084BB78C678D378C078D278C778C284AF799F
758
+ 799D799E84B67A4184A07A387A3A7A4284DB84B07A3E7AB07BAE7BB38728876B
759
+ 7BBF872E871E7BCD87197BB28743872C8741873E8746872087327CC47CCD7CC2
760
+ 7CC67CC37CC97CC787427DF887277DED7DE2871A873087117DDC7E027E010000
761
+ 0000000000000000000000000000000000000000000000000000000000000000
762
+ 0000000000000000000000000000000000000000000000000000000000000000
763
+ 0000000000000000000000000000000000000000000000000000000000000000
764
+ 0000000000000000000000000000000000000000000000000000000000000000
765
+ 0000000000000000000000000000000000000000000000000000000000000000
766
+ 0000000000000000000000000000000000000000000000000000000000000000
767
+ 0000000000000000000000000000000000000000000000000000000000000000
768
+ 0000000000000000000000000000000000000000000000000000000000000000
769
+ 4E
770
+ 0000000000000000000000000000000000000000000000000000000000000000
771
+ 0000000000000000000000000000000000000000000000000000000000000000
772
+ 000088F27DD688FE7DE47DFE88F67E007DFC7DFD88EB7DF57DFF899F7DEB7DE5
773
+ 7F787FAE7FE78A998065806A80668068806B819481A18192819681938D968E09
774
+ 85018DFF84F88DFD84F58E0385048E068E058DFE8E00851B85038533853484ED
775
+ 9123911C853591228505911D911A91249121877D917A91729179877192A5885C
776
+ 88E6890F891B92A089A989A589EE8AB1929A8ACC8ACE92978AB792A38AB58AE9
777
+ 8AB492958AB38AC18AAF8ACA8AD09286928C92998C8E927E92878CE98CDB0000
778
+ 0000000000000000000000000000000000000000000000000000000000000000
779
+ 0000000000000000000000000000000000000000000000000000000000000000
780
+ 0000000000000000000000000000000000000000000000000000000000000000
781
+ 0000000000000000000000000000000000000000000000000000000000000000
782
+ 0000000000000000000000000000000000000000000000000000000000000000
783
+ 0000000000000000000000000000000000000000000000000000000000000000
784
+ 0000000000000000000000000000000000000000000000000000000000000000
785
+ 0000000000000000000000000000000000000000000000000000000000000000
786
+ 4F
787
+ 0000000000000000000000000000000000000000000000000000000000000000
788
+ 0000000000000000000000000000000000000000000000000000000000000000
789
+ 0000928B8CEB8DA496A18DA28D9D977D977A977E97838E2A8E28977B97848EB8
790
+ 8EB68EB98EB78F228F2B8F278F198FA499078FB3999C9071906A99BB99BA9188
791
+ 918C92BF92B892BE92DC92E59B3F9B6092D492D69CF192DA92ED92F392DB5103
792
+ 92B992E292EB95AF50F695B295B3510C50FD510A96A396A552F152EF56485642
793
+ 970A563597879789978C97EF982A98225640981F563D9919563E99CA99DA563A
794
+ 571A58AB99DE99C899E058A39AB69AB558A59AF458FF9B6B9B699B729B630000
795
+ 0000000000000000000000000000000000000000000000000000000000000000
796
+ 0000000000000000000000000000000000000000000000000000000000000000
797
+ 0000000000000000000000000000000000000000000000000000000000000000
798
+ 0000000000000000000000000000000000000000000000000000000000000000
799
+ 0000000000000000000000000000000000000000000000000000000000000000
800
+ 0000000000000000000000000000000000000000000000000000000000000000
801
+ 0000000000000000000000000000000000000000000000000000000000000000
802
+ 0000000000000000000000000000000000000000000000000000000000000000
803
+ 50
804
+ 0000000000000000000000000000000000000000000000000000000000000000
805
+ 0000000000000000000000000000000000000000000000000000000000000000
806
+ 00005AF69D0D5AF89D019D0C5B019CF85B055B0F9CFE9D029E845D9F9EAB9EAA
807
+ 511D51165DA0512B511E511B5290529453145E605E5C56675EDB567B5EE1565F
808
+ 5661618B6183617961B161B061A2618958C358CA58BB58C058C459015B1F5B18
809
+ 5B115B1561B35B125B1C64705B225B795DA664975DB35DAB5EEA648A5F5B64A3
810
+ 649F61B761CE61B961BD61CF61C06199619765B361BB61D061C4623166B764D3
811
+ 64C06A006A066A1769E564DC64D164C869E464D566C369EC69E266BF66C50000
812
+ 0000000000000000000000000000000000000000000000000000000000000000
813
+ 0000000000000000000000000000000000000000000000000000000000000000
814
+ 0000000000000000000000000000000000000000000000000000000000000000
815
+ 0000000000000000000000000000000000000000000000000000000000000000
816
+ 0000000000000000000000000000000000000000000000000000000000000000
817
+ 0000000000000000000000000000000000000000000000000000000000000000
818
+ 0000000000000000000000000000000000000000000000000000000000000000
819
+ 0000000000000000000000000000000000000000000000000000000000000000
820
+ 51
821
+ 0000000000000000000000000000000000000000000000000000000000000000
822
+ 0000000000000000000000000000000000000000000000000000000000000000
823
+ 000069FE66CD66C167066A1467246A636A426A5269E66A436A3369FC6A6C6A57
824
+ 6A046A4C6A6E6A0F69F66A266A0769F46A376B516A716A4A6A366BA66A536C00
825
+ 6A456A706F416F266A5C6B586B576F926F8D6F896F8C6F626F4F6FBB6F5A6F96
826
+ 6FBE6F6C6F826F556FB56FD36F9F6F576FB76FF571B76F0071BB6F6B71D16F67
827
+ 71BA6F5371B671CC6F7F6F9571D3749B6F6A6F7B749674A2749D750A750E719A
828
+ 7581762C76377636763B71A476A171AA719C779871B37796729A735873520000
829
+ 0000000000000000000000000000000000000000000000000000000000000000
830
+ 0000000000000000000000000000000000000000000000000000000000000000
831
+ 0000000000000000000000000000000000000000000000000000000000000000
832
+ 0000000000000000000000000000000000000000000000000000000000000000
833
+ 0000000000000000000000000000000000000000000000000000000000000000
834
+ 0000000000000000000000000000000000000000000000000000000000000000
835
+ 0000000000000000000000000000000000000000000000000000000000000000
836
+ 0000000000000000000000000000000000000000000000000000000000000000
837
+ 52
838
+ 0000000000000000000000000000000000000000000000000000000000000000
839
+ 0000000000000000000000000000000000000000000000000000000000000000
840
+ 000078D678EB736078DC735B79A579A998347A537A4574897A4F74867ABD7ABB
841
+ 7AF17488747C7BEC7BED7507757E7CD3761E7CE1761D7E197623761A76287E27
842
+ 7E26769D769E806E81AF778F778981AD78CD81AA821878CC78D178CE78D4856F
843
+ 854C78C48542799A855C8570855F79A2855A854B853F878A7AB4878B87A1878E
844
+ 7BBE7BAC8799885E885F892489A78AEA8AFD8AF98AE38AE57DDB7DEA8AEC7DD7
845
+ 7DE17E037DFA8CF27DF68CEF7DF08DA67DDF7F767FAC8E3B8E437FED8E320000
846
+ 0000000000000000000000000000000000000000000000000000000000000000
847
+ 0000000000000000000000000000000000000000000000000000000000000000
848
+ 0000000000000000000000000000000000000000000000000000000000000000
849
+ 0000000000000000000000000000000000000000000000000000000000000000
850
+ 0000000000000000000000000000000000000000000000000000000000000000
851
+ 0000000000000000000000000000000000000000000000000000000000000000
852
+ 0000000000000000000000000000000000000000000000000000000000000000
853
+ 0000000000000000000000000000000000000000000000000000000000000000
854
+ 53
855
+ 0000000000000000000000000000000000000000000000000000000000000000
856
+ 0000000000000000000000000000000000000000000000000000000000000000
857
+ 00008F318F307FE68F2D8F3C8FA78FA5819F819E819591379195918E82169196
858
+ 82539345930A824E825192FD9317931C930793319332932C9330930393058527
859
+ 95C284FB95B884FA95C1850C84F4852A96AB96B784F784EB97159714851284EA
860
+ 970C971784FE9793851D97D2850284FD983698319833983C982E983A84F0983D
861
+ 84F998B5992299239920991C991D866299A0876399EF99E899EB877387588754
862
+ 99E199E68761875A9AF89AF5876D876A9B839B949B84875D9B8B9B8F877A0000
863
+ 0000000000000000000000000000000000000000000000000000000000000000
864
+ 0000000000000000000000000000000000000000000000000000000000000000
865
+ 0000000000000000000000000000000000000000000000000000000000000000
866
+ 0000000000000000000000000000000000000000000000000000000000000000
867
+ 0000000000000000000000000000000000000000000000000000000000000000
868
+ 0000000000000000000000000000000000000000000000000000000000000000
869
+ 0000000000000000000000000000000000000000000000000000000000000000
870
+ 0000000000000000000000000000000000000000000000000000000000000000
871
+ 54
872
+ 0000000000000000000000000000000000000000000000000000000000000000
873
+ 0000000000000000000000000000000000000000000000000000000000000000
874
+ 00009B8C875C9B89874F9B8E8775876287679D249D0F89059D139D0A890B8917
875
+ 891889199D2A9D1A89119D279D169D2189A49E859EAC9EC69EC59ED79F538AB8
876
+ 5128512751DF8AD5533553B38ABE568A567D56898AC358CD58D08AD95B2B5B33
877
+ 5B295B355B315B375C365DBE8CDD5DB98DA05DBB8DA161E261DB61DD61DC61DA
878
+ 8E2E61D98E1B8E1664DF8E198E2664E18E1464EE8E1865B566D466D58E1A66D0
879
+ 66D166CE66D78F208F236A7D6A8A90736AA7906F6A996A826A88912B91290000
880
+ 0000000000000000000000000000000000000000000000000000000000000000
881
+ 0000000000000000000000000000000000000000000000000000000000000000
882
+ 0000000000000000000000000000000000000000000000000000000000000000
883
+ 0000000000000000000000000000000000000000000000000000000000000000
884
+ 0000000000000000000000000000000000000000000000000000000000000000
885
+ 0000000000000000000000000000000000000000000000000000000000000000
886
+ 0000000000000000000000000000000000000000000000000000000000000000
887
+ 0000000000000000000000000000000000000000000000000000000000000000
888
+ 55
889
+ 0000000000000000000000000000000000000000000000000000000000000000
890
+ 0000000000000000000000000000000000000000000000000000000000000000
891
+ 00006A8691326A986A9D918591866A8F91816AAA91846B5D92D06C0A92C46FD7
892
+ 6FD66FE592CF92F192DF6FD96FDA6FEA92DD6FF692EF92C271E392CA71E992CE
893
+ 71EB71EF71F371EA92E092DE92E792D192D3737192E174AE92C674B3957C74AC
894
+ 95AB95AE75837645764E764476A376A577A677A4978A77A977AF97D097CF981E
895
+ 78F078F878F198287A49981B982798B27AC27AF27AF37BFA99167BF67BFC7C18
896
+ 7C087C1299D399D47CDB7CDA99D699D899CB7E2C7E4D9AB39AEC7F467FF60000
897
+ 0000000000000000000000000000000000000000000000000000000000000000
898
+ 0000000000000000000000000000000000000000000000000000000000000000
899
+ 0000000000000000000000000000000000000000000000000000000000000000
900
+ 0000000000000000000000000000000000000000000000000000000000000000
901
+ 0000000000000000000000000000000000000000000000000000000000000000
902
+ 0000000000000000000000000000000000000000000000000000000000000000
903
+ 0000000000000000000000000000000000000000000000000000000000000000
904
+ 0000000000000000000000000000000000000000000000000000000000000000
905
+ 56
906
+ 0000000000000000000000000000000000000000000000000000000000000000
907
+ 0000000000000000000000000000000000000000000000000000000000000000
908
+ 0000802B807481B881C89B679B749B71859285939B75857F85AB85979B6C9CFC
909
+ 85AC9CFD9CFF9CF787CE9D0087CD9CFB9D0887C187B187C79ED389409F10893F
910
+ 893951178943511151DE533489AB56708B1F8B098B0C566656638C4056728C96
911
+ 56778CF68CF758C88E468E4F58BF58BA58C28F3D8F4193669378935D93699374
912
+ 937D936E93729373936293489353935F93685DB1937F936B5DB595C45DAE96AF
913
+ 96AD96B25DAD5DAF971A971B5E685E665E6F5EE9979B979F5EE85EE55F4B0000
914
+ 0000000000000000000000000000000000000000000000000000000000000000
915
+ 0000000000000000000000000000000000000000000000000000000000000000
916
+ 0000000000000000000000000000000000000000000000000000000000000000
917
+ 0000000000000000000000000000000000000000000000000000000000000000
918
+ 0000000000000000000000000000000000000000000000000000000000000000
919
+ 0000000000000000000000000000000000000000000000000000000000000000
920
+ 0000000000000000000000000000000000000000000000000000000000000000
921
+ 0000000000000000000000000000000000000000000000000000000000000000
922
+ 57
923
+ 0000000000000000000000000000000000000000000000000000000000000000
924
+ 0000000000000000000000000000000000000000000000000000000000000000
925
+ 00005FBC5FBB619D61A86196984061B4984761C198B761BA61BF61B8618C64D7
926
+ 99A264D064CF9A0099F3648964C399F564F364D99ABD9B009B0265A29B349B49
927
+ 9B9F66CA9BA39BCD9B999B9D66BA66CC9D396A349D446A496A679D356A686A3E
928
+ 9EAF6A6D512F6A5B6A519F8E6A5A569F569B569E5696569456A06A4F5B3B6A6F
929
+ 6A695B3A5DC15F4D5F5D61F36A4D6A4E6A466B5564F664E564EA64E765056BC8
930
+ 64F96C046C036C066AAB6AED6AB26AB06AB56ABE6AC16AC86FC46AC06ABC0000
931
+ 0000000000000000000000000000000000000000000000000000000000000000
932
+ 0000000000000000000000000000000000000000000000000000000000000000
933
+ 0000000000000000000000000000000000000000000000000000000000000000
934
+ 0000000000000000000000000000000000000000000000000000000000000000
935
+ 0000000000000000000000000000000000000000000000000000000000000000
936
+ 0000000000000000000000000000000000000000000000000000000000000000
937
+ 0000000000000000000000000000000000000000000000000000000000000000
938
+ 0000000000000000000000000000000000000000000000000000000000000000
939
+ 58
940
+ 0000000000000000000000000000000000000000000000000000000000000000
941
+ 0000000000000000000000000000000000000000000000000000000000000000
942
+ 00006AB16AC46ABF6FA56FAE700870036FFD7010700270136FA271FA720074B9
943
+ 74BC6FB2765B7651764F76EB77B871D677B977C177C077BE790B71C77907790A
944
+ 790871BC790D7906791579AF729E736973667AF5736C73657C2E736A7C1B749A
945
+ 7C1A7C24749274957CE67CE37580762F7E5D7E4F7E667E5B7F477FB476327630
946
+ 76BB7FFA802E779D77A181CE779B77A282197795779985CC85B278E985BB85C1
947
+ 78DE78E378DB87E987EE87F087D6880E87DA8948894A894E894D89B189B00000
948
+ 0000000000000000000000000000000000000000000000000000000000000000
949
+ 0000000000000000000000000000000000000000000000000000000000000000
950
+ 0000000000000000000000000000000000000000000000000000000000000000
951
+ 0000000000000000000000000000000000000000000000000000000000000000
952
+ 0000000000000000000000000000000000000000000000000000000000000000
953
+ 0000000000000000000000000000000000000000000000000000000000000000
954
+ 0000000000000000000000000000000000000000000000000000000000000000
955
+ 0000000000000000000000000000000000000000000000000000000000000000
956
+ 59
957
+ 0000000000000000000000000000000000000000000000000000000000000000
958
+ 0000000000000000000000000000000000000000000000000000000000000000
959
+ 000089B37AB78B388B327BE78B2D7BD58B347BDA8B298C747BD47BEA8D037BDC
960
+ 7BEB8DA98E587CD27CD48EBF8EC18F4A8FAC7E219089913D913C91A993A07E0E
961
+ 93907E159393938B93AD93BB93B87E0D7E14939C95D895D77F7B7F7C7F7A975D
962
+ 97A997DA8029806C81B181A6985481B99855984B81B0983F98B981B281B781A7
963
+ 81F29938993699408556993B993999A4855385619A089A0C85469A1085419B07
964
+ 85449BD285479BC29BBB9BCC9BCB854E856E9D4D9D639D4E85609D509D550000
965
+ 0000000000000000000000000000000000000000000000000000000000000000
966
+ 0000000000000000000000000000000000000000000000000000000000000000
967
+ 0000000000000000000000000000000000000000000000000000000000000000
968
+ 0000000000000000000000000000000000000000000000000000000000000000
969
+ 0000000000000000000000000000000000000000000000000000000000000000
970
+ 0000000000000000000000000000000000000000000000000000000000000000
971
+ 0000000000000000000000000000000000000000000000000000000000000000
972
+ 0000000000000000000000000000000000000000000000000000000000000000
973
+ 5A
974
+ 0000000000000000000000000000000000000000000000000000000000000000
975
+ 0000000000000000000000000000000000000000000000000000000000000000
976
+ 0000855D9D5E85659E909EB29EB186649ECA9F029F279F26879356AF58E058DC
977
+ 87965B39877987875B7C5BF3879087915C6B5DC4650B6508650A8789891E65DC
978
+ 8930892D66E166DF6ACE6AD46AE36AD76AE2892C891F89F18AE06AD86AD56AD2
979
+ 8AF58ADD701E702C70256FF37204720872158AE874C474C974C774C876A977C6
980
+ 77C57918791A79208CF37A667A647A6A8DA78E338E3E8E388E408E457C357C34
981
+ 8E3D8E417E6C8E3F7E6E7E718F2E81D481D6821A82628265827685DB85D60000
982
+ 0000000000000000000000000000000000000000000000000000000000000000
983
+ 0000000000000000000000000000000000000000000000000000000000000000
984
+ 0000000000000000000000000000000000000000000000000000000000000000
985
+ 0000000000000000000000000000000000000000000000000000000000000000
986
+ 0000000000000000000000000000000000000000000000000000000000000000
987
+ 0000000000000000000000000000000000000000000000000000000000000000
988
+ 0000000000000000000000000000000000000000000000000000000000000000
989
+ 0000000000000000000000000000000000000000000000000000000000000000
990
+ 5B
991
+ 0000000000000000000000000000000000000000000000000000000000000000
992
+ 0000000000000000000000000000000000000000000000000000000000000000
993
+ 0000908685E79133913585F4919387FD87D58807918F880F87F89308931F8987
994
+ 930F89B589F5933C8B3F8B438B4C93018D0B8E6B8E688E708E758E7792FA8EC3
995
+ 92F993E993EA93CB93C593C6932993ED93D3932A93E5930C930B93DB93EB93E0
996
+ 93C1931695BC95DD95BE95B995BA95B695BF95B595BD96A996D497B297B497B1
997
+ 97B597F2979497F097F89856982F98329924994499279A269A1F9A189A219A17
998
+ 99E49B0999E399EA9BC59BDF9AB99BE39AB49BE99BEE9AFA9AF99D669D7A0000
999
+ 0000000000000000000000000000000000000000000000000000000000000000
1000
+ 0000000000000000000000000000000000000000000000000000000000000000
1001
+ 0000000000000000000000000000000000000000000000000000000000000000
1002
+ 0000000000000000000000000000000000000000000000000000000000000000
1003
+ 0000000000000000000000000000000000000000000000000000000000000000
1004
+ 0000000000000000000000000000000000000000000000000000000000000000
1005
+ 0000000000000000000000000000000000000000000000000000000000000000
1006
+ 0000000000000000000000000000000000000000000000000000000000000000
1007
+ 5C
1008
+ 0000000000000000000000000000000000000000000000000000000000000000
1009
+ 0000000000000000000000000000000000000000000000000000000000000000
1010
+ 00009B809D6E9D919D839D769D7E9D6D9B939E959EE39B7A9B959F039F049D25
1011
+ 9F179D2051369D1453369D1D5B429D229D105B445B465B7E5DCA5DC85DCC5EF0
1012
+ 9ED5658566E566E79F3D512651256AF451246AE9512952F45693568C568D703D
1013
+ 56847036567E7216567F7212720F72177211720B5B2D5B2574CD74D074CC74CE
1014
+ 74D15B2F75895B7B7A6F7C4B7C445E6C5E6A5FBE61C361B57E7F8B7161E0802F
1015
+ 807A807B807C64EF64E964E385FC861086026581658085EE860366D2860D0000
1016
+ 0000000000000000000000000000000000000000000000000000000000000000
1017
+ 0000000000000000000000000000000000000000000000000000000000000000
1018
+ 0000000000000000000000000000000000000000000000000000000000000000
1019
+ 0000000000000000000000000000000000000000000000000000000000000000
1020
+ 0000000000000000000000000000000000000000000000000000000000000000
1021
+ 0000000000000000000000000000000000000000000000000000000000000000
1022
+ 0000000000000000000000000000000000000000000000000000000000000000
1023
+ 0000000000000000000000000000000000000000000000000000000000000000
1024
+ 5D
1025
+ 0000000000000000000000000000000000000000000000000000000000000000
1026
+ 0000000000000000000000000000000000000000000000000000000000000000
1027
+ 000086138608860F881888126A9B6AA18967896589BB8B698B626A838B6E6AA4
1028
+ 8B616A7F8B648B4D8C516A8C6A928E838EC66C09941F6FA99404941794089405
1029
+ 6FED93F3941E9402941A941B9427941C71E196B571E871F2973371F097349731
1030
+ 97B897BA749797FC74AB749098C374AD994D74A59A2F7510751175129AC97584
1031
+ 9AC89AC49B2A9B389B5076E99C0A9BFB9C049BFC9BFE77B477B177A89C029BF6
1032
+ 9C1B9BF99C159C109BFF9C009C0C78F978FE9D959DA579A87A5C7A5B7A560000
1033
+ 0000000000000000000000000000000000000000000000000000000000000000
1034
+ 0000000000000000000000000000000000000000000000000000000000000000
1035
+ 0000000000000000000000000000000000000000000000000000000000000000
1036
+ 0000000000000000000000000000000000000000000000000000000000000000
1037
+ 0000000000000000000000000000000000000000000000000000000000000000
1038
+ 0000000000000000000000000000000000000000000000000000000000000000
1039
+ 0000000000000000000000000000000000000000000000000000000000000000
1040
+ 0000000000000000000000000000000000000000000000000000000000000000
1041
+ 5E
1042
+ 0000000000000000000000000000000000000000000000000000000000000000
1043
+ 0000000000000000000000000000000000000000000000000000000000000000
1044
+ 00009E989EC17A5A9F5A516456BB7C0558E65B495BF77BFF7BFB5DD07BF45FC2
1045
+ 7BF365117C096AFF6AFE6AFD7BFD6B017BF07BF1704B704D704774D376687667
1046
+ 7E33984877D179307932792E7E479F9D7AC97AC87E3B7C567C517E3A7F457F7F
1047
+ 7E857E897E8E7E84802C826A862B862F862881C586168615861D881A825A825C
1048
+ 858389BC8B758B7C85958D118D128F5C91BB85A493F4859E8577942D858985A1
1049
+ 96E497379736976797BE97BD97E29868986698C898CA98C798DC8585994F0000
1050
+ 0000000000000000000000000000000000000000000000000000000000000000
1051
+ 0000000000000000000000000000000000000000000000000000000000000000
1052
+ 0000000000000000000000000000000000000000000000000000000000000000
1053
+ 0000000000000000000000000000000000000000000000000000000000000000
1054
+ 0000000000000000000000000000000000000000000000000000000000000000
1055
+ 0000000000000000000000000000000000000000000000000000000000000000
1056
+ 0000000000000000000000000000000000000000000000000000000000000000
1057
+ 0000000000000000000000000000000000000000000000000000000000000000
1058
+ 5F
1059
+ 0000000000000000000000000000000000000000000000000000000000000000
1060
+ 0000000000000000000000000000000000000000000000000000000000000000
1061
+ 000099A99A3C85909A3B9ACE87BE9B149B5387C59C2E87AC9C1F87B587BC87AE
1062
+ 87C99DB09DBD87CC87B79DAE9DC49E7B87B487B69E9E87B89F0587DE9F699FA1
1063
+ 56C7571D5B4A5DD389525F72620289AD62356527651E651F8B1E8B186B076B06
1064
+ 8B058B0B7054721C72207AF88B077C5D7C588B067E927F4E8B1A8C4F8C708827
1065
+ 8C718B818B838C948C448D6F8E4E8E4D8E539442944D9454944E8F409443907E
1066
+ 9138973C974097C09199919F91A1919D995A9A5193839ADD936493569C380000
1067
+ 0000000000000000000000000000000000000000000000000000000000000000
1068
+ 0000000000000000000000000000000000000000000000000000000000000000
1069
+ 0000000000000000000000000000000000000000000000000000000000000000
1070
+ 0000000000000000000000000000000000000000000000000000000000000000
1071
+ 0000000000000000000000000000000000000000000000000000000000000000
1072
+ 0000000000000000000000000000000000000000000000000000000000000000
1073
+ 0000000000000000000000000000000000000000000000000000000000000000
1074
+ 0000000000000000000000000000000000000000000000000000000000000000
1075
+ 60
1076
+ 0000000000000000000000000000000000000000000000000000000000000000
1077
+ 0000000000000000000000000000000000000000000000000000000000000000
1078
+ 0000937C9C459C3A93769C359350935193609EF1938F9F93529A937993578641
1079
+ 5DD7934F65289377937B936170537059936772219359766F793779B57C627C5E
1080
+ 7CF596AE96B0863D9720882D89898B8D8B878B908D1A8E99979E979D97D5945F
1081
+ 97F1984194569461945B945A945C9465992B9741992A9933986E986C986D9931
1082
+ 99AA9A5C9A589ADE9A029C4F9C5199F79C5399F899F699FB9DFC9F3999FC513E
1083
+ 9ABE56D29AFD5B4F6B149B487A727A739B9E9B9B9BA68B919BA59BA491BF0000
1084
+ 0000000000000000000000000000000000000000000000000000000000000000
1085
+ 0000000000000000000000000000000000000000000000000000000000000000
1086
+ 0000000000000000000000000000000000000000000000000000000000000000
1087
+ 0000000000000000000000000000000000000000000000000000000000000000
1088
+ 0000000000000000000000000000000000000000000000000000000000000000
1089
+ 0000000000000000000000000000000000000000000000000000000000000000
1090
+ 0000000000000000000000000000000000000000000000000000000000000000
1091
+ 0000000000000000000000000000000000000000000000000000000000000000
1092
+ 61
1093
+ 0000000000000000000000000000000000000000000000000000000000000000
1094
+ 0000000000000000000000000000000000000000000000000000000000000000
1095
+ 00009BA2946C9BAF9D3396E697459D3697C897E4995D9D389B219D459B2C9B57
1096
+ 9D3E9D379C5D9C619C659E089E8A9E899E8D9EB09EC89F459EFB9EFF620566EF
1097
+ 6B1B6B1D722572247C6D512E8642864956978978898A8B9759708C9B8D1C5C6A
1098
+ 8EA25E6D5E6E61D861DF61ED61EE61F161EA9C6C61EB9C6F61E99E0E65049F08
1099
+ 9F1D9FA3650364FC5F606B1C66DA66DB66D87CF36AB98B9B8EA791C46ABA947A
1100
+ 6AB76AC79A619A639AD79C766C0B9FA5700C7067700172AB864A897D8B9D0000
1101
+ 0000000000000000000000000000000000000000000000000000000000000000
1102
+ 0000000000000000000000000000000000000000000000000000000000000000
1103
+ 0000000000000000000000000000000000000000000000000000000000000000
1104
+ 0000000000000000000000000000000000000000000000000000000000000000
1105
+ 0000000000000000000000000000000000000000000000000000000000000000
1106
+ 0000000000000000000000000000000000000000000000000000000000000000
1107
+ 0000000000000000000000000000000000000000000000000000000000000000
1108
+ 0000000000000000000000000000000000000000000000000000000000000000
1109
+ 62
1110
+ 0000000000000000000000000000000000000000000000000000000000000000
1111
+ 0000000000000000000000000000000000000000000000000000000000000000
1112
+ 00008C538F65947B6FFC98CD98DD72019B309E16720371FD737674B874C096E7
1113
+ 9E189EA274B69F7C74C27E9E9484765C9E1C76597C7197CA7657765A76A69EA3
1114
+ 76EC9C7B9F97790C7913975079097910791257275C1379AC7A5F7C1C7C297C19
1115
+ 7C205FC87C2D7C1D7C267C287C2267657C307E5C52BD7E565B667E5865F96788
1116
+ 6CE66CCB7E574FBD5F8D7FB36018604880756B2970A681D07706825E85B485C6
1117
+ 5A105CFC5CFE85B385B585BD85C785C485BF70C985CE85C885C585B185B60000
1118
+ 0000000000000000000000000000000000000000000000000000000000000000
1119
+ 0000000000000000000000000000000000000000000000000000000000000000
1120
+ 0000000000000000000000000000000000000000000000000000000000000000
1121
+ 0000000000000000000000000000000000000000000000000000000000000000
1122
+ 0000000000000000000000000000000000000000000000000000000000000000
1123
+ 0000000000000000000000000000000000000000000000000000000000000000
1124
+ 0000000000000000000000000000000000000000000000000000000000000000
1125
+ 0000000000000000000000000000000000000000000000000000000000000000
1126
+ 63
1127
+ 0000000000000000000000000000000000000000000000000000000000000000
1128
+ 0000000000000000000000000000000000000000000000000000000000000000
1129
+ 000085D28624957985B796BA866987E787E687E287DB87EB87EA7B29812887F3
1130
+ 8A2E87D487DC87D39AD987D8582B584587D963FA87F487E887DD6E86894B894F
1131
+ 894C89468950586789495BDD656E8B238B338B308C878B4750D250DF8B3E8B31
1132
+ 8B258B3769BA8B366B9D8B2480598B3D8B3A8C428C758C998C988C978CFE8D04
1133
+ 8D028D008E5C6F8A8E608E577BC37BC28E658E678E5B8E5A90F68E5D98238E54
1134
+ 8F468F478F488F4B71CD7499913B913E91A891A591A7984291AA93B5938C0000
1135
+ 0000000000000000000000000000000000000000000000000000000000000000
1136
+ 0000000000000000000000000000000000000000000000000000000000000000
1137
+ 0000000000000000000000000000000000000000000000000000000000000000
1138
+ 0000000000000000000000000000000000000000000000000000000000000000
1139
+ 0000000000000000000000000000000000000000000000000000000000000000
1140
+ 0000000000000000000000000000000000000000000000000000000000000000
1141
+ 0000000000000000000000000000000000000000000000000000000000000000
1142
+ 0000000000000000000000000000000000000000000000000000000000000000
1143
+ 64
1144
+ 0000000000000000000000000000000000000000000000000000000000000000
1145
+ 0000000000000000000000000000000000000000000000000000000000000000
1146
+ 000093927F84939B939D938993A7938E8D0E939E9861939593888B73939F9C27
1147
+ 938D945877D69B2D93A493A893B493A395D295D395D196B396D796DA5DC296DF
1148
+ 96D896DD97239722972597AC97AE97A84F664F684FE7503F97A550A6510F523E
1149
+ 53245365539B517F54CB55735571556B55F456225620569256BA569156B05759
1150
+ 578A580F581258135847589B5900594D5AD15AD35B675C575C775CD55D755D8E
1151
+ 5DA55DB65DBF5E655ECD5EED5F945F9A5FBA6125615062A36360636463B60000
1152
+ 0000000000000000000000000000000000000000000000000000000000000000
1153
+ 0000000000000000000000000000000000000000000000000000000000000000
1154
+ 0000000000000000000000000000000000000000000000000000000000000000
1155
+ 0000000000000000000000000000000000000000000000000000000000000000
1156
+ 0000000000000000000000000000000000000000000000000000000000000000
1157
+ 0000000000000000000000000000000000000000000000000000000000000000
1158
+ 0000000000000000000000000000000000000000000000000000000000000000
1159
+ 0000000000000000000000000000000000000000000000000000000000000000
1160
+ 65
1161
+ 0000000000000000000000000000000000000000000000000000000000000000
1162
+ 0000000000000000000000000000000000000000000000000000000000000000
1163
+ 0000640364B6651A7A255C2166E2670267A467AC68106806685E685A692C6929
1164
+ 6A2D6A776A7A6ACA6AE66AF56B0D6B0E6BDC6BDD6BF66C1E6C636DA56E0F6E8A
1165
+ 6E846E8B6E7C6F4C6F486F496F9D6F996FF8702E702D705C79CC70BF70EA70E5
1166
+ 71117112713F7139713B713D71777175717671717196719371B471DD71DE720E
1167
+ 591172187347734873EF7412743B74A4748D74B47673767776BC7819781B783D
1168
+ 78537854785878B778D878EE7922794D7986799979A379BC7AA77B377B590000
1169
+ 0000000000000000000000000000000000000000000000000000000000000000
1170
+ 0000000000000000000000000000000000000000000000000000000000000000
1171
+ 0000000000000000000000000000000000000000000000000000000000000000
1172
+ 0000000000000000000000000000000000000000000000000000000000000000
1173
+ 0000000000000000000000000000000000000000000000000000000000000000
1174
+ 0000000000000000000000000000000000000000000000000000000000000000
1175
+ 0000000000000000000000000000000000000000000000000000000000000000
1176
+ 0000000000000000000000000000000000000000000000000000000000000000
1177
+ 66
1178
+ 0000000000000000000000000000000000000000000000000000000000000000
1179
+ 0000000000000000000000000000000000000000000000000000000000000000
1180
+ 00007BD07C2F7C327C427C4E7C687CA97CED7DD07E077DD37E647F40791E8041
1181
+ 806380BB6711672582488310836283128421841E84E284DE84E1857385D485F5
1182
+ 863786458672874A87A987A587F5883488508887895489848B038C528CD88D0C
1183
+ 8D188DB08EBC8ED58FAA909C85E8915C922B9221927392F492F5933F93429386
1184
+ 93BE93BC93BD93F193F293EF94229423942494679466959795CE95E7973B974D
1185
+ 98E499429B1D9B9889629D4964495E715E8561D3990E8002781E898889B70000
1186
+ 0000000000000000000000000000000000000000000000000000000000000000
1187
+ 0000000000000000000000000000000000000000000000000000000000000000
1188
+ 0000000000000000000000000000000000000000000000000000000000000000
1189
+ 0000000000000000000000000000000000000000000000000000000000000000
1190
+ 0000000000000000000000000000000000000000000000000000000000000000
1191
+ 0000000000000000000000000000000000000000000000000000000000000000
1192
+ 0000000000000000000000000000000000000000000000000000000000000000
1193
+ 0000000000000000000000000000000000000000000000000000000000000000
1194
+ 67
1195
+ 0000000000000000000000000000000000000000000000000000000000000000
1196
+ 0000000000000000000000000000000000000000000000000000000000000000
1197
+ 00005528557255BA55F055EE56B856B956C4805392B08B558B518B428B528B57
1198
+ 8C438C778C768C9A8D068D078D098DAC8DAA8DAD8DAB8E6D8E788E738E6A8E6F
1199
+ 8E7B8EC28F528F518F4F8F508F538FB49140913F91B091AD93DE93C793CF93C2
1200
+ 93DA93D093F993EC93CC93D993A993E693CA93D493EE93E393D593C493CE93C0
1201
+ 93D293A593E7957D95DA95DB96E19729972B972C9728972697B397B797B697DD
1202
+ 97DE97DF985C9859985D985798BF98BD98BB98BE99489947994399A699A70000
1203
+ 0000000000000000000000000000000000000000000000000000000000000000
1204
+ 0000000000000000000000000000000000000000000000000000000000000000
1205
+ 0000000000000000000000000000000000000000000000000000000000000000
1206
+ 0000000000000000000000000000000000000000000000000000000000000000
1207
+ 0000000000000000000000000000000000000000000000000000000000000000
1208
+ 0000000000000000000000000000000000000000000000000000000000000000
1209
+ 0000000000000000000000000000000000000000000000000000000000000000
1210
+ 0000000000000000000000000000000000000000000000000000000000000000
1211
+ 68
1212
+ 0000000000000000000000000000000000000000000000000000000000000000
1213
+ 0000000000000000000000000000000000000000000000000000000000000000
1214
+ 00009A1A9A159A259A1D9A249A1B9A229A209A279A239A1E9A1C9A149AC29B0B
1215
+ 9B0A9B0E9B0C9B379BEA9BEB9BE09BDE9BE49BE69BE29BF09BD49BD79BEC9BDC
1216
+ 9BD99BE59BD59BE19BDA9D779D819D8A9D849D889D719D809D789D869D8B9D8C
1217
+ 9D7D9D6B9D749D759D709D699D859D739D7B9D829D6F9D799D7F9D879D689E94
1218
+ 9E919EC09EFC9F2D9F409F419F4D9F569F579F58533756B256B556B358E35B45
1219
+ 5DC65DC75EEE5EEF5FC05FC161F9651765166515651365DF66E866E366E40000
1220
+ 0000000000000000000000000000000000000000000000000000000000000000
1221
+ 0000000000000000000000000000000000000000000000000000000000000000
1222
+ 0000000000000000000000000000000000000000000000000000000000000000
1223
+ 0000000000000000000000000000000000000000000000000000000000000000
1224
+ 0000000000000000000000000000000000000000000000000000000000000000
1225
+ 0000000000000000000000000000000000000000000000000000000000000000
1226
+ 0000000000000000000000000000000000000000000000000000000000000000
1227
+ 0000000000000000000000000000000000000000000000000000000000000000
1228
+ 69
1229
+ 0000000000000000000000000000000000000000000000000000000000000000
1230
+ 0000000000000000000000000000000000000000000000000000000000000000
1231
+ 00006AF36AF06AEA6AE86AF96AF16AEE6AEF703C7035702F7037703470317042
1232
+ 7038703F703A7039702A7040703B703370417213721472A8737D737C74BA76AB
1233
+ 76AA76BE76ED77CC77CE77CF77CD77F279257923792779287924792979B27A6E
1234
+ 7A6C7A6D7AF77C497C487C4A7C477C457CEE7E7B7E7E7E817E807FBA7FFF8079
1235
+ 81DB81D982688269862285FF860185FE861B860085F6860486098605860C85FD
1236
+ 8819881088118817881388168963896689B989F78B608B6A8B5D8B688B630000
1237
+ 0000000000000000000000000000000000000000000000000000000000000000
1238
+ 0000000000000000000000000000000000000000000000000000000000000000
1239
+ 0000000000000000000000000000000000000000000000000000000000000000
1240
+ 0000000000000000000000000000000000000000000000000000000000000000
1241
+ 0000000000000000000000000000000000000000000000000000000000000000
1242
+ 0000000000000000000000000000000000000000000000000000000000000000
1243
+ 0000000000000000000000000000000000000000000000000000000000000000
1244
+ 0000000000000000000000000000000000000000000000000000000000000000
1245
+ 6A
1246
+ 0000000000000000000000000000000000000000000000000000000000000000
1247
+ 0000000000000000000000000000000000000000000000000000000000000000
1248
+ 00008B658B678B6D8DAE8E868E888E848F598F568F578F558F588F5A908D9143
1249
+ 914191B791B591B291B3940B941393FB9420940F941493FE9415941094289419
1250
+ 940D93F5940093F79407940E9416941293FA940993F8943C940A93FF93FC940C
1251
+ 93F69411940695DE95E095DF972E972F97B997BB97FD97FE986098629863985F
1252
+ 98C198C29950994E9959994C994B99539A329A349A319A2C9A2A9A369A299A2E
1253
+ 9A389A2D9AC79ACA9AC69B109B129B119C0B9C089BF79C059C129BF89C400000
1254
+ 0000000000000000000000000000000000000000000000000000000000000000
1255
+ 0000000000000000000000000000000000000000000000000000000000000000
1256
+ 0000000000000000000000000000000000000000000000000000000000000000
1257
+ 0000000000000000000000000000000000000000000000000000000000000000
1258
+ 0000000000000000000000000000000000000000000000000000000000000000
1259
+ 0000000000000000000000000000000000000000000000000000000000000000
1260
+ 0000000000000000000000000000000000000000000000000000000000000000
1261
+ 0000000000000000000000000000000000000000000000000000000000000000
1262
+ 6B
1263
+ 0000000000000000000000000000000000000000000000000000000000000000
1264
+ 0000000000000000000000000000000000000000000000000000000000000000
1265
+ 00009C079C0E9C069C179C149C099D9F9D999DA49D9D9D929D989D909D9B9DA0
1266
+ 9D949D9C9DAA9D979DA19D9A9DA29DA89D9E9DA39DBF9DA99D969DA69DA79E99
1267
+ 9E9B9E9A9EE59EE49EE79EE69F309F2E9F5B9F609F5E9F5D9F599F91513A5139
1268
+ 5298529756C356BD56BE5B485B475DCB5DCF5EF161FD651B6B026AFC6B036AF8
1269
+ 6B0070437044704A7048704970457046721D721A7219737E7517766A77D0792D
1270
+ 7931792F7C547C537CF27E8A7E877E887E8B7E867E8D7F4D7FBB803081DD0000
1271
+ 0000000000000000000000000000000000000000000000000000000000000000
1272
+ 0000000000000000000000000000000000000000000000000000000000000000
1273
+ 0000000000000000000000000000000000000000000000000000000000000000
1274
+ 0000000000000000000000000000000000000000000000000000000000000000
1275
+ 0000000000000000000000000000000000000000000000000000000000000000
1276
+ 0000000000000000000000000000000000000000000000000000000000000000
1277
+ 0000000000000000000000000000000000000000000000000000000000000000
1278
+ 0000000000000000000000000000000000000000000000000000000000000000
1279
+ 6C
1280
+ 0000000000000000000000000000000000000000000000000000000000000000
1281
+ 0000000000000000000000000000000000000000000000000000000000000000
1282
+ 00008618862A8626861F8623861C86198627862E862186208629861E86258829
1283
+ 881D881B88208824881C882B884A896D8969896E896B89FA8B798B788B458B7A
1284
+ 8B7B8D108D148DAF8E8E8E8C8F5E8F5B8F5D91469144914591B9943F943B9436
1285
+ 9429943D94309439942A9437942C9440943195E595E495E39735973A97BF97E1
1286
+ 986498C998C698C0995899569A399A3D9A469A449A429A419A3A9A3F9ACD9B15
1287
+ 9B179B189B169B3A9B529C2B9C1D9C1C9C2C9C239C289C299C249C219DB70000
1288
+ 0000000000000000000000000000000000000000000000000000000000000000
1289
+ 0000000000000000000000000000000000000000000000000000000000000000
1290
+ 0000000000000000000000000000000000000000000000000000000000000000
1291
+ 0000000000000000000000000000000000000000000000000000000000000000
1292
+ 0000000000000000000000000000000000000000000000000000000000000000
1293
+ 0000000000000000000000000000000000000000000000000000000000000000
1294
+ 0000000000000000000000000000000000000000000000000000000000000000
1295
+ 0000000000000000000000000000000000000000000000000000000000000000
1296
+ 6D
1297
+ 0000000000000000000000000000000000000000000000000000000000000000
1298
+ 0000000000000000000000000000000000000000000000000000000000000000
1299
+ 00009DB69DBC9DC19DC79DCA9DCF9DBE9DC59DC39DBB9DB59DCE9DB99DBA9DAC
1300
+ 9DC89DB19DAD9DCC9DB39DCD9DB29E7A9E9C9EEB9EEE9EED9F1B9F189F1A9F31
1301
+ 9F4E9F659F649F924EB956C656C556CB59715B4B5B4C5DD55DD15EF265216520
1302
+ 652665226B0B6B086B096C0D7055705670577052721E721F72A9737F74D874D5
1303
+ 74D974D7766D76AD793579B47A707A717C577C5C7C597C5B7C5A7CF47CF17E91
1304
+ 7F4F7F8781DE826B863486358633862C86328636882C88288826882A88250000
1305
+ 0000000000000000000000000000000000000000000000000000000000000000
1306
+ 0000000000000000000000000000000000000000000000000000000000000000
1307
+ 0000000000000000000000000000000000000000000000000000000000000000
1308
+ 0000000000000000000000000000000000000000000000000000000000000000
1309
+ 0000000000000000000000000000000000000000000000000000000000000000
1310
+ 0000000000000000000000000000000000000000000000000000000000000000
1311
+ 0000000000000000000000000000000000000000000000000000000000000000
1312
+ 0000000000000000000000000000000000000000000000000000000000000000
1313
+ 6E
1314
+ 0000000000000000000000000000000000000000000000000000000000000000
1315
+ 0000000000000000000000000000000000000000000000000000000000000000
1316
+ 0000897189BF89BE89FB8B7E8B848B828B868B858B7F8D158E958E948E9A8E92
1317
+ 8E908E968E978F608F629147944C9450944A944B944F94479445944894499446
1318
+ 973F97E3986A986998CB9954995B9A4E9A539A549A4C9A4F9A489A4A9A499A52
1319
+ 9A509AD09B199B2B9B3B9B569B559C469C489C3F9C449C399C339C419C3C9C37
1320
+ 9C349C329C3D9C369DDB9DD29DDE9DDA9DCB9DD09DDC9DD19DDF9DE99DD99DD8
1321
+ 9DD69DF59DD59DDD9EB69EF09F359F339F329F429F6B9F959FA2513D52990000
1322
+ 0000000000000000000000000000000000000000000000000000000000000000
1323
+ 0000000000000000000000000000000000000000000000000000000000000000
1324
+ 0000000000000000000000000000000000000000000000000000000000000000
1325
+ 0000000000000000000000000000000000000000000000000000000000000000
1326
+ 0000000000000000000000000000000000000000000000000000000000000000
1327
+ 0000000000000000000000000000000000000000000000000000000000000000
1328
+ 0000000000000000000000000000000000000000000000000000000000000000
1329
+ 0000000000000000000000000000000000000000000000000000000000000000
1330
+ 6F
1331
+ 0000000000000000000000000000000000000000000000000000000000000000
1332
+ 0000000000000000000000000000000000000000000000000000000000000000
1333
+ 000058E858E759725B4D5DD8882F5F4F62016203620465296525659666EB6B11
1334
+ 6B126B0F6BCA705B705A7222738273817383767077D47C677C667E95826C863A
1335
+ 86408639863C8631863B863E88308832882E883389768974897389FE8B8C8B8E
1336
+ 8B8B8B888C458D198E988F648F6391BC94629455945D9457945E97C497C59800
1337
+ 9A569A599B1E9B1F9B209C529C589C509C4A9C4D9C4B9C559C599C4C9C4E9DFB
1338
+ 9DF79DEF9DE39DEB9DF89DE49DF69DE19DEE9DE69DF29DF09DE29DEC9DF40000
1339
+ 0000000000000000000000000000000000000000000000000000000000000000
1340
+ 0000000000000000000000000000000000000000000000000000000000000000
1341
+ 0000000000000000000000000000000000000000000000000000000000000000
1342
+ 0000000000000000000000000000000000000000000000000000000000000000
1343
+ 0000000000000000000000000000000000000000000000000000000000000000
1344
+ 0000000000000000000000000000000000000000000000000000000000000000
1345
+ 0000000000000000000000000000000000000000000000000000000000000000
1346
+ 0000000000000000000000000000000000000000000000000000000000000000
1347
+ 70
1348
+ 0000000000000000000000000000000000000000000000000000000000000000
1349
+ 0000000000000000000000000000000000000000000000000000000000000000
1350
+ 00009DF39DE89DED9EC29ED09EF29EF39F069F1C9F389F379F369F439F4F9F71
1351
+ 9F709F6E9F6F56D356CD5B4E5C6D652D66ED66EE6B13705F7061705D70607223
1352
+ 74DB74E577D5793879B779B67C6A7E977F89826D8643883888378835884B8B94
1353
+ 8B958E9E8E9F8EA08E9D91BE91BD91C2946B9468946996E597469743974797C7
1354
+ 97E59A5E9AD59B599C639C679C669C629C5E9C609E029DFE9E079E039E069E05
1355
+ 9E009E019E099DFF9DFD9E049EA09F1E9F469F749F759F7656D4652E65B80000
1356
+ 0000000000000000000000000000000000000000000000000000000000000000
1357
+ 0000000000000000000000000000000000000000000000000000000000000000
1358
+ 0000000000000000000000000000000000000000000000000000000000000000
1359
+ 0000000000000000000000000000000000000000000000000000000000000000
1360
+ 0000000000000000000000000000000000000000000000000000000000000000
1361
+ 0000000000000000000000000000000000000000000000000000000000000000
1362
+ 0000000000000000000000000000000000000000000000000000000000000000
1363
+ 0000000000000000000000000000000000000000000000000000000000000000
1364
+ 71
1365
+ 0000000000000000000000000000000000000000000000000000000000000000
1366
+ 0000000000000000000000000000000000000000000000000000000000000000
1367
+ 00006B186B196B176B1A7062722672AA77D877D979397C697C6B7CF67E9A7E98
1368
+ 7E9B7E9981E081E18646864786488979897A897C897B89FF8B988B998EA58EA4
1369
+ 8EA3946E946D946F9471947397499872995F9C689C6E9C6D9E0B9E0D9E109E0F
1370
+ 9E129E119EA19EF59F099F479F789F7B9F7A9F79571E70667C6F883C8DB28EA6
1371
+ 91C394749478947694759A609B2E9C749C739C719C759E149E139EF69F0A9FA4
1372
+ 706870657CF7866A883E883D883F8B9E8C9C8EA98EC9974B9873987498CC0000
1373
+ 0000000000000000000000000000000000000000000000000000000000000000
1374
+ 0000000000000000000000000000000000000000000000000000000000000000
1375
+ 0000000000000000000000000000000000000000000000000000000000000000
1376
+ 0000000000000000000000000000000000000000000000000000000000000000
1377
+ 0000000000000000000000000000000000000000000000000000000000000000
1378
+ 0000000000000000000000000000000000000000000000000000000000000000
1379
+ 0000000000000000000000000000000000000000000000000000000000000000
1380
+ 0000000000000000000000000000000000000000000000000000000000000000
1381
+ 72
1382
+ 0000000000000000000000000000000000000000000000000000000000000000
1383
+ 0000000000000000000000000000000000000000000000000000000000000000
1384
+ 0000996199AB9A649A669A679B249E159E179F4862076B1E7227864C8EA89482
1385
+ 948094819A699A689E19864B8B9F94839C799EB776759A6B9C7A9E1D7069706A
1386
+ 72299EA49F7E9F499F988AF68AFC8C6B8C6D8C938CF48E448E318E348E428E39
1387
+ 8E358F3B8F2F8F388F338FA88FA69075907490789072907C907A913491929320
1388
+ 933692F89333932F932292FC932B9304931A9310932693219315932E931995BB
1389
+ 96A796A896AA96D5970E97119716970D9713970F975B975C9766979898300000
1390
+ 0000000000000000000000000000000000000000000000000000000000000000
1391
+ 0000000000000000000000000000000000000000000000000000000000000000
1392
+ 0000000000000000000000000000000000000000000000000000000000000000
1393
+ 0000000000000000000000000000000000000000000000000000000000000000
1394
+ 0000000000000000000000000000000000000000000000000000000000000000
1395
+ 0000000000000000000000000000000000000000000000000000000000000000
1396
+ 0000000000000000000000000000000000000000000000000000000000000000
1397
+ 0000000000000000000000000000000000000000000000000000000000000000
1398
+ 73
1399
+ 0000000000000000000000000000000000000000000000000000000000000000
1400
+ 0000000000000000000000000000000000000000000000000000000000000000
1401
+ 00009838983B9837982D9839982499109928991E991B9921991A99ED99E299F1
1402
+ 9AB89ABC9AFB9AED9B289B919D159D239D269D289D129D1B9ED89ED49F8D9F9C
1403
+ 512A511F5121513252F5568E5680569056855687568F58D558D358D158CE5B30
1404
+ 5B2A5B245B7A5C375C685DBC5DBA5DBD5DB85E6B5F4C5FBD61C961C261C761E6
1405
+ 61CB6232623464CE64CA64D864E064F064E664EC64F164E264ED6582658366D9
1406
+ 66D66A806A946A846AA26A9C6ADB6AA36A7E6A976A906AA06B5C6BAE6BDA0000
1407
+ 0000000000000000000000000000000000000000000000000000000000000000
1408
+ 0000000000000000000000000000000000000000000000000000000000000000
1409
+ 0000000000000000000000000000000000000000000000000000000000000000
1410
+ 0000000000000000000000000000000000000000000000000000000000000000
1411
+ 0000000000000000000000000000000000000000000000000000000000000000
1412
+ 0000000000000000000000000000000000000000000000000000000000000000
1413
+ 0000000000000000000000000000000000000000000000000000000000000000
1414
+ 0000000000000000000000000000000000000000000000000000000000000000
1415
+ 74
1416
+ 0000000000000000000000000000000000000000000000000000000000000000
1417
+ 0000000000000000000000000000000000000000000000000000000000000000
1418
+ 00006C086FD86FF16FDF6FE06FDB6FE46FEB6FEF6F806FEC6FE16FE96FD56FEE
1419
+ 6FF071E771DF71EE71E671E571ED71EC71F471E0723572467370737274A974B0
1420
+ 74A674A876467642764C76EA77B377AA77B077AC77A777AD77EF78F778FA78F4
1421
+ 78EF790179A779AA7A577ABF7C077C0D7BFE7BF77C0C7BE07CE07CDC7CDE7CE2
1422
+ 7CDF7CD97CDD7E2E7E3E7E467E377E327E437E2B7E3D7E317E457E417E347E39
1423
+ 7E487E357E3F7E2F7F447FF37FFC807180728070806F807381C681C381BA0000
1424
+ 0000000000000000000000000000000000000000000000000000000000000000
1425
+ 0000000000000000000000000000000000000000000000000000000000000000
1426
+ 0000000000000000000000000000000000000000000000000000000000000000
1427
+ 0000000000000000000000000000000000000000000000000000000000000000
1428
+ 0000000000000000000000000000000000000000000000000000000000000000
1429
+ 0000000000000000000000000000000000000000000000000000000000000000
1430
+ 0000000000000000000000000000000000000000000000000000000000000000
1431
+ 0000000000000000000000000000000000000000000000000000000000000000
1432
+ 75
1433
+ 0000000000000000000000000000000000000000000000000000000000000000
1434
+ 0000000000000000000000000000000000000000000000000000000000000000
1435
+ 000081C281C081BF81BD81C981BE81E88209827185AA8584857E859C85918594
1436
+ 85AF859B858785A8858A85A6866787C087D187B387D287C687AB87BB87BA87C8
1437
+ 87CB893B893689448938893D89AC8B0E8B178B198B1B8B0A8B208B1D8B048B10
1438
+ 8C418C3F8C738CFA8CFD8CFC8CF88CFB8DA88E498E4B8E488E4A8F448F3E8F42
1439
+ 8F458F3F907F907D9084908190829080913991A3919E919C934D938293289375
1440
+ 934A9365934B9318937E936C935B9370935A935495CA95CB95CC95C895C60000
1441
+ 0000000000000000000000000000000000000000000000000000000000000000
1442
+ 0000000000000000000000000000000000000000000000000000000000000000
1443
+ 0000000000000000000000000000000000000000000000000000000000000000
1444
+ 0000000000000000000000000000000000000000000000000000000000000000
1445
+ 0000000000000000000000000000000000000000000000000000000000000000
1446
+ 0000000000000000000000000000000000000000000000000000000000000000
1447
+ 0000000000000000000000000000000000000000000000000000000000000000
1448
+ 0000000000000000000000000000000000000000000000000000000000000000
1449
+ 76
1450
+ 0000000000000000000000000000000000000000000000000000000000000000
1451
+ 0000000000000000000000000000000000000000000000000000000000000000
1452
+ 000096B196B896D6971C971E97A097D3984698B699359A0199FF9BAE9BAB9BAA
1453
+ 9BAD9D3B9D3F9E8B9ECF9EDE9EDC9EDD9EDB9F3E9F4B53E2569556AE58D958D8
1454
+ 5B385F5E61E3623364F464F264FE650664FA64FB64F765B766DC67266AB36AAC
1455
+ 6AC36ABB6AB86AC26AAE6AAF6B5F6B786BAF7009700B6FFE70066FFA7011700F
1456
+ 71FB71FC71FE71F87377737574A774BF751576567658765277BD77BF77BB77BC
1457
+ 790E79AE7A617A627A607AC47AC57C2B7C277C2A7C1E7C237C217CE77E540000
1458
+ 0000000000000000000000000000000000000000000000000000000000000000
1459
+ 0000000000000000000000000000000000000000000000000000000000000000
1460
+ 0000000000000000000000000000000000000000000000000000000000000000
1461
+ 0000000000000000000000000000000000000000000000000000000000000000
1462
+ 0000000000000000000000000000000000000000000000000000000000000000
1463
+ 0000000000000000000000000000000000000000000000000000000000000000
1464
+ 0000000000000000000000000000000000000000000000000000000000000000
1465
+ 0000000000000000000000000000000000000000000000000000000000000000
1466
+ 77
1467
+ 0000000000000000000000000000000000000000000000000000000000000000
1468
+ 0000000000000000000000000000000000000000000000000000000000000000
1469
+ 00007E557E5E7E5A7E617E527E597F487FF97FFB8077807681CD81CF820A85CF
1470
+ 85A985CD85D085C985B085BA85B987EF87EC87F287E0898689B289F48B288B39
1471
+ 8B2C8B2B8C508D058E598E638E668E648E5F8E558EC08F498F4D908790839088
1472
+ 91AB91AC91D09394938A939693A293B393AE93AC93B09398939A939795D495D6
1473
+ 95D095D596E296DC96D996DB96DE972497A397A697AD97F9984D984F984C984E
1474
+ 985398BA993E993F993D992E99A59A0E9AC19B039B069B4F9B4E9B4D9BCA0000
1475
+ 0000000000000000000000000000000000000000000000000000000000000000
1476
+ 0000000000000000000000000000000000000000000000000000000000000000
1477
+ 0000000000000000000000000000000000000000000000000000000000000000
1478
+ 0000000000000000000000000000000000000000000000000000000000000000
1479
+ 0000000000000000000000000000000000000000000000000000000000000000
1480
+ 0000000000000000000000000000000000000000000000000000000000000000
1481
+ 0000000000000000000000000000000000000000000000000000000000000000
1482
+ 0000000000000000000000000000000000000000000000000000000000000000
1483
+ 78
1484
+ 0000000000000000000000000000000000000000000000000000000000000000
1485
+ 0000000000000000000000000000000000000000000000000000000000000000
1486
+ 00009BC99BFD9BC89BC09D519D5D9D609EE09F159F2C513356A556A858DE58DF
1487
+ 58E25BF59F905EEC61F261F761F661F56500650F66E066DD6AE56ADD6ADA6AD3
1488
+ 701B701F7028701A701D701570187206720D725872A27378737A74BD74CA74E3
1489
+ 75877586765F766177C7791979B17A6B7A697C3E7C3F7C387C3D7C377C407E6B
1490
+ 7E6D7E797E697E6A7E737F857FB67FB97FB881D885E985DD85EA85D585E485E5
1491
+ 85F787FB8805880D87F987FE8960895F8956895E8B418B5C8B588B498B5A0000
1492
+ 0000000000000000000000000000000000000000000000000000000000000000
1493
+ 0000000000000000000000000000000000000000000000000000000000000000
1494
+ 0000000000000000000000000000000000000000000000000000000000000000
1495
+ 0000000000000000000000000000000000000000000000000000000000000000
1496
+ 0000000000000000000000000000000000000000000000000000000000000000
1497
+ 0000000000000000000000000000000000000000000000000000000000000000
1498
+ 0000000000000000000000000000000000000000000000000000000000000000
1499
+ 0000000000000000000000000000000000000000000000000000000000000000
1500
+ 79
1501
+ 0000000000000000000000000000000000000000000000000000000000000000
1502
+ 0000000000000000000000000000000000000000000000000000000000000000
1503
+ 00008B4E8B4F8B468B598D088D0A8E7C8E728E878E768E6C8E7A8E748F548F4E
1504
+ 8FAD908A908B91B191AE93E193D193DF93C393C893DC93DD93D693E293CD93D8
1505
+ 93E493D793E895DC96B496E3972A9727976197DC97FB985E9858985B98BC9945
1506
+ 99499A169A199B0D9BE89BE79BD69BDB9D899D619D729D6A9D6C9E929E979E93
1507
+ 9EB452F856B756B656B456BC58E45B405B435B7D5BF65DC961F861FA65186514
1508
+ 651966E667276AEC703E703070327210737B74CF766276657926792A792C0000
1509
+ 0000000000000000000000000000000000000000000000000000000000000000
1510
+ 0000000000000000000000000000000000000000000000000000000000000000
1511
+ 0000000000000000000000000000000000000000000000000000000000000000
1512
+ 0000000000000000000000000000000000000000000000000000000000000000
1513
+ 0000000000000000000000000000000000000000000000000000000000000000
1514
+ 0000000000000000000000000000000000000000000000000000000000000000
1515
+ 0000000000000000000000000000000000000000000000000000000000000000
1516
+ 0000000000000000000000000000000000000000000000000000000000000000
1517
+ 7A
1518
+ 0000000000000000000000000000000000000000000000000000000000000000
1519
+ 0000000000000000000000000000000000000000000000000000000000000000
1520
+ 0000792B7AC77AF67C4C7C437C4D7CEF7CF08FAE7E7D7E7C7E827F4C800081DA
1521
+ 826685FB85F9861185FA8606860B8607860A88148815896489BA89F88B708B6C
1522
+ 8B668B6F8B5F8B6B8D0F8D0D8E898E818E858E8291B491CB9418940393FD95E1
1523
+ 973098C49952995199A89A2B9A309A379A359C139C0D9E799EB59EE89F2F9F5F
1524
+ 9F639F615137513856C156C056C259145C6C5DCD61FC61FE651D651C659566E9
1525
+ 6AFB6B046AFA6BB2704C721B72A774D674D4766977D37C507E8F7E8C7FBC0000
1526
+ 0000000000000000000000000000000000000000000000000000000000000000
1527
+ 0000000000000000000000000000000000000000000000000000000000000000
1528
+ 0000000000000000000000000000000000000000000000000000000000000000
1529
+ 0000000000000000000000000000000000000000000000000000000000000000
1530
+ 0000000000000000000000000000000000000000000000000000000000000000
1531
+ 0000000000000000000000000000000000000000000000000000000000000000
1532
+ 0000000000000000000000000000000000000000000000000000000000000000
1533
+ 0000000000000000000000000000000000000000000000000000000000000000
1534
+ 7B
1535
+ 0000000000000000000000000000000000000000000000000000000000000000
1536
+ 0000000000000000000000000000000000000000000000000000000000000000
1537
+ 00008617862D861A882388228821881F896A896C89BD8B748B778B7D8D138E8A
1538
+ 8E8D8E8B8F5F8FAF91BA942E94339435943A94389432942B95E2973897399732
1539
+ 97FF9867986599579A459A439A409A3E9ACF9B549B519C2D9C259DAF9DB49DC2
1540
+ 9DB89E9D9EEF9F199F5C9F669F67513C513B56C856CA56C95B7F5DD45DD25F4E
1541
+ 61FF65246B0A6B6170517058738074E4758A766E766C79B37C607C5F807E807D
1542
+ 81DF8972896F89FC8B808D168D178E918E938F619148944494519452973D0000
1543
+ 0000000000000000000000000000000000000000000000000000000000000000
1544
+ 0000000000000000000000000000000000000000000000000000000000000000
1545
+ 0000000000000000000000000000000000000000000000000000000000000000
1546
+ 0000000000000000000000000000000000000000000000000000000000000000
1547
+ 0000000000000000000000000000000000000000000000000000000000000000
1548
+ 0000000000000000000000000000000000000000000000000000000000000000
1549
+ 0000000000000000000000000000000000000000000000000000000000000000
1550
+ 0000000000000000000000000000000000000000000000000000000000000000
1551
+ 7C
1552
+ 0000000000000000000000000000000000000000000000000000000000000000
1553
+ 0000000000000000000000000000000000000000000000000000000000000000
1554
+ 0000973E97C397C1986B99559A559A4D9AD29B1A9C499C319C3E9C3B9DD39DD7
1555
+ 9F349F6C9F6A9F9456CC5DD662006523652B652A66EC6B1074DA7ACA7C647C63
1556
+ 7C657E937E967E9481E28638863F88318B8A9090908F9463946094649768986F
1557
+ 995C9A5A9A5B9A579AD39AD49AD19C549C579C569DE59E9F9EF456D158E9652C
1558
+ 705E7671767277D77F507F888836883988628B938B928B9682778D1B91C0946A
1559
+ 97429748974497C698709A5F9B229B589C5F9DF99DFA9E7C9E7D9F079F770000
1560
+ 0000000000000000000000000000000000000000000000000000000000000000
1561
+ 0000000000000000000000000000000000000000000000000000000000000000
1562
+ 0000000000000000000000000000000000000000000000000000000000000000
1563
+ 0000000000000000000000000000000000000000000000000000000000000000
1564
+ 0000000000000000000000000000000000000000000000000000000000000000
1565
+ 0000000000000000000000000000000000000000000000000000000000000000
1566
+ 0000000000000000000000000000000000000000000000000000000000000000
1567
+ 0000000000000000000000000000000000000000000000000000000000000000
1568
+ 7D
1569
+ 0000000000000000000000000000000000000000000000000000000000000000
1570
+ 0000000000000000000000000000000000000000000000000000000000000000
1571
+ 00009F725EF36B1670637C6C7C6E883B89C08EA191C1947294709871995E9AD6
1572
+ 9B239ECC706477DA8B9A947797C99A629A657E9C8B9C8EAA91C5947D947E947C
1573
+ 9C779C789EF78C54947F9E1A72289A6A9B319E1B9E1E7C720000000000000000
1574
+ 0000000000000000000000000000000000000000000000000000000000000000
1575
+ 0000000000000000000000000000000000000000000000000000000000000000
1576
+ 0000000000000000000000000000000000000000000000000000000000000000
1577
+ 0000000000000000000000000000000000000000000000000000000000000000
1578
+ 0000000000000000000000000000000000000000000000000000000000000000
1579
+ 0000000000000000000000000000000000000000000000000000000000000000
1580
+ 0000000000000000000000000000000000000000000000000000000000000000
1581
+ 0000000000000000000000000000000000000000000000000000000000000000
1582
+ 0000000000000000000000000000000000000000000000000000000000000000
1583
+ 0000000000000000000000000000000000000000000000000000000000000000
1584
+ 0000000000000000000000000000000000000000000000000000000000000000
parrot/lib/tcl8.6/encoding/cp852.enc ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding file: cp852, single-byte
2
+ S
3
+ 003F 0 1
4
+ 00
5
+ 0000000100020003000400050006000700080009000A000B000C000D000E000F
6
+ 0010001100120013001400150016001700180019001A001B001C001D001E001F
7
+ 0020002100220023002400250026002700280029002A002B002C002D002E002F
8
+ 0030003100320033003400350036003700380039003A003B003C003D003E003F
9
+ 0040004100420043004400450046004700480049004A004B004C004D004E004F
10
+ 0050005100520053005400550056005700580059005A005B005C005D005E005F
11
+ 0060006100620063006400650066006700680069006A006B006C006D006E006F
12
+ 0070007100720073007400750076007700780079007A007B007C007D007E007F
13
+ 00C700FC00E900E200E4016F010700E7014200EB0150015100EE017900C40106
14
+ 00C90139013A00F400F6013D013E015A015B00D600DC01640165014100D7010D
15
+ 00E100ED00F300FA01040105017D017E0118011900AC017A010C015F00AB00BB
16
+ 2591259225932502252400C100C2011A015E256325512557255D017B017C2510
17
+ 25142534252C251C2500253C01020103255A25542569256625602550256C00A4
18
+ 01110110010E00CB010F014700CD00CE011B2518250C258825840162016E2580
19
+ 00D300DF00D401430144014801600161015400DA0155017000FD00DD016300B4
20
+ 00AD02DD02DB02C702D800A700F700B800B000A802D901710158015925A000A0
parrot/lib/tcl8.6/encoding/cp855.enc ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding file: cp855, single-byte
2
+ S
3
+ 003F 0 1
4
+ 00
5
+ 0000000100020003000400050006000700080009000A000B000C000D000E000F
6
+ 0010001100120013001400150016001700180019001A001B001C001D001E001F
7
+ 0020002100220023002400250026002700280029002A002B002C002D002E002F
8
+ 0030003100320033003400350036003700380039003A003B003C003D003E003F
9
+ 0040004100420043004400450046004700480049004A004B004C004D004E004F
10
+ 0050005100520053005400550056005700580059005A005B005C005D005E005F
11
+ 0060006100620063006400650066006700680069006A006B006C006D006E006F
12
+ 0070007100720073007400750076007700780079007A007B007C007D007E007F
13
+ 0452040204530403045104010454040404550405045604060457040704580408
14
+ 04590409045A040A045B040B045C040C045E040E045F040F044E042E044A042A
15
+ 0430041004310411044604260434041404350415044404240433041300AB00BB
16
+ 259125922593250225240445042504380418256325512557255D043904192510
17
+ 25142534252C251C2500253C043A041A255A25542569256625602550256C00A4
18
+ 043B041B043C041C043D041D043E041E043F2518250C25882584041F044F2580
19
+ 042F044004200441042104420422044304230436041604320412044C042C2116
20
+ 00AD044B042B0437041704480428044D042D044904290447042700A725A000A0
parrot/lib/tcl8.6/encoding/cp864.enc ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding file: cp864, single-byte
2
+ S
3
+ 003F 0 1
4
+ 00
5
+ 0000000100020003000400050006000700080009000A000B000C000D000E000F
6
+ 0010001100120013001400150016001700180019001A001B001C001D001E001F
7
+ 00200021002200230024066A0026002700280029002A002B002C002D002E002F
8
+ 0030003100320033003400350036003700380039003A003B003C003D003E003F
9
+ 0040004100420043004400450046004700480049004A004B004C004D004E004F
10
+ 0050005100520053005400550056005700580059005A005B005C005D005E005F
11
+ 0060006100620063006400650066006700680069006A006B006C006D006E006F
12
+ 0070007100720073007400750076007700780079007A007B007C007D007E007F
13
+ 00B000B72219221A259225002502253C2524252C251C25342510250C25142518
14
+ 03B2221E03C600B100BD00BC224800AB00BBFEF7FEF8009B009CFEFBFEFC009F
15
+ 00A000ADFE8200A300A4FE8400000000FE8EFE8FFE95FE99060CFE9DFEA1FEA5
16
+ 0660066106620663066406650666066706680669FED1061BFEB1FEB5FEB9061F
17
+ 00A2FE80FE81FE83FE85FECAFE8BFE8DFE91FE93FE97FE9BFE9FFEA3FEA7FEA9
18
+ FEABFEADFEAFFEB3FEB7FEBBFEBFFEC1FEC5FECBFECF00A600AC00F700D7FEC9
19
+ 0640FED3FED7FEDBFEDFFEE3FEE7FEEBFEEDFEEFFEF3FEBDFECCFECEFECDFEE1
20
+ FE7D0651FEE5FEE9FEECFEF0FEF2FED0FED5FEF5FEF6FEDDFED9FEF125A00000
parrot/lib/tcl8.6/encoding/cp865.enc ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding file: cp865, single-byte
2
+ S
3
+ 003F 0 1
4
+ 00
5
+ 0000000100020003000400050006000700080009000A000B000C000D000E000F
6
+ 0010001100120013001400150016001700180019001A001B001C001D001E001F
7
+ 0020002100220023002400250026002700280029002A002B002C002D002E002F
8
+ 0030003100320033003400350036003700380039003A003B003C003D003E003F
9
+ 0040004100420043004400450046004700480049004A004B004C004D004E004F
10
+ 0050005100520053005400550056005700580059005A005B005C005D005E005F
11
+ 0060006100620063006400650066006700680069006A006B006C006D006E006F
12
+ 0070007100720073007400750076007700780079007A007B007C007D007E007F
13
+ 00C700FC00E900E200E400E000E500E700EA00EB00E800EF00EE00EC00C400C5
14
+ 00C900E600C600F400F600F200FB00F900FF00D600DC00F800A300D820A70192
15
+ 00E100ED00F300FA00F100D100AA00BA00BF231000AC00BD00BC00A100AB00A4
16
+ 259125922593250225242561256225562555256325512557255D255C255B2510
17
+ 25142534252C251C2500253C255E255F255A25542569256625602550256C2567
18
+ 2568256425652559255825522553256B256A2518250C25882584258C25902580
19
+ 03B100DF039303C003A303C300B503C403A6039803A903B4221E03C603B52229
20
+ 226100B1226522642320232100F7224800B0221900B7221A207F00B225A000A0
parrot/lib/tcl8.6/encoding/cp874.enc ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding file: cp874, single-byte
2
+ S
3
+ 003F 0 1
4
+ 00
5
+ 0000000100020003000400050006000700080009000A000B000C000D000E000F
6
+ 0010001100120013001400150016001700180019001A001B001C001D001E001F
7
+ 0020002100220023002400250026002700280029002A002B002C002D002E002F
8
+ 0030003100320033003400350036003700380039003A003B003C003D003E003F
9
+ 0040004100420043004400450046004700480049004A004B004C004D004E004F
10
+ 0050005100520053005400550056005700580059005A005B005C005D005E005F
11
+ 0060006100620063006400650066006700680069006A006B006C006D006E006F
12
+ 0070007100720073007400750076007700780079007A007B007C007D007E007F
13
+ 20AC008100820083008420260086008700880089008A008B008C008D008E008F
14
+ 009020182019201C201D20222013201400980099009A009B009C009D009E009F
15
+ 00A00E010E020E030E040E050E060E070E080E090E0A0E0B0E0C0E0D0E0E0E0F
16
+ 0E100E110E120E130E140E150E160E170E180E190E1A0E1B0E1C0E1D0E1E0E1F
17
+ 0E200E210E220E230E240E250E260E270E280E290E2A0E2B0E2C0E2D0E2E0E2F
18
+ 0E300E310E320E330E340E350E360E370E380E390E3A00000000000000000E3F
19
+ 0E400E410E420E430E440E450E460E470E480E490E4A0E4B0E4C0E4D0E4E0E4F
20
+ 0E500E510E520E530E540E550E560E570E580E590E5A0E5B0000000000000000
parrot/lib/tcl8.6/encoding/cp932.enc ADDED
@@ -0,0 +1,801 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding file: cp932, multi-byte
2
+ M
3
+ 003F 0 46
4
+ 00
5
+ 0000000100020003000400050006000700080009000A000B000C000D000E000F
6
+ 0010001100120013001400150016001700180019001A001B001C001D001E001F
7
+ 0020002100220023002400250026002700280029002A002B002C002D002E002F
8
+ 0030003100320033003400350036003700380039003A003B003C003D003E003F
9
+ 0040004100420043004400450046004700480049004A004B004C004D004E004F
10
+ 0050005100520053005400550056005700580059005A005B005C005D005E005F
11
+ 0060006100620063006400650066006700680069006A006B006C006D006E006F
12
+ 0070007100720073007400750076007700780079007A007B007C007D007E007F
13
+ 0080000000000000000000850086000000000000000000000000000000000000
14
+ 0000000000000000000000000000000000000000000000000000000000000000
15
+ 0000FF61FF62FF63FF64FF65FF66FF67FF68FF69FF6AFF6BFF6CFF6DFF6EFF6F
16
+ FF70FF71FF72FF73FF74FF75FF76FF77FF78FF79FF7AFF7BFF7CFF7DFF7EFF7F
17
+ FF80FF81FF82FF83FF84FF85FF86FF87FF88FF89FF8AFF8BFF8CFF8DFF8EFF8F
18
+ FF90FF91FF92FF93FF94FF95FF96FF97FF98FF99FF9AFF9BFF9CFF9DFF9EFF9F
19
+ 0000000000000000000000000000000000000000000000000000000000000000
20
+ 0000000000000000000000000000000000000000000000000000000000000000
21
+ 81
22
+ 0000000000000000000000000000000000000000000000000000000000000000
23
+ 0000000000000000000000000000000000000000000000000000000000000000
24
+ 0000000000000000000000000000000000000000000000000000000000000000
25
+ 0000000000000000000000000000000000000000000000000000000000000000
26
+ 300030013002FF0CFF0E30FBFF1AFF1BFF1FFF01309B309C00B4FF4000A8FF3E
27
+ FFE3FF3F30FD30FE309D309E30034EDD30053006300730FC20152010FF0FFF3C
28
+ FF5E2225FF5C2026202520182019201C201DFF08FF0930143015FF3BFF3DFF5B
29
+ FF5D30083009300A300B300C300D300E300F30103011FF0BFF0D00B100D70000
30
+ 00F7FF1D2260FF1CFF1E22662267221E22342642264000B0203220332103FFE5
31
+ FF04FFE0FFE1FF05FF03FF06FF0AFF2000A72606260525CB25CF25CE25C725C6
32
+ 25A125A025B325B225BD25BC203B301221922190219121933013000000000000
33
+ 000000000000000000000000000000002208220B2286228722822283222A2229
34
+ 0000000000000000000000000000000022272228FFE221D221D4220022030000
35
+ 0000000000000000000000000000000000000000222022A52312220222072261
36
+ 2252226A226B221A223D221D2235222B222C0000000000000000000000000000
37
+ 212B2030266F266D266A2020202100B6000000000000000025EF000000000000
38
+ 82
39
+ 0000000000000000000000000000000000000000000000000000000000000000
40
+ 0000000000000000000000000000000000000000000000000000000000000000
41
+ 0000000000000000000000000000000000000000000000000000000000000000
42
+ 0000000000000000000000000000000000000000000000000000000000000000
43
+ 000000000000000000000000000000000000000000000000000000000000FF10
44
+ FF11FF12FF13FF14FF15FF16FF17FF18FF190000000000000000000000000000
45
+ FF21FF22FF23FF24FF25FF26FF27FF28FF29FF2AFF2BFF2CFF2DFF2EFF2FFF30
46
+ FF31FF32FF33FF34FF35FF36FF37FF38FF39FF3A000000000000000000000000
47
+ 0000FF41FF42FF43FF44FF45FF46FF47FF48FF49FF4AFF4BFF4CFF4DFF4EFF4F
48
+ FF50FF51FF52FF53FF54FF55FF56FF57FF58FF59FF5A00000000000000003041
49
+ 30423043304430453046304730483049304A304B304C304D304E304F30503051
50
+ 30523053305430553056305730583059305A305B305C305D305E305F30603061
51
+ 30623063306430653066306730683069306A306B306C306D306E306F30703071
52
+ 30723073307430753076307730783079307A307B307C307D307E307F30803081
53
+ 30823083308430853086308730883089308A308B308C308D308E308F30903091
54
+ 3092309300000000000000000000000000000000000000000000000000000000
55
+ 83
56
+ 0000000000000000000000000000000000000000000000000000000000000000
57
+ 0000000000000000000000000000000000000000000000000000000000000000
58
+ 0000000000000000000000000000000000000000000000000000000000000000
59
+ 0000000000000000000000000000000000000000000000000000000000000000
60
+ 30A130A230A330A430A530A630A730A830A930AA30AB30AC30AD30AE30AF30B0
61
+ 30B130B230B330B430B530B630B730B830B930BA30BB30BC30BD30BE30BF30C0
62
+ 30C130C230C330C430C530C630C730C830C930CA30CB30CC30CD30CE30CF30D0
63
+ 30D130D230D330D430D530D630D730D830D930DA30DB30DC30DD30DE30DF0000
64
+ 30E030E130E230E330E430E530E630E730E830E930EA30EB30EC30ED30EE30EF
65
+ 30F030F130F230F330F430F530F6000000000000000000000000000000000391
66
+ 03920393039403950396039703980399039A039B039C039D039E039F03A003A1
67
+ 03A303A403A503A603A703A803A90000000000000000000000000000000003B1
68
+ 03B203B303B403B503B603B703B803B903BA03BB03BC03BD03BE03BF03C003C1
69
+ 03C303C403C503C603C703C803C9000000000000000000000000000000000000
70
+ 0000000000000000000000000000000000000000000000000000000000000000
71
+ 0000000000000000000000000000000000000000000000000000000000000000
72
+ 84
73
+ 0000000000000000000000000000000000000000000000000000000000000000
74
+ 0000000000000000000000000000000000000000000000000000000000000000
75
+ 0000000000000000000000000000000000000000000000000000000000000000
76
+ 0000000000000000000000000000000000000000000000000000000000000000
77
+ 04100411041204130414041504010416041704180419041A041B041C041D041E
78
+ 041F0420042104220423042404250426042704280429042A042B042C042D042E
79
+ 042F000000000000000000000000000000000000000000000000000000000000
80
+ 04300431043204330434043504510436043704380439043A043B043C043D0000
81
+ 043E043F0440044104420443044404450446044704480449044A044B044C044D
82
+ 044E044F00000000000000000000000000000000000000000000000000002500
83
+ 2502250C251025182514251C252C25242534253C25012503250F2513251B2517
84
+ 25232533252B253B254B2520252F25282537253F251D25302525253825420000
85
+ 0000000000000000000000000000000000000000000000000000000000000000
86
+ 0000000000000000000000000000000000000000000000000000000000000000
87
+ 0000000000000000000000000000000000000000000000000000000000000000
88
+ 0000000000000000000000000000000000000000000000000000000000000000
89
+ 87
90
+ 0000000000000000000000000000000000000000000000000000000000000000
91
+ 0000000000000000000000000000000000000000000000000000000000000000
92
+ 0000000000000000000000000000000000000000000000000000000000000000
93
+ 0000000000000000000000000000000000000000000000000000000000000000
94
+ 2460246124622463246424652466246724682469246A246B246C246D246E246F
95
+ 2470247124722473216021612162216321642165216621672168216900003349
96
+ 33143322334D331833273303333633513357330D33263323332B334A333B339C
97
+ 339D339E338E338F33C433A100000000000000000000000000000000337B0000
98
+ 301D301F211633CD212132A432A532A632A732A8323132323239337E337D337C
99
+ 22522261222B222E2211221A22A52220221F22BF22352229222A000000000000
100
+ 0000000000000000000000000000000000000000000000000000000000000000
101
+ 0000000000000000000000000000000000000000000000000000000000000000
102
+ 0000000000000000000000000000000000000000000000000000000000000000
103
+ 0000000000000000000000000000000000000000000000000000000000000000
104
+ 0000000000000000000000000000000000000000000000000000000000000000
105
+ 0000000000000000000000000000000000000000000000000000000000000000
106
+ 88
107
+ 0000000000000000000000000000000000000000000000000000000000000000
108
+ 0000000000000000000000000000000000000000000000000000000000000000
109
+ 0000000000000000000000000000000000000000000000000000000000000000
110
+ 0000000000000000000000000000000000000000000000000000000000000000
111
+ 0000000000000000000000000000000000000000000000000000000000000000
112
+ 0000000000000000000000000000000000000000000000000000000000000000
113
+ 0000000000000000000000000000000000000000000000000000000000000000
114
+ 0000000000000000000000000000000000000000000000000000000000000000
115
+ 0000000000000000000000000000000000000000000000000000000000000000
116
+ 0000000000000000000000000000000000000000000000000000000000004E9C
117
+ 55165A03963F54C0611B632859F690228475831C7A5060AA63E16E2565ED8466
118
+ 82A69BF56893572765A162715B9B59D0867B98F47D627DBE9B8E62167C9F88B7
119
+ 5B895EB563096697684895C7978D674F4EE54F0A4F4D4F9D504956F2593759D4
120
+ 5A015C0960DF610F61706613690570BA754F757079FB7DAD7DEF80C3840E8863
121
+ 8B029055907A533B4E954EA557DF80B290C178EF4E0058F16EA290387A328328
122
+ 828B9C2F5141537054BD54E156E059FB5F1598F26DEB80E4852D000000000000
123
+ 89
124
+ 0000000000000000000000000000000000000000000000000000000000000000
125
+ 0000000000000000000000000000000000000000000000000000000000000000
126
+ 0000000000000000000000000000000000000000000000000000000000000000
127
+ 0000000000000000000000000000000000000000000000000000000000000000
128
+ 9662967096A097FB540B53F35B8770CF7FBD8FC296E8536F9D5C7ABA4E117893
129
+ 81FC6E26561855046B1D851A9C3B59E553A96D6674DC958F56424E91904B96F2
130
+ 834F990C53E155B65B305F71662066F368046C386CF36D29745B76C87A4E9834
131
+ 82F1885B8A6092ED6DB275AB76CA99C560A68B018D8A95B2698E53AD51860000
132
+ 5712583059445BB45EF6602863A963F46CBF6F14708E7114715971D5733F7E01
133
+ 827682D185979060925B9D1B586965BC6C5A752551F9592E59655F805FDC62BC
134
+ 65FA6A2A6B276BB4738B7FC189569D2C9D0E9EC45CA16C96837B51045C4B61B6
135
+ 81C6687672614E594FFA537860696E297A4F97F34E0B53164EEE4F554F3D4FA1
136
+ 4F7352A053EF5609590F5AC15BB65BE179D16687679C67B66B4C6CB3706B73C2
137
+ 798D79BE7A3C7B8782B182DB8304837783EF83D387668AB256298CA88FE6904E
138
+ 971E868A4FC45CE862117259753B81E582BD86FE8CC096C5991399D54ECB4F1A
139
+ 89E356DE584A58CA5EFB5FEB602A6094606261D0621262D06539000000000000
140
+ 8A
141
+ 0000000000000000000000000000000000000000000000000000000000000000
142
+ 0000000000000000000000000000000000000000000000000000000000000000
143
+ 0000000000000000000000000000000000000000000000000000000000000000
144
+ 0000000000000000000000000000000000000000000000000000000000000000
145
+ 9B41666668B06D777070754C76867D7582A587F9958B968E8C9D51F152BE5916
146
+ 54B35BB35D16616869826DAF788D84CB88578A7293A79AB86D6C99A886D957A3
147
+ 67FF86CE920E5283568754045ED362E164B9683C68386BBB737278BA7A6B899A
148
+ 89D28D6B8F0390ED95A3969497695B665CB3697D984D984E639B7B206A2B0000
149
+ 6A7F68B69C0D6F5F5272559D607062EC6D3B6E076ED1845B89108F444E149C39
150
+ 53F6691B6A3A9784682A515C7AC384B291DC938C565B9D286822830584317CA5
151
+ 520882C574E64E7E4F8351A05BD2520A52D852E75DFB559A582A59E65B8C5B98
152
+ 5BDB5E725E7960A3611F616361BE63DB656267D1685368FA6B3E6B536C576F22
153
+ 6F976F4574B0751876E3770B7AFF7BA17C217DE97F367FF0809D8266839E89B3
154
+ 8ACC8CAB908494519593959195A2966597D3992882184E38542B5CB85DCC73A9
155
+ 764C773C5CA97FEB8D0B96C19811985498584F014F0E5371559C566857FA5947
156
+ 5B095BC45C905E0C5E7E5FCC63EE673A65D765E2671F68CB68C4000000000000
157
+ 8B
158
+ 0000000000000000000000000000000000000000000000000000000000000000
159
+ 0000000000000000000000000000000000000000000000000000000000000000
160
+ 0000000000000000000000000000000000000000000000000000000000000000
161
+ 0000000000000000000000000000000000000000000000000000000000000000
162
+ 6A5F5E306BC56C176C7D757F79485B637A007D005FBD898F8A188CB48D778ECC
163
+ 8F1D98E29A0E9B3C4E80507D510059935B9C622F628064EC6B3A72A075917947
164
+ 7FA987FB8ABC8B7063AC83CA97A05409540355AB68546A588A70782767759ECD
165
+ 53745BA2811A865090064E184E454EC74F1153CA54385BAE5F13602565510000
166
+ 673D6C426C726CE3707874037A767AAE7B087D1A7CFE7D6665E7725B53BB5C45
167
+ 5DE862D262E063196E20865A8A318DDD92F86F0179A69B5A4EA84EAB4EAC4F9B
168
+ 4FA050D151477AF6517151F653545321537F53EB55AC58835CE15F375F4A602F
169
+ 6050606D631F65596A4B6CC172C272ED77EF80F881058208854E90F793E197FF
170
+ 99579A5A4EF051DD5C2D6681696D5C4066F26975738968507C8150C552E45747
171
+ 5DFE932665A46B236B3D7434798179BD7B4B7DCA82B983CC887F895F8B398FD1
172
+ 91D1541F92804E5D503653E5533A72D7739677E982E68EAF99C699C899D25177
173
+ 611A865E55B07A7A50765BD3904796854E326ADB91E75C515C48000000000000
174
+ 8C
175
+ 0000000000000000000000000000000000000000000000000000000000000000
176
+ 0000000000000000000000000000000000000000000000000000000000000000
177
+ 0000000000000000000000000000000000000000000000000000000000000000
178
+ 0000000000000000000000000000000000000000000000000000000000000000
179
+ 63987A9F6C9397748F617AAA718A96887C8268177E706851936C52F2541B85AB
180
+ 8A137FA48ECD90E15366888879414FC250BE521151445553572D73EA578B5951
181
+ 5F625F8460756176616761A963B2643A656C666F68426E1375667A3D7CFB7D4C
182
+ 7D997E4B7F6B830E834A86CD8A088A638B668EFD981A9D8F82B88FCE9BE80000
183
+ 5287621F64836FC09699684150916B206C7A6F547A747D5088408A2367084EF6
184
+ 503950265065517C5238526355A7570F58055ACC5EFA61B261F862F36372691C
185
+ 6A29727D72AC732E7814786F7D79770C80A9898B8B198CE28ED290639375967A
186
+ 98559A139E785143539F53B35E7B5F266E1B6E90738473FE7D4382378A008AFA
187
+ 96504E4E500B53E4547C56FA59D15B645DF15EAB5F276238654567AF6E5672D0
188
+ 7CCA88B480A180E183F0864E8A878DE8923796C798679F134E944E924F0D5348
189
+ 5449543E5A2F5F8C5FA1609F68A76A8E745A78818A9E8AA48B7791904E5E9BC9
190
+ 4EA44F7C4FAF501950165149516C529F52B952FE539A53E35411000000000000
191
+ 8D
192
+ 0000000000000000000000000000000000000000000000000000000000000000
193
+ 0000000000000000000000000000000000000000000000000000000000000000
194
+ 0000000000000000000000000000000000000000000000000000000000000000
195
+ 0000000000000000000000000000000000000000000000000000000000000000
196
+ 540E5589575157A2597D5B545B5D5B8F5DE55DE75DF75E785E835E9A5EB75F18
197
+ 6052614C629762D863A7653B6602664366F4676D6821689769CB6C5F6D2A6D69
198
+ 6E2F6E9D75327687786C7A3F7CE07D057D187D5E7DB18015800380AF80B18154
199
+ 818F822A8352884C88618B1B8CA28CFC90CA91759271783F92FC95A4964D0000
200
+ 980599999AD89D3B525B52AB53F7540858D562F76FE08C6A8F5F9EB9514B523B
201
+ 544A56FD7A4091779D609ED273446F09817075115FFD60DA9AA872DB8FBC6B64
202
+ 98034ECA56F0576458BE5A5A606861C7660F6606683968B16DF775D57D3A826E
203
+ 9B424E9B4F5053C955065D6F5DE65DEE67FB6C99747378028A50939688DF5750
204
+ 5EA7632B50B550AC518D670054C9585E59BB5BB05F69624D63A1683D6B736E08
205
+ 707D91C7728078157826796D658E7D3083DC88C18F09969B5264572867507F6A
206
+ 8CA151B45742962A583A698A80B454B25D0E57FC78959DFA4F5C524A548B643E
207
+ 6628671467F57A847B567D22932F685C9BAD7B395319518A5237000000000000
208
+ 8E
209
+ 0000000000000000000000000000000000000000000000000000000000000000
210
+ 0000000000000000000000000000000000000000000000000000000000000000
211
+ 0000000000000000000000000000000000000000000000000000000000000000
212
+ 0000000000000000000000000000000000000000000000000000000000000000
213
+ 5BDF62F664AE64E6672D6BBA85A996D176909BD6634C93069BAB76BF66524E09
214
+ 509853C25C7160E864926563685F71E673CA75237B977E8286958B838CDB9178
215
+ 991065AC66AB6B8B4ED54ED44F3A4F7F523A53F853F255E356DB58EB59CB59C9
216
+ 59FF5B505C4D5E025E2B5FD7601D6307652F5B5C65AF65BD65E8679D6B620000
217
+ 6B7B6C0F7345794979C17CF87D197D2B80A2810281F389968A5E8A698A668A8C
218
+ 8AEE8CC78CDC96CC98FC6B6F4E8B4F3C4F8D51505B575BFA6148630166426B21
219
+ 6ECB6CBB723E74BD75D478C1793A800C803381EA84948F9E6C509E7F5F0F8B58
220
+ 9D2B7AFA8EF85B8D96EB4E0353F157F759315AC95BA460896E7F6F0675BE8CEA
221
+ 5B9F85007BE0507267F4829D5C61854A7E1E820E51995C0463688D66659C716E
222
+ 793E7D1780058B1D8ECA906E86C790AA501F52FA5C3A6753707C7235914C91C8
223
+ 932B82E55BC25F3160F94E3B53D65B88624B67316B8A72E973E07A2E816B8DA3
224
+ 91529996511253D7546A5BFF63886A397DAC970056DA53CE5468000000000000
225
+ 8F
226
+ 0000000000000000000000000000000000000000000000000000000000000000
227
+ 0000000000000000000000000000000000000000000000000000000000000000
228
+ 0000000000000000000000000000000000000000000000000000000000000000
229
+ 0000000000000000000000000000000000000000000000000000000000000000
230
+ 5B975C315DDE4FEE610162FE6D3279C079CB7D427E4D7FD281ED821F84908846
231
+ 89728B908E748F2F9031914B916C96C6919C4EC04F4F514553415F93620E67D4
232
+ 6C416E0B73637E2691CD928353D459195BBF6DD1795D7E2E7C9B587E719F51FA
233
+ 88538FF04FCA5CFB662577AC7AE3821C99FF51C65FAA65EC696F6B896DF30000
234
+ 6E966F6476FE7D145DE190759187980651E6521D6240669166D96E1A5EB67DD2
235
+ 7F7266F885AF85F78AF852A953D959735E8F5F90605592E4966450B7511F52DD
236
+ 5320534753EC54E8554655315617596859BE5A3C5BB55C065C0F5C115C1A5E84
237
+ 5E8A5EE05F70627F628462DB638C63776607660C662D6676677E68A26A1F6A35
238
+ 6CBC6D886E096E58713C7126716775C77701785D7901796579F07AE07B117CA7
239
+ 7D39809683D6848B8549885D88F38A1F8A3C8A548A738C618CDE91A49266937E
240
+ 9418969C97984E0A4E084E1E4E575197527057CE583458CC5B225E3860C564FE
241
+ 676167566D4472B675737A6384B88B7291B89320563157F498FE000000000000
242
+ 90
243
+ 0000000000000000000000000000000000000000000000000000000000000000
244
+ 0000000000000000000000000000000000000000000000000000000000000000
245
+ 0000000000000000000000000000000000000000000000000000000000000000
246
+ 0000000000000000000000000000000000000000000000000000000000000000
247
+ 62ED690D6B9671ED7E548077827289E698DF87558FB15C3B4F384FE14FB55507
248
+ 5A205BDD5BE95FC3614E632F65B0664B68EE699B6D786DF1753375B9771F795E
249
+ 79E67D3381E382AF85AA89AA8A3A8EAB8F9B903291DD97074EBA4EC152035875
250
+ 58EC5C0B751A5C3D814E8A0A8FC59663976D7B258ACF9808916256F353A80000
251
+ 9017543957825E2563A86C34708A77617C8B7FE088709042915493109318968F
252
+ 745E9AC45D075D69657067A28DA896DB636E6749691983C5981796C088FE6F84
253
+ 647A5BF84E16702C755D662F51C4523652E259D35F8160276210653F6574661F
254
+ 667468F268166B636E057272751F76DB7CBE805658F088FD897F8AA08A938ACB
255
+ 901D91929752975965897A0E810696BB5E2D60DC621A65A56614679077F37A4D
256
+ 7C4D7E3E810A8CAC8D648DE18E5F78A9520762D963A5644262988A2D7A837BC0
257
+ 8AAC96EA7D76820C87494ED95148534353605BA35C025C165DDD6226624764B0
258
+ 681368346CC96D456D1767D36F5C714E717D65CB7A7F7BAD7DDA000000000000
259
+ 91
260
+ 0000000000000000000000000000000000000000000000000000000000000000
261
+ 0000000000000000000000000000000000000000000000000000000000000000
262
+ 0000000000000000000000000000000000000000000000000000000000000000
263
+ 0000000000000000000000000000000000000000000000000000000000000000
264
+ 7E4A7FA8817A821B823985A68A6E8CCE8DF59078907792AD929195839BAE524D
265
+ 55846F387136516879857E5581B37CCE564C58515CA863AA66FE66FD695A72D9
266
+ 758F758E790E795679DF7C977D207D4486078A34963B90619F2050E7527553CC
267
+ 53E2500955AA58EE594F723D5B8B5C64531D60E360F3635C6383633F63BB0000
268
+ 64CD65E966F95DE369CD69FD6F1571E54E8975E976F87A937CDF7DCF7D9C8061
269
+ 83498358846C84BC85FB88C58D709001906D9397971C9A1250CF5897618E81D3
270
+ 85358D0890204FC3507452475373606F6349675F6E2C8DB3901F4FD75C5E8CCA
271
+ 65CF7D9A53528896517663C35B585B6B5C0A640D6751905C4ED6591A592A6C70
272
+ 8A51553E581559A560F0625367C182356955964099C49A284F5358065BFE8010
273
+ 5CB15E2F5F856020614B623466FF6CF06EDE80CE817F82D4888B8CB89000902E
274
+ 968A9EDB9BDB4EE353F059277B2C918D984C9DF96EDD7027535355445B856258
275
+ 629E62D36CA26FEF74228A1794386FC18AFE833851E786F853EA000000000000
276
+ 92
277
+ 0000000000000000000000000000000000000000000000000000000000000000
278
+ 0000000000000000000000000000000000000000000000000000000000000000
279
+ 0000000000000000000000000000000000000000000000000000000000000000
280
+ 0000000000000000000000000000000000000000000000000000000000000000
281
+ 53E94F4690548FB0596A81315DFD7AEA8FBF68DA8C3772F89C486A3D8AB04E39
282
+ 53585606576662C563A265E66B4E6DE16E5B70AD77ED7AEF7BAA7DBB803D80C6
283
+ 86CB8A95935B56E358C75F3E65AD66966A806BB575378AC7502477E557305F1B
284
+ 6065667A6C6075F47A1A7F6E81F48718904599B37BC9755C7AF97B5184C40000
285
+ 901079E97A9283365AE177404E2D4EF25B995FE062BD663C67F16CE8866B8877
286
+ 8A3B914E92F399D06A177026732A82E784578CAF4E01514651CB558B5BF55E16
287
+ 5E335E815F145F355F6B5FB461F2631166A2671D6F6E7252753A773A80748139
288
+ 817887768ABF8ADC8D858DF3929A957798029CE552C5635776F467156C8873CD
289
+ 8CC393AE96736D25589C690E69CC8FFD939A75DB901A585A680263B469FB4F43
290
+ 6F2C67D88FBB85267DB49354693F6F70576A58F75B2C7D2C722A540A91E39DB4
291
+ 4EAD4F4E505C507552438C9E544858245B9A5E1D5E955EAD5EF75F1F608C62B5
292
+ 633A63D068AF6C407887798E7A0B7DE082478A028AE68E449013000000000000
293
+ 93
294
+ 0000000000000000000000000000000000000000000000000000000000000000
295
+ 0000000000000000000000000000000000000000000000000000000000000000
296
+ 0000000000000000000000000000000000000000000000000000000000000000
297
+ 0000000000000000000000000000000000000000000000000000000000000000
298
+ 90B8912D91D89F0E6CE5645864E265756EF476847B1B906993D16EBA54F25FB9
299
+ 64A48F4D8FED92445178586B59295C555E976DFB7E8F751C8CBC8EE2985B70B9
300
+ 4F1D6BBF6FB1753096FB514E54105835585759AC5C605F926597675C6E21767B
301
+ 83DF8CED901490FD934D7825783A52AA5EA6571F597460125012515A51AC0000
302
+ 51CD520055105854585859575B955CF65D8B60BC6295642D6771684368BC68DF
303
+ 76D76DD86E6F6D9B706F71C85F5375D879777B497B547B527CD67D7152308463
304
+ 856985E48A0E8B048C468E0F9003900F94199676982D9A3095D850CD52D5540C
305
+ 58025C0E61A7649E6D1E77B37AE580F48404905392855CE09D07533F5F975FB3
306
+ 6D9C7279776379BF7BE46BD272EC8AAD68036A6151F87A8169345C4A9CF682EB
307
+ 5BC59149701E56785C6F60C765666C8C8C5A90419813545166C7920D594890A3
308
+ 51854E4D51EA85998B0E7058637A934B696299B47E047577535769608EDF96E3
309
+ 6C5D4E8C5C3C5F108FE953028CD1808986795EFF65E54E735165000000000000
310
+ 94
311
+ 0000000000000000000000000000000000000000000000000000000000000000
312
+ 0000000000000000000000000000000000000000000000000000000000000000
313
+ 0000000000000000000000000000000000000000000000000000000000000000
314
+ 0000000000000000000000000000000000000000000000000000000000000000
315
+ 59825C3F97EE4EFB598A5FCD8A8D6FE179B079625BE78471732B71B15E745FF5
316
+ 637B649A71C37C984E435EFC4E4B57DC56A260A96FC37D0D80FD813381BF8FB2
317
+ 899786A45DF4628A64AD898767776CE26D3E743678345A467F7582AD99AC4FF3
318
+ 5EC362DD63926557676F76C3724C80CC80BA8F29914D500D57F95A9268850000
319
+ 6973716472FD8CB758F28CE0966A9019877F79E477E784294F2F5265535A62CD
320
+ 67CF6CCA767D7B947C95823685848FEB66DD6F2072067E1B83AB99C19EA651FD
321
+ 7BB178727BB880877B486AE85E61808C75517560516B92626E8C767A91979AEA
322
+ 4F107F70629C7B4F95A59CE9567A585986E496BC4F345224534A53CD53DB5E06
323
+ 642C6591677F6C3E6C4E724872AF73ED75547E41822C85E98CA97BC491C67169
324
+ 981298EF633D6669756A76E478D0854386EE532A5351542659835E875F7C60B2
325
+ 6249627962AB65906BD46CCC75B276AE789179D87DCB7F7780A588AB8AB98CBB
326
+ 907F975E98DB6A0B7C3850995C3E5FAE67876BD8743577097F8E000000000000
327
+ 95
328
+ 0000000000000000000000000000000000000000000000000000000000000000
329
+ 0000000000000000000000000000000000000000000000000000000000000000
330
+ 0000000000000000000000000000000000000000000000000000000000000000
331
+ 0000000000000000000000000000000000000000000000000000000000000000
332
+ 9F3B67CA7A175339758B9AED5F66819D83F180985F3C5FC575627B46903C6867
333
+ 59EB5A9B7D10767E8B2C4FF55F6A6A196C376F0274E2796888688A558C795EDF
334
+ 63CF75C579D282D7932892F2849C86ED9C2D54C15F6C658C6D5C70158CA78CD3
335
+ 983B654F74F64E0D4ED857E0592B5A665BCC51A85E035E9C6016627665770000
336
+ 65A7666E6D6E72367B268150819A82998B5C8CA08CE68D74961C96444FAE64AB
337
+ 6B66821E8461856A90E85C01695398A8847A85574F0F526F5FA95E45670D798F
338
+ 8179890789866DF55F1762556CB84ECF72699B925206543B567458B361A4626E
339
+ 711A596E7C897CDE7D1B96F06587805E4E194F75517558405E635E735F0A67C4
340
+ 4E26853D9589965B7C73980150FB58C1765678A7522577A585117B86504F5909
341
+ 72477BC77DE88FBA8FD4904D4FBF52C95A295F0197AD4FDD821792EA57036355
342
+ 6B69752B88DC8F147A4252DF58936155620A66AE6BCD7C3F83E950234FF85305
343
+ 5446583159495B9D5CF05CEF5D295E9662B16367653E65B9670B000000000000
344
+ 96
345
+ 0000000000000000000000000000000000000000000000000000000000000000
346
+ 0000000000000000000000000000000000000000000000000000000000000000
347
+ 0000000000000000000000000000000000000000000000000000000000000000
348
+ 0000000000000000000000000000000000000000000000000000000000000000
349
+ 6CD56CE170F978327E2B80DE82B3840C84EC870289128A2A8C4A90A692D298FD
350
+ 9CF39D6C4E4F4EA1508D5256574A59A85E3D5FD85FD9623F66B4671B67D068D2
351
+ 51927D2180AA81A88B008C8C8CBF927E96325420982C531750D5535C58A864B2
352
+ 6734726777667A4691E652C36CA16B8658005E4C5954672C7FFB51E176C60000
353
+ 646978E89B549EBB57CB59B96627679A6BCE54E969D95E55819C67959BAA67FE
354
+ 9C52685D4EA64FE353C862B9672B6CAB8FC44FAD7E6D9EBF4E0761626E806F2B
355
+ 85135473672A9B455DF37B955CAC5BC6871C6E4A84D17A14810859997C8D6C11
356
+ 772052D959227121725F77DB97279D61690B5A7F5A1851A5540D547D660E76DF
357
+ 8FF792989CF459EA725D6EC5514D68C97DBF7DEC97629EBA64786A2183025984
358
+ 5B5F6BDB731B76F27DB280178499513267289ED976EE676252FF99055C24623B
359
+ 7C7E8CB0554F60B67D0B958053014E5F51B6591C723A803691CE5F2577E25384
360
+ 5F797D0485AC8A338E8D975667F385AE9453610961086CB97652000000000000
361
+ 97
362
+ 0000000000000000000000000000000000000000000000000000000000000000
363
+ 0000000000000000000000000000000000000000000000000000000000000000
364
+ 0000000000000000000000000000000000000000000000000000000000000000
365
+ 0000000000000000000000000000000000000000000000000000000000000000
366
+ 8AED8F38552F4F51512A52C753CB5BA55E7D60A0618263D6670967DA6E676D8C
367
+ 733673377531795088D58A98904A909190F596C4878D59154E884F594E0E8A89
368
+ 8F3F981050AD5E7C59965BB95EB863DA63FA64C166DC694A69D86D0B6EB67194
369
+ 75287AAF7F8A8000844984C989818B218E0A9065967D990A617E62916B320000
370
+ 6C836D747FCC7FFC6DC07F8587BA88F8676583B1983C96F76D1B7D61843D916A
371
+ 4E7153755D506B046FEB85CD862D89A75229540F5C65674E68A87406748375E2
372
+ 88CF88E191CC96E296785F8B73877ACB844E63A0756552896D416E9C74097559
373
+ 786B7C9296867ADC9F8D4FB6616E65C5865C4E864EAE50DA4E2151CC5BEE6599
374
+ 68816DBC731F764277AD7A1C7CE7826F8AD2907C91CF96759818529B7DD1502B
375
+ 539867976DCB71D0743381E88F2A96A39C579E9F746058416D997D2F985E4EE4
376
+ 4F364F8B51B752B15DBA601C73B2793C82D3923496B796F6970A9E979F6266A6
377
+ 6B74521752A370C888C25EC9604B61906F2371497C3E7DF4806F000000000000
378
+ 98
379
+ 0000000000000000000000000000000000000000000000000000000000000000
380
+ 0000000000000000000000000000000000000000000000000000000000000000
381
+ 0000000000000000000000000000000000000000000000000000000000000000
382
+ 0000000000000000000000000000000000000000000000000000000000000000
383
+ 84EE9023932C54429B6F6AD370898CC28DEF973252B45A415ECA5F046717697C
384
+ 69946D6A6F0F726272FC7BED8001807E874B90CE516D9E937984808B93328AD6
385
+ 502D548C8A716B6A8CC4810760D167A09DF24E994E989C108A6B85C185686900
386
+ 6E7E789781550000000000000000000000000000000000000000000000000000
387
+ 0000000000000000000000000000000000000000000000000000000000000000
388
+ 0000000000000000000000000000000000000000000000000000000000005F0C
389
+ 4E104E154E2A4E314E364E3C4E3F4E424E564E584E824E858C6B4E8A82125F0D
390
+ 4E8E4E9E4E9F4EA04EA24EB04EB34EB64ECE4ECD4EC44EC64EC24ED74EDE4EED
391
+ 4EDF4EF74F094F5A4F304F5B4F5D4F574F474F764F884F8F4F984F7B4F694F70
392
+ 4F914F6F4F864F9651184FD44FDF4FCE4FD84FDB4FD14FDA4FD04FE44FE5501A
393
+ 50285014502A502550054F1C4FF650215029502C4FFE4FEF5011500650435047
394
+ 6703505550505048505A5056506C50785080509A508550B450B2000000000000
395
+ 99
396
+ 0000000000000000000000000000000000000000000000000000000000000000
397
+ 0000000000000000000000000000000000000000000000000000000000000000
398
+ 0000000000000000000000000000000000000000000000000000000000000000
399
+ 0000000000000000000000000000000000000000000000000000000000000000
400
+ 50C950CA50B350C250D650DE50E550ED50E350EE50F950F55109510151025116
401
+ 51155114511A5121513A5137513C513B513F51405152514C515451627AF85169
402
+ 516A516E5180518256D8518C5189518F519151935195519651A451A651A251A9
403
+ 51AA51AB51B351B151B251B051B551BD51C551C951DB51E0865551E951ED0000
404
+ 51F051F551FE5204520B5214520E5227522A522E52335239524F5244524B524C
405
+ 525E5254526A527452695273527F527D528D529452925271528852918FA88FA7
406
+ 52AC52AD52BC52B552C152CD52D752DE52E352E698ED52E052F352F552F852F9
407
+ 530653087538530D5310530F5315531A5323532F533153335338534053465345
408
+ 4E175349534D51D6535E5369536E5918537B53775382539653A053A653A553AE
409
+ 53B053B653C37C1296D953DF66FC71EE53EE53E853ED53FA5401543D5440542C
410
+ 542D543C542E54365429541D544E548F5475548E545F5471547754705492547B
411
+ 5480547654845490548654C754A254B854A554AC54C454C854A8000000000000
412
+ 9A
413
+ 0000000000000000000000000000000000000000000000000000000000000000
414
+ 0000000000000000000000000000000000000000000000000000000000000000
415
+ 0000000000000000000000000000000000000000000000000000000000000000
416
+ 0000000000000000000000000000000000000000000000000000000000000000
417
+ 54AB54C254A454BE54BC54D854E554E6550F551454FD54EE54ED54FA54E25539
418
+ 55405563554C552E555C55455556555755385533555D5599558054AF558A559F
419
+ 557B557E5598559E55AE557C558355A9558755A855DA55C555DF55C455DC55E4
420
+ 55D4561455F7561655FE55FD561B55F9564E565071DF56345636563256380000
421
+ 566B5664562F566C566A56865680568A56A05694568F56A556AE56B656B456C2
422
+ 56BC56C156C356C056C856CE56D156D356D756EE56F9570056FF570457095708
423
+ 570B570D57135718571655C7571C572657375738574E573B5740574F576957C0
424
+ 57885761577F5789579357A057B357A457AA57B057C357C657D457D257D3580A
425
+ 57D657E3580B5819581D587258215862584B58706BC05852583D5879588558B9
426
+ 589F58AB58BA58DE58BB58B858AE58C558D358D158D758D958D858E558DC58E4
427
+ 58DF58EF58FA58F958FB58FC58FD5902590A5910591B68A65925592C592D5932
428
+ 5938593E7AD259555950594E595A5958596259605967596C5969000000000000
429
+ 9B
430
+ 0000000000000000000000000000000000000000000000000000000000000000
431
+ 0000000000000000000000000000000000000000000000000000000000000000
432
+ 0000000000000000000000000000000000000000000000000000000000000000
433
+ 0000000000000000000000000000000000000000000000000000000000000000
434
+ 59785981599D4F5E4FAB59A359B259C659E859DC598D59D959DA5A255A1F5A11
435
+ 5A1C5A095A1A5A405A6C5A495A355A365A625A6A5A9A5ABC5ABE5ACB5AC25ABD
436
+ 5AE35AD75AE65AE95AD65AFA5AFB5B0C5B0B5B165B325AD05B2A5B365B3E5B43
437
+ 5B455B405B515B555B5A5B5B5B655B695B705B735B755B7865885B7A5B800000
438
+ 5B835BA65BB85BC35BC75BC95BD45BD05BE45BE65BE25BDE5BE55BEB5BF05BF6
439
+ 5BF35C055C075C085C0D5C135C205C225C285C385C395C415C465C4E5C535C50
440
+ 5C4F5B715C6C5C6E4E625C765C795C8C5C915C94599B5CAB5CBB5CB65CBC5CB7
441
+ 5CC55CBE5CC75CD95CE95CFD5CFA5CED5D8C5CEA5D0B5D155D175D5C5D1F5D1B
442
+ 5D115D145D225D1A5D195D185D4C5D525D4E5D4B5D6C5D735D765D875D845D82
443
+ 5DA25D9D5DAC5DAE5DBD5D905DB75DBC5DC95DCD5DD35DD25DD65DDB5DEB5DF2
444
+ 5DF55E0B5E1A5E195E115E1B5E365E375E445E435E405E4E5E575E545E5F5E62
445
+ 5E645E475E755E765E7A9EBC5E7F5EA05EC15EC25EC85ED05ECF000000000000
446
+ 9C
447
+ 0000000000000000000000000000000000000000000000000000000000000000
448
+ 0000000000000000000000000000000000000000000000000000000000000000
449
+ 0000000000000000000000000000000000000000000000000000000000000000
450
+ 0000000000000000000000000000000000000000000000000000000000000000
451
+ 5ED65EE35EDD5EDA5EDB5EE25EE15EE85EE95EEC5EF15EF35EF05EF45EF85EFE
452
+ 5F035F095F5D5F5C5F0B5F115F165F295F2D5F385F415F485F4C5F4E5F2F5F51
453
+ 5F565F575F595F615F6D5F735F775F835F825F7F5F8A5F885F915F875F9E5F99
454
+ 5F985FA05FA85FAD5FBC5FD65FFB5FE45FF85FF15FDD60B35FFF602160600000
455
+ 601960106029600E6031601B6015602B6026600F603A605A6041606A6077605F
456
+ 604A6046604D6063604360646042606C606B60596081608D60E76083609A6084
457
+ 609B60966097609260A7608B60E160B860E060D360B45FF060BD60C660B560D8
458
+ 614D6115610660F660F7610060F460FA6103612160FB60F1610D610E6147613E
459
+ 61286127614A613F613C612C6134613D614261446173617761586159615A616B
460
+ 6174616F61656171615F615D6153617561996196618761AC6194619A618A6191
461
+ 61AB61AE61CC61CA61C961F761C861C361C661BA61CB7F7961CD61E661E361F6
462
+ 61FA61F461FF61FD61FC61FE620062086209620D620C6214621B000000000000
463
+ 9D
464
+ 0000000000000000000000000000000000000000000000000000000000000000
465
+ 0000000000000000000000000000000000000000000000000000000000000000
466
+ 0000000000000000000000000000000000000000000000000000000000000000
467
+ 0000000000000000000000000000000000000000000000000000000000000000
468
+ 621E6221622A622E6230623262336241624E625E6263625B62606268627C6282
469
+ 6289627E62926293629662D46283629462D762D162BB62CF62FF62C664D462C8
470
+ 62DC62CC62CA62C262C7629B62C9630C62EE62F163276302630862EF62F56350
471
+ 633E634D641C634F6396638E638063AB637663A3638F6389639F63B5636B0000
472
+ 636963BE63E963C063C663E363C963D263F663C4641664346406641364266436
473
+ 651D64176428640F6467646F6476644E652A6495649364A564A9648864BC64DA
474
+ 64D264C564C764BB64D864C264F164E7820964E064E162AC64E364EF652C64F6
475
+ 64F464F264FA650064FD6518651C650565246523652B65346535653765366538
476
+ 754B654865566555654D6558655E655D65726578658265838B8A659B659F65AB
477
+ 65B765C365C665C165C465CC65D265DB65D965E065E165F16772660A660365FB
478
+ 6773663566366634661C664F664466496641665E665D666466676668665F6662
479
+ 667066836688668E668966846698669D66C166B966C966BE66BC000000000000
480
+ 9E
481
+ 0000000000000000000000000000000000000000000000000000000000000000
482
+ 0000000000000000000000000000000000000000000000000000000000000000
483
+ 0000000000000000000000000000000000000000000000000000000000000000
484
+ 0000000000000000000000000000000000000000000000000000000000000000
485
+ 66C466B866D666DA66E0663F66E666E966F066F566F7670F6716671E67266727
486
+ 9738672E673F67366741673867376746675E67606759676367646789677067A9
487
+ 677C676A678C678B67A667A1678567B767EF67B467EC67B367E967B867E467DE
488
+ 67DD67E267EE67B967CE67C667E76A9C681E684668296840684D6832684E0000
489
+ 68B3682B685968636877687F689F688F68AD6894689D689B68836AAE68B96874
490
+ 68B568A068BA690F688D687E690168CA690868D86922692668E1690C68CD68D4
491
+ 68E768D569366912690468D768E3692568F968E068EF6928692A691A69236921
492
+ 68C669796977695C6978696B6954697E696E69396974693D695969306961695E
493
+ 695D6981696A69B269AE69D069BF69C169D369BE69CE5BE869CA69DD69BB69C3
494
+ 69A76A2E699169A0699C699569B469DE69E86A026A1B69FF6B0A69F969F269E7
495
+ 6A0569B16A1E69ED6A1469EB6A0A6A126AC16A236A136A446A0C6A726A366A78
496
+ 6A476A626A596A666A486A386A226A906A8D6AA06A846AA26AA3000000000000
497
+ 9F
498
+ 0000000000000000000000000000000000000000000000000000000000000000
499
+ 0000000000000000000000000000000000000000000000000000000000000000
500
+ 0000000000000000000000000000000000000000000000000000000000000000
501
+ 0000000000000000000000000000000000000000000000000000000000000000
502
+ 6A9786176ABB6AC36AC26AB86AB36AAC6ADE6AD16ADF6AAA6ADA6AEA6AFB6B05
503
+ 86166AFA6B126B169B316B1F6B386B3776DC6B3998EE6B476B436B496B506B59
504
+ 6B546B5B6B5F6B616B786B796B7F6B806B846B836B8D6B986B956B9E6BA46BAA
505
+ 6BAB6BAF6BB26BB16BB36BB76BBC6BC66BCB6BD36BDF6BEC6BEB6BF36BEF0000
506
+ 9EBE6C086C136C146C1B6C246C236C5E6C556C626C6A6C826C8D6C9A6C816C9B
507
+ 6C7E6C686C736C926C906CC46CF16CD36CBD6CD76CC56CDD6CAE6CB16CBE6CBA
508
+ 6CDB6CEF6CD96CEA6D1F884D6D366D2B6D3D6D386D196D356D336D126D0C6D63
509
+ 6D936D646D5A6D796D596D8E6D956FE46D856DF96E156E0A6DB56DC76DE66DB8
510
+ 6DC66DEC6DDE6DCC6DE86DD26DC56DFA6DD96DE46DD56DEA6DEE6E2D6E6E6E2E
511
+ 6E196E726E5F6E3E6E236E6B6E2B6E766E4D6E1F6E436E3A6E4E6E246EFF6E1D
512
+ 6E386E826EAA6E986EC96EB76ED36EBD6EAF6EC46EB26ED46ED56E8F6EA56EC2
513
+ 6E9F6F416F11704C6EEC6EF86EFE6F3F6EF26F316EEF6F326ECC000000000000
514
+ E0
515
+ 0000000000000000000000000000000000000000000000000000000000000000
516
+ 0000000000000000000000000000000000000000000000000000000000000000
517
+ 0000000000000000000000000000000000000000000000000000000000000000
518
+ 0000000000000000000000000000000000000000000000000000000000000000
519
+ 6F3E6F136EF76F866F7A6F786F816F806F6F6F5B6FF36F6D6F826F7C6F586F8E
520
+ 6F916FC26F666FB36FA36FA16FA46FB96FC66FAA6FDF6FD56FEC6FD46FD86FF1
521
+ 6FEE6FDB7009700B6FFA70117001700F6FFE701B701A6F74701D7018701F7030
522
+ 703E7032705170637099709270AF70F170AC70B870B370AE70DF70CB70DD0000
523
+ 70D9710970FD711C711971657155718871667162714C7156716C718F71FB7184
524
+ 719571A871AC71D771B971BE71D271C971D471CE71E071EC71E771F571FC71F9
525
+ 71FF720D7210721B7228722D722C72307232723B723C723F72407246724B7258
526
+ 7274727E7282728172877292729672A272A772B972B272C372C672C472CE72D2
527
+ 72E272E072E172F972F7500F7317730A731C7316731D7334732F73297325733E
528
+ 734E734F9ED87357736A7368737073787375737B737A73C873B373CE73BB73C0
529
+ 73E573EE73DE74A27405746F742573F87432743A7455743F745F74597441745C
530
+ 746974707463746A7476747E748B749E74A774CA74CF74D473F1000000000000
531
+ E1
532
+ 0000000000000000000000000000000000000000000000000000000000000000
533
+ 0000000000000000000000000000000000000000000000000000000000000000
534
+ 0000000000000000000000000000000000000000000000000000000000000000
535
+ 0000000000000000000000000000000000000000000000000000000000000000
536
+ 74E074E374E774E974EE74F274F074F174F874F7750475037505750C750E750D
537
+ 75157513751E7526752C753C7544754D754A7549755B7546755A756975647567
538
+ 756B756D75787576758675877574758A758975827594759A759D75A575A375C2
539
+ 75B375C375B575BD75B875BC75B175CD75CA75D275D975E375DE75FE75FF0000
540
+ 75FC760175F075FA75F275F3760B760D7609761F762776207621762276247634
541
+ 7630763B764776487646765C76587661766276687669766A7667766C76707672
542
+ 76767678767C768076837688768B768E769676937699769A76B076B476B876B9
543
+ 76BA76C276CD76D676D276DE76E176E576E776EA862F76FB7708770777047729
544
+ 7724771E77257726771B773777387747775A7768776B775B7765777F777E7779
545
+ 778E778B779177A0779E77B077B677B977BF77BC77BD77BB77C777CD77D777DA
546
+ 77DC77E377EE77FC780C781279267820792A7845788E78747886787C789A788C
547
+ 78A378B578AA78AF78D178C678CB78D478BE78BC78C578CA78EC000000000000
548
+ E2
549
+ 0000000000000000000000000000000000000000000000000000000000000000
550
+ 0000000000000000000000000000000000000000000000000000000000000000
551
+ 0000000000000000000000000000000000000000000000000000000000000000
552
+ 0000000000000000000000000000000000000000000000000000000000000000
553
+ 78E778DA78FD78F47907791279117919792C792B794079607957795F795A7955
554
+ 7953797A797F798A799D79A79F4B79AA79AE79B379B979BA79C979D579E779EC
555
+ 79E179E37A087A0D7A187A197A207A1F79807A317A3B7A3E7A377A437A577A49
556
+ 7A617A627A699F9D7A707A797A7D7A887A977A957A987A967AA97AC87AB00000
557
+ 7AB67AC57AC47ABF90837AC77ACA7ACD7ACF7AD57AD37AD97ADA7ADD7AE17AE2
558
+ 7AE67AED7AF07B027B0F7B0A7B067B337B187B197B1E7B357B287B367B507B7A
559
+ 7B047B4D7B0B7B4C7B457B757B657B747B677B707B717B6C7B6E7B9D7B987B9F
560
+ 7B8D7B9C7B9A7B8B7B927B8F7B5D7B997BCB7BC17BCC7BCF7BB47BC67BDD7BE9
561
+ 7C117C147BE67BE57C607C007C077C137BF37BF77C177C0D7BF67C237C277C2A
562
+ 7C1F7C377C2B7C3D7C4C7C437C547C4F7C407C507C587C5F7C647C567C657C6C
563
+ 7C757C837C907CA47CAD7CA27CAB7CA17CA87CB37CB27CB17CAE7CB97CBD7CC0
564
+ 7CC57CC27CD87CD27CDC7CE29B3B7CEF7CF27CF47CF67CFA7D06000000000000
565
+ E3
566
+ 0000000000000000000000000000000000000000000000000000000000000000
567
+ 0000000000000000000000000000000000000000000000000000000000000000
568
+ 0000000000000000000000000000000000000000000000000000000000000000
569
+ 0000000000000000000000000000000000000000000000000000000000000000
570
+ 7D027D1C7D157D0A7D457D4B7D2E7D327D3F7D357D467D737D567D4E7D727D68
571
+ 7D6E7D4F7D637D937D897D5B7D8F7D7D7D9B7DBA7DAE7DA37DB57DC77DBD7DAB
572
+ 7E3D7DA27DAF7DDC7DB87D9F7DB07DD87DDD7DE47DDE7DFB7DF27DE17E057E0A
573
+ 7E237E217E127E317E1F7E097E0B7E227E467E667E3B7E357E397E437E370000
574
+ 7E327E3A7E677E5D7E567E5E7E597E5A7E797E6A7E697E7C7E7B7E837DD57E7D
575
+ 8FAE7E7F7E887E897E8C7E927E907E937E947E967E8E7E9B7E9C7F387F3A7F45
576
+ 7F4C7F4D7F4E7F507F517F557F547F587F5F7F607F687F697F677F787F827F86
577
+ 7F837F887F877F8C7F947F9E7F9D7F9A7FA37FAF7FB27FB97FAE7FB67FB88B71
578
+ 7FC57FC67FCA7FD57FD47FE17FE67FE97FF37FF998DC80068004800B80128018
579
+ 8019801C80218028803F803B804A804680528058805A805F8062806880738072
580
+ 807080768079807D807F808480868085809B8093809A80AD519080AC80DB80E5
581
+ 80D980DD80C480DA80D6810980EF80F1811B81298123812F814B000000000000
582
+ E4
583
+ 0000000000000000000000000000000000000000000000000000000000000000
584
+ 0000000000000000000000000000000000000000000000000000000000000000
585
+ 0000000000000000000000000000000000000000000000000000000000000000
586
+ 0000000000000000000000000000000000000000000000000000000000000000
587
+ 968B8146813E8153815180FC8171816E81658166817481838188818A81808182
588
+ 81A0819581A481A3815F819381A981B081B581BE81B881BD81C081C281BA81C9
589
+ 81CD81D181D981D881C881DA81DF81E081E781FA81FB81FE8201820282058207
590
+ 820A820D821082168229822B82388233824082598258825D825A825F82640000
591
+ 82628268826A826B822E827182778278827E828D829282AB829F82BB82AC82E1
592
+ 82E382DF82D282F482F382FA8393830382FB82F982DE830682DC830982D98335
593
+ 83348316833283318340833983508345832F832B831783188385839A83AA839F
594
+ 83A283968323838E8387838A837C83B58373837583A0838983A883F4841383EB
595
+ 83CE83FD840383D8840B83C183F7840783E083F2840D8422842083BD84388506
596
+ 83FB846D842A843C855A84848477846B84AD846E848284698446842C846F8479
597
+ 843584CA846284B984BF849F84D984CD84BB84DA84D084C184C684D684A18521
598
+ 84FF84F485178518852C851F8515851484FC8540856385588548000000000000
599
+ E5
600
+ 0000000000000000000000000000000000000000000000000000000000000000
601
+ 0000000000000000000000000000000000000000000000000000000000000000
602
+ 0000000000000000000000000000000000000000000000000000000000000000
603
+ 0000000000000000000000000000000000000000000000000000000000000000
604
+ 85418602854B8555858085A485888591858A85A8856D8594859B85EA8587859C
605
+ 8577857E859085C985BA85CF85B985D085D585DD85E585DC85F9860A8613860B
606
+ 85FE85FA86068622861A8630863F864D4E558654865F86678671869386A386A9
607
+ 86AA868B868C86B686AF86C486C686B086C9882386AB86D486DE86E986EC0000
608
+ 86DF86DB86EF8712870687088700870386FB87118709870D86F9870A8734873F
609
+ 8737873B87258729871A8760875F8778874C874E877487578768876E87598753
610
+ 8763876A880587A2879F878287AF87CB87BD87C087D096D687AB87C487B387C7
611
+ 87C687BB87EF87F287E0880F880D87FE87F687F7880E87D28811881688158822
612
+ 88218831883688398827883B8844884288528859885E8862886B8881887E889E
613
+ 8875887D88B5887288828897889288AE889988A2888D88A488B088BF88B188C3
614
+ 88C488D488D888D988DD88F9890288FC88F488E888F28904890C890A89138943
615
+ 891E8925892A892B89418944893B89368938894C891D8960895E000000000000
616
+ E6
617
+ 0000000000000000000000000000000000000000000000000000000000000000
618
+ 0000000000000000000000000000000000000000000000000000000000000000
619
+ 0000000000000000000000000000000000000000000000000000000000000000
620
+ 0000000000000000000000000000000000000000000000000000000000000000
621
+ 89668964896D896A896F89748977897E89838988898A8993899889A189A989A6
622
+ 89AC89AF89B289BA89BD89BF89C089DA89DC89DD89E789F489F88A038A168A10
623
+ 8A0C8A1B8A1D8A258A368A418A5B8A528A468A488A7C8A6D8A6C8A628A858A82
624
+ 8A848AA88AA18A918AA58AA68A9A8AA38AC48ACD8AC28ADA8AEB8AF38AE70000
625
+ 8AE48AF18B148AE08AE28AF78ADE8ADB8B0C8B078B1A8AE18B168B108B178B20
626
+ 8B3397AB8B268B2B8B3E8B288B418B4C8B4F8B4E8B498B568B5B8B5A8B6B8B5F
627
+ 8B6C8B6F8B748B7D8B808B8C8B8E8B928B938B968B998B9A8C3A8C418C3F8C48
628
+ 8C4C8C4E8C508C558C628C6C8C788C7A8C828C898C858C8A8C8D8C8E8C948C7C
629
+ 8C98621D8CAD8CAA8CBD8CB28CB38CAE8CB68CC88CC18CE48CE38CDA8CFD8CFA
630
+ 8CFB8D048D058D0A8D078D0F8D0D8D109F4E8D138CCD8D148D168D678D6D8D71
631
+ 8D738D818D998DC28DBE8DBA8DCF8DDA8DD68DCC8DDB8DCB8DEA8DEB8DDF8DE3
632
+ 8DFC8E088E098DFF8E1D8E1E8E108E1F8E428E358E308E348E4A000000000000
633
+ E7
634
+ 0000000000000000000000000000000000000000000000000000000000000000
635
+ 0000000000000000000000000000000000000000000000000000000000000000
636
+ 0000000000000000000000000000000000000000000000000000000000000000
637
+ 0000000000000000000000000000000000000000000000000000000000000000
638
+ 8E478E498E4C8E508E488E598E648E608E2A8E638E558E768E728E7C8E818E87
639
+ 8E858E848E8B8E8A8E938E918E948E998EAA8EA18EAC8EB08EC68EB18EBE8EC5
640
+ 8EC88ECB8EDB8EE38EFC8EFB8EEB8EFE8F0A8F058F158F128F198F138F1C8F1F
641
+ 8F1B8F0C8F268F338F3B8F398F458F428F3E8F4C8F498F468F4E8F578F5C0000
642
+ 8F628F638F648F9C8F9F8FA38FAD8FAF8FB78FDA8FE58FE28FEA8FEF90878FF4
643
+ 90058FF98FFA901190159021900D901E9016900B90279036903590398FF8904F
644
+ 905090519052900E9049903E90569058905E9068906F907696A890729082907D
645
+ 90819080908A9089908F90A890AF90B190B590E290E4624890DB910291129119
646
+ 91329130914A9156915891639165916991739172918B9189918291A291AB91AF
647
+ 91AA91B591B491BA91C091C191C991CB91D091D691DF91E191DB91FC91F591F6
648
+ 921E91FF9214922C92159211925E925792459249926492489295923F924B9250
649
+ 929C92969293929B925A92CF92B992B792E9930F92FA9344932E000000000000
650
+ E8
651
+ 0000000000000000000000000000000000000000000000000000000000000000
652
+ 0000000000000000000000000000000000000000000000000000000000000000
653
+ 0000000000000000000000000000000000000000000000000000000000000000
654
+ 0000000000000000000000000000000000000000000000000000000000000000
655
+ 93199322931A9323933A9335933B935C9360937C936E935693B093AC93AD9394
656
+ 93B993D693D793E893E593D893C393DD93D093C893E4941A9414941394039407
657
+ 94109436942B94359421943A944194529444945B94609462945E946A92299470
658
+ 94759477947D945A947C947E9481947F95829587958A95949596959895990000
659
+ 95A095A895A795AD95BC95BB95B995BE95CA6FF695C395CD95CC95D595D495D6
660
+ 95DC95E195E595E296219628962E962F9642964C964F964B9677965C965E965D
661
+ 965F96669672966C968D96989695969796AA96A796B196B296B096B496B696B8
662
+ 96B996CE96CB96C996CD894D96DC970D96D596F99704970697089713970E9711
663
+ 970F971697199724972A97309739973D973E97449746974897429749975C9760
664
+ 97649766976852D2976B977197799785977C9781977A9786978B978F9790979C
665
+ 97A897A697A397B397B497C397C697C897CB97DC97ED9F4F97F27ADF97F697F5
666
+ 980F980C9838982498219837983D9846984F984B986B986F9870000000000000
667
+ E9
668
+ 0000000000000000000000000000000000000000000000000000000000000000
669
+ 0000000000000000000000000000000000000000000000000000000000000000
670
+ 0000000000000000000000000000000000000000000000000000000000000000
671
+ 0000000000000000000000000000000000000000000000000000000000000000
672
+ 98719874987398AA98AF98B198B698C498C398C698E998EB9903990999129914
673
+ 99189921991D991E99249920992C992E993D993E9942994999459950994B9951
674
+ 9952994C99559997999899A599AD99AE99BC99DF99DB99DD99D899D199ED99EE
675
+ 99F199F299FB99F89A019A0F9A0599E29A199A2B9A379A459A429A409A430000
676
+ 9A3E9A559A4D9A5B9A579A5F9A629A659A649A699A6B9A6A9AAD9AB09ABC9AC0
677
+ 9ACF9AD19AD39AD49ADE9ADF9AE29AE39AE69AEF9AEB9AEE9AF49AF19AF79AFB
678
+ 9B069B189B1A9B1F9B229B239B259B279B289B299B2A9B2E9B2F9B329B449B43
679
+ 9B4F9B4D9B4E9B519B589B749B939B839B919B969B979B9F9BA09BA89BB49BC0
680
+ 9BCA9BB99BC69BCF9BD19BD29BE39BE29BE49BD49BE19C3A9BF29BF19BF09C15
681
+ 9C149C099C139C0C9C069C089C129C0A9C049C2E9C1B9C259C249C219C309C47
682
+ 9C329C469C3E9C5A9C609C679C769C789CE79CEC9CF09D099D089CEB9D039D06
683
+ 9D2A9D269DAF9D239D1F9D449D159D129D419D3F9D3E9D469D48000000000000
684
+ EA
685
+ 0000000000000000000000000000000000000000000000000000000000000000
686
+ 0000000000000000000000000000000000000000000000000000000000000000
687
+ 0000000000000000000000000000000000000000000000000000000000000000
688
+ 0000000000000000000000000000000000000000000000000000000000000000
689
+ 9D5D9D5E9D649D519D509D599D729D899D879DAB9D6F9D7A9D9A9DA49DA99DB2
690
+ 9DC49DC19DBB9DB89DBA9DC69DCF9DC29DD99DD39DF89DE69DED9DEF9DFD9E1A
691
+ 9E1B9E1E9E759E799E7D9E819E889E8B9E8C9E929E959E919E9D9EA59EA99EB8
692
+ 9EAA9EAD97619ECC9ECE9ECF9ED09ED49EDC9EDE9EDD9EE09EE59EE89EEF0000
693
+ 9EF49EF69EF79EF99EFB9EFC9EFD9F079F0876B79F159F219F2C9F3E9F4A9F52
694
+ 9F549F639F5F9F609F619F669F679F6C9F6A9F779F729F769F959F9C9FA0582F
695
+ 69C79059746451DC719900000000000000000000000000000000000000000000
696
+ 0000000000000000000000000000000000000000000000000000000000000000
697
+ 0000000000000000000000000000000000000000000000000000000000000000
698
+ 0000000000000000000000000000000000000000000000000000000000000000
699
+ 0000000000000000000000000000000000000000000000000000000000000000
700
+ 0000000000000000000000000000000000000000000000000000000000000000
701
+ ED
702
+ 0000000000000000000000000000000000000000000000000000000000000000
703
+ 0000000000000000000000000000000000000000000000000000000000000000
704
+ 0000000000000000000000000000000000000000000000000000000000000000
705
+ 0000000000000000000000000000000000000000000000000000000000000000
706
+ 7E8A891C9348928884DC4FC970BB663168C892F966FB5F454E284EE14EFC4F00
707
+ 4F034F394F564F924F8A4F9A4F944FCD504050224FFF501E5046507050425094
708
+ 50F450D8514A5164519D51BE51EC5215529C52A652C052DB5300530753245372
709
+ 539353B253DDFA0E549C548A54A954FF55865759576557AC57C857C7FA0F0000
710
+ FA10589E58B2590B5953595B595D596359A459BA5B565BC0752F5BD85BEC5C1E
711
+ 5CA65CBA5CF55D275D53FA115D425D6D5DB85DB95DD05F215F345F675FB75FDE
712
+ 605D6085608A60DE60D5612060F26111613761306198621362A663F56460649D
713
+ 64CE654E66006615663B6609662E661E6624666566576659FA126673669966A0
714
+ 66B266BF66FA670EF929676667BB685267C06801684468CFFA136968FA146998
715
+ 69E26A306A6B6A466A736A7E6AE26AE46BD66C3F6C5C6C866C6F6CDA6D046D87
716
+ 6D6F6D966DAC6DCF6DF86DF26DFC6E396E5C6E276E3C6EBF6F886FB56FF57005
717
+ 70077028708570AB710F7104715C71467147FA1571C171FE72B1000000000000
718
+ EE
719
+ 0000000000000000000000000000000000000000000000000000000000000000
720
+ 0000000000000000000000000000000000000000000000000000000000000000
721
+ 0000000000000000000000000000000000000000000000000000000000000000
722
+ 0000000000000000000000000000000000000000000000000000000000000000
723
+ 72BE7324FA16737773BD73C973D673E373D2740773F57426742A7429742E7462
724
+ 7489749F7501756F7682769C769E769B76A6FA17774652AF7821784E7864787A
725
+ 7930FA18FA19FA1A7994FA1B799B7AD17AE7FA1C7AEB7B9EFA1D7D487D5C7DB7
726
+ 7DA07DD67E527F477FA1FA1E83018362837F83C783F6844884B4855385590000
727
+ 856BFA1F85B0FA20FA21880788F58A128A378A798AA78ABE8ADFFA228AF68B53
728
+ 8B7F8CF08CF48D128D76FA238ECFFA24FA25906790DEFA269115912791DA91D7
729
+ 91DE91ED91EE91E491E592069210920A923A9240923C924E9259925192399267
730
+ 92A79277927892E792D792D992D0FA2792D592E092D39325932192FBFA28931E
731
+ 92FF931D93029370935793A493C693DE93F89431944594489592F9DCFA29969D
732
+ 96AF9733973B9743974D974F9751975598579865FA2AFA2B9927FA2C999E9A4E
733
+ 9AD99ADC9B759B729B8F9BB19BBB9C009D709D6BFA2D9E199ED1000000002170
734
+ 217121722173217421752176217721782179FFE2FFE4FF07FF02000000000000
735
+ FA
736
+ 0000000000000000000000000000000000000000000000000000000000000000
737
+ 0000000000000000000000000000000000000000000000000000000000000000
738
+ 0000000000000000000000000000000000000000000000000000000000000000
739
+ 0000000000000000000000000000000000000000000000000000000000000000
740
+ 2170217121722173217421752176217721782179216021612162216321642165
741
+ 2166216721682169FFE2FFE4FF07FF0232312116212122357E8A891C93489288
742
+ 84DC4FC970BB663168C892F966FB5F454E284EE14EFC4F004F034F394F564F92
743
+ 4F8A4F9A4F944FCD504050224FFF501E504650705042509450F450D8514A0000
744
+ 5164519D51BE51EC5215529C52A652C052DB5300530753245372539353B253DD
745
+ FA0E549C548A54A954FF55865759576557AC57C857C7FA0FFA10589E58B2590B
746
+ 5953595B595D596359A459BA5B565BC0752F5BD85BEC5C1E5CA65CBA5CF55D27
747
+ 5D53FA115D425D6D5DB85DB95DD05F215F345F675FB75FDE605D6085608A60DE
748
+ 60D5612060F26111613761306198621362A663F56460649D64CE654E66006615
749
+ 663B6609662E661E6624666566576659FA126673669966A066B266BF66FA670E
750
+ F929676667BB685267C06801684468CFFA136968FA14699869E26A306A6B6A46
751
+ 6A736A7E6AE26AE46BD66C3F6C5C6C866C6F6CDA6D046D876D6F000000000000
752
+ FB
753
+ 0000000000000000000000000000000000000000000000000000000000000000
754
+ 0000000000000000000000000000000000000000000000000000000000000000
755
+ 0000000000000000000000000000000000000000000000000000000000000000
756
+ 0000000000000000000000000000000000000000000000000000000000000000
757
+ 6D966DAC6DCF6DF86DF26DFC6E396E5C6E276E3C6EBF6F886FB56FF570057007
758
+ 7028708570AB710F7104715C71467147FA1571C171FE72B172BE7324FA167377
759
+ 73BD73C973D673E373D2740773F57426742A7429742E74627489749F7501756F
760
+ 7682769C769E769B76A6FA17774652AF7821784E7864787A7930FA18FA190000
761
+ FA1A7994FA1B799B7AD17AE7FA1C7AEB7B9EFA1D7D487D5C7DB77DA07DD67E52
762
+ 7F477FA1FA1E83018362837F83C783F6844884B485538559856BFA1F85B0FA20
763
+ FA21880788F58A128A378A798AA78ABE8ADFFA228AF68B538B7F8CF08CF48D12
764
+ 8D76FA238ECFFA24FA25906790DEFA269115912791DA91D791DE91ED91EE91E4
765
+ 91E592069210920A923A9240923C924E925992519239926792A79277927892E7
766
+ 92D792D992D0FA2792D592E092D39325932192FBFA28931E92FF931D93029370
767
+ 935793A493C693DE93F89431944594489592F9DCFA29969D96AF9733973B9743
768
+ 974D974F9751975598579865FA2AFA2B9927FA2C999E9A4E9AD9000000000000
769
+ FC
770
+ 0000000000000000000000000000000000000000000000000000000000000000
771
+ 0000000000000000000000000000000000000000000000000000000000000000
772
+ 0000000000000000000000000000000000000000000000000000000000000000
773
+ 0000000000000000000000000000000000000000000000000000000000000000
774
+ 9ADC9B759B729B8F9BB19BBB9C009D709D6BFA2D9E199ED10000000000000000
775
+ 0000000000000000000000000000000000000000000000000000000000000000
776
+ 0000000000000000000000000000000000000000000000000000000000000000
777
+ 0000000000000000000000000000000000000000000000000000000000000000
778
+ 0000000000000000000000000000000000000000000000000000000000000000
779
+ 0000000000000000000000000000000000000000000000000000000000000000
780
+ 0000000000000000000000000000000000000000000000000000000000000000
781
+ 0000000000000000000000000000000000000000000000000000000000000000
782
+ 0000000000000000000000000000000000000000000000000000000000000000
783
+ 0000000000000000000000000000000000000000000000000000000000000000
784
+ 0000000000000000000000000000000000000000000000000000000000000000
785
+ 0000000000000000000000000000000000000000000000000000000000000000
786
+ R
787
+ 8160 301C FF5E
788
+ 8161 2016 2225
789
+ 817C 2212 FF0D
790
+ 8191 00A2 FFE0
791
+ 8192 00A3 FFE1
792
+ 81CA 00AC FFE2
793
+ 81BE 222a
794
+ 81BF 2229
795
+ 81DA 2220
796
+ 81DB 22a5
797
+ 81DF 2261
798
+ 81E0 2252
799
+ 81E3 221a
800
+ 81E6 2235
801
+ 81E7 222b
parrot/lib/tcl8.6/encoding/cp949.enc ADDED
The diff for this file is too large to render. See raw diff
 
parrot/lib/tcl8.6/encoding/euc-jp.enc ADDED
@@ -0,0 +1,1353 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding file: euc-jp, multi-byte
2
+ M
3
+ 003F 0 79
4
+ 00
5
+ 0000000100020003000400050006000700080009000A000B000C000D000E000F
6
+ 0010001100120013001400150016001700180019001A001B001C001D001E001F
7
+ 0020002100220023002400250026002700280029002A002B002C002D002E002F
8
+ 0030003100320033003400350036003700380039003A003B003C003D003E003F
9
+ 0040004100420043004400450046004700480049004A004B004C004D004E004F
10
+ 0050005100520053005400550056005700580059005A005B005C005D005E005F
11
+ 0060006100620063006400650066006700680069006A006B006C006D006E006F
12
+ 0070007100720073007400750076007700780079007A007B007C007D007E007F
13
+ 0080008100820083008400850086008700880089008A008B008C008D0000008F
14
+ 0090009100920093009400950096009700980099009A009B009C009D009E009F
15
+ 0000000000000000000000000000000000000000000000000000000000000000
16
+ 0000000000000000000000000000000000000000000000000000000000000000
17
+ 0000000000000000000000000000000000000000000000000000000000000000
18
+ 0000000000000000000000000000000000000000000000000000000000000000
19
+ 0000000000000000000000000000000000000000000000000000000000000000
20
+ 0000000000000000000000000000000000000000000000000000000000000000
21
+ 8E
22
+ 0000000000000000000000000000000000000000000000000000000000000000
23
+ 0000000000000000000000000000000000000000000000000000000000000000
24
+ 0000000000000000000000000000000000000000000000000000000000000000
25
+ 0000000000000000000000000000000000000000000000000000000000000000
26
+ 0000000000000000000000000000000000000000000000000000000000000000
27
+ 0000000000000000000000000000000000000000000000000000000000000000
28
+ 0000000000000000000000000000000000000000000000000000000000000000
29
+ 0000000000000000000000000000000000000000000000000000000000000000
30
+ 0000000000000000000000000000000000000000000000000000000000000000
31
+ 0000000000000000000000000000000000000000000000000000000000000000
32
+ 0000FF61FF62FF63FF64FF65FF66FF67FF68FF69FF6AFF6BFF6CFF6DFF6EFF6F
33
+ FF70FF71FF72FF73FF74FF75FF76FF77FF78FF79FF7AFF7BFF7CFF7DFF7EFF7F
34
+ FF80FF81FF82FF83FF84FF85FF86FF87FF88FF89FF8AFF8BFF8CFF8DFF8EFF8F
35
+ FF90FF91FF92FF93FF94FF95FF96FF97FF98FF99FF9AFF9BFF9CFF9DFF9EFF9F
36
+ 0000000000000000000000000000000000000000000000000000000000000000
37
+ 0000000000000000000000000000000000000000000000000000000000000000
38
+ A1
39
+ 0000000000000000000000000000000000000000000000000000000000000000
40
+ 0000000000000000000000000000000000000000000000000000000000000000
41
+ 0000000000000000000000000000000000000000000000000000000000000000
42
+ 0000000000000000000000000000000000000000000000000000000000000000
43
+ 0000000000000000000000000000000000000000000000000000000000000000
44
+ 0000000000000000000000000000000000000000000000000000000000000000
45
+ 0000000000000000000000000000000000000000000000000000000000000000
46
+ 0000000000000000000000000000000000000000000000000000000000000000
47
+ 0000000000000000000000000000000000000000000000000000000000000000
48
+ 0000000000000000000000000000000000000000000000000000000000000000
49
+ 0000300030013002FF0CFF0E30FBFF1AFF1BFF1FFF01309B309C00B4FF4000A8
50
+ FF3EFFE3FF3F30FD30FE309D309E30034EDD30053006300730FC20152010FF0F
51
+ FF3C301C2016FF5C2026202520182019201C201DFF08FF0930143015FF3BFF3D
52
+ FF5BFF5D30083009300A300B300C300D300E300F30103011FF0B221200B100D7
53
+ 00F7FF1D2260FF1CFF1E22662267221E22342642264000B0203220332103FFE5
54
+ FF0400A200A3FF05FF03FF06FF0AFF2000A72606260525CB25CF25CE25C70000
55
+ A2
56
+ 0000000000000000000000000000000000000000000000000000000000000000
57
+ 0000000000000000000000000000000000000000000000000000000000000000
58
+ 0000000000000000000000000000000000000000000000000000000000000000
59
+ 0000000000000000000000000000000000000000000000000000000000000000
60
+ 0000000000000000000000000000000000000000000000000000000000000000
61
+ 0000000000000000000000000000000000000000000000000000000000000000
62
+ 0000000000000000000000000000000000000000000000000000000000000000
63
+ 0000000000000000000000000000000000000000000000000000000000000000
64
+ 0000000000000000000000000000000000000000000000000000000000000000
65
+ 0000000000000000000000000000000000000000000000000000000000000000
66
+ 000025C625A125A025B325B225BD25BC203B3012219221902191219330130000
67
+ 00000000000000000000000000000000000000002208220B2286228722822283
68
+ 222A2229000000000000000000000000000000002227222800AC21D221D42200
69
+ 220300000000000000000000000000000000000000000000222022A523122202
70
+ 220722612252226A226B221A223D221D2235222B222C00000000000000000000
71
+ 00000000212B2030266F266D266A2020202100B6000000000000000025EF0000
72
+ A3
73
+ 0000000000000000000000000000000000000000000000000000000000000000
74
+ 0000000000000000000000000000000000000000000000000000000000000000
75
+ 0000000000000000000000000000000000000000000000000000000000000000
76
+ 0000000000000000000000000000000000000000000000000000000000000000
77
+ 0000000000000000000000000000000000000000000000000000000000000000
78
+ 0000000000000000000000000000000000000000000000000000000000000000
79
+ 0000000000000000000000000000000000000000000000000000000000000000
80
+ 0000000000000000000000000000000000000000000000000000000000000000
81
+ 0000000000000000000000000000000000000000000000000000000000000000
82
+ 0000000000000000000000000000000000000000000000000000000000000000
83
+ 0000000000000000000000000000000000000000000000000000000000000000
84
+ FF10FF11FF12FF13FF14FF15FF16FF17FF18FF19000000000000000000000000
85
+ 0000FF21FF22FF23FF24FF25FF26FF27FF28FF29FF2AFF2BFF2CFF2DFF2EFF2F
86
+ FF30FF31FF32FF33FF34FF35FF36FF37FF38FF39FF3A00000000000000000000
87
+ 0000FF41FF42FF43FF44FF45FF46FF47FF48FF49FF4AFF4BFF4CFF4DFF4EFF4F
88
+ FF50FF51FF52FF53FF54FF55FF56FF57FF58FF59FF5A00000000000000000000
89
+ A4
90
+ 0000000000000000000000000000000000000000000000000000000000000000
91
+ 0000000000000000000000000000000000000000000000000000000000000000
92
+ 0000000000000000000000000000000000000000000000000000000000000000
93
+ 0000000000000000000000000000000000000000000000000000000000000000
94
+ 0000000000000000000000000000000000000000000000000000000000000000
95
+ 0000000000000000000000000000000000000000000000000000000000000000
96
+ 0000000000000000000000000000000000000000000000000000000000000000
97
+ 0000000000000000000000000000000000000000000000000000000000000000
98
+ 0000000000000000000000000000000000000000000000000000000000000000
99
+ 0000000000000000000000000000000000000000000000000000000000000000
100
+ 0000304130423043304430453046304730483049304A304B304C304D304E304F
101
+ 3050305130523053305430553056305730583059305A305B305C305D305E305F
102
+ 3060306130623063306430653066306730683069306A306B306C306D306E306F
103
+ 3070307130723073307430753076307730783079307A307B307C307D307E307F
104
+ 3080308130823083308430853086308730883089308A308B308C308D308E308F
105
+ 3090309130923093000000000000000000000000000000000000000000000000
106
+ A5
107
+ 0000000000000000000000000000000000000000000000000000000000000000
108
+ 0000000000000000000000000000000000000000000000000000000000000000
109
+ 0000000000000000000000000000000000000000000000000000000000000000
110
+ 0000000000000000000000000000000000000000000000000000000000000000
111
+ 0000000000000000000000000000000000000000000000000000000000000000
112
+ 0000000000000000000000000000000000000000000000000000000000000000
113
+ 0000000000000000000000000000000000000000000000000000000000000000
114
+ 0000000000000000000000000000000000000000000000000000000000000000
115
+ 0000000000000000000000000000000000000000000000000000000000000000
116
+ 0000000000000000000000000000000000000000000000000000000000000000
117
+ 000030A130A230A330A430A530A630A730A830A930AA30AB30AC30AD30AE30AF
118
+ 30B030B130B230B330B430B530B630B730B830B930BA30BB30BC30BD30BE30BF
119
+ 30C030C130C230C330C430C530C630C730C830C930CA30CB30CC30CD30CE30CF
120
+ 30D030D130D230D330D430D530D630D730D830D930DA30DB30DC30DD30DE30DF
121
+ 30E030E130E230E330E430E530E630E730E830E930EA30EB30EC30ED30EE30EF
122
+ 30F030F130F230F330F430F530F6000000000000000000000000000000000000
123
+ A6
124
+ 0000000000000000000000000000000000000000000000000000000000000000
125
+ 0000000000000000000000000000000000000000000000000000000000000000
126
+ 0000000000000000000000000000000000000000000000000000000000000000
127
+ 0000000000000000000000000000000000000000000000000000000000000000
128
+ 0000000000000000000000000000000000000000000000000000000000000000
129
+ 0000000000000000000000000000000000000000000000000000000000000000
130
+ 0000000000000000000000000000000000000000000000000000000000000000
131
+ 0000000000000000000000000000000000000000000000000000000000000000
132
+ 0000000000000000000000000000000000000000000000000000000000000000
133
+ 0000000000000000000000000000000000000000000000000000000000000000
134
+ 0000039103920393039403950396039703980399039A039B039C039D039E039F
135
+ 03A003A103A303A403A503A603A703A803A90000000000000000000000000000
136
+ 000003B103B203B303B403B503B603B703B803B903BA03BB03BC03BD03BE03BF
137
+ 03C003C103C303C403C503C603C703C803C90000000000000000000000000000
138
+ 0000000000000000000000000000000000000000000000000000000000000000
139
+ 0000000000000000000000000000000000000000000000000000000000000000
140
+ A7
141
+ 0000000000000000000000000000000000000000000000000000000000000000
142
+ 0000000000000000000000000000000000000000000000000000000000000000
143
+ 0000000000000000000000000000000000000000000000000000000000000000
144
+ 0000000000000000000000000000000000000000000000000000000000000000
145
+ 0000000000000000000000000000000000000000000000000000000000000000
146
+ 0000000000000000000000000000000000000000000000000000000000000000
147
+ 0000000000000000000000000000000000000000000000000000000000000000
148
+ 0000000000000000000000000000000000000000000000000000000000000000
149
+ 0000000000000000000000000000000000000000000000000000000000000000
150
+ 0000000000000000000000000000000000000000000000000000000000000000
151
+ 000004100411041204130414041504010416041704180419041A041B041C041D
152
+ 041E041F0420042104220423042404250426042704280429042A042B042C042D
153
+ 042E042F00000000000000000000000000000000000000000000000000000000
154
+ 000004300431043204330434043504510436043704380439043A043B043C043D
155
+ 043E043F0440044104420443044404450446044704480449044A044B044C044D
156
+ 044E044F00000000000000000000000000000000000000000000000000000000
157
+ A8
158
+ 0000000000000000000000000000000000000000000000000000000000000000
159
+ 0000000000000000000000000000000000000000000000000000000000000000
160
+ 0000000000000000000000000000000000000000000000000000000000000000
161
+ 0000000000000000000000000000000000000000000000000000000000000000
162
+ 0000000000000000000000000000000000000000000000000000000000000000
163
+ 0000000000000000000000000000000000000000000000000000000000000000
164
+ 0000000000000000000000000000000000000000000000000000000000000000
165
+ 0000000000000000000000000000000000000000000000000000000000000000
166
+ 0000000000000000000000000000000000000000000000000000000000000000
167
+ 0000000000000000000000000000000000000000000000000000000000000000
168
+ 000025002502250C251025182514251C252C25242534253C25012503250F2513
169
+ 251B251725232533252B253B254B2520252F25282537253F251D253025252538
170
+ 2542000000000000000000000000000000000000000000000000000000000000
171
+ 0000000000000000000000000000000000000000000000000000000000000000
172
+ 0000000000000000000000000000000000000000000000000000000000000000
173
+ 0000000000000000000000000000000000000000000000000000000000000000
174
+ B0
175
+ 0000000000000000000000000000000000000000000000000000000000000000
176
+ 0000000000000000000000000000000000000000000000000000000000000000
177
+ 0000000000000000000000000000000000000000000000000000000000000000
178
+ 0000000000000000000000000000000000000000000000000000000000000000
179
+ 0000000000000000000000000000000000000000000000000000000000000000
180
+ 0000000000000000000000000000000000000000000000000000000000000000
181
+ 0000000000000000000000000000000000000000000000000000000000000000
182
+ 0000000000000000000000000000000000000000000000000000000000000000
183
+ 0000000000000000000000000000000000000000000000000000000000000000
184
+ 0000000000000000000000000000000000000000000000000000000000000000
185
+ 00004E9C55165A03963F54C0611B632859F690228475831C7A5060AA63E16E25
186
+ 65ED846682A69BF56893572765A162715B9B59D0867B98F47D627DBE9B8E6216
187
+ 7C9F88B75B895EB563096697684895C7978D674F4EE54F0A4F4D4F9D504956F2
188
+ 593759D45A015C0960DF610F61706613690570BA754F757079FB7DAD7DEF80C3
189
+ 840E88638B029055907A533B4E954EA557DF80B290C178EF4E0058F16EA29038
190
+ 7A328328828B9C2F5141537054BD54E156E059FB5F1598F26DEB80E4852D0000
191
+ B1
192
+ 0000000000000000000000000000000000000000000000000000000000000000
193
+ 0000000000000000000000000000000000000000000000000000000000000000
194
+ 0000000000000000000000000000000000000000000000000000000000000000
195
+ 0000000000000000000000000000000000000000000000000000000000000000
196
+ 0000000000000000000000000000000000000000000000000000000000000000
197
+ 0000000000000000000000000000000000000000000000000000000000000000
198
+ 0000000000000000000000000000000000000000000000000000000000000000
199
+ 0000000000000000000000000000000000000000000000000000000000000000
200
+ 0000000000000000000000000000000000000000000000000000000000000000
201
+ 0000000000000000000000000000000000000000000000000000000000000000
202
+ 00009662967096A097FB540B53F35B8770CF7FBD8FC296E8536F9D5C7ABA4E11
203
+ 789381FC6E26561855046B1D851A9C3B59E553A96D6674DC958F56424E91904B
204
+ 96F2834F990C53E155B65B305F71662066F368046C386CF36D29745B76C87A4E
205
+ 983482F1885B8A6092ED6DB275AB76CA99C560A68B018D8A95B2698E53AD5186
206
+ 5712583059445BB45EF6602863A963F46CBF6F14708E7114715971D5733F7E01
207
+ 827682D185979060925B9D1B586965BC6C5A752551F9592E59655F805FDC0000
208
+ B2
209
+ 0000000000000000000000000000000000000000000000000000000000000000
210
+ 0000000000000000000000000000000000000000000000000000000000000000
211
+ 0000000000000000000000000000000000000000000000000000000000000000
212
+ 0000000000000000000000000000000000000000000000000000000000000000
213
+ 0000000000000000000000000000000000000000000000000000000000000000
214
+ 0000000000000000000000000000000000000000000000000000000000000000
215
+ 0000000000000000000000000000000000000000000000000000000000000000
216
+ 0000000000000000000000000000000000000000000000000000000000000000
217
+ 0000000000000000000000000000000000000000000000000000000000000000
218
+ 0000000000000000000000000000000000000000000000000000000000000000
219
+ 000062BC65FA6A2A6B276BB4738B7FC189569D2C9D0E9EC45CA16C96837B5104
220
+ 5C4B61B681C6687672614E594FFA537860696E297A4F97F34E0B53164EEE4F55
221
+ 4F3D4FA14F7352A053EF5609590F5AC15BB65BE179D16687679C67B66B4C6CB3
222
+ 706B73C2798D79BE7A3C7B8782B182DB8304837783EF83D387668AB256298CA8
223
+ 8FE6904E971E868A4FC45CE862117259753B81E582BD86FE8CC096C5991399D5
224
+ 4ECB4F1A89E356DE584A58CA5EFB5FEB602A6094606261D0621262D065390000
225
+ B3
226
+ 0000000000000000000000000000000000000000000000000000000000000000
227
+ 0000000000000000000000000000000000000000000000000000000000000000
228
+ 0000000000000000000000000000000000000000000000000000000000000000
229
+ 0000000000000000000000000000000000000000000000000000000000000000
230
+ 0000000000000000000000000000000000000000000000000000000000000000
231
+ 0000000000000000000000000000000000000000000000000000000000000000
232
+ 0000000000000000000000000000000000000000000000000000000000000000
233
+ 0000000000000000000000000000000000000000000000000000000000000000
234
+ 0000000000000000000000000000000000000000000000000000000000000000
235
+ 0000000000000000000000000000000000000000000000000000000000000000
236
+ 00009B41666668B06D777070754C76867D7582A587F9958B968E8C9D51F152BE
237
+ 591654B35BB35D16616869826DAF788D84CB88578A7293A79AB86D6C99A886D9
238
+ 57A367FF86CE920E5283568754045ED362E164B9683C68386BBB737278BA7A6B
239
+ 899A89D28D6B8F0390ED95A3969497695B665CB3697D984D984E639B7B206A2B
240
+ 6A7F68B69C0D6F5F5272559D607062EC6D3B6E076ED1845B89108F444E149C39
241
+ 53F6691B6A3A9784682A515C7AC384B291DC938C565B9D286822830584310000
242
+ B4
243
+ 0000000000000000000000000000000000000000000000000000000000000000
244
+ 0000000000000000000000000000000000000000000000000000000000000000
245
+ 0000000000000000000000000000000000000000000000000000000000000000
246
+ 0000000000000000000000000000000000000000000000000000000000000000
247
+ 0000000000000000000000000000000000000000000000000000000000000000
248
+ 0000000000000000000000000000000000000000000000000000000000000000
249
+ 0000000000000000000000000000000000000000000000000000000000000000
250
+ 0000000000000000000000000000000000000000000000000000000000000000
251
+ 0000000000000000000000000000000000000000000000000000000000000000
252
+ 0000000000000000000000000000000000000000000000000000000000000000
253
+ 00007CA5520882C574E64E7E4F8351A05BD2520A52D852E75DFB559A582A59E6
254
+ 5B8C5B985BDB5E725E7960A3611F616361BE63DB656267D1685368FA6B3E6B53
255
+ 6C576F226F976F4574B0751876E3770B7AFF7BA17C217DE97F367FF0809D8266
256
+ 839E89B38ACC8CAB908494519593959195A2966597D3992882184E38542B5CB8
257
+ 5DCC73A9764C773C5CA97FEB8D0B96C19811985498584F014F0E5371559C5668
258
+ 57FA59475B095BC45C905E0C5E7E5FCC63EE673A65D765E2671F68CB68C40000
259
+ B5
260
+ 0000000000000000000000000000000000000000000000000000000000000000
261
+ 0000000000000000000000000000000000000000000000000000000000000000
262
+ 0000000000000000000000000000000000000000000000000000000000000000
263
+ 0000000000000000000000000000000000000000000000000000000000000000
264
+ 0000000000000000000000000000000000000000000000000000000000000000
265
+ 0000000000000000000000000000000000000000000000000000000000000000
266
+ 0000000000000000000000000000000000000000000000000000000000000000
267
+ 0000000000000000000000000000000000000000000000000000000000000000
268
+ 0000000000000000000000000000000000000000000000000000000000000000
269
+ 0000000000000000000000000000000000000000000000000000000000000000
270
+ 00006A5F5E306BC56C176C7D757F79485B637A007D005FBD898F8A188CB48D77
271
+ 8ECC8F1D98E29A0E9B3C4E80507D510059935B9C622F628064EC6B3A72A07591
272
+ 79477FA987FB8ABC8B7063AC83CA97A05409540355AB68546A588A7078276775
273
+ 9ECD53745BA2811A865090064E184E454EC74F1153CA54385BAE5F1360256551
274
+ 673D6C426C726CE3707874037A767AAE7B087D1A7CFE7D6665E7725B53BB5C45
275
+ 5DE862D262E063196E20865A8A318DDD92F86F0179A69B5A4EA84EAB4EAC0000
276
+ B6
277
+ 0000000000000000000000000000000000000000000000000000000000000000
278
+ 0000000000000000000000000000000000000000000000000000000000000000
279
+ 0000000000000000000000000000000000000000000000000000000000000000
280
+ 0000000000000000000000000000000000000000000000000000000000000000
281
+ 0000000000000000000000000000000000000000000000000000000000000000
282
+ 0000000000000000000000000000000000000000000000000000000000000000
283
+ 0000000000000000000000000000000000000000000000000000000000000000
284
+ 0000000000000000000000000000000000000000000000000000000000000000
285
+ 0000000000000000000000000000000000000000000000000000000000000000
286
+ 0000000000000000000000000000000000000000000000000000000000000000
287
+ 00004F9B4FA050D151477AF6517151F653545321537F53EB55AC58835CE15F37
288
+ 5F4A602F6050606D631F65596A4B6CC172C272ED77EF80F881058208854E90F7
289
+ 93E197FF99579A5A4EF051DD5C2D6681696D5C4066F26975738968507C8150C5
290
+ 52E457475DFE932665A46B236B3D7434798179BD7B4B7DCA82B983CC887F895F
291
+ 8B398FD191D1541F92804E5D503653E5533A72D7739677E982E68EAF99C699C8
292
+ 99D25177611A865E55B07A7A50765BD3904796854E326ADB91E75C515C480000
293
+ B7
294
+ 0000000000000000000000000000000000000000000000000000000000000000
295
+ 0000000000000000000000000000000000000000000000000000000000000000
296
+ 0000000000000000000000000000000000000000000000000000000000000000
297
+ 0000000000000000000000000000000000000000000000000000000000000000
298
+ 0000000000000000000000000000000000000000000000000000000000000000
299
+ 0000000000000000000000000000000000000000000000000000000000000000
300
+ 0000000000000000000000000000000000000000000000000000000000000000
301
+ 0000000000000000000000000000000000000000000000000000000000000000
302
+ 0000000000000000000000000000000000000000000000000000000000000000
303
+ 0000000000000000000000000000000000000000000000000000000000000000
304
+ 000063987A9F6C9397748F617AAA718A96887C8268177E706851936C52F2541B
305
+ 85AB8A137FA48ECD90E15366888879414FC250BE521151445553572D73EA578B
306
+ 59515F625F8460756176616761A963B2643A656C666F68426E1375667A3D7CFB
307
+ 7D4C7D997E4B7F6B830E834A86CD8A088A638B668EFD981A9D8F82B88FCE9BE8
308
+ 5287621F64836FC09699684150916B206C7A6F547A747D5088408A2367084EF6
309
+ 503950265065517C5238526355A7570F58055ACC5EFA61B261F862F363720000
310
+ B8
311
+ 0000000000000000000000000000000000000000000000000000000000000000
312
+ 0000000000000000000000000000000000000000000000000000000000000000
313
+ 0000000000000000000000000000000000000000000000000000000000000000
314
+ 0000000000000000000000000000000000000000000000000000000000000000
315
+ 0000000000000000000000000000000000000000000000000000000000000000
316
+ 0000000000000000000000000000000000000000000000000000000000000000
317
+ 0000000000000000000000000000000000000000000000000000000000000000
318
+ 0000000000000000000000000000000000000000000000000000000000000000
319
+ 0000000000000000000000000000000000000000000000000000000000000000
320
+ 0000000000000000000000000000000000000000000000000000000000000000
321
+ 0000691C6A29727D72AC732E7814786F7D79770C80A9898B8B198CE28ED29063
322
+ 9375967A98559A139E785143539F53B35E7B5F266E1B6E90738473FE7D438237
323
+ 8A008AFA96504E4E500B53E4547C56FA59D15B645DF15EAB5F276238654567AF
324
+ 6E5672D07CCA88B480A180E183F0864E8A878DE8923796C798679F134E944E92
325
+ 4F0D53485449543E5A2F5F8C5FA1609F68A76A8E745A78818A9E8AA48B779190
326
+ 4E5E9BC94EA44F7C4FAF501950165149516C529F52B952FE539A53E354110000
327
+ B9
328
+ 0000000000000000000000000000000000000000000000000000000000000000
329
+ 0000000000000000000000000000000000000000000000000000000000000000
330
+ 0000000000000000000000000000000000000000000000000000000000000000
331
+ 0000000000000000000000000000000000000000000000000000000000000000
332
+ 0000000000000000000000000000000000000000000000000000000000000000
333
+ 0000000000000000000000000000000000000000000000000000000000000000
334
+ 0000000000000000000000000000000000000000000000000000000000000000
335
+ 0000000000000000000000000000000000000000000000000000000000000000
336
+ 0000000000000000000000000000000000000000000000000000000000000000
337
+ 0000000000000000000000000000000000000000000000000000000000000000
338
+ 0000540E5589575157A2597D5B545B5D5B8F5DE55DE75DF75E785E835E9A5EB7
339
+ 5F186052614C629762D863A7653B6602664366F4676D6821689769CB6C5F6D2A
340
+ 6D696E2F6E9D75327687786C7A3F7CE07D057D187D5E7DB18015800380AF80B1
341
+ 8154818F822A8352884C88618B1B8CA28CFC90CA91759271783F92FC95A4964D
342
+ 980599999AD89D3B525B52AB53F7540858D562F76FE08C6A8F5F9EB9514B523B
343
+ 544A56FD7A4091779D609ED273446F09817075115FFD60DA9AA872DB8FBC0000
344
+ BA
345
+ 0000000000000000000000000000000000000000000000000000000000000000
346
+ 0000000000000000000000000000000000000000000000000000000000000000
347
+ 0000000000000000000000000000000000000000000000000000000000000000
348
+ 0000000000000000000000000000000000000000000000000000000000000000
349
+ 0000000000000000000000000000000000000000000000000000000000000000
350
+ 0000000000000000000000000000000000000000000000000000000000000000
351
+ 0000000000000000000000000000000000000000000000000000000000000000
352
+ 0000000000000000000000000000000000000000000000000000000000000000
353
+ 0000000000000000000000000000000000000000000000000000000000000000
354
+ 0000000000000000000000000000000000000000000000000000000000000000
355
+ 00006B6498034ECA56F0576458BE5A5A606861C7660F6606683968B16DF775D5
356
+ 7D3A826E9B424E9B4F5053C955065D6F5DE65DEE67FB6C99747378028A509396
357
+ 88DF57505EA7632B50B550AC518D670054C9585E59BB5BB05F69624D63A1683D
358
+ 6B736E08707D91C7728078157826796D658E7D3083DC88C18F09969B52645728
359
+ 67507F6A8CA151B45742962A583A698A80B454B25D0E57FC78959DFA4F5C524A
360
+ 548B643E6628671467F57A847B567D22932F685C9BAD7B395319518A52370000
361
+ BB
362
+ 0000000000000000000000000000000000000000000000000000000000000000
363
+ 0000000000000000000000000000000000000000000000000000000000000000
364
+ 0000000000000000000000000000000000000000000000000000000000000000
365
+ 0000000000000000000000000000000000000000000000000000000000000000
366
+ 0000000000000000000000000000000000000000000000000000000000000000
367
+ 0000000000000000000000000000000000000000000000000000000000000000
368
+ 0000000000000000000000000000000000000000000000000000000000000000
369
+ 0000000000000000000000000000000000000000000000000000000000000000
370
+ 0000000000000000000000000000000000000000000000000000000000000000
371
+ 0000000000000000000000000000000000000000000000000000000000000000
372
+ 00005BDF62F664AE64E6672D6BBA85A996D176909BD6634C93069BAB76BF6652
373
+ 4E09509853C25C7160E864926563685F71E673CA75237B977E8286958B838CDB
374
+ 9178991065AC66AB6B8B4ED54ED44F3A4F7F523A53F853F255E356DB58EB59CB
375
+ 59C959FF5B505C4D5E025E2B5FD7601D6307652F5B5C65AF65BD65E8679D6B62
376
+ 6B7B6C0F7345794979C17CF87D197D2B80A2810281F389968A5E8A698A668A8C
377
+ 8AEE8CC78CDC96CC98FC6B6F4E8B4F3C4F8D51505B575BFA6148630166420000
378
+ BC
379
+ 0000000000000000000000000000000000000000000000000000000000000000
380
+ 0000000000000000000000000000000000000000000000000000000000000000
381
+ 0000000000000000000000000000000000000000000000000000000000000000
382
+ 0000000000000000000000000000000000000000000000000000000000000000
383
+ 0000000000000000000000000000000000000000000000000000000000000000
384
+ 0000000000000000000000000000000000000000000000000000000000000000
385
+ 0000000000000000000000000000000000000000000000000000000000000000
386
+ 0000000000000000000000000000000000000000000000000000000000000000
387
+ 0000000000000000000000000000000000000000000000000000000000000000
388
+ 0000000000000000000000000000000000000000000000000000000000000000
389
+ 00006B216ECB6CBB723E74BD75D478C1793A800C803381EA84948F9E6C509E7F
390
+ 5F0F8B589D2B7AFA8EF85B8D96EB4E0353F157F759315AC95BA460896E7F6F06
391
+ 75BE8CEA5B9F85007BE0507267F4829D5C61854A7E1E820E51995C0463688D66
392
+ 659C716E793E7D1780058B1D8ECA906E86C790AA501F52FA5C3A6753707C7235
393
+ 914C91C8932B82E55BC25F3160F94E3B53D65B88624B67316B8A72E973E07A2E
394
+ 816B8DA391529996511253D7546A5BFF63886A397DAC970056DA53CE54680000
395
+ BD
396
+ 0000000000000000000000000000000000000000000000000000000000000000
397
+ 0000000000000000000000000000000000000000000000000000000000000000
398
+ 0000000000000000000000000000000000000000000000000000000000000000
399
+ 0000000000000000000000000000000000000000000000000000000000000000
400
+ 0000000000000000000000000000000000000000000000000000000000000000
401
+ 0000000000000000000000000000000000000000000000000000000000000000
402
+ 0000000000000000000000000000000000000000000000000000000000000000
403
+ 0000000000000000000000000000000000000000000000000000000000000000
404
+ 0000000000000000000000000000000000000000000000000000000000000000
405
+ 0000000000000000000000000000000000000000000000000000000000000000
406
+ 00005B975C315DDE4FEE610162FE6D3279C079CB7D427E4D7FD281ED821F8490
407
+ 884689728B908E748F2F9031914B916C96C6919C4EC04F4F514553415F93620E
408
+ 67D46C416E0B73637E2691CD928353D459195BBF6DD1795D7E2E7C9B587E719F
409
+ 51FA88538FF04FCA5CFB662577AC7AE3821C99FF51C65FAA65EC696F6B896DF3
410
+ 6E966F6476FE7D145DE190759187980651E6521D6240669166D96E1A5EB67DD2
411
+ 7F7266F885AF85F78AF852A953D959735E8F5F90605592E4966450B7511F0000
412
+ BE
413
+ 0000000000000000000000000000000000000000000000000000000000000000
414
+ 0000000000000000000000000000000000000000000000000000000000000000
415
+ 0000000000000000000000000000000000000000000000000000000000000000
416
+ 0000000000000000000000000000000000000000000000000000000000000000
417
+ 0000000000000000000000000000000000000000000000000000000000000000
418
+ 0000000000000000000000000000000000000000000000000000000000000000
419
+ 0000000000000000000000000000000000000000000000000000000000000000
420
+ 0000000000000000000000000000000000000000000000000000000000000000
421
+ 0000000000000000000000000000000000000000000000000000000000000000
422
+ 0000000000000000000000000000000000000000000000000000000000000000
423
+ 000052DD5320534753EC54E8554655315617596859BE5A3C5BB55C065C0F5C11
424
+ 5C1A5E845E8A5EE05F70627F628462DB638C63776607660C662D6676677E68A2
425
+ 6A1F6A356CBC6D886E096E58713C7126716775C77701785D7901796579F07AE0
426
+ 7B117CA77D39809683D6848B8549885D88F38A1F8A3C8A548A738C618CDE91A4
427
+ 9266937E9418969C97984E0A4E084E1E4E575197527057CE583458CC5B225E38
428
+ 60C564FE676167566D4472B675737A6384B88B7291B89320563157F498FE0000
429
+ BF
430
+ 0000000000000000000000000000000000000000000000000000000000000000
431
+ 0000000000000000000000000000000000000000000000000000000000000000
432
+ 0000000000000000000000000000000000000000000000000000000000000000
433
+ 0000000000000000000000000000000000000000000000000000000000000000
434
+ 0000000000000000000000000000000000000000000000000000000000000000
435
+ 0000000000000000000000000000000000000000000000000000000000000000
436
+ 0000000000000000000000000000000000000000000000000000000000000000
437
+ 0000000000000000000000000000000000000000000000000000000000000000
438
+ 0000000000000000000000000000000000000000000000000000000000000000
439
+ 0000000000000000000000000000000000000000000000000000000000000000
440
+ 000062ED690D6B9671ED7E548077827289E698DF87558FB15C3B4F384FE14FB5
441
+ 55075A205BDD5BE95FC3614E632F65B0664B68EE699B6D786DF1753375B9771F
442
+ 795E79E67D3381E382AF85AA89AA8A3A8EAB8F9B903291DD97074EBA4EC15203
443
+ 587558EC5C0B751A5C3D814E8A0A8FC59663976D7B258ACF9808916256F353A8
444
+ 9017543957825E2563A86C34708A77617C8B7FE088709042915493109318968F
445
+ 745E9AC45D075D69657067A28DA896DB636E6749691983C5981796C088FE0000
446
+ C0
447
+ 0000000000000000000000000000000000000000000000000000000000000000
448
+ 0000000000000000000000000000000000000000000000000000000000000000
449
+ 0000000000000000000000000000000000000000000000000000000000000000
450
+ 0000000000000000000000000000000000000000000000000000000000000000
451
+ 0000000000000000000000000000000000000000000000000000000000000000
452
+ 0000000000000000000000000000000000000000000000000000000000000000
453
+ 0000000000000000000000000000000000000000000000000000000000000000
454
+ 0000000000000000000000000000000000000000000000000000000000000000
455
+ 0000000000000000000000000000000000000000000000000000000000000000
456
+ 0000000000000000000000000000000000000000000000000000000000000000
457
+ 00006F84647A5BF84E16702C755D662F51C4523652E259D35F8160276210653F
458
+ 6574661F667468F268166B636E057272751F76DB7CBE805658F088FD897F8AA0
459
+ 8A938ACB901D91929752975965897A0E810696BB5E2D60DC621A65A566146790
460
+ 77F37A4D7C4D7E3E810A8CAC8D648DE18E5F78A9520762D963A5644262988A2D
461
+ 7A837BC08AAC96EA7D76820C87494ED95148534353605BA35C025C165DDD6226
462
+ 624764B0681368346CC96D456D1767D36F5C714E717D65CB7A7F7BAD7DDA0000
463
+ C1
464
+ 0000000000000000000000000000000000000000000000000000000000000000
465
+ 0000000000000000000000000000000000000000000000000000000000000000
466
+ 0000000000000000000000000000000000000000000000000000000000000000
467
+ 0000000000000000000000000000000000000000000000000000000000000000
468
+ 0000000000000000000000000000000000000000000000000000000000000000
469
+ 0000000000000000000000000000000000000000000000000000000000000000
470
+ 0000000000000000000000000000000000000000000000000000000000000000
471
+ 0000000000000000000000000000000000000000000000000000000000000000
472
+ 0000000000000000000000000000000000000000000000000000000000000000
473
+ 0000000000000000000000000000000000000000000000000000000000000000
474
+ 00007E4A7FA8817A821B823985A68A6E8CCE8DF59078907792AD929195839BAE
475
+ 524D55846F387136516879857E5581B37CCE564C58515CA863AA66FE66FD695A
476
+ 72D9758F758E790E795679DF7C977D207D4486078A34963B90619F2050E75275
477
+ 53CC53E2500955AA58EE594F723D5B8B5C64531D60E360F3635C6383633F63BB
478
+ 64CD65E966F95DE369CD69FD6F1571E54E8975E976F87A937CDF7DCF7D9C8061
479
+ 83498358846C84BC85FB88C58D709001906D9397971C9A1250CF5897618E0000
480
+ C2
481
+ 0000000000000000000000000000000000000000000000000000000000000000
482
+ 0000000000000000000000000000000000000000000000000000000000000000
483
+ 0000000000000000000000000000000000000000000000000000000000000000
484
+ 0000000000000000000000000000000000000000000000000000000000000000
485
+ 0000000000000000000000000000000000000000000000000000000000000000
486
+ 0000000000000000000000000000000000000000000000000000000000000000
487
+ 0000000000000000000000000000000000000000000000000000000000000000
488
+ 0000000000000000000000000000000000000000000000000000000000000000
489
+ 0000000000000000000000000000000000000000000000000000000000000000
490
+ 0000000000000000000000000000000000000000000000000000000000000000
491
+ 000081D385358D0890204FC3507452475373606F6349675F6E2C8DB3901F4FD7
492
+ 5C5E8CCA65CF7D9A53528896517663C35B585B6B5C0A640D6751905C4ED6591A
493
+ 592A6C708A51553E581559A560F0625367C182356955964099C49A284F535806
494
+ 5BFE80105CB15E2F5F856020614B623466FF6CF06EDE80CE817F82D4888B8CB8
495
+ 9000902E968A9EDB9BDB4EE353F059277B2C918D984C9DF96EDD702753535544
496
+ 5B856258629E62D36CA26FEF74228A1794386FC18AFE833851E786F853EA0000
497
+ C3
498
+ 0000000000000000000000000000000000000000000000000000000000000000
499
+ 0000000000000000000000000000000000000000000000000000000000000000
500
+ 0000000000000000000000000000000000000000000000000000000000000000
501
+ 0000000000000000000000000000000000000000000000000000000000000000
502
+ 0000000000000000000000000000000000000000000000000000000000000000
503
+ 0000000000000000000000000000000000000000000000000000000000000000
504
+ 0000000000000000000000000000000000000000000000000000000000000000
505
+ 0000000000000000000000000000000000000000000000000000000000000000
506
+ 0000000000000000000000000000000000000000000000000000000000000000
507
+ 0000000000000000000000000000000000000000000000000000000000000000
508
+ 000053E94F4690548FB0596A81315DFD7AEA8FBF68DA8C3772F89C486A3D8AB0
509
+ 4E3953585606576662C563A265E66B4E6DE16E5B70AD77ED7AEF7BAA7DBB803D
510
+ 80C686CB8A95935B56E358C75F3E65AD66966A806BB575378AC7502477E55730
511
+ 5F1B6065667A6C6075F47A1A7F6E81F48718904599B37BC9755C7AF97B5184C4
512
+ 901079E97A9283365AE177404E2D4EF25B995FE062BD663C67F16CE8866B8877
513
+ 8A3B914E92F399D06A177026732A82E784578CAF4E01514651CB558B5BF50000
514
+ C4
515
+ 0000000000000000000000000000000000000000000000000000000000000000
516
+ 0000000000000000000000000000000000000000000000000000000000000000
517
+ 0000000000000000000000000000000000000000000000000000000000000000
518
+ 0000000000000000000000000000000000000000000000000000000000000000
519
+ 0000000000000000000000000000000000000000000000000000000000000000
520
+ 0000000000000000000000000000000000000000000000000000000000000000
521
+ 0000000000000000000000000000000000000000000000000000000000000000
522
+ 0000000000000000000000000000000000000000000000000000000000000000
523
+ 0000000000000000000000000000000000000000000000000000000000000000
524
+ 0000000000000000000000000000000000000000000000000000000000000000
525
+ 00005E165E335E815F145F355F6B5FB461F2631166A2671D6F6E7252753A773A
526
+ 80748139817887768ABF8ADC8D858DF3929A957798029CE552C5635776F46715
527
+ 6C8873CD8CC393AE96736D25589C690E69CC8FFD939A75DB901A585A680263B4
528
+ 69FB4F436F2C67D88FBB85267DB49354693F6F70576A58F75B2C7D2C722A540A
529
+ 91E39DB44EAD4F4E505C507552438C9E544858245B9A5E1D5E955EAD5EF75F1F
530
+ 608C62B5633A63D068AF6C407887798E7A0B7DE082478A028AE68E4490130000
531
+ C5
532
+ 0000000000000000000000000000000000000000000000000000000000000000
533
+ 0000000000000000000000000000000000000000000000000000000000000000
534
+ 0000000000000000000000000000000000000000000000000000000000000000
535
+ 0000000000000000000000000000000000000000000000000000000000000000
536
+ 0000000000000000000000000000000000000000000000000000000000000000
537
+ 0000000000000000000000000000000000000000000000000000000000000000
538
+ 0000000000000000000000000000000000000000000000000000000000000000
539
+ 0000000000000000000000000000000000000000000000000000000000000000
540
+ 0000000000000000000000000000000000000000000000000000000000000000
541
+ 0000000000000000000000000000000000000000000000000000000000000000
542
+ 000090B8912D91D89F0E6CE5645864E265756EF476847B1B906993D16EBA54F2
543
+ 5FB964A48F4D8FED92445178586B59295C555E976DFB7E8F751C8CBC8EE2985B
544
+ 70B94F1D6BBF6FB1753096FB514E54105835585759AC5C605F926597675C6E21
545
+ 767B83DF8CED901490FD934D7825783A52AA5EA6571F597460125012515A51AC
546
+ 51CD520055105854585859575B955CF65D8B60BC6295642D6771684368BC68DF
547
+ 76D76DD86E6F6D9B706F71C85F5375D879777B497B547B527CD67D7152300000
548
+ C6
549
+ 0000000000000000000000000000000000000000000000000000000000000000
550
+ 0000000000000000000000000000000000000000000000000000000000000000
551
+ 0000000000000000000000000000000000000000000000000000000000000000
552
+ 0000000000000000000000000000000000000000000000000000000000000000
553
+ 0000000000000000000000000000000000000000000000000000000000000000
554
+ 0000000000000000000000000000000000000000000000000000000000000000
555
+ 0000000000000000000000000000000000000000000000000000000000000000
556
+ 0000000000000000000000000000000000000000000000000000000000000000
557
+ 0000000000000000000000000000000000000000000000000000000000000000
558
+ 0000000000000000000000000000000000000000000000000000000000000000
559
+ 00008463856985E48A0E8B048C468E0F9003900F94199676982D9A3095D850CD
560
+ 52D5540C58025C0E61A7649E6D1E77B37AE580F48404905392855CE09D07533F
561
+ 5F975FB36D9C7279776379BF7BE46BD272EC8AAD68036A6151F87A8169345C4A
562
+ 9CF682EB5BC59149701E56785C6F60C765666C8C8C5A90419813545166C7920D
563
+ 594890A351854E4D51EA85998B0E7058637A934B696299B47E04757753576960
564
+ 8EDF96E36C5D4E8C5C3C5F108FE953028CD1808986795EFF65E54E7351650000
565
+ C7
566
+ 0000000000000000000000000000000000000000000000000000000000000000
567
+ 0000000000000000000000000000000000000000000000000000000000000000
568
+ 0000000000000000000000000000000000000000000000000000000000000000
569
+ 0000000000000000000000000000000000000000000000000000000000000000
570
+ 0000000000000000000000000000000000000000000000000000000000000000
571
+ 0000000000000000000000000000000000000000000000000000000000000000
572
+ 0000000000000000000000000000000000000000000000000000000000000000
573
+ 0000000000000000000000000000000000000000000000000000000000000000
574
+ 0000000000000000000000000000000000000000000000000000000000000000
575
+ 0000000000000000000000000000000000000000000000000000000000000000
576
+ 000059825C3F97EE4EFB598A5FCD8A8D6FE179B079625BE78471732B71B15E74
577
+ 5FF5637B649A71C37C984E435EFC4E4B57DC56A260A96FC37D0D80FD813381BF
578
+ 8FB2899786A45DF4628A64AD898767776CE26D3E743678345A467F7582AD99AC
579
+ 4FF35EC362DD63926557676F76C3724C80CC80BA8F29914D500D57F95A926885
580
+ 6973716472FD8CB758F28CE0966A9019877F79E477E784294F2F5265535A62CD
581
+ 67CF6CCA767D7B947C95823685848FEB66DD6F2072067E1B83AB99C19EA60000
582
+ C8
583
+ 0000000000000000000000000000000000000000000000000000000000000000
584
+ 0000000000000000000000000000000000000000000000000000000000000000
585
+ 0000000000000000000000000000000000000000000000000000000000000000
586
+ 0000000000000000000000000000000000000000000000000000000000000000
587
+ 0000000000000000000000000000000000000000000000000000000000000000
588
+ 0000000000000000000000000000000000000000000000000000000000000000
589
+ 0000000000000000000000000000000000000000000000000000000000000000
590
+ 0000000000000000000000000000000000000000000000000000000000000000
591
+ 0000000000000000000000000000000000000000000000000000000000000000
592
+ 0000000000000000000000000000000000000000000000000000000000000000
593
+ 000051FD7BB178727BB880877B486AE85E61808C75517560516B92626E8C767A
594
+ 91979AEA4F107F70629C7B4F95A59CE9567A585986E496BC4F345224534A53CD
595
+ 53DB5E06642C6591677F6C3E6C4E724872AF73ED75547E41822C85E98CA97BC4
596
+ 91C67169981298EF633D6669756A76E478D0854386EE532A5351542659835E87
597
+ 5F7C60B26249627962AB65906BD46CCC75B276AE789179D87DCB7F7780A588AB
598
+ 8AB98CBB907F975E98DB6A0B7C3850995C3E5FAE67876BD8743577097F8E0000
599
+ C9
600
+ 0000000000000000000000000000000000000000000000000000000000000000
601
+ 0000000000000000000000000000000000000000000000000000000000000000
602
+ 0000000000000000000000000000000000000000000000000000000000000000
603
+ 0000000000000000000000000000000000000000000000000000000000000000
604
+ 0000000000000000000000000000000000000000000000000000000000000000
605
+ 0000000000000000000000000000000000000000000000000000000000000000
606
+ 0000000000000000000000000000000000000000000000000000000000000000
607
+ 0000000000000000000000000000000000000000000000000000000000000000
608
+ 0000000000000000000000000000000000000000000000000000000000000000
609
+ 0000000000000000000000000000000000000000000000000000000000000000
610
+ 00009F3B67CA7A175339758B9AED5F66819D83F180985F3C5FC575627B46903C
611
+ 686759EB5A9B7D10767E8B2C4FF55F6A6A196C376F0274E2796888688A558C79
612
+ 5EDF63CF75C579D282D7932892F2849C86ED9C2D54C15F6C658C6D5C70158CA7
613
+ 8CD3983B654F74F64E0D4ED857E0592B5A665BCC51A85E035E9C601662766577
614
+ 65A7666E6D6E72367B268150819A82998B5C8CA08CE68D74961C96444FAE64AB
615
+ 6B66821E8461856A90E85C01695398A8847A85574F0F526F5FA95E45670D0000
616
+ CA
617
+ 0000000000000000000000000000000000000000000000000000000000000000
618
+ 0000000000000000000000000000000000000000000000000000000000000000
619
+ 0000000000000000000000000000000000000000000000000000000000000000
620
+ 0000000000000000000000000000000000000000000000000000000000000000
621
+ 0000000000000000000000000000000000000000000000000000000000000000
622
+ 0000000000000000000000000000000000000000000000000000000000000000
623
+ 0000000000000000000000000000000000000000000000000000000000000000
624
+ 0000000000000000000000000000000000000000000000000000000000000000
625
+ 0000000000000000000000000000000000000000000000000000000000000000
626
+ 0000000000000000000000000000000000000000000000000000000000000000
627
+ 0000798F8179890789866DF55F1762556CB84ECF72699B925206543B567458B3
628
+ 61A4626E711A596E7C897CDE7D1B96F06587805E4E194F75517558405E635E73
629
+ 5F0A67C44E26853D9589965B7C73980150FB58C1765678A7522577A585117B86
630
+ 504F590972477BC77DE88FBA8FD4904D4FBF52C95A295F0197AD4FDD821792EA
631
+ 570363556B69752B88DC8F147A4252DF58936155620A66AE6BCD7C3F83E95023
632
+ 4FF853055446583159495B9D5CF05CEF5D295E9662B16367653E65B9670B0000
633
+ CB
634
+ 0000000000000000000000000000000000000000000000000000000000000000
635
+ 0000000000000000000000000000000000000000000000000000000000000000
636
+ 0000000000000000000000000000000000000000000000000000000000000000
637
+ 0000000000000000000000000000000000000000000000000000000000000000
638
+ 0000000000000000000000000000000000000000000000000000000000000000
639
+ 0000000000000000000000000000000000000000000000000000000000000000
640
+ 0000000000000000000000000000000000000000000000000000000000000000
641
+ 0000000000000000000000000000000000000000000000000000000000000000
642
+ 0000000000000000000000000000000000000000000000000000000000000000
643
+ 0000000000000000000000000000000000000000000000000000000000000000
644
+ 00006CD56CE170F978327E2B80DE82B3840C84EC870289128A2A8C4A90A692D2
645
+ 98FD9CF39D6C4E4F4EA1508D5256574A59A85E3D5FD85FD9623F66B4671B67D0
646
+ 68D251927D2180AA81A88B008C8C8CBF927E96325420982C531750D5535C58A8
647
+ 64B26734726777667A4691E652C36CA16B8658005E4C5954672C7FFB51E176C6
648
+ 646978E89B549EBB57CB59B96627679A6BCE54E969D95E55819C67959BAA67FE
649
+ 9C52685D4EA64FE353C862B9672B6CAB8FC44FAD7E6D9EBF4E0761626E800000
650
+ CC
651
+ 0000000000000000000000000000000000000000000000000000000000000000
652
+ 0000000000000000000000000000000000000000000000000000000000000000
653
+ 0000000000000000000000000000000000000000000000000000000000000000
654
+ 0000000000000000000000000000000000000000000000000000000000000000
655
+ 0000000000000000000000000000000000000000000000000000000000000000
656
+ 0000000000000000000000000000000000000000000000000000000000000000
657
+ 0000000000000000000000000000000000000000000000000000000000000000
658
+ 0000000000000000000000000000000000000000000000000000000000000000
659
+ 0000000000000000000000000000000000000000000000000000000000000000
660
+ 0000000000000000000000000000000000000000000000000000000000000000
661
+ 00006F2B85135473672A9B455DF37B955CAC5BC6871C6E4A84D17A1481085999
662
+ 7C8D6C11772052D959227121725F77DB97279D61690B5A7F5A1851A5540D547D
663
+ 660E76DF8FF792989CF459EA725D6EC5514D68C97DBF7DEC97629EBA64786A21
664
+ 830259845B5F6BDB731B76F27DB280178499513267289ED976EE676252FF9905
665
+ 5C24623B7C7E8CB0554F60B67D0B958053014E5F51B6591C723A803691CE5F25
666
+ 77E253845F797D0485AC8A338E8D975667F385AE9453610961086CB976520000
667
+ CD
668
+ 0000000000000000000000000000000000000000000000000000000000000000
669
+ 0000000000000000000000000000000000000000000000000000000000000000
670
+ 0000000000000000000000000000000000000000000000000000000000000000
671
+ 0000000000000000000000000000000000000000000000000000000000000000
672
+ 0000000000000000000000000000000000000000000000000000000000000000
673
+ 0000000000000000000000000000000000000000000000000000000000000000
674
+ 0000000000000000000000000000000000000000000000000000000000000000
675
+ 0000000000000000000000000000000000000000000000000000000000000000
676
+ 0000000000000000000000000000000000000000000000000000000000000000
677
+ 0000000000000000000000000000000000000000000000000000000000000000
678
+ 00008AED8F38552F4F51512A52C753CB5BA55E7D60A0618263D6670967DA6E67
679
+ 6D8C733673377531795088D58A98904A909190F596C4878D59154E884F594E0E
680
+ 8A898F3F981050AD5E7C59965BB95EB863DA63FA64C166DC694A69D86D0B6EB6
681
+ 719475287AAF7F8A8000844984C989818B218E0A9065967D990A617E62916B32
682
+ 6C836D747FCC7FFC6DC07F8587BA88F8676583B1983C96F76D1B7D61843D916A
683
+ 4E7153755D506B046FEB85CD862D89A75229540F5C65674E68A8740674830000
684
+ CE
685
+ 0000000000000000000000000000000000000000000000000000000000000000
686
+ 0000000000000000000000000000000000000000000000000000000000000000
687
+ 0000000000000000000000000000000000000000000000000000000000000000
688
+ 0000000000000000000000000000000000000000000000000000000000000000
689
+ 0000000000000000000000000000000000000000000000000000000000000000
690
+ 0000000000000000000000000000000000000000000000000000000000000000
691
+ 0000000000000000000000000000000000000000000000000000000000000000
692
+ 0000000000000000000000000000000000000000000000000000000000000000
693
+ 0000000000000000000000000000000000000000000000000000000000000000
694
+ 0000000000000000000000000000000000000000000000000000000000000000
695
+ 000075E288CF88E191CC96E296785F8B73877ACB844E63A0756552896D416E9C
696
+ 74097559786B7C9296867ADC9F8D4FB6616E65C5865C4E864EAE50DA4E2151CC
697
+ 5BEE659968816DBC731F764277AD7A1C7CE7826F8AD2907C91CF96759818529B
698
+ 7DD1502B539867976DCB71D0743381E88F2A96A39C579E9F746058416D997D2F
699
+ 985E4EE44F364F8B51B752B15DBA601C73B2793C82D3923496B796F6970A9E97
700
+ 9F6266A66B74521752A370C888C25EC9604B61906F2371497C3E7DF4806F0000
701
+ CF
702
+ 0000000000000000000000000000000000000000000000000000000000000000
703
+ 0000000000000000000000000000000000000000000000000000000000000000
704
+ 0000000000000000000000000000000000000000000000000000000000000000
705
+ 0000000000000000000000000000000000000000000000000000000000000000
706
+ 0000000000000000000000000000000000000000000000000000000000000000
707
+ 0000000000000000000000000000000000000000000000000000000000000000
708
+ 0000000000000000000000000000000000000000000000000000000000000000
709
+ 0000000000000000000000000000000000000000000000000000000000000000
710
+ 0000000000000000000000000000000000000000000000000000000000000000
711
+ 0000000000000000000000000000000000000000000000000000000000000000
712
+ 000084EE9023932C54429B6F6AD370898CC28DEF973252B45A415ECA5F046717
713
+ 697C69946D6A6F0F726272FC7BED8001807E874B90CE516D9E937984808B9332
714
+ 8AD6502D548C8A716B6A8CC4810760D167A09DF24E994E989C108A6B85C18568
715
+ 69006E7E78978155000000000000000000000000000000000000000000000000
716
+ 0000000000000000000000000000000000000000000000000000000000000000
717
+ 0000000000000000000000000000000000000000000000000000000000000000
718
+ D0
719
+ 0000000000000000000000000000000000000000000000000000000000000000
720
+ 0000000000000000000000000000000000000000000000000000000000000000
721
+ 0000000000000000000000000000000000000000000000000000000000000000
722
+ 0000000000000000000000000000000000000000000000000000000000000000
723
+ 0000000000000000000000000000000000000000000000000000000000000000
724
+ 0000000000000000000000000000000000000000000000000000000000000000
725
+ 0000000000000000000000000000000000000000000000000000000000000000
726
+ 0000000000000000000000000000000000000000000000000000000000000000
727
+ 0000000000000000000000000000000000000000000000000000000000000000
728
+ 0000000000000000000000000000000000000000000000000000000000000000
729
+ 00005F0C4E104E154E2A4E314E364E3C4E3F4E424E564E584E824E858C6B4E8A
730
+ 82125F0D4E8E4E9E4E9F4EA04EA24EB04EB34EB64ECE4ECD4EC44EC64EC24ED7
731
+ 4EDE4EED4EDF4EF74F094F5A4F304F5B4F5D4F574F474F764F884F8F4F984F7B
732
+ 4F694F704F914F6F4F864F9651184FD44FDF4FCE4FD84FDB4FD14FDA4FD04FE4
733
+ 4FE5501A50285014502A502550054F1C4FF650215029502C4FFE4FEF50115006
734
+ 504350476703505550505048505A5056506C50785080509A508550B450B20000
735
+ D1
736
+ 0000000000000000000000000000000000000000000000000000000000000000
737
+ 0000000000000000000000000000000000000000000000000000000000000000
738
+ 0000000000000000000000000000000000000000000000000000000000000000
739
+ 0000000000000000000000000000000000000000000000000000000000000000
740
+ 0000000000000000000000000000000000000000000000000000000000000000
741
+ 0000000000000000000000000000000000000000000000000000000000000000
742
+ 0000000000000000000000000000000000000000000000000000000000000000
743
+ 0000000000000000000000000000000000000000000000000000000000000000
744
+ 0000000000000000000000000000000000000000000000000000000000000000
745
+ 0000000000000000000000000000000000000000000000000000000000000000
746
+ 000050C950CA50B350C250D650DE50E550ED50E350EE50F950F5510951015102
747
+ 511651155114511A5121513A5137513C513B513F51405152514C515451627AF8
748
+ 5169516A516E5180518256D8518C5189518F519151935195519651A451A651A2
749
+ 51A951AA51AB51B351B151B251B051B551BD51C551C951DB51E0865551E951ED
750
+ 51F051F551FE5204520B5214520E5227522A522E52335239524F5244524B524C
751
+ 525E5254526A527452695273527F527D528D529452925271528852918FA80000
752
+ D2
753
+ 0000000000000000000000000000000000000000000000000000000000000000
754
+ 0000000000000000000000000000000000000000000000000000000000000000
755
+ 0000000000000000000000000000000000000000000000000000000000000000
756
+ 0000000000000000000000000000000000000000000000000000000000000000
757
+ 0000000000000000000000000000000000000000000000000000000000000000
758
+ 0000000000000000000000000000000000000000000000000000000000000000
759
+ 0000000000000000000000000000000000000000000000000000000000000000
760
+ 0000000000000000000000000000000000000000000000000000000000000000
761
+ 0000000000000000000000000000000000000000000000000000000000000000
762
+ 0000000000000000000000000000000000000000000000000000000000000000
763
+ 00008FA752AC52AD52BC52B552C152CD52D752DE52E352E698ED52E052F352F5
764
+ 52F852F9530653087538530D5310530F5315531A5323532F5331533353385340
765
+ 534653454E175349534D51D6535E5369536E5918537B53775382539653A053A6
766
+ 53A553AE53B053B653C37C1296D953DF66FC71EE53EE53E853ED53FA5401543D
767
+ 5440542C542D543C542E54365429541D544E548F5475548E545F547154775470
768
+ 5492547B5480547654845490548654C754A254B854A554AC54C454C854A80000
769
+ D3
770
+ 0000000000000000000000000000000000000000000000000000000000000000
771
+ 0000000000000000000000000000000000000000000000000000000000000000
772
+ 0000000000000000000000000000000000000000000000000000000000000000
773
+ 0000000000000000000000000000000000000000000000000000000000000000
774
+ 0000000000000000000000000000000000000000000000000000000000000000
775
+ 0000000000000000000000000000000000000000000000000000000000000000
776
+ 0000000000000000000000000000000000000000000000000000000000000000
777
+ 0000000000000000000000000000000000000000000000000000000000000000
778
+ 0000000000000000000000000000000000000000000000000000000000000000
779
+ 0000000000000000000000000000000000000000000000000000000000000000
780
+ 000054AB54C254A454BE54BC54D854E554E6550F551454FD54EE54ED54FA54E2
781
+ 553955405563554C552E555C55455556555755385533555D5599558054AF558A
782
+ 559F557B557E5598559E55AE557C558355A9558755A855DA55C555DF55C455DC
783
+ 55E455D4561455F7561655FE55FD561B55F9564E565071DF5634563656325638
784
+ 566B5664562F566C566A56865680568A56A05694568F56A556AE56B656B456C2
785
+ 56BC56C156C356C056C856CE56D156D356D756EE56F9570056FF570457090000
786
+ D4
787
+ 0000000000000000000000000000000000000000000000000000000000000000
788
+ 0000000000000000000000000000000000000000000000000000000000000000
789
+ 0000000000000000000000000000000000000000000000000000000000000000
790
+ 0000000000000000000000000000000000000000000000000000000000000000
791
+ 0000000000000000000000000000000000000000000000000000000000000000
792
+ 0000000000000000000000000000000000000000000000000000000000000000
793
+ 0000000000000000000000000000000000000000000000000000000000000000
794
+ 0000000000000000000000000000000000000000000000000000000000000000
795
+ 0000000000000000000000000000000000000000000000000000000000000000
796
+ 0000000000000000000000000000000000000000000000000000000000000000
797
+ 00005708570B570D57135718571655C7571C572657375738574E573B5740574F
798
+ 576957C057885761577F5789579357A057B357A457AA57B057C357C657D457D2
799
+ 57D3580A57D657E3580B5819581D587258215862584B58706BC05852583D5879
800
+ 588558B9589F58AB58BA58DE58BB58B858AE58C558D358D158D758D958D858E5
801
+ 58DC58E458DF58EF58FA58F958FB58FC58FD5902590A5910591B68A65925592C
802
+ 592D59325938593E7AD259555950594E595A5958596259605967596C59690000
803
+ D5
804
+ 0000000000000000000000000000000000000000000000000000000000000000
805
+ 0000000000000000000000000000000000000000000000000000000000000000
806
+ 0000000000000000000000000000000000000000000000000000000000000000
807
+ 0000000000000000000000000000000000000000000000000000000000000000
808
+ 0000000000000000000000000000000000000000000000000000000000000000
809
+ 0000000000000000000000000000000000000000000000000000000000000000
810
+ 0000000000000000000000000000000000000000000000000000000000000000
811
+ 0000000000000000000000000000000000000000000000000000000000000000
812
+ 0000000000000000000000000000000000000000000000000000000000000000
813
+ 0000000000000000000000000000000000000000000000000000000000000000
814
+ 000059785981599D4F5E4FAB59A359B259C659E859DC598D59D959DA5A255A1F
815
+ 5A115A1C5A095A1A5A405A6C5A495A355A365A625A6A5A9A5ABC5ABE5ACB5AC2
816
+ 5ABD5AE35AD75AE65AE95AD65AFA5AFB5B0C5B0B5B165B325AD05B2A5B365B3E
817
+ 5B435B455B405B515B555B5A5B5B5B655B695B705B735B755B7865885B7A5B80
818
+ 5B835BA65BB85BC35BC75BC95BD45BD05BE45BE65BE25BDE5BE55BEB5BF05BF6
819
+ 5BF35C055C075C085C0D5C135C205C225C285C385C395C415C465C4E5C530000
820
+ D6
821
+ 0000000000000000000000000000000000000000000000000000000000000000
822
+ 0000000000000000000000000000000000000000000000000000000000000000
823
+ 0000000000000000000000000000000000000000000000000000000000000000
824
+ 0000000000000000000000000000000000000000000000000000000000000000
825
+ 0000000000000000000000000000000000000000000000000000000000000000
826
+ 0000000000000000000000000000000000000000000000000000000000000000
827
+ 0000000000000000000000000000000000000000000000000000000000000000
828
+ 0000000000000000000000000000000000000000000000000000000000000000
829
+ 0000000000000000000000000000000000000000000000000000000000000000
830
+ 0000000000000000000000000000000000000000000000000000000000000000
831
+ 00005C505C4F5B715C6C5C6E4E625C765C795C8C5C915C94599B5CAB5CBB5CB6
832
+ 5CBC5CB75CC55CBE5CC75CD95CE95CFD5CFA5CED5D8C5CEA5D0B5D155D175D5C
833
+ 5D1F5D1B5D115D145D225D1A5D195D185D4C5D525D4E5D4B5D6C5D735D765D87
834
+ 5D845D825DA25D9D5DAC5DAE5DBD5D905DB75DBC5DC95DCD5DD35DD25DD65DDB
835
+ 5DEB5DF25DF55E0B5E1A5E195E115E1B5E365E375E445E435E405E4E5E575E54
836
+ 5E5F5E625E645E475E755E765E7A9EBC5E7F5EA05EC15EC25EC85ED05ECF0000
837
+ D7
838
+ 0000000000000000000000000000000000000000000000000000000000000000
839
+ 0000000000000000000000000000000000000000000000000000000000000000
840
+ 0000000000000000000000000000000000000000000000000000000000000000
841
+ 0000000000000000000000000000000000000000000000000000000000000000
842
+ 0000000000000000000000000000000000000000000000000000000000000000
843
+ 0000000000000000000000000000000000000000000000000000000000000000
844
+ 0000000000000000000000000000000000000000000000000000000000000000
845
+ 0000000000000000000000000000000000000000000000000000000000000000
846
+ 0000000000000000000000000000000000000000000000000000000000000000
847
+ 0000000000000000000000000000000000000000000000000000000000000000
848
+ 00005ED65EE35EDD5EDA5EDB5EE25EE15EE85EE95EEC5EF15EF35EF05EF45EF8
849
+ 5EFE5F035F095F5D5F5C5F0B5F115F165F295F2D5F385F415F485F4C5F4E5F2F
850
+ 5F515F565F575F595F615F6D5F735F775F835F825F7F5F8A5F885F915F875F9E
851
+ 5F995F985FA05FA85FAD5FBC5FD65FFB5FE45FF85FF15FDD60B35FFF60216060
852
+ 601960106029600E6031601B6015602B6026600F603A605A6041606A6077605F
853
+ 604A6046604D6063604360646042606C606B60596081608D60E76083609A0000
854
+ D8
855
+ 0000000000000000000000000000000000000000000000000000000000000000
856
+ 0000000000000000000000000000000000000000000000000000000000000000
857
+ 0000000000000000000000000000000000000000000000000000000000000000
858
+ 0000000000000000000000000000000000000000000000000000000000000000
859
+ 0000000000000000000000000000000000000000000000000000000000000000
860
+ 0000000000000000000000000000000000000000000000000000000000000000
861
+ 0000000000000000000000000000000000000000000000000000000000000000
862
+ 0000000000000000000000000000000000000000000000000000000000000000
863
+ 0000000000000000000000000000000000000000000000000000000000000000
864
+ 0000000000000000000000000000000000000000000000000000000000000000
865
+ 00006084609B60966097609260A7608B60E160B860E060D360B45FF060BD60C6
866
+ 60B560D8614D6115610660F660F7610060F460FA6103612160FB60F1610D610E
867
+ 6147613E61286127614A613F613C612C6134613D614261446173617761586159
868
+ 615A616B6174616F61656171615F615D6153617561996196618761AC6194619A
869
+ 618A619161AB61AE61CC61CA61C961F761C861C361C661BA61CB7F7961CD61E6
870
+ 61E361F661FA61F461FF61FD61FC61FE620062086209620D620C6214621B0000
871
+ D9
872
+ 0000000000000000000000000000000000000000000000000000000000000000
873
+ 0000000000000000000000000000000000000000000000000000000000000000
874
+ 0000000000000000000000000000000000000000000000000000000000000000
875
+ 0000000000000000000000000000000000000000000000000000000000000000
876
+ 0000000000000000000000000000000000000000000000000000000000000000
877
+ 0000000000000000000000000000000000000000000000000000000000000000
878
+ 0000000000000000000000000000000000000000000000000000000000000000
879
+ 0000000000000000000000000000000000000000000000000000000000000000
880
+ 0000000000000000000000000000000000000000000000000000000000000000
881
+ 0000000000000000000000000000000000000000000000000000000000000000
882
+ 0000621E6221622A622E6230623262336241624E625E6263625B62606268627C
883
+ 62826289627E62926293629662D46283629462D762D162BB62CF62FF62C664D4
884
+ 62C862DC62CC62CA62C262C7629B62C9630C62EE62F163276302630862EF62F5
885
+ 6350633E634D641C634F6396638E638063AB637663A3638F6389639F63B5636B
886
+ 636963BE63E963C063C663E363C963D263F663C4641664346406641364266436
887
+ 651D64176428640F6467646F6476644E652A6495649364A564A9648864BC0000
888
+ DA
889
+ 0000000000000000000000000000000000000000000000000000000000000000
890
+ 0000000000000000000000000000000000000000000000000000000000000000
891
+ 0000000000000000000000000000000000000000000000000000000000000000
892
+ 0000000000000000000000000000000000000000000000000000000000000000
893
+ 0000000000000000000000000000000000000000000000000000000000000000
894
+ 0000000000000000000000000000000000000000000000000000000000000000
895
+ 0000000000000000000000000000000000000000000000000000000000000000
896
+ 0000000000000000000000000000000000000000000000000000000000000000
897
+ 0000000000000000000000000000000000000000000000000000000000000000
898
+ 0000000000000000000000000000000000000000000000000000000000000000
899
+ 000064DA64D264C564C764BB64D864C264F164E7820964E064E162AC64E364EF
900
+ 652C64F664F464F264FA650064FD6518651C650565246523652B653465356537
901
+ 65366538754B654865566555654D6558655E655D65726578658265838B8A659B
902
+ 659F65AB65B765C365C665C165C465CC65D265DB65D965E065E165F16772660A
903
+ 660365FB6773663566366634661C664F664466496641665E665D666466676668
904
+ 665F6662667066836688668E668966846698669D66C166B966C966BE66BC0000
905
+ DB
906
+ 0000000000000000000000000000000000000000000000000000000000000000
907
+ 0000000000000000000000000000000000000000000000000000000000000000
908
+ 0000000000000000000000000000000000000000000000000000000000000000
909
+ 0000000000000000000000000000000000000000000000000000000000000000
910
+ 0000000000000000000000000000000000000000000000000000000000000000
911
+ 0000000000000000000000000000000000000000000000000000000000000000
912
+ 0000000000000000000000000000000000000000000000000000000000000000
913
+ 0000000000000000000000000000000000000000000000000000000000000000
914
+ 0000000000000000000000000000000000000000000000000000000000000000
915
+ 0000000000000000000000000000000000000000000000000000000000000000
916
+ 000066C466B866D666DA66E0663F66E666E966F066F566F7670F6716671E6726
917
+ 67279738672E673F67366741673867376746675E676067596763676467896770
918
+ 67A9677C676A678C678B67A667A1678567B767EF67B467EC67B367E967B867E4
919
+ 67DE67DD67E267EE67B967CE67C667E76A9C681E684668296840684D6832684E
920
+ 68B3682B685968636877687F689F688F68AD6894689D689B68836AAE68B96874
921
+ 68B568A068BA690F688D687E690168CA690868D86922692668E1690C68CD0000
922
+ DC
923
+ 0000000000000000000000000000000000000000000000000000000000000000
924
+ 0000000000000000000000000000000000000000000000000000000000000000
925
+ 0000000000000000000000000000000000000000000000000000000000000000
926
+ 0000000000000000000000000000000000000000000000000000000000000000
927
+ 0000000000000000000000000000000000000000000000000000000000000000
928
+ 0000000000000000000000000000000000000000000000000000000000000000
929
+ 0000000000000000000000000000000000000000000000000000000000000000
930
+ 0000000000000000000000000000000000000000000000000000000000000000
931
+ 0000000000000000000000000000000000000000000000000000000000000000
932
+ 0000000000000000000000000000000000000000000000000000000000000000
933
+ 000068D468E768D569366912690468D768E3692568F968E068EF6928692A691A
934
+ 6923692168C669796977695C6978696B6954697E696E69396974693D69596930
935
+ 6961695E695D6981696A69B269AE69D069BF69C169D369BE69CE5BE869CA69DD
936
+ 69BB69C369A76A2E699169A0699C699569B469DE69E86A026A1B69FF6B0A69F9
937
+ 69F269E76A0569B16A1E69ED6A1469EB6A0A6A126AC16A236A136A446A0C6A72
938
+ 6A366A786A476A626A596A666A486A386A226A906A8D6AA06A846AA26AA30000
939
+ DD
940
+ 0000000000000000000000000000000000000000000000000000000000000000
941
+ 0000000000000000000000000000000000000000000000000000000000000000
942
+ 0000000000000000000000000000000000000000000000000000000000000000
943
+ 0000000000000000000000000000000000000000000000000000000000000000
944
+ 0000000000000000000000000000000000000000000000000000000000000000
945
+ 0000000000000000000000000000000000000000000000000000000000000000
946
+ 0000000000000000000000000000000000000000000000000000000000000000
947
+ 0000000000000000000000000000000000000000000000000000000000000000
948
+ 0000000000000000000000000000000000000000000000000000000000000000
949
+ 0000000000000000000000000000000000000000000000000000000000000000
950
+ 00006A9786176ABB6AC36AC26AB86AB36AAC6ADE6AD16ADF6AAA6ADA6AEA6AFB
951
+ 6B0586166AFA6B126B169B316B1F6B386B3776DC6B3998EE6B476B436B496B50
952
+ 6B596B546B5B6B5F6B616B786B796B7F6B806B846B836B8D6B986B956B9E6BA4
953
+ 6BAA6BAB6BAF6BB26BB16BB36BB76BBC6BC66BCB6BD36BDF6BEC6BEB6BF36BEF
954
+ 9EBE6C086C136C146C1B6C246C236C5E6C556C626C6A6C826C8D6C9A6C816C9B
955
+ 6C7E6C686C736C926C906CC46CF16CD36CBD6CD76CC56CDD6CAE6CB16CBE0000
956
+ DE
957
+ 0000000000000000000000000000000000000000000000000000000000000000
958
+ 0000000000000000000000000000000000000000000000000000000000000000
959
+ 0000000000000000000000000000000000000000000000000000000000000000
960
+ 0000000000000000000000000000000000000000000000000000000000000000
961
+ 0000000000000000000000000000000000000000000000000000000000000000
962
+ 0000000000000000000000000000000000000000000000000000000000000000
963
+ 0000000000000000000000000000000000000000000000000000000000000000
964
+ 0000000000000000000000000000000000000000000000000000000000000000
965
+ 0000000000000000000000000000000000000000000000000000000000000000
966
+ 0000000000000000000000000000000000000000000000000000000000000000
967
+ 00006CBA6CDB6CEF6CD96CEA6D1F884D6D366D2B6D3D6D386D196D356D336D12
968
+ 6D0C6D636D936D646D5A6D796D596D8E6D956FE46D856DF96E156E0A6DB56DC7
969
+ 6DE66DB86DC66DEC6DDE6DCC6DE86DD26DC56DFA6DD96DE46DD56DEA6DEE6E2D
970
+ 6E6E6E2E6E196E726E5F6E3E6E236E6B6E2B6E766E4D6E1F6E436E3A6E4E6E24
971
+ 6EFF6E1D6E386E826EAA6E986EC96EB76ED36EBD6EAF6EC46EB26ED46ED56E8F
972
+ 6EA56EC26E9F6F416F11704C6EEC6EF86EFE6F3F6EF26F316EEF6F326ECC0000
973
+ DF
974
+ 0000000000000000000000000000000000000000000000000000000000000000
975
+ 0000000000000000000000000000000000000000000000000000000000000000
976
+ 0000000000000000000000000000000000000000000000000000000000000000
977
+ 0000000000000000000000000000000000000000000000000000000000000000
978
+ 0000000000000000000000000000000000000000000000000000000000000000
979
+ 0000000000000000000000000000000000000000000000000000000000000000
980
+ 0000000000000000000000000000000000000000000000000000000000000000
981
+ 0000000000000000000000000000000000000000000000000000000000000000
982
+ 0000000000000000000000000000000000000000000000000000000000000000
983
+ 0000000000000000000000000000000000000000000000000000000000000000
984
+ 00006F3E6F136EF76F866F7A6F786F816F806F6F6F5B6FF36F6D6F826F7C6F58
985
+ 6F8E6F916FC26F666FB36FA36FA16FA46FB96FC66FAA6FDF6FD56FEC6FD46FD8
986
+ 6FF16FEE6FDB7009700B6FFA70117001700F6FFE701B701A6F74701D7018701F
987
+ 7030703E7032705170637099709270AF70F170AC70B870B370AE70DF70CB70DD
988
+ 70D9710970FD711C711971657155718871667162714C7156716C718F71FB7184
989
+ 719571A871AC71D771B971BE71D271C971D471CE71E071EC71E771F571FC0000
990
+ E0
991
+ 0000000000000000000000000000000000000000000000000000000000000000
992
+ 0000000000000000000000000000000000000000000000000000000000000000
993
+ 0000000000000000000000000000000000000000000000000000000000000000
994
+ 0000000000000000000000000000000000000000000000000000000000000000
995
+ 0000000000000000000000000000000000000000000000000000000000000000
996
+ 0000000000000000000000000000000000000000000000000000000000000000
997
+ 0000000000000000000000000000000000000000000000000000000000000000
998
+ 0000000000000000000000000000000000000000000000000000000000000000
999
+ 0000000000000000000000000000000000000000000000000000000000000000
1000
+ 0000000000000000000000000000000000000000000000000000000000000000
1001
+ 000071F971FF720D7210721B7228722D722C72307232723B723C723F72407246
1002
+ 724B72587274727E7282728172877292729672A272A772B972B272C372C672C4
1003
+ 72CE72D272E272E072E172F972F7500F7317730A731C7316731D7334732F7329
1004
+ 7325733E734E734F9ED87357736A7368737073787375737B737A73C873B373CE
1005
+ 73BB73C073E573EE73DE74A27405746F742573F87432743A7455743F745F7459
1006
+ 7441745C746974707463746A7476747E748B749E74A774CA74CF74D473F10000
1007
+ E1
1008
+ 0000000000000000000000000000000000000000000000000000000000000000
1009
+ 0000000000000000000000000000000000000000000000000000000000000000
1010
+ 0000000000000000000000000000000000000000000000000000000000000000
1011
+ 0000000000000000000000000000000000000000000000000000000000000000
1012
+ 0000000000000000000000000000000000000000000000000000000000000000
1013
+ 0000000000000000000000000000000000000000000000000000000000000000
1014
+ 0000000000000000000000000000000000000000000000000000000000000000
1015
+ 0000000000000000000000000000000000000000000000000000000000000000
1016
+ 0000000000000000000000000000000000000000000000000000000000000000
1017
+ 0000000000000000000000000000000000000000000000000000000000000000
1018
+ 000074E074E374E774E974EE74F274F074F174F874F7750475037505750C750E
1019
+ 750D75157513751E7526752C753C7544754D754A7549755B7546755A75697564
1020
+ 7567756B756D75787576758675877574758A758975827594759A759D75A575A3
1021
+ 75C275B375C375B575BD75B875BC75B175CD75CA75D275D975E375DE75FE75FF
1022
+ 75FC760175F075FA75F275F3760B760D7609761F762776207621762276247634
1023
+ 7630763B764776487646765C76587661766276687669766A7667766C76700000
1024
+ E2
1025
+ 0000000000000000000000000000000000000000000000000000000000000000
1026
+ 0000000000000000000000000000000000000000000000000000000000000000
1027
+ 0000000000000000000000000000000000000000000000000000000000000000
1028
+ 0000000000000000000000000000000000000000000000000000000000000000
1029
+ 0000000000000000000000000000000000000000000000000000000000000000
1030
+ 0000000000000000000000000000000000000000000000000000000000000000
1031
+ 0000000000000000000000000000000000000000000000000000000000000000
1032
+ 0000000000000000000000000000000000000000000000000000000000000000
1033
+ 0000000000000000000000000000000000000000000000000000000000000000
1034
+ 0000000000000000000000000000000000000000000000000000000000000000
1035
+ 0000767276767678767C768076837688768B768E769676937699769A76B076B4
1036
+ 76B876B976BA76C276CD76D676D276DE76E176E576E776EA862F76FB77087707
1037
+ 770477297724771E77257726771B773777387747775A7768776B775B7765777F
1038
+ 777E7779778E778B779177A0779E77B077B677B977BF77BC77BD77BB77C777CD
1039
+ 77D777DA77DC77E377EE77FC780C781279267820792A7845788E78747886787C
1040
+ 789A788C78A378B578AA78AF78D178C678CB78D478BE78BC78C578CA78EC0000
1041
+ E3
1042
+ 0000000000000000000000000000000000000000000000000000000000000000
1043
+ 0000000000000000000000000000000000000000000000000000000000000000
1044
+ 0000000000000000000000000000000000000000000000000000000000000000
1045
+ 0000000000000000000000000000000000000000000000000000000000000000
1046
+ 0000000000000000000000000000000000000000000000000000000000000000
1047
+ 0000000000000000000000000000000000000000000000000000000000000000
1048
+ 0000000000000000000000000000000000000000000000000000000000000000
1049
+ 0000000000000000000000000000000000000000000000000000000000000000
1050
+ 0000000000000000000000000000000000000000000000000000000000000000
1051
+ 0000000000000000000000000000000000000000000000000000000000000000
1052
+ 000078E778DA78FD78F47907791279117919792C792B794079607957795F795A
1053
+ 79557953797A797F798A799D79A79F4B79AA79AE79B379B979BA79C979D579E7
1054
+ 79EC79E179E37A087A0D7A187A197A207A1F79807A317A3B7A3E7A377A437A57
1055
+ 7A497A617A627A699F9D7A707A797A7D7A887A977A957A987A967AA97AC87AB0
1056
+ 7AB67AC57AC47ABF90837AC77ACA7ACD7ACF7AD57AD37AD97ADA7ADD7AE17AE2
1057
+ 7AE67AED7AF07B027B0F7B0A7B067B337B187B197B1E7B357B287B367B500000
1058
+ E4
1059
+ 0000000000000000000000000000000000000000000000000000000000000000
1060
+ 0000000000000000000000000000000000000000000000000000000000000000
1061
+ 0000000000000000000000000000000000000000000000000000000000000000
1062
+ 0000000000000000000000000000000000000000000000000000000000000000
1063
+ 0000000000000000000000000000000000000000000000000000000000000000
1064
+ 0000000000000000000000000000000000000000000000000000000000000000
1065
+ 0000000000000000000000000000000000000000000000000000000000000000
1066
+ 0000000000000000000000000000000000000000000000000000000000000000
1067
+ 0000000000000000000000000000000000000000000000000000000000000000
1068
+ 0000000000000000000000000000000000000000000000000000000000000000
1069
+ 00007B7A7B047B4D7B0B7B4C7B457B757B657B747B677B707B717B6C7B6E7B9D
1070
+ 7B987B9F7B8D7B9C7B9A7B8B7B927B8F7B5D7B997BCB7BC17BCC7BCF7BB47BC6
1071
+ 7BDD7BE97C117C147BE67BE57C607C007C077C137BF37BF77C177C0D7BF67C23
1072
+ 7C277C2A7C1F7C377C2B7C3D7C4C7C437C547C4F7C407C507C587C5F7C647C56
1073
+ 7C657C6C7C757C837C907CA47CAD7CA27CAB7CA17CA87CB37CB27CB17CAE7CB9
1074
+ 7CBD7CC07CC57CC27CD87CD27CDC7CE29B3B7CEF7CF27CF47CF67CFA7D060000
1075
+ E5
1076
+ 0000000000000000000000000000000000000000000000000000000000000000
1077
+ 0000000000000000000000000000000000000000000000000000000000000000
1078
+ 0000000000000000000000000000000000000000000000000000000000000000
1079
+ 0000000000000000000000000000000000000000000000000000000000000000
1080
+ 0000000000000000000000000000000000000000000000000000000000000000
1081
+ 0000000000000000000000000000000000000000000000000000000000000000
1082
+ 0000000000000000000000000000000000000000000000000000000000000000
1083
+ 0000000000000000000000000000000000000000000000000000000000000000
1084
+ 0000000000000000000000000000000000000000000000000000000000000000
1085
+ 0000000000000000000000000000000000000000000000000000000000000000
1086
+ 00007D027D1C7D157D0A7D457D4B7D2E7D327D3F7D357D467D737D567D4E7D72
1087
+ 7D687D6E7D4F7D637D937D897D5B7D8F7D7D7D9B7DBA7DAE7DA37DB57DC77DBD
1088
+ 7DAB7E3D7DA27DAF7DDC7DB87D9F7DB07DD87DDD7DE47DDE7DFB7DF27DE17E05
1089
+ 7E0A7E237E217E127E317E1F7E097E0B7E227E467E667E3B7E357E397E437E37
1090
+ 7E327E3A7E677E5D7E567E5E7E597E5A7E797E6A7E697E7C7E7B7E837DD57E7D
1091
+ 8FAE7E7F7E887E897E8C7E927E907E937E947E967E8E7E9B7E9C7F387F3A0000
1092
+ E6
1093
+ 0000000000000000000000000000000000000000000000000000000000000000
1094
+ 0000000000000000000000000000000000000000000000000000000000000000
1095
+ 0000000000000000000000000000000000000000000000000000000000000000
1096
+ 0000000000000000000000000000000000000000000000000000000000000000
1097
+ 0000000000000000000000000000000000000000000000000000000000000000
1098
+ 0000000000000000000000000000000000000000000000000000000000000000
1099
+ 0000000000000000000000000000000000000000000000000000000000000000
1100
+ 0000000000000000000000000000000000000000000000000000000000000000
1101
+ 0000000000000000000000000000000000000000000000000000000000000000
1102
+ 0000000000000000000000000000000000000000000000000000000000000000
1103
+ 00007F457F4C7F4D7F4E7F507F517F557F547F587F5F7F607F687F697F677F78
1104
+ 7F827F867F837F887F877F8C7F947F9E7F9D7F9A7FA37FAF7FB27FB97FAE7FB6
1105
+ 7FB88B717FC57FC67FCA7FD57FD47FE17FE67FE97FF37FF998DC80068004800B
1106
+ 801280188019801C80218028803F803B804A804680528058805A805F80628068
1107
+ 80738072807080768079807D807F808480868085809B8093809A80AD519080AC
1108
+ 80DB80E580D980DD80C480DA80D6810980EF80F1811B81298123812F814B0000
1109
+ E7
1110
+ 0000000000000000000000000000000000000000000000000000000000000000
1111
+ 0000000000000000000000000000000000000000000000000000000000000000
1112
+ 0000000000000000000000000000000000000000000000000000000000000000
1113
+ 0000000000000000000000000000000000000000000000000000000000000000
1114
+ 0000000000000000000000000000000000000000000000000000000000000000
1115
+ 0000000000000000000000000000000000000000000000000000000000000000
1116
+ 0000000000000000000000000000000000000000000000000000000000000000
1117
+ 0000000000000000000000000000000000000000000000000000000000000000
1118
+ 0000000000000000000000000000000000000000000000000000000000000000
1119
+ 0000000000000000000000000000000000000000000000000000000000000000
1120
+ 0000968B8146813E8153815180FC8171816E81658166817481838188818A8180
1121
+ 818281A0819581A481A3815F819381A981B081B581BE81B881BD81C081C281BA
1122
+ 81C981CD81D181D981D881C881DA81DF81E081E781FA81FB81FE820182028205
1123
+ 8207820A820D821082168229822B82388233824082598258825D825A825F8264
1124
+ 82628268826A826B822E827182778278827E828D829282AB829F82BB82AC82E1
1125
+ 82E382DF82D282F482F382FA8393830382FB82F982DE830682DC830982D90000
1126
+ E8
1127
+ 0000000000000000000000000000000000000000000000000000000000000000
1128
+ 0000000000000000000000000000000000000000000000000000000000000000
1129
+ 0000000000000000000000000000000000000000000000000000000000000000
1130
+ 0000000000000000000000000000000000000000000000000000000000000000
1131
+ 0000000000000000000000000000000000000000000000000000000000000000
1132
+ 0000000000000000000000000000000000000000000000000000000000000000
1133
+ 0000000000000000000000000000000000000000000000000000000000000000
1134
+ 0000000000000000000000000000000000000000000000000000000000000000
1135
+ 0000000000000000000000000000000000000000000000000000000000000000
1136
+ 0000000000000000000000000000000000000000000000000000000000000000
1137
+ 0000833583348316833283318340833983508345832F832B831783188385839A
1138
+ 83AA839F83A283968323838E8387838A837C83B58373837583A0838983A883F4
1139
+ 841383EB83CE83FD840383D8840B83C183F7840783E083F2840D8422842083BD
1140
+ 8438850683FB846D842A843C855A84848477846B84AD846E848284698446842C
1141
+ 846F8479843584CA846284B984BF849F84D984CD84BB84DA84D084C184C684D6
1142
+ 84A1852184FF84F485178518852C851F8515851484FC85408563855885480000
1143
+ E9
1144
+ 0000000000000000000000000000000000000000000000000000000000000000
1145
+ 0000000000000000000000000000000000000000000000000000000000000000
1146
+ 0000000000000000000000000000000000000000000000000000000000000000
1147
+ 0000000000000000000000000000000000000000000000000000000000000000
1148
+ 0000000000000000000000000000000000000000000000000000000000000000
1149
+ 0000000000000000000000000000000000000000000000000000000000000000
1150
+ 0000000000000000000000000000000000000000000000000000000000000000
1151
+ 0000000000000000000000000000000000000000000000000000000000000000
1152
+ 0000000000000000000000000000000000000000000000000000000000000000
1153
+ 0000000000000000000000000000000000000000000000000000000000000000
1154
+ 000085418602854B8555858085A485888591858A85A8856D8594859B85EA8587
1155
+ 859C8577857E859085C985BA85CF85B985D085D585DD85E585DC85F9860A8613
1156
+ 860B85FE85FA86068622861A8630863F864D4E558654865F86678671869386A3
1157
+ 86A986AA868B868C86B686AF86C486C686B086C9882386AB86D486DE86E986EC
1158
+ 86DF86DB86EF8712870687088700870386FB87118709870D86F9870A8734873F
1159
+ 8737873B87258729871A8760875F8778874C874E877487578768876E87590000
1160
+ EA
1161
+ 0000000000000000000000000000000000000000000000000000000000000000
1162
+ 0000000000000000000000000000000000000000000000000000000000000000
1163
+ 0000000000000000000000000000000000000000000000000000000000000000
1164
+ 0000000000000000000000000000000000000000000000000000000000000000
1165
+ 0000000000000000000000000000000000000000000000000000000000000000
1166
+ 0000000000000000000000000000000000000000000000000000000000000000
1167
+ 0000000000000000000000000000000000000000000000000000000000000000
1168
+ 0000000000000000000000000000000000000000000000000000000000000000
1169
+ 0000000000000000000000000000000000000000000000000000000000000000
1170
+ 0000000000000000000000000000000000000000000000000000000000000000
1171
+ 000087538763876A880587A2879F878287AF87CB87BD87C087D096D687AB87C4
1172
+ 87B387C787C687BB87EF87F287E0880F880D87FE87F687F7880E87D288118816
1173
+ 8815882288218831883688398827883B8844884288528859885E8862886B8881
1174
+ 887E889E8875887D88B5887288828897889288AE889988A2888D88A488B088BF
1175
+ 88B188C388C488D488D888D988DD88F9890288FC88F488E888F28904890C890A
1176
+ 89138943891E8925892A892B89418944893B89368938894C891D8960895E0000
1177
+ EB
1178
+ 0000000000000000000000000000000000000000000000000000000000000000
1179
+ 0000000000000000000000000000000000000000000000000000000000000000
1180
+ 0000000000000000000000000000000000000000000000000000000000000000
1181
+ 0000000000000000000000000000000000000000000000000000000000000000
1182
+ 0000000000000000000000000000000000000000000000000000000000000000
1183
+ 0000000000000000000000000000000000000000000000000000000000000000
1184
+ 0000000000000000000000000000000000000000000000000000000000000000
1185
+ 0000000000000000000000000000000000000000000000000000000000000000
1186
+ 0000000000000000000000000000000000000000000000000000000000000000
1187
+ 0000000000000000000000000000000000000000000000000000000000000000
1188
+ 000089668964896D896A896F89748977897E89838988898A8993899889A189A9
1189
+ 89A689AC89AF89B289BA89BD89BF89C089DA89DC89DD89E789F489F88A038A16
1190
+ 8A108A0C8A1B8A1D8A258A368A418A5B8A528A468A488A7C8A6D8A6C8A628A85
1191
+ 8A828A848AA88AA18A918AA58AA68A9A8AA38AC48ACD8AC28ADA8AEB8AF38AE7
1192
+ 8AE48AF18B148AE08AE28AF78ADE8ADB8B0C8B078B1A8AE18B168B108B178B20
1193
+ 8B3397AB8B268B2B8B3E8B288B418B4C8B4F8B4E8B498B568B5B8B5A8B6B0000
1194
+ EC
1195
+ 0000000000000000000000000000000000000000000000000000000000000000
1196
+ 0000000000000000000000000000000000000000000000000000000000000000
1197
+ 0000000000000000000000000000000000000000000000000000000000000000
1198
+ 0000000000000000000000000000000000000000000000000000000000000000
1199
+ 0000000000000000000000000000000000000000000000000000000000000000
1200
+ 0000000000000000000000000000000000000000000000000000000000000000
1201
+ 0000000000000000000000000000000000000000000000000000000000000000
1202
+ 0000000000000000000000000000000000000000000000000000000000000000
1203
+ 0000000000000000000000000000000000000000000000000000000000000000
1204
+ 0000000000000000000000000000000000000000000000000000000000000000
1205
+ 00008B5F8B6C8B6F8B748B7D8B808B8C8B8E8B928B938B968B998B9A8C3A8C41
1206
+ 8C3F8C488C4C8C4E8C508C558C628C6C8C788C7A8C828C898C858C8A8C8D8C8E
1207
+ 8C948C7C8C98621D8CAD8CAA8CBD8CB28CB38CAE8CB68CC88CC18CE48CE38CDA
1208
+ 8CFD8CFA8CFB8D048D058D0A8D078D0F8D0D8D109F4E8D138CCD8D148D168D67
1209
+ 8D6D8D718D738D818D998DC28DBE8DBA8DCF8DDA8DD68DCC8DDB8DCB8DEA8DEB
1210
+ 8DDF8DE38DFC8E088E098DFF8E1D8E1E8E108E1F8E428E358E308E348E4A0000
1211
+ ED
1212
+ 0000000000000000000000000000000000000000000000000000000000000000
1213
+ 0000000000000000000000000000000000000000000000000000000000000000
1214
+ 0000000000000000000000000000000000000000000000000000000000000000
1215
+ 0000000000000000000000000000000000000000000000000000000000000000
1216
+ 0000000000000000000000000000000000000000000000000000000000000000
1217
+ 0000000000000000000000000000000000000000000000000000000000000000
1218
+ 0000000000000000000000000000000000000000000000000000000000000000
1219
+ 0000000000000000000000000000000000000000000000000000000000000000
1220
+ 0000000000000000000000000000000000000000000000000000000000000000
1221
+ 0000000000000000000000000000000000000000000000000000000000000000
1222
+ 00008E478E498E4C8E508E488E598E648E608E2A8E638E558E768E728E7C8E81
1223
+ 8E878E858E848E8B8E8A8E938E918E948E998EAA8EA18EAC8EB08EC68EB18EBE
1224
+ 8EC58EC88ECB8EDB8EE38EFC8EFB8EEB8EFE8F0A8F058F158F128F198F138F1C
1225
+ 8F1F8F1B8F0C8F268F338F3B8F398F458F428F3E8F4C8F498F468F4E8F578F5C
1226
+ 8F628F638F648F9C8F9F8FA38FAD8FAF8FB78FDA8FE58FE28FEA8FEF90878FF4
1227
+ 90058FF98FFA901190159021900D901E9016900B90279036903590398FF80000
1228
+ EE
1229
+ 0000000000000000000000000000000000000000000000000000000000000000
1230
+ 0000000000000000000000000000000000000000000000000000000000000000
1231
+ 0000000000000000000000000000000000000000000000000000000000000000
1232
+ 0000000000000000000000000000000000000000000000000000000000000000
1233
+ 0000000000000000000000000000000000000000000000000000000000000000
1234
+ 0000000000000000000000000000000000000000000000000000000000000000
1235
+ 0000000000000000000000000000000000000000000000000000000000000000
1236
+ 0000000000000000000000000000000000000000000000000000000000000000
1237
+ 0000000000000000000000000000000000000000000000000000000000000000
1238
+ 0000000000000000000000000000000000000000000000000000000000000000
1239
+ 0000904F905090519052900E9049903E90569058905E9068906F907696A89072
1240
+ 9082907D90819080908A9089908F90A890AF90B190B590E290E4624890DB9102
1241
+ 9112911991329130914A9156915891639165916991739172918B9189918291A2
1242
+ 91AB91AF91AA91B591B491BA91C091C191C991CB91D091D691DF91E191DB91FC
1243
+ 91F591F6921E91FF9214922C92159211925E925792459249926492489295923F
1244
+ 924B9250929C92969293929B925A92CF92B992B792E9930F92FA9344932E0000
1245
+ EF
1246
+ 0000000000000000000000000000000000000000000000000000000000000000
1247
+ 0000000000000000000000000000000000000000000000000000000000000000
1248
+ 0000000000000000000000000000000000000000000000000000000000000000
1249
+ 0000000000000000000000000000000000000000000000000000000000000000
1250
+ 0000000000000000000000000000000000000000000000000000000000000000
1251
+ 0000000000000000000000000000000000000000000000000000000000000000
1252
+ 0000000000000000000000000000000000000000000000000000000000000000
1253
+ 0000000000000000000000000000000000000000000000000000000000000000
1254
+ 0000000000000000000000000000000000000000000000000000000000000000
1255
+ 0000000000000000000000000000000000000000000000000000000000000000
1256
+ 000093199322931A9323933A9335933B935C9360937C936E935693B093AC93AD
1257
+ 939493B993D693D793E893E593D893C393DD93D093C893E4941A941494139403
1258
+ 940794109436942B94359421943A944194529444945B94609462945E946A9229
1259
+ 947094759477947D945A947C947E9481947F95829587958A9594959695989599
1260
+ 95A095A895A795AD95BC95BB95B995BE95CA6FF695C395CD95CC95D595D495D6
1261
+ 95DC95E195E595E296219628962E962F9642964C964F964B9677965C965E0000
1262
+ F0
1263
+ 0000000000000000000000000000000000000000000000000000000000000000
1264
+ 0000000000000000000000000000000000000000000000000000000000000000
1265
+ 0000000000000000000000000000000000000000000000000000000000000000
1266
+ 0000000000000000000000000000000000000000000000000000000000000000
1267
+ 0000000000000000000000000000000000000000000000000000000000000000
1268
+ 0000000000000000000000000000000000000000000000000000000000000000
1269
+ 0000000000000000000000000000000000000000000000000000000000000000
1270
+ 0000000000000000000000000000000000000000000000000000000000000000
1271
+ 0000000000000000000000000000000000000000000000000000000000000000
1272
+ 0000000000000000000000000000000000000000000000000000000000000000
1273
+ 0000965D965F96669672966C968D96989695969796AA96A796B196B296B096B4
1274
+ 96B696B896B996CE96CB96C996CD894D96DC970D96D596F99704970697089713
1275
+ 970E9711970F971697199724972A97309739973D973E97449746974897429749
1276
+ 975C976097649766976852D2976B977197799785977C9781977A9786978B978F
1277
+ 9790979C97A897A697A397B397B497C397C697C897CB97DC97ED9F4F97F27ADF
1278
+ 97F697F5980F980C9838982498219837983D9846984F984B986B986F98700000
1279
+ F1
1280
+ 0000000000000000000000000000000000000000000000000000000000000000
1281
+ 0000000000000000000000000000000000000000000000000000000000000000
1282
+ 0000000000000000000000000000000000000000000000000000000000000000
1283
+ 0000000000000000000000000000000000000000000000000000000000000000
1284
+ 0000000000000000000000000000000000000000000000000000000000000000
1285
+ 0000000000000000000000000000000000000000000000000000000000000000
1286
+ 0000000000000000000000000000000000000000000000000000000000000000
1287
+ 0000000000000000000000000000000000000000000000000000000000000000
1288
+ 0000000000000000000000000000000000000000000000000000000000000000
1289
+ 0000000000000000000000000000000000000000000000000000000000000000
1290
+ 000098719874987398AA98AF98B198B698C498C398C698E998EB990399099912
1291
+ 991499189921991D991E99249920992C992E993D993E9942994999459950994B
1292
+ 99519952994C99559997999899A599AD99AE99BC99DF99DB99DD99D899D199ED
1293
+ 99EE99F199F299FB99F89A019A0F9A0599E29A199A2B9A379A459A429A409A43
1294
+ 9A3E9A559A4D9A5B9A579A5F9A629A659A649A699A6B9A6A9AAD9AB09ABC9AC0
1295
+ 9ACF9AD19AD39AD49ADE9ADF9AE29AE39AE69AEF9AEB9AEE9AF49AF19AF70000
1296
+ F2
1297
+ 0000000000000000000000000000000000000000000000000000000000000000
1298
+ 0000000000000000000000000000000000000000000000000000000000000000
1299
+ 0000000000000000000000000000000000000000000000000000000000000000
1300
+ 0000000000000000000000000000000000000000000000000000000000000000
1301
+ 0000000000000000000000000000000000000000000000000000000000000000
1302
+ 0000000000000000000000000000000000000000000000000000000000000000
1303
+ 0000000000000000000000000000000000000000000000000000000000000000
1304
+ 0000000000000000000000000000000000000000000000000000000000000000
1305
+ 0000000000000000000000000000000000000000000000000000000000000000
1306
+ 0000000000000000000000000000000000000000000000000000000000000000
1307
+ 00009AFB9B069B189B1A9B1F9B229B239B259B279B289B299B2A9B2E9B2F9B32
1308
+ 9B449B439B4F9B4D9B4E9B519B589B749B939B839B919B969B979B9F9BA09BA8
1309
+ 9BB49BC09BCA9BB99BC69BCF9BD19BD29BE39BE29BE49BD49BE19C3A9BF29BF1
1310
+ 9BF09C159C149C099C139C0C9C069C089C129C0A9C049C2E9C1B9C259C249C21
1311
+ 9C309C479C329C469C3E9C5A9C609C679C769C789CE79CEC9CF09D099D089CEB
1312
+ 9D039D069D2A9D269DAF9D239D1F9D449D159D129D419D3F9D3E9D469D480000
1313
+ F3
1314
+ 0000000000000000000000000000000000000000000000000000000000000000
1315
+ 0000000000000000000000000000000000000000000000000000000000000000
1316
+ 0000000000000000000000000000000000000000000000000000000000000000
1317
+ 0000000000000000000000000000000000000000000000000000000000000000
1318
+ 0000000000000000000000000000000000000000000000000000000000000000
1319
+ 0000000000000000000000000000000000000000000000000000000000000000
1320
+ 0000000000000000000000000000000000000000000000000000000000000000
1321
+ 0000000000000000000000000000000000000000000000000000000000000000
1322
+ 0000000000000000000000000000000000000000000000000000000000000000
1323
+ 0000000000000000000000000000000000000000000000000000000000000000
1324
+ 00009D5D9D5E9D649D519D509D599D729D899D879DAB9D6F9D7A9D9A9DA49DA9
1325
+ 9DB29DC49DC19DBB9DB89DBA9DC69DCF9DC29DD99DD39DF89DE69DED9DEF9DFD
1326
+ 9E1A9E1B9E1E9E759E799E7D9E819E889E8B9E8C9E929E959E919E9D9EA59EA9
1327
+ 9EB89EAA9EAD97619ECC9ECE9ECF9ED09ED49EDC9EDE9EDD9EE09EE59EE89EEF
1328
+ 9EF49EF69EF79EF99EFB9EFC9EFD9F079F0876B79F159F219F2C9F3E9F4A9F52
1329
+ 9F549F639F5F9F609F619F669F679F6C9F6A9F779F729F769F959F9C9FA00000
1330
+ F4
1331
+ 0000000000000000000000000000000000000000000000000000000000000000
1332
+ 0000000000000000000000000000000000000000000000000000000000000000
1333
+ 0000000000000000000000000000000000000000000000000000000000000000
1334
+ 0000000000000000000000000000000000000000000000000000000000000000
1335
+ 0000000000000000000000000000000000000000000000000000000000000000
1336
+ 0000000000000000000000000000000000000000000000000000000000000000
1337
+ 0000000000000000000000000000000000000000000000000000000000000000
1338
+ 0000000000000000000000000000000000000000000000000000000000000000
1339
+ 0000000000000000000000000000000000000000000000000000000000000000
1340
+ 0000000000000000000000000000000000000000000000000000000000000000
1341
+ 0000582F69C79059746451DC7199000000000000000000000000000000000000
1342
+ 0000000000000000000000000000000000000000000000000000000000000000
1343
+ 0000000000000000000000000000000000000000000000000000000000000000
1344
+ 0000000000000000000000000000000000000000000000000000000000000000
1345
+ 0000000000000000000000000000000000000000000000000000000000000000
1346
+ 0000000000000000000000000000000000000000000000000000000000000000
1347
+ R
1348
+ A1C1 301C FF5E
1349
+ A1C2 2016 2225
1350
+ A1DD 2212 FF0D
1351
+ A1F1 00A2 FFE0
1352
+ A1F2 00A3 FFE1
1353
+ A2CC 00AC FFE2
parrot/lib/tcl8.6/encoding/gb12345.enc ADDED
@@ -0,0 +1,1414 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding file: gb12345, double-byte
2
+ D
3
+ 233F 0 83
4
+ 21
5
+ 0000000000000000000000000000000000000000000000000000000000000000
6
+ 0000000000000000000000000000000000000000000000000000000000000000
7
+ 000030003001300230FB02C902C700A8300330052015FF5E2225202620182019
8
+ 201C201D3014301530083009300A300B300C300D300E300F3016301730103011
9
+ 00B100D700F72236222722282211220F222A222922082237221A22A522252220
10
+ 23122299222B222E2261224C2248223D221D2260226E226F22642265221E2235
11
+ 22342642264000B0203220332103FF0400A4FFE0FFE1203000A7211626062605
12
+ 25CB25CF25CE25C725C625A125A025B325B2203B219221902191219330130000
13
+ 0000000000000000000000000000000000000000000000000000000000000000
14
+ 0000000000000000000000000000000000000000000000000000000000000000
15
+ 0000000000000000000000000000000000000000000000000000000000000000
16
+ 0000000000000000000000000000000000000000000000000000000000000000
17
+ 0000000000000000000000000000000000000000000000000000000000000000
18
+ 0000000000000000000000000000000000000000000000000000000000000000
19
+ 0000000000000000000000000000000000000000000000000000000000000000
20
+ 0000000000000000000000000000000000000000000000000000000000000000
21
+ 22
22
+ 0000000000000000000000000000000000000000000000000000000000000000
23
+ 0000000000000000000000000000000000000000000000000000000000000000
24
+ 0000000000000000000000000000000000000000000000000000000000000000
25
+ 000024882489248A248B248C248D248E248F2490249124922493249424952496
26
+ 249724982499249A249B247424752476247724782479247A247B247C247D247E
27
+ 247F248024812482248324842485248624872460246124622463246424652466
28
+ 2467246824690000000032203221322232233224322532263227322832290000
29
+ 00002160216121622163216421652166216721682169216A216B000000000000
30
+ 0000000000000000000000000000000000000000000000000000000000000000
31
+ 0000000000000000000000000000000000000000000000000000000000000000
32
+ 0000000000000000000000000000000000000000000000000000000000000000
33
+ 0000000000000000000000000000000000000000000000000000000000000000
34
+ 0000000000000000000000000000000000000000000000000000000000000000
35
+ 0000000000000000000000000000000000000000000000000000000000000000
36
+ 0000000000000000000000000000000000000000000000000000000000000000
37
+ 0000000000000000000000000000000000000000000000000000000000000000
38
+ 23
39
+ 0000000000000000000000000000000000000000000000000000000000000000
40
+ 0000000000000000000000000000000000000000000000000000000000000000
41
+ 0000FF01FF02FF03FFE5FF05FF06FF07FF08FF09FF0AFF0BFF0CFF0DFF0EFF0F
42
+ FF10FF11FF12FF13FF14FF15FF16FF17FF18FF19FF1AFF1BFF1CFF1DFF1EFF1F
43
+ FF20FF21FF22FF23FF24FF25FF26FF27FF28FF29FF2AFF2BFF2CFF2DFF2EFF2F
44
+ FF30FF31FF32FF33FF34FF35FF36FF37FF38FF39FF3AFF3BFF3CFF3DFF3EFF3F
45
+ FF40FF41FF42FF43FF44FF45FF46FF47FF48FF49FF4AFF4BFF4CFF4DFF4EFF4F
46
+ FF50FF51FF52FF53FF54FF55FF56FF57FF58FF59FF5AFF5BFF5CFF5DFFE30000
47
+ 0000000000000000000000000000000000000000000000000000000000000000
48
+ 0000000000000000000000000000000000000000000000000000000000000000
49
+ 0000000000000000000000000000000000000000000000000000000000000000
50
+ 0000000000000000000000000000000000000000000000000000000000000000
51
+ 0000000000000000000000000000000000000000000000000000000000000000
52
+ 0000000000000000000000000000000000000000000000000000000000000000
53
+ 0000000000000000000000000000000000000000000000000000000000000000
54
+ 0000000000000000000000000000000000000000000000000000000000000000
55
+ 24
56
+ 0000000000000000000000000000000000000000000000000000000000000000
57
+ 0000000000000000000000000000000000000000000000000000000000000000
58
+ 0000304130423043304430453046304730483049304A304B304C304D304E304F
59
+ 3050305130523053305430553056305730583059305A305B305C305D305E305F
60
+ 3060306130623063306430653066306730683069306A306B306C306D306E306F
61
+ 3070307130723073307430753076307730783079307A307B307C307D307E307F
62
+ 3080308130823083308430853086308730883089308A308B308C308D308E308F
63
+ 3090309130923093000000000000000000000000000000000000000000000000
64
+ 0000000000000000000000000000000000000000000000000000000000000000
65
+ 0000000000000000000000000000000000000000000000000000000000000000
66
+ 0000000000000000000000000000000000000000000000000000000000000000
67
+ 0000000000000000000000000000000000000000000000000000000000000000
68
+ 0000000000000000000000000000000000000000000000000000000000000000
69
+ 0000000000000000000000000000000000000000000000000000000000000000
70
+ 0000000000000000000000000000000000000000000000000000000000000000
71
+ 0000000000000000000000000000000000000000000000000000000000000000
72
+ 25
73
+ 0000000000000000000000000000000000000000000000000000000000000000
74
+ 0000000000000000000000000000000000000000000000000000000000000000
75
+ 000030A130A230A330A430A530A630A730A830A930AA30AB30AC30AD30AE30AF
76
+ 30B030B130B230B330B430B530B630B730B830B930BA30BB30BC30BD30BE30BF
77
+ 30C030C130C230C330C430C530C630C730C830C930CA30CB30CC30CD30CE30CF
78
+ 30D030D130D230D330D430D530D630D730D830D930DA30DB30DC30DD30DE30DF
79
+ 30E030E130E230E330E430E530E630E730E830E930EA30EB30EC30ED30EE30EF
80
+ 30F030F130F230F330F430F530F6000000000000000000000000000000000000
81
+ 0000000000000000000000000000000000000000000000000000000000000000
82
+ 0000000000000000000000000000000000000000000000000000000000000000
83
+ 0000000000000000000000000000000000000000000000000000000000000000
84
+ 0000000000000000000000000000000000000000000000000000000000000000
85
+ 0000000000000000000000000000000000000000000000000000000000000000
86
+ 0000000000000000000000000000000000000000000000000000000000000000
87
+ 0000000000000000000000000000000000000000000000000000000000000000
88
+ 0000000000000000000000000000000000000000000000000000000000000000
89
+ 26
90
+ 0000000000000000000000000000000000000000000000000000000000000000
91
+ 0000000000000000000000000000000000000000000000000000000000000000
92
+ 0000039103920393039403950396039703980399039A039B039C039D039E039F
93
+ 03A003A103A303A403A503A603A703A803A90000000000000000000000000000
94
+ 000003B103B203B303B403B503B603B703B803B903BA03BB03BC03BD03BE03BF
95
+ 03C003C103C303C403C503C603C703C803C90000000000000000000000000000
96
+ 0000000000000000000000000000000000000000000000000000000000000000
97
+ 0000000000000000000000000000000000000000000000000000000000000000
98
+ 0000000000000000000000000000000000000000000000000000000000000000
99
+ 0000000000000000000000000000000000000000000000000000000000000000
100
+ 0000000000000000000000000000000000000000000000000000000000000000
101
+ 0000000000000000000000000000000000000000000000000000000000000000
102
+ 0000000000000000000000000000000000000000000000000000000000000000
103
+ 0000000000000000000000000000000000000000000000000000000000000000
104
+ 0000000000000000000000000000000000000000000000000000000000000000
105
+ 0000000000000000000000000000000000000000000000000000000000000000
106
+ 27
107
+ 0000000000000000000000000000000000000000000000000000000000000000
108
+ 0000000000000000000000000000000000000000000000000000000000000000
109
+ 000004100411041204130414041504010416041704180419041A041B041C041D
110
+ 041E041F0420042104220423042404250426042704280429042A042B042C042D
111
+ 042E042F00000000000000000000000000000000000000000000000000000000
112
+ 000004300431043204330434043504510436043704380439043A043B043C043D
113
+ 043E043F0440044104420443044404450446044704480449044A044B044C044D
114
+ 044E044F00000000000000000000000000000000000000000000000000000000
115
+ 0000000000000000000000000000000000000000000000000000000000000000
116
+ 0000000000000000000000000000000000000000000000000000000000000000
117
+ 0000000000000000000000000000000000000000000000000000000000000000
118
+ 0000000000000000000000000000000000000000000000000000000000000000
119
+ 0000000000000000000000000000000000000000000000000000000000000000
120
+ 0000000000000000000000000000000000000000000000000000000000000000
121
+ 0000000000000000000000000000000000000000000000000000000000000000
122
+ 0000000000000000000000000000000000000000000000000000000000000000
123
+ 28
124
+ 0000000000000000000000000000000000000000000000000000000000000000
125
+ 0000000000000000000000000000000000000000000000000000000000000000
126
+ 0000010100E101CE00E0011300E9011B00E8012B00ED01D000EC014D00F301D2
127
+ 00F2016B00FA01D400F901D601D801DA01DC00FC00EA00000000000000000000
128
+ 0000000000000000000031053106310731083109310A310B310C310D310E310F
129
+ 3110311131123113311431153116311731183119311A311B311C311D311E311F
130
+ 3120312131223123312431253126312731283129000000000000000000000000
131
+ 0000000000000000000000000000000000000000000000000000000000000000
132
+ 0000000000000000000000000000000000000000000000000000000000000000
133
+ 0000000000000000000000000000000000000000000000000000000000000000
134
+ 0000000000000000000000000000000000000000000000000000000000000000
135
+ 0000000000000000000000000000000000000000000000000000000000000000
136
+ 0000000000000000000000000000000000000000000000000000000000000000
137
+ 0000000000000000000000000000000000000000000000000000000000000000
138
+ 0000000000000000000000000000000000000000000000000000000000000000
139
+ 0000000000000000000000000000000000000000000000000000000000000000
140
+ 29
141
+ 0000000000000000000000000000000000000000000000000000000000000000
142
+ 0000000000000000000000000000000000000000000000000000000000000000
143
+ 00000000000000002500250125022503250425052506250725082509250A250B
144
+ 250C250D250E250F2510251125122513251425152516251725182519251A251B
145
+ 251C251D251E251F2520252125222523252425252526252725282529252A252B
146
+ 252C252D252E252F2530253125322533253425352536253725382539253A253B
147
+ 253C253D253E253F2540254125422543254425452546254725482549254A254B
148
+ 0000000000000000000000000000000000000000000000000000000000000000
149
+ 0000000000000000000000000000000000000000000000000000000000000000
150
+ 0000000000000000000000000000000000000000000000000000000000000000
151
+ 0000000000000000000000000000000000000000000000000000000000000000
152
+ 0000000000000000000000000000000000000000000000000000000000000000
153
+ 0000000000000000000000000000000000000000000000000000000000000000
154
+ 0000000000000000000000000000000000000000000000000000000000000000
155
+ 0000000000000000000000000000000000000000000000000000000000000000
156
+ 0000000000000000000000000000000000000000000000000000000000000000
157
+ 30
158
+ 0000000000000000000000000000000000000000000000000000000000000000
159
+ 0000000000000000000000000000000000000000000000000000000000000000
160
+ 0000554A963F57C3632854CE550954C0769A764C85F977EE827E7919611B9698
161
+ 978D6C285B894FFA630966975CB880FA68489AAF660276CE51F9655671AC7FF1
162
+ 895650B2596561CA6FB382AD634C625253ED54277B06516B75A45DF462D48DCB
163
+ 9776628A801958E997387F777238767D67CF767E64FA4F70655762DC7A176591
164
+ 73ED642C6273822C9812677F7248626E62CC4F3474E3534A8FA67D4690A65E6B
165
+ 6886699C81807D8168D278C5868C938A508D8B1782DE80DE5305891252650000
166
+ 0000000000000000000000000000000000000000000000000000000000000000
167
+ 0000000000000000000000000000000000000000000000000000000000000000
168
+ 0000000000000000000000000000000000000000000000000000000000000000
169
+ 0000000000000000000000000000000000000000000000000000000000000000
170
+ 0000000000000000000000000000000000000000000000000000000000000000
171
+ 0000000000000000000000000000000000000000000000000000000000000000
172
+ 0000000000000000000000000000000000000000000000000000000000000000
173
+ 0000000000000000000000000000000000000000000000000000000000000000
174
+ 31
175
+ 0000000000000000000000000000000000000000000000000000000000000000
176
+ 0000000000000000000000000000000000000000000000000000000000000000
177
+ 0000858496F94FDD582198FD5BF662B1583166B48C799B917206676F789160B2
178
+ 535153178F2980CC8C9D92C7500D72FD5099618A711988AB595482EF672C7B28
179
+ 5D297DB3752D6CF58E668FF8903C9F3B6BD491197B465F7C78A784D6853D7562
180
+ 65836BD65E635E8775F99589655D5F0A5FC58F9F58C181C2907F965B97AD908A
181
+ 7DE88CB662414FBF8B8A535E8FA88FAF8FAE904D6A195F6A819888689C49618B
182
+ 522B765F5F6C658C70156FF18CD364EF517551B067C44E1979C9990570B30000
183
+ 0000000000000000000000000000000000000000000000000000000000000000
184
+ 0000000000000000000000000000000000000000000000000000000000000000
185
+ 0000000000000000000000000000000000000000000000000000000000000000
186
+ 0000000000000000000000000000000000000000000000000000000000000000
187
+ 0000000000000000000000000000000000000000000000000000000000000000
188
+ 0000000000000000000000000000000000000000000000000000000000000000
189
+ 0000000000000000000000000000000000000000000000000000000000000000
190
+ 0000000000000000000000000000000000000000000000000000000000000000
191
+ 32
192
+ 0000000000000000000000000000000000000000000000000000000000000000
193
+ 0000000000000000000000000000000000000000000000000000000000000000
194
+ 000075C55E7673BB83E064AD64A592626CE2535A52C3640F92517B944F2F5E1B
195
+ 82368116818A6E246CCA99C16355535C54FA88DC57E04E0D5E036B657C3F90E8
196
+ 601664E6731C88C16750624D8CA1776C8E2991C75F6983DC8521991053C38836
197
+ 6B98615A615871E684BC825950096EC485CF64CD7CD969FD66F9834953A07B56
198
+ 5074518C6E2C5C648E6D63D253C9832C833667E578B4643D5BDF5C945DEE8A6B
199
+ 62C667F48C7A6519647B87EC995E8B927E8F93DF752395E1986B660C73160000
200
+ 0000000000000000000000000000000000000000000000000000000000000000
201
+ 0000000000000000000000000000000000000000000000000000000000000000
202
+ 0000000000000000000000000000000000000000000000000000000000000000
203
+ 0000000000000000000000000000000000000000000000000000000000000000
204
+ 0000000000000000000000000000000000000000000000000000000000000000
205
+ 0000000000000000000000000000000000000000000000000000000000000000
206
+ 0000000000000000000000000000000000000000000000000000000000000000
207
+ 0000000000000000000000000000000000000000000000000000000000000000
208
+ 33
209
+ 0000000000000000000000000000000000000000000000000000000000000000
210
+ 0000000000000000000000000000000000000000000000000000000000000000
211
+ 0000583456175E389577511F81785EE0655E66A2553150218D8562849214671D
212
+ 56326F6E5DE2543570928ECA626F64A463A35FB96F8890F481E38FB058756668
213
+ 5FF16C8996738D81896F64917A3157CE6A59621054484E587A0B61F26F848AA0
214
+ 627F901E9A0179E4540375F4630153196C6090725F1B99B3803B9F524F885C3A
215
+ 8D647FC565A571BE5145885D87F25D075BF562BD916C75878E8A7A2061017C4C
216
+ 4EC77DA27785919C81ED521D51FA6A7153A88E8792E496DB6EC19664695A0000
217
+ 0000000000000000000000000000000000000000000000000000000000000000
218
+ 0000000000000000000000000000000000000000000000000000000000000000
219
+ 0000000000000000000000000000000000000000000000000000000000000000
220
+ 0000000000000000000000000000000000000000000000000000000000000000
221
+ 0000000000000000000000000000000000000000000000000000000000000000
222
+ 0000000000000000000000000000000000000000000000000000000000000000
223
+ 0000000000000000000000000000000000000000000000000000000000000000
224
+ 0000000000000000000000000000000000000000000000000000000000000000
225
+ 34
226
+ 0000000000000000000000000000000000000000000000000000000000000000
227
+ 0000000000000000000000000000000000000000000000000000000000000000
228
+ 0000790E513277D7641089F8865563E35DDD7A7F693D50B3823955984E327621
229
+ 7A975E625E8A95D652755439708A6376931857826625693F918755076DF37D14
230
+ 882262337DBD75B5832878C196CC8FAD614874F78A5E6B64523A8CDC6B218070
231
+ 847156F153065F9E53E251D17C97918B7C074FC38EA57BE17AC464675D1450AC
232
+ 810676017CB96DEC7FE067515B585BF878CB64AE641363AA632B932F642D9054
233
+ 7B5476296253592754466B7950A362345E366B864EE38CB8888B5F85902E0000
234
+ 0000000000000000000000000000000000000000000000000000000000000000
235
+ 0000000000000000000000000000000000000000000000000000000000000000
236
+ 0000000000000000000000000000000000000000000000000000000000000000
237
+ 0000000000000000000000000000000000000000000000000000000000000000
238
+ 0000000000000000000000000000000000000000000000000000000000000000
239
+ 0000000000000000000000000000000000000000000000000000000000000000
240
+ 0000000000000000000000000000000000000000000000000000000000000000
241
+ 0000000000000000000000000000000000000000000000000000000000000000
242
+ 35
243
+ 0000000000000000000000000000000000000000000000000000000000000000
244
+ 0000000000000000000000000000000000000000000000000000000000000000
245
+ 00006020803D64D44E3955AE913264A381BD65E66C2E4F46619A6DE18A955F48
246
+ 86CB757664CB9EE885696A94520064178E4850125CF679B15C0E52307A3B60BC
247
+ 905376D75FB75F9776848E6C71C8767B7B4977AA51F3912758244F4E6EF48FEA
248
+ 65757B1B72C46ECC7FDF5AE162B55E95573084827B2C5E1D5F1F905E7DE0985B
249
+ 63826EC778989EDE5178975B588A96FB4F4375385E9760E659606FB16BBF7889
250
+ 53FC96D551CB52016389540A91E38ABF8DCC7239789F87768FED8ADC758A0000
251
+ 0000000000000000000000000000000000000000000000000000000000000000
252
+ 0000000000000000000000000000000000000000000000000000000000000000
253
+ 0000000000000000000000000000000000000000000000000000000000000000
254
+ 0000000000000000000000000000000000000000000000000000000000000000
255
+ 0000000000000000000000000000000000000000000000000000000000000000
256
+ 0000000000000000000000000000000000000000000000000000000000000000
257
+ 0000000000000000000000000000000000000000000000000000000000000000
258
+ 0000000000000000000000000000000000000000000000000000000000000000
259
+ 36
260
+ 0000000000000000000000000000000000000000000000000000000000000000
261
+ 0000000000000000000000000000000000000000000000000000000000000000
262
+ 00004E0176EF53EE91D898029F0E93205B9A8A024E22677151AC846361C252D5
263
+ 68DF4F97606B51CD6D1E515C62969B2596618C46901775D890FD77636BD272A2
264
+ 73688B80583577798CED675C934D809A5EA66E2159927AEF77ED935B6BB565B7
265
+ 7DDE58065151968A5C0D58A956788E726566981356E4920D76FE9041638754C6
266
+ 591A596A579B8EB267358DFA8235524160F058AE86FE5CE89D5D4FC4984D8A1B
267
+ 5A2560E15384627C904F910299136069800C51528033723E990C6D314E8C0000
268
+ 0000000000000000000000000000000000000000000000000000000000000000
269
+ 0000000000000000000000000000000000000000000000000000000000000000
270
+ 0000000000000000000000000000000000000000000000000000000000000000
271
+ 0000000000000000000000000000000000000000000000000000000000000000
272
+ 0000000000000000000000000000000000000000000000000000000000000000
273
+ 0000000000000000000000000000000000000000000000000000000000000000
274
+ 0000000000000000000000000000000000000000000000000000000000000000
275
+ 0000000000000000000000000000000000000000000000000000000000000000
276
+ 37
277
+ 0000000000000000000000000000000000000000000000000000000000000000
278
+ 0000000000000000000000000000000000000000000000000000000000000000
279
+ 00008CB3767C7F707B4F4F104E4F95A56CD573D085E95E06756A7FFB6A0A792C
280
+ 91E97E4151E1716953CD8FD47BC48CA972AF98EF6CDB574A82B365B980AA623F
281
+ 963259A84EFF8A2A7D21653E83F2975E556198DB80A5532A8AB9542080BA5EE2
282
+ 6CB88CBB82AC915A54296C1B52067D1B58B3711A6C7E7C89596E4EFD5FFF61A4
283
+ 7CDE8C505C01695387025CF092D298A8760B70FD902299AE7E2B8AF759499CF3
284
+ 4F5B5426592B6577819A5B75627662C28F3B5E456C1F7B264F0F4FD8670D0000
285
+ 0000000000000000000000000000000000000000000000000000000000000000
286
+ 0000000000000000000000000000000000000000000000000000000000000000
287
+ 0000000000000000000000000000000000000000000000000000000000000000
288
+ 0000000000000000000000000000000000000000000000000000000000000000
289
+ 0000000000000000000000000000000000000000000000000000000000000000
290
+ 0000000000000000000000000000000000000000000000000000000000000000
291
+ 0000000000000000000000000000000000000000000000000000000000000000
292
+ 0000000000000000000000000000000000000000000000000000000000000000
293
+ 38
294
+ 0000000000000000000000000000000000000000000000000000000000000000
295
+ 0000000000000000000000000000000000000000000000000000000000000000
296
+ 00006D6E6DAA798F88B15F17752B64AB8F144FEF91DC65A7812F81515E9C8150
297
+ 8D74526F89868CE65FA950854ED8961C723681798CA05BCC8A0396445A667E1B
298
+ 54905676560E8A7265396982922384CB6E895E797518674667D17AFF809D8D95
299
+ 611F79C665628D1B5CA1525B92FC7F38809B7DB15D176E2F67607BD9768B9AD8
300
+ 818F7F947CD5641E93AC7A3F544A54E56B4C64F162089D3F80F3759952729769
301
+ 845B683C86E495A39694927B500B54047D6668398DDF801566F45E9A7FB90000
302
+ 0000000000000000000000000000000000000000000000000000000000000000
303
+ 0000000000000000000000000000000000000000000000000000000000000000
304
+ 0000000000000000000000000000000000000000000000000000000000000000
305
+ 0000000000000000000000000000000000000000000000000000000000000000
306
+ 0000000000000000000000000000000000000000000000000000000000000000
307
+ 0000000000000000000000000000000000000000000000000000000000000000
308
+ 0000000000000000000000000000000000000000000000000000000000000000
309
+ 0000000000000000000000000000000000000000000000000000000000000000
310
+ 39
311
+ 0000000000000000000000000000000000000000000000000000000000000000
312
+ 0000000000000000000000000000000000000000000000000000000000000000
313
+ 000057C2803F68975DE5653B529F606D9F944F9B8EAC516C5BAB5F13978F6C5E
314
+ 62F18CA25171920E52FE6E9D82DF72D757A269CB8CFC591F8F9C83C754957B8D
315
+ 4F306CBD5B6459D19F1353E488319AA88C3780A16545986756FA96C7522E74DC
316
+ 526E5BE1630289024E5662D0602A68FA95DC5B9851A089C07BA199287F506163
317
+ 704C8CAB51495EE3901B7470898F572D78456B789F9C95A88ECC9B3C8A6D7678
318
+ 68426AC38DEA8CB4528A8F256EDA68CD934B90ED570B679C88F9904E54C80000
319
+ 0000000000000000000000000000000000000000000000000000000000000000
320
+ 0000000000000000000000000000000000000000000000000000000000000000
321
+ 0000000000000000000000000000000000000000000000000000000000000000
322
+ 0000000000000000000000000000000000000000000000000000000000000000
323
+ 0000000000000000000000000000000000000000000000000000000000000000
324
+ 0000000000000000000000000000000000000000000000000000000000000000
325
+ 0000000000000000000000000000000000000000000000000000000000000000
326
+ 0000000000000000000000000000000000000000000000000000000000000000
327
+ 3A
328
+ 0000000000000000000000000000000000000000000000000000000000000000
329
+ 0000000000000000000000000000000000000000000000000000000000000000
330
+ 00009AB85B696D776C264EA55BB399ED916361A890AF97D3542B6DB55BD251FD
331
+ 558A7F557FF064BC634D65F161BE608D710A6C576F22592F676D822A58D5568E
332
+ 8C6A6BEB90DD597D8017865F6D695475559D837783CF683879BE548C4F555408
333
+ 76D28C8995A16CB36DB88D6B89109DB48CC0563F9ED175D55F8872E0606854FC
334
+ 4EA86A2A886160528F5F54C470D886799D3B6D2A5B8F5F187D0555894FAF7334
335
+ 543C539A50195F8C547C4E4E5FFD745A58FA846B80E1877472D07CCA6E560000
336
+ 0000000000000000000000000000000000000000000000000000000000000000
337
+ 0000000000000000000000000000000000000000000000000000000000000000
338
+ 0000000000000000000000000000000000000000000000000000000000000000
339
+ 0000000000000000000000000000000000000000000000000000000000000000
340
+ 0000000000000000000000000000000000000000000000000000000000000000
341
+ 0000000000000000000000000000000000000000000000000000000000000000
342
+ 0000000000000000000000000000000000000000000000000000000000000000
343
+ 0000000000000000000000000000000000000000000000000000000000000000
344
+ 3B
345
+ 0000000000000000000000000000000000000000000000000000000000000000
346
+ 0000000000000000000000000000000000000000000000000000000000000000
347
+ 00005F27864E552C8B774E926EEC623782B1562983EF733E6ED1756B52835316
348
+ 8A7169D05F8A61F76DEE58DE6B6174B0685390847DE963DB60A3559A76138C62
349
+ 71656E195BA65E7B8352614C9EC478FA87577C27768751F060F6714C66435E4C
350
+ 604D8B0A707063EE8F1D5FBD606286D456DE6BC160946167534960E066668CC4
351
+ 7A62670371F4532F8AF18AA87E6A8477660F5A5A9B426E3E6DF78C416D3B4F19
352
+ 706B7372621660D1970D8CA8798D64CA573E57FA6A5F75787A3D7A4D7B950000
353
+ 0000000000000000000000000000000000000000000000000000000000000000
354
+ 0000000000000000000000000000000000000000000000000000000000000000
355
+ 0000000000000000000000000000000000000000000000000000000000000000
356
+ 0000000000000000000000000000000000000000000000000000000000000000
357
+ 0000000000000000000000000000000000000000000000000000000000000000
358
+ 0000000000000000000000000000000000000000000000000000000000000000
359
+ 0000000000000000000000000000000000000000000000000000000000000000
360
+ 0000000000000000000000000000000000000000000000000000000000000000
361
+ 3C
362
+ 0000000000000000000000000000000000000000000000000000000000000000
363
+ 0000000000000000000000000000000000000000000000000000000000000000
364
+ 0000808C99518FF96FC08B4F9DC459EC7E3E7DDD5409697568D88F2F7C4D96C6
365
+ 53CA602575BE6C7253735AC97D1A64E05E7E810A5DF1858A628051805B634F0E
366
+ 796D529160B86FDF5BC45BC28A088A1865E25FCC969B59937E7C7D00560967B7
367
+ 593E4F735BB652A083A298308CC87532924050477A3C50F967B699D55AC16BB2
368
+ 76E358055C167B8B9593714E517C80A9827159787DD87E6D6AA267EC78B19E7C
369
+ 63C064BF7C215109526A51CF85A66ABB94528E108CE4898B93757BAD4EF60000
370
+ 0000000000000000000000000000000000000000000000000000000000000000
371
+ 0000000000000000000000000000000000000000000000000000000000000000
372
+ 0000000000000000000000000000000000000000000000000000000000000000
373
+ 0000000000000000000000000000000000000000000000000000000000000000
374
+ 0000000000000000000000000000000000000000000000000000000000000000
375
+ 0000000000000000000000000000000000000000000000000000000000000000
376
+ 0000000000000000000000000000000000000000000000000000000000000000
377
+ 0000000000000000000000000000000000000000000000000000000000000000
378
+ 3D
379
+ 0000000000000000000000000000000000000000000000000000000000000000
380
+ 0000000000000000000000000000000000000000000000000000000000000000
381
+ 000050658266528D991E6F386FFA6F975EFA50F559DC5C076F3F6C5F75868523
382
+ 69F3596C8B1B532091AC964D854969127901712681A04EA490CA6F869A555B0C
383
+ 56BC652A927877EF50E5811A72E189D299037E737D5E527F655991758F4E8F03
384
+ 53EB7A9663ED63A5768679F88857968E622A52AB7BC0685467706377776B7AED
385
+ 6F547D5089E359D0621285C982A5754C501F4ECB75A58AA15C4A5DFE7B4B65A4
386
+ 91D14ECA6D25895F7DCA932650C58B3990329773664979818FD171FC6D780000
387
+ 0000000000000000000000000000000000000000000000000000000000000000
388
+ 0000000000000000000000000000000000000000000000000000000000000000
389
+ 0000000000000000000000000000000000000000000000000000000000000000
390
+ 0000000000000000000000000000000000000000000000000000000000000000
391
+ 0000000000000000000000000000000000000000000000000000000000000000
392
+ 0000000000000000000000000000000000000000000000000000000000000000
393
+ 0000000000000000000000000000000000000000000000000000000000000000
394
+ 0000000000000000000000000000000000000000000000000000000000000000
395
+ 3E
396
+ 0000000000000000000000000000000000000000000000000000000000000000
397
+ 0000000000000000000000000000000000000000000000000000000000000000
398
+ 000076E152C1834651628396775B66769BE84EAC9A5A7CBE7CB37D934E958B66
399
+ 666F9838975C5883656C93E15F9175D997567ADF7AF651C870AF7A9863EA7A76
400
+ 7CFE739697ED4E4570784E5D915253A96551820A81FC8205548E5C31759A97A0
401
+ 62D872D975BD5C4599D283CA5C40548077E982096CAE805A62D264DA5DE85177
402
+ 8DDD8E1E92F84FF153E561FC70AC528763509D515A1F5026773753777D796485
403
+ 652B628963985014723589BA51B38A237D76574783CC921E8ECD541B5CFB0000
404
+ 0000000000000000000000000000000000000000000000000000000000000000
405
+ 0000000000000000000000000000000000000000000000000000000000000000
406
+ 0000000000000000000000000000000000000000000000000000000000000000
407
+ 0000000000000000000000000000000000000000000000000000000000000000
408
+ 0000000000000000000000000000000000000000000000000000000000000000
409
+ 0000000000000000000000000000000000000000000000000000000000000000
410
+ 0000000000000000000000000000000000000000000000000000000000000000
411
+ 0000000000000000000000000000000000000000000000000000000000000000
412
+ 3F
413
+ 0000000000000000000000000000000000000000000000000000000000000000
414
+ 0000000000000000000000000000000000000000000000000000000000000000
415
+ 00004FCA7AE36D5A90E199FF55805496536154AF958B63E9697751F16168520A
416
+ 582A52D8574E780D770B5EB761777CE0625B62974EA27095800362F770E49760
417
+ 577782DB67EF68F578D5984679D16BBB54B353EF6E34514B523B5BA28AB280AF
418
+ 554358BE61C75751542D7A7A60505B5463A7647353E362635BC767AF54ED7A9F
419
+ 82E691775EAB89328A8757AE630E8DE880EF584A7B7751085FEB5BEC6B3E5321
420
+ 7B5072C268467926773666E051B5866776D45DCB7ABA8475594E9B4150800000
421
+ 0000000000000000000000000000000000000000000000000000000000000000
422
+ 0000000000000000000000000000000000000000000000000000000000000000
423
+ 0000000000000000000000000000000000000000000000000000000000000000
424
+ 0000000000000000000000000000000000000000000000000000000000000000
425
+ 0000000000000000000000000000000000000000000000000000000000000000
426
+ 0000000000000000000000000000000000000000000000000000000000000000
427
+ 0000000000000000000000000000000000000000000000000000000000000000
428
+ 0000000000000000000000000000000000000000000000000000000000000000
429
+ 40
430
+ 0000000000000000000000000000000000000000000000000000000000000000
431
+ 0000000000000000000000000000000000000000000000000000000000000000
432
+ 0000994B61276F7057646606634656F062EC64F45ED395CA578362C95587881F
433
+ 81D88FA35566840A4F868CF485CD5A6A6B0465147C4395CC862D703E8B95652C
434
+ 89BD61F67E9C721B6FEB7405699472FC5ECA90CE67176D6A648852DE72628001
435
+ 4F6C59E5916A70D96F8752D26A0296F79433857E78CA7D2F512158D864C2808B
436
+ 985E6CEA68F1695E51B7539868A872819ECE7C6C72F896E270557406674E88CF
437
+ 9BC979AE83898354540F68179E9753B252F5792B6B77522950884F8B4FD00000
438
+ 0000000000000000000000000000000000000000000000000000000000000000
439
+ 0000000000000000000000000000000000000000000000000000000000000000
440
+ 0000000000000000000000000000000000000000000000000000000000000000
441
+ 0000000000000000000000000000000000000000000000000000000000000000
442
+ 0000000000000000000000000000000000000000000000000000000000000000
443
+ 0000000000000000000000000000000000000000000000000000000000000000
444
+ 0000000000000000000000000000000000000000000000000000000000000000
445
+ 0000000000000000000000000000000000000000000000000000000000000000
446
+ 41
447
+ 0000000000000000000000000000000000000000000000000000000000000000
448
+ 0000000000000000000000000000000000000000000000000000000000000000
449
+ 000075E27ACB7C92701D96B8529B748354E95006806F84EE9023942E5EC96190
450
+ 6F237C3E658281C993C8620071497DF47CE751C968817CB1826F51698F1B91CF
451
+ 667E4EAE8AD264A9804A50DA764271CE5BE5907C6F664E86648294105ED66599
452
+ 521788C270C852A373757433679778F7971681E891309C576DCB51DB8CC3541D
453
+ 62CE73B283F196F69F6192344F367F9A51CC974896755DBA981853E64EE46E9C
454
+ 740969B4786B993E7559528976246D4167F3516D9F8D807E56A87C607ABF0000
455
+ 0000000000000000000000000000000000000000000000000000000000000000
456
+ 0000000000000000000000000000000000000000000000000000000000000000
457
+ 0000000000000000000000000000000000000000000000000000000000000000
458
+ 0000000000000000000000000000000000000000000000000000000000000000
459
+ 0000000000000000000000000000000000000000000000000000000000000000
460
+ 0000000000000000000000000000000000000000000000000000000000000000
461
+ 0000000000000000000000000000000000000000000000000000000000000000
462
+ 0000000000000000000000000000000000000000000000000000000000000000
463
+ 42
464
+ 0000000000000000000000000000000000000000000000000000000000000000
465
+ 0000000000000000000000000000000000000000000000000000000000000000
466
+ 0000968658DF650F96B46A135A41645F7C0D6F0F964B860676E798715EEC7210
467
+ 64C46EF7865C9B6F9E93788C97328DEF8CC29E7F6F5E798493329678622E9A62
468
+ 541592C14FA365C55C655C627E37616E6C2F5F8B73876FFE7DD15DD265235B7F
469
+ 706453754E8263A0756563848F2A502B4F966DEA7DB88AD6863F87BA7F85908F
470
+ 947C7C6E9A3E88F8843D6D1B99F17D615ABD9EBB746A78BC879E99AC99E1561B
471
+ 55CE57CB8CB79EA58CE390818109779E9945883B6EFF851366FC61626F2B0000
472
+ 0000000000000000000000000000000000000000000000000000000000000000
473
+ 0000000000000000000000000000000000000000000000000000000000000000
474
+ 0000000000000000000000000000000000000000000000000000000000000000
475
+ 0000000000000000000000000000000000000000000000000000000000000000
476
+ 0000000000000000000000000000000000000000000000000000000000000000
477
+ 0000000000000000000000000000000000000000000000000000000000000000
478
+ 0000000000000000000000000000000000000000000000000000000000000000
479
+ 0000000000000000000000000000000000000000000000000000000000000000
480
+ 43
481
+ 0000000000000000000000000000000000000000000000000000000000000000
482
+ 0000000000000000000000000000000000000000000000000000000000000000
483
+ 00008B3E8292832B76F26C135FD983BD732B830593286BDB77DB925A536F8302
484
+ 51925E3D8C8C8CBF9EBD73AB679A68859176970971646CA177095A9293826BCF
485
+ 7F8E66275BD059B95A9A958060B65011840C84996AAC76DF9333731B59225B5F
486
+ 772F919A97617CDC8FF78B0E5F4C7C7379D889936CCC871C5BC65E4268C97720
487
+ 7DBF5195514D52C95A297DEC976282D763CF778485D079D26E3A5EDF59998511
488
+ 6EC56C1162BF76BF654F61AB95A9660E879F9CF49298540D547D8B2C64780000
489
+ 0000000000000000000000000000000000000000000000000000000000000000
490
+ 0000000000000000000000000000000000000000000000000000000000000000
491
+ 0000000000000000000000000000000000000000000000000000000000000000
492
+ 0000000000000000000000000000000000000000000000000000000000000000
493
+ 0000000000000000000000000000000000000000000000000000000000000000
494
+ 0000000000000000000000000000000000000000000000000000000000000000
495
+ 0000000000000000000000000000000000000000000000000000000000000000
496
+ 0000000000000000000000000000000000000000000000000000000000000000
497
+ 44
498
+ 0000000000000000000000000000000000000000000000000000000000000000
499
+ 0000000000000000000000000000000000000000000000000000000000000000
500
+ 0000647986116A21819C78E864699B5462B9672B83AB58A89ED86CAB6F205BDE
501
+ 964C8B00725F67D062C77261755D59C66BCD589366AE5E5552DF6155672876EE
502
+ 776672677A4662FF54EA5450920990A35A1C7D0D6C164E435976801059485357
503
+ 753796E356CA6493816660F19B276DD65462991251855AE980FD59AE9713502A
504
+ 6CE55C3C64EC4F60533F81A990066EBA852B62C85E7478BE6506637B5FF55A18
505
+ 91C09CE55C3F634F80765B7D5699947793B36D8560A86AB8737051DD5BE70000
506
+ 0000000000000000000000000000000000000000000000000000000000000000
507
+ 0000000000000000000000000000000000000000000000000000000000000000
508
+ 0000000000000000000000000000000000000000000000000000000000000000
509
+ 0000000000000000000000000000000000000000000000000000000000000000
510
+ 0000000000000000000000000000000000000000000000000000000000000000
511
+ 0000000000000000000000000000000000000000000000000000000000000000
512
+ 0000000000000000000000000000000000000000000000000000000000000000
513
+ 0000000000000000000000000000000000000000000000000000000000000000
514
+ 45
515
+ 0000000000000000000000000000000000000000000000000000000000000000
516
+ 0000000000000000000000000000000000000000000000000000000000000000
517
+ 000064F06FD8725B626D92157D1081BF6FC38FB25F04597452AA601259736696
518
+ 86507627632A61E67CEF8AFE54E66B509DD76BC685D5561450766F1A556A8DB4
519
+ 722C5E156015743662CD6392724C5F986E436D3E65006F5876E478D076FC7554
520
+ 522453DB4E539F9065C1802A80D6629B5486522870AE888D8DD16CE1547880DA
521
+ 57F988F48CE0966A914D4F696C9B567476C6783062A870F96F8E5F6D84EC68DA
522
+ 787C7BF781A8670B9D6C636778B0576F78129739627962AB528874356BD70000
523
+ 0000000000000000000000000000000000000000000000000000000000000000
524
+ 0000000000000000000000000000000000000000000000000000000000000000
525
+ 0000000000000000000000000000000000000000000000000000000000000000
526
+ 0000000000000000000000000000000000000000000000000000000000000000
527
+ 0000000000000000000000000000000000000000000000000000000000000000
528
+ 0000000000000000000000000000000000000000000000000000000000000000
529
+ 0000000000000000000000000000000000000000000000000000000000000000
530
+ 0000000000000000000000000000000000000000000000000000000000000000
531
+ 46
532
+ 0000000000000000000000000000000000000000000000000000000000000000
533
+ 0000000000000000000000000000000000000000000000000000000000000000
534
+ 00005564813E75B276AE533975DE50FB5C418B6C7BC7504F72479A1998C46F02
535
+ 74E27968648777A562FC983B8CA754C180584E52576A860B840D5E73619174F6
536
+ 8A555C4F57616F5198175A4678349B448FEB7C95525664B292EA50D583868461
537
+ 83E984B257D46A385703666E6D668B5C66DD7011671F6B3A68F2621A59BB4E03
538
+ 51C46F0667D26C8F517668CB59476B6775665D0E81CD9F4A65D7794879419A0E
539
+ 8D778C484E5E4F0155535951780C56686C238FC468C46C7D6CE38A1663900000
540
+ 0000000000000000000000000000000000000000000000000000000000000000
541
+ 0000000000000000000000000000000000000000000000000000000000000000
542
+ 0000000000000000000000000000000000000000000000000000000000000000
543
+ 0000000000000000000000000000000000000000000000000000000000000000
544
+ 0000000000000000000000000000000000000000000000000000000000000000
545
+ 0000000000000000000000000000000000000000000000000000000000000000
546
+ 0000000000000000000000000000000000000000000000000000000000000000
547
+ 0000000000000000000000000000000000000000000000000000000000000000
548
+ 47
549
+ 0000000000000000000000000000000000000000000000000000000000000000
550
+ 0000000000000000000000000000000000000000000000000000000000000000
551
+ 000060706D3D727D626691FA925B534390777C3D4EDF8B194E7E9ED493229257
552
+ 524D6F5B90636DFA8B7458795D4C6B206B4969CD55C681547F8C58BB85945F3A
553
+ 64366A47936C657260846A4B77A755AC50D15DE7979864AC7FF95CED4FCF7AC5
554
+ 520783044E14602F7ACA6B3D4FB589AA79E6743452E482B964D279BD5BE26C81
555
+ 97528F156C2B50BE537F6E0564CE66746C3060C598038ACB617674CA7AAE79CB
556
+ 4E1890B174036C4256DA914B6CC58DA8534086C666F28EC05C489A456E200000
557
+ 0000000000000000000000000000000000000000000000000000000000000000
558
+ 0000000000000000000000000000000000000000000000000000000000000000
559
+ 0000000000000000000000000000000000000000000000000000000000000000
560
+ 0000000000000000000000000000000000000000000000000000000000000000
561
+ 0000000000000000000000000000000000000000000000000000000000000000
562
+ 0000000000000000000000000000000000000000000000000000000000000000
563
+ 0000000000000000000000000000000000000000000000000000000000000000
564
+ 0000000000000000000000000000000000000000000000000000000000000000
565
+ 48
566
+ 0000000000000000000000000000000000000000000000000000000000000000
567
+ 0000000000000000000000000000000000000000000000000000000000000000
568
+ 000053D65A369F728DA353BB570898746B0A919B6CC9516875CA62F372AC5238
569
+ 52F87F3A7094763853749D7269B778BA96C088D97FA4713671C3518967D374E4
570
+ 58E4651856B78B93995264FE7E5E60F971B158EC4EC14EBA5FCD97CC4EFB8A8D
571
+ 5203598A7D0962544ECD65E5620E833884C969AE878D71946EB65BB97D685197
572
+ 63C967D480898339881551125B7A59828FB14E736C5D516589258EDF962E854A
573
+ 745E92ED958F6F6482E55F316492705185A9816E9C13585E8CFD4E0953C10000
574
+ 0000000000000000000000000000000000000000000000000000000000000000
575
+ 0000000000000000000000000000000000000000000000000000000000000000
576
+ 0000000000000000000000000000000000000000000000000000000000000000
577
+ 0000000000000000000000000000000000000000000000000000000000000000
578
+ 0000000000000000000000000000000000000000000000000000000000000000
579
+ 0000000000000000000000000000000000000000000000000000000000000000
580
+ 0000000000000000000000000000000000000000000000000000000000000000
581
+ 0000000000000000000000000000000000000000000000000000000000000000
582
+ 49
583
+ 0000000000000000000000000000000000000000000000000000000000000000
584
+ 0000000000000000000000000000000000000000000000000000000000000000
585
+ 000050986563685155D355AA64149A3763835AC2745F82726F8068EE50E7838E
586
+ 78026BBA52396C997D1750BB5565715E7BE966EC73CA82EB67495C715220717D
587
+ 886B9583965D64C58D0D81B355846C5562477E55589250B755468CDE664C4E0A
588
+ 5C1A88F368A2634E7A0D71D2828D52FA97F65C1154E890B57D3959628CD286C7
589
+ 820C63688D66651D5C0461FE6D89793E8A2D78377533547B4F388EAB6DF15A20
590
+ 7D33795E6C885BE95B38751A814E614E6EF28072751F7525727253477E690000
591
+ 0000000000000000000000000000000000000000000000000000000000000000
592
+ 0000000000000000000000000000000000000000000000000000000000000000
593
+ 0000000000000000000000000000000000000000000000000000000000000000
594
+ 0000000000000000000000000000000000000000000000000000000000000000
595
+ 0000000000000000000000000000000000000000000000000000000000000000
596
+ 0000000000000000000000000000000000000000000000000000000000000000
597
+ 0000000000000000000000000000000000000000000000000000000000000000
598
+ 0000000000000000000000000000000000000000000000000000000000000000
599
+ 4A
600
+ 0000000000000000000000000000000000000000000000000000000000000000
601
+ 0000000000000000000000000000000000000000000000000000000000000000
602
+ 0000770176DB526952DD80565E2B5931734565BD6FD58A695C388671534177F3
603
+ 62FE66424EC098DF87555BE68B5853F277E24F7F5C4E99DB59CB5F0F793A58EB
604
+ 4E1667FF4E8B62ED8A93901D52E2662F55DC566C90694ED54F8D91CB98FE6C0F
605
+ 5E0260435BA489968A666536624B99965B8858FD6388552E53D776267378852C
606
+ 6A1E68B36B8A62928F3853D482126DD1758F66F88D165B70719F85AF669166D9
607
+ 7F7287009ECD9F205C6C88538FF06A39675F620D7AEA58855EB665786F310000
608
+ 0000000000000000000000000000000000000000000000000000000000000000
609
+ 0000000000000000000000000000000000000000000000000000000000000000
610
+ 0000000000000000000000000000000000000000000000000000000000000000
611
+ 0000000000000000000000000000000000000000000000000000000000000000
612
+ 0000000000000000000000000000000000000000000000000000000000000000
613
+ 0000000000000000000000000000000000000000000000000000000000000000
614
+ 0000000000000000000000000000000000000000000000000000000000000000
615
+ 0000000000000000000000000000000000000000000000000000000000000000
616
+ 4B
617
+ 0000000000000000000000000000000000000000000000000000000000000000
618
+ 0000000000000000000000000000000000000000000000000000000000000000
619
+ 000060555237800D6454887075295E25681362F4971C96D9723D8AB06C347761
620
+ 7A0E542E77AC9806821C8AAC78A96714720D65AF64955636601D79C153F87D72
621
+ 6B7B80865BFA55E356DB4F3A4F3C98FC5DF39B068073616B980C90015B8B8A1F
622
+ 8AA6641C825864FB55FD860791654FD77D20901F7C9F50F358516EAF5BBF8A34
623
+ 80859178849C7B9796D6968B96A87D8F9AD3788E6B727A57904296A7795F5B6B
624
+ 640D7B0B84D168AD55067E2E74637D2293966240584C4ED65B83597958540000
625
+ 0000000000000000000000000000000000000000000000000000000000000000
626
+ 0000000000000000000000000000000000000000000000000000000000000000
627
+ 0000000000000000000000000000000000000000000000000000000000000000
628
+ 0000000000000000000000000000000000000000000000000000000000000000
629
+ 0000000000000000000000000000000000000000000000000000000000000000
630
+ 0000000000000000000000000000000000000000000000000000000000000000
631
+ 0000000000000000000000000000000000000000000000000000000000000000
632
+ 0000000000000000000000000000000000000000000000000000000000000000
633
+ 4C
634
+ 0000000000000000000000000000000000000000000000000000000000000000
635
+ 0000000000000000000000000000000000000000000000000000000000000000
636
+ 0000737A64BB8E4B8E0F80CE82D462AC81FA6CF0915E592A614B6C70574D6524
637
+ 8CAA7671705858C76A8075F06F6D8B5A8AC757666BEF889278B363A2560670AD
638
+ 6E6F5858642A580268E0819B55107CD650188EBA6DCC8D9F71D9638F6FE46ED4
639
+ 7E278404684390036DD896768A0E5957727985E49A3075BC8B0468AF52548E22
640
+ 92BB63D0984C8E44557C9AD466FF568F60D56D9552435C4959296DFB586B7530
641
+ 751C606C821481466311689D8FE2773A8DF38CBC94355E165EF3807D70F40000
642
+ 0000000000000000000000000000000000000000000000000000000000000000
643
+ 0000000000000000000000000000000000000000000000000000000000000000
644
+ 0000000000000000000000000000000000000000000000000000000000000000
645
+ 0000000000000000000000000000000000000000000000000000000000000000
646
+ 0000000000000000000000000000000000000000000000000000000000000000
647
+ 0000000000000000000000000000000000000000000000000000000000000000
648
+ 0000000000000000000000000000000000000000000000000000000000000000
649
+ 0000000000000000000000000000000000000000000000000000000000000000
650
+ 4D
651
+ 0000000000000000000000000000000000000000000000000000000000000000
652
+ 0000000000000000000000000000000000000000000000000000000000000000
653
+ 00006C405EF7505C4EAD5EAD633A8247901A6850916E77B3540C92855F647AE5
654
+ 687663457B527D7175DB50776295982D900F51F879C37A8157165F9290145857
655
+ 5C60571F541051546E4D571863A8983D817F8715892A9000541E5C6F81C062D6
656
+ 625881319D15964099B199DD6A6259A562D3553E631654C786D97AAA5A0374E6
657
+ 896A6B6A59168C4C5F4E706373A998114E3870F75B8C7897633D665A769660CB
658
+ 5B9B5A49842C81556C6A738B4EA167897DB25F8065FA671B5FD859845A010000
659
+ 0000000000000000000000000000000000000000000000000000000000000000
660
+ 0000000000000000000000000000000000000000000000000000000000000000
661
+ 0000000000000000000000000000000000000000000000000000000000000000
662
+ 0000000000000000000000000000000000000000000000000000000000000000
663
+ 0000000000000000000000000000000000000000000000000000000000000000
664
+ 0000000000000000000000000000000000000000000000000000000000000000
665
+ 0000000000000000000000000000000000000000000000000000000000000000
666
+ 0000000000000000000000000000000000000000000000000000000000000000
667
+ 4E
668
+ 0000000000000000000000000000000000000000000000000000000000000000
669
+ 0000000000000000000000000000000000000000000000000000000000000000
670
+ 00005DCD5FAE537197CB90556845570D552F60DF72326FF07DAD8466840E59D4
671
+ 504950DE5C3E7DEF672A851A5473754F80C355829B4F4F4D6E2D8B025C096170
672
+ 885B761F6E29868A6587805E7D0B543B7A697D0A554F55E17FC174EE64BE8778
673
+ 6E267AA9621165A1536763E16C835DEB55DA93A270CF6C618AA35C4B7121856A
674
+ 68A7543E54346BCB6B664E9463425348821E4F0D4FAE5862620A972766647269
675
+ 52FF52D9609F8AA4661471996790897F785277FD6670563B5438932B72A70000
676
+ 0000000000000000000000000000000000000000000000000000000000000000
677
+ 0000000000000000000000000000000000000000000000000000000000000000
678
+ 0000000000000000000000000000000000000000000000000000000000000000
679
+ 0000000000000000000000000000000000000000000000000000000000000000
680
+ 0000000000000000000000000000000000000000000000000000000000000000
681
+ 0000000000000000000000000000000000000000000000000000000000000000
682
+ 0000000000000000000000000000000000000000000000000000000000000000
683
+ 0000000000000000000000000000000000000000000000000000000000000000
684
+ 4F
685
+ 0000000000000000000000000000000000000000000000000000000000000000
686
+ 0000000000000000000000000000000000000000000000000000000000000000
687
+ 00007A00606F5E0C6089819D591560DC718470EF6EAA6C5072806A8489725E2D
688
+ 7FD25AB3559C92916D177CFB969962327D30778E87665323971E8F4466875CFD
689
+ 4FE072F94E0B53A6590F56876380934151484ED99BAE7E9654B88CE2929C8237
690
+ 95916D8E5F265ACC986F96AA73FE737B7E23817A99217FA161B2967796507DAB
691
+ 76F853A2947299997BB189446E5891097FD479658A7360F397FF4EAB98055DF7
692
+ 6A6150CF54118C61856D785D9704524A54EE56C292B76D885BB56DC666C90000
693
+ 0000000000000000000000000000000000000000000000000000000000000000
694
+ 0000000000000000000000000000000000000000000000000000000000000000
695
+ 0000000000000000000000000000000000000000000000000000000000000000
696
+ 0000000000000000000000000000000000000000000000000000000000000000
697
+ 0000000000000000000000000000000000000000000000000000000000000000
698
+ 0000000000000000000000000000000000000000000000000000000000000000
699
+ 0000000000000000000000000000000000000000000000000000000000000000
700
+ 0000000000000000000000000000000000000000000000000000000000000000
701
+ 50
702
+ 0000000000000000000000000000000000000000000000000000000000000000
703
+ 0000000000000000000000000000000000000000000000000000000000000000
704
+ 00005C0F5B5D68218096562F7B11654869544E9B6B47874E978B5354633E643A
705
+ 90AA659C81058AE75BEB68B0537887F961C86CC470098B1D5C5185AA82AF92C5
706
+ 6B238F9B65B05FFB5FC34FE191C1661F8165732960FA82085211578B5F6290A2
707
+ 884C91925E78674F602759D3514451F680F853086C7996C4718A4F114FEE7F9E
708
+ 673D55C592B979C088967D89589F620C9700865A561898085F908A3184C49157
709
+ 53D965ED5E8F755C60647D6E5A7F7DD27E8C8ED255A75BA361F865CB73840000
710
+ 0000000000000000000000000000000000000000000000000000000000000000
711
+ 0000000000000000000000000000000000000000000000000000000000000000
712
+ 0000000000000000000000000000000000000000000000000000000000000000
713
+ 0000000000000000000000000000000000000000000000000000000000000000
714
+ 0000000000000000000000000000000000000000000000000000000000000000
715
+ 0000000000000000000000000000000000000000000000000000000000000000
716
+ 0000000000000000000000000000000000000000000000000000000000000000
717
+ 0000000000000000000000000000000000000000000000000000000000000000
718
+ 51
719
+ 0000000000000000000000000000000000000000000000000000000000000000
720
+ 0000000000000000000000000000000000000000000000000000000000000000
721
+ 00009078766C77297D629774859B5B787A7496EA884052DB718F5FAA65EC8A62
722
+ 5C0B99B45DE16B896C5B8A138A0A905C8FC558D362BC9D099D2854404E2B82BD
723
+ 7259869C5D1688596DAF96C5555E4E9E8A1D710954BD95B970DF6DF99E7D56B4
724
+ 781487125CA95EF68A00985495BB708E6CBF594463A9773C884D6F1482775830
725
+ 71D553AD786F96C155015F6671305BB48AFA9A576B83592E9D2679E7694A63DA
726
+ 4F6F760D7F8A6D0B967D6C274EF07662990A6A236F3E90808170599674760000
727
+ 0000000000000000000000000000000000000000000000000000000000000000
728
+ 0000000000000000000000000000000000000000000000000000000000000000
729
+ 0000000000000000000000000000000000000000000000000000000000000000
730
+ 0000000000000000000000000000000000000000000000000000000000000000
731
+ 0000000000000000000000000000000000000000000000000000000000000000
732
+ 0000000000000000000000000000000000000000000000000000000000000000
733
+ 0000000000000000000000000000000000000000000000000000000000000000
734
+ 0000000000000000000000000000000000000000000000000000000000000000
735
+ 52
736
+ 0000000000000000000000000000000000000000000000000000000000000000
737
+ 0000000000000000000000000000000000000000000000000000000000000000
738
+ 00006447582F90657A918B2159DA54AC820085E5898180006930564E8036723A
739
+ 91CE51B64E5F98016396696D844966F3814B591C6DB24E0058F991AB63D692A5
740
+ 4F9D4F0A886398245937907A79FB510080F075916C825B9C59E85F5D690587FB
741
+ 501A5DF24E5977E34EE585DD6291661390915C7951045F7981C69038808475AB
742
+ 4EA688D4610F6BC561B67FA976CA6EA28A638B708ABC8B6F5F027FFC7FCC7E79
743
+ 8335852D56E06BB797F3967059FB541F92806DEB5BC598F25C395F1596B10000
744
+ 0000000000000000000000000000000000000000000000000000000000000000
745
+ 0000000000000000000000000000000000000000000000000000000000000000
746
+ 0000000000000000000000000000000000000000000000000000000000000000
747
+ 0000000000000000000000000000000000000000000000000000000000000000
748
+ 0000000000000000000000000000000000000000000000000000000000000000
749
+ 0000000000000000000000000000000000000000000000000000000000000000
750
+ 0000000000000000000000000000000000000000000000000000000000000000
751
+ 0000000000000000000000000000000000000000000000000000000000000000
752
+ 53
753
+ 0000000000000000000000000000000000000000000000000000000000000000
754
+ 0000000000000000000000000000000000000000000000000000000000000000
755
+ 0000537082F16AFB5B309DF961C97E93746987A271DF719288058FCE8D0F76C8
756
+ 5F717A4E786C662055B264C150AD81C376705EB896CD8E3486F9548F6CF36D8C
757
+ 6C38607F52C775285E7D512A60A061825C24753190F5923E73366CB96E389149
758
+ 670953CB53F34F5191C98A9853C85E7C8FC26DE44E8E76C26986865E611A8F3F
759
+ 99184FDE903E9B5A61096E1D6F0196854E885A3196E882075DBC79B95B878A9E
760
+ 7FBD738957DF828B9B315401904755BB5CEA5FA161086B32734480B28B7D0000
761
+ 0000000000000000000000000000000000000000000000000000000000000000
762
+ 0000000000000000000000000000000000000000000000000000000000000000
763
+ 0000000000000000000000000000000000000000000000000000000000000000
764
+ 0000000000000000000000000000000000000000000000000000000000000000
765
+ 0000000000000000000000000000000000000000000000000000000000000000
766
+ 0000000000000000000000000000000000000000000000000000000000000000
767
+ 0000000000000000000000000000000000000000000000000000000000000000
768
+ 0000000000000000000000000000000000000000000000000000000000000000
769
+ 54
770
+ 0000000000000000000000000000000000000000000000000000000000000000
771
+ 0000000000000000000000000000000000000000000000000000000000000000
772
+ 00006D745BD388D598108C6B99AD9D1B6DF551A4514357A38881539F63F48F45
773
+ 571254E15713733F6E907DE3906082D198586028966266F07D048D8A8E8D9470
774
+ 5CB37CA4670860A695B2801896F29116530096955141904B85F49196668897F5
775
+ 5B55531D783896DC683D54C9707E5BB08F09518D572854B1652266AB8D0A8D1C
776
+ 81DF846C906D7CDF947F85FB68D765E96FA186A48E81566A902076827AC871E5
777
+ 8CAC64C752476FA48CCA600E589E618E66FE8D08624E55B36E23672D8ECB0000
778
+ 0000000000000000000000000000000000000000000000000000000000000000
779
+ 0000000000000000000000000000000000000000000000000000000000000000
780
+ 0000000000000000000000000000000000000000000000000000000000000000
781
+ 0000000000000000000000000000000000000000000000000000000000000000
782
+ 0000000000000000000000000000000000000000000000000000000000000000
783
+ 0000000000000000000000000000000000000000000000000000000000000000
784
+ 0000000000000000000000000000000000000000000000000000000000000000
785
+ 0000000000000000000000000000000000000000000000000000000000000000
786
+ 55
787
+ 0000000000000000000000000000000000000000000000000000000000000000
788
+ 0000000000000000000000000000000000000000000000000000000000000000
789
+ 0000935895987728680569A8548B4E4D70B88A5064589F4B5B857A8450B55BE8
790
+ 77BB6C088A797C986CBE76DE65AC8F3E5D845C55863868E7536062307AD96E5B
791
+ 7DBB6A1F7AE05F706F335F35638C6F3267564E085E338CEC4ED781397634969C
792
+ 62DB662D627E6CBC8D9971677F695146808753EC906E629854F287C48F4D8005
793
+ 937A851790196D5973CD659F771F7504782781FB8C9E91DD5075679575B98A3A
794
+ 9707632F93AE966384B86399775C5F817319722D6014657462EF6B63653F0000
795
+ 0000000000000000000000000000000000000000000000000000000000000000
796
+ 0000000000000000000000000000000000000000000000000000000000000000
797
+ 0000000000000000000000000000000000000000000000000000000000000000
798
+ 0000000000000000000000000000000000000000000000000000000000000000
799
+ 0000000000000000000000000000000000000000000000000000000000000000
800
+ 0000000000000000000000000000000000000000000000000000000000000000
801
+ 0000000000000000000000000000000000000000000000000000000000000000
802
+ 0000000000000000000000000000000000000000000000000000000000000000
803
+ 56
804
+ 0000000000000000000000000000000000000000000000000000000000000000
805
+ 0000000000000000000000000000000000000000000000000000000000000000
806
+ 00005E407665912D8B49829D679D652F5431871877E580A281026C414E4B7E54
807
+ 807776F4690D6B9657F7503C4F84574063076B628DBE887965E87D195FD7646F
808
+ 64F281F381F47F6E5E5F5CD95236667A79E97A1A8CEA709975D46EEF6CBB7A92
809
+ 4E2D76C55FE0941888777D427A2E816B91CD4EF28846821F54685DDE6D328B05
810
+ 7CA58EF880985E1A549276BA5B99665D9A5F73E0682A86DB6731732A8AF88A85
811
+ 90107AF971ED716E62C477DA56D14E3B845767F152A986C08CAF94447BC90000
812
+ 0000000000000000000000000000000000000000000000000000000000000000
813
+ 0000000000000000000000000000000000000000000000000000000000000000
814
+ 0000000000000000000000000000000000000000000000000000000000000000
815
+ 0000000000000000000000000000000000000000000000000000000000000000
816
+ 0000000000000000000000000000000000000000000000000000000000000000
817
+ 0000000000000000000000000000000000000000000000000000000000000000
818
+ 0000000000000000000000000000000000000000000000000000000000000000
819
+ 0000000000000000000000000000000000000000000000000000000000000000
820
+ 57
821
+ 0000000000000000000000000000000000000000000000000000000000000000
822
+ 0000000000000000000000000000000000000000000000000000000000000000
823
+ 00004F4F6CE8795D99D06293722A62FD5C0878DA8F4964B08CFA7BC66A01838A
824
+ 88DD599D649E58EF72C0690E93108FFD8D05589C7DB48AC46E96634962D95353
825
+ 684C74228301914C55447740707C6FC1517954A88CC759FF6ECB6DC45B5C7D2B
826
+ 4ED47C7D6ED35B5081EA6F2C5B579B0368D58E2A5B977D9C7E3D7E3191128D70
827
+ 594F63CD79DF8DB3535265CF79568A5B963B7D44947D7E825634918967007F6A
828
+ 5C0A907566285DE64F5067DE505A4F5C57505EA7000000000000000000000000
829
+ 0000000000000000000000000000000000000000000000000000000000000000
830
+ 0000000000000000000000000000000000000000000000000000000000000000
831
+ 0000000000000000000000000000000000000000000000000000000000000000
832
+ 0000000000000000000000000000000000000000000000000000000000000000
833
+ 0000000000000000000000000000000000000000000000000000000000000000
834
+ 0000000000000000000000000000000000000000000000000000000000000000
835
+ 0000000000000000000000000000000000000000000000000000000000000000
836
+ 0000000000000000000000000000000000000000000000000000000000000000
837
+ 58
838
+ 0000000000000000000000000000000000000000000000000000000000000000
839
+ 0000000000000000000000000000000000000000000000000000000000000000
840
+ 00004E8D4E0C51404E105EFF53454E154E984E1E9B325B6C56694E2879BA4E3F
841
+ 53154E47592D723B536E6C1056DF80E499976BD3777E9F174E364E9F9F104E5C
842
+ 4E694E9382885B5B55C7560F4EC45399539D53B453A553AE97688D0B531A53F5
843
+ 532D5331533E8CFE5366536352025208520E52445233528C5274524C525E5261
844
+ 525C84AF527D528252815290529351827F544EBB4EC34EC94EC24EE84EE14EEB
845
+ 4EDE50B44EF34F224F644EF5500050964F094F474F5E4F6765384F5A4F5D0000
846
+ 0000000000000000000000000000000000000000000000000000000000000000
847
+ 0000000000000000000000000000000000000000000000000000000000000000
848
+ 0000000000000000000000000000000000000000000000000000000000000000
849
+ 0000000000000000000000000000000000000000000000000000000000000000
850
+ 0000000000000000000000000000000000000000000000000000000000000000
851
+ 0000000000000000000000000000000000000000000000000000000000000000
852
+ 0000000000000000000000000000000000000000000000000000000000000000
853
+ 0000000000000000000000000000000000000000000000000000000000000000
854
+ 59
855
+ 0000000000000000000000000000000000000000000000000000000000000000
856
+ 0000000000000000000000000000000000000000000000000000000000000000
857
+ 00004F5F4F574F324F3D4F764F744F914F894F834F8F4F7E4F7B51154F7C5102
858
+ 4F945114513C51374FC54FDA4FE34FDC4FD14FDF4FF85029504C4FF3502C500F
859
+ 502E502D4FFE501C500C5025502850E8504350555048504E506C50C2513B5110
860
+ 513A50BA50D6510650ED50EC50E650EE5107510B4EDD6C3D4F5850C94FCE9FA0
861
+ 6C467CF4516E5DFD9ECC999856C5591452F9530D8A0753109CEC591951554EA0
862
+ 51564EB3886E88A4893B81E088D279805B3488037FB851AB51B151BD51BC0000
863
+ 0000000000000000000000000000000000000000000000000000000000000000
864
+ 0000000000000000000000000000000000000000000000000000000000000000
865
+ 0000000000000000000000000000000000000000000000000000000000000000
866
+ 0000000000000000000000000000000000000000000000000000000000000000
867
+ 0000000000000000000000000000000000000000000000000000000000000000
868
+ 0000000000000000000000000000000000000000000000000000000000000000
869
+ 0000000000000000000000000000000000000000000000000000000000000000
870
+ 0000000000000000000000000000000000000000000000000000000000000000
871
+ 5A
872
+ 0000000000000000000000000000000000000000000000000000000000000000
873
+ 0000000000000000000000000000000000000000000000000000000000000000
874
+ 000051C7519651A251A58A018A108A0C8A158B338A4E8A258A418A368A468A54
875
+ 8A588A528A868A848A7F8A708A7C8A758A6C8A6E8ACD8AE28A618A9A8AA58A91
876
+ 8A928ACF8AD18AC98ADB8AD78AC28AB68AF68AEB8B148B018AE48AED8AFC8AF3
877
+ 8AE68AEE8ADE8B288B9C8B168B1A8B108B2B8B2D8B568B598B4E8B9E8B6B8B96
878
+ 5369537A961D962296219631962A963D963C964296589654965F9689966C9672
879
+ 96749688968D969796B09097909B913A9099911490A190B490B390B691340000
880
+ 0000000000000000000000000000000000000000000000000000000000000000
881
+ 0000000000000000000000000000000000000000000000000000000000000000
882
+ 0000000000000000000000000000000000000000000000000000000000000000
883
+ 0000000000000000000000000000000000000000000000000000000000000000
884
+ 0000000000000000000000000000000000000000000000000000000000000000
885
+ 0000000000000000000000000000000000000000000000000000000000000000
886
+ 0000000000000000000000000000000000000000000000000000000000000000
887
+ 0000000000000000000000000000000000000000000000000000000000000000
888
+ 5B
889
+ 0000000000000000000000000000000000000000000000000000000000000000
890
+ 0000000000000000000000000000000000000000000000000000000000000000
891
+ 000090B890B090DF90C590BE913690C490C79106914890E290DC90D790DB90EB
892
+ 90EF90FE91049122911E91239131912F91399143914682BB595052F152AC52AD
893
+ 52BE54FF52D052D652F053DF71EE77CD5EF451F551FC9B2F53B65F01755A5DF0
894
+ 574C580A57A1587E58BC58C558D15729572C572A573358D9572E572F58E2573B
895
+ 5742576958E0576B58DA577C577B5768576D5776577357E157A4578C584F57CF
896
+ 57A75816579357A057D55852581D586457D257B857F457EF57F857E457DD0000
897
+ 0000000000000000000000000000000000000000000000000000000000000000
898
+ 0000000000000000000000000000000000000000000000000000000000000000
899
+ 0000000000000000000000000000000000000000000000000000000000000000
900
+ 0000000000000000000000000000000000000000000000000000000000000000
901
+ 0000000000000000000000000000000000000000000000000000000000000000
902
+ 0000000000000000000000000000000000000000000000000000000000000000
903
+ 0000000000000000000000000000000000000000000000000000000000000000
904
+ 0000000000000000000000000000000000000000000000000000000000000000
905
+ 5C
906
+ 0000000000000000000000000000000000000000000000000000000000000000
907
+ 0000000000000000000000000000000000000000000000000000000000000000
908
+ 0000580B580D57FD57ED5800581E5819584458205865586C58815889589A5880
909
+ 99A89F1961FF8279827D827F828F828A82A88284828E8291858C829982AB8553
910
+ 82BE82B085F682CA82E3829882B782AE83A7840784EF82A982B482A182AA829F
911
+ 82C482E782A482E1830982F782E48622830782DC82F482D282D8830C82FB82D3
912
+ 8526831A8306584B716282E082D5831C8351855884FD83088392833C83348331
913
+ 839B854E832F834F8347834385888340831785BA832D833A833372966ECE0000
914
+ 0000000000000000000000000000000000000000000000000000000000000000
915
+ 0000000000000000000000000000000000000000000000000000000000000000
916
+ 0000000000000000000000000000000000000000000000000000000000000000
917
+ 0000000000000000000000000000000000000000000000000000000000000000
918
+ 0000000000000000000000000000000000000000000000000000000000000000
919
+ 0000000000000000000000000000000000000000000000000000000000000000
920
+ 0000000000000000000000000000000000000000000000000000000000000000
921
+ 0000000000000000000000000000000000000000000000000000000000000000
922
+ 5D
923
+ 0000000000000000000000000000000000000000000000000000000000000000
924
+ 0000000000000000000000000000000000000000000000000000000000000000
925
+ 00008541831B85CE855284C08452846483B083788494843583A083AA8393839C
926
+ 8385837C859F83A9837D8555837B8398839E83A89DAF849383C1840183E583D8
927
+ 58078418840B83DD83FD83D6841C84388411840683D483DF840F840383F883F9
928
+ 83EA83C583C07E0883F083E1845C8451845A8459847385468488847A85628478
929
+ 843C844684698476851E848E8431846D84C184CD84D09A4084BD84D384CA84BF
930
+ 84BA863A84A184B984B4849793A38577850C750D853884F0861E851F85FA0000
931
+ 0000000000000000000000000000000000000000000000000000000000000000
932
+ 0000000000000000000000000000000000000000000000000000000000000000
933
+ 0000000000000000000000000000000000000000000000000000000000000000
934
+ 0000000000000000000000000000000000000000000000000000000000000000
935
+ 0000000000000000000000000000000000000000000000000000000000000000
936
+ 0000000000000000000000000000000000000000000000000000000000000000
937
+ 0000000000000000000000000000000000000000000000000000000000000000
938
+ 0000000000000000000000000000000000000000000000000000000000000000
939
+ 5E
940
+ 0000000000000000000000000000000000000000000000000000000000000000
941
+ 0000000000000000000000000000000000000000000000000000000000000000
942
+ 00008556853B84FF84FC8559854885688564855E857A77A285438604857B85A4
943
+ 85A88587858F857985EA859C858585B985B785B0861A85C185DC85FF86278605
944
+ 86298616863C5EFE5F08593C596980375955595A5958530F5C225C255C2C5C37
945
+ 624C636B647662BB62CA62DA62D762EE649F62F66339634B634363AD63F66371
946
+ 637A638E6451636D63AC638A636963AE645C63F263F863E064B363C463DE63CE
947
+ 645263C663BE65046441640B641B6420640C64266421645E6516646D64960000
948
+ 0000000000000000000000000000000000000000000000000000000000000000
949
+ 0000000000000000000000000000000000000000000000000000000000000000
950
+ 0000000000000000000000000000000000000000000000000000000000000000
951
+ 0000000000000000000000000000000000000000000000000000000000000000
952
+ 0000000000000000000000000000000000000000000000000000000000000000
953
+ 0000000000000000000000000000000000000000000000000000000000000000
954
+ 0000000000000000000000000000000000000000000000000000000000000000
955
+ 0000000000000000000000000000000000000000000000000000000000000000
956
+ 5F
957
+ 0000000000000000000000000000000000000000000000000000000000000000
958
+ 0000000000000000000000000000000000000000000000000000000000000000
959
+ 0000647A64F764FC6499651B64C064D064D764E464E265096525652E5F0B5FD2
960
+ 75195F11535F53F1563053E953E853FB541254165406544B563856C8545456A6
961
+ 54435421550454BC5423543254825494547754715464549A5680548454765466
962
+ 565D54D054AD54C254B4566054A754A6563555F6547254A3566654BB54BF54CC
963
+ 567254DA568C54A954AA54A4566554CF54DE561C54E7562E54FD551454F355E9
964
+ 5523550F55115527552A5616558F55B5554956C055415555553F5550553C0000
965
+ 0000000000000000000000000000000000000000000000000000000000000000
966
+ 0000000000000000000000000000000000000000000000000000000000000000
967
+ 0000000000000000000000000000000000000000000000000000000000000000
968
+ 0000000000000000000000000000000000000000000000000000000000000000
969
+ 0000000000000000000000000000000000000000000000000000000000000000
970
+ 0000000000000000000000000000000000000000000000000000000000000000
971
+ 0000000000000000000000000000000000000000000000000000000000000000
972
+ 0000000000000000000000000000000000000000000000000000000000000000
973
+ 60
974
+ 0000000000000000000000000000000000000000000000000000000000000000
975
+ 0000000000000000000000000000000000000000000000000000000000000000
976
+ 00005537555655755576557755335530555C558B55D2558355B155B955885581
977
+ 559F557E55D65591557B55DF560D56B35594559955EA55F755C9561F55D156C1
978
+ 55EC55D455E655DD55C455EF55E555F2566F55CC55CD55E855F555E48F61561E
979
+ 5608560C560156B6562355FE56005627562D565856395657562C564D56625659
980
+ 5695564C5654568656645671566B567B567C5685569356AF56D456D756DD56E1
981
+ 570756EB56F956FF5704570A5709571C5E435E195E145E115E6C5E585E570000
982
+ 0000000000000000000000000000000000000000000000000000000000000000
983
+ 0000000000000000000000000000000000000000000000000000000000000000
984
+ 0000000000000000000000000000000000000000000000000000000000000000
985
+ 0000000000000000000000000000000000000000000000000000000000000000
986
+ 0000000000000000000000000000000000000000000000000000000000000000
987
+ 0000000000000000000000000000000000000000000000000000000000000000
988
+ 0000000000000000000000000000000000000000000000000000000000000000
989
+ 0000000000000000000000000000000000000000000000000000000000000000
990
+ 61
991
+ 0000000000000000000000000000000000000000000000000000000000000000
992
+ 0000000000000000000000000000000000000000000000000000000000000000
993
+ 00005E375E445E545E5B5E5E5E615C8C5C7A5C8D5C905D875C885CF45C995C91
994
+ 5D505C9C5CB55CA25D2C5CAC5CAB5CB15CA35CC15CB75DA75CD25DA05CCB5D22
995
+ 5D975D0D5D275D265D2E5D245D1E5D065D1B5DB85D3E5D345D3D5D6C5D5B5D6F
996
+ 5D815D6B5D4B5D4A5D695D745D825D995D9D8C735DB75DD45F735F775F825F87
997
+ 5F89540E5FA05F995F9C5FA85FAD5FB55FBC88625F6172AD72B072B473777341
998
+ 72C372C172CE72CD72D272E8736A72E9733B72F472F7730172F3736B72FA0000
999
+ 0000000000000000000000000000000000000000000000000000000000000000
1000
+ 0000000000000000000000000000000000000000000000000000000000000000
1001
+ 0000000000000000000000000000000000000000000000000000000000000000
1002
+ 0000000000000000000000000000000000000000000000000000000000000000
1003
+ 0000000000000000000000000000000000000000000000000000000000000000
1004
+ 0000000000000000000000000000000000000000000000000000000000000000
1005
+ 0000000000000000000000000000000000000000000000000000000000000000
1006
+ 0000000000000000000000000000000000000000000000000000000000000000
1007
+ 62
1008
+ 0000000000000000000000000000000000000000000000000000000000000000
1009
+ 0000000000000000000000000000000000000000000000000000000000000000
1010
+ 000072FB731773137380730A731E731D737C732273397325732C733873317350
1011
+ 734D73577360736C736F737E821B592598E75924590298E0993398E9993C98EA
1012
+ 98EB98ED98F4990999114F59991B9937993F994399489949994A994C99625E80
1013
+ 5EE15E8B5E965EA55EA05EB95EB55EBE5EB38CE15ED25ED15EDB5EE85EEA81BA
1014
+ 5FC45FC95FD661FA61AE5FEE616A5FE15FE4613E60B561345FEA5FED5FF86019
1015
+ 60356026601B600F600D6029602B600A61CC6021615F61E860FB613760420000
1016
+ 0000000000000000000000000000000000000000000000000000000000000000
1017
+ 0000000000000000000000000000000000000000000000000000000000000000
1018
+ 0000000000000000000000000000000000000000000000000000000000000000
1019
+ 0000000000000000000000000000000000000000000000000000000000000000
1020
+ 0000000000000000000000000000000000000000000000000000000000000000
1021
+ 0000000000000000000000000000000000000000000000000000000000000000
1022
+ 0000000000000000000000000000000000000000000000000000000000000000
1023
+ 0000000000000000000000000000000000000000000000000000000000000000
1024
+ 63
1025
+ 0000000000000000000000000000000000000000000000000000000000000000
1026
+ 0000000000000000000000000000000000000000000000000000000000000000
1027
+ 0000606A60F26096609A6173609D60836092608C609B611C60BB60B160DD60D8
1028
+ 60C660DA60B4612061926115612360F46100610E612B614A617561AC619461A7
1029
+ 61B761D461F55FDD96B39582958695C8958E9594958C95E595AD95AB9B2E95AC
1030
+ 95BE95B69B2995BF95BD95BC95C395CB95D495D095D595DE4E2C723F62156C35
1031
+ 6C546C5C6C4A70436C856C906C946C8C6C686C696C746C766C866F596CD06CD4
1032
+ 6CAD702770186CF16CD76CB26CE06CD66FFC6CEB6CEE6CB16CD36CEF6D870000
1033
+ 0000000000000000000000000000000000000000000000000000000000000000
1034
+ 0000000000000000000000000000000000000000000000000000000000000000
1035
+ 0000000000000000000000000000000000000000000000000000000000000000
1036
+ 0000000000000000000000000000000000000000000000000000000000000000
1037
+ 0000000000000000000000000000000000000000000000000000000000000000
1038
+ 0000000000000000000000000000000000000000000000000000000000000000
1039
+ 0000000000000000000000000000000000000000000000000000000000000000
1040
+ 0000000000000000000000000000000000000000000000000000000000000000
1041
+ 64
1042
+ 0000000000000000000000000000000000000000000000000000000000000000
1043
+ 0000000000000000000000000000000000000000000000000000000000000000
1044
+ 00006D396D276D0C6D796E5E6D076D046D196D0E6D2B6FAE6D2E6D356D1A700F
1045
+ 6EF86F6F6D336D916D6F6DF66F7F6D5E6D936D946D5C6D606D7C6D636E1A6DC7
1046
+ 6DC56DDE70066DBF6DE06FA06DE66DDD6DD9700B6DAB6E0C6DAE6E2B6E6E6E4E
1047
+ 6E6B6EB26E5F6E866E536E546E326E256E4470676EB16E9870446F2D70056EA5
1048
+ 6EA76EBD6EBB6EB76F776EB46ECF6E8F6EC26E9F6F627020701F6F246F156EF9
1049
+ 6F2F6F3670326F746F2A6F096F296F896F8D6F8C6F786F726F7C6F7A70280000
1050
+ 0000000000000000000000000000000000000000000000000000000000000000
1051
+ 0000000000000000000000000000000000000000000000000000000000000000
1052
+ 0000000000000000000000000000000000000000000000000000000000000000
1053
+ 0000000000000000000000000000000000000000000000000000000000000000
1054
+ 0000000000000000000000000000000000000000000000000000000000000000
1055
+ 0000000000000000000000000000000000000000000000000000000000000000
1056
+ 0000000000000000000000000000000000000000000000000000000000000000
1057
+ 0000000000000000000000000000000000000000000000000000000000000000
1058
+ 65
1059
+ 0000000000000000000000000000000000000000000000000000000000000000
1060
+ 0000000000000000000000000000000000000000000000000000000000000000
1061
+ 00006FC96FA76FB96FB66FC26FE16FEE6FDE6FE06FEF701A7023701B70397035
1062
+ 705D705E5B805B845B955B935BA55BB8752F9A2B64345BE45BEE89305BF08E47
1063
+ 8B078FB68FD38FD58FE58FEE8FE490878FE690158FE890059004900B90909011
1064
+ 900D9016902190359036902D902F9044905190529050906890589062905B66B9
1065
+ 9074907D908290889083908B5F505F575F565F585C3B54AB5C505C595B715C63
1066
+ 5C687FBC5F335F295F2D82745F3C9B3B5C6E59815983598D5AF55AD759A30000
1067
+ 0000000000000000000000000000000000000000000000000000000000000000
1068
+ 0000000000000000000000000000000000000000000000000000000000000000
1069
+ 0000000000000000000000000000000000000000000000000000000000000000
1070
+ 0000000000000000000000000000000000000000000000000000000000000000
1071
+ 0000000000000000000000000000000000000000000000000000000000000000
1072
+ 0000000000000000000000000000000000000000000000000000000000000000
1073
+ 0000000000000000000000000000000000000000000000000000000000000000
1074
+ 0000000000000000000000000000000000000000000000000000000000000000
1075
+ 66
1076
+ 0000000000000000000000000000000000000000000000000000000000000000
1077
+ 0000000000000000000000000000000000000000000000000000000000000000
1078
+ 0000599759CA5B00599E59A459D259B259AF59D759BE5A6D5B0859DD5B4C59E3
1079
+ 59D859F95A0C5A095AA75AFB5A115A235A135A405A675A4A5A555A3C5A625B0B
1080
+ 80EC5AAA5A9B5A775A7A5ABE5AEB5AB25B215B2A5AB85AE05AE35B195AD65AE6
1081
+ 5AD85ADC5B095B175B165B325B375B405C155C1C5B5A5B655B735B515B535B62
1082
+ 99D499DF99D99A369A5B99D199D89A4D9A4A99E29A6A9A0F9A0D9A059A429A2D
1083
+ 9A169A419A2E9A389A439A449A4F9A659A647CF97D067D027D077D087E8A0000
1084
+ 0000000000000000000000000000000000000000000000000000000000000000
1085
+ 0000000000000000000000000000000000000000000000000000000000000000
1086
+ 0000000000000000000000000000000000000000000000000000000000000000
1087
+ 0000000000000000000000000000000000000000000000000000000000000000
1088
+ 0000000000000000000000000000000000000000000000000000000000000000
1089
+ 0000000000000000000000000000000000000000000000000000000000000000
1090
+ 0000000000000000000000000000000000000000000000000000000000000000
1091
+ 0000000000000000000000000000000000000000000000000000000000000000
1092
+ 67
1093
+ 0000000000000000000000000000000000000000000000000000000000000000
1094
+ 0000000000000000000000000000000000000000000000000000000000000000
1095
+ 00007D1C7D157D137D3A7D327D317E107D3C7D407D3F7D5D7D4E7D737D867D83
1096
+ 7D887DBE7DBA7DCB7DD47DC47D9E7DAC7DB97DA37DB07DC77DD97DD77DF97DF2
1097
+ 7E627DE67DF67DF17E0B7DE17E097E1D7E1F7E1E7E2D7E0A7E117E7D7E397E35
1098
+ 7E327E467E457E887E5A7E527E6E7E7E7E707E6F7E985E7A757F5DDB753E9095
1099
+ 738E74A3744B73A2739F73CF73C274CF73B773B373C073C973C873E573D9980A
1100
+ 740A73E973E773DE74BD743F7489742A745B7426742574287430742E742C0000
1101
+ 0000000000000000000000000000000000000000000000000000000000000000
1102
+ 0000000000000000000000000000000000000000000000000000000000000000
1103
+ 0000000000000000000000000000000000000000000000000000000000000000
1104
+ 0000000000000000000000000000000000000000000000000000000000000000
1105
+ 0000000000000000000000000000000000000000000000000000000000000000
1106
+ 0000000000000000000000000000000000000000000000000000000000000000
1107
+ 0000000000000000000000000000000000000000000000000000000000000000
1108
+ 0000000000000000000000000000000000000000000000000000000000000000
1109
+ 68
1110
+ 0000000000000000000000000000000000000000000000000000000000000000
1111
+ 0000000000000000000000000000000000000000000000000000000000000000
1112
+ 0000741B741A7441745C74577455745974A6746D747E749C74D4748074817487
1113
+ 748B749E74A874A9749074A774DA74BA97D997DE97DC674C6753675E674869AA
1114
+ 6AEA6787676A677367986898677568D66A05689F678B6777677C67F06ADB67D8
1115
+ 6AF367E967B06AE867D967B567DA67B367DD680067C367B867E26ADF67C16A89
1116
+ 68326833690F6A48684E6968684469BF6883681D68556A3A68416A9C68406B12
1117
+ 684A6849682968B5688F687468776893686B6B1E696E68FC6ADD69E768F90000
1118
+ 0000000000000000000000000000000000000000000000000000000000000000
1119
+ 0000000000000000000000000000000000000000000000000000000000000000
1120
+ 0000000000000000000000000000000000000000000000000000000000000000
1121
+ 0000000000000000000000000000000000000000000000000000000000000000
1122
+ 0000000000000000000000000000000000000000000000000000000000000000
1123
+ 0000000000000000000000000000000000000000000000000000000000000000
1124
+ 0000000000000000000000000000000000000000000000000000000000000000
1125
+ 0000000000000000000000000000000000000000000000000000000000000000
1126
+ 69
1127
+ 0000000000000000000000000000000000000000000000000000000000000000
1128
+ 0000000000000000000000000000000000000000000000000000000000000000
1129
+ 00006B0F68F0690B6901695768E369106971693969606942695D6B16696B6980
1130
+ 69986978693469CC6AEC6ADA69CE6AF8696669636979699B69A769BB69AB69AD
1131
+ 69D469B169C169CA6AB369956AE7698D69FF6AA369ED6A176A186A6569F26A44
1132
+ 6A3E6AA06A506A5B6A356A8E6AD36A3D6A286A586ADE6A916A906AA96A976AAB
1133
+ 733773526B816B826BA46B846B9E6BAE6B8D6BAB6B9B6BAF6BAA8ED48EDB8EF2
1134
+ 8EFB8F648EF98EFC8EEB8EE48F628EFA8EFE8F0A8F078F058F128F268F1E0000
1135
+ 0000000000000000000000000000000000000000000000000000000000000000
1136
+ 0000000000000000000000000000000000000000000000000000000000000000
1137
+ 0000000000000000000000000000000000000000000000000000000000000000
1138
+ 0000000000000000000000000000000000000000000000000000000000000000
1139
+ 0000000000000000000000000000000000000000000000000000000000000000
1140
+ 0000000000000000000000000000000000000000000000000000000000000000
1141
+ 0000000000000000000000000000000000000000000000000000000000000000
1142
+ 0000000000000000000000000000000000000000000000000000000000000000
1143
+ 6A
1144
+ 0000000000000000000000000000000000000000000000000000000000000000
1145
+ 0000000000000000000000000000000000000000000000000000000000000000
1146
+ 00008F1F8F1C8F338F468F548ECE62146227621B621F62226221622562246229
1147
+ 81E7750C74F474FF750F75117513653465EE65EF65F0660A66C7677266036615
1148
+ 6600708566F7661D66346631663666358006665F66C46641664F668966616657
1149
+ 66776684668C66D6669D66BE66DB66DC66E666E98CC18CB08CBA8CBD8D048CB2
1150
+ 8CC58D108CD18CDA8CD58CEB8CE78CFB899889AC89A189BF89A689AF89B289B7
1151
+ 726E729F725D7266726F727E727F7284728B728D728F72926308633263B00000
1152
+ 0000000000000000000000000000000000000000000000000000000000000000
1153
+ 0000000000000000000000000000000000000000000000000000000000000000
1154
+ 0000000000000000000000000000000000000000000000000000000000000000
1155
+ 0000000000000000000000000000000000000000000000000000000000000000
1156
+ 0000000000000000000000000000000000000000000000000000000000000000
1157
+ 0000000000000000000000000000000000000000000000000000000000000000
1158
+ 0000000000000000000000000000000000000000000000000000000000000000
1159
+ 0000000000000000000000000000000000000000000000000000000000000000
1160
+ 6B
1161
+ 0000000000000000000000000000000000000000000000000000000000000000
1162
+ 0000000000000000000000000000000000000000000000000000000000000000
1163
+ 0000643F64D880046BEA6BF36BFD6BFF6BF96C056C0C6C066C0D6C156C186C19
1164
+ 6C1A6C216C2C6C246C2A6C3265356555656B725872527256723086625216809F
1165
+ 809C809380BC670A80BD80B180AB80AD80B480B76727815680E981DA80DB80C2
1166
+ 80C480D980CD80D7671080DD811B80F180F480ED81BE810E80F280FC67158112
1167
+ 8C5A8161811E812C811881328148814C815381748159815A817181608169817C
1168
+ 817D816D8167584D5AB58188818281CF6ED581A381AA81CC672681CA81BB0000
1169
+ 0000000000000000000000000000000000000000000000000000000000000000
1170
+ 0000000000000000000000000000000000000000000000000000000000000000
1171
+ 0000000000000000000000000000000000000000000000000000000000000000
1172
+ 0000000000000000000000000000000000000000000000000000000000000000
1173
+ 0000000000000000000000000000000000000000000000000000000000000000
1174
+ 0000000000000000000000000000000000000000000000000000000000000000
1175
+ 0000000000000000000000000000000000000000000000000000000000000000
1176
+ 0000000000000000000000000000000000000000000000000000000000000000
1177
+ 6C
1178
+ 0000000000000000000000000000000000000000000000000000000000000000
1179
+ 0000000000000000000000000000000000000000000000000000000000000000
1180
+ 000081C181A66B5F6B376B396B436B466B5998AE98AF98B698BC98C698C86BB3
1181
+ 5F408F4289F365909F4F659565BC65C665C465C365CC65CE65D265D6716C7152
1182
+ 7096719770BB70C070B770AB70B171C170CA7110711371DC712F71317173715C
1183
+ 716871457172714A7178717A719871B371B571A871A071E071D471E771F9721D
1184
+ 7228706C71FE716671B9623E623D624362486249793B794079467949795B795C
1185
+ 7953795A79B079577960798E7967797A79AA798A799A79A779B35FD15FD00000
1186
+ 0000000000000000000000000000000000000000000000000000000000000000
1187
+ 0000000000000000000000000000000000000000000000000000000000000000
1188
+ 0000000000000000000000000000000000000000000000000000000000000000
1189
+ 0000000000000000000000000000000000000000000000000000000000000000
1190
+ 0000000000000000000000000000000000000000000000000000000000000000
1191
+ 0000000000000000000000000000000000000000000000000000000000000000
1192
+ 0000000000000000000000000000000000000000000000000000000000000000
1193
+ 0000000000000000000000000000000000000000000000000000000000000000
1194
+ 6D
1195
+ 0000000000000000000000000000000000000000000000000000000000000000
1196
+ 0000000000000000000000000000000000000000000000000000000000000000
1197
+ 000061DF605D605A606760416059606361646106610D615D61A9619D61CB61E3
1198
+ 62078080807F6C936FA96DFC78EF77F878AD780978687818781165AB782D78B8
1199
+ 781D7839792A7931781F783C7825782C78237829784E786D786478FD78267850
1200
+ 7847784C786A78E77893789A788778E378A178A378B278B978A578D478D978C9
1201
+ 78EC78F2790578F479137924791E79349F959EF99EFB9EFC76F17704779876F9
1202
+ 77077708771A77227719772D772677357738775E77BC77477743775A77680000
1203
+ 0000000000000000000000000000000000000000000000000000000000000000
1204
+ 0000000000000000000000000000000000000000000000000000000000000000
1205
+ 0000000000000000000000000000000000000000000000000000000000000000
1206
+ 0000000000000000000000000000000000000000000000000000000000000000
1207
+ 0000000000000000000000000000000000000000000000000000000000000000
1208
+ 0000000000000000000000000000000000000000000000000000000000000000
1209
+ 0000000000000000000000000000000000000000000000000000000000000000
1210
+ 0000000000000000000000000000000000000000000000000000000000000000
1211
+ 6E
1212
+ 0000000000000000000000000000000000000000000000000000000000000000
1213
+ 0000000000000000000000000000000000000000000000000000000000000000
1214
+ 000077627765777F778D777D7780778C7791779F77A077B077B577BD753A7540
1215
+ 754E754B7548755B7572757975837F587F617F5F8A487F687F867F717F797F88
1216
+ 7F7E76CD76E5883291D291D391D491D991D791D591F791E791E4934691F591F9
1217
+ 9208922692459211921092019227920492259200923A9266923792339255923D
1218
+ 9238925E926C926D923F9460923092499248924D922E9239943892AC92A0927A
1219
+ 92AA92EE92CF940392E3943A92B192A693A7929692CC92A993F59293927F0000
1220
+ 0000000000000000000000000000000000000000000000000000000000000000
1221
+ 0000000000000000000000000000000000000000000000000000000000000000
1222
+ 0000000000000000000000000000000000000000000000000000000000000000
1223
+ 0000000000000000000000000000000000000000000000000000000000000000
1224
+ 0000000000000000000000000000000000000000000000000000000000000000
1225
+ 0000000000000000000000000000000000000000000000000000000000000000
1226
+ 0000000000000000000000000000000000000000000000000000000000000000
1227
+ 0000000000000000000000000000000000000000000000000000000000000000
1228
+ 6F
1229
+ 0000000000000000000000000000000000000000000000000000000000000000
1230
+ 0000000000000000000000000000000000000000000000000000000000000000
1231
+ 000093A9929A931A92AB9283940B92A892A39412933892F193D792E592F092EF
1232
+ 92E892BC92DD92F69426942792C392DF92E6931293069369931B934093019315
1233
+ 932E934393079308931F93199365934793769354936493AA9370938493E493D8
1234
+ 9428938793CC939893B893BF93A693B093B5944C93E293DC93DD93CD93DE93C3
1235
+ 93C793D19414941D93F794659413946D9420947993F99419944A9432943F9454
1236
+ 9463937E77E777EC96C979D579ED79E379EB7A065D477A037A027A1E7A140000
1237
+ 0000000000000000000000000000000000000000000000000000000000000000
1238
+ 0000000000000000000000000000000000000000000000000000000000000000
1239
+ 0000000000000000000000000000000000000000000000000000000000000000
1240
+ 0000000000000000000000000000000000000000000000000000000000000000
1241
+ 0000000000000000000000000000000000000000000000000000000000000000
1242
+ 0000000000000000000000000000000000000000000000000000000000000000
1243
+ 0000000000000000000000000000000000000000000000000000000000000000
1244
+ 0000000000000000000000000000000000000000000000000000000000000000
1245
+ 70
1246
+ 0000000000000000000000000000000000000000000000000000000000000000
1247
+ 0000000000000000000000000000000000000000000000000000000000000000
1248
+ 00007A397A377A619ECF99A57A707688768E7693769976A474DE74E0752C9CE9
1249
+ 9CF69D079D069D239D879E159D1D9D1F9DE59D2F9DD99D309D429E1E9D539E1D
1250
+ 9D609D529DF39D5C9D619D939D6A9D6F9D899D989D9A9DC09DA59DA99DC29DBC
1251
+ 9E1A9DD39DDA9DEF9DE69DF29DF89E0C9DFA9E1B7592759476647658759D7667
1252
+ 75A375B375B475B875C475B175B075C375C2760275CD75E3764675E675E47647
1253
+ 75E7760375F175FC75FF761076007649760C761E760A7625763B761576190000
1254
+ 0000000000000000000000000000000000000000000000000000000000000000
1255
+ 0000000000000000000000000000000000000000000000000000000000000000
1256
+ 0000000000000000000000000000000000000000000000000000000000000000
1257
+ 0000000000000000000000000000000000000000000000000000000000000000
1258
+ 0000000000000000000000000000000000000000000000000000000000000000
1259
+ 0000000000000000000000000000000000000000000000000000000000000000
1260
+ 0000000000000000000000000000000000000000000000000000000000000000
1261
+ 0000000000000000000000000000000000000000000000000000000000000000
1262
+ 71
1263
+ 0000000000000000000000000000000000000000000000000000000000000000
1264
+ 0000000000000000000000000000000000000000000000000000000000000000
1265
+ 0000761B763C762276207640762D7630766D76357643766E7633764D76697654
1266
+ 765C76567672766F7FCA7AE67A787A797A807A867A887A957AC77AA07AAC7AA8
1267
+ 7AB67AB3886488698872887D887F888288A2896088B788BC88C9893388CE895D
1268
+ 894788F1891A88FC88E888FE88F08921891989138938890A8964892B89368941
1269
+ 8966897B758B80E576B876B477DC801280148016801C8020802E80258026802C
1270
+ 802980288031800B803580438046807980528075807189839807980E980F0000
1271
+ 0000000000000000000000000000000000000000000000000000000000000000
1272
+ 0000000000000000000000000000000000000000000000000000000000000000
1273
+ 0000000000000000000000000000000000000000000000000000000000000000
1274
+ 0000000000000000000000000000000000000000000000000000000000000000
1275
+ 0000000000000000000000000000000000000000000000000000000000000000
1276
+ 0000000000000000000000000000000000000000000000000000000000000000
1277
+ 0000000000000000000000000000000000000000000000000000000000000000
1278
+ 0000000000000000000000000000000000000000000000000000000000000000
1279
+ 72
1280
+ 0000000000000000000000000000000000000000000000000000000000000000
1281
+ 0000000000000000000000000000000000000000000000000000000000000000
1282
+ 00009821981C6F4198269837984E98539873986298599865986C9870864D8654
1283
+ 866C87E38806867A867C867B86A8868D868B8706869D86A786A386AA869386A9
1284
+ 86B686C486B5882386B086BA86B186AF86C987F686B486E986FA87EF86ED8784
1285
+ 86D0871386DE881086DF86D886D18703870786F88708870A870D87098723873B
1286
+ 871E8725872E871A873E87C88734873187298737873F87828722877D8811877B
1287
+ 87608770874C876E878B8753876387BB876487598765879387AF87CE87D20000
1288
+ 0000000000000000000000000000000000000000000000000000000000000000
1289
+ 0000000000000000000000000000000000000000000000000000000000000000
1290
+ 0000000000000000000000000000000000000000000000000000000000000000
1291
+ 0000000000000000000000000000000000000000000000000000000000000000
1292
+ 0000000000000000000000000000000000000000000000000000000000000000
1293
+ 0000000000000000000000000000000000000000000000000000000000000000
1294
+ 0000000000000000000000000000000000000000000000000000000000000000
1295
+ 0000000000000000000000000000000000000000000000000000000000000000
1296
+ 73
1297
+ 0000000000000000000000000000000000000000000000000000000000000000
1298
+ 0000000000000000000000000000000000000000000000000000000000000000
1299
+ 000087C68788878587AD8797878387AB87E587AC87B587B387CB87D387BD87D1
1300
+ 87C087CA87DB87EA87E087EE8816881387FE880A881B88218839883C7F367F4C
1301
+ 7F447F4582107AFA7AFD7B087BE47B047B677B0A7B2B7B0F7B477B387B2A7B19
1302
+ 7B2E7B317B207B257B247B337C697B1E7B587BF37B457B757B4C7B8F7B607B6E
1303
+ 7B7B7B627B727B717B907C007BCB7BB87BAC7B9D7C5C7B857C1E7B9C7BA27C2B
1304
+ 7BB47C237BC17BCC7BDD7BDA7BE57BE67BEA7C0C7BFE7BFC7C0F7C6A7C0B0000
1305
+ 0000000000000000000000000000000000000000000000000000000000000000
1306
+ 0000000000000000000000000000000000000000000000000000000000000000
1307
+ 0000000000000000000000000000000000000000000000000000000000000000
1308
+ 0000000000000000000000000000000000000000000000000000000000000000
1309
+ 0000000000000000000000000000000000000000000000000000000000000000
1310
+ 0000000000000000000000000000000000000000000000000000000000000000
1311
+ 0000000000000000000000000000000000000000000000000000000000000000
1312
+ 0000000000000000000000000000000000000000000000000000000000000000
1313
+ 74
1314
+ 0000000000000000000000000000000000000000000000000000000000000000
1315
+ 0000000000000000000000000000000000000000000000000000000000000000
1316
+ 00007C1F7C2A7C267C387C5F7C4081FE82018202820481EC8844822182228264
1317
+ 822D822F8228822B8238826B82338234823E82448249824B824F825A825F8268
1318
+ 887E88CA888888D888DF895E7F9D7FA57FA77FAF7FB07FB27C7C65497C917CF2
1319
+ 7CF67C9E7CA27CB27CBC7CBD7CDD7CC77CCC7CCD7CC87CC57CD77CE8826E66A8
1320
+ 7FBF7FCE7FD57FE57FE17FE67FE97FEE7FF37CF87E367DA67DAE7E477E9B9EA9
1321
+ 9EB48D738D848D948D918DB28D678D6D8C478C49914A9150914E914F91640000
1322
+ 0000000000000000000000000000000000000000000000000000000000000000
1323
+ 0000000000000000000000000000000000000000000000000000000000000000
1324
+ 0000000000000000000000000000000000000000000000000000000000000000
1325
+ 0000000000000000000000000000000000000000000000000000000000000000
1326
+ 0000000000000000000000000000000000000000000000000000000000000000
1327
+ 0000000000000000000000000000000000000000000000000000000000000000
1328
+ 0000000000000000000000000000000000000000000000000000000000000000
1329
+ 0000000000000000000000000000000000000000000000000000000000000000
1330
+ 75
1331
+ 0000000000000000000000000000000000000000000000000000000000000000
1332
+ 0000000000000000000000000000000000000000000000000000000000000000
1333
+ 00009162916191709169916F91C591C3917291749179918C91859190918D9191
1334
+ 91A291A391AA91AD91AE91AF91B591B491BA8C559E7A8E898DEB8E058E598E69
1335
+ 8DB58DBF8DBC8DBA8E4C8DD68DD78DDA8E928DCE8DCF8DDB8DC68DEC8E7A8E55
1336
+ 8DE38E9A8E8B8DE48E098DFD8E148E1D8E1F8E938E2E8E238E918E3A8E408E39
1337
+ 8E358E3D8E318E498E418E428EA18E638E4A8E708E768E7C8E6F8E748E858EAA
1338
+ 8E948E908EA68E9E8C788C828C8A8C858C988C94659B89D689F489DA89DC0000
1339
+ 0000000000000000000000000000000000000000000000000000000000000000
1340
+ 0000000000000000000000000000000000000000000000000000000000000000
1341
+ 0000000000000000000000000000000000000000000000000000000000000000
1342
+ 0000000000000000000000000000000000000000000000000000000000000000
1343
+ 0000000000000000000000000000000000000000000000000000000000000000
1344
+ 0000000000000000000000000000000000000000000000000000000000000000
1345
+ 0000000000000000000000000000000000000000000000000000000000000000
1346
+ 0000000000000000000000000000000000000000000000000000000000000000
1347
+ 76
1348
+ 0000000000000000000000000000000000000000000000000000000000000000
1349
+ 0000000000000000000000000000000000000000000000000000000000000000
1350
+ 000089E589EB89F68A3E8B26975A96E9974296EF9706973D9708970F970E972A
1351
+ 97449730973E9F549F5F9F599F609F5C9F669F6C9F6A9F779EFD9EFF9F0996B9
1352
+ 96BC96BD96CE96D277BF8B8E928E947E92C893E8936A93CA938F943E946B9B77
1353
+ 9B749B819B839B8E9C787A4C9B929C5F9B909BAD9B9A9BAA9B9E9C6D9BAB9B9D
1354
+ 9C589BC19C7A9C319C399C239C379BC09BCA9BC79BFD9BD69BEA9BEB9BE19BE4
1355
+ 9BE79BDD9BE29BF09BDB9BF49BD49C5D9C089C109C0D9C129C099BFF9C200000
1356
+ 0000000000000000000000000000000000000000000000000000000000000000
1357
+ 0000000000000000000000000000000000000000000000000000000000000000
1358
+ 0000000000000000000000000000000000000000000000000000000000000000
1359
+ 0000000000000000000000000000000000000000000000000000000000000000
1360
+ 0000000000000000000000000000000000000000000000000000000000000000
1361
+ 0000000000000000000000000000000000000000000000000000000000000000
1362
+ 0000000000000000000000000000000000000000000000000000000000000000
1363
+ 0000000000000000000000000000000000000000000000000000000000000000
1364
+ 77
1365
+ 0000000000000000000000000000000000000000000000000000000000000000
1366
+ 0000000000000000000000000000000000000000000000000000000000000000
1367
+ 00009C329C2D9C289C259C299C339C3E9C489C3B9C359C459C569C549C529C67
1368
+ 977C978597C397BD979497C997AB97A397B297B49AB19AB09AB79DBB9AB69ABA
1369
+ 9ABC9AC19AC09ACF9AC29AD69AD59AD19B459B439B589B4E9B489B4D9B519957
1370
+ 995C992E995599549ADF9AE19AE69AEF9AEB9AFB9AED9AF99B089B0F9B229B1F
1371
+ 9B234E489EBE7E3B9E829E879E889E8B9E9293D69E9D9E9F9EDB9EDC9EDD9EE0
1372
+ 9EDF9EE29EF79EE79EE59EF29EEF9F229F2C9F2F9F399F379F3D9F3E9F440000
1373
+ 0000000000000000000000000000000000000000000000000000000000000000
1374
+ 0000000000000000000000000000000000000000000000000000000000000000
1375
+ 0000000000000000000000000000000000000000000000000000000000000000
1376
+ 0000000000000000000000000000000000000000000000000000000000000000
1377
+ 0000000000000000000000000000000000000000000000000000000000000000
1378
+ 0000000000000000000000000000000000000000000000000000000000000000
1379
+ 0000000000000000000000000000000000000000000000000000000000000000
1380
+ 0000000000000000000000000000000000000000000000000000000000000000
1381
+ 78
1382
+ 0000000000000000000000000000000000000000000000000000000000000000
1383
+ 0000000000000000000000000000000000000000000000000000000000000000
1384
+ 0000896C95C693365F4685147E94538251B24E119F635679515A6DC09F156597
1385
+ 56419AEE83034E3089075E727A4098B35E7F95A49B0D52128FF45F597A6B98E2
1386
+ 51E050A24EF7835085915118636E6372524B5938774F8721814A7E8D91CC66C6
1387
+ 5E1877AD9E7556C99EF46FDB61DE77C770309EB5884A95E282F951ED62514EC6
1388
+ 673497C67C647E3497A69EAF786E820D672F677E56CC53F098B16AAF7F4E6D82
1389
+ 7CF04E074FC27E6B9E7956AE9B1A846F53F690C179A67C72613F4E919AD20000
1390
+ 0000000000000000000000000000000000000000000000000000000000000000
1391
+ 0000000000000000000000000000000000000000000000000000000000000000
1392
+ 0000000000000000000000000000000000000000000000000000000000000000
1393
+ 0000000000000000000000000000000000000000000000000000000000000000
1394
+ 0000000000000000000000000000000000000000000000000000000000000000
1395
+ 0000000000000000000000000000000000000000000000000000000000000000
1396
+ 0000000000000000000000000000000000000000000000000000000000000000
1397
+ 0000000000000000000000000000000000000000000000000000000000000000
1398
+ 79
1399
+ 0000000000000000000000000000000000000000000000000000000000000000
1400
+ 0000000000000000000000000000000000000000000000000000000000000000
1401
+ 000075C796BB53EA7DFB88FD79CD78437B5151C6000000000000000000000000
1402
+ 0000000000000000000000000000000000000000000000000000000000000000
1403
+ 0000000000000000000000000000000000000000000000000000000000000000
1404
+ 0000000000000000000000000000000000000000000000000000000000000000
1405
+ 0000000000000000000000000000000000000000000000000000000000000000
1406
+ 0000000000000000000000000000000000000000000000000000000000000000
1407
+ 0000000000000000000000000000000000000000000000000000000000000000
1408
+ 0000000000000000000000000000000000000000000000000000000000000000
1409
+ 0000000000000000000000000000000000000000000000000000000000000000
1410
+ 0000000000000000000000000000000000000000000000000000000000000000
1411
+ 0000000000000000000000000000000000000000000000000000000000000000
1412
+ 0000000000000000000000000000000000000000000000000000000000000000
1413
+ 0000000000000000000000000000000000000000000000000000000000000000
1414
+ 0000000000000000000000000000000000000000000000000000000000000000
parrot/lib/tcl8.6/encoding/gb2312.enc ADDED
@@ -0,0 +1,1397 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding file: euc-cn, multi-byte
2
+ M
3
+ 003F 0 82
4
+ 00
5
+ 0000000100020003000400050006000700080009000A000B000C000D000E000F
6
+ 0010001100120013001400150016001700180019001A001B001C001D001E001F
7
+ 0020002100220023002400250026002700280029002A002B002C002D002E002F
8
+ 0030003100320033003400350036003700380039003A003B003C003D003E003F
9
+ 0040004100420043004400450046004700480049004A004B004C004D004E004F
10
+ 0050005100520053005400550056005700580059005A005B005C005D005E005F
11
+ 0060006100620063006400650066006700680069006A006B006C006D006E006F
12
+ 0070007100720073007400750076007700780079007A007B007C007D007E007F
13
+ 0080008100820083008400850086008700880089008A008B008C008D008E008F
14
+ 0090009100920093009400950096009700980099009A009B009C009D009E009F
15
+ 0000000000000000000000000000000000000000000000000000000000000000
16
+ 0000000000000000000000000000000000000000000000000000000000000000
17
+ 0000000000000000000000000000000000000000000000000000000000000000
18
+ 0000000000000000000000000000000000000000000000000000000000000000
19
+ 0000000000000000000000000000000000000000000000000000000000000000
20
+ 0000000000000000000000000000000000000000000000000000000000000000
21
+ A1
22
+ 0000000000000000000000000000000000000000000000000000000000000000
23
+ 0000000000000000000000000000000000000000000000000000000000000000
24
+ 0000000000000000000000000000000000000000000000000000000000000000
25
+ 0000000000000000000000000000000000000000000000000000000000000000
26
+ 0000000000000000000000000000000000000000000000000000000000000000
27
+ 0000000000000000000000000000000000000000000000000000000000000000
28
+ 0000000000000000000000000000000000000000000000000000000000000000
29
+ 0000000000000000000000000000000000000000000000000000000000000000
30
+ 0000000000000000000000000000000000000000000000000000000000000000
31
+ 0000000000000000000000000000000000000000000000000000000000000000
32
+ 000030003001300230FB02C902C700A8300330052015FF5E2225202620182019
33
+ 201C201D3014301530083009300A300B300C300D300E300F3016301730103011
34
+ 00B100D700F72236222722282211220F222A222922082237221A22A522252220
35
+ 23122299222B222E2261224C2248223D221D2260226E226F22642265221E2235
36
+ 22342642264000B0203220332103FF0400A4FFE0FFE1203000A7211626062605
37
+ 25CB25CF25CE25C725C625A125A025B325B2203B219221902191219330130000
38
+ A2
39
+ 0000000000000000000000000000000000000000000000000000000000000000
40
+ 0000000000000000000000000000000000000000000000000000000000000000
41
+ 0000000000000000000000000000000000000000000000000000000000000000
42
+ 0000000000000000000000000000000000000000000000000000000000000000
43
+ 0000000000000000000000000000000000000000000000000000000000000000
44
+ 0000000000000000000000000000000000000000000000000000000000000000
45
+ 0000000000000000000000000000000000000000000000000000000000000000
46
+ 0000000000000000000000000000000000000000000000000000000000000000
47
+ 0000000000000000000000000000000000000000000000000000000000000000
48
+ 0000000000000000000000000000000000000000000000000000000000000000
49
+ 0000000000000000000000000000000000000000000000000000000000000000
50
+ 000024882489248A248B248C248D248E248F2490249124922493249424952496
51
+ 249724982499249A249B247424752476247724782479247A247B247C247D247E
52
+ 247F248024812482248324842485248624872460246124622463246424652466
53
+ 2467246824690000000032203221322232233224322532263227322832290000
54
+ 00002160216121622163216421652166216721682169216A216B000000000000
55
+ A3
56
+ 0000000000000000000000000000000000000000000000000000000000000000
57
+ 0000000000000000000000000000000000000000000000000000000000000000
58
+ 0000000000000000000000000000000000000000000000000000000000000000
59
+ 0000000000000000000000000000000000000000000000000000000000000000
60
+ 0000000000000000000000000000000000000000000000000000000000000000
61
+ 0000000000000000000000000000000000000000000000000000000000000000
62
+ 0000000000000000000000000000000000000000000000000000000000000000
63
+ 0000000000000000000000000000000000000000000000000000000000000000
64
+ 0000000000000000000000000000000000000000000000000000000000000000
65
+ 0000000000000000000000000000000000000000000000000000000000000000
66
+ 0000FF01FF02FF03FFE5FF05FF06FF07FF08FF09FF0AFF0BFF0CFF0DFF0EFF0F
67
+ FF10FF11FF12FF13FF14FF15FF16FF17FF18FF19FF1AFF1BFF1CFF1DFF1EFF1F
68
+ FF20FF21FF22FF23FF24FF25FF26FF27FF28FF29FF2AFF2BFF2CFF2DFF2EFF2F
69
+ FF30FF31FF32FF33FF34FF35FF36FF37FF38FF39FF3AFF3BFF3CFF3DFF3EFF3F
70
+ FF40FF41FF42FF43FF44FF45FF46FF47FF48FF49FF4AFF4BFF4CFF4DFF4EFF4F
71
+ FF50FF51FF52FF53FF54FF55FF56FF57FF58FF59FF5AFF5BFF5CFF5DFFE30000
72
+ A4
73
+ 0000000000000000000000000000000000000000000000000000000000000000
74
+ 0000000000000000000000000000000000000000000000000000000000000000
75
+ 0000000000000000000000000000000000000000000000000000000000000000
76
+ 0000000000000000000000000000000000000000000000000000000000000000
77
+ 0000000000000000000000000000000000000000000000000000000000000000
78
+ 0000000000000000000000000000000000000000000000000000000000000000
79
+ 0000000000000000000000000000000000000000000000000000000000000000
80
+ 0000000000000000000000000000000000000000000000000000000000000000
81
+ 0000000000000000000000000000000000000000000000000000000000000000
82
+ 0000000000000000000000000000000000000000000000000000000000000000
83
+ 0000304130423043304430453046304730483049304A304B304C304D304E304F
84
+ 3050305130523053305430553056305730583059305A305B305C305D305E305F
85
+ 3060306130623063306430653066306730683069306A306B306C306D306E306F
86
+ 3070307130723073307430753076307730783079307A307B307C307D307E307F
87
+ 3080308130823083308430853086308730883089308A308B308C308D308E308F
88
+ 3090309130923093000000000000000000000000000000000000000000000000
89
+ A5
90
+ 0000000000000000000000000000000000000000000000000000000000000000
91
+ 0000000000000000000000000000000000000000000000000000000000000000
92
+ 0000000000000000000000000000000000000000000000000000000000000000
93
+ 0000000000000000000000000000000000000000000000000000000000000000
94
+ 0000000000000000000000000000000000000000000000000000000000000000
95
+ 0000000000000000000000000000000000000000000000000000000000000000
96
+ 0000000000000000000000000000000000000000000000000000000000000000
97
+ 0000000000000000000000000000000000000000000000000000000000000000
98
+ 0000000000000000000000000000000000000000000000000000000000000000
99
+ 0000000000000000000000000000000000000000000000000000000000000000
100
+ 000030A130A230A330A430A530A630A730A830A930AA30AB30AC30AD30AE30AF
101
+ 30B030B130B230B330B430B530B630B730B830B930BA30BB30BC30BD30BE30BF
102
+ 30C030C130C230C330C430C530C630C730C830C930CA30CB30CC30CD30CE30CF
103
+ 30D030D130D230D330D430D530D630D730D830D930DA30DB30DC30DD30DE30DF
104
+ 30E030E130E230E330E430E530E630E730E830E930EA30EB30EC30ED30EE30EF
105
+ 30F030F130F230F330F430F530F6000000000000000000000000000000000000
106
+ A6
107
+ 0000000000000000000000000000000000000000000000000000000000000000
108
+ 0000000000000000000000000000000000000000000000000000000000000000
109
+ 0000000000000000000000000000000000000000000000000000000000000000
110
+ 0000000000000000000000000000000000000000000000000000000000000000
111
+ 0000000000000000000000000000000000000000000000000000000000000000
112
+ 0000000000000000000000000000000000000000000000000000000000000000
113
+ 0000000000000000000000000000000000000000000000000000000000000000
114
+ 0000000000000000000000000000000000000000000000000000000000000000
115
+ 0000000000000000000000000000000000000000000000000000000000000000
116
+ 0000000000000000000000000000000000000000000000000000000000000000
117
+ 0000039103920393039403950396039703980399039A039B039C039D039E039F
118
+ 03A003A103A303A403A503A603A703A803A90000000000000000000000000000
119
+ 000003B103B203B303B403B503B603B703B803B903BA03BB03BC03BD03BE03BF
120
+ 03C003C103C303C403C503C603C703C803C90000000000000000000000000000
121
+ 0000000000000000000000000000000000000000000000000000000000000000
122
+ 0000000000000000000000000000000000000000000000000000000000000000
123
+ A7
124
+ 0000000000000000000000000000000000000000000000000000000000000000
125
+ 0000000000000000000000000000000000000000000000000000000000000000
126
+ 0000000000000000000000000000000000000000000000000000000000000000
127
+ 0000000000000000000000000000000000000000000000000000000000000000
128
+ 0000000000000000000000000000000000000000000000000000000000000000
129
+ 0000000000000000000000000000000000000000000000000000000000000000
130
+ 0000000000000000000000000000000000000000000000000000000000000000
131
+ 0000000000000000000000000000000000000000000000000000000000000000
132
+ 0000000000000000000000000000000000000000000000000000000000000000
133
+ 0000000000000000000000000000000000000000000000000000000000000000
134
+ 000004100411041204130414041504010416041704180419041A041B041C041D
135
+ 041E041F0420042104220423042404250426042704280429042A042B042C042D
136
+ 042E042F00000000000000000000000000000000000000000000000000000000
137
+ 000004300431043204330434043504510436043704380439043A043B043C043D
138
+ 043E043F0440044104420443044404450446044704480449044A044B044C044D
139
+ 044E044F00000000000000000000000000000000000000000000000000000000
140
+ A8
141
+ 0000000000000000000000000000000000000000000000000000000000000000
142
+ 0000000000000000000000000000000000000000000000000000000000000000
143
+ 0000000000000000000000000000000000000000000000000000000000000000
144
+ 0000000000000000000000000000000000000000000000000000000000000000
145
+ 0000000000000000000000000000000000000000000000000000000000000000
146
+ 0000000000000000000000000000000000000000000000000000000000000000
147
+ 0000000000000000000000000000000000000000000000000000000000000000
148
+ 0000000000000000000000000000000000000000000000000000000000000000
149
+ 0000000000000000000000000000000000000000000000000000000000000000
150
+ 0000000000000000000000000000000000000000000000000000000000000000
151
+ 0000010100E101CE00E0011300E9011B00E8012B00ED01D000EC014D00F301D2
152
+ 00F2016B00FA01D400F901D601D801DA01DC00FC00EA00000000000000000000
153
+ 0000000000000000000031053106310731083109310A310B310C310D310E310F
154
+ 3110311131123113311431153116311731183119311A311B311C311D311E311F
155
+ 3120312131223123312431253126312731283129000000000000000000000000
156
+ 0000000000000000000000000000000000000000000000000000000000000000
157
+ A9
158
+ 0000000000000000000000000000000000000000000000000000000000000000
159
+ 0000000000000000000000000000000000000000000000000000000000000000
160
+ 0000000000000000000000000000000000000000000000000000000000000000
161
+ 0000000000000000000000000000000000000000000000000000000000000000
162
+ 0000000000000000000000000000000000000000000000000000000000000000
163
+ 0000000000000000000000000000000000000000000000000000000000000000
164
+ 0000000000000000000000000000000000000000000000000000000000000000
165
+ 0000000000000000000000000000000000000000000000000000000000000000
166
+ 0000000000000000000000000000000000000000000000000000000000000000
167
+ 0000000000000000000000000000000000000000000000000000000000000000
168
+ 00000000000000002500250125022503250425052506250725082509250A250B
169
+ 250C250D250E250F2510251125122513251425152516251725182519251A251B
170
+ 251C251D251E251F2520252125222523252425252526252725282529252A252B
171
+ 252C252D252E252F2530253125322533253425352536253725382539253A253B
172
+ 253C253D253E253F2540254125422543254425452546254725482549254A254B
173
+ 0000000000000000000000000000000000000000000000000000000000000000
174
+ B0
175
+ 0000000000000000000000000000000000000000000000000000000000000000
176
+ 0000000000000000000000000000000000000000000000000000000000000000
177
+ 0000000000000000000000000000000000000000000000000000000000000000
178
+ 0000000000000000000000000000000000000000000000000000000000000000
179
+ 0000000000000000000000000000000000000000000000000000000000000000
180
+ 0000000000000000000000000000000000000000000000000000000000000000
181
+ 0000000000000000000000000000000000000000000000000000000000000000
182
+ 0000000000000000000000000000000000000000000000000000000000000000
183
+ 0000000000000000000000000000000000000000000000000000000000000000
184
+ 0000000000000000000000000000000000000000000000000000000000000000
185
+ 0000554A963F57C3632854CE550954C07691764C853C77EE827E788D72319698
186
+ 978D6C285B894FFA630966975CB880FA684880AE660276CE51F9655671AC7FF1
187
+ 888450B2596561CA6FB382AD634C625253ED54277B06516B75A45DF462D48DCB
188
+ 9776628A8019575D97387F627238767D67CF767E64464F708D2562DC7A176591
189
+ 73ED642C6273822C9881677F7248626E62CC4F3474E3534A529E7ECA90A65E2E
190
+ 6886699C81807ED168D278C5868C9551508D8C2482DE80DE5305891252650000
191
+ B1
192
+ 0000000000000000000000000000000000000000000000000000000000000000
193
+ 0000000000000000000000000000000000000000000000000000000000000000
194
+ 0000000000000000000000000000000000000000000000000000000000000000
195
+ 0000000000000000000000000000000000000000000000000000000000000000
196
+ 0000000000000000000000000000000000000000000000000000000000000000
197
+ 0000000000000000000000000000000000000000000000000000000000000000
198
+ 0000000000000000000000000000000000000000000000000000000000000000
199
+ 0000000000000000000000000000000000000000000000000000000000000000
200
+ 0000000000000000000000000000000000000000000000000000000000000000
201
+ 0000000000000000000000000000000000000000000000000000000000000000
202
+ 0000858496F94FDD582199715B9D62B162A566B48C799C8D7206676F789160B2
203
+ 535153178F8880CC8D1D94A1500D72C8590760EB711988AB595482EF672C7B28
204
+ 5D297EF7752D6CF58E668FF8903C9F3B6BD491197B145F7C78A784D6853D6BD5
205
+ 6BD96BD65E015E8775F995ED655D5F0A5FC58F9F58C181C2907F965B97AD8FB9
206
+ 7F168D2C62414FBF53D8535E8FA88FA98FAB904D68075F6A819888689CD6618B
207
+ 522B762A5F6C658C6FD26EE85BBE6448517551B067C44E1979C9997C70B30000
208
+ B2
209
+ 0000000000000000000000000000000000000000000000000000000000000000
210
+ 0000000000000000000000000000000000000000000000000000000000000000
211
+ 0000000000000000000000000000000000000000000000000000000000000000
212
+ 0000000000000000000000000000000000000000000000000000000000000000
213
+ 0000000000000000000000000000000000000000000000000000000000000000
214
+ 0000000000000000000000000000000000000000000000000000000000000000
215
+ 0000000000000000000000000000000000000000000000000000000000000000
216
+ 0000000000000000000000000000000000000000000000000000000000000000
217
+ 0000000000000000000000000000000000000000000000000000000000000000
218
+ 0000000000000000000000000000000000000000000000000000000000000000
219
+ 000075C55E7673BB83E064AD62E894B56CE2535A52C3640F94C27B944F2F5E1B
220
+ 82368116818A6E246CCA9A736355535C54FA886557E04E0D5E036B657C3F90E8
221
+ 601664E6731C88C16750624D8D22776C8E2991C75F6983DC8521991053C28695
222
+ 6B8B60ED60E8707F82CD82314ED36CA785CF64CD7CD969FD66F9834953957B56
223
+ 4FA7518C6D4B5C428E6D63D253C9832C833667E578B4643D5BDF5C945DEE8BE7
224
+ 62C667F48C7A640063BA8749998B8C177F2094F24EA7961098A4660C73160000
225
+ B3
226
+ 0000000000000000000000000000000000000000000000000000000000000000
227
+ 0000000000000000000000000000000000000000000000000000000000000000
228
+ 0000000000000000000000000000000000000000000000000000000000000000
229
+ 0000000000000000000000000000000000000000000000000000000000000000
230
+ 0000000000000000000000000000000000000000000000000000000000000000
231
+ 0000000000000000000000000000000000000000000000000000000000000000
232
+ 0000000000000000000000000000000000000000000000000000000000000000
233
+ 0000000000000000000000000000000000000000000000000000000000000000
234
+ 0000000000000000000000000000000000000000000000000000000000000000
235
+ 0000000000000000000000000000000000000000000000000000000000000000
236
+ 0000573A5C1D5E38957F507F80A05382655E7545553150218D856284949E671D
237
+ 56326F6E5DE2543570928F66626F64A463A35F7B6F8890F481E38FB05C186668
238
+ 5FF16C8996488D81886C649179F057CE6A59621054484E587A0B60E96F848BDA
239
+ 627F901E9A8B79E4540375F4630153196C608FDF5F1B9A70803B9F7F4F885C3A
240
+ 8D647FC565A570BD514551B2866B5D075BA062BD916C75748E0C7A2061017B79
241
+ 4EC77EF877854E1181ED521D51FA6A7153A88E87950496CF6EC19664695A0000
242
+ B4
243
+ 0000000000000000000000000000000000000000000000000000000000000000
244
+ 0000000000000000000000000000000000000000000000000000000000000000
245
+ 0000000000000000000000000000000000000000000000000000000000000000
246
+ 0000000000000000000000000000000000000000000000000000000000000000
247
+ 0000000000000000000000000000000000000000000000000000000000000000
248
+ 0000000000000000000000000000000000000000000000000000000000000000
249
+ 0000000000000000000000000000000000000000000000000000000000000000
250
+ 0000000000000000000000000000000000000000000000000000000000000000
251
+ 0000000000000000000000000000000000000000000000000000000000000000
252
+ 0000000000000000000000000000000000000000000000000000000000000000
253
+ 0000784050A877D7641089E6590463E35DDD7A7F693D4F20823955984E3275AE
254
+ 7A975E625E8A95EF521B5439708A6376952457826625693F918755076DF37EAF
255
+ 882262337EF075B5832878C196CC8F9E614874F78BCD6B64523A8D506B21806A
256
+ 847156F153064ECE4E1B51D17C97918B7C074FC38E7F7BE17A9C64675D1450AC
257
+ 810676017CB96DEC7FE067515B585BF878CB64AE641363AA632B9519642D8FBE
258
+ 7B5476296253592754466B7950A362345E266B864EE38D37888B5F85902E0000
259
+ B5
260
+ 0000000000000000000000000000000000000000000000000000000000000000
261
+ 0000000000000000000000000000000000000000000000000000000000000000
262
+ 0000000000000000000000000000000000000000000000000000000000000000
263
+ 0000000000000000000000000000000000000000000000000000000000000000
264
+ 0000000000000000000000000000000000000000000000000000000000000000
265
+ 0000000000000000000000000000000000000000000000000000000000000000
266
+ 0000000000000000000000000000000000000000000000000000000000000000
267
+ 0000000000000000000000000000000000000000000000000000000000000000
268
+ 0000000000000000000000000000000000000000000000000000000000000000
269
+ 0000000000000000000000000000000000000000000000000000000000000000
270
+ 00006020803D62C54E39535590F863B880C665E66C2E4F4660EE6DE18BDE5F39
271
+ 86CB5F536321515A83616863520063638E4850125C9B79775BFC52307A3B60BC
272
+ 905376D75FB75F9776848E6C706F767B7B4977AA51F3909358244F4E6EF48FEA
273
+ 654C7B1B72C46DA47FDF5AE162B55E95573084827B2C5E1D5F1F90127F1498A0
274
+ 63826EC7789870B95178975B57AB75354F4375385E9760E659606DC06BBF7889
275
+ 53FC96D551CB52016389540A94938C038DCC7239789F87768FED8C0D53E00000
276
+ B6
277
+ 0000000000000000000000000000000000000000000000000000000000000000
278
+ 0000000000000000000000000000000000000000000000000000000000000000
279
+ 0000000000000000000000000000000000000000000000000000000000000000
280
+ 0000000000000000000000000000000000000000000000000000000000000000
281
+ 0000000000000000000000000000000000000000000000000000000000000000
282
+ 0000000000000000000000000000000000000000000000000000000000000000
283
+ 0000000000000000000000000000000000000000000000000000000000000000
284
+ 0000000000000000000000000000000000000000000000000000000000000000
285
+ 0000000000000000000000000000000000000000000000000000000000000000
286
+ 0000000000000000000000000000000000000000000000000000000000000000
287
+ 00004E0176EF53EE948998769F0E952D5B9A8BA24E224E1C51AC846361C252A8
288
+ 680B4F97606B51BB6D1E515C6296659796618C46901775D890FD77636BD2728A
289
+ 72EC8BFB583577798D4C675C9540809A5EA66E2159927AEF77ED953B6BB565AD
290
+ 7F0E58065151961F5BF958A954288E726566987F56E4949D76FE9041638754C6
291
+ 591A593A579B8EB267358DFA8235524160F0581586FE5CE89E454FC4989D8BB9
292
+ 5A2560765384627C904F9102997F6069800C513F80335C1499756D314E8C0000
293
+ B7
294
+ 0000000000000000000000000000000000000000000000000000000000000000
295
+ 0000000000000000000000000000000000000000000000000000000000000000
296
+ 0000000000000000000000000000000000000000000000000000000000000000
297
+ 0000000000000000000000000000000000000000000000000000000000000000
298
+ 0000000000000000000000000000000000000000000000000000000000000000
299
+ 0000000000000000000000000000000000000000000000000000000000000000
300
+ 0000000000000000000000000000000000000000000000000000000000000000
301
+ 0000000000000000000000000000000000000000000000000000000000000000
302
+ 0000000000000000000000000000000000000000000000000000000000000000
303
+ 0000000000000000000000000000000000000000000000000000000000000000
304
+ 00008D3053D17F5A7B4F4F104E4F96006CD573D085E95E06756A7FFB6A0A77FE
305
+ 94927E4151E170E653CD8FD483038D2972AF996D6CDB574A82B365B980AA623F
306
+ 963259A84EFF8BBF7EBA653E83F2975E556198DE80A5532A8BFD542080BA5E9F
307
+ 6CB88D3982AC915A54296C1B52067EB7575F711A6C7E7C89594B4EFD5FFF6124
308
+ 7CAA4E305C0167AB87025CF0950B98CE75AF70FD902251AF7F1D8BBD594951E4
309
+ 4F5B5426592B657780A45B75627662C28F905E456C1F7B264F0F4FD8670D0000
310
+ B8
311
+ 0000000000000000000000000000000000000000000000000000000000000000
312
+ 0000000000000000000000000000000000000000000000000000000000000000
313
+ 0000000000000000000000000000000000000000000000000000000000000000
314
+ 0000000000000000000000000000000000000000000000000000000000000000
315
+ 0000000000000000000000000000000000000000000000000000000000000000
316
+ 0000000000000000000000000000000000000000000000000000000000000000
317
+ 0000000000000000000000000000000000000000000000000000000000000000
318
+ 0000000000000000000000000000000000000000000000000000000000000000
319
+ 0000000000000000000000000000000000000000000000000000000000000000
320
+ 0000000000000000000000000000000000000000000000000000000000000000
321
+ 00006D6E6DAA798F88B15F17752B629A8F854FEF91DC65A7812F81515E9C8150
322
+ 8D74526F89868D4B590D50854ED8961C723681798D1F5BCC8BA3964459877F1A
323
+ 54905676560E8BE565396982949976D66E895E727518674667D17AFF809D8D76
324
+ 611F79C665628D635188521A94A27F38809B7EB25C976E2F67607BD9768B9AD8
325
+ 818F7F947CD5641E95507A3F544A54E56B4C640162089E3D80F3759952729769
326
+ 845B683C86E49601969494EC4E2A54047ED968398DDF801566F45E9A7FB90000
327
+ B9
328
+ 0000000000000000000000000000000000000000000000000000000000000000
329
+ 0000000000000000000000000000000000000000000000000000000000000000
330
+ 0000000000000000000000000000000000000000000000000000000000000000
331
+ 0000000000000000000000000000000000000000000000000000000000000000
332
+ 0000000000000000000000000000000000000000000000000000000000000000
333
+ 0000000000000000000000000000000000000000000000000000000000000000
334
+ 0000000000000000000000000000000000000000000000000000000000000000
335
+ 0000000000000000000000000000000000000000000000000000000000000000
336
+ 0000000000000000000000000000000000000000000000000000000000000000
337
+ 0000000000000000000000000000000000000000000000000000000000000000
338
+ 000057C2803F68975DE5653B529F606D9F9A4F9B8EAC516C5BAB5F135DE96C5E
339
+ 62F18D21517194A952FE6C9F82DF72D757A267848D2D591F8F9C83C754957B8D
340
+ 4F306CBD5B6459D19F1353E486CA9AA88C3780A16545987E56FA96C7522E74DC
341
+ 52505BE1630289024E5662D0602A68FA51735B9851A089C27BA199867F5060EF
342
+ 704C8D2F51495E7F901B747089C4572D78455F529F9F95FA8F689B3C8BE17678
343
+ 684267DC8DEA8D35523D8F8A6EDA68CD950590ED56FD679C88F98FC754C80000
344
+ BA
345
+ 0000000000000000000000000000000000000000000000000000000000000000
346
+ 0000000000000000000000000000000000000000000000000000000000000000
347
+ 0000000000000000000000000000000000000000000000000000000000000000
348
+ 0000000000000000000000000000000000000000000000000000000000000000
349
+ 0000000000000000000000000000000000000000000000000000000000000000
350
+ 0000000000000000000000000000000000000000000000000000000000000000
351
+ 0000000000000000000000000000000000000000000000000000000000000000
352
+ 0000000000000000000000000000000000000000000000000000000000000000
353
+ 0000000000000000000000000000000000000000000000000000000000000000
354
+ 0000000000000000000000000000000000000000000000000000000000000000
355
+ 00009AB85B696D776C264EA55BB39A87916361A890AF97E9542B6DB55BD251FD
356
+ 558A7F557FF064BC634D65F161BE608D710A6C576C49592F676D822A58D5568E
357
+ 8C6A6BEB90DD597D801753F76D695475559D837783CF683879BE548C4F555408
358
+ 76D28C8996026CB36DB88D6B89109E648D3A563F9ED175D55F8872E0606854FC
359
+ 4EA86A2A886160528F7054C470D886799E3F6D2A5B8F5F187EA255894FAF7334
360
+ 543C539A5019540E547C4E4E5FFD745A58F6846B80E1877472D07CCA6E560000
361
+ BB
362
+ 0000000000000000000000000000000000000000000000000000000000000000
363
+ 0000000000000000000000000000000000000000000000000000000000000000
364
+ 0000000000000000000000000000000000000000000000000000000000000000
365
+ 0000000000000000000000000000000000000000000000000000000000000000
366
+ 0000000000000000000000000000000000000000000000000000000000000000
367
+ 0000000000000000000000000000000000000000000000000000000000000000
368
+ 0000000000000000000000000000000000000000000000000000000000000000
369
+ 0000000000000000000000000000000000000000000000000000000000000000
370
+ 0000000000000000000000000000000000000000000000000000000000000000
371
+ 0000000000000000000000000000000000000000000000000000000000000000
372
+ 00005F27864E552C62A44E926CAA623782B154D7534E733E6ED1753B52125316
373
+ 8BDD69D05F8A60006DEE574F6B2273AF68538FD87F13636260A3552475EA8C62
374
+ 71156DA35BA65E7B8352614C9EC478FA87577C27768751F060F6714C66435E4C
375
+ 604D8C0E707063258F895FBD606286D456DE6BC160946167534960E066668D3F
376
+ 79FD4F1A70E96C478BB38BF27ED88364660F5A5A9B426D516DF78C416D3B4F19
377
+ 706B83B7621660D1970D8D27797851FB573E57FA673A75787A3D79EF7B950000
378
+ BC
379
+ 0000000000000000000000000000000000000000000000000000000000000000
380
+ 0000000000000000000000000000000000000000000000000000000000000000
381
+ 0000000000000000000000000000000000000000000000000000000000000000
382
+ 0000000000000000000000000000000000000000000000000000000000000000
383
+ 0000000000000000000000000000000000000000000000000000000000000000
384
+ 0000000000000000000000000000000000000000000000000000000000000000
385
+ 0000000000000000000000000000000000000000000000000000000000000000
386
+ 0000000000000000000000000000000000000000000000000000000000000000
387
+ 0000000000000000000000000000000000000000000000000000000000000000
388
+ 0000000000000000000000000000000000000000000000000000000000000000
389
+ 0000808C99658FF96FC08BA59E2159EC7EE97F095409678168D88F917C4D96C6
390
+ 53CA602575BE6C7253735AC97EA7632451E0810A5DF184DF628051805B634F0E
391
+ 796D524260B86D4E5BC45BC28BA18BB065E25FCC964559937EE77EAA560967B7
392
+ 59394F735BB652A0835A988A8D3E753294BE50477A3C4EF767B69A7E5AC16B7C
393
+ 76D1575A5C167B3A95F4714E517C80A9827059787F04832768C067EC78B17877
394
+ 62E363617B804FED526A51CF835069DB92748DF58D3189C1952E7BAD4EF60000
395
+ BD
396
+ 0000000000000000000000000000000000000000000000000000000000000000
397
+ 0000000000000000000000000000000000000000000000000000000000000000
398
+ 0000000000000000000000000000000000000000000000000000000000000000
399
+ 0000000000000000000000000000000000000000000000000000000000000000
400
+ 0000000000000000000000000000000000000000000000000000000000000000
401
+ 0000000000000000000000000000000000000000000000000000000000000000
402
+ 0000000000000000000000000000000000000000000000000000000000000000
403
+ 0000000000000000000000000000000000000000000000000000000000000000
404
+ 0000000000000000000000000000000000000000000000000000000000000000
405
+ 0000000000000000000000000000000000000000000000000000000000000000
406
+ 0000506582305251996F6E106E856DA75EFA50F559DC5C066D466C5F7586848B
407
+ 686859568BB253209171964D854969127901712680F64EA490CA6D479A845A07
408
+ 56BC640594F077EB4FA5811A72E189D2997A7F347EDE527F655991758F7F8F83
409
+ 53EB7A9663ED63A5768679F888579636622A52AB8282685467706377776B7AED
410
+ 6D017ED389E359D0621285C982A5754C501F4ECB75A58BEB5C4A5DFE7B4B65A4
411
+ 91D14ECA6D25895F7D2795264EC58C288FDB9773664B79818FD170EC6D780000
412
+ BE
413
+ 0000000000000000000000000000000000000000000000000000000000000000
414
+ 0000000000000000000000000000000000000000000000000000000000000000
415
+ 0000000000000000000000000000000000000000000000000000000000000000
416
+ 0000000000000000000000000000000000000000000000000000000000000000
417
+ 0000000000000000000000000000000000000000000000000000000000000000
418
+ 0000000000000000000000000000000000000000000000000000000000000000
419
+ 0000000000000000000000000000000000000000000000000000000000000000
420
+ 0000000000000000000000000000000000000000000000000000000000000000
421
+ 0000000000000000000000000000000000000000000000000000000000000000
422
+ 0000000000000000000000000000000000000000000000000000000000000000
423
+ 00005C3D52B283465162830E775B66769CB84EAC60CA7CBE7CB37ECF4E958B66
424
+ 666F988897595883656C955C5F8475C997567ADF7ADE51C070AF7A9863EA7A76
425
+ 7EA0739697ED4E4570784E5D915253A9655165E781FC8205548E5C31759A97A0
426
+ 62D872D975BD5C459A7983CA5C40548077E94E3E6CAE805A62D2636E5DE85177
427
+ 8DDD8E1E952F4FF153E560E770AC526763509E435A1F5026773753777EE26485
428
+ 652B628963985014723589C951B38BC07EDD574783CC94A7519B541B5CFB0000
429
+ BF
430
+ 0000000000000000000000000000000000000000000000000000000000000000
431
+ 0000000000000000000000000000000000000000000000000000000000000000
432
+ 0000000000000000000000000000000000000000000000000000000000000000
433
+ 0000000000000000000000000000000000000000000000000000000000000000
434
+ 0000000000000000000000000000000000000000000000000000000000000000
435
+ 0000000000000000000000000000000000000000000000000000000000000000
436
+ 0000000000000000000000000000000000000000000000000000000000000000
437
+ 0000000000000000000000000000000000000000000000000000000000000000
438
+ 0000000000000000000000000000000000000000000000000000000000000000
439
+ 0000000000000000000000000000000000000000000000000000000000000000
440
+ 00004FCA7AE36D5A90E19A8F55805496536154AF5F0063E9697751EF6168520A
441
+ 582A52D8574E780D770B5EB761777CE0625B62974EA27095800362F770E49760
442
+ 577782DB67EF68F578D5989779D158F354B353EF6E34514B523B5BA28BFE80AF
443
+ 554357A660735751542D7A7A60505B5463A762A053E362635BC767AF54ED7A9F
444
+ 82E691775E9388E4593857AE630E8DE880EF57577B774FA95FEB5BBD6B3E5321
445
+ 7B5072C2684677FF773665F751B54E8F76D45CBF7AA58475594E9B4150800000
446
+ C0
447
+ 0000000000000000000000000000000000000000000000000000000000000000
448
+ 0000000000000000000000000000000000000000000000000000000000000000
449
+ 0000000000000000000000000000000000000000000000000000000000000000
450
+ 0000000000000000000000000000000000000000000000000000000000000000
451
+ 0000000000000000000000000000000000000000000000000000000000000000
452
+ 0000000000000000000000000000000000000000000000000000000000000000
453
+ 0000000000000000000000000000000000000000000000000000000000000000
454
+ 0000000000000000000000000000000000000000000000000000000000000000
455
+ 0000000000000000000000000000000000000000000000000000000000000000
456
+ 0000000000000000000000000000000000000000000000000000000000000000
457
+ 0000998861276E8357646606634656F062EC62695ED39614578362C955878721
458
+ 814A8FA3556683B167658D5684DD5A6A680F62E67BEE961151706F9C8C3063FD
459
+ 89C861D27F0670C26EE57405699472FC5ECA90CE67176D6A635E52B372628001
460
+ 4F6C59E5916A70D96D9D52D24E5096F7956D857E78CA7D2F5121579264C2808B
461
+ 7C7B6CEA68F1695E51B7539868A872819ECE7BF172F879BB6F137406674E91CC
462
+ 9CA4793C83898354540F68174E3D538952B1783E5386522950884F8B4FD00000
463
+ C1
464
+ 0000000000000000000000000000000000000000000000000000000000000000
465
+ 0000000000000000000000000000000000000000000000000000000000000000
466
+ 0000000000000000000000000000000000000000000000000000000000000000
467
+ 0000000000000000000000000000000000000000000000000000000000000000
468
+ 0000000000000000000000000000000000000000000000000000000000000000
469
+ 0000000000000000000000000000000000000000000000000000000000000000
470
+ 0000000000000000000000000000000000000000000000000000000000000000
471
+ 0000000000000000000000000000000000000000000000000000000000000000
472
+ 0000000000000000000000000000000000000000000000000000000000000000
473
+ 0000000000000000000000000000000000000000000000000000000000000000
474
+ 000075E27ACB7C926CA596B6529B748354E94FE9805483B28FDE95705EC9601C
475
+ 6D9F5E18655B813894FE604B70BC7EC37CAE51C968817CB1826F4E248F8691CF
476
+ 667E4EAE8C0564A9804A50DA759771CE5BE58FBD6F664E86648295635ED66599
477
+ 521788C270C852A3730E7433679778F797164E3490BB9CDE6DCB51DB8D41541D
478
+ 62CE73B283F196F69F8494C34F367F9A51CC707596755CAD988653E64EE46E9C
479
+ 740969B4786B998F7559521876246D4167F3516D9F99804B54997B3C7ABF0000
480
+ C2
481
+ 0000000000000000000000000000000000000000000000000000000000000000
482
+ 0000000000000000000000000000000000000000000000000000000000000000
483
+ 0000000000000000000000000000000000000000000000000000000000000000
484
+ 0000000000000000000000000000000000000000000000000000000000000000
485
+ 0000000000000000000000000000000000000000000000000000000000000000
486
+ 0000000000000000000000000000000000000000000000000000000000000000
487
+ 0000000000000000000000000000000000000000000000000000000000000000
488
+ 0000000000000000000000000000000000000000000000000000000000000000
489
+ 0000000000000000000000000000000000000000000000000000000000000000
490
+ 0000000000000000000000000000000000000000000000000000000000000000
491
+ 00009686578462E29647697C5A0464027BD36F0F964B82A6536298855E907089
492
+ 63B35364864F9C819E93788C97328DEF8D429E7F6F5E79845F559646622E9A74
493
+ 541594DD4FA365C55C655C617F1586516C2F5F8B73876EE47EFF5CE6631B5B6A
494
+ 6EE653754E7163A0756562A18F6E4F264ED16CA67EB68BBA841D87BA7F57903B
495
+ 95237BA99AA188F8843D6D1B9A867EDC59889EBB739B780186829A6C9A82561B
496
+ 541757CB4E709EA653568FC881097792999286EE6EE1851366FC61626F2B0000
497
+ C3
498
+ 0000000000000000000000000000000000000000000000000000000000000000
499
+ 0000000000000000000000000000000000000000000000000000000000000000
500
+ 0000000000000000000000000000000000000000000000000000000000000000
501
+ 0000000000000000000000000000000000000000000000000000000000000000
502
+ 0000000000000000000000000000000000000000000000000000000000000000
503
+ 0000000000000000000000000000000000000000000000000000000000000000
504
+ 0000000000000000000000000000000000000000000000000000000000000000
505
+ 0000000000000000000000000000000000000000000000000000000000000000
506
+ 0000000000000000000000000000000000000000000000000000000000000000
507
+ 0000000000000000000000000000000000000000000000000000000000000000
508
+ 00008C298292832B76F26C135FD983BD732B8305951A6BDB77DB94C6536F8302
509
+ 51925E3D8C8C8D384E4873AB679A68859176970971646CA177095A9295416BCF
510
+ 7F8E66275BD059B95A9A95E895F74EEC840C84996AAC76DF9530731B68A65B5F
511
+ 772F919A97617CDC8FF78C1C5F257C7379D889C56CCC871C5BC65E4268C97720
512
+ 7EF55195514D52C95A297F05976282D763CF778485D079D26E3A5E9959998511
513
+ 706D6C1162BF76BF654F60AF95FD660E879F9E2394ED540D547D8C2C64780000
514
+ C4
515
+ 0000000000000000000000000000000000000000000000000000000000000000
516
+ 0000000000000000000000000000000000000000000000000000000000000000
517
+ 0000000000000000000000000000000000000000000000000000000000000000
518
+ 0000000000000000000000000000000000000000000000000000000000000000
519
+ 0000000000000000000000000000000000000000000000000000000000000000
520
+ 0000000000000000000000000000000000000000000000000000000000000000
521
+ 0000000000000000000000000000000000000000000000000000000000000000
522
+ 0000000000000000000000000000000000000000000000000000000000000000
523
+ 0000000000000000000000000000000000000000000000000000000000000000
524
+ 0000000000000000000000000000000000000000000000000000000000000000
525
+ 0000647986116A21819C78E864699B5462B9672B83AB58A89ED86CAB6F205BDE
526
+ 964C8C0B725F67D062C772614EA959C66BCD589366AE5E5552DF6155672876EE
527
+ 776672677A4662FF54EA545094A090A35A1C7EB36C164E435976801059485357
528
+ 753796BE56CA63208111607C95F96DD65462998151855AE980FD59AE9713502A
529
+ 6CE55C3C62DF4F60533F817B90066EBA852B62C85E7478BE64B5637B5FF55A18
530
+ 917F9E1F5C3F634F80425B7D556E954A954D6D8560A867E072DE51DD5B810000
531
+ C5
532
+ 0000000000000000000000000000000000000000000000000000000000000000
533
+ 0000000000000000000000000000000000000000000000000000000000000000
534
+ 0000000000000000000000000000000000000000000000000000000000000000
535
+ 0000000000000000000000000000000000000000000000000000000000000000
536
+ 0000000000000000000000000000000000000000000000000000000000000000
537
+ 0000000000000000000000000000000000000000000000000000000000000000
538
+ 0000000000000000000000000000000000000000000000000000000000000000
539
+ 0000000000000000000000000000000000000000000000000000000000000000
540
+ 0000000000000000000000000000000000000000000000000000000000000000
541
+ 0000000000000000000000000000000000000000000000000000000000000000
542
+ 000062E76CDE725B626D94AE7EBD81136D53519C5F04597452AA601259736696
543
+ 8650759F632A61E67CEF8BFA54E66B279E256BB485D5545550766CA4556A8DB4
544
+ 722C5E156015743662CD6392724C5F986E436D3E65006F5876D878D076FC7554
545
+ 522453DB4E535E9E65C1802A80D6629B5486522870AE888D8DD16CE1547880DA
546
+ 57F988F48D54966A914D4F696C9B55B776C6783062A870F96F8E5F6D84EC68DA
547
+ 787C7BF781A8670B9E4F636778B0576F78129739627962AB528874356BD70000
548
+ C6
549
+ 0000000000000000000000000000000000000000000000000000000000000000
550
+ 0000000000000000000000000000000000000000000000000000000000000000
551
+ 0000000000000000000000000000000000000000000000000000000000000000
552
+ 0000000000000000000000000000000000000000000000000000000000000000
553
+ 0000000000000000000000000000000000000000000000000000000000000000
554
+ 0000000000000000000000000000000000000000000000000000000000000000
555
+ 0000000000000000000000000000000000000000000000000000000000000000
556
+ 0000000000000000000000000000000000000000000000000000000000000000
557
+ 0000000000000000000000000000000000000000000000000000000000000000
558
+ 0000000000000000000000000000000000000000000000000000000000000000
559
+ 00005564813E75B276AE533975DE50FB5C418B6C7BC7504F72479A9798D86F02
560
+ 74E27968648777A562FC98918D2B54C180584E52576A82F9840D5E7351ED74F6
561
+ 8BC45C4F57616CFC98875A4678349B448FEB7C955256625194FA4EC683868461
562
+ 83E984B257D467345703666E6D668C3166DD7011671F6B3A6816621A59BB4E03
563
+ 51C46F0667D26C8F517668CB59476B6775665D0E81109F5065D7794879419A91
564
+ 8D775C824E5E4F01542F5951780C56686C148FC45F036C7D6CE38BAB63900000
565
+ C7
566
+ 0000000000000000000000000000000000000000000000000000000000000000
567
+ 0000000000000000000000000000000000000000000000000000000000000000
568
+ 0000000000000000000000000000000000000000000000000000000000000000
569
+ 0000000000000000000000000000000000000000000000000000000000000000
570
+ 0000000000000000000000000000000000000000000000000000000000000000
571
+ 0000000000000000000000000000000000000000000000000000000000000000
572
+ 0000000000000000000000000000000000000000000000000000000000000000
573
+ 0000000000000000000000000000000000000000000000000000000000000000
574
+ 0000000000000000000000000000000000000000000000000000000000000000
575
+ 0000000000000000000000000000000000000000000000000000000000000000
576
+ 000060706D3D72756266948E94C553438FC17B7E4EDF8C264E7E9ED494B194B3
577
+ 524D6F5C90636D458C3458115D4C6B206B4967AA545B81547F8C589985375F3A
578
+ 62A26A47953965726084686577A74E544FA85DE7979864AC7FD85CED4FCF7A8D
579
+ 520783044E14602F7A8394A64FB54EB279E6743452E482B964D279BD5BDD6C81
580
+ 97528F7B6C22503E537F6E0564CE66746C3060C598778BF75E86743C7A7779CB
581
+ 4E1890B174036C4256DA914B6CC58D8B533A86C666F28EAF5C489A716E200000
582
+ C8
583
+ 0000000000000000000000000000000000000000000000000000000000000000
584
+ 0000000000000000000000000000000000000000000000000000000000000000
585
+ 0000000000000000000000000000000000000000000000000000000000000000
586
+ 0000000000000000000000000000000000000000000000000000000000000000
587
+ 0000000000000000000000000000000000000000000000000000000000000000
588
+ 0000000000000000000000000000000000000000000000000000000000000000
589
+ 0000000000000000000000000000000000000000000000000000000000000000
590
+ 0000000000000000000000000000000000000000000000000000000000000000
591
+ 0000000000000000000000000000000000000000000000000000000000000000
592
+ 0000000000000000000000000000000000000000000000000000000000000000
593
+ 000053D65A369F8B8DA353BB570898A76743919B6CC9516875CA62F372AC5238
594
+ 529D7F3A7094763853749E4A69B7786E96C088D97FA4713671C3518967D374E4
595
+ 58E4651856B78BA9997662707ED560F970ED58EC4EC14EBA5FCD97E74EFB8BA4
596
+ 5203598A7EAB62544ECD65E5620E833884C98363878D71946EB65BB97ED25197
597
+ 63C967D480898339881551125B7A59828FB14E736C5D516589258F6F962E854A
598
+ 745E951095F06DA682E55F3164926D128428816E9CC3585E8D5B4E0953C10000
599
+ C9
600
+ 0000000000000000000000000000000000000000000000000000000000000000
601
+ 0000000000000000000000000000000000000000000000000000000000000000
602
+ 0000000000000000000000000000000000000000000000000000000000000000
603
+ 0000000000000000000000000000000000000000000000000000000000000000
604
+ 0000000000000000000000000000000000000000000000000000000000000000
605
+ 0000000000000000000000000000000000000000000000000000000000000000
606
+ 0000000000000000000000000000000000000000000000000000000000000000
607
+ 0000000000000000000000000000000000000000000000000000000000000000
608
+ 0000000000000000000000000000000000000000000000000000000000000000
609
+ 0000000000000000000000000000000000000000000000000000000000000000
610
+ 00004F1E6563685155D34E2764149A9A626B5AC2745F82726DA968EE50E7838E
611
+ 7802674052396C997EB150BB5565715E7B5B665273CA82EB67495C715220717D
612
+ 886B95EA965564C58D6181B355846C5562477F2E58924F2455468D4F664C4E0A
613
+ 5C1A88F368A2634E7A0D70E7828D52FA97F65C1154E890B57ECD59628D4A86C7
614
+ 820C820D8D6664445C0461516D89793E8BBE78377533547B4F388EAB6DF15A20
615
+ 7EC5795E6C885BA15A76751A80BE614E6E1758F0751F7525727253477EF30000
616
+ CA
617
+ 0000000000000000000000000000000000000000000000000000000000000000
618
+ 0000000000000000000000000000000000000000000000000000000000000000
619
+ 0000000000000000000000000000000000000000000000000000000000000000
620
+ 0000000000000000000000000000000000000000000000000000000000000000
621
+ 0000000000000000000000000000000000000000000000000000000000000000
622
+ 0000000000000000000000000000000000000000000000000000000000000000
623
+ 0000000000000000000000000000000000000000000000000000000000000000
624
+ 0000000000000000000000000000000000000000000000000000000000000000
625
+ 0000000000000000000000000000000000000000000000000000000000000000
626
+ 0000000000000000000000000000000000000000000000000000000000000000
627
+ 0000770176DB526980DC57235E08593172EE65BD6E7F8BD75C388671534177F3
628
+ 62FE65F64EC098DF86805B9E8BC653F277E24F7F5C4E9A7659CB5F0F793A58EB
629
+ 4E1667FF4E8B62ED8A93901D52BF662F55DC566C90024ED54F8D91CA99706C0F
630
+ 5E0260435BA489C68BD56536624B99965B885BFF6388552E53D77626517D852C
631
+ 67A268B36B8A62928F9353D482126DD1758F4E668D4E5B70719F85AF669166D9
632
+ 7F7287009ECD9F205C5E672F8FF06811675F620D7AD658855EB665706F310000
633
+ CB
634
+ 0000000000000000000000000000000000000000000000000000000000000000
635
+ 0000000000000000000000000000000000000000000000000000000000000000
636
+ 0000000000000000000000000000000000000000000000000000000000000000
637
+ 0000000000000000000000000000000000000000000000000000000000000000
638
+ 0000000000000000000000000000000000000000000000000000000000000000
639
+ 0000000000000000000000000000000000000000000000000000000000000000
640
+ 0000000000000000000000000000000000000000000000000000000000000000
641
+ 0000000000000000000000000000000000000000000000000000000000000000
642
+ 0000000000000000000000000000000000000000000000000000000000000000
643
+ 0000000000000000000000000000000000000000000000000000000000000000
644
+ 000060555237800D6454887075295E05681362F4971C53CC723D8C016C347761
645
+ 7A0E542E77AC987A821C8BF47855671470C165AF64955636601D79C153F84E1D
646
+ 6B7B80865BFA55E356DB4F3A4F3C99725DF3677E80386002988290015B8B8BBC
647
+ 8BF5641C825864DE55FD82CF91654FD77D20901F7C9F50F358516EAF5BBF8BC9
648
+ 80839178849C7B97867D968B968F7EE59AD3788E5C817A57904296A7795F5B59
649
+ 635F7B0B84D168AD55067F2974107D2295016240584C4ED65B83597958540000
650
+ CC
651
+ 0000000000000000000000000000000000000000000000000000000000000000
652
+ 0000000000000000000000000000000000000000000000000000000000000000
653
+ 0000000000000000000000000000000000000000000000000000000000000000
654
+ 0000000000000000000000000000000000000000000000000000000000000000
655
+ 0000000000000000000000000000000000000000000000000000000000000000
656
+ 0000000000000000000000000000000000000000000000000000000000000000
657
+ 0000000000000000000000000000000000000000000000000000000000000000
658
+ 0000000000000000000000000000000000000000000000000000000000000000
659
+ 0000000000000000000000000000000000000000000000000000000000000000
660
+ 0000000000000000000000000000000000000000000000000000000000000000
661
+ 0000736D631E8E4B8E0F80CE82D462AC53F06CF0915E592A60016C70574D644A
662
+ 8D2A762B6EE9575B6A8075F06F6D8C2D8C0857666BEF889278B363A253F970AD
663
+ 6C645858642A580268E0819B55107CD650188EBA6DCC8D9F70EB638F6D9B6ED4
664
+ 7EE68404684390036DD896768BA85957727985E4817E75BC8A8A68AF52548E22
665
+ 951163D098988E44557C4F5366FF568F60D56D9552435C4959296DFB586B7530
666
+ 751C606C82148146631167618FE2773A8DF38D3494C15E165385542C70C30000
667
+ CD
668
+ 0000000000000000000000000000000000000000000000000000000000000000
669
+ 0000000000000000000000000000000000000000000000000000000000000000
670
+ 0000000000000000000000000000000000000000000000000000000000000000
671
+ 0000000000000000000000000000000000000000000000000000000000000000
672
+ 0000000000000000000000000000000000000000000000000000000000000000
673
+ 0000000000000000000000000000000000000000000000000000000000000000
674
+ 0000000000000000000000000000000000000000000000000000000000000000
675
+ 0000000000000000000000000000000000000000000000000000000000000000
676
+ 0000000000000000000000000000000000000000000000000000000000000000
677
+ 0000000000000000000000000000000000000000000000000000000000000000
678
+ 00006C405EF7505C4EAD5EAD633A8247901A6850916E77B3540C94DC5F647AE5
679
+ 687663457B527EDF75DB507762955934900F51F879C37A8156FE5F9290146D82
680
+ 5C60571F541051546E4D56E263A89893817F8715892A9000541E5C6F81C062D6
681
+ 625881319E3596409A6E9A7C692D59A562D3553E631654C786D96D3C5A0374E6
682
+ 889C6B6A59168C4C5F2F6E7E73A9987D4E3870F75B8C7897633D665A769660CB
683
+ 5B9B5A494E0781556C6A738B4EA167897F515F8065FA671B5FD859845A010000
684
+ CE
685
+ 0000000000000000000000000000000000000000000000000000000000000000
686
+ 0000000000000000000000000000000000000000000000000000000000000000
687
+ 0000000000000000000000000000000000000000000000000000000000000000
688
+ 0000000000000000000000000000000000000000000000000000000000000000
689
+ 0000000000000000000000000000000000000000000000000000000000000000
690
+ 0000000000000000000000000000000000000000000000000000000000000000
691
+ 0000000000000000000000000000000000000000000000000000000000000000
692
+ 0000000000000000000000000000000000000000000000000000000000000000
693
+ 0000000000000000000000000000000000000000000000000000000000000000
694
+ 0000000000000000000000000000000000000000000000000000000000000000
695
+ 00005DCD5FAE537197E68FDD684556F4552F60DF4E3A6F4D7EF482C7840E59D4
696
+ 4F1F4F2A5C3E7EAC672A851A5473754F80C355829B4F4F4D6E2D8C135C096170
697
+ 536B761F6E29868A658795FB7EB9543B7A337D0A95EE55E17FC174EE631D8717
698
+ 6DA17A9D621165A1536763E16C835DEB545C94A84E4C6C618BEC5C4B65E0829C
699
+ 68A7543E54346BCB6B664E9463425348821E4F0D4FAE575E620A96FE66647269
700
+ 52FF52A1609F8BEF661471996790897F785277FD6670563B54389521727A0000
701
+ CF
702
+ 0000000000000000000000000000000000000000000000000000000000000000
703
+ 0000000000000000000000000000000000000000000000000000000000000000
704
+ 0000000000000000000000000000000000000000000000000000000000000000
705
+ 0000000000000000000000000000000000000000000000000000000000000000
706
+ 0000000000000000000000000000000000000000000000000000000000000000
707
+ 0000000000000000000000000000000000000000000000000000000000000000
708
+ 0000000000000000000000000000000000000000000000000000000000000000
709
+ 0000000000000000000000000000000000000000000000000000000000000000
710
+ 0000000000000000000000000000000000000000000000000000000000000000
711
+ 0000000000000000000000000000000000000000000000000000000000000000
712
+ 00007A00606F5E0C6089819D591560DC718470EF6EAA6C5072806A8488AD5E2D
713
+ 4E605AB3559C94E36D177CFB9699620F7EC6778E867E5323971E8F9666875CE1
714
+ 4FA072ED4E0B53A6590F54136380952851484ED99C9C7EA454B88D2488548237
715
+ 95F26D8E5F265ACC663E966973B0732E53BF817A99857FA15BAA967796507EBF
716
+ 76F853A2957699997BB189446E584E617FD479658BE660F354CD4EAB98795DF7
717
+ 6A6150CF54118C618427785D9704524A54EE56A395006D885BB56DC666530000
718
+ D0
719
+ 0000000000000000000000000000000000000000000000000000000000000000
720
+ 0000000000000000000000000000000000000000000000000000000000000000
721
+ 0000000000000000000000000000000000000000000000000000000000000000
722
+ 0000000000000000000000000000000000000000000000000000000000000000
723
+ 0000000000000000000000000000000000000000000000000000000000000000
724
+ 0000000000000000000000000000000000000000000000000000000000000000
725
+ 0000000000000000000000000000000000000000000000000000000000000000
726
+ 0000000000000000000000000000000000000000000000000000000000000000
727
+ 0000000000000000000000000000000000000000000000000000000000000000
728
+ 0000000000000000000000000000000000000000000000000000000000000000
729
+ 00005C0F5B5D6821809655787B11654869544E9B6B47874E978B534F631F643A
730
+ 90AA659C80C18C10519968B0537887F961C86CC46CFB8C225C5185AA82AF950C
731
+ 6B238F9B65B05FFB5FC34FE18845661F8165732960FA51745211578B5F6290A2
732
+ 884C91925E78674F602759D3514451F680F853086C7996C4718A4F114FEE7F9E
733
+ 673D55C5950879C088967EE3589F620C9700865A5618987B5F908BB884C49157
734
+ 53D965ED5E8F755C60647D6E5A7F7EEA7EED8F6955A75BA360AC65CB73840000
735
+ D1
736
+ 0000000000000000000000000000000000000000000000000000000000000000
737
+ 0000000000000000000000000000000000000000000000000000000000000000
738
+ 0000000000000000000000000000000000000000000000000000000000000000
739
+ 0000000000000000000000000000000000000000000000000000000000000000
740
+ 0000000000000000000000000000000000000000000000000000000000000000
741
+ 0000000000000000000000000000000000000000000000000000000000000000
742
+ 0000000000000000000000000000000000000000000000000000000000000000
743
+ 0000000000000000000000000000000000000000000000000000000000000000
744
+ 0000000000000000000000000000000000000000000000000000000000000000
745
+ 0000000000000000000000000000000000000000000000000000000000000000
746
+ 00009009766377297EDA9774859B5B667A7496EA884052CB718F5FAA65EC8BE2
747
+ 5BFB9A6F5DE16B896C5B8BAD8BAF900A8FC5538B62BC9E269E2D54404E2B82BD
748
+ 7259869C5D1688596DAF96C554D14E9A8BB6710954BD960970DF6DF976D04E25
749
+ 781487125CA95EF68A00989C960E708E6CBF594463A9773C884D6F1482735830
750
+ 71D5538C781A96C155015F6671305BB48C1A9A8C6B83592E9E2F79E76768626C
751
+ 4F6F75A17F8A6D0B96336C274EF075D2517B68376F3E90808170599674760000
752
+ D2
753
+ 0000000000000000000000000000000000000000000000000000000000000000
754
+ 0000000000000000000000000000000000000000000000000000000000000000
755
+ 0000000000000000000000000000000000000000000000000000000000000000
756
+ 0000000000000000000000000000000000000000000000000000000000000000
757
+ 0000000000000000000000000000000000000000000000000000000000000000
758
+ 0000000000000000000000000000000000000000000000000000000000000000
759
+ 0000000000000000000000000000000000000000000000000000000000000000
760
+ 0000000000000000000000000000000000000000000000000000000000000000
761
+ 0000000000000000000000000000000000000000000000000000000000000000
762
+ 0000000000000000000000000000000000000000000000000000000000000000
763
+ 000064475C2790657A918C2359DA54AC8200836F898180006930564E80367237
764
+ 91CE51B64E5F987563964E1A53F666F3814B591C6DB24E0058F9533B63D694F1
765
+ 4F9D4F0A886398905937905779FB4EEA80F075916C825B9C59E85F5D69058681
766
+ 501A5DF24E5977E34EE5827A6291661390915C794EBF5F7981C69038808475AB
767
+ 4EA688D4610F6BC55FC64E4976CA6EA28BE38BAE8C0A8BD15F027FFC7FCC7ECE
768
+ 8335836B56E06BB797F3963459FB541F94F66DEB5BC5996E5C395F1596900000
769
+ D3
770
+ 0000000000000000000000000000000000000000000000000000000000000000
771
+ 0000000000000000000000000000000000000000000000000000000000000000
772
+ 0000000000000000000000000000000000000000000000000000000000000000
773
+ 0000000000000000000000000000000000000000000000000000000000000000
774
+ 0000000000000000000000000000000000000000000000000000000000000000
775
+ 0000000000000000000000000000000000000000000000000000000000000000
776
+ 0000000000000000000000000000000000000000000000000000000000000000
777
+ 0000000000000000000000000000000000000000000000000000000000000000
778
+ 0000000000000000000000000000000000000000000000000000000000000000
779
+ 0000000000000000000000000000000000000000000000000000000000000000
780
+ 0000537082F16A315A749E705E947F2883B984248425836787478FCE8D6276C8
781
+ 5F719896786C662054DF62E54F6381C375C85EB896CD8E0A86F9548F6CF36D8C
782
+ 6C38607F52C775285E7D4F1860A05FE75C24753190AE94C072B96CB96E389149
783
+ 670953CB53F34F5191C98BF153C85E7C8FC26DE44E8E76C26986865E611A8206
784
+ 4F594FDE903E9C7C61096E1D6E1496854E885A3196E84E0E5C7F79B95B878BED
785
+ 7FBD738957DF828B90C15401904755BB5CEA5FA161086B3272F180B28A890000
786
+ D4
787
+ 0000000000000000000000000000000000000000000000000000000000000000
788
+ 0000000000000000000000000000000000000000000000000000000000000000
789
+ 0000000000000000000000000000000000000000000000000000000000000000
790
+ 0000000000000000000000000000000000000000000000000000000000000000
791
+ 0000000000000000000000000000000000000000000000000000000000000000
792
+ 0000000000000000000000000000000000000000000000000000000000000000
793
+ 0000000000000000000000000000000000000000000000000000000000000000
794
+ 0000000000000000000000000000000000000000000000000000000000000000
795
+ 0000000000000000000000000000000000000000000000000000000000000000
796
+ 0000000000000000000000000000000000000000000000000000000000000000
797
+ 00006D745BD388D598848C6B9A6D9E336E0A51A4514357A38881539F63F48F95
798
+ 56ED54585706733F6E907F188FDC82D1613F6028966266F07EA68D8A8DC394A5
799
+ 5CB37CA4670860A6960580184E9190E75300966851418FD08574915D665597F5
800
+ 5B55531D78386742683D54C9707E5BB08F7D518D572854B1651266828D5E8D43
801
+ 810F846C906D7CDF51FF85FB67A365E96FA186A48E81566A90207682707671E5
802
+ 8D2362E952196CFD8D3C600E589E618E66FE8D60624E55B36E23672D8F670000
803
+ D5
804
+ 0000000000000000000000000000000000000000000000000000000000000000
805
+ 0000000000000000000000000000000000000000000000000000000000000000
806
+ 0000000000000000000000000000000000000000000000000000000000000000
807
+ 0000000000000000000000000000000000000000000000000000000000000000
808
+ 0000000000000000000000000000000000000000000000000000000000000000
809
+ 0000000000000000000000000000000000000000000000000000000000000000
810
+ 0000000000000000000000000000000000000000000000000000000000000000
811
+ 0000000000000000000000000000000000000000000000000000000000000000
812
+ 0000000000000000000000000000000000000000000000000000000000000000
813
+ 0000000000000000000000000000000000000000000000000000000000000000
814
+ 000094E195F87728680569A8548B4E4D70B88BC86458658B5B857A84503A5BE8
815
+ 77BB6BE18A797C986CBE76CF65A98F975D2D5C5586386808536062187AD96E5B
816
+ 7EFD6A1F7AE05F706F335F20638C6DA867564E085E108D264ED780C07634969C
817
+ 62DB662D627E6CBC8D7571677F695146808753EC906E629854F286F08F998005
818
+ 951785178FD96D5973CD659F771F7504782781FB8D1E94884FA6679575B98BCA
819
+ 9707632F9547963584B8632377415F8172F04E896014657462EF6B63653F0000
820
+ D6
821
+ 0000000000000000000000000000000000000000000000000000000000000000
822
+ 0000000000000000000000000000000000000000000000000000000000000000
823
+ 0000000000000000000000000000000000000000000000000000000000000000
824
+ 0000000000000000000000000000000000000000000000000000000000000000
825
+ 0000000000000000000000000000000000000000000000000000000000000000
826
+ 0000000000000000000000000000000000000000000000000000000000000000
827
+ 0000000000000000000000000000000000000000000000000000000000000000
828
+ 0000000000000000000000000000000000000000000000000000000000000000
829
+ 0000000000000000000000000000000000000000000000000000000000000000
830
+ 0000000000000000000000000000000000000000000000000000000000000000
831
+ 00005E2775C790D18BC1829D679D652F5431871877E580A281026C414E4B7EC7
832
+ 804C76F4690D6B966267503C4F84574063076B628DBE53EA65E87EB85FD7631A
833
+ 63B781F381F47F6E5E1C5CD95236667A79E97A1A8D28709975D46EDE6CBB7A92
834
+ 4E2D76C55FE0949F88777EC879CD80BF91CD4EF24F17821F54685DDE6D328BCC
835
+ 7CA58F7480985E1A549276B15B99663C9AA473E0682A86DB6731732A8BF88BDB
836
+ 90107AF970DB716E62C477A956314E3B845767F152A986C08D2E94F87B510000
837
+ D7
838
+ 0000000000000000000000000000000000000000000000000000000000000000
839
+ 0000000000000000000000000000000000000000000000000000000000000000
840
+ 0000000000000000000000000000000000000000000000000000000000000000
841
+ 0000000000000000000000000000000000000000000000000000000000000000
842
+ 0000000000000000000000000000000000000000000000000000000000000000
843
+ 0000000000000000000000000000000000000000000000000000000000000000
844
+ 0000000000000000000000000000000000000000000000000000000000000000
845
+ 0000000000000000000000000000000000000000000000000000000000000000
846
+ 0000000000000000000000000000000000000000000000000000000000000000
847
+ 0000000000000000000000000000000000000000000000000000000000000000
848
+ 00004F4F6CE8795D9A7B6293722A62FD4E1378168F6C64B08D5A7BC668695E84
849
+ 88C55986649E58EE72B6690E95258FFD8D5857607F008C0651C6634962D95353
850
+ 684C74228301914C55447740707C6D4A517954A88D4459FF6ECB6DC45B5C7D2B
851
+ 4ED47C7D6ED35B5081EA6E0D5B579B0368D58E2A5B977EFC603B7EB590B98D70
852
+ 594F63CD79DF8DB3535265CF79568BC5963B7EC494BB7E825634918967007F6A
853
+ 5C0A907566285DE64F5067DE505A4F5C57505EA7000000000000000000000000
854
+ D8
855
+ 0000000000000000000000000000000000000000000000000000000000000000
856
+ 0000000000000000000000000000000000000000000000000000000000000000
857
+ 0000000000000000000000000000000000000000000000000000000000000000
858
+ 0000000000000000000000000000000000000000000000000000000000000000
859
+ 0000000000000000000000000000000000000000000000000000000000000000
860
+ 0000000000000000000000000000000000000000000000000000000000000000
861
+ 0000000000000000000000000000000000000000000000000000000000000000
862
+ 0000000000000000000000000000000000000000000000000000000000000000
863
+ 0000000000000000000000000000000000000000000000000000000000000000
864
+ 0000000000000000000000000000000000000000000000000000000000000000
865
+ 00004E8D4E0C51404E105EFF53454E154E984E1E9B325B6C56694E2879BA4E3F
866
+ 53154E47592D723B536E6C1056DF80E499976BD3777E9F174E364E9F9F104E5C
867
+ 4E694E9382885B5B556C560F4EC4538D539D53A353A553AE97658D5D531A53F5
868
+ 5326532E533E8D5C5366536352025208520E522D5233523F5240524C525E5261
869
+ 525C84AF527D528252815290529351827F544EBB4EC34EC94EC24EE84EE14EEB
870
+ 4EDE4F1B4EF34F224F644EF54F254F274F094F2B4F5E4F6765384F5A4F5D0000
871
+ D9
872
+ 0000000000000000000000000000000000000000000000000000000000000000
873
+ 0000000000000000000000000000000000000000000000000000000000000000
874
+ 0000000000000000000000000000000000000000000000000000000000000000
875
+ 0000000000000000000000000000000000000000000000000000000000000000
876
+ 0000000000000000000000000000000000000000000000000000000000000000
877
+ 0000000000000000000000000000000000000000000000000000000000000000
878
+ 0000000000000000000000000000000000000000000000000000000000000000
879
+ 0000000000000000000000000000000000000000000000000000000000000000
880
+ 0000000000000000000000000000000000000000000000000000000000000000
881
+ 0000000000000000000000000000000000000000000000000000000000000000
882
+ 00004F5F4F574F324F3D4F764F744F914F894F834F8F4F7E4F7B4FAA4F7C4FAC
883
+ 4F944FE64FE84FEA4FC54FDA4FE34FDC4FD14FDF4FF85029504C4FF3502C500F
884
+ 502E502D4FFE501C500C50255028507E504350555048504E506C507B50A550A7
885
+ 50A950BA50D6510650ED50EC50E650EE5107510B4EDD6C3D4F584F654FCE9FA0
886
+ 6C467C74516E5DFD9EC999985181591452F9530D8A07531051EB591951554EA0
887
+ 51564EB3886E88A44EB5811488D279805B3488037FB851AB51B151BD51BC0000
888
+ DA
889
+ 0000000000000000000000000000000000000000000000000000000000000000
890
+ 0000000000000000000000000000000000000000000000000000000000000000
891
+ 0000000000000000000000000000000000000000000000000000000000000000
892
+ 0000000000000000000000000000000000000000000000000000000000000000
893
+ 0000000000000000000000000000000000000000000000000000000000000000
894
+ 0000000000000000000000000000000000000000000000000000000000000000
895
+ 0000000000000000000000000000000000000000000000000000000000000000
896
+ 0000000000000000000000000000000000000000000000000000000000000000
897
+ 0000000000000000000000000000000000000000000000000000000000000000
898
+ 0000000000000000000000000000000000000000000000000000000000000000
899
+ 000051C7519651A251A58BA08BA68BA78BAA8BB48BB58BB78BC28BC38BCB8BCF
900
+ 8BCE8BD28BD38BD48BD68BD88BD98BDC8BDF8BE08BE48BE88BE98BEE8BF08BF3
901
+ 8BF68BF98BFC8BFF8C008C028C048C078C0C8C0F8C118C128C148C158C168C19
902
+ 8C1B8C188C1D8C1F8C208C218C258C278C2A8C2B8C2E8C2F8C328C338C358C36
903
+ 5369537A961D962296219631962A963D963C964296499654965F9667966C9672
904
+ 96749688968D969796B09097909B909D909990AC90A190B490B390B690BA0000
905
+ DB
906
+ 0000000000000000000000000000000000000000000000000000000000000000
907
+ 0000000000000000000000000000000000000000000000000000000000000000
908
+ 0000000000000000000000000000000000000000000000000000000000000000
909
+ 0000000000000000000000000000000000000000000000000000000000000000
910
+ 0000000000000000000000000000000000000000000000000000000000000000
911
+ 0000000000000000000000000000000000000000000000000000000000000000
912
+ 0000000000000000000000000000000000000000000000000000000000000000
913
+ 0000000000000000000000000000000000000000000000000000000000000000
914
+ 0000000000000000000000000000000000000000000000000000000000000000
915
+ 0000000000000000000000000000000000000000000000000000000000000000
916
+ 000090B890B090CF90C590BE90D090C490C790D390E690E290DC90D790DB90EB
917
+ 90EF90FE91049122911E91239131912F913991439146520D594252A252AC52AD
918
+ 52BE54FF52D052D652F053DF71EE77CD5EF451F551FC9B2F53B65F01755A5DEF
919
+ 574C57A957A1587E58BC58C558D15729572C572A57335739572E572F575C573B
920
+ 574257695785576B5786577C577B5768576D5776577357AD57A4578C57B257CF
921
+ 57A757B4579357A057D557D857DA57D957D257B857F457EF57F857E457DD0000
922
+ DC
923
+ 0000000000000000000000000000000000000000000000000000000000000000
924
+ 0000000000000000000000000000000000000000000000000000000000000000
925
+ 0000000000000000000000000000000000000000000000000000000000000000
926
+ 0000000000000000000000000000000000000000000000000000000000000000
927
+ 0000000000000000000000000000000000000000000000000000000000000000
928
+ 0000000000000000000000000000000000000000000000000000000000000000
929
+ 0000000000000000000000000000000000000000000000000000000000000000
930
+ 0000000000000000000000000000000000000000000000000000000000000000
931
+ 0000000000000000000000000000000000000000000000000000000000000000
932
+ 0000000000000000000000000000000000000000000000000000000000000000
933
+ 0000580B580D57FD57ED5800581E5819584458205865586C58815889589A5880
934
+ 99A89F1961FF8279827D827F828F828A82A88284828E82918297829982AB82B8
935
+ 82BE82B082C882CA82E3829882B782AE82CB82CC82C182A982B482A182AA829F
936
+ 82C482CE82A482E1830982F782E4830F830782DC82F482D282D8830C82FB82D3
937
+ 8311831A83068314831582E082D5831C8351835B835C83088392833C83348331
938
+ 839B835E832F834F83478343835F834083178360832D833A8333836683650000
939
+ DD
940
+ 0000000000000000000000000000000000000000000000000000000000000000
941
+ 0000000000000000000000000000000000000000000000000000000000000000
942
+ 0000000000000000000000000000000000000000000000000000000000000000
943
+ 0000000000000000000000000000000000000000000000000000000000000000
944
+ 0000000000000000000000000000000000000000000000000000000000000000
945
+ 0000000000000000000000000000000000000000000000000000000000000000
946
+ 0000000000000000000000000000000000000000000000000000000000000000
947
+ 0000000000000000000000000000000000000000000000000000000000000000
948
+ 0000000000000000000000000000000000000000000000000000000000000000
949
+ 0000000000000000000000000000000000000000000000000000000000000000
950
+ 00008368831B8369836C836A836D836E83B0837883B383B483A083AA8393839C
951
+ 8385837C83B683A9837D83B8837B8398839E83A883BA83BC83C1840183E583D8
952
+ 58078418840B83DD83FD83D6841C84388411840683D483DF840F840383F883F9
953
+ 83EA83C583C0842683F083E1845C8451845A8459847384878488847A84898478
954
+ 843C844684698476848C848E8431846D84C184CD84D084E684BD84D384CA84BF
955
+ 84BA84E084A184B984B4849784E584E3850C750D853884F08539851F853A0000
956
+ DE
957
+ 0000000000000000000000000000000000000000000000000000000000000000
958
+ 0000000000000000000000000000000000000000000000000000000000000000
959
+ 0000000000000000000000000000000000000000000000000000000000000000
960
+ 0000000000000000000000000000000000000000000000000000000000000000
961
+ 0000000000000000000000000000000000000000000000000000000000000000
962
+ 0000000000000000000000000000000000000000000000000000000000000000
963
+ 0000000000000000000000000000000000000000000000000000000000000000
964
+ 0000000000000000000000000000000000000000000000000000000000000000
965
+ 0000000000000000000000000000000000000000000000000000000000000000
966
+ 0000000000000000000000000000000000000000000000000000000000000000
967
+ 00008556853B84FF84FC8559854885688564855E857A77A285438572857B85A4
968
+ 85A88587858F857985AE859C858585B985B785B085D385C185DC85FF86278605
969
+ 86298616863C5EFE5F08593C594180375955595A5958530F5C225C255C2C5C34
970
+ 624C626A629F62BB62CA62DA62D762EE632262F66339634B634363AD63F66371
971
+ 637A638E63B4636D63AC638A636963AE63BC63F263F863E063FF63C463DE63CE
972
+ 645263C663BE64456441640B641B6420640C64266421645E6484646D64960000
973
+ DF
974
+ 0000000000000000000000000000000000000000000000000000000000000000
975
+ 0000000000000000000000000000000000000000000000000000000000000000
976
+ 0000000000000000000000000000000000000000000000000000000000000000
977
+ 0000000000000000000000000000000000000000000000000000000000000000
978
+ 0000000000000000000000000000000000000000000000000000000000000000
979
+ 0000000000000000000000000000000000000000000000000000000000000000
980
+ 0000000000000000000000000000000000000000000000000000000000000000
981
+ 0000000000000000000000000000000000000000000000000000000000000000
982
+ 0000000000000000000000000000000000000000000000000000000000000000
983
+ 0000000000000000000000000000000000000000000000000000000000000000
984
+ 0000647A64B764B8649964BA64C064D064D764E464E265096525652E5F0B5FD2
985
+ 75195F11535F53F153FD53E953E853FB541254165406544B5452545354545456
986
+ 54435421545754595423543254825494547754715464549A549B548454765466
987
+ 549D54D054AD54C254B454D254A754A654D354D4547254A354D554BB54BF54CC
988
+ 54D954DA54DC54A954AA54A454DD54CF54DE551B54E7552054FD551454F35522
989
+ 5523550F55115527552A5567558F55B55549556D55415555553F5550553C0000
990
+ E0
991
+ 0000000000000000000000000000000000000000000000000000000000000000
992
+ 0000000000000000000000000000000000000000000000000000000000000000
993
+ 0000000000000000000000000000000000000000000000000000000000000000
994
+ 0000000000000000000000000000000000000000000000000000000000000000
995
+ 0000000000000000000000000000000000000000000000000000000000000000
996
+ 0000000000000000000000000000000000000000000000000000000000000000
997
+ 0000000000000000000000000000000000000000000000000000000000000000
998
+ 0000000000000000000000000000000000000000000000000000000000000000
999
+ 0000000000000000000000000000000000000000000000000000000000000000
1000
+ 0000000000000000000000000000000000000000000000000000000000000000
1001
+ 00005537555655755576557755335530555C558B55D2558355B155B955885581
1002
+ 559F557E55D65591557B55DF55BD55BE5594559955EA55F755C9561F55D155EB
1003
+ 55EC55D455E655DD55C455EF55E555F255F355CC55CD55E855F555E48F94561E
1004
+ 5608560C56015624562355FE56005627562D565856395657562C564D56625659
1005
+ 565C564C5654568656645671566B567B567C5685569356AF56D456D756DD56E1
1006
+ 56F556EB56F956FF5704570A5709571C5E0F5E195E145E115E315E3B5E3C0000
1007
+ E1
1008
+ 0000000000000000000000000000000000000000000000000000000000000000
1009
+ 0000000000000000000000000000000000000000000000000000000000000000
1010
+ 0000000000000000000000000000000000000000000000000000000000000000
1011
+ 0000000000000000000000000000000000000000000000000000000000000000
1012
+ 0000000000000000000000000000000000000000000000000000000000000000
1013
+ 0000000000000000000000000000000000000000000000000000000000000000
1014
+ 0000000000000000000000000000000000000000000000000000000000000000
1015
+ 0000000000000000000000000000000000000000000000000000000000000000
1016
+ 0000000000000000000000000000000000000000000000000000000000000000
1017
+ 0000000000000000000000000000000000000000000000000000000000000000
1018
+ 00005E375E445E545E5B5E5E5E615C8C5C7A5C8D5C905C965C885C985C995C91
1019
+ 5C9A5C9C5CB55CA25CBD5CAC5CAB5CB15CA35CC15CB75CC45CD25CE45CCB5CE5
1020
+ 5D025D035D275D265D2E5D245D1E5D065D1B5D585D3E5D345D3D5D6C5D5B5D6F
1021
+ 5D5D5D6B5D4B5D4A5D695D745D825D995D9D8C735DB75DC55F735F775F825F87
1022
+ 5F895F8C5F955F995F9C5FA85FAD5FB55FBC88625F6172AD72B072B472B772B8
1023
+ 72C372C172CE72CD72D272E872EF72E972F272F472F7730172F3730372FA0000
1024
+ E2
1025
+ 0000000000000000000000000000000000000000000000000000000000000000
1026
+ 0000000000000000000000000000000000000000000000000000000000000000
1027
+ 0000000000000000000000000000000000000000000000000000000000000000
1028
+ 0000000000000000000000000000000000000000000000000000000000000000
1029
+ 0000000000000000000000000000000000000000000000000000000000000000
1030
+ 0000000000000000000000000000000000000000000000000000000000000000
1031
+ 0000000000000000000000000000000000000000000000000000000000000000
1032
+ 0000000000000000000000000000000000000000000000000000000000000000
1033
+ 0000000000000000000000000000000000000000000000000000000000000000
1034
+ 0000000000000000000000000000000000000000000000000000000000000000
1035
+ 000072FB731773137321730A731E731D7315732273397325732C733873317350
1036
+ 734D73577360736C736F737E821B592598E7592459029963996799689969996A
1037
+ 996B996C99749977997D998099849987998A998D999099919993999499955E80
1038
+ 5E915E8B5E965EA55EA05EB95EB55EBE5EB38D535ED25ED15EDB5EE85EEA81BA
1039
+ 5FC45FC95FD65FCF60035FEE60045FE15FE45FFE600560065FEA5FED5FF86019
1040
+ 60356026601B600F600D6029602B600A603F602160786079607B607A60420000
1041
+ E3
1042
+ 0000000000000000000000000000000000000000000000000000000000000000
1043
+ 0000000000000000000000000000000000000000000000000000000000000000
1044
+ 0000000000000000000000000000000000000000000000000000000000000000
1045
+ 0000000000000000000000000000000000000000000000000000000000000000
1046
+ 0000000000000000000000000000000000000000000000000000000000000000
1047
+ 0000000000000000000000000000000000000000000000000000000000000000
1048
+ 0000000000000000000000000000000000000000000000000000000000000000
1049
+ 0000000000000000000000000000000000000000000000000000000000000000
1050
+ 0000000000000000000000000000000000000000000000000000000000000000
1051
+ 0000000000000000000000000000000000000000000000000000000000000000
1052
+ 0000606A607D6096609A60AD609D60836092608C609B60EC60BB60B160DD60D8
1053
+ 60C660DA60B4612061266115612360F46100610E612B614A617561AC619461A7
1054
+ 61B761D461F55FDD96B395E995EB95F195F395F595F695FC95FE960396049606
1055
+ 9608960A960B960C960D960F96129615961696179619961A4E2C723F62156C35
1056
+ 6C546C5C6C4A6CA36C856C906C946C8C6C686C696C746C766C866CA96CD06CD4
1057
+ 6CAD6CF76CF86CF16CD76CB26CE06CD66CFA6CEB6CEE6CB16CD36CEF6CFE0000
1058
+ E4
1059
+ 0000000000000000000000000000000000000000000000000000000000000000
1060
+ 0000000000000000000000000000000000000000000000000000000000000000
1061
+ 0000000000000000000000000000000000000000000000000000000000000000
1062
+ 0000000000000000000000000000000000000000000000000000000000000000
1063
+ 0000000000000000000000000000000000000000000000000000000000000000
1064
+ 0000000000000000000000000000000000000000000000000000000000000000
1065
+ 0000000000000000000000000000000000000000000000000000000000000000
1066
+ 0000000000000000000000000000000000000000000000000000000000000000
1067
+ 0000000000000000000000000000000000000000000000000000000000000000
1068
+ 0000000000000000000000000000000000000000000000000000000000000000
1069
+ 00006D396D276D0C6D436D486D076D046D196D0E6D2B6D4D6D2E6D356D1A6D4F
1070
+ 6D526D546D336D916D6F6D9E6DA06D5E6D936D946D5C6D606D7C6D636E1A6DC7
1071
+ 6DC56DDE6E0E6DBF6DE06E116DE66DDD6DD96E166DAB6E0C6DAE6E2B6E6E6E4E
1072
+ 6E6B6EB26E5F6E866E536E546E326E256E446EDF6EB16E986EE06F2D6EE26EA5
1073
+ 6EA76EBD6EBB6EB76ED76EB46ECF6E8F6EC26E9F6F626F466F476F246F156EF9
1074
+ 6F2F6F366F4B6F746F2A6F096F296F896F8D6F8C6F786F726F7C6F7A6FD10000
1075
+ E5
1076
+ 0000000000000000000000000000000000000000000000000000000000000000
1077
+ 0000000000000000000000000000000000000000000000000000000000000000
1078
+ 0000000000000000000000000000000000000000000000000000000000000000
1079
+ 0000000000000000000000000000000000000000000000000000000000000000
1080
+ 0000000000000000000000000000000000000000000000000000000000000000
1081
+ 0000000000000000000000000000000000000000000000000000000000000000
1082
+ 0000000000000000000000000000000000000000000000000000000000000000
1083
+ 0000000000000000000000000000000000000000000000000000000000000000
1084
+ 0000000000000000000000000000000000000000000000000000000000000000
1085
+ 0000000000000000000000000000000000000000000000000000000000000000
1086
+ 00006FC96FA76FB96FB66FC26FE16FEE6FDE6FE06FEF701A7023701B70397035
1087
+ 704F705E5B805B845B955B935BA55BB8752F9A9E64345BE45BEE89305BF08E47
1088
+ 8B078FB68FD38FD58FE58FEE8FE48FE98FE68FF38FE890059004900B90269011
1089
+ 900D9016902190359036902D902F9044905190529050906890589062905B66B9
1090
+ 9074907D908290889083908B5F505F575F565F585C3B54AB5C505C595B715C63
1091
+ 5C667FBC5F2A5F295F2D82745F3C9B3B5C6E59815983598D59A959AA59A30000
1092
+ E6
1093
+ 0000000000000000000000000000000000000000000000000000000000000000
1094
+ 0000000000000000000000000000000000000000000000000000000000000000
1095
+ 0000000000000000000000000000000000000000000000000000000000000000
1096
+ 0000000000000000000000000000000000000000000000000000000000000000
1097
+ 0000000000000000000000000000000000000000000000000000000000000000
1098
+ 0000000000000000000000000000000000000000000000000000000000000000
1099
+ 0000000000000000000000000000000000000000000000000000000000000000
1100
+ 0000000000000000000000000000000000000000000000000000000000000000
1101
+ 0000000000000000000000000000000000000000000000000000000000000000
1102
+ 0000000000000000000000000000000000000000000000000000000000000000
1103
+ 0000599759CA59AB599E59A459D259B259AF59D759BE5A055A0659DD5A0859E3
1104
+ 59D859F95A0C5A095A325A345A115A235A135A405A675A4A5A555A3C5A625A75
1105
+ 80EC5AAA5A9B5A775A7A5ABE5AEB5AB25AD25AD45AB85AE05AE35AF15AD65AE6
1106
+ 5AD85ADC5B095B175B165B325B375B405C155C1C5B5A5B655B735B515B535B62
1107
+ 9A759A779A789A7A9A7F9A7D9A809A819A859A889A8A9A909A929A939A969A98
1108
+ 9A9B9A9C9A9D9A9F9AA09AA29AA39AA59AA77E9F7EA17EA37EA57EA87EA90000
1109
+ E7
1110
+ 0000000000000000000000000000000000000000000000000000000000000000
1111
+ 0000000000000000000000000000000000000000000000000000000000000000
1112
+ 0000000000000000000000000000000000000000000000000000000000000000
1113
+ 0000000000000000000000000000000000000000000000000000000000000000
1114
+ 0000000000000000000000000000000000000000000000000000000000000000
1115
+ 0000000000000000000000000000000000000000000000000000000000000000
1116
+ 0000000000000000000000000000000000000000000000000000000000000000
1117
+ 0000000000000000000000000000000000000000000000000000000000000000
1118
+ 0000000000000000000000000000000000000000000000000000000000000000
1119
+ 0000000000000000000000000000000000000000000000000000000000000000
1120
+ 00007EAD7EB07EBE7EC07EC17EC27EC97ECB7ECC7ED07ED47ED77EDB7EE07EE1
1121
+ 7EE87EEB7EEE7EEF7EF17EF27F0D7EF67EFA7EFB7EFE7F017F027F037F077F08
1122
+ 7F0B7F0C7F0F7F117F127F177F197F1C7F1B7F1F7F217F227F237F247F257F26
1123
+ 7F277F2A7F2B7F2C7F2D7F2F7F307F317F327F337F355E7A757F5DDB753E9095
1124
+ 738E739173AE73A2739F73CF73C273D173B773B373C073C973C873E573D9987C
1125
+ 740A73E973E773DE73BA73F2740F742A745B7426742574287430742E742C0000
1126
+ E8
1127
+ 0000000000000000000000000000000000000000000000000000000000000000
1128
+ 0000000000000000000000000000000000000000000000000000000000000000
1129
+ 0000000000000000000000000000000000000000000000000000000000000000
1130
+ 0000000000000000000000000000000000000000000000000000000000000000
1131
+ 0000000000000000000000000000000000000000000000000000000000000000
1132
+ 0000000000000000000000000000000000000000000000000000000000000000
1133
+ 0000000000000000000000000000000000000000000000000000000000000000
1134
+ 0000000000000000000000000000000000000000000000000000000000000000
1135
+ 0000000000000000000000000000000000000000000000000000000000000000
1136
+ 0000000000000000000000000000000000000000000000000000000000000000
1137
+ 0000741B741A7441745C7457745574597477746D747E749C748E748074817487
1138
+ 748B749E74A874A9749074A774D274BA97EA97EB97EC674C6753675E67486769
1139
+ 67A56787676A6773679867A7677567A8679E67AD678B6777677C67F0680967D8
1140
+ 680A67E967B0680C67D967B567DA67B367DD680067C367B867E2680E67C167FD
1141
+ 6832683368606861684E6862684468646883681D68556866684168676840683E
1142
+ 684A6849682968B5688F687468776893686B68C2696E68FC691F692068F90000
1143
+ E9
1144
+ 0000000000000000000000000000000000000000000000000000000000000000
1145
+ 0000000000000000000000000000000000000000000000000000000000000000
1146
+ 0000000000000000000000000000000000000000000000000000000000000000
1147
+ 0000000000000000000000000000000000000000000000000000000000000000
1148
+ 0000000000000000000000000000000000000000000000000000000000000000
1149
+ 0000000000000000000000000000000000000000000000000000000000000000
1150
+ 0000000000000000000000000000000000000000000000000000000000000000
1151
+ 0000000000000000000000000000000000000000000000000000000000000000
1152
+ 0000000000000000000000000000000000000000000000000000000000000000
1153
+ 0000000000000000000000000000000000000000000000000000000000000000
1154
+ 0000692468F0690B6901695768E369106971693969606942695D6984696B6980
1155
+ 69986978693469CC6987698869CE6989696669636979699B69A769BB69AB69AD
1156
+ 69D469B169C169CA69DF699569E0698D69FF6A2F69ED6A176A186A6569F26A44
1157
+ 6A3E6AA06A506A5B6A356A8E6A796A3D6A286A586A7C6A916A906AA96A976AAB
1158
+ 733773526B816B826B876B846B926B936B8D6B9A6B9B6BA16BAA8F6B8F6D8F71
1159
+ 8F728F738F758F768F788F778F798F7A8F7C8F7E8F818F828F848F878F8B0000
1160
+ EA
1161
+ 0000000000000000000000000000000000000000000000000000000000000000
1162
+ 0000000000000000000000000000000000000000000000000000000000000000
1163
+ 0000000000000000000000000000000000000000000000000000000000000000
1164
+ 0000000000000000000000000000000000000000000000000000000000000000
1165
+ 0000000000000000000000000000000000000000000000000000000000000000
1166
+ 0000000000000000000000000000000000000000000000000000000000000000
1167
+ 0000000000000000000000000000000000000000000000000000000000000000
1168
+ 0000000000000000000000000000000000000000000000000000000000000000
1169
+ 0000000000000000000000000000000000000000000000000000000000000000
1170
+ 0000000000000000000000000000000000000000000000000000000000000000
1171
+ 00008F8D8F8E8F8F8F988F9A8ECE620B6217621B621F6222622162256224622C
1172
+ 81E774EF74F474FF750F75117513653465EE65EF65F0660A6619677266036615
1173
+ 6600708566F7661D66346631663666358006665F66546641664F665666616657
1174
+ 66776684668C66A7669D66BE66DB66DC66E666E98D328D338D368D3B8D3D8D40
1175
+ 8D458D468D488D498D478D4D8D558D5989C789CA89CB89CC89CE89CF89D089D1
1176
+ 726E729F725D7266726F727E727F7284728B728D728F72926308633263B00000
1177
+ EB
1178
+ 0000000000000000000000000000000000000000000000000000000000000000
1179
+ 0000000000000000000000000000000000000000000000000000000000000000
1180
+ 0000000000000000000000000000000000000000000000000000000000000000
1181
+ 0000000000000000000000000000000000000000000000000000000000000000
1182
+ 0000000000000000000000000000000000000000000000000000000000000000
1183
+ 0000000000000000000000000000000000000000000000000000000000000000
1184
+ 0000000000000000000000000000000000000000000000000000000000000000
1185
+ 0000000000000000000000000000000000000000000000000000000000000000
1186
+ 0000000000000000000000000000000000000000000000000000000000000000
1187
+ 0000000000000000000000000000000000000000000000000000000000000000
1188
+ 0000643F64D880046BEA6BF36BFD6BF56BF96C056C076C066C0D6C156C186C19
1189
+ 6C1A6C216C296C246C2A6C3265356555656B724D72527256723086625216809F
1190
+ 809C809380BC670A80BD80B180AB80AD80B480B780E780E880E980EA80DB80C2
1191
+ 80C480D980CD80D7671080DD80EB80F180F480ED810D810E80F280FC67158112
1192
+ 8C5A8136811E812C811881328148814C815381748159815A817181608169817C
1193
+ 817D816D8167584D5AB58188818281916ED581A381AA81CC672681CA81BB0000
1194
+ EC
1195
+ 0000000000000000000000000000000000000000000000000000000000000000
1196
+ 0000000000000000000000000000000000000000000000000000000000000000
1197
+ 0000000000000000000000000000000000000000000000000000000000000000
1198
+ 0000000000000000000000000000000000000000000000000000000000000000
1199
+ 0000000000000000000000000000000000000000000000000000000000000000
1200
+ 0000000000000000000000000000000000000000000000000000000000000000
1201
+ 0000000000000000000000000000000000000000000000000000000000000000
1202
+ 0000000000000000000000000000000000000000000000000000000000000000
1203
+ 0000000000000000000000000000000000000000000000000000000000000000
1204
+ 0000000000000000000000000000000000000000000000000000000000000000
1205
+ 000081C181A66B246B376B396B436B466B5998D198D298D398D598D998DA6BB3
1206
+ 5F406BC289F365909F51659365BC65C665C465C365CC65CE65D265D67080709C
1207
+ 7096709D70BB70C070B770AB70B170E870CA711071137116712F71317173715C
1208
+ 716871457172714A7178717A719871B371B571A871A071E071D471E771F9721D
1209
+ 7228706C7118716671B9623E623D624362486249793B794079467949795B795C
1210
+ 7953795A796279577960796F7967797A7985798A799A79A779B35FD15FD00000
1211
+ ED
1212
+ 0000000000000000000000000000000000000000000000000000000000000000
1213
+ 0000000000000000000000000000000000000000000000000000000000000000
1214
+ 0000000000000000000000000000000000000000000000000000000000000000
1215
+ 0000000000000000000000000000000000000000000000000000000000000000
1216
+ 0000000000000000000000000000000000000000000000000000000000000000
1217
+ 0000000000000000000000000000000000000000000000000000000000000000
1218
+ 0000000000000000000000000000000000000000000000000000000000000000
1219
+ 0000000000000000000000000000000000000000000000000000000000000000
1220
+ 0000000000000000000000000000000000000000000000000000000000000000
1221
+ 0000000000000000000000000000000000000000000000000000000000000000
1222
+ 0000603C605D605A606760416059606360AB6106610D615D61A9619D61CB61D1
1223
+ 62068080807F6C936CF66DFC77F677F87800780978177818781165AB782D781C
1224
+ 781D7839783A783B781F783C7825782C78237829784E786D7856785778267850
1225
+ 7847784C786A789B7893789A7887789C78A178A378B278B978A578D478D978C9
1226
+ 78EC78F2790578F479137924791E79349F9B9EF99EFB9EFC76F17704770D76F9
1227
+ 77077708771A77227719772D7726773577387750775177477743775A77680000
1228
+ EE
1229
+ 0000000000000000000000000000000000000000000000000000000000000000
1230
+ 0000000000000000000000000000000000000000000000000000000000000000
1231
+ 0000000000000000000000000000000000000000000000000000000000000000
1232
+ 0000000000000000000000000000000000000000000000000000000000000000
1233
+ 0000000000000000000000000000000000000000000000000000000000000000
1234
+ 0000000000000000000000000000000000000000000000000000000000000000
1235
+ 0000000000000000000000000000000000000000000000000000000000000000
1236
+ 0000000000000000000000000000000000000000000000000000000000000000
1237
+ 0000000000000000000000000000000000000000000000000000000000000000
1238
+ 0000000000000000000000000000000000000000000000000000000000000000
1239
+ 000077627765777F778D777D7780778C7791779F77A077B077B577BD753A7540
1240
+ 754E754B7548755B7572757975837F587F617F5F8A487F687F747F717F797F81
1241
+ 7F7E76CD76E58832948594869487948B948A948C948D948F9490949494979495
1242
+ 949A949B949C94A394A494AB94AA94AD94AC94AF94B094B294B494B694B794B8
1243
+ 94B994BA94BC94BD94BF94C494C894C994CA94CB94CC94CD94CE94D094D194D2
1244
+ 94D594D694D794D994D894DB94DE94DF94E094E294E494E594E794E894EA0000
1245
+ EF
1246
+ 0000000000000000000000000000000000000000000000000000000000000000
1247
+ 0000000000000000000000000000000000000000000000000000000000000000
1248
+ 0000000000000000000000000000000000000000000000000000000000000000
1249
+ 0000000000000000000000000000000000000000000000000000000000000000
1250
+ 0000000000000000000000000000000000000000000000000000000000000000
1251
+ 0000000000000000000000000000000000000000000000000000000000000000
1252
+ 0000000000000000000000000000000000000000000000000000000000000000
1253
+ 0000000000000000000000000000000000000000000000000000000000000000
1254
+ 0000000000000000000000000000000000000000000000000000000000000000
1255
+ 0000000000000000000000000000000000000000000000000000000000000000
1256
+ 000094E994EB94EE94EF94F394F494F594F794F994FC94FD94FF950395029506
1257
+ 95079509950A950D950E950F951295139514951595169518951B951D951E951F
1258
+ 9522952A952B9529952C953195329534953695379538953C953E953F95429535
1259
+ 9544954595469549954C954E954F9552955395549556955795589559955B955E
1260
+ 955F955D95619562956495659566956795689569956A956B956C956F95719572
1261
+ 9573953A77E777EC96C979D579ED79E379EB7A065D477A037A027A1E7A140000
1262
+ F0
1263
+ 0000000000000000000000000000000000000000000000000000000000000000
1264
+ 0000000000000000000000000000000000000000000000000000000000000000
1265
+ 0000000000000000000000000000000000000000000000000000000000000000
1266
+ 0000000000000000000000000000000000000000000000000000000000000000
1267
+ 0000000000000000000000000000000000000000000000000000000000000000
1268
+ 0000000000000000000000000000000000000000000000000000000000000000
1269
+ 0000000000000000000000000000000000000000000000000000000000000000
1270
+ 0000000000000000000000000000000000000000000000000000000000000000
1271
+ 0000000000000000000000000000000000000000000000000000000000000000
1272
+ 0000000000000000000000000000000000000000000000000000000000000000
1273
+ 00007A397A377A519ECF99A57A707688768E7693769976A474DE74E0752C9E20
1274
+ 9E229E289E299E2A9E2B9E2C9E329E319E369E389E379E399E3A9E3E9E419E42
1275
+ 9E449E469E479E489E499E4B9E4C9E4E9E519E559E579E5A9E5B9E5C9E5E9E63
1276
+ 9E669E679E689E699E6A9E6B9E6C9E719E6D9E7375927594759675A0759D75AC
1277
+ 75A375B375B475B875C475B175B075C375C275D675CD75E375E875E675E475EB
1278
+ 75E7760375F175FC75FF761076007605760C7617760A76257618761576190000
1279
+ F1
1280
+ 0000000000000000000000000000000000000000000000000000000000000000
1281
+ 0000000000000000000000000000000000000000000000000000000000000000
1282
+ 0000000000000000000000000000000000000000000000000000000000000000
1283
+ 0000000000000000000000000000000000000000000000000000000000000000
1284
+ 0000000000000000000000000000000000000000000000000000000000000000
1285
+ 0000000000000000000000000000000000000000000000000000000000000000
1286
+ 0000000000000000000000000000000000000000000000000000000000000000
1287
+ 0000000000000000000000000000000000000000000000000000000000000000
1288
+ 0000000000000000000000000000000000000000000000000000000000000000
1289
+ 0000000000000000000000000000000000000000000000000000000000000000
1290
+ 0000761B763C762276207640762D7630763F76357643763E7633764D765E7654
1291
+ 765C7656766B766F7FCA7AE67A787A797A807A867A887A957AA67AA07AAC7AA8
1292
+ 7AAD7AB3886488698872887D887F888288A288C688B788BC88C988E288CE88E3
1293
+ 88E588F1891A88FC88E888FE88F0892189198913891B890A8934892B89368941
1294
+ 8966897B758B80E576B276B477DC801280148016801C80208022802580268027
1295
+ 802980288031800B803580438046804D80528069807189839878988098830000
1296
+ F2
1297
+ 0000000000000000000000000000000000000000000000000000000000000000
1298
+ 0000000000000000000000000000000000000000000000000000000000000000
1299
+ 0000000000000000000000000000000000000000000000000000000000000000
1300
+ 0000000000000000000000000000000000000000000000000000000000000000
1301
+ 0000000000000000000000000000000000000000000000000000000000000000
1302
+ 0000000000000000000000000000000000000000000000000000000000000000
1303
+ 0000000000000000000000000000000000000000000000000000000000000000
1304
+ 0000000000000000000000000000000000000000000000000000000000000000
1305
+ 0000000000000000000000000000000000000000000000000000000000000000
1306
+ 0000000000000000000000000000000000000000000000000000000000000000
1307
+ 00009889988C988D988F9894989A989B989E989F98A198A298A598A6864D8654
1308
+ 866C866E867F867A867C867B86A8868D868B86AC869D86A786A386AA869386A9
1309
+ 86B686C486B586CE86B086BA86B186AF86C986CF86B486E986F186F286ED86F3
1310
+ 86D0871386DE86F486DF86D886D18703870786F88708870A870D87098723873B
1311
+ 871E8725872E871A873E87488734873187298737873F87828722877D877E877B
1312
+ 87608770874C876E878B87538763877C876487598765879387AF87A887D20000
1313
+ F3
1314
+ 0000000000000000000000000000000000000000000000000000000000000000
1315
+ 0000000000000000000000000000000000000000000000000000000000000000
1316
+ 0000000000000000000000000000000000000000000000000000000000000000
1317
+ 0000000000000000000000000000000000000000000000000000000000000000
1318
+ 0000000000000000000000000000000000000000000000000000000000000000
1319
+ 0000000000000000000000000000000000000000000000000000000000000000
1320
+ 0000000000000000000000000000000000000000000000000000000000000000
1321
+ 0000000000000000000000000000000000000000000000000000000000000000
1322
+ 0000000000000000000000000000000000000000000000000000000000000000
1323
+ 0000000000000000000000000000000000000000000000000000000000000000
1324
+ 000087C68788878587AD8797878387AB87E587AC87B587B387CB87D387BD87D1
1325
+ 87C087CA87DB87EA87E087EE8816881387FE880A881B88218839883C7F367F42
1326
+ 7F447F4582107AFA7AFD7B087B037B047B157B0A7B2B7B0F7B477B387B2A7B19
1327
+ 7B2E7B317B207B257B247B337B3E7B1E7B587B5A7B457B757B4C7B5D7B607B6E
1328
+ 7B7B7B627B727B717B907BA67BA77BB87BAC7B9D7BA87B857BAA7B9C7BA27BAB
1329
+ 7BB47BD17BC17BCC7BDD7BDA7BE57BE67BEA7C0C7BFE7BFC7C0F7C167C0B0000
1330
+ F4
1331
+ 0000000000000000000000000000000000000000000000000000000000000000
1332
+ 0000000000000000000000000000000000000000000000000000000000000000
1333
+ 0000000000000000000000000000000000000000000000000000000000000000
1334
+ 0000000000000000000000000000000000000000000000000000000000000000
1335
+ 0000000000000000000000000000000000000000000000000000000000000000
1336
+ 0000000000000000000000000000000000000000000000000000000000000000
1337
+ 0000000000000000000000000000000000000000000000000000000000000000
1338
+ 0000000000000000000000000000000000000000000000000000000000000000
1339
+ 0000000000000000000000000000000000000000000000000000000000000000
1340
+ 0000000000000000000000000000000000000000000000000000000000000000
1341
+ 00007C1F7C2A7C267C387C417C4081FE82018202820481EC8844822182228223
1342
+ 822D822F8228822B8238823B82338234823E82448249824B824F825A825F8268
1343
+ 887E8885888888D888DF895E7F9D7F9F7FA77FAF7FB07FB27C7C65497C917C9D
1344
+ 7C9C7C9E7CA27CB27CBC7CBD7CC17CC77CCC7CCD7CC87CC57CD77CE8826E66A8
1345
+ 7FBF7FCE7FD57FE57FE17FE67FE97FEE7FF37CF87D777DA67DAE7E477E9B9EB8
1346
+ 9EB48D738D848D948D918DB18D678D6D8C478C49914A9150914E914F91640000
1347
+ F5
1348
+ 0000000000000000000000000000000000000000000000000000000000000000
1349
+ 0000000000000000000000000000000000000000000000000000000000000000
1350
+ 0000000000000000000000000000000000000000000000000000000000000000
1351
+ 0000000000000000000000000000000000000000000000000000000000000000
1352
+ 0000000000000000000000000000000000000000000000000000000000000000
1353
+ 0000000000000000000000000000000000000000000000000000000000000000
1354
+ 0000000000000000000000000000000000000000000000000000000000000000
1355
+ 0000000000000000000000000000000000000000000000000000000000000000
1356
+ 0000000000000000000000000000000000000000000000000000000000000000
1357
+ 0000000000000000000000000000000000000000000000000000000000000000
1358
+ 00009162916191709169916F917D917E917291749179918C91859190918D9191
1359
+ 91A291A391AA91AD91AE91AF91B591B491BA8C559E7E8DB88DEB8E058E598E69
1360
+ 8DB58DBF8DBC8DBA8DC48DD68DD78DDA8DDE8DCE8DCF8DDB8DC68DEC8DF78DF8
1361
+ 8DE38DF98DFB8DE48E098DFD8E148E1D8E1F8E2C8E2E8E238E2F8E3A8E408E39
1362
+ 8E358E3D8E318E498E418E428E518E528E4A8E708E768E7C8E6F8E748E858E8F
1363
+ 8E948E908E9C8E9E8C788C828C8A8C858C988C94659B89D689DE89DA89DC0000
1364
+ F6
1365
+ 0000000000000000000000000000000000000000000000000000000000000000
1366
+ 0000000000000000000000000000000000000000000000000000000000000000
1367
+ 0000000000000000000000000000000000000000000000000000000000000000
1368
+ 0000000000000000000000000000000000000000000000000000000000000000
1369
+ 0000000000000000000000000000000000000000000000000000000000000000
1370
+ 0000000000000000000000000000000000000000000000000000000000000000
1371
+ 0000000000000000000000000000000000000000000000000000000000000000
1372
+ 0000000000000000000000000000000000000000000000000000000000000000
1373
+ 0000000000000000000000000000000000000000000000000000000000000000
1374
+ 0000000000000000000000000000000000000000000000000000000000000000
1375
+ 000089E589EB89EF8A3E8B26975396E996F396EF970697019708970F970E972A
1376
+ 972D9730973E9F809F839F859F869F879F889F899F8A9F8C9EFE9F0B9F0D96B9
1377
+ 96BC96BD96CE96D277BF96E0928E92AE92C8933E936A93CA938F943E946B9C7F
1378
+ 9C829C859C869C879C887A239C8B9C8E9C909C919C929C949C959C9A9C9B9C9E
1379
+ 9C9F9CA09CA19CA29CA39CA59CA69CA79CA89CA99CAB9CAD9CAE9CB09CB19CB2
1380
+ 9CB39CB49CB59CB69CB79CBA9CBB9CBC9CBD9CC49CC59CC69CC79CCA9CCB0000
1381
+ F7
1382
+ 0000000000000000000000000000000000000000000000000000000000000000
1383
+ 0000000000000000000000000000000000000000000000000000000000000000
1384
+ 0000000000000000000000000000000000000000000000000000000000000000
1385
+ 0000000000000000000000000000000000000000000000000000000000000000
1386
+ 0000000000000000000000000000000000000000000000000000000000000000
1387
+ 0000000000000000000000000000000000000000000000000000000000000000
1388
+ 0000000000000000000000000000000000000000000000000000000000000000
1389
+ 0000000000000000000000000000000000000000000000000000000000000000
1390
+ 0000000000000000000000000000000000000000000000000000000000000000
1391
+ 0000000000000000000000000000000000000000000000000000000000000000
1392
+ 00009CCC9CCD9CCE9CCF9CD09CD39CD49CD59CD79CD89CD99CDC9CDD9CDF9CE2
1393
+ 977C978597919792979497AF97AB97A397B297B49AB19AB09AB79E589AB69ABA
1394
+ 9ABC9AC19AC09AC59AC29ACB9ACC9AD19B459B439B479B499B489B4D9B5198E8
1395
+ 990D992E995599549ADF9AE19AE69AEF9AEB9AFB9AED9AF99B089B0F9B139B1F
1396
+ 9B239EBD9EBE7E3B9E829E879E889E8B9E9293D69E9D9E9F9EDB9EDC9EDD9EE0
1397
+ 9EDF9EE29EE99EE79EE59EEA9EEF9F229F2C9F2F9F399F379F3D9F3E9F440000
parrot/lib/tcl8.6/encoding/koi8-u.enc ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding file: koi8-u, single-byte
2
+ S
3
+ 003F 0 1
4
+ 00
5
+ 0000000100020003000400050006000700080009000A000B000C000D000E000F
6
+ 0010001100120013001400150016001700180019001A001B001C001D001E001F
7
+ 0020002100220023002400250026002700280029002A002B002C002D002E002F
8
+ 0030003100320033003400350036003700380039003A003B003C003D003E003F
9
+ 0040004100420043004400450046004700480049004A004B004C004D004E004F
10
+ 0050005100520053005400550056005700580059005A005B005C005D005E005F
11
+ 0060006100620063006400650066006700680069006A006B006C006D006E006F
12
+ 0070007100720073007400750076007700780079007A007B007C007D007E007F
13
+ 25002502250C251025142518251C2524252C2534253C258025842588258C2590
14
+ 259125922593232025A02219221A22482264226500A0232100B000B200B700F7
15
+ 25502551255204510454255404560457255725582559255A255B0491255D255E
16
+ 255F25602561040104032563040604072566256725682569256A0490256C00A9
17
+ 044E0430043104460434043504440433044504380439043A043B043C043D043E
18
+ 043F044F044004410442044304360432044C044B04370448044D04490447044A
19
+ 042E0410041104260414041504240413042504180419041A041B041C041D041E
20
+ 041F042F042004210422042304160412042C042B04170428042D04290427042A
parrot/lib/tcl8.6/msgs/af.msg ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset af DAYS_OF_WEEK_ABBREV [list \
4
+ "So"\
5
+ "Ma"\
6
+ "Di"\
7
+ "Wo"\
8
+ "Do"\
9
+ "Vr"\
10
+ "Sa"]
11
+ ::msgcat::mcset af DAYS_OF_WEEK_FULL [list \
12
+ "Sondag"\
13
+ "Maandag"\
14
+ "Dinsdag"\
15
+ "Woensdag"\
16
+ "Donderdag"\
17
+ "Vrydag"\
18
+ "Saterdag"]
19
+ ::msgcat::mcset af MONTHS_ABBREV [list \
20
+ "Jan"\
21
+ "Feb"\
22
+ "Mar"\
23
+ "Apr"\
24
+ "Mei"\
25
+ "Jun"\
26
+ "Jul"\
27
+ "Aug"\
28
+ "Sep"\
29
+ "Okt"\
30
+ "Nov"\
31
+ "Des"\
32
+ ""]
33
+ ::msgcat::mcset af MONTHS_FULL [list \
34
+ "Januarie"\
35
+ "Februarie"\
36
+ "Maart"\
37
+ "April"\
38
+ "Mei"\
39
+ "Junie"\
40
+ "Julie"\
41
+ "Augustus"\
42
+ "September"\
43
+ "Oktober"\
44
+ "November"\
45
+ "Desember"\
46
+ ""]
47
+ ::msgcat::mcset af AM "VM"
48
+ ::msgcat::mcset af PM "NM"
49
+ }
parrot/lib/tcl8.6/msgs/ar_lb.msg ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset ar_LB DAYS_OF_WEEK_ABBREV [list \
4
+ "\u0627\u0644\u0623\u062d\u062f"\
5
+ "\u0627\u0644\u0627\u062b\u0646\u064a\u0646"\
6
+ "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621"\
7
+ "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621"\
8
+ "\u0627\u0644\u062e\u0645\u064a\u0633"\
9
+ "\u0627\u0644\u062c\u0645\u0639\u0629"\
10
+ "\u0627\u0644\u0633\u0628\u062a"]
11
+ ::msgcat::mcset ar_LB MONTHS_ABBREV [list \
12
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a"\
13
+ "\u0634\u0628\u0627\u0637"\
14
+ "\u0622\u0630\u0627\u0631"\
15
+ "\u0646\u064a\u0633\u0627\u0646"\
16
+ "\u0646\u0648\u0627\u0631"\
17
+ "\u062d\u0632\u064a\u0631\u0627\u0646"\
18
+ "\u062a\u0645\u0648\u0632"\
19
+ "\u0622\u0628"\
20
+ "\u0623\u064a\u0644\u0648\u0644"\
21
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644"\
22
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a"\
23
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"\
24
+ ""]
25
+ ::msgcat::mcset ar_LB MONTHS_FULL [list \
26
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a"\
27
+ "\u0634\u0628\u0627\u0637"\
28
+ "\u0622\u0630\u0627\u0631"\
29
+ "\u0646\u064a\u0633\u0627\u0646"\
30
+ "\u0646\u0648\u0627\u0631"\
31
+ "\u062d\u0632\u064a\u0631\u0627\u0646"\
32
+ "\u062a\u0645\u0648\u0632"\
33
+ "\u0622\u0628"\
34
+ "\u0623\u064a\u0644\u0648\u0644"\
35
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644"\
36
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a"\
37
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"\
38
+ ""]
39
+ }
parrot/lib/tcl8.6/msgs/be.msg ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset be DAYS_OF_WEEK_ABBREV [list \
4
+ "\u043d\u0434"\
5
+ "\u043f\u043d"\
6
+ "\u0430\u0442"\
7
+ "\u0441\u0440"\
8
+ "\u0447\u0446"\
9
+ "\u043f\u0442"\
10
+ "\u0441\u0431"]
11
+ ::msgcat::mcset be DAYS_OF_WEEK_FULL [list \
12
+ "\u043d\u044f\u0434\u0437\u0435\u043b\u044f"\
13
+ "\u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a"\
14
+ "\u0430\u045e\u0442\u043e\u0440\u0430\u043a"\
15
+ "\u0441\u0435\u0440\u0430\u0434\u0430"\
16
+ "\u0447\u0430\u0446\u0432\u0435\u0440"\
17
+ "\u043f\u044f\u0442\u043d\u0456\u0446\u0430"\
18
+ "\u0441\u0443\u0431\u043e\u0442\u0430"]
19
+ ::msgcat::mcset be MONTHS_ABBREV [list \
20
+ "\u0441\u0442\u0434"\
21
+ "\u043b\u044e\u0442"\
22
+ "\u0441\u043a\u0432"\
23
+ "\u043a\u0440\u0441"\
24
+ "\u043c\u0430\u0439"\
25
+ "\u0447\u0440\u0432"\
26
+ "\u043b\u043f\u043d"\
27
+ "\u0436\u043d\u0432"\
28
+ "\u0432\u0440\u0441"\
29
+ "\u043a\u0441\u0442"\
30
+ "\u043b\u0441\u0442"\
31
+ "\u0441\u043d\u0436"\
32
+ ""]
33
+ ::msgcat::mcset be MONTHS_FULL [list \
34
+ "\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044f"\
35
+ "\u043b\u044e\u0442\u0430\u0433\u0430"\
36
+ "\u0441\u0430\u043a\u0430\u0432\u0456\u043a\u0430"\
37
+ "\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a\u0430"\
38
+ "\u043c\u0430\u044f"\
39
+ "\u0447\u0440\u0432\u0435\u043d\u044f"\
40
+ "\u043b\u0456\u043f\u0435\u043d\u044f"\
41
+ "\u0436\u043d\u0456\u045e\u043d\u044f"\
42
+ "\u0432\u0435\u0440\u0430\u0441\u043d\u044f"\
43
+ "\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a\u0430"\
44
+ "\u043b\u0438\u0441\u0442\u0430\u043f\u0430\u0434\u0430"\
45
+ "\u0441\u043d\u0435\u0436\u043d\u044f"\
46
+ ""]
47
+ ::msgcat::mcset be BCE "\u0434\u0430 \u043d.\u0435."
48
+ ::msgcat::mcset be CE "\u043d.\u0435."
49
+ ::msgcat::mcset be DATE_FORMAT "%e.%m.%Y"
50
+ ::msgcat::mcset be TIME_FORMAT "%k.%M.%S"
51
+ ::msgcat::mcset be DATE_TIME_FORMAT "%e.%m.%Y %k.%M.%S %z"
52
+ }
parrot/lib/tcl8.6/msgs/bg.msg ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset bg DAYS_OF_WEEK_ABBREV [list \
4
+ "\u041d\u0434"\
5
+ "\u041f\u043d"\
6
+ "\u0412\u0442"\
7
+ "\u0421\u0440"\
8
+ "\u0427\u0442"\
9
+ "\u041f\u0442"\
10
+ "\u0421\u0431"]
11
+ ::msgcat::mcset bg DAYS_OF_WEEK_FULL [list \
12
+ "\u041d\u0435\u0434\u0435\u043b\u044f"\
13
+ "\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a"\
14
+ "\u0412\u0442\u043e\u0440\u043d\u0438\u043a"\
15
+ "\u0421\u0440\u044f\u0434\u0430"\
16
+ "\u0427\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a"\
17
+ "\u041f\u0435\u0442\u044a\u043a"\
18
+ "\u0421\u044a\u0431\u043e\u0442\u0430"]
19
+ ::msgcat::mcset bg MONTHS_ABBREV [list \
20
+ "I"\
21
+ "II"\
22
+ "III"\
23
+ "IV"\
24
+ "V"\
25
+ "VI"\
26
+ "VII"\
27
+ "VIII"\
28
+ "IX"\
29
+ "X"\
30
+ "XI"\
31
+ "XII"\
32
+ ""]
33
+ ::msgcat::mcset bg MONTHS_FULL [list \
34
+ "\u042f\u043d\u0443\u0430\u0440\u0438"\
35
+ "\u0424\u0435\u0432\u0440\u0443\u0430\u0440\u0438"\
36
+ "\u041c\u0430\u0440\u0442"\
37
+ "\u0410\u043f\u0440\u0438\u043b"\
38
+ "\u041c\u0430\u0439"\
39
+ "\u042e\u043d\u0438"\
40
+ "\u042e\u043b\u0438"\
41
+ "\u0410\u0432\u0433\u0443\u0441\u0442"\
42
+ "\u0421\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438"\
43
+ "\u041e\u043a\u0442\u043e\u043c\u0432\u0440\u0438"\
44
+ "\u041d\u043e\u0435\u043c\u0432\u0440\u0438"\
45
+ "\u0414\u0435\u043a\u0435\u043c\u0432\u0440\u0438"\
46
+ ""]
47
+ ::msgcat::mcset bg BCE "\u043f\u0440.\u043d.\u0435."
48
+ ::msgcat::mcset bg CE "\u043d.\u0435."
49
+ ::msgcat::mcset bg DATE_FORMAT "%Y-%m-%e"
50
+ ::msgcat::mcset bg TIME_FORMAT "%k:%M:%S"
51
+ ::msgcat::mcset bg DATE_TIME_FORMAT "%Y-%m-%e %k:%M:%S %z"
52
+ }
parrot/lib/tcl8.6/msgs/bn_in.msg ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset bn_IN DATE_FORMAT "%A %d %b %Y"
4
+ ::msgcat::mcset bn_IN TIME_FORMAT_12 "%I:%M:%S %z"
5
+ ::msgcat::mcset bn_IN DATE_TIME_FORMAT "%A %d %b %Y %I:%M:%S %z %z"
6
+ }
parrot/lib/tcl8.6/msgs/ca.msg ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset ca DAYS_OF_WEEK_ABBREV [list \
4
+ "dg."\
5
+ "dl."\
6
+ "dt."\
7
+ "dc."\
8
+ "dj."\
9
+ "dv."\
10
+ "ds."]
11
+ ::msgcat::mcset ca DAYS_OF_WEEK_FULL [list \
12
+ "diumenge"\
13
+ "dilluns"\
14
+ "dimarts"\
15
+ "dimecres"\
16
+ "dijous"\
17
+ "divendres"\
18
+ "dissabte"]
19
+ ::msgcat::mcset ca MONTHS_ABBREV [list \
20
+ "gen."\
21
+ "feb."\
22
+ "mar\u00e7"\
23
+ "abr."\
24
+ "maig"\
25
+ "juny"\
26
+ "jul."\
27
+ "ag."\
28
+ "set."\
29
+ "oct."\
30
+ "nov."\
31
+ "des."\
32
+ ""]
33
+ ::msgcat::mcset ca MONTHS_FULL [list \
34
+ "gener"\
35
+ "febrer"\
36
+ "mar\u00e7"\
37
+ "abril"\
38
+ "maig"\
39
+ "juny"\
40
+ "juliol"\
41
+ "agost"\
42
+ "setembre"\
43
+ "octubre"\
44
+ "novembre"\
45
+ "desembre"\
46
+ ""]
47
+ ::msgcat::mcset ca DATE_FORMAT "%d/%m/%Y"
48
+ ::msgcat::mcset ca TIME_FORMAT "%H:%M:%S"
49
+ ::msgcat::mcset ca DATE_TIME_FORMAT "%d/%m/%Y %H:%M:%S %z"
50
+ }
parrot/lib/tcl8.6/msgs/de_at.msg ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset de_AT MONTHS_ABBREV [list \
4
+ "J\u00e4n"\
5
+ "Feb"\
6
+ "M\u00e4r"\
7
+ "Apr"\
8
+ "Mai"\
9
+ "Jun"\
10
+ "Jul"\
11
+ "Aug"\
12
+ "Sep"\
13
+ "Okt"\
14
+ "Nov"\
15
+ "Dez"\
16
+ ""]
17
+ ::msgcat::mcset de_AT MONTHS_FULL [list \
18
+ "J\u00e4nner"\
19
+ "Februar"\
20
+ "M\u00e4rz"\
21
+ "April"\
22
+ "Mai"\
23
+ "Juni"\
24
+ "Juli"\
25
+ "August"\
26
+ "September"\
27
+ "Oktober"\
28
+ "November"\
29
+ "Dezember"\
30
+ ""]
31
+ ::msgcat::mcset de_AT DATE_FORMAT "%Y-%m-%d"
32
+ ::msgcat::mcset de_AT TIME_FORMAT "%T"
33
+ ::msgcat::mcset de_AT TIME_FORMAT_12 "%T"
34
+ ::msgcat::mcset de_AT DATE_TIME_FORMAT "%a %d %b %Y %T %z"
35
+ }
parrot/lib/tcl8.6/msgs/el.msg ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset el DAYS_OF_WEEK_ABBREV [list \
4
+ "\u039a\u03c5\u03c1"\
5
+ "\u0394\u03b5\u03c5"\
6
+ "\u03a4\u03c1\u03b9"\
7
+ "\u03a4\u03b5\u03c4"\
8
+ "\u03a0\u03b5\u03bc"\
9
+ "\u03a0\u03b1\u03c1"\
10
+ "\u03a3\u03b1\u03b2"]
11
+ ::msgcat::mcset el DAYS_OF_WEEK_FULL [list \
12
+ "\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae"\
13
+ "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1"\
14
+ "\u03a4\u03c1\u03af\u03c4\u03b7"\
15
+ "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7"\
16
+ "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7"\
17
+ "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae"\
18
+ "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf"]
19
+ ::msgcat::mcset el MONTHS_ABBREV [list \
20
+ "\u0399\u03b1\u03bd"\
21
+ "\u03a6\u03b5\u03b2"\
22
+ "\u039c\u03b1\u03c1"\
23
+ "\u0391\u03c0\u03c1"\
24
+ "\u039c\u03b1\u03ca"\
25
+ "\u0399\u03bf\u03c5\u03bd"\
26
+ "\u0399\u03bf\u03c5\u03bb"\
27
+ "\u0391\u03c5\u03b3"\
28
+ "\u03a3\u03b5\u03c0"\
29
+ "\u039f\u03ba\u03c4"\
30
+ "\u039d\u03bf\u03b5"\
31
+ "\u0394\u03b5\u03ba"\
32
+ ""]
33
+ ::msgcat::mcset el MONTHS_FULL [list \
34
+ "\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2"\
35
+ "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2"\
36
+ "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2"\
37
+ "\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2"\
38
+ "\u039c\u03ac\u03ca\u03bf\u03c2"\
39
+ "\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2"\
40
+ "\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2"\
41
+ "\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2"\
42
+ "\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2"\
43
+ "\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2"\
44
+ "\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2"\
45
+ "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2"\
46
+ ""]
47
+ ::msgcat::mcset el AM "\u03c0\u03bc"
48
+ ::msgcat::mcset el PM "\u03bc\u03bc"
49
+ ::msgcat::mcset el DATE_FORMAT "%e/%m/%Y"
50
+ ::msgcat::mcset el TIME_FORMAT_12 "%l:%M:%S %P"
51
+ ::msgcat::mcset el DATE_TIME_FORMAT "%e/%m/%Y %l:%M:%S %P %z"
52
+ }
parrot/lib/tcl8.6/msgs/en_ca.msg ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset en_CA DATE_FORMAT "%d/%m/%y"
4
+ ::msgcat::mcset en_CA TIME_FORMAT "%r"
5
+ ::msgcat::mcset en_CA TIME_FORMAT_12 "%I:%M:%S %p"
6
+ ::msgcat::mcset en_CA DATE_TIME_FORMAT "%a %d %b %Y %r %z"
7
+ }
parrot/lib/tcl8.6/msgs/en_ie.msg ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset en_IE DATE_FORMAT "%d/%m/%y"
4
+ ::msgcat::mcset en_IE TIME_FORMAT "%T"
5
+ ::msgcat::mcset en_IE TIME_FORMAT_12 "%T"
6
+ ::msgcat::mcset en_IE DATE_TIME_FORMAT "%a %d %b %Y %T %z"
7
+ }
parrot/lib/tcl8.6/msgs/en_in.msg ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset en_IN AM "AM"
4
+ ::msgcat::mcset en_IN PM "PM"
5
+ ::msgcat::mcset en_IN DATE_FORMAT "%d %B %Y"
6
+ ::msgcat::mcset en_IN TIME_FORMAT "%H:%M:%S"
7
+ ::msgcat::mcset en_IN DATE_TIME_FORMAT "%d %B %Y %H:%M:%S %z"
8
+ }
parrot/lib/tcl8.6/msgs/en_nz.msg ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset en_NZ DATE_FORMAT "%e/%m/%Y"
4
+ ::msgcat::mcset en_NZ TIME_FORMAT "%H:%M:%S"
5
+ ::msgcat::mcset en_NZ TIME_FORMAT_12 "%I:%M:%S %P %z"
6
+ ::msgcat::mcset en_NZ DATE_TIME_FORMAT "%e/%m/%Y %H:%M:%S %z"
7
+ }
parrot/lib/tcl8.6/msgs/en_sg.msg ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset en_SG DATE_FORMAT "%d %b %Y"
4
+ ::msgcat::mcset en_SG TIME_FORMAT_12 "%P %I:%M:%S"
5
+ ::msgcat::mcset en_SG DATE_TIME_FORMAT "%d %b %Y %P %I:%M:%S %z"
6
+ }
parrot/lib/tcl8.6/msgs/eo.msg ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset eo DAYS_OF_WEEK_ABBREV [list \
4
+ "di"\
5
+ "lu"\
6
+ "ma"\
7
+ "me"\
8
+ "\u0135a"\
9
+ "ve"\
10
+ "sa"]
11
+ ::msgcat::mcset eo DAYS_OF_WEEK_FULL [list \
12
+ "diman\u0109o"\
13
+ "lundo"\
14
+ "mardo"\
15
+ "merkredo"\
16
+ "\u0135a\u016ddo"\
17
+ "vendredo"\
18
+ "sabato"]
19
+ ::msgcat::mcset eo MONTHS_ABBREV [list \
20
+ "jan"\
21
+ "feb"\
22
+ "mar"\
23
+ "apr"\
24
+ "maj"\
25
+ "jun"\
26
+ "jul"\
27
+ "a\u016dg"\
28
+ "sep"\
29
+ "okt"\
30
+ "nov"\
31
+ "dec"\
32
+ ""]
33
+ ::msgcat::mcset eo MONTHS_FULL [list \
34
+ "januaro"\
35
+ "februaro"\
36
+ "marto"\
37
+ "aprilo"\
38
+ "majo"\
39
+ "junio"\
40
+ "julio"\
41
+ "a\u016dgusto"\
42
+ "septembro"\
43
+ "oktobro"\
44
+ "novembro"\
45
+ "decembro"\
46
+ ""]
47
+ ::msgcat::mcset eo BCE "aK"
48
+ ::msgcat::mcset eo CE "pK"
49
+ ::msgcat::mcset eo AM "atm"
50
+ ::msgcat::mcset eo PM "ptm"
51
+ ::msgcat::mcset eo DATE_FORMAT "%Y-%b-%d"
52
+ ::msgcat::mcset eo TIME_FORMAT "%H:%M:%S"
53
+ ::msgcat::mcset eo DATE_TIME_FORMAT "%Y-%b-%d %H:%M:%S %z"
54
+ }
parrot/lib/tcl8.6/msgs/es_bo.msg ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset es_BO DATE_FORMAT "%d-%m-%Y"
4
+ ::msgcat::mcset es_BO TIME_FORMAT_12 "%I:%M:%S %P"
5
+ ::msgcat::mcset es_BO DATE_TIME_FORMAT "%d-%m-%Y %I:%M:%S %P %z"
6
+ }
parrot/lib/tcl8.6/msgs/es_do.msg ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset es_DO DATE_FORMAT "%m/%d/%Y"
4
+ ::msgcat::mcset es_DO TIME_FORMAT_12 "%I:%M:%S %P"
5
+ ::msgcat::mcset es_DO DATE_TIME_FORMAT "%m/%d/%Y %I:%M:%S %P %z"
6
+ }
parrot/lib/tcl8.6/msgs/es_ec.msg ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset es_EC DATE_FORMAT "%d/%m/%Y"
4
+ ::msgcat::mcset es_EC TIME_FORMAT_12 "%I:%M:%S %P"
5
+ ::msgcat::mcset es_EC DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z"
6
+ }
parrot/lib/tcl8.6/msgs/es_ni.msg ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset es_NI DATE_FORMAT "%m-%d-%Y"
4
+ ::msgcat::mcset es_NI TIME_FORMAT_12 "%I:%M:%S %P"
5
+ ::msgcat::mcset es_NI DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z"
6
+ }
parrot/lib/tcl8.6/msgs/es_sv.msg ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset es_SV DATE_FORMAT "%m-%d-%Y"
4
+ ::msgcat::mcset es_SV TIME_FORMAT_12 "%I:%M:%S %P"
5
+ ::msgcat::mcset es_SV DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z"
6
+ }
parrot/lib/tcl8.6/msgs/es_uy.msg ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset es_UY DATE_FORMAT "%d/%m/%Y"
4
+ ::msgcat::mcset es_UY TIME_FORMAT_12 "%I:%M:%S %P"
5
+ ::msgcat::mcset es_UY DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z"
6
+ }
parrot/lib/tcl8.6/msgs/es_ve.msg ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset es_VE DATE_FORMAT "%d/%m/%Y"
4
+ ::msgcat::mcset es_VE TIME_FORMAT_12 "%I:%M:%S %P"
5
+ ::msgcat::mcset es_VE DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z"
6
+ }
parrot/lib/tcl8.6/msgs/eu.msg ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset eu DAYS_OF_WEEK_ABBREV [list \
4
+ "igandea"\
5
+ "astelehena"\
6
+ "asteartea"\
7
+ "asteazkena"\
8
+ "osteguna"\
9
+ "ostirala"\
10
+ "larunbata"]
11
+ ::msgcat::mcset eu DAYS_OF_WEEK_FULL [list \
12
+ "igandea"\
13
+ "astelehena"\
14
+ "asteartea"\
15
+ "asteazkena"\
16
+ "osteguna"\
17
+ "ostirala"\
18
+ "larunbata"]
19
+ ::msgcat::mcset eu MONTHS_ABBREV [list \
20
+ "urt"\
21
+ "ots"\
22
+ "mar"\
23
+ "api"\
24
+ "mai"\
25
+ "eka"\
26
+ "uzt"\
27
+ "abu"\
28
+ "ira"\
29
+ "urr"\
30
+ "aza"\
31
+ "abe"\
32
+ ""]
33
+ ::msgcat::mcset eu MONTHS_FULL [list \
34
+ "urtarrila"\
35
+ "otsaila"\
36
+ "martxoa"\
37
+ "apirila"\
38
+ "maiatza"\
39
+ "ekaina"\
40
+ "uztaila"\
41
+ "abuztua"\
42
+ "iraila"\
43
+ "urria"\
44
+ "azaroa"\
45
+ "abendua"\
46
+ ""]
47
+ }
parrot/lib/tcl8.6/msgs/fa_ir.msg ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset fa_IR AM "\u0635\u0628\u062d"
4
+ ::msgcat::mcset fa_IR PM "\u0639\u0635\u0631"
5
+ ::msgcat::mcset fa_IR DATE_FORMAT "%d\u2044%m\u2044%Y"
6
+ ::msgcat::mcset fa_IR TIME_FORMAT "%S:%M:%H"
7
+ ::msgcat::mcset fa_IR TIME_FORMAT_12 "%S:%M:%l %P"
8
+ ::msgcat::mcset fa_IR DATE_TIME_FORMAT "%d\u2044%m\u2044%Y %S:%M:%H %z"
9
+ }
parrot/lib/tcl8.6/msgs/fo.msg ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset fo DAYS_OF_WEEK_ABBREV [list \
4
+ "sun"\
5
+ "m\u00e1n"\
6
+ "t\u00fds"\
7
+ "mik"\
8
+ "h\u00f3s"\
9
+ "fr\u00ed"\
10
+ "ley"]
11
+ ::msgcat::mcset fo DAYS_OF_WEEK_FULL [list \
12
+ "sunnudagur"\
13
+ "m\u00e1nadagur"\
14
+ "t\u00fdsdagur"\
15
+ "mikudagur"\
16
+ "h\u00f3sdagur"\
17
+ "fr\u00edggjadagur"\
18
+ "leygardagur"]
19
+ ::msgcat::mcset fo MONTHS_ABBREV [list \
20
+ "jan"\
21
+ "feb"\
22
+ "mar"\
23
+ "apr"\
24
+ "mai"\
25
+ "jun"\
26
+ "jul"\
27
+ "aug"\
28
+ "sep"\
29
+ "okt"\
30
+ "nov"\
31
+ "des"\
32
+ ""]
33
+ ::msgcat::mcset fo MONTHS_FULL [list \
34
+ "januar"\
35
+ "februar"\
36
+ "mars"\
37
+ "apr\u00edl"\
38
+ "mai"\
39
+ "juni"\
40
+ "juli"\
41
+ "august"\
42
+ "september"\
43
+ "oktober"\
44
+ "november"\
45
+ "desember"\
46
+ ""]
47
+ }
parrot/lib/tcl8.6/msgs/fr.msg ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset fr DAYS_OF_WEEK_ABBREV [list \
4
+ "dim."\
5
+ "lun."\
6
+ "mar."\
7
+ "mer."\
8
+ "jeu."\
9
+ "ven."\
10
+ "sam."]
11
+ ::msgcat::mcset fr DAYS_OF_WEEK_FULL [list \
12
+ "dimanche"\
13
+ "lundi"\
14
+ "mardi"\
15
+ "mercredi"\
16
+ "jeudi"\
17
+ "vendredi"\
18
+ "samedi"]
19
+ ::msgcat::mcset fr MONTHS_ABBREV [list \
20
+ "janv."\
21
+ "f\u00e9vr."\
22
+ "mars"\
23
+ "avr."\
24
+ "mai"\
25
+ "juin"\
26
+ "juil."\
27
+ "ao\u00fbt"\
28
+ "sept."\
29
+ "oct."\
30
+ "nov."\
31
+ "d\u00e9c."\
32
+ ""]
33
+ ::msgcat::mcset fr MONTHS_FULL [list \
34
+ "janvier"\
35
+ "f\u00e9vrier"\
36
+ "mars"\
37
+ "avril"\
38
+ "mai"\
39
+ "juin"\
40
+ "juillet"\
41
+ "ao\u00fbt"\
42
+ "septembre"\
43
+ "octobre"\
44
+ "novembre"\
45
+ "d\u00e9cembre"\
46
+ ""]
47
+ ::msgcat::mcset fr BCE "av. J.-C."
48
+ ::msgcat::mcset fr CE "ap. J.-C."
49
+ ::msgcat::mcset fr DATE_FORMAT "%e %B %Y"
50
+ ::msgcat::mcset fr TIME_FORMAT "%H:%M:%S"
51
+ ::msgcat::mcset fr DATE_TIME_FORMAT "%e %B %Y %H:%M:%S %z"
52
+ }
parrot/lib/tcl8.6/msgs/fr_be.msg ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset fr_BE DATE_FORMAT "%d/%m/%y"
4
+ ::msgcat::mcset fr_BE TIME_FORMAT "%T"
5
+ ::msgcat::mcset fr_BE TIME_FORMAT_12 "%T"
6
+ ::msgcat::mcset fr_BE DATE_TIME_FORMAT "%a %d %b %Y %T %z"
7
+ }
parrot/lib/tcl8.6/msgs/fr_ca.msg ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset fr_CA DATE_FORMAT "%Y-%m-%d"
4
+ ::msgcat::mcset fr_CA TIME_FORMAT "%T"
5
+ ::msgcat::mcset fr_CA TIME_FORMAT_12 "%T"
6
+ ::msgcat::mcset fr_CA DATE_TIME_FORMAT "%a %d %b %Y %T %z"
7
+ }
parrot/lib/tcl8.6/msgs/fr_ch.msg ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # created by tools/loadICU.tcl -- do not edit
2
+ namespace eval ::tcl::clock {
3
+ ::msgcat::mcset fr_CH DATE_FORMAT "%d. %m. %y"
4
+ ::msgcat::mcset fr_CH TIME_FORMAT "%T"
5
+ ::msgcat::mcset fr_CH TIME_FORMAT_12 "%T"
6
+ ::msgcat::mcset fr_CH DATE_TIME_FORMAT "%a %d %b %Y %T %z"
7
+ }