-
Notifications
You must be signed in to change notification settings - Fork 0
/
tables.py
62 lines (60 loc) · 936 Bytes
/
tables.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
"""String translate tables, for English and Futhark characters."""
english_table = {
5827: 106,
5810: 99,
5792: 102,
5794: 117,
5798: 'th',
5800: 97,
5809: 114,
5815: 103,
5817: 119,
5818: 104,
5822: 110,
5825: 105,
5831: 230,
5832: 112,
5833: 122,
5835: 115,
5839: 116,
5842: 98,
5846: 101,
5847: 109,
5850: 108,
5852: 331,
5855: 111,
5854: 100,
'ᚲᛋ': 120,
5853: 'ng'
}
futhark_table = {
97: 5800,
98: 5842,
99: 5810,
100: 5854,
101: 5846,
102: 5792,
103: 5815,
104: 5818,
105: 5825,
106: 5827,
107: 5810,
108: 5850,
109: 5847,
110: 5822,
111: 5855,
112: 5832,
113: 5810,
114: 5809,
115: 5835,
116: 5839,
117: 5794,
119: 5817,
120: 'ᚲᛋ',
121: 5827,
122: 5833,
230: 5831,
239: 5831,
254: 5798,
331: 5852
}