Xemu [doxygen]  hyppo 0a42be3a057156924bc1b626a687bd6e27349c45 @ Sat 19 Mar 02:15:11 CET 2022
ptables.c
Go to the documentation of this file.
1 /* Whether a half carry occured or not can be determined by looking at
2 the 3rd bit of the two arguments and the result; these are hashed
3 into this table in the form r12, where r is the 3rd bit of the
4 result, 1 is the 3rd bit of the 1st argument and 2 is the
5 third bit of the 2nd argument; the tables differ for add and subtract
6 operations */
7 static const Z80EX_BYTE halfcarry_add_table[] =
8 {
9  0, FLAG_H, FLAG_H, FLAG_H, 0, 0, 0, FLAG_H
10 };
11 static const Z80EX_BYTE halfcarry_sub_table[] =
12 {
13  0, 0, FLAG_H, 0, FLAG_H, 0, FLAG_H, FLAG_H
14 };
15 
16 /* Similarly, overflow can be determined by looking at the 7th bits; again
17 the hash into this table is r12 */
18 static const Z80EX_BYTE overflow_add_table[] =
19 {
20  0, 0, 0, FLAG_V, FLAG_V, 0, 0, 0
21 };
22 static const Z80EX_BYTE overflow_sub_table[] =
23 {
24  0, FLAG_V, 0, 0, 0, 0, FLAG_V, 0
25 };
26 
27 /* The S, Z, 5 and 3 bits of the index */
28 static const Z80EX_BYTE sz53_table[0x100] =
29 {
30  0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00
31  ,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08
32  ,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
33  ,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08
34  ,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20
35  ,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28
36  ,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20
37  ,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28
38  ,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
39  ,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08
40  ,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
41  ,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08
42  ,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20
43  ,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28
44  ,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20
45  ,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28
46  ,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80
47  ,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88
48  ,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80
49  ,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88
50  ,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0
51  ,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8
52  ,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0
53  ,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8
54  ,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80
55  ,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88
56  ,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80
57  ,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88
58  ,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0
59  ,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8
60  ,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0
61  ,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8
62 
63 };
64 
65 /* The parity of the lookup value */
66 static const Z80EX_BYTE parity_table[0x100] =
67 {
68  0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
69  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
70  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
71  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
72  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
73  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
74  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
75  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
76  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
77  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
78  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
79  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
80  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
81  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
82  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
83  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
84  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
85  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
86  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
87  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
88  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
89  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
90  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
91  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
92  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
93  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
94  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
95  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
96  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
97  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
98  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
99  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
100 
101 };
102 
103 
104 /* OR the above two tables together */
105 static const Z80EX_BYTE sz53p_table[0x100] =
106 {
107  0x44,0x00,0x00,0x04,0x00,0x04,0x04,0x00
108  ,0x08,0x0c,0x0c,0x08,0x0c,0x08,0x08,0x0c
109  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
110  ,0x0c,0x08,0x08,0x0c,0x08,0x0c,0x0c,0x08
111  ,0x20,0x24,0x24,0x20,0x24,0x20,0x20,0x24
112  ,0x2c,0x28,0x28,0x2c,0x28,0x2c,0x2c,0x28
113  ,0x24,0x20,0x20,0x24,0x20,0x24,0x24,0x20
114  ,0x28,0x2c,0x2c,0x28,0x2c,0x28,0x28,0x2c
115  ,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x04
116  ,0x0c,0x08,0x08,0x0c,0x08,0x0c,0x0c,0x08
117  ,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x00
118  ,0x08,0x0c,0x0c,0x08,0x0c,0x08,0x08,0x0c
119  ,0x24,0x20,0x20,0x24,0x20,0x24,0x24,0x20
120  ,0x28,0x2c,0x2c,0x28,0x2c,0x28,0x28,0x2c
121  ,0x20,0x24,0x24,0x20,0x24,0x20,0x20,0x24
122  ,0x2c,0x28,0x28,0x2c,0x28,0x2c,0x2c,0x28
123  ,0x80,0x84,0x84,0x80,0x84,0x80,0x80,0x84
124  ,0x8c,0x88,0x88,0x8c,0x88,0x8c,0x8c,0x88
125  ,0x84,0x80,0x80,0x84,0x80,0x84,0x84,0x80
126  ,0x88,0x8c,0x8c,0x88,0x8c,0x88,0x88,0x8c
127  ,0xa4,0xa0,0xa0,0xa4,0xa0,0xa4,0xa4,0xa0
128  ,0xa8,0xac,0xac,0xa8,0xac,0xa8,0xa8,0xac
129  ,0xa0,0xa4,0xa4,0xa0,0xa4,0xa0,0xa0,0xa4
130  ,0xac,0xa8,0xa8,0xac,0xa8,0xac,0xac,0xa8
131  ,0x84,0x80,0x80,0x84,0x80,0x84,0x84,0x80
132  ,0x88,0x8c,0x8c,0x88,0x8c,0x88,0x88,0x8c
133  ,0x80,0x84,0x84,0x80,0x84,0x80,0x80,0x84
134  ,0x8c,0x88,0x88,0x8c,0x88,0x8c,0x8c,0x88
135  ,0xa0,0xa4,0xa4,0xa0,0xa4,0xa0,0xa0,0xa4
136  ,0xac,0xa8,0xa8,0xac,0xa8,0xac,0xac,0xa8
137  ,0xa4,0xa0,0xa0,0xa4,0xa0,0xa4,0xa4,0xa0
138  ,0xa8,0xac,0xac,0xa8,0xac,0xa8,0xa8,0xac
139 
140 };
141 
142 /*table for daa, contains af*/
143 static const Z80EX_BYTE daatab[0x1000] =
144 {
145  0x44,0x00,0x00,0x01,0x00,0x02,0x04,0x03
146  ,0x00,0x04,0x04,0x05,0x04,0x06,0x00,0x07
147  ,0x08,0x08,0x0c,0x09,0x10,0x10,0x14,0x11
148  ,0x14,0x12,0x10,0x13,0x14,0x14,0x10,0x15
149  ,0x00,0x10,0x04,0x11,0x04,0x12,0x00,0x13
150  ,0x04,0x14,0x00,0x15,0x00,0x16,0x04,0x17
151  ,0x0c,0x18,0x08,0x19,0x30,0x20,0x34,0x21
152  ,0x34,0x22,0x30,0x23,0x34,0x24,0x30,0x25
153  ,0x20,0x20,0x24,0x21,0x24,0x22,0x20,0x23
154  ,0x24,0x24,0x20,0x25,0x20,0x26,0x24,0x27
155  ,0x2c,0x28,0x28,0x29,0x34,0x30,0x30,0x31
156  ,0x30,0x32,0x34,0x33,0x30,0x34,0x34,0x35
157  ,0x24,0x30,0x20,0x31,0x20,0x32,0x24,0x33
158  ,0x20,0x34,0x24,0x35,0x24,0x36,0x20,0x37
159  ,0x28,0x38,0x2c,0x39,0x10,0x40,0x14,0x41
160  ,0x14,0x42,0x10,0x43,0x14,0x44,0x10,0x45
161  ,0x00,0x40,0x04,0x41,0x04,0x42,0x00,0x43
162  ,0x04,0x44,0x00,0x45,0x00,0x46,0x04,0x47
163  ,0x0c,0x48,0x08,0x49,0x14,0x50,0x10,0x51
164  ,0x10,0x52,0x14,0x53,0x10,0x54,0x14,0x55
165  ,0x04,0x50,0x00,0x51,0x00,0x52,0x04,0x53
166  ,0x00,0x54,0x04,0x55,0x04,0x56,0x00,0x57
167  ,0x08,0x58,0x0c,0x59,0x34,0x60,0x30,0x61
168  ,0x30,0x62,0x34,0x63,0x30,0x64,0x34,0x65
169  ,0x24,0x60,0x20,0x61,0x20,0x62,0x24,0x63
170  ,0x20,0x64,0x24,0x65,0x24,0x66,0x20,0x67
171  ,0x28,0x68,0x2c,0x69,0x30,0x70,0x34,0x71
172  ,0x34,0x72,0x30,0x73,0x34,0x74,0x30,0x75
173  ,0x20,0x70,0x24,0x71,0x24,0x72,0x20,0x73
174  ,0x24,0x74,0x20,0x75,0x20,0x76,0x24,0x77
175  ,0x2c,0x78,0x28,0x79,0x90,0x80,0x94,0x81
176  ,0x94,0x82,0x90,0x83,0x94,0x84,0x90,0x85
177  ,0x80,0x80,0x84,0x81,0x84,0x82,0x80,0x83
178  ,0x84,0x84,0x80,0x85,0x80,0x86,0x84,0x87
179  ,0x8c,0x88,0x88,0x89,0x94,0x90,0x90,0x91
180  ,0x90,0x92,0x94,0x93,0x90,0x94,0x94,0x95
181  ,0x84,0x90,0x80,0x91,0x80,0x92,0x84,0x93
182  ,0x80,0x94,0x84,0x95,0x84,0x96,0x80,0x97
183  ,0x88,0x98,0x8c,0x99,0x55,0x00,0x11,0x01
184  ,0x11,0x02,0x15,0x03,0x11,0x04,0x15,0x05
185  ,0x45,0x00,0x01,0x01,0x01,0x02,0x05,0x03
186  ,0x01,0x04,0x05,0x05,0x05,0x06,0x01,0x07
187  ,0x09,0x08,0x0d,0x09,0x11,0x10,0x15,0x11
188  ,0x15,0x12,0x11,0x13,0x15,0x14,0x11,0x15
189  ,0x01,0x10,0x05,0x11,0x05,0x12,0x01,0x13
190  ,0x05,0x14,0x01,0x15,0x01,0x16,0x05,0x17
191  ,0x0d,0x18,0x09,0x19,0x31,0x20,0x35,0x21
192  ,0x35,0x22,0x31,0x23,0x35,0x24,0x31,0x25
193  ,0x21,0x20,0x25,0x21,0x25,0x22,0x21,0x23
194  ,0x25,0x24,0x21,0x25,0x21,0x26,0x25,0x27
195  ,0x2d,0x28,0x29,0x29,0x35,0x30,0x31,0x31
196  ,0x31,0x32,0x35,0x33,0x31,0x34,0x35,0x35
197  ,0x25,0x30,0x21,0x31,0x21,0x32,0x25,0x33
198  ,0x21,0x34,0x25,0x35,0x25,0x36,0x21,0x37
199  ,0x29,0x38,0x2d,0x39,0x11,0x40,0x15,0x41
200  ,0x15,0x42,0x11,0x43,0x15,0x44,0x11,0x45
201  ,0x01,0x40,0x05,0x41,0x05,0x42,0x01,0x43
202  ,0x05,0x44,0x01,0x45,0x01,0x46,0x05,0x47
203  ,0x0d,0x48,0x09,0x49,0x15,0x50,0x11,0x51
204  ,0x11,0x52,0x15,0x53,0x11,0x54,0x15,0x55
205  ,0x05,0x50,0x01,0x51,0x01,0x52,0x05,0x53
206  ,0x01,0x54,0x05,0x55,0x05,0x56,0x01,0x57
207  ,0x09,0x58,0x0d,0x59,0x35,0x60,0x31,0x61
208  ,0x31,0x62,0x35,0x63,0x31,0x64,0x35,0x65
209  ,0x25,0x60,0x21,0x61,0x21,0x62,0x25,0x63
210  ,0x21,0x64,0x25,0x65,0x25,0x66,0x21,0x67
211  ,0x29,0x68,0x2d,0x69,0x31,0x70,0x35,0x71
212  ,0x35,0x72,0x31,0x73,0x35,0x74,0x31,0x75
213  ,0x21,0x70,0x25,0x71,0x25,0x72,0x21,0x73
214  ,0x25,0x74,0x21,0x75,0x21,0x76,0x25,0x77
215  ,0x2d,0x78,0x29,0x79,0x91,0x80,0x95,0x81
216  ,0x95,0x82,0x91,0x83,0x95,0x84,0x91,0x85
217  ,0x81,0x80,0x85,0x81,0x85,0x82,0x81,0x83
218  ,0x85,0x84,0x81,0x85,0x81,0x86,0x85,0x87
219  ,0x8d,0x88,0x89,0x89,0x95,0x90,0x91,0x91
220  ,0x91,0x92,0x95,0x93,0x91,0x94,0x95,0x95
221  ,0x85,0x90,0x81,0x91,0x81,0x92,0x85,0x93
222  ,0x81,0x94,0x85,0x95,0x85,0x96,0x81,0x97
223  ,0x89,0x98,0x8d,0x99,0xb5,0xa0,0xb1,0xa1
224  ,0xb1,0xa2,0xb5,0xa3,0xb1,0xa4,0xb5,0xa5
225  ,0xa5,0xa0,0xa1,0xa1,0xa1,0xa2,0xa5,0xa3
226  ,0xa1,0xa4,0xa5,0xa5,0xa5,0xa6,0xa1,0xa7
227  ,0xa9,0xa8,0xad,0xa9,0xb1,0xb0,0xb5,0xb1
228  ,0xb5,0xb2,0xb1,0xb3,0xb5,0xb4,0xb1,0xb5
229  ,0xa1,0xb0,0xa5,0xb1,0xa5,0xb2,0xa1,0xb3
230  ,0xa5,0xb4,0xa1,0xb5,0xa1,0xb6,0xa5,0xb7
231  ,0xad,0xb8,0xa9,0xb9,0x95,0xc0,0x91,0xc1
232  ,0x91,0xc2,0x95,0xc3,0x91,0xc4,0x95,0xc5
233  ,0x85,0xc0,0x81,0xc1,0x81,0xc2,0x85,0xc3
234  ,0x81,0xc4,0x85,0xc5,0x85,0xc6,0x81,0xc7
235  ,0x89,0xc8,0x8d,0xc9,0x91,0xd0,0x95,0xd1
236  ,0x95,0xd2,0x91,0xd3,0x95,0xd4,0x91,0xd5
237  ,0x81,0xd0,0x85,0xd1,0x85,0xd2,0x81,0xd3
238  ,0x85,0xd4,0x81,0xd5,0x81,0xd6,0x85,0xd7
239  ,0x8d,0xd8,0x89,0xd9,0xb1,0xe0,0xb5,0xe1
240  ,0xb5,0xe2,0xb1,0xe3,0xb5,0xe4,0xb1,0xe5
241  ,0xa1,0xe0,0xa5,0xe1,0xa5,0xe2,0xa1,0xe3
242  ,0xa5,0xe4,0xa1,0xe5,0xa1,0xe6,0xa5,0xe7
243  ,0xad,0xe8,0xa9,0xe9,0xb5,0xf0,0xb1,0xf1
244  ,0xb1,0xf2,0xb5,0xf3,0xb1,0xf4,0xb5,0xf5
245  ,0xa5,0xf0,0xa1,0xf1,0xa1,0xf2,0xa5,0xf3
246  ,0xa1,0xf4,0xa5,0xf5,0xa5,0xf6,0xa1,0xf7
247  ,0xa9,0xf8,0xad,0xf9,0x55,0x00,0x11,0x01
248  ,0x11,0x02,0x15,0x03,0x11,0x04,0x15,0x05
249  ,0x45,0x00,0x01,0x01,0x01,0x02,0x05,0x03
250  ,0x01,0x04,0x05,0x05,0x05,0x06,0x01,0x07
251  ,0x09,0x08,0x0d,0x09,0x11,0x10,0x15,0x11
252  ,0x15,0x12,0x11,0x13,0x15,0x14,0x11,0x15
253  ,0x01,0x10,0x05,0x11,0x05,0x12,0x01,0x13
254  ,0x05,0x14,0x01,0x15,0x01,0x16,0x05,0x17
255  ,0x0d,0x18,0x09,0x19,0x31,0x20,0x35,0x21
256  ,0x35,0x22,0x31,0x23,0x35,0x24,0x31,0x25
257  ,0x21,0x20,0x25,0x21,0x25,0x22,0x21,0x23
258  ,0x25,0x24,0x21,0x25,0x21,0x26,0x25,0x27
259  ,0x2d,0x28,0x29,0x29,0x35,0x30,0x31,0x31
260  ,0x31,0x32,0x35,0x33,0x31,0x34,0x35,0x35
261  ,0x25,0x30,0x21,0x31,0x21,0x32,0x25,0x33
262  ,0x21,0x34,0x25,0x35,0x25,0x36,0x21,0x37
263  ,0x29,0x38,0x2d,0x39,0x11,0x40,0x15,0x41
264  ,0x15,0x42,0x11,0x43,0x15,0x44,0x11,0x45
265  ,0x01,0x40,0x05,0x41,0x05,0x42,0x01,0x43
266  ,0x05,0x44,0x01,0x45,0x01,0x46,0x05,0x47
267  ,0x0d,0x48,0x09,0x49,0x15,0x50,0x11,0x51
268  ,0x11,0x52,0x15,0x53,0x11,0x54,0x15,0x55
269  ,0x05,0x50,0x01,0x51,0x01,0x52,0x05,0x53
270  ,0x01,0x54,0x05,0x55,0x05,0x56,0x01,0x57
271  ,0x09,0x58,0x0d,0x59,0x35,0x60,0x31,0x61
272  ,0x31,0x62,0x35,0x63,0x31,0x64,0x35,0x65
273  ,0x46,0x00,0x02,0x01,0x02,0x02,0x06,0x03
274  ,0x02,0x04,0x06,0x05,0x06,0x06,0x02,0x07
275  ,0x0a,0x08,0x0e,0x09,0x02,0x04,0x06,0x05
276  ,0x06,0x06,0x02,0x07,0x0a,0x08,0x0e,0x09
277  ,0x02,0x10,0x06,0x11,0x06,0x12,0x02,0x13
278  ,0x06,0x14,0x02,0x15,0x02,0x16,0x06,0x17
279  ,0x0e,0x18,0x0a,0x19,0x06,0x14,0x02,0x15
280  ,0x02,0x16,0x06,0x17,0x0e,0x18,0x0a,0x19
281  ,0x22,0x20,0x26,0x21,0x26,0x22,0x22,0x23
282  ,0x26,0x24,0x22,0x25,0x22,0x26,0x26,0x27
283  ,0x2e,0x28,0x2a,0x29,0x26,0x24,0x22,0x25
284  ,0x22,0x26,0x26,0x27,0x2e,0x28,0x2a,0x29
285  ,0x26,0x30,0x22,0x31,0x22,0x32,0x26,0x33
286  ,0x22,0x34,0x26,0x35,0x26,0x36,0x22,0x37
287  ,0x2a,0x38,0x2e,0x39,0x22,0x34,0x26,0x35
288  ,0x26,0x36,0x22,0x37,0x2a,0x38,0x2e,0x39
289  ,0x02,0x40,0x06,0x41,0x06,0x42,0x02,0x43
290  ,0x06,0x44,0x02,0x45,0x02,0x46,0x06,0x47
291  ,0x0e,0x48,0x0a,0x49,0x06,0x44,0x02,0x45
292  ,0x02,0x46,0x06,0x47,0x0e,0x48,0x0a,0x49
293  ,0x06,0x50,0x02,0x51,0x02,0x52,0x06,0x53
294  ,0x02,0x54,0x06,0x55,0x06,0x56,0x02,0x57
295  ,0x0a,0x58,0x0e,0x59,0x02,0x54,0x06,0x55
296  ,0x06,0x56,0x02,0x57,0x0a,0x58,0x0e,0x59
297  ,0x26,0x60,0x22,0x61,0x22,0x62,0x26,0x63
298  ,0x22,0x64,0x26,0x65,0x26,0x66,0x22,0x67
299  ,0x2a,0x68,0x2e,0x69,0x22,0x64,0x26,0x65
300  ,0x26,0x66,0x22,0x67,0x2a,0x68,0x2e,0x69
301  ,0x22,0x70,0x26,0x71,0x26,0x72,0x22,0x73
302  ,0x26,0x74,0x22,0x75,0x22,0x76,0x26,0x77
303  ,0x2e,0x78,0x2a,0x79,0x26,0x74,0x22,0x75
304  ,0x22,0x76,0x26,0x77,0x2e,0x78,0x2a,0x79
305  ,0x82,0x80,0x86,0x81,0x86,0x82,0x82,0x83
306  ,0x86,0x84,0x82,0x85,0x82,0x86,0x86,0x87
307  ,0x8e,0x88,0x8a,0x89,0x86,0x84,0x82,0x85
308  ,0x82,0x86,0x86,0x87,0x8e,0x88,0x8a,0x89
309  ,0x86,0x90,0x82,0x91,0x82,0x92,0x86,0x93
310  ,0x82,0x94,0x86,0x95,0x86,0x96,0x82,0x97
311  ,0x8a,0x98,0x8e,0x99,0x23,0x34,0x27,0x35
312  ,0x27,0x36,0x23,0x37,0x2b,0x38,0x2f,0x39
313  ,0x03,0x40,0x07,0x41,0x07,0x42,0x03,0x43
314  ,0x07,0x44,0x03,0x45,0x03,0x46,0x07,0x47
315  ,0x0f,0x48,0x0b,0x49,0x07,0x44,0x03,0x45
316  ,0x03,0x46,0x07,0x47,0x0f,0x48,0x0b,0x49
317  ,0x07,0x50,0x03,0x51,0x03,0x52,0x07,0x53
318  ,0x03,0x54,0x07,0x55,0x07,0x56,0x03,0x57
319  ,0x0b,0x58,0x0f,0x59,0x03,0x54,0x07,0x55
320  ,0x07,0x56,0x03,0x57,0x0b,0x58,0x0f,0x59
321  ,0x27,0x60,0x23,0x61,0x23,0x62,0x27,0x63
322  ,0x23,0x64,0x27,0x65,0x27,0x66,0x23,0x67
323  ,0x2b,0x68,0x2f,0x69,0x23,0x64,0x27,0x65
324  ,0x27,0x66,0x23,0x67,0x2b,0x68,0x2f,0x69
325  ,0x23,0x70,0x27,0x71,0x27,0x72,0x23,0x73
326  ,0x27,0x74,0x23,0x75,0x23,0x76,0x27,0x77
327  ,0x2f,0x78,0x2b,0x79,0x27,0x74,0x23,0x75
328  ,0x23,0x76,0x27,0x77,0x2f,0x78,0x2b,0x79
329  ,0x83,0x80,0x87,0x81,0x87,0x82,0x83,0x83
330  ,0x87,0x84,0x83,0x85,0x83,0x86,0x87,0x87
331  ,0x8f,0x88,0x8b,0x89,0x87,0x84,0x83,0x85
332  ,0x83,0x86,0x87,0x87,0x8f,0x88,0x8b,0x89
333  ,0x87,0x90,0x83,0x91,0x83,0x92,0x87,0x93
334  ,0x83,0x94,0x87,0x95,0x87,0x96,0x83,0x97
335  ,0x8b,0x98,0x8f,0x99,0x83,0x94,0x87,0x95
336  ,0x87,0x96,0x83,0x97,0x8b,0x98,0x8f,0x99
337  ,0xa7,0xa0,0xa3,0xa1,0xa3,0xa2,0xa7,0xa3
338  ,0xa3,0xa4,0xa7,0xa5,0xa7,0xa6,0xa3,0xa7
339  ,0xab,0xa8,0xaf,0xa9,0xa3,0xa4,0xa7,0xa5
340  ,0xa7,0xa6,0xa3,0xa7,0xab,0xa8,0xaf,0xa9
341  ,0xa3,0xb0,0xa7,0xb1,0xa7,0xb2,0xa3,0xb3
342  ,0xa7,0xb4,0xa3,0xb5,0xa3,0xb6,0xa7,0xb7
343  ,0xaf,0xb8,0xab,0xb9,0xa7,0xb4,0xa3,0xb5
344  ,0xa3,0xb6,0xa7,0xb7,0xaf,0xb8,0xab,0xb9
345  ,0x87,0xc0,0x83,0xc1,0x83,0xc2,0x87,0xc3
346  ,0x83,0xc4,0x87,0xc5,0x87,0xc6,0x83,0xc7
347  ,0x8b,0xc8,0x8f,0xc9,0x83,0xc4,0x87,0xc5
348  ,0x87,0xc6,0x83,0xc7,0x8b,0xc8,0x8f,0xc9
349  ,0x83,0xd0,0x87,0xd1,0x87,0xd2,0x83,0xd3
350  ,0x87,0xd4,0x83,0xd5,0x83,0xd6,0x87,0xd7
351  ,0x8f,0xd8,0x8b,0xd9,0x87,0xd4,0x83,0xd5
352  ,0x83,0xd6,0x87,0xd7,0x8f,0xd8,0x8b,0xd9
353  ,0xa3,0xe0,0xa7,0xe1,0xa7,0xe2,0xa3,0xe3
354  ,0xa7,0xe4,0xa3,0xe5,0xa3,0xe6,0xa7,0xe7
355  ,0xaf,0xe8,0xab,0xe9,0xa7,0xe4,0xa3,0xe5
356  ,0xa3,0xe6,0xa7,0xe7,0xaf,0xe8,0xab,0xe9
357  ,0xa7,0xf0,0xa3,0xf1,0xa3,0xf2,0xa7,0xf3
358  ,0xa3,0xf4,0xa7,0xf5,0xa7,0xf6,0xa3,0xf7
359  ,0xab,0xf8,0xaf,0xf9,0xa3,0xf4,0xa7,0xf5
360  ,0xa7,0xf6,0xa3,0xf7,0xab,0xf8,0xaf,0xf9
361  ,0x47,0x00,0x03,0x01,0x03,0x02,0x07,0x03
362  ,0x03,0x04,0x07,0x05,0x07,0x06,0x03,0x07
363  ,0x0b,0x08,0x0f,0x09,0x03,0x04,0x07,0x05
364  ,0x07,0x06,0x03,0x07,0x0b,0x08,0x0f,0x09
365  ,0x03,0x10,0x07,0x11,0x07,0x12,0x03,0x13
366  ,0x07,0x14,0x03,0x15,0x03,0x16,0x07,0x17
367  ,0x0f,0x18,0x0b,0x19,0x07,0x14,0x03,0x15
368  ,0x03,0x16,0x07,0x17,0x0f,0x18,0x0b,0x19
369  ,0x23,0x20,0x27,0x21,0x27,0x22,0x23,0x23
370  ,0x27,0x24,0x23,0x25,0x23,0x26,0x27,0x27
371  ,0x2f,0x28,0x2b,0x29,0x27,0x24,0x23,0x25
372  ,0x23,0x26,0x27,0x27,0x2f,0x28,0x2b,0x29
373  ,0x27,0x30,0x23,0x31,0x23,0x32,0x27,0x33
374  ,0x23,0x34,0x27,0x35,0x27,0x36,0x23,0x37
375  ,0x2b,0x38,0x2f,0x39,0x23,0x34,0x27,0x35
376  ,0x27,0x36,0x23,0x37,0x2b,0x38,0x2f,0x39
377  ,0x03,0x40,0x07,0x41,0x07,0x42,0x03,0x43
378  ,0x07,0x44,0x03,0x45,0x03,0x46,0x07,0x47
379  ,0x0f,0x48,0x0b,0x49,0x07,0x44,0x03,0x45
380  ,0x03,0x46,0x07,0x47,0x0f,0x48,0x0b,0x49
381  ,0x07,0x50,0x03,0x51,0x03,0x52,0x07,0x53
382  ,0x03,0x54,0x07,0x55,0x07,0x56,0x03,0x57
383  ,0x0b,0x58,0x0f,0x59,0x03,0x54,0x07,0x55
384  ,0x07,0x56,0x03,0x57,0x0b,0x58,0x0f,0x59
385  ,0x27,0x60,0x23,0x61,0x23,0x62,0x27,0x63
386  ,0x23,0x64,0x27,0x65,0x27,0x66,0x23,0x67
387  ,0x2b,0x68,0x2f,0x69,0x23,0x64,0x27,0x65
388  ,0x27,0x66,0x23,0x67,0x2b,0x68,0x2f,0x69
389  ,0x23,0x70,0x27,0x71,0x27,0x72,0x23,0x73
390  ,0x27,0x74,0x23,0x75,0x23,0x76,0x27,0x77
391  ,0x2f,0x78,0x2b,0x79,0x27,0x74,0x23,0x75
392  ,0x23,0x76,0x27,0x77,0x2f,0x78,0x2b,0x79
393  ,0x83,0x80,0x87,0x81,0x87,0x82,0x83,0x83
394  ,0x87,0x84,0x83,0x85,0x83,0x86,0x87,0x87
395  ,0x8f,0x88,0x8b,0x89,0x87,0x84,0x83,0x85
396  ,0x83,0x86,0x87,0x87,0x8f,0x88,0x8b,0x89
397  ,0x87,0x90,0x83,0x91,0x83,0x92,0x87,0x93
398  ,0x83,0x94,0x87,0x95,0x87,0x96,0x83,0x97
399  ,0x8b,0x98,0x8f,0x99,0x83,0x94,0x87,0x95
400  ,0x87,0x96,0x83,0x97,0x8b,0x98,0x8f,0x99
401  ,0x04,0x06,0x00,0x07,0x08,0x08,0x0c,0x09
402  ,0x0c,0x0a,0x08,0x0b,0x0c,0x0c,0x08,0x0d
403  ,0x08,0x0e,0x0c,0x0f,0x10,0x10,0x14,0x11
404  ,0x14,0x12,0x10,0x13,0x14,0x14,0x10,0x15
405  ,0x00,0x16,0x04,0x17,0x0c,0x18,0x08,0x19
406  ,0x08,0x1a,0x0c,0x1b,0x08,0x1c,0x0c,0x1d
407  ,0x0c,0x1e,0x08,0x1f,0x30,0x20,0x34,0x21
408  ,0x34,0x22,0x30,0x23,0x34,0x24,0x30,0x25
409  ,0x20,0x26,0x24,0x27,0x2c,0x28,0x28,0x29
410  ,0x28,0x2a,0x2c,0x2b,0x28,0x2c,0x2c,0x2d
411  ,0x2c,0x2e,0x28,0x2f,0x34,0x30,0x30,0x31
412  ,0x30,0x32,0x34,0x33,0x30,0x34,0x34,0x35
413  ,0x24,0x36,0x20,0x37,0x28,0x38,0x2c,0x39
414  ,0x2c,0x3a,0x28,0x3b,0x2c,0x3c,0x28,0x3d
415  ,0x28,0x3e,0x2c,0x3f,0x10,0x40,0x14,0x41
416  ,0x14,0x42,0x10,0x43,0x14,0x44,0x10,0x45
417  ,0x00,0x46,0x04,0x47,0x0c,0x48,0x08,0x49
418  ,0x08,0x4a,0x0c,0x4b,0x08,0x4c,0x0c,0x4d
419  ,0x0c,0x4e,0x08,0x4f,0x14,0x50,0x10,0x51
420  ,0x10,0x52,0x14,0x53,0x10,0x54,0x14,0x55
421  ,0x04,0x56,0x00,0x57,0x08,0x58,0x0c,0x59
422  ,0x0c,0x5a,0x08,0x5b,0x0c,0x5c,0x08,0x5d
423  ,0x08,0x5e,0x0c,0x5f,0x34,0x60,0x30,0x61
424  ,0x30,0x62,0x34,0x63,0x30,0x64,0x34,0x65
425  ,0x24,0x66,0x20,0x67,0x28,0x68,0x2c,0x69
426  ,0x2c,0x6a,0x28,0x6b,0x2c,0x6c,0x28,0x6d
427  ,0x28,0x6e,0x2c,0x6f,0x30,0x70,0x34,0x71
428  ,0x34,0x72,0x30,0x73,0x34,0x74,0x30,0x75
429  ,0x20,0x76,0x24,0x77,0x2c,0x78,0x28,0x79
430  ,0x28,0x7a,0x2c,0x7b,0x28,0x7c,0x2c,0x7d
431  ,0x2c,0x7e,0x28,0x7f,0x90,0x80,0x94,0x81
432  ,0x94,0x82,0x90,0x83,0x94,0x84,0x90,0x85
433  ,0x80,0x86,0x84,0x87,0x8c,0x88,0x88,0x89
434  ,0x88,0x8a,0x8c,0x8b,0x88,0x8c,0x8c,0x8d
435  ,0x8c,0x8e,0x88,0x8f,0x94,0x90,0x90,0x91
436  ,0x90,0x92,0x94,0x93,0x90,0x94,0x94,0x95
437  ,0x84,0x96,0x80,0x97,0x88,0x98,0x8c,0x99
438  ,0x8c,0x9a,0x88,0x9b,0x8c,0x9c,0x88,0x9d
439  ,0x88,0x9e,0x8c,0x9f,0x55,0x00,0x11,0x01
440  ,0x11,0x02,0x15,0x03,0x11,0x04,0x15,0x05
441  ,0x05,0x06,0x01,0x07,0x09,0x08,0x0d,0x09
442  ,0x0d,0x0a,0x09,0x0b,0x0d,0x0c,0x09,0x0d
443  ,0x09,0x0e,0x0d,0x0f,0x11,0x10,0x15,0x11
444  ,0x15,0x12,0x11,0x13,0x15,0x14,0x11,0x15
445  ,0x01,0x16,0x05,0x17,0x0d,0x18,0x09,0x19
446  ,0x09,0x1a,0x0d,0x1b,0x09,0x1c,0x0d,0x1d
447  ,0x0d,0x1e,0x09,0x1f,0x31,0x20,0x35,0x21
448  ,0x35,0x22,0x31,0x23,0x35,0x24,0x31,0x25
449  ,0x21,0x26,0x25,0x27,0x2d,0x28,0x29,0x29
450  ,0x29,0x2a,0x2d,0x2b,0x29,0x2c,0x2d,0x2d
451  ,0x2d,0x2e,0x29,0x2f,0x35,0x30,0x31,0x31
452  ,0x31,0x32,0x35,0x33,0x31,0x34,0x35,0x35
453  ,0x25,0x36,0x21,0x37,0x29,0x38,0x2d,0x39
454  ,0x2d,0x3a,0x29,0x3b,0x2d,0x3c,0x29,0x3d
455  ,0x29,0x3e,0x2d,0x3f,0x11,0x40,0x15,0x41
456  ,0x15,0x42,0x11,0x43,0x15,0x44,0x11,0x45
457  ,0x01,0x46,0x05,0x47,0x0d,0x48,0x09,0x49
458  ,0x09,0x4a,0x0d,0x4b,0x09,0x4c,0x0d,0x4d
459  ,0x0d,0x4e,0x09,0x4f,0x15,0x50,0x11,0x51
460  ,0x11,0x52,0x15,0x53,0x11,0x54,0x15,0x55
461  ,0x05,0x56,0x01,0x57,0x09,0x58,0x0d,0x59
462  ,0x0d,0x5a,0x09,0x5b,0x0d,0x5c,0x09,0x5d
463  ,0x09,0x5e,0x0d,0x5f,0x35,0x60,0x31,0x61
464  ,0x31,0x62,0x35,0x63,0x31,0x64,0x35,0x65
465  ,0x25,0x66,0x21,0x67,0x29,0x68,0x2d,0x69
466  ,0x2d,0x6a,0x29,0x6b,0x2d,0x6c,0x29,0x6d
467  ,0x29,0x6e,0x2d,0x6f,0x31,0x70,0x35,0x71
468  ,0x35,0x72,0x31,0x73,0x35,0x74,0x31,0x75
469  ,0x21,0x76,0x25,0x77,0x2d,0x78,0x29,0x79
470  ,0x29,0x7a,0x2d,0x7b,0x29,0x7c,0x2d,0x7d
471  ,0x2d,0x7e,0x29,0x7f,0x91,0x80,0x95,0x81
472  ,0x95,0x82,0x91,0x83,0x95,0x84,0x91,0x85
473  ,0x81,0x86,0x85,0x87,0x8d,0x88,0x89,0x89
474  ,0x89,0x8a,0x8d,0x8b,0x89,0x8c,0x8d,0x8d
475  ,0x8d,0x8e,0x89,0x8f,0x95,0x90,0x91,0x91
476  ,0x91,0x92,0x95,0x93,0x91,0x94,0x95,0x95
477  ,0x85,0x96,0x81,0x97,0x89,0x98,0x8d,0x99
478  ,0x8d,0x9a,0x89,0x9b,0x8d,0x9c,0x89,0x9d
479  ,0x89,0x9e,0x8d,0x9f,0xb5,0xa0,0xb1,0xa1
480  ,0xb1,0xa2,0xb5,0xa3,0xb1,0xa4,0xb5,0xa5
481  ,0xa5,0xa6,0xa1,0xa7,0xa9,0xa8,0xad,0xa9
482  ,0xad,0xaa,0xa9,0xab,0xad,0xac,0xa9,0xad
483  ,0xa9,0xae,0xad,0xaf,0xb1,0xb0,0xb5,0xb1
484  ,0xb5,0xb2,0xb1,0xb3,0xb5,0xb4,0xb1,0xb5
485  ,0xa1,0xb6,0xa5,0xb7,0xad,0xb8,0xa9,0xb9
486  ,0xa9,0xba,0xad,0xbb,0xa9,0xbc,0xad,0xbd
487  ,0xad,0xbe,0xa9,0xbf,0x95,0xc0,0x91,0xc1
488  ,0x91,0xc2,0x95,0xc3,0x91,0xc4,0x95,0xc5
489  ,0x85,0xc6,0x81,0xc7,0x89,0xc8,0x8d,0xc9
490  ,0x8d,0xca,0x89,0xcb,0x8d,0xcc,0x89,0xcd
491  ,0x89,0xce,0x8d,0xcf,0x91,0xd0,0x95,0xd1
492  ,0x95,0xd2,0x91,0xd3,0x95,0xd4,0x91,0xd5
493  ,0x81,0xd6,0x85,0xd7,0x8d,0xd8,0x89,0xd9
494  ,0x89,0xda,0x8d,0xdb,0x89,0xdc,0x8d,0xdd
495  ,0x8d,0xde,0x89,0xdf,0xb1,0xe0,0xb5,0xe1
496  ,0xb5,0xe2,0xb1,0xe3,0xb5,0xe4,0xb1,0xe5
497  ,0xa1,0xe6,0xa5,0xe7,0xad,0xe8,0xa9,0xe9
498  ,0xa9,0xea,0xad,0xeb,0xa9,0xec,0xad,0xed
499  ,0xad,0xee,0xa9,0xef,0xb5,0xf0,0xb1,0xf1
500  ,0xb1,0xf2,0xb5,0xf3,0xb1,0xf4,0xb5,0xf5
501  ,0xa5,0xf6,0xa1,0xf7,0xa9,0xf8,0xad,0xf9
502  ,0xad,0xfa,0xa9,0xfb,0xad,0xfc,0xa9,0xfd
503  ,0xa9,0xfe,0xad,0xff,0x55,0x00,0x11,0x01
504  ,0x11,0x02,0x15,0x03,0x11,0x04,0x15,0x05
505  ,0x05,0x06,0x01,0x07,0x09,0x08,0x0d,0x09
506  ,0x0d,0x0a,0x09,0x0b,0x0d,0x0c,0x09,0x0d
507  ,0x09,0x0e,0x0d,0x0f,0x11,0x10,0x15,0x11
508  ,0x15,0x12,0x11,0x13,0x15,0x14,0x11,0x15
509  ,0x01,0x16,0x05,0x17,0x0d,0x18,0x09,0x19
510  ,0x09,0x1a,0x0d,0x1b,0x09,0x1c,0x0d,0x1d
511  ,0x0d,0x1e,0x09,0x1f,0x31,0x20,0x35,0x21
512  ,0x35,0x22,0x31,0x23,0x35,0x24,0x31,0x25
513  ,0x21,0x26,0x25,0x27,0x2d,0x28,0x29,0x29
514  ,0x29,0x2a,0x2d,0x2b,0x29,0x2c,0x2d,0x2d
515  ,0x2d,0x2e,0x29,0x2f,0x35,0x30,0x31,0x31
516  ,0x31,0x32,0x35,0x33,0x31,0x34,0x35,0x35
517  ,0x25,0x36,0x21,0x37,0x29,0x38,0x2d,0x39
518  ,0x2d,0x3a,0x29,0x3b,0x2d,0x3c,0x29,0x3d
519  ,0x29,0x3e,0x2d,0x3f,0x11,0x40,0x15,0x41
520  ,0x15,0x42,0x11,0x43,0x15,0x44,0x11,0x45
521  ,0x01,0x46,0x05,0x47,0x0d,0x48,0x09,0x49
522  ,0x09,0x4a,0x0d,0x4b,0x09,0x4c,0x0d,0x4d
523  ,0x0d,0x4e,0x09,0x4f,0x15,0x50,0x11,0x51
524  ,0x11,0x52,0x15,0x53,0x11,0x54,0x15,0x55
525  ,0x05,0x56,0x01,0x57,0x09,0x58,0x0d,0x59
526  ,0x0d,0x5a,0x09,0x5b,0x0d,0x5c,0x09,0x5d
527  ,0x09,0x5e,0x0d,0x5f,0x35,0x60,0x31,0x61
528  ,0x31,0x62,0x35,0x63,0x31,0x64,0x35,0x65
529  ,0xbe,0xfa,0xba,0xfb,0xbe,0xfc,0xba,0xfd
530  ,0xba,0xfe,0xbe,0xff,0x46,0x00,0x02,0x01
531  ,0x02,0x02,0x06,0x03,0x02,0x04,0x06,0x05
532  ,0x06,0x06,0x02,0x07,0x0a,0x08,0x0e,0x09
533  ,0x1e,0x0a,0x1a,0x0b,0x1e,0x0c,0x1a,0x0d
534  ,0x1a,0x0e,0x1e,0x0f,0x02,0x10,0x06,0x11
535  ,0x06,0x12,0x02,0x13,0x06,0x14,0x02,0x15
536  ,0x02,0x16,0x06,0x17,0x0e,0x18,0x0a,0x19
537  ,0x1a,0x1a,0x1e,0x1b,0x1a,0x1c,0x1e,0x1d
538  ,0x1e,0x1e,0x1a,0x1f,0x22,0x20,0x26,0x21
539  ,0x26,0x22,0x22,0x23,0x26,0x24,0x22,0x25
540  ,0x22,0x26,0x26,0x27,0x2e,0x28,0x2a,0x29
541  ,0x3a,0x2a,0x3e,0x2b,0x3a,0x2c,0x3e,0x2d
542  ,0x3e,0x2e,0x3a,0x2f,0x26,0x30,0x22,0x31
543  ,0x22,0x32,0x26,0x33,0x22,0x34,0x26,0x35
544  ,0x26,0x36,0x22,0x37,0x2a,0x38,0x2e,0x39
545  ,0x3e,0x3a,0x3a,0x3b,0x3e,0x3c,0x3a,0x3d
546  ,0x3a,0x3e,0x3e,0x3f,0x02,0x40,0x06,0x41
547  ,0x06,0x42,0x02,0x43,0x06,0x44,0x02,0x45
548  ,0x02,0x46,0x06,0x47,0x0e,0x48,0x0a,0x49
549  ,0x1a,0x4a,0x1e,0x4b,0x1a,0x4c,0x1e,0x4d
550  ,0x1e,0x4e,0x1a,0x4f,0x06,0x50,0x02,0x51
551  ,0x02,0x52,0x06,0x53,0x02,0x54,0x06,0x55
552  ,0x06,0x56,0x02,0x57,0x0a,0x58,0x0e,0x59
553  ,0x1e,0x5a,0x1a,0x5b,0x1e,0x5c,0x1a,0x5d
554  ,0x1a,0x5e,0x1e,0x5f,0x26,0x60,0x22,0x61
555  ,0x22,0x62,0x26,0x63,0x22,0x64,0x26,0x65
556  ,0x26,0x66,0x22,0x67,0x2a,0x68,0x2e,0x69
557  ,0x3e,0x6a,0x3a,0x6b,0x3e,0x6c,0x3a,0x6d
558  ,0x3a,0x6e,0x3e,0x6f,0x22,0x70,0x26,0x71
559  ,0x26,0x72,0x22,0x73,0x26,0x74,0x22,0x75
560  ,0x22,0x76,0x26,0x77,0x2e,0x78,0x2a,0x79
561  ,0x3a,0x7a,0x3e,0x7b,0x3a,0x7c,0x3e,0x7d
562  ,0x3e,0x7e,0x3a,0x7f,0x82,0x80,0x86,0x81
563  ,0x86,0x82,0x82,0x83,0x86,0x84,0x82,0x85
564  ,0x82,0x86,0x86,0x87,0x8e,0x88,0x8a,0x89
565  ,0x9a,0x8a,0x9e,0x8b,0x9a,0x8c,0x9e,0x8d
566  ,0x9e,0x8e,0x9a,0x8f,0x86,0x90,0x82,0x91
567  ,0x82,0x92,0x86,0x93,0x23,0x34,0x27,0x35
568  ,0x27,0x36,0x23,0x37,0x2b,0x38,0x2f,0x39
569  ,0x3f,0x3a,0x3b,0x3b,0x3f,0x3c,0x3b,0x3d
570  ,0x3b,0x3e,0x3f,0x3f,0x03,0x40,0x07,0x41
571  ,0x07,0x42,0x03,0x43,0x07,0x44,0x03,0x45
572  ,0x03,0x46,0x07,0x47,0x0f,0x48,0x0b,0x49
573  ,0x1b,0x4a,0x1f,0x4b,0x1b,0x4c,0x1f,0x4d
574  ,0x1f,0x4e,0x1b,0x4f,0x07,0x50,0x03,0x51
575  ,0x03,0x52,0x07,0x53,0x03,0x54,0x07,0x55
576  ,0x07,0x56,0x03,0x57,0x0b,0x58,0x0f,0x59
577  ,0x1f,0x5a,0x1b,0x5b,0x1f,0x5c,0x1b,0x5d
578  ,0x1b,0x5e,0x1f,0x5f,0x27,0x60,0x23,0x61
579  ,0x23,0x62,0x27,0x63,0x23,0x64,0x27,0x65
580  ,0x27,0x66,0x23,0x67,0x2b,0x68,0x2f,0x69
581  ,0x3f,0x6a,0x3b,0x6b,0x3f,0x6c,0x3b,0x6d
582  ,0x3b,0x6e,0x3f,0x6f,0x23,0x70,0x27,0x71
583  ,0x27,0x72,0x23,0x73,0x27,0x74,0x23,0x75
584  ,0x23,0x76,0x27,0x77,0x2f,0x78,0x2b,0x79
585  ,0x3b,0x7a,0x3f,0x7b,0x3b,0x7c,0x3f,0x7d
586  ,0x3f,0x7e,0x3b,0x7f,0x83,0x80,0x87,0x81
587  ,0x87,0x82,0x83,0x83,0x87,0x84,0x83,0x85
588  ,0x83,0x86,0x87,0x87,0x8f,0x88,0x8b,0x89
589  ,0x9b,0x8a,0x9f,0x8b,0x9b,0x8c,0x9f,0x8d
590  ,0x9f,0x8e,0x9b,0x8f,0x87,0x90,0x83,0x91
591  ,0x83,0x92,0x87,0x93,0x83,0x94,0x87,0x95
592  ,0x87,0x96,0x83,0x97,0x8b,0x98,0x8f,0x99
593  ,0x9f,0x9a,0x9b,0x9b,0x9f,0x9c,0x9b,0x9d
594  ,0x9b,0x9e,0x9f,0x9f,0xa7,0xa0,0xa3,0xa1
595  ,0xa3,0xa2,0xa7,0xa3,0xa3,0xa4,0xa7,0xa5
596  ,0xa7,0xa6,0xa3,0xa7,0xab,0xa8,0xaf,0xa9
597  ,0xbf,0xaa,0xbb,0xab,0xbf,0xac,0xbb,0xad
598  ,0xbb,0xae,0xbf,0xaf,0xa3,0xb0,0xa7,0xb1
599  ,0xa7,0xb2,0xa3,0xb3,0xa7,0xb4,0xa3,0xb5
600  ,0xa3,0xb6,0xa7,0xb7,0xaf,0xb8,0xab,0xb9
601  ,0xbb,0xba,0xbf,0xbb,0xbb,0xbc,0xbf,0xbd
602  ,0xbf,0xbe,0xbb,0xbf,0x87,0xc0,0x83,0xc1
603  ,0x83,0xc2,0x87,0xc3,0x83,0xc4,0x87,0xc5
604  ,0x87,0xc6,0x83,0xc7,0x8b,0xc8,0x8f,0xc9
605  ,0x9f,0xca,0x9b,0xcb,0x9f,0xcc,0x9b,0xcd
606  ,0x9b,0xce,0x9f,0xcf,0x83,0xd0,0x87,0xd1
607  ,0x87,0xd2,0x83,0xd3,0x87,0xd4,0x83,0xd5
608  ,0x83,0xd6,0x87,0xd7,0x8f,0xd8,0x8b,0xd9
609  ,0x9b,0xda,0x9f,0xdb,0x9b,0xdc,0x9f,0xdd
610  ,0x9f,0xde,0x9b,0xdf,0xa3,0xe0,0xa7,0xe1
611  ,0xa7,0xe2,0xa3,0xe3,0xa7,0xe4,0xa3,0xe5
612  ,0xa3,0xe6,0xa7,0xe7,0xaf,0xe8,0xab,0xe9
613  ,0xbb,0xea,0xbf,0xeb,0xbb,0xec,0xbf,0xed
614  ,0xbf,0xee,0xbb,0xef,0xa7,0xf0,0xa3,0xf1
615  ,0xa3,0xf2,0xa7,0xf3,0xa3,0xf4,0xa7,0xf5
616  ,0xa7,0xf6,0xa3,0xf7,0xab,0xf8,0xaf,0xf9
617  ,0xbf,0xfa,0xbb,0xfb,0xbf,0xfc,0xbb,0xfd
618  ,0xbb,0xfe,0xbf,0xff,0x47,0x00,0x03,0x01
619  ,0x03,0x02,0x07,0x03,0x03,0x04,0x07,0x05
620  ,0x07,0x06,0x03,0x07,0x0b,0x08,0x0f,0x09
621  ,0x1f,0x0a,0x1b,0x0b,0x1f,0x0c,0x1b,0x0d
622  ,0x1b,0x0e,0x1f,0x0f,0x03,0x10,0x07,0x11
623  ,0x07,0x12,0x03,0x13,0x07,0x14,0x03,0x15
624  ,0x03,0x16,0x07,0x17,0x0f,0x18,0x0b,0x19
625  ,0x1b,0x1a,0x1f,0x1b,0x1b,0x1c,0x1f,0x1d
626  ,0x1f,0x1e,0x1b,0x1f,0x23,0x20,0x27,0x21
627  ,0x27,0x22,0x23,0x23,0x27,0x24,0x23,0x25
628  ,0x23,0x26,0x27,0x27,0x2f,0x28,0x2b,0x29
629  ,0x3b,0x2a,0x3f,0x2b,0x3b,0x2c,0x3f,0x2d
630  ,0x3f,0x2e,0x3b,0x2f,0x27,0x30,0x23,0x31
631  ,0x23,0x32,0x27,0x33,0x23,0x34,0x27,0x35
632  ,0x27,0x36,0x23,0x37,0x2b,0x38,0x2f,0x39
633  ,0x3f,0x3a,0x3b,0x3b,0x3f,0x3c,0x3b,0x3d
634  ,0x3b,0x3e,0x3f,0x3f,0x03,0x40,0x07,0x41
635  ,0x07,0x42,0x03,0x43,0x07,0x44,0x03,0x45
636  ,0x03,0x46,0x07,0x47,0x0f,0x48,0x0b,0x49
637  ,0x1b,0x4a,0x1f,0x4b,0x1b,0x4c,0x1f,0x4d
638  ,0x1f,0x4e,0x1b,0x4f,0x07,0x50,0x03,0x51
639  ,0x03,0x52,0x07,0x53,0x03,0x54,0x07,0x55
640  ,0x07,0x56,0x03,0x57,0x0b,0x58,0x0f,0x59
641  ,0x1f,0x5a,0x1b,0x5b,0x1f,0x5c,0x1b,0x5d
642  ,0x1b,0x5e,0x1f,0x5f,0x27,0x60,0x23,0x61
643  ,0x23,0x62,0x27,0x63,0x23,0x64,0x27,0x65
644  ,0x27,0x66,0x23,0x67,0x2b,0x68,0x2f,0x69
645  ,0x3f,0x6a,0x3b,0x6b,0x3f,0x6c,0x3b,0x6d
646  ,0x3b,0x6e,0x3f,0x6f,0x23,0x70,0x27,0x71
647  ,0x27,0x72,0x23,0x73,0x27,0x74,0x23,0x75
648  ,0x23,0x76,0x27,0x77,0x2f,0x78,0x2b,0x79
649  ,0x3b,0x7a,0x3f,0x7b,0x3b,0x7c,0x3f,0x7d
650  ,0x3f,0x7e,0x3b,0x7f,0x83,0x80,0x87,0x81
651  ,0x87,0x82,0x83,0x83,0x87,0x84,0x83,0x85
652  ,0x83,0x86,0x87,0x87,0x8f,0x88,0x8b,0x89
653  ,0x9b,0x8a,0x9f,0x8b,0x9b,0x8c,0x9f,0x8d
654  ,0x9f,0x8e,0x9b,0x8f,0x87,0x90,0x83,0x91
655  ,0x83,0x92,0x87,0x93,0x83,0x94,0x87,0x95
656  ,0x87,0x96,0x83,0x97,0x8b,0x98,0x8f,0x99
657 };
FLAG_V
#define FLAG_V
Definition: macros.h:82
FLAG_H
#define FLAG_H
Definition: macros.h:84
Z80EX_BYTE
unsigned char Z80EX_BYTE
Definition: z80ex.h:49