Update unidecode module 1.1.1 (632af82) → 1.3.6 (4141992).

This commit is contained in:
JackDandy 2023-01-12 20:12:58 +00:00
parent adf519cf80
commit 7170eecdca
133 changed files with 5720 additions and 5429 deletions

View file

@ -4,6 +4,7 @@
* Add Filelock 3.9.0 (ce3e891) * Add Filelock 3.9.0 (ce3e891)
* Remove Lockfile no longer used by Cachecontrol * Remove Lockfile no longer used by Cachecontrol
* Update Msgpack 1.0.0 (fa7d744) to 1.0.4 (b5acfd5) * Update Msgpack 1.0.0 (fa7d744) to 1.0.4 (b5acfd5)
* Update unidecode module 1.1.1 (632af82) to 1.3.6 (4141992)
[develop changelog] [develop changelog]

View file

@ -3,35 +3,39 @@
"""Transliterate Unicode text into plain 7-bit ASCII. """Transliterate Unicode text into plain 7-bit ASCII.
Example usage: Example usage:
>>> from unidecode import unidecode >>> from unidecode import unidecode
>>> unidecode(u"\u5317\u4EB0") >>> unidecode("\u5317\u4EB0")
"Bei Jing " "Bei Jing "
The transliteration uses a straightforward map, and doesn't have alternatives The transliteration uses a straightforward map, and doesn't have alternatives
for the same character based on language, position, or anything else. for the same character based on language, position, or anything else.
In Python 3, a standard string object will be returned. If you need bytes, use: A standard string object will be returned. If you need bytes, use:
>>> unidecode("Κνωσός").encode("ascii") >>> unidecode("Κνωσός").encode("ascii")
b'Knosos' b'Knosos'
""" """
import warnings import warnings
from sys import version_info from typing import Dict, Optional, Sequence
Cache = {} Cache = {} # type: Dict[int, Optional[Sequence[Optional[str]]]]
class UnidecodeError(ValueError):
def __init__(self, message: str, index: Optional[int] = None) -> None:
"""Raised for Unidecode-related errors.
The index attribute contains the index of the character that caused
the error.
"""
super(UnidecodeError, self).__init__(message)
self.index = index
def _warn_if_not_unicode(string): def unidecode_expect_ascii(string: str, errors: str = 'ignore', replace_str: str = '?') -> str:
if version_info[0] < 3 and not isinstance(string, unicode):
warnings.warn( "Argument %r is not an unicode object. "
"Passing an encoded string will likely have "
"unexpected results." % (type(string),),
RuntimeWarning, 2)
def unidecode_expect_ascii(string):
"""Transliterate an Unicode object into an ASCII string """Transliterate an Unicode object into an ASCII string
>>> unidecode(u"\u5317\u4EB0") >>> unidecode("\u5317\u4EB0")
"Bei Jing " "Bei Jing "
This function first tries to convert the string using ASCII codec. This function first tries to convert the string using ASCII codec.
@ -39,65 +43,96 @@ def unidecode_expect_ascii(string):
transliteration using the character tables. transliteration using the character tables.
This is approx. five times faster if the string only contains ASCII This is approx. five times faster if the string only contains ASCII
characters, but slightly slower than using unidecode directly if non-ASCII characters, but slightly slower than unicode_expect_nonascii if
chars are present. non-ASCII characters are present.
errors specifies what to do with characters that have not been
found in replacement tables. The default is 'ignore' which ignores
the character. 'strict' raises an UnidecodeError. 'replace'
substitutes the character with replace_str (default is '?').
'preserve' keeps the original character.
Note that if 'preserve' is used the returned string might not be
ASCII!
""" """
_warn_if_not_unicode(string)
try: try:
bytestring = string.encode('ASCII') bytestring = string.encode('ASCII')
except UnicodeEncodeError: except UnicodeEncodeError:
return _unidecode(string) pass
if version_info[0] >= 3:
return string
else: else:
return bytestring return string
def unidecode_expect_nonascii(string): return _unidecode(string, errors, replace_str)
def unidecode_expect_nonascii(string: str, errors: str = 'ignore', replace_str: str = '?') -> str:
"""Transliterate an Unicode object into an ASCII string """Transliterate an Unicode object into an ASCII string
>>> unidecode(u"\u5317\u4EB0") >>> unidecode("\u5317\u4EB0")
"Bei Jing " "Bei Jing "
See unidecode_expect_ascii.
""" """
_warn_if_not_unicode(string) return _unidecode(string, errors, replace_str)
return _unidecode(string)
unidecode = unidecode_expect_ascii unidecode = unidecode_expect_ascii
def _unidecode(string): def _get_repl_str(char: str) -> Optional[str]:
codepoint = ord(char)
if codepoint < 0x80:
# Already ASCII
return str(char)
if codepoint > 0xeffff:
# No data on characters in Private Use Area and above.
return None
if 0xd800 <= codepoint <= 0xdfff:
warnings.warn( "Surrogate character %r will be ignored. "
"You might be using a narrow Python build." % (char,),
RuntimeWarning, 2)
section = codepoint >> 8 # Chop off the last two hex digits
position = codepoint % 256 # Last two hex digits
try:
table = Cache[section]
except KeyError:
try:
mod = __import__('unidecode.x%03x'%(section), globals(), locals(), ['data'])
except ImportError:
# No data on this character
Cache[section] = None
return None
Cache[section] = table = mod.data
if table and len(table) > position:
return table[position]
else:
return None
def _unidecode(string: str, errors: str, replace_str:str) -> str:
retval = [] retval = []
for char in string: for index, char in enumerate(string):
codepoint = ord(char) repl = _get_repl_str(char)
if codepoint < 0x80: # Basic ASCII if repl is None:
retval.append(str(char)) if errors == 'ignore':
continue repl = ''
elif errors == 'strict':
if codepoint > 0xeffff: raise UnidecodeError('no replacement found for character %r '
continue # Characters in Private Use Area and above are ignored 'in position %d' % (char, index), index)
elif errors == 'replace':
repl = replace_str
elif errors == 'preserve':
repl = char
else:
raise UnidecodeError('invalid value for errors parameter %r' % (errors,))
if 0xd800 <= codepoint <= 0xdfff: retval.append(repl)
warnings.warn( "Surrogate character %r will be ignored. "
"You might be using a narrow Python build." % (char,),
RuntimeWarning, 2)
section = codepoint >> 8 # Chop off the last two hex digits
position = codepoint % 256 # Last two hex digits
try:
table = Cache[section]
except KeyError:
try:
mod = __import__('unidecode.x%03x'%(section), globals(), locals(), ['data'])
except ImportError:
Cache[section] = None
continue # No match: ignore this character and carry on.
Cache[section] = table = mod.data
if table and len(table) > position:
retval.append( table[position] )
return ''.join(retval) return ''.join(retval)

View file

@ -1,14 +1,12 @@
# vim:ts=4 sw=4 expandtab softtabstop=4 # vim:ts=4 sw=4 expandtab softtabstop=4
from __future__ import print_function
import argparse import argparse
import io
import locale import locale
import os import os
import sys import sys
from unidecode import unidecode from unidecode import unidecode
PY3 = sys.version_info[0] >= 3
def fatal(msg): def fatal(msg):
sys.stderr.write(msg + "\n") sys.stderr.write(msg + "\n")
sys.exit(1) sys.exit(1)
@ -33,26 +31,21 @@ def main():
if args.text: if args.text:
fatal("Can't use both FILE and -c option") fatal("Can't use both FILE and -c option")
else: else:
with open(args.path, 'rb') as f: stream = open(args.path, 'rb')
stream = f.read()
elif args.text: elif args.text:
if PY3: text = os.fsencode(args.text)
stream = os.fsencode(args.text)
else:
stream = args.text
# add a newline to the string if it comes from the # add a newline to the string if it comes from the
# command line so that the result is printed nicely # command line so that the result is printed nicely
# on the console. # on the console.
stream += b'\n' stream = io.BytesIO(text + b'\n')
else: else:
if PY3: stream = sys.stdin.buffer
stream = sys.stdin.buffer.read()
else:
stream = sys.stdin.read()
try: for line_nr, line in enumerate(stream):
stream = stream.decode(encoding) try:
except UnicodeDecodeError as e: line = line.decode(encoding)
fatal('Unable to decode input: %s, start: %d, end: %d' % (e.reason, e.start, e.end)) except UnicodeDecodeError as e:
fatal('Unable to decode input line %s: %s, start: %d, end: %d' % (line_nr, e.reason, e.start, e.end))
sys.stdout.write(unidecode(stream)) sys.stdout.write(unidecode(line))
stream.close()

View file

@ -76,9 +76,9 @@ data = (
'1', # 0xb9 '1', # 0xb9
'o', # 0xba 'o', # 0xba
'>>', # 0xbb '>>', # 0xbb
' 1/4 ', # 0xbc ' 1/4', # 0xbc
' 1/2 ', # 0xbd ' 1/2', # 0xbd
' 3/4 ', # 0xbe ' 3/4', # 0xbe
'?', # 0xbf '?', # 0xbf
'A', # 0xc0 'A', # 0xc0
'A', # 0xc1 'A', # 0xc1

View file

@ -64,8 +64,8 @@ data = (
'T', # 0x3e 'T', # 0x3e
's', # 0x3f 's', # 0x3f
'z', # 0x40 'z', # 0x40
'[?]', # 0x41 None, # 0x41
'[?]', # 0x42 None, # 0x42
'B', # 0x43 'B', # 0x43
'U', # 0x44 'U', # 0x44
'^', # 0x45 '^', # 0x45
@ -238,20 +238,20 @@ data = (
'V', # 0xec 'V', # 0xec
'=', # 0xed '=', # 0xed
'"', # 0xee '"', # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -78,23 +78,23 @@ data = (
'', # 0x4c '', # 0x4c
'', # 0x4d '', # 0x4d
'', # 0x4e '', # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'[?]', # 0x52 None, # 0x52
'[?]', # 0x53 None, # 0x53
'[?]', # 0x54 None, # 0x54
'[?]', # 0x55 None, # 0x55
'[?]', # 0x56 None, # 0x56
'[?]', # 0x57 None, # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'', # 0x60 '', # 0x60
'', # 0x61 '', # 0x61
'', # 0x62 '', # 0x62
@ -111,26 +111,26 @@ data = (
't', # 0x6d 't', # 0x6d
'v', # 0x6e 'v', # 0x6e
'x', # 0x6f 'x', # 0x6f
'[?]', # 0x70 None, # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'\'', # 0x74 '\'', # 0x74
',', # 0x75 ',', # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'', # 0x7a '', # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'?', # 0x7e '?', # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'[?]', # 0x81 None, # 0x81
'[?]', # 0x82 None, # 0x82
'[?]', # 0x83 None, # 0x83
'', # 0x84 '', # 0x84
'', # 0x85 '', # 0x85
'A', # 0x86 'A', # 0x86
@ -138,9 +138,9 @@ data = (
'E', # 0x88 'E', # 0x88
'E', # 0x89 'E', # 0x89
'I', # 0x8a 'I', # 0x8a
'[?]', # 0x8b None, # 0x8b
'O', # 0x8c 'O', # 0x8c
'[?]', # 0x8d None, # 0x8d
'U', # 0x8e 'U', # 0x8e
'O', # 0x8f 'O', # 0x8f
'I', # 0x90 'I', # 0x90
@ -161,7 +161,7 @@ data = (
'O', # 0x9f 'O', # 0x9f
'P', # 0xa0 'P', # 0xa0
'R', # 0xa1 'R', # 0xa1
'[?]', # 0xa2 None, # 0xa2
'S', # 0xa3 'S', # 0xa3
'T', # 0xa4 'T', # 0xa4
'U', # 0xa5 'U', # 0xa5
@ -206,7 +206,7 @@ data = (
'o', # 0xcc 'o', # 0xcc
'u', # 0xcd 'u', # 0xcd
'o', # 0xce 'o', # 0xce
'[?]', # 0xcf None, # 0xcf
'b', # 0xd0 'b', # 0xd0
'th', # 0xd1 'th', # 0xd1
'U', # 0xd2 'U', # 0xd2
@ -215,8 +215,8 @@ data = (
'ph', # 0xd5 'ph', # 0xd5
'p', # 0xd6 'p', # 0xd6
'&', # 0xd7 '&', # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'St', # 0xda 'St', # 0xda
'st', # 0xdb 'st', # 0xdb
'W', # 0xdc 'W', # 0xdc
@ -243,15 +243,15 @@ data = (
'r', # 0xf1 'r', # 0xf1
'c', # 0xf2 'c', # 0xf2
'j', # 0xf3 'j', # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -134,11 +134,11 @@ data = (
'', # 0x84 '', # 0x84
'', # 0x85 '', # 0x85
'', # 0x86 '', # 0x86
'[?]', # 0x87 None, # 0x87
'*100.000*', # 0x88 '*100.000*', # 0x88
'*1.000.000*', # 0x89 '*1.000.000*', # 0x89
'[?]', # 0x8a None, # 0x8a
'[?]', # 0x8b None, # 0x8b
'"', # 0x8c '"', # 0x8c
'"', # 0x8d '"', # 0x8d
'R\'', # 0x8e 'R\'', # 0x8e
@ -196,17 +196,17 @@ data = (
'zh', # 0xc2 'zh', # 0xc2
'K\'', # 0xc3 'K\'', # 0xc3
'k\'', # 0xc4 'k\'', # 0xc4
'[?]', # 0xc5 None, # 0xc5
'[?]', # 0xc6 None, # 0xc6
'N\'', # 0xc7 'N\'', # 0xc7
'n\'', # 0xc8 'n\'', # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'Ch', # 0xcb 'Ch', # 0xcb
'ch', # 0xcc 'ch', # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'a', # 0xd0 'a', # 0xd0
'a', # 0xd1 'a', # 0xd1
'A', # 0xd2 'A', # 0xd2
@ -245,13 +245,13 @@ data = (
'u', # 0xf3 'u', # 0xf3
'Ch', # 0xf4 'Ch', # 0xf4
'ch', # 0xf5 'ch', # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'Y', # 0xf8 'Y', # 0xf8
'y', # 0xf9 'y', # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,53 +1,53 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'[?]', # 0x01 None, # 0x01
'[?]', # 0x02 None, # 0x02
'[?]', # 0x03 None, # 0x03
'[?]', # 0x04 None, # 0x04
'[?]', # 0x05 None, # 0x05
'[?]', # 0x06 None, # 0x06
'[?]', # 0x07 None, # 0x07
'[?]', # 0x08 None, # 0x08
'[?]', # 0x09 None, # 0x09
'[?]', # 0x0a None, # 0x0a
'[?]', # 0x0b None, # 0x0b
'[?]', # 0x0c None, # 0x0c
'[?]', # 0x0d None, # 0x0d
'[?]', # 0x0e None, # 0x0e
'[?]', # 0x0f None, # 0x0f
'[?]', # 0x10 None, # 0x10
'[?]', # 0x11 None, # 0x11
'[?]', # 0x12 None, # 0x12
'[?]', # 0x13 None, # 0x13
'[?]', # 0x14 None, # 0x14
'[?]', # 0x15 None, # 0x15
'[?]', # 0x16 None, # 0x16
'[?]', # 0x17 None, # 0x17
'[?]', # 0x18 None, # 0x18
'[?]', # 0x19 None, # 0x19
'[?]', # 0x1a None, # 0x1a
'[?]', # 0x1b None, # 0x1b
'[?]', # 0x1c None, # 0x1c
'[?]', # 0x1d None, # 0x1d
'[?]', # 0x1e None, # 0x1e
'[?]', # 0x1f None, # 0x1f
'[?]', # 0x20 None, # 0x20
'[?]', # 0x21 None, # 0x21
'[?]', # 0x22 None, # 0x22
'[?]', # 0x23 None, # 0x23
'[?]', # 0x24 None, # 0x24
'[?]', # 0x25 None, # 0x25
'[?]', # 0x26 None, # 0x26
'[?]', # 0x27 None, # 0x27
'[?]', # 0x28 None, # 0x28
'[?]', # 0x29 None, # 0x29
'[?]', # 0x2a None, # 0x2a
'[?]', # 0x2b None, # 0x2b
'[?]', # 0x2c None, # 0x2c
'[?]', # 0x2d None, # 0x2d
'[?]', # 0x2e None, # 0x2e
'[?]', # 0x2f None, # 0x2f
'[?]', # 0x30 None, # 0x30
'A', # 0x31 'A', # 0x31
'B', # 0x32 'B', # 0x32
'G', # 0x33 'G', # 0x33
@ -86,8 +86,8 @@ data = (
'K`', # 0x54 'K`', # 0x54
'O', # 0x55 'O', # 0x55
'F', # 0x56 'F', # 0x56
'[?]', # 0x57 None, # 0x57
'[?]', # 0x58 None, # 0x58
'<', # 0x59 '<', # 0x59
'\'', # 0x5a '\'', # 0x5a
'/', # 0x5b '/', # 0x5b
@ -95,7 +95,7 @@ data = (
',', # 0x5d ',', # 0x5d
'?', # 0x5e '?', # 0x5e
'.', # 0x5f '.', # 0x5f
'[?]', # 0x60 None, # 0x60
'a', # 0x61 'a', # 0x61
'b', # 0x62 'b', # 0x62
'g', # 0x63 'g', # 0x63
@ -135,15 +135,15 @@ data = (
'o', # 0x85 'o', # 0x85
'f', # 0x86 'f', # 0x86
'ew', # 0x87 'ew', # 0x87
'[?]', # 0x88 None, # 0x88
':', # 0x89 ':', # 0x89
'-', # 0x8a '-', # 0x8a
'[?]', # 0x8b None, # 0x8b
'[?]', # 0x8c None, # 0x8c
'[?]', # 0x8d None, # 0x8d
'[?]', # 0x8e None, # 0x8e
'[?]', # 0x8f None, # 0x8f
'[?]', # 0x90 None, # 0x90
'', # 0x91 '', # 0x91
'', # 0x92 '', # 0x92
'', # 0x93 '', # 0x93
@ -175,7 +175,7 @@ data = (
'', # 0xad '', # 0xad
'', # 0xae '', # 0xae
'', # 0xaf '', # 0xaf
'@', # 0xb0 '', # 0xb0
'e', # 0xb1 'e', # 0xb1
'a', # 0xb2 'a', # 0xb2
'o', # 0xb3 'o', # 0xb3
@ -187,26 +187,26 @@ data = (
'o', # 0xb9 'o', # 0xb9
'o', # 0xba 'o', # 0xba
'u', # 0xbb 'u', # 0xbb
'\'', # 0xbc '', # 0xbc
'', # 0xbd '', # 0xbd
'-', # 0xbe '-', # 0xbe
'-', # 0xbf '', # 0xbf
'|', # 0xc0 '|', # 0xc0
'', # 0xc1 '', # 0xc1
'', # 0xc2 '', # 0xc2
':', # 0xc3 '.', # 0xc3
'', # 0xc4 '', # 0xc4
'', # 0xc5 '', # 0xc5
'n', # 0xc6 'n', # 0xc6
'o', # 0xc7 'o', # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'A', # 0xd0 'A', # 0xd0
'b', # 0xd1 'b', # 0xd1
'g', # 0xd2 'g', # 0xd2
@ -214,11 +214,11 @@ data = (
'h', # 0xd4 'h', # 0xd4
'v', # 0xd5 'v', # 0xd5
'z', # 0xd6 'z', # 0xd6
'KH', # 0xd7 'H', # 0xd7
't', # 0xd8 'T', # 0xd8
'y', # 0xd9 'y', # 0xd9
'k', # 0xda 'KH', # 0xda
'k', # 0xdb 'KH', # 0xdb
'l', # 0xdc 'l', # 0xdc
'm', # 0xdd 'm', # 0xdd
'm', # 0xde 'm', # 0xde
@ -230,28 +230,28 @@ data = (
'p', # 0xe4 'p', # 0xe4
'TS', # 0xe5 'TS', # 0xe5
'TS', # 0xe6 'TS', # 0xe6
'q', # 0xe7 'k', # 0xe7
'r', # 0xe8 'r', # 0xe8
'SH', # 0xe9 'SH', # 0xe9
't', # 0xea 't', # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef 'YYY', # 0xef
'V', # 0xf0 'V', # 0xf0
'OY', # 0xf1 'OY', # 0xf1
'i', # 0xf2 'EY', # 0xf2
'\'', # 0xf3 '\'', # 0xf3
'"', # 0xf4 '"', # 0xf4
'v', # 0xf5 None, # 0xf5
'n', # 0xf6 None, # 0xf6
'q', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,37 +1,37 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'[?]', # 0x01 None, # 0x01
'[?]', # 0x02 None, # 0x02
'[?]', # 0x03 None, # 0x03
'[?]', # 0x04 None, # 0x04
'[?]', # 0x05 None, # 0x05
'[?]', # 0x06 None, # 0x06
'[?]', # 0x07 None, # 0x07
'[?]', # 0x08 None, # 0x08
'[?]', # 0x09 None, # 0x09
'[?]', # 0x0a None, # 0x0a
'[?]', # 0x0b None, # 0x0b
',', # 0x0c ',', # 0x0c
'[?]', # 0x0d None, # 0x0d
'[?]', # 0x0e None, # 0x0e
'[?]', # 0x0f None, # 0x0f
'[?]', # 0x10 None, # 0x10
'[?]', # 0x11 None, # 0x11
'[?]', # 0x12 None, # 0x12
'[?]', # 0x13 None, # 0x13
'[?]', # 0x14 None, # 0x14
'[?]', # 0x15 None, # 0x15
'[?]', # 0x16 None, # 0x16
'[?]', # 0x17 None, # 0x17
'[?]', # 0x18 None, # 0x18
'[?]', # 0x19 None, # 0x19
'[?]', # 0x1a None, # 0x1a
';', # 0x1b ';', # 0x1b
'[?]', # 0x1c None, # 0x1c
'[?]', # 0x1d None, # 0x1d
'[?]', # 0x1e None, # 0x1e
'?', # 0x1f '?', # 0x1f
'[?]', # 0x20 None, # 0x20
'', # 0x21 '', # 0x21
'a', # 0x22 'a', # 0x22
'\'', # 0x23 '\'', # 0x23
@ -58,11 +58,11 @@ data = (
'Z', # 0x38 'Z', # 0x38
'`', # 0x39 '`', # 0x39
'G', # 0x3a 'G', # 0x3a
'[?]', # 0x3b None, # 0x3b
'[?]', # 0x3c None, # 0x3c
'[?]', # 0x3d None, # 0x3d
'[?]', # 0x3e None, # 0x3e
'[?]', # 0x3f None, # 0x3f
'', # 0x40 '', # 0x40
'f', # 0x41 'f', # 0x41
'q', # 0x42 'q', # 0x42
@ -85,16 +85,16 @@ data = (
'', # 0x53 '', # 0x53
'\'', # 0x54 '\'', # 0x54
'\'', # 0x55 '\'', # 0x55
'[?]', # 0x56 None, # 0x56
'[?]', # 0x57 None, # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'0', # 0x60 '0', # 0x60
'1', # 0x61 '1', # 0x61
'2', # 0x62 '2', # 0x62
@ -109,8 +109,8 @@ data = (
'.', # 0x6b '.', # 0x6b
',', # 0x6c ',', # 0x6c
'*', # 0x6d '*', # 0x6d
'[?]', # 0x6e None, # 0x6e
'[?]', # 0x6f None, # 0x6f
'', # 0x70 '', # 0x70
'\'', # 0x71 '\'', # 0x71
'\'', # 0x72 '\'', # 0x72
@ -237,8 +237,8 @@ data = (
'', # 0xeb '', # 0xeb
'', # 0xec '', # 0xec
'', # 0xed '', # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'0', # 0xf0 '0', # 0xf0
'1', # 0xf1 '1', # 0xf1
'2', # 0xf2 '2', # 0xf2

View file

@ -13,7 +13,7 @@ data = (
'{', # 0x0b '{', # 0x0b
'}', # 0x0c '}', # 0x0c
'*', # 0x0d '*', # 0x0d
'[?]', # 0x0e None, # 0x0e
'', # 0x0f '', # 0x0f
'\'', # 0x10 '\'', # 0x10
'', # 0x11 '', # 0x11
@ -44,9 +44,9 @@ data = (
'r', # 0x2a 'r', # 0x2a
'sh', # 0x2b 'sh', # 0x2b
't', # 0x2c 't', # 0x2c
'[?]', # 0x2d None, # 0x2d
'[?]', # 0x2e None, # 0x2e
'[?]', # 0x2f None, # 0x2f
'a', # 0x30 'a', # 0x30
'a', # 0x31 'a', # 0x31
'a', # 0x32 'a', # 0x32
@ -74,59 +74,59 @@ data = (
'@', # 0x48 '@', # 0x48
'|', # 0x49 '|', # 0x49
'+', # 0x4a '+', # 0x4a
'[?]', # 0x4b None, # 0x4b
'[?]', # 0x4c None, # 0x4c
'[?]', # 0x4d None, # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'[?]', # 0x52 None, # 0x52
'[?]', # 0x53 None, # 0x53
'[?]', # 0x54 None, # 0x54
'[?]', # 0x55 None, # 0x55
'[?]', # 0x56 None, # 0x56
'[?]', # 0x57 None, # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'[?]', # 0x60 None, # 0x60
'[?]', # 0x61 None, # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'[?]', # 0x64 None, # 0x64
'[?]', # 0x65 None, # 0x65
'[?]', # 0x66 None, # 0x66
'[?]', # 0x67 None, # 0x67
'[?]', # 0x68 None, # 0x68
'[?]', # 0x69 None, # 0x69
'[?]', # 0x6a None, # 0x6a
'[?]', # 0x6b None, # 0x6b
'[?]', # 0x6c None, # 0x6c
'[?]', # 0x6d None, # 0x6d
'[?]', # 0x6e None, # 0x6e
'[?]', # 0x6f None, # 0x6f
'[?]', # 0x70 None, # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'h', # 0x80 'h', # 0x80
'sh', # 0x81 'sh', # 0x81
'n', # 0x82 'n', # 0x82
@ -176,82 +176,82 @@ data = (
'o', # 0xae 'o', # 0xae
'oa', # 0xaf 'oa', # 0xaf
'', # 0xb0 '', # 0xb0
'[?]', # 0xb1 None, # 0xb1
'[?]', # 0xb2 None, # 0xb2
'[?]', # 0xb3 None, # 0xb3
'[?]', # 0xb4 None, # 0xb4
'[?]', # 0xb5 None, # 0xb5
'[?]', # 0xb6 None, # 0xb6
'[?]', # 0xb7 None, # 0xb7
'[?]', # 0xb8 None, # 0xb8
'[?]', # 0xb9 None, # 0xb9
'[?]', # 0xba None, # 0xba
'[?]', # 0xbb None, # 0xbb
'[?]', # 0xbc None, # 0xbc
'[?]', # 0xbd None, # 0xbd
'[?]', # 0xbe None, # 0xbe
'[?]', # 0xbf None, # 0xbf
'[?]', # 0xc0 None, # 0xc0
'[?]', # 0xc1 None, # 0xc1
'[?]', # 0xc2 None, # 0xc2
'[?]', # 0xc3 None, # 0xc3
'[?]', # 0xc4 None, # 0xc4
'[?]', # 0xc5 None, # 0xc5
'[?]', # 0xc6 None, # 0xc6
'[?]', # 0xc7 None, # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,9 +1,9 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'N', # 0x01 'N', # 0x01
'N', # 0x02 'N', # 0x02
'H', # 0x03 'H', # 0x03
'[?]', # 0x04 None, # 0x04
'a', # 0x05 'a', # 0x05
'aa', # 0x06 'aa', # 0x06
'i', # 0x07 'i', # 0x07
@ -57,8 +57,8 @@ data = (
'ss', # 0x37 'ss', # 0x37
's', # 0x38 's', # 0x38
'h', # 0x39 'h', # 0x39
'[?]', # 0x3a None, # 0x3a
'[?]', # 0x3b None, # 0x3b
'\'', # 0x3c '\'', # 0x3c
'\'', # 0x3d '\'', # 0x3d
'aa', # 0x3e 'aa', # 0x3e
@ -77,16 +77,16 @@ data = (
'o', # 0x4b 'o', # 0x4b
'au', # 0x4c 'au', # 0x4c
'', # 0x4d '', # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'AUM', # 0x50 'AUM', # 0x50
'\'', # 0x51 '\'', # 0x51
'\'', # 0x52 '\'', # 0x52
'`', # 0x53 '`', # 0x53
'\'', # 0x54 '\'', # 0x54
'[?]', # 0x55 None, # 0x55
'[?]', # 0x56 None, # 0x56
'[?]', # 0x57 None, # 0x57
'q', # 0x58 'q', # 0x58
'khh', # 0x59 'khh', # 0x59
'ghh', # 0x5a 'ghh', # 0x5a
@ -112,26 +112,26 @@ data = (
'8', # 0x6e '8', # 0x6e
'9', # 0x6f '9', # 0x6f
'.', # 0x70 '.', # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'N', # 0x81 'N', # 0x81
'N', # 0x82 'N', # 0x82
'H', # 0x83 'H', # 0x83
'[?]', # 0x84 None, # 0x84
'a', # 0x85 'a', # 0x85
'aa', # 0x86 'aa', # 0x86
'i', # 0x87 'i', # 0x87
@ -140,12 +140,12 @@ data = (
'uu', # 0x8a 'uu', # 0x8a
'R', # 0x8b 'R', # 0x8b
'RR', # 0x8c 'RR', # 0x8c
'[?]', # 0x8d None, # 0x8d
'[?]', # 0x8e None, # 0x8e
'e', # 0x8f 'e', # 0x8f
'ai', # 0x90 'ai', # 0x90
'[?]', # 0x91 None, # 0x91
'[?]', # 0x92 None, # 0x92
'o', # 0x93 'o', # 0x93
'au', # 0x94 'au', # 0x94
'k', # 0x95 'k', # 0x95
@ -168,7 +168,7 @@ data = (
'd', # 0xa6 'd', # 0xa6
'dh', # 0xa7 'dh', # 0xa7
'n', # 0xa8 'n', # 0xa8
'[?]', # 0xa9 None, # 0xa9
'p', # 0xaa 'p', # 0xaa
'ph', # 0xab 'ph', # 0xab
'b', # 0xac 'b', # 0xac
@ -176,19 +176,19 @@ data = (
'm', # 0xae 'm', # 0xae
'y', # 0xaf 'y', # 0xaf
'r', # 0xb0 'r', # 0xb0
'[?]', # 0xb1 None, # 0xb1
'l', # 0xb2 'l', # 0xb2
'[?]', # 0xb3 None, # 0xb3
'[?]', # 0xb4 None, # 0xb4
'[?]', # 0xb5 None, # 0xb5
'sh', # 0xb6 'sh', # 0xb6
'ss', # 0xb7 'ss', # 0xb7
's', # 0xb8 's', # 0xb8
'h', # 0xb9 'h', # 0xb9
'[?]', # 0xba None, # 0xba
'[?]', # 0xbb None, # 0xbb
'\'', # 0xbc '\'', # 0xbc
'[?]', # 0xbd None, # 0xbd
'aa', # 0xbe 'aa', # 0xbe
'i', # 0xbf 'i', # 0xbf
'ii', # 0xc0 'ii', # 0xc0
@ -196,39 +196,39 @@ data = (
'uu', # 0xc2 'uu', # 0xc2
'R', # 0xc3 'R', # 0xc3
'RR', # 0xc4 'RR', # 0xc4
'[?]', # 0xc5 None, # 0xc5
'[?]', # 0xc6 None, # 0xc6
'e', # 0xc7 'e', # 0xc7
'ai', # 0xc8 'ai', # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'o', # 0xcb 'o', # 0xcb
'au', # 0xcc 'au', # 0xcc
'', # 0xcd '', # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'+', # 0xd7 '+', # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'rr', # 0xdc 'rr', # 0xdc
'rh', # 0xdd 'rh', # 0xdd
'[?]', # 0xde None, # 0xde
'yy', # 0xdf 'yy', # 0xdf
'RR', # 0xe0 'RR', # 0xe0
'LL', # 0xe1 'LL', # 0xe1
'L', # 0xe2 'L', # 0xe2
'LL', # 0xe3 'LL', # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'0', # 0xe6 '0', # 0xe6
'1', # 0xe7 '1', # 0xe7
'2', # 0xe8 '2', # 0xe8
@ -250,8 +250,8 @@ data = (
' 1 - 1/', # 0xf8 ' 1 - 1/', # 0xf8
'/16', # 0xf9 '/16', # 0xf9
'', # 0xfa '', # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,23 +1,23 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'[?]', # 0x01 None, # 0x01
'N', # 0x02 'N', # 0x02
'[?]', # 0x03 None, # 0x03
'[?]', # 0x04 None, # 0x04
'a', # 0x05 'a', # 0x05
'aa', # 0x06 'aa', # 0x06
'i', # 0x07 'i', # 0x07
'ii', # 0x08 'ii', # 0x08
'u', # 0x09 'u', # 0x09
'uu', # 0x0a 'uu', # 0x0a
'[?]', # 0x0b None, # 0x0b
'[?]', # 0x0c None, # 0x0c
'[?]', # 0x0d None, # 0x0d
'[?]', # 0x0e None, # 0x0e
'ee', # 0x0f 'ee', # 0x0f
'ai', # 0x10 'ai', # 0x10
'[?]', # 0x11 None, # 0x11
'[?]', # 0x12 None, # 0x12
'oo', # 0x13 'oo', # 0x13
'au', # 0x14 'au', # 0x14
'k', # 0x15 'k', # 0x15
@ -40,7 +40,7 @@ data = (
'd', # 0x26 'd', # 0x26
'dh', # 0x27 'dh', # 0x27
'n', # 0x28 'n', # 0x28
'[?]', # 0x29 None, # 0x29
'p', # 0x2a 'p', # 0x2a
'ph', # 0x2b 'ph', # 0x2b
'b', # 0x2c 'b', # 0x2c
@ -48,59 +48,59 @@ data = (
'm', # 0x2e 'm', # 0x2e
'y', # 0x2f 'y', # 0x2f
'r', # 0x30 'r', # 0x30
'[?]', # 0x31 None, # 0x31
'l', # 0x32 'l', # 0x32
'll', # 0x33 'll', # 0x33
'[?]', # 0x34 None, # 0x34
'v', # 0x35 'v', # 0x35
'sh', # 0x36 'sh', # 0x36
'[?]', # 0x37 None, # 0x37
's', # 0x38 's', # 0x38
'h', # 0x39 'h', # 0x39
'[?]', # 0x3a None, # 0x3a
'[?]', # 0x3b None, # 0x3b
'\'', # 0x3c '\'', # 0x3c
'[?]', # 0x3d None, # 0x3d
'aa', # 0x3e 'aa', # 0x3e
'i', # 0x3f 'i', # 0x3f
'ii', # 0x40 'ii', # 0x40
'u', # 0x41 'u', # 0x41
'uu', # 0x42 'uu', # 0x42
'[?]', # 0x43 None, # 0x43
'[?]', # 0x44 None, # 0x44
'[?]', # 0x45 None, # 0x45
'[?]', # 0x46 None, # 0x46
'ee', # 0x47 'ee', # 0x47
'ai', # 0x48 'ai', # 0x48
'[?]', # 0x49 None, # 0x49
'[?]', # 0x4a None, # 0x4a
'oo', # 0x4b 'oo', # 0x4b
'au', # 0x4c 'au', # 0x4c
'', # 0x4d '', # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'[?]', # 0x52 None, # 0x52
'[?]', # 0x53 None, # 0x53
'[?]', # 0x54 None, # 0x54
'[?]', # 0x55 None, # 0x55
'[?]', # 0x56 None, # 0x56
'[?]', # 0x57 None, # 0x57
'[?]', # 0x58 None, # 0x58
'khh', # 0x59 'khh', # 0x59
'ghh', # 0x5a 'ghh', # 0x5a
'z', # 0x5b 'z', # 0x5b
'rr', # 0x5c 'rr', # 0x5c
'[?]', # 0x5d None, # 0x5d
'f', # 0x5e 'f', # 0x5e
'[?]', # 0x5f None, # 0x5f
'[?]', # 0x60 None, # 0x60
'[?]', # 0x61 None, # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'[?]', # 0x64 None, # 0x64
'[?]', # 0x65 None, # 0x65
'0', # 0x66 '0', # 0x66
'1', # 0x67 '1', # 0x67
'2', # 0x68 '2', # 0x68
@ -116,22 +116,22 @@ data = (
'', # 0x72 '', # 0x72
'', # 0x73 '', # 0x73
'G.E.O.', # 0x74 'G.E.O.', # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'N', # 0x81 'N', # 0x81
'N', # 0x82 'N', # 0x82
'H', # 0x83 'H', # 0x83
'[?]', # 0x84 None, # 0x84
'a', # 0x85 'a', # 0x85
'aa', # 0x86 'aa', # 0x86
'i', # 0x87 'i', # 0x87
@ -139,13 +139,13 @@ data = (
'u', # 0x89 'u', # 0x89
'uu', # 0x8a 'uu', # 0x8a
'R', # 0x8b 'R', # 0x8b
'[?]', # 0x8c None, # 0x8c
'eN', # 0x8d 'eN', # 0x8d
'[?]', # 0x8e None, # 0x8e
'e', # 0x8f 'e', # 0x8f
'ai', # 0x90 'ai', # 0x90
'oN', # 0x91 'oN', # 0x91
'[?]', # 0x92 None, # 0x92
'o', # 0x93 'o', # 0x93
'au', # 0x94 'au', # 0x94
'k', # 0x95 'k', # 0x95
@ -168,7 +168,7 @@ data = (
'd', # 0xa6 'd', # 0xa6
'dh', # 0xa7 'dh', # 0xa7
'n', # 0xa8 'n', # 0xa8
'[?]', # 0xa9 None, # 0xa9
'p', # 0xaa 'p', # 0xaa
'ph', # 0xab 'ph', # 0xab
'b', # 0xac 'b', # 0xac
@ -176,17 +176,17 @@ data = (
'm', # 0xae 'm', # 0xae
'ya', # 0xaf 'ya', # 0xaf
'r', # 0xb0 'r', # 0xb0
'[?]', # 0xb1 None, # 0xb1
'l', # 0xb2 'l', # 0xb2
'll', # 0xb3 'll', # 0xb3
'[?]', # 0xb4 None, # 0xb4
'v', # 0xb5 'v', # 0xb5
'sh', # 0xb6 'sh', # 0xb6
'ss', # 0xb7 'ss', # 0xb7
's', # 0xb8 's', # 0xb8
'h', # 0xb9 'h', # 0xb9
'[?]', # 0xba None, # 0xba
'[?]', # 0xbb None, # 0xbb
'\'', # 0xbc '\'', # 0xbc
'\'', # 0xbd '\'', # 0xbd
'aa', # 0xbe 'aa', # 0xbe
@ -197,38 +197,38 @@ data = (
'R', # 0xc3 'R', # 0xc3
'RR', # 0xc4 'RR', # 0xc4
'eN', # 0xc5 'eN', # 0xc5
'[?]', # 0xc6 None, # 0xc6
'e', # 0xc7 'e', # 0xc7
'ai', # 0xc8 'ai', # 0xc8
'oN', # 0xc9 'oN', # 0xc9
'[?]', # 0xca None, # 0xca
'o', # 0xcb 'o', # 0xcb
'au', # 0xcc 'au', # 0xcc
'', # 0xcd '', # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'AUM', # 0xd0 'AUM', # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'RR', # 0xe0 'RR', # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'0', # 0xe6 '0', # 0xe6
'1', # 0xe7 '1', # 0xe7
'2', # 0xe8 '2', # 0xe8
@ -239,19 +239,19 @@ data = (
'7', # 0xed '7', # 0xed
'8', # 0xee '8', # 0xee
'9', # 0xef '9', # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,9 +1,9 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'N', # 0x01 'N', # 0x01
'N', # 0x02 'N', # 0x02
'H', # 0x03 'H', # 0x03
'[?]', # 0x04 None, # 0x04
'a', # 0x05 'a', # 0x05
'aa', # 0x06 'aa', # 0x06
'i', # 0x07 'i', # 0x07
@ -12,12 +12,12 @@ data = (
'uu', # 0x0a 'uu', # 0x0a
'R', # 0x0b 'R', # 0x0b
'L', # 0x0c 'L', # 0x0c
'[?]', # 0x0d None, # 0x0d
'[?]', # 0x0e None, # 0x0e
'e', # 0x0f 'e', # 0x0f
'ai', # 0x10 'ai', # 0x10
'[?]', # 0x11 None, # 0x11
'[?]', # 0x12 None, # 0x12
'o', # 0x13 'o', # 0x13
'au', # 0x14 'au', # 0x14
'k', # 0x15 'k', # 0x15
@ -40,7 +40,7 @@ data = (
'd', # 0x26 'd', # 0x26
'dh', # 0x27 'dh', # 0x27
'n', # 0x28 'n', # 0x28
'[?]', # 0x29 None, # 0x29
'p', # 0x2a 'p', # 0x2a
'ph', # 0x2b 'ph', # 0x2b
'b', # 0x2c 'b', # 0x2c
@ -48,17 +48,17 @@ data = (
'm', # 0x2e 'm', # 0x2e
'y', # 0x2f 'y', # 0x2f
'r', # 0x30 'r', # 0x30
'[?]', # 0x31 None, # 0x31
'l', # 0x32 'l', # 0x32
'll', # 0x33 'll', # 0x33
'[?]', # 0x34 None, # 0x34
'', # 0x35 '', # 0x35
'sh', # 0x36 'sh', # 0x36
'ss', # 0x37 'ss', # 0x37
's', # 0x38 's', # 0x38
'h', # 0x39 'h', # 0x39
'[?]', # 0x3a None, # 0x3a
'[?]', # 0x3b None, # 0x3b
'\'', # 0x3c '\'', # 0x3c
'\'', # 0x3d '\'', # 0x3d
'aa', # 0x3e 'aa', # 0x3e
@ -67,40 +67,40 @@ data = (
'u', # 0x41 'u', # 0x41
'uu', # 0x42 'uu', # 0x42
'R', # 0x43 'R', # 0x43
'[?]', # 0x44 None, # 0x44
'[?]', # 0x45 None, # 0x45
'[?]', # 0x46 None, # 0x46
'e', # 0x47 'e', # 0x47
'ai', # 0x48 'ai', # 0x48
'[?]', # 0x49 None, # 0x49
'[?]', # 0x4a None, # 0x4a
'o', # 0x4b 'o', # 0x4b
'au', # 0x4c 'au', # 0x4c
'', # 0x4d '', # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'[?]', # 0x52 None, # 0x52
'[?]', # 0x53 None, # 0x53
'[?]', # 0x54 None, # 0x54
'[?]', # 0x55 None, # 0x55
'+', # 0x56 '+', # 0x56
'+', # 0x57 '+', # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'rr', # 0x5c 'rr', # 0x5c
'rh', # 0x5d 'rh', # 0x5d
'[?]', # 0x5e None, # 0x5e
'yy', # 0x5f 'yy', # 0x5f
'RR', # 0x60 'RR', # 0x60
'LL', # 0x61 'LL', # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'[?]', # 0x64 None, # 0x64
'[?]', # 0x65 None, # 0x65
'0', # 0x66 '0', # 0x66
'1', # 0x67 '1', # 0x67
'2', # 0x68 '2', # 0x68
@ -112,67 +112,67 @@ data = (
'8', # 0x6e '8', # 0x6e
'9', # 0x6f '9', # 0x6f
'', # 0x70 '', # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'[?]', # 0x81 None, # 0x81
'N', # 0x82 'N', # 0x82
'H', # 0x83 'H', # 0x83
'[?]', # 0x84 None, # 0x84
'a', # 0x85 'a', # 0x85
'aa', # 0x86 'aa', # 0x86
'i', # 0x87 'i', # 0x87
'ii', # 0x88 'ii', # 0x88
'u', # 0x89 'u', # 0x89
'uu', # 0x8a 'uu', # 0x8a
'[?]', # 0x8b None, # 0x8b
'[?]', # 0x8c None, # 0x8c
'[?]', # 0x8d None, # 0x8d
'e', # 0x8e 'e', # 0x8e
'ee', # 0x8f 'ee', # 0x8f
'ai', # 0x90 'ai', # 0x90
'[?]', # 0x91 None, # 0x91
'o', # 0x92 'o', # 0x92
'oo', # 0x93 'oo', # 0x93
'au', # 0x94 'au', # 0x94
'k', # 0x95 'k', # 0x95
'[?]', # 0x96 None, # 0x96
'[?]', # 0x97 None, # 0x97
'[?]', # 0x98 None, # 0x98
'ng', # 0x99 'ng', # 0x99
'c', # 0x9a 'c', # 0x9a
'[?]', # 0x9b None, # 0x9b
'j', # 0x9c 'j', # 0x9c
'[?]', # 0x9d None, # 0x9d
'ny', # 0x9e 'ny', # 0x9e
'tt', # 0x9f 'tt', # 0x9f
'[?]', # 0xa0 None, # 0xa0
'[?]', # 0xa1 None, # 0xa1
'[?]', # 0xa2 None, # 0xa2
'nn', # 0xa3 'nn', # 0xa3
't', # 0xa4 't', # 0xa4
'[?]', # 0xa5 None, # 0xa5
'[?]', # 0xa6 None, # 0xa6
'[?]', # 0xa7 None, # 0xa7
'n', # 0xa8 'n', # 0xa8
'nnn', # 0xa9 'nnn', # 0xa9
'p', # 0xaa 'p', # 0xaa
'[?]', # 0xab None, # 0xab
'[?]', # 0xac None, # 0xac
'[?]', # 0xad None, # 0xad
'm', # 0xae 'm', # 0xae
'y', # 0xaf 'y', # 0xaf
'r', # 0xb0 'r', # 0xb0
@ -181,54 +181,54 @@ data = (
'll', # 0xb3 'll', # 0xb3
'lll', # 0xb4 'lll', # 0xb4
'v', # 0xb5 'v', # 0xb5
'[?]', # 0xb6 None, # 0xb6
'ss', # 0xb7 'ss', # 0xb7
's', # 0xb8 's', # 0xb8
'h', # 0xb9 'h', # 0xb9
'[?]', # 0xba None, # 0xba
'[?]', # 0xbb None, # 0xbb
'[?]', # 0xbc None, # 0xbc
'[?]', # 0xbd None, # 0xbd
'aa', # 0xbe 'aa', # 0xbe
'i', # 0xbf 'i', # 0xbf
'ii', # 0xc0 'ii', # 0xc0
'u', # 0xc1 'u', # 0xc1
'uu', # 0xc2 'uu', # 0xc2
'[?]', # 0xc3 None, # 0xc3
'[?]', # 0xc4 None, # 0xc4
'[?]', # 0xc5 None, # 0xc5
'e', # 0xc6 'e', # 0xc6
'ee', # 0xc7 'ee', # 0xc7
'ai', # 0xc8 'ai', # 0xc8
'[?]', # 0xc9 None, # 0xc9
'o', # 0xca 'o', # 0xca
'oo', # 0xcb 'oo', # 0xcb
'au', # 0xcc 'au', # 0xcc
'', # 0xcd '', # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'+', # 0xd7 '+', # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'0', # 0xe6 '0', # 0xe6
'1', # 0xe7 '1', # 0xe7
'2', # 0xe8 '2', # 0xe8
@ -242,16 +242,16 @@ data = (
'+10+', # 0xf0 '+10+', # 0xf0
'+100+', # 0xf1 '+100+', # 0xf1
'+1000+', # 0xf2 '+1000+', # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,9 +1,9 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'N', # 0x01 'N', # 0x01
'N', # 0x02 'N', # 0x02
'H', # 0x03 'H', # 0x03
'[?]', # 0x04 None, # 0x04
'a', # 0x05 'a', # 0x05
'aa', # 0x06 'aa', # 0x06
'i', # 0x07 'i', # 0x07
@ -12,11 +12,11 @@ data = (
'uu', # 0x0a 'uu', # 0x0a
'R', # 0x0b 'R', # 0x0b
'L', # 0x0c 'L', # 0x0c
'[?]', # 0x0d None, # 0x0d
'e', # 0x0e 'e', # 0x0e
'ee', # 0x0f 'ee', # 0x0f
'ai', # 0x10 'ai', # 0x10
'[?]', # 0x11 None, # 0x11
'o', # 0x12 'o', # 0x12
'oo', # 0x13 'oo', # 0x13
'au', # 0x14 'au', # 0x14
@ -40,7 +40,7 @@ data = (
'd', # 0x26 'd', # 0x26
'dh', # 0x27 'dh', # 0x27
'n', # 0x28 'n', # 0x28
'[?]', # 0x29 None, # 0x29
'p', # 0x2a 'p', # 0x2a
'ph', # 0x2b 'ph', # 0x2b
'b', # 0x2c 'b', # 0x2c
@ -51,16 +51,16 @@ data = (
'rr', # 0x31 'rr', # 0x31
'l', # 0x32 'l', # 0x32
'll', # 0x33 'll', # 0x33
'[?]', # 0x34 None, # 0x34
'v', # 0x35 'v', # 0x35
'sh', # 0x36 'sh', # 0x36
'ss', # 0x37 'ss', # 0x37
's', # 0x38 's', # 0x38
'h', # 0x39 'h', # 0x39
'[?]', # 0x3a None, # 0x3a
'[?]', # 0x3b None, # 0x3b
'[?]', # 0x3c None, # 0x3c
'[?]', # 0x3d None, # 0x3d
'aa', # 0x3e 'aa', # 0x3e
'i', # 0x3f 'i', # 0x3f
'ii', # 0x40 'ii', # 0x40
@ -68,39 +68,39 @@ data = (
'uu', # 0x42 'uu', # 0x42
'R', # 0x43 'R', # 0x43
'RR', # 0x44 'RR', # 0x44
'[?]', # 0x45 None, # 0x45
'e', # 0x46 'e', # 0x46
'ee', # 0x47 'ee', # 0x47
'ai', # 0x48 'ai', # 0x48
'[?]', # 0x49 None, # 0x49
'o', # 0x4a 'o', # 0x4a
'oo', # 0x4b 'oo', # 0x4b
'au', # 0x4c 'au', # 0x4c
'', # 0x4d '', # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'[?]', # 0x52 None, # 0x52
'[?]', # 0x53 None, # 0x53
'[?]', # 0x54 None, # 0x54
'+', # 0x55 '+', # 0x55
'+', # 0x56 '+', # 0x56
'[?]', # 0x57 None, # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'RR', # 0x60 'RR', # 0x60
'LL', # 0x61 'LL', # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'[?]', # 0x64 None, # 0x64
'[?]', # 0x65 None, # 0x65
'0', # 0x66 '0', # 0x66
'1', # 0x67 '1', # 0x67
'2', # 0x68 '2', # 0x68
@ -111,27 +111,27 @@ data = (
'7', # 0x6d '7', # 0x6d
'8', # 0x6e '8', # 0x6e
'9', # 0x6f '9', # 0x6f
'[?]', # 0x70 None, # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'[?]', # 0x81 None, # 0x81
'N', # 0x82 'N', # 0x82
'H', # 0x83 'H', # 0x83
'[?]', # 0x84 None, # 0x84
'a', # 0x85 'a', # 0x85
'aa', # 0x86 'aa', # 0x86
'i', # 0x87 'i', # 0x87
@ -140,11 +140,11 @@ data = (
'uu', # 0x8a 'uu', # 0x8a
'R', # 0x8b 'R', # 0x8b
'L', # 0x8c 'L', # 0x8c
'[?]', # 0x8d None, # 0x8d
'e', # 0x8e 'e', # 0x8e
'ee', # 0x8f 'ee', # 0x8f
'ai', # 0x90 'ai', # 0x90
'[?]', # 0x91 None, # 0x91
'o', # 0x92 'o', # 0x92
'oo', # 0x93 'oo', # 0x93
'au', # 0x94 'au', # 0x94
@ -168,7 +168,7 @@ data = (
'd', # 0xa6 'd', # 0xa6
'dh', # 0xa7 'dh', # 0xa7
'n', # 0xa8 'n', # 0xa8
'[?]', # 0xa9 None, # 0xa9
'p', # 0xaa 'p', # 0xaa
'ph', # 0xab 'ph', # 0xab
'b', # 0xac 'b', # 0xac
@ -179,16 +179,16 @@ data = (
'rr', # 0xb1 'rr', # 0xb1
'l', # 0xb2 'l', # 0xb2
'll', # 0xb3 'll', # 0xb3
'[?]', # 0xb4 None, # 0xb4
'v', # 0xb5 'v', # 0xb5
'sh', # 0xb6 'sh', # 0xb6
'ss', # 0xb7 'ss', # 0xb7
's', # 0xb8 's', # 0xb8
'h', # 0xb9 'h', # 0xb9
'[?]', # 0xba None, # 0xba
'[?]', # 0xbb None, # 0xbb
'[?]', # 0xbc None, # 0xbc
'[?]', # 0xbd None, # 0xbd
'aa', # 0xbe 'aa', # 0xbe
'i', # 0xbf 'i', # 0xbf
'ii', # 0xc0 'ii', # 0xc0
@ -196,39 +196,39 @@ data = (
'uu', # 0xc2 'uu', # 0xc2
'R', # 0xc3 'R', # 0xc3
'RR', # 0xc4 'RR', # 0xc4
'[?]', # 0xc5 None, # 0xc5
'e', # 0xc6 'e', # 0xc6
'ee', # 0xc7 'ee', # 0xc7
'ai', # 0xc8 'ai', # 0xc8
'[?]', # 0xc9 None, # 0xc9
'o', # 0xca 'o', # 0xca
'oo', # 0xcb 'oo', # 0xcb
'au', # 0xcc 'au', # 0xcc
'', # 0xcd '', # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'+', # 0xd5 '+', # 0xd5
'+', # 0xd6 '+', # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'lll', # 0xde 'lll', # 0xde
'[?]', # 0xdf None, # 0xdf
'RR', # 0xe0 'RR', # 0xe0
'LL', # 0xe1 'LL', # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'0', # 0xe6 '0', # 0xe6
'1', # 0xe7 '1', # 0xe7
'2', # 0xe8 '2', # 0xe8
@ -239,19 +239,19 @@ data = (
'7', # 0xed '7', # 0xed
'8', # 0xee '8', # 0xee
'9', # 0xef '9', # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,9 +1,9 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'[?]', # 0x01 None, # 0x01
'N', # 0x02 'N', # 0x02
'H', # 0x03 'H', # 0x03
'[?]', # 0x04 None, # 0x04
'a', # 0x05 'a', # 0x05
'aa', # 0x06 'aa', # 0x06
'i', # 0x07 'i', # 0x07
@ -12,11 +12,11 @@ data = (
'uu', # 0x0a 'uu', # 0x0a
'R', # 0x0b 'R', # 0x0b
'L', # 0x0c 'L', # 0x0c
'[?]', # 0x0d None, # 0x0d
'e', # 0x0e 'e', # 0x0e
'ee', # 0x0f 'ee', # 0x0f
'ai', # 0x10 'ai', # 0x10
'[?]', # 0x11 None, # 0x11
'o', # 0x12 'o', # 0x12
'oo', # 0x13 'oo', # 0x13
'au', # 0x14 'au', # 0x14
@ -40,7 +40,7 @@ data = (
'd', # 0x26 'd', # 0x26
'dh', # 0x27 'dh', # 0x27
'n', # 0x28 'n', # 0x28
'[?]', # 0x29 None, # 0x29
'p', # 0x2a 'p', # 0x2a
'ph', # 0x2b 'ph', # 0x2b
'b', # 0x2c 'b', # 0x2c
@ -57,18 +57,18 @@ data = (
'ss', # 0x37 'ss', # 0x37
's', # 0x38 's', # 0x38
'h', # 0x39 'h', # 0x39
'[?]', # 0x3a None, # 0x3a
'[?]', # 0x3b None, # 0x3b
'[?]', # 0x3c None, # 0x3c
'[?]', # 0x3d None, # 0x3d
'aa', # 0x3e 'aa', # 0x3e
'i', # 0x3f 'i', # 0x3f
'ii', # 0x40 'ii', # 0x40
'u', # 0x41 'u', # 0x41
'uu', # 0x42 'uu', # 0x42
'R', # 0x43 'R', # 0x43
'[?]', # 0x44 None, # 0x44
'[?]', # 0x45 None, # 0x45
'e', # 0x46 'e', # 0x46
'ee', # 0x47 'ee', # 0x47
'ai', # 0x48 'ai', # 0x48
@ -77,30 +77,30 @@ data = (
'oo', # 0x4b 'oo', # 0x4b
'au', # 0x4c 'au', # 0x4c
'', # 0x4d '', # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'[?]', # 0x52 None, # 0x52
'[?]', # 0x53 None, # 0x53
'[?]', # 0x54 None, # 0x54
'[?]', # 0x55 None, # 0x55
'[?]', # 0x56 None, # 0x56
'+', # 0x57 '+', # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'RR', # 0x60 'RR', # 0x60
'LL', # 0x61 'LL', # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'[?]', # 0x64 None, # 0x64
'[?]', # 0x65 None, # 0x65
'0', # 0x66 '0', # 0x66
'1', # 0x67 '1', # 0x67
'2', # 0x68 '2', # 0x68
@ -111,27 +111,27 @@ data = (
'7', # 0x6d '7', # 0x6d
'8', # 0x6e '8', # 0x6e
'9', # 0x6f '9', # 0x6f
'[?]', # 0x70 None, # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'[?]', # 0x81 None, # 0x81
'N', # 0x82 'N', # 0x82
'H', # 0x83 'H', # 0x83
'[?]', # 0x84 None, # 0x84
'a', # 0x85 'a', # 0x85
'aa', # 0x86 'aa', # 0x86
'ae', # 0x87 'ae', # 0x87
@ -150,9 +150,9 @@ data = (
'o', # 0x94 'o', # 0x94
'oo', # 0x95 'oo', # 0x95
'au', # 0x96 'au', # 0x96
'[?]', # 0x97 None, # 0x97
'[?]', # 0x98 None, # 0x98
'[?]', # 0x99 None, # 0x99
'k', # 0x9a 'k', # 0x9a
'kh', # 0x9b 'kh', # 0x9b
'g', # 0x9c 'g', # 0x9c
@ -177,7 +177,7 @@ data = (
'd', # 0xaf 'd', # 0xaf
'dh', # 0xb0 'dh', # 0xb0
'n', # 0xb1 'n', # 0xb1
'[?]', # 0xb2 None, # 0xb2
'nd', # 0xb3 'nd', # 0xb3
'p', # 0xb4 'p', # 0xb4
'ph', # 0xb5 'ph', # 0xb5
@ -187,10 +187,10 @@ data = (
'mb', # 0xb9 'mb', # 0xb9
'y', # 0xba 'y', # 0xba
'r', # 0xbb 'r', # 0xbb
'[?]', # 0xbc None, # 0xbc
'l', # 0xbd 'l', # 0xbd
'[?]', # 0xbe None, # 0xbe
'[?]', # 0xbf None, # 0xbf
'v', # 0xc0 'v', # 0xc0
'sh', # 0xc1 'sh', # 0xc1
'ss', # 0xc2 'ss', # 0xc2
@ -198,23 +198,23 @@ data = (
'h', # 0xc4 'h', # 0xc4
'll', # 0xc5 'll', # 0xc5
'f', # 0xc6 'f', # 0xc6
'[?]', # 0xc7 None, # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'', # 0xca '', # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'aa', # 0xcf 'aa', # 0xcf
'ae', # 0xd0 'ae', # 0xd0
'aae', # 0xd1 'aae', # 0xd1
'i', # 0xd2 'i', # 0xd2
'ii', # 0xd3 'ii', # 0xd3
'u', # 0xd4 'u', # 0xd4
'[?]', # 0xd5 None, # 0xd5
'uu', # 0xd6 'uu', # 0xd6
'[?]', # 0xd7 None, # 0xd7
'R', # 0xd8 'R', # 0xd8
'e', # 0xd9 'e', # 0xd9
'ee', # 0xda 'ee', # 0xda
@ -223,35 +223,35 @@ data = (
'oo', # 0xdd 'oo', # 0xdd
'au', # 0xde 'au', # 0xde
'L', # 0xdf 'L', # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'RR', # 0xf2 'RR', # 0xf2
'LL', # 0xf3 'LL', # 0xf3
' . ', # 0xf4 ' . ', # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,5 +1,5 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'k', # 0x01 'k', # 0x01
'kh', # 0x02 'kh', # 0x02
'kh', # 0x03 'kh', # 0x03
@ -58,10 +58,10 @@ data = (
'u', # 0x38 'u', # 0x38
'uu', # 0x39 'uu', # 0x39
'\'', # 0x3a '\'', # 0x3a
'[?]', # 0x3b None, # 0x3b
'[?]', # 0x3c None, # 0x3c
'[?]', # 0x3d None, # 0x3d
'[?]', # 0x3e None, # 0x3e
'Bh.', # 0x3f 'Bh.', # 0x3f
'e', # 0x40 'e', # 0x40
'ae', # 0x41 'ae', # 0x41
@ -91,67 +91,67 @@ data = (
'9', # 0x59 '9', # 0x59
' // ', # 0x5a ' // ', # 0x5a
' /// ', # 0x5b ' /// ', # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'[?]', # 0x60 None, # 0x60
'[?]', # 0x61 None, # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'[?]', # 0x64 None, # 0x64
'[?]', # 0x65 None, # 0x65
'[?]', # 0x66 None, # 0x66
'[?]', # 0x67 None, # 0x67
'[?]', # 0x68 None, # 0x68
'[?]', # 0x69 None, # 0x69
'[?]', # 0x6a None, # 0x6a
'[?]', # 0x6b None, # 0x6b
'[?]', # 0x6c None, # 0x6c
'[?]', # 0x6d None, # 0x6d
'[?]', # 0x6e None, # 0x6e
'[?]', # 0x6f None, # 0x6f
'[?]', # 0x70 None, # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'k', # 0x81 'k', # 0x81
'kh', # 0x82 'kh', # 0x82
'[?]', # 0x83 None, # 0x83
'kh', # 0x84 'kh', # 0x84
'[?]', # 0x85 None, # 0x85
'[?]', # 0x86 None, # 0x86
'ng', # 0x87 'ng', # 0x87
'ch', # 0x88 'ch', # 0x88
'[?]', # 0x89 None, # 0x89
's', # 0x8a 's', # 0x8a
'[?]', # 0x8b None, # 0x8b
'[?]', # 0x8c None, # 0x8c
'ny', # 0x8d 'ny', # 0x8d
'[?]', # 0x8e None, # 0x8e
'[?]', # 0x8f None, # 0x8f
'[?]', # 0x90 None, # 0x90
'[?]', # 0x91 None, # 0x91
'[?]', # 0x92 None, # 0x92
'[?]', # 0x93 None, # 0x93
'd', # 0x94 'd', # 0x94
'h', # 0x95 'h', # 0x95
'th', # 0x96 'th', # 0x96
'th', # 0x97 'th', # 0x97
'[?]', # 0x98 None, # 0x98
'n', # 0x99 'n', # 0x99
'b', # 0x9a 'b', # 0x9a
'p', # 0x9b 'p', # 0x9b
@ -159,19 +159,19 @@ data = (
'f', # 0x9d 'f', # 0x9d
'ph', # 0x9e 'ph', # 0x9e
'f', # 0x9f 'f', # 0x9f
'[?]', # 0xa0 None, # 0xa0
'm', # 0xa1 'm', # 0xa1
'y', # 0xa2 'y', # 0xa2
'r', # 0xa3 'r', # 0xa3
'[?]', # 0xa4 None, # 0xa4
'l', # 0xa5 'l', # 0xa5
'[?]', # 0xa6 None, # 0xa6
'w', # 0xa7 'w', # 0xa7
'[?]', # 0xa8 None, # 0xa8
'[?]', # 0xa9 None, # 0xa9
's', # 0xaa 's', # 0xaa
'h', # 0xab 'h', # 0xab
'[?]', # 0xac None, # 0xac
'`', # 0xad '`', # 0xad
'', # 0xae '', # 0xae
'~', # 0xaf '~', # 0xaf
@ -185,28 +185,28 @@ data = (
'yy', # 0xb7 'yy', # 0xb7
'u', # 0xb8 'u', # 0xb8
'uu', # 0xb9 'uu', # 0xb9
'[?]', # 0xba None, # 0xba
'o', # 0xbb 'o', # 0xbb
'l', # 0xbc 'l', # 0xbc
'ny', # 0xbd 'ny', # 0xbd
'[?]', # 0xbe None, # 0xbe
'[?]', # 0xbf None, # 0xbf
'e', # 0xc0 'e', # 0xc0
'ei', # 0xc1 'ei', # 0xc1
'o', # 0xc2 'o', # 0xc2
'ay', # 0xc3 'ay', # 0xc3
'ai', # 0xc4 'ai', # 0xc4
'[?]', # 0xc5 None, # 0xc5
'+', # 0xc6 '+', # 0xc6
'[?]', # 0xc7 None, # 0xc7
'', # 0xc8 '', # 0xc8
'', # 0xc9 '', # 0xc9
'', # 0xca '', # 0xca
'', # 0xcb '', # 0xcb
'', # 0xcc '', # 0xcc
'M', # 0xcd 'M', # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'0', # 0xd0 '0', # 0xd0
'1', # 0xd1 '1', # 0xd1
'2', # 0xd2 '2', # 0xd2
@ -217,41 +217,41 @@ data = (
'7', # 0xd7 '7', # 0xd7
'8', # 0xd8 '8', # 0xd8
'9', # 0xd9 '9', # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'hn', # 0xdc 'hn', # 0xdc
'hm', # 0xdd 'hm', # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -57,7 +57,7 @@ data = (
'_', # 0x37 '_', # 0x37
'', # 0x38 '', # 0x38
'~', # 0x39 '~', # 0x39
'[?]', # 0x3a None, # 0x3a
']', # 0x3b ']', # 0x3b
'[[', # 0x3c '[[', # 0x3c
']]', # 0x3d ']]', # 0x3d
@ -71,7 +71,7 @@ data = (
'c', # 0x45 'c', # 0x45
'ch', # 0x46 'ch', # 0x46
'j', # 0x47 'j', # 0x47
'[?]', # 0x48 None, # 0x48
'ny', # 0x49 'ny', # 0x49
'tt', # 0x4a 'tt', # 0x4a
'tth', # 0x4b 'tth', # 0x4b
@ -106,12 +106,12 @@ data = (
'a', # 0x68 'a', # 0x68
'kss', # 0x69 'kss', # 0x69
'r', # 0x6a 'r', # 0x6a
'[?]', # 0x6b None, # 0x6b
'[?]', # 0x6c None, # 0x6c
'[?]', # 0x6d None, # 0x6d
'[?]', # 0x6e None, # 0x6e
'[?]', # 0x6f None, # 0x6f
'[?]', # 0x70 None, # 0x70
'aa', # 0x71 'aa', # 0x71
'i', # 0x72 'i', # 0x72
'ii', # 0x73 'ii', # 0x73
@ -139,10 +139,10 @@ data = (
'', # 0x89 '', # 0x89
'', # 0x8a '', # 0x8a
'', # 0x8b '', # 0x8b
'[?]', # 0x8c None, # 0x8c
'[?]', # 0x8d None, # 0x8d
'[?]', # 0x8e None, # 0x8e
'[?]', # 0x8f None, # 0x8f
'k', # 0x90 'k', # 0x90
'kh', # 0x91 'kh', # 0x91
'g', # 0x92 'g', # 0x92
@ -151,7 +151,7 @@ data = (
'c', # 0x95 'c', # 0x95
'ch', # 0x96 'ch', # 0x96
'j', # 0x97 'j', # 0x97
'[?]', # 0x98 None, # 0x98
'ny', # 0x99 'ny', # 0x99
'tt', # 0x9a 'tt', # 0x9a
'tth', # 0x9b 'tth', # 0x9b
@ -188,7 +188,7 @@ data = (
'w', # 0xba 'w', # 0xba
'y', # 0xbb 'y', # 0xbb
'r', # 0xbc 'r', # 0xbc
'[?]', # 0xbd None, # 0xbd
'X', # 0xbe 'X', # 0xbe
' :X: ', # 0xbf ' :X: ', # 0xbf
' /O/ ', # 0xc0 ' /O/ ', # 0xc0
@ -204,54 +204,54 @@ data = (
'', # 0xca '', # 0xca
'', # 0xcb '', # 0xcb
'', # 0xcc '', # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'', # 0xcf '', # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -33,16 +33,16 @@ data = (
'h', # 0x1f 'h', # 0x1f
'll', # 0x20 'll', # 0x20
'a', # 0x21 'a', # 0x21
'[?]', # 0x22 None, # 0x22
'i', # 0x23 'i', # 0x23
'ii', # 0x24 'ii', # 0x24
'u', # 0x25 'u', # 0x25
'uu', # 0x26 'uu', # 0x26
'e', # 0x27 'e', # 0x27
'[?]', # 0x28 None, # 0x28
'o', # 0x29 'o', # 0x29
'au', # 0x2a 'au', # 0x2a
'[?]', # 0x2b None, # 0x2b
'aa', # 0x2c 'aa', # 0x2c
'i', # 0x2d 'i', # 0x2d
'ii', # 0x2e 'ii', # 0x2e
@ -50,19 +50,19 @@ data = (
'uu', # 0x30 'uu', # 0x30
'e', # 0x31 'e', # 0x31
'ai', # 0x32 'ai', # 0x32
'[?]', # 0x33 None, # 0x33
'[?]', # 0x34 None, # 0x34
'[?]', # 0x35 None, # 0x35
'N', # 0x36 'N', # 0x36
'\'', # 0x37 '\'', # 0x37
':', # 0x38 ':', # 0x38
'', # 0x39 '', # 0x39
'[?]', # 0x3a None, # 0x3a
'[?]', # 0x3b None, # 0x3b
'[?]', # 0x3c None, # 0x3c
'[?]', # 0x3d None, # 0x3d
'[?]', # 0x3e None, # 0x3e
'[?]', # 0x3f None, # 0x3f
'0', # 0x40 '0', # 0x40
'1', # 0x41 '1', # 0x41
'2', # 0x42 '2', # 0x42
@ -89,76 +89,76 @@ data = (
'RR', # 0x57 'RR', # 0x57
'L', # 0x58 'L', # 0x58
'LL', # 0x59 'LL', # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'[?]', # 0x60 None, # 0x60
'[?]', # 0x61 None, # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'[?]', # 0x64 None, # 0x64
'[?]', # 0x65 None, # 0x65
'[?]', # 0x66 None, # 0x66
'[?]', # 0x67 None, # 0x67
'[?]', # 0x68 None, # 0x68
'[?]', # 0x69 None, # 0x69
'[?]', # 0x6a None, # 0x6a
'[?]', # 0x6b None, # 0x6b
'[?]', # 0x6c None, # 0x6c
'[?]', # 0x6d None, # 0x6d
'[?]', # 0x6e None, # 0x6e
'[?]', # 0x6f None, # 0x6f
'[?]', # 0x70 None, # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'[?]', # 0x81 None, # 0x81
'[?]', # 0x82 None, # 0x82
'[?]', # 0x83 None, # 0x83
'[?]', # 0x84 None, # 0x84
'[?]', # 0x85 None, # 0x85
'[?]', # 0x86 None, # 0x86
'[?]', # 0x87 None, # 0x87
'[?]', # 0x88 None, # 0x88
'[?]', # 0x89 None, # 0x89
'[?]', # 0x8a None, # 0x8a
'[?]', # 0x8b None, # 0x8b
'[?]', # 0x8c None, # 0x8c
'[?]', # 0x8d None, # 0x8d
'[?]', # 0x8e None, # 0x8e
'[?]', # 0x8f None, # 0x8f
'[?]', # 0x90 None, # 0x90
'[?]', # 0x91 None, # 0x91
'[?]', # 0x92 None, # 0x92
'[?]', # 0x93 None, # 0x93
'[?]', # 0x94 None, # 0x94
'[?]', # 0x95 None, # 0x95
'[?]', # 0x96 None, # 0x96
'[?]', # 0x97 None, # 0x97
'[?]', # 0x98 None, # 0x98
'[?]', # 0x99 None, # 0x99
'[?]', # 0x9a None, # 0x9a
'[?]', # 0x9b None, # 0x9b
'[?]', # 0x9c None, # 0x9c
'[?]', # 0x9d None, # 0x9d
'[?]', # 0x9e None, # 0x9e
'[?]', # 0x9f None, # 0x9f
'A', # 0xa0 'A', # 0xa0
'B', # 0xa1 'B', # 0xa1
'G', # 0xa2 'G', # 0xa2
@ -197,16 +197,16 @@ data = (
'W', # 0xc3 'W', # 0xc3
'Xh', # 0xc4 'Xh', # 0xc4
'OE', # 0xc5 'OE', # 0xc5
'[?]', # 0xc6 None, # 0xc6
'[?]', # 0xc7 None, # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'a', # 0xd0 'a', # 0xd0
'b', # 0xd1 'b', # 0xd1
'g', # 0xd2 'g', # 0xd2
@ -246,12 +246,12 @@ data = (
'xh', # 0xf4 'xh', # 0xf4
'oe', # 0xf5 'oe', # 0xf5
'f', # 0xf6 'f', # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
' // ', # 0xfb ' // ', # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -89,11 +89,11 @@ data = (
'pN', # 0x57 'pN', # 0x57
'hh', # 0x58 'hh', # 0x58
'Q', # 0x59 'Q', # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'', # 0x5f '', # 0x5f
'', # 0x60 '', # 0x60
'a', # 0x61 'a', # 0x61
@ -162,11 +162,11 @@ data = (
'U-u', # 0xa0 'U-u', # 0xa0
'U-i', # 0xa1 'U-i', # 0xa1
'UU', # 0xa2 'UU', # 0xa2
'[?]', # 0xa3 None, # 0xa3
'[?]', # 0xa4 None, # 0xa4
'[?]', # 0xa5 None, # 0xa5
'[?]', # 0xa6 None, # 0xa6
'[?]', # 0xa7 None, # 0xa7
'g', # 0xa8 'g', # 0xa8
'gg', # 0xa9 'gg', # 0xa9
'gs', # 0xaa 'gs', # 0xaa
@ -249,9 +249,9 @@ data = (
'hm', # 0xf7 'hm', # 0xf7
'hb', # 0xf8 'hb', # 0xf8
'Q', # 0xf9 'Q', # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -6,7 +6,7 @@ data = (
'hee', # 0x04 'hee', # 0x04
'he', # 0x05 'he', # 0x05
'ho', # 0x06 'ho', # 0x06
'[?]', # 0x07 None, # 0x07
'la', # 0x08 'la', # 0x08
'lu', # 0x09 'lu', # 0x09
'li', # 0x0a 'li', # 0x0a
@ -70,15 +70,15 @@ data = (
'qee', # 0x44 'qee', # 0x44
'qe', # 0x45 'qe', # 0x45
'qo', # 0x46 'qo', # 0x46
'[?]', # 0x47 None, # 0x47
'qwa', # 0x48 'qwa', # 0x48
'[?]', # 0x49 None, # 0x49
'qwi', # 0x4a 'qwi', # 0x4a
'qwaa', # 0x4b 'qwaa', # 0x4b
'qwee', # 0x4c 'qwee', # 0x4c
'qwe', # 0x4d 'qwe', # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'qha', # 0x50 'qha', # 0x50
'qhu', # 0x51 'qhu', # 0x51
'qhi', # 0x52 'qhi', # 0x52
@ -86,15 +86,15 @@ data = (
'qhee', # 0x54 'qhee', # 0x54
'qhe', # 0x55 'qhe', # 0x55
'qho', # 0x56 'qho', # 0x56
'[?]', # 0x57 None, # 0x57
'qhwa', # 0x58 'qhwa', # 0x58
'[?]', # 0x59 None, # 0x59
'qhwi', # 0x5a 'qhwi', # 0x5a
'qhwaa', # 0x5b 'qhwaa', # 0x5b
'qhwee', # 0x5c 'qhwee', # 0x5c
'qhwe', # 0x5d 'qhwe', # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'ba', # 0x60 'ba', # 0x60
'bu', # 0x61 'bu', # 0x61
'bi', # 0x62 'bi', # 0x62
@ -134,15 +134,15 @@ data = (
'xee', # 0x84 'xee', # 0x84
'xe', # 0x85 'xe', # 0x85
'xo', # 0x86 'xo', # 0x86
'[?]', # 0x87 None, # 0x87
'xwa', # 0x88 'xwa', # 0x88
'[?]', # 0x89 None, # 0x89
'xwi', # 0x8a 'xwi', # 0x8a
'xwaa', # 0x8b 'xwaa', # 0x8b
'xwee', # 0x8c 'xwee', # 0x8c
'xwe', # 0x8d 'xwe', # 0x8d
'[?]', # 0x8e None, # 0x8e
'[?]', # 0x8f None, # 0x8f
'na', # 0x90 'na', # 0x90
'nu', # 0x91 'nu', # 0x91
'ni', # 0x92 'ni', # 0x92
@ -161,7 +161,7 @@ data = (
'nywa', # 0x9f 'nywa', # 0x9f
'\'a', # 0xa0 '\'a', # 0xa0
'\'u', # 0xa1 '\'u', # 0xa1
'[?]', # 0xa2 None, # 0xa2
'\'aa', # 0xa3 '\'aa', # 0xa3
'\'ee', # 0xa4 '\'ee', # 0xa4
'\'e', # 0xa5 '\'e', # 0xa5
@ -174,15 +174,15 @@ data = (
'kee', # 0xac 'kee', # 0xac
'ke', # 0xad 'ke', # 0xad
'ko', # 0xae 'ko', # 0xae
'[?]', # 0xaf None, # 0xaf
'kwa', # 0xb0 'kwa', # 0xb0
'[?]', # 0xb1 None, # 0xb1
'kwi', # 0xb2 'kwi', # 0xb2
'kwaa', # 0xb3 'kwaa', # 0xb3
'kwee', # 0xb4 'kwee', # 0xb4
'kwe', # 0xb5 'kwe', # 0xb5
'[?]', # 0xb6 None, # 0xb6
'[?]', # 0xb7 None, # 0xb7
'kxa', # 0xb8 'kxa', # 0xb8
'kxu', # 0xb9 'kxu', # 0xb9
'kxi', # 0xba 'kxi', # 0xba
@ -190,15 +190,15 @@ data = (
'kxee', # 0xbc 'kxee', # 0xbc
'kxe', # 0xbd 'kxe', # 0xbd
'kxo', # 0xbe 'kxo', # 0xbe
'[?]', # 0xbf None, # 0xbf
'kxwa', # 0xc0 'kxwa', # 0xc0
'[?]', # 0xc1 None, # 0xc1
'kxwi', # 0xc2 'kxwi', # 0xc2
'kxwaa', # 0xc3 'kxwaa', # 0xc3
'kxwee', # 0xc4 'kxwee', # 0xc4
'kxwe', # 0xc5 'kxwe', # 0xc5
'[?]', # 0xc6 None, # 0xc6
'[?]', # 0xc7 None, # 0xc7
'wa', # 0xc8 'wa', # 0xc8
'wu', # 0xc9 'wu', # 0xc9
'wi', # 0xca 'wi', # 0xca
@ -206,7 +206,7 @@ data = (
'wee', # 0xcc 'wee', # 0xcc
'we', # 0xcd 'we', # 0xcd
'wo', # 0xce 'wo', # 0xce
'[?]', # 0xcf None, # 0xcf
'`a', # 0xd0 '`a', # 0xd0
'`u', # 0xd1 '`u', # 0xd1
'`i', # 0xd2 '`i', # 0xd2
@ -214,7 +214,7 @@ data = (
'`ee', # 0xd4 '`ee', # 0xd4
'`e', # 0xd5 '`e', # 0xd5
'`o', # 0xd6 '`o', # 0xd6
'[?]', # 0xd7 None, # 0xd7
'za', # 0xd8 'za', # 0xd8
'zu', # 0xd9 'zu', # 0xd9
'zi', # 0xda 'zi', # 0xda
@ -238,7 +238,7 @@ data = (
'yee', # 0xec 'yee', # 0xec
'ye', # 0xed 'ye', # 0xed
'yo', # 0xee 'yo', # 0xee
'[?]', # 0xef None, # 0xef
'da', # 0xf0 'da', # 0xf0
'du', # 0xf1 'du', # 0xf1
'di', # 0xf2 'di', # 0xf2

View file

@ -14,15 +14,15 @@ data = (
'gee', # 0x0c 'gee', # 0x0c
'ge', # 0x0d 'ge', # 0x0d
'go', # 0x0e 'go', # 0x0e
'[?]', # 0x0f None, # 0x0f
'gwa', # 0x10 'gwa', # 0x10
'[?]', # 0x11 None, # 0x11
'gwi', # 0x12 'gwi', # 0x12
'gwaa', # 0x13 'gwaa', # 0x13
'gwee', # 0x14 'gwee', # 0x14
'gwe', # 0x15 'gwe', # 0x15
'[?]', # 0x16 None, # 0x16
'[?]', # 0x17 None, # 0x17
'gga', # 0x18 'gga', # 0x18
'ggu', # 0x19 'ggu', # 0x19
'ggi', # 0x1a 'ggi', # 0x1a
@ -30,7 +30,7 @@ data = (
'ggee', # 0x1c 'ggee', # 0x1c
'gge', # 0x1d 'gge', # 0x1d
'ggo', # 0x1e 'ggo', # 0x1e
'[?]', # 0x1f None, # 0x1f
'tha', # 0x20 'tha', # 0x20
'thu', # 0x21 'thu', # 0x21
'thi', # 0x22 'thi', # 0x22
@ -70,7 +70,7 @@ data = (
'tzee', # 0x44 'tzee', # 0x44
'tze', # 0x45 'tze', # 0x45
'tzo', # 0x46 'tzo', # 0x46
'[?]', # 0x47 None, # 0x47
'fa', # 0x48 'fa', # 0x48
'fu', # 0x49 'fu', # 0x49
'fi', # 0x4a 'fi', # 0x4a
@ -90,12 +90,12 @@ data = (
'rya', # 0x58 'rya', # 0x58
'mya', # 0x59 'mya', # 0x59
'fya', # 0x5a 'fya', # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'[?]', # 0x60 None, # 0x60
' ', # 0x61 ' ', # 0x61
'.', # 0x62 '.', # 0x62
',', # 0x63 ',', # 0x63
@ -124,41 +124,41 @@ data = (
'90+', # 0x7a '90+', # 0x7a
'100+', # 0x7b '100+', # 0x7b
'10,000+', # 0x7c '10,000+', # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'[?]', # 0x81 None, # 0x81
'[?]', # 0x82 None, # 0x82
'[?]', # 0x83 None, # 0x83
'[?]', # 0x84 None, # 0x84
'[?]', # 0x85 None, # 0x85
'[?]', # 0x86 None, # 0x86
'[?]', # 0x87 None, # 0x87
'[?]', # 0x88 None, # 0x88
'[?]', # 0x89 None, # 0x89
'[?]', # 0x8a None, # 0x8a
'[?]', # 0x8b None, # 0x8b
'[?]', # 0x8c None, # 0x8c
'[?]', # 0x8d None, # 0x8d
'[?]', # 0x8e None, # 0x8e
'[?]', # 0x8f None, # 0x8f
'[?]', # 0x90 None, # 0x90
'[?]', # 0x91 None, # 0x91
'[?]', # 0x92 None, # 0x92
'[?]', # 0x93 None, # 0x93
'[?]', # 0x94 None, # 0x94
'[?]', # 0x95 None, # 0x95
'[?]', # 0x96 None, # 0x96
'[?]', # 0x97 None, # 0x97
'[?]', # 0x98 None, # 0x98
'[?]', # 0x99 None, # 0x99
'[?]', # 0x9a None, # 0x9a
'[?]', # 0x9b None, # 0x9b
'[?]', # 0x9c None, # 0x9c
'[?]', # 0x9d None, # 0x9d
'[?]', # 0x9e None, # 0x9e
'[?]', # 0x9f None, # 0x9f
'a', # 0xa0 'a', # 0xa0
'e', # 0xa1 'e', # 0xa1
'i', # 0xa2 'i', # 0xa2
@ -244,14 +244,14 @@ data = (
'yo', # 0xf2 'yo', # 0xf2
'yu', # 0xf3 'yu', # 0xf3
'yv', # 0xf4 'yv', # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,5 +1,5 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'e', # 0x01 'e', # 0x01
'aai', # 0x02 'aai', # 0x02
'i', # 0x03 'i', # 0x03
@ -37,7 +37,7 @@ data = (
'n', # 0x23 'n', # 0x23
'w', # 0x24 'w', # 0x24
'n', # 0x25 'n', # 0x25
'[?]', # 0x26 None, # 0x26
'w', # 0x27 'w', # 0x27
'c', # 0x28 'c', # 0x28
'?', # 0x29 '?', # 0x29

View file

@ -118,15 +118,15 @@ data = (
'nngoo', # 0x74 'nngoo', # 0x74
'nnga', # 0x75 'nnga', # 0x75
'nngaa', # 0x76 'nngaa', # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
' ', # 0x80 ' ', # 0x80
'b', # 0x81 'b', # 0x81
'l', # 0x82 'l', # 0x82
@ -156,9 +156,9 @@ data = (
'p', # 0x9a 'p', # 0x9a
'<', # 0x9b '<', # 0x9b
'>', # 0x9c '>', # 0x9c
'[?]', # 0x9d None, # 0x9d
'[?]', # 0x9e None, # 0x9e
'[?]', # 0x9f None, # 0x9f
'f', # 0xa0 'f', # 0xa0
'v', # 0xa1 'v', # 0xa1
'u', # 0xa2 'u', # 0xa2
@ -240,18 +240,18 @@ data = (
'17', # 0xee '17', # 0xee
'18', # 0xef '18', # 0xef
'19', # 0xf0 '19', # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,132 +1,132 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'[?]', # 0x01 None, # 0x01
'[?]', # 0x02 None, # 0x02
'[?]', # 0x03 None, # 0x03
'[?]', # 0x04 None, # 0x04
'[?]', # 0x05 None, # 0x05
'[?]', # 0x06 None, # 0x06
'[?]', # 0x07 None, # 0x07
'[?]', # 0x08 None, # 0x08
'[?]', # 0x09 None, # 0x09
'[?]', # 0x0a None, # 0x0a
'[?]', # 0x0b None, # 0x0b
'[?]', # 0x0c None, # 0x0c
'[?]', # 0x0d None, # 0x0d
'[?]', # 0x0e None, # 0x0e
'[?]', # 0x0f None, # 0x0f
'[?]', # 0x10 None, # 0x10
'[?]', # 0x11 None, # 0x11
'[?]', # 0x12 None, # 0x12
'[?]', # 0x13 None, # 0x13
'[?]', # 0x14 None, # 0x14
'[?]', # 0x15 None, # 0x15
'[?]', # 0x16 None, # 0x16
'[?]', # 0x17 None, # 0x17
'[?]', # 0x18 None, # 0x18
'[?]', # 0x19 None, # 0x19
'[?]', # 0x1a None, # 0x1a
'[?]', # 0x1b None, # 0x1b
'[?]', # 0x1c None, # 0x1c
'[?]', # 0x1d None, # 0x1d
'[?]', # 0x1e None, # 0x1e
'[?]', # 0x1f None, # 0x1f
'[?]', # 0x20 None, # 0x20
'[?]', # 0x21 None, # 0x21
'[?]', # 0x22 None, # 0x22
'[?]', # 0x23 None, # 0x23
'[?]', # 0x24 None, # 0x24
'[?]', # 0x25 None, # 0x25
'[?]', # 0x26 None, # 0x26
'[?]', # 0x27 None, # 0x27
'[?]', # 0x28 None, # 0x28
'[?]', # 0x29 None, # 0x29
'[?]', # 0x2a None, # 0x2a
'[?]', # 0x2b None, # 0x2b
'[?]', # 0x2c None, # 0x2c
'[?]', # 0x2d None, # 0x2d
'[?]', # 0x2e None, # 0x2e
'[?]', # 0x2f None, # 0x2f
'[?]', # 0x30 None, # 0x30
'[?]', # 0x31 None, # 0x31
'[?]', # 0x32 None, # 0x32
'[?]', # 0x33 None, # 0x33
'[?]', # 0x34 None, # 0x34
'[?]', # 0x35 None, # 0x35
'[?]', # 0x36 None, # 0x36
'[?]', # 0x37 None, # 0x37
'[?]', # 0x38 None, # 0x38
'[?]', # 0x39 None, # 0x39
'[?]', # 0x3a None, # 0x3a
'[?]', # 0x3b None, # 0x3b
'[?]', # 0x3c None, # 0x3c
'[?]', # 0x3d None, # 0x3d
'[?]', # 0x3e None, # 0x3e
'[?]', # 0x3f None, # 0x3f
'[?]', # 0x40 None, # 0x40
'[?]', # 0x41 None, # 0x41
'[?]', # 0x42 None, # 0x42
'[?]', # 0x43 None, # 0x43
'[?]', # 0x44 None, # 0x44
'[?]', # 0x45 None, # 0x45
'[?]', # 0x46 None, # 0x46
'[?]', # 0x47 None, # 0x47
'[?]', # 0x48 None, # 0x48
'[?]', # 0x49 None, # 0x49
'[?]', # 0x4a None, # 0x4a
'[?]', # 0x4b None, # 0x4b
'[?]', # 0x4c None, # 0x4c
'[?]', # 0x4d None, # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'[?]', # 0x52 None, # 0x52
'[?]', # 0x53 None, # 0x53
'[?]', # 0x54 None, # 0x54
'[?]', # 0x55 None, # 0x55
'[?]', # 0x56 None, # 0x56
'[?]', # 0x57 None, # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'[?]', # 0x60 None, # 0x60
'[?]', # 0x61 None, # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'[?]', # 0x64 None, # 0x64
'[?]', # 0x65 None, # 0x65
'[?]', # 0x66 None, # 0x66
'[?]', # 0x67 None, # 0x67
'[?]', # 0x68 None, # 0x68
'[?]', # 0x69 None, # 0x69
'[?]', # 0x6a None, # 0x6a
'[?]', # 0x6b None, # 0x6b
'[?]', # 0x6c None, # 0x6c
'[?]', # 0x6d None, # 0x6d
'[?]', # 0x6e None, # 0x6e
'[?]', # 0x6f None, # 0x6f
'[?]', # 0x70 None, # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'k', # 0x80 'k', # 0x80
'kh', # 0x81 'kh', # 0x81
'g', # 0x82 'g', # 0x82
@ -220,9 +220,9 @@ data = (
' /// ', # 0xda ' /// ', # 0xda
'KR', # 0xdb 'KR', # 0xdb
'\'', # 0xdc '\'', # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'0', # 0xe0 '0', # 0xe0
'1', # 0xe1 '1', # 0xe1
'2', # 0xe2 '2', # 0xe2
@ -233,25 +233,25 @@ data = (
'7', # 0xe7 '7', # 0xe7
'8', # 0xe8 '8', # 0xe8
'9', # 0xe9 '9', # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -14,7 +14,7 @@ data = (
'', # 0x0c '', # 0x0c
'', # 0x0d '', # 0x0d
'', # 0x0e '', # 0x0e
'[?]', # 0x0f None, # 0x0f
'0', # 0x10 '0', # 0x10
'1', # 0x11 '1', # 0x11
'2', # 0x12 '2', # 0x12
@ -25,12 +25,12 @@ data = (
'7', # 0x17 '7', # 0x17
'8', # 0x18 '8', # 0x18
'9', # 0x19 '9', # 0x19
'[?]', # 0x1a None, # 0x1a
'[?]', # 0x1b None, # 0x1b
'[?]', # 0x1c None, # 0x1c
'[?]', # 0x1d None, # 0x1d
'[?]', # 0x1e None, # 0x1e
'[?]', # 0x1f None, # 0x1f
'a', # 0x20 'a', # 0x20
'e', # 0x21 'e', # 0x21
'i', # 0x22 'i', # 0x22
@ -119,15 +119,15 @@ data = (
'r', # 0x75 'r', # 0x75
'f', # 0x76 'f', # 0x76
'zh', # 0x77 'zh', # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'H', # 0x81 'H', # 0x81
'X', # 0x82 'X', # 0x82
'W', # 0x83 'W', # 0x83
@ -169,89 +169,89 @@ data = (
'y', # 0xa7 'y', # 0xa7
'bh', # 0xa8 'bh', # 0xa8
'\'', # 0xa9 '\'', # 0xa9
'[?]', # 0xaa None, # 0xaa
'[?]', # 0xab None, # 0xab
'[?]', # 0xac None, # 0xac
'[?]', # 0xad None, # 0xad
'[?]', # 0xae None, # 0xae
'[?]', # 0xaf None, # 0xaf
'[?]', # 0xb0 None, # 0xb0
'[?]', # 0xb1 None, # 0xb1
'[?]', # 0xb2 None, # 0xb2
'[?]', # 0xb3 None, # 0xb3
'[?]', # 0xb4 None, # 0xb4
'[?]', # 0xb5 None, # 0xb5
'[?]', # 0xb6 None, # 0xb6
'[?]', # 0xb7 None, # 0xb7
'[?]', # 0xb8 None, # 0xb8
'[?]', # 0xb9 None, # 0xb9
'[?]', # 0xba None, # 0xba
'[?]', # 0xbb None, # 0xbb
'[?]', # 0xbc None, # 0xbc
'[?]', # 0xbd None, # 0xbd
'[?]', # 0xbe None, # 0xbe
'[?]', # 0xbf None, # 0xbf
'[?]', # 0xc0 None, # 0xc0
'[?]', # 0xc1 None, # 0xc1
'[?]', # 0xc2 None, # 0xc2
'[?]', # 0xc3 None, # 0xc3
'[?]', # 0xc4 None, # 0xc4
'[?]', # 0xc5 None, # 0xc5
'[?]', # 0xc6 None, # 0xc6
'[?]', # 0xc7 None, # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -155,10 +155,10 @@ data = (
'y', # 0x99 'y', # 0x99
'a', # 0x9a 'a', # 0x9a
'S', # 0x9b 'S', # 0x9b
'[?]', # 0x9c None, # 0x9c
'[?]', # 0x9d None, # 0x9d
'Ss', # 0x9e 'Ss', # 0x9e
'[?]', # 0x9f None, # 0x9f
'A', # 0xa0 'A', # 0xa0
'a', # 0xa1 'a', # 0xa1
'A', # 0xa2 'A', # 0xa2
@ -249,9 +249,9 @@ data = (
'y', # 0xf7 'y', # 0xf7
'Y', # 0xf8 'Y', # 0xf8
'y', # 0xf9 'y', # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -21,16 +21,16 @@ data = (
'e', # 0x13 'e', # 0x13
'e', # 0x14 'e', # 0x14
'e', # 0x15 'e', # 0x15
'[?]', # 0x16 None, # 0x16
'[?]', # 0x17 None, # 0x17
'E', # 0x18 'E', # 0x18
'E', # 0x19 'E', # 0x19
'E', # 0x1a 'E', # 0x1a
'E', # 0x1b 'E', # 0x1b
'E', # 0x1c 'E', # 0x1c
'E', # 0x1d 'E', # 0x1d
'[?]', # 0x1e None, # 0x1e
'[?]', # 0x1f None, # 0x1f
'e', # 0x20 'e', # 0x20
'e', # 0x21 'e', # 0x21
'e', # 0x22 'e', # 0x22
@ -69,16 +69,16 @@ data = (
'o', # 0x43 'o', # 0x43
'o', # 0x44 'o', # 0x44
'o', # 0x45 'o', # 0x45
'[?]', # 0x46 None, # 0x46
'[?]', # 0x47 None, # 0x47
'O', # 0x48 'O', # 0x48
'O', # 0x49 'O', # 0x49
'O', # 0x4a 'O', # 0x4a
'O', # 0x4b 'O', # 0x4b
'O', # 0x4c 'O', # 0x4c
'O', # 0x4d 'O', # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'u', # 0x50 'u', # 0x50
'u', # 0x51 'u', # 0x51
'u', # 0x52 'u', # 0x52
@ -87,13 +87,13 @@ data = (
'u', # 0x55 'u', # 0x55
'u', # 0x56 'u', # 0x56
'u', # 0x57 'u', # 0x57
'[?]', # 0x58 None, # 0x58
'U', # 0x59 'U', # 0x59
'[?]', # 0x5a None, # 0x5a
'U', # 0x5b 'U', # 0x5b
'[?]', # 0x5c None, # 0x5c
'U', # 0x5d 'U', # 0x5d
'[?]', # 0x5e None, # 0x5e
'U', # 0x5f 'U', # 0x5f
'o', # 0x60 'o', # 0x60
'o', # 0x61 'o', # 0x61
@ -125,8 +125,8 @@ data = (
'u', # 0x7b 'u', # 0x7b
'o', # 0x7c 'o', # 0x7c
'o', # 0x7d 'o', # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'a', # 0x80 'a', # 0x80
'a', # 0x81 'a', # 0x81
'a', # 0x82 'a', # 0x82
@ -180,7 +180,7 @@ data = (
'a', # 0xb2 'a', # 0xb2
'a', # 0xb3 'a', # 0xb3
'a', # 0xb4 'a', # 0xb4
'[?]', # 0xb5 None, # 0xb5
'a', # 0xb6 'a', # 0xb6
'a', # 0xb7 'a', # 0xb7
'A', # 0xb8 'A', # 0xb8
@ -196,7 +196,7 @@ data = (
'e', # 0xc2 'e', # 0xc2
'e', # 0xc3 'e', # 0xc3
'e', # 0xc4 'e', # 0xc4
'[?]', # 0xc5 None, # 0xc5
'e', # 0xc6 'e', # 0xc6
'e', # 0xc7 'e', # 0xc7
'E', # 0xc8 'E', # 0xc8
@ -211,15 +211,15 @@ data = (
'i', # 0xd1 'i', # 0xd1
'i', # 0xd2 'i', # 0xd2
'i', # 0xd3 'i', # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'i', # 0xd6 'i', # 0xd6
'i', # 0xd7 'i', # 0xd7
'I', # 0xd8 'I', # 0xd8
'I', # 0xd9 'I', # 0xd9
'I', # 0xda 'I', # 0xda
'I', # 0xdb 'I', # 0xdb
'[?]', # 0xdc None, # 0xdc
'`\'', # 0xdd '`\'', # 0xdd
'`\'', # 0xde '`\'', # 0xde
'`~', # 0xdf '`~', # 0xdf
@ -239,12 +239,12 @@ data = (
'"`', # 0xed '"`', # 0xed
'"\'', # 0xee '"\'', # 0xee
'`', # 0xef '`', # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'o', # 0xf2 'o', # 0xf2
'o', # 0xf3 'o', # 0xf3
'o', # 0xf4 'o', # 0xf4
'[?]', # 0xf5 None, # 0xf5
'o', # 0xf6 'o', # 0xf6
'o', # 0xf7 'o', # 0xf7
'O', # 0xf8 'O', # 0xf8

View file

@ -73,38 +73,42 @@ data = (
'??', # 0x47 '??', # 0x47
'?!', # 0x48 '?!', # 0x48
'!?', # 0x49 '!?', # 0x49
'7', # 0x4a
# Tironian note standing for Latin "et". Still used as an ampersand
# in modern Irish. See https://github.com/avian2/unidecode/issues/57
'&', # 0x4a
'PP', # 0x4b 'PP', # 0x4b
'(]', # 0x4c '(]', # 0x4c
'[)', # 0x4d '[)', # 0x4d
'*', # 0x4e '*', # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'%', # 0x52 '%', # 0x52
'~', # 0x53 '~', # 0x53
'[?]', # 0x54 None, # 0x54
'[?]', # 0x55 None, # 0x55
'[?]', # 0x56 None, # 0x56
"''''", # 0x57 "''''", # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
' ', # 0x5f ' ', # 0x5f
'', # 0x60 '', # 0x60
'[?]', # 0x61 None, # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'[?]', # 0x64 None, # 0x64
'[?]', # 0x65 None, # 0x65
'[?]', # 0x66 None, # 0x66
'[?]', # 0x67 None, # 0x67
'[?]', # 0x68 None, # 0x68
'[?]', # 0x69 None, # 0x69
'', # 0x6a '', # 0x6a
'', # 0x6b '', # 0x6b
'', # 0x6c '', # 0x6c
@ -142,12 +146,12 @@ data = (
'=', # 0x8c '=', # 0x8c
'(', # 0x8d '(', # 0x8d
')', # 0x8e ')', # 0x8e
'[?]', # 0x8f None, # 0x8f
'a', # 0x90 'a', # 0x90
'e', # 0x91 'e', # 0x91
'o', # 0x92 'o', # 0x92
'x', # 0x93 'x', # 0x93
'[?]', # 0x94 None, # 0x94
'h', # 0x95 'h', # 0x95
'k', # 0x96 'k', # 0x96
'l', # 0x97 'l', # 0x97
@ -156,9 +160,9 @@ data = (
'p', # 0x9a 'p', # 0x9a
's', # 0x9b 's', # 0x9b
't', # 0x9c 't', # 0x9c
'[?]', # 0x9d None, # 0x9d
'[?]', # 0x9e None, # 0x9e
'[?]', # 0x9f None, # 0x9f
'ECU', # 0xa0 'ECU', # 0xa0
'CL', # 0xa1 'CL', # 0xa1
'Cr', # 0xa2 'Cr', # 0xa2
@ -191,22 +195,22 @@ data = (
'R', # 0xbd 'R', # 0xbd
'l', # 0xbe 'l', # 0xbe
'BTC', # 0xbf 'BTC', # 0xbf
'[?]', # 0xc0 None, # 0xc0
'[?]', # 0xc1 None, # 0xc1
'[?]', # 0xc2 None, # 0xc2
'[?]', # 0xc3 None, # 0xc3
'[?]', # 0xc4 None, # 0xc4
'[?]', # 0xc5 None, # 0xc5
'[?]', # 0xc6 None, # 0xc6
'[?]', # 0xc7 None, # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'', # 0xd0 '', # 0xd0
'', # 0xd1 '', # 0xd1
'', # 0xd2 '', # 0xd2
@ -227,31 +231,31 @@ data = (
'', # 0xe1 '', # 0xe1
'', # 0xe2 '', # 0xe2
'', # 0xe3 '', # 0xe3
'[?]', # 0xe4 None, # 0xe4
'', # 0xe5 '', # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -22,7 +22,7 @@ data = (
'', # 0x14 '', # 0x14
'N', # 0x15 'N', # 0x15
'No. ', # 0x16 'No. ', # 0x16
'', # 0x17 '(p)', # 0x17
'', # 0x18 '', # 0x18
'P', # 0x19 'P', # 0x19
'Q', # 0x1a 'Q', # 0x1a
@ -37,7 +37,7 @@ data = (
'', # 0x23 '', # 0x23
'Z', # 0x24 'Z', # 0x24
'', # 0x25 '', # 0x25
'', # 0x26 'ohm', # 0x26
'', # 0x27 '', # 0x27
'Z', # 0x28 'Z', # 0x28
'', # 0x29 '', # 0x29
@ -63,22 +63,22 @@ data = (
'', # 0x3d '', # 0x3d
'', # 0x3e '', # 0x3e
'', # 0x3f '', # 0x3f
'[?]', # 0x40 None, # 0x40
'[?]', # 0x41 None, # 0x41
'[?]', # 0x42 None, # 0x42
'[?]', # 0x43 None, # 0x43
'[?]', # 0x44 None, # 0x44
'D', # 0x45 'D', # 0x45
'd', # 0x46 'd', # 0x46
'e', # 0x47 'e', # 0x47
'i', # 0x48 'i', # 0x48
'j', # 0x49 'j', # 0x49
'[?]', # 0x4a None, # 0x4a
'[?]', # 0x4b None, # 0x4b
'[?]', # 0x4c None, # 0x4c
'[?]', # 0x4d None, # 0x4d
'F', # 0x4e 'F', # 0x4e
'[?]', # 0x4f None, # 0x4f
' 1/7 ', # 0x50 ' 1/7 ', # 0x50
' 1/9 ', # 0x51 ' 1/9 ', # 0x51
' 1/10 ', # 0x52 ' 1/10 ', # 0x52
@ -131,18 +131,18 @@ data = (
'D)', # 0x81 'D)', # 0x81
'((|))', # 0x82 '((|))', # 0x82
')', # 0x83 ')', # 0x83
'[?]', # 0x84 None, # 0x84
'[?]', # 0x85 None, # 0x85
'[?]', # 0x86 None, # 0x86
'[?]', # 0x87 None, # 0x87
'[?]', # 0x88 None, # 0x88
' 0/3 ', # 0x89 ' 0/3 ', # 0x89
'[?]', # 0x8a None, # 0x8a
'[?]', # 0x8b None, # 0x8b
'[?]', # 0x8c None, # 0x8c
'[?]', # 0x8d None, # 0x8d
'[?]', # 0x8e None, # 0x8e
'[?]', # 0x8f None, # 0x8f
'-', # 0x90 '-', # 0x90
'|', # 0x91 '|', # 0x91
'-', # 0x92 '-', # 0x92
@ -243,15 +243,15 @@ data = (
'\\', # 0xf1 '\\', # 0xf1
'\\', # 0xf2 '\\', # 0xf2
'|', # 0xf3 '|', # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,257 +1,257 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'[?]', # 0x01 None, # 0x01
'[?]', # 0x02 None, # 0x02
'[?]', # 0x03 None, # 0x03
'[?]', # 0x04 None, # 0x04
'[?]', # 0x05 None, # 0x05
'[?]', # 0x06 None, # 0x06
'[?]', # 0x07 None, # 0x07
'[?]', # 0x08 None, # 0x08
'[?]', # 0x09 None, # 0x09
'[?]', # 0x0a None, # 0x0a
'[?]', # 0x0b None, # 0x0b
'[?]', # 0x0c None, # 0x0c
'[?]', # 0x0d None, # 0x0d
'[?]', # 0x0e None, # 0x0e
'[?]', # 0x0f None, # 0x0f
'[?]', # 0x10 None, # 0x10
'[?]', # 0x11 None, # 0x11
'-', # 0x12 '-', # 0x12
'[?]', # 0x13 None, # 0x13
'[?]', # 0x14 None, # 0x14
'/', # 0x15 '/', # 0x15
'\\', # 0x16 '\\', # 0x16
'*', # 0x17 '*', # 0x17
'[?]', # 0x18 None, # 0x18
'[?]', # 0x19 None, # 0x19
'[?]', # 0x1a None, # 0x1a
'[?]', # 0x1b None, # 0x1b
'[?]', # 0x1c None, # 0x1c
'[?]', # 0x1d None, # 0x1d
'[?]', # 0x1e None, # 0x1e
'[?]', # 0x1f None, # 0x1f
'[?]', # 0x20 None, # 0x20
'[?]', # 0x21 None, # 0x21
'[?]', # 0x22 None, # 0x22
'|', # 0x23 '|', # 0x23
'[?]', # 0x24 None, # 0x24
'[?]', # 0x25 None, # 0x25
'[?]', # 0x26 None, # 0x26
'[?]', # 0x27 None, # 0x27
'[?]', # 0x28 None, # 0x28
'[?]', # 0x29 None, # 0x29
'[?]', # 0x2a None, # 0x2a
'[?]', # 0x2b None, # 0x2b
'[?]', # 0x2c None, # 0x2c
'[?]', # 0x2d None, # 0x2d
'[?]', # 0x2e None, # 0x2e
'[?]', # 0x2f None, # 0x2f
'[?]', # 0x30 None, # 0x30
'[?]', # 0x31 None, # 0x31
'[?]', # 0x32 None, # 0x32
'[?]', # 0x33 None, # 0x33
'[?]', # 0x34 None, # 0x34
'[?]', # 0x35 None, # 0x35
':', # 0x36 ':', # 0x36
'[?]', # 0x37 None, # 0x37
'[?]', # 0x38 None, # 0x38
'[?]', # 0x39 None, # 0x39
'[?]', # 0x3a None, # 0x3a
'[?]', # 0x3b None, # 0x3b
'~', # 0x3c '~', # 0x3c
'[?]', # 0x3d None, # 0x3d
'[?]', # 0x3e None, # 0x3e
'[?]', # 0x3f None, # 0x3f
'[?]', # 0x40 None, # 0x40
'[?]', # 0x41 None, # 0x41
'[?]', # 0x42 None, # 0x42
'[?]', # 0x43 None, # 0x43
'[?]', # 0x44 None, # 0x44
'[?]', # 0x45 None, # 0x45
'[?]', # 0x46 None, # 0x46
'[?]', # 0x47 None, # 0x47
'[?]', # 0x48 None, # 0x48
'[?]', # 0x49 None, # 0x49
'[?]', # 0x4a None, # 0x4a
'[?]', # 0x4b None, # 0x4b
'[?]', # 0x4c None, # 0x4c
'[?]', # 0x4d None, # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'[?]', # 0x52 None, # 0x52
'[?]', # 0x53 None, # 0x53
'[?]', # 0x54 None, # 0x54
'[?]', # 0x55 None, # 0x55
'[?]', # 0x56 None, # 0x56
'[?]', # 0x57 None, # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'[?]', # 0x60 None, # 0x60
'[?]', # 0x61 None, # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'<=', # 0x64 '<=', # 0x64
'>=', # 0x65 '>=', # 0x65
'<=', # 0x66 '<=', # 0x66
'>=', # 0x67 '>=', # 0x67
'[?]', # 0x68 None, # 0x68
'[?]', # 0x69 None, # 0x69
'[?]', # 0x6a None, # 0x6a
'[?]', # 0x6b None, # 0x6b
'[?]', # 0x6c None, # 0x6c
'[?]', # 0x6d None, # 0x6d
'[?]', # 0x6e None, # 0x6e
'[?]', # 0x6f None, # 0x6f
'[?]', # 0x70 None, # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'[?]', # 0x81 None, # 0x81
'[?]', # 0x82 None, # 0x82
'[?]', # 0x83 None, # 0x83
'[?]', # 0x84 None, # 0x84
'[?]', # 0x85 None, # 0x85
'[?]', # 0x86 None, # 0x86
'[?]', # 0x87 None, # 0x87
'[?]', # 0x88 None, # 0x88
'[?]', # 0x89 None, # 0x89
'[?]', # 0x8a None, # 0x8a
'[?]', # 0x8b None, # 0x8b
'[?]', # 0x8c None, # 0x8c
'[?]', # 0x8d None, # 0x8d
'[?]', # 0x8e None, # 0x8e
'[?]', # 0x8f None, # 0x8f
'[?]', # 0x90 None, # 0x90
'[?]', # 0x91 None, # 0x91
'[?]', # 0x92 None, # 0x92
'[?]', # 0x93 None, # 0x93
'[?]', # 0x94 None, # 0x94
'[?]', # 0x95 None, # 0x95
'[?]', # 0x96 None, # 0x96
'[?]', # 0x97 None, # 0x97
'[?]', # 0x98 None, # 0x98
'[?]', # 0x99 None, # 0x99
'[?]', # 0x9a None, # 0x9a
'[?]', # 0x9b None, # 0x9b
'[?]', # 0x9c None, # 0x9c
'[?]', # 0x9d None, # 0x9d
'[?]', # 0x9e None, # 0x9e
'[?]', # 0x9f None, # 0x9f
'[?]', # 0xa0 None, # 0xa0
'[?]', # 0xa1 None, # 0xa1
'[?]', # 0xa2 None, # 0xa2
'[?]', # 0xa3 None, # 0xa3
'[?]', # 0xa4 None, # 0xa4
'[?]', # 0xa5 None, # 0xa5
'[?]', # 0xa6 None, # 0xa6
'[?]', # 0xa7 None, # 0xa7
'[?]', # 0xa8 None, # 0xa8
'[?]', # 0xa9 None, # 0xa9
'[?]', # 0xaa None, # 0xaa
'[?]', # 0xab None, # 0xab
'[?]', # 0xac None, # 0xac
'[?]', # 0xad None, # 0xad
'[?]', # 0xae None, # 0xae
'[?]', # 0xaf None, # 0xaf
'[?]', # 0xb0 None, # 0xb0
'[?]', # 0xb1 None, # 0xb1
'[?]', # 0xb2 None, # 0xb2
'[?]', # 0xb3 None, # 0xb3
'[?]', # 0xb4 None, # 0xb4
'[?]', # 0xb5 None, # 0xb5
'[?]', # 0xb6 None, # 0xb6
'[?]', # 0xb7 None, # 0xb7
'[?]', # 0xb8 None, # 0xb8
'[?]', # 0xb9 None, # 0xb9
'[?]', # 0xba None, # 0xba
'[?]', # 0xbb None, # 0xbb
'[?]', # 0xbc None, # 0xbc
'[?]', # 0xbd None, # 0xbd
'[?]', # 0xbe None, # 0xbe
'[?]', # 0xbf None, # 0xbf
'[?]', # 0xc0 None, # 0xc0
'[?]', # 0xc1 None, # 0xc1
'[?]', # 0xc2 None, # 0xc2
'[?]', # 0xc3 None, # 0xc3
'[?]', # 0xc4 None, # 0xc4
'[?]', # 0xc5 None, # 0xc5
'[?]', # 0xc6 None, # 0xc6
'[?]', # 0xc7 None, # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,257 +1,257 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'[?]', # 0x01 None, # 0x01
'[?]', # 0x02 None, # 0x02
'^', # 0x03 '^', # 0x03
'[?]', # 0x04 None, # 0x04
'[?]', # 0x05 None, # 0x05
'[?]', # 0x06 None, # 0x06
'[?]', # 0x07 None, # 0x07
'[?]', # 0x08 None, # 0x08
'[?]', # 0x09 None, # 0x09
'[?]', # 0x0a None, # 0x0a
'[?]', # 0x0b None, # 0x0b
'[?]', # 0x0c None, # 0x0c
'[?]', # 0x0d None, # 0x0d
'[?]', # 0x0e None, # 0x0e
'[?]', # 0x0f None, # 0x0f
'[?]', # 0x10 None, # 0x10
'[?]', # 0x11 None, # 0x11
'[?]', # 0x12 None, # 0x12
'[?]', # 0x13 None, # 0x13
'[?]', # 0x14 None, # 0x14
'[?]', # 0x15 None, # 0x15
'[?]', # 0x16 None, # 0x16
'[?]', # 0x17 None, # 0x17
'[?]', # 0x18 None, # 0x18
'[?]', # 0x19 None, # 0x19
'[?]', # 0x1a None, # 0x1a
'[?]', # 0x1b None, # 0x1b
'[?]', # 0x1c None, # 0x1c
'[?]', # 0x1d None, # 0x1d
'[?]', # 0x1e None, # 0x1e
'[?]', # 0x1f None, # 0x1f
'[?]', # 0x20 None, # 0x20
'[?]', # 0x21 None, # 0x21
'[?]', # 0x22 None, # 0x22
'[?]', # 0x23 None, # 0x23
'[?]', # 0x24 None, # 0x24
'[?]', # 0x25 None, # 0x25
'[?]', # 0x26 None, # 0x26
'[?]', # 0x27 None, # 0x27
'[?]', # 0x28 None, # 0x28
'<', # 0x29 '<', # 0x29
'> ', # 0x2a '> ', # 0x2a
'[?]', # 0x2b None, # 0x2b
'[?]', # 0x2c None, # 0x2c
'[?]', # 0x2d None, # 0x2d
'[?]', # 0x2e None, # 0x2e
'[?]', # 0x2f None, # 0x2f
'[?]', # 0x30 None, # 0x30
'[?]', # 0x31 None, # 0x31
'[?]', # 0x32 None, # 0x32
'[?]', # 0x33 None, # 0x33
'[?]', # 0x34 None, # 0x34
'[?]', # 0x35 None, # 0x35
'[?]', # 0x36 None, # 0x36
'[?]', # 0x37 None, # 0x37
'[?]', # 0x38 None, # 0x38
'[?]', # 0x39 None, # 0x39
'[?]', # 0x3a None, # 0x3a
'[?]', # 0x3b None, # 0x3b
'[?]', # 0x3c None, # 0x3c
'[?]', # 0x3d None, # 0x3d
'[?]', # 0x3e None, # 0x3e
'[?]', # 0x3f None, # 0x3f
'[?]', # 0x40 None, # 0x40
'[?]', # 0x41 None, # 0x41
'[?]', # 0x42 None, # 0x42
'[?]', # 0x43 None, # 0x43
'[?]', # 0x44 None, # 0x44
'[?]', # 0x45 None, # 0x45
'[?]', # 0x46 None, # 0x46
'[?]', # 0x47 None, # 0x47
'[?]', # 0x48 None, # 0x48
'[?]', # 0x49 None, # 0x49
'[?]', # 0x4a None, # 0x4a
'[?]', # 0x4b None, # 0x4b
'[?]', # 0x4c None, # 0x4c
'[?]', # 0x4d None, # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'[?]', # 0x52 None, # 0x52
'[?]', # 0x53 None, # 0x53
'[?]', # 0x54 None, # 0x54
'[?]', # 0x55 None, # 0x55
'[?]', # 0x56 None, # 0x56
'[?]', # 0x57 None, # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'[?]', # 0x60 None, # 0x60
'[?]', # 0x61 None, # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'[?]', # 0x64 None, # 0x64
'[?]', # 0x65 None, # 0x65
'[?]', # 0x66 None, # 0x66
'[?]', # 0x67 None, # 0x67
'[?]', # 0x68 None, # 0x68
'[?]', # 0x69 None, # 0x69
'[?]', # 0x6a None, # 0x6a
'[?]', # 0x6b None, # 0x6b
'[?]', # 0x6c None, # 0x6c
'[?]', # 0x6d None, # 0x6d
'[?]', # 0x6e None, # 0x6e
'[?]', # 0x6f None, # 0x6f
'[?]', # 0x70 None, # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'[?]', # 0x81 None, # 0x81
'[?]', # 0x82 None, # 0x82
'[?]', # 0x83 None, # 0x83
'[?]', # 0x84 None, # 0x84
'[?]', # 0x85 None, # 0x85
'[?]', # 0x86 None, # 0x86
'[?]', # 0x87 None, # 0x87
'[?]', # 0x88 None, # 0x88
'[?]', # 0x89 None, # 0x89
'[?]', # 0x8a None, # 0x8a
'[?]', # 0x8b None, # 0x8b
'[?]', # 0x8c None, # 0x8c
'[?]', # 0x8d None, # 0x8d
'[?]', # 0x8e None, # 0x8e
'[?]', # 0x8f None, # 0x8f
'[?]', # 0x90 None, # 0x90
'[?]', # 0x91 None, # 0x91
'[?]', # 0x92 None, # 0x92
'[?]', # 0x93 None, # 0x93
'[?]', # 0x94 None, # 0x94
'[?]', # 0x95 None, # 0x95
'[?]', # 0x96 None, # 0x96
'[?]', # 0x97 None, # 0x97
'[?]', # 0x98 None, # 0x98
'[?]', # 0x99 None, # 0x99
'[?]', # 0x9a None, # 0x9a
'[?]', # 0x9b None, # 0x9b
'[?]', # 0x9c None, # 0x9c
'[?]', # 0x9d None, # 0x9d
'[?]', # 0x9e None, # 0x9e
'[?]', # 0x9f None, # 0x9f
'[?]', # 0xa0 None, # 0xa0
'[?]', # 0xa1 None, # 0xa1
'[?]', # 0xa2 None, # 0xa2
'[?]', # 0xa3 None, # 0xa3
'[?]', # 0xa4 None, # 0xa4
'[?]', # 0xa5 None, # 0xa5
'[?]', # 0xa6 None, # 0xa6
'[?]', # 0xa7 None, # 0xa7
'[?]', # 0xa8 None, # 0xa8
'[?]', # 0xa9 None, # 0xa9
'[?]', # 0xaa None, # 0xaa
'[?]', # 0xab None, # 0xab
'[?]', # 0xac None, # 0xac
'[?]', # 0xad None, # 0xad
'[?]', # 0xae None, # 0xae
'[?]', # 0xaf None, # 0xaf
'[?]', # 0xb0 None, # 0xb0
'[?]', # 0xb1 None, # 0xb1
'[?]', # 0xb2 None, # 0xb2
'[?]', # 0xb3 None, # 0xb3
'[?]', # 0xb4 None, # 0xb4
'[?]', # 0xb5 None, # 0xb5
'[?]', # 0xb6 None, # 0xb6
'[?]', # 0xb7 None, # 0xb7
'[?]', # 0xb8 None, # 0xb8
'[?]', # 0xb9 None, # 0xb9
'[?]', # 0xba None, # 0xba
'[?]', # 0xbb None, # 0xbb
'[?]', # 0xbc None, # 0xbc
'[?]', # 0xbd None, # 0xbd
'[?]', # 0xbe None, # 0xbe
'[?]', # 0xbf None, # 0xbf
'[?]', # 0xc0 None, # 0xc0
'[?]', # 0xc1 None, # 0xc1
'[?]', # 0xc2 None, # 0xc2
'[?]', # 0xc3 None, # 0xc3
'[?]', # 0xc4 None, # 0xc4
'[?]', # 0xc5 None, # 0xc5
'[?]', # 0xc6 None, # 0xc6
'[?]', # 0xc7 None, # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -38,31 +38,31 @@ data = (
'', # 0x24 '', # 0x24
'', # 0x25 '', # 0x25
'', # 0x26 '', # 0x26
'[?]', # 0x27 None, # 0x27
'[?]', # 0x28 None, # 0x28
'[?]', # 0x29 None, # 0x29
'[?]', # 0x2a None, # 0x2a
'[?]', # 0x2b None, # 0x2b
'[?]', # 0x2c None, # 0x2c
'[?]', # 0x2d None, # 0x2d
'[?]', # 0x2e None, # 0x2e
'[?]', # 0x2f None, # 0x2f
'[?]', # 0x30 None, # 0x30
'[?]', # 0x31 None, # 0x31
'[?]', # 0x32 None, # 0x32
'[?]', # 0x33 None, # 0x33
'[?]', # 0x34 None, # 0x34
'[?]', # 0x35 None, # 0x35
'[?]', # 0x36 None, # 0x36
'[?]', # 0x37 None, # 0x37
'[?]', # 0x38 None, # 0x38
'[?]', # 0x39 None, # 0x39
'[?]', # 0x3a None, # 0x3a
'[?]', # 0x3b None, # 0x3b
'[?]', # 0x3c None, # 0x3c
'[?]', # 0x3d None, # 0x3d
'[?]', # 0x3e None, # 0x3e
'[?]', # 0x3f None, # 0x3f
'', # 0x40 '', # 0x40
'', # 0x41 '', # 0x41
'', # 0x42 '', # 0x42
@ -74,27 +74,27 @@ data = (
'', # 0x48 '', # 0x48
'', # 0x49 '', # 0x49
'', # 0x4a '', # 0x4a
'[?]', # 0x4b None, # 0x4b
'[?]', # 0x4c None, # 0x4c
'[?]', # 0x4d None, # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'[?]', # 0x52 None, # 0x52
'[?]', # 0x53 None, # 0x53
'[?]', # 0x54 None, # 0x54
'[?]', # 0x55 None, # 0x55
'[?]', # 0x56 None, # 0x56
'[?]', # 0x57 None, # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'1', # 0x60 '1', # 0x60
'2', # 0x61 '2', # 0x61
'3', # 0x62 '3', # 0x62

View file

@ -149,16 +149,16 @@ data = (
'#', # 0x93 '#', # 0x93
'-', # 0x94 '-', # 0x94
'|', # 0x95 '|', # 0x95
'[?]', # 0x96 None, # 0x96
'[?]', # 0x97 None, # 0x97
'[?]', # 0x98 None, # 0x98
'[?]', # 0x99 None, # 0x99
'[?]', # 0x9a None, # 0x9a
'[?]', # 0x9b None, # 0x9b
'[?]', # 0x9c None, # 0x9c
'[?]', # 0x9d None, # 0x9d
'[?]', # 0x9e None, # 0x9e
'[?]', # 0x9f None, # 0x9f
'#', # 0xa0 '#', # 0xa0
'#', # 0xa1 '#', # 0xa1
'#', # 0xa2 '#', # 0xa2
@ -247,11 +247,11 @@ data = (
'#', # 0xf5 '#', # 0xf5
'#', # 0xf6 '#', # 0xf6
'#', # 0xf7 '#', # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -19,11 +19,11 @@ data = (
'', # 0x11 '', # 0x11
'', # 0x12 '', # 0x12
'', # 0x13 '', # 0x13
'[?]', # 0x14 None, # 0x14
'[?]', # 0x15 None, # 0x15
'[?]', # 0x16 None, # 0x16
'[?]', # 0x17 None, # 0x17
'[?]', # 0x18 None, # 0x18
'', # 0x19 '', # 0x19
'', # 0x1a '', # 0x1a
'', # 0x1b '', # 0x1b
@ -113,145 +113,145 @@ data = (
'#', # 0x6f '#', # 0x6f
'', # 0x70 '', # 0x70
'', # 0x71 '', # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?]', # 0x80 None, # 0x80
'[?]', # 0x81 None, # 0x81
'[?]', # 0x82 None, # 0x82
'[?]', # 0x83 None, # 0x83
'[?]', # 0x84 None, # 0x84
'[?]', # 0x85 None, # 0x85
'[?]', # 0x86 None, # 0x86
'[?]', # 0x87 None, # 0x87
'[?]', # 0x88 None, # 0x88
'[?]', # 0x89 None, # 0x89
'[?]', # 0x8a None, # 0x8a
'[?]', # 0x8b None, # 0x8b
'[?]', # 0x8c None, # 0x8c
'[?]', # 0x8d None, # 0x8d
'[?]', # 0x8e None, # 0x8e
'[?]', # 0x8f None, # 0x8f
'[?]', # 0x90 None, # 0x90
'[?]', # 0x91 None, # 0x91
'[?]', # 0x92 None, # 0x92
'[?]', # 0x93 None, # 0x93
'[?]', # 0x94 None, # 0x94
'[?]', # 0x95 None, # 0x95
'[?]', # 0x96 None, # 0x96
'[?]', # 0x97 None, # 0x97
'[?]', # 0x98 None, # 0x98
'[?]', # 0x99 None, # 0x99
'[?]', # 0x9a None, # 0x9a
'[?]', # 0x9b None, # 0x9b
'[?]', # 0x9c None, # 0x9c
'[?]', # 0x9d None, # 0x9d
'[?]', # 0x9e None, # 0x9e
'[?]', # 0x9f None, # 0x9f
'[?]', # 0xa0 None, # 0xa0
'[?]', # 0xa1 None, # 0xa1
'[?]', # 0xa2 None, # 0xa2
'[?]', # 0xa3 None, # 0xa3
'[?]', # 0xa4 None, # 0xa4
'[?]', # 0xa5 None, # 0xa5
'[?]', # 0xa6 None, # 0xa6
'[?]', # 0xa7 None, # 0xa7
'[?]', # 0xa8 None, # 0xa8
'[?]', # 0xa9 None, # 0xa9
'[?]', # 0xaa None, # 0xaa
'[?]', # 0xab None, # 0xab
'[?]', # 0xac None, # 0xac
'[?]', # 0xad None, # 0xad
'[?]', # 0xae None, # 0xae
'[?]', # 0xaf None, # 0xaf
'[?]', # 0xb0 None, # 0xb0
'[?]', # 0xb1 None, # 0xb1
'[?]', # 0xb2 None, # 0xb2
'[?]', # 0xb3 None, # 0xb3
'[?]', # 0xb4 None, # 0xb4
'[?]', # 0xb5 None, # 0xb5
'[?]', # 0xb6 None, # 0xb6
'[?]', # 0xb7 None, # 0xb7
'[?]', # 0xb8 None, # 0xb8
'[?]', # 0xb9 None, # 0xb9
'[?]', # 0xba None, # 0xba
'[?]', # 0xbb None, # 0xbb
'[?]', # 0xbc None, # 0xbc
'[?]', # 0xbd None, # 0xbd
'[?]', # 0xbe None, # 0xbe
'[?]', # 0xbf None, # 0xbf
'[?]', # 0xc0 None, # 0xc0
'[?]', # 0xc1 None, # 0xc1
'[?]', # 0xc2 None, # 0xc2
'[?]', # 0xc3 None, # 0xc3
'[?]', # 0xc4 None, # 0xc4
'[?]', # 0xc5 None, # 0xc5
'[?]', # 0xc6 None, # 0xc6
'[?]', # 0xc7 None, # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,5 +1,5 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'', # 0x01 '', # 0x01
'', # 0x02 '', # 0x02
'', # 0x03 '', # 0x03
@ -91,11 +91,11 @@ data = (
'', # 0x59 '', # 0x59
'', # 0x5a '', # 0x5a
'', # 0x5b '', # 0x5b
'', # 0x5c '\'', # 0x5c
'', # 0x5d '"', # 0x5d
'', # 0x5e '"', # 0x5e
'[?]', # 0x5f ',', # 0x5f
'[?]', # 0x60 ',,', # 0x60
'', # 0x61 '', # 0x61
'!', # 0x62 '!', # 0x62
'', # 0x63 '', # 0x63
@ -175,7 +175,7 @@ data = (
'', # 0xad '', # 0xad
'', # 0xae '', # 0xae
'', # 0xaf '', # 0xaf
'[?]', # 0xb0 None, # 0xb0
'', # 0xb1 '', # 0xb1
'', # 0xb2 '', # 0xb2
'', # 0xb3 '', # 0xb3
@ -190,68 +190,68 @@ data = (
'', # 0xbc '', # 0xbc
'', # 0xbd '', # 0xbd
'', # 0xbe '', # 0xbe
'[?]', # 0xbf None, # 0xbf
'[?]', # 0xc0 None, # 0xc0
'[?]', # 0xc1 None, # 0xc1
'[?]', # 0xc2 None, # 0xc2
'[?]', # 0xc3 None, # 0xc3
'[?]', # 0xc4 None, # 0xc4
'[?]', # 0xc5 None, # 0xc5
'[?]', # 0xc6 None, # 0xc6
'[?]', # 0xc7 None, # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[', # 0xe6 '[', # 0xe6
'[?]', # 0xe7 None, # 0xe7
'<', # 0xe8 '<', # 0xe8
'> ', # 0xe9 '> ', # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,257 +1,257 @@
data = ( data = (
'', # 0x00 None, # 0x00
'', # 0x01 None, # 0x01
'', # 0x02 None, # 0x02
'', # 0x03 None, # 0x03
'', # 0x04 None, # 0x04
'', # 0x05 None, # 0x05
'', # 0x06 None, # 0x06
'', # 0x07 None, # 0x07
'', # 0x08 None, # 0x08
'', # 0x09 None, # 0x09
'', # 0x0a None, # 0x0a
'', # 0x0b None, # 0x0b
'', # 0x0c None, # 0x0c
'', # 0x0d None, # 0x0d
'', # 0x0e None, # 0x0e
'', # 0x0f None, # 0x0f
'', # 0x10 None, # 0x10
'', # 0x11 None, # 0x11
'', # 0x12 None, # 0x12
'', # 0x13 None, # 0x13
'', # 0x14 None, # 0x14
'', # 0x15 None, # 0x15
'', # 0x16 None, # 0x16
'', # 0x17 None, # 0x17
'', # 0x18 None, # 0x18
'', # 0x19 None, # 0x19
'', # 0x1a None, # 0x1a
'', # 0x1b None, # 0x1b
'', # 0x1c None, # 0x1c
'', # 0x1d None, # 0x1d
'', # 0x1e None, # 0x1e
'', # 0x1f None, # 0x1f
'', # 0x20 None, # 0x20
'', # 0x21 None, # 0x21
'', # 0x22 None, # 0x22
'', # 0x23 None, # 0x23
'', # 0x24 None, # 0x24
'', # 0x25 None, # 0x25
'', # 0x26 None, # 0x26
'', # 0x27 None, # 0x27
'', # 0x28 None, # 0x28
'', # 0x29 None, # 0x29
'', # 0x2a None, # 0x2a
'', # 0x2b None, # 0x2b
'', # 0x2c None, # 0x2c
'', # 0x2d None, # 0x2d
'', # 0x2e None, # 0x2e
'', # 0x2f None, # 0x2f
'', # 0x30 None, # 0x30
'', # 0x31 None, # 0x31
'', # 0x32 None, # 0x32
'', # 0x33 None, # 0x33
'', # 0x34 None, # 0x34
'', # 0x35 None, # 0x35
'', # 0x36 None, # 0x36
'', # 0x37 None, # 0x37
'', # 0x38 None, # 0x38
'', # 0x39 None, # 0x39
'', # 0x3a None, # 0x3a
'', # 0x3b None, # 0x3b
'', # 0x3c None, # 0x3c
'', # 0x3d None, # 0x3d
'', # 0x3e None, # 0x3e
'', # 0x3f None, # 0x3f
'', # 0x40 None, # 0x40
'', # 0x41 None, # 0x41
'', # 0x42 None, # 0x42
'', # 0x43 None, # 0x43
'', # 0x44 None, # 0x44
'', # 0x45 None, # 0x45
'', # 0x46 None, # 0x46
'', # 0x47 None, # 0x47
'', # 0x48 None, # 0x48
'', # 0x49 None, # 0x49
'', # 0x4a None, # 0x4a
'', # 0x4b None, # 0x4b
'', # 0x4c None, # 0x4c
'', # 0x4d None, # 0x4d
'', # 0x4e None, # 0x4e
'', # 0x4f None, # 0x4f
'', # 0x50 None, # 0x50
'', # 0x51 None, # 0x51
'', # 0x52 None, # 0x52
'', # 0x53 None, # 0x53
'', # 0x54 None, # 0x54
'', # 0x55 None, # 0x55
'', # 0x56 None, # 0x56
'', # 0x57 None, # 0x57
'', # 0x58 None, # 0x58
'', # 0x59 None, # 0x59
'', # 0x5a None, # 0x5a
'', # 0x5b None, # 0x5b
'', # 0x5c None, # 0x5c
'', # 0x5d None, # 0x5d
'', # 0x5e None, # 0x5e
'', # 0x5f None, # 0x5f
'', # 0x60 None, # 0x60
'', # 0x61 None, # 0x61
'', # 0x62 None, # 0x62
'', # 0x63 None, # 0x63
'', # 0x64 None, # 0x64
'', # 0x65 None, # 0x65
'', # 0x66 None, # 0x66
'', # 0x67 None, # 0x67
'', # 0x68 None, # 0x68
'', # 0x69 None, # 0x69
'', # 0x6a None, # 0x6a
'', # 0x6b None, # 0x6b
'', # 0x6c None, # 0x6c
'', # 0x6d None, # 0x6d
'', # 0x6e None, # 0x6e
'', # 0x6f None, # 0x6f
'', # 0x70 None, # 0x70
'', # 0x71 None, # 0x71
'', # 0x72 None, # 0x72
'', # 0x73 None, # 0x73
'', # 0x74 None, # 0x74
'', # 0x75 None, # 0x75
'', # 0x76 None, # 0x76
'', # 0x77 None, # 0x77
'', # 0x78 None, # 0x78
'', # 0x79 None, # 0x79
'', # 0x7a None, # 0x7a
'', # 0x7b None, # 0x7b
'', # 0x7c None, # 0x7c
'', # 0x7d None, # 0x7d
'', # 0x7e None, # 0x7e
'', # 0x7f None, # 0x7f
'', # 0x80 None, # 0x80
'', # 0x81 None, # 0x81
'', # 0x82 None, # 0x82
'{', # 0x83 '{', # 0x83
'} ', # 0x84 '} ', # 0x84
'', # 0x85 None, # 0x85
'', # 0x86 None, # 0x86
'', # 0x87 None, # 0x87
'', # 0x88 None, # 0x88
'', # 0x89 None, # 0x89
'', # 0x8a None, # 0x8a
'', # 0x8b None, # 0x8b
'', # 0x8c None, # 0x8c
'', # 0x8d None, # 0x8d
'', # 0x8e None, # 0x8e
'', # 0x8f None, # 0x8f
'', # 0x90 None, # 0x90
'', # 0x91 None, # 0x91
'', # 0x92 None, # 0x92
'', # 0x93 None, # 0x93
'', # 0x94 None, # 0x94
'', # 0x95 None, # 0x95
'', # 0x96 None, # 0x96
'', # 0x97 None, # 0x97
'', # 0x98 None, # 0x98
'', # 0x99 None, # 0x99
'', # 0x9a None, # 0x9a
'', # 0x9b None, # 0x9b
'', # 0x9c None, # 0x9c
'', # 0x9d None, # 0x9d
'', # 0x9e None, # 0x9e
'', # 0x9f None, # 0x9f
'', # 0xa0 None, # 0xa0
'', # 0xa1 None, # 0xa1
'', # 0xa2 None, # 0xa2
'', # 0xa3 None, # 0xa3
'', # 0xa4 None, # 0xa4
'', # 0xa5 None, # 0xa5
'', # 0xa6 None, # 0xa6
'', # 0xa7 None, # 0xa7
'', # 0xa8 None, # 0xa8
'', # 0xa9 None, # 0xa9
'', # 0xaa None, # 0xaa
'', # 0xab None, # 0xab
'', # 0xac None, # 0xac
'', # 0xad None, # 0xad
'', # 0xae None, # 0xae
'', # 0xaf None, # 0xaf
'', # 0xb0 None, # 0xb0
'', # 0xb1 None, # 0xb1
'', # 0xb2 None, # 0xb2
'', # 0xb3 None, # 0xb3
'', # 0xb4 None, # 0xb4
'', # 0xb5 None, # 0xb5
'', # 0xb6 None, # 0xb6
'', # 0xb7 None, # 0xb7
'', # 0xb8 None, # 0xb8
'', # 0xb9 None, # 0xb9
'', # 0xba None, # 0xba
'', # 0xbb None, # 0xbb
'', # 0xbc None, # 0xbc
'', # 0xbd None, # 0xbd
'', # 0xbe None, # 0xbe
'', # 0xbf None, # 0xbf
'', # 0xc0 None, # 0xc0
'', # 0xc1 None, # 0xc1
'', # 0xc2 None, # 0xc2
'', # 0xc3 None, # 0xc3
'', # 0xc4 None, # 0xc4
'', # 0xc5 None, # 0xc5
'', # 0xc6 None, # 0xc6
'', # 0xc7 None, # 0xc7
'', # 0xc8 None, # 0xc8
'', # 0xc9 None, # 0xc9
'', # 0xca None, # 0xca
'', # 0xcb None, # 0xcb
'', # 0xcc None, # 0xcc
'', # 0xcd None, # 0xcd
'', # 0xce None, # 0xce
'', # 0xcf None, # 0xcf
'', # 0xd0 None, # 0xd0
'', # 0xd1 None, # 0xd1
'', # 0xd2 None, # 0xd2
'', # 0xd3 None, # 0xd3
'', # 0xd4 None, # 0xd4
'', # 0xd5 None, # 0xd5
'', # 0xd6 None, # 0xd6
'', # 0xd7 None, # 0xd7
'', # 0xd8 None, # 0xd8
'', # 0xd9 None, # 0xd9
'', # 0xda None, # 0xda
'', # 0xdb None, # 0xdb
'', # 0xdc None, # 0xdc
'', # 0xdd None, # 0xdd
'', # 0xde None, # 0xde
'', # 0xdf None, # 0xdf
'', # 0xe0 None, # 0xe0
'', # 0xe1 None, # 0xe1
'', # 0xe2 None, # 0xe2
'', # 0xe3 None, # 0xe3
'', # 0xe4 None, # 0xe4
'', # 0xe5 None, # 0xe5
'', # 0xe6 None, # 0xe6
'', # 0xe7 None, # 0xe7
'', # 0xe8 None, # 0xe8
'', # 0xe9 None, # 0xe9
'', # 0xea None, # 0xea
'', # 0xeb None, # 0xeb
'', # 0xec None, # 0xec
'', # 0xed None, # 0xed
'', # 0xee None, # 0xee
'', # 0xef None, # 0xef
'', # 0xf0 None, # 0xf0
'', # 0xf1 None, # 0xf1
'', # 0xf2 None, # 0xf2
'', # 0xf3 None, # 0xf3
'', # 0xf4 None, # 0xf4
'', # 0xf5 None, # 0xf5
'', # 0xf6 None, # 0xf6
'', # 0xf7 None, # 0xf7
'', # 0xf8 None, # 0xf8
'', # 0xf9 None, # 0xf9
'', # 0xfa None, # 0xfa
'', # 0xfb None, # 0xfb
'', # 0xfc None, # 0xfc
'', # 0xfd None, # 0xfd
'', # 0xfe None, # 0xfe
) )

View file

@ -1,257 +1,257 @@
data = ( data = (
'', # 0x00 None, # 0x00
'', # 0x01 None, # 0x01
'', # 0x02 None, # 0x02
'', # 0x03 None, # 0x03
'', # 0x04 None, # 0x04
'', # 0x05 None, # 0x05
'', # 0x06 None, # 0x06
'', # 0x07 None, # 0x07
'', # 0x08 None, # 0x08
'', # 0x09 None, # 0x09
'', # 0x0a None, # 0x0a
'', # 0x0b None, # 0x0b
'', # 0x0c None, # 0x0c
'', # 0x0d None, # 0x0d
'', # 0x0e None, # 0x0e
'', # 0x0f None, # 0x0f
'', # 0x10 None, # 0x10
'', # 0x11 None, # 0x11
'', # 0x12 None, # 0x12
'', # 0x13 None, # 0x13
'', # 0x14 None, # 0x14
'', # 0x15 None, # 0x15
'', # 0x16 None, # 0x16
'', # 0x17 None, # 0x17
'', # 0x18 None, # 0x18
'', # 0x19 None, # 0x19
'', # 0x1a None, # 0x1a
'', # 0x1b None, # 0x1b
'', # 0x1c None, # 0x1c
'', # 0x1d None, # 0x1d
'', # 0x1e None, # 0x1e
'', # 0x1f None, # 0x1f
'', # 0x20 None, # 0x20
'', # 0x21 None, # 0x21
'', # 0x22 None, # 0x22
'', # 0x23 None, # 0x23
'', # 0x24 None, # 0x24
'', # 0x25 None, # 0x25
'', # 0x26 None, # 0x26
'', # 0x27 None, # 0x27
'', # 0x28 None, # 0x28
'', # 0x29 None, # 0x29
'', # 0x2a None, # 0x2a
'', # 0x2b None, # 0x2b
'', # 0x2c None, # 0x2c
'', # 0x2d None, # 0x2d
'', # 0x2e None, # 0x2e
'', # 0x2f None, # 0x2f
'', # 0x30 None, # 0x30
'', # 0x31 None, # 0x31
'', # 0x32 None, # 0x32
'', # 0x33 None, # 0x33
'', # 0x34 None, # 0x34
'', # 0x35 None, # 0x35
'', # 0x36 None, # 0x36
'', # 0x37 None, # 0x37
'', # 0x38 None, # 0x38
'', # 0x39 None, # 0x39
'', # 0x3a None, # 0x3a
'', # 0x3b None, # 0x3b
'', # 0x3c None, # 0x3c
'', # 0x3d None, # 0x3d
'', # 0x3e None, # 0x3e
'', # 0x3f None, # 0x3f
'', # 0x40 None, # 0x40
'', # 0x41 None, # 0x41
'', # 0x42 None, # 0x42
'', # 0x43 None, # 0x43
'', # 0x44 None, # 0x44
'', # 0x45 None, # 0x45
'', # 0x46 None, # 0x46
'', # 0x47 None, # 0x47
'', # 0x48 None, # 0x48
'', # 0x49 None, # 0x49
'', # 0x4a None, # 0x4a
'', # 0x4b None, # 0x4b
'', # 0x4c None, # 0x4c
'', # 0x4d None, # 0x4d
'', # 0x4e None, # 0x4e
'', # 0x4f None, # 0x4f
'', # 0x50 None, # 0x50
'', # 0x51 None, # 0x51
'', # 0x52 None, # 0x52
'', # 0x53 None, # 0x53
'', # 0x54 None, # 0x54
'', # 0x55 None, # 0x55
'', # 0x56 None, # 0x56
'', # 0x57 None, # 0x57
'', # 0x58 None, # 0x58
'', # 0x59 None, # 0x59
'', # 0x5a None, # 0x5a
'', # 0x5b None, # 0x5b
'', # 0x5c None, # 0x5c
'', # 0x5d None, # 0x5d
'', # 0x5e None, # 0x5e
'', # 0x5f None, # 0x5f
'', # 0x60 None, # 0x60
'', # 0x61 None, # 0x61
'', # 0x62 None, # 0x62
'', # 0x63 None, # 0x63
'', # 0x64 None, # 0x64
'', # 0x65 None, # 0x65
'', # 0x66 None, # 0x66
'', # 0x67 None, # 0x67
'', # 0x68 None, # 0x68
'', # 0x69 None, # 0x69
'', # 0x6a None, # 0x6a
'', # 0x6b None, # 0x6b
'', # 0x6c None, # 0x6c
'', # 0x6d None, # 0x6d
'', # 0x6e None, # 0x6e
'', # 0x6f None, # 0x6f
'', # 0x70 None, # 0x70
'', # 0x71 None, # 0x71
'', # 0x72 None, # 0x72
'', # 0x73 None, # 0x73
'::=', # 0x74 '::=', # 0x74
'==', # 0x75 '==', # 0x75
'===', # 0x76 '===', # 0x76
'', # 0x77 None, # 0x77
'', # 0x78 None, # 0x78
'', # 0x79 None, # 0x79
'', # 0x7a None, # 0x7a
'', # 0x7b None, # 0x7b
'', # 0x7c None, # 0x7c
'', # 0x7d None, # 0x7d
'', # 0x7e None, # 0x7e
'', # 0x7f None, # 0x7f
'', # 0x80 None, # 0x80
'', # 0x81 None, # 0x81
'', # 0x82 None, # 0x82
'', # 0x83 None, # 0x83
'', # 0x84 None, # 0x84
'', # 0x85 None, # 0x85
'', # 0x86 None, # 0x86
'', # 0x87 None, # 0x87
'', # 0x88 None, # 0x88
'', # 0x89 None, # 0x89
'', # 0x8a None, # 0x8a
'', # 0x8b None, # 0x8b
'', # 0x8c None, # 0x8c
'', # 0x8d None, # 0x8d
'', # 0x8e None, # 0x8e
'', # 0x8f None, # 0x8f
'', # 0x90 None, # 0x90
'', # 0x91 None, # 0x91
'', # 0x92 None, # 0x92
'', # 0x93 None, # 0x93
'', # 0x94 None, # 0x94
'', # 0x95 None, # 0x95
'', # 0x96 None, # 0x96
'', # 0x97 None, # 0x97
'', # 0x98 None, # 0x98
'', # 0x99 None, # 0x99
'', # 0x9a None, # 0x9a
'', # 0x9b None, # 0x9b
'', # 0x9c None, # 0x9c
'', # 0x9d None, # 0x9d
'', # 0x9e None, # 0x9e
'', # 0x9f None, # 0x9f
'', # 0xa0 None, # 0xa0
'', # 0xa1 None, # 0xa1
'', # 0xa2 None, # 0xa2
'', # 0xa3 None, # 0xa3
'', # 0xa4 None, # 0xa4
'', # 0xa5 None, # 0xa5
'', # 0xa6 None, # 0xa6
'', # 0xa7 None, # 0xa7
'', # 0xa8 None, # 0xa8
'', # 0xa9 None, # 0xa9
'', # 0xaa None, # 0xaa
'', # 0xab None, # 0xab
'', # 0xac None, # 0xac
'', # 0xad None, # 0xad
'', # 0xae None, # 0xae
'', # 0xaf None, # 0xaf
'', # 0xb0 None, # 0xb0
'', # 0xb1 None, # 0xb1
'', # 0xb2 None, # 0xb2
'', # 0xb3 None, # 0xb3
'', # 0xb4 None, # 0xb4
'', # 0xb5 None, # 0xb5
'', # 0xb6 None, # 0xb6
'', # 0xb7 None, # 0xb7
'', # 0xb8 None, # 0xb8
'', # 0xb9 None, # 0xb9
'', # 0xba None, # 0xba
'', # 0xbb None, # 0xbb
'', # 0xbc None, # 0xbc
'', # 0xbd None, # 0xbd
'', # 0xbe None, # 0xbe
'', # 0xbf None, # 0xbf
'', # 0xc0 None, # 0xc0
'', # 0xc1 None, # 0xc1
'', # 0xc2 None, # 0xc2
'', # 0xc3 None, # 0xc3
'', # 0xc4 None, # 0xc4
'', # 0xc5 None, # 0xc5
'', # 0xc6 None, # 0xc6
'', # 0xc7 None, # 0xc7
'', # 0xc8 None, # 0xc8
'', # 0xc9 None, # 0xc9
'', # 0xca None, # 0xca
'', # 0xcb None, # 0xcb
'', # 0xcc None, # 0xcc
'', # 0xcd None, # 0xcd
'', # 0xce None, # 0xce
'', # 0xcf None, # 0xcf
'', # 0xd0 None, # 0xd0
'', # 0xd1 None, # 0xd1
'', # 0xd2 None, # 0xd2
'', # 0xd3 None, # 0xd3
'', # 0xd4 None, # 0xd4
'', # 0xd5 None, # 0xd5
'', # 0xd6 None, # 0xd6
'', # 0xd7 None, # 0xd7
'', # 0xd8 None, # 0xd8
'', # 0xd9 None, # 0xd9
'', # 0xda None, # 0xda
'', # 0xdb None, # 0xdb
'', # 0xdc None, # 0xdc
'', # 0xdd None, # 0xdd
'', # 0xde None, # 0xde
'', # 0xdf None, # 0xdf
'', # 0xe0 None, # 0xe0
'', # 0xe1 None, # 0xe1
'', # 0xe2 None, # 0xe2
'', # 0xe3 None, # 0xe3
'', # 0xe4 None, # 0xe4
'', # 0xe5 None, # 0xe5
'', # 0xe6 None, # 0xe6
'', # 0xe7 None, # 0xe7
'', # 0xe8 None, # 0xe8
'', # 0xe9 None, # 0xe9
'', # 0xea None, # 0xea
'', # 0xeb None, # 0xeb
'', # 0xec None, # 0xec
'', # 0xed None, # 0xed
'', # 0xee None, # 0xee
'', # 0xef None, # 0xef
'', # 0xf0 None, # 0xf0
'', # 0xf1 None, # 0xf1
'', # 0xf2 None, # 0xf2
'', # 0xf3 None, # 0xf3
'', # 0xf4 None, # 0xf4
'', # 0xf5 None, # 0xf5
'', # 0xf6 None, # 0xf6
'', # 0xf7 None, # 0xf7
'', # 0xf8 None, # 0xf8
'', # 0xf9 None, # 0xf9
'', # 0xfa None, # 0xfa
'', # 0xfb None, # 0xfb
'', # 0xfc None, # 0xfc
'', # 0xfd None, # 0xfd
'', # 0xfe None, # 0xfe
) )

View file

@ -1,100 +1,100 @@
data = ( data = (
'', # 0x00 None, # 0x00
'', # 0x01 None, # 0x01
'', # 0x02 None, # 0x02
'', # 0x03 None, # 0x03
'', # 0x04 None, # 0x04
'', # 0x05 None, # 0x05
'', # 0x06 None, # 0x06
'', # 0x07 None, # 0x07
'', # 0x08 None, # 0x08
'', # 0x09 None, # 0x09
'', # 0x0a None, # 0x0a
'', # 0x0b None, # 0x0b
'', # 0x0c None, # 0x0c
'', # 0x0d None, # 0x0d
'', # 0x0e None, # 0x0e
'', # 0x0f None, # 0x0f
'', # 0x10 None, # 0x10
'', # 0x11 None, # 0x11
'', # 0x12 None, # 0x12
'', # 0x13 None, # 0x13
'', # 0x14 None, # 0x14
'', # 0x15 None, # 0x15
'', # 0x16 None, # 0x16
'', # 0x17 None, # 0x17
'', # 0x18 None, # 0x18
'', # 0x19 None, # 0x19
'', # 0x1a None, # 0x1a
'', # 0x1b None, # 0x1b
'', # 0x1c None, # 0x1c
'', # 0x1d None, # 0x1d
'', # 0x1e None, # 0x1e
'', # 0x1f None, # 0x1f
'', # 0x20 None, # 0x20
'', # 0x21 None, # 0x21
'', # 0x22 None, # 0x22
'', # 0x23 None, # 0x23
'', # 0x24 None, # 0x24
'', # 0x25 None, # 0x25
'', # 0x26 None, # 0x26
'', # 0x27 None, # 0x27
'', # 0x28 None, # 0x28
'', # 0x29 None, # 0x29
'', # 0x2a None, # 0x2a
'', # 0x2b None, # 0x2b
'', # 0x2c None, # 0x2c
'', # 0x2d None, # 0x2d
'', # 0x2e None, # 0x2e
'', # 0x2f None, # 0x2f
'', # 0x30 None, # 0x30
'', # 0x31 None, # 0x31
'', # 0x32 None, # 0x32
'', # 0x33 None, # 0x33
'', # 0x34 None, # 0x34
'', # 0x35 None, # 0x35
'', # 0x36 None, # 0x36
'', # 0x37 None, # 0x37
'', # 0x38 None, # 0x38
'', # 0x39 None, # 0x39
'', # 0x3a None, # 0x3a
'', # 0x3b None, # 0x3b
'', # 0x3c None, # 0x3c
'', # 0x3d None, # 0x3d
'', # 0x3e None, # 0x3e
'', # 0x3f None, # 0x3f
'', # 0x40 None, # 0x40
'', # 0x41 None, # 0x41
'', # 0x42 None, # 0x42
'', # 0x43 None, # 0x43
'', # 0x44 None, # 0x44
'', # 0x45 None, # 0x45
'', # 0x46 None, # 0x46
'', # 0x47 None, # 0x47
'', # 0x48 None, # 0x48
'', # 0x49 None, # 0x49
'', # 0x4a None, # 0x4a
'', # 0x4b None, # 0x4b
'', # 0x4c None, # 0x4c
'', # 0x4d None, # 0x4d
'', # 0x4e None, # 0x4e
'', # 0x4f None, # 0x4f
'', # 0x50 None, # 0x50
'', # 0x51 None, # 0x51
'', # 0x52 None, # 0x52
'', # 0x53 None, # 0x53
'', # 0x54 None, # 0x54
'', # 0x55 None, # 0x55
'', # 0x56 None, # 0x56
'', # 0x57 None, # 0x57
'', # 0x58 None, # 0x58
'', # 0x59 None, # 0x59
'', # 0x5a None, # 0x5a
'', # 0x5b None, # 0x5b
'', # 0x5c None, # 0x5c
'', # 0x5d None, # 0x5d
'', # 0x5e None, # 0x5e
'', # 0x5f None, # 0x5f
'L', # 0x60 'L', # 0x60
'l', # 0x61 'l', # 0x61
'L', # 0x62 'L', # 0x62
@ -108,150 +108,150 @@ data = (
'k', # 0x6a 'k', # 0x6a
'Z', # 0x6b 'Z', # 0x6b
'z', # 0x6c 'z', # 0x6c
'', # 0x6d None, # 0x6d
'M', # 0x6e 'M', # 0x6e
'A', # 0x6f 'A', # 0x6f
'', # 0x70 None, # 0x70
'', # 0x71 None, # 0x71
'', # 0x72 None, # 0x72
'', # 0x73 None, # 0x73
'', # 0x74 None, # 0x74
'', # 0x75 None, # 0x75
'', # 0x76 None, # 0x76
'', # 0x77 None, # 0x77
'', # 0x78 None, # 0x78
'', # 0x79 None, # 0x79
'', # 0x7a None, # 0x7a
'', # 0x7b None, # 0x7b
'', # 0x7c None, # 0x7c
'', # 0x7d None, # 0x7d
'', # 0x7e None, # 0x7e
'', # 0x7f None, # 0x7f
'', # 0x80 None, # 0x80
'', # 0x81 None, # 0x81
'', # 0x82 None, # 0x82
'', # 0x83 None, # 0x83
'', # 0x84 None, # 0x84
'', # 0x85 None, # 0x85
'', # 0x86 None, # 0x86
'', # 0x87 None, # 0x87
'', # 0x88 None, # 0x88
'', # 0x89 None, # 0x89
'', # 0x8a None, # 0x8a
'', # 0x8b None, # 0x8b
'', # 0x8c None, # 0x8c
'', # 0x8d None, # 0x8d
'', # 0x8e None, # 0x8e
'', # 0x8f None, # 0x8f
'', # 0x90 None, # 0x90
'', # 0x91 None, # 0x91
'', # 0x92 None, # 0x92
'', # 0x93 None, # 0x93
'', # 0x94 None, # 0x94
'', # 0x95 None, # 0x95
'', # 0x96 None, # 0x96
'', # 0x97 None, # 0x97
'', # 0x98 None, # 0x98
'', # 0x99 None, # 0x99
'', # 0x9a None, # 0x9a
'', # 0x9b None, # 0x9b
'', # 0x9c None, # 0x9c
'', # 0x9d None, # 0x9d
'', # 0x9e None, # 0x9e
'', # 0x9f None, # 0x9f
'', # 0xa0 None, # 0xa0
'', # 0xa1 None, # 0xa1
'', # 0xa2 None, # 0xa2
'', # 0xa3 None, # 0xa3
'', # 0xa4 None, # 0xa4
'', # 0xa5 None, # 0xa5
'', # 0xa6 None, # 0xa6
'', # 0xa7 None, # 0xa7
'', # 0xa8 None, # 0xa8
'', # 0xa9 None, # 0xa9
'', # 0xaa None, # 0xaa
'', # 0xab None, # 0xab
'', # 0xac None, # 0xac
'', # 0xad None, # 0xad
'', # 0xae None, # 0xae
'', # 0xaf None, # 0xaf
'', # 0xb0 None, # 0xb0
'', # 0xb1 None, # 0xb1
'', # 0xb2 None, # 0xb2
'', # 0xb3 None, # 0xb3
'', # 0xb4 None, # 0xb4
'', # 0xb5 None, # 0xb5
'', # 0xb6 None, # 0xb6
'', # 0xb7 None, # 0xb7
'', # 0xb8 None, # 0xb8
'', # 0xb9 None, # 0xb9
'', # 0xba None, # 0xba
'', # 0xbb None, # 0xbb
'', # 0xbc None, # 0xbc
'', # 0xbd None, # 0xbd
'', # 0xbe None, # 0xbe
'', # 0xbf None, # 0xbf
'', # 0xc0 None, # 0xc0
'', # 0xc1 None, # 0xc1
'', # 0xc2 None, # 0xc2
'', # 0xc3 None, # 0xc3
'', # 0xc4 None, # 0xc4
'', # 0xc5 None, # 0xc5
'', # 0xc6 None, # 0xc6
'', # 0xc7 None, # 0xc7
'', # 0xc8 None, # 0xc8
'', # 0xc9 None, # 0xc9
'', # 0xca None, # 0xca
'', # 0xcb None, # 0xcb
'', # 0xcc None, # 0xcc
'', # 0xcd None, # 0xcd
'', # 0xce None, # 0xce
'', # 0xcf None, # 0xcf
'', # 0xd0 None, # 0xd0
'', # 0xd1 None, # 0xd1
'', # 0xd2 None, # 0xd2
'', # 0xd3 None, # 0xd3
'', # 0xd4 None, # 0xd4
'', # 0xd5 None, # 0xd5
'', # 0xd6 None, # 0xd6
'', # 0xd7 None, # 0xd7
'', # 0xd8 None, # 0xd8
'', # 0xd9 None, # 0xd9
'', # 0xda None, # 0xda
'', # 0xdb None, # 0xdb
'', # 0xdc None, # 0xdc
'', # 0xdd None, # 0xdd
'', # 0xde None, # 0xde
'', # 0xdf None, # 0xdf
'', # 0xe0 None, # 0xe0
'', # 0xe1 None, # 0xe1
'', # 0xe2 None, # 0xe2
'', # 0xe3 None, # 0xe3
'', # 0xe4 None, # 0xe4
'', # 0xe5 None, # 0xe5
'', # 0xe6 None, # 0xe6
'', # 0xe7 None, # 0xe7
'', # 0xe8 None, # 0xe8
'', # 0xe9 None, # 0xe9
'', # 0xea None, # 0xea
'', # 0xeb None, # 0xeb
'', # 0xec None, # 0xec
'', # 0xed None, # 0xed
'', # 0xee None, # 0xee
'', # 0xef None, # 0xef
'', # 0xf0 None, # 0xf0
'', # 0xf1 None, # 0xf1
'', # 0xf2 None, # 0xf2
'', # 0xf3 None, # 0xf3
'', # 0xf4 None, # 0xf4
'', # 0xf5 None, # 0xf5
'', # 0xf6 None, # 0xf6
'', # 0xf7 None, # 0xf7
'', # 0xf8 None, # 0xf8
'', # 0xf9 None, # 0xf9
'', # 0xfa None, # 0xfa
'', # 0xfb None, # 0xfb
'', # 0xfc None, # 0xfc
'', # 0xfd None, # 0xfd
'', # 0xfe None, # 0xfe
) )

View file

@ -1,257 +1,257 @@
data = ( data = (
'[?]', # 0x00 'r', # 0x00
'[?]', # 0x01 'r.', # 0x01
'[?]', # 0x02 None, # 0x02
'[?]', # 0x03 None, # 0x03
'[?]', # 0x04 None, # 0x04
'[?]', # 0x05 None, # 0x05
'[?]', # 0x06 'T', # 0x06
'[?]', # 0x07 'T.', # 0x07
'[?]', # 0x08 None, # 0x08
'[?]', # 0x09 's', # 0x09
'[?]', # 0x0a None, # 0x0a
'[?]', # 0x0b '[]', # 0x0b
'[?]', # 0x0c '\\', # 0x0c
'[?]', # 0x0d '/', # 0x0d
'[?]', # 0x0e None, # 0x0e
'[?]', # 0x0f '__', # 0x0f
'[?]', # 0x10 None, # 0x10
'[?]', # 0x11 None, # 0x11
'[?]', # 0x12 '>', # 0x12
'[?]', # 0x13 '%', # 0x13
'[?]', # 0x14 None, # 0x14
'[?]', # 0x15 None, # 0x15
'[?]', # 0x16 '>', # 0x16
'[?]', # 0x17 '=', # 0x17
'[?]', # 0x18 None, # 0x18
'[?]', # 0x19 '/', # 0x19
'[?]', # 0x1a '-', # 0x1a
'[?]', # 0x1b '~', # 0x1b
'[?]', # 0x1c '\\', # 0x1c
'[?]', # 0x1d '/', # 0x1d
'[?]', # 0x1e '~', # 0x1e
'[?]', # 0x1f '~', # 0x1f
'[?]', # 0x20 '|-', # 0x20
'[?]', # 0x21 '-|', # 0x21
'[?]', # 0x22 None, # 0x22
'[?]', # 0x23 None, # 0x23
'[?]', # 0x24 None, # 0x24
'[?]', # 0x25 None, # 0x25
'[?]', # 0x26 '<=', # 0x26
'[?]', # 0x27 '=>', # 0x27
'[?]', # 0x28 '((', # 0x28
'[?]', # 0x29 '))', # 0x29
'[?]', # 0x2a None, # 0x2a
'[?]', # 0x2b None, # 0x2b
'[?]', # 0x2c '::', # 0x2c
'[?]', # 0x2d None, # 0x2d
'[?]', # 0x2e '?', # 0x2e
'[?]', # 0x2f '\'', # 0x2f
'[?]', # 0x30 'o', # 0x30
'[?]', # 0x31 '.', # 0x31
'[?]', # 0x32 ',', # 0x32
'[?]', # 0x33 '.', # 0x33
'[?]', # 0x34 ',', # 0x34
'[?]', # 0x35 ';', # 0x35
'[?]', # 0x36 None, # 0x36
'[?]', # 0x37 None, # 0x37
'[?]', # 0x38 None, # 0x38
'[?]', # 0x39 None, # 0x39
'[?]', # 0x3a '----', # 0x3a
'[?]', # 0x3b '------', # 0x3b
'[?]', # 0x3c 'x', # 0x3c
'[?]', # 0x3d '|', # 0x3d
'[?]', # 0x3e None, # 0x3e
'[?]', # 0x3f None, # 0x3f
'[?]', # 0x40 '=', # 0x40
'[?]', # 0x41 ',', # 0x41
'[?]', # 0x42 '"', # 0x42
'[?]', # 0x43 '`--', # 0x43
'[?]', # 0x44 None, # 0x44
'[?]', # 0x45 None, # 0x45
'[?]', # 0x46 None, # 0x46
'[?]', # 0x47 None, # 0x47
'[?]', # 0x48 None, # 0x48
'[?]', # 0x49 None, # 0x49
'[?]', # 0x4a None, # 0x4a
'[?]', # 0x4b None, # 0x4b
'[?]', # 0x4c None, # 0x4c
'[?]', # 0x4d None, # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'[?]', # 0x51 None, # 0x51
'[?]', # 0x52 None, # 0x52
'[?]', # 0x53 None, # 0x53
'[?]', # 0x54 None, # 0x54
'[?]', # 0x55 None, # 0x55
'[?]', # 0x56 None, # 0x56
'[?]', # 0x57 None, # 0x57
'[?]', # 0x58 None, # 0x58
'[?]', # 0x59 None, # 0x59
'[?]', # 0x5a None, # 0x5a
'[?]', # 0x5b None, # 0x5b
'[?]', # 0x5c None, # 0x5c
'[?]', # 0x5d None, # 0x5d
'[?]', # 0x5e None, # 0x5e
'[?]', # 0x5f None, # 0x5f
'[?]', # 0x60 None, # 0x60
'[?]', # 0x61 None, # 0x61
'[?]', # 0x62 None, # 0x62
'[?]', # 0x63 None, # 0x63
'[?]', # 0x64 None, # 0x64
'[?]', # 0x65 None, # 0x65
'[?]', # 0x66 None, # 0x66
'[?]', # 0x67 None, # 0x67
'[?]', # 0x68 None, # 0x68
'[?]', # 0x69 None, # 0x69
'[?]', # 0x6a None, # 0x6a
'[?]', # 0x6b None, # 0x6b
'[?]', # 0x6c None, # 0x6c
'[?]', # 0x6d None, # 0x6d
'[?]', # 0x6e None, # 0x6e
'[?]', # 0x6f None, # 0x6f
'[?]', # 0x70 None, # 0x70
'[?]', # 0x71 None, # 0x71
'[?]', # 0x72 None, # 0x72
'[?]', # 0x73 None, # 0x73
'[?]', # 0x74 None, # 0x74
'[?]', # 0x75 None, # 0x75
'[?]', # 0x76 None, # 0x76
'[?]', # 0x77 None, # 0x77
'[?]', # 0x78 None, # 0x78
'[?]', # 0x79 None, # 0x79
'[?]', # 0x7a None, # 0x7a
'[?]', # 0x7b None, # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'[?]', # 0x7f None, # 0x7f
'[?] ', # 0x80 None, # 0x80
'[?] ', # 0x81 None, # 0x81
'[?] ', # 0x82 None, # 0x82
'[?] ', # 0x83 None, # 0x83
'[?] ', # 0x84 None, # 0x84
'[?] ', # 0x85 None, # 0x85
'[?] ', # 0x86 None, # 0x86
'[?] ', # 0x87 None, # 0x87
'[?] ', # 0x88 None, # 0x88
'[?] ', # 0x89 None, # 0x89
'[?] ', # 0x8a None, # 0x8a
'[?] ', # 0x8b None, # 0x8b
'[?] ', # 0x8c None, # 0x8c
'[?] ', # 0x8d None, # 0x8d
'[?] ', # 0x8e None, # 0x8e
'[?] ', # 0x8f None, # 0x8f
'[?] ', # 0x90 None, # 0x90
'[?] ', # 0x91 None, # 0x91
'[?] ', # 0x92 None, # 0x92
'[?] ', # 0x93 None, # 0x93
'[?] ', # 0x94 None, # 0x94
'[?] ', # 0x95 None, # 0x95
'[?] ', # 0x96 None, # 0x96
'[?] ', # 0x97 None, # 0x97
'[?] ', # 0x98 None, # 0x98
'[?] ', # 0x99 None, # 0x99
'[?]', # 0x9a None, # 0x9a
'[?] ', # 0x9b None, # 0x9b
'[?] ', # 0x9c None, # 0x9c
'[?] ', # 0x9d None, # 0x9d
'[?] ', # 0x9e None, # 0x9e
'[?] ', # 0x9f None, # 0x9f
'[?] ', # 0xa0 None, # 0xa0
'[?] ', # 0xa1 None, # 0xa1
'[?] ', # 0xa2 None, # 0xa2
'[?] ', # 0xa3 None, # 0xa3
'[?] ', # 0xa4 None, # 0xa4
'[?] ', # 0xa5 None, # 0xa5
'[?] ', # 0xa6 None, # 0xa6
'[?] ', # 0xa7 None, # 0xa7
'[?] ', # 0xa8 None, # 0xa8
'[?] ', # 0xa9 None, # 0xa9
'[?] ', # 0xaa None, # 0xaa
'[?] ', # 0xab None, # 0xab
'[?] ', # 0xac None, # 0xac
'[?] ', # 0xad None, # 0xad
'[?] ', # 0xae None, # 0xae
'[?] ', # 0xaf None, # 0xaf
'[?] ', # 0xb0 None, # 0xb0
'[?] ', # 0xb1 None, # 0xb1
'[?] ', # 0xb2 None, # 0xb2
'[?] ', # 0xb3 None, # 0xb3
'[?] ', # 0xb4 None, # 0xb4
'[?] ', # 0xb5 None, # 0xb5
'[?] ', # 0xb6 None, # 0xb6
'[?] ', # 0xb7 None, # 0xb7
'[?] ', # 0xb8 None, # 0xb8
'[?] ', # 0xb9 None, # 0xb9
'[?] ', # 0xba None, # 0xba
'[?] ', # 0xbb None, # 0xbb
'[?] ', # 0xbc None, # 0xbc
'[?] ', # 0xbd None, # 0xbd
'[?] ', # 0xbe None, # 0xbe
'[?] ', # 0xbf None, # 0xbf
'[?] ', # 0xc0 None, # 0xc0
'[?] ', # 0xc1 None, # 0xc1
'[?] ', # 0xc2 None, # 0xc2
'[?] ', # 0xc3 None, # 0xc3
'[?] ', # 0xc4 None, # 0xc4
'[?] ', # 0xc5 None, # 0xc5
'[?] ', # 0xc6 None, # 0xc6
'[?] ', # 0xc7 None, # 0xc7
'[?] ', # 0xc8 None, # 0xc8
'[?] ', # 0xc9 None, # 0xc9
'[?] ', # 0xca None, # 0xca
'[?] ', # 0xcb None, # 0xcb
'[?] ', # 0xcc None, # 0xcc
'[?] ', # 0xcd None, # 0xcd
'[?] ', # 0xce None, # 0xce
'[?] ', # 0xcf None, # 0xcf
'[?] ', # 0xd0 None, # 0xd0
'[?] ', # 0xd1 None, # 0xd1
'[?] ', # 0xd2 None, # 0xd2
'[?] ', # 0xd3 None, # 0xd3
'[?] ', # 0xd4 None, # 0xd4
'[?] ', # 0xd5 None, # 0xd5
'[?] ', # 0xd6 None, # 0xd6
'[?] ', # 0xd7 None, # 0xd7
'[?] ', # 0xd8 None, # 0xd8
'[?] ', # 0xd9 None, # 0xd9
'[?] ', # 0xda None, # 0xda
'[?] ', # 0xdb None, # 0xdb
'[?] ', # 0xdc None, # 0xdc
'[?] ', # 0xdd None, # 0xdd
'[?] ', # 0xde None, # 0xde
'[?] ', # 0xdf None, # 0xdf
'[?] ', # 0xe0 None, # 0xe0
'[?] ', # 0xe1 None, # 0xe1
'[?] ', # 0xe2 None, # 0xe2
'[?] ', # 0xe3 None, # 0xe3
'[?] ', # 0xe4 None, # 0xe4
'[?] ', # 0xe5 None, # 0xe5
'[?] ', # 0xe6 None, # 0xe6
'[?] ', # 0xe7 None, # 0xe7
'[?] ', # 0xe8 None, # 0xe8
'[?] ', # 0xe9 None, # 0xe9
'[?] ', # 0xea None, # 0xea
'[?] ', # 0xeb None, # 0xeb
'[?] ', # 0xec None, # 0xec
'[?] ', # 0xed None, # 0xed
'[?] ', # 0xee None, # 0xee
'[?] ', # 0xef None, # 0xef
'[?] ', # 0xf0 None, # 0xf0
'[?] ', # 0xf1 None, # 0xf1
'[?] ', # 0xf2 None, # 0xf2
'[?] ', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -1,257 +1,257 @@
data = ( data = (
'[?] ', # 0x00 None, # 0x00
'[?] ', # 0x01 None, # 0x01
'[?] ', # 0x02 None, # 0x02
'[?] ', # 0x03 None, # 0x03
'[?] ', # 0x04 None, # 0x04
'[?] ', # 0x05 None, # 0x05
'[?] ', # 0x06 None, # 0x06
'[?] ', # 0x07 None, # 0x07
'[?] ', # 0x08 None, # 0x08
'[?] ', # 0x09 None, # 0x09
'[?] ', # 0x0a None, # 0x0a
'[?] ', # 0x0b None, # 0x0b
'[?] ', # 0x0c None, # 0x0c
'[?] ', # 0x0d None, # 0x0d
'[?] ', # 0x0e None, # 0x0e
'[?] ', # 0x0f None, # 0x0f
'[?] ', # 0x10 None, # 0x10
'[?] ', # 0x11 None, # 0x11
'[?] ', # 0x12 None, # 0x12
'[?] ', # 0x13 None, # 0x13
'[?] ', # 0x14 None, # 0x14
'[?] ', # 0x15 None, # 0x15
'[?] ', # 0x16 None, # 0x16
'[?] ', # 0x17 None, # 0x17
'[?] ', # 0x18 None, # 0x18
'[?] ', # 0x19 None, # 0x19
'[?] ', # 0x1a None, # 0x1a
'[?] ', # 0x1b None, # 0x1b
'[?] ', # 0x1c None, # 0x1c
'[?] ', # 0x1d None, # 0x1d
'[?] ', # 0x1e None, # 0x1e
'[?] ', # 0x1f None, # 0x1f
'[?] ', # 0x20 None, # 0x20
'[?] ', # 0x21 None, # 0x21
'[?] ', # 0x22 None, # 0x22
'[?] ', # 0x23 None, # 0x23
'[?] ', # 0x24 None, # 0x24
'[?] ', # 0x25 None, # 0x25
'[?] ', # 0x26 None, # 0x26
'[?] ', # 0x27 None, # 0x27
'[?] ', # 0x28 None, # 0x28
'[?] ', # 0x29 None, # 0x29
'[?] ', # 0x2a None, # 0x2a
'[?] ', # 0x2b None, # 0x2b
'[?] ', # 0x2c None, # 0x2c
'[?] ', # 0x2d None, # 0x2d
'[?] ', # 0x2e None, # 0x2e
'[?] ', # 0x2f None, # 0x2f
'[?] ', # 0x30 None, # 0x30
'[?] ', # 0x31 None, # 0x31
'[?] ', # 0x32 None, # 0x32
'[?] ', # 0x33 None, # 0x33
'[?] ', # 0x34 None, # 0x34
'[?] ', # 0x35 None, # 0x35
'[?] ', # 0x36 None, # 0x36
'[?] ', # 0x37 None, # 0x37
'[?] ', # 0x38 None, # 0x38
'[?] ', # 0x39 None, # 0x39
'[?] ', # 0x3a None, # 0x3a
'[?] ', # 0x3b None, # 0x3b
'[?] ', # 0x3c None, # 0x3c
'[?] ', # 0x3d None, # 0x3d
'[?] ', # 0x3e None, # 0x3e
'[?] ', # 0x3f None, # 0x3f
'[?] ', # 0x40 None, # 0x40
'[?] ', # 0x41 None, # 0x41
'[?] ', # 0x42 None, # 0x42
'[?] ', # 0x43 None, # 0x43
'[?] ', # 0x44 None, # 0x44
'[?] ', # 0x45 None, # 0x45
'[?] ', # 0x46 None, # 0x46
'[?] ', # 0x47 None, # 0x47
'[?] ', # 0x48 None, # 0x48
'[?] ', # 0x49 None, # 0x49
'[?] ', # 0x4a None, # 0x4a
'[?] ', # 0x4b None, # 0x4b
'[?] ', # 0x4c None, # 0x4c
'[?] ', # 0x4d None, # 0x4d
'[?] ', # 0x4e None, # 0x4e
'[?] ', # 0x4f None, # 0x4f
'[?] ', # 0x50 None, # 0x50
'[?] ', # 0x51 None, # 0x51
'[?] ', # 0x52 None, # 0x52
'[?] ', # 0x53 None, # 0x53
'[?] ', # 0x54 None, # 0x54
'[?] ', # 0x55 None, # 0x55
'[?] ', # 0x56 None, # 0x56
'[?] ', # 0x57 None, # 0x57
'[?] ', # 0x58 None, # 0x58
'[?] ', # 0x59 None, # 0x59
'[?] ', # 0x5a None, # 0x5a
'[?] ', # 0x5b None, # 0x5b
'[?] ', # 0x5c None, # 0x5c
'[?] ', # 0x5d None, # 0x5d
'[?] ', # 0x5e None, # 0x5e
'[?] ', # 0x5f None, # 0x5f
'[?] ', # 0x60 None, # 0x60
'[?] ', # 0x61 None, # 0x61
'[?] ', # 0x62 None, # 0x62
'[?] ', # 0x63 None, # 0x63
'[?] ', # 0x64 None, # 0x64
'[?] ', # 0x65 None, # 0x65
'[?] ', # 0x66 None, # 0x66
'[?] ', # 0x67 None, # 0x67
'[?] ', # 0x68 None, # 0x68
'[?] ', # 0x69 None, # 0x69
'[?] ', # 0x6a None, # 0x6a
'[?] ', # 0x6b None, # 0x6b
'[?] ', # 0x6c None, # 0x6c
'[?] ', # 0x6d None, # 0x6d
'[?] ', # 0x6e None, # 0x6e
'[?] ', # 0x6f None, # 0x6f
'[?] ', # 0x70 None, # 0x70
'[?] ', # 0x71 None, # 0x71
'[?] ', # 0x72 None, # 0x72
'[?] ', # 0x73 None, # 0x73
'[?] ', # 0x74 None, # 0x74
'[?] ', # 0x75 None, # 0x75
'[?] ', # 0x76 None, # 0x76
'[?] ', # 0x77 None, # 0x77
'[?] ', # 0x78 None, # 0x78
'[?] ', # 0x79 None, # 0x79
'[?] ', # 0x7a None, # 0x7a
'[?] ', # 0x7b None, # 0x7b
'[?] ', # 0x7c None, # 0x7c
'[?] ', # 0x7d None, # 0x7d
'[?] ', # 0x7e None, # 0x7e
'[?] ', # 0x7f None, # 0x7f
'[?] ', # 0x80 None, # 0x80
'[?] ', # 0x81 None, # 0x81
'[?] ', # 0x82 None, # 0x82
'[?] ', # 0x83 None, # 0x83
'[?] ', # 0x84 None, # 0x84
'[?] ', # 0x85 None, # 0x85
'[?] ', # 0x86 None, # 0x86
'[?] ', # 0x87 None, # 0x87
'[?] ', # 0x88 None, # 0x88
'[?] ', # 0x89 None, # 0x89
'[?] ', # 0x8a None, # 0x8a
'[?] ', # 0x8b None, # 0x8b
'[?] ', # 0x8c None, # 0x8c
'[?] ', # 0x8d None, # 0x8d
'[?] ', # 0x8e None, # 0x8e
'[?] ', # 0x8f None, # 0x8f
'[?] ', # 0x90 None, # 0x90
'[?] ', # 0x91 None, # 0x91
'[?] ', # 0x92 None, # 0x92
'[?] ', # 0x93 None, # 0x93
'[?] ', # 0x94 None, # 0x94
'[?] ', # 0x95 None, # 0x95
'[?] ', # 0x96 None, # 0x96
'[?] ', # 0x97 None, # 0x97
'[?] ', # 0x98 None, # 0x98
'[?] ', # 0x99 None, # 0x99
'[?] ', # 0x9a None, # 0x9a
'[?] ', # 0x9b None, # 0x9b
'[?] ', # 0x9c None, # 0x9c
'[?] ', # 0x9d None, # 0x9d
'[?] ', # 0x9e None, # 0x9e
'[?] ', # 0x9f None, # 0x9f
'[?] ', # 0xa0 None, # 0xa0
'[?] ', # 0xa1 None, # 0xa1
'[?] ', # 0xa2 None, # 0xa2
'[?] ', # 0xa3 None, # 0xa3
'[?] ', # 0xa4 None, # 0xa4
'[?] ', # 0xa5 None, # 0xa5
'[?] ', # 0xa6 None, # 0xa6
'[?] ', # 0xa7 None, # 0xa7
'[?] ', # 0xa8 None, # 0xa8
'[?] ', # 0xa9 None, # 0xa9
'[?] ', # 0xaa None, # 0xaa
'[?] ', # 0xab None, # 0xab
'[?] ', # 0xac None, # 0xac
'[?] ', # 0xad None, # 0xad
'[?] ', # 0xae None, # 0xae
'[?] ', # 0xaf None, # 0xaf
'[?] ', # 0xb0 None, # 0xb0
'[?] ', # 0xb1 None, # 0xb1
'[?] ', # 0xb2 None, # 0xb2
'[?] ', # 0xb3 None, # 0xb3
'[?] ', # 0xb4 None, # 0xb4
'[?] ', # 0xb5 None, # 0xb5
'[?] ', # 0xb6 None, # 0xb6
'[?] ', # 0xb7 None, # 0xb7
'[?] ', # 0xb8 None, # 0xb8
'[?] ', # 0xb9 None, # 0xb9
'[?] ', # 0xba None, # 0xba
'[?] ', # 0xbb None, # 0xbb
'[?] ', # 0xbc None, # 0xbc
'[?] ', # 0xbd None, # 0xbd
'[?] ', # 0xbe None, # 0xbe
'[?] ', # 0xbf None, # 0xbf
'[?] ', # 0xc0 None, # 0xc0
'[?] ', # 0xc1 None, # 0xc1
'[?] ', # 0xc2 None, # 0xc2
'[?] ', # 0xc3 None, # 0xc3
'[?] ', # 0xc4 None, # 0xc4
'[?] ', # 0xc5 None, # 0xc5
'[?] ', # 0xc6 None, # 0xc6
'[?] ', # 0xc7 None, # 0xc7
'[?] ', # 0xc8 None, # 0xc8
'[?] ', # 0xc9 None, # 0xc9
'[?] ', # 0xca None, # 0xca
'[?] ', # 0xcb None, # 0xcb
'[?] ', # 0xcc None, # 0xcc
'[?] ', # 0xcd None, # 0xcd
'[?] ', # 0xce None, # 0xce
'[?] ', # 0xcf None, # 0xcf
'[?] ', # 0xd0 None, # 0xd0
'[?] ', # 0xd1 None, # 0xd1
'[?] ', # 0xd2 None, # 0xd2
'[?] ', # 0xd3 None, # 0xd3
'[?] ', # 0xd4 None, # 0xd4
'[?] ', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?] ', # 0xf0 None, # 0xf0
'[?] ', # 0xf1 None, # 0xf1
'[?] ', # 0xf2 None, # 0xf2
'[?] ', # 0xf3 None, # 0xf3
'[?] ', # 0xf4 None, # 0xf4
'[?] ', # 0xf5 None, # 0xf5
'[?] ', # 0xf6 None, # 0xf6
'[?] ', # 0xf7 None, # 0xf7
'[?] ', # 0xf8 None, # 0xf8
'[?] ', # 0xf9 None, # 0xf9
'[?] ', # 0xfa None, # 0xfa
'[?] ', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -58,12 +58,12 @@ data = (
'+10+', # 0x38 '+10+', # 0x38
'+20+', # 0x39 '+20+', # 0x39
'+30+', # 0x3a '+30+', # 0x3a
'[?]', # 0x3b None, # 0x3b
'[?]', # 0x3c None, # 0x3c
'[?]', # 0x3d None, # 0x3d
'', # 0x3e '', # 0x3e
'', # 0x3f '', # 0x3f
'[?]', # 0x40 None, # 0x40
'a', # 0x41 'a', # 0x41
'a', # 0x42 'a', # 0x42
'i', # 0x43 'i', # 0x43
@ -148,18 +148,18 @@ data = (
'wo', # 0x92 'wo', # 0x92
'n', # 0x93 'n', # 0x93
'vu', # 0x94 'vu', # 0x94
'[?]', # 0x95 None, # 0x95
'[?]', # 0x96 None, # 0x96
'[?]', # 0x97 None, # 0x97
'[?]', # 0x98 None, # 0x98
'', # 0x99 '', # 0x99
'', # 0x9a '', # 0x9a
'', # 0x9b '', # 0x9b
'', # 0x9c '', # 0x9c
'"', # 0x9d '"', # 0x9d
'"', # 0x9e '"', # 0x9e
'[?]', # 0x9f None, # 0x9f
'[?]', # 0xa0 None, # 0xa0
'a', # 0xa1 'a', # 0xa1
'a', # 0xa2 'a', # 0xa2
'i', # 0xa3 'i', # 0xa3

View file

@ -1,9 +1,9 @@
data = ( data = (
'[?]', # 0x00 None, # 0x00
'[?]', # 0x01 None, # 0x01
'[?]', # 0x02 None, # 0x02
'[?]', # 0x03 None, # 0x03
'[?]', # 0x04 None, # 0x04
'B', # 0x05 'B', # 0x05
'P', # 0x06 'P', # 0x06
'M', # 0x07 'M', # 0x07
@ -44,10 +44,10 @@ data = (
'V', # 0x2a 'V', # 0x2a
'NG', # 0x2b 'NG', # 0x2b
'GN', # 0x2c 'GN', # 0x2c
'[?]', # 0x2d None, # 0x2d
'[?]', # 0x2e None, # 0x2e
'[?]', # 0x2f None, # 0x2f
'[?]', # 0x30 None, # 0x30
'g', # 0x31 'g', # 0x31
'gg', # 0x32 'gg', # 0x32
'gs', # 0x33 'gs', # 0x33
@ -142,7 +142,7 @@ data = (
'yu-i', # 0x8c 'yu-i', # 0x8c
'U', # 0x8d 'U', # 0x8d
'U-i', # 0x8e 'U-i', # 0x8e
'[?]', # 0x8f None, # 0x8f
'', # 0x90 '', # 0x90
'', # 0x91 '', # 0x91
'', # 0x92 '', # 0x92
@ -183,75 +183,75 @@ data = (
'T', # 0xb5 'T', # 0xb5
'K', # 0xb6 'K', # 0xb6
'H', # 0xb7 'H', # 0xb7
'[?]', # 0xb8 None, # 0xb8
'[?]', # 0xb9 None, # 0xb9
'[?]', # 0xba None, # 0xba
'[?]', # 0xbb None, # 0xbb
'[?]', # 0xbc None, # 0xbc
'[?]', # 0xbd None, # 0xbd
'[?]', # 0xbe None, # 0xbe
'[?]', # 0xbf None, # 0xbf
'[?]', # 0xc0 None, # 0xc0
'[?]', # 0xc1 None, # 0xc1
'[?]', # 0xc2 None, # 0xc2
'[?]', # 0xc3 None, # 0xc3
'[?]', # 0xc4 None, # 0xc4
'[?]', # 0xc5 None, # 0xc5
'[?]', # 0xc6 None, # 0xc6
'[?]', # 0xc7 None, # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -28,9 +28,9 @@ data = (
'(pa)', # 0x1a '(pa)', # 0x1a
'(ha)', # 0x1b '(ha)', # 0x1b
'(ju)', # 0x1c '(ju)', # 0x1c
'[?]', # 0x1d None, # 0x1d
'[?]', # 0x1e None, # 0x1e
'[?]', # 0x1f None, # 0x1f
'(1) ', # 0x20 '(1) ', # 0x20
'(2) ', # 0x21 '(2) ', # 0x21
'(3) ', # 0x22 '(3) ', # 0x22
@ -67,19 +67,19 @@ data = (
'(Xiu) ', # 0x41 '(Xiu) ', # 0x41
'<<', # 0x42 '<<', # 0x42
'>>', # 0x43 '>>', # 0x43
'[?]', # 0x44 None, # 0x44
'[?]', # 0x45 None, # 0x45
'[?]', # 0x46 None, # 0x46
'[?]', # 0x47 None, # 0x47
'[?]', # 0x48 None, # 0x48
'[?]', # 0x49 None, # 0x49
'[?]', # 0x4a None, # 0x4a
'[?]', # 0x4b None, # 0x4b
'[?]', # 0x4c None, # 0x4c
'[?]', # 0x4d None, # 0x4d
'[?]', # 0x4e None, # 0x4e
'[?]', # 0x4f None, # 0x4f
'[?]', # 0x50 None, # 0x50
'21', # 0x51 '21', # 0x51
'22', # 0x52 '22', # 0x52
'23', # 0x53 '23', # 0x53
@ -123,9 +123,9 @@ data = (
'(ta)', # 0x79 '(ta)', # 0x79
'(pa)', # 0x7a '(pa)', # 0x7a
'(ha)', # 0x7b '(ha)', # 0x7b
'[?]', # 0x7c None, # 0x7c
'[?]', # 0x7d None, # 0x7d
'[?]', # 0x7e None, # 0x7e
'KIS ', # 0x7f 'KIS ', # 0x7f
'(1) ', # 0x80 '(1) ', # 0x80
'(2) ', # 0x81 '(2) ', # 0x81

View file

@ -1,257 +1,257 @@
data = ( data = (
'[?] ', # 0x00 None, # 0x00
'[?] ', # 0x01 None, # 0x01
'[?] ', # 0x02 None, # 0x02
'[?] ', # 0x03 None, # 0x03
'[?] ', # 0x04 None, # 0x04
'[?] ', # 0x05 None, # 0x05
'[?] ', # 0x06 None, # 0x06
'[?] ', # 0x07 None, # 0x07
'[?] ', # 0x08 None, # 0x08
'[?] ', # 0x09 None, # 0x09
'[?] ', # 0x0a None, # 0x0a
'[?] ', # 0x0b None, # 0x0b
'[?] ', # 0x0c None, # 0x0c
'[?] ', # 0x0d None, # 0x0d
'[?] ', # 0x0e None, # 0x0e
'[?] ', # 0x0f None, # 0x0f
'[?] ', # 0x10 None, # 0x10
'[?] ', # 0x11 None, # 0x11
'[?] ', # 0x12 None, # 0x12
'[?] ', # 0x13 None, # 0x13
'[?] ', # 0x14 None, # 0x14
'[?] ', # 0x15 None, # 0x15
'[?] ', # 0x16 None, # 0x16
'[?] ', # 0x17 None, # 0x17
'[?] ', # 0x18 None, # 0x18
'[?] ', # 0x19 None, # 0x19
'[?] ', # 0x1a None, # 0x1a
'[?] ', # 0x1b None, # 0x1b
'[?] ', # 0x1c None, # 0x1c
'[?] ', # 0x1d None, # 0x1d
'[?] ', # 0x1e None, # 0x1e
'[?] ', # 0x1f None, # 0x1f
'[?] ', # 0x20 None, # 0x20
'[?] ', # 0x21 None, # 0x21
'[?] ', # 0x22 None, # 0x22
'[?] ', # 0x23 None, # 0x23
'[?] ', # 0x24 None, # 0x24
'[?] ', # 0x25 None, # 0x25
'[?] ', # 0x26 None, # 0x26
'[?] ', # 0x27 None, # 0x27
'[?] ', # 0x28 None, # 0x28
'[?] ', # 0x29 None, # 0x29
'[?] ', # 0x2a None, # 0x2a
'[?] ', # 0x2b None, # 0x2b
'[?] ', # 0x2c None, # 0x2c
'[?] ', # 0x2d None, # 0x2d
'[?] ', # 0x2e None, # 0x2e
'[?] ', # 0x2f None, # 0x2f
'[?] ', # 0x30 None, # 0x30
'[?] ', # 0x31 None, # 0x31
'[?] ', # 0x32 None, # 0x32
'[?] ', # 0x33 None, # 0x33
'[?] ', # 0x34 None, # 0x34
'[?] ', # 0x35 None, # 0x35
'[?] ', # 0x36 None, # 0x36
'[?] ', # 0x37 None, # 0x37
'[?] ', # 0x38 None, # 0x38
'[?] ', # 0x39 None, # 0x39
'[?] ', # 0x3a None, # 0x3a
'[?] ', # 0x3b None, # 0x3b
'[?] ', # 0x3c None, # 0x3c
'[?] ', # 0x3d None, # 0x3d
'[?] ', # 0x3e None, # 0x3e
'[?] ', # 0x3f None, # 0x3f
'[?] ', # 0x40 None, # 0x40
'[?] ', # 0x41 None, # 0x41
'[?] ', # 0x42 None, # 0x42
'[?] ', # 0x43 None, # 0x43
'[?] ', # 0x44 None, # 0x44
'[?] ', # 0x45 None, # 0x45
'[?] ', # 0x46 None, # 0x46
'[?] ', # 0x47 None, # 0x47
'[?] ', # 0x48 None, # 0x48
'[?] ', # 0x49 None, # 0x49
'[?] ', # 0x4a None, # 0x4a
'[?] ', # 0x4b None, # 0x4b
'[?] ', # 0x4c None, # 0x4c
'[?] ', # 0x4d None, # 0x4d
'[?] ', # 0x4e None, # 0x4e
'[?] ', # 0x4f None, # 0x4f
'[?] ', # 0x50 None, # 0x50
'[?] ', # 0x51 None, # 0x51
'[?] ', # 0x52 None, # 0x52
'[?] ', # 0x53 None, # 0x53
'[?] ', # 0x54 None, # 0x54
'[?] ', # 0x55 None, # 0x55
'[?] ', # 0x56 None, # 0x56
'[?] ', # 0x57 None, # 0x57
'[?] ', # 0x58 None, # 0x58
'[?] ', # 0x59 None, # 0x59
'[?] ', # 0x5a None, # 0x5a
'[?] ', # 0x5b None, # 0x5b
'[?] ', # 0x5c None, # 0x5c
'[?] ', # 0x5d None, # 0x5d
'[?] ', # 0x5e None, # 0x5e
'[?] ', # 0x5f None, # 0x5f
'[?] ', # 0x60 None, # 0x60
'[?] ', # 0x61 None, # 0x61
'[?] ', # 0x62 None, # 0x62
'[?] ', # 0x63 None, # 0x63
'[?] ', # 0x64 None, # 0x64
'[?] ', # 0x65 None, # 0x65
'[?] ', # 0x66 None, # 0x66
'[?] ', # 0x67 None, # 0x67
'[?] ', # 0x68 None, # 0x68
'[?] ', # 0x69 None, # 0x69
'[?] ', # 0x6a None, # 0x6a
'[?] ', # 0x6b None, # 0x6b
'[?] ', # 0x6c None, # 0x6c
'[?] ', # 0x6d None, # 0x6d
'[?] ', # 0x6e None, # 0x6e
'[?] ', # 0x6f None, # 0x6f
'[?] ', # 0x70 None, # 0x70
'[?] ', # 0x71 None, # 0x71
'[?] ', # 0x72 None, # 0x72
'[?] ', # 0x73 None, # 0x73
'[?] ', # 0x74 None, # 0x74
'[?] ', # 0x75 None, # 0x75
'[?] ', # 0x76 None, # 0x76
'[?] ', # 0x77 None, # 0x77
'[?] ', # 0x78 None, # 0x78
'[?] ', # 0x79 None, # 0x79
'[?] ', # 0x7a None, # 0x7a
'[?] ', # 0x7b None, # 0x7b
'[?] ', # 0x7c None, # 0x7c
'[?] ', # 0x7d None, # 0x7d
'[?] ', # 0x7e None, # 0x7e
'[?] ', # 0x7f None, # 0x7f
'[?] ', # 0x80 None, # 0x80
'[?] ', # 0x81 None, # 0x81
'[?] ', # 0x82 None, # 0x82
'[?] ', # 0x83 None, # 0x83
'[?] ', # 0x84 None, # 0x84
'[?] ', # 0x85 None, # 0x85
'[?] ', # 0x86 None, # 0x86
'[?] ', # 0x87 None, # 0x87
'[?] ', # 0x88 None, # 0x88
'[?] ', # 0x89 None, # 0x89
'[?] ', # 0x8a None, # 0x8a
'[?] ', # 0x8b None, # 0x8b
'[?] ', # 0x8c None, # 0x8c
'[?] ', # 0x8d None, # 0x8d
'[?] ', # 0x8e None, # 0x8e
'[?] ', # 0x8f None, # 0x8f
'[?] ', # 0x90 None, # 0x90
'[?] ', # 0x91 None, # 0x91
'[?] ', # 0x92 None, # 0x92
'[?] ', # 0x93 None, # 0x93
'[?] ', # 0x94 None, # 0x94
'[?] ', # 0x95 None, # 0x95
'[?] ', # 0x96 None, # 0x96
'[?] ', # 0x97 None, # 0x97
'[?] ', # 0x98 None, # 0x98
'[?] ', # 0x99 None, # 0x99
'[?] ', # 0x9a None, # 0x9a
'[?] ', # 0x9b None, # 0x9b
'[?] ', # 0x9c None, # 0x9c
'[?] ', # 0x9d None, # 0x9d
'[?] ', # 0x9e None, # 0x9e
'[?] ', # 0x9f None, # 0x9f
'[?] ', # 0xa0 None, # 0xa0
'[?] ', # 0xa1 None, # 0xa1
'[?] ', # 0xa2 None, # 0xa2
'[?] ', # 0xa3 None, # 0xa3
'[?] ', # 0xa4 None, # 0xa4
'[?] ', # 0xa5 None, # 0xa5
'[?] ', # 0xa6 None, # 0xa6
'[?] ', # 0xa7 None, # 0xa7
'[?] ', # 0xa8 None, # 0xa8
'[?] ', # 0xa9 None, # 0xa9
'[?] ', # 0xaa None, # 0xaa
'[?] ', # 0xab None, # 0xab
'[?] ', # 0xac None, # 0xac
'[?] ', # 0xad None, # 0xad
'[?] ', # 0xae None, # 0xae
'[?] ', # 0xaf None, # 0xaf
'[?] ', # 0xb0 None, # 0xb0
'[?] ', # 0xb1 None, # 0xb1
'[?] ', # 0xb2 None, # 0xb2
'[?] ', # 0xb3 None, # 0xb3
'[?] ', # 0xb4 None, # 0xb4
'[?] ', # 0xb5 None, # 0xb5
'[?]', # 0xb6 None, # 0xb6
'[?]', # 0xb7 None, # 0xb7
'[?]', # 0xb8 None, # 0xb8
'[?]', # 0xb9 None, # 0xb9
'[?]', # 0xba None, # 0xba
'[?]', # 0xbb None, # 0xbb
'[?]', # 0xbc None, # 0xbc
'[?]', # 0xbd None, # 0xbd
'[?]', # 0xbe None, # 0xbe
'[?]', # 0xbf None, # 0xbf
'[?]', # 0xc0 None, # 0xc0
'[?]', # 0xc1 None, # 0xc1
'[?]', # 0xc2 None, # 0xc2
'[?]', # 0xc3 None, # 0xc3
'[?]', # 0xc4 None, # 0xc4
'[?]', # 0xc5 None, # 0xc5
'[?]', # 0xc6 None, # 0xc6
'[?]', # 0xc7 None, # 0xc7
'[?]', # 0xc8 None, # 0xc8
'[?]', # 0xc9 None, # 0xc9
'[?]', # 0xca None, # 0xca
'[?]', # 0xcb None, # 0xcb
'[?]', # 0xcc None, # 0xcc
'[?]', # 0xcd None, # 0xcd
'[?]', # 0xce None, # 0xce
'[?]', # 0xcf None, # 0xcf
'[?]', # 0xd0 None, # 0xd0
'[?]', # 0xd1 None, # 0xd1
'[?]', # 0xd2 None, # 0xd2
'[?]', # 0xd3 None, # 0xd3
'[?]', # 0xd4 None, # 0xd4
'[?]', # 0xd5 None, # 0xd5
'[?]', # 0xd6 None, # 0xd6
'[?]', # 0xd7 None, # 0xd7
'[?]', # 0xd8 None, # 0xd8
'[?]', # 0xd9 None, # 0xd9
'[?]', # 0xda None, # 0xda
'[?]', # 0xdb None, # 0xdb
'[?]', # 0xdc None, # 0xdc
'[?]', # 0xdd None, # 0xdd
'[?]', # 0xde None, # 0xde
'[?]', # 0xdf None, # 0xdf
'[?]', # 0xe0 None, # 0xe0
'[?]', # 0xe1 None, # 0xe1
'[?]', # 0xe2 None, # 0xe2
'[?]', # 0xe3 None, # 0xe3
'[?]', # 0xe4 None, # 0xe4
'[?]', # 0xe5 None, # 0xe5
'[?]', # 0xe6 None, # 0xe6
'[?]', # 0xe7 None, # 0xe7
'[?]', # 0xe8 None, # 0xe8
'[?]', # 0xe9 None, # 0xe9
'[?]', # 0xea None, # 0xea
'[?]', # 0xeb None, # 0xeb
'[?]', # 0xec None, # 0xec
'[?]', # 0xed None, # 0xed
'[?]', # 0xee None, # 0xee
'[?]', # 0xef None, # 0xef
'[?]', # 0xf0 None, # 0xf0
'[?]', # 0xf1 None, # 0xf1
'[?]', # 0xf2 None, # 0xf2
'[?]', # 0xf3 None, # 0xf3
'[?]', # 0xf4 None, # 0xf4
'[?]', # 0xf5 None, # 0xf5
'[?]', # 0xf6 None, # 0xf6
'[?]', # 0xf7 None, # 0xf7
'[?]', # 0xf8 None, # 0xf8
'[?]', # 0xf9 None, # 0xf9
'[?]', # 0xfa None, # 0xfa
'[?]', # 0xfb None, # 0xfb
'[?]', # 0xfc None, # 0xfc
'[?]', # 0xfd None, # 0xfd
'[?]', # 0xfe None, # 0xfe
) )

View file

@ -5,7 +5,7 @@ data = (
'Qi ', # 0x03 'Qi ', # 0x03
'Shang ', # 0x04 'Shang ', # 0x04
'Xia ', # 0x05 'Xia ', # 0x05
'[?] ', # 0x06 None, # 0x06
'Mo ', # 0x07 'Mo ', # 0x07
'Zhang ', # 0x08 'Zhang ', # 0x08
'San ', # 0x09 'San ', # 0x09
@ -73,7 +73,7 @@ data = (
'Zhe ', # 0x47 'Zhe ', # 0x47
'Yao ', # 0x48 'Yao ', # 0x48
'Yi ', # 0x49 'Yi ', # 0x49
'[?] ', # 0x4a None, # 0x4a
'Zhi ', # 0x4b 'Zhi ', # 0x4b
'Wu ', # 0x4c 'Wu ', # 0x4c
'Zha ', # 0x4d 'Zha ', # 0x4d
@ -90,7 +90,7 @@ data = (
'Cheng ', # 0x58 'Cheng ', # 0x58
'Yi ', # 0x59 'Yi ', # 0x59
'Yin ', # 0x5a 'Yin ', # 0x5a
'[?] ', # 0x5b None, # 0x5b
'Mie ', # 0x5c 'Mie ', # 0x5c
'Jiu ', # 0x5d 'Jiu ', # 0x5d
'Qi ', # 0x5e 'Qi ', # 0x5e
@ -100,7 +100,7 @@ data = (
'Gai ', # 0x62 'Gai ', # 0x62
'Diu ', # 0x63 'Diu ', # 0x63
'Hal ', # 0x64 'Hal ', # 0x64
'[?] ', # 0x65 None, # 0x65
'Shu ', # 0x66 'Shu ', # 0x66
'Twul ', # 0x67 'Twul ', # 0x67
'Shi ', # 0x68 'Shi ', # 0x68
@ -109,7 +109,7 @@ data = (
'Jia ', # 0x6b 'Jia ', # 0x6b
'Kel ', # 0x6c 'Kel ', # 0x6c
'Shi ', # 0x6d 'Shi ', # 0x6d
'[?] ', # 0x6e None, # 0x6e
'Ol ', # 0x6f 'Ol ', # 0x6f
'Mai ', # 0x70 'Mai ', # 0x70
'Luan ', # 0x71 'Luan ', # 0x71
@ -124,7 +124,7 @@ data = (
'Sol ', # 0x7a 'Sol ', # 0x7a
'El ', # 0x7b 'El ', # 0x7b
'Cwul ', # 0x7c 'Cwul ', # 0x7c
'[?] ', # 0x7d None, # 0x7d
'Gan ', # 0x7e 'Gan ', # 0x7e
'Chi ', # 0x7f 'Chi ', # 0x7f
'Gui ', # 0x80 'Gui ', # 0x80
@ -169,7 +169,7 @@ data = (
'Chan ', # 0xa7 'Chan ', # 0xa7
'Heng ', # 0xa8 'Heng ', # 0xa8
'Mu ', # 0xa9 'Mu ', # 0xa9
'[?] ', # 0xaa None, # 0xaa
'Xiang ', # 0xab 'Xiang ', # 0xab
'Jing ', # 0xac 'Jing ', # 0xac
'Ting ', # 0xad 'Ting ', # 0xad
@ -232,7 +232,7 @@ data = (
'Chao ', # 0xe6 'Chao ', # 0xe6
'Chang ', # 0xe7 'Chang ', # 0xe7
'Sa ', # 0xe8 'Sa ', # 0xe8
'[?] ', # 0xe9 None, # 0xe9
'Yi ', # 0xea 'Yi ', # 0xea
'Mu ', # 0xeb 'Mu ', # 0xeb
'Men ', # 0xec 'Men ', # 0xec

View file

@ -43,7 +43,7 @@ data = (
'Xin ', # 0x29 'Xin ', # 0x29
'Wei ', # 0x2a 'Wei ', # 0x2a
'Zhu ', # 0x2b 'Zhu ', # 0x2b
'[?] ', # 0x2c None, # 0x2c
'Xuan ', # 0x2d 'Xuan ', # 0x2d
'Nu ', # 0x2e 'Nu ', # 0x2e
'Bo ', # 0x2f 'Bo ', # 0x2f
@ -101,9 +101,9 @@ data = (
'Yong ', # 0x63 'Yong ', # 0x63
'Wa ', # 0x64 'Wa ', # 0x64
'Qian ', # 0x65 'Qian ', # 0x65
'[?] ', # 0x66 None, # 0x66
'Ka ', # 0x67 'Ka ', # 0x67
'[?] ', # 0x68 None, # 0x68
'Pei ', # 0x69 'Pei ', # 0x69
'Huai ', # 0x6a 'Huai ', # 0x6a
'He ', # 0x6b 'He ', # 0x6b
@ -230,12 +230,12 @@ data = (
'Ti ', # 0xe4 'Ti ', # 0xe4
'Che ', # 0xe5 'Che ', # 0xe5
'Chou ', # 0xe6 'Chou ', # 0xe6
'[?] ', # 0xe7 None, # 0xe7
'Yan ', # 0xe8 'Yan ', # 0xe8
'Lia ', # 0xe9 'Lia ', # 0xe9
'Li ', # 0xea 'Li ', # 0xea
'Lai ', # 0xeb 'Lai ', # 0xeb
'[?] ', # 0xec None, # 0xec
'Jian ', # 0xed 'Jian ', # 0xed
'Xiu ', # 0xee 'Xiu ', # 0xee
'Fu ', # 0xef 'Fu ', # 0xef

View file

@ -62,7 +62,7 @@ data = (
'Zhi ', # 0x3c 'Zhi ', # 0x3c
'Sha ', # 0x3d 'Sha ', # 0x3d
'Qing ', # 0x3e 'Qing ', # 0x3e
'[?] ', # 0x3f None, # 0x3f
'Ying ', # 0x40 'Ying ', # 0x40
'Cheng ', # 0x41 'Cheng ', # 0x41
'Jian ', # 0x42 'Jian ', # 0x42
@ -165,7 +165,7 @@ data = (
'Dai ', # 0xa3 'Dai ', # 0xa3
'Zai ', # 0xa4 'Zai ', # 0xa4
'Tang ', # 0xa5 'Tang ', # 0xa5
'[?] ', # 0xa6 None, # 0xa6
'Bin ', # 0xa7 'Bin ', # 0xa7
'Chu ', # 0xa8 'Chu ', # 0xa8
'Nuo ', # 0xa9 'Nuo ', # 0xa9
@ -241,7 +241,7 @@ data = (
'Lin ', # 0xef 'Lin ', # 0xef
'Bo ', # 0xf0 'Bo ', # 0xf0
'Gu ', # 0xf1 'Gu ', # 0xf1
'[?] ', # 0xf2 None, # 0xf2
'Su ', # 0xf3 'Su ', # 0xf3
'Xian ', # 0xf4 'Xian ', # 0xf4
'Jiang ', # 0xf5 'Jiang ', # 0xf5

View file

@ -14,7 +14,7 @@ data = (
'Jiao ', # 0x0c 'Jiao ', # 0x0c
'Sha ', # 0x0d 'Sha ', # 0x0d
'Zai ', # 0x0e 'Zai ', # 0x0e
'[?] ', # 0x0f None, # 0x0f
'Bin ', # 0x10 'Bin ', # 0x10
'An ', # 0x11 'An ', # 0x11
'Ru ', # 0x12 'Ru ', # 0x12
@ -110,7 +110,7 @@ data = (
'Gong ', # 0x6c 'Gong ', # 0x6c
'Liu ', # 0x6d 'Liu ', # 0x6d
'Xi ', # 0x6e 'Xi ', # 0x6e
'[?] ', # 0x6f None, # 0x6f
'Lan ', # 0x70 'Lan ', # 0x70
'Gong ', # 0x71 'Gong ', # 0x71
'Tian ', # 0x72 'Tian ', # 0x72

View file

@ -6,7 +6,7 @@ data = (
'Gai ', # 0x04 'Gai ', # 0x04
'Bao ', # 0x05 'Bao ', # 0x05
'Cong ', # 0x06 'Cong ', # 0x06
'[?] ', # 0x07 None, # 0x07
'Xiong ', # 0x08 'Xiong ', # 0x08
'Peng ', # 0x09 'Peng ', # 0x09
'Ju ', # 0x0a 'Ju ', # 0x0a
@ -128,7 +128,7 @@ data = (
'E ', # 0x7e 'E ', # 0x7e
'Qing ', # 0x7f 'Qing ', # 0x7f
'Xi ', # 0x80 'Xi ', # 0x80
'[?] ', # 0x81 None, # 0x81
'Han ', # 0x82 'Han ', # 0x82
'Zhan ', # 0x83 'Zhan ', # 0x83
'E ', # 0x84 'E ', # 0x84
@ -144,7 +144,7 @@ data = (
'Zhi ', # 0x8e 'Zhi ', # 0x8e
'Zha ', # 0x8f 'Zha ', # 0x8f
'Pang ', # 0x90 'Pang ', # 0x90
'[?] ', # 0x91 None, # 0x91
'He ', # 0x92 'He ', # 0x92
'Ya ', # 0x93 'Ya ', # 0x93
'Zhi ', # 0x94 'Zhi ', # 0x94
@ -253,6 +253,6 @@ data = (
'Le ', # 0xfb 'Le ', # 0xfb
'Diao ', # 0xfc 'Diao ', # 0xfc
'Ji ', # 0xfd 'Ji ', # 0xfd
'[?] ', # 0xfe None, # 0xfe
'Hong ', # 0xff 'Hong ', # 0xff
) )

View file

@ -89,7 +89,7 @@ data = (
'Bai ', # 0x57 'Bai ', # 0x57
'Yuan ', # 0x58 'Yuan ', # 0x58
'Kuai ', # 0x59 'Kuai ', # 0x59
'[?] ', # 0x5a None, # 0x5a
'Qiang ', # 0x5b 'Qiang ', # 0x5b
'Wu ', # 0x5c 'Wu ', # 0x5c
'E ', # 0x5d 'E ', # 0x5d
@ -213,12 +213,12 @@ data = (
'Xiao ', # 0xd3 'Xiao ', # 0xd3
'Bi ', # 0xd4 'Bi ', # 0xd4
'Yue ', # 0xd5 'Yue ', # 0xd5
'[?] ', # 0xd6 None, # 0xd6
'Hua ', # 0xd7 'Hua ', # 0xd7
'Sasou ', # 0xd8 'Sasou ', # 0xd8
'Kuai ', # 0xd9 'Kuai ', # 0xd9
'Duo ', # 0xda 'Duo ', # 0xda
'[?] ', # 0xdb None, # 0xdb
'Ji ', # 0xdc 'Ji ', # 0xdc
'Nong ', # 0xdd 'Nong ', # 0xdd
'Mou ', # 0xde 'Mou ', # 0xde

View file

@ -120,7 +120,7 @@ data = (
'Ding ', # 0x76 'Ding ', # 0x76
'Lang ', # 0x77 'Lang ', # 0x77
'Xiao ', # 0x78 'Xiao ', # 0x78
'[?] ', # 0x79 None, # 0x79
'Tang ', # 0x7a 'Tang ', # 0x7a
'Chi ', # 0x7b 'Chi ', # 0x7b
'Ti ', # 0x7c 'Ti ', # 0x7c
@ -243,7 +243,7 @@ data = (
'Na ', # 0xf1 'Na ', # 0xf1
'Dia ', # 0xf2 'Dia ', # 0xf2
'Ai ', # 0xf3 'Ai ', # 0xf3
'[?] ', # 0xf4 None, # 0xf4
'Tong ', # 0xf5 'Tong ', # 0xf5
'Bi ', # 0xf6 'Bi ', # 0xf6
'Ao ', # 0xf7 'Ao ', # 0xf7

View file

@ -144,8 +144,8 @@ data = (
'Hao ', # 0x8e 'Hao ', # 0x8e
'Ti ', # 0x8f 'Ti ', # 0x8f
'Chang ', # 0x90 'Chang ', # 0x90
'[?] ', # 0x91 None, # 0x91
'[?] ', # 0x92 None, # 0x92
'Ca ', # 0x93 'Ca ', # 0x93
'Ti ', # 0x94 'Ti ', # 0x94
'Lu ', # 0x95 'Lu ', # 0x95
@ -212,8 +212,8 @@ data = (
'Lan ', # 0xd2 'Lan ', # 0xd2
'Nie ', # 0xd3 'Nie ', # 0xd3
'Nang ', # 0xd4 'Nang ', # 0xd4
'[?] ', # 0xd5 None, # 0xd5
'[?] ', # 0xd6 None, # 0xd6
'Wei ', # 0xd7 'Wei ', # 0xd7
'Hui ', # 0xd8 'Hui ', # 0xd8
'Yin ', # 0xd9 'Yin ', # 0xd9

View file

@ -137,7 +137,7 @@ data = (
'Ao ', # 0x87 'Ao ', # 0x87
'Tay ', # 0x88 'Tay ', # 0x88
'Pao ', # 0x89 'Pao ', # 0x89
'[?] ', # 0x8a None, # 0x8a
'Xing ', # 0x8b 'Xing ', # 0x8b
'Dong ', # 0x8c 'Dong ', # 0x8c
'Ji ', # 0x8d 'Ji ', # 0x8d
@ -174,7 +174,7 @@ data = (
'Hong ', # 0xac 'Hong ', # 0xac
'Wu ', # 0xad 'Wu ', # 0xad
'Kua ', # 0xae 'Kua ', # 0xae
'[?] ', # 0xaf None, # 0xaf
'Tao ', # 0xb0 'Tao ', # 0xb0
'Dang ', # 0xb1 'Dang ', # 0xb1
'Kai ', # 0xb2 'Kai ', # 0xb2

View file

@ -14,12 +14,12 @@ data = (
'Gu ', # 0x0c 'Gu ', # 0x0c
'Tu ', # 0x0d 'Tu ', # 0x0d
'Leng ', # 0x0e 'Leng ', # 0x0e
'[?] ', # 0x0f None, # 0x0f
'Ya ', # 0x10 'Ya ', # 0x10
'Qian ', # 0x11 'Qian ', # 0x11
'[?] ', # 0x12 None, # 0x12
'An ', # 0x13 'An ', # 0x13
'[?] ', # 0x14 None, # 0x14
'Duo ', # 0x15 'Duo ', # 0x15
'Nao ', # 0x16 'Nao ', # 0x16
'Tu ', # 0x17 'Tu ', # 0x17
@ -69,7 +69,7 @@ data = (
'Huang ', # 0x43 'Huang ', # 0x43
'Leng ', # 0x44 'Leng ', # 0x44
'Duan ', # 0x45 'Duan ', # 0x45
'[?] ', # 0x46 None, # 0x46
'Xuan ', # 0x47 'Xuan ', # 0x47
'Ji ', # 0x48 'Ji ', # 0x48
'Ji ', # 0x49 'Ji ', # 0x49
@ -154,7 +154,7 @@ data = (
'Qi ', # 0x98 'Qi ', # 0x98
'Qiang ', # 0x99 'Qiang ', # 0x99
'Liang ', # 0x9a 'Liang ', # 0x9a
'[?] ', # 0x9b None, # 0x9b
'Zhui ', # 0x9c 'Zhui ', # 0x9c
'Qiao ', # 0x9d 'Qiao ', # 0x9d
'Zeng ', # 0x9e 'Zeng ', # 0x9e
@ -233,10 +233,10 @@ data = (
'Yan ', # 0xe7 'Yan ', # 0xe7
'Lei ', # 0xe8 'Lei ', # 0xe8
'Ba ', # 0xe9 'Ba ', # 0xe9
'[?] ', # 0xea None, # 0xea
'Shi ', # 0xeb 'Shi ', # 0xeb
'Ren ', # 0xec 'Ren ', # 0xec
'[?] ', # 0xed None, # 0xed
'Zhuang ', # 0xee 'Zhuang ', # 0xee
'Zhuang ', # 0xef 'Zhuang ', # 0xef
'Sheng ', # 0xf0 'Sheng ', # 0xf0

View file

@ -16,7 +16,7 @@ data = (
'Zuo ', # 0x0e 'Zuo ', # 0x0e
'Xia ', # 0x0f 'Xia ', # 0x0f
'Xiong ', # 0x10 'Xiong ', # 0x10
'[?] ', # 0x11 None, # 0x11
'Nao ', # 0x12 'Nao ', # 0x12
'Xia ', # 0x13 'Xia ', # 0x13
'Kui ', # 0x14 'Kui ', # 0x14
@ -76,7 +76,7 @@ data = (
'Xie ', # 0x4a 'Xie ', # 0x4a
'Fen ', # 0x4b 'Fen ', # 0x4b
'Dian ', # 0x4c 'Dian ', # 0x4c
'[?] ', # 0x4d None, # 0x4d
'Kui ', # 0x4e 'Kui ', # 0x4e
'Zou ', # 0x4f 'Zou ', # 0x4f
'Huan ', # 0x50 'Huan ', # 0x50

View file

@ -50,7 +50,7 @@ data = (
'Si ', # 0x30 'Si ', # 0x30
'Yu ', # 0x31 'Yu ', # 0x31
'Wa ', # 0x32 'Wa ', # 0x32
'[?] ', # 0x33 None, # 0x33
'Xian ', # 0x34 'Xian ', # 0x34
'Ju ', # 0x35 'Ju ', # 0x35
'Qu ', # 0x36 'Qu ', # 0x36
@ -170,7 +170,7 @@ data = (
'Jiu ', # 0xa8 'Jiu ', # 0xa8
'Hu ', # 0xa9 'Hu ', # 0xa9
'Ao ', # 0xaa 'Ao ', # 0xaa
'[?] ', # 0xab None, # 0xab
'Bou ', # 0xac 'Bou ', # 0xac
'Xu ', # 0xad 'Xu ', # 0xad
'Tou ', # 0xae 'Tou ', # 0xae

View file

@ -102,7 +102,7 @@ data = (
'Gu ', # 0x64 'Gu ', # 0x64
'Nu ', # 0x65 'Nu ', # 0x65
'Xue ', # 0x66 'Xue ', # 0x66
'[?] ', # 0x67 None, # 0x67
'Zhuan ', # 0x68 'Zhuan ', # 0x68
'Hai ', # 0x69 'Hai ', # 0x69
'Luan ', # 0x6a 'Luan ', # 0x6a

View file

@ -32,7 +32,7 @@ data = (
'Liao ', # 0x1e 'Liao ', # 0x1e
'Xian ', # 0x1f 'Xian ', # 0x1f
'Xian ', # 0x20 'Xian ', # 0x20
'[?] ', # 0x21 None, # 0x21
'Wang ', # 0x22 'Wang ', # 0x22
'Wang ', # 0x23 'Wang ', # 0x23
'You ', # 0x24 'You ', # 0x24
@ -86,7 +86,7 @@ data = (
'Ni ', # 0x54 'Ni ', # 0x54
'Zhan ', # 0x55 'Zhan ', # 0x55
'Xi ', # 0x56 'Xi ', # 0x56
'[?] ', # 0x57 None, # 0x57
'Man ', # 0x58 'Man ', # 0x58
'E ', # 0x59 'E ', # 0x59
'Lou ', # 0x5a 'Lou ', # 0x5a
@ -113,12 +113,12 @@ data = (
'Tun ', # 0x6f 'Tun ', # 0x6f
'Ni ', # 0x70 'Ni ', # 0x70
'Shan ', # 0x71 'Shan ', # 0x71
'[?] ', # 0x72 None, # 0x72
'Xian ', # 0x73 'Xian ', # 0x73
'Li ', # 0x74 'Li ', # 0x74
'Xue ', # 0x75 'Xue ', # 0x75
'Nata ', # 0x76 'Nata ', # 0x76
'[?] ', # 0x77 None, # 0x77
'Long ', # 0x78 'Long ', # 0x78
'Yi ', # 0x79 'Yi ', # 0x79
'Qi ', # 0x7a 'Qi ', # 0x7a
@ -130,7 +130,7 @@ data = (
'Chu ', # 0x80 'Chu ', # 0x80
'Sui ', # 0x81 'Sui ', # 0x81
'Qi ', # 0x82 'Qi ', # 0x82
'[?] ', # 0x83 None, # 0x83
'Yue ', # 0x84 'Yue ', # 0x84
'Ban ', # 0x85 'Ban ', # 0x85
'Yao ', # 0x86 'Yao ', # 0x86

View file

@ -47,7 +47,7 @@ data = (
'Zhan ', # 0x2d 'Zhan ', # 0x2d
'Gu ', # 0x2e 'Gu ', # 0x2e
'Yin ', # 0x2f 'Yin ', # 0x2f
'[?] ', # 0x30 None, # 0x30
'Ze ', # 0x31 'Ze ', # 0x31
'Huang ', # 0x32 'Huang ', # 0x32
'Yu ', # 0x33 'Yu ', # 0x33
@ -116,7 +116,7 @@ data = (
'Nie ', # 0x72 'Nie ', # 0x72
'Cuo ', # 0x73 'Cuo ', # 0x73
'Ji ', # 0x74 'Ji ', # 0x74
'[?] ', # 0x75 None, # 0x75
'Tao ', # 0x76 'Tao ', # 0x76
'Song ', # 0x77 'Song ', # 0x77
'Zong ', # 0x78 'Zong ', # 0x78
@ -181,7 +181,7 @@ data = (
'Di ', # 0xb3 'Di ', # 0xb3
'Ao ', # 0xb4 'Ao ', # 0xb4
'Zui ', # 0xb5 'Zui ', # 0xb5
'[?] ', # 0xb6 None, # 0xb6
'Ni ', # 0xb7 'Ni ', # 0xb7
'Rong ', # 0xb8 'Rong ', # 0xb8
'Dao ', # 0xb9 'Dao ', # 0xb9
@ -190,7 +190,7 @@ data = (
'Yu ', # 0xbc 'Yu ', # 0xbc
'Yue ', # 0xbd 'Yue ', # 0xbd
'Yin ', # 0xbe 'Yin ', # 0xbe
'[?] ', # 0xbf None, # 0xbf
'Jie ', # 0xc0 'Jie ', # 0xc0
'Li ', # 0xc1 'Li ', # 0xc1
'Sui ', # 0xc2 'Sui ', # 0xc2
@ -212,7 +212,7 @@ data = (
'Luan ', # 0xd2 'Luan ', # 0xd2
'Dian ', # 0xd3 'Dian ', # 0xd3
'Dian ', # 0xd4 'Dian ', # 0xd4
'[?] ', # 0xd5 None, # 0xd5
'Yan ', # 0xd6 'Yan ', # 0xd6
'Yan ', # 0xd7 'Yan ', # 0xd7
'Yan ', # 0xd8 'Yan ', # 0xd8

View file

@ -100,7 +100,7 @@ data = (
'Chuang ', # 0x62 'Chuang ', # 0x62
'Bi ', # 0x63 'Bi ', # 0x63
'Hei ', # 0x64 'Hei ', # 0x64
'[?] ', # 0x65 None, # 0x65
'Mi ', # 0x66 'Mi ', # 0x66
'Qiao ', # 0x67 'Qiao ', # 0x67
'Chan ', # 0x68 'Chan ', # 0x68
@ -145,7 +145,7 @@ data = (
'Xu ', # 0x8f 'Xu ', # 0x8f
'Lu ', # 0x90 'Lu ', # 0x90
'Wu ', # 0x91 'Wu ', # 0x91
'[?] ', # 0x92 None, # 0x92
'Ku ', # 0x93 'Ku ', # 0x93
'Ying ', # 0x94 'Ying ', # 0x94
'Di ', # 0x95 'Di ', # 0x95
@ -236,7 +236,7 @@ data = (
'Lin ', # 0xea 'Lin ', # 0xea
'Liao ', # 0xeb 'Liao ', # 0xeb
'Lu ', # 0xec 'Lu ', # 0xec
'[?] ', # 0xed None, # 0xed
'Ying ', # 0xee 'Ying ', # 0xee
'Xian ', # 0xef 'Xian ', # 0xef
'Ting ', # 0xf0 'Ting ', # 0xf0

View file

@ -147,13 +147,13 @@ data = (
'Jing ', # 0x91 'Jing ', # 0x91
'Tu ', # 0x92 'Tu ', # 0x92
'Cong ', # 0x93 'Cong ', # 0x93
'[?] ', # 0x94 None, # 0x94
'Lai ', # 0x95 'Lai ', # 0x95
'Cong ', # 0x96 'Cong ', # 0x96
'De ', # 0x97 'De ', # 0x97
'Pai ', # 0x98 'Pai ', # 0x98
'Xi ', # 0x99 'Xi ', # 0x99
'[?] ', # 0x9a None, # 0x9a
'Qi ', # 0x9b 'Qi ', # 0x9b
'Chang ', # 0x9c 'Chang ', # 0x9c
'Zhi ', # 0x9d 'Zhi ', # 0x9d

View file

@ -60,7 +60,7 @@ data = (
'Koraeru ', # 0x3a 'Koraeru ', # 0x3a
'Zong ', # 0x3b 'Zong ', # 0x3b
'Dui ', # 0x3c 'Dui ', # 0x3c
'[?] ', # 0x3d None, # 0x3d
'Ki ', # 0x3e 'Ki ', # 0x3e
'Yi ', # 0x3f 'Yi ', # 0x3f
'Chi ', # 0x40 'Chi ', # 0x40

View file

@ -36,7 +36,7 @@ data = (
'Sai ', # 0x22 'Sai ', # 0x22
'Leng ', # 0x23 'Leng ', # 0x23
'Fen ', # 0x24 'Fen ', # 0x24
'[?] ', # 0x25 None, # 0x25
'Kui ', # 0x26 'Kui ', # 0x26
'Kui ', # 0x27 'Kui ', # 0x27
'Que ', # 0x28 'Que ', # 0x28
@ -79,7 +79,7 @@ data = (
'Yun ', # 0x4d 'Yun ', # 0x4d
'Shen ', # 0x4e 'Shen ', # 0x4e
'Ming ', # 0x4f 'Ming ', # 0x4f
'[?] ', # 0x50 None, # 0x50
'She ', # 0x51 'She ', # 0x51
'Cong ', # 0x52 'Cong ', # 0x52
'Piao ', # 0x53 'Piao ', # 0x53
@ -242,7 +242,7 @@ data = (
'Liu ', # 0xf0 'Liu ', # 0xf0
'Mie ', # 0xf1 'Mie ', # 0xf1
'Cheng ', # 0xf2 'Cheng ', # 0xf2
'[?] ', # 0xf3 None, # 0xf3
'Chan ', # 0xf4 'Chan ', # 0xf4
'Meng ', # 0xf5 'Meng ', # 0xf5
'Lan ', # 0xf6 'Lan ', # 0xf6

View file

@ -162,7 +162,7 @@ data = (
'Kou ', # 0xa0 'Kou ', # 0xa0
'Lun ', # 0xa1 'Lun ', # 0xa1
'Qiang ', # 0xa2 'Qiang ', # 0xa2
'[?] ', # 0xa3 None, # 0xa3
'Hu ', # 0xa4 'Hu ', # 0xa4
'Bao ', # 0xa5 'Bao ', # 0xa5
'Bing ', # 0xa6 'Bing ', # 0xa6
@ -227,7 +227,7 @@ data = (
'Kuo ', # 0xe1 'Kuo ', # 0xe1
'Long ', # 0xe2 'Long ', # 0xe2
'Jian ', # 0xe3 'Jian ', # 0xe3
'[?] ', # 0xe4 None, # 0xe4
'Yong ', # 0xe5 'Yong ', # 0xe5
'Lan ', # 0xe6 'Lan ', # 0xe6
'Ning ', # 0xe7 'Ning ', # 0xe7

View file

@ -99,7 +99,7 @@ data = (
'Jian ', # 0x61 'Jian ', # 0x61
'Huan ', # 0x62 'Huan ', # 0x62
'Dao ', # 0x63 'Dao ', # 0x63
'[?] ', # 0x64 None, # 0x64
'Wan ', # 0x65 'Wan ', # 0x65
'Qin ', # 0x66 'Qin ', # 0x66
'Peng ', # 0x67 'Peng ', # 0x67
@ -181,7 +181,7 @@ data = (
'Lu ', # 0xb3 'Lu ', # 0xb3
'Guo ', # 0xb4 'Guo ', # 0xb4
'Haba ', # 0xb5 'Haba ', # 0xb5
'[?] ', # 0xb6 None, # 0xb6
'Zhi ', # 0xb7 'Zhi ', # 0xb7
'Dan ', # 0xb8 'Dan ', # 0xb8
'Mang ', # 0xb9 'Mang ', # 0xb9
@ -250,8 +250,8 @@ data = (
'Zha ', # 0xf8 'Zha ', # 0xf8
'Bei ', # 0xf9 'Bei ', # 0xf9
'Yao ', # 0xfa 'Yao ', # 0xfa
'[?] ', # 0xfb None, # 0xfb
'[?] ', # 0xfc None, # 0xfc
'Lan ', # 0xfd 'Lan ', # 0xfd
'Wen ', # 0xfe 'Wen ', # 0xfe
'Qin ', # 0xff 'Qin ', # 0xff

View file

@ -181,7 +181,7 @@ data = (
'Qin ', # 0xb3 'Qin ', # 0xb3
'Dun ', # 0xb4 'Dun ', # 0xb4
'Nian ', # 0xb5 'Nian ', # 0xb5
'[?] ', # 0xb6 None, # 0xb6
'Xie ', # 0xb7 'Xie ', # 0xb7
'Lu ', # 0xb8 'Lu ', # 0xb8
'Jiao ', # 0xb9 'Jiao ', # 0xb9
@ -219,7 +219,7 @@ data = (
'Ao ', # 0xd9 'Ao ', # 0xd9
'Ju ', # 0xda 'Ju ', # 0xda
'Ye ', # 0xdb 'Ye ', # 0xdb
'[?] ', # 0xdc None, # 0xdc
'Mang ', # 0xdd 'Mang ', # 0xdd
'Sou ', # 0xde 'Sou ', # 0xde
'Mi ', # 0xdf 'Mi ', # 0xdf

View file

@ -25,7 +25,7 @@ data = (
'Mei ', # 0x17 'Mei ', # 0x17
'Rang ', # 0x18 'Rang ', # 0x18
'Chan ', # 0x19 'Chan ', # 0x19
'[?] ', # 0x1a None, # 0x1a
'Cuan ', # 0x1b 'Cuan ', # 0x1b
'Xi ', # 0x1c 'Xi ', # 0x1c
'She ', # 0x1d 'She ', # 0x1d
@ -142,7 +142,7 @@ data = (
'Bin ', # 0x8c 'Bin ', # 0x8c
'Jue ', # 0x8d 'Jue ', # 0x8d
'Zhai ', # 0x8e 'Zhai ', # 0x8e
'[?] ', # 0x8f None, # 0x8f
'Fei ', # 0x90 'Fei ', # 0x90
'Ban ', # 0x91 'Ban ', # 0x91
'Ban ', # 0x92 'Ban ', # 0x92

View file

@ -225,7 +225,7 @@ data = (
'Chen ', # 0xdf 'Chen ', # 0xdf
'Kuang ', # 0xe0 'Kuang ', # 0xe0
'Die ', # 0xe1 'Die ', # 0xe1
'[?] ', # 0xe2 None, # 0xe2
'Yan ', # 0xe3 'Yan ', # 0xe3
'Huo ', # 0xe4 'Huo ', # 0xe4
'Lu ', # 0xe5 'Lu ', # 0xe5

View file

@ -16,7 +16,7 @@ data = (
'Ling ', # 0x0e 'Ling ', # 0x0e
'Fei ', # 0x0f 'Fei ', # 0x0f
'Qu ', # 0x10 'Qu ', # 0x10
'[?] ', # 0x11 None, # 0x11
'Nu ', # 0x12 'Nu ', # 0x12
'Tiao ', # 0x13 'Tiao ', # 0x13
'Shuo ', # 0x14 'Shuo ', # 0x14
@ -36,7 +36,7 @@ data = (
'Wang ', # 0x22 'Wang ', # 0x22
'Tong ', # 0x23 'Tong ', # 0x23
'Lang ', # 0x24 'Lang ', # 0x24
'[?] ', # 0x25 None, # 0x25
'Meng ', # 0x26 'Meng ', # 0x26
'Long ', # 0x27 'Long ', # 0x27
'Mu ', # 0x28 'Mu ', # 0x28
@ -47,7 +47,7 @@ data = (
'Zha ', # 0x2d 'Zha ', # 0x2d
'Zhu ', # 0x2e 'Zhu ', # 0x2e
'Zhu ', # 0x2f 'Zhu ', # 0x2f
'[?] ', # 0x30 None, # 0x30
'Zhu ', # 0x31 'Zhu ', # 0x31
'Ren ', # 0x32 'Ren ', # 0x32
'Ba ', # 0x33 'Ba ', # 0x33
@ -163,7 +163,7 @@ data = (
'Dou ', # 0xa1 'Dou ', # 0xa1
'Shu ', # 0xa2 'Shu ', # 0xa2
'Zao ', # 0xa3 'Zao ', # 0xa3
'[?] ', # 0xa4 None, # 0xa4
'Li ', # 0xa5 'Li ', # 0xa5
'Haze ', # 0xa6 'Haze ', # 0xa6
'Jian ', # 0xa7 'Jian ', # 0xa7

View file

@ -5,7 +5,7 @@ data = (
'Hoy ', # 0x03 'Hoy ', # 0x03
'Rong ', # 0x04 'Rong ', # 0x04
'Zha ', # 0x05 'Zha ', # 0x05
'[?] ', # 0x06 None, # 0x06
'Biao ', # 0x07 'Biao ', # 0x07
'Zhan ', # 0x08 'Zhan ', # 0x08
'Jie ', # 0x09 'Jie ', # 0x09
@ -93,7 +93,7 @@ data = (
'Kasei ', # 0x5b 'Kasei ', # 0x5b
'Ying ', # 0x5c 'Ying ', # 0x5c
'Masu ', # 0x5d 'Masu ', # 0x5d
'[?] ', # 0x5e None, # 0x5e
'Zhan ', # 0x5f 'Zhan ', # 0x5f
'Ya ', # 0x60 'Ya ', # 0x60
'Nao ', # 0x61 'Nao ', # 0x61

View file

@ -40,10 +40,10 @@ data = (
'Ken ', # 0x26 'Ken ', # 0x26
'Myeng ', # 0x27 'Myeng ', # 0x27
'Tafu ', # 0x28 'Tafu ', # 0x28
'[?] ', # 0x29 None, # 0x29
'Peng ', # 0x2a 'Peng ', # 0x2a
'Zhan ', # 0x2b 'Zhan ', # 0x2b
'[?] ', # 0x2c None, # 0x2c
'Tuo ', # 0x2d 'Tuo ', # 0x2d
'Sen ', # 0x2e 'Sen ', # 0x2e
'Duo ', # 0x2f 'Duo ', # 0x2f
@ -138,7 +138,7 @@ data = (
'Lu ', # 0x88 'Lu ', # 0x88
'Ju ', # 0x89 'Ju ', # 0x89
'Sakaki ', # 0x8a 'Sakaki ', # 0x8a
'[?] ', # 0x8b None, # 0x8b
'Pi ', # 0x8c 'Pi ', # 0x8c
'Xie ', # 0x8d 'Xie ', # 0x8d
'Jia ', # 0x8e 'Jia ', # 0x8e
@ -224,7 +224,7 @@ data = (
'Ori ', # 0xde 'Ori ', # 0xde
'Bin ', # 0xdf 'Bin ', # 0xdf
'Zhu ', # 0xe0 'Zhu ', # 0xe0
'[?] ', # 0xe1 None, # 0xe1
'Xi ', # 0xe2 'Xi ', # 0xe2
'Qi ', # 0xe3 'Qi ', # 0xe3
'Lian ', # 0xe4 'Lian ', # 0xe4

View file

@ -44,7 +44,7 @@ data = (
'Heng ', # 0x2a 'Heng ', # 0x2a
'Jian ', # 0x2b 'Jian ', # 0x2b
'Cong ', # 0x2c 'Cong ', # 0x2c
'[?] ', # 0x2d None, # 0x2d
'Hokuso ', # 0x2e 'Hokuso ', # 0x2e
'Qiang ', # 0x2f 'Qiang ', # 0x2f
'Tara ', # 0x30 'Tara ', # 0x30
@ -121,8 +121,8 @@ data = (
'Dou ', # 0x77 'Dou ', # 0x77
'Shou ', # 0x78 'Shou ', # 0x78
'Lu ', # 0x79 'Lu ', # 0x79
'[?] ', # 0x7a None, # 0x7a
'[?] ', # 0x7b None, # 0x7b
'Yuan ', # 0x7c 'Yuan ', # 0x7c
'Ta ', # 0x7d 'Ta ', # 0x7d
'Shu ', # 0x7e 'Shu ', # 0x7e
@ -201,7 +201,7 @@ data = (
'Po ', # 0xc7 'Po ', # 0xc7
'Deng ', # 0xc8 'Deng ', # 0xc8
'Chu ', # 0xc9 'Chu ', # 0xc9
'[?] ', # 0xca None, # 0xca
'Mian ', # 0xcb 'Mian ', # 0xcb
'You ', # 0xcc 'You ', # 0xcc
'Zhi ', # 0xcd 'Zhi ', # 0xcd
@ -229,7 +229,7 @@ data = (
'Lian ', # 0xe3 'Lian ', # 0xe3
'Tamo ', # 0xe4 'Tamo ', # 0xe4
'Chu ', # 0xe5 'Chu ', # 0xe5
'[?] ', # 0xe6 None, # 0xe6
'Zhu ', # 0xe7 'Zhu ', # 0xe7
'Lu ', # 0xe8 'Lu ', # 0xe8
'Yan ', # 0xe9 'Yan ', # 0xe9
@ -244,7 +244,7 @@ data = (
'Yu ', # 0xf2 'Yu ', # 0xf2
'Long ', # 0xf3 'Long ', # 0xf3
'Lai ', # 0xf4 'Lai ', # 0xf4
'[?] ', # 0xf5 None, # 0xf5
'Xian ', # 0xf6 'Xian ', # 0xf6
'Kwi ', # 0xf7 'Kwi ', # 0xf7
'Ju ', # 0xf8 'Ju ', # 0xf8

View file

@ -12,7 +12,7 @@ data = (
'Quan ', # 0x0a 'Quan ', # 0x0a
'Qu ', # 0x0b 'Qu ', # 0x0b
'Cang ', # 0x0c 'Cang ', # 0x0c
'[?] ', # 0x0d None, # 0x0d
'Yu ', # 0x0e 'Yu ', # 0x0e
'Luo ', # 0x0f 'Luo ', # 0x0f
'Li ', # 0x10 'Li ', # 0x10
@ -219,8 +219,8 @@ data = (
'Bi ', # 0xd9 'Bi ', # 0xd9
'Chan ', # 0xda 'Chan ', # 0xda
'Mao ', # 0xdb 'Mao ', # 0xdb
'[?] ', # 0xdc None, # 0xdc
'[?] ', # 0xdd None, # 0xdd
'Pu ', # 0xde 'Pu ', # 0xde
'Mushiru ', # 0xdf 'Mushiru ', # 0xdf
'Jia ', # 0xe0 'Jia ', # 0xe0
@ -245,7 +245,7 @@ data = (
'Cui ', # 0xf3 'Cui ', # 0xf3
'Bi ', # 0xf4 'Bi ', # 0xf4
'San ', # 0xf5 'San ', # 0xf5
'[?] ', # 0xf6 None, # 0xf6
'Mao ', # 0xf7 'Mao ', # 0xf7
'Sui ', # 0xf8 'Sui ', # 0xf8
'Yu ', # 0xf9 'Yu ', # 0xf9

View file

@ -29,7 +29,7 @@ data = (
'Fen ', # 0x1b 'Fen ', # 0x1b
'Ri ', # 0x1c 'Ri ', # 0x1c
'Nei ', # 0x1d 'Nei ', # 0x1d
'[?] ', # 0x1e None, # 0x1e
'Fu ', # 0x1f 'Fu ', # 0x1f
'Shen ', # 0x20 'Shen ', # 0x20
'Dong ', # 0x21 'Dong ', # 0x21
@ -98,7 +98,7 @@ data = (
'Chi ', # 0x60 'Chi ', # 0x60
'Wu ', # 0x61 'Wu ', # 0x61
'Tsuchi ', # 0x62 'Tsuchi ', # 0x62
'[?] ', # 0x63 None, # 0x63
'Tang ', # 0x64 'Tang ', # 0x64
'Zhi ', # 0x65 'Zhi ', # 0x65
'Chi ', # 0x66 'Chi ', # 0x66
@ -248,7 +248,7 @@ data = (
'Xue ', # 0xf6 'Xue ', # 0xf6
'Long ', # 0xf7 'Long ', # 0xf7
'Lu ', # 0xf8 'Lu ', # 0xf8
'[?] ', # 0xf9 None, # 0xf9
'Bo ', # 0xfa 'Bo ', # 0xfa
'Xie ', # 0xfb 'Xie ', # 0xfb
'Po ', # 0xfc 'Po ', # 0xfc

View file

@ -27,7 +27,7 @@ data = (
'Zhu ', # 0x19 'Zhu ', # 0x19
'Jiang ', # 0x1a 'Jiang ', # 0x1a
'Luo ', # 0x1b 'Luo ', # 0x1b
'[?] ', # 0x1c None, # 0x1c
'An ', # 0x1d 'An ', # 0x1d
'Dong ', # 0x1e 'Dong ', # 0x1e
'Yi ', # 0x1f 'Yi ', # 0x1f
@ -164,7 +164,7 @@ data = (
'Yun ', # 0xa2 'Yun ', # 0xa2
'Huan ', # 0xa3 'Huan ', # 0xa3
'Di ', # 0xa4 'Di ', # 0xa4
'[?] ', # 0xa5 None, # 0xa5
'Run ', # 0xa6 'Run ', # 0xa6
'Jian ', # 0xa7 'Jian ', # 0xa7
'Zhang ', # 0xa8 'Zhang ', # 0xa8

View file

@ -14,7 +14,7 @@ data = (
'Lu ', # 0x0c 'Lu ', # 0x0c
'Zi ', # 0x0d 'Zi ', # 0x0d
'Du ', # 0x0e 'Du ', # 0x0e
'[?] ', # 0x0f None, # 0x0f
'Jian ', # 0x10 'Jian ', # 0x10
'Min ', # 0x11 'Min ', # 0x11
'Pi ', # 0x12 'Pi ', # 0x12
@ -131,14 +131,14 @@ data = (
'Ying ', # 0x81 'Ying ', # 0x81
'Ratsu ', # 0x82 'Ratsu ', # 0x82
'Kui ', # 0x83 'Kui ', # 0x83
'[?] ', # 0x84 None, # 0x84
'Jian ', # 0x85 'Jian ', # 0x85
'Xu ', # 0x86 'Xu ', # 0x86
'Lu ', # 0x87 'Lu ', # 0x87
'Gui ', # 0x88 'Gui ', # 0x88
'Gai ', # 0x89 'Gai ', # 0x89
'[?] ', # 0x8a None, # 0x8a
'[?] ', # 0x8b None, # 0x8b
'Po ', # 0x8c 'Po ', # 0x8c
'Jin ', # 0x8d 'Jin ', # 0x8d
'Gui ', # 0x8e 'Gui ', # 0x8e
@ -230,7 +230,7 @@ data = (
'Lu ', # 0xe4 'Lu ', # 0xe4
'Lan ', # 0xe5 'Lan ', # 0xe5
'Luan ', # 0xe6 'Luan ', # 0xe6
'[?] ', # 0xe7 None, # 0xe7
'Bin ', # 0xe8 'Bin ', # 0xe8
'Tan ', # 0xe9 'Tan ', # 0xe9
'Yu ', # 0xea 'Yu ', # 0xea

View file

@ -71,8 +71,8 @@ data = (
'Guan ', # 0x45 'Guan ', # 0x45
'Ying ', # 0x46 'Ying ', # 0x46
'Xiao ', # 0x47 'Xiao ', # 0x47
'[?] ', # 0x48 None, # 0x48
'[?] ', # 0x49 None, # 0x49
'Xu ', # 0x4a 'Xu ', # 0x4a
'Lian ', # 0x4b 'Lian ', # 0x4b
'Zhi ', # 0x4c 'Zhi ', # 0x4c
@ -154,9 +154,9 @@ data = (
'Shan ', # 0x98 'Shan ', # 0x98
'Xi ', # 0x99 'Xi ', # 0x99
'Oki ', # 0x9a 'Oki ', # 0x9a
'[?] ', # 0x9b None, # 0x9b
'Lan ', # 0x9c 'Lan ', # 0x9c
'[?] ', # 0x9d None, # 0x9d
'Yu ', # 0x9e 'Yu ', # 0x9e
'Lin ', # 0x9f 'Lin ', # 0x9f
'Min ', # 0xa0 'Min ', # 0xa0
@ -206,7 +206,7 @@ data = (
'Ta ', # 0xcc 'Ta ', # 0xcc
'Song ', # 0xcd 'Song ', # 0xcd
'Ding ', # 0xce 'Ding ', # 0xce
'[?] ', # 0xcf None, # 0xcf
'Zhu ', # 0xd0 'Zhu ', # 0xd0
'Lai ', # 0xd1 'Lai ', # 0xd1
'Bin ', # 0xd2 'Bin ', # 0xd2
@ -247,7 +247,7 @@ data = (
'Hama ', # 0xf5 'Hama ', # 0xf5
'Kuo ', # 0xf6 'Kuo ', # 0xf6
'Fei ', # 0xf7 'Fei ', # 0xf7
'[?] ', # 0xf8 None, # 0xf8
'Boku ', # 0xf9 'Boku ', # 0xf9
'Jian ', # 0xfa 'Jian ', # 0xfa
'Wei ', # 0xfb 'Wei ', # 0xfb

View file

@ -44,8 +44,8 @@ data = (
'Fan ', # 0x2a 'Fan ', # 0x2a
'Hu ', # 0x2b 'Hu ', # 0x2b
'Lai ', # 0x2c 'Lai ', # 0x2c
'[?] ', # 0x2d None, # 0x2d
'[?] ', # 0x2e None, # 0x2e
'Ying ', # 0x2f 'Ying ', # 0x2f
'Mi ', # 0x30 'Mi ', # 0x30
'Ji ', # 0x31 'Ji ', # 0x31
@ -91,7 +91,7 @@ data = (
'Dang ', # 0x59 'Dang ', # 0x59
'Jiao ', # 0x5a 'Jiao ', # 0x5a
'Chan ', # 0x5b 'Chan ', # 0x5b
'[?] ', # 0x5c None, # 0x5c
'Hao ', # 0x5d 'Hao ', # 0x5d
'Ba ', # 0x5e 'Ba ', # 0x5e
'Zhu ', # 0x5f 'Zhu ', # 0x5f
@ -157,7 +157,7 @@ data = (
'Guang ', # 0x9b 'Guang ', # 0x9b
'Wei ', # 0x9c 'Wei ', # 0x9c
'Qiang ', # 0x9d 'Qiang ', # 0x9d
'[?] ', # 0x9e None, # 0x9e
'Da ', # 0x9f 'Da ', # 0x9f
'Xia ', # 0xa0 'Xia ', # 0xa0
'Zheng ', # 0xa1 'Zheng ', # 0xa1
@ -190,7 +190,7 @@ data = (
'Lian ', # 0xbc 'Lian ', # 0xbc
'Chi ', # 0xbd 'Chi ', # 0xbd
'Huang ', # 0xbe 'Huang ', # 0xbe
'[?] ', # 0xbf None, # 0xbf
'Hu ', # 0xc0 'Hu ', # 0xc0
'Shuo ', # 0xc1 'Shuo ', # 0xc1
'Lan ', # 0xc2 'Lan ', # 0xc2
@ -228,16 +228,16 @@ data = (
'Zhe ', # 0xe2 'Zhe ', # 0xe2
'Hui ', # 0xe3 'Hui ', # 0xe3
'Kao ', # 0xe4 'Kao ', # 0xe4
'[?] ', # 0xe5 None, # 0xe5
'Fan ', # 0xe6 'Fan ', # 0xe6
'Shao ', # 0xe7 'Shao ', # 0xe7
'Ye ', # 0xe8 'Ye ', # 0xe8
'Hui ', # 0xe9 'Hui ', # 0xe9
'[?] ', # 0xea None, # 0xea
'Tang ', # 0xeb 'Tang ', # 0xeb
'Jin ', # 0xec 'Jin ', # 0xec
'Re ', # 0xed 'Re ', # 0xed
'[?] ', # 0xee None, # 0xee
'Xi ', # 0xef 'Xi ', # 0xef
'Fu ', # 0xf0 'Fu ', # 0xf0
'Jiong ', # 0xf1 'Jiong ', # 0xf1

View file

@ -16,8 +16,8 @@ data = (
'Xie ', # 0x0e 'Xie ', # 0x0e
'Ji ', # 0x0f 'Ji ', # 0x0f
'Wu ', # 0x10 'Wu ', # 0x10
'[?] ', # 0x11 None, # 0x11
'[?] ', # 0x12 None, # 0x12
'Han ', # 0x13 'Han ', # 0x13
'Yan ', # 0x14 'Yan ', # 0x14
'Huan ', # 0x15 'Huan ', # 0x15
@ -56,14 +56,14 @@ data = (
'Ran ', # 0x36 'Ran ', # 0x36
'Pi ', # 0x37 'Pi ', # 0x37
'Gu ', # 0x38 'Gu ', # 0x38
'[?] ', # 0x39 None, # 0x39
'Sheng ', # 0x3a 'Sheng ', # 0x3a
'Chang ', # 0x3b 'Chang ', # 0x3b
'Shao ', # 0x3c 'Shao ', # 0x3c
'[?] ', # 0x3d None, # 0x3d
'[?] ', # 0x3e None, # 0x3e
'[?] ', # 0x3f None, # 0x3f
'[?] ', # 0x40 None, # 0x40
'Chen ', # 0x41 'Chen ', # 0x41
'He ', # 0x42 'He ', # 0x42
'Kui ', # 0x43 'Kui ', # 0x43
@ -117,8 +117,8 @@ data = (
'Hu ', # 0x73 'Hu ', # 0x73
'Yun ', # 0x74 'Yun ', # 0x74
'Xia ', # 0x75 'Xia ', # 0x75
'[?] ', # 0x76 None, # 0x76
'[?] ', # 0x77 None, # 0x77
'Bian ', # 0x78 'Bian ', # 0x78
'Gou ', # 0x79 'Gou ', # 0x79
'Tui ', # 0x7a 'Tui ', # 0x7a
@ -149,7 +149,7 @@ data = (
'Wen ', # 0x93 'Wen ', # 0x93
'Rong ', # 0x94 'Rong ', # 0x94
'Oozutsu ', # 0x95 'Oozutsu ', # 0x95
'[?] ', # 0x96 None, # 0x96
'Qiang ', # 0x97 'Qiang ', # 0x97
'Liu ', # 0x98 'Liu ', # 0x98
'Xi ', # 0x99 'Xi ', # 0x99
@ -179,7 +179,7 @@ data = (
'Re ', # 0xb1 'Re ', # 0xb1
'Jiong ', # 0xb2 'Jiong ', # 0xb2
'Man ', # 0xb3 'Man ', # 0xb3
'[?] ', # 0xb4 None, # 0xb4
'Shang ', # 0xb5 'Shang ', # 0xb5
'Cuan ', # 0xb6 'Cuan ', # 0xb6
'Zeng ', # 0xb7 'Zeng ', # 0xb7
@ -220,8 +220,8 @@ data = (
'Yi ', # 0xda 'Yi ', # 0xda
'Jing ', # 0xdb 'Jing ', # 0xdb
'Men ', # 0xdc 'Men ', # 0xdc
'[?] ', # 0xdd None, # 0xdd
'[?] ', # 0xde None, # 0xde
'Ying ', # 0xdf 'Ying ', # 0xdf
'Yu ', # 0xe0 'Yu ', # 0xe0
'Yi ', # 0xe1 'Yi ', # 0xe1

View file

@ -13,7 +13,7 @@ data = (
'Xun ', # 0x0b 'Xun ', # 0x0b
'Kuang ', # 0x0c 'Kuang ', # 0x0c
'Shuo ', # 0x0d 'Shuo ', # 0x0d
'[?] ', # 0x0e None, # 0x0e
'Li ', # 0x0f 'Li ', # 0x0f
'Lu ', # 0x10 'Lu ', # 0x10
'Jue ', # 0x11 'Jue ', # 0x11
@ -23,7 +23,7 @@ data = (
'Xie ', # 0x15 'Xie ', # 0x15
'Long ', # 0x16 'Long ', # 0x16
'Ye ', # 0x17 'Ye ', # 0x17
'[?] ', # 0x18 None, # 0x18
'Rang ', # 0x19 'Rang ', # 0x19
'Yue ', # 0x1a 'Yue ', # 0x1a
'Lan ', # 0x1b 'Lan ', # 0x1b
@ -31,13 +31,13 @@ data = (
'Jue ', # 0x1d 'Jue ', # 0x1d
'Tong ', # 0x1e 'Tong ', # 0x1e
'Guan ', # 0x1f 'Guan ', # 0x1f
'[?] ', # 0x20 None, # 0x20
'Che ', # 0x21 'Che ', # 0x21
'Mi ', # 0x22 'Mi ', # 0x22
'Tang ', # 0x23 'Tang ', # 0x23
'Lan ', # 0x24 'Lan ', # 0x24
'Zhu ', # 0x25 'Zhu ', # 0x25
'[?] ', # 0x26 None, # 0x26
'Ling ', # 0x27 'Ling ', # 0x27
'Cuan ', # 0x28 'Cuan ', # 0x28
'Yu ', # 0x29 'Yu ', # 0x29
@ -50,7 +50,7 @@ data = (
'Yuan ', # 0x30 'Yuan ', # 0x30
'Ai ', # 0x31 'Ai ', # 0x31
'Wei ', # 0x32 'Wei ', # 0x32
'[?] ', # 0x33 None, # 0x33
'Jue ', # 0x34 'Jue ', # 0x34
'Jue ', # 0x35 'Jue ', # 0x35
'Fu ', # 0x36 'Fu ', # 0x36
@ -86,7 +86,7 @@ data = (
'Bo ', # 0x54 'Bo ', # 0x54
'Chuang ', # 0x55 'Chuang ', # 0x55
'You ', # 0x56 'You ', # 0x56
'[?] ', # 0x57 None, # 0x57
'Du ', # 0x58 'Du ', # 0x58
'Ya ', # 0x59 'Ya ', # 0x59
'Cheng ', # 0x5a 'Cheng ', # 0x5a
@ -157,7 +157,7 @@ data = (
'Li ', # 0x9b 'Li ', # 0x9b
'Dun ', # 0x9c 'Dun ', # 0x9c
'Tong ', # 0x9d 'Tong ', # 0x9d
'[?] ', # 0x9e None, # 0x9e
'Jiang ', # 0x9f 'Jiang ', # 0x9f
'Ikenie ', # 0xa0 'Ikenie ', # 0xa0
'Li ', # 0xa1 'Li ', # 0xa1

View file

@ -70,7 +70,7 @@ data = (
'Yu ', # 0x44 'Yu ', # 0x44
'Shi ', # 0x45 'Shi ', # 0x45
'Hao ', # 0x46 'Hao ', # 0x46
'[?] ', # 0x47 None, # 0x47
'Yi ', # 0x48 'Yi ', # 0x48
'Zhen ', # 0x49 'Zhen ', # 0x49
'Chuang ', # 0x4a 'Chuang ', # 0x4a
@ -238,7 +238,7 @@ data = (
'Xu ', # 0xec 'Xu ', # 0xec
'Ban ', # 0xed 'Ban ', # 0xed
'Pei ', # 0xee 'Pei ', # 0xee
'[?] ', # 0xef None, # 0xef
'Dang ', # 0xf0 'Dang ', # 0xf0
'Ei ', # 0xf1 'Ei ', # 0xf1
'Hun ', # 0xf2 'Hun ', # 0xf2

View file

@ -17,7 +17,7 @@ data = (
'Lian ', # 0x0f 'Lian ', # 0x0f
'Suo ', # 0x10 'Suo ', # 0x10
'Chiisai ', # 0x11 'Chiisai ', # 0x11
'[?] ', # 0x12 None, # 0x12
'Wan ', # 0x13 'Wan ', # 0x13
'Dian ', # 0x14 'Dian ', # 0x14
'Pin ', # 0x15 'Pin ', # 0x15
@ -58,7 +58,7 @@ data = (
'Zhuo ', # 0x38 'Zhuo ', # 0x38
'Qin ', # 0x39 'Qin ', # 0x39
'Fa ', # 0x3a 'Fa ', # 0x3a
'[?] ', # 0x3b None, # 0x3b
'Qiong ', # 0x3c 'Qiong ', # 0x3c
'Du ', # 0x3d 'Du ', # 0x3d
'Jie ', # 0x3e 'Jie ', # 0x3e
@ -140,7 +140,7 @@ data = (
'Man ', # 0x8a 'Man ', # 0x8a
'Zhang ', # 0x8b 'Zhang ', # 0x8b
'Yin ', # 0x8c 'Yin ', # 0x8c
'[?] ', # 0x8d None, # 0x8d
'Ying ', # 0x8e 'Ying ', # 0x8e
'Zhi ', # 0x8f 'Zhi ', # 0x8f
'Lu ', # 0x90 'Lu ', # 0x90
@ -163,7 +163,7 @@ data = (
'Jin ', # 0xa1 'Jin ', # 0xa1
'Liu ', # 0xa2 'Liu ', # 0xa2
'Ji ', # 0xa3 'Ji ', # 0xa3
'[?] ', # 0xa4 None, # 0xa4
'Jing ', # 0xa5 'Jing ', # 0xa5
'Ai ', # 0xa6 'Ai ', # 0xa6
'Bi ', # 0xa7 'Bi ', # 0xa7
@ -179,7 +179,7 @@ data = (
'Se ', # 0xb1 'Se ', # 0xb1
'Sui ', # 0xb2 'Sui ', # 0xb2
'Tian ', # 0xb3 'Tian ', # 0xb3
'[?] ', # 0xb4 None, # 0xb4
'Yu ', # 0xb5 'Yu ', # 0xb5
'Jin ', # 0xb6 'Jin ', # 0xb6
'Lu ', # 0xb7 'Lu ', # 0xb7

View file

@ -101,7 +101,7 @@ data = (
'Xian ', # 0x63 'Xian ', # 0x63
'Jie ', # 0x64 'Jie ', # 0x64
'Zheng ', # 0x65 'Zheng ', # 0x65
'[?] ', # 0x66 None, # 0x66
'Li ', # 0x67 'Li ', # 0x67
'Huo ', # 0x68 'Huo ', # 0x68
'Lai ', # 0x69 'Lai ', # 0x69
@ -118,7 +118,7 @@ data = (
'Luan ', # 0x74 'Luan ', # 0x74
'Luan ', # 0x75 'Luan ', # 0x75
'Bo ', # 0x76 'Bo ', # 0x76
'[?] ', # 0x77 None, # 0x77
'Gui ', # 0x78 'Gui ', # 0x78
'Po ', # 0x79 'Po ', # 0x79
'Fa ', # 0x7a 'Fa ', # 0x7a

View file

@ -162,7 +162,7 @@ data = (
'Cheng ', # 0xa0 'Cheng ', # 0xa0
'Ji ', # 0xa1 'Ji ', # 0xa1
'Meng ', # 0xa2 'Meng ', # 0xa2
'[?] ', # 0xa3 None, # 0xa3
'Run ', # 0xa4 'Run ', # 0xa4
'Pie ', # 0xa5 'Pie ', # 0xa5
'Xi ', # 0xa6 'Xi ', # 0xa6

View file

@ -26,7 +26,7 @@ data = (
'Dun ', # 0x18 'Dun ', # 0x18
'Pan ', # 0x19 'Pan ', # 0x19
'Yan ', # 0x1a 'Yan ', # 0x1a
'[?] ', # 0x1b None, # 0x1b
'Feng ', # 0x1c 'Feng ', # 0x1c
'Fa ', # 0x1d 'Fa ', # 0x1d
'Mo ', # 0x1e 'Mo ', # 0x1e
@ -60,7 +60,7 @@ data = (
'Li ', # 0x3a 'Li ', # 0x3a
'Long ', # 0x3b 'Long ', # 0x3b
'Tong ', # 0x3c 'Tong ', # 0x3c
'[?] ', # 0x3d None, # 0x3d
'Li ', # 0x3e 'Li ', # 0x3e
'Aragane ', # 0x3f 'Aragane ', # 0x3f
'Chu ', # 0x40 'Chu ', # 0x40
@ -82,15 +82,15 @@ data = (
'Tong ', # 0x50 'Tong ', # 0x50
'Peng ', # 0x51 'Peng ', # 0x51
'Xi ', # 0x52 'Xi ', # 0x52
'[?] ', # 0x53 None, # 0x53
'Hong ', # 0x54 'Hong ', # 0x54
'Shuo ', # 0x55 'Shuo ', # 0x55
'Xia ', # 0x56 'Xia ', # 0x56
'Qiao ', # 0x57 'Qiao ', # 0x57
'[?] ', # 0x58 None, # 0x58
'Wei ', # 0x59 'Wei ', # 0x59
'Qiao ', # 0x5a 'Qiao ', # 0x5a
'[?] ', # 0x5b None, # 0x5b
'Keng ', # 0x5c 'Keng ', # 0x5c
'Xiao ', # 0x5d 'Xiao ', # 0x5d
'Que ', # 0x5e 'Que ', # 0x5e
@ -114,7 +114,7 @@ data = (
'Sha ', # 0x70 'Sha ', # 0x70
'Kun ', # 0x71 'Kun ', # 0x71
'Yu ', # 0x72 'Yu ', # 0x72
'[?] ', # 0x73 None, # 0x73
'Kaki ', # 0x74 'Kaki ', # 0x74
'Lu ', # 0x75 'Lu ', # 0x75
'Chen ', # 0x76 'Chen ', # 0x76
@ -182,7 +182,7 @@ data = (
'Cha ', # 0xb4 'Cha ', # 0xb4
'Seki ', # 0xb5 'Seki ', # 0xb5
'Qi ', # 0xb6 'Qi ', # 0xb6
'[?] ', # 0xb7 None, # 0xb7
'Feng ', # 0xb8 'Feng ', # 0xb8
'Xuan ', # 0xb9 'Xuan ', # 0xb9
'Que ', # 0xba 'Que ', # 0xba
@ -214,7 +214,7 @@ data = (
'Zhe ', # 0xd4 'Zhe ', # 0xd4
'Ke ', # 0xd5 'Ke ', # 0xd5
'La ', # 0xd6 'La ', # 0xd6
'[?] ', # 0xd7 None, # 0xd7
'Qing ', # 0xd8 'Qing ', # 0xd8
'Gun ', # 0xd9 'Gun ', # 0xd9
'Zhuan ', # 0xda 'Zhuan ', # 0xda
@ -237,7 +237,7 @@ data = (
'Zong ', # 0xeb 'Zong ', # 0xeb
'Qing ', # 0xec 'Qing ', # 0xec
'Chuo ', # 0xed 'Chuo ', # 0xed
'[?] ', # 0xee None, # 0xee
'Ji ', # 0xef 'Ji ', # 0xef
'Shan ', # 0xf0 'Shan ', # 0xf0
'Lao ', # 0xf1 'Lao ', # 0xf1

View file

@ -1,7 +1,7 @@
data = ( data = (
'Tani ', # 0x00 'Tani ', # 0x00
'Jiao ', # 0x01 'Jiao ', # 0x01
'[?] ', # 0x02 None, # 0x02
'Zhang ', # 0x03 'Zhang ', # 0x03
'Qiao ', # 0x04 'Qiao ', # 0x04
'Dun ', # 0x05 'Dun ', # 0x05
@ -32,8 +32,8 @@ data = (
'Meng ', # 0x1e 'Meng ', # 0x1e
'Pao ', # 0x1f 'Pao ', # 0x1f
'Ci ', # 0x20 'Ci ', # 0x20
'[?] ', # 0x21 None, # 0x21
'[?] ', # 0x22 None, # 0x22
'Mie ', # 0x23 'Mie ', # 0x23
'Ca ', # 0x24 'Ca ', # 0x24
'Xian ', # 0x25 'Xian ', # 0x25
@ -76,7 +76,7 @@ data = (
'Beng ', # 0x4a 'Beng ', # 0x4a
'Dui ', # 0x4b 'Dui ', # 0x4b
'Zhong ', # 0x4c 'Zhong ', # 0x4c
'[?] ', # 0x4d None, # 0x4d
'Yi ', # 0x4e 'Yi ', # 0x4e
'Shi ', # 0x4f 'Shi ', # 0x4f
'You ', # 0x50 'You ', # 0x50
@ -152,7 +152,7 @@ data = (
'Mei ', # 0x96 'Mei ', # 0x96
'Si ', # 0x97 'Si ', # 0x97
'Di ', # 0x98 'Di ', # 0x98
'[?] ', # 0x99 None, # 0x99
'Zhuo ', # 0x9a 'Zhuo ', # 0x9a
'Zhen ', # 0x9b 'Zhen ', # 0x9b
'Yong ', # 0x9c 'Yong ', # 0x9c
@ -162,7 +162,7 @@ data = (
'Si ', # 0xa0 'Si ', # 0xa0
'Ma ', # 0xa1 'Ma ', # 0xa1
'Ta ', # 0xa2 'Ta ', # 0xa2
'[?] ', # 0xa3 None, # 0xa3
'Xuan ', # 0xa4 'Xuan ', # 0xa4
'Qi ', # 0xa5 'Qi ', # 0xa5
'Yu ', # 0xa6 'Yu ', # 0xa6

View file

@ -36,7 +36,7 @@ data = (
'Yu ', # 0x22 'Yu ', # 0x22
'Su ', # 0x23 'Su ', # 0x23
'Lue ', # 0x24 'Lue ', # 0x24
'[?] ', # 0x25 None, # 0x25
'Yi ', # 0x26 'Yi ', # 0x26
'Xi ', # 0x27 'Xi ', # 0x27
'Bian ', # 0x28 'Bian ', # 0x28
@ -81,7 +81,7 @@ data = (
'Wen ', # 0x4f 'Wen ', # 0x4f
'Qiu ', # 0x50 'Qiu ', # 0x50
'Se ', # 0x51 'Se ', # 0x51
'[?] ', # 0x52 None, # 0x52
'Yi ', # 0x53 'Yi ', # 0x53
'Huang ', # 0x54 'Huang ', # 0x54
'Qie ', # 0x55 'Qie ', # 0x55
@ -110,7 +110,7 @@ data = (
'Gong ', # 0x6c 'Gong ', # 0x6c
'Lu ', # 0x6d 'Lu ', # 0x6d
'Biao ', # 0x6e 'Biao ', # 0x6e
'[?] ', # 0x6f None, # 0x6f
'Rang ', # 0x70 'Rang ', # 0x70
'Zhuo ', # 0x71 'Zhuo ', # 0x71
'Li ', # 0x72 'Li ', # 0x72
@ -166,7 +166,7 @@ data = (
'Guan ', # 0xa4 'Guan ', # 0xa4
'Kui ', # 0xa5 'Kui ', # 0xa5
'Dou ', # 0xa6 'Dou ', # 0xa6
'[?] ', # 0xa7 None, # 0xa7
'Yin ', # 0xa8 'Yin ', # 0xa8
'Wo ', # 0xa9 'Wo ', # 0xa9
'Wa ', # 0xaa 'Wa ', # 0xaa
@ -188,7 +188,7 @@ data = (
'Kui ', # 0xba 'Kui ', # 0xba
'Chuang ', # 0xbb 'Chuang ', # 0xbb
'Zhao ', # 0xbc 'Zhao ', # 0xbc
'[?] ', # 0xbd None, # 0xbd
'Kuan ', # 0xbe 'Kuan ', # 0xbe
'Long ', # 0xbf 'Long ', # 0xbf
'Cheng ', # 0xc0 'Cheng ', # 0xc0

View file

@ -207,7 +207,7 @@ data = (
'Qiu ', # 0xcd 'Qiu ', # 0xcd
'Miao ', # 0xce 'Miao ', # 0xce
'Qian ', # 0xcf 'Qian ', # 0xcf
'[?] ', # 0xd0 None, # 0xd0
'Kui ', # 0xd1 'Kui ', # 0xd1
'Sik ', # 0xd2 'Sik ', # 0xd2
'Lou ', # 0xd3 'Lou ', # 0xd3

View file

@ -46,7 +46,7 @@ data = (
'Du ', # 0x2c 'Du ', # 0x2c
'Shi ', # 0x2d 'Shi ', # 0x2d
'Zan ', # 0x2e 'Zan ', # 0x2e
'[?] ', # 0x2f None, # 0x2f
'Pai ', # 0x30 'Pai ', # 0x30
'Hata ', # 0x31 'Hata ', # 0x31
'Pai ', # 0x32 'Pai ', # 0x32
@ -65,7 +65,7 @@ data = (
'Bo ', # 0x3f 'Bo ', # 0x3f
'Zhou ', # 0x40 'Zhou ', # 0x40
'Lai ', # 0x41 'Lai ', # 0x41
'[?] ', # 0x42 None, # 0x42
'Lan ', # 0x43 'Lan ', # 0x43
'Kui ', # 0x44 'Kui ', # 0x44
'Yu ', # 0x45 'Yu ', # 0x45
@ -77,7 +77,7 @@ data = (
'Mi ', # 0x4b 'Mi ', # 0x4b
'Chou ', # 0x4c 'Chou ', # 0x4c
'Ji ', # 0x4d 'Ji ', # 0x4d
'[?] ', # 0x4e None, # 0x4e
'Hata ', # 0x4f 'Hata ', # 0x4f
'Teng ', # 0x50 'Teng ', # 0x50
'Zhuan ', # 0x51 'Zhuan ', # 0x51
@ -127,7 +127,7 @@ data = (
'Zi ', # 0x7d 'Zi ', # 0x7d
'Ni ', # 0x7e 'Ni ', # 0x7e
'Cun ', # 0x7f 'Cun ', # 0x7f
'[?] ', # 0x80 None, # 0x80
'Qian ', # 0x81 'Qian ', # 0x81
'Kume ', # 0x82 'Kume ', # 0x82
'Bi ', # 0x83 'Bi ', # 0x83
@ -139,7 +139,7 @@ data = (
'Fen ', # 0x89 'Fen ', # 0x89
'Bi ', # 0x8a 'Bi ', # 0x8a
'Cui ', # 0x8b 'Cui ', # 0x8b
'[?] ', # 0x8c None, # 0x8c
'Li ', # 0x8d 'Li ', # 0x8d
'Chi ', # 0x8e 'Chi ', # 0x8e
'Nukamiso ', # 0x8f 'Nukamiso ', # 0x8f
@ -168,10 +168,10 @@ data = (
'Lin ', # 0xa6 'Lin ', # 0xa6
'Zhuang ', # 0xa7 'Zhuang ', # 0xa7
'Bai ', # 0xa8 'Bai ', # 0xa8
'[?] ', # 0xa9 None, # 0xa9
'Fen ', # 0xaa 'Fen ', # 0xaa
'Ji ', # 0xab 'Ji ', # 0xab
'[?] ', # 0xac None, # 0xac
'Sukumo ', # 0xad 'Sukumo ', # 0xad
'Liang ', # 0xae 'Liang ', # 0xae
'Xian ', # 0xaf 'Xian ', # 0xaf
@ -235,7 +235,7 @@ data = (
'Kuai ', # 0xe9 'Kuai ', # 0xe9
'Bo ', # 0xea 'Bo ', # 0xea
'Huan ', # 0xeb 'Huan ', # 0xeb
'[?] ', # 0xec None, # 0xec
'Zong ', # 0xed 'Zong ', # 0xed
'Xian ', # 0xee 'Xian ', # 0xee
'Nuo ', # 0xef 'Nuo ', # 0xef

View file

@ -235,7 +235,7 @@ data = (
'Ji ', # 0xe9 'Ji ', # 0xe9
'Xu ', # 0xea 'Xu ', # 0xea
'Ling ', # 0xeb 'Ling ', # 0xeb
'[?] ', # 0xec None, # 0xec
'Xu ', # 0xed 'Xu ', # 0xed
'Qi ', # 0xee 'Qi ', # 0xee
'Fei ', # 0xef 'Fei ', # 0xef

View file

@ -63,7 +63,7 @@ data = (
'Bo ', # 0x3d 'Bo ', # 0x3d
'Ping ', # 0x3e 'Ping ', # 0x3e
'Hou ', # 0x3f 'Hou ', # 0x3f
'[?] ', # 0x40 None, # 0x40
'Gang ', # 0x41 'Gang ', # 0x41
'Ying ', # 0x42 'Ying ', # 0x42
'Ying ', # 0x43 'Ying ', # 0x43
@ -85,7 +85,7 @@ data = (
'Gang ', # 0x53 'Gang ', # 0x53
'Wang ', # 0x54 'Wang ', # 0x54
'Han ', # 0x55 'Han ', # 0x55
'[?] ', # 0x56 None, # 0x56
'Luo ', # 0x57 'Luo ', # 0x57
'Fu ', # 0x58 'Fu ', # 0x58
'Mi ', # 0x59 'Mi ', # 0x59
@ -245,7 +245,7 @@ data = (
'Yi ', # 0xf3 'Yi ', # 0xf3
'Lian ', # 0xf4 'Lian ', # 0xf4
'Qu ', # 0xf5 'Qu ', # 0xf5
'[?] ', # 0xf6 None, # 0xf6
'Lin ', # 0xf7 'Lin ', # 0xf7
'Pen ', # 0xf8 'Pen ', # 0xf8
'Qiao ', # 0xf9 'Qiao ', # 0xf9

View file

@ -1,7 +1,7 @@
data = ( data = (
'Yao ', # 0x00 'Yao ', # 0x00
'Lao ', # 0x01 'Lao ', # 0x01
'[?] ', # 0x02 None, # 0x02
'Kao ', # 0x03 'Kao ', # 0x03
'Mao ', # 0x04 'Mao ', # 0x04
'Zhe ', # 0x05 'Zhe ', # 0x05
@ -64,7 +64,7 @@ data = (
'Hong ', # 0x3e 'Hong ', # 0x3e
'Geng ', # 0x3f 'Geng ', # 0x3f
'Zhi ', # 0x40 'Zhi ', # 0x40
'[?] ', # 0x41 None, # 0x41
'Nie ', # 0x42 'Nie ', # 0x42
'Dan ', # 0x43 'Dan ', # 0x43
'Zhen ', # 0x44 'Zhen ', # 0x44
@ -82,7 +82,7 @@ data = (
'Ya ', # 0x50 'Ya ', # 0x50
'Die ', # 0x51 'Die ', # 0x51
'Gua ', # 0x52 'Gua ', # 0x52
'[?] ', # 0x53 None, # 0x53
'Lian ', # 0x54 'Lian ', # 0x54
'Hao ', # 0x55 'Hao ', # 0x55
'Sheng ', # 0x56 'Sheng ', # 0x56
@ -98,7 +98,7 @@ data = (
'Ping ', # 0x60 'Ping ', # 0x60
'Cong ', # 0x61 'Cong ', # 0x61
'Shikato ', # 0x62 'Shikato ', # 0x62
'[?] ', # 0x63 None, # 0x63
'Ting ', # 0x64 'Ting ', # 0x64
'Yu ', # 0x65 'Yu ', # 0x65
'Cong ', # 0x66 'Cong ', # 0x66

View file

@ -11,7 +11,7 @@ data = (
'Mai ', # 0x09 'Mai ', # 0x09
'Ji ', # 0x0a 'Ji ', # 0x0a
'Obiyaakasu ', # 0x0b 'Obiyaakasu ', # 0x0b
'[?] ', # 0x0c None, # 0x0c
'Kuai ', # 0x0d 'Kuai ', # 0x0d
'Sa ', # 0x0e 'Sa ', # 0x0e
'Zang ', # 0x0f 'Zang ', # 0x0f

View file

@ -35,7 +35,7 @@ data = (
'Gang ', # 0x21 'Gang ', # 0x21
'Shan ', # 0x22 'Shan ', # 0x22
'Yi ', # 0x23 'Yi ', # 0x23
'[?] ', # 0x24 None, # 0x24
'Pa ', # 0x25 'Pa ', # 0x25
'Tai ', # 0x26 'Tai ', # 0x26
'Fan ', # 0x27 'Fan ', # 0x27
@ -62,7 +62,7 @@ data = (
'Hong ', # 0x3c 'Hong ', # 0x3c
'Pang ', # 0x3d 'Pang ', # 0x3d
'Xi ', # 0x3e 'Xi ', # 0x3e
'[?] ', # 0x3f None, # 0x3f
'Fu ', # 0x40 'Fu ', # 0x40
'Zao ', # 0x41 'Zao ', # 0x41
'Feng ', # 0x42 'Feng ', # 0x42
@ -71,7 +71,7 @@ data = (
'Yu ', # 0x45 'Yu ', # 0x45
'Lang ', # 0x46 'Lang ', # 0x46
'Ting ', # 0x47 'Ting ', # 0x47
'[?] ', # 0x48 None, # 0x48
'Wei ', # 0x49 'Wei ', # 0x49
'Bo ', # 0x4a 'Bo ', # 0x4a
'Meng ', # 0x4b 'Meng ', # 0x4b
@ -83,7 +83,7 @@ data = (
'Bian ', # 0x51 'Bian ', # 0x51
'Mao ', # 0x52 'Mao ', # 0x52
'Die ', # 0x53 'Die ', # 0x53
'[?] ', # 0x54 None, # 0x54
'Bang ', # 0x55 'Bang ', # 0x55
'Cha ', # 0x56 'Cha ', # 0x56
'Yi ', # 0x57 'Yi ', # 0x57

View file

@ -15,9 +15,9 @@ data = (
'Ji ', # 0x0d 'Ji ', # 0x0d
'Jing ', # 0x0e 'Jing ', # 0x0e
'Long ', # 0x0f 'Long ', # 0x0f
'[?] ', # 0x10 None, # 0x10
'Niao ', # 0x11 'Niao ', # 0x11
'[?] ', # 0x12 None, # 0x12
'Xue ', # 0x13 'Xue ', # 0x13
'Ying ', # 0x14 'Ying ', # 0x14
'Qiong ', # 0x15 'Qiong ', # 0x15
@ -61,7 +61,7 @@ data = (
'Mang ', # 0x3b 'Mang ', # 0x3b
'Tong ', # 0x3c 'Tong ', # 0x3c
'Zhong ', # 0x3d 'Zhong ', # 0x3d
'[?] ', # 0x3e None, # 0x3e
'Zhu ', # 0x3f 'Zhu ', # 0x3f
'Xun ', # 0x40 'Xun ', # 0x40
'Huan ', # 0x41 'Huan ', # 0x41
@ -97,7 +97,7 @@ data = (
'Hui ', # 0x5f 'Hui ', # 0x5f
'Qi ', # 0x60 'Qi ', # 0x60
'Dang ', # 0x61 'Dang ', # 0x61
'[?] ', # 0x62 None, # 0x62
'Rong ', # 0x63 'Rong ', # 0x63
'Hun ', # 0x64 'Hun ', # 0x64
'Ying ', # 0x65 'Ying ', # 0x65

View file

@ -29,12 +29,12 @@ data = (
'Jiu ', # 0x1b 'Jiu ', # 0x1b
'Tie ', # 0x1c 'Tie ', # 0x1c
'Luo ', # 0x1d 'Luo ', # 0x1d
'[?] ', # 0x1e None, # 0x1e
'[?] ', # 0x1f None, # 0x1f
'Meng ', # 0x20 'Meng ', # 0x20
'[?] ', # 0x21 None, # 0x21
'Yaji ', # 0x22 'Yaji ', # 0x22
'[?] ', # 0x23 None, # 0x23
'Ying ', # 0x24 'Ying ', # 0x24
'Ying ', # 0x25 'Ying ', # 0x25
'Ying ', # 0x26 'Ying ', # 0x26
@ -137,12 +137,12 @@ data = (
'Chan ', # 0x87 'Chan ', # 0x87
'Kai ', # 0x88 'Kai ', # 0x88
'Kui ', # 0x89 'Kui ', # 0x89
'[?] ', # 0x8a None, # 0x8a
'Jiang ', # 0x8b 'Jiang ', # 0x8b
'Lou ', # 0x8c 'Lou ', # 0x8c
'Wei ', # 0x8d 'Wei ', # 0x8d
'Pai ', # 0x8e 'Pai ', # 0x8e
'[?] ', # 0x8f None, # 0x8f
'Sou ', # 0x90 'Sou ', # 0x90
'Yin ', # 0x91 'Yin ', # 0x91
'Shi ', # 0x92 'Shi ', # 0x92
@ -221,13 +221,13 @@ data = (
'Ce ', # 0xdb 'Ce ', # 0xdb
'Hai ', # 0xdc 'Hai ', # 0xdc
'Lan ', # 0xdd 'Lan ', # 0xdd
'[?] ', # 0xde None, # 0xde
'Ji ', # 0xdf 'Ji ', # 0xdf
'Li ', # 0xe0 'Li ', # 0xe0
'Can ', # 0xe1 'Can ', # 0xe1
'Lang ', # 0xe2 'Lang ', # 0xe2
'Yu ', # 0xe3 'Yu ', # 0xe3
'[?] ', # 0xe4 None, # 0xe4
'Ying ', # 0xe5 'Ying ', # 0xe5
'Mo ', # 0xe6 'Mo ', # 0xe6
'Diao ', # 0xe7 'Diao ', # 0xe7

View file

@ -112,7 +112,7 @@ data = (
'Xi ', # 0x6e 'Xi ', # 0x6e
'Long ', # 0x6f 'Long ', # 0x6f
'Yun ', # 0x70 'Yun ', # 0x70
'[?] ', # 0x71 None, # 0x71
'Qi ', # 0x72 'Qi ', # 0x72
'Jian ', # 0x73 'Jian ', # 0x73
'Yun ', # 0x74 'Yun ', # 0x74
@ -211,7 +211,7 @@ data = (
'Qiong ', # 0xd1 'Qiong ', # 0xd1
'Qie ', # 0xd2 'Qie ', # 0xd2
'Xian ', # 0xd3 'Xian ', # 0xd3
'[?] ', # 0xd4 None, # 0xd4
'Ou ', # 0xd5 'Ou ', # 0xd5
'Xian ', # 0xd6 'Xian ', # 0xd6
'Su ', # 0xd7 'Su ', # 0xd7
@ -241,10 +241,10 @@ data = (
'Wei ', # 0xef 'Wei ', # 0xef
'Liu ', # 0xf0 'Liu ', # 0xf0
'Hui ', # 0xf1 'Hui ', # 0xf1
'[?] ', # 0xf2 None, # 0xf2
'Gao ', # 0xf3 'Gao ', # 0xf3
'Yun ', # 0xf4 'Yun ', # 0xf4
'[?] ', # 0xf5 None, # 0xf5
'Li ', # 0xf6 'Li ', # 0xf6
'Shu ', # 0xf7 'Shu ', # 0xf7
'Chu ', # 0xf8 'Chu ', # 0xf8

View file

@ -20,7 +20,7 @@ data = (
'Hagi ', # 0x12 'Hagi ', # 0x12
'Su ', # 0x13 'Su ', # 0x13
'Jiong ', # 0x14 'Jiong ', # 0x14
'[?] ', # 0x15 None, # 0x15
'Nie ', # 0x16 'Nie ', # 0x16
'Bo ', # 0x17 'Bo ', # 0x17
'Rang ', # 0x18 'Rang ', # 0x18
@ -68,7 +68,7 @@ data = (
'Lu ', # 0x42 'Lu ', # 0x42
'Jian ', # 0x43 'Jian ', # 0x43
'San ', # 0x44 'San ', # 0x44
'[?] ', # 0x45 None, # 0x45
'Lei ', # 0x46 'Lei ', # 0x46
'Quan ', # 0x47 'Quan ', # 0x47
'Xiao ', # 0x48 'Xiao ', # 0x48
@ -113,7 +113,7 @@ data = (
'Qiu ', # 0x6f 'Qiu ', # 0x6f
'Cheng ', # 0x70 'Cheng ', # 0x70
'Shi ', # 0x71 'Shi ', # 0x71
'[?] ', # 0x72 None, # 0x72
'Di ', # 0x73 'Di ', # 0x73
'Zhe ', # 0x74 'Zhe ', # 0x74
'She ', # 0x75 'She ', # 0x75

View file

@ -73,7 +73,7 @@ data = (
'Ying ', # 0x47 'Ying ', # 0x47
'Guo ', # 0x48 'Guo ', # 0x48
'Chan ', # 0x49 'Chan ', # 0x49
'[?] ', # 0x4a None, # 0x4a
'La ', # 0x4b 'La ', # 0x4b
'Ke ', # 0x4c 'Ke ', # 0x4c
'Ji ', # 0x4d 'Ji ', # 0x4d
@ -128,7 +128,7 @@ data = (
'Rong ', # 0x7e 'Rong ', # 0x7e
'Ying ', # 0x7f 'Ying ', # 0x7f
'Jiang ', # 0x80 'Jiang ', # 0x80
'[?] ', # 0x81 None, # 0x81
'Lang ', # 0x82 'Lang ', # 0x82
'Pang ', # 0x83 'Pang ', # 0x83
'Si ', # 0x84 'Si ', # 0x84
@ -168,7 +168,7 @@ data = (
'So ', # 0xa6 'So ', # 0xa6
'Ebi ', # 0xa7 'Ebi ', # 0xa7
'Man ', # 0xa8 'Man ', # 0xa8
'[?] ', # 0xa9 None, # 0xa9
'Shang ', # 0xaa 'Shang ', # 0xaa
'Zhe ', # 0xab 'Zhe ', # 0xab
'Cao ', # 0xac 'Cao ', # 0xac
@ -244,7 +244,7 @@ data = (
'Chong ', # 0xf2 'Chong ', # 0xf2
'Xun ', # 0xf3 'Xun ', # 0xf3
'Si ', # 0xf4 'Si ', # 0xf4
'[?] ', # 0xf5 None, # 0xf5
'Cheng ', # 0xf6 'Cheng ', # 0xf6
'Dang ', # 0xf7 'Dang ', # 0xf7
'Li ', # 0xf8 'Li ', # 0xf8

View file

@ -51,7 +51,7 @@ data = (
'Gu ', # 0x31 'Gu ', # 0x31
'Juan ', # 0x32 'Juan ', # 0x32
'Ying ', # 0x33 'Ying ', # 0x33
'[?] ', # 0x34 None, # 0x34
'Xi ', # 0x35 'Xi ', # 0x35
'Can ', # 0x36 'Can ', # 0x36
'Qu ', # 0x37 'Qu ', # 0x37
@ -79,7 +79,7 @@ data = (
'Yan ', # 0x4d 'Yan ', # 0x4d
'Kan ', # 0x4e 'Kan ', # 0x4e
'Yuan ', # 0x4f 'Yuan ', # 0x4f
'[?] ', # 0x50 None, # 0x50
'Ling ', # 0x51 'Ling ', # 0x51
'Xuan ', # 0x52 'Xuan ', # 0x52
'Shu ', # 0x53 'Shu ', # 0x53
@ -198,7 +198,7 @@ data = (
'Yuki ', # 0xc4 'Yuki ', # 0xc4
'Zhuang ', # 0xc5 'Zhuang ', # 0xc5
'Dang ', # 0xc6 'Dang ', # 0xc6
'[?] ', # 0xc7 None, # 0xc7
'Kun ', # 0xc8 'Kun ', # 0xc8
'Ken ', # 0xc9 'Ken ', # 0xc9
'Niao ', # 0xca 'Niao ', # 0xca

Some files were not shown because too many files have changed in this diff Show more